├── .prettierignore ├── .npmignore ├── packages ├── sendgrid │ ├── .npmignore │ ├── jest.config.js │ ├── .prettierrc.js │ ├── src │ │ ├── sendgrid.logger.ts │ │ ├── index.ts │ │ ├── sendgrid.constants.ts │ │ ├── sendgrid.interfaces.ts │ │ ├── sendgrid.service.ts │ │ ├── sendgrid.module.ts │ │ ├── sendgrid.module.spec.ts │ │ └── sendgrid.service.spec.ts │ ├── tsconfig.json │ ├── tsconfig.esm.json │ ├── tsconfig.cjs.json │ ├── README.md │ ├── package.json │ └── CHANGELOG.md └── terminus │ ├── .npmignore │ ├── jest.config.js │ ├── .prettierrc.js │ ├── src │ ├── index.ts │ ├── constants.ts │ ├── health.module.ts │ ├── sendgrid.health.ts │ ├── health.module.spec.ts │ └── sendgrid.health.spec.ts │ ├── tsconfig.json │ ├── tsconfig.esm.json │ ├── tsconfig.cjs.json │ ├── README.md │ ├── package.json │ └── CHANGELOG.md ├── .commitlintrc.json ├── renovate.json ├── .vscode ├── extensions.json └── settings.json ├── .prettierrc.js ├── .gitignore ├── .huskyrc.json ├── lint-staged.config.js ├── tsconfig.eslint.json ├── .codeclimate.yml ├── jest.config.base.js ├── lerna.json ├── tsconfig.base.json ├── turbo.json ├── README.md ├── .github └── workflows │ ├── test.yml │ ├── major-release.yml │ ├── minor-release.yml │ ├── patch-release.yml │ └── codeql-analysis.yml ├── eslint.config.js ├── LICENSE ├── package.json └── CHANGELOG.md /.prettierignore: -------------------------------------------------------------------------------- 1 | coverage 2 | dist 3 | node_modules -------------------------------------------------------------------------------- /.npmignore: -------------------------------------------------------------------------------- 1 | * 2 | !dist/**/* 3 | dist/**/*.tsbuildinfo 4 | -------------------------------------------------------------------------------- /packages/sendgrid/.npmignore: -------------------------------------------------------------------------------- 1 | * 2 | !dist/**/* 3 | dist/**/*.tsbuildinfo 4 | -------------------------------------------------------------------------------- /packages/terminus/.npmignore: -------------------------------------------------------------------------------- 1 | * 2 | !dist/**/* 3 | dist/**/*.tsbuildinfo 4 | -------------------------------------------------------------------------------- /.commitlintrc.json: -------------------------------------------------------------------------------- 1 | { 2 | "extends": ["@commitlint/config-conventional"] 3 | } 4 | -------------------------------------------------------------------------------- /renovate.json: -------------------------------------------------------------------------------- 1 | { 2 | "extends": ["github>anchan828/renovate-config"] 3 | } 4 | -------------------------------------------------------------------------------- /.vscode/extensions.json: -------------------------------------------------------------------------------- 1 | { 2 | "recommendations": ["dbaeumer.vscode-eslint", "esbenp.prettier-vscode"] 3 | } 4 | -------------------------------------------------------------------------------- /.prettierrc.js: -------------------------------------------------------------------------------- 1 | module.exports = { 2 | printWidth: 120, 3 | trailingComma: "all", 4 | bracketSpacing: true, 5 | }; 6 | -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- 1 | **/node_modules 2 | **/dist 3 | **/e2e-coverage 4 | **/coverage 5 | .DS_Store 6 | packages/*/LICENSE 7 | .turbo 8 | -------------------------------------------------------------------------------- /packages/sendgrid/jest.config.js: -------------------------------------------------------------------------------- 1 | const base = require("../../jest.config.base"); 2 | module.exports = { 3 | ...base, 4 | }; 5 | -------------------------------------------------------------------------------- /packages/terminus/jest.config.js: -------------------------------------------------------------------------------- 1 | const base = require("../../jest.config.base"); 2 | module.exports = { 3 | ...base, 4 | }; 5 | -------------------------------------------------------------------------------- /.huskyrc.json: -------------------------------------------------------------------------------- 1 | { 2 | "hooks": { 3 | "pre-commit": "lint-staged", 4 | "commit-msg": "commitlint -E HUSKY_GIT_PARAMS" 5 | } 6 | } 7 | -------------------------------------------------------------------------------- /packages/sendgrid/.prettierrc.js: -------------------------------------------------------------------------------- 1 | const basePrettierConfig = require("../../.prettierrc"); 2 | 3 | module.exports = { 4 | ...basePrettierConfig, 5 | }; 6 | -------------------------------------------------------------------------------- /packages/terminus/.prettierrc.js: -------------------------------------------------------------------------------- 1 | const basePrettierConfig = require("../../.prettierrc"); 2 | 3 | module.exports = { 4 | ...basePrettierConfig, 5 | }; 6 | -------------------------------------------------------------------------------- /packages/terminus/src/index.ts: -------------------------------------------------------------------------------- 1 | export { SendGridHealthModule } from "./health.module"; 2 | export { SendGridHealthIndicator } from "./sendgrid.health"; 3 | -------------------------------------------------------------------------------- /lint-staged.config.js: -------------------------------------------------------------------------------- 1 | module.exports = { 2 | "*.{ts}": ["eslint --fix", "prettier --write"], 3 | "*.{js,json,yml,yaml,md}": ["prettier --write"], 4 | }; 5 | -------------------------------------------------------------------------------- /packages/terminus/src/constants.ts: -------------------------------------------------------------------------------- 1 | export const STATUS_API = "http://status.sendgrid.com/api/v2/components.json" as const; 2 | export const COMPONENT_NAME = "API v3" as const; 3 | -------------------------------------------------------------------------------- /packages/sendgrid/src/sendgrid.logger.ts: -------------------------------------------------------------------------------- 1 | import { Logger } from "@nestjs/common"; 2 | import { SendGridConstants } from "./sendgrid.constants"; 3 | 4 | export const logger = new Logger(SendGridConstants.SENDGRID_MODULE); 5 | -------------------------------------------------------------------------------- /packages/sendgrid/tsconfig.json: -------------------------------------------------------------------------------- 1 | { 2 | "extends": "../../tsconfig.base.json", 3 | "compilerOptions": { 4 | "moduleResolution": "node" 5 | }, 6 | "exclude": [ 7 | "node_modules", 8 | "dist" 9 | ] 10 | } -------------------------------------------------------------------------------- /packages/terminus/tsconfig.json: -------------------------------------------------------------------------------- 1 | { 2 | "extends": "../../tsconfig.base.json", 3 | "compilerOptions": { 4 | "moduleResolution": "node" 5 | }, 6 | "exclude": [ 7 | "node_modules", 8 | "dist" 9 | ] 10 | } -------------------------------------------------------------------------------- /tsconfig.eslint.json: -------------------------------------------------------------------------------- 1 | { 2 | "extends": "./tsconfig.base.json", 3 | "compilerOptions": { "allowJs": true }, 4 | "include": ["packages/*/src/**/*.ts", "scripts/**/*.ts", ".eslintrc.js"], 5 | "exclude": ["node_modules", "dist"] 6 | } 7 | -------------------------------------------------------------------------------- /.codeclimate.yml: -------------------------------------------------------------------------------- 1 | version: "2" 2 | plugins: 3 | eslint: 4 | enabled: true 5 | channel: "eslint-5" 6 | checks: 7 | similar-code: 8 | enabled: false 9 | exclude_patterns: 10 | - "**/coverage/" 11 | - "**/node_modules/" 12 | - "**/dist/" 13 | -------------------------------------------------------------------------------- /packages/sendgrid/src/index.ts: -------------------------------------------------------------------------------- 1 | export { SendGridModuleAsyncOptions, SendGridModuleOptions, SendGridModuleOptionsFactory } from "./sendgrid.interfaces"; 2 | export { SendGridModule } from "./sendgrid.module"; 3 | export { SendGridService } from "./sendgrid.service"; 4 | -------------------------------------------------------------------------------- /packages/sendgrid/tsconfig.esm.json: -------------------------------------------------------------------------------- 1 | { 2 | "extends": "./tsconfig.json", 3 | "compilerOptions": { 4 | "module": "esnext", 5 | "outDir": "dist/esm" 6 | }, 7 | "exclude": [ 8 | "node_modules", 9 | "**/*spec.ts", 10 | "dist" 11 | ] 12 | } -------------------------------------------------------------------------------- /packages/terminus/tsconfig.esm.json: -------------------------------------------------------------------------------- 1 | { 2 | "extends": "./tsconfig.json", 3 | "compilerOptions": { 4 | "module": "esnext", 5 | "outDir": "dist/esm" 6 | }, 7 | "exclude": [ 8 | "node_modules", 9 | "**/*spec.ts", 10 | "dist" 11 | ] 12 | } -------------------------------------------------------------------------------- /packages/sendgrid/tsconfig.cjs.json: -------------------------------------------------------------------------------- 1 | { 2 | "extends": "./tsconfig.json", 3 | "compilerOptions": { 4 | "module": "commonjs", 5 | "outDir": "dist/cjs" 6 | }, 7 | "exclude": [ 8 | "node_modules", 9 | "**/*spec.ts", 10 | "dist" 11 | ] 12 | } -------------------------------------------------------------------------------- /packages/terminus/tsconfig.cjs.json: -------------------------------------------------------------------------------- 1 | { 2 | "extends": "./tsconfig.json", 3 | "compilerOptions": { 4 | "module": "commonjs", 5 | "outDir": "dist/cjs" 6 | }, 7 | "exclude": [ 8 | "node_modules", 9 | "**/*spec.ts", 10 | "dist" 11 | ] 12 | } -------------------------------------------------------------------------------- /jest.config.base.js: -------------------------------------------------------------------------------- 1 | module.exports = { 2 | preset: "ts-jest", 3 | rootDir: "src", 4 | coverageDirectory: "../coverage", 5 | coverageReporters: ["text-summary", "json-summary", "lcov", "text", "clover"], 6 | testEnvironment: "node", 7 | verbose: true, 8 | silent: false, 9 | }; 10 | -------------------------------------------------------------------------------- /packages/sendgrid/src/sendgrid.constants.ts: -------------------------------------------------------------------------------- 1 | export class SendGridConstants { 2 | public static readonly SENDGRID_MODULE = "SendGridModule"; 3 | 4 | public static readonly SENDGRID_API_KEY = "SENDGRID_API_KEY"; 5 | 6 | public static readonly SENDGRID_MODULE_OPTIONS = "SENDGRID_MODULE_OPTIONS"; 7 | } 8 | -------------------------------------------------------------------------------- /lerna.json: -------------------------------------------------------------------------------- 1 | { 2 | "packages": [ 3 | "packages/*" 4 | ], 5 | "command": { 6 | "publish": { 7 | "ignoreChanges": [ 8 | "dist/**/*" 9 | ], 10 | "message": "chore(release): publish %s", 11 | "conventionalCommits": true, 12 | "graphType": "dependencies" 13 | } 14 | }, 15 | "version": "0.9.28" 16 | } 17 | -------------------------------------------------------------------------------- /packages/terminus/src/health.module.ts: -------------------------------------------------------------------------------- 1 | import { HttpModule } from "@nestjs/axios"; 2 | import { Module } from "@nestjs/common"; 3 | import { SendGridHealthIndicator } from "./sendgrid.health"; 4 | 5 | @Module({ 6 | imports: [HttpModule], 7 | providers: [SendGridHealthIndicator], 8 | exports: [SendGridHealthIndicator], 9 | }) 10 | export class SendGridHealthModule {} 11 | -------------------------------------------------------------------------------- /tsconfig.base.json: -------------------------------------------------------------------------------- 1 | { 2 | "compilerOptions": { 3 | "module": "commonjs", 4 | "declaration": true, 5 | "removeComments": false, 6 | "emitDecoratorMetadata": true, 7 | "experimentalDecorators": true, 8 | "target": "es2021", 9 | "sourceMap": false, 10 | "strict": true, 11 | "outDir": "./dist", 12 | "baseUrl": "./", 13 | "skipLibCheck": true, 14 | "incremental": false, 15 | }, 16 | "exclude": ["node_modules", "dist", "scripts"], 17 | } 18 | -------------------------------------------------------------------------------- /turbo.json: -------------------------------------------------------------------------------- 1 | { 2 | "$schema": "https://turborepo.org/schema.json", 3 | "tasks": { 4 | "build": { 5 | "dependsOn": ["^build", "^copy:license"], 6 | "outputs": ["dist/**"] 7 | }, 8 | "lint": { 9 | "outputs": [] 10 | }, 11 | "lint:fix": { 12 | "outputs": [] 13 | }, 14 | "watch": { 15 | "outputs": [] 16 | }, 17 | "copy:license": { 18 | "outputs": [] 19 | }, 20 | "test": { 21 | "dependsOn": ["^build"] 22 | } 23 | } 24 | } 25 | -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- 1 | # @anchan828/nest-sendgrid-packages 2 | 3 | [![Maintainability](https://api.codeclimate.com/v1/badges/34b5a901291739507afd/maintainability)](https://codeclimate.com/github/anchan828/nest-sendgrid/maintainability) 4 | [![Test Coverage](https://api.codeclimate.com/v1/badges/34b5a901291739507afd/test_coverage)](https://codeclimate.com/github/anchan828/nest-sendgrid/test_coverage) 5 | 6 | [@anchan828/nest-sendgrid](https://github.com/anchan828/nest-sendgrid/tree/master/packages/sendgrid) 7 | 8 | [@anchan828/nest-sendgrid-terminus](https://github.com/anchan828/nest-sendgrid/tree/master/packages/terminus) 9 | -------------------------------------------------------------------------------- /.github/workflows/test.yml: -------------------------------------------------------------------------------- 1 | name: Test 2 | 3 | on: [push] 4 | 5 | env: 6 | TURBO_TOKEN: ${{ secrets.TURBO_TOKEN }} 7 | TURBO_TEAM: anchan828 8 | 9 | jobs: 10 | test: 11 | runs-on: ubuntu-latest 12 | steps: 13 | - uses: actions/checkout@v4 14 | - uses: actions/setup-node@v4 15 | with: 16 | node-version: 20 17 | cache: npm 18 | - name: Install npm packages 19 | run: npm ci 20 | - name: Lint 21 | run: npm run lint 22 | - name: Test monorepo packages 23 | run: npm test 24 | - name: Upload coverage to Codecov 25 | uses: codecov/codecov-action@v5 26 | -------------------------------------------------------------------------------- /.vscode/settings.json: -------------------------------------------------------------------------------- 1 | { 2 | "editor.codeActionsOnSave": ["source.organizeImports", "source.fixAll"], 3 | "editor.formatOnSave": true, 4 | "eslint.options": { 5 | "extensions": [".js", ".ts"] 6 | }, 7 | "eslint.validate": ["javascript", "typescript"], 8 | "eslint.workingDirectories": [ 9 | { 10 | "mode": "auto" 11 | } 12 | ], 13 | "eslint.codeAction.showDocumentation": { 14 | "enable": false 15 | }, 16 | "eslint.codeAction.disableRuleComment": { 17 | "enable": false 18 | }, 19 | "files.exclude": { 20 | "**/.DS_Store": true, 21 | "**/.git": true, 22 | "**/.hg": true, 23 | "**/.storage": true, 24 | "**/.svn": true, 25 | "**/CVS": true, 26 | "**/node_modules": true 27 | }, 28 | "typescript.preferences.importModuleSpecifier": "relative", 29 | "typescript.tsdk": "node_modules/typescript/lib" 30 | } 31 | -------------------------------------------------------------------------------- /.github/workflows/major-release.yml: -------------------------------------------------------------------------------- 1 | name: Major Release 2 | 3 | on: 4 | workflow_dispatch: 5 | 6 | jobs: 7 | publish: 8 | runs-on: ubuntu-latest 9 | steps: 10 | - uses: actions/checkout@master 11 | - name: Checkout master 12 | run: git checkout master 13 | - uses: actions/setup-node@v4 14 | with: 15 | node-version: 20 16 | cache: npm 17 | - name: Install npm packages 18 | run: npm ci 19 | - name: Publish monorepo packages 20 | run: | 21 | echo "//registry.npmjs.org/:_authToken=${{ secrets.NPM_TOKEN }}" >> ~/.npmrc 22 | git config --global user.name 'github-actions[bot]' 23 | git config --global user.email 'github-actions[bot]@users.noreply.github.com' 24 | git remote set-url origin https://x-access-token:${{ secrets.GITHUB_TOKEN }}@github.com/$GITHUB_REPOSITORY 25 | npx lerna publish --yes major 26 | -------------------------------------------------------------------------------- /.github/workflows/minor-release.yml: -------------------------------------------------------------------------------- 1 | name: Minor Release 2 | 3 | on: 4 | workflow_dispatch: 5 | 6 | jobs: 7 | publish: 8 | runs-on: ubuntu-latest 9 | steps: 10 | - uses: actions/checkout@master 11 | - name: Checkout master 12 | run: git checkout master 13 | - uses: actions/setup-node@v4 14 | with: 15 | node-version: 20 16 | cache: npm 17 | - name: Install npm packages 18 | run: npm ci 19 | - name: Publish monorepo packages 20 | run: | 21 | echo "//registry.npmjs.org/:_authToken=${{ secrets.NPM_TOKEN }}" >> ~/.npmrc 22 | git config --global user.name 'github-actions[bot]' 23 | git config --global user.email 'github-actions[bot]@users.noreply.github.com' 24 | git remote set-url origin https://x-access-token:${{ secrets.GITHUB_TOKEN }}@github.com/$GITHUB_REPOSITORY 25 | npx lerna publish --yes minor 26 | -------------------------------------------------------------------------------- /eslint.config.js: -------------------------------------------------------------------------------- 1 | const eslint = require("@eslint/js"); 2 | const tseslint = require("typescript-eslint"); 3 | const { includeIgnoreFile } = require("@eslint/compat"); 4 | const { resolve } = require("path"); 5 | 6 | module.exports = [ 7 | includeIgnoreFile(resolve(__dirname, ".gitignore")), 8 | ...tseslint.config(eslint.configs.recommended, ...tseslint.configs.recommended, { 9 | languageOptions: { 10 | parserOptions: { 11 | projectService: true, 12 | }, 13 | }, 14 | rules: { 15 | "no-unused-vars": "off", 16 | "@typescript-eslint/ban-types": "off", 17 | "@typescript-eslint/no-unused-vars": "error", 18 | "no-useless-constructor": "off", 19 | "@typescript-eslint/no-useless-constructor": "error", 20 | "@typescript-eslint/no-explicit-any": "off", 21 | "lines-between-class-members": ["error", "always"], 22 | }, 23 | ignores: ["**/.prettierrc.js", "**/cli.js", "**/jest.config.js"], 24 | }), 25 | ]; 26 | -------------------------------------------------------------------------------- /.github/workflows/patch-release.yml: -------------------------------------------------------------------------------- 1 | name: Patch Release 2 | 3 | on: 4 | schedule: 5 | - cron: "0 4 * * 0" 6 | branches: 7 | - master 8 | workflow_dispatch: 9 | 10 | jobs: 11 | publish: 12 | runs-on: ubuntu-latest 13 | steps: 14 | - uses: actions/checkout@master 15 | - name: Checkout master 16 | run: git checkout master 17 | - uses: actions/setup-node@v4 18 | with: 19 | node-version: 20 20 | cache: npm 21 | - name: Install npm packages 22 | run: npm ci 23 | - name: Publish monorepo packages 24 | run: | 25 | echo "//registry.npmjs.org/:_authToken=${{ secrets.NPM_TOKEN }}" >> ~/.npmrc 26 | git config --global user.name 'github-actions[bot]' 27 | git config --global user.email 'github-actions[bot]@users.noreply.github.com' 28 | git remote set-url origin https://x-access-token:${{ secrets.GITHUB_TOKEN }}@github.com/$GITHUB_REPOSITORY 29 | npx lerna publish --yes patch 30 | -------------------------------------------------------------------------------- /packages/sendgrid/src/sendgrid.interfaces.ts: -------------------------------------------------------------------------------- 1 | import { Type } from "@nestjs/common"; 2 | import { ModuleMetadata } from "@nestjs/common/interfaces"; 3 | import { MailDataRequired } from "@sendgrid/mail"; 4 | 5 | export interface SendGridModuleOptions { 6 | apikey: string; 7 | /** 8 | * You can set default data 9 | */ 10 | defaultMailData?: Partial; 11 | substitutionWrappers?: { left: string; right: string }; 12 | } 13 | 14 | export type SendGridModuleAsyncOptions = { 15 | useClass?: Type; 16 | /** 17 | * The factory which should be used to provide the SendGrid options 18 | */ 19 | useFactory?: (...args: any[]) => Promise | SendGridModuleOptions; 20 | /** 21 | * The providers which should get injected 22 | */ 23 | inject?: any[]; 24 | } & Pick; 25 | 26 | export interface SendGridModuleOptionsFactory { 27 | createSendGridModuleOptions(): Promise | SendGridModuleOptions; 28 | } 29 | -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- 1 | MIT License 2 | 3 | Copyright (c) 2018-2023 anchan828 4 | 5 | Permission is hereby granted, free of charge, to any person obtaining a copy 6 | of this software and associated documentation files (the "Software"), to deal 7 | in the Software without restriction, including without limitation the rights 8 | to use, copy, modify, merge, publish, distribute, sublicense, and/or sell 9 | copies of the Software, and to permit persons to whom the Software is 10 | furnished to do so, subject to the following conditions: 11 | 12 | The above copyright notice and this permission notice shall be included in all 13 | copies or substantial portions of the Software. 14 | 15 | THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR 16 | IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, 17 | FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE 18 | AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER 19 | LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, 20 | OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE 21 | SOFTWARE. 22 | -------------------------------------------------------------------------------- /packages/terminus/README.md: -------------------------------------------------------------------------------- 1 | # @anchan828/nest-sendgrid-terminus 2 | 3 | ## Supported Versions 4 | 5 | * NestJS 8: v0.5.x 6 | * NestJS 9: v0.6.x 7 | 8 | ## Description 9 | 10 | The terminus of [@sendgrid/mail](https://github.com/sendgrid/sendgrid-nodejs/tree/master/packages/mail) module for [Nest](https://github.com/nestjs/nest). 11 | 12 | ## Installation 13 | 14 | ```bash 15 | $ npm i --save @anchan828/nest-sendgrid-terminus @nestjs/terminus 16 | ``` 17 | 18 | ## Quick Start 19 | 20 | ```ts 21 | @Module({ 22 | imports: [TerminusModule, SendGridHealthModule], 23 | }) 24 | export class HealthModule {} 25 | 26 | @Controller("health") 27 | export class HealthController { 28 | constructor(private health: HealthCheckService, private sendgrid: SendGridHealthIndicator) {} 29 | 30 | @Get() 31 | @HealthCheck() 32 | readiness() { 33 | return this.health.check([async () => this.sendgrid.isHealthy()]); 34 | } 35 | } 36 | ``` 37 | 38 | `/health` response 39 | 40 | ```json 41 | { 42 | "status": "ok", 43 | "info": { 44 | "sendgrid": { 45 | "status": "up", 46 | "apiStatus": "operational" 47 | } 48 | }, 49 | "error": {}, 50 | "details": { 51 | "sendgrid": { 52 | "status": "up", 53 | "apiStatus": "operational" 54 | } 55 | } 56 | } 57 | ``` 58 | 59 | ## License 60 | 61 | [MIT](LICENSE) 62 | -------------------------------------------------------------------------------- /packages/terminus/src/sendgrid.health.ts: -------------------------------------------------------------------------------- 1 | import { HttpService } from "@nestjs/axios"; 2 | import { Injectable } from "@nestjs/common"; 3 | import { HealthCheckError, HealthIndicator, HealthIndicatorResult } from "@nestjs/terminus"; 4 | import { COMPONENT_NAME, STATUS_API } from "./constants"; 5 | 6 | @Injectable() 7 | export class SendGridHealthIndicator extends HealthIndicator { 8 | constructor(private readonly http: HttpService) { 9 | super(); 10 | } 11 | 12 | async isHealthy(key = "sendgrid"): Promise { 13 | const res = await this.http 14 | .get(STATUS_API, { 15 | responseType: "json", 16 | }) 17 | .toPromise(); 18 | 19 | const v3Status = res 20 | ? res.data.components 21 | .map((component: { name: string; status: string }) => component) 22 | .find((component: { name: string; status: string }) => component.name === COMPONENT_NAME) 23 | : undefined; 24 | 25 | if (!v3Status) { 26 | throw new HealthCheckError( 27 | "SendGridHealthCheck failed", 28 | this.getStatus(key, false, { 29 | error: `${COMPONENT_NAME} component is not found. please access to http://status.sendgrid.com`, 30 | }), 31 | ); 32 | } 33 | 34 | const isOperational = v3Status.status === "operational"; 35 | 36 | return this.getStatus(key, isOperational, { 37 | apiStatus: v3Status.status, 38 | }); 39 | } 40 | } 41 | -------------------------------------------------------------------------------- /packages/sendgrid/README.md: -------------------------------------------------------------------------------- 1 | # @anchan828/nest-sendgrid 2 | 3 | ## Supported Versions 4 | 5 | * NestJS 8: v0.5.x 6 | * NestJS 9: v0.6.x 7 | 8 | ## Description 9 | 10 | The [@sendgrid/mail](https://github.com/sendgrid/sendgrid-nodejs/tree/master/packages/mail) module for [Nest](https://github.com/nestjs/nest). 11 | 12 | This module is very simple. 13 | 14 | ## Installation 15 | 16 | ```bash 17 | $ npm i --save @anchan828/nest-sendgrid 18 | ``` 19 | 20 | ## Quick Start 21 | 22 | ```ts 23 | import { SendGridModule } from "@anchan828/nest-sendgrid"; 24 | import { Module } from "@nestjs/common"; 25 | import { AppController } from "./app.controller"; 26 | import { AppService } from "./app.service"; 27 | 28 | @Module({ 29 | imports: [ 30 | SendGridModule.forRoot({ 31 | apikey: process.env.SENDGRID_API_KEY, 32 | }), 33 | ], 34 | controllers: [AppController], 35 | providers: [AppService], 36 | }) 37 | export class AppModule {} 38 | ``` 39 | 40 | ```ts 41 | import { SendGridService } from "@anchan828/nest-sendgrid"; 42 | import { Controller, Post } from "@nestjs/common"; 43 | 44 | @Controller() 45 | export class AppController { 46 | constructor(private readonly sendGrid: SendGridService) {} 47 | 48 | @Post() 49 | async root(): Promise { 50 | await this.sendGrid.send({ 51 | to: "test@example.com", 52 | from: "test@example.com", 53 | subject: "Sending with SendGrid is Fun", 54 | text: "and easy to do anywhere, even with Node.js", 55 | html: "and easy to do anywhere, even with Node.js", 56 | }); 57 | } 58 | } 59 | ``` 60 | 61 | ## License 62 | 63 | [MIT](LICENSE). 64 | -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- 1 | { 2 | "name": "@anchan828/nest-sendgrid-packages", 3 | "version": "0.1.2", 4 | "description": "SendGrid module for Nest framework (node.js)", 5 | "homepage": "https://github.com/anchan828/nest-sendgrid#readme", 6 | "bugs": { 7 | "url": "https://github.com/anchan828/nest-sendgrid/issues" 8 | }, 9 | "repository": { 10 | "type": "git", 11 | "url": "git+https://github.com/anchan828/nest-sendgrid.git" 12 | }, 13 | "license": "MIT", 14 | "author": "anchan828 ", 15 | "main": "dist/index.js", 16 | "types": "dist/index.d.ts", 17 | "workspaces": [ 18 | "packages/*" 19 | ], 20 | "scripts": { 21 | "build": "turbo run build", 22 | "format": "prettier --write '**/*.{ts,js,json,yml,yaml,md}'", 23 | "postinstall": "husky install", 24 | "lint": "turbo run lint", 25 | "lint:fix": "turbo run lint:fix", 26 | "publish": "lerna publish --yes patch", 27 | "publish:major": "lerna publish --yes major", 28 | "publish:minor": "lerna publish --yes minor", 29 | "test": "turbo run test" 30 | }, 31 | "devDependencies": { 32 | "@commitlint/cli": "19.8.1", 33 | "@commitlint/config-conventional": "19.8.1", 34 | "@eslint/compat": "^1.2.0", 35 | "@eslint/js": "^9.12.0", 36 | "@lerna-lite/cli": "4.10.2", 37 | "@lerna-lite/publish": "4.10.2", 38 | "@types/jest": "29.5.14", 39 | "@types/node": "22.19.3", 40 | "eslint": "9.39.2", 41 | "husky": "9.1.7", 42 | "jest": "29.7.0", 43 | "lint-staged": "16.2.7", 44 | "prettier": "3.7.4", 45 | "ts-jest": "29.4.6", 46 | "ts-node": "10.9.2", 47 | "turbo": "2.6.3", 48 | "typescript": "5.9.3", 49 | "typescript-eslint": "^8.8.1" 50 | }, 51 | "packageManager": "npm@11.7.0" 52 | } -------------------------------------------------------------------------------- /packages/sendgrid/package.json: -------------------------------------------------------------------------------- 1 | { 2 | "name": "@anchan828/nest-sendgrid", 3 | "version": "0.9.28", 4 | "description": "SendGrid module for Nest framework (node.js)", 5 | "homepage": "https://github.com/anchan828/nest-sendgrid/tree/master/packages/sendgrid#readme", 6 | "bugs": { 7 | "url": "https://github.com/anchan828/nest-sendgrid/issues" 8 | }, 9 | "repository": { 10 | "type": "git", 11 | "url": "git+https://github.com/anchan828/nest-sendgrid.git" 12 | }, 13 | "license": "MIT", 14 | "author": "anchan828 ", 15 | "main": "dist/cjs/index.js", 16 | "types": "dist/cjs/index.d.ts", 17 | "scripts": { 18 | "build": "tsc -p tsconfig.cjs.json && tsc -p tsconfig.esm.json", 19 | "copy:license": "cp ../../LICENSE ./", 20 | "lint": "TIMING=1 eslint '**/*.ts'", 21 | "lint:fix": "npm run lint -- --fix", 22 | "prepublishOnly": "npm run build && rm -f dist/*.tsbuildinfo && npm run copy:license", 23 | "test": "jest --coverage", 24 | "test:watch": "npm run test -- --watch", 25 | "watch": "tsc --watch" 26 | }, 27 | "dependencies": { 28 | "@sendgrid/mail": "^8.1.3", 29 | "deepmerge": "^4.3.1" 30 | }, 31 | "devDependencies": { 32 | "@nestjs/common": "11.1.9", 33 | "@nestjs/core": "11.1.9", 34 | "@nestjs/testing": "11.1.9", 35 | "@types/deepmerge": "2.2.3", 36 | "reflect-metadata": "0.2.2", 37 | "rxjs": "7.8.2" 38 | }, 39 | "peerDependencies": { 40 | "@nestjs/common": "^10.0.0 || ^11.0.0" 41 | }, 42 | "packageManager": "npm@11.7.0", 43 | "exports": { 44 | ".": { 45 | "import": { 46 | "types": "./dist/esm/index.d.ts", 47 | "default": "./dist/esm/index.js" 48 | }, 49 | "require": { 50 | "types": "./dist/cjs/index.d.ts", 51 | "default": "./dist/cjs/index.js" 52 | }, 53 | "types": "./dist/cjs/index.d.ts", 54 | "default": "./dist/cjs/index.js" 55 | } 56 | } 57 | } -------------------------------------------------------------------------------- /packages/terminus/package.json: -------------------------------------------------------------------------------- 1 | { 2 | "name": "@anchan828/nest-sendgrid-terminus", 3 | "version": "0.9.28", 4 | "description": "A terminus of @sendgrid/mail module for Nest framework (node.js)", 5 | "homepage": "https://github.com/anchan828/nest-sendgrid/tree/master/packages/terminus#readme", 6 | "bugs": { 7 | "url": "https://github.com/anchan828/nest-sendgrid/issues" 8 | }, 9 | "repository": { 10 | "type": "git", 11 | "url": "git+https://github.com/anchan828/nest-sendgrid.git" 12 | }, 13 | "license": "MIT", 14 | "author": "anchan828 ", 15 | "main": "dist/cjs/index.js", 16 | "types": "dist/cjs/index.d.ts", 17 | "scripts": { 18 | "build": "tsc -p tsconfig.cjs.json && tsc -p tsconfig.esm.json", 19 | "copy:license": "cp ../../LICENSE ./", 20 | "lint": "TIMING=1 eslint '**/*.ts'", 21 | "lint:fix": "npm run lint -- --fix", 22 | "prepublishOnly": "npm run build && rm -f dist/*.tsbuildinfo && npm run copy:license", 23 | "test": "jest --coverage", 24 | "test:watch": "npm run test -- --watch", 25 | "watch": "tsc --watch" 26 | }, 27 | "devDependencies": { 28 | "@nestjs/axios": "4.0.1", 29 | "@nestjs/common": "11.1.9", 30 | "@nestjs/core": "11.1.9", 31 | "@nestjs/platform-express": "11.1.9", 32 | "@nestjs/terminus": "11.0.0", 33 | "@nestjs/testing": "11.1.9", 34 | "@types/supertest": "6.0.3", 35 | "reflect-metadata": "0.2.2", 36 | "rxjs": "7.8.2", 37 | "supertest": "7.1.4" 38 | }, 39 | "peerDependencies": { 40 | "@nestjs/common": "^10.0.0 || ^11.0.0" 41 | }, 42 | "packageManager": "npm@11.7.0", 43 | "exports": { 44 | ".": { 45 | "import": { 46 | "types": "./dist/esm/index.d.ts", 47 | "default": "./dist/esm/index.js" 48 | }, 49 | "require": { 50 | "types": "./dist/cjs/index.d.ts", 51 | "default": "./dist/cjs/index.js" 52 | }, 53 | "types": "./dist/cjs/index.d.ts", 54 | "default": "./dist/cjs/index.js" 55 | } 56 | } 57 | } -------------------------------------------------------------------------------- /packages/terminus/src/health.module.spec.ts: -------------------------------------------------------------------------------- 1 | import { Controller, Get, Module } from "@nestjs/common"; 2 | import { HealthCheck, HealthCheckService, TerminusModule } from "@nestjs/terminus"; 3 | import { Test } from "@nestjs/testing"; 4 | import * as request from "supertest"; 5 | import { SendGridHealthModule } from "./health.module"; 6 | import { SendGridHealthIndicator } from "./sendgrid.health"; 7 | describe("SendGridHealthModule", () => { 8 | it("should compile module", async () => { 9 | await expect(Test.createTestingModule({ imports: [SendGridHealthModule] }).compile()).resolves.toBeDefined(); 10 | }); 11 | 12 | it("should compile health module", async () => { 13 | @Module({ 14 | imports: [TerminusModule], 15 | }) 16 | class HealthModule {} 17 | 18 | await expect(Test.createTestingModule({ imports: [HealthModule] }).compile()).resolves.toBeDefined(); 19 | }); 20 | 21 | it("should get SendGridHealthIndicator", async () => { 22 | const app = await Test.createTestingModule({ 23 | imports: [SendGridHealthModule], 24 | }).compile(); 25 | 26 | expect(app.get(SendGridHealthIndicator)).toBeDefined(); 27 | }); 28 | 29 | it("should call /health", async () => { 30 | @Controller("health") 31 | class HealthController { 32 | constructor(private health: HealthCheckService, private sendgrid: SendGridHealthIndicator) {} 33 | 34 | @Get() 35 | @HealthCheck() 36 | readiness() { 37 | return this.health.check([async () => this.sendgrid.isHealthy()]); 38 | } 39 | } 40 | 41 | @Module({ 42 | controllers: [HealthController], 43 | imports: [TerminusModule, SendGridHealthModule], 44 | }) 45 | class HealthModule {} 46 | 47 | const module = await Test.createTestingModule({ imports: [HealthModule] }).compile(); 48 | const app = await module.createNestApplication().init(); 49 | await request(app.getHttpServer()) 50 | .get("/health") 51 | .expect(200) 52 | .expect({ 53 | status: "ok", 54 | info: { sendgrid: { status: "up", apiStatus: "operational" } }, 55 | error: {}, 56 | details: { sendgrid: { status: "up", apiStatus: "operational" } }, 57 | }); 58 | 59 | await app.close(); 60 | }); 61 | }); 62 | -------------------------------------------------------------------------------- /packages/sendgrid/src/sendgrid.service.ts: -------------------------------------------------------------------------------- 1 | import { Inject, Injectable } from "@nestjs/common"; 2 | import { MailDataRequired, MailService, ResponseError } from "@sendgrid/mail"; 3 | import * as deepmerge from "deepmerge"; 4 | import { SendGridConstants } from "./sendgrid.constants"; 5 | import { SendGridModuleOptions } from "./sendgrid.interfaces"; 6 | import { logger } from "./sendgrid.logger"; 7 | 8 | type Response = Awaited>; 9 | 10 | @Injectable() 11 | export class SendGridService { 12 | constructor( 13 | @Inject(SendGridConstants.SENDGRID_MODULE_OPTIONS) 14 | private readonly options: SendGridModuleOptions, 15 | private readonly mailService: MailService, 16 | ) { 17 | if (!(options && options.apikey)) { 18 | logger.error("options not found. Did you use SendGridModule.forRoot?"); 19 | return; 20 | } 21 | 22 | this.mailService.setApiKey(options.apikey); 23 | logger.log("Set API Key"); 24 | 25 | if (options.substitutionWrappers && options.substitutionWrappers.left && options.substitutionWrappers.right) { 26 | this.mailService.setSubstitutionWrappers(options.substitutionWrappers.left, options.substitutionWrappers.right); 27 | logger.log("Set Substitution Wrappers"); 28 | } 29 | } 30 | 31 | public async send( 32 | data: Partial | Partial[], 33 | isMultiple?: boolean, 34 | cb?: (err: Error | ResponseError, result: Response) => void, 35 | ): Promise { 36 | if (Array.isArray(data)) { 37 | return this.mailService.send( 38 | data.map((d) => this.mergeWithDefaultMailData(d)) as MailDataRequired[], 39 | isMultiple, 40 | cb, 41 | ); 42 | } else { 43 | return this.mailService.send(this.mergeWithDefaultMailData(data), isMultiple, cb); 44 | } 45 | } 46 | 47 | public async sendMultiple( 48 | data: Partial, 49 | cb?: (error: Error | ResponseError, result: Response) => void, 50 | ): Promise { 51 | return this.mailService.sendMultiple(this.mergeWithDefaultMailData(data) as MailDataRequired, cb); 52 | } 53 | 54 | private mergeWithDefaultMailData(data: Partial): MailDataRequired { 55 | if (!this.options.defaultMailData) { 56 | return data as MailDataRequired; 57 | } 58 | return deepmerge(this.options.defaultMailData, data); 59 | } 60 | } 61 | -------------------------------------------------------------------------------- /packages/sendgrid/src/sendgrid.module.ts: -------------------------------------------------------------------------------- 1 | import { DynamicModule, Global, Module, Provider } from "@nestjs/common"; 2 | import { ClassProvider, FactoryProvider } from "@nestjs/common/interfaces"; 3 | import { MailService } from "@sendgrid/mail"; 4 | import { SendGridConstants } from "./sendgrid.constants"; 5 | import { SendGridModuleAsyncOptions, SendGridModuleOptions, SendGridModuleOptionsFactory } from "./sendgrid.interfaces"; 6 | import { SendGridService } from "./sendgrid.service"; 7 | 8 | @Global() 9 | @Module({ 10 | providers: [SendGridService], 11 | exports: [SendGridService], 12 | }) 13 | export class SendGridModule { 14 | public static forRoot(options: SendGridModuleOptions): DynamicModule { 15 | if (!(options && options.apikey)) { 16 | throw new Error("SendGrid API Key is not defined"); 17 | } 18 | 19 | return { 20 | module: SendGridModule, 21 | providers: [ 22 | { 23 | provide: SendGridConstants.SENDGRID_MODULE_OPTIONS, 24 | useValue: options, 25 | }, 26 | MailService, 27 | ], 28 | }; 29 | } 30 | 31 | public static forRootAsync(options: SendGridModuleAsyncOptions): DynamicModule { 32 | const asyncProviders = this.createAsyncProviders(options); 33 | return { 34 | module: SendGridModule, 35 | imports: [...(options.imports || [])], 36 | providers: [...asyncProviders, MailService], 37 | }; 38 | } 39 | 40 | private static createAsyncProviders(options: SendGridModuleAsyncOptions): Provider[] { 41 | if (options.useFactory) { 42 | return [this.createAsyncOptionsProvider(options)]; 43 | } 44 | return [ 45 | this.createAsyncOptionsProvider(options), 46 | { 47 | provide: options.useClass, 48 | useClass: options.useClass, 49 | inject: options.inject, 50 | } as ClassProvider, 51 | ]; 52 | } 53 | 54 | private static createAsyncOptionsProvider(options: SendGridModuleAsyncOptions): FactoryProvider { 55 | if (options.useFactory) { 56 | return { 57 | provide: SendGridConstants.SENDGRID_MODULE_OPTIONS, 58 | useFactory: options.useFactory, 59 | inject: options.inject || [], 60 | }; 61 | } 62 | return { 63 | provide: SendGridConstants.SENDGRID_MODULE_OPTIONS, 64 | useFactory: async (optionsFactory: SendGridModuleOptionsFactory): Promise => 65 | await optionsFactory.createSendGridModuleOptions(), 66 | inject: options.useClass ? [options.useClass] : [], 67 | }; 68 | } 69 | } 70 | -------------------------------------------------------------------------------- /.github/workflows/codeql-analysis.yml: -------------------------------------------------------------------------------- 1 | # For most projects, this workflow file will not need changing; you simply need 2 | # to commit it to your repository. 3 | # 4 | # You may wish to alter this file to override the set of languages analyzed, 5 | # or to provide custom queries or build logic. 6 | name: "CodeQL" 7 | 8 | on: 9 | push: 10 | branches: [master] 11 | pull_request: 12 | # The branches below must be a subset of the branches above 13 | branches: [master] 14 | schedule: 15 | - cron: "0 13 * * 0" 16 | 17 | jobs: 18 | analyze: 19 | name: Analyze 20 | runs-on: ubuntu-latest 21 | 22 | strategy: 23 | fail-fast: false 24 | matrix: 25 | # Override automatic language detection by changing the below list 26 | # Supported options are ['csharp', 'cpp', 'go', 'java', 'javascript', 'python'] 27 | language: ["javascript"] 28 | # Learn more... 29 | # https://docs.github.com/en/github/finding-security-vulnerabilities-and-errors-in-your-code/configuring-code-scanning#overriding-automatic-language-detection 30 | 31 | steps: 32 | - name: Checkout repository 33 | uses: actions/checkout@v4 34 | with: 35 | # We must fetch at least the immediate parents so that if this is 36 | # a pull request then we can checkout the head. 37 | fetch-depth: 2 38 | 39 | # Initializes the CodeQL tools for scanning. 40 | - name: Initialize CodeQL 41 | uses: github/codeql-action/init@v3 42 | with: 43 | languages: ${{ matrix.language }} 44 | # If you wish to specify custom queries, you can do so here or in a config file. 45 | # By default, queries listed here will override any specified in a config file. 46 | # Prefix the list here with "+" to use these queries and those in the config file. 47 | # queries: ./path/to/local/query, your-org/your-repo/queries@main 48 | 49 | # Autobuild attempts to build any compiled languages (C/C++, C#, or Java). 50 | # If this step fails, then you should remove it and run the build manually (see below) 51 | - name: Autobuild 52 | uses: github/codeql-action/autobuild@v3 53 | 54 | # ℹ️ Command-line programs to run using the OS shell. 55 | # 📚 https://git.io/JvXDl 56 | 57 | # ✏️ If the Autobuild fails above, remove it and uncomment the following three lines 58 | # and modify them (or add more) to build your code if your project 59 | # uses a compiled language 60 | 61 | #- run: | 62 | # make bootstrap 63 | # make release 64 | 65 | - name: Perform CodeQL Analysis 66 | uses: github/codeql-action/analyze@v3 67 | -------------------------------------------------------------------------------- /packages/terminus/src/sendgrid.health.spec.ts: -------------------------------------------------------------------------------- 1 | import { HttpModule, HttpService } from "@nestjs/axios"; 2 | import { Test, TestingModuleBuilder } from "@nestjs/testing"; 3 | import { Observable, of } from "rxjs"; 4 | import { COMPONENT_NAME } from "./constants"; 5 | import { SendGridHealthIndicator } from "./sendgrid.health"; 6 | describe("SendGridHealthIndicator", () => { 7 | it("should need HttpModule", async () => { 8 | await expect( 9 | Test.createTestingModule({ 10 | providers: [SendGridHealthIndicator], 11 | }).compile(), 12 | ).rejects.toThrowError(Error); 13 | }); 14 | let testingModuleBuilder: TestingModuleBuilder; 15 | beforeEach(() => { 16 | testingModuleBuilder = Test.createTestingModule({ 17 | imports: [HttpModule], 18 | providers: [SendGridHealthIndicator], 19 | }); 20 | }); 21 | 22 | it("should compile SendGridHealthIndicator", async () => { 23 | await expect(testingModuleBuilder.compile()).resolves.toBeDefined(); 24 | }); 25 | 26 | describe("isHealthy", () => { 27 | let service: SendGridHealthIndicator; 28 | beforeEach(async () => { 29 | const app = await testingModuleBuilder.compile(); 30 | service = app.get(SendGridHealthIndicator); 31 | }); 32 | it("should return status up", async () => { 33 | await expect(service.isHealthy()).resolves.toEqual({ 34 | sendgrid: { 35 | apiStatus: "operational", 36 | status: "up", 37 | }, 38 | }); 39 | }); 40 | 41 | it("should throw error when component is not found", async () => { 42 | const httpMock = { 43 | get: (): Observable => 44 | of({ 45 | data: { 46 | components: [], 47 | }, 48 | }), 49 | }; 50 | const app = await testingModuleBuilder.overrideProvider(HttpService).useValue(httpMock).compile(); 51 | service = app.get(SendGridHealthIndicator); 52 | await expect(service.isHealthy()).rejects.toThrowError("SendGridHealthCheck failed"); 53 | }); 54 | 55 | it("should return status down when status is outage", async () => { 56 | const httpMock = { 57 | get: (): Observable => 58 | of({ 59 | data: { 60 | components: [ 61 | { 62 | name: COMPONENT_NAME, 63 | status: "Major outage", 64 | }, 65 | ], 66 | }, 67 | }), 68 | }; 69 | const app = await testingModuleBuilder.overrideProvider(HttpService).useValue(httpMock).compile(); 70 | service = app.get(SendGridHealthIndicator); 71 | await expect(service.isHealthy()).resolves.toEqual({ 72 | sendgrid: { apiStatus: "Major outage", status: "down" }, 73 | }); 74 | }); 75 | }); 76 | }); 77 | -------------------------------------------------------------------------------- /packages/sendgrid/src/sendgrid.module.spec.ts: -------------------------------------------------------------------------------- 1 | import { Test } from "@nestjs/testing"; 2 | import { MailService } from "@sendgrid/mail"; 3 | import { SendGridService } from "."; 4 | import { SendGridConstants } from "./sendgrid.constants"; 5 | import { SendGridModuleOptions, SendGridModuleOptionsFactory } from "./sendgrid.interfaces"; 6 | import { SendGridModule } from "./sendgrid.module"; 7 | 8 | describe("SendGridModule", () => { 9 | describe("forRoot", () => { 10 | it("should throw error when no set apikey", () => { 11 | expect(() => { 12 | SendGridModule.forRoot({} as SendGridModuleOptions); 13 | }).toThrowError("SendGrid API Key is not defined"); 14 | }); 15 | 16 | it("should return DynamicModule", () => { 17 | expect( 18 | SendGridModule.forRoot({ 19 | apikey: "value", 20 | }), 21 | ).toStrictEqual({ 22 | module: SendGridModule, 23 | providers: [ 24 | { 25 | provide: SendGridConstants.SENDGRID_MODULE_OPTIONS, 26 | useValue: { 27 | apikey: "value", 28 | }, 29 | }, 30 | MailService, 31 | ], 32 | }); 33 | }); 34 | }); 35 | describe("forRootAsync", () => { 36 | it("uses useFactory", () => { 37 | const dynamicModule = SendGridModule.forRootAsync({ 38 | useFactory: () => ({ 39 | apikey: "value", 40 | }), 41 | }); 42 | expect(dynamicModule).toBeDefined(); 43 | expect(dynamicModule.providers).toBeDefined(); 44 | 45 | // eslint-disable-next-line @typescript-eslint/no-non-null-assertion 46 | expect(Object.keys(dynamicModule.providers![0])).toStrictEqual(["provide", "useFactory", "inject"]); 47 | 48 | expect(dynamicModule).toMatchObject({ 49 | imports: [], 50 | module: SendGridModule, 51 | providers: [ 52 | { 53 | inject: [], 54 | provide: "SENDGRID_MODULE_OPTIONS", 55 | }, 56 | MailService, 57 | ], 58 | }); 59 | }); 60 | 61 | it("uses useClass", async () => { 62 | class TestFactory implements SendGridModuleOptionsFactory { 63 | createSendGridModuleOptions(): SendGridModuleOptions { 64 | return { 65 | apikey: "value", 66 | }; 67 | } 68 | } 69 | 70 | const dynamicModule = SendGridModule.forRootAsync({ 71 | useClass: TestFactory, 72 | }); 73 | expect(dynamicModule).toBeDefined(); 74 | expect(dynamicModule.providers).toBeDefined(); 75 | expect(dynamicModule).toMatchObject({ 76 | module: SendGridModule, 77 | imports: [], 78 | providers: [ 79 | { provide: "SENDGRID_MODULE_OPTIONS", inject: [TestFactory] }, 80 | { provide: TestFactory, useClass: TestFactory }, 81 | MailService, 82 | ], 83 | }); 84 | 85 | await expect( 86 | Test.createTestingModule({ 87 | imports: [dynamicModule], 88 | }).compile(), 89 | ).resolves.toBeDefined(); 90 | }); 91 | }); 92 | 93 | if (process.env.NEST_SENDGRID_API_KEY) { 94 | describe("send email", () => { 95 | let sendgrid: SendGridService; 96 | 97 | beforeAll(async () => { 98 | const app = await Test.createTestingModule({ 99 | imports: [ 100 | SendGridModule.forRoot({ 101 | apikey: process.env.NEST_SENDGRID_API_KEY + "", 102 | defaultMailData: { 103 | from: process.env.NEST_SENDGRID_EMAIL, 104 | to: process.env.NEST_SENDGRID_EMAIL, 105 | }, 106 | }), 107 | ], 108 | }).compile(); 109 | 110 | sendgrid = app.get(SendGridService); 111 | }); 112 | 113 | it("send", async () => { 114 | const [res] = await sendgrid.send({ 115 | subject: "[Ignore] This email is test", 116 | html: "[Ignore] This email is test", 117 | }); 118 | expect(res.statusCode).toEqual(202); 119 | }); 120 | it("sendMultiple", async () => { 121 | const [res] = await sendgrid.sendMultiple({ 122 | subject: "[Ignore] This email is test", 123 | html: "[Ignore] This email is test", 124 | }); 125 | expect(res.statusCode).toEqual(202); 126 | }); 127 | }); 128 | } 129 | }); 130 | -------------------------------------------------------------------------------- /packages/sendgrid/src/sendgrid.service.spec.ts: -------------------------------------------------------------------------------- 1 | import { Test } from "@nestjs/testing"; 2 | import { MailService } from "@sendgrid/mail"; 3 | import { SendGridConstants } from "./sendgrid.constants"; 4 | import { SendGridModuleOptions } from "./sendgrid.interfaces"; 5 | import { SendGridService } from "./sendgrid.service"; 6 | describe("SendGridService", () => { 7 | it("should be compile", async () => { 8 | await expect( 9 | Test.createTestingModule({ 10 | providers: [ 11 | SendGridService, 12 | { 13 | provide: SendGridConstants.SENDGRID_MODULE_OPTIONS, 14 | useValue: { apikey: "value" } as SendGridModuleOptions, 15 | }, 16 | MailService, 17 | ], 18 | }).compile(), 19 | ).resolves.toBeDefined(); 20 | }); 21 | 22 | it("should be compile, but print error log", async () => { 23 | await expect( 24 | Test.createTestingModule({ 25 | providers: [ 26 | SendGridService, 27 | { 28 | provide: SendGridConstants.SENDGRID_MODULE_OPTIONS, 29 | useValue: {} as SendGridModuleOptions, 30 | }, 31 | MailService, 32 | ], 33 | }).compile(), 34 | ).resolves.toBeDefined(); 35 | }); 36 | 37 | it("should set Substitution Wrappers", async () => { 38 | await expect( 39 | Test.createTestingModule({ 40 | providers: [ 41 | SendGridService, 42 | { 43 | provide: SendGridConstants.SENDGRID_MODULE_OPTIONS, 44 | useValue: { 45 | apikey: "value", 46 | substitutionWrappers: { 47 | left: "left", 48 | right: "right", 49 | }, 50 | } as SendGridModuleOptions, 51 | }, 52 | MailService, 53 | ], 54 | }).compile(), 55 | ).resolves.toBeDefined(); 56 | }); 57 | 58 | it("should send email", async () => { 59 | const app = await Test.createTestingModule({ 60 | providers: [ 61 | SendGridService, 62 | { 63 | provide: SendGridConstants.SENDGRID_MODULE_OPTIONS, 64 | useValue: { 65 | apikey: "value", 66 | } as SendGridModuleOptions, 67 | }, 68 | MailService, 69 | ], 70 | }).compile(); 71 | const service = app.get(SendGridService); 72 | const sendgrid = app.get(MailService); 73 | const mock = jest.spyOn(sendgrid, "send").mockImplementationOnce(async () => { 74 | return [{} as any, {}]; 75 | }); 76 | await service.send({ 77 | to: "test@example.com", 78 | from: "test@example.com", 79 | subject: "Sending with SendGrid is Fun", 80 | text: "and easy to do anywhere, even with Node.js", 81 | html: "and easy to do anywhere, even with Node.js", 82 | }); 83 | expect(mock).toHaveBeenCalled(); 84 | }); 85 | 86 | it("should set default data", async () => { 87 | const app = await Test.createTestingModule({ 88 | providers: [ 89 | SendGridService, 90 | { 91 | provide: SendGridConstants.SENDGRID_MODULE_OPTIONS, 92 | useValue: { 93 | apikey: "value", 94 | defaultMailData: { 95 | from: "test@example.com", 96 | }, 97 | } as SendGridModuleOptions, 98 | }, 99 | MailService, 100 | ], 101 | }).compile(); 102 | const service = app.get(SendGridService); 103 | const sendgrid = app.get(MailService); 104 | let mock = jest.spyOn(sendgrid, "send").mockImplementationOnce(async (data) => { 105 | expect(data).toStrictEqual({ 106 | to: "test@example.com", 107 | from: "test@example.com", 108 | subject: "Sending with SendGrid is Fun", 109 | text: "and easy to do anywhere, even with Node.js", 110 | html: "and easy to do anywhere, even with Node.js", 111 | }); 112 | return [{} as any, {}]; 113 | }); 114 | await service.send({ 115 | to: "test@example.com", 116 | subject: "Sending with SendGrid is Fun", 117 | text: "and easy to do anywhere, even with Node.js", 118 | html: "and easy to do anywhere, even with Node.js", 119 | }); 120 | expect(mock).toHaveBeenCalled(); 121 | 122 | mock = jest.spyOn(sendgrid, "send").mockImplementationOnce(async (data) => { 123 | expect(data).toStrictEqual([ 124 | { 125 | to: "test@example.com", 126 | from: "test@example.com", 127 | subject: "Sending with SendGrid is Fun", 128 | text: "and easy to do anywhere, even with Node.js", 129 | html: "and easy to do anywhere, even with Node.js", 130 | }, 131 | { 132 | to: "test@example.com", 133 | from: "test@example.com", 134 | subject: "Sending with SendGrid is Fun", 135 | text: "and easy to do anywhere, even with Node.js", 136 | html: "and easy to do anywhere, even with Node.js", 137 | }, 138 | ]); 139 | return [{} as any, {}]; 140 | }); 141 | await service.send([ 142 | { 143 | to: "test@example.com", 144 | subject: "Sending with SendGrid is Fun", 145 | text: "and easy to do anywhere, even with Node.js", 146 | html: "and easy to do anywhere, even with Node.js", 147 | }, 148 | { 149 | to: "test@example.com", 150 | subject: "Sending with SendGrid is Fun", 151 | text: "and easy to do anywhere, even with Node.js", 152 | html: "and easy to do anywhere, even with Node.js", 153 | }, 154 | ]); 155 | expect(mock).toHaveBeenCalled(); 156 | }); 157 | 158 | it("should send multiple", async () => { 159 | const app = await Test.createTestingModule({ 160 | providers: [ 161 | SendGridService, 162 | { 163 | provide: SendGridConstants.SENDGRID_MODULE_OPTIONS, 164 | useValue: { 165 | apikey: "value", 166 | } as SendGridModuleOptions, 167 | }, 168 | MailService, 169 | ], 170 | }).compile(); 171 | const service = app.get(SendGridService); 172 | const sendgrid = app.get(MailService); 173 | const mock = jest.spyOn(sendgrid, "sendMultiple").mockImplementationOnce(async () => { 174 | return [{} as any, {}]; 175 | }); 176 | await service.sendMultiple({ 177 | to: "test@example.com", 178 | from: "test@example.com", 179 | subject: "Sending with SendGrid is Fun", 180 | text: "and easy to do anywhere, even with Node.js", 181 | html: "and easy to do anywhere, even with Node.js", 182 | }); 183 | expect(mock).toHaveBeenCalled(); 184 | }); 185 | }); 186 | -------------------------------------------------------------------------------- /packages/sendgrid/CHANGELOG.md: -------------------------------------------------------------------------------- 1 | # Change Log 2 | 3 | All notable changes to this project will be documented in this file. 4 | See [Conventional Commits](https://conventionalcommits.org) for commit guidelines. 5 | 6 | ## 0.9.28 (2025-12-21) 7 | 8 | **Note:** Version bump only for package @anchan828/nest-sendgrid 9 | 10 | ## 0.9.27 (2025-12-14) 11 | 12 | **Note:** Version bump only for package @anchan828/nest-sendgrid 13 | 14 | ## 0.9.26 (2025-12-07) 15 | 16 | **Note:** Version bump only for package @anchan828/nest-sendgrid 17 | 18 | ## 0.9.25 (2025-11-30) 19 | 20 | **Note:** Version bump only for package @anchan828/nest-sendgrid 21 | 22 | ## 0.9.24 (2025-11-23) 23 | 24 | **Note:** Version bump only for package @anchan828/nest-sendgrid 25 | 26 | ## 0.9.23 (2025-11-16) 27 | 28 | **Note:** Version bump only for package @anchan828/nest-sendgrid 29 | 30 | ## 0.9.22 (2025-11-09) 31 | 32 | **Note:** Version bump only for package @anchan828/nest-sendgrid 33 | 34 | ## 0.9.21 (2025-11-02) 35 | 36 | **Note:** Version bump only for package @anchan828/nest-sendgrid 37 | 38 | ## 0.9.20 (2025-10-26) 39 | 40 | **Note:** Version bump only for package @anchan828/nest-sendgrid 41 | 42 | ## 0.9.19 (2025-10-19) 43 | 44 | **Note:** Version bump only for package @anchan828/nest-sendgrid 45 | 46 | ## 0.9.18 (2025-10-12) 47 | 48 | **Note:** Version bump only for package @anchan828/nest-sendgrid 49 | 50 | ## 0.9.17 (2025-10-05) 51 | 52 | **Note:** Version bump only for package @anchan828/nest-sendgrid 53 | 54 | ## 0.9.16 (2025-09-28) 55 | 56 | **Note:** Version bump only for package @anchan828/nest-sendgrid 57 | 58 | ## 0.9.15 (2025-09-21) 59 | 60 | **Note:** Version bump only for package @anchan828/nest-sendgrid 61 | 62 | ## 0.9.14 (2025-09-14) 63 | 64 | **Note:** Version bump only for package @anchan828/nest-sendgrid 65 | 66 | ## 0.9.13 (2025-09-07) 67 | 68 | **Note:** Version bump only for package @anchan828/nest-sendgrid 69 | 70 | ## 0.9.12 (2025-08-31) 71 | 72 | **Note:** Version bump only for package @anchan828/nest-sendgrid 73 | 74 | ## 0.9.11 (2025-08-24) 75 | 76 | **Note:** Version bump only for package @anchan828/nest-sendgrid 77 | 78 | ## 0.9.10 (2025-08-17) 79 | 80 | **Note:** Version bump only for package @anchan828/nest-sendgrid 81 | 82 | ## 0.9.9 (2025-08-10) 83 | 84 | **Note:** Version bump only for package @anchan828/nest-sendgrid 85 | 86 | ## 0.9.8 (2025-08-03) 87 | 88 | **Note:** Version bump only for package @anchan828/nest-sendgrid 89 | 90 | ## 0.9.7 (2025-07-27) 91 | 92 | **Note:** Version bump only for package @anchan828/nest-sendgrid 93 | 94 | ## 0.9.6 (2025-07-20) 95 | 96 | **Note:** Version bump only for package @anchan828/nest-sendgrid 97 | 98 | ## 0.9.5 (2025-07-13) 99 | 100 | **Note:** Version bump only for package @anchan828/nest-sendgrid 101 | 102 | ## 0.9.4 (2025-07-06) 103 | 104 | **Note:** Version bump only for package @anchan828/nest-sendgrid 105 | 106 | ## 0.9.3 (2025-06-29) 107 | 108 | **Note:** Version bump only for package @anchan828/nest-sendgrid 109 | 110 | ## 0.9.2 (2025-06-22) 111 | 112 | **Note:** Version bump only for package @anchan828/nest-sendgrid 113 | 114 | ## 0.9.1 (2025-06-15) 115 | 116 | **Note:** Version bump only for package @anchan828/nest-sendgrid 117 | 118 | # 0.9.0 (2025-06-06) 119 | 120 | **Note:** Version bump only for package @anchan828/nest-sendgrid 121 | 122 | ## 0.8.17 (2025-06-01) 123 | 124 | **Note:** Version bump only for package @anchan828/nest-sendgrid 125 | 126 | ## 0.8.16 (2025-05-25) 127 | 128 | **Note:** Version bump only for package @anchan828/nest-sendgrid 129 | 130 | ## 0.8.15 (2025-05-18) 131 | 132 | **Note:** Version bump only for package @anchan828/nest-sendgrid 133 | 134 | ## 0.8.14 (2025-05-11) 135 | 136 | **Note:** Version bump only for package @anchan828/nest-sendgrid 137 | 138 | ## 0.8.13 (2025-05-04) 139 | 140 | **Note:** Version bump only for package @anchan828/nest-sendgrid 141 | 142 | ## 0.8.12 (2025-04-27) 143 | 144 | **Note:** Version bump only for package @anchan828/nest-sendgrid 145 | 146 | ## 0.8.11 (2025-04-20) 147 | 148 | **Note:** Version bump only for package @anchan828/nest-sendgrid 149 | 150 | ## 0.8.10 (2025-04-13) 151 | 152 | **Note:** Version bump only for package @anchan828/nest-sendgrid 153 | 154 | ## 0.8.9 (2025-04-06) 155 | 156 | **Note:** Version bump only for package @anchan828/nest-sendgrid 157 | 158 | ## 0.8.8 (2025-03-30) 159 | 160 | **Note:** Version bump only for package @anchan828/nest-sendgrid 161 | 162 | ## 0.8.7 (2025-03-16) 163 | 164 | **Note:** Version bump only for package @anchan828/nest-sendgrid 165 | 166 | ## 0.8.6 (2025-03-09) 167 | 168 | **Note:** Version bump only for package @anchan828/nest-sendgrid 169 | 170 | ## 0.8.5 (2025-03-02) 171 | 172 | **Note:** Version bump only for package @anchan828/nest-sendgrid 173 | 174 | ## 0.8.4 (2025-02-23) 175 | 176 | **Note:** Version bump only for package @anchan828/nest-sendgrid 177 | 178 | ## 0.8.3 (2025-02-16) 179 | 180 | **Note:** Version bump only for package @anchan828/nest-sendgrid 181 | 182 | ## 0.8.2 (2025-02-09) 183 | 184 | **Note:** Version bump only for package @anchan828/nest-sendgrid 185 | 186 | ## 0.8.1 (2025-02-02) 187 | 188 | **Note:** Version bump only for package @anchan828/nest-sendgrid 189 | 190 | # 0.8.0 (2025-01-28) 191 | 192 | **Note:** Version bump only for package @anchan828/nest-sendgrid 193 | 194 | # 0.7.0 (2025-01-28) 195 | 196 | **Note:** Version bump only for package @anchan828/nest-sendgrid 197 | 198 | ## 0.6.127 (2025-01-26) 199 | 200 | **Note:** Version bump only for package @anchan828/nest-sendgrid 201 | 202 | ## 0.6.126 (2025-01-19) 203 | 204 | **Note:** Version bump only for package @anchan828/nest-sendgrid 205 | 206 | ## 0.6.125 (2025-01-12) 207 | 208 | **Note:** Version bump only for package @anchan828/nest-sendgrid 209 | 210 | ## 0.6.124 (2025-01-05) 211 | 212 | **Note:** Version bump only for package @anchan828/nest-sendgrid 213 | 214 | ## 0.6.123 (2024-12-29) 215 | 216 | **Note:** Version bump only for package @anchan828/nest-sendgrid 217 | 218 | ## 0.6.122 (2024-12-22) 219 | 220 | **Note:** Version bump only for package @anchan828/nest-sendgrid 221 | 222 | ## 0.6.121 (2024-12-15) 223 | 224 | **Note:** Version bump only for package @anchan828/nest-sendgrid 225 | 226 | ## 0.6.120 (2024-12-08) 227 | 228 | **Note:** Version bump only for package @anchan828/nest-sendgrid 229 | 230 | ## 0.6.119 (2024-12-01) 231 | 232 | **Note:** Version bump only for package @anchan828/nest-sendgrid 233 | 234 | ## 0.6.118 (2024-11-24) 235 | 236 | **Note:** Version bump only for package @anchan828/nest-sendgrid 237 | 238 | ## 0.6.117 (2024-11-17) 239 | 240 | **Note:** Version bump only for package @anchan828/nest-sendgrid 241 | 242 | ## 0.6.116 (2024-11-10) 243 | 244 | **Note:** Version bump only for package @anchan828/nest-sendgrid 245 | 246 | ## 0.6.115 (2024-11-03) 247 | 248 | **Note:** Version bump only for package @anchan828/nest-sendgrid 249 | 250 | ## 0.6.114 (2024-10-27) 251 | 252 | **Note:** Version bump only for package @anchan828/nest-sendgrid 253 | 254 | ## 0.6.113 (2024-10-20) 255 | 256 | **Note:** Version bump only for package @anchan828/nest-sendgrid 257 | 258 | ## 0.6.112 (2024-10-13) 259 | 260 | **Note:** Version bump only for package @anchan828/nest-sendgrid 261 | 262 | ## 0.6.111 (2024-10-06) 263 | 264 | **Note:** Version bump only for package @anchan828/nest-sendgrid 265 | 266 | ## 0.6.110 (2024-09-29) 267 | 268 | **Note:** Version bump only for package @anchan828/nest-sendgrid 269 | 270 | ## 0.6.109 (2024-09-22) 271 | 272 | **Note:** Version bump only for package @anchan828/nest-sendgrid 273 | 274 | ## 0.6.108 (2024-09-15) 275 | 276 | **Note:** Version bump only for package @anchan828/nest-sendgrid 277 | 278 | ## 0.6.107 (2024-09-08) 279 | 280 | **Note:** Version bump only for package @anchan828/nest-sendgrid 281 | 282 | ## 0.6.106 (2024-09-01) 283 | 284 | **Note:** Version bump only for package @anchan828/nest-sendgrid 285 | 286 | ## 0.6.105 (2024-08-25) 287 | 288 | **Note:** Version bump only for package @anchan828/nest-sendgrid 289 | 290 | ## 0.6.104 (2024-08-18) 291 | 292 | **Note:** Version bump only for package @anchan828/nest-sendgrid 293 | 294 | ## 0.6.103 (2024-08-11) 295 | 296 | **Note:** Version bump only for package @anchan828/nest-sendgrid 297 | 298 | ## 0.6.102 (2024-08-11) 299 | 300 | **Note:** Version bump only for package @anchan828/nest-sendgrid 301 | 302 | ## 0.6.101 (2024-08-04) 303 | 304 | **Note:** Version bump only for package @anchan828/nest-sendgrid 305 | 306 | ## 0.6.100 (2024-07-28) 307 | 308 | **Note:** Version bump only for package @anchan828/nest-sendgrid 309 | 310 | ## 0.6.99 (2024-07-21) 311 | 312 | **Note:** Version bump only for package @anchan828/nest-sendgrid 313 | 314 | ## 0.6.98 (2024-07-14) 315 | 316 | **Note:** Version bump only for package @anchan828/nest-sendgrid 317 | 318 | ## 0.6.97 (2024-07-07) 319 | 320 | **Note:** Version bump only for package @anchan828/nest-sendgrid 321 | 322 | ## 0.6.96 (2024-06-30) 323 | 324 | **Note:** Version bump only for package @anchan828/nest-sendgrid 325 | 326 | ## 0.6.95 (2024-06-23) 327 | 328 | **Note:** Version bump only for package @anchan828/nest-sendgrid 329 | 330 | ## 0.6.94 (2024-06-16) 331 | 332 | **Note:** Version bump only for package @anchan828/nest-sendgrid 333 | 334 | ## 0.6.93 (2024-06-09) 335 | 336 | **Note:** Version bump only for package @anchan828/nest-sendgrid 337 | 338 | ## 0.6.92 (2024-06-02) 339 | 340 | **Note:** Version bump only for package @anchan828/nest-sendgrid 341 | 342 | ## 0.6.91 (2024-05-26) 343 | 344 | **Note:** Version bump only for package @anchan828/nest-sendgrid 345 | 346 | ## 0.6.90 (2024-05-19) 347 | 348 | **Note:** Version bump only for package @anchan828/nest-sendgrid 349 | 350 | ## 0.6.89 (2024-05-12) 351 | 352 | **Note:** Version bump only for package @anchan828/nest-sendgrid 353 | 354 | ## 0.6.88 (2024-05-05) 355 | 356 | **Note:** Version bump only for package @anchan828/nest-sendgrid 357 | 358 | ## 0.6.87 (2024-04-28) 359 | 360 | **Note:** Version bump only for package @anchan828/nest-sendgrid 361 | 362 | ## 0.6.86 (2024-04-21) 363 | 364 | **Note:** Version bump only for package @anchan828/nest-sendgrid 365 | 366 | ## 0.6.85 (2024-04-14) 367 | 368 | **Note:** Version bump only for package @anchan828/nest-sendgrid 369 | 370 | ## 0.6.84 (2024-04-07) 371 | 372 | **Note:** Version bump only for package @anchan828/nest-sendgrid 373 | 374 | ## 0.6.83 (2024-03-31) 375 | 376 | **Note:** Version bump only for package @anchan828/nest-sendgrid 377 | 378 | ## 0.6.82 (2024-03-24) 379 | 380 | **Note:** Version bump only for package @anchan828/nest-sendgrid 381 | 382 | ## 0.6.81 (2024-03-17) 383 | 384 | **Note:** Version bump only for package @anchan828/nest-sendgrid 385 | 386 | ## 0.6.80 (2024-03-10) 387 | 388 | **Note:** Version bump only for package @anchan828/nest-sendgrid 389 | 390 | ## 0.6.79 (2024-03-03) 391 | 392 | **Note:** Version bump only for package @anchan828/nest-sendgrid 393 | 394 | ## 0.6.78 (2024-02-25) 395 | 396 | **Note:** Version bump only for package @anchan828/nest-sendgrid 397 | 398 | ## 0.6.77 (2024-02-18) 399 | 400 | **Note:** Version bump only for package @anchan828/nest-sendgrid 401 | 402 | ## 0.6.76 (2024-02-11) 403 | 404 | **Note:** Version bump only for package @anchan828/nest-sendgrid 405 | 406 | ## 0.6.75 (2024-02-04) 407 | 408 | **Note:** Version bump only for package @anchan828/nest-sendgrid 409 | 410 | ## 0.6.74 (2024-01-28) 411 | 412 | **Note:** Version bump only for package @anchan828/nest-sendgrid 413 | 414 | ## 0.6.73 (2024-01-21) 415 | 416 | **Note:** Version bump only for package @anchan828/nest-sendgrid 417 | 418 | ## 0.6.72 (2024-01-14) 419 | 420 | **Note:** Version bump only for package @anchan828/nest-sendgrid 421 | 422 | ## 0.6.71 (2023-12-24) 423 | 424 | **Note:** Version bump only for package @anchan828/nest-sendgrid 425 | 426 | ## 0.6.70 (2023-12-17) 427 | 428 | **Note:** Version bump only for package @anchan828/nest-sendgrid 429 | 430 | ## 0.6.69 (2023-12-10) 431 | 432 | **Note:** Version bump only for package @anchan828/nest-sendgrid 433 | 434 | ## 0.6.68 (2023-12-03) 435 | 436 | **Note:** Version bump only for package @anchan828/nest-sendgrid 437 | 438 | ## 0.6.67 (2023-11-26) 439 | 440 | **Note:** Version bump only for package @anchan828/nest-sendgrid 441 | 442 | ## 0.6.66 (2023-11-19) 443 | 444 | **Note:** Version bump only for package @anchan828/nest-sendgrid 445 | 446 | ## 0.6.65 (2023-11-12) 447 | 448 | **Note:** Version bump only for package @anchan828/nest-sendgrid 449 | 450 | ## 0.6.64 (2023-11-05) 451 | 452 | **Note:** Version bump only for package @anchan828/nest-sendgrid 453 | 454 | ## 0.6.63 (2023-10-29) 455 | 456 | **Note:** Version bump only for package @anchan828/nest-sendgrid 457 | 458 | ## 0.6.62 (2023-10-22) 459 | 460 | **Note:** Version bump only for package @anchan828/nest-sendgrid 461 | 462 | ## 0.6.61 (2023-10-15) 463 | 464 | **Note:** Version bump only for package @anchan828/nest-sendgrid 465 | 466 | ## 0.6.60 (2023-10-08) 467 | 468 | **Note:** Version bump only for package @anchan828/nest-sendgrid 469 | 470 | ## 0.6.59 (2023-10-01) 471 | 472 | **Note:** Version bump only for package @anchan828/nest-sendgrid 473 | 474 | ## 0.6.58 (2023-09-24) 475 | 476 | **Note:** Version bump only for package @anchan828/nest-sendgrid 477 | 478 | ## 0.6.57 (2023-09-17) 479 | 480 | **Note:** Version bump only for package @anchan828/nest-sendgrid 481 | 482 | ## 0.6.56 (2023-09-10) 483 | 484 | **Note:** Version bump only for package @anchan828/nest-sendgrid 485 | 486 | ## 0.6.55 (2023-09-03) 487 | 488 | **Note:** Version bump only for package @anchan828/nest-sendgrid 489 | 490 | ## 0.6.54 (2023-08-27) 491 | 492 | **Note:** Version bump only for package @anchan828/nest-sendgrid 493 | 494 | ## 0.6.53 (2023-08-20) 495 | 496 | **Note:** Version bump only for package @anchan828/nest-sendgrid 497 | 498 | ## 0.6.52 (2023-08-13) 499 | 500 | **Note:** Version bump only for package @anchan828/nest-sendgrid 501 | 502 | ## 0.6.51 (2023-08-06) 503 | 504 | **Note:** Version bump only for package @anchan828/nest-sendgrid 505 | 506 | ## 0.6.50 (2023-07-30) 507 | 508 | **Note:** Version bump only for package @anchan828/nest-sendgrid 509 | 510 | ## 0.6.49 (2023-07-23) 511 | 512 | **Note:** Version bump only for package @anchan828/nest-sendgrid 513 | 514 | ## 0.6.48 (2023-07-16) 515 | 516 | **Note:** Version bump only for package @anchan828/nest-sendgrid 517 | 518 | ## 0.6.47 (2023-07-09) 519 | 520 | **Note:** Version bump only for package @anchan828/nest-sendgrid 521 | 522 | ## 0.6.46 (2023-07-02) 523 | 524 | **Note:** Version bump only for package @anchan828/nest-sendgrid 525 | 526 | ## 0.6.45 (2023-06-25) 527 | 528 | **Note:** Version bump only for package @anchan828/nest-sendgrid 529 | 530 | ## 0.6.44 (2023-06-11) 531 | 532 | **Note:** Version bump only for package @anchan828/nest-sendgrid 533 | 534 | ## 0.6.43 (2023-06-04) 535 | 536 | **Note:** Version bump only for package @anchan828/nest-sendgrid 537 | 538 | ## 0.6.42 (2023-05-28) 539 | 540 | **Note:** Version bump only for package @anchan828/nest-sendgrid 541 | 542 | ## 0.6.41 (2023-05-21) 543 | 544 | **Note:** Version bump only for package @anchan828/nest-sendgrid 545 | 546 | ## 0.6.40 (2023-04-16) 547 | 548 | **Note:** Version bump only for package @anchan828/nest-sendgrid 549 | 550 | ## 0.6.39 (2023-04-09) 551 | 552 | **Note:** Version bump only for package @anchan828/nest-sendgrid 553 | 554 | ## 0.6.38 (2023-04-02) 555 | 556 | **Note:** Version bump only for package @anchan828/nest-sendgrid 557 | 558 | ## 0.6.37 (2023-03-26) 559 | 560 | **Note:** Version bump only for package @anchan828/nest-sendgrid 561 | 562 | ## 0.6.36 (2023-03-19) 563 | 564 | ### Bug Fixes 565 | 566 | * **deps:** update dependency deepmerge to ^4.3.1 ([476ad63](https://github.com/anchan828/nest-sendgrid/commit/476ad63133f6ff73ef3312076368d1d45b36db15)) 567 | 568 | ## 0.6.35 (2023-03-12) 569 | 570 | **Note:** Version bump only for package @anchan828/nest-sendgrid 571 | 572 | ## 0.6.34 (2023-03-05) 573 | 574 | **Note:** Version bump only for package @anchan828/nest-sendgrid 575 | 576 | ## 0.6.33 (2023-02-26) 577 | 578 | **Note:** Version bump only for package @anchan828/nest-sendgrid 579 | 580 | ## 0.6.32 (2023-02-19) 581 | 582 | **Note:** Version bump only for package @anchan828/nest-sendgrid 583 | 584 | ## 0.6.31 (2023-02-12) 585 | 586 | **Note:** Version bump only for package @anchan828/nest-sendgrid 587 | 588 | ## 0.6.30 (2023-02-05) 589 | 590 | **Note:** Version bump only for package @anchan828/nest-sendgrid 591 | 592 | ## 0.6.29 (2023-01-29) 593 | 594 | **Note:** Version bump only for package @anchan828/nest-sendgrid 595 | 596 | ## 0.6.28 (2023-01-22) 597 | 598 | **Note:** Version bump only for package @anchan828/nest-sendgrid 599 | 600 | ## 0.6.27 (2023-01-15) 601 | 602 | **Note:** Version bump only for package @anchan828/nest-sendgrid 603 | 604 | ## 0.6.26 (2023-01-08) 605 | 606 | **Note:** Version bump only for package @anchan828/nest-sendgrid 607 | 608 | ## 0.6.25 (2023-01-01) 609 | 610 | **Note:** Version bump only for package @anchan828/nest-sendgrid 611 | 612 | ## 0.6.24 (2022-12-25) 613 | 614 | **Note:** Version bump only for package @anchan828/nest-sendgrid 615 | 616 | ## 0.6.23 (2022-12-18) 617 | 618 | **Note:** Version bump only for package @anchan828/nest-sendgrid 619 | 620 | ## 0.6.22 (2022-12-11) 621 | 622 | **Note:** Version bump only for package @anchan828/nest-sendgrid 623 | 624 | ## 0.6.21 (2022-12-04) 625 | 626 | **Note:** Version bump only for package @anchan828/nest-sendgrid 627 | 628 | ## 0.6.20 (2022-11-27) 629 | 630 | **Note:** Version bump only for package @anchan828/nest-sendgrid 631 | 632 | ## 0.6.19 (2022-11-20) 633 | 634 | **Note:** Version bump only for package @anchan828/nest-sendgrid 635 | 636 | ## 0.6.18 (2022-11-13) 637 | 638 | **Note:** Version bump only for package @anchan828/nest-sendgrid 639 | 640 | ## 0.6.17 (2022-11-06) 641 | 642 | **Note:** Version bump only for package @anchan828/nest-sendgrid 643 | 644 | ## 0.6.16 (2022-10-30) 645 | 646 | **Note:** Version bump only for package @anchan828/nest-sendgrid 647 | 648 | ## 0.6.15 (2022-10-23) 649 | 650 | **Note:** Version bump only for package @anchan828/nest-sendgrid 651 | 652 | ## 0.6.14 (2022-10-16) 653 | 654 | **Note:** Version bump only for package @anchan828/nest-sendgrid 655 | 656 | ## 0.6.13 (2022-10-09) 657 | 658 | **Note:** Version bump only for package @anchan828/nest-sendgrid 659 | 660 | ## 0.6.12 (2022-10-02) 661 | 662 | **Note:** Version bump only for package @anchan828/nest-sendgrid 663 | 664 | ## 0.6.11 (2022-09-25) 665 | 666 | **Note:** Version bump only for package @anchan828/nest-sendgrid 667 | 668 | ## 0.6.10 (2022-09-18) 669 | 670 | **Note:** Version bump only for package @anchan828/nest-sendgrid 671 | 672 | ## 0.6.9 (2022-09-11) 673 | 674 | **Note:** Version bump only for package @anchan828/nest-sendgrid 675 | 676 | ## 0.6.8 (2022-09-04) 677 | 678 | **Note:** Version bump only for package @anchan828/nest-sendgrid 679 | 680 | ## 0.6.7 (2022-08-28) 681 | 682 | **Note:** Version bump only for package @anchan828/nest-sendgrid 683 | 684 | ## 0.6.6 (2022-08-21) 685 | 686 | **Note:** Version bump only for package @anchan828/nest-sendgrid 687 | 688 | ## 0.6.5 (2022-08-14) 689 | 690 | **Note:** Version bump only for package @anchan828/nest-sendgrid 691 | 692 | ## 0.6.4 (2022-08-07) 693 | 694 | **Note:** Version bump only for package @anchan828/nest-sendgrid 695 | 696 | ## 0.6.3 (2022-07-31) 697 | 698 | **Note:** Version bump only for package @anchan828/nest-sendgrid 699 | 700 | ## 0.6.2 (2022-07-24) 701 | 702 | **Note:** Version bump only for package @anchan828/nest-sendgrid 703 | 704 | ## 0.6.1 (2022-07-17) 705 | 706 | **Note:** Version bump only for package @anchan828/nest-sendgrid 707 | 708 | # 0.6.0 (2022-07-08) 709 | 710 | **Note:** Version bump only for package @anchan828/nest-sendgrid 711 | 712 | ## 0.5.50 (2022-07-03) 713 | 714 | **Note:** Version bump only for package @anchan828/nest-sendgrid 715 | 716 | ## 0.5.49 (2022-06-26) 717 | 718 | **Note:** Version bump only for package @anchan828/nest-sendgrid 719 | 720 | ## 0.5.48 (2022-06-19) 721 | 722 | **Note:** Version bump only for package @anchan828/nest-sendgrid 723 | 724 | ## 0.5.47 (2022-06-12) 725 | 726 | **Note:** Version bump only for package @anchan828/nest-sendgrid 727 | 728 | ## 0.5.46 (2022-06-05) 729 | 730 | **Note:** Version bump only for package @anchan828/nest-sendgrid 731 | 732 | ## 0.5.45 (2022-05-29) 733 | 734 | **Note:** Version bump only for package @anchan828/nest-sendgrid 735 | 736 | ## 0.5.44 (2022-05-22) 737 | 738 | **Note:** Version bump only for package @anchan828/nest-sendgrid 739 | 740 | ## 0.5.43 (2022-05-15) 741 | 742 | **Note:** Version bump only for package @anchan828/nest-sendgrid 743 | 744 | ## 0.5.42 (2022-05-08) 745 | 746 | **Note:** Version bump only for package @anchan828/nest-sendgrid 747 | 748 | ## 0.5.41 (2022-05-01) 749 | 750 | **Note:** Version bump only for package @anchan828/nest-sendgrid 751 | 752 | ## 0.5.40 (2022-04-24) 753 | 754 | **Note:** Version bump only for package @anchan828/nest-sendgrid 755 | 756 | ## 0.5.39 (2022-04-17) 757 | 758 | **Note:** Version bump only for package @anchan828/nest-sendgrid 759 | 760 | ## 0.5.38 (2022-04-10) 761 | 762 | **Note:** Version bump only for package @anchan828/nest-sendgrid 763 | 764 | ## 0.5.37 (2022-04-03) 765 | 766 | **Note:** Version bump only for package @anchan828/nest-sendgrid 767 | 768 | ## 0.5.36 (2022-03-27) 769 | 770 | **Note:** Version bump only for package @anchan828/nest-sendgrid 771 | 772 | ## 0.5.35 (2022-03-20) 773 | 774 | **Note:** Version bump only for package @anchan828/nest-sendgrid 775 | 776 | ## 0.5.34 (2022-03-13) 777 | 778 | **Note:** Version bump only for package @anchan828/nest-sendgrid 779 | 780 | ## 0.5.33 (2022-03-06) 781 | 782 | **Note:** Version bump only for package @anchan828/nest-sendgrid 783 | 784 | ## 0.5.32 (2022-02-27) 785 | 786 | **Note:** Version bump only for package @anchan828/nest-sendgrid 787 | 788 | ## 0.5.31 (2022-02-20) 789 | 790 | **Note:** Version bump only for package @anchan828/nest-sendgrid 791 | 792 | ## 0.5.30 (2022-02-13) 793 | 794 | **Note:** Version bump only for package @anchan828/nest-sendgrid 795 | 796 | ## 0.5.29 (2022-02-06) 797 | 798 | **Note:** Version bump only for package @anchan828/nest-sendgrid 799 | 800 | ## 0.5.28 (2022-01-30) 801 | 802 | **Note:** Version bump only for package @anchan828/nest-sendgrid 803 | 804 | ## 0.5.27 (2021-12-26) 805 | 806 | **Note:** Version bump only for package @anchan828/nest-sendgrid 807 | 808 | ## 0.5.26 (2021-12-19) 809 | 810 | **Note:** Version bump only for package @anchan828/nest-sendgrid 811 | 812 | ## 0.5.25 (2021-12-12) 813 | 814 | **Note:** Version bump only for package @anchan828/nest-sendgrid 815 | 816 | ## 0.5.24 (2021-12-05) 817 | 818 | **Note:** Version bump only for package @anchan828/nest-sendgrid 819 | 820 | ## 0.5.23 (2021-11-28) 821 | 822 | **Note:** Version bump only for package @anchan828/nest-sendgrid 823 | 824 | ## 0.5.22 (2021-11-21) 825 | 826 | **Note:** Version bump only for package @anchan828/nest-sendgrid 827 | 828 | ## 0.5.21 (2021-11-14) 829 | 830 | **Note:** Version bump only for package @anchan828/nest-sendgrid 831 | 832 | ## 0.5.20 (2021-11-07) 833 | 834 | **Note:** Version bump only for package @anchan828/nest-sendgrid 835 | 836 | ## 0.5.19 (2021-10-31) 837 | 838 | **Note:** Version bump only for package @anchan828/nest-sendgrid 839 | 840 | ## 0.5.18 (2021-10-24) 841 | 842 | **Note:** Version bump only for package @anchan828/nest-sendgrid 843 | 844 | ## 0.5.17 (2021-10-17) 845 | 846 | **Note:** Version bump only for package @anchan828/nest-sendgrid 847 | 848 | ## 0.5.16 (2021-10-10) 849 | 850 | **Note:** Version bump only for package @anchan828/nest-sendgrid 851 | 852 | ## 0.5.15 (2021-10-03) 853 | 854 | **Note:** Version bump only for package @anchan828/nest-sendgrid 855 | 856 | ## 0.5.14 (2021-09-26) 857 | 858 | **Note:** Version bump only for package @anchan828/nest-sendgrid 859 | 860 | ## 0.5.13 (2021-09-19) 861 | 862 | **Note:** Version bump only for package @anchan828/nest-sendgrid 863 | 864 | ## 0.5.12 (2021-09-12) 865 | 866 | **Note:** Version bump only for package @anchan828/nest-sendgrid 867 | 868 | ## 0.5.11 (2021-09-05) 869 | 870 | **Note:** Version bump only for package @anchan828/nest-sendgrid 871 | 872 | ## 0.5.10 (2021-08-29) 873 | 874 | **Note:** Version bump only for package @anchan828/nest-sendgrid 875 | 876 | ## 0.5.9 (2021-08-22) 877 | 878 | **Note:** Version bump only for package @anchan828/nest-sendgrid 879 | 880 | ## 0.5.8 (2021-08-15) 881 | 882 | **Note:** Version bump only for package @anchan828/nest-sendgrid 883 | 884 | ## 0.5.7 (2021-08-08) 885 | 886 | **Note:** Version bump only for package @anchan828/nest-sendgrid 887 | 888 | ## 0.5.6 (2021-08-01) 889 | 890 | **Note:** Version bump only for package @anchan828/nest-sendgrid 891 | 892 | ## 0.5.5 (2021-07-25) 893 | 894 | **Note:** Version bump only for package @anchan828/nest-sendgrid 895 | 896 | ## 0.5.4 (2021-07-23) 897 | 898 | **Note:** Version bump only for package @anchan828/nest-sendgrid 899 | 900 | ## 0.5.3 (2021-07-23) 901 | 902 | **Note:** Version bump only for package @anchan828/nest-sendgrid 903 | 904 | ## 0.5.2 (2021-07-18) 905 | 906 | **Note:** Version bump only for package @anchan828/nest-sendgrid 907 | 908 | ## 0.5.1 (2021-07-18) 909 | 910 | **Note:** Version bump only for package @anchan828/nest-sendgrid 911 | 912 | # [0.5.0](https://github.com/anchan828/nest-sendgrid/compare/v0.4.27...v0.5.0) (2021-07-14) 913 | 914 | ### Bug Fixes 915 | 916 | * update to nestjs v8 ([b0405db](https://github.com/anchan828/nest-sendgrid/commit/b0405dba9afc310c57e2466967a44a2db75d74b3)) 917 | 918 | ## 0.4.27 (2021-07-11) 919 | 920 | **Note:** Version bump only for package @anchan828/nest-sendgrid 921 | 922 | ## 0.4.26 (2021-06-27) 923 | 924 | **Note:** Version bump only for package @anchan828/nest-sendgrid 925 | 926 | ## 0.4.25 (2021-06-20) 927 | 928 | **Note:** Version bump only for package @anchan828/nest-sendgrid 929 | 930 | ## 0.4.24 (2021-06-13) 931 | 932 | **Note:** Version bump only for package @anchan828/nest-sendgrid 933 | 934 | ## 0.4.23 (2021-06-06) 935 | 936 | **Note:** Version bump only for package @anchan828/nest-sendgrid 937 | 938 | ## 0.4.22 (2021-05-30) 939 | 940 | **Note:** Version bump only for package @anchan828/nest-sendgrid 941 | 942 | ## 0.4.21 (2021-05-23) 943 | 944 | **Note:** Version bump only for package @anchan828/nest-sendgrid 945 | 946 | ## 0.4.20 (2021-05-16) 947 | 948 | **Note:** Version bump only for package @anchan828/nest-sendgrid 949 | 950 | ## 0.4.19 (2021-05-09) 951 | 952 | **Note:** Version bump only for package @anchan828/nest-sendgrid 953 | 954 | ## 0.4.18 (2021-05-02) 955 | 956 | **Note:** Version bump only for package @anchan828/nest-sendgrid 957 | 958 | ## 0.4.17 (2021-04-25) 959 | 960 | **Note:** Version bump only for package @anchan828/nest-sendgrid 961 | 962 | ## 0.4.16 (2021-04-18) 963 | 964 | **Note:** Version bump only for package @anchan828/nest-sendgrid 965 | 966 | ## 0.4.15 (2021-04-11) 967 | 968 | **Note:** Version bump only for package @anchan828/nest-sendgrid 969 | 970 | ## 0.4.14 (2021-04-04) 971 | 972 | **Note:** Version bump only for package @anchan828/nest-sendgrid 973 | 974 | ## 0.4.13 (2021-03-28) 975 | 976 | **Note:** Version bump only for package @anchan828/nest-sendgrid 977 | 978 | ## 0.4.12 (2021-03-21) 979 | 980 | **Note:** Version bump only for package @anchan828/nest-sendgrid 981 | 982 | ## 0.4.11 (2021-03-14) 983 | 984 | **Note:** Version bump only for package @anchan828/nest-sendgrid 985 | 986 | ## 0.4.10 (2021-03-07) 987 | 988 | **Note:** Version bump only for package @anchan828/nest-sendgrid 989 | 990 | ## 0.4.9 (2021-02-28) 991 | 992 | **Note:** Version bump only for package @anchan828/nest-sendgrid 993 | 994 | ## 0.4.8 (2021-02-21) 995 | 996 | **Note:** Version bump only for package @anchan828/nest-sendgrid 997 | 998 | ## 0.4.7 (2021-02-14) 999 | 1000 | **Note:** Version bump only for package @anchan828/nest-sendgrid 1001 | 1002 | ## 0.4.6 (2021-02-07) 1003 | 1004 | **Note:** Version bump only for package @anchan828/nest-sendgrid 1005 | 1006 | ## 0.4.5 (2021-01-31) 1007 | 1008 | **Note:** Version bump only for package @anchan828/nest-sendgrid 1009 | 1010 | ## 0.4.4 (2021-01-24) 1011 | 1012 | **Note:** Version bump only for package @anchan828/nest-sendgrid 1013 | 1014 | ## 0.4.3 (2021-01-17) 1015 | 1016 | **Note:** Version bump only for package @anchan828/nest-sendgrid 1017 | 1018 | ## 0.4.2 (2021-01-10) 1019 | 1020 | **Note:** Version bump only for package @anchan828/nest-sendgrid 1021 | 1022 | ## 0.4.1 (2021-01-03) 1023 | 1024 | **Note:** Version bump only for package @anchan828/nest-sendgrid 1025 | 1026 | # [0.4.0](https://github.com/anchan828/nest-sendgrid/compare/v0.3.36...v0.4.0) (2020-12-25) 1027 | 1028 | ### Features 1029 | 1030 | * support @nestjs/terminus v7 ([09a48a5](https://github.com/anchan828/nest-sendgrid/commit/09a48a512faed75e8e61d482aafbfe549ea17223)) 1031 | 1032 | ## 0.3.36 (2020-12-20) 1033 | 1034 | **Note:** Version bump only for package @anchan828/nest-sendgrid 1035 | 1036 | ## 0.3.35 (2020-12-13) 1037 | 1038 | **Note:** Version bump only for package @anchan828/nest-sendgrid 1039 | 1040 | ## 0.3.34 (2020-12-06) 1041 | 1042 | **Note:** Version bump only for package @anchan828/nest-sendgrid 1043 | 1044 | ## 0.3.33 (2020-11-29) 1045 | 1046 | **Note:** Version bump only for package @anchan828/nest-sendgrid 1047 | 1048 | ## 0.3.32 (2020-11-22) 1049 | 1050 | **Note:** Version bump only for package @anchan828/nest-sendgrid 1051 | 1052 | ## 0.3.31 (2020-11-15) 1053 | 1054 | **Note:** Version bump only for package @anchan828/nest-sendgrid 1055 | 1056 | ## 0.3.30 (2020-11-08) 1057 | 1058 | **Note:** Version bump only for package @anchan828/nest-sendgrid 1059 | 1060 | ## 0.3.29 (2020-11-01) 1061 | 1062 | **Note:** Version bump only for package @anchan828/nest-sendgrid 1063 | 1064 | ## 0.3.28 (2020-10-25) 1065 | 1066 | **Note:** Version bump only for package @anchan828/nest-sendgrid 1067 | 1068 | ## 0.3.27 (2020-10-18) 1069 | 1070 | **Note:** Version bump only for package @anchan828/nest-sendgrid 1071 | 1072 | ## 0.3.26 (2020-10-11) 1073 | 1074 | **Note:** Version bump only for package @anchan828/nest-sendgrid 1075 | 1076 | ## 0.3.25 (2020-10-04) 1077 | 1078 | **Note:** Version bump only for package @anchan828/nest-sendgrid 1079 | 1080 | ## 0.3.24 (2020-09-27) 1081 | 1082 | **Note:** Version bump only for package @anchan828/nest-sendgrid 1083 | 1084 | ## 0.3.23 (2020-09-20) 1085 | 1086 | **Note:** Version bump only for package @anchan828/nest-sendgrid 1087 | 1088 | ## 0.3.22 (2020-09-13) 1089 | 1090 | **Note:** Version bump only for package @anchan828/nest-sendgrid 1091 | 1092 | ## 0.3.21 (2020-09-06) 1093 | 1094 | **Note:** Version bump only for package @anchan828/nest-sendgrid 1095 | 1096 | ## 0.3.20 (2020-08-30) 1097 | 1098 | **Note:** Version bump only for package @anchan828/nest-sendgrid 1099 | 1100 | ## 0.3.19 (2020-08-23) 1101 | 1102 | **Note:** Version bump only for package @anchan828/nest-sendgrid 1103 | 1104 | ## 0.3.18 (2020-08-16) 1105 | 1106 | **Note:** Version bump only for package @anchan828/nest-sendgrid 1107 | 1108 | ## 0.3.17 (2020-08-09) 1109 | 1110 | **Note:** Version bump only for package @anchan828/nest-sendgrid 1111 | 1112 | ## 0.3.16 (2020-08-02) 1113 | 1114 | **Note:** Version bump only for package @anchan828/nest-sendgrid 1115 | 1116 | ## 0.3.15 (2020-07-26) 1117 | 1118 | **Note:** Version bump only for package @anchan828/nest-sendgrid 1119 | 1120 | ## 0.3.14 (2020-07-19) 1121 | 1122 | **Note:** Version bump only for package @anchan828/nest-sendgrid 1123 | 1124 | ## 0.3.13 (2020-07-12) 1125 | 1126 | **Note:** Version bump only for package @anchan828/nest-sendgrid 1127 | 1128 | ## 0.3.12 (2020-07-05) 1129 | 1130 | **Note:** Version bump only for package @anchan828/nest-sendgrid 1131 | 1132 | ## 0.3.11 (2020-06-28) 1133 | 1134 | ### Bug Fixes 1135 | 1136 | * **deps:** update dependency @sendgrid/mail to v7.2.1 ([2afd4ce](https://github.com/anchan828/nest-sendgrid/commit/2afd4ce1dd5014ba2f652bf834cb3283bfbe84fc)) 1137 | 1138 | ## 0.3.10 (2020-06-21) 1139 | 1140 | **Note:** Version bump only for package @anchan828/nest-sendgrid 1141 | 1142 | ## 0.3.9 (2020-06-14) 1143 | 1144 | **Note:** Version bump only for package @anchan828/nest-sendgrid 1145 | 1146 | ## 0.3.8 (2020-06-07) 1147 | 1148 | **Note:** Version bump only for package @anchan828/nest-sendgrid 1149 | 1150 | ## 0.3.7 (2020-05-31) 1151 | 1152 | **Note:** Version bump only for package @anchan828/nest-sendgrid 1153 | 1154 | ## 0.3.6 (2020-05-24) 1155 | 1156 | **Note:** Version bump only for package @anchan828/nest-sendgrid 1157 | 1158 | ## 0.3.5 (2020-05-17) 1159 | 1160 | **Note:** Version bump only for package @anchan828/nest-sendgrid 1161 | 1162 | ## 0.3.4 (2020-05-10) 1163 | 1164 | **Note:** Version bump only for package @anchan828/nest-sendgrid 1165 | 1166 | ## 0.3.3 (2020-05-03) 1167 | 1168 | **Note:** Version bump only for package @anchan828/nest-sendgrid 1169 | 1170 | ## 0.3.2 (2020-04-26) 1171 | 1172 | **Note:** Version bump only for package @anchan828/nest-sendgrid 1173 | 1174 | ## 0.3.1 (2020-04-19) 1175 | 1176 | **Note:** Version bump only for package @anchan828/nest-sendgrid 1177 | 1178 | # [0.3.0](https://github.com/anchan828/nest-sendgrid/compare/v0.2.3...v0.3.0) (2020-04-15) 1179 | 1180 | **Note:** Version bump only for package @anchan828/nest-sendgrid 1181 | 1182 | ## 0.2.3 (2020-04-12) 1183 | 1184 | **Note:** Version bump only for package @anchan828/nest-sendgrid 1185 | 1186 | ## 0.2.2 (2020-04-05) 1187 | 1188 | **Note:** Version bump only for package @anchan828/nest-sendgrid 1189 | 1190 | ## 0.2.1 (2020-03-29) 1191 | 1192 | **Note:** Version bump only for package @anchan828/nest-sendgrid 1193 | 1194 | # [0.2.0](https://github.com/anchan828/nest-sendgrid/compare/v0.1.40...v0.2.0) (2020-03-25) 1195 | 1196 | ### Bug Fixes 1197 | 1198 | - change MailData to MailDataRequired ([3348d1e](https://github.com/anchan828/nest-sendgrid/commit/3348d1ed58b381a3701d02d7cf04137214714a77)) 1199 | - **deps:** update dependency @sendgrid/mail to v6.5.5 ([5b6a480](https://github.com/anchan828/nest-sendgrid/commit/5b6a480963c26c2cdcfc508c2ef96a146df34614)) 1200 | - lint ([4d0e070](https://github.com/anchan828/nest-sendgrid/commit/4d0e070c5f6fa350409d5379e43aa07cdd182128)) 1201 | 1202 | ## 0.1.40 (2020-03-22) 1203 | 1204 | **Note:** Version bump only for package @anchan828/nest-sendgrid 1205 | 1206 | ## 0.1.39 (2020-03-15) 1207 | 1208 | **Note:** Version bump only for package @anchan828/nest-sendgrid 1209 | 1210 | ## 0.1.38 (2020-03-08) 1211 | 1212 | **Note:** Version bump only for package @anchan828/nest-sendgrid 1213 | 1214 | ## 0.1.37 (2020-03-01) 1215 | 1216 | **Note:** Version bump only for package @anchan828/nest-sendgrid 1217 | 1218 | ## 0.1.36 (2020-02-23) 1219 | 1220 | **Note:** Version bump only for package @anchan828/nest-sendgrid 1221 | 1222 | ## 0.1.35 (2020-02-16) 1223 | 1224 | **Note:** Version bump only for package @anchan828/nest-sendgrid 1225 | 1226 | ## 0.1.34 (2020-02-09) 1227 | 1228 | **Note:** Version bump only for package @anchan828/nest-sendgrid 1229 | 1230 | ## 0.1.33 (2020-02-02) 1231 | 1232 | **Note:** Version bump only for package @anchan828/nest-sendgrid 1233 | 1234 | ## 0.1.32 (2020-01-26) 1235 | 1236 | **Note:** Version bump only for package @anchan828/nest-sendgrid 1237 | 1238 | ## 0.1.31 (2020-01-19) 1239 | 1240 | **Note:** Version bump only for package @anchan828/nest-sendgrid 1241 | 1242 | ## 0.1.30 (2020-01-12) 1243 | 1244 | **Note:** Version bump only for package @anchan828/nest-sendgrid 1245 | 1246 | ## 0.1.29 (2020-01-05) 1247 | 1248 | **Note:** Version bump only for package @anchan828/nest-sendgrid 1249 | 1250 | ## 0.1.28 (2019-12-29) 1251 | 1252 | **Note:** Version bump only for package @anchan828/nest-sendgrid 1253 | 1254 | ## 0.1.27 (2019-12-22) 1255 | 1256 | **Note:** Version bump only for package @anchan828/nest-sendgrid 1257 | 1258 | ## 0.1.26 (2019-12-15) 1259 | 1260 | **Note:** Version bump only for package @anchan828/nest-sendgrid 1261 | 1262 | ## 0.1.25 (2019-12-08) 1263 | 1264 | **Note:** Version bump only for package @anchan828/nest-sendgrid 1265 | 1266 | ## [0.1.24](https://github.com/anchan828/nest-sendgrid/compare/v0.1.23...v0.1.24) (2019-12-01) 1267 | 1268 | **Note:** Version bump only for package @anchan828/nest-sendgrid 1269 | 1270 | ## [0.1.23](https://github.com/anchan828/nest-sendgrid/compare/v0.1.22...v0.1.23) (2019-11-17) 1271 | 1272 | **Note:** Version bump only for package @anchan828/nest-sendgrid 1273 | 1274 | ## [0.1.22](https://github.com/anchan828/nest-sendgrid/compare/v0.1.21...v0.1.22) (2019-11-10) 1275 | 1276 | **Note:** Version bump only for package @anchan828/nest-sendgrid 1277 | 1278 | ## [0.1.21](https://github.com/anchan828/nest-sendgrid/compare/v0.1.20...v0.1.21) (2019-11-03) 1279 | 1280 | ### Bug Fixes 1281 | 1282 | - **deps:** update dependency deepmerge to v4.2.2 ([49c0f39](https://github.com/anchan828/nest-sendgrid/commit/49c0f395bc4533e9950df148dbc718787e2eb4c1)) 1283 | 1284 | ## [0.1.20](https://github.com/anchan828/nest-sendgrid/compare/v0.1.19...v0.1.20) (2019-10-27) 1285 | 1286 | ### Bug Fixes 1287 | 1288 | - **deps:** update dependency deepmerge to v4.1.2 ([5cb8ac0](https://github.com/anchan828/nest-sendgrid/commit/5cb8ac0c7396b49af91d0efa30b5f2ccafa55e22)) 1289 | - **deps:** update dependency deepmerge to v4.2.0 ([28df212](https://github.com/anchan828/nest-sendgrid/commit/28df212ec867a44a347335db261c67aeb619f806)) 1290 | - **deps:** update dependency deepmerge to v4.2.1 ([66f1e43](https://github.com/anchan828/nest-sendgrid/commit/66f1e43ffab4152ba784ffbd6c83de810658fc84)) 1291 | 1292 | ## [0.1.19](https://github.com/anchan828/nest-sendgrid/compare/v0.1.18...v0.1.19) (2019-10-20) 1293 | 1294 | **Note:** Version bump only for package @anchan828/nest-sendgrid 1295 | 1296 | ## [0.1.18](https://github.com/anchan828/nest-sendgrid/compare/v0.1.17...v0.1.18) (2019-10-13) 1297 | 1298 | ### Bug Fixes 1299 | 1300 | - **deps:** update dependency deepmerge to v4.1.0 ([ec6883b](https://github.com/anchan828/nest-sendgrid/commit/ec6883beb2b83f76644ea36ab78f5f0aa8156867)) 1301 | - **deps:** update dependency deepmerge to v4.1.1 ([b0c7b81](https://github.com/anchan828/nest-sendgrid/commit/b0c7b81a833af0b5a775fa3afd07b5fc1b7be4c0)) 1302 | 1303 | ## [0.1.17](https://github.com/anchan828/nest-sendgrid/compare/v0.1.16...v0.1.17) (2019-10-06) 1304 | 1305 | **Note:** Version bump only for package @anchan828/nest-sendgrid 1306 | 1307 | ## [0.1.16](https://github.com/anchan828/nest-sendgrid/compare/v0.1.15...v0.1.16) (2019-09-29) 1308 | 1309 | **Note:** Version bump only for package @anchan828/nest-sendgrid 1310 | 1311 | ## [0.1.15](https://github.com/anchan828/nest-sendgrid/compare/v0.1.14...v0.1.15) (2019-09-22) 1312 | 1313 | **Note:** Version bump only for package @anchan828/nest-sendgrid 1314 | 1315 | ## [0.1.14](https://github.com/anchan828/nest-sendgrid/compare/v0.1.13...v0.1.14) (2019-09-15) 1316 | 1317 | **Note:** Version bump only for package @anchan828/nest-sendgrid 1318 | 1319 | ## [0.1.13](https://github.com/anchan828/nest-sendgrid/compare/v0.1.12...v0.1.13) (2019-09-08) 1320 | 1321 | **Note:** Version bump only for package @anchan828/nest-sendgrid 1322 | 1323 | ## [0.1.12](https://github.com/anchan828/nest-sendgrid/compare/v0.1.11...v0.1.12) (2019-09-01) 1324 | 1325 | **Note:** Version bump only for package @anchan828/nest-sendgrid 1326 | 1327 | ## [0.1.11](https://github.com/anchan828/nest-sendgrid/compare/v0.1.10...v0.1.11) (2019-08-25) 1328 | 1329 | **Note:** Version bump only for package @anchan828/nest-sendgrid 1330 | 1331 | ## [0.1.10](https://github.com/anchan828/nest-sendgrid/compare/v0.1.9...v0.1.10) (2019-08-18) 1332 | 1333 | **Note:** Version bump only for package @anchan828/nest-sendgrid 1334 | -------------------------------------------------------------------------------- /packages/terminus/CHANGELOG.md: -------------------------------------------------------------------------------- 1 | # Change Log 2 | 3 | All notable changes to this project will be documented in this file. 4 | See [Conventional Commits](https://conventionalcommits.org) for commit guidelines. 5 | 6 | ## 0.9.28 (2025-12-21) 7 | 8 | **Note:** Version bump only for package @anchan828/nest-sendgrid-terminus 9 | 10 | ## 0.9.27 (2025-12-14) 11 | 12 | **Note:** Version bump only for package @anchan828/nest-sendgrid-terminus 13 | 14 | ## 0.9.26 (2025-12-07) 15 | 16 | **Note:** Version bump only for package @anchan828/nest-sendgrid-terminus 17 | 18 | ## 0.9.25 (2025-11-30) 19 | 20 | **Note:** Version bump only for package @anchan828/nest-sendgrid-terminus 21 | 22 | ## 0.9.24 (2025-11-23) 23 | 24 | **Note:** Version bump only for package @anchan828/nest-sendgrid-terminus 25 | 26 | ## 0.9.23 (2025-11-16) 27 | 28 | **Note:** Version bump only for package @anchan828/nest-sendgrid-terminus 29 | 30 | ## 0.9.22 (2025-11-09) 31 | 32 | **Note:** Version bump only for package @anchan828/nest-sendgrid-terminus 33 | 34 | ## 0.9.21 (2025-11-02) 35 | 36 | **Note:** Version bump only for package @anchan828/nest-sendgrid-terminus 37 | 38 | ## 0.9.20 (2025-10-26) 39 | 40 | **Note:** Version bump only for package @anchan828/nest-sendgrid-terminus 41 | 42 | ## 0.9.19 (2025-10-19) 43 | 44 | **Note:** Version bump only for package @anchan828/nest-sendgrid-terminus 45 | 46 | ## 0.9.18 (2025-10-12) 47 | 48 | **Note:** Version bump only for package @anchan828/nest-sendgrid-terminus 49 | 50 | ## 0.9.17 (2025-10-05) 51 | 52 | **Note:** Version bump only for package @anchan828/nest-sendgrid-terminus 53 | 54 | ## 0.9.16 (2025-09-28) 55 | 56 | **Note:** Version bump only for package @anchan828/nest-sendgrid-terminus 57 | 58 | ## 0.9.15 (2025-09-21) 59 | 60 | **Note:** Version bump only for package @anchan828/nest-sendgrid-terminus 61 | 62 | ## 0.9.14 (2025-09-14) 63 | 64 | **Note:** Version bump only for package @anchan828/nest-sendgrid-terminus 65 | 66 | ## 0.9.13 (2025-09-07) 67 | 68 | **Note:** Version bump only for package @anchan828/nest-sendgrid-terminus 69 | 70 | ## 0.9.12 (2025-08-31) 71 | 72 | **Note:** Version bump only for package @anchan828/nest-sendgrid-terminus 73 | 74 | ## 0.9.11 (2025-08-24) 75 | 76 | **Note:** Version bump only for package @anchan828/nest-sendgrid-terminus 77 | 78 | ## 0.9.10 (2025-08-17) 79 | 80 | **Note:** Version bump only for package @anchan828/nest-sendgrid-terminus 81 | 82 | ## 0.9.9 (2025-08-10) 83 | 84 | **Note:** Version bump only for package @anchan828/nest-sendgrid-terminus 85 | 86 | ## 0.9.8 (2025-08-03) 87 | 88 | **Note:** Version bump only for package @anchan828/nest-sendgrid-terminus 89 | 90 | ## 0.9.7 (2025-07-27) 91 | 92 | **Note:** Version bump only for package @anchan828/nest-sendgrid-terminus 93 | 94 | ## 0.9.6 (2025-07-20) 95 | 96 | **Note:** Version bump only for package @anchan828/nest-sendgrid-terminus 97 | 98 | ## 0.9.5 (2025-07-13) 99 | 100 | **Note:** Version bump only for package @anchan828/nest-sendgrid-terminus 101 | 102 | ## 0.9.4 (2025-07-06) 103 | 104 | **Note:** Version bump only for package @anchan828/nest-sendgrid-terminus 105 | 106 | ## 0.9.3 (2025-06-29) 107 | 108 | **Note:** Version bump only for package @anchan828/nest-sendgrid-terminus 109 | 110 | ## 0.9.2 (2025-06-22) 111 | 112 | **Note:** Version bump only for package @anchan828/nest-sendgrid-terminus 113 | 114 | ## 0.9.1 (2025-06-15) 115 | 116 | **Note:** Version bump only for package @anchan828/nest-sendgrid-terminus 117 | 118 | # 0.9.0 (2025-06-06) 119 | 120 | **Note:** Version bump only for package @anchan828/nest-sendgrid-terminus 121 | 122 | ## 0.8.17 (2025-06-01) 123 | 124 | **Note:** Version bump only for package @anchan828/nest-sendgrid-terminus 125 | 126 | ## 0.8.16 (2025-05-25) 127 | 128 | **Note:** Version bump only for package @anchan828/nest-sendgrid-terminus 129 | 130 | ## 0.8.15 (2025-05-18) 131 | 132 | **Note:** Version bump only for package @anchan828/nest-sendgrid-terminus 133 | 134 | ## 0.8.14 (2025-05-11) 135 | 136 | **Note:** Version bump only for package @anchan828/nest-sendgrid-terminus 137 | 138 | ## 0.8.13 (2025-05-04) 139 | 140 | **Note:** Version bump only for package @anchan828/nest-sendgrid-terminus 141 | 142 | ## 0.8.12 (2025-04-27) 143 | 144 | **Note:** Version bump only for package @anchan828/nest-sendgrid-terminus 145 | 146 | ## 0.8.11 (2025-04-20) 147 | 148 | **Note:** Version bump only for package @anchan828/nest-sendgrid-terminus 149 | 150 | ## 0.8.10 (2025-04-13) 151 | 152 | **Note:** Version bump only for package @anchan828/nest-sendgrid-terminus 153 | 154 | ## 0.8.9 (2025-04-06) 155 | 156 | **Note:** Version bump only for package @anchan828/nest-sendgrid-terminus 157 | 158 | ## 0.8.8 (2025-03-30) 159 | 160 | **Note:** Version bump only for package @anchan828/nest-sendgrid-terminus 161 | 162 | ## 0.8.7 (2025-03-16) 163 | 164 | **Note:** Version bump only for package @anchan828/nest-sendgrid-terminus 165 | 166 | ## 0.8.6 (2025-03-09) 167 | 168 | **Note:** Version bump only for package @anchan828/nest-sendgrid-terminus 169 | 170 | ## 0.8.5 (2025-03-02) 171 | 172 | **Note:** Version bump only for package @anchan828/nest-sendgrid-terminus 173 | 174 | ## 0.8.4 (2025-02-23) 175 | 176 | **Note:** Version bump only for package @anchan828/nest-sendgrid-terminus 177 | 178 | ## 0.8.3 (2025-02-16) 179 | 180 | **Note:** Version bump only for package @anchan828/nest-sendgrid-terminus 181 | 182 | ## 0.8.2 (2025-02-09) 183 | 184 | **Note:** Version bump only for package @anchan828/nest-sendgrid-terminus 185 | 186 | ## 0.8.1 (2025-02-02) 187 | 188 | **Note:** Version bump only for package @anchan828/nest-sendgrid-terminus 189 | 190 | # 0.8.0 (2025-01-28) 191 | 192 | **Note:** Version bump only for package @anchan828/nest-sendgrid-terminus 193 | 194 | # 0.7.0 (2025-01-28) 195 | 196 | **Note:** Version bump only for package @anchan828/nest-sendgrid-terminus 197 | 198 | ## 0.6.127 (2025-01-26) 199 | 200 | **Note:** Version bump only for package @anchan828/nest-sendgrid-terminus 201 | 202 | ## 0.6.126 (2025-01-19) 203 | 204 | **Note:** Version bump only for package @anchan828/nest-sendgrid-terminus 205 | 206 | ## 0.6.125 (2025-01-12) 207 | 208 | **Note:** Version bump only for package @anchan828/nest-sendgrid-terminus 209 | 210 | ## 0.6.124 (2025-01-05) 211 | 212 | **Note:** Version bump only for package @anchan828/nest-sendgrid-terminus 213 | 214 | ## 0.6.123 (2024-12-29) 215 | 216 | **Note:** Version bump only for package @anchan828/nest-sendgrid-terminus 217 | 218 | ## 0.6.122 (2024-12-22) 219 | 220 | **Note:** Version bump only for package @anchan828/nest-sendgrid-terminus 221 | 222 | ## 0.6.121 (2024-12-15) 223 | 224 | **Note:** Version bump only for package @anchan828/nest-sendgrid-terminus 225 | 226 | ## 0.6.120 (2024-12-08) 227 | 228 | **Note:** Version bump only for package @anchan828/nest-sendgrid-terminus 229 | 230 | ## 0.6.119 (2024-12-01) 231 | 232 | **Note:** Version bump only for package @anchan828/nest-sendgrid-terminus 233 | 234 | ## 0.6.118 (2024-11-24) 235 | 236 | **Note:** Version bump only for package @anchan828/nest-sendgrid-terminus 237 | 238 | ## 0.6.117 (2024-11-17) 239 | 240 | **Note:** Version bump only for package @anchan828/nest-sendgrid-terminus 241 | 242 | ## 0.6.116 (2024-11-10) 243 | 244 | **Note:** Version bump only for package @anchan828/nest-sendgrid-terminus 245 | 246 | ## 0.6.115 (2024-11-03) 247 | 248 | **Note:** Version bump only for package @anchan828/nest-sendgrid-terminus 249 | 250 | ## 0.6.114 (2024-10-27) 251 | 252 | **Note:** Version bump only for package @anchan828/nest-sendgrid-terminus 253 | 254 | ## 0.6.113 (2024-10-20) 255 | 256 | **Note:** Version bump only for package @anchan828/nest-sendgrid-terminus 257 | 258 | ## 0.6.112 (2024-10-13) 259 | 260 | **Note:** Version bump only for package @anchan828/nest-sendgrid-terminus 261 | 262 | ## 0.6.111 (2024-10-06) 263 | 264 | **Note:** Version bump only for package @anchan828/nest-sendgrid-terminus 265 | 266 | ## 0.6.110 (2024-09-29) 267 | 268 | **Note:** Version bump only for package @anchan828/nest-sendgrid-terminus 269 | 270 | ## 0.6.109 (2024-09-22) 271 | 272 | **Note:** Version bump only for package @anchan828/nest-sendgrid-terminus 273 | 274 | ## 0.6.108 (2024-09-15) 275 | 276 | **Note:** Version bump only for package @anchan828/nest-sendgrid-terminus 277 | 278 | ## 0.6.107 (2024-09-08) 279 | 280 | **Note:** Version bump only for package @anchan828/nest-sendgrid-terminus 281 | 282 | ## 0.6.106 (2024-09-01) 283 | 284 | **Note:** Version bump only for package @anchan828/nest-sendgrid-terminus 285 | 286 | ## 0.6.105 (2024-08-25) 287 | 288 | **Note:** Version bump only for package @anchan828/nest-sendgrid-terminus 289 | 290 | ## 0.6.104 (2024-08-18) 291 | 292 | **Note:** Version bump only for package @anchan828/nest-sendgrid-terminus 293 | 294 | ## 0.6.103 (2024-08-11) 295 | 296 | **Note:** Version bump only for package @anchan828/nest-sendgrid-terminus 297 | 298 | ## 0.6.102 (2024-08-11) 299 | 300 | **Note:** Version bump only for package @anchan828/nest-sendgrid-terminus 301 | 302 | ## 0.6.101 (2024-08-04) 303 | 304 | **Note:** Version bump only for package @anchan828/nest-sendgrid-terminus 305 | 306 | ## 0.6.100 (2024-07-28) 307 | 308 | **Note:** Version bump only for package @anchan828/nest-sendgrid-terminus 309 | 310 | ## 0.6.99 (2024-07-21) 311 | 312 | **Note:** Version bump only for package @anchan828/nest-sendgrid-terminus 313 | 314 | ## 0.6.98 (2024-07-14) 315 | 316 | **Note:** Version bump only for package @anchan828/nest-sendgrid-terminus 317 | 318 | ## 0.6.97 (2024-07-07) 319 | 320 | **Note:** Version bump only for package @anchan828/nest-sendgrid-terminus 321 | 322 | ## 0.6.96 (2024-06-30) 323 | 324 | **Note:** Version bump only for package @anchan828/nest-sendgrid-terminus 325 | 326 | ## 0.6.95 (2024-06-23) 327 | 328 | **Note:** Version bump only for package @anchan828/nest-sendgrid-terminus 329 | 330 | ## 0.6.94 (2024-06-16) 331 | 332 | **Note:** Version bump only for package @anchan828/nest-sendgrid-terminus 333 | 334 | ## 0.6.93 (2024-06-09) 335 | 336 | **Note:** Version bump only for package @anchan828/nest-sendgrid-terminus 337 | 338 | ## 0.6.92 (2024-06-02) 339 | 340 | **Note:** Version bump only for package @anchan828/nest-sendgrid-terminus 341 | 342 | ## 0.6.91 (2024-05-26) 343 | 344 | **Note:** Version bump only for package @anchan828/nest-sendgrid-terminus 345 | 346 | ## 0.6.90 (2024-05-19) 347 | 348 | **Note:** Version bump only for package @anchan828/nest-sendgrid-terminus 349 | 350 | ## 0.6.89 (2024-05-12) 351 | 352 | **Note:** Version bump only for package @anchan828/nest-sendgrid-terminus 353 | 354 | ## 0.6.88 (2024-05-05) 355 | 356 | **Note:** Version bump only for package @anchan828/nest-sendgrid-terminus 357 | 358 | ## 0.6.87 (2024-04-28) 359 | 360 | **Note:** Version bump only for package @anchan828/nest-sendgrid-terminus 361 | 362 | ## 0.6.86 (2024-04-21) 363 | 364 | **Note:** Version bump only for package @anchan828/nest-sendgrid-terminus 365 | 366 | ## 0.6.85 (2024-04-14) 367 | 368 | **Note:** Version bump only for package @anchan828/nest-sendgrid-terminus 369 | 370 | ## 0.6.84 (2024-04-07) 371 | 372 | **Note:** Version bump only for package @anchan828/nest-sendgrid-terminus 373 | 374 | ## 0.6.83 (2024-03-31) 375 | 376 | **Note:** Version bump only for package @anchan828/nest-sendgrid-terminus 377 | 378 | ## 0.6.82 (2024-03-24) 379 | 380 | **Note:** Version bump only for package @anchan828/nest-sendgrid-terminus 381 | 382 | ## 0.6.81 (2024-03-17) 383 | 384 | **Note:** Version bump only for package @anchan828/nest-sendgrid-terminus 385 | 386 | ## 0.6.80 (2024-03-10) 387 | 388 | **Note:** Version bump only for package @anchan828/nest-sendgrid-terminus 389 | 390 | ## 0.6.79 (2024-03-03) 391 | 392 | **Note:** Version bump only for package @anchan828/nest-sendgrid-terminus 393 | 394 | ## 0.6.78 (2024-02-25) 395 | 396 | **Note:** Version bump only for package @anchan828/nest-sendgrid-terminus 397 | 398 | ## 0.6.77 (2024-02-18) 399 | 400 | **Note:** Version bump only for package @anchan828/nest-sendgrid-terminus 401 | 402 | ## 0.6.76 (2024-02-11) 403 | 404 | **Note:** Version bump only for package @anchan828/nest-sendgrid-terminus 405 | 406 | ## 0.6.75 (2024-02-04) 407 | 408 | **Note:** Version bump only for package @anchan828/nest-sendgrid-terminus 409 | 410 | ## 0.6.74 (2024-01-28) 411 | 412 | **Note:** Version bump only for package @anchan828/nest-sendgrid-terminus 413 | 414 | ## 0.6.73 (2024-01-21) 415 | 416 | **Note:** Version bump only for package @anchan828/nest-sendgrid-terminus 417 | 418 | ## 0.6.72 (2024-01-14) 419 | 420 | **Note:** Version bump only for package @anchan828/nest-sendgrid-terminus 421 | 422 | ## 0.6.71 (2023-12-24) 423 | 424 | **Note:** Version bump only for package @anchan828/nest-sendgrid-terminus 425 | 426 | ## 0.6.70 (2023-12-17) 427 | 428 | **Note:** Version bump only for package @anchan828/nest-sendgrid-terminus 429 | 430 | ## 0.6.69 (2023-12-10) 431 | 432 | **Note:** Version bump only for package @anchan828/nest-sendgrid-terminus 433 | 434 | ## 0.6.68 (2023-12-03) 435 | 436 | **Note:** Version bump only for package @anchan828/nest-sendgrid-terminus 437 | 438 | ## 0.6.67 (2023-11-26) 439 | 440 | **Note:** Version bump only for package @anchan828/nest-sendgrid-terminus 441 | 442 | ## 0.6.66 (2023-11-19) 443 | 444 | **Note:** Version bump only for package @anchan828/nest-sendgrid-terminus 445 | 446 | ## 0.6.65 (2023-11-12) 447 | 448 | **Note:** Version bump only for package @anchan828/nest-sendgrid-terminus 449 | 450 | ## 0.6.64 (2023-11-05) 451 | 452 | **Note:** Version bump only for package @anchan828/nest-sendgrid-terminus 453 | 454 | ## 0.6.63 (2023-10-29) 455 | 456 | **Note:** Version bump only for package @anchan828/nest-sendgrid-terminus 457 | 458 | ## 0.6.62 (2023-10-22) 459 | 460 | **Note:** Version bump only for package @anchan828/nest-sendgrid-terminus 461 | 462 | ## 0.6.61 (2023-10-15) 463 | 464 | **Note:** Version bump only for package @anchan828/nest-sendgrid-terminus 465 | 466 | ## 0.6.60 (2023-10-08) 467 | 468 | **Note:** Version bump only for package @anchan828/nest-sendgrid-terminus 469 | 470 | ## 0.6.59 (2023-10-01) 471 | 472 | **Note:** Version bump only for package @anchan828/nest-sendgrid-terminus 473 | 474 | ## 0.6.58 (2023-09-24) 475 | 476 | **Note:** Version bump only for package @anchan828/nest-sendgrid-terminus 477 | 478 | ## 0.6.57 (2023-09-17) 479 | 480 | **Note:** Version bump only for package @anchan828/nest-sendgrid-terminus 481 | 482 | ## 0.6.56 (2023-09-10) 483 | 484 | **Note:** Version bump only for package @anchan828/nest-sendgrid-terminus 485 | 486 | ## 0.6.55 (2023-09-03) 487 | 488 | **Note:** Version bump only for package @anchan828/nest-sendgrid-terminus 489 | 490 | ## 0.6.54 (2023-08-27) 491 | 492 | **Note:** Version bump only for package @anchan828/nest-sendgrid-terminus 493 | 494 | ## 0.6.53 (2023-08-20) 495 | 496 | **Note:** Version bump only for package @anchan828/nest-sendgrid-terminus 497 | 498 | ## 0.6.52 (2023-08-13) 499 | 500 | **Note:** Version bump only for package @anchan828/nest-sendgrid-terminus 501 | 502 | ## 0.6.51 (2023-08-06) 503 | 504 | **Note:** Version bump only for package @anchan828/nest-sendgrid-terminus 505 | 506 | ## 0.6.50 (2023-07-30) 507 | 508 | **Note:** Version bump only for package @anchan828/nest-sendgrid-terminus 509 | 510 | ## 0.6.49 (2023-07-23) 511 | 512 | **Note:** Version bump only for package @anchan828/nest-sendgrid-terminus 513 | 514 | ## 0.6.48 (2023-07-16) 515 | 516 | **Note:** Version bump only for package @anchan828/nest-sendgrid-terminus 517 | 518 | ## 0.6.47 (2023-07-09) 519 | 520 | **Note:** Version bump only for package @anchan828/nest-sendgrid-terminus 521 | 522 | ## 0.6.46 (2023-07-02) 523 | 524 | **Note:** Version bump only for package @anchan828/nest-sendgrid-terminus 525 | 526 | ## 0.6.45 (2023-06-25) 527 | 528 | **Note:** Version bump only for package @anchan828/nest-sendgrid-terminus 529 | 530 | ## 0.6.44 (2023-06-11) 531 | 532 | **Note:** Version bump only for package @anchan828/nest-sendgrid-terminus 533 | 534 | ## 0.6.43 (2023-06-04) 535 | 536 | **Note:** Version bump only for package @anchan828/nest-sendgrid-terminus 537 | 538 | ## 0.6.42 (2023-05-28) 539 | 540 | **Note:** Version bump only for package @anchan828/nest-sendgrid-terminus 541 | 542 | ## 0.6.41 (2023-05-21) 543 | 544 | **Note:** Version bump only for package @anchan828/nest-sendgrid-terminus 545 | 546 | ## 0.6.40 (2023-04-16) 547 | 548 | **Note:** Version bump only for package @anchan828/nest-sendgrid-terminus 549 | 550 | ## 0.6.39 (2023-04-09) 551 | 552 | **Note:** Version bump only for package @anchan828/nest-sendgrid-terminus 553 | 554 | ## 0.6.38 (2023-04-02) 555 | 556 | **Note:** Version bump only for package @anchan828/nest-sendgrid-terminus 557 | 558 | ## 0.6.37 (2023-03-26) 559 | 560 | **Note:** Version bump only for package @anchan828/nest-sendgrid-terminus 561 | 562 | ## 0.6.36 (2023-03-19) 563 | 564 | ### Bug Fixes 565 | 566 | * **deps:** update dependency deepmerge to ^4.3.1 ([476ad63](https://github.com/anchan828/nest-sendgrid/commit/476ad63133f6ff73ef3312076368d1d45b36db15)) 567 | 568 | ## 0.6.35 (2023-03-12) 569 | 570 | **Note:** Version bump only for package @anchan828/nest-sendgrid-terminus 571 | 572 | ## 0.6.34 (2023-03-05) 573 | 574 | **Note:** Version bump only for package @anchan828/nest-sendgrid-terminus 575 | 576 | ## 0.6.33 (2023-02-26) 577 | 578 | **Note:** Version bump only for package @anchan828/nest-sendgrid-terminus 579 | 580 | ## 0.6.32 (2023-02-19) 581 | 582 | **Note:** Version bump only for package @anchan828/nest-sendgrid-terminus 583 | 584 | ## 0.6.31 (2023-02-12) 585 | 586 | **Note:** Version bump only for package @anchan828/nest-sendgrid-terminus 587 | 588 | ## 0.6.30 (2023-02-05) 589 | 590 | **Note:** Version bump only for package @anchan828/nest-sendgrid-terminus 591 | 592 | ## 0.6.29 (2023-01-29) 593 | 594 | **Note:** Version bump only for package @anchan828/nest-sendgrid-terminus 595 | 596 | ## 0.6.28 (2023-01-22) 597 | 598 | **Note:** Version bump only for package @anchan828/nest-sendgrid-terminus 599 | 600 | ## 0.6.27 (2023-01-15) 601 | 602 | **Note:** Version bump only for package @anchan828/nest-sendgrid-terminus 603 | 604 | ## 0.6.26 (2023-01-08) 605 | 606 | **Note:** Version bump only for package @anchan828/nest-sendgrid-terminus 607 | 608 | ## 0.6.25 (2023-01-01) 609 | 610 | **Note:** Version bump only for package @anchan828/nest-sendgrid-terminus 611 | 612 | ## 0.6.24 (2022-12-25) 613 | 614 | **Note:** Version bump only for package @anchan828/nest-sendgrid-terminus 615 | 616 | ## 0.6.23 (2022-12-18) 617 | 618 | **Note:** Version bump only for package @anchan828/nest-sendgrid-terminus 619 | 620 | ## 0.6.22 (2022-12-11) 621 | 622 | **Note:** Version bump only for package @anchan828/nest-sendgrid-terminus 623 | 624 | ## 0.6.21 (2022-12-04) 625 | 626 | **Note:** Version bump only for package @anchan828/nest-sendgrid-terminus 627 | 628 | ## 0.6.20 (2022-11-27) 629 | 630 | **Note:** Version bump only for package @anchan828/nest-sendgrid-terminus 631 | 632 | ## 0.6.19 (2022-11-20) 633 | 634 | **Note:** Version bump only for package @anchan828/nest-sendgrid-terminus 635 | 636 | ## 0.6.18 (2022-11-13) 637 | 638 | **Note:** Version bump only for package @anchan828/nest-sendgrid-terminus 639 | 640 | ## 0.6.17 (2022-11-06) 641 | 642 | **Note:** Version bump only for package @anchan828/nest-sendgrid-terminus 643 | 644 | ## 0.6.16 (2022-10-30) 645 | 646 | **Note:** Version bump only for package @anchan828/nest-sendgrid-terminus 647 | 648 | ## 0.6.15 (2022-10-23) 649 | 650 | **Note:** Version bump only for package @anchan828/nest-sendgrid-terminus 651 | 652 | ## 0.6.14 (2022-10-16) 653 | 654 | **Note:** Version bump only for package @anchan828/nest-sendgrid-terminus 655 | 656 | ## 0.6.13 (2022-10-09) 657 | 658 | **Note:** Version bump only for package @anchan828/nest-sendgrid-terminus 659 | 660 | ## 0.6.12 (2022-10-02) 661 | 662 | **Note:** Version bump only for package @anchan828/nest-sendgrid-terminus 663 | 664 | ## 0.6.11 (2022-09-25) 665 | 666 | **Note:** Version bump only for package @anchan828/nest-sendgrid-terminus 667 | 668 | ## 0.6.10 (2022-09-18) 669 | 670 | **Note:** Version bump only for package @anchan828/nest-sendgrid-terminus 671 | 672 | ## 0.6.9 (2022-09-11) 673 | 674 | **Note:** Version bump only for package @anchan828/nest-sendgrid-terminus 675 | 676 | ## 0.6.8 (2022-09-04) 677 | 678 | **Note:** Version bump only for package @anchan828/nest-sendgrid-terminus 679 | 680 | ## 0.6.7 (2022-08-28) 681 | 682 | **Note:** Version bump only for package @anchan828/nest-sendgrid-terminus 683 | 684 | ## 0.6.6 (2022-08-21) 685 | 686 | **Note:** Version bump only for package @anchan828/nest-sendgrid-terminus 687 | 688 | ## 0.6.5 (2022-08-14) 689 | 690 | **Note:** Version bump only for package @anchan828/nest-sendgrid-terminus 691 | 692 | ## 0.6.4 (2022-08-07) 693 | 694 | **Note:** Version bump only for package @anchan828/nest-sendgrid-terminus 695 | 696 | ## 0.6.3 (2022-07-31) 697 | 698 | **Note:** Version bump only for package @anchan828/nest-sendgrid-terminus 699 | 700 | ## 0.6.2 (2022-07-24) 701 | 702 | **Note:** Version bump only for package @anchan828/nest-sendgrid-terminus 703 | 704 | ## 0.6.1 (2022-07-17) 705 | 706 | **Note:** Version bump only for package @anchan828/nest-sendgrid-terminus 707 | 708 | # 0.6.0 (2022-07-08) 709 | 710 | **Note:** Version bump only for package @anchan828/nest-sendgrid-terminus 711 | 712 | ## 0.5.50 (2022-07-03) 713 | 714 | **Note:** Version bump only for package @anchan828/nest-sendgrid-terminus 715 | 716 | ## 0.5.49 (2022-06-26) 717 | 718 | **Note:** Version bump only for package @anchan828/nest-sendgrid-terminus 719 | 720 | ## 0.5.48 (2022-06-19) 721 | 722 | **Note:** Version bump only for package @anchan828/nest-sendgrid-terminus 723 | 724 | ## 0.5.47 (2022-06-12) 725 | 726 | **Note:** Version bump only for package @anchan828/nest-sendgrid-terminus 727 | 728 | ## 0.5.46 (2022-06-05) 729 | 730 | **Note:** Version bump only for package @anchan828/nest-sendgrid-terminus 731 | 732 | ## 0.5.45 (2022-05-29) 733 | 734 | **Note:** Version bump only for package @anchan828/nest-sendgrid-terminus 735 | 736 | ## 0.5.44 (2022-05-22) 737 | 738 | **Note:** Version bump only for package @anchan828/nest-sendgrid-terminus 739 | 740 | ## 0.5.43 (2022-05-15) 741 | 742 | **Note:** Version bump only for package @anchan828/nest-sendgrid-terminus 743 | 744 | ## 0.5.42 (2022-05-08) 745 | 746 | **Note:** Version bump only for package @anchan828/nest-sendgrid-terminus 747 | 748 | ## 0.5.41 (2022-05-01) 749 | 750 | **Note:** Version bump only for package @anchan828/nest-sendgrid-terminus 751 | 752 | ## 0.5.40 (2022-04-24) 753 | 754 | **Note:** Version bump only for package @anchan828/nest-sendgrid-terminus 755 | 756 | ## 0.5.39 (2022-04-17) 757 | 758 | **Note:** Version bump only for package @anchan828/nest-sendgrid-terminus 759 | 760 | ## 0.5.38 (2022-04-10) 761 | 762 | **Note:** Version bump only for package @anchan828/nest-sendgrid-terminus 763 | 764 | ## 0.5.37 (2022-04-03) 765 | 766 | **Note:** Version bump only for package @anchan828/nest-sendgrid-terminus 767 | 768 | ## 0.5.36 (2022-03-27) 769 | 770 | **Note:** Version bump only for package @anchan828/nest-sendgrid-terminus 771 | 772 | ## 0.5.35 (2022-03-20) 773 | 774 | **Note:** Version bump only for package @anchan828/nest-sendgrid-terminus 775 | 776 | ## 0.5.34 (2022-03-13) 777 | 778 | **Note:** Version bump only for package @anchan828/nest-sendgrid-terminus 779 | 780 | ## 0.5.33 (2022-03-06) 781 | 782 | **Note:** Version bump only for package @anchan828/nest-sendgrid-terminus 783 | 784 | ## 0.5.32 (2022-02-27) 785 | 786 | **Note:** Version bump only for package @anchan828/nest-sendgrid-terminus 787 | 788 | ## 0.5.31 (2022-02-20) 789 | 790 | **Note:** Version bump only for package @anchan828/nest-sendgrid-terminus 791 | 792 | ## 0.5.30 (2022-02-13) 793 | 794 | **Note:** Version bump only for package @anchan828/nest-sendgrid-terminus 795 | 796 | ## 0.5.29 (2022-02-06) 797 | 798 | **Note:** Version bump only for package @anchan828/nest-sendgrid-terminus 799 | 800 | ## 0.5.28 (2022-01-30) 801 | 802 | **Note:** Version bump only for package @anchan828/nest-sendgrid-terminus 803 | 804 | ## 0.5.27 (2021-12-26) 805 | 806 | **Note:** Version bump only for package @anchan828/nest-sendgrid-terminus 807 | 808 | ## 0.5.26 (2021-12-19) 809 | 810 | **Note:** Version bump only for package @anchan828/nest-sendgrid-terminus 811 | 812 | ## 0.5.25 (2021-12-12) 813 | 814 | **Note:** Version bump only for package @anchan828/nest-sendgrid-terminus 815 | 816 | ## 0.5.24 (2021-12-05) 817 | 818 | **Note:** Version bump only for package @anchan828/nest-sendgrid-terminus 819 | 820 | ## 0.5.23 (2021-11-28) 821 | 822 | **Note:** Version bump only for package @anchan828/nest-sendgrid-terminus 823 | 824 | ## 0.5.22 (2021-11-21) 825 | 826 | **Note:** Version bump only for package @anchan828/nest-sendgrid-terminus 827 | 828 | ## 0.5.21 (2021-11-14) 829 | 830 | **Note:** Version bump only for package @anchan828/nest-sendgrid-terminus 831 | 832 | ## 0.5.20 (2021-11-07) 833 | 834 | **Note:** Version bump only for package @anchan828/nest-sendgrid-terminus 835 | 836 | ## 0.5.19 (2021-10-31) 837 | 838 | **Note:** Version bump only for package @anchan828/nest-sendgrid-terminus 839 | 840 | ## 0.5.18 (2021-10-24) 841 | 842 | **Note:** Version bump only for package @anchan828/nest-sendgrid-terminus 843 | 844 | ## 0.5.17 (2021-10-17) 845 | 846 | **Note:** Version bump only for package @anchan828/nest-sendgrid-terminus 847 | 848 | ## 0.5.16 (2021-10-10) 849 | 850 | **Note:** Version bump only for package @anchan828/nest-sendgrid-terminus 851 | 852 | ## 0.5.15 (2021-10-03) 853 | 854 | **Note:** Version bump only for package @anchan828/nest-sendgrid-terminus 855 | 856 | ## 0.5.14 (2021-09-26) 857 | 858 | **Note:** Version bump only for package @anchan828/nest-sendgrid-terminus 859 | 860 | ## 0.5.13 (2021-09-19) 861 | 862 | **Note:** Version bump only for package @anchan828/nest-sendgrid-terminus 863 | 864 | ## 0.5.12 (2021-09-12) 865 | 866 | **Note:** Version bump only for package @anchan828/nest-sendgrid-terminus 867 | 868 | ## 0.5.11 (2021-09-05) 869 | 870 | **Note:** Version bump only for package @anchan828/nest-sendgrid-terminus 871 | 872 | ## 0.5.10 (2021-08-29) 873 | 874 | **Note:** Version bump only for package @anchan828/nest-sendgrid-terminus 875 | 876 | ## 0.5.9 (2021-08-22) 877 | 878 | **Note:** Version bump only for package @anchan828/nest-sendgrid-terminus 879 | 880 | ## 0.5.8 (2021-08-15) 881 | 882 | **Note:** Version bump only for package @anchan828/nest-sendgrid-terminus 883 | 884 | ## 0.5.7 (2021-08-08) 885 | 886 | **Note:** Version bump only for package @anchan828/nest-sendgrid-terminus 887 | 888 | ## 0.5.6 (2021-08-01) 889 | 890 | **Note:** Version bump only for package @anchan828/nest-sendgrid-terminus 891 | 892 | ## 0.5.5 (2021-07-25) 893 | 894 | **Note:** Version bump only for package @anchan828/nest-sendgrid-terminus 895 | 896 | ## 0.5.4 (2021-07-23) 897 | 898 | **Note:** Version bump only for package @anchan828/nest-sendgrid-terminus 899 | 900 | ## 0.5.3 (2021-07-23) 901 | 902 | **Note:** Version bump only for package @anchan828/nest-sendgrid-terminus 903 | 904 | ## 0.5.2 (2021-07-18) 905 | 906 | **Note:** Version bump only for package @anchan828/nest-sendgrid-terminus 907 | 908 | ## 0.5.1 (2021-07-18) 909 | 910 | **Note:** Version bump only for package @anchan828/nest-sendgrid-terminus 911 | 912 | # [0.5.0](https://github.com/anchan828/nest-sendgrid/compare/v0.4.27...v0.5.0) (2021-07-14) 913 | 914 | ### Bug Fixes 915 | 916 | * toPromise in rxjs will be supported at the next time. ([c8a3d33](https://github.com/anchan828/nest-sendgrid/commit/c8a3d3370276984b3e1ba37208e536744218f7e0)) 917 | * update to nestjs v8 ([b0405db](https://github.com/anchan828/nest-sendgrid/commit/b0405dba9afc310c57e2466967a44a2db75d74b3)) 918 | 919 | ## 0.4.27 (2021-07-11) 920 | 921 | **Note:** Version bump only for package @anchan828/nest-sendgrid-terminus 922 | 923 | ## 0.4.26 (2021-06-27) 924 | 925 | **Note:** Version bump only for package @anchan828/nest-sendgrid-terminus 926 | 927 | ## 0.4.25 (2021-06-20) 928 | 929 | **Note:** Version bump only for package @anchan828/nest-sendgrid-terminus 930 | 931 | ## 0.4.24 (2021-06-13) 932 | 933 | **Note:** Version bump only for package @anchan828/nest-sendgrid-terminus 934 | 935 | ## 0.4.23 (2021-06-06) 936 | 937 | **Note:** Version bump only for package @anchan828/nest-sendgrid-terminus 938 | 939 | ## 0.4.22 (2021-05-30) 940 | 941 | **Note:** Version bump only for package @anchan828/nest-sendgrid-terminus 942 | 943 | ## 0.4.21 (2021-05-23) 944 | 945 | **Note:** Version bump only for package @anchan828/nest-sendgrid-terminus 946 | 947 | ## 0.4.20 (2021-05-16) 948 | 949 | **Note:** Version bump only for package @anchan828/nest-sendgrid-terminus 950 | 951 | ## 0.4.19 (2021-05-09) 952 | 953 | **Note:** Version bump only for package @anchan828/nest-sendgrid-terminus 954 | 955 | ## 0.4.18 (2021-05-02) 956 | 957 | **Note:** Version bump only for package @anchan828/nest-sendgrid-terminus 958 | 959 | ## 0.4.17 (2021-04-25) 960 | 961 | **Note:** Version bump only for package @anchan828/nest-sendgrid-terminus 962 | 963 | ## 0.4.16 (2021-04-18) 964 | 965 | **Note:** Version bump only for package @anchan828/nest-sendgrid-terminus 966 | 967 | ## 0.4.15 (2021-04-11) 968 | 969 | **Note:** Version bump only for package @anchan828/nest-sendgrid-terminus 970 | 971 | ## 0.4.14 (2021-04-04) 972 | 973 | **Note:** Version bump only for package @anchan828/nest-sendgrid-terminus 974 | 975 | ## 0.4.13 (2021-03-28) 976 | 977 | **Note:** Version bump only for package @anchan828/nest-sendgrid-terminus 978 | 979 | ## 0.4.12 (2021-03-21) 980 | 981 | **Note:** Version bump only for package @anchan828/nest-sendgrid-terminus 982 | 983 | ## 0.4.11 (2021-03-14) 984 | 985 | **Note:** Version bump only for package @anchan828/nest-sendgrid-terminus 986 | 987 | ## 0.4.10 (2021-03-07) 988 | 989 | **Note:** Version bump only for package @anchan828/nest-sendgrid-terminus 990 | 991 | ## 0.4.9 (2021-02-28) 992 | 993 | **Note:** Version bump only for package @anchan828/nest-sendgrid-terminus 994 | 995 | ## 0.4.8 (2021-02-21) 996 | 997 | **Note:** Version bump only for package @anchan828/nest-sendgrid-terminus 998 | 999 | ## 0.4.7 (2021-02-14) 1000 | 1001 | **Note:** Version bump only for package @anchan828/nest-sendgrid-terminus 1002 | 1003 | ## 0.4.6 (2021-02-07) 1004 | 1005 | **Note:** Version bump only for package @anchan828/nest-sendgrid-terminus 1006 | 1007 | ## 0.4.5 (2021-01-31) 1008 | 1009 | **Note:** Version bump only for package @anchan828/nest-sendgrid-terminus 1010 | 1011 | ## 0.4.4 (2021-01-24) 1012 | 1013 | **Note:** Version bump only for package @anchan828/nest-sendgrid-terminus 1014 | 1015 | ## 0.4.3 (2021-01-17) 1016 | 1017 | **Note:** Version bump only for package @anchan828/nest-sendgrid-terminus 1018 | 1019 | ## 0.4.2 (2021-01-10) 1020 | 1021 | **Note:** Version bump only for package @anchan828/nest-sendgrid-terminus 1022 | 1023 | ## 0.4.1 (2021-01-03) 1024 | 1025 | **Note:** Version bump only for package @anchan828/nest-sendgrid-terminus 1026 | 1027 | # [0.4.0](https://github.com/anchan828/nest-sendgrid/compare/v0.3.36...v0.4.0) (2020-12-25) 1028 | 1029 | ### Features 1030 | 1031 | * support @nestjs/terminus v7 ([09a48a5](https://github.com/anchan828/nest-sendgrid/commit/09a48a512faed75e8e61d482aafbfe549ea17223)) 1032 | 1033 | ## 0.3.36 (2020-12-20) 1034 | 1035 | **Note:** Version bump only for package @anchan828/nest-sendgrid-terminus 1036 | 1037 | ## 0.3.35 (2020-12-13) 1038 | 1039 | **Note:** Version bump only for package @anchan828/nest-sendgrid-terminus 1040 | 1041 | ## 0.3.34 (2020-12-06) 1042 | 1043 | **Note:** Version bump only for package @anchan828/nest-sendgrid-terminus 1044 | 1045 | ## 0.3.33 (2020-11-29) 1046 | 1047 | **Note:** Version bump only for package @anchan828/nest-sendgrid-terminus 1048 | 1049 | ## 0.3.32 (2020-11-22) 1050 | 1051 | **Note:** Version bump only for package @anchan828/nest-sendgrid-terminus 1052 | 1053 | ## 0.3.31 (2020-11-15) 1054 | 1055 | **Note:** Version bump only for package @anchan828/nest-sendgrid-terminus 1056 | 1057 | ## 0.3.30 (2020-11-08) 1058 | 1059 | **Note:** Version bump only for package @anchan828/nest-sendgrid-terminus 1060 | 1061 | ## 0.3.29 (2020-11-01) 1062 | 1063 | **Note:** Version bump only for package @anchan828/nest-sendgrid-terminus 1064 | 1065 | ## 0.3.28 (2020-10-25) 1066 | 1067 | **Note:** Version bump only for package @anchan828/nest-sendgrid-terminus 1068 | 1069 | ## 0.3.27 (2020-10-18) 1070 | 1071 | **Note:** Version bump only for package @anchan828/nest-sendgrid-terminus 1072 | 1073 | ## 0.3.26 (2020-10-11) 1074 | 1075 | **Note:** Version bump only for package @anchan828/nest-sendgrid-terminus 1076 | 1077 | ## 0.3.25 (2020-10-04) 1078 | 1079 | **Note:** Version bump only for package @anchan828/nest-sendgrid-terminus 1080 | 1081 | ## 0.3.24 (2020-09-27) 1082 | 1083 | **Note:** Version bump only for package @anchan828/nest-sendgrid-terminus 1084 | 1085 | ## 0.3.23 (2020-09-20) 1086 | 1087 | **Note:** Version bump only for package @anchan828/nest-sendgrid-terminus 1088 | 1089 | ## 0.3.22 (2020-09-13) 1090 | 1091 | **Note:** Version bump only for package @anchan828/nest-sendgrid-terminus 1092 | 1093 | ## 0.3.21 (2020-09-06) 1094 | 1095 | **Note:** Version bump only for package @anchan828/nest-sendgrid-terminus 1096 | 1097 | ## 0.3.20 (2020-08-30) 1098 | 1099 | **Note:** Version bump only for package @anchan828/nest-sendgrid-terminus 1100 | 1101 | ## 0.3.19 (2020-08-23) 1102 | 1103 | **Note:** Version bump only for package @anchan828/nest-sendgrid-terminus 1104 | 1105 | ## 0.3.18 (2020-08-16) 1106 | 1107 | **Note:** Version bump only for package @anchan828/nest-sendgrid-terminus 1108 | 1109 | ## 0.3.17 (2020-08-09) 1110 | 1111 | **Note:** Version bump only for package @anchan828/nest-sendgrid-terminus 1112 | 1113 | ## 0.3.16 (2020-08-02) 1114 | 1115 | **Note:** Version bump only for package @anchan828/nest-sendgrid-terminus 1116 | 1117 | ## 0.3.15 (2020-07-26) 1118 | 1119 | **Note:** Version bump only for package @anchan828/nest-sendgrid-terminus 1120 | 1121 | ## 0.3.14 (2020-07-19) 1122 | 1123 | **Note:** Version bump only for package @anchan828/nest-sendgrid-terminus 1124 | 1125 | ## 0.3.13 (2020-07-12) 1126 | 1127 | **Note:** Version bump only for package @anchan828/nest-sendgrid-terminus 1128 | 1129 | ## 0.3.12 (2020-07-05) 1130 | 1131 | **Note:** Version bump only for package @anchan828/nest-sendgrid-terminus 1132 | 1133 | ## 0.3.11 (2020-06-28) 1134 | 1135 | ### Bug Fixes 1136 | 1137 | * **deps:** update dependency @sendgrid/mail to v7.2.1 ([2afd4ce](https://github.com/anchan828/nest-sendgrid/commit/2afd4ce1dd5014ba2f652bf834cb3283bfbe84fc)) 1138 | 1139 | ## 0.3.10 (2020-06-21) 1140 | 1141 | **Note:** Version bump only for package @anchan828/nest-sendgrid-terminus 1142 | 1143 | ## 0.3.9 (2020-06-14) 1144 | 1145 | **Note:** Version bump only for package @anchan828/nest-sendgrid-terminus 1146 | 1147 | ## 0.3.8 (2020-06-07) 1148 | 1149 | **Note:** Version bump only for package @anchan828/nest-sendgrid-terminus 1150 | 1151 | ## 0.3.7 (2020-05-31) 1152 | 1153 | **Note:** Version bump only for package @anchan828/nest-sendgrid-terminus 1154 | 1155 | ## 0.3.6 (2020-05-24) 1156 | 1157 | **Note:** Version bump only for package @anchan828/nest-sendgrid-terminus 1158 | 1159 | ## 0.3.5 (2020-05-17) 1160 | 1161 | **Note:** Version bump only for package @anchan828/nest-sendgrid-terminus 1162 | 1163 | ## 0.3.4 (2020-05-10) 1164 | 1165 | **Note:** Version bump only for package @anchan828/nest-sendgrid-terminus 1166 | 1167 | ## 0.3.3 (2020-05-03) 1168 | 1169 | **Note:** Version bump only for package @anchan828/nest-sendgrid-terminus 1170 | 1171 | ## 0.3.2 (2020-04-26) 1172 | 1173 | **Note:** Version bump only for package @anchan828/nest-sendgrid-terminus 1174 | 1175 | ## 0.3.1 (2020-04-19) 1176 | 1177 | **Note:** Version bump only for package @anchan828/nest-sendgrid-terminus 1178 | 1179 | # [0.3.0](https://github.com/anchan828/nest-sendgrid/compare/v0.2.3...v0.3.0) (2020-04-15) 1180 | 1181 | ### Features 1182 | 1183 | - update @nestjs/terminus to v7 ([83f04e0](https://github.com/anchan828/nest-sendgrid/commit/83f04e058627914e19de351cbf81284c4b0a234a)) 1184 | 1185 | ## 0.2.3 (2020-04-12) 1186 | 1187 | **Note:** Version bump only for package @anchan828/nest-sendgrid-terminus 1188 | 1189 | ## 0.2.2 (2020-04-05) 1190 | 1191 | **Note:** Version bump only for package @anchan828/nest-sendgrid-terminus 1192 | 1193 | ## 0.2.1 (2020-03-29) 1194 | 1195 | **Note:** Version bump only for package @anchan828/nest-sendgrid-terminus 1196 | 1197 | # [0.2.0](https://github.com/anchan828/nest-sendgrid/compare/v0.1.40...v0.2.0) (2020-03-25) 1198 | 1199 | ### Bug Fixes 1200 | 1201 | - lint ([4d0e070](https://github.com/anchan828/nest-sendgrid/commit/4d0e070c5f6fa350409d5379e43aa07cdd182128)) 1202 | 1203 | ## 0.1.40 (2020-03-22) 1204 | 1205 | **Note:** Version bump only for package @anchan828/nest-sendgrid-terminus 1206 | 1207 | ## 0.1.39 (2020-03-15) 1208 | 1209 | **Note:** Version bump only for package @anchan828/nest-sendgrid-terminus 1210 | 1211 | ## 0.1.38 (2020-03-08) 1212 | 1213 | **Note:** Version bump only for package @anchan828/nest-sendgrid-terminus 1214 | 1215 | ## 0.1.37 (2020-03-01) 1216 | 1217 | **Note:** Version bump only for package @anchan828/nest-sendgrid-terminus 1218 | 1219 | ## 0.1.36 (2020-02-23) 1220 | 1221 | **Note:** Version bump only for package @anchan828/nest-sendgrid-terminus 1222 | 1223 | ## 0.1.35 (2020-02-16) 1224 | 1225 | **Note:** Version bump only for package @anchan828/nest-sendgrid-terminus 1226 | 1227 | ## 0.1.34 (2020-02-09) 1228 | 1229 | **Note:** Version bump only for package @anchan828/nest-sendgrid-terminus 1230 | 1231 | ## 0.1.33 (2020-02-02) 1232 | 1233 | **Note:** Version bump only for package @anchan828/nest-sendgrid-terminus 1234 | 1235 | ## 0.1.32 (2020-01-26) 1236 | 1237 | **Note:** Version bump only for package @anchan828/nest-sendgrid-terminus 1238 | 1239 | ## 0.1.31 (2020-01-19) 1240 | 1241 | **Note:** Version bump only for package @anchan828/nest-sendgrid-terminus 1242 | 1243 | ## 0.1.30 (2020-01-12) 1244 | 1245 | **Note:** Version bump only for package @anchan828/nest-sendgrid-terminus 1246 | 1247 | ## 0.1.29 (2020-01-05) 1248 | 1249 | **Note:** Version bump only for package @anchan828/nest-sendgrid-terminus 1250 | 1251 | ## 0.1.28 (2019-12-29) 1252 | 1253 | **Note:** Version bump only for package @anchan828/nest-sendgrid-terminus 1254 | 1255 | ## 0.1.27 (2019-12-22) 1256 | 1257 | **Note:** Version bump only for package @anchan828/nest-sendgrid-terminus 1258 | 1259 | ## 0.1.26 (2019-12-15) 1260 | 1261 | **Note:** Version bump only for package @anchan828/nest-sendgrid-terminus 1262 | 1263 | ## 0.1.25 (2019-12-08) 1264 | 1265 | **Note:** Version bump only for package @anchan828/nest-sendgrid-terminus 1266 | 1267 | ## [0.1.24](https://github.com/anchan828/nest-sendgrid/compare/v0.1.23...v0.1.24) (2019-12-01) 1268 | 1269 | **Note:** Version bump only for package @anchan828/nest-sendgrid-terminus 1270 | 1271 | ## [0.1.23](https://github.com/anchan828/nest-sendgrid/compare/v0.1.22...v0.1.23) (2019-11-17) 1272 | 1273 | **Note:** Version bump only for package @anchan828/nest-sendgrid-terminus 1274 | 1275 | ## [0.1.22](https://github.com/anchan828/nest-sendgrid/compare/v0.1.21...v0.1.22) (2019-11-10) 1276 | 1277 | **Note:** Version bump only for package @anchan828/nest-sendgrid-terminus 1278 | 1279 | ## [0.1.21](https://github.com/anchan828/nest-sendgrid/compare/v0.1.20...v0.1.21) (2019-11-03) 1280 | 1281 | **Note:** Version bump only for package @anchan828/nest-sendgrid-terminus 1282 | 1283 | ## [0.1.20](https://github.com/anchan828/nest-sendgrid/compare/v0.1.19...v0.1.20) (2019-10-27) 1284 | 1285 | ### Bug Fixes 1286 | 1287 | - **deps:** update dependency deepmerge to v4.1.2 ([5cb8ac0](https://github.com/anchan828/nest-sendgrid/commit/5cb8ac0c7396b49af91d0efa30b5f2ccafa55e22)) 1288 | 1289 | ## [0.1.19](https://github.com/anchan828/nest-sendgrid/compare/v0.1.18...v0.1.19) (2019-10-20) 1290 | 1291 | **Note:** Version bump only for package @anchan828/nest-sendgrid-terminus 1292 | 1293 | ## [0.1.18](https://github.com/anchan828/nest-sendgrid/compare/v0.1.17...v0.1.18) (2019-10-13) 1294 | 1295 | ### Bug Fixes 1296 | 1297 | - **deps:** update dependency deepmerge to v4.1.0 ([ec6883b](https://github.com/anchan828/nest-sendgrid/commit/ec6883beb2b83f76644ea36ab78f5f0aa8156867)) 1298 | 1299 | ## [0.1.17](https://github.com/anchan828/nest-sendgrid/compare/v0.1.16...v0.1.17) (2019-10-06) 1300 | 1301 | **Note:** Version bump only for package @anchan828/nest-sendgrid-terminus 1302 | 1303 | ## [0.1.16](https://github.com/anchan828/nest-sendgrid/compare/v0.1.15...v0.1.16) (2019-09-29) 1304 | 1305 | **Note:** Version bump only for package @anchan828/nest-sendgrid-terminus 1306 | 1307 | ## [0.1.15](https://github.com/anchan828/nest-sendgrid/compare/v0.1.14...v0.1.15) (2019-09-22) 1308 | 1309 | **Note:** Version bump only for package @anchan828/nest-sendgrid-terminus 1310 | 1311 | ## [0.1.14](https://github.com/anchan828/nest-sendgrid/compare/v0.1.13...v0.1.14) (2019-09-15) 1312 | 1313 | ### Features 1314 | 1315 | - customize status key ([1ec5b85](https://github.com/anchan828/nest-sendgrid/commit/1ec5b85)) 1316 | 1317 | ## [0.1.13](https://github.com/anchan828/nest-sendgrid/compare/v0.1.12...v0.1.13) (2019-09-08) 1318 | 1319 | **Note:** Version bump only for package @anchan828/nest-sendgrid-terminus 1320 | 1321 | ## [0.1.12](https://github.com/anchan828/nest-sendgrid/compare/v0.1.11...v0.1.12) (2019-09-01) 1322 | 1323 | **Note:** Version bump only for package @anchan828/nest-sendgrid-terminus 1324 | 1325 | ## [0.1.11](https://github.com/anchan828/nest-sendgrid/compare/v0.1.10...v0.1.11) (2019-08-25) 1326 | 1327 | **Note:** Version bump only for package @anchan828/nest-sendgrid-terminus 1328 | 1329 | ## [0.1.10](https://github.com/anchan828/nest-sendgrid/compare/v0.1.9...v0.1.10) (2019-08-18) 1330 | 1331 | **Note:** Version bump only for package @anchan828/nest-sendgrid-terminus 1332 | -------------------------------------------------------------------------------- /CHANGELOG.md: -------------------------------------------------------------------------------- 1 | # Change Log 2 | 3 | All notable changes to this project will be documented in this file. 4 | See [Conventional Commits](https://conventionalcommits.org) for commit guidelines. 5 | 6 | ## 0.9.28 (2025-12-21) 7 | 8 | **Note:** Version bump only for package @anchan828/nest-sendgrid-packages 9 | 10 | ## 0.9.27 (2025-12-14) 11 | 12 | **Note:** Version bump only for package @anchan828/nest-sendgrid-packages 13 | 14 | ## 0.9.26 (2025-12-07) 15 | 16 | **Note:** Version bump only for package @anchan828/nest-sendgrid-packages 17 | 18 | ## 0.9.25 (2025-11-30) 19 | 20 | **Note:** Version bump only for package @anchan828/nest-sendgrid-packages 21 | 22 | ## 0.9.24 (2025-11-23) 23 | 24 | **Note:** Version bump only for package @anchan828/nest-sendgrid-packages 25 | 26 | ## 0.9.23 (2025-11-16) 27 | 28 | **Note:** Version bump only for package @anchan828/nest-sendgrid-packages 29 | 30 | ## 0.9.22 (2025-11-09) 31 | 32 | **Note:** Version bump only for package @anchan828/nest-sendgrid-packages 33 | 34 | ## 0.9.21 (2025-11-02) 35 | 36 | **Note:** Version bump only for package @anchan828/nest-sendgrid-packages 37 | 38 | ## 0.9.20 (2025-10-26) 39 | 40 | **Note:** Version bump only for package @anchan828/nest-sendgrid-packages 41 | 42 | ## 0.9.19 (2025-10-19) 43 | 44 | **Note:** Version bump only for package @anchan828/nest-sendgrid-packages 45 | 46 | ## 0.9.18 (2025-10-12) 47 | 48 | **Note:** Version bump only for package @anchan828/nest-sendgrid-packages 49 | 50 | ## 0.9.17 (2025-10-05) 51 | 52 | **Note:** Version bump only for package @anchan828/nest-sendgrid-packages 53 | 54 | ## 0.9.16 (2025-09-28) 55 | 56 | **Note:** Version bump only for package @anchan828/nest-sendgrid-packages 57 | 58 | ## 0.9.15 (2025-09-21) 59 | 60 | **Note:** Version bump only for package @anchan828/nest-sendgrid-packages 61 | 62 | ## 0.9.14 (2025-09-14) 63 | 64 | **Note:** Version bump only for package @anchan828/nest-sendgrid-packages 65 | 66 | ## 0.9.13 (2025-09-07) 67 | 68 | **Note:** Version bump only for package @anchan828/nest-sendgrid-packages 69 | 70 | ## 0.9.12 (2025-08-31) 71 | 72 | **Note:** Version bump only for package @anchan828/nest-sendgrid-packages 73 | 74 | ## 0.9.11 (2025-08-24) 75 | 76 | **Note:** Version bump only for package @anchan828/nest-sendgrid-packages 77 | 78 | ## 0.9.10 (2025-08-17) 79 | 80 | **Note:** Version bump only for package @anchan828/nest-sendgrid-packages 81 | 82 | ## 0.9.9 (2025-08-10) 83 | 84 | **Note:** Version bump only for package @anchan828/nest-sendgrid-packages 85 | 86 | ## 0.9.8 (2025-08-03) 87 | 88 | **Note:** Version bump only for package @anchan828/nest-sendgrid-packages 89 | 90 | ## 0.9.7 (2025-07-27) 91 | 92 | **Note:** Version bump only for package @anchan828/nest-sendgrid-packages 93 | 94 | ## 0.9.6 (2025-07-20) 95 | 96 | **Note:** Version bump only for package @anchan828/nest-sendgrid-packages 97 | 98 | ## 0.9.5 (2025-07-13) 99 | 100 | **Note:** Version bump only for package @anchan828/nest-sendgrid-packages 101 | 102 | ## 0.9.4 (2025-07-06) 103 | 104 | **Note:** Version bump only for package @anchan828/nest-sendgrid-packages 105 | 106 | ## 0.9.3 (2025-06-29) 107 | 108 | **Note:** Version bump only for package @anchan828/nest-sendgrid-packages 109 | 110 | ## 0.9.2 (2025-06-22) 111 | 112 | **Note:** Version bump only for package @anchan828/nest-sendgrid-packages 113 | 114 | ## 0.9.1 (2025-06-15) 115 | 116 | **Note:** Version bump only for package @anchan828/nest-sendgrid-packages 117 | 118 | # 0.9.0 (2025-06-06) 119 | 120 | **Note:** Version bump only for package @anchan828/nest-sendgrid-packages 121 | 122 | ## 0.8.17 (2025-06-01) 123 | 124 | **Note:** Version bump only for package @anchan828/nest-sendgrid-packages 125 | 126 | ## 0.8.16 (2025-05-25) 127 | 128 | **Note:** Version bump only for package @anchan828/nest-sendgrid-packages 129 | 130 | ## 0.8.15 (2025-05-18) 131 | 132 | **Note:** Version bump only for package @anchan828/nest-sendgrid-packages 133 | 134 | ## 0.8.14 (2025-05-11) 135 | 136 | **Note:** Version bump only for package @anchan828/nest-sendgrid-packages 137 | 138 | ## 0.8.13 (2025-05-04) 139 | 140 | **Note:** Version bump only for package @anchan828/nest-sendgrid-packages 141 | 142 | ## 0.8.12 (2025-04-27) 143 | 144 | **Note:** Version bump only for package @anchan828/nest-sendgrid-packages 145 | 146 | ## 0.8.11 (2025-04-20) 147 | 148 | **Note:** Version bump only for package @anchan828/nest-sendgrid-packages 149 | 150 | ## 0.8.10 (2025-04-13) 151 | 152 | **Note:** Version bump only for package @anchan828/nest-sendgrid-packages 153 | 154 | ## 0.8.9 (2025-04-06) 155 | 156 | **Note:** Version bump only for package @anchan828/nest-sendgrid-packages 157 | 158 | ## 0.8.8 (2025-03-30) 159 | 160 | **Note:** Version bump only for package @anchan828/nest-sendgrid-packages 161 | 162 | ## 0.8.7 (2025-03-16) 163 | 164 | **Note:** Version bump only for package @anchan828/nest-sendgrid-packages 165 | 166 | ## 0.8.6 (2025-03-09) 167 | 168 | **Note:** Version bump only for package @anchan828/nest-sendgrid-packages 169 | 170 | ## 0.8.5 (2025-03-02) 171 | 172 | **Note:** Version bump only for package @anchan828/nest-sendgrid-packages 173 | 174 | ## 0.8.4 (2025-02-23) 175 | 176 | **Note:** Version bump only for package @anchan828/nest-sendgrid-packages 177 | 178 | ## 0.8.3 (2025-02-16) 179 | 180 | **Note:** Version bump only for package @anchan828/nest-sendgrid-packages 181 | 182 | ## 0.8.2 (2025-02-09) 183 | 184 | **Note:** Version bump only for package @anchan828/nest-sendgrid-packages 185 | 186 | ## 0.8.1 (2025-02-02) 187 | 188 | **Note:** Version bump only for package @anchan828/nest-sendgrid-packages 189 | 190 | # 0.8.0 (2025-01-28) 191 | 192 | **Note:** Version bump only for package @anchan828/nest-sendgrid-packages 193 | 194 | # 0.7.0 (2025-01-28) 195 | 196 | **Note:** Version bump only for package @anchan828/nest-sendgrid-packages 197 | 198 | ## 0.6.127 (2025-01-26) 199 | 200 | **Note:** Version bump only for package @anchan828/nest-sendgrid-packages 201 | 202 | ## 0.6.126 (2025-01-19) 203 | 204 | **Note:** Version bump only for package @anchan828/nest-sendgrid-packages 205 | 206 | ## 0.6.125 (2025-01-12) 207 | 208 | **Note:** Version bump only for package @anchan828/nest-sendgrid-packages 209 | 210 | ## 0.6.124 (2025-01-05) 211 | 212 | **Note:** Version bump only for package @anchan828/nest-sendgrid-packages 213 | 214 | ## 0.6.123 (2024-12-29) 215 | 216 | **Note:** Version bump only for package @anchan828/nest-sendgrid-packages 217 | 218 | ## 0.6.122 (2024-12-22) 219 | 220 | **Note:** Version bump only for package @anchan828/nest-sendgrid-packages 221 | 222 | ## 0.6.121 (2024-12-15) 223 | 224 | **Note:** Version bump only for package @anchan828/nest-sendgrid-packages 225 | 226 | ## 0.6.120 (2024-12-08) 227 | 228 | **Note:** Version bump only for package @anchan828/nest-sendgrid-packages 229 | 230 | ## 0.6.119 (2024-12-01) 231 | 232 | **Note:** Version bump only for package @anchan828/nest-sendgrid-packages 233 | 234 | ## 0.6.118 (2024-11-24) 235 | 236 | **Note:** Version bump only for package @anchan828/nest-sendgrid-packages 237 | 238 | ## 0.6.117 (2024-11-17) 239 | 240 | **Note:** Version bump only for package @anchan828/nest-sendgrid-packages 241 | 242 | ## 0.6.116 (2024-11-10) 243 | 244 | **Note:** Version bump only for package @anchan828/nest-sendgrid-packages 245 | 246 | ## 0.6.115 (2024-11-03) 247 | 248 | **Note:** Version bump only for package @anchan828/nest-sendgrid-packages 249 | 250 | ## 0.6.114 (2024-10-27) 251 | 252 | **Note:** Version bump only for package @anchan828/nest-sendgrid-packages 253 | 254 | ## 0.6.113 (2024-10-20) 255 | 256 | **Note:** Version bump only for package @anchan828/nest-sendgrid-packages 257 | 258 | ## 0.6.112 (2024-10-13) 259 | 260 | **Note:** Version bump only for package @anchan828/nest-sendgrid-packages 261 | 262 | ## 0.6.111 (2024-10-06) 263 | 264 | **Note:** Version bump only for package @anchan828/nest-sendgrid-packages 265 | 266 | ## 0.6.110 (2024-09-29) 267 | 268 | **Note:** Version bump only for package @anchan828/nest-sendgrid-packages 269 | 270 | ## 0.6.109 (2024-09-22) 271 | 272 | **Note:** Version bump only for package @anchan828/nest-sendgrid-packages 273 | 274 | ## 0.6.108 (2024-09-15) 275 | 276 | **Note:** Version bump only for package @anchan828/nest-sendgrid-packages 277 | 278 | ## 0.6.107 (2024-09-08) 279 | 280 | **Note:** Version bump only for package @anchan828/nest-sendgrid-packages 281 | 282 | ## 0.6.106 (2024-09-01) 283 | 284 | **Note:** Version bump only for package @anchan828/nest-sendgrid-packages 285 | 286 | ## 0.6.105 (2024-08-25) 287 | 288 | **Note:** Version bump only for package @anchan828/nest-sendgrid-packages 289 | 290 | ## 0.6.104 (2024-08-18) 291 | 292 | **Note:** Version bump only for package @anchan828/nest-sendgrid-packages 293 | 294 | ## 0.6.103 (2024-08-11) 295 | 296 | **Note:** Version bump only for package @anchan828/nest-sendgrid-packages 297 | 298 | ## 0.6.102 (2024-08-11) 299 | 300 | **Note:** Version bump only for package @anchan828/nest-sendgrid-packages 301 | 302 | ## 0.6.101 (2024-08-04) 303 | 304 | **Note:** Version bump only for package @anchan828/nest-sendgrid-packages 305 | 306 | ## 0.6.100 (2024-07-28) 307 | 308 | **Note:** Version bump only for package @anchan828/nest-sendgrid-packages 309 | 310 | ## 0.6.99 (2024-07-21) 311 | 312 | **Note:** Version bump only for package @anchan828/nest-sendgrid-packages 313 | 314 | ## 0.6.98 (2024-07-14) 315 | 316 | **Note:** Version bump only for package @anchan828/nest-sendgrid-packages 317 | 318 | ## 0.6.97 (2024-07-07) 319 | 320 | **Note:** Version bump only for package @anchan828/nest-sendgrid-packages 321 | 322 | ## 0.6.96 (2024-06-30) 323 | 324 | **Note:** Version bump only for package @anchan828/nest-sendgrid-packages 325 | 326 | ## 0.6.95 (2024-06-23) 327 | 328 | **Note:** Version bump only for package @anchan828/nest-sendgrid-packages 329 | 330 | ## 0.6.94 (2024-06-16) 331 | 332 | **Note:** Version bump only for package @anchan828/nest-sendgrid-packages 333 | 334 | ## 0.6.93 (2024-06-09) 335 | 336 | **Note:** Version bump only for package @anchan828/nest-sendgrid-packages 337 | 338 | ## 0.6.92 (2024-06-02) 339 | 340 | **Note:** Version bump only for package @anchan828/nest-sendgrid-packages 341 | 342 | ## 0.6.91 (2024-05-26) 343 | 344 | **Note:** Version bump only for package @anchan828/nest-sendgrid-packages 345 | 346 | ## 0.6.90 (2024-05-19) 347 | 348 | **Note:** Version bump only for package @anchan828/nest-sendgrid-packages 349 | 350 | ## 0.6.89 (2024-05-12) 351 | 352 | **Note:** Version bump only for package @anchan828/nest-sendgrid-packages 353 | 354 | ## 0.6.88 (2024-05-05) 355 | 356 | **Note:** Version bump only for package @anchan828/nest-sendgrid-packages 357 | 358 | ## 0.6.87 (2024-04-28) 359 | 360 | **Note:** Version bump only for package @anchan828/nest-sendgrid-packages 361 | 362 | ## 0.6.86 (2024-04-21) 363 | 364 | **Note:** Version bump only for package @anchan828/nest-sendgrid-packages 365 | 366 | ## 0.6.85 (2024-04-14) 367 | 368 | **Note:** Version bump only for package @anchan828/nest-sendgrid-packages 369 | 370 | ## 0.6.84 (2024-04-07) 371 | 372 | **Note:** Version bump only for package @anchan828/nest-sendgrid-packages 373 | 374 | ## 0.6.83 (2024-03-31) 375 | 376 | **Note:** Version bump only for package @anchan828/nest-sendgrid-packages 377 | 378 | ## 0.6.82 (2024-03-24) 379 | 380 | **Note:** Version bump only for package @anchan828/nest-sendgrid-packages 381 | 382 | ## 0.6.81 (2024-03-17) 383 | 384 | **Note:** Version bump only for package @anchan828/nest-sendgrid-packages 385 | 386 | ## 0.6.80 (2024-03-10) 387 | 388 | **Note:** Version bump only for package @anchan828/nest-sendgrid-packages 389 | 390 | ## 0.6.79 (2024-03-03) 391 | 392 | **Note:** Version bump only for package @anchan828/nest-sendgrid-packages 393 | 394 | ## 0.6.78 (2024-02-25) 395 | 396 | **Note:** Version bump only for package @anchan828/nest-sendgrid-packages 397 | 398 | ## 0.6.77 (2024-02-18) 399 | 400 | **Note:** Version bump only for package @anchan828/nest-sendgrid-packages 401 | 402 | ## 0.6.76 (2024-02-11) 403 | 404 | **Note:** Version bump only for package @anchan828/nest-sendgrid-packages 405 | 406 | ## 0.6.75 (2024-02-04) 407 | 408 | **Note:** Version bump only for package @anchan828/nest-sendgrid-packages 409 | 410 | ## 0.6.74 (2024-01-28) 411 | 412 | **Note:** Version bump only for package @anchan828/nest-sendgrid-packages 413 | 414 | ## 0.6.73 (2024-01-21) 415 | 416 | **Note:** Version bump only for package @anchan828/nest-sendgrid-packages 417 | 418 | ## 0.6.72 (2024-01-14) 419 | 420 | **Note:** Version bump only for package @anchan828/nest-sendgrid-packages 421 | 422 | ## 0.6.71 (2023-12-24) 423 | 424 | **Note:** Version bump only for package @anchan828/nest-sendgrid-packages 425 | 426 | ## 0.6.70 (2023-12-17) 427 | 428 | **Note:** Version bump only for package @anchan828/nest-sendgrid-packages 429 | 430 | ## 0.6.69 (2023-12-10) 431 | 432 | **Note:** Version bump only for package @anchan828/nest-sendgrid-packages 433 | 434 | ## 0.6.68 (2023-12-03) 435 | 436 | **Note:** Version bump only for package @anchan828/nest-sendgrid-packages 437 | 438 | ## 0.6.67 (2023-11-26) 439 | 440 | **Note:** Version bump only for package @anchan828/nest-sendgrid-packages 441 | 442 | ## 0.6.66 (2023-11-19) 443 | 444 | **Note:** Version bump only for package @anchan828/nest-sendgrid-packages 445 | 446 | ## 0.6.65 (2023-11-12) 447 | 448 | **Note:** Version bump only for package @anchan828/nest-sendgrid-packages 449 | 450 | ## 0.6.64 (2023-11-05) 451 | 452 | **Note:** Version bump only for package @anchan828/nest-sendgrid-packages 453 | 454 | ## 0.6.63 (2023-10-29) 455 | 456 | **Note:** Version bump only for package @anchan828/nest-sendgrid-packages 457 | 458 | ## 0.6.62 (2023-10-22) 459 | 460 | **Note:** Version bump only for package @anchan828/nest-sendgrid-packages 461 | 462 | ## 0.6.61 (2023-10-15) 463 | 464 | **Note:** Version bump only for package @anchan828/nest-sendgrid-packages 465 | 466 | ## 0.6.60 (2023-10-08) 467 | 468 | **Note:** Version bump only for package @anchan828/nest-sendgrid-packages 469 | 470 | ## 0.6.59 (2023-10-01) 471 | 472 | **Note:** Version bump only for package @anchan828/nest-sendgrid-packages 473 | 474 | ## 0.6.58 (2023-09-24) 475 | 476 | **Note:** Version bump only for package @anchan828/nest-sendgrid-packages 477 | 478 | ## 0.6.57 (2023-09-17) 479 | 480 | **Note:** Version bump only for package @anchan828/nest-sendgrid-packages 481 | 482 | ## 0.6.56 (2023-09-10) 483 | 484 | **Note:** Version bump only for package @anchan828/nest-sendgrid-packages 485 | 486 | ## 0.6.55 (2023-09-03) 487 | 488 | **Note:** Version bump only for package @anchan828/nest-sendgrid-packages 489 | 490 | ## 0.6.54 (2023-08-27) 491 | 492 | **Note:** Version bump only for package @anchan828/nest-sendgrid-packages 493 | 494 | ## 0.6.53 (2023-08-20) 495 | 496 | **Note:** Version bump only for package @anchan828/nest-sendgrid-packages 497 | 498 | ## 0.6.52 (2023-08-13) 499 | 500 | **Note:** Version bump only for package @anchan828/nest-sendgrid-packages 501 | 502 | ## 0.6.51 (2023-08-06) 503 | 504 | **Note:** Version bump only for package @anchan828/nest-sendgrid-packages 505 | 506 | ## 0.6.50 (2023-07-30) 507 | 508 | **Note:** Version bump only for package @anchan828/nest-sendgrid-packages 509 | 510 | ## 0.6.49 (2023-07-23) 511 | 512 | **Note:** Version bump only for package @anchan828/nest-sendgrid-packages 513 | 514 | ## 0.6.48 (2023-07-16) 515 | 516 | **Note:** Version bump only for package @anchan828/nest-sendgrid-packages 517 | 518 | ## 0.6.47 (2023-07-09) 519 | 520 | **Note:** Version bump only for package @anchan828/nest-sendgrid-packages 521 | 522 | ## 0.6.46 (2023-07-02) 523 | 524 | **Note:** Version bump only for package @anchan828/nest-sendgrid-packages 525 | 526 | ## 0.6.45 (2023-06-25) 527 | 528 | **Note:** Version bump only for package @anchan828/nest-sendgrid-packages 529 | 530 | ## 0.6.44 (2023-06-11) 531 | 532 | **Note:** Version bump only for package @anchan828/nest-sendgrid-packages 533 | 534 | ## 0.6.43 (2023-06-04) 535 | 536 | **Note:** Version bump only for package @anchan828/nest-sendgrid-packages 537 | 538 | ## 0.6.42 (2023-05-28) 539 | 540 | **Note:** Version bump only for package @anchan828/nest-sendgrid-packages 541 | 542 | ## 0.6.41 (2023-05-21) 543 | 544 | **Note:** Version bump only for package @anchan828/nest-sendgrid-packages 545 | 546 | ## 0.6.40 (2023-04-16) 547 | 548 | **Note:** Version bump only for package @anchan828/nest-sendgrid-packages 549 | 550 | ## 0.6.39 (2023-04-09) 551 | 552 | **Note:** Version bump only for package @anchan828/nest-sendgrid-packages 553 | 554 | ## 0.6.38 (2023-04-02) 555 | 556 | **Note:** Version bump only for package @anchan828/nest-sendgrid-packages 557 | 558 | ## 0.6.37 (2023-03-26) 559 | 560 | **Note:** Version bump only for package @anchan828/nest-sendgrid-packages 561 | 562 | ## 0.6.36 (2023-03-19) 563 | 564 | ### Bug Fixes 565 | 566 | * **deps:** update dependency deepmerge to ^4.3.1 ([476ad63](https://github.com/anchan828/nest-sendgrid/commit/476ad63133f6ff73ef3312076368d1d45b36db15)) 567 | 568 | ## 0.6.35 (2023-03-12) 569 | 570 | **Note:** Version bump only for package @anchan828/nest-sendgrid-packages 571 | 572 | ## 0.6.34 (2023-03-05) 573 | 574 | **Note:** Version bump only for package @anchan828/nest-sendgrid-packages 575 | 576 | ## 0.6.33 (2023-02-26) 577 | 578 | **Note:** Version bump only for package @anchan828/nest-sendgrid-packages 579 | 580 | ## 0.6.32 (2023-02-19) 581 | 582 | **Note:** Version bump only for package @anchan828/nest-sendgrid-packages 583 | 584 | ## 0.6.31 (2023-02-12) 585 | 586 | **Note:** Version bump only for package @anchan828/nest-sendgrid-packages 587 | 588 | ## 0.6.30 (2023-02-05) 589 | 590 | **Note:** Version bump only for package @anchan828/nest-sendgrid-packages 591 | 592 | ## 0.6.29 (2023-01-29) 593 | 594 | **Note:** Version bump only for package @anchan828/nest-sendgrid-packages 595 | 596 | ## 0.6.28 (2023-01-22) 597 | 598 | **Note:** Version bump only for package @anchan828/nest-sendgrid-packages 599 | 600 | ## 0.6.27 (2023-01-15) 601 | 602 | **Note:** Version bump only for package @anchan828/nest-sendgrid-packages 603 | 604 | ## 0.6.26 (2023-01-08) 605 | 606 | **Note:** Version bump only for package @anchan828/nest-sendgrid-packages 607 | 608 | ## 0.6.25 (2023-01-01) 609 | 610 | **Note:** Version bump only for package @anchan828/nest-sendgrid-packages 611 | 612 | ## 0.6.24 (2022-12-25) 613 | 614 | **Note:** Version bump only for package @anchan828/nest-sendgrid-packages 615 | 616 | ## 0.6.23 (2022-12-18) 617 | 618 | **Note:** Version bump only for package @anchan828/nest-sendgrid-packages 619 | 620 | ## 0.6.22 (2022-12-11) 621 | 622 | **Note:** Version bump only for package @anchan828/nest-sendgrid-packages 623 | 624 | ## 0.6.21 (2022-12-04) 625 | 626 | **Note:** Version bump only for package @anchan828/nest-sendgrid-packages 627 | 628 | ## 0.6.20 (2022-11-27) 629 | 630 | **Note:** Version bump only for package @anchan828/nest-sendgrid-packages 631 | 632 | ## 0.6.19 (2022-11-20) 633 | 634 | **Note:** Version bump only for package @anchan828/nest-sendgrid-packages 635 | 636 | ## 0.6.18 (2022-11-13) 637 | 638 | **Note:** Version bump only for package @anchan828/nest-sendgrid-packages 639 | 640 | ## 0.6.17 (2022-11-06) 641 | 642 | **Note:** Version bump only for package @anchan828/nest-sendgrid-packages 643 | 644 | ## 0.6.16 (2022-10-30) 645 | 646 | **Note:** Version bump only for package @anchan828/nest-sendgrid-packages 647 | 648 | ## 0.6.15 (2022-10-23) 649 | 650 | **Note:** Version bump only for package @anchan828/nest-sendgrid-packages 651 | 652 | ## 0.6.14 (2022-10-16) 653 | 654 | **Note:** Version bump only for package @anchan828/nest-sendgrid-packages 655 | 656 | ## 0.6.13 (2022-10-09) 657 | 658 | **Note:** Version bump only for package @anchan828/nest-sendgrid-packages 659 | 660 | ## 0.6.12 (2022-10-02) 661 | 662 | **Note:** Version bump only for package @anchan828/nest-sendgrid-packages 663 | 664 | ## 0.6.11 (2022-09-25) 665 | 666 | **Note:** Version bump only for package @anchan828/nest-sendgrid-packages 667 | 668 | ## 0.6.10 (2022-09-18) 669 | 670 | **Note:** Version bump only for package @anchan828/nest-sendgrid-packages 671 | 672 | ## 0.6.9 (2022-09-11) 673 | 674 | **Note:** Version bump only for package @anchan828/nest-sendgrid-packages 675 | 676 | ## 0.6.8 (2022-09-04) 677 | 678 | **Note:** Version bump only for package @anchan828/nest-sendgrid-packages 679 | 680 | ## 0.6.7 (2022-08-28) 681 | 682 | **Note:** Version bump only for package @anchan828/nest-sendgrid-packages 683 | 684 | ## 0.6.6 (2022-08-21) 685 | 686 | **Note:** Version bump only for package @anchan828/nest-sendgrid-packages 687 | 688 | ## 0.6.5 (2022-08-14) 689 | 690 | **Note:** Version bump only for package @anchan828/nest-sendgrid-packages 691 | 692 | ## 0.6.4 (2022-08-07) 693 | 694 | **Note:** Version bump only for package @anchan828/nest-sendgrid-packages 695 | 696 | ## 0.6.3 (2022-07-31) 697 | 698 | **Note:** Version bump only for package @anchan828/nest-sendgrid-packages 699 | 700 | ## 0.6.2 (2022-07-24) 701 | 702 | **Note:** Version bump only for package @anchan828/nest-sendgrid-packages 703 | 704 | ## 0.6.1 (2022-07-17) 705 | 706 | **Note:** Version bump only for package @anchan828/nest-sendgrid-packages 707 | 708 | # 0.6.0 (2022-07-08) 709 | 710 | **Note:** Version bump only for package @anchan828/nest-sendgrid-packages 711 | 712 | ## 0.5.50 (2022-07-03) 713 | 714 | **Note:** Version bump only for package @anchan828/nest-sendgrid-packages 715 | 716 | ## 0.5.49 (2022-06-26) 717 | 718 | **Note:** Version bump only for package @anchan828/nest-sendgrid-packages 719 | 720 | ## 0.5.48 (2022-06-19) 721 | 722 | **Note:** Version bump only for package @anchan828/nest-sendgrid-packages 723 | 724 | ## 0.5.47 (2022-06-12) 725 | 726 | **Note:** Version bump only for package @anchan828/nest-sendgrid-packages 727 | 728 | ## 0.5.46 (2022-06-05) 729 | 730 | **Note:** Version bump only for package @anchan828/nest-sendgrid-packages 731 | 732 | ## 0.5.45 (2022-05-29) 733 | 734 | **Note:** Version bump only for package @anchan828/nest-sendgrid-packages 735 | 736 | ## 0.5.44 (2022-05-22) 737 | 738 | **Note:** Version bump only for package @anchan828/nest-sendgrid-packages 739 | 740 | ## 0.5.43 (2022-05-15) 741 | 742 | **Note:** Version bump only for package @anchan828/nest-sendgrid-packages 743 | 744 | ## 0.5.42 (2022-05-08) 745 | 746 | **Note:** Version bump only for package @anchan828/nest-sendgrid-packages 747 | 748 | ## 0.5.41 (2022-05-01) 749 | 750 | **Note:** Version bump only for package @anchan828/nest-sendgrid-packages 751 | 752 | ## 0.5.40 (2022-04-24) 753 | 754 | **Note:** Version bump only for package @anchan828/nest-sendgrid-packages 755 | 756 | ## 0.5.39 (2022-04-17) 757 | 758 | **Note:** Version bump only for package @anchan828/nest-sendgrid-packages 759 | 760 | ## 0.5.38 (2022-04-10) 761 | 762 | **Note:** Version bump only for package @anchan828/nest-sendgrid-packages 763 | 764 | ## 0.5.37 (2022-04-03) 765 | 766 | **Note:** Version bump only for package @anchan828/nest-sendgrid-packages 767 | 768 | ## 0.5.36 (2022-03-27) 769 | 770 | **Note:** Version bump only for package @anchan828/nest-sendgrid-packages 771 | 772 | ## 0.5.35 (2022-03-20) 773 | 774 | **Note:** Version bump only for package @anchan828/nest-sendgrid-packages 775 | 776 | ## 0.5.34 (2022-03-13) 777 | 778 | **Note:** Version bump only for package @anchan828/nest-sendgrid-packages 779 | 780 | ## 0.5.33 (2022-03-06) 781 | 782 | **Note:** Version bump only for package @anchan828/nest-sendgrid-packages 783 | 784 | ## 0.5.32 (2022-02-27) 785 | 786 | **Note:** Version bump only for package @anchan828/nest-sendgrid-packages 787 | 788 | ## 0.5.31 (2022-02-20) 789 | 790 | **Note:** Version bump only for package @anchan828/nest-sendgrid-packages 791 | 792 | ## 0.5.30 (2022-02-13) 793 | 794 | **Note:** Version bump only for package @anchan828/nest-sendgrid-packages 795 | 796 | ## 0.5.29 (2022-02-06) 797 | 798 | **Note:** Version bump only for package @anchan828/nest-sendgrid-packages 799 | 800 | ## 0.5.28 (2022-01-30) 801 | 802 | **Note:** Version bump only for package @anchan828/nest-sendgrid-packages 803 | 804 | ## 0.5.27 (2021-12-26) 805 | 806 | **Note:** Version bump only for package @anchan828/nest-sendgrid-packages 807 | 808 | ## 0.5.26 (2021-12-19) 809 | 810 | **Note:** Version bump only for package @anchan828/nest-sendgrid-packages 811 | 812 | ## 0.5.25 (2021-12-12) 813 | 814 | **Note:** Version bump only for package @anchan828/nest-sendgrid-packages 815 | 816 | ## 0.5.24 (2021-12-05) 817 | 818 | **Note:** Version bump only for package @anchan828/nest-sendgrid-packages 819 | 820 | ## 0.5.23 (2021-11-28) 821 | 822 | **Note:** Version bump only for package @anchan828/nest-sendgrid-packages 823 | 824 | ## 0.5.22 (2021-11-21) 825 | 826 | **Note:** Version bump only for package @anchan828/nest-sendgrid-packages 827 | 828 | ## 0.5.21 (2021-11-14) 829 | 830 | **Note:** Version bump only for package @anchan828/nest-sendgrid-packages 831 | 832 | ## 0.5.20 (2021-11-07) 833 | 834 | **Note:** Version bump only for package @anchan828/nest-sendgrid-packages 835 | 836 | ## 0.5.19 (2021-10-31) 837 | 838 | **Note:** Version bump only for package @anchan828/nest-sendgrid-packages 839 | 840 | ## 0.5.18 (2021-10-24) 841 | 842 | **Note:** Version bump only for package @anchan828/nest-sendgrid-packages 843 | 844 | ## 0.5.17 (2021-10-17) 845 | 846 | **Note:** Version bump only for package @anchan828/nest-sendgrid-packages 847 | 848 | ## 0.5.16 (2021-10-10) 849 | 850 | **Note:** Version bump only for package @anchan828/nest-sendgrid-packages 851 | 852 | ## 0.5.15 (2021-10-03) 853 | 854 | **Note:** Version bump only for package @anchan828/nest-sendgrid-packages 855 | 856 | ## 0.5.14 (2021-09-26) 857 | 858 | **Note:** Version bump only for package @anchan828/nest-sendgrid-packages 859 | 860 | ## 0.5.13 (2021-09-19) 861 | 862 | **Note:** Version bump only for package @anchan828/nest-sendgrid-packages 863 | 864 | ## 0.5.12 (2021-09-12) 865 | 866 | **Note:** Version bump only for package @anchan828/nest-sendgrid-packages 867 | 868 | ## 0.5.11 (2021-09-05) 869 | 870 | **Note:** Version bump only for package @anchan828/nest-sendgrid-packages 871 | 872 | ## 0.5.10 (2021-08-29) 873 | 874 | **Note:** Version bump only for package @anchan828/nest-sendgrid-packages 875 | 876 | ## 0.5.9 (2021-08-22) 877 | 878 | **Note:** Version bump only for package @anchan828/nest-sendgrid-packages 879 | 880 | ## 0.5.8 (2021-08-15) 881 | 882 | **Note:** Version bump only for package @anchan828/nest-sendgrid-packages 883 | 884 | ## 0.5.7 (2021-08-08) 885 | 886 | **Note:** Version bump only for package @anchan828/nest-sendgrid-packages 887 | 888 | ## 0.5.6 (2021-08-01) 889 | 890 | **Note:** Version bump only for package @anchan828/nest-sendgrid-packages 891 | 892 | ## 0.5.5 (2021-07-25) 893 | 894 | **Note:** Version bump only for package @anchan828/nest-sendgrid-packages 895 | 896 | ## 0.5.4 (2021-07-23) 897 | 898 | **Note:** Version bump only for package @anchan828/nest-sendgrid-packages 899 | 900 | ## 0.5.3 (2021-07-23) 901 | 902 | **Note:** Version bump only for package @anchan828/nest-sendgrid-packages 903 | 904 | ## 0.5.2 (2021-07-18) 905 | 906 | **Note:** Version bump only for package @anchan828/nest-sendgrid-packages 907 | 908 | ## 0.5.1 (2021-07-18) 909 | 910 | **Note:** Version bump only for package @anchan828/nest-sendgrid-packages 911 | 912 | # [0.5.0](https://github.com/anchan828/nest-sendgrid/compare/v0.4.27...v0.5.0) (2021-07-14) 913 | 914 | ### Bug Fixes 915 | 916 | * toPromise in rxjs will be supported at the next time. ([c8a3d33](https://github.com/anchan828/nest-sendgrid/commit/c8a3d3370276984b3e1ba37208e536744218f7e0)) 917 | * update to nestjs v8 ([b0405db](https://github.com/anchan828/nest-sendgrid/commit/b0405dba9afc310c57e2466967a44a2db75d74b3)) 918 | 919 | ## 0.4.27 (2021-07-11) 920 | 921 | **Note:** Version bump only for package @anchan828/nest-sendgrid-packages 922 | 923 | ## 0.4.26 (2021-06-27) 924 | 925 | **Note:** Version bump only for package @anchan828/nest-sendgrid-packages 926 | 927 | ## 0.4.25 (2021-06-20) 928 | 929 | **Note:** Version bump only for package @anchan828/nest-sendgrid-packages 930 | 931 | ## 0.4.24 (2021-06-13) 932 | 933 | **Note:** Version bump only for package @anchan828/nest-sendgrid-packages 934 | 935 | ## 0.4.23 (2021-06-06) 936 | 937 | **Note:** Version bump only for package @anchan828/nest-sendgrid-packages 938 | 939 | ## 0.4.22 (2021-05-30) 940 | 941 | **Note:** Version bump only for package @anchan828/nest-sendgrid-packages 942 | 943 | ## 0.4.21 (2021-05-23) 944 | 945 | **Note:** Version bump only for package @anchan828/nest-sendgrid-packages 946 | 947 | ## 0.4.20 (2021-05-16) 948 | 949 | **Note:** Version bump only for package @anchan828/nest-sendgrid-packages 950 | 951 | ## 0.4.19 (2021-05-09) 952 | 953 | **Note:** Version bump only for package @anchan828/nest-sendgrid-packages 954 | 955 | ## 0.4.18 (2021-05-02) 956 | 957 | **Note:** Version bump only for package @anchan828/nest-sendgrid-packages 958 | 959 | ## 0.4.17 (2021-04-25) 960 | 961 | **Note:** Version bump only for package @anchan828/nest-sendgrid-packages 962 | 963 | ## 0.4.16 (2021-04-18) 964 | 965 | **Note:** Version bump only for package @anchan828/nest-sendgrid-packages 966 | 967 | ## 0.4.15 (2021-04-11) 968 | 969 | **Note:** Version bump only for package @anchan828/nest-sendgrid-packages 970 | 971 | ## 0.4.14 (2021-04-04) 972 | 973 | **Note:** Version bump only for package @anchan828/nest-sendgrid-packages 974 | 975 | ## 0.4.13 (2021-03-28) 976 | 977 | **Note:** Version bump only for package @anchan828/nest-sendgrid-packages 978 | 979 | ## 0.4.12 (2021-03-21) 980 | 981 | **Note:** Version bump only for package @anchan828/nest-sendgrid-packages 982 | 983 | ## 0.4.11 (2021-03-14) 984 | 985 | **Note:** Version bump only for package @anchan828/nest-sendgrid-packages 986 | 987 | ## 0.4.10 (2021-03-07) 988 | 989 | **Note:** Version bump only for package @anchan828/nest-sendgrid-packages 990 | 991 | ## 0.4.9 (2021-02-28) 992 | 993 | **Note:** Version bump only for package @anchan828/nest-sendgrid-packages 994 | 995 | ## 0.4.8 (2021-02-21) 996 | 997 | **Note:** Version bump only for package @anchan828/nest-sendgrid-packages 998 | 999 | ## 0.4.7 (2021-02-14) 1000 | 1001 | **Note:** Version bump only for package @anchan828/nest-sendgrid-packages 1002 | 1003 | ## 0.4.6 (2021-02-07) 1004 | 1005 | **Note:** Version bump only for package @anchan828/nest-sendgrid-packages 1006 | 1007 | ## 0.4.5 (2021-01-31) 1008 | 1009 | **Note:** Version bump only for package @anchan828/nest-sendgrid-packages 1010 | 1011 | ## 0.4.4 (2021-01-24) 1012 | 1013 | **Note:** Version bump only for package @anchan828/nest-sendgrid-packages 1014 | 1015 | ## 0.4.3 (2021-01-17) 1016 | 1017 | **Note:** Version bump only for package @anchan828/nest-sendgrid-packages 1018 | 1019 | ## 0.4.2 (2021-01-10) 1020 | 1021 | **Note:** Version bump only for package @anchan828/nest-sendgrid-packages 1022 | 1023 | ## 0.4.1 (2021-01-03) 1024 | 1025 | **Note:** Version bump only for package @anchan828/nest-sendgrid-packages 1026 | 1027 | # [0.4.0](https://github.com/anchan828/nest-sendgrid/compare/v0.3.36...v0.4.0) (2020-12-25) 1028 | 1029 | ### Features 1030 | 1031 | * support @nestjs/terminus v7 ([09a48a5](https://github.com/anchan828/nest-sendgrid/commit/09a48a512faed75e8e61d482aafbfe549ea17223)) 1032 | 1033 | ## 0.3.36 (2020-12-20) 1034 | 1035 | **Note:** Version bump only for package @anchan828/nest-sendgrid-packages 1036 | 1037 | ## 0.3.35 (2020-12-13) 1038 | 1039 | **Note:** Version bump only for package @anchan828/nest-sendgrid-packages 1040 | 1041 | ## 0.3.34 (2020-12-06) 1042 | 1043 | **Note:** Version bump only for package @anchan828/nest-sendgrid-packages 1044 | 1045 | ## 0.3.33 (2020-11-29) 1046 | 1047 | **Note:** Version bump only for package @anchan828/nest-sendgrid-packages 1048 | 1049 | ## 0.3.32 (2020-11-22) 1050 | 1051 | **Note:** Version bump only for package @anchan828/nest-sendgrid-packages 1052 | 1053 | ## 0.3.31 (2020-11-15) 1054 | 1055 | **Note:** Version bump only for package @anchan828/nest-sendgrid-packages 1056 | 1057 | ## 0.3.30 (2020-11-08) 1058 | 1059 | **Note:** Version bump only for package @anchan828/nest-sendgrid-packages 1060 | 1061 | ## 0.3.29 (2020-11-01) 1062 | 1063 | **Note:** Version bump only for package @anchan828/nest-sendgrid-packages 1064 | 1065 | ## 0.3.28 (2020-10-25) 1066 | 1067 | **Note:** Version bump only for package @anchan828/nest-sendgrid-packages 1068 | 1069 | ## 0.3.27 (2020-10-18) 1070 | 1071 | **Note:** Version bump only for package @anchan828/nest-sendgrid-packages 1072 | 1073 | ## 0.3.26 (2020-10-11) 1074 | 1075 | **Note:** Version bump only for package @anchan828/nest-sendgrid-packages 1076 | 1077 | ## 0.3.25 (2020-10-04) 1078 | 1079 | **Note:** Version bump only for package @anchan828/nest-sendgrid-packages 1080 | 1081 | ## 0.3.24 (2020-09-27) 1082 | 1083 | **Note:** Version bump only for package @anchan828/nest-sendgrid-packages 1084 | 1085 | ## 0.3.23 (2020-09-20) 1086 | 1087 | **Note:** Version bump only for package @anchan828/nest-sendgrid-packages 1088 | 1089 | ## 0.3.22 (2020-09-13) 1090 | 1091 | **Note:** Version bump only for package @anchan828/nest-sendgrid-packages 1092 | 1093 | ## 0.3.21 (2020-09-06) 1094 | 1095 | **Note:** Version bump only for package @anchan828/nest-sendgrid-packages 1096 | 1097 | ## 0.3.20 (2020-08-30) 1098 | 1099 | **Note:** Version bump only for package @anchan828/nest-sendgrid-packages 1100 | 1101 | ## 0.3.19 (2020-08-23) 1102 | 1103 | **Note:** Version bump only for package @anchan828/nest-sendgrid-packages 1104 | 1105 | ## 0.3.18 (2020-08-16) 1106 | 1107 | **Note:** Version bump only for package @anchan828/nest-sendgrid-packages 1108 | 1109 | ## 0.3.17 (2020-08-09) 1110 | 1111 | **Note:** Version bump only for package @anchan828/nest-sendgrid-packages 1112 | 1113 | ## 0.3.16 (2020-08-02) 1114 | 1115 | **Note:** Version bump only for package @anchan828/nest-sendgrid-packages 1116 | 1117 | ## 0.3.15 (2020-07-26) 1118 | 1119 | **Note:** Version bump only for package @anchan828/nest-sendgrid-packages 1120 | 1121 | ## 0.3.14 (2020-07-19) 1122 | 1123 | **Note:** Version bump only for package @anchan828/nest-sendgrid-packages 1124 | 1125 | ## 0.3.13 (2020-07-12) 1126 | 1127 | **Note:** Version bump only for package @anchan828/nest-sendgrid-packages 1128 | 1129 | ## 0.3.12 (2020-07-05) 1130 | 1131 | **Note:** Version bump only for package @anchan828/nest-sendgrid-packages 1132 | 1133 | ## 0.3.11 (2020-06-28) 1134 | 1135 | ### Bug Fixes 1136 | 1137 | * **deps:** update dependency @sendgrid/mail to v7.2.1 ([2afd4ce](https://github.com/anchan828/nest-sendgrid/commit/2afd4ce1dd5014ba2f652bf834cb3283bfbe84fc)) 1138 | 1139 | ## 0.3.10 (2020-06-21) 1140 | 1141 | **Note:** Version bump only for package @anchan828/nest-sendgrid-packages 1142 | 1143 | ## 0.3.9 (2020-06-14) 1144 | 1145 | **Note:** Version bump only for package @anchan828/nest-sendgrid-packages 1146 | 1147 | ## 0.3.8 (2020-06-07) 1148 | 1149 | **Note:** Version bump only for package @anchan828/nest-sendgrid-packages 1150 | 1151 | ## 0.3.7 (2020-05-31) 1152 | 1153 | **Note:** Version bump only for package @anchan828/nest-sendgrid-packages 1154 | 1155 | ## 0.3.6 (2020-05-24) 1156 | 1157 | **Note:** Version bump only for package @anchan828/nest-sendgrid-packages 1158 | 1159 | ## 0.3.5 (2020-05-17) 1160 | 1161 | **Note:** Version bump only for package @anchan828/nest-sendgrid-packages 1162 | 1163 | ## 0.3.4 (2020-05-10) 1164 | 1165 | **Note:** Version bump only for package @anchan828/nest-sendgrid-packages 1166 | 1167 | ## 0.3.3 (2020-05-03) 1168 | 1169 | **Note:** Version bump only for package @anchan828/nest-sendgrid-packages 1170 | 1171 | ## 0.3.2 (2020-04-26) 1172 | 1173 | **Note:** Version bump only for package @anchan828/nest-sendgrid-packages 1174 | 1175 | ## 0.3.1 (2020-04-19) 1176 | 1177 | **Note:** Version bump only for package @anchan828/nest-sendgrid-packages 1178 | 1179 | # [0.3.0](https://github.com/anchan828/nest-sendgrid/compare/v0.2.3...v0.3.0) (2020-04-15) 1180 | 1181 | ### Features 1182 | 1183 | - update @nestjs/terminus to v7 ([83f04e0](https://github.com/anchan828/nest-sendgrid/commit/83f04e058627914e19de351cbf81284c4b0a234a)) 1184 | 1185 | ## 0.2.3 (2020-04-12) 1186 | 1187 | **Note:** Version bump only for package @anchan828/nest-sendgrid-packages 1188 | 1189 | ## 0.2.2 (2020-04-05) 1190 | 1191 | **Note:** Version bump only for package @anchan828/nest-sendgrid-packages 1192 | 1193 | ## 0.2.1 (2020-03-29) 1194 | 1195 | **Note:** Version bump only for package @anchan828/nest-sendgrid-packages 1196 | 1197 | # [0.2.0](https://github.com/anchan828/nest-sendgrid/compare/v0.1.40...v0.2.0) (2020-03-25) 1198 | 1199 | ### Bug Fixes 1200 | 1201 | - change MailData to MailDataRequired ([3348d1e](https://github.com/anchan828/nest-sendgrid/commit/3348d1ed58b381a3701d02d7cf04137214714a77)) 1202 | - **deps:** update dependency @sendgrid/mail to v6.5.5 ([5b6a480](https://github.com/anchan828/nest-sendgrid/commit/5b6a480963c26c2cdcfc508c2ef96a146df34614)) 1203 | - lint ([4d0e070](https://github.com/anchan828/nest-sendgrid/commit/4d0e070c5f6fa350409d5379e43aa07cdd182128)) 1204 | - **deps:** update dependency @sendgrid/mail to v6.5.4 ([bc725be](https://github.com/anchan828/nest-sendgrid/commit/bc725bec8e0dc56a2186b324e59963b1f132e0dd)) 1205 | 1206 | ## 0.1.40 (2020-03-22) 1207 | 1208 | **Note:** Version bump only for package @anchan828/nest-sendgrid-packages 1209 | 1210 | ## 0.1.39 (2020-03-15) 1211 | 1212 | **Note:** Version bump only for package @anchan828/nest-sendgrid-packages 1213 | 1214 | ## 0.1.38 (2020-03-08) 1215 | 1216 | **Note:** Version bump only for package @anchan828/nest-sendgrid-packages 1217 | 1218 | ## 0.1.37 (2020-03-01) 1219 | 1220 | **Note:** Version bump only for package @anchan828/nest-sendgrid-packages 1221 | 1222 | ## 0.1.36 (2020-02-23) 1223 | 1224 | **Note:** Version bump only for package @anchan828/nest-sendgrid-packages 1225 | 1226 | ## 0.1.35 (2020-02-16) 1227 | 1228 | **Note:** Version bump only for package @anchan828/nest-sendgrid-packages 1229 | 1230 | ## 0.1.34 (2020-02-09) 1231 | 1232 | **Note:** Version bump only for package @anchan828/nest-sendgrid-packages 1233 | 1234 | ## 0.1.33 (2020-02-02) 1235 | 1236 | **Note:** Version bump only for package @anchan828/nest-sendgrid-packages 1237 | 1238 | ## 0.1.32 (2020-01-26) 1239 | 1240 | **Note:** Version bump only for package @anchan828/nest-sendgrid-packages 1241 | 1242 | ## 0.1.31 (2020-01-19) 1243 | 1244 | **Note:** Version bump only for package @anchan828/nest-sendgrid-packages 1245 | 1246 | ## 0.1.30 (2020-01-12) 1247 | 1248 | **Note:** Version bump only for package @anchan828/nest-sendgrid-packages 1249 | 1250 | ## 0.1.29 (2020-01-05) 1251 | 1252 | **Note:** Version bump only for package @anchan828/nest-sendgrid-packages 1253 | 1254 | ## 0.1.28 (2019-12-29) 1255 | 1256 | **Note:** Version bump only for package @anchan828/nest-sendgrid-packages 1257 | 1258 | ## 0.1.27 (2019-12-22) 1259 | 1260 | **Note:** Version bump only for package @anchan828/nest-sendgrid-packages 1261 | 1262 | ## 0.1.26 (2019-12-15) 1263 | 1264 | **Note:** Version bump only for package @anchan828/nest-sendgrid-packages 1265 | 1266 | ## 0.1.25 (2019-12-08) 1267 | 1268 | **Note:** Version bump only for package @anchan828/nest-sendgrid-packages 1269 | 1270 | ## [0.1.24](https://github.com/anchan828/nest-sendgrid/compare/v0.1.23...v0.1.24) (2019-12-01) 1271 | 1272 | **Note:** Version bump only for package @anchan828/nest-sendgrid-packages 1273 | 1274 | ## [0.1.23](https://github.com/anchan828/nest-sendgrid/compare/v0.1.22...v0.1.23) (2019-11-17) 1275 | 1276 | **Note:** Version bump only for package @anchan828/nest-sendgrid-packages 1277 | 1278 | ## [0.1.22](https://github.com/anchan828/nest-sendgrid/compare/v0.1.21...v0.1.22) (2019-11-10) 1279 | 1280 | **Note:** Version bump only for package @anchan828/nest-sendgrid-packages 1281 | 1282 | ## [0.1.21](https://github.com/anchan828/nest-sendgrid/compare/v0.1.20...v0.1.21) (2019-11-03) 1283 | 1284 | ### Bug Fixes 1285 | 1286 | - **deps:** update dependency deepmerge to v4.2.2 ([49c0f39](https://github.com/anchan828/nest-sendgrid/commit/49c0f395bc4533e9950df148dbc718787e2eb4c1)) 1287 | 1288 | ## [0.1.20](https://github.com/anchan828/nest-sendgrid/compare/v0.1.19...v0.1.20) (2019-10-27) 1289 | 1290 | ### Bug Fixes 1291 | 1292 | - **deps:** update dependency deepmerge to v4.1.2 ([5cb8ac0](https://github.com/anchan828/nest-sendgrid/commit/5cb8ac0c7396b49af91d0efa30b5f2ccafa55e22)) 1293 | - **deps:** update dependency deepmerge to v4.2.0 ([28df212](https://github.com/anchan828/nest-sendgrid/commit/28df212ec867a44a347335db261c67aeb619f806)) 1294 | - **deps:** update dependency deepmerge to v4.2.1 ([66f1e43](https://github.com/anchan828/nest-sendgrid/commit/66f1e43ffab4152ba784ffbd6c83de810658fc84)) 1295 | 1296 | ## [0.1.19](https://github.com/anchan828/nest-sendgrid/compare/v0.1.18...v0.1.19) (2019-10-20) 1297 | 1298 | **Note:** Version bump only for package @anchan828/nest-sendgrid-packages 1299 | 1300 | ## [0.1.18](https://github.com/anchan828/nest-sendgrid/compare/v0.1.17...v0.1.18) (2019-10-13) 1301 | 1302 | ### Bug Fixes 1303 | 1304 | - **deps:** update dependency deepmerge to v4.1.0 ([ec6883b](https://github.com/anchan828/nest-sendgrid/commit/ec6883beb2b83f76644ea36ab78f5f0aa8156867)) 1305 | - **deps:** update dependency deepmerge to v4.1.1 ([b0c7b81](https://github.com/anchan828/nest-sendgrid/commit/b0c7b81a833af0b5a775fa3afd07b5fc1b7be4c0)) 1306 | 1307 | ## [0.1.17](https://github.com/anchan828/nest-sendgrid/compare/v0.1.16...v0.1.17) (2019-10-06) 1308 | 1309 | **Note:** Version bump only for package @anchan828/nest-sendgrid-packages 1310 | 1311 | ## [0.1.16](https://github.com/anchan828/nest-sendgrid/compare/v0.1.15...v0.1.16) (2019-09-29) 1312 | 1313 | **Note:** Version bump only for package @anchan828/nest-sendgrid-packages 1314 | 1315 | ## [0.1.15](https://github.com/anchan828/nest-sendgrid/compare/v0.1.14...v0.1.15) (2019-09-22) 1316 | 1317 | **Note:** Version bump only for package @anchan828/nest-sendgrid-packages 1318 | 1319 | ## [0.1.14](https://github.com/anchan828/nest-sendgrid/compare/v0.1.13...v0.1.14) (2019-09-15) 1320 | 1321 | ### Features 1322 | 1323 | - customize status key ([1ec5b85](https://github.com/anchan828/nest-sendgrid/commit/1ec5b85)) 1324 | 1325 | ## [0.1.13](https://github.com/anchan828/nest-sendgrid/compare/v0.1.12...v0.1.13) (2019-09-08) 1326 | 1327 | **Note:** Version bump only for package @anchan828/nest-sendgrid-packages 1328 | 1329 | ## [0.1.12](https://github.com/anchan828/nest-sendgrid/compare/v0.1.11...v0.1.12) (2019-09-01) 1330 | 1331 | **Note:** Version bump only for package @anchan828/nest-sendgrid-packages 1332 | 1333 | ## [0.1.11](https://github.com/anchan828/nest-sendgrid/compare/v0.1.10...v0.1.11) (2019-08-25) 1334 | 1335 | **Note:** Version bump only for package @anchan828/nest-sendgrid-packages 1336 | 1337 | ## [0.1.10](https://github.com/anchan828/nest-sendgrid/compare/v0.1.9...v0.1.10) (2019-08-18) 1338 | 1339 | **Note:** Version bump only for package @anchan828/nest-sendgrid-packages 1340 | --------------------------------------------------------------------------------