@cemiar/cemiarlink-sdk 1.0.0 → 1.0.2
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/models/epic/Contact.d.ts +1 -1
- package/dist/models/epic/Customer.d.ts +1 -1
- package/dist/models/epic/Driver.d.ts +1 -1
- package/dist/models/epic/Employee.d.ts +3 -3
- package/dist/models/epic/Habitational.d.ts +1 -1
- package/dist/models/epic/Line.d.ts +3 -3
- package/dist/models/epic/MultiCarrierSchedule.d.ts +1 -1
- package/dist/models/epic/Policy.d.ts +3 -3
- package/dist/models/epic/PolicyV2.d.ts +1 -1
- package/dist/models/epic/Receipt.d.ts +1 -1
- package/dist/models/epic/Transaction.d.ts +1 -1
- package/dist/services/Admin.d.ts +6 -1
- package/dist/services/Admin.js +15 -15
- package/dist/services/BaseEpicService.js +2 -2
- package/dist/services/Epic.d.ts +27 -13
- package/dist/services/Epic.js +12 -7
- package/dist/services/JobEpicService.d.ts +2 -2
- package/dist/services/JobEpicService.js +5 -2
- package/dist/services/MultiCarrierScheduleEpicService.d.ts +2 -2
- package/dist/services/MultiCarrierScheduleEpicService.js +5 -2
- package/dist/utils/Excel.d.ts +1 -1
- package/package.json +1 -1
- package/dist/index.d.ts +0 -7
- package/dist/index.js +0 -54
- package/dist/models/admin/index.d.ts +0 -9
- package/dist/models/admin/index.js +0 -25
- package/dist/models/epic/index.d.ts +0 -17
- package/dist/models/epic/index.js +0 -33
|
@@ -1,6 +1,6 @@
|
|
|
1
|
-
import { Address } from './Address
|
|
2
|
-
import { AgencyDefinedCode } from './Line
|
|
3
|
-
import { OptionType } from './OptionType
|
|
1
|
+
import { Address } from './Address';
|
|
2
|
+
import { AgencyDefinedCode } from './Line';
|
|
3
|
+
import { OptionType } from './OptionType';
|
|
4
4
|
export interface Employee {
|
|
5
5
|
AccountName: string;
|
|
6
6
|
AccountStatus: string;
|
|
@@ -1,6 +1,6 @@
|
|
|
1
|
-
import { Address } from './Address
|
|
2
|
-
import { OptionType } from './OptionType
|
|
3
|
-
import { ServicingContact } from './ServicingContact
|
|
1
|
+
import { Address } from './Address';
|
|
2
|
+
import { OptionType } from './OptionType';
|
|
3
|
+
import { ServicingContact } from './ServicingContact';
|
|
4
4
|
export interface BillingValue {
|
|
5
5
|
BillBrokerNet: boolean;
|
|
6
6
|
BillingPlan: string;
|
|
@@ -1,6 +1,6 @@
|
|
|
1
|
-
import { ServicingContact } from './ServicingContact
|
|
2
|
-
import { ServiceSummary } from './ServiceSummary
|
|
3
|
-
import { Line } from './Line
|
|
1
|
+
import { ServicingContact } from './ServicingContact';
|
|
2
|
+
import { ServiceSummary } from './ServiceSummary';
|
|
3
|
+
import { Line } from './Line';
|
|
4
4
|
export interface Policy {
|
|
5
5
|
AccountId: string;
|
|
6
6
|
AgencyCode: string;
|
package/dist/services/Admin.d.ts
CHANGED
|
@@ -1,5 +1,10 @@
|
|
|
1
1
|
import { AxiosInstance } from 'axios';
|
|
2
|
-
import {
|
|
2
|
+
import { ClassificationResult, PdfReaderBody, PdfReaderResponse } from "../models/admin/PdfReader";
|
|
3
|
+
import { AzureOCRResponse, ExtractBody, ExtractInsurerResponse, ExtractTableResponse, TableExtractBody } from "../models/admin/ExtractTable";
|
|
4
|
+
import { FlashPaymentRequest } from "../models/admin/Primaco";
|
|
5
|
+
import { Counter } from "../models/admin/Counter";
|
|
6
|
+
import { BusMessagePayload } from "../models/admin/BusMessage";
|
|
7
|
+
import { Email, EmailAws, SendMailResult } from "../models/admin/Email";
|
|
3
8
|
export default class AdminService {
|
|
4
9
|
axiosInstance: AxiosInstance;
|
|
5
10
|
taskId?: string;
|
package/dist/services/Admin.js
CHANGED
|
@@ -5,13 +5,13 @@ var __importDefault = (this && this.__importDefault) || function (mod) {
|
|
|
5
5
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
6
6
|
const fs_1 = __importDefault(require("fs"));
|
|
7
7
|
const path_1 = __importDefault(require("path"));
|
|
8
|
-
const
|
|
9
|
-
const
|
|
10
|
-
const
|
|
8
|
+
const AxiosClient_1 = require("../utils/AxiosClient");
|
|
9
|
+
const MissingInfo_1 = require("../exceptions/MissingInfo");
|
|
10
|
+
const Excel_1 = __importDefault(require("../utils/Excel"));
|
|
11
11
|
class AdminService {
|
|
12
12
|
constructor(adminUrl, headers, taskId) {
|
|
13
13
|
this.taskId = taskId;
|
|
14
|
-
this.axiosInstance = new
|
|
14
|
+
this.axiosInstance = new AxiosClient_1.AxiosClient(adminUrl, headers).getInstance();
|
|
15
15
|
}
|
|
16
16
|
async updateCemiarTask(status) {
|
|
17
17
|
const dateTime = new Date();
|
|
@@ -66,7 +66,7 @@ class AdminService {
|
|
|
66
66
|
}
|
|
67
67
|
catch (error) {
|
|
68
68
|
if (((_a = error === null || error === void 0 ? void 0 : error.response) === null || _a === void 0 ? void 0 : _a.status) === 400) {
|
|
69
|
-
throw new
|
|
69
|
+
throw new MissingInfo_1.MissingInfo(error.response.data.message);
|
|
70
70
|
}
|
|
71
71
|
throw error;
|
|
72
72
|
}
|
|
@@ -79,10 +79,10 @@ class AdminService {
|
|
|
79
79
|
let data = [];
|
|
80
80
|
let filePath = `./temp/Rapport ${fileName} du ${date}`;
|
|
81
81
|
if (fs_1.default.existsSync(`${filePath}.csv`)) {
|
|
82
|
-
data = await
|
|
82
|
+
data = await Excel_1.default.getFromCSV(`${filePath}.csv`);
|
|
83
83
|
}
|
|
84
84
|
else if (fs_1.default.existsSync(`${filePath}.xlsx`)) {
|
|
85
|
-
data = await
|
|
85
|
+
data = await Excel_1.default.getFromXLSX(`${filePath}.xlsx`, sheetNumber);
|
|
86
86
|
}
|
|
87
87
|
else {
|
|
88
88
|
return [];
|
|
@@ -93,10 +93,10 @@ class AdminService {
|
|
|
93
93
|
let data = [];
|
|
94
94
|
let filePath = `./test/${fileName}`;
|
|
95
95
|
if (fs_1.default.existsSync(`${filePath}.csv`)) {
|
|
96
|
-
data = await
|
|
96
|
+
data = await Excel_1.default.getFromCSV(`${filePath}.csv`);
|
|
97
97
|
}
|
|
98
98
|
else if (fs_1.default.existsSync(`${filePath}.xlsx`)) {
|
|
99
|
-
data = await
|
|
99
|
+
data = await Excel_1.default.getFromXLSX(`${filePath}.xlsx`, sheetNumber);
|
|
100
100
|
}
|
|
101
101
|
else {
|
|
102
102
|
return [];
|
|
@@ -130,12 +130,12 @@ class AdminService {
|
|
|
130
130
|
}
|
|
131
131
|
async createReport(sheatData, headers, name) {
|
|
132
132
|
if (name.includes('.xlsx')) {
|
|
133
|
-
|
|
133
|
+
Excel_1.default.createFile(sheatData, headers, name);
|
|
134
134
|
}
|
|
135
135
|
if (name.includes('.csv')) {
|
|
136
|
-
|
|
136
|
+
Excel_1.default.appendFile(headers, name);
|
|
137
137
|
for (const row of sheatData) {
|
|
138
|
-
|
|
138
|
+
Excel_1.default.appendFile(row, name);
|
|
139
139
|
}
|
|
140
140
|
}
|
|
141
141
|
}
|
|
@@ -147,7 +147,7 @@ class AdminService {
|
|
|
147
147
|
}
|
|
148
148
|
catch (error) {
|
|
149
149
|
if (((_a = error === null || error === void 0 ? void 0 : error.response) === null || _a === void 0 ? void 0 : _a.status) === 400) {
|
|
150
|
-
throw new
|
|
150
|
+
throw new MissingInfo_1.MissingInfo(error.response.data.message);
|
|
151
151
|
}
|
|
152
152
|
throw error;
|
|
153
153
|
}
|
|
@@ -160,7 +160,7 @@ class AdminService {
|
|
|
160
160
|
}
|
|
161
161
|
catch (error) {
|
|
162
162
|
if (((_a = error === null || error === void 0 ? void 0 : error.response) === null || _a === void 0 ? void 0 : _a.status) === 400) {
|
|
163
|
-
throw new
|
|
163
|
+
throw new MissingInfo_1.MissingInfo(error.response.data.message);
|
|
164
164
|
}
|
|
165
165
|
throw error;
|
|
166
166
|
}
|
|
@@ -174,7 +174,7 @@ class AdminService {
|
|
|
174
174
|
}
|
|
175
175
|
catch (error) {
|
|
176
176
|
if (((_a = error === null || error === void 0 ? void 0 : error.response) === null || _a === void 0 ? void 0 : _a.status) === 400) {
|
|
177
|
-
throw new
|
|
177
|
+
throw new MissingInfo_1.MissingInfo(error.response.data.message);
|
|
178
178
|
}
|
|
179
179
|
throw error;
|
|
180
180
|
}
|
|
@@ -1,9 +1,9 @@
|
|
|
1
1
|
"use strict";
|
|
2
2
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
3
|
-
const
|
|
3
|
+
const AxiosClient_1 = require("../utils/AxiosClient");
|
|
4
4
|
class BaseEpicService {
|
|
5
5
|
constructor(epicUrl, headers) {
|
|
6
|
-
this.axiosInstance = new
|
|
6
|
+
this.axiosInstance = new AxiosClient_1.AxiosClient(epicUrl, headers).getInstance();
|
|
7
7
|
}
|
|
8
8
|
handleError(axiosResponse) {
|
|
9
9
|
if (axiosResponse.bodyError) {
|
package/dist/services/Epic.d.ts
CHANGED
|
@@ -1,16 +1,30 @@
|
|
|
1
|
-
import {
|
|
2
|
-
import {
|
|
3
|
-
import {
|
|
4
|
-
import {
|
|
5
|
-
import {
|
|
6
|
-
import {
|
|
7
|
-
import {
|
|
8
|
-
import {
|
|
9
|
-
import {
|
|
10
|
-
import {
|
|
11
|
-
import {
|
|
12
|
-
import {
|
|
13
|
-
import {
|
|
1
|
+
import { AdditionalInterest } from "../models/epic/AdditionalInterest";
|
|
2
|
+
import { Claim } from "../models/epic/Claim";
|
|
3
|
+
import { DirectBillCommission } from "../models/epic/DirectBillCommission";
|
|
4
|
+
import { Driver } from "../models/epic/Driver";
|
|
5
|
+
import { GeneralLedgerReconcileBank } from "../models/epic/GeneralLedgerReconcileBank";
|
|
6
|
+
import { Line } from "../models/epic/Line";
|
|
7
|
+
import { PayableContract } from "../models/epic/PayableContract";
|
|
8
|
+
import { PolicyV2, PolicyV2Model } from "../models/epic/PolicyV2";
|
|
9
|
+
import { Receipt } from "../models/epic/Receipt";
|
|
10
|
+
import { RenewalStage } from "../models/epic/RenewalStage";
|
|
11
|
+
import { Vehicle } from "../models/epic/Vehicle";
|
|
12
|
+
import { Activity, CreateActivity } from "../models/epic/Activity";
|
|
13
|
+
import { Attachment, AttachmentDetail, CreateAttachment } from "../models/epic/Attachment";
|
|
14
|
+
import { CreatePolicy, Policy } from "../models/epic/Policy";
|
|
15
|
+
import { Broker } from "../models/epic/Broker";
|
|
16
|
+
import { Employee } from "../models/epic/Employee";
|
|
17
|
+
import { LookUp } from "../models/epic/Lookup";
|
|
18
|
+
import { Contact, CreateContact } from "../models/epic/Contact";
|
|
19
|
+
import { CreatePaymentTransaction, CreateTransaction, FinanceTransaction, FinanceTransactionResult, Transaction, TransactionApplyCreditsToDebits } from "../models/epic/Transaction";
|
|
20
|
+
import { Company } from "../models/epic/Company";
|
|
21
|
+
import { CreateCustomer, Customer } from "../models/epic/Customer";
|
|
22
|
+
import { Habitational } from "../models/epic/Habitational";
|
|
23
|
+
import { Commission } from "../models/epic/Commission";
|
|
24
|
+
import { Opportunity } from "../models/epic/Opportunity";
|
|
25
|
+
import BaseEpicService from "./BaseEpicService";
|
|
26
|
+
import JobEpicService from "./JobEpicService";
|
|
27
|
+
import MultiCarrierScheduleEpicService from "./MultiCarrierScheduleEpicService";
|
|
14
28
|
export default class EpicService extends BaseEpicService {
|
|
15
29
|
job: JobEpicService;
|
|
16
30
|
multiCarrierSchedule: MultiCarrierScheduleEpicService;
|
package/dist/services/Epic.js
CHANGED
|
@@ -1,12 +1,17 @@
|
|
|
1
1
|
"use strict";
|
|
2
|
+
var __importDefault = (this && this.__importDefault) || function (mod) {
|
|
3
|
+
return (mod && mod.__esModule) ? mod : { "default": mod };
|
|
4
|
+
};
|
|
2
5
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
3
|
-
const
|
|
4
|
-
const
|
|
5
|
-
|
|
6
|
+
const EpicException_1 = require("../exceptions/EpicException");
|
|
7
|
+
const BaseEpicService_1 = __importDefault(require("./BaseEpicService"));
|
|
8
|
+
const JobEpicService_1 = __importDefault(require("./JobEpicService"));
|
|
9
|
+
const MultiCarrierScheduleEpicService_1 = __importDefault(require("./MultiCarrierScheduleEpicService"));
|
|
10
|
+
class EpicService extends BaseEpicService_1.default {
|
|
6
11
|
constructor(epicUrl, headers) {
|
|
7
12
|
super(epicUrl, headers);
|
|
8
|
-
this.job = new
|
|
9
|
-
this.multiCarrierSchedule = new
|
|
13
|
+
this.job = new JobEpicService_1.default(epicUrl, headers);
|
|
14
|
+
this.multiCarrierSchedule = new MultiCarrierScheduleEpicService_1.default(epicUrl, headers);
|
|
10
15
|
}
|
|
11
16
|
async getActivity(activityId) {
|
|
12
17
|
return this.getOne('activity', activityId);
|
|
@@ -151,7 +156,7 @@ class EpicService extends index_js_1.BaseEpicService {
|
|
|
151
156
|
const { data: axiosResponse } = await this.axiosInstance.put(`transaction/applyCreditsToDebits/${transactionId}`, payload);
|
|
152
157
|
if (!axiosResponse.success) {
|
|
153
158
|
if (axiosResponse.code == '400' || axiosResponse.code == '401' || axiosResponse.code == '404') {
|
|
154
|
-
throw new
|
|
159
|
+
throw new EpicException_1.EpicException(axiosResponse.message || axiosResponse.Message);
|
|
155
160
|
}
|
|
156
161
|
throw new Error(axiosResponse.message || axiosResponse.Message);
|
|
157
162
|
}
|
|
@@ -260,7 +265,7 @@ class EpicService extends index_js_1.BaseEpicService {
|
|
|
260
265
|
const { data: axiosResponse } = await this.axiosInstance.post(`receipt/${receiptId}`, payload);
|
|
261
266
|
if (!axiosResponse.success) {
|
|
262
267
|
if (axiosResponse.code == '400' || axiosResponse.code == '401' || axiosResponse.code == '404') {
|
|
263
|
-
throw new
|
|
268
|
+
throw new EpicException_1.EpicException(axiosResponse.message || axiosResponse.Message);
|
|
264
269
|
}
|
|
265
270
|
throw new Error(axiosResponse.message || axiosResponse.Message);
|
|
266
271
|
}
|
|
@@ -1,5 +1,5 @@
|
|
|
1
|
-
import {
|
|
2
|
-
import
|
|
1
|
+
import { DirectBillCommission, Reconciliation } from "../models/epic/DirectBillCommission";
|
|
2
|
+
import BaseEpicService from "./BaseEpicService";
|
|
3
3
|
export default class JobEpicService extends BaseEpicService {
|
|
4
4
|
readonly baseUrl = "job";
|
|
5
5
|
reconcile(payload: Reconciliation): Promise<string>;
|
|
@@ -1,7 +1,10 @@
|
|
|
1
1
|
"use strict";
|
|
2
|
+
var __importDefault = (this && this.__importDefault) || function (mod) {
|
|
3
|
+
return (mod && mod.__esModule) ? mod : { "default": mod };
|
|
4
|
+
};
|
|
2
5
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
3
|
-
const
|
|
4
|
-
class JobEpicService extends
|
|
6
|
+
const BaseEpicService_1 = __importDefault(require("./BaseEpicService"));
|
|
7
|
+
class JobEpicService extends BaseEpicService_1.default {
|
|
5
8
|
constructor() {
|
|
6
9
|
super(...arguments);
|
|
7
10
|
this.baseUrl = 'job';
|
|
@@ -1,5 +1,5 @@
|
|
|
1
|
-
import {
|
|
2
|
-
import
|
|
1
|
+
import { MultiCarrierScheduleModel } from "../models/epic/MultiCarrierSchedule";
|
|
2
|
+
import BaseEpicService from "./BaseEpicService";
|
|
3
3
|
export default class MultiCarrierScheduleEpicService extends BaseEpicService {
|
|
4
4
|
readonly baseUrl = "multiCarrierSchedule";
|
|
5
5
|
getMultiCarrierSchedules(req: MultiCarrierScheduleModel.GetRequest): Promise<MultiCarrierScheduleModel.MultiCarrierSchedule[]>;
|
|
@@ -1,7 +1,10 @@
|
|
|
1
1
|
"use strict";
|
|
2
|
+
var __importDefault = (this && this.__importDefault) || function (mod) {
|
|
3
|
+
return (mod && mod.__esModule) ? mod : { "default": mod };
|
|
4
|
+
};
|
|
2
5
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
3
|
-
const
|
|
4
|
-
class MultiCarrierScheduleEpicService extends
|
|
6
|
+
const BaseEpicService_1 = __importDefault(require("./BaseEpicService"));
|
|
7
|
+
class MultiCarrierScheduleEpicService extends BaseEpicService_1.default {
|
|
5
8
|
constructor() {
|
|
6
9
|
super(...arguments);
|
|
7
10
|
this.baseUrl = 'multiCarrierSchedule';
|
package/dist/utils/Excel.d.ts
CHANGED
package/package.json
CHANGED
package/dist/index.d.ts
DELETED
|
@@ -1,7 +0,0 @@
|
|
|
1
|
-
export { default as AdminService } from './services/Admin.js';
|
|
2
|
-
export { default as BaseEpicService } from './services/BaseEpicService.js';
|
|
3
|
-
export { default as Epic } from './services/Epic.js';
|
|
4
|
-
export { default as JobEpicService } from './services/JobEpicService.js';
|
|
5
|
-
export { default as MultiCarrierScheduleEpicService } from './services/MultiCarrierScheduleEpicService.js';
|
|
6
|
-
export * as AdminModels from './models/admin/index.js';
|
|
7
|
-
export * as EpicModels from './models/epic/index.js';
|
package/dist/index.js
DELETED
|
@@ -1,54 +0,0 @@
|
|
|
1
|
-
"use strict";
|
|
2
|
-
var __createBinding = (this && this.__createBinding) || (Object.create ? (function(o, m, k, k2) {
|
|
3
|
-
if (k2 === undefined) k2 = k;
|
|
4
|
-
var desc = Object.getOwnPropertyDescriptor(m, k);
|
|
5
|
-
if (!desc || ("get" in desc ? !m.__esModule : desc.writable || desc.configurable)) {
|
|
6
|
-
desc = { enumerable: true, get: function() { return m[k]; } };
|
|
7
|
-
}
|
|
8
|
-
Object.defineProperty(o, k2, desc);
|
|
9
|
-
}) : (function(o, m, k, k2) {
|
|
10
|
-
if (k2 === undefined) k2 = k;
|
|
11
|
-
o[k2] = m[k];
|
|
12
|
-
}));
|
|
13
|
-
var __setModuleDefault = (this && this.__setModuleDefault) || (Object.create ? (function(o, v) {
|
|
14
|
-
Object.defineProperty(o, "default", { enumerable: true, value: v });
|
|
15
|
-
}) : function(o, v) {
|
|
16
|
-
o["default"] = v;
|
|
17
|
-
});
|
|
18
|
-
var __importStar = (this && this.__importStar) || (function () {
|
|
19
|
-
var ownKeys = function(o) {
|
|
20
|
-
ownKeys = Object.getOwnPropertyNames || function (o) {
|
|
21
|
-
var ar = [];
|
|
22
|
-
for (var k in o) if (Object.prototype.hasOwnProperty.call(o, k)) ar[ar.length] = k;
|
|
23
|
-
return ar;
|
|
24
|
-
};
|
|
25
|
-
return ownKeys(o);
|
|
26
|
-
};
|
|
27
|
-
return function (mod) {
|
|
28
|
-
if (mod && mod.__esModule) return mod;
|
|
29
|
-
var result = {};
|
|
30
|
-
if (mod != null) for (var k = ownKeys(mod), i = 0; i < k.length; i++) if (k[i] !== "default") __createBinding(result, mod, k[i]);
|
|
31
|
-
__setModuleDefault(result, mod);
|
|
32
|
-
return result;
|
|
33
|
-
};
|
|
34
|
-
})();
|
|
35
|
-
var __importDefault = (this && this.__importDefault) || function (mod) {
|
|
36
|
-
return (mod && mod.__esModule) ? mod : { "default": mod };
|
|
37
|
-
};
|
|
38
|
-
Object.defineProperty(exports, "__esModule", { value: true });
|
|
39
|
-
exports.EpicModels = exports.AdminModels = exports.MultiCarrierScheduleEpicService = exports.JobEpicService = exports.Epic = exports.BaseEpicService = exports.AdminService = void 0;
|
|
40
|
-
// Réexport des services
|
|
41
|
-
var Admin_js_1 = require("./services/Admin.js");
|
|
42
|
-
Object.defineProperty(exports, "AdminService", { enumerable: true, get: function () { return __importDefault(Admin_js_1).default; } });
|
|
43
|
-
var BaseEpicService_js_1 = require("./services/BaseEpicService.js");
|
|
44
|
-
Object.defineProperty(exports, "BaseEpicService", { enumerable: true, get: function () { return __importDefault(BaseEpicService_js_1).default; } });
|
|
45
|
-
var Epic_js_1 = require("./services/Epic.js");
|
|
46
|
-
Object.defineProperty(exports, "Epic", { enumerable: true, get: function () { return __importDefault(Epic_js_1).default; } });
|
|
47
|
-
var JobEpicService_js_1 = require("./services/JobEpicService.js");
|
|
48
|
-
Object.defineProperty(exports, "JobEpicService", { enumerable: true, get: function () { return __importDefault(JobEpicService_js_1).default; } });
|
|
49
|
-
var MultiCarrierScheduleEpicService_js_1 = require("./services/MultiCarrierScheduleEpicService.js");
|
|
50
|
-
Object.defineProperty(exports, "MultiCarrierScheduleEpicService", { enumerable: true, get: function () { return __importDefault(MultiCarrierScheduleEpicService_js_1).default; } });
|
|
51
|
-
// Réexport des modèles admin
|
|
52
|
-
exports.AdminModels = __importStar(require("./models/admin/index.js"));
|
|
53
|
-
// Réexport des modèles epic
|
|
54
|
-
exports.EpicModels = __importStar(require("./models/epic/index.js"));
|
|
@@ -1,9 +0,0 @@
|
|
|
1
|
-
export * from './BusMessage.js';
|
|
2
|
-
export * from './Counter.js';
|
|
3
|
-
export * from './Email.js';
|
|
4
|
-
export * from './ExcelSheet.js';
|
|
5
|
-
export * from './ExtractTable.js';
|
|
6
|
-
export * from './IDictionary.js';
|
|
7
|
-
export * from './KimobyResult.js';
|
|
8
|
-
export * from './PdfReader.js';
|
|
9
|
-
export * from './Primaco.js';
|
|
@@ -1,25 +0,0 @@
|
|
|
1
|
-
"use strict";
|
|
2
|
-
var __createBinding = (this && this.__createBinding) || (Object.create ? (function(o, m, k, k2) {
|
|
3
|
-
if (k2 === undefined) k2 = k;
|
|
4
|
-
var desc = Object.getOwnPropertyDescriptor(m, k);
|
|
5
|
-
if (!desc || ("get" in desc ? !m.__esModule : desc.writable || desc.configurable)) {
|
|
6
|
-
desc = { enumerable: true, get: function() { return m[k]; } };
|
|
7
|
-
}
|
|
8
|
-
Object.defineProperty(o, k2, desc);
|
|
9
|
-
}) : (function(o, m, k, k2) {
|
|
10
|
-
if (k2 === undefined) k2 = k;
|
|
11
|
-
o[k2] = m[k];
|
|
12
|
-
}));
|
|
13
|
-
var __exportStar = (this && this.__exportStar) || function(m, exports) {
|
|
14
|
-
for (var p in m) if (p !== "default" && !Object.prototype.hasOwnProperty.call(exports, p)) __createBinding(exports, m, p);
|
|
15
|
-
};
|
|
16
|
-
Object.defineProperty(exports, "__esModule", { value: true });
|
|
17
|
-
__exportStar(require("./BusMessage.js"), exports);
|
|
18
|
-
__exportStar(require("./Counter.js"), exports);
|
|
19
|
-
__exportStar(require("./Email.js"), exports);
|
|
20
|
-
__exportStar(require("./ExcelSheet.js"), exports);
|
|
21
|
-
__exportStar(require("./ExtractTable.js"), exports);
|
|
22
|
-
__exportStar(require("./IDictionary.js"), exports);
|
|
23
|
-
__exportStar(require("./KimobyResult.js"), exports);
|
|
24
|
-
__exportStar(require("./PdfReader.js"), exports);
|
|
25
|
-
__exportStar(require("./Primaco.js"), exports);
|
|
@@ -1,17 +0,0 @@
|
|
|
1
|
-
export * from './Activity.js';
|
|
2
|
-
export * from './Address.js';
|
|
3
|
-
export * from './Attachment.js';
|
|
4
|
-
export * from './Broker.js';
|
|
5
|
-
export * from './Commission.js';
|
|
6
|
-
export * from './Company.js';
|
|
7
|
-
export * from './Contact.js';
|
|
8
|
-
export * from './Customer.js';
|
|
9
|
-
export * from './Habitational.js';
|
|
10
|
-
export * from './Lookup.js';
|
|
11
|
-
export * from './Opportunity.js';
|
|
12
|
-
export * from './Policy.js';
|
|
13
|
-
export * from './Response.js';
|
|
14
|
-
export * from './ServiceSummary.js';
|
|
15
|
-
export * from './ServicingContact.js';
|
|
16
|
-
export * from './Transaction.js';
|
|
17
|
-
export * from './Employee.js';
|
|
@@ -1,33 +0,0 @@
|
|
|
1
|
-
"use strict";
|
|
2
|
-
var __createBinding = (this && this.__createBinding) || (Object.create ? (function(o, m, k, k2) {
|
|
3
|
-
if (k2 === undefined) k2 = k;
|
|
4
|
-
var desc = Object.getOwnPropertyDescriptor(m, k);
|
|
5
|
-
if (!desc || ("get" in desc ? !m.__esModule : desc.writable || desc.configurable)) {
|
|
6
|
-
desc = { enumerable: true, get: function() { return m[k]; } };
|
|
7
|
-
}
|
|
8
|
-
Object.defineProperty(o, k2, desc);
|
|
9
|
-
}) : (function(o, m, k, k2) {
|
|
10
|
-
if (k2 === undefined) k2 = k;
|
|
11
|
-
o[k2] = m[k];
|
|
12
|
-
}));
|
|
13
|
-
var __exportStar = (this && this.__exportStar) || function(m, exports) {
|
|
14
|
-
for (var p in m) if (p !== "default" && !Object.prototype.hasOwnProperty.call(exports, p)) __createBinding(exports, m, p);
|
|
15
|
-
};
|
|
16
|
-
Object.defineProperty(exports, "__esModule", { value: true });
|
|
17
|
-
__exportStar(require("./Activity.js"), exports);
|
|
18
|
-
__exportStar(require("./Address.js"), exports);
|
|
19
|
-
__exportStar(require("./Attachment.js"), exports);
|
|
20
|
-
__exportStar(require("./Broker.js"), exports);
|
|
21
|
-
__exportStar(require("./Commission.js"), exports);
|
|
22
|
-
__exportStar(require("./Company.js"), exports);
|
|
23
|
-
__exportStar(require("./Contact.js"), exports);
|
|
24
|
-
__exportStar(require("./Customer.js"), exports);
|
|
25
|
-
__exportStar(require("./Habitational.js"), exports);
|
|
26
|
-
__exportStar(require("./Lookup.js"), exports);
|
|
27
|
-
__exportStar(require("./Opportunity.js"), exports);
|
|
28
|
-
__exportStar(require("./Policy.js"), exports);
|
|
29
|
-
__exportStar(require("./Response.js"), exports);
|
|
30
|
-
__exportStar(require("./ServiceSummary.js"), exports);
|
|
31
|
-
__exportStar(require("./ServicingContact.js"), exports);
|
|
32
|
-
__exportStar(require("./Transaction.js"), exports);
|
|
33
|
-
__exportStar(require("./Employee.js"), exports);
|