@bisondesk/core-sdk 1.0.82 → 1.0.84
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/lib/apis/crm.d.ts +1 -0
- package/lib/apis/crm.d.ts.map +1 -1
- package/lib/apis/crm.js +17 -2
- package/lib/apis/crm.js.map +1 -1
- package/lib/constants.d.ts +2 -1
- package/lib/constants.d.ts.map +1 -1
- package/lib/constants.js +1 -0
- package/lib/constants.js.map +1 -1
- package/lib/types/crm.d.ts +1 -2
- package/lib/types/crm.d.ts.map +1 -1
- package/lib/types/leasing.d.ts +13 -0
- package/lib/types/leasing.d.ts.map +1 -1
- package/lib/types/messages.d.ts +26 -0
- package/lib/types/messages.d.ts.map +1 -1
- package/lib/types/templates.d.ts +3 -3
- package/lib/types/templates.d.ts.map +1 -1
- package/lib/types/tenants.d.ts +1 -0
- package/lib/types/tenants.d.ts.map +1 -1
- package/lib/types/vehicles.d.ts +2 -2
- package/lib/types/vehicles.d.ts.map +1 -1
- package/package.json +2 -2
- package/src/apis/crm.ts +24 -1
- package/src/constants.ts +1 -0
- package/src/types/crm.ts +1 -2
- package/src/types/leasing.ts +14 -0
- package/src/types/messages.ts +31 -0
- package/src/types/templates.ts +3 -3
- package/src/types/tenants.ts +1 -0
- package/src/types/vehicles.ts +2 -2
- package/tsconfig.tsbuildinfo +365 -21
package/lib/apis/crm.d.ts
CHANGED
|
@@ -2,4 +2,5 @@ import { Contact, Organization } from '../types/crm';
|
|
|
2
2
|
export declare const getCrmOrganization: (tenantId: string, organizationId: string) => Promise<Organization | undefined>;
|
|
3
3
|
export declare const getCrmOrganizationByExternalId: (tenantId: string, externalId: string) => Promise<Organization | undefined>;
|
|
4
4
|
export declare const listCrmContacts: (tenantId: string, organizationId: string) => Promise<Contact[]>;
|
|
5
|
+
export declare const getCrmContact: (tenantId: string, contactId: string) => Promise<Contact | undefined>;
|
|
5
6
|
//# sourceMappingURL=crm.d.ts.map
|
package/lib/apis/crm.d.ts.map
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"crm.d.ts","sourceRoot":"","sources":["../../src/apis/crm.ts"],"names":[],"mappings":"AAGA,OAAO,EAAE,OAAO,EAAE,YAAY,EAAE,MAAM,cAAc,CAAC;AAGrD,eAAO,MAAM,kBAAkB,aACnB,MAAM,kBACA,MAAM,KACrB,QAAQ,YAAY,GAAG,SAAS,CAkBlC,CAAC;AAEF,eAAO,MAAM,8BAA8B,aAC/B,MAAM,cACJ,MAAM,KACjB,QAAQ,YAAY,GAAG,SAAS,CAkBlC,CAAC;AAEF,eAAO,MAAM,eAAe,aAChB,MAAM,kBACA,MAAM,KACrB,QAAQ,OAAO,EAAE,CAkBnB,CAAC"}
|
|
1
|
+
{"version":3,"file":"crm.d.ts","sourceRoot":"","sources":["../../src/apis/crm.ts"],"names":[],"mappings":"AAGA,OAAO,EAAE,OAAO,EAAE,YAAY,EAAE,MAAM,cAAc,CAAC;AAGrD,eAAO,MAAM,kBAAkB,aACnB,MAAM,kBACA,MAAM,KACrB,QAAQ,YAAY,GAAG,SAAS,CAkBlC,CAAC;AAEF,eAAO,MAAM,8BAA8B,aAC/B,MAAM,cACJ,MAAM,KACjB,QAAQ,YAAY,GAAG,SAAS,CAkBlC,CAAC;AAEF,eAAO,MAAM,eAAe,aAChB,MAAM,kBACA,MAAM,KACrB,QAAQ,OAAO,EAAE,CAkBnB,CAAC;AAEF,eAAO,MAAM,aAAa,aACd,MAAM,aACL,MAAM,KAChB,QAAQ,OAAO,GAAG,SAAS,CAkB7B,CAAC"}
|
package/lib/apis/crm.js
CHANGED
|
@@ -3,14 +3,14 @@ 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.listCrmContacts = exports.getCrmOrganizationByExternalId = exports.getCrmOrganization = void 0;
|
|
6
|
+
exports.getCrmContact = exports.listCrmContacts = exports.getCrmOrganizationByExternalId = exports.getCrmOrganization = void 0;
|
|
7
7
|
const constants_1 = require("@bisondesk/commons-sdk/lib/constants");
|
|
8
8
|
const errors_1 = require("@bisondesk/commons/lib/errors");
|
|
9
9
|
const node_fetch_1 = __importDefault(require("node-fetch"));
|
|
10
10
|
const utils_1 = require("./utils");
|
|
11
11
|
const getCrmOrganization = async (tenantId, organizationId) => {
|
|
12
12
|
const auth = await utils_1.getAdminAuth();
|
|
13
|
-
const response = await node_fetch_1.default(`${process.env.CORE_API_ORIGIN}/
|
|
13
|
+
const response = await node_fetch_1.default(`${process.env.CORE_API_ORIGIN}/api/crm/organizations/${organizationId}`, {
|
|
14
14
|
headers: {
|
|
15
15
|
Authorization: auth,
|
|
16
16
|
[constants_1.TENANT_ID_ADMIN_HEADER]: tenantId,
|
|
@@ -53,4 +53,19 @@ const listCrmContacts = async (tenantId, organizationId) => {
|
|
|
53
53
|
throw new errors_1.XError(response.statusText, { body });
|
|
54
54
|
};
|
|
55
55
|
exports.listCrmContacts = listCrmContacts;
|
|
56
|
+
const getCrmContact = async (tenantId, contactId) => {
|
|
57
|
+
const auth = await utils_1.getAdminAuth();
|
|
58
|
+
const response = await node_fetch_1.default(`${process.env.CORE_API_ORIGIN}/api/crm/contacts/${contactId}`, {
|
|
59
|
+
headers: {
|
|
60
|
+
Authorization: auth,
|
|
61
|
+
[constants_1.TENANT_ID_ADMIN_HEADER]: tenantId,
|
|
62
|
+
},
|
|
63
|
+
});
|
|
64
|
+
if (response.ok) {
|
|
65
|
+
return response.status === 200 ? response.json() : undefined;
|
|
66
|
+
}
|
|
67
|
+
const body = await response.text();
|
|
68
|
+
throw new errors_1.XError(response.statusText, { body });
|
|
69
|
+
};
|
|
70
|
+
exports.getCrmContact = getCrmContact;
|
|
56
71
|
//# sourceMappingURL=crm.js.map
|
package/lib/apis/crm.js.map
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"crm.js","sourceRoot":"","sources":["../../src/apis/crm.ts"],"names":[],"mappings":";;;;;;AAAA,oEAA8E;AAC9E,0DAAuD;AACvD,4DAA6C;AAE7C,mCAAuC;AAEhC,MAAM,kBAAkB,GAAG,KAAK,EACrC,QAAgB,EAChB,cAAsB,EACa,EAAE;IACrC,MAAM,IAAI,GAAG,MAAM,oBAAY,EAAE,CAAC;IAClC,MAAM,QAAQ,GAAa,MAAM,oBAAK,CACpC,GAAG,OAAO,CAAC,GAAG,CAAC,eAAe,
|
|
1
|
+
{"version":3,"file":"crm.js","sourceRoot":"","sources":["../../src/apis/crm.ts"],"names":[],"mappings":"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"}
|
package/lib/constants.d.ts
CHANGED
|
@@ -18,7 +18,8 @@ export declare enum BusinessEntityIds {
|
|
|
18
18
|
Contacts = "contacts",
|
|
19
19
|
Vehicles = "vehicles",
|
|
20
20
|
Users = "users",
|
|
21
|
-
LeasingContracts = "leasing_contracts"
|
|
21
|
+
LeasingContracts = "leasing_contracts",
|
|
22
|
+
Emails = "emails"
|
|
22
23
|
}
|
|
23
24
|
export declare enum Categories {
|
|
24
25
|
TractorHead = "Tractor Head",
|
package/lib/constants.d.ts.map
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"constants.d.ts","sourceRoot":"","sources":["../src/constants.ts"],"names":[],"mappings":"AAGA,eAAO,MAAM,yBAAyB,iBAAiB,CAAC;AACxD,eAAO,MAAM,4BAA4B,oBAAoB,CAAC;AAC9D,eAAO,MAAM,qBAAqB,cAAc,CAAC;AACjD,eAAO,MAAM,qBAAqB,cAAc,CAAC;AAKjD,eAAO,MAAM,qBAAqB,aAAa,CAAC;AAChD,eAAO,MAAM,kBAAkB,UAAU,CAAC;AAC1C,eAAO,MAAM,sBAAsB,aAAa,CAAC;AACjD,eAAO,MAAM,0BAA0B,kBAAkB,CAAC;AAC1D,eAAO,MAAM,qBAAqB,aAAa,CAAC;AAChD,eAAO,MAAM,yBAAyB,YAAY,CAAC;AACnD,eAAO,MAAM,iBAAiB,SAAS,CAAC;AACxC,eAAO,MAAM,uBAAuB,eAAe,CAAC;AACpD,eAAO,MAAM,uBAAuB,eAAe,CAAC;AACpD,eAAO,MAAM,wBAAwB,YAAY,CAAC;AAKlD,oBAAY,iBAAiB;IAC3B,KAAK,UAAU;IACf,aAAa,kBAAkB;IAC/B,QAAQ,aAAa;IACrB,QAAQ,aAAa;IACrB,KAAK,UAAU;IACf,gBAAgB,sBAAsB;
|
|
1
|
+
{"version":3,"file":"constants.d.ts","sourceRoot":"","sources":["../src/constants.ts"],"names":[],"mappings":"AAGA,eAAO,MAAM,yBAAyB,iBAAiB,CAAC;AACxD,eAAO,MAAM,4BAA4B,oBAAoB,CAAC;AAC9D,eAAO,MAAM,qBAAqB,cAAc,CAAC;AACjD,eAAO,MAAM,qBAAqB,cAAc,CAAC;AAKjD,eAAO,MAAM,qBAAqB,aAAa,CAAC;AAChD,eAAO,MAAM,kBAAkB,UAAU,CAAC;AAC1C,eAAO,MAAM,sBAAsB,aAAa,CAAC;AACjD,eAAO,MAAM,0BAA0B,kBAAkB,CAAC;AAC1D,eAAO,MAAM,qBAAqB,aAAa,CAAC;AAChD,eAAO,MAAM,yBAAyB,YAAY,CAAC;AACnD,eAAO,MAAM,iBAAiB,SAAS,CAAC;AACxC,eAAO,MAAM,uBAAuB,eAAe,CAAC;AACpD,eAAO,MAAM,uBAAuB,eAAe,CAAC;AACpD,eAAO,MAAM,wBAAwB,YAAY,CAAC;AAKlD,oBAAY,iBAAiB;IAC3B,KAAK,UAAU;IACf,aAAa,kBAAkB;IAC/B,QAAQ,aAAa;IACrB,QAAQ,aAAa;IACrB,KAAK,UAAU;IACf,gBAAgB,sBAAsB;IACtC,MAAM,WAAW;CAClB;AAKD,oBAAY,UAAU;IACpB,WAAW,iBAAiB;IAC5B,KAAK,UAAU;IACf,OAAO,YAAY;IACnB,WAAW,iBAAiB;IAC5B,GAAG,QAAQ;IACX,OAAO,YAAY;CACpB;AAKD,eAAO,MAAM,iBAAiB,QAAS,CAAC;AACxC,eAAO,MAAM,iBAAiB,IAAI,CAAC;AAKnC,eAAO,MAAM,sBAAsB,OAAO,CAAC;AAC3C,eAAO,MAAM,yBAAyB,OAAO,CAAC;AAK9C,eAAO,MAAM,OAAO,KAAK,CAAC;AAC1B,eAAO,MAAM,MAAM,UAAY,CAAC;AAChC,eAAO,MAAM,SAAS,SAAU,CAAC;AACjC,eAAO,MAAM,cAAc,OAAO,CAAC;AACnC,eAAO,MAAM,WAAW,SAAU,CAAC"}
|
package/lib/constants.js
CHANGED
|
@@ -32,6 +32,7 @@ var BusinessEntityIds;
|
|
|
32
32
|
BusinessEntityIds["Vehicles"] = "vehicles";
|
|
33
33
|
BusinessEntityIds["Users"] = "users";
|
|
34
34
|
BusinessEntityIds["LeasingContracts"] = "leasing_contracts";
|
|
35
|
+
BusinessEntityIds["Emails"] = "emails";
|
|
35
36
|
})(BusinessEntityIds = exports.BusinessEntityIds || (exports.BusinessEntityIds = {}));
|
|
36
37
|
//
|
|
37
38
|
// STATIC VALUES FOR VEHICLE CATEGORIES
|
package/lib/constants.js.map
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"constants.js","sourceRoot":"","sources":["../src/constants.ts"],"names":[],"mappings":";;;AAAA,EAAE;AACF,sBAAsB;AACtB,EAAE;AACW,QAAA,yBAAyB,GAAG,cAAc,CAAC;AAC3C,QAAA,4BAA4B,GAAG,iBAAiB,CAAC;AACjD,QAAA,qBAAqB,GAAG,WAAW,CAAC;AACpC,QAAA,qBAAqB,GAAG,WAAW,CAAC;AAEjD,EAAE;AACF,oCAAoC;AACpC,EAAE;AACW,QAAA,qBAAqB,GAAG,UAAU,CAAC;AACnC,QAAA,kBAAkB,GAAG,OAAO,CAAC;AAC7B,QAAA,sBAAsB,GAAG,UAAU,CAAC;AACpC,QAAA,0BAA0B,GAAG,eAAe,CAAC;AAC7C,QAAA,qBAAqB,GAAG,UAAU,CAAC;AACnC,QAAA,yBAAyB,GAAG,SAAS,CAAC;AACtC,QAAA,iBAAiB,GAAG,MAAM,CAAC;AAC3B,QAAA,uBAAuB,GAAG,YAAY,CAAC;AACvC,QAAA,uBAAuB,GAAG,YAAY,CAAC;AACvC,QAAA,wBAAwB,GAAG,SAAS,CAAC;AAElD,EAAE;AACF,uCAAuC;AACvC,EAAE;AACF,IAAY,
|
|
1
|
+
{"version":3,"file":"constants.js","sourceRoot":"","sources":["../src/constants.ts"],"names":[],"mappings":";;;AAAA,EAAE;AACF,sBAAsB;AACtB,EAAE;AACW,QAAA,yBAAyB,GAAG,cAAc,CAAC;AAC3C,QAAA,4BAA4B,GAAG,iBAAiB,CAAC;AACjD,QAAA,qBAAqB,GAAG,WAAW,CAAC;AACpC,QAAA,qBAAqB,GAAG,WAAW,CAAC;AAEjD,EAAE;AACF,oCAAoC;AACpC,EAAE;AACW,QAAA,qBAAqB,GAAG,UAAU,CAAC;AACnC,QAAA,kBAAkB,GAAG,OAAO,CAAC;AAC7B,QAAA,sBAAsB,GAAG,UAAU,CAAC;AACpC,QAAA,0BAA0B,GAAG,eAAe,CAAC;AAC7C,QAAA,qBAAqB,GAAG,UAAU,CAAC;AACnC,QAAA,yBAAyB,GAAG,SAAS,CAAC;AACtC,QAAA,iBAAiB,GAAG,MAAM,CAAC;AAC3B,QAAA,uBAAuB,GAAG,YAAY,CAAC;AACvC,QAAA,uBAAuB,GAAG,YAAY,CAAC;AACvC,QAAA,wBAAwB,GAAG,SAAS,CAAC;AAElD,EAAE;AACF,uCAAuC;AACvC,EAAE;AACF,IAAY,iBAQX;AARD,WAAY,iBAAiB;IAC3B,oCAAe,CAAA;IACf,oDAA+B,CAAA;IAC/B,0CAAqB,CAAA;IACrB,0CAAqB,CAAA;IACrB,oCAAe,CAAA;IACf,2DAAsC,CAAA;IACtC,sCAAiB,CAAA;AACnB,CAAC,EARW,iBAAiB,GAAjB,yBAAiB,KAAjB,yBAAiB,QAQ5B;AAED,EAAE;AACF,uCAAuC;AACvC,EAAE;AACF,IAAY,UAOX;AAPD,WAAY,UAAU;IACpB,0CAA4B,CAAA;IAC5B,6BAAe,CAAA;IACf,iCAAmB,CAAA;IACnB,0CAA4B,CAAA;IAC5B,yBAAW,CAAA;IACX,iCAAmB,CAAA;AACrB,CAAC,EAPW,UAAU,GAAV,kBAAU,KAAV,kBAAU,QAOrB;AAED,EAAE;AACF,qBAAqB;AACrB,EAAE;AACW,QAAA,iBAAiB,GAAG,KAAM,CAAC;AAC3B,QAAA,iBAAiB,GAAG,CAAC,CAAC;AAEnC,EAAE;AACF,SAAS;AACT,EAAE;AACW,QAAA,sBAAsB,GAAG,IAAI,CAAC;AAC9B,QAAA,yBAAyB,GAAG,IAAI,CAAC;AAE9C,EAAE;AACF,iBAAiB;AACjB,EAAE;AACW,QAAA,OAAO,GAAG,EAAE,CAAC;AACb,QAAA,MAAM,GAAG,OAAS,CAAC;AACnB,QAAA,SAAS,GAAG,MAAO,CAAC;AACpB,QAAA,cAAc,GAAG,IAAI,CAAC;AACtB,QAAA,WAAW,GAAG,MAAO,CAAC"}
|
package/lib/types/crm.d.ts
CHANGED
|
@@ -35,12 +35,11 @@ export declare type Organization = {
|
|
|
35
35
|
accountManagers: string[];
|
|
36
36
|
};
|
|
37
37
|
export declare type OrganizationDebtInfo = {
|
|
38
|
-
|
|
38
|
+
overdueSince?: string;
|
|
39
39
|
overdueInvoices: number;
|
|
40
40
|
overdueAmount: string;
|
|
41
41
|
unpaidInvoices: number;
|
|
42
42
|
unpaidAmount: string;
|
|
43
|
-
currency: string;
|
|
44
43
|
};
|
|
45
44
|
export declare type SearchOrganization = {
|
|
46
45
|
org: Organization;
|
package/lib/types/crm.d.ts.map
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"crm.d.ts","sourceRoot":"","sources":["../../src/types/crm.ts"],"names":[],"mappings":"AAAA,OAAO,EACL,aAAa,EACb,gBAAgB,EAChB,iBAAiB,EAClB,MAAM,kCAAkC,CAAC;AAC1C,OAAO,EAAE,sBAAsB,EAAE,MAAM,eAAe,CAAC;AAEvD,oBAAY,QAAQ,GAAG,oBAAoB,GAAG,eAAe,CAAC;AAE9D,oBAAY,eAAe,GAAG;IAC5B,EAAE,EAAE,MAAM,CAAC;IACX,cAAc,EAAE,MAAM,CAAC;IACvB,MAAM,EAAE,QAAQ,GAAG,QAAQ,CAAC;IAC5B,QAAQ,EAAE,MAAM,CAAC;IACjB,MAAM,EAAE,MAAM,CAAC;IACf,QAAQ,EAAE,MAAM,CAAC;CAClB,CAAC;AAEF,oBAAY,oBAAoB,GAAG;IACjC,EAAE,EAAE,MAAM,CAAC;IACX,MAAM,EAAE,QAAQ,GAAG,QAAQ,CAAC;IAC5B,QAAQ,EAAE,MAAM,CAAC;IACjB,MAAM,EAAE,MAAM,CAAC;IACf,QAAQ,EAAE,MAAM,CAAC;CAClB,CAAC;AAEF,oBAAY,YAAY,GAAG;IACzB,KAAK,EAAE,OAAO,CAAC;IACf,WAAW,EAAE,MAAM,CAAC;IACpB,SAAS,EAAE,MAAM,CAAC;IAClB,SAAS,EAAE,MAAM,CAAC;IAClB,QAAQ,EAAE,MAAM,CAAC;IACjB,UAAU,EAAE,MAAM,CAAC;IACnB,EAAE,EAAE,MAAM,CAAC;IACX,IAAI,EAAE,MAAM,CAAC;IACb,OAAO,CAAC,EAAE,MAAM,CAAC;IACjB,IAAI,CAAC,EAAE,SAAS,GAAG,YAAY,CAAC;IAChC,SAAS,CAAC,EAAE,MAAM,CAAC;IACnB,SAAS,CAAC,EAAE;QACV,KAAK,CAAC,EAAE,aAAa,CAAC;KACvB,CAAC;IACF,IAAI,CAAC,EAAE,oBAAoB,CAAC;IAC5B,eAAe,EAAE,MAAM,EAAE,CAAC;CAC3B,CAAC;AAEF,oBAAY,oBAAoB,GAAG;IACjC,
|
|
1
|
+
{"version":3,"file":"crm.d.ts","sourceRoot":"","sources":["../../src/types/crm.ts"],"names":[],"mappings":"AAAA,OAAO,EACL,aAAa,EACb,gBAAgB,EAChB,iBAAiB,EAClB,MAAM,kCAAkC,CAAC;AAC1C,OAAO,EAAE,sBAAsB,EAAE,MAAM,eAAe,CAAC;AAEvD,oBAAY,QAAQ,GAAG,oBAAoB,GAAG,eAAe,CAAC;AAE9D,oBAAY,eAAe,GAAG;IAC5B,EAAE,EAAE,MAAM,CAAC;IACX,cAAc,EAAE,MAAM,CAAC;IACvB,MAAM,EAAE,QAAQ,GAAG,QAAQ,CAAC;IAC5B,QAAQ,EAAE,MAAM,CAAC;IACjB,MAAM,EAAE,MAAM,CAAC;IACf,QAAQ,EAAE,MAAM,CAAC;CAClB,CAAC;AAEF,oBAAY,oBAAoB,GAAG;IACjC,EAAE,EAAE,MAAM,CAAC;IACX,MAAM,EAAE,QAAQ,GAAG,QAAQ,CAAC;IAC5B,QAAQ,EAAE,MAAM,CAAC;IACjB,MAAM,EAAE,MAAM,CAAC;IACf,QAAQ,EAAE,MAAM,CAAC;CAClB,CAAC;AAEF,oBAAY,YAAY,GAAG;IACzB,KAAK,EAAE,OAAO,CAAC;IACf,WAAW,EAAE,MAAM,CAAC;IACpB,SAAS,EAAE,MAAM,CAAC;IAClB,SAAS,EAAE,MAAM,CAAC;IAClB,QAAQ,EAAE,MAAM,CAAC;IACjB,UAAU,EAAE,MAAM,CAAC;IACnB,EAAE,EAAE,MAAM,CAAC;IACX,IAAI,EAAE,MAAM,CAAC;IACb,OAAO,CAAC,EAAE,MAAM,CAAC;IACjB,IAAI,CAAC,EAAE,SAAS,GAAG,YAAY,CAAC;IAChC,SAAS,CAAC,EAAE,MAAM,CAAC;IACnB,SAAS,CAAC,EAAE;QACV,KAAK,CAAC,EAAE,aAAa,CAAC;KACvB,CAAC;IACF,IAAI,CAAC,EAAE,oBAAoB,CAAC;IAC5B,eAAe,EAAE,MAAM,EAAE,CAAC;CAC3B,CAAC;AAEF,oBAAY,oBAAoB,GAAG;IACjC,YAAY,CAAC,EAAE,MAAM,CAAC;IACtB,eAAe,EAAE,MAAM,CAAC;IACxB,aAAa,EAAE,MAAM,CAAC;IACtB,cAAc,EAAE,MAAM,CAAC;IACvB,YAAY,EAAE,MAAM,CAAC;CACtB,CAAC;AAEF,oBAAY,kBAAkB,GAAG;IAC/B,GAAG,EAAE,YAAY,CAAC;CACnB,CAAC;AAEF,oBAAY,uBAAuB,GAAG,kBAAkB,GAAG;IACzD,WAAW,EAAE,iBAAiB,CAAC;CAChC,CAAC;AAEF,oBAAY,aAAa,GAAG;IAC1B,OAAO,EAAE,OAAO,CAAC;IACjB,GAAG,EAAE,YAAY,CAAC;CACnB,CAAC;AAEF,oBAAY,kBAAkB,GAAG,aAAa,GAAG;IAC/C,WAAW,EAAE,iBAAiB,CAAC;CAChC,CAAC;AAEF,oBAAY,0BAA0B,GAAG;IACvC,SAAS,EAAE,sBAAsB,CAAC;IAClC,aAAa,EAAE,sBAAsB,CAAC;CACvC,CAAC;AAEF,oBAAY,OAAO,GAAG;IACpB,EAAE,EAAE,MAAM,CAAC;IACX,cAAc,EAAE,MAAM,CAAC;IACvB,cAAc,CAAC,EAAE,MAAM,CAAC;IACxB,QAAQ,CAAC,EAAE,MAAM,CAAC;IAClB,SAAS,CAAC,EAAE,MAAM,CAAC;IACnB,QAAQ,EAAE,MAAM,CAAC;IACjB,SAAS,EAAE,MAAM,CAAC;IAClB,SAAS,EAAE,MAAM,CAAC;IAClB,MAAM,EAAE,gBAAgB,EAAE,CAAC;IAC3B,MAAM,EAAE,MAAM,EAAE,CAAC;IACjB,GAAG,CAAC,EAAE,MAAM,CAAC;CACd,CAAC"}
|
package/lib/types/leasing.d.ts
CHANGED
|
@@ -1,6 +1,7 @@
|
|
|
1
1
|
import { SearchPermissions } from '@bisondesk/commons-sdk/lib/types';
|
|
2
2
|
import { Organization } from './crm';
|
|
3
3
|
import { PublicSearchDefinition } from './definitions';
|
|
4
|
+
import { EmailMessage } from './messages';
|
|
4
5
|
import { Vehicle } from './vehicles';
|
|
5
6
|
export declare type LeasingPublicSearchDefinitions = {
|
|
6
7
|
searchLeasingContract: PublicSearchDefinition;
|
|
@@ -31,6 +32,17 @@ export declare type SearchLeasingContract = {
|
|
|
31
32
|
export declare type InputSearchLeasingContract = SearchLeasingContract & {
|
|
32
33
|
permissions: SearchPermissions;
|
|
33
34
|
};
|
|
35
|
+
export declare type OverdueDossier = {
|
|
36
|
+
id: string;
|
|
37
|
+
organizationId: string;
|
|
38
|
+
status: 'ONGOING' | 'ERROR' | 'SUCCESS' | 'EXPIRED';
|
|
39
|
+
emails: EmailMessage[];
|
|
40
|
+
createdAt: string;
|
|
41
|
+
modifiedAt: string;
|
|
42
|
+
completedAt?: string;
|
|
43
|
+
nextActionAt: string;
|
|
44
|
+
riskLevel: number;
|
|
45
|
+
};
|
|
34
46
|
export declare type LeasingContract = {
|
|
35
47
|
id: string;
|
|
36
48
|
createdAt: string;
|
|
@@ -42,6 +54,7 @@ export declare type LeasingContract = {
|
|
|
42
54
|
client: {
|
|
43
55
|
organizationId: string;
|
|
44
56
|
contactIds: string[];
|
|
57
|
+
email?: string;
|
|
45
58
|
};
|
|
46
59
|
vehicle: {
|
|
47
60
|
id: string;
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"leasing.d.ts","sourceRoot":"","sources":["../../src/types/leasing.ts"],"names":[],"mappings":"AAAA,OAAO,EAAE,iBAAiB,EAAE,MAAM,kCAAkC,CAAC;AACrE,OAAO,EAAE,YAAY,EAAE,MAAM,OAAO,CAAC;AACrC,OAAO,EAAE,sBAAsB,EAAE,MAAM,eAAe,CAAC;AACvD,OAAO,EAAE,OAAO,EAAE,MAAM,YAAY,CAAC;AAErC,oBAAY,8BAA8B,GAAG;IAC3C,qBAAqB,EAAE,sBAAsB,CAAC;CAC/C,CAAC;AAEF,oBAAY,oBAAoB,GAAG;IACjC,EAAE,EAAE,MAAM,CAAC;IACX,MAAM,EAAE,QAAQ,GAAG,QAAQ,CAAC;IAC5B,QAAQ,EAAE,MAAM,CAAC;IACjB,MAAM,EAAE,MAAM,CAAC;IACf,QAAQ,EAAE,MAAM,CAAC;CAClB,CAAC;AAEF,oBAAY,0BAA0B,GAAG;IACvC,QAAQ,EAAE,MAAM,CAAC;CAClB,CAAC;AAEF,oBAAY,qBAAqB,GAAG;IAClC,EAAE,EAAE,MAAM,CAAC;IACX,MAAM,EAAE,QAAQ,CAAC;IACjB,QAAQ,EAAE,MAAM,CAAC;IACjB,MAAM,EAAE,MAAM,CAAC;IACf,QAAQ,EAAE,MAAM,CAAC;CAClB,CAAC;AAEF,oBAAY,qBAAqB,GAAG;IAClC,QAAQ,EAAE,eAAe,CAAC;IAC1B,UAAU,EAAE,IAAI,CAAC,iBAAiB,EAAE,QAAQ,GAAG,SAAS,CAAC,CAAC;IAC1D,GAAG,EAAE,YAAY,CAAC;IAClB,OAAO,EAAE,OAAO,CAAC;CAClB,CAAC;AAEF,oBAAY,0BAA0B,GAAG,qBAAqB,GAAG;IAC/D,WAAW,EAAE,iBAAiB,CAAC;CAChC,CAAC;AAEF,oBAAY,eAAe,GAAG;IAC5B,EAAE,EAAE,MAAM,CAAC;IACX,SAAS,EAAE,MAAM,CAAC;IAClB,SAAS,EAAE,MAAM,CAAC;IAElB,cAAc,EAAE,MAAM,CAAC;IACvB,SAAS,EAAE,MAAM,CAAC;IAElB,cAAc,CAAC,EAAE,MAAM,CAAC;IACxB,MAAM,CAAC,EAAE,MAAM,CAAC;IAEhB,MAAM,EAAE;QACN,cAAc,EAAE,MAAM,CAAC;QACvB,UAAU,EAAE,MAAM,EAAE,CAAC;
|
|
1
|
+
{"version":3,"file":"leasing.d.ts","sourceRoot":"","sources":["../../src/types/leasing.ts"],"names":[],"mappings":"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"}
|
package/lib/types/messages.d.ts
CHANGED
|
@@ -18,10 +18,36 @@ export declare type EmailContent = {
|
|
|
18
18
|
export declare type EmailMessage = {
|
|
19
19
|
id: string;
|
|
20
20
|
sentAt: string;
|
|
21
|
+
sentBy: string;
|
|
21
22
|
content?: AttachmentValue;
|
|
22
23
|
subject: string;
|
|
23
24
|
source: EmailAddress;
|
|
24
25
|
replyTo?: EmailAddress;
|
|
25
26
|
destinations: EmailDestination[];
|
|
26
27
|
};
|
|
28
|
+
export declare type EmailMessageEvent = {
|
|
29
|
+
tenantId: string;
|
|
30
|
+
message: EmailMessage;
|
|
31
|
+
};
|
|
32
|
+
export declare type TemplatedEmailRequest = {
|
|
33
|
+
data: Record<string, unknown>;
|
|
34
|
+
destinations: EmailDestination[];
|
|
35
|
+
replyTo?: EmailAddress;
|
|
36
|
+
source: EmailAddress;
|
|
37
|
+
subject: string;
|
|
38
|
+
template: string;
|
|
39
|
+
};
|
|
40
|
+
export declare type EmailRequest = {
|
|
41
|
+
destinations: EmailDestination[];
|
|
42
|
+
replyTo?: EmailAddress;
|
|
43
|
+
source: EmailAddress;
|
|
44
|
+
subject: string;
|
|
45
|
+
body: {
|
|
46
|
+
text?: string;
|
|
47
|
+
html: string;
|
|
48
|
+
} | {
|
|
49
|
+
html?: string;
|
|
50
|
+
text: string;
|
|
51
|
+
};
|
|
52
|
+
};
|
|
27
53
|
//# sourceMappingURL=messages.d.ts.map
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"messages.d.ts","sourceRoot":"","sources":["../../src/types/messages.ts"],"names":[],"mappings":"AAAA,OAAO,EAAE,eAAe,EAAE,MAAM,UAAU,CAAC;AAE3C,oBAAY,YAAY,GAAG;IACzB,IAAI,CAAC,EAAE,MAAM,CAAC;IACd,KAAK,EAAE,MAAM,CAAC;CACf,CAAC;AAEF,oBAAY,gBAAgB,GAAG,YAAY,GAAG;IAC5C,cAAc,CAAC,EAAE,MAAM,CAAC;IACxB,SAAS,CAAC,EAAE,MAAM,CAAC;IACnB,WAAW,EAAE,IAAI,GAAG,IAAI,GAAG,KAAK,CAAC;CAClC,CAAC;AAEF,oBAAY,YAAY,GAAG;IACzB,OAAO,EAAE,MAAM,CAAC;IAChB,IAAI,EAAE;QACJ,IAAI,CAAC,EAAE,MAAM,CAAC;QACd,IAAI,CAAC,EAAE,MAAM,CAAC;KACf,CAAC;CACH,CAAC;AAEF,oBAAY,YAAY,GAAG;IACzB,EAAE,EAAE,MAAM,CAAC;IACX,MAAM,EAAE,MAAM,CAAC;IACf,OAAO,CAAC,EAAE,eAAe,CAAC;IAC1B,OAAO,EAAE,MAAM,CAAC;IAChB,MAAM,EAAE,YAAY,CAAC;IACrB,OAAO,CAAC,EAAE,YAAY,CAAC;IACvB,YAAY,EAAE,gBAAgB,EAAE,CAAC;CAClC,CAAC"}
|
|
1
|
+
{"version":3,"file":"messages.d.ts","sourceRoot":"","sources":["../../src/types/messages.ts"],"names":[],"mappings":"AAAA,OAAO,EAAE,eAAe,EAAE,MAAM,UAAU,CAAC;AAE3C,oBAAY,YAAY,GAAG;IACzB,IAAI,CAAC,EAAE,MAAM,CAAC;IACd,KAAK,EAAE,MAAM,CAAC;CACf,CAAC;AAEF,oBAAY,gBAAgB,GAAG,YAAY,GAAG;IAC5C,cAAc,CAAC,EAAE,MAAM,CAAC;IACxB,SAAS,CAAC,EAAE,MAAM,CAAC;IACnB,WAAW,EAAE,IAAI,GAAG,IAAI,GAAG,KAAK,CAAC;CAClC,CAAC;AAEF,oBAAY,YAAY,GAAG;IACzB,OAAO,EAAE,MAAM,CAAC;IAChB,IAAI,EAAE;QACJ,IAAI,CAAC,EAAE,MAAM,CAAC;QACd,IAAI,CAAC,EAAE,MAAM,CAAC;KACf,CAAC;CACH,CAAC;AAEF,oBAAY,YAAY,GAAG;IACzB,EAAE,EAAE,MAAM,CAAC;IACX,MAAM,EAAE,MAAM,CAAC;IACf,MAAM,EAAE,MAAM,CAAC;IACf,OAAO,CAAC,EAAE,eAAe,CAAC;IAC1B,OAAO,EAAE,MAAM,CAAC;IAChB,MAAM,EAAE,YAAY,CAAC;IACrB,OAAO,CAAC,EAAE,YAAY,CAAC;IACvB,YAAY,EAAE,gBAAgB,EAAE,CAAC;CAClC,CAAC;AAEF,oBAAY,iBAAiB,GAAG;IAC9B,QAAQ,EAAE,MAAM,CAAC;IACjB,OAAO,EAAE,YAAY,CAAC;CACvB,CAAC;AAEF,oBAAY,qBAAqB,GAAG;IAClC,IAAI,EAAE,MAAM,CAAC,MAAM,EAAE,OAAO,CAAC,CAAC;IAC9B,YAAY,EAAE,gBAAgB,EAAE,CAAC;IACjC,OAAO,CAAC,EAAE,YAAY,CAAC;IACvB,MAAM,EAAE,YAAY,CAAC;IACrB,OAAO,EAAE,MAAM,CAAC;IAChB,QAAQ,EAAE,MAAM,CAAC;CAClB,CAAC;AAEF,oBAAY,YAAY,GAAG;IACzB,YAAY,EAAE,gBAAgB,EAAE,CAAC;IACjC,OAAO,CAAC,EAAE,YAAY,CAAC;IACvB,MAAM,EAAE,YAAY,CAAC;IACrB,OAAO,EAAE,MAAM,CAAC;IAChB,IAAI,EACA;QACE,IAAI,CAAC,EAAE,MAAM,CAAC;QACd,IAAI,EAAE,MAAM,CAAC;KACd,GACD;QACE,IAAI,CAAC,EAAE,MAAM,CAAC;QACd,IAAI,EAAE,MAAM,CAAC;KACd,CAAC;CACP,CAAC"}
|
package/lib/types/templates.d.ts
CHANGED
|
@@ -15,19 +15,19 @@ export declare type TemplateContent = {
|
|
|
15
15
|
};
|
|
16
16
|
export declare type NewTemplateRequest = {
|
|
17
17
|
id?: string;
|
|
18
|
-
|
|
18
|
+
country: string;
|
|
19
19
|
name: string;
|
|
20
20
|
} & TemplateContent;
|
|
21
21
|
export declare type Template = {
|
|
22
22
|
id: string;
|
|
23
23
|
modifiedAt: string;
|
|
24
24
|
modifiedBy: string;
|
|
25
|
-
|
|
25
|
+
country: string;
|
|
26
26
|
name: string;
|
|
27
27
|
} & TemplateContent;
|
|
28
28
|
export declare type TemplateInfo = {
|
|
29
29
|
id: string;
|
|
30
|
-
|
|
30
|
+
countries: string[];
|
|
31
31
|
modifiedAt: string;
|
|
32
32
|
name: string;
|
|
33
33
|
type: TemplateType;
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"templates.d.ts","sourceRoot":"","sources":["../../src/types/templates.ts"],"names":[],"mappings":"AAAA,oBAAY,YAAY;IACtB,KAAK,UAAU;IACf,GAAG,QAAQ;CACZ;AAED,oBAAY,eAAe,GACvB;IACE,IAAI,EAAE,YAAY,CAAC,KAAK,CAAC;IACzB,OAAO,EAAE,MAAM,CAAC;IAChB,OAAO,EAAE;QACP,IAAI,EAAE,MAAM,CAAC;QACb,MAAM,EAAE,GAAG,CAAC;KACb,CAAC;CACH,GACD;IACE,IAAI,EAAE,YAAY,CAAC,GAAG,CAAC;IACvB,OAAO,EAAE,MAAM,CAAC;CACjB,CAAC;AAEN,oBAAY,kBAAkB,GAAG;IAC/B,EAAE,CAAC,EAAE,MAAM,CAAC;IACZ,
|
|
1
|
+
{"version":3,"file":"templates.d.ts","sourceRoot":"","sources":["../../src/types/templates.ts"],"names":[],"mappings":"AAAA,oBAAY,YAAY;IACtB,KAAK,UAAU;IACf,GAAG,QAAQ;CACZ;AAED,oBAAY,eAAe,GACvB;IACE,IAAI,EAAE,YAAY,CAAC,KAAK,CAAC;IACzB,OAAO,EAAE,MAAM,CAAC;IAChB,OAAO,EAAE;QACP,IAAI,EAAE,MAAM,CAAC;QACb,MAAM,EAAE,GAAG,CAAC;KACb,CAAC;CACH,GACD;IACE,IAAI,EAAE,YAAY,CAAC,GAAG,CAAC;IACvB,OAAO,EAAE,MAAM,CAAC;CACjB,CAAC;AAEN,oBAAY,kBAAkB,GAAG;IAC/B,EAAE,CAAC,EAAE,MAAM,CAAC;IACZ,OAAO,EAAE,MAAM,CAAC;IAChB,IAAI,EAAE,MAAM,CAAC;CACd,GAAG,eAAe,CAAC;AAEpB,oBAAY,QAAQ,GAAG;IACrB,EAAE,EAAE,MAAM,CAAC;IACX,UAAU,EAAE,MAAM,CAAC;IACnB,UAAU,EAAE,MAAM,CAAC;IACnB,OAAO,EAAE,MAAM,CAAC;IAChB,IAAI,EAAE,MAAM,CAAC;CACd,GAAG,eAAe,CAAC;AAEpB,oBAAY,YAAY,GAAG;IACzB,EAAE,EAAE,MAAM,CAAC;IACX,SAAS,EAAE,MAAM,EAAE,CAAC;IACpB,UAAU,EAAE,MAAM,CAAC;IACnB,IAAI,EAAE,MAAM,CAAC;IACb,IAAI,EAAE,YAAY,CAAC;CACpB,CAAC"}
|
package/lib/types/tenants.d.ts
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"tenants.d.ts","sourceRoot":"","sources":["../../src/types/tenants.ts"],"names":[],"mappings":"AAAA,OAAO,EAAE,MAAM,EAAE,MAAM,kCAAkC,CAAC;AAE1D,oBAAY,MAAM,GAAG;IACnB,EAAE,EAAE,MAAM,CAAC;IACX,OAAO,EAAE,MAAM,CAAC;IAChB,MAAM,EAAE,MAAM,CAAC;IACf,IAAI,EAAE,MAAM,CAAC;IACb,SAAS,EAAE,CAAC,MAAM,EAAE,GAAG,MAAM,EAAE,CAAC,CAAC;IACjC,SAAS,EAAE,MAAM,CAAC;IAClB,QAAQ,EAAE,MAAM,CAAC;IACjB,WAAW,CAAC,EAAE,MAAM,EAAE,CAAC;
|
|
1
|
+
{"version":3,"file":"tenants.d.ts","sourceRoot":"","sources":["../../src/types/tenants.ts"],"names":[],"mappings":"AAAA,OAAO,EAAE,MAAM,EAAE,MAAM,kCAAkC,CAAC;AAE1D,oBAAY,MAAM,GAAG;IACnB,EAAE,EAAE,MAAM,CAAC;IACX,OAAO,EAAE,MAAM,CAAC;IAChB,MAAM,EAAE,MAAM,CAAC;IACf,IAAI,EAAE,MAAM,CAAC;IACb,SAAS,EAAE,CAAC,MAAM,EAAE,GAAG,MAAM,EAAE,CAAC,CAAC;IACjC,SAAS,EAAE,MAAM,CAAC;IAClB,QAAQ,EAAE,MAAM,CAAC;IACjB,WAAW,CAAC,EAAE,MAAM,EAAE,CAAC;IACvB,WAAW,EAAE,MAAM,CAAC;CAIrB,CAAC;AAEF,oBAAY,gBAAgB,GAAG;IAC7B,MAAM,EAAE,OAAO,CAAC;CACjB,CAAC;AAEF,oBAAY,WAAW,GAAG;IACxB,MAAM,EAAE,OAAO,CAAC;CACjB,CAAC;AAEF,oBAAY,kBAAkB,GAAG;IAC/B,QAAQ,EAAE,MAAM,CAAC;IACjB,YAAY,EAAE,gBAAgB,GAAG,SAAS,CAAC;IAC3C,OAAO,EAAE,WAAW,GAAG,SAAS,CAAC;CAClC,CAAC"}
|
package/lib/types/vehicles.d.ts
CHANGED
|
@@ -154,8 +154,8 @@ export declare type VehicleExtarnalInfo = {
|
|
|
154
154
|
height?: number;
|
|
155
155
|
length?: number;
|
|
156
156
|
width?: number;
|
|
157
|
-
extended?:
|
|
158
|
-
heightened?:
|
|
157
|
+
extended?: string;
|
|
158
|
+
heightened?: string;
|
|
159
159
|
};
|
|
160
160
|
extendable?: boolean;
|
|
161
161
|
highPressurePump?: boolean;
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"vehicles.d.ts","sourceRoot":"","sources":["../../src/types/vehicles.ts"],"names":[],"mappings":"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
|
|
1
|
+
{"version":3,"file":"vehicles.d.ts","sourceRoot":"","sources":["../../src/types/vehicles.ts"],"names":[],"mappings":"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"}
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@bisondesk/core-sdk",
|
|
3
|
-
"version": "1.0.
|
|
3
|
+
"version": "1.0.84",
|
|
4
4
|
"description": "",
|
|
5
5
|
"scripts": {
|
|
6
6
|
"clean": "rm -rf build dist lib *.tsbuildinfo",
|
|
@@ -11,7 +11,7 @@
|
|
|
11
11
|
},
|
|
12
12
|
"author": "Ivo Anastácio",
|
|
13
13
|
"dependencies": {
|
|
14
|
-
"@bisondesk/commons-sdk": "1.0.
|
|
14
|
+
"@bisondesk/commons-sdk": "1.0.84",
|
|
15
15
|
"joi": "17.4.0",
|
|
16
16
|
"lru-cache": "6.0.0"
|
|
17
17
|
},
|
package/src/apis/crm.ts
CHANGED
|
@@ -10,7 +10,7 @@ export const getCrmOrganization = async (
|
|
|
10
10
|
): Promise<Organization | undefined> => {
|
|
11
11
|
const auth = await getAdminAuth();
|
|
12
12
|
const response: Response = await fetch(
|
|
13
|
-
`${process.env.CORE_API_ORIGIN}/
|
|
13
|
+
`${process.env.CORE_API_ORIGIN}/api/crm/organizations/${organizationId}`,
|
|
14
14
|
{
|
|
15
15
|
headers: {
|
|
16
16
|
Authorization: auth,
|
|
@@ -72,3 +72,26 @@ export const listCrmContacts = async (
|
|
|
72
72
|
const body = await response.text();
|
|
73
73
|
throw new XError(response.statusText, { body });
|
|
74
74
|
};
|
|
75
|
+
|
|
76
|
+
export const getCrmContact = async (
|
|
77
|
+
tenantId: string,
|
|
78
|
+
contactId: string
|
|
79
|
+
): Promise<Contact | undefined> => {
|
|
80
|
+
const auth = await getAdminAuth();
|
|
81
|
+
const response: Response = await fetch(
|
|
82
|
+
`${process.env.CORE_API_ORIGIN}/api/crm/contacts/${contactId}`,
|
|
83
|
+
{
|
|
84
|
+
headers: {
|
|
85
|
+
Authorization: auth,
|
|
86
|
+
[TENANT_ID_ADMIN_HEADER]: tenantId,
|
|
87
|
+
},
|
|
88
|
+
}
|
|
89
|
+
);
|
|
90
|
+
|
|
91
|
+
if (response.ok) {
|
|
92
|
+
return response.status === 200 ? response.json() : undefined;
|
|
93
|
+
}
|
|
94
|
+
|
|
95
|
+
const body = await response.text();
|
|
96
|
+
throw new XError(response.statusText, { body });
|
|
97
|
+
};
|
package/src/constants.ts
CHANGED
package/src/types/crm.ts
CHANGED
|
@@ -44,12 +44,11 @@ export type Organization = {
|
|
|
44
44
|
};
|
|
45
45
|
|
|
46
46
|
export type OrganizationDebtInfo = {
|
|
47
|
-
|
|
47
|
+
overdueSince?: string;
|
|
48
48
|
overdueInvoices: number;
|
|
49
49
|
overdueAmount: string;
|
|
50
50
|
unpaidInvoices: number;
|
|
51
51
|
unpaidAmount: string;
|
|
52
|
-
currency: string;
|
|
53
52
|
};
|
|
54
53
|
|
|
55
54
|
export type SearchOrganization = {
|
package/src/types/leasing.ts
CHANGED
|
@@ -1,6 +1,7 @@
|
|
|
1
1
|
import { SearchPermissions } from '@bisondesk/commons-sdk/lib/types';
|
|
2
2
|
import { Organization } from './crm';
|
|
3
3
|
import { PublicSearchDefinition } from './definitions';
|
|
4
|
+
import { EmailMessage } from './messages';
|
|
4
5
|
import { Vehicle } from './vehicles';
|
|
5
6
|
|
|
6
7
|
export type LeasingPublicSearchDefinitions = {
|
|
@@ -38,6 +39,18 @@ export type InputSearchLeasingContract = SearchLeasingContract & {
|
|
|
38
39
|
permissions: SearchPermissions;
|
|
39
40
|
};
|
|
40
41
|
|
|
42
|
+
export type OverdueDossier = {
|
|
43
|
+
id: string;
|
|
44
|
+
organizationId: string;
|
|
45
|
+
status: 'ONGOING' | 'ERROR' | 'SUCCESS' | 'EXPIRED';
|
|
46
|
+
emails: EmailMessage[];
|
|
47
|
+
createdAt: string;
|
|
48
|
+
modifiedAt: string;
|
|
49
|
+
completedAt?: string;
|
|
50
|
+
nextActionAt: string;
|
|
51
|
+
riskLevel: number;
|
|
52
|
+
};
|
|
53
|
+
|
|
41
54
|
export type LeasingContract = {
|
|
42
55
|
id: string;
|
|
43
56
|
createdAt: string;
|
|
@@ -52,6 +65,7 @@ export type LeasingContract = {
|
|
|
52
65
|
client: {
|
|
53
66
|
organizationId: string;
|
|
54
67
|
contactIds: string[];
|
|
68
|
+
email?: string;
|
|
55
69
|
};
|
|
56
70
|
|
|
57
71
|
vehicle: {
|
package/src/types/messages.ts
CHANGED
|
@@ -22,9 +22,40 @@ export type EmailContent = {
|
|
|
22
22
|
export type EmailMessage = {
|
|
23
23
|
id: string;
|
|
24
24
|
sentAt: string;
|
|
25
|
+
sentBy: string;
|
|
25
26
|
content?: AttachmentValue;
|
|
26
27
|
subject: string;
|
|
27
28
|
source: EmailAddress;
|
|
28
29
|
replyTo?: EmailAddress;
|
|
29
30
|
destinations: EmailDestination[];
|
|
30
31
|
};
|
|
32
|
+
|
|
33
|
+
export type EmailMessageEvent = {
|
|
34
|
+
tenantId: string;
|
|
35
|
+
message: EmailMessage;
|
|
36
|
+
};
|
|
37
|
+
|
|
38
|
+
export type TemplatedEmailRequest = {
|
|
39
|
+
data: Record<string, unknown>;
|
|
40
|
+
destinations: EmailDestination[];
|
|
41
|
+
replyTo?: EmailAddress;
|
|
42
|
+
source: EmailAddress;
|
|
43
|
+
subject: string;
|
|
44
|
+
template: string;
|
|
45
|
+
};
|
|
46
|
+
|
|
47
|
+
export type EmailRequest = {
|
|
48
|
+
destinations: EmailDestination[];
|
|
49
|
+
replyTo?: EmailAddress;
|
|
50
|
+
source: EmailAddress;
|
|
51
|
+
subject: string;
|
|
52
|
+
body:
|
|
53
|
+
| {
|
|
54
|
+
text?: string;
|
|
55
|
+
html: string;
|
|
56
|
+
}
|
|
57
|
+
| {
|
|
58
|
+
html?: string;
|
|
59
|
+
text: string;
|
|
60
|
+
};
|
|
61
|
+
};
|
package/src/types/templates.ts
CHANGED
|
@@ -19,7 +19,7 @@ export type TemplateContent =
|
|
|
19
19
|
|
|
20
20
|
export type NewTemplateRequest = {
|
|
21
21
|
id?: string;
|
|
22
|
-
|
|
22
|
+
country: string;
|
|
23
23
|
name: string;
|
|
24
24
|
} & TemplateContent;
|
|
25
25
|
|
|
@@ -27,13 +27,13 @@ export type Template = {
|
|
|
27
27
|
id: string;
|
|
28
28
|
modifiedAt: string;
|
|
29
29
|
modifiedBy: string;
|
|
30
|
-
|
|
30
|
+
country: string;
|
|
31
31
|
name: string;
|
|
32
32
|
} & TemplateContent;
|
|
33
33
|
|
|
34
34
|
export type TemplateInfo = {
|
|
35
35
|
id: string;
|
|
36
|
-
|
|
36
|
+
countries: string[];
|
|
37
37
|
modifiedAt: string;
|
|
38
38
|
name: string;
|
|
39
39
|
type: TemplateType;
|
package/src/types/tenants.ts
CHANGED
package/src/types/vehicles.ts
CHANGED
|
@@ -163,8 +163,8 @@ export type VehicleExtarnalInfo = {
|
|
|
163
163
|
height?: number;
|
|
164
164
|
length?: number;
|
|
165
165
|
width?: number;
|
|
166
|
-
extended?:
|
|
167
|
-
heightened?:
|
|
166
|
+
extended?: string; // L1, L2, ...
|
|
167
|
+
heightened?: string; // H1, H2, ...
|
|
168
168
|
};
|
|
169
169
|
extendable?: boolean;
|
|
170
170
|
highPressurePump?: boolean;
|
package/tsconfig.tsbuildinfo
CHANGED
|
@@ -217,8 +217,8 @@
|
|
|
217
217
|
"affectsGlobalScope": true
|
|
218
218
|
},
|
|
219
219
|
"./src/constants.ts": {
|
|
220
|
-
"version": "
|
|
221
|
-
"signature": "
|
|
220
|
+
"version": "e1b45f29f7b3c574b3156599b54181583514799acb57165f3fcc0ad20cf6161c",
|
|
221
|
+
"signature": "647bab4010f28de36db7655e162ed24f8fc0255cb501ac681e2a8cfe796b3d13",
|
|
222
222
|
"affectsGlobalScope": false
|
|
223
223
|
},
|
|
224
224
|
"../commons-sdk/lib/constants.d.ts": {
|
|
@@ -502,8 +502,8 @@
|
|
|
502
502
|
"affectsGlobalScope": false
|
|
503
503
|
},
|
|
504
504
|
"./src/types/crm.ts": {
|
|
505
|
-
"version": "
|
|
506
|
-
"signature": "
|
|
505
|
+
"version": "734b026f3c9c6a0e57e7f6c6d85063df12b8989156632478d5505bdaec8c2ca1",
|
|
506
|
+
"signature": "340c1927fdc81294cd72e6ded06c8ea5743c533c825c4ae5e954437af32c2c9c",
|
|
507
507
|
"affectsGlobalScope": false
|
|
508
508
|
},
|
|
509
509
|
"../commons/lib/secrets.d.ts": {
|
|
@@ -522,23 +522,28 @@
|
|
|
522
522
|
"affectsGlobalScope": false
|
|
523
523
|
},
|
|
524
524
|
"./src/apis/crm.ts": {
|
|
525
|
-
"version": "
|
|
526
|
-
"signature": "
|
|
525
|
+
"version": "954abf0cbf0c26df201eaebe1fab9bc198d515c9f928443eeb452e6943940675",
|
|
526
|
+
"signature": "8fb68e95e7ba48f6d27a1558c37d7671ef2ff2fecf01bd8a93ba83e3595e8ac5",
|
|
527
|
+
"affectsGlobalScope": false
|
|
528
|
+
},
|
|
529
|
+
"./src/types/messages.ts": {
|
|
530
|
+
"version": "2cad48f46d9b49295408abc94c8ab5c1ba9916bb777fc8a6ed7e3817dd50481a",
|
|
531
|
+
"signature": "367dcf46e7603e6a7172cd580b381287314dbfe20f0b757161254afb139eeb61",
|
|
527
532
|
"affectsGlobalScope": false
|
|
528
533
|
},
|
|
529
534
|
"../commons-sdk/lib/hyperdms.d.ts": {
|
|
530
|
-
"version": "
|
|
531
|
-
"signature": "
|
|
535
|
+
"version": "318ea0523c9b725781a9c77f2b9b36ba731390f2cb5a5571cab5a71d5cc34da8",
|
|
536
|
+
"signature": "318ea0523c9b725781a9c77f2b9b36ba731390f2cb5a5571cab5a71d5cc34da8",
|
|
532
537
|
"affectsGlobalScope": false
|
|
533
538
|
},
|
|
534
539
|
"./src/types/vehicles.ts": {
|
|
535
|
-
"version": "
|
|
536
|
-
"signature": "
|
|
540
|
+
"version": "7cead25bd0d69518cfaaa96f26c58b5eb09d98dcd54f4c3d708073e32b69a1b3",
|
|
541
|
+
"signature": "81ad0efd29ff1f189f58880820f25a41b33693b928d69fb29d37d2ee3ad71f59",
|
|
537
542
|
"affectsGlobalScope": false
|
|
538
543
|
},
|
|
539
544
|
"./src/types/leasing.ts": {
|
|
540
|
-
"version": "
|
|
541
|
-
"signature": "
|
|
545
|
+
"version": "95fb848c623463f8072a8ddff0b6522006e396bdaea093ade625bdb7e0896245",
|
|
546
|
+
"signature": "f31bd893e5711222f66afbf829f2135a58efdec8169c5ad03ce32f7b89b034c2",
|
|
542
547
|
"affectsGlobalScope": false
|
|
543
548
|
},
|
|
544
549
|
"./src/apis/leasing.ts": {
|
|
@@ -552,8 +557,8 @@
|
|
|
552
557
|
"affectsGlobalScope": false
|
|
553
558
|
},
|
|
554
559
|
"./src/types/tenants.ts": {
|
|
555
|
-
"version": "
|
|
556
|
-
"signature": "
|
|
560
|
+
"version": "122714ca0e15b93b1246e2f69970f796c9e20ec7fc27394a6a8f266a242f2372",
|
|
561
|
+
"signature": "deabfc3b99410ab72b1fcd35f93933810ed7ec87a012646e593421237f280e52",
|
|
557
562
|
"affectsGlobalScope": false
|
|
558
563
|
},
|
|
559
564
|
"./src/apis/tenants.ts": {
|
|
@@ -581,11 +586,6 @@
|
|
|
581
586
|
"signature": "24e9de967f5a92e7627ba07a19487a045f13fdf4c6624bd8c8fe00e9364b9152",
|
|
582
587
|
"affectsGlobalScope": false
|
|
583
588
|
},
|
|
584
|
-
"./src/types/messages.ts": {
|
|
585
|
-
"version": "443636a4de3a7277ed17a7325b9455f7b34f6e43509a3db787f65e280ec58518",
|
|
586
|
-
"signature": "b055b3ed1956e219510a926a26d69a16253469c71840e3fb31b30dea56f926fb",
|
|
587
|
-
"affectsGlobalScope": false
|
|
588
|
-
},
|
|
589
589
|
"./src/types/picklists.ts": {
|
|
590
590
|
"version": "8eaf2e2385ef63e1eaebec5359df54120bc05459bcc8d1967b2467ac25d6478a",
|
|
591
591
|
"signature": "b489153b83dc8d84f3c382c297a7d52d3c7dcfad31ac1d21a5b2e76f58ffbb28",
|
|
@@ -607,8 +607,8 @@
|
|
|
607
607
|
"affectsGlobalScope": false
|
|
608
608
|
},
|
|
609
609
|
"./src/types/templates.ts": {
|
|
610
|
-
"version": "
|
|
611
|
-
"signature": "
|
|
610
|
+
"version": "f2d674b93154c0642f9544edcacc185a68324df02bdc5b855b032f0684f73341",
|
|
611
|
+
"signature": "127aeeb51355293e6e5dc9b0f2a09b006c74605775319206763ef0769bfdd8fa",
|
|
612
612
|
"affectsGlobalScope": false
|
|
613
613
|
},
|
|
614
614
|
"./src/types/users.ts": {
|
|
@@ -961,6 +961,16 @@
|
|
|
961
961
|
"signature": "3ebae8c00411116a66fca65b08228ea0cf0b72724701f9b854442100aab55aba",
|
|
962
962
|
"affectsGlobalScope": false
|
|
963
963
|
},
|
|
964
|
+
"../../node_modules/@types/html-to-text/lib/block-text-builder.d.ts": {
|
|
965
|
+
"version": "84e76cf6f08d542cfef16b8f6629e89acdb56d62c96c9fca229caa9191ff3f2e",
|
|
966
|
+
"signature": "84e76cf6f08d542cfef16b8f6629e89acdb56d62c96c9fca229caa9191ff3f2e",
|
|
967
|
+
"affectsGlobalScope": false
|
|
968
|
+
},
|
|
969
|
+
"../../node_modules/@types/html-to-text/index.d.ts": {
|
|
970
|
+
"version": "ac8e046bb73d12b8d99b945616bee1a7f1ccb82f0afadf5dc70d53b63d8a784a",
|
|
971
|
+
"signature": "ac8e046bb73d12b8d99b945616bee1a7f1ccb82f0afadf5dc70d53b63d8a784a",
|
|
972
|
+
"affectsGlobalScope": false
|
|
973
|
+
},
|
|
964
974
|
"../../node_modules/@types/http-assert/index.d.ts": {
|
|
965
975
|
"version": "e98185f4249720ace1921d59c1ff4612fa5c633a183fc9bf28e2e7b8e3c7fd51",
|
|
966
976
|
"signature": "e98185f4249720ace1921d59c1ff4612fa5c633a183fc9bf28e2e7b8e3c7fd51",
|
|
@@ -1171,6 +1181,76 @@
|
|
|
1171
1181
|
"signature": "920830c0fc1a2ea223d48ba1a49d53970a018ff6d8390cfaf204f00d322b55a9",
|
|
1172
1182
|
"affectsGlobalScope": false
|
|
1173
1183
|
},
|
|
1184
|
+
"../../node_modules/@types/nodemailer/lib/dkim/index.d.ts": {
|
|
1185
|
+
"version": "bb654d426b82e0846cd4bd7de91d637039ecdfd63c94447373490178f80846fe",
|
|
1186
|
+
"signature": "bb654d426b82e0846cd4bd7de91d637039ecdfd63c94447373490178f80846fe",
|
|
1187
|
+
"affectsGlobalScope": false
|
|
1188
|
+
},
|
|
1189
|
+
"../../node_modules/@types/nodemailer/lib/mailer/mail-message.d.ts": {
|
|
1190
|
+
"version": "db90f54098b237753ac9c846e39cd49aa538dcad07a2e1c68a138f3c0f8e621d",
|
|
1191
|
+
"signature": "db90f54098b237753ac9c846e39cd49aa538dcad07a2e1c68a138f3c0f8e621d",
|
|
1192
|
+
"affectsGlobalScope": false
|
|
1193
|
+
},
|
|
1194
|
+
"../../node_modules/@types/nodemailer/lib/xoauth2.d.ts": {
|
|
1195
|
+
"version": "892f8cf5db77196b9f4da151423570a9ad92f01692740d6137c0a13a006d9121",
|
|
1196
|
+
"signature": "892f8cf5db77196b9f4da151423570a9ad92f01692740d6137c0a13a006d9121",
|
|
1197
|
+
"affectsGlobalScope": false
|
|
1198
|
+
},
|
|
1199
|
+
"../../node_modules/@types/nodemailer/lib/mailer/index.d.ts": {
|
|
1200
|
+
"version": "6e41751646fe275206d052a2e5ba87d27dd0df4dcbca134fc3fd2dc4d3d410d2",
|
|
1201
|
+
"signature": "6e41751646fe275206d052a2e5ba87d27dd0df4dcbca134fc3fd2dc4d3d410d2",
|
|
1202
|
+
"affectsGlobalScope": false
|
|
1203
|
+
},
|
|
1204
|
+
"../../node_modules/@types/nodemailer/lib/mime-node/index.d.ts": {
|
|
1205
|
+
"version": "eecb2ea10a1500dcc6bdeff14be1fb43806f63a9b8562e16e1b4fc8baa8dfa8d",
|
|
1206
|
+
"signature": "eecb2ea10a1500dcc6bdeff14be1fb43806f63a9b8562e16e1b4fc8baa8dfa8d",
|
|
1207
|
+
"affectsGlobalScope": false
|
|
1208
|
+
},
|
|
1209
|
+
"../../node_modules/@types/nodemailer/lib/smtp-connection/index.d.ts": {
|
|
1210
|
+
"version": "221a6ab66d611349faaf80af49c7a34d95623787610fd153fed4da0811abdcae",
|
|
1211
|
+
"signature": "221a6ab66d611349faaf80af49c7a34d95623787610fd153fed4da0811abdcae",
|
|
1212
|
+
"affectsGlobalScope": false
|
|
1213
|
+
},
|
|
1214
|
+
"../../node_modules/@types/nodemailer/lib/shared.d.ts": {
|
|
1215
|
+
"version": "40122dcc63746bc8827d17f5f981668844e6c12537ca3b3e5e1a35883a50d666",
|
|
1216
|
+
"signature": "40122dcc63746bc8827d17f5f981668844e6c12537ca3b3e5e1a35883a50d666",
|
|
1217
|
+
"affectsGlobalScope": false
|
|
1218
|
+
},
|
|
1219
|
+
"../../node_modules/@types/nodemailer/lib/json-transport.d.ts": {
|
|
1220
|
+
"version": "966418bf54ad347058abfd433deb2f74480e859adb80b9ddbe90bb3ada1a8eda",
|
|
1221
|
+
"signature": "966418bf54ad347058abfd433deb2f74480e859adb80b9ddbe90bb3ada1a8eda",
|
|
1222
|
+
"affectsGlobalScope": false
|
|
1223
|
+
},
|
|
1224
|
+
"../../node_modules/@types/nodemailer/lib/sendmail-transport/index.d.ts": {
|
|
1225
|
+
"version": "e79130cf2ba010f2b79747bf43b086252ad041b130768331a1144c0a86185877",
|
|
1226
|
+
"signature": "e79130cf2ba010f2b79747bf43b086252ad041b130768331a1144c0a86185877",
|
|
1227
|
+
"affectsGlobalScope": false
|
|
1228
|
+
},
|
|
1229
|
+
"../../node_modules/@types/nodemailer/lib/ses-transport.d.ts": {
|
|
1230
|
+
"version": "5945e7a91249d0dcbce4609279cb8fa95e45a4ac0edf6b81742724ed38e5018f",
|
|
1231
|
+
"signature": "5945e7a91249d0dcbce4609279cb8fa95e45a4ac0edf6b81742724ed38e5018f",
|
|
1232
|
+
"affectsGlobalScope": false
|
|
1233
|
+
},
|
|
1234
|
+
"../../node_modules/@types/nodemailer/lib/smtp-pool/index.d.ts": {
|
|
1235
|
+
"version": "dafce7a7b279977940b6b4b50017625e4f922f73094433d2875994bdc0b27e87",
|
|
1236
|
+
"signature": "dafce7a7b279977940b6b4b50017625e4f922f73094433d2875994bdc0b27e87",
|
|
1237
|
+
"affectsGlobalScope": false
|
|
1238
|
+
},
|
|
1239
|
+
"../../node_modules/@types/nodemailer/lib/smtp-transport.d.ts": {
|
|
1240
|
+
"version": "ec630acd5a4ac97faadbfff935eb00df5318a6302dd25938685ad8c25c70465c",
|
|
1241
|
+
"signature": "ec630acd5a4ac97faadbfff935eb00df5318a6302dd25938685ad8c25c70465c",
|
|
1242
|
+
"affectsGlobalScope": false
|
|
1243
|
+
},
|
|
1244
|
+
"../../node_modules/@types/nodemailer/lib/stream-transport.d.ts": {
|
|
1245
|
+
"version": "b3edafa3cb2b51781dffced9ec03613b8fe4981c44dea915f119996d201c1d03",
|
|
1246
|
+
"signature": "b3edafa3cb2b51781dffced9ec03613b8fe4981c44dea915f119996d201c1d03",
|
|
1247
|
+
"affectsGlobalScope": false
|
|
1248
|
+
},
|
|
1249
|
+
"../../node_modules/@types/nodemailer/index.d.ts": {
|
|
1250
|
+
"version": "6c559dee3c6251c261b67df08e01d4cbc89cbd7a63300150c636705733cebfff",
|
|
1251
|
+
"signature": "6c559dee3c6251c261b67df08e01d4cbc89cbd7a63300150c636705733cebfff",
|
|
1252
|
+
"affectsGlobalScope": false
|
|
1253
|
+
},
|
|
1174
1254
|
"../../node_modules/@types/normalize-package-data/index.d.ts": {
|
|
1175
1255
|
"version": "6fa0008bf91a4cc9c8963bace4bba0bd6865cbfa29c3e3ccc461155660fb113a",
|
|
1176
1256
|
"signature": "6fa0008bf91a4cc9c8963bace4bba0bd6865cbfa29c3e3ccc461155660fb113a",
|
|
@@ -1490,6 +1570,9 @@
|
|
|
1490
1570
|
"./node_modules/@types/node/fs.d.ts",
|
|
1491
1571
|
"./node_modules/@types/node/index.d.ts"
|
|
1492
1572
|
],
|
|
1573
|
+
"../../node_modules/@types/html-to-text/index.d.ts": [
|
|
1574
|
+
"../../node_modules/@types/html-to-text/lib/block-text-builder.d.ts"
|
|
1575
|
+
],
|
|
1493
1576
|
"../../node_modules/@types/istanbul-lib-report/index.d.ts": [
|
|
1494
1577
|
"../../node_modules/@types/istanbul-lib-coverage/index.d.ts"
|
|
1495
1578
|
],
|
|
@@ -1732,6 +1815,126 @@
|
|
|
1732
1815
|
"./node_modules/@types/node/index.d.ts",
|
|
1733
1816
|
"./node_modules/@types/node/url.d.ts"
|
|
1734
1817
|
],
|
|
1818
|
+
"../../node_modules/@types/nodemailer/index.d.ts": [
|
|
1819
|
+
"../../node_modules/@types/nodemailer/lib/json-transport.d.ts",
|
|
1820
|
+
"../../node_modules/@types/nodemailer/lib/mailer/index.d.ts",
|
|
1821
|
+
"../../node_modules/@types/nodemailer/lib/mailer/mail-message.d.ts",
|
|
1822
|
+
"../../node_modules/@types/nodemailer/lib/sendmail-transport/index.d.ts",
|
|
1823
|
+
"../../node_modules/@types/nodemailer/lib/ses-transport.d.ts",
|
|
1824
|
+
"../../node_modules/@types/nodemailer/lib/smtp-pool/index.d.ts",
|
|
1825
|
+
"../../node_modules/@types/nodemailer/lib/smtp-transport.d.ts",
|
|
1826
|
+
"../../node_modules/@types/nodemailer/lib/stream-transport.d.ts",
|
|
1827
|
+
"./node_modules/@types/node/index.d.ts"
|
|
1828
|
+
],
|
|
1829
|
+
"../../node_modules/@types/nodemailer/lib/dkim/index.d.ts": [
|
|
1830
|
+
"./node_modules/@types/node/index.d.ts",
|
|
1831
|
+
"./node_modules/@types/node/stream.d.ts"
|
|
1832
|
+
],
|
|
1833
|
+
"../../node_modules/@types/nodemailer/lib/json-transport.d.ts": [
|
|
1834
|
+
"../../node_modules/@types/nodemailer/index.d.ts",
|
|
1835
|
+
"../../node_modules/@types/nodemailer/lib/mailer/index.d.ts",
|
|
1836
|
+
"../../node_modules/@types/nodemailer/lib/mailer/mail-message.d.ts",
|
|
1837
|
+
"../../node_modules/@types/nodemailer/lib/mime-node/index.d.ts",
|
|
1838
|
+
"../../node_modules/@types/nodemailer/lib/shared.d.ts",
|
|
1839
|
+
"./node_modules/@types/node/events.d.ts",
|
|
1840
|
+
"./node_modules/@types/node/index.d.ts"
|
|
1841
|
+
],
|
|
1842
|
+
"../../node_modules/@types/nodemailer/lib/mailer/index.d.ts": [
|
|
1843
|
+
"../../node_modules/@types/nodemailer/index.d.ts",
|
|
1844
|
+
"../../node_modules/@types/nodemailer/lib/dkim/index.d.ts",
|
|
1845
|
+
"../../node_modules/@types/nodemailer/lib/mailer/mail-message.d.ts",
|
|
1846
|
+
"../../node_modules/@types/nodemailer/lib/mime-node/index.d.ts",
|
|
1847
|
+
"../../node_modules/@types/nodemailer/lib/shared.d.ts",
|
|
1848
|
+
"../../node_modules/@types/nodemailer/lib/smtp-connection/index.d.ts",
|
|
1849
|
+
"../../node_modules/@types/nodemailer/lib/xoauth2.d.ts",
|
|
1850
|
+
"./node_modules/@types/node/events.d.ts",
|
|
1851
|
+
"./node_modules/@types/node/index.d.ts",
|
|
1852
|
+
"./node_modules/@types/node/net.d.ts",
|
|
1853
|
+
"./node_modules/@types/node/stream.d.ts",
|
|
1854
|
+
"./node_modules/@types/node/url.d.ts"
|
|
1855
|
+
],
|
|
1856
|
+
"../../node_modules/@types/nodemailer/lib/mailer/mail-message.d.ts": [
|
|
1857
|
+
"../../node_modules/@types/nodemailer/lib/mailer/index.d.ts",
|
|
1858
|
+
"../../node_modules/@types/nodemailer/lib/mime-node/index.d.ts",
|
|
1859
|
+
"./node_modules/@types/node/index.d.ts",
|
|
1860
|
+
"./node_modules/@types/node/stream.d.ts"
|
|
1861
|
+
],
|
|
1862
|
+
"../../node_modules/@types/nodemailer/lib/mime-node/index.d.ts": [
|
|
1863
|
+
"../../node_modules/@types/nodemailer/lib/mailer/index.d.ts",
|
|
1864
|
+
"../../node_modules/@types/nodemailer/lib/smtp-connection/index.d.ts",
|
|
1865
|
+
"./node_modules/@types/node/index.d.ts",
|
|
1866
|
+
"./node_modules/@types/node/stream.d.ts"
|
|
1867
|
+
],
|
|
1868
|
+
"../../node_modules/@types/nodemailer/lib/sendmail-transport/index.d.ts": [
|
|
1869
|
+
"../../node_modules/@types/nodemailer/index.d.ts",
|
|
1870
|
+
"../../node_modules/@types/nodemailer/lib/mailer/index.d.ts",
|
|
1871
|
+
"../../node_modules/@types/nodemailer/lib/mailer/mail-message.d.ts",
|
|
1872
|
+
"../../node_modules/@types/nodemailer/lib/mime-node/index.d.ts",
|
|
1873
|
+
"../../node_modules/@types/nodemailer/lib/shared.d.ts",
|
|
1874
|
+
"./node_modules/@types/node/index.d.ts"
|
|
1875
|
+
],
|
|
1876
|
+
"../../node_modules/@types/nodemailer/lib/ses-transport.d.ts": [
|
|
1877
|
+
"../../node_modules/@types/nodemailer/index.d.ts",
|
|
1878
|
+
"../../node_modules/@types/nodemailer/lib/mailer/index.d.ts",
|
|
1879
|
+
"../../node_modules/@types/nodemailer/lib/mailer/mail-message.d.ts",
|
|
1880
|
+
"../../node_modules/@types/nodemailer/lib/mime-node/index.d.ts",
|
|
1881
|
+
"../../node_modules/@types/nodemailer/lib/shared.d.ts",
|
|
1882
|
+
"./node_modules/@types/node/events.d.ts",
|
|
1883
|
+
"./node_modules/@types/node/index.d.ts"
|
|
1884
|
+
],
|
|
1885
|
+
"../../node_modules/@types/nodemailer/lib/shared.d.ts": [
|
|
1886
|
+
"../../node_modules/@types/nodemailer/lib/smtp-connection/index.d.ts",
|
|
1887
|
+
"./node_modules/@types/node/index.d.ts",
|
|
1888
|
+
"./node_modules/@types/node/stream.d.ts"
|
|
1889
|
+
],
|
|
1890
|
+
"../../node_modules/@types/nodemailer/lib/smtp-connection/index.d.ts": [
|
|
1891
|
+
"../../node_modules/@types/nodemailer/lib/mime-node/index.d.ts",
|
|
1892
|
+
"../../node_modules/@types/nodemailer/lib/shared.d.ts",
|
|
1893
|
+
"../../node_modules/@types/nodemailer/lib/xoauth2.d.ts",
|
|
1894
|
+
"./node_modules/@types/node/events.d.ts",
|
|
1895
|
+
"./node_modules/@types/node/index.d.ts",
|
|
1896
|
+
"./node_modules/@types/node/net.d.ts",
|
|
1897
|
+
"./node_modules/@types/node/stream.d.ts",
|
|
1898
|
+
"./node_modules/@types/node/tls.d.ts"
|
|
1899
|
+
],
|
|
1900
|
+
"../../node_modules/@types/nodemailer/lib/smtp-pool/index.d.ts": [
|
|
1901
|
+
"../../node_modules/@types/nodemailer/index.d.ts",
|
|
1902
|
+
"../../node_modules/@types/nodemailer/lib/mailer/index.d.ts",
|
|
1903
|
+
"../../node_modules/@types/nodemailer/lib/mailer/mail-message.d.ts",
|
|
1904
|
+
"../../node_modules/@types/nodemailer/lib/mime-node/index.d.ts",
|
|
1905
|
+
"../../node_modules/@types/nodemailer/lib/shared.d.ts",
|
|
1906
|
+
"../../node_modules/@types/nodemailer/lib/smtp-connection/index.d.ts",
|
|
1907
|
+
"./node_modules/@types/node/events.d.ts",
|
|
1908
|
+
"./node_modules/@types/node/index.d.ts"
|
|
1909
|
+
],
|
|
1910
|
+
"../../node_modules/@types/nodemailer/lib/smtp-transport.d.ts": [
|
|
1911
|
+
"../../node_modules/@types/nodemailer/index.d.ts",
|
|
1912
|
+
"../../node_modules/@types/nodemailer/lib/mailer/index.d.ts",
|
|
1913
|
+
"../../node_modules/@types/nodemailer/lib/mailer/mail-message.d.ts",
|
|
1914
|
+
"../../node_modules/@types/nodemailer/lib/mime-node/index.d.ts",
|
|
1915
|
+
"../../node_modules/@types/nodemailer/lib/shared.d.ts",
|
|
1916
|
+
"../../node_modules/@types/nodemailer/lib/smtp-connection/index.d.ts",
|
|
1917
|
+
"../../node_modules/@types/nodemailer/lib/xoauth2.d.ts",
|
|
1918
|
+
"./node_modules/@types/node/events.d.ts",
|
|
1919
|
+
"./node_modules/@types/node/index.d.ts",
|
|
1920
|
+
"./node_modules/@types/node/stream.d.ts"
|
|
1921
|
+
],
|
|
1922
|
+
"../../node_modules/@types/nodemailer/lib/stream-transport.d.ts": [
|
|
1923
|
+
"../../node_modules/@types/nodemailer/index.d.ts",
|
|
1924
|
+
"../../node_modules/@types/nodemailer/lib/mailer/index.d.ts",
|
|
1925
|
+
"../../node_modules/@types/nodemailer/lib/mailer/mail-message.d.ts",
|
|
1926
|
+
"../../node_modules/@types/nodemailer/lib/mime-node/index.d.ts",
|
|
1927
|
+
"../../node_modules/@types/nodemailer/lib/shared.d.ts",
|
|
1928
|
+
"./node_modules/@types/node/events.d.ts",
|
|
1929
|
+
"./node_modules/@types/node/index.d.ts",
|
|
1930
|
+
"./node_modules/@types/node/stream.d.ts"
|
|
1931
|
+
],
|
|
1932
|
+
"../../node_modules/@types/nodemailer/lib/xoauth2.d.ts": [
|
|
1933
|
+
"../../node_modules/@types/nodemailer/lib/shared.d.ts",
|
|
1934
|
+
"./node_modules/@types/node/http.d.ts",
|
|
1935
|
+
"./node_modules/@types/node/index.d.ts",
|
|
1936
|
+
"./node_modules/@types/node/stream.d.ts"
|
|
1937
|
+
],
|
|
1735
1938
|
"../../node_modules/@types/pg/index.d.ts": [
|
|
1736
1939
|
"../../node_modules/@types/pg/index.d.ts",
|
|
1737
1940
|
"../../node_modules/pg-protocol/dist/messages.d.ts",
|
|
@@ -2101,6 +2304,7 @@
|
|
|
2101
2304
|
"../commons-sdk/lib/types.d.ts",
|
|
2102
2305
|
"./src/types/crm.ts",
|
|
2103
2306
|
"./src/types/definitions.ts",
|
|
2307
|
+
"./src/types/messages.ts",
|
|
2104
2308
|
"./src/types/vehicles.ts"
|
|
2105
2309
|
],
|
|
2106
2310
|
"./src/types/messages.ts": [
|
|
@@ -2373,6 +2577,9 @@
|
|
|
2373
2577
|
"./node_modules/@types/node/fs.d.ts",
|
|
2374
2578
|
"./node_modules/@types/node/index.d.ts"
|
|
2375
2579
|
],
|
|
2580
|
+
"../../node_modules/@types/html-to-text/index.d.ts": [
|
|
2581
|
+
"../../node_modules/@types/html-to-text/lib/block-text-builder.d.ts"
|
|
2582
|
+
],
|
|
2376
2583
|
"../../node_modules/@types/istanbul-lib-report/index.d.ts": [
|
|
2377
2584
|
"../../node_modules/@types/istanbul-lib-coverage/index.d.ts"
|
|
2378
2585
|
],
|
|
@@ -2615,6 +2822,126 @@
|
|
|
2615
2822
|
"./node_modules/@types/node/index.d.ts",
|
|
2616
2823
|
"./node_modules/@types/node/url.d.ts"
|
|
2617
2824
|
],
|
|
2825
|
+
"../../node_modules/@types/nodemailer/index.d.ts": [
|
|
2826
|
+
"../../node_modules/@types/nodemailer/lib/json-transport.d.ts",
|
|
2827
|
+
"../../node_modules/@types/nodemailer/lib/mailer/index.d.ts",
|
|
2828
|
+
"../../node_modules/@types/nodemailer/lib/mailer/mail-message.d.ts",
|
|
2829
|
+
"../../node_modules/@types/nodemailer/lib/sendmail-transport/index.d.ts",
|
|
2830
|
+
"../../node_modules/@types/nodemailer/lib/ses-transport.d.ts",
|
|
2831
|
+
"../../node_modules/@types/nodemailer/lib/smtp-pool/index.d.ts",
|
|
2832
|
+
"../../node_modules/@types/nodemailer/lib/smtp-transport.d.ts",
|
|
2833
|
+
"../../node_modules/@types/nodemailer/lib/stream-transport.d.ts",
|
|
2834
|
+
"./node_modules/@types/node/index.d.ts"
|
|
2835
|
+
],
|
|
2836
|
+
"../../node_modules/@types/nodemailer/lib/dkim/index.d.ts": [
|
|
2837
|
+
"./node_modules/@types/node/index.d.ts",
|
|
2838
|
+
"./node_modules/@types/node/stream.d.ts"
|
|
2839
|
+
],
|
|
2840
|
+
"../../node_modules/@types/nodemailer/lib/json-transport.d.ts": [
|
|
2841
|
+
"../../node_modules/@types/nodemailer/index.d.ts",
|
|
2842
|
+
"../../node_modules/@types/nodemailer/lib/mailer/index.d.ts",
|
|
2843
|
+
"../../node_modules/@types/nodemailer/lib/mailer/mail-message.d.ts",
|
|
2844
|
+
"../../node_modules/@types/nodemailer/lib/mime-node/index.d.ts",
|
|
2845
|
+
"../../node_modules/@types/nodemailer/lib/shared.d.ts",
|
|
2846
|
+
"./node_modules/@types/node/events.d.ts",
|
|
2847
|
+
"./node_modules/@types/node/index.d.ts"
|
|
2848
|
+
],
|
|
2849
|
+
"../../node_modules/@types/nodemailer/lib/mailer/index.d.ts": [
|
|
2850
|
+
"../../node_modules/@types/nodemailer/index.d.ts",
|
|
2851
|
+
"../../node_modules/@types/nodemailer/lib/dkim/index.d.ts",
|
|
2852
|
+
"../../node_modules/@types/nodemailer/lib/mailer/mail-message.d.ts",
|
|
2853
|
+
"../../node_modules/@types/nodemailer/lib/mime-node/index.d.ts",
|
|
2854
|
+
"../../node_modules/@types/nodemailer/lib/shared.d.ts",
|
|
2855
|
+
"../../node_modules/@types/nodemailer/lib/smtp-connection/index.d.ts",
|
|
2856
|
+
"../../node_modules/@types/nodemailer/lib/xoauth2.d.ts",
|
|
2857
|
+
"./node_modules/@types/node/events.d.ts",
|
|
2858
|
+
"./node_modules/@types/node/index.d.ts",
|
|
2859
|
+
"./node_modules/@types/node/net.d.ts",
|
|
2860
|
+
"./node_modules/@types/node/stream.d.ts",
|
|
2861
|
+
"./node_modules/@types/node/url.d.ts"
|
|
2862
|
+
],
|
|
2863
|
+
"../../node_modules/@types/nodemailer/lib/mailer/mail-message.d.ts": [
|
|
2864
|
+
"../../node_modules/@types/nodemailer/lib/mailer/index.d.ts",
|
|
2865
|
+
"../../node_modules/@types/nodemailer/lib/mime-node/index.d.ts",
|
|
2866
|
+
"./node_modules/@types/node/index.d.ts",
|
|
2867
|
+
"./node_modules/@types/node/stream.d.ts"
|
|
2868
|
+
],
|
|
2869
|
+
"../../node_modules/@types/nodemailer/lib/mime-node/index.d.ts": [
|
|
2870
|
+
"../../node_modules/@types/nodemailer/lib/mailer/index.d.ts",
|
|
2871
|
+
"../../node_modules/@types/nodemailer/lib/smtp-connection/index.d.ts",
|
|
2872
|
+
"./node_modules/@types/node/index.d.ts",
|
|
2873
|
+
"./node_modules/@types/node/stream.d.ts"
|
|
2874
|
+
],
|
|
2875
|
+
"../../node_modules/@types/nodemailer/lib/sendmail-transport/index.d.ts": [
|
|
2876
|
+
"../../node_modules/@types/nodemailer/index.d.ts",
|
|
2877
|
+
"../../node_modules/@types/nodemailer/lib/mailer/index.d.ts",
|
|
2878
|
+
"../../node_modules/@types/nodemailer/lib/mailer/mail-message.d.ts",
|
|
2879
|
+
"../../node_modules/@types/nodemailer/lib/mime-node/index.d.ts",
|
|
2880
|
+
"../../node_modules/@types/nodemailer/lib/shared.d.ts",
|
|
2881
|
+
"./node_modules/@types/node/index.d.ts"
|
|
2882
|
+
],
|
|
2883
|
+
"../../node_modules/@types/nodemailer/lib/ses-transport.d.ts": [
|
|
2884
|
+
"../../node_modules/@types/nodemailer/index.d.ts",
|
|
2885
|
+
"../../node_modules/@types/nodemailer/lib/mailer/index.d.ts",
|
|
2886
|
+
"../../node_modules/@types/nodemailer/lib/mailer/mail-message.d.ts",
|
|
2887
|
+
"../../node_modules/@types/nodemailer/lib/mime-node/index.d.ts",
|
|
2888
|
+
"../../node_modules/@types/nodemailer/lib/shared.d.ts",
|
|
2889
|
+
"./node_modules/@types/node/events.d.ts",
|
|
2890
|
+
"./node_modules/@types/node/index.d.ts"
|
|
2891
|
+
],
|
|
2892
|
+
"../../node_modules/@types/nodemailer/lib/shared.d.ts": [
|
|
2893
|
+
"../../node_modules/@types/nodemailer/lib/smtp-connection/index.d.ts",
|
|
2894
|
+
"./node_modules/@types/node/index.d.ts",
|
|
2895
|
+
"./node_modules/@types/node/stream.d.ts"
|
|
2896
|
+
],
|
|
2897
|
+
"../../node_modules/@types/nodemailer/lib/smtp-connection/index.d.ts": [
|
|
2898
|
+
"../../node_modules/@types/nodemailer/lib/mime-node/index.d.ts",
|
|
2899
|
+
"../../node_modules/@types/nodemailer/lib/shared.d.ts",
|
|
2900
|
+
"../../node_modules/@types/nodemailer/lib/xoauth2.d.ts",
|
|
2901
|
+
"./node_modules/@types/node/events.d.ts",
|
|
2902
|
+
"./node_modules/@types/node/index.d.ts",
|
|
2903
|
+
"./node_modules/@types/node/net.d.ts",
|
|
2904
|
+
"./node_modules/@types/node/stream.d.ts",
|
|
2905
|
+
"./node_modules/@types/node/tls.d.ts"
|
|
2906
|
+
],
|
|
2907
|
+
"../../node_modules/@types/nodemailer/lib/smtp-pool/index.d.ts": [
|
|
2908
|
+
"../../node_modules/@types/nodemailer/index.d.ts",
|
|
2909
|
+
"../../node_modules/@types/nodemailer/lib/mailer/index.d.ts",
|
|
2910
|
+
"../../node_modules/@types/nodemailer/lib/mailer/mail-message.d.ts",
|
|
2911
|
+
"../../node_modules/@types/nodemailer/lib/mime-node/index.d.ts",
|
|
2912
|
+
"../../node_modules/@types/nodemailer/lib/shared.d.ts",
|
|
2913
|
+
"../../node_modules/@types/nodemailer/lib/smtp-connection/index.d.ts",
|
|
2914
|
+
"./node_modules/@types/node/events.d.ts",
|
|
2915
|
+
"./node_modules/@types/node/index.d.ts"
|
|
2916
|
+
],
|
|
2917
|
+
"../../node_modules/@types/nodemailer/lib/smtp-transport.d.ts": [
|
|
2918
|
+
"../../node_modules/@types/nodemailer/index.d.ts",
|
|
2919
|
+
"../../node_modules/@types/nodemailer/lib/mailer/index.d.ts",
|
|
2920
|
+
"../../node_modules/@types/nodemailer/lib/mailer/mail-message.d.ts",
|
|
2921
|
+
"../../node_modules/@types/nodemailer/lib/mime-node/index.d.ts",
|
|
2922
|
+
"../../node_modules/@types/nodemailer/lib/shared.d.ts",
|
|
2923
|
+
"../../node_modules/@types/nodemailer/lib/smtp-connection/index.d.ts",
|
|
2924
|
+
"../../node_modules/@types/nodemailer/lib/xoauth2.d.ts",
|
|
2925
|
+
"./node_modules/@types/node/events.d.ts",
|
|
2926
|
+
"./node_modules/@types/node/index.d.ts",
|
|
2927
|
+
"./node_modules/@types/node/stream.d.ts"
|
|
2928
|
+
],
|
|
2929
|
+
"../../node_modules/@types/nodemailer/lib/stream-transport.d.ts": [
|
|
2930
|
+
"../../node_modules/@types/nodemailer/index.d.ts",
|
|
2931
|
+
"../../node_modules/@types/nodemailer/lib/mailer/index.d.ts",
|
|
2932
|
+
"../../node_modules/@types/nodemailer/lib/mailer/mail-message.d.ts",
|
|
2933
|
+
"../../node_modules/@types/nodemailer/lib/mime-node/index.d.ts",
|
|
2934
|
+
"../../node_modules/@types/nodemailer/lib/shared.d.ts",
|
|
2935
|
+
"./node_modules/@types/node/events.d.ts",
|
|
2936
|
+
"./node_modules/@types/node/index.d.ts",
|
|
2937
|
+
"./node_modules/@types/node/stream.d.ts"
|
|
2938
|
+
],
|
|
2939
|
+
"../../node_modules/@types/nodemailer/lib/xoauth2.d.ts": [
|
|
2940
|
+
"../../node_modules/@types/nodemailer/lib/shared.d.ts",
|
|
2941
|
+
"./node_modules/@types/node/http.d.ts",
|
|
2942
|
+
"./node_modules/@types/node/index.d.ts",
|
|
2943
|
+
"./node_modules/@types/node/stream.d.ts"
|
|
2944
|
+
],
|
|
2618
2945
|
"../../node_modules/@types/pg/index.d.ts": [
|
|
2619
2946
|
"../../node_modules/@types/pg/index.d.ts",
|
|
2620
2947
|
"../../node_modules/pg-protocol/dist/messages.d.ts",
|
|
@@ -2957,6 +3284,7 @@
|
|
|
2957
3284
|
"../commons-sdk/lib/types.d.ts",
|
|
2958
3285
|
"./src/types/crm.ts",
|
|
2959
3286
|
"./src/types/definitions.ts",
|
|
3287
|
+
"./src/types/messages.ts",
|
|
2960
3288
|
"./src/types/vehicles.ts"
|
|
2961
3289
|
],
|
|
2962
3290
|
"./src/types/messages.ts": [
|
|
@@ -3052,6 +3380,8 @@
|
|
|
3052
3380
|
"../../node_modules/@types/express/index.d.ts",
|
|
3053
3381
|
"../../node_modules/@types/google-libphonenumber/index.d.ts",
|
|
3054
3382
|
"../../node_modules/@types/graceful-fs/index.d.ts",
|
|
3383
|
+
"../../node_modules/@types/html-to-text/index.d.ts",
|
|
3384
|
+
"../../node_modules/@types/html-to-text/lib/block-text-builder.d.ts",
|
|
3055
3385
|
"../../node_modules/@types/http-assert/index.d.ts",
|
|
3056
3386
|
"../../node_modules/@types/http-errors/index.d.ts",
|
|
3057
3387
|
"../../node_modules/@types/istanbul-lib-coverage/index.d.ts",
|
|
@@ -3087,6 +3417,20 @@
|
|
|
3087
3417
|
"../../node_modules/@types/nanoid/index.d.ts",
|
|
3088
3418
|
"../../node_modules/@types/node-fetch/externals.d.ts",
|
|
3089
3419
|
"../../node_modules/@types/node-fetch/index.d.ts",
|
|
3420
|
+
"../../node_modules/@types/nodemailer/index.d.ts",
|
|
3421
|
+
"../../node_modules/@types/nodemailer/lib/dkim/index.d.ts",
|
|
3422
|
+
"../../node_modules/@types/nodemailer/lib/json-transport.d.ts",
|
|
3423
|
+
"../../node_modules/@types/nodemailer/lib/mailer/index.d.ts",
|
|
3424
|
+
"../../node_modules/@types/nodemailer/lib/mailer/mail-message.d.ts",
|
|
3425
|
+
"../../node_modules/@types/nodemailer/lib/mime-node/index.d.ts",
|
|
3426
|
+
"../../node_modules/@types/nodemailer/lib/sendmail-transport/index.d.ts",
|
|
3427
|
+
"../../node_modules/@types/nodemailer/lib/ses-transport.d.ts",
|
|
3428
|
+
"../../node_modules/@types/nodemailer/lib/shared.d.ts",
|
|
3429
|
+
"../../node_modules/@types/nodemailer/lib/smtp-connection/index.d.ts",
|
|
3430
|
+
"../../node_modules/@types/nodemailer/lib/smtp-pool/index.d.ts",
|
|
3431
|
+
"../../node_modules/@types/nodemailer/lib/smtp-transport.d.ts",
|
|
3432
|
+
"../../node_modules/@types/nodemailer/lib/stream-transport.d.ts",
|
|
3433
|
+
"../../node_modules/@types/nodemailer/lib/xoauth2.d.ts",
|
|
3090
3434
|
"../../node_modules/@types/normalize-package-data/index.d.ts",
|
|
3091
3435
|
"../../node_modules/@types/object-hash/index.d.ts",
|
|
3092
3436
|
"../../node_modules/@types/pg/index.d.ts",
|