├── .github └── PULL_REQUEST_TEMPLATE.md ├── .gitignore ├── CHANGELOG.md ├── CODE_OF_CONDUCT.md ├── CONTRIBUTING.md ├── LICENSE.txt ├── NOTICE.txt ├── README.md ├── deployment ├── build-s3-dist.sh ├── custom-deployment │ ├── bin │ │ └── smart-product-solution.ts │ ├── cdk-manifest.json │ ├── cdk.json │ ├── lib │ │ ├── name-generator.ts │ │ ├── smart-product-api.ts │ │ ├── smart-product-device-defender.ts │ │ ├── smart-product-event.ts │ │ ├── smart-product-jitr.ts │ │ ├── smart-product-owner-web-app.ts │ │ ├── smart-product-solution-stack.ts │ │ └── smart-product-telemetry.ts │ ├── package.json │ └── tsconfig.json ├── manifest-generator │ ├── app.js │ └── package.json ├── run-unit-tests.sh └── smart-product-solution.template └── source ├── console ├── jsconfig.json ├── package.json ├── public │ ├── apple-icon.png │ ├── assets │ │ └── smart_product_config.js │ ├── favicon.ico │ ├── index.html │ └── manifest.json └── src │ ├── assets │ ├── css │ │ ├── animate.min.css │ │ ├── demo.css │ │ ├── light-bootstrap-dashboard-react.css │ │ ├── light-bootstrap-dashboard-react.css.map │ │ ├── light-bootstrap-dashboard-react.min.css │ │ └── pe-icon-7-stroke.css │ ├── fonts │ │ ├── Pe-icon-7-stroke.eot │ │ ├── Pe-icon-7-stroke.svg │ │ ├── Pe-icon-7-stroke.ttf │ │ ├── Pe-icon-7-stroke.woff │ │ ├── glyphicons-halflings-regular.eot │ │ ├── glyphicons-halflings-regular.svg │ │ ├── glyphicons-halflings-regular.ttf │ │ ├── glyphicons-halflings-regular.woff │ │ └── glyphicons-halflings-regular.woff2 │ ├── img │ │ └── logo-aws.png │ └── sass │ │ ├── lbd │ │ ├── _alerts.scss │ │ ├── _buttons.scss │ │ ├── _cards.scss │ │ ├── _chartist.scss │ │ ├── _checkbox-radio-switch.scss │ │ ├── _custom.scss │ │ ├── _dropdown.scss │ │ ├── _footers.scss │ │ ├── _inputs.scss │ │ ├── _misc.scss │ │ ├── _mixins.scss │ │ ├── _navbars.scss │ │ ├── _responsive.scss │ │ ├── _sidebar-and-main-panel.scss │ │ ├── _tables.scss │ │ ├── _typography.scss │ │ ├── _variables.scss │ │ └── mixins │ │ │ ├── _buttons.scss │ │ │ ├── _cards.scss │ │ │ ├── _chartist.scss │ │ │ ├── _icons.scss │ │ │ ├── _inputs.scss │ │ │ ├── _labels.scss │ │ │ ├── _morphing-buttons.scss │ │ │ ├── _navbars.scss │ │ │ ├── _social-buttons.scss │ │ │ ├── _tabs.scss │ │ │ ├── _transparency.scss │ │ │ └── _vendor-prefixes.scss │ │ └── light-bootstrap-dashboard-react.scss │ ├── components │ ├── Card │ │ └── Card.jsx │ ├── CustomCheckbox │ │ └── CustomCheckbox.jsx │ ├── Footer │ │ └── Footer.jsx │ ├── Navbars │ │ ├── AdminNavbar.jsx │ │ └── AdminNavbarLinks.jsx │ └── Sidebar │ │ └── Sidebar.jsx │ ├── index.js │ ├── layouts │ └── Admin.jsx │ ├── routes.js │ ├── variables │ ├── Variables.jsx │ └── configurations.js │ └── views │ ├── Alerts.jsx │ ├── DeviceDetail.jsx │ ├── DeviceRegistration.jsx │ ├── Devices.jsx │ ├── History.jsx │ └── UserSetting.jsx ├── resources ├── authorizer │ ├── auth.common.js │ ├── package.json │ └── test-setup.spec.js ├── cicd │ ├── index.js │ └── package.json ├── cognito │ ├── index.js │ ├── index.spec.js │ └── package.json ├── helper │ ├── index.js │ ├── lib │ │ ├── dynamodb-helper.js │ │ ├── dynamodb-helper.spec.js │ │ ├── iot-helper.js │ │ ├── iot-helper.spec.js │ │ ├── s3-helper.js │ │ └── test-setup.spec.js │ └── package.json ├── logger │ ├── logger.common.js │ ├── package.json │ └── test-setup.spec.js ├── usage-metrics │ ├── metrics.common.js │ ├── package.json │ └── test-setup.spec.js └── utils │ ├── package.json │ ├── test-setup.spec.js │ └── utils.common.js └── services ├── api ├── admin │ ├── index.js │ ├── lib │ │ ├── admin.js │ │ ├── admin.spec.js │ │ ├── app.js │ │ └── test-setup.spec.js │ └── package.json ├── command │ ├── index.js │ ├── lib │ │ ├── app.js │ │ ├── command.js │ │ └── command.spec.js │ └── package.json ├── device │ ├── index.js │ ├── lib │ │ ├── app.js │ │ ├── device.js │ │ ├── device.spec.js │ │ └── test-setup.spec.js │ └── package.json ├── event │ ├── index.js │ ├── lib │ │ ├── app.js │ │ ├── event.js │ │ ├── event.spec.js │ │ └── test-setup.spec.js │ └── package.json ├── registration │ ├── index.js │ ├── lib │ │ ├── app.js │ │ ├── registration.js │ │ └── registration.spec.js │ └── package.json └── status │ ├── index.js │ ├── lib │ ├── app.js │ ├── status.js │ ├── status.spec.js │ └── test-setup.spec.js │ └── package.json ├── command-status ├── index.js ├── lib │ ├── index.js │ ├── index.spec.js │ ├── message.js │ └── message.spec.js └── package.json ├── event-proxy ├── index.js ├── lib │ ├── index.js │ ├── index.spec.js │ ├── message.js │ ├── message.spec.js │ └── test-setup.spec.js └── package.json ├── jitr ├── index.js ├── lib │ ├── index.js │ ├── jitrHelper.js │ └── jitrHelper.spec.js └── package.json ├── notification ├── index.js ├── lib │ ├── alert.js │ ├── alert.spec.js │ └── index.js └── package.json └── telemetry ├── index.js ├── lib ├── index.js └── index.spec.js └── package.json /.github/PULL_REQUEST_TEMPLATE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-solutions/smart-product-solution/HEAD/.github/PULL_REQUEST_TEMPLATE.md -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-solutions/smart-product-solution/HEAD/.gitignore -------------------------------------------------------------------------------- /CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-solutions/smart-product-solution/HEAD/CHANGELOG.md -------------------------------------------------------------------------------- /CODE_OF_CONDUCT.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-solutions/smart-product-solution/HEAD/CODE_OF_CONDUCT.md -------------------------------------------------------------------------------- /CONTRIBUTING.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-solutions/smart-product-solution/HEAD/CONTRIBUTING.md -------------------------------------------------------------------------------- /LICENSE.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-solutions/smart-product-solution/HEAD/LICENSE.txt -------------------------------------------------------------------------------- /NOTICE.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-solutions/smart-product-solution/HEAD/NOTICE.txt -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-solutions/smart-product-solution/HEAD/README.md -------------------------------------------------------------------------------- /deployment/build-s3-dist.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-solutions/smart-product-solution/HEAD/deployment/build-s3-dist.sh -------------------------------------------------------------------------------- /deployment/custom-deployment/bin/smart-product-solution.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-solutions/smart-product-solution/HEAD/deployment/custom-deployment/bin/smart-product-solution.ts -------------------------------------------------------------------------------- /deployment/custom-deployment/cdk-manifest.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-solutions/smart-product-solution/HEAD/deployment/custom-deployment/cdk-manifest.json -------------------------------------------------------------------------------- /deployment/custom-deployment/cdk.json: -------------------------------------------------------------------------------- 1 | { 2 | "app": "npx ts-node bin/smart-product-solution.ts" 3 | } 4 | -------------------------------------------------------------------------------- /deployment/custom-deployment/lib/name-generator.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-solutions/smart-product-solution/HEAD/deployment/custom-deployment/lib/name-generator.ts -------------------------------------------------------------------------------- /deployment/custom-deployment/lib/smart-product-api.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-solutions/smart-product-solution/HEAD/deployment/custom-deployment/lib/smart-product-api.ts -------------------------------------------------------------------------------- /deployment/custom-deployment/lib/smart-product-device-defender.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-solutions/smart-product-solution/HEAD/deployment/custom-deployment/lib/smart-product-device-defender.ts -------------------------------------------------------------------------------- /deployment/custom-deployment/lib/smart-product-event.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-solutions/smart-product-solution/HEAD/deployment/custom-deployment/lib/smart-product-event.ts -------------------------------------------------------------------------------- /deployment/custom-deployment/lib/smart-product-jitr.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-solutions/smart-product-solution/HEAD/deployment/custom-deployment/lib/smart-product-jitr.ts -------------------------------------------------------------------------------- /deployment/custom-deployment/lib/smart-product-owner-web-app.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-solutions/smart-product-solution/HEAD/deployment/custom-deployment/lib/smart-product-owner-web-app.ts -------------------------------------------------------------------------------- /deployment/custom-deployment/lib/smart-product-solution-stack.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-solutions/smart-product-solution/HEAD/deployment/custom-deployment/lib/smart-product-solution-stack.ts -------------------------------------------------------------------------------- /deployment/custom-deployment/lib/smart-product-telemetry.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-solutions/smart-product-solution/HEAD/deployment/custom-deployment/lib/smart-product-telemetry.ts -------------------------------------------------------------------------------- /deployment/custom-deployment/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-solutions/smart-product-solution/HEAD/deployment/custom-deployment/package.json -------------------------------------------------------------------------------- /deployment/custom-deployment/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-solutions/smart-product-solution/HEAD/deployment/custom-deployment/tsconfig.json -------------------------------------------------------------------------------- /deployment/manifest-generator/app.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-solutions/smart-product-solution/HEAD/deployment/manifest-generator/app.js -------------------------------------------------------------------------------- /deployment/manifest-generator/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-solutions/smart-product-solution/HEAD/deployment/manifest-generator/package.json -------------------------------------------------------------------------------- /deployment/run-unit-tests.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-solutions/smart-product-solution/HEAD/deployment/run-unit-tests.sh -------------------------------------------------------------------------------- /deployment/smart-product-solution.template: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-solutions/smart-product-solution/HEAD/deployment/smart-product-solution.template -------------------------------------------------------------------------------- /source/console/jsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-solutions/smart-product-solution/HEAD/source/console/jsconfig.json -------------------------------------------------------------------------------- /source/console/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-solutions/smart-product-solution/HEAD/source/console/package.json -------------------------------------------------------------------------------- /source/console/public/apple-icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-solutions/smart-product-solution/HEAD/source/console/public/apple-icon.png -------------------------------------------------------------------------------- /source/console/public/assets/smart_product_config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-solutions/smart-product-solution/HEAD/source/console/public/assets/smart_product_config.js -------------------------------------------------------------------------------- /source/console/public/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-solutions/smart-product-solution/HEAD/source/console/public/favicon.ico -------------------------------------------------------------------------------- /source/console/public/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-solutions/smart-product-solution/HEAD/source/console/public/index.html -------------------------------------------------------------------------------- /source/console/public/manifest.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-solutions/smart-product-solution/HEAD/source/console/public/manifest.json -------------------------------------------------------------------------------- /source/console/src/assets/css/animate.min.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-solutions/smart-product-solution/HEAD/source/console/src/assets/css/animate.min.css -------------------------------------------------------------------------------- /source/console/src/assets/css/demo.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-solutions/smart-product-solution/HEAD/source/console/src/assets/css/demo.css -------------------------------------------------------------------------------- /source/console/src/assets/css/light-bootstrap-dashboard-react.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-solutions/smart-product-solution/HEAD/source/console/src/assets/css/light-bootstrap-dashboard-react.css -------------------------------------------------------------------------------- /source/console/src/assets/css/light-bootstrap-dashboard-react.css.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-solutions/smart-product-solution/HEAD/source/console/src/assets/css/light-bootstrap-dashboard-react.css.map -------------------------------------------------------------------------------- /source/console/src/assets/css/light-bootstrap-dashboard-react.min.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-solutions/smart-product-solution/HEAD/source/console/src/assets/css/light-bootstrap-dashboard-react.min.css -------------------------------------------------------------------------------- /source/console/src/assets/css/pe-icon-7-stroke.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-solutions/smart-product-solution/HEAD/source/console/src/assets/css/pe-icon-7-stroke.css -------------------------------------------------------------------------------- /source/console/src/assets/fonts/Pe-icon-7-stroke.eot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-solutions/smart-product-solution/HEAD/source/console/src/assets/fonts/Pe-icon-7-stroke.eot -------------------------------------------------------------------------------- /source/console/src/assets/fonts/Pe-icon-7-stroke.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-solutions/smart-product-solution/HEAD/source/console/src/assets/fonts/Pe-icon-7-stroke.svg -------------------------------------------------------------------------------- /source/console/src/assets/fonts/Pe-icon-7-stroke.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-solutions/smart-product-solution/HEAD/source/console/src/assets/fonts/Pe-icon-7-stroke.ttf -------------------------------------------------------------------------------- /source/console/src/assets/fonts/Pe-icon-7-stroke.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-solutions/smart-product-solution/HEAD/source/console/src/assets/fonts/Pe-icon-7-stroke.woff -------------------------------------------------------------------------------- /source/console/src/assets/fonts/glyphicons-halflings-regular.eot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-solutions/smart-product-solution/HEAD/source/console/src/assets/fonts/glyphicons-halflings-regular.eot -------------------------------------------------------------------------------- /source/console/src/assets/fonts/glyphicons-halflings-regular.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-solutions/smart-product-solution/HEAD/source/console/src/assets/fonts/glyphicons-halflings-regular.svg -------------------------------------------------------------------------------- /source/console/src/assets/fonts/glyphicons-halflings-regular.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-solutions/smart-product-solution/HEAD/source/console/src/assets/fonts/glyphicons-halflings-regular.ttf -------------------------------------------------------------------------------- /source/console/src/assets/fonts/glyphicons-halflings-regular.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-solutions/smart-product-solution/HEAD/source/console/src/assets/fonts/glyphicons-halflings-regular.woff -------------------------------------------------------------------------------- /source/console/src/assets/fonts/glyphicons-halflings-regular.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-solutions/smart-product-solution/HEAD/source/console/src/assets/fonts/glyphicons-halflings-regular.woff2 -------------------------------------------------------------------------------- /source/console/src/assets/img/logo-aws.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-solutions/smart-product-solution/HEAD/source/console/src/assets/img/logo-aws.png -------------------------------------------------------------------------------- /source/console/src/assets/sass/lbd/_alerts.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-solutions/smart-product-solution/HEAD/source/console/src/assets/sass/lbd/_alerts.scss -------------------------------------------------------------------------------- /source/console/src/assets/sass/lbd/_buttons.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-solutions/smart-product-solution/HEAD/source/console/src/assets/sass/lbd/_buttons.scss -------------------------------------------------------------------------------- /source/console/src/assets/sass/lbd/_cards.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-solutions/smart-product-solution/HEAD/source/console/src/assets/sass/lbd/_cards.scss -------------------------------------------------------------------------------- /source/console/src/assets/sass/lbd/_chartist.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-solutions/smart-product-solution/HEAD/source/console/src/assets/sass/lbd/_chartist.scss -------------------------------------------------------------------------------- /source/console/src/assets/sass/lbd/_checkbox-radio-switch.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-solutions/smart-product-solution/HEAD/source/console/src/assets/sass/lbd/_checkbox-radio-switch.scss -------------------------------------------------------------------------------- /source/console/src/assets/sass/lbd/_custom.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-solutions/smart-product-solution/HEAD/source/console/src/assets/sass/lbd/_custom.scss -------------------------------------------------------------------------------- /source/console/src/assets/sass/lbd/_dropdown.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-solutions/smart-product-solution/HEAD/source/console/src/assets/sass/lbd/_dropdown.scss -------------------------------------------------------------------------------- /source/console/src/assets/sass/lbd/_footers.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-solutions/smart-product-solution/HEAD/source/console/src/assets/sass/lbd/_footers.scss -------------------------------------------------------------------------------- /source/console/src/assets/sass/lbd/_inputs.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-solutions/smart-product-solution/HEAD/source/console/src/assets/sass/lbd/_inputs.scss -------------------------------------------------------------------------------- /source/console/src/assets/sass/lbd/_misc.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-solutions/smart-product-solution/HEAD/source/console/src/assets/sass/lbd/_misc.scss -------------------------------------------------------------------------------- /source/console/src/assets/sass/lbd/_mixins.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-solutions/smart-product-solution/HEAD/source/console/src/assets/sass/lbd/_mixins.scss -------------------------------------------------------------------------------- /source/console/src/assets/sass/lbd/_navbars.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-solutions/smart-product-solution/HEAD/source/console/src/assets/sass/lbd/_navbars.scss -------------------------------------------------------------------------------- /source/console/src/assets/sass/lbd/_responsive.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-solutions/smart-product-solution/HEAD/source/console/src/assets/sass/lbd/_responsive.scss -------------------------------------------------------------------------------- /source/console/src/assets/sass/lbd/_sidebar-and-main-panel.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-solutions/smart-product-solution/HEAD/source/console/src/assets/sass/lbd/_sidebar-and-main-panel.scss -------------------------------------------------------------------------------- /source/console/src/assets/sass/lbd/_tables.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-solutions/smart-product-solution/HEAD/source/console/src/assets/sass/lbd/_tables.scss -------------------------------------------------------------------------------- /source/console/src/assets/sass/lbd/_typography.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-solutions/smart-product-solution/HEAD/source/console/src/assets/sass/lbd/_typography.scss -------------------------------------------------------------------------------- /source/console/src/assets/sass/lbd/_variables.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-solutions/smart-product-solution/HEAD/source/console/src/assets/sass/lbd/_variables.scss -------------------------------------------------------------------------------- /source/console/src/assets/sass/lbd/mixins/_buttons.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-solutions/smart-product-solution/HEAD/source/console/src/assets/sass/lbd/mixins/_buttons.scss -------------------------------------------------------------------------------- /source/console/src/assets/sass/lbd/mixins/_cards.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-solutions/smart-product-solution/HEAD/source/console/src/assets/sass/lbd/mixins/_cards.scss -------------------------------------------------------------------------------- /source/console/src/assets/sass/lbd/mixins/_chartist.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-solutions/smart-product-solution/HEAD/source/console/src/assets/sass/lbd/mixins/_chartist.scss -------------------------------------------------------------------------------- /source/console/src/assets/sass/lbd/mixins/_icons.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-solutions/smart-product-solution/HEAD/source/console/src/assets/sass/lbd/mixins/_icons.scss -------------------------------------------------------------------------------- /source/console/src/assets/sass/lbd/mixins/_inputs.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-solutions/smart-product-solution/HEAD/source/console/src/assets/sass/lbd/mixins/_inputs.scss -------------------------------------------------------------------------------- /source/console/src/assets/sass/lbd/mixins/_labels.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-solutions/smart-product-solution/HEAD/source/console/src/assets/sass/lbd/mixins/_labels.scss -------------------------------------------------------------------------------- /source/console/src/assets/sass/lbd/mixins/_morphing-buttons.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-solutions/smart-product-solution/HEAD/source/console/src/assets/sass/lbd/mixins/_morphing-buttons.scss -------------------------------------------------------------------------------- /source/console/src/assets/sass/lbd/mixins/_navbars.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-solutions/smart-product-solution/HEAD/source/console/src/assets/sass/lbd/mixins/_navbars.scss -------------------------------------------------------------------------------- /source/console/src/assets/sass/lbd/mixins/_social-buttons.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-solutions/smart-product-solution/HEAD/source/console/src/assets/sass/lbd/mixins/_social-buttons.scss -------------------------------------------------------------------------------- /source/console/src/assets/sass/lbd/mixins/_tabs.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-solutions/smart-product-solution/HEAD/source/console/src/assets/sass/lbd/mixins/_tabs.scss -------------------------------------------------------------------------------- /source/console/src/assets/sass/lbd/mixins/_transparency.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-solutions/smart-product-solution/HEAD/source/console/src/assets/sass/lbd/mixins/_transparency.scss -------------------------------------------------------------------------------- /source/console/src/assets/sass/lbd/mixins/_vendor-prefixes.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-solutions/smart-product-solution/HEAD/source/console/src/assets/sass/lbd/mixins/_vendor-prefixes.scss -------------------------------------------------------------------------------- /source/console/src/assets/sass/light-bootstrap-dashboard-react.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-solutions/smart-product-solution/HEAD/source/console/src/assets/sass/light-bootstrap-dashboard-react.scss -------------------------------------------------------------------------------- /source/console/src/components/Card/Card.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-solutions/smart-product-solution/HEAD/source/console/src/components/Card/Card.jsx -------------------------------------------------------------------------------- /source/console/src/components/CustomCheckbox/CustomCheckbox.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-solutions/smart-product-solution/HEAD/source/console/src/components/CustomCheckbox/CustomCheckbox.jsx -------------------------------------------------------------------------------- /source/console/src/components/Footer/Footer.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-solutions/smart-product-solution/HEAD/source/console/src/components/Footer/Footer.jsx -------------------------------------------------------------------------------- /source/console/src/components/Navbars/AdminNavbar.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-solutions/smart-product-solution/HEAD/source/console/src/components/Navbars/AdminNavbar.jsx -------------------------------------------------------------------------------- /source/console/src/components/Navbars/AdminNavbarLinks.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-solutions/smart-product-solution/HEAD/source/console/src/components/Navbars/AdminNavbarLinks.jsx -------------------------------------------------------------------------------- /source/console/src/components/Sidebar/Sidebar.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-solutions/smart-product-solution/HEAD/source/console/src/components/Sidebar/Sidebar.jsx -------------------------------------------------------------------------------- /source/console/src/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-solutions/smart-product-solution/HEAD/source/console/src/index.js -------------------------------------------------------------------------------- /source/console/src/layouts/Admin.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-solutions/smart-product-solution/HEAD/source/console/src/layouts/Admin.jsx -------------------------------------------------------------------------------- /source/console/src/routes.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-solutions/smart-product-solution/HEAD/source/console/src/routes.js -------------------------------------------------------------------------------- /source/console/src/variables/Variables.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-solutions/smart-product-solution/HEAD/source/console/src/variables/Variables.jsx -------------------------------------------------------------------------------- /source/console/src/variables/configurations.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-solutions/smart-product-solution/HEAD/source/console/src/variables/configurations.js -------------------------------------------------------------------------------- /source/console/src/views/Alerts.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-solutions/smart-product-solution/HEAD/source/console/src/views/Alerts.jsx -------------------------------------------------------------------------------- /source/console/src/views/DeviceDetail.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-solutions/smart-product-solution/HEAD/source/console/src/views/DeviceDetail.jsx -------------------------------------------------------------------------------- /source/console/src/views/DeviceRegistration.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-solutions/smart-product-solution/HEAD/source/console/src/views/DeviceRegistration.jsx -------------------------------------------------------------------------------- /source/console/src/views/Devices.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-solutions/smart-product-solution/HEAD/source/console/src/views/Devices.jsx -------------------------------------------------------------------------------- /source/console/src/views/History.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-solutions/smart-product-solution/HEAD/source/console/src/views/History.jsx -------------------------------------------------------------------------------- /source/console/src/views/UserSetting.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-solutions/smart-product-solution/HEAD/source/console/src/views/UserSetting.jsx -------------------------------------------------------------------------------- /source/resources/authorizer/auth.common.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-solutions/smart-product-solution/HEAD/source/resources/authorizer/auth.common.js -------------------------------------------------------------------------------- /source/resources/authorizer/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-solutions/smart-product-solution/HEAD/source/resources/authorizer/package.json -------------------------------------------------------------------------------- /source/resources/authorizer/test-setup.spec.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-solutions/smart-product-solution/HEAD/source/resources/authorizer/test-setup.spec.js -------------------------------------------------------------------------------- /source/resources/cicd/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-solutions/smart-product-solution/HEAD/source/resources/cicd/index.js -------------------------------------------------------------------------------- /source/resources/cicd/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-solutions/smart-product-solution/HEAD/source/resources/cicd/package.json -------------------------------------------------------------------------------- /source/resources/cognito/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-solutions/smart-product-solution/HEAD/source/resources/cognito/index.js -------------------------------------------------------------------------------- /source/resources/cognito/index.spec.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-solutions/smart-product-solution/HEAD/source/resources/cognito/index.spec.js -------------------------------------------------------------------------------- /source/resources/cognito/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-solutions/smart-product-solution/HEAD/source/resources/cognito/package.json -------------------------------------------------------------------------------- /source/resources/helper/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-solutions/smart-product-solution/HEAD/source/resources/helper/index.js -------------------------------------------------------------------------------- /source/resources/helper/lib/dynamodb-helper.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-solutions/smart-product-solution/HEAD/source/resources/helper/lib/dynamodb-helper.js -------------------------------------------------------------------------------- /source/resources/helper/lib/dynamodb-helper.spec.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-solutions/smart-product-solution/HEAD/source/resources/helper/lib/dynamodb-helper.spec.js -------------------------------------------------------------------------------- /source/resources/helper/lib/iot-helper.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-solutions/smart-product-solution/HEAD/source/resources/helper/lib/iot-helper.js -------------------------------------------------------------------------------- /source/resources/helper/lib/iot-helper.spec.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-solutions/smart-product-solution/HEAD/source/resources/helper/lib/iot-helper.spec.js -------------------------------------------------------------------------------- /source/resources/helper/lib/s3-helper.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-solutions/smart-product-solution/HEAD/source/resources/helper/lib/s3-helper.js -------------------------------------------------------------------------------- /source/resources/helper/lib/test-setup.spec.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-solutions/smart-product-solution/HEAD/source/resources/helper/lib/test-setup.spec.js -------------------------------------------------------------------------------- /source/resources/helper/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-solutions/smart-product-solution/HEAD/source/resources/helper/package.json -------------------------------------------------------------------------------- /source/resources/logger/logger.common.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-solutions/smart-product-solution/HEAD/source/resources/logger/logger.common.js -------------------------------------------------------------------------------- /source/resources/logger/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-solutions/smart-product-solution/HEAD/source/resources/logger/package.json -------------------------------------------------------------------------------- /source/resources/logger/test-setup.spec.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-solutions/smart-product-solution/HEAD/source/resources/logger/test-setup.spec.js -------------------------------------------------------------------------------- /source/resources/usage-metrics/metrics.common.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-solutions/smart-product-solution/HEAD/source/resources/usage-metrics/metrics.common.js -------------------------------------------------------------------------------- /source/resources/usage-metrics/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-solutions/smart-product-solution/HEAD/source/resources/usage-metrics/package.json -------------------------------------------------------------------------------- /source/resources/usage-metrics/test-setup.spec.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-solutions/smart-product-solution/HEAD/source/resources/usage-metrics/test-setup.spec.js -------------------------------------------------------------------------------- /source/resources/utils/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-solutions/smart-product-solution/HEAD/source/resources/utils/package.json -------------------------------------------------------------------------------- /source/resources/utils/test-setup.spec.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-solutions/smart-product-solution/HEAD/source/resources/utils/test-setup.spec.js -------------------------------------------------------------------------------- /source/resources/utils/utils.common.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-solutions/smart-product-solution/HEAD/source/resources/utils/utils.common.js -------------------------------------------------------------------------------- /source/services/api/admin/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-solutions/smart-product-solution/HEAD/source/services/api/admin/index.js -------------------------------------------------------------------------------- /source/services/api/admin/lib/admin.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-solutions/smart-product-solution/HEAD/source/services/api/admin/lib/admin.js -------------------------------------------------------------------------------- /source/services/api/admin/lib/admin.spec.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-solutions/smart-product-solution/HEAD/source/services/api/admin/lib/admin.spec.js -------------------------------------------------------------------------------- /source/services/api/admin/lib/app.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-solutions/smart-product-solution/HEAD/source/services/api/admin/lib/app.js -------------------------------------------------------------------------------- /source/services/api/admin/lib/test-setup.spec.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-solutions/smart-product-solution/HEAD/source/services/api/admin/lib/test-setup.spec.js -------------------------------------------------------------------------------- /source/services/api/admin/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-solutions/smart-product-solution/HEAD/source/services/api/admin/package.json -------------------------------------------------------------------------------- /source/services/api/command/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-solutions/smart-product-solution/HEAD/source/services/api/command/index.js -------------------------------------------------------------------------------- /source/services/api/command/lib/app.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-solutions/smart-product-solution/HEAD/source/services/api/command/lib/app.js -------------------------------------------------------------------------------- /source/services/api/command/lib/command.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-solutions/smart-product-solution/HEAD/source/services/api/command/lib/command.js -------------------------------------------------------------------------------- /source/services/api/command/lib/command.spec.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-solutions/smart-product-solution/HEAD/source/services/api/command/lib/command.spec.js -------------------------------------------------------------------------------- /source/services/api/command/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-solutions/smart-product-solution/HEAD/source/services/api/command/package.json -------------------------------------------------------------------------------- /source/services/api/device/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-solutions/smart-product-solution/HEAD/source/services/api/device/index.js -------------------------------------------------------------------------------- /source/services/api/device/lib/app.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-solutions/smart-product-solution/HEAD/source/services/api/device/lib/app.js -------------------------------------------------------------------------------- /source/services/api/device/lib/device.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-solutions/smart-product-solution/HEAD/source/services/api/device/lib/device.js -------------------------------------------------------------------------------- /source/services/api/device/lib/device.spec.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-solutions/smart-product-solution/HEAD/source/services/api/device/lib/device.spec.js -------------------------------------------------------------------------------- /source/services/api/device/lib/test-setup.spec.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-solutions/smart-product-solution/HEAD/source/services/api/device/lib/test-setup.spec.js -------------------------------------------------------------------------------- /source/services/api/device/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-solutions/smart-product-solution/HEAD/source/services/api/device/package.json -------------------------------------------------------------------------------- /source/services/api/event/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-solutions/smart-product-solution/HEAD/source/services/api/event/index.js -------------------------------------------------------------------------------- /source/services/api/event/lib/app.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-solutions/smart-product-solution/HEAD/source/services/api/event/lib/app.js -------------------------------------------------------------------------------- /source/services/api/event/lib/event.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-solutions/smart-product-solution/HEAD/source/services/api/event/lib/event.js -------------------------------------------------------------------------------- /source/services/api/event/lib/event.spec.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-solutions/smart-product-solution/HEAD/source/services/api/event/lib/event.spec.js -------------------------------------------------------------------------------- /source/services/api/event/lib/test-setup.spec.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-solutions/smart-product-solution/HEAD/source/services/api/event/lib/test-setup.spec.js -------------------------------------------------------------------------------- /source/services/api/event/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-solutions/smart-product-solution/HEAD/source/services/api/event/package.json -------------------------------------------------------------------------------- /source/services/api/registration/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-solutions/smart-product-solution/HEAD/source/services/api/registration/index.js -------------------------------------------------------------------------------- /source/services/api/registration/lib/app.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-solutions/smart-product-solution/HEAD/source/services/api/registration/lib/app.js -------------------------------------------------------------------------------- /source/services/api/registration/lib/registration.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-solutions/smart-product-solution/HEAD/source/services/api/registration/lib/registration.js -------------------------------------------------------------------------------- /source/services/api/registration/lib/registration.spec.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-solutions/smart-product-solution/HEAD/source/services/api/registration/lib/registration.spec.js -------------------------------------------------------------------------------- /source/services/api/registration/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-solutions/smart-product-solution/HEAD/source/services/api/registration/package.json -------------------------------------------------------------------------------- /source/services/api/status/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-solutions/smart-product-solution/HEAD/source/services/api/status/index.js -------------------------------------------------------------------------------- /source/services/api/status/lib/app.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-solutions/smart-product-solution/HEAD/source/services/api/status/lib/app.js -------------------------------------------------------------------------------- /source/services/api/status/lib/status.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-solutions/smart-product-solution/HEAD/source/services/api/status/lib/status.js -------------------------------------------------------------------------------- /source/services/api/status/lib/status.spec.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-solutions/smart-product-solution/HEAD/source/services/api/status/lib/status.spec.js -------------------------------------------------------------------------------- /source/services/api/status/lib/test-setup.spec.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-solutions/smart-product-solution/HEAD/source/services/api/status/lib/test-setup.spec.js -------------------------------------------------------------------------------- /source/services/api/status/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-solutions/smart-product-solution/HEAD/source/services/api/status/package.json -------------------------------------------------------------------------------- /source/services/command-status/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-solutions/smart-product-solution/HEAD/source/services/command-status/index.js -------------------------------------------------------------------------------- /source/services/command-status/lib/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-solutions/smart-product-solution/HEAD/source/services/command-status/lib/index.js -------------------------------------------------------------------------------- /source/services/command-status/lib/index.spec.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-solutions/smart-product-solution/HEAD/source/services/command-status/lib/index.spec.js -------------------------------------------------------------------------------- /source/services/command-status/lib/message.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-solutions/smart-product-solution/HEAD/source/services/command-status/lib/message.js -------------------------------------------------------------------------------- /source/services/command-status/lib/message.spec.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-solutions/smart-product-solution/HEAD/source/services/command-status/lib/message.spec.js -------------------------------------------------------------------------------- /source/services/command-status/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-solutions/smart-product-solution/HEAD/source/services/command-status/package.json -------------------------------------------------------------------------------- /source/services/event-proxy/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-solutions/smart-product-solution/HEAD/source/services/event-proxy/index.js -------------------------------------------------------------------------------- /source/services/event-proxy/lib/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-solutions/smart-product-solution/HEAD/source/services/event-proxy/lib/index.js -------------------------------------------------------------------------------- /source/services/event-proxy/lib/index.spec.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-solutions/smart-product-solution/HEAD/source/services/event-proxy/lib/index.spec.js -------------------------------------------------------------------------------- /source/services/event-proxy/lib/message.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-solutions/smart-product-solution/HEAD/source/services/event-proxy/lib/message.js -------------------------------------------------------------------------------- /source/services/event-proxy/lib/message.spec.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-solutions/smart-product-solution/HEAD/source/services/event-proxy/lib/message.spec.js -------------------------------------------------------------------------------- /source/services/event-proxy/lib/test-setup.spec.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-solutions/smart-product-solution/HEAD/source/services/event-proxy/lib/test-setup.spec.js -------------------------------------------------------------------------------- /source/services/event-proxy/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-solutions/smart-product-solution/HEAD/source/services/event-proxy/package.json -------------------------------------------------------------------------------- /source/services/jitr/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-solutions/smart-product-solution/HEAD/source/services/jitr/index.js -------------------------------------------------------------------------------- /source/services/jitr/lib/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-solutions/smart-product-solution/HEAD/source/services/jitr/lib/index.js -------------------------------------------------------------------------------- /source/services/jitr/lib/jitrHelper.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-solutions/smart-product-solution/HEAD/source/services/jitr/lib/jitrHelper.js -------------------------------------------------------------------------------- /source/services/jitr/lib/jitrHelper.spec.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-solutions/smart-product-solution/HEAD/source/services/jitr/lib/jitrHelper.spec.js -------------------------------------------------------------------------------- /source/services/jitr/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-solutions/smart-product-solution/HEAD/source/services/jitr/package.json -------------------------------------------------------------------------------- /source/services/notification/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-solutions/smart-product-solution/HEAD/source/services/notification/index.js -------------------------------------------------------------------------------- /source/services/notification/lib/alert.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-solutions/smart-product-solution/HEAD/source/services/notification/lib/alert.js -------------------------------------------------------------------------------- /source/services/notification/lib/alert.spec.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-solutions/smart-product-solution/HEAD/source/services/notification/lib/alert.spec.js -------------------------------------------------------------------------------- /source/services/notification/lib/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-solutions/smart-product-solution/HEAD/source/services/notification/lib/index.js -------------------------------------------------------------------------------- /source/services/notification/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-solutions/smart-product-solution/HEAD/source/services/notification/package.json -------------------------------------------------------------------------------- /source/services/telemetry/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-solutions/smart-product-solution/HEAD/source/services/telemetry/index.js -------------------------------------------------------------------------------- /source/services/telemetry/lib/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-solutions/smart-product-solution/HEAD/source/services/telemetry/lib/index.js -------------------------------------------------------------------------------- /source/services/telemetry/lib/index.spec.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-solutions/smart-product-solution/HEAD/source/services/telemetry/lib/index.spec.js -------------------------------------------------------------------------------- /source/services/telemetry/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-solutions/smart-product-solution/HEAD/source/services/telemetry/package.json --------------------------------------------------------------------------------