namirasoft-node 1.3.17 → 1.3.18

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
@@ -1,5 +1,5 @@
1
1
  import { BaseEmailService } from './BaseEmailService';
2
- export declare class Gmail extends BaseEmailService {
2
+ export declare class GmailService extends BaseEmailService {
3
3
  password: string;
4
4
  constructor(username: string, password: string);
5
5
  protected getTransform(): any;
@@ -3,10 +3,10 @@ var __importDefault = (this && this.__importDefault) || function (mod) {
3
3
  return (mod && mod.__esModule) ? mod : { "default": mod };
4
4
  };
5
5
  Object.defineProperty(exports, "__esModule", { value: true });
6
- exports.Gmail = void 0;
6
+ exports.GmailService = void 0;
7
7
  const nodemailer_smtp_transport_1 = __importDefault(require("nodemailer-smtp-transport"));
8
8
  const BaseEmailService_1 = require("./BaseEmailService");
9
- class Gmail extends BaseEmailService_1.BaseEmailService {
9
+ class GmailService extends BaseEmailService_1.BaseEmailService {
10
10
  constructor(username, password) {
11
11
  super(username);
12
12
  this.password = password;
@@ -22,5 +22,5 @@ class Gmail extends BaseEmailService_1.BaseEmailService {
22
22
  });
23
23
  }
24
24
  }
25
- exports.Gmail = Gmail;
25
+ exports.GmailService = GmailService;
26
26
  //# sourceMappingURL=GmailService.js.map
@@ -1 +1 @@
1
- {"version":3,"file":"GmailService.js","sourceRoot":"","sources":["../src/GmailService.ts"],"names":[],"mappings":";;;;;;AAAA,0FAAsD;AACtD,yDAAsD;AAEtD,MAAa,KAAM,SAAQ,mCAAgB;IAGvC,YAAY,QAAgB,EAAE,QAAgB;QAE1C,KAAK,CAAC,QAAQ,CAAC,CAAC;QAChB,IAAI,CAAC,QAAQ,GAAG,QAAQ,CAAC;IAC7B,CAAC;IACkB,YAAY;QAE3B,OAAO,IAAA,mCAAa,EAAC;YACjB,OAAO,EAAE,OAAO;YAChB,IAAI,EAAE,gBAAgB;YACtB,IAAI,EAAE;gBACF,IAAI,EAAE,IAAI,CAAC,QAAQ;gBACnB,IAAI,EAAE,IAAI,CAAC,QAAQ;aACtB;SACJ,CAAC,CAAC;IACP,CAAC;CACJ;AAnBD,sBAmBC"}
1
+ {"version":3,"file":"GmailService.js","sourceRoot":"","sources":["../src/GmailService.ts"],"names":[],"mappings":";;;;;;AAAA,0FAAsD;AACtD,yDAAsD;AAEtD,MAAa,YAAa,SAAQ,mCAAgB;IAG9C,YAAY,QAAgB,EAAE,QAAgB;QAE1C,KAAK,CAAC,QAAQ,CAAC,CAAC;QAChB,IAAI,CAAC,QAAQ,GAAG,QAAQ,CAAC;IAC7B,CAAC;IACkB,YAAY;QAE3B,OAAO,IAAA,mCAAa,EAAC;YACjB,OAAO,EAAE,OAAO;YAChB,IAAI,EAAE,gBAAgB;YACtB,IAAI,EAAE;gBACF,IAAI,EAAE,IAAI,CAAC,QAAQ;gBACnB,IAAI,EAAE,IAAI,CAAC,QAAQ;aACtB;SACJ,CAAC,CAAC;IACP,CAAC;CACJ;AAnBD,oCAmBC"}
package/package.json CHANGED
@@ -8,7 +8,7 @@
8
8
  "framework": "npm",
9
9
  "application": "package",
10
10
  "private": false,
11
- "version": "1.3.17",
11
+ "version": "1.3.18",
12
12
  "author": "Amir Abolhasani",
13
13
  "license": "MIT",
14
14
  "main": "./dist/index.js",
@@ -1,7 +1,7 @@
1
1
  import smtpTransport from 'nodemailer-smtp-transport';
2
2
  import { BaseEmailService } from './BaseEmailService';
3
3
 
4
- export class Gmail extends BaseEmailService
4
+ export class GmailService extends BaseEmailService
5
5
  {
6
6
  password: string;
7
7
  constructor(username: string, password: string)