├── .gitignore ├── .prettierignore ├── .prettierrc ├── LICENSE.MD ├── README.MD ├── coverage ├── clover.xml ├── coverage-final.json ├── lcov-report │ ├── base.css │ ├── block-navigation.js │ ├── favicon.png │ ├── index.html │ ├── lib │ │ ├── common │ │ │ ├── index.html │ │ │ ├── sendgrid.constants.ts.html │ │ │ ├── sendgrid.decorator.ts.html │ │ │ └── sendgrid.util.ts.html │ │ ├── index.html │ │ ├── providers │ │ │ ├── index.html │ │ │ ├── index.ts.html │ │ │ └── sendgrid.providers.ts.html │ │ ├── sendgrid-core.module.ts.html │ │ ├── sendgrid.module.ts.html │ │ └── services │ │ │ ├── index.html │ │ │ ├── index.ts.html │ │ │ └── sendgrid.service.ts.html │ ├── prettify.css │ ├── prettify.js │ ├── sort-arrow-sprite.png │ └── sorter.js └── lcov.info ├── dist ├── common │ ├── index.d.ts │ ├── index.js │ ├── sendgrid.constants.d.ts │ ├── sendgrid.constants.js │ ├── sendgrid.decorator.d.ts │ ├── sendgrid.decorator.js │ ├── sendgrid.util.d.ts │ └── sendgrid.util.js ├── index.d.ts ├── index.js ├── interfaces │ ├── index.d.ts │ ├── index.js │ ├── sendgrid-options.interface.d.ts │ └── sendgrid-options.interface.js ├── providers │ ├── index.d.ts │ ├── index.js │ ├── sendgrid.providers.d.ts │ └── sendgrid.providers.js ├── sendgrid-core.module.d.ts ├── sendgrid-core.module.js ├── sendgrid.module.d.ts ├── sendgrid.module.js └── services │ ├── index.d.ts │ ├── index.js │ ├── sendgrid.service.d.ts │ └── sendgrid.service.js ├── lib ├── common │ ├── index.ts │ ├── sendgrid.constants.ts │ ├── sendgrid.decorator.spec.ts │ ├── sendgrid.decorator.ts │ └── sendgrid.util.ts ├── index.ts ├── interfaces │ ├── index.ts │ └── sendgrid-options.interface.ts ├── providers │ ├── index.ts │ └── sendgrid.providers.ts ├── sendgrid-core.module.ts ├── sendgrid.module.spec.ts ├── sendgrid.module.ts └── services │ ├── index.ts │ └── sendgrid.service.ts ├── package.json ├── tsconfig.build.json └── tsconfig.json /.gitignore: -------------------------------------------------------------------------------- 1 | node_modules 2 | -------------------------------------------------------------------------------- /.prettierignore: -------------------------------------------------------------------------------- 1 | lib/** 2 | node_modules/** -------------------------------------------------------------------------------- /.prettierrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ntegral/nestjs-sendgrid/HEAD/.prettierrc -------------------------------------------------------------------------------- /LICENSE.MD: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ntegral/nestjs-sendgrid/HEAD/LICENSE.MD -------------------------------------------------------------------------------- /README.MD: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ntegral/nestjs-sendgrid/HEAD/README.MD -------------------------------------------------------------------------------- /coverage/clover.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ntegral/nestjs-sendgrid/HEAD/coverage/clover.xml -------------------------------------------------------------------------------- /coverage/coverage-final.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ntegral/nestjs-sendgrid/HEAD/coverage/coverage-final.json -------------------------------------------------------------------------------- /coverage/lcov-report/base.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ntegral/nestjs-sendgrid/HEAD/coverage/lcov-report/base.css -------------------------------------------------------------------------------- /coverage/lcov-report/block-navigation.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ntegral/nestjs-sendgrid/HEAD/coverage/lcov-report/block-navigation.js -------------------------------------------------------------------------------- /coverage/lcov-report/favicon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ntegral/nestjs-sendgrid/HEAD/coverage/lcov-report/favicon.png -------------------------------------------------------------------------------- /coverage/lcov-report/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ntegral/nestjs-sendgrid/HEAD/coverage/lcov-report/index.html -------------------------------------------------------------------------------- /coverage/lcov-report/lib/common/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ntegral/nestjs-sendgrid/HEAD/coverage/lcov-report/lib/common/index.html -------------------------------------------------------------------------------- /coverage/lcov-report/lib/common/sendgrid.constants.ts.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ntegral/nestjs-sendgrid/HEAD/coverage/lcov-report/lib/common/sendgrid.constants.ts.html -------------------------------------------------------------------------------- /coverage/lcov-report/lib/common/sendgrid.decorator.ts.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ntegral/nestjs-sendgrid/HEAD/coverage/lcov-report/lib/common/sendgrid.decorator.ts.html -------------------------------------------------------------------------------- /coverage/lcov-report/lib/common/sendgrid.util.ts.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ntegral/nestjs-sendgrid/HEAD/coverage/lcov-report/lib/common/sendgrid.util.ts.html -------------------------------------------------------------------------------- /coverage/lcov-report/lib/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ntegral/nestjs-sendgrid/HEAD/coverage/lcov-report/lib/index.html -------------------------------------------------------------------------------- /coverage/lcov-report/lib/providers/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ntegral/nestjs-sendgrid/HEAD/coverage/lcov-report/lib/providers/index.html -------------------------------------------------------------------------------- /coverage/lcov-report/lib/providers/index.ts.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ntegral/nestjs-sendgrid/HEAD/coverage/lcov-report/lib/providers/index.ts.html -------------------------------------------------------------------------------- /coverage/lcov-report/lib/providers/sendgrid.providers.ts.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ntegral/nestjs-sendgrid/HEAD/coverage/lcov-report/lib/providers/sendgrid.providers.ts.html -------------------------------------------------------------------------------- /coverage/lcov-report/lib/sendgrid-core.module.ts.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ntegral/nestjs-sendgrid/HEAD/coverage/lcov-report/lib/sendgrid-core.module.ts.html -------------------------------------------------------------------------------- /coverage/lcov-report/lib/sendgrid.module.ts.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ntegral/nestjs-sendgrid/HEAD/coverage/lcov-report/lib/sendgrid.module.ts.html -------------------------------------------------------------------------------- /coverage/lcov-report/lib/services/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ntegral/nestjs-sendgrid/HEAD/coverage/lcov-report/lib/services/index.html -------------------------------------------------------------------------------- /coverage/lcov-report/lib/services/index.ts.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ntegral/nestjs-sendgrid/HEAD/coverage/lcov-report/lib/services/index.ts.html -------------------------------------------------------------------------------- /coverage/lcov-report/lib/services/sendgrid.service.ts.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ntegral/nestjs-sendgrid/HEAD/coverage/lcov-report/lib/services/sendgrid.service.ts.html -------------------------------------------------------------------------------- /coverage/lcov-report/prettify.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ntegral/nestjs-sendgrid/HEAD/coverage/lcov-report/prettify.css -------------------------------------------------------------------------------- /coverage/lcov-report/prettify.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ntegral/nestjs-sendgrid/HEAD/coverage/lcov-report/prettify.js -------------------------------------------------------------------------------- /coverage/lcov-report/sort-arrow-sprite.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ntegral/nestjs-sendgrid/HEAD/coverage/lcov-report/sort-arrow-sprite.png -------------------------------------------------------------------------------- /coverage/lcov-report/sorter.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ntegral/nestjs-sendgrid/HEAD/coverage/lcov-report/sorter.js -------------------------------------------------------------------------------- /coverage/lcov.info: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ntegral/nestjs-sendgrid/HEAD/coverage/lcov.info -------------------------------------------------------------------------------- /dist/common/index.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ntegral/nestjs-sendgrid/HEAD/dist/common/index.d.ts -------------------------------------------------------------------------------- /dist/common/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ntegral/nestjs-sendgrid/HEAD/dist/common/index.js -------------------------------------------------------------------------------- /dist/common/sendgrid.constants.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ntegral/nestjs-sendgrid/HEAD/dist/common/sendgrid.constants.d.ts -------------------------------------------------------------------------------- /dist/common/sendgrid.constants.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ntegral/nestjs-sendgrid/HEAD/dist/common/sendgrid.constants.js -------------------------------------------------------------------------------- /dist/common/sendgrid.decorator.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ntegral/nestjs-sendgrid/HEAD/dist/common/sendgrid.decorator.d.ts -------------------------------------------------------------------------------- /dist/common/sendgrid.decorator.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ntegral/nestjs-sendgrid/HEAD/dist/common/sendgrid.decorator.js -------------------------------------------------------------------------------- /dist/common/sendgrid.util.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ntegral/nestjs-sendgrid/HEAD/dist/common/sendgrid.util.d.ts -------------------------------------------------------------------------------- /dist/common/sendgrid.util.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ntegral/nestjs-sendgrid/HEAD/dist/common/sendgrid.util.js -------------------------------------------------------------------------------- /dist/index.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ntegral/nestjs-sendgrid/HEAD/dist/index.d.ts -------------------------------------------------------------------------------- /dist/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ntegral/nestjs-sendgrid/HEAD/dist/index.js -------------------------------------------------------------------------------- /dist/interfaces/index.d.ts: -------------------------------------------------------------------------------- 1 | export * from './sendgrid-options.interface'; 2 | -------------------------------------------------------------------------------- /dist/interfaces/index.js: -------------------------------------------------------------------------------- 1 | "use strict"; 2 | Object.defineProperty(exports, "__esModule", { value: true }); 3 | -------------------------------------------------------------------------------- /dist/interfaces/sendgrid-options.interface.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ntegral/nestjs-sendgrid/HEAD/dist/interfaces/sendgrid-options.interface.d.ts -------------------------------------------------------------------------------- /dist/interfaces/sendgrid-options.interface.js: -------------------------------------------------------------------------------- 1 | "use strict"; 2 | Object.defineProperty(exports, "__esModule", { value: true }); 3 | -------------------------------------------------------------------------------- /dist/providers/index.d.ts: -------------------------------------------------------------------------------- 1 | export * from './sendgrid.providers'; 2 | -------------------------------------------------------------------------------- /dist/providers/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ntegral/nestjs-sendgrid/HEAD/dist/providers/index.js -------------------------------------------------------------------------------- /dist/providers/sendgrid.providers.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ntegral/nestjs-sendgrid/HEAD/dist/providers/sendgrid.providers.d.ts -------------------------------------------------------------------------------- /dist/providers/sendgrid.providers.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ntegral/nestjs-sendgrid/HEAD/dist/providers/sendgrid.providers.js -------------------------------------------------------------------------------- /dist/sendgrid-core.module.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ntegral/nestjs-sendgrid/HEAD/dist/sendgrid-core.module.d.ts -------------------------------------------------------------------------------- /dist/sendgrid-core.module.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ntegral/nestjs-sendgrid/HEAD/dist/sendgrid-core.module.js -------------------------------------------------------------------------------- /dist/sendgrid.module.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ntegral/nestjs-sendgrid/HEAD/dist/sendgrid.module.d.ts -------------------------------------------------------------------------------- /dist/sendgrid.module.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ntegral/nestjs-sendgrid/HEAD/dist/sendgrid.module.js -------------------------------------------------------------------------------- /dist/services/index.d.ts: -------------------------------------------------------------------------------- 1 | export * from './sendgrid.service'; 2 | -------------------------------------------------------------------------------- /dist/services/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ntegral/nestjs-sendgrid/HEAD/dist/services/index.js -------------------------------------------------------------------------------- /dist/services/sendgrid.service.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ntegral/nestjs-sendgrid/HEAD/dist/services/sendgrid.service.d.ts -------------------------------------------------------------------------------- /dist/services/sendgrid.service.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ntegral/nestjs-sendgrid/HEAD/dist/services/sendgrid.service.js -------------------------------------------------------------------------------- /lib/common/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ntegral/nestjs-sendgrid/HEAD/lib/common/index.ts -------------------------------------------------------------------------------- /lib/common/sendgrid.constants.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ntegral/nestjs-sendgrid/HEAD/lib/common/sendgrid.constants.ts -------------------------------------------------------------------------------- /lib/common/sendgrid.decorator.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ntegral/nestjs-sendgrid/HEAD/lib/common/sendgrid.decorator.spec.ts -------------------------------------------------------------------------------- /lib/common/sendgrid.decorator.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ntegral/nestjs-sendgrid/HEAD/lib/common/sendgrid.decorator.ts -------------------------------------------------------------------------------- /lib/common/sendgrid.util.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ntegral/nestjs-sendgrid/HEAD/lib/common/sendgrid.util.ts -------------------------------------------------------------------------------- /lib/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ntegral/nestjs-sendgrid/HEAD/lib/index.ts -------------------------------------------------------------------------------- /lib/interfaces/index.ts: -------------------------------------------------------------------------------- 1 | export * from './sendgrid-options.interface'; -------------------------------------------------------------------------------- /lib/interfaces/sendgrid-options.interface.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ntegral/nestjs-sendgrid/HEAD/lib/interfaces/sendgrid-options.interface.ts -------------------------------------------------------------------------------- /lib/providers/index.ts: -------------------------------------------------------------------------------- 1 | export * from './sendgrid.providers'; -------------------------------------------------------------------------------- /lib/providers/sendgrid.providers.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ntegral/nestjs-sendgrid/HEAD/lib/providers/sendgrid.providers.ts -------------------------------------------------------------------------------- /lib/sendgrid-core.module.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ntegral/nestjs-sendgrid/HEAD/lib/sendgrid-core.module.ts -------------------------------------------------------------------------------- /lib/sendgrid.module.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ntegral/nestjs-sendgrid/HEAD/lib/sendgrid.module.spec.ts -------------------------------------------------------------------------------- /lib/sendgrid.module.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ntegral/nestjs-sendgrid/HEAD/lib/sendgrid.module.ts -------------------------------------------------------------------------------- /lib/services/index.ts: -------------------------------------------------------------------------------- 1 | export * from './sendgrid.service'; -------------------------------------------------------------------------------- /lib/services/sendgrid.service.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ntegral/nestjs-sendgrid/HEAD/lib/services/sendgrid.service.ts -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ntegral/nestjs-sendgrid/HEAD/package.json -------------------------------------------------------------------------------- /tsconfig.build.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ntegral/nestjs-sendgrid/HEAD/tsconfig.build.json -------------------------------------------------------------------------------- /tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ntegral/nestjs-sendgrid/HEAD/tsconfig.json --------------------------------------------------------------------------------