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.
package/dist/GmailService.d.ts
CHANGED
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
import { BaseEmailService } from './BaseEmailService';
|
|
2
|
-
export declare class
|
|
2
|
+
export declare class GmailService extends BaseEmailService {
|
|
3
3
|
password: string;
|
|
4
4
|
constructor(username: string, password: string);
|
|
5
5
|
protected getTransform(): any;
|
package/dist/GmailService.js
CHANGED
|
@@ -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.
|
|
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
|
|
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.
|
|
25
|
+
exports.GmailService = GmailService;
|
|
26
26
|
//# sourceMappingURL=GmailService.js.map
|
package/dist/GmailService.js.map
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"GmailService.js","sourceRoot":"","sources":["../src/GmailService.ts"],"names":[],"mappings":";;;;;;AAAA,0FAAsD;AACtD,yDAAsD;AAEtD,MAAa,
|
|
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
package/src/GmailService.ts
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
import smtpTransport from 'nodemailer-smtp-transport';
|
|
2
2
|
import { BaseEmailService } from './BaseEmailService';
|
|
3
3
|
|
|
4
|
-
export class
|
|
4
|
+
export class GmailService extends BaseEmailService
|
|
5
5
|
{
|
|
6
6
|
password: string;
|
|
7
7
|
constructor(username: string, password: string)
|