@cemiar/cemiarlink-sdk 1.0.9 → 1.0.10
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/services/Mail.d.ts +1 -1
- package/dist/services/Mail.js +2 -1
- package/package.json +1 -1
package/dist/services/Mail.d.ts
CHANGED
|
@@ -5,7 +5,7 @@ import { EmailReport } from '../models/mail/EmailReport';
|
|
|
5
5
|
import GetEmailReportOptions from '../models/mail/GetEmailReportOptions';
|
|
6
6
|
import { GMailFolder } from '../models/mail/GmailMail';
|
|
7
7
|
import { TransactionWatch } from '../models/mail/TransactionWatchList';
|
|
8
|
-
export
|
|
8
|
+
export declare class MailService {
|
|
9
9
|
user?: string;
|
|
10
10
|
axiosInstance: AxiosInstance;
|
|
11
11
|
transporter: nodemailer.Transporter;
|
package/dist/services/Mail.js
CHANGED
|
@@ -3,6 +3,7 @@ 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.MailService = void 0;
|
|
6
7
|
const fs_1 = __importDefault(require("fs"));
|
|
7
8
|
const nodemailer_1 = __importDefault(require("nodemailer"));
|
|
8
9
|
const AxiosClient_1 = require("../utils/AxiosClient");
|
|
@@ -306,4 +307,4 @@ class MailService {
|
|
|
306
307
|
await this.transporter.sendMail(mailOptions);
|
|
307
308
|
}
|
|
308
309
|
}
|
|
309
|
-
exports.
|
|
310
|
+
exports.MailService = MailService;
|