├── .gitignore ├── .npmignore ├── README.md ├── package.json ├── src ├── api │ ├── admin │ │ └── custom-admin-handler.ts │ ├── index.ts │ ├── middleware │ │ ├── await-middleware.ts │ │ └── index.ts │ ├── routes │ │ ├── custom-route-handle.ts │ │ └── index.ts │ └── store │ │ └── custom-store-handler.ts ├── index.ts ├── loaders │ └── loader.ts ├── migrations │ └── 1617703530229-restock_notification.ts ├── models │ └── custom.ts ├── services │ ├── __tests__ │ │ └── testService.spec.ts │ └── myService.ts └── subscribers │ └── index.ts ├── tsconfig.base.json ├── tsconfig.json └── tsconfig.spec.json /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adrien2p/medusa-plugin-starter-ts/HEAD/.gitignore -------------------------------------------------------------------------------- /.npmignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adrien2p/medusa-plugin-starter-ts/HEAD/.npmignore -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adrien2p/medusa-plugin-starter-ts/HEAD/README.md -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adrien2p/medusa-plugin-starter-ts/HEAD/package.json -------------------------------------------------------------------------------- /src/api/admin/custom-admin-handler.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adrien2p/medusa-plugin-starter-ts/HEAD/src/api/admin/custom-admin-handler.ts -------------------------------------------------------------------------------- /src/api/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adrien2p/medusa-plugin-starter-ts/HEAD/src/api/index.ts -------------------------------------------------------------------------------- /src/api/middleware/await-middleware.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adrien2p/medusa-plugin-starter-ts/HEAD/src/api/middleware/await-middleware.ts -------------------------------------------------------------------------------- /src/api/middleware/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adrien2p/medusa-plugin-starter-ts/HEAD/src/api/middleware/index.ts -------------------------------------------------------------------------------- /src/api/routes/custom-route-handle.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adrien2p/medusa-plugin-starter-ts/HEAD/src/api/routes/custom-route-handle.ts -------------------------------------------------------------------------------- /src/api/routes/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adrien2p/medusa-plugin-starter-ts/HEAD/src/api/routes/index.ts -------------------------------------------------------------------------------- /src/api/store/custom-store-handler.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adrien2p/medusa-plugin-starter-ts/HEAD/src/api/store/custom-store-handler.ts -------------------------------------------------------------------------------- /src/index.ts: -------------------------------------------------------------------------------- 1 | // noop 2 | -------------------------------------------------------------------------------- /src/loaders/loader.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adrien2p/medusa-plugin-starter-ts/HEAD/src/loaders/loader.ts -------------------------------------------------------------------------------- /src/migrations/1617703530229-restock_notification.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adrien2p/medusa-plugin-starter-ts/HEAD/src/migrations/1617703530229-restock_notification.ts -------------------------------------------------------------------------------- /src/models/custom.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adrien2p/medusa-plugin-starter-ts/HEAD/src/models/custom.ts -------------------------------------------------------------------------------- /src/services/__tests__/testService.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adrien2p/medusa-plugin-starter-ts/HEAD/src/services/__tests__/testService.spec.ts -------------------------------------------------------------------------------- /src/services/myService.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adrien2p/medusa-plugin-starter-ts/HEAD/src/services/myService.ts -------------------------------------------------------------------------------- /src/subscribers/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adrien2p/medusa-plugin-starter-ts/HEAD/src/subscribers/index.ts -------------------------------------------------------------------------------- /tsconfig.base.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adrien2p/medusa-plugin-starter-ts/HEAD/tsconfig.base.json -------------------------------------------------------------------------------- /tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adrien2p/medusa-plugin-starter-ts/HEAD/tsconfig.json -------------------------------------------------------------------------------- /tsconfig.spec.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adrien2p/medusa-plugin-starter-ts/HEAD/tsconfig.spec.json --------------------------------------------------------------------------------