cecon-interfaces 1.2.60 → 1.2.61
Sign up to get free protection for your applications and to get access to all the features.
- package/dist/app/entities/desenfila-token.entity.d.ts +6 -0
- package/dist/app/entities/desenfila-token.entity.js +21 -0
- package/dist/app/entities/desenfila.entity.d.ts +4 -3
- package/dist/app/entities/desenfila.entity.js +5 -5
- package/dist/app/entities/index.d.ts +1 -0
- package/dist/app/entities/index.js +3 -1
- package/dist/app/interfaces/i-desenfila-token.d.ts +4 -0
- package/dist/app/interfaces/i-desenfila-token.js +2 -0
- package/dist/app/interfaces/i-desenfila.d.ts +4 -3
- package/dist/app/interfaces/index.d.ts +1 -0
- package/dist/esm2022/app/entities/desenfila-token.entity.mjs +17 -0
- package/dist/esm2022/app/entities/desenfila.entity.mjs +6 -6
- package/dist/esm2022/app/entities/index.mjs +2 -1
- package/dist/esm2022/app/interfaces/i-desenfila-token.mjs +2 -0
- package/dist/esm2022/app/interfaces/i-desenfila.mjs +1 -1
- package/dist/esm2022/app/interfaces/index.mjs +1 -1
- package/dist/esm2022/evolution/entities/evolution-database-queue.entity.mjs +2 -1
- package/dist/esm2022/evolution/interfaces/i-evolution-database-queue.mjs +1 -1
- package/dist/esm2022/notification/interfaces/i-notification.mjs +1 -1
- package/dist/evolution/entities/evolution-database-queue.entity.d.ts +1 -0
- package/dist/evolution/entities/evolution-database-queue.entity.js +1 -0
- package/dist/evolution/interfaces/i-evolution-database-queue.d.ts +1 -0
- package/dist/fesm2022/cecon-interfaces.mjs +24 -6
- package/dist/fesm2022/cecon-interfaces.mjs.map +1 -1
- package/dist/notification/interfaces/i-notification.d.ts +3 -0
- package/dist/package.json +1 -1
- package/package.json +1 -1
@@ -0,0 +1,21 @@
|
|
1
|
+
"use strict";
|
2
|
+
Object.defineProperty(exports, "__esModule", { value: true });
|
3
|
+
exports.DesenfilaTokenEntity = void 0;
|
4
|
+
var DesenfilaTokenEntity = /** @class */ (function () {
|
5
|
+
// #endregion Properties (2)
|
6
|
+
// #region Constructors (1)
|
7
|
+
function DesenfilaTokenEntity(data) {
|
8
|
+
// #region Properties (2)
|
9
|
+
this.id = '';
|
10
|
+
this.prefix = '';
|
11
|
+
if (data) {
|
12
|
+
for (var key in data) {
|
13
|
+
if (data.hasOwnProperty(key) && key in this) {
|
14
|
+
this[key] = data[key];
|
15
|
+
}
|
16
|
+
}
|
17
|
+
}
|
18
|
+
}
|
19
|
+
return DesenfilaTokenEntity;
|
20
|
+
}());
|
21
|
+
exports.DesenfilaTokenEntity = DesenfilaTokenEntity;
|
@@ -1,7 +1,8 @@
|
|
1
1
|
import { IDesenfila } from '../interfaces';
|
2
|
+
import { IDesenfilaToken } from '../interfaces/i-desenfila-token';
|
2
3
|
export declare class DesenfilaEntity implements IDesenfila {
|
3
|
-
|
4
|
-
|
5
|
-
token:
|
4
|
+
containerId: string;
|
5
|
+
merchantId: string;
|
6
|
+
token: IDesenfilaToken | null;
|
6
7
|
constructor(data?: Partial<DesenfilaEntity>);
|
7
8
|
}
|
@@ -2,13 +2,13 @@
|
|
2
2
|
Object.defineProperty(exports, "__esModule", { value: true });
|
3
3
|
exports.DesenfilaEntity = void 0;
|
4
4
|
var DesenfilaEntity = /** @class */ (function () {
|
5
|
-
// #endregion Properties (
|
5
|
+
// #endregion Properties (5)
|
6
6
|
// #region Constructors (1)
|
7
7
|
function DesenfilaEntity(data) {
|
8
|
-
// #region Properties (
|
9
|
-
this.
|
10
|
-
this.
|
11
|
-
this.token =
|
8
|
+
// #region Properties (5)
|
9
|
+
this.containerId = '';
|
10
|
+
this.merchantId = '';
|
11
|
+
this.token = null;
|
12
12
|
if (data) {
|
13
13
|
for (var key in data) {
|
14
14
|
if (data.hasOwnProperty(key) && key in this) {
|
@@ -1,8 +1,10 @@
|
|
1
1
|
"use strict";
|
2
2
|
Object.defineProperty(exports, "__esModule", { value: true });
|
3
|
-
exports.RabbitEntity = exports.NatiGoEntity = exports.NatiWaEntity = exports.DesenfilaEntity = exports.AppEntity = void 0;
|
3
|
+
exports.RabbitEntity = exports.NatiGoEntity = exports.NatiWaEntity = exports.DesenfilaEntity = exports.DesenfilaTokenEntity = exports.AppEntity = void 0;
|
4
4
|
var app_entity_1 = require("./app.entity");
|
5
5
|
Object.defineProperty(exports, "AppEntity", { enumerable: true, get: function () { return app_entity_1.AppEntity; } });
|
6
|
+
var desenfila_token_entity_1 = require("./desenfila-token.entity");
|
7
|
+
Object.defineProperty(exports, "DesenfilaTokenEntity", { enumerable: true, get: function () { return desenfila_token_entity_1.DesenfilaTokenEntity; } });
|
6
8
|
var desenfila_entity_1 = require("./desenfila.entity");
|
7
9
|
Object.defineProperty(exports, "DesenfilaEntity", { enumerable: true, get: function () { return desenfila_entity_1.DesenfilaEntity; } });
|
8
10
|
var nati_wa_entity_1 = require("./nati-wa.entity");
|
@@ -0,0 +1,17 @@
|
|
1
|
+
export class DesenfilaTokenEntity {
|
2
|
+
// #region Properties (2)
|
3
|
+
id = '';
|
4
|
+
prefix = '';
|
5
|
+
// #endregion Properties (2)
|
6
|
+
// #region Constructors (1)
|
7
|
+
constructor(data) {
|
8
|
+
if (data) {
|
9
|
+
for (let key in data) {
|
10
|
+
if (data.hasOwnProperty(key) && key in this) {
|
11
|
+
this[key] = data[key];
|
12
|
+
}
|
13
|
+
}
|
14
|
+
}
|
15
|
+
}
|
16
|
+
}
|
17
|
+
//# sourceMappingURL=data:application/json;base64,eyJ2ZXJzaW9uIjozLCJmaWxlIjoiZGVzZW5maWxhLXRva2VuLmVudGl0eS5qcyIsInNvdXJjZVJvb3QiOiIiLCJzb3VyY2VzIjpbIi4uLy4uLy4uLy4uL3NyYy9hcHAvZW50aXRpZXMvZGVzZW5maWxhLXRva2VuLmVudGl0eS50cyJdLCJuYW1lcyI6W10sIm1hcHBpbmdzIjoiQUFFQSxNQUFNLE9BQU8sb0JBQW9CO0lBQy9CLHlCQUF5QjtJQUVsQixFQUFFLEdBQVcsRUFBRSxDQUFDO0lBQ2hCLE1BQU0sR0FBVyxFQUFFLENBQUM7SUFFM0IsNEJBQTRCO0lBRTVCLDJCQUEyQjtJQUUzQixZQUFZLElBQW9DO1FBQzlDLElBQUksSUFBSSxFQUFFO1lBQ1IsS0FBSyxJQUFJLEdBQUcsSUFBSSxJQUFJLEVBQUU7Z0JBQ3BCLElBQUksSUFBSSxDQUFDLGNBQWMsQ0FBQyxHQUFHLENBQUMsSUFBSSxHQUFHLElBQUksSUFBSSxFQUFFO29CQUMxQyxJQUFZLENBQUMsR0FBRyxDQUFDLEdBQUksSUFBWSxDQUFDLEdBQUcsQ0FBQyxDQUFDO2lCQUN6QzthQUNGO1NBQ0Y7SUFDSCxDQUFDO0NBR0YiLCJzb3VyY2VzQ29udGVudCI6WyJpbXBvcnQgeyBJRGVzZW5maWxhVG9rZW4gfSBmcm9tICcuLi9pbnRlcmZhY2VzL2ktZGVzZW5maWxhLXRva2VuJztcblxuZXhwb3J0IGNsYXNzIERlc2VuZmlsYVRva2VuRW50aXR5IGltcGxlbWVudHMgSURlc2VuZmlsYVRva2VuIHtcbiAgLy8gI3JlZ2lvbiBQcm9wZXJ0aWVzICgyKVxuXG4gIHB1YmxpYyBpZDogc3RyaW5nID0gJyc7XG4gIHB1YmxpYyBwcmVmaXg6IHN0cmluZyA9ICcnO1xuXG4gIC8vICNlbmRyZWdpb24gUHJvcGVydGllcyAoMilcblxuICAvLyAjcmVnaW9uIENvbnN0cnVjdG9ycyAoMSlcblxuICBjb25zdHJ1Y3RvcihkYXRhPzogUGFydGlhbDxEZXNlbmZpbGFUb2tlbkVudGl0eT4pIHtcbiAgICBpZiAoZGF0YSkge1xuICAgICAgZm9yIChsZXQga2V5IGluIGRhdGEpIHtcbiAgICAgICAgaWYgKGRhdGEuaGFzT3duUHJvcGVydHkoa2V5KSAmJiBrZXkgaW4gdGhpcykge1xuICAgICAgICAgICh0aGlzIGFzIGFueSlba2V5XSA9IChkYXRhIGFzIGFueSlba2V5XTtcbiAgICAgICAgfVxuICAgICAgfVxuICAgIH1cbiAgfVxuXG4gIC8vICNlbmRyZWdpb24gQ29uc3RydWN0b3JzICgxKVxufVxuIl19
|
@@ -1,9 +1,9 @@
|
|
1
1
|
export class DesenfilaEntity {
|
2
|
-
// #region Properties (
|
3
|
-
|
4
|
-
|
5
|
-
token =
|
6
|
-
// #endregion Properties (
|
2
|
+
// #region Properties (5)
|
3
|
+
containerId = '';
|
4
|
+
merchantId = '';
|
5
|
+
token = null;
|
6
|
+
// #endregion Properties (5)
|
7
7
|
// #region Constructors (1)
|
8
8
|
constructor(data) {
|
9
9
|
if (data) {
|
@@ -15,4 +15,4 @@ export class DesenfilaEntity {
|
|
15
15
|
}
|
16
16
|
}
|
17
17
|
}
|
18
|
-
//# sourceMappingURL=data:application/json;base64,
|
18
|
+
//# sourceMappingURL=data:application/json;base64,eyJ2ZXJzaW9uIjozLCJmaWxlIjoiZGVzZW5maWxhLmVudGl0eS5qcyIsInNvdXJjZVJvb3QiOiIiLCJzb3VyY2VzIjpbIi4uLy4uLy4uLy4uL3NyYy9hcHAvZW50aXRpZXMvZGVzZW5maWxhLmVudGl0eS50cyJdLCJuYW1lcyI6W10sIm1hcHBpbmdzIjoiQUFHQSxNQUFNLE9BQU8sZUFBZTtJQUMxQix5QkFBeUI7SUFFbEIsV0FBVyxHQUFXLEVBQUUsQ0FBQztJQUN6QixVQUFVLEdBQVcsRUFBRSxDQUFDO0lBQ3hCLEtBQUssR0FBMkIsSUFBSSxDQUFDO0lBRTVDLDRCQUE0QjtJQUU1QiwyQkFBMkI7SUFFM0IsWUFBWSxJQUErQjtRQUN6QyxJQUFJLElBQUksRUFBRTtZQUNSLEtBQUssSUFBSSxHQUFHLElBQUksSUFBSSxFQUFFO2dCQUNwQixJQUFJLElBQUksQ0FBQyxjQUFjLENBQUMsR0FBRyxDQUFDLElBQUksR0FBRyxJQUFJLElBQUksRUFBRTtvQkFDMUMsSUFBWSxDQUFDLEdBQUcsQ0FBQyxHQUFJLElBQVksQ0FBQyxHQUFHLENBQUMsQ0FBQztpQkFDekM7YUFDRjtTQUNGO0lBQ0gsQ0FBQztDQUdGIiwic291cmNlc0NvbnRlbnQiOlsiaW1wb3J0IHsgSURlc2VuZmlsYSB9IGZyb20gJy4uL2ludGVyZmFjZXMnO1xuaW1wb3J0IHsgSURlc2VuZmlsYVRva2VuIH0gZnJvbSAnLi4vaW50ZXJmYWNlcy9pLWRlc2VuZmlsYS10b2tlbic7XG5cbmV4cG9ydCBjbGFzcyBEZXNlbmZpbGFFbnRpdHkgaW1wbGVtZW50cyBJRGVzZW5maWxhIHtcbiAgLy8gI3JlZ2lvbiBQcm9wZXJ0aWVzICg1KVxuXG4gIHB1YmxpYyBjb250YWluZXJJZDogc3RyaW5nID0gJyc7XG4gIHB1YmxpYyBtZXJjaGFudElkOiBzdHJpbmcgPSAnJztcbiAgcHVibGljIHRva2VuOiBJRGVzZW5maWxhVG9rZW4gfCBudWxsID0gbnVsbDtcblxuICAvLyAjZW5kcmVnaW9uIFByb3BlcnRpZXMgKDUpXG5cbiAgLy8gI3JlZ2lvbiBDb25zdHJ1Y3RvcnMgKDEpXG5cbiAgY29uc3RydWN0b3IoZGF0YT86IFBhcnRpYWw8RGVzZW5maWxhRW50aXR5Pikge1xuICAgIGlmIChkYXRhKSB7XG4gICAgICBmb3IgKGxldCBrZXkgaW4gZGF0YSkge1xuICAgICAgICBpZiAoZGF0YS5oYXNPd25Qcm9wZXJ0eShrZXkpICYmIGtleSBpbiB0aGlzKSB7XG4gICAgICAgICAgKHRoaXMgYXMgYW55KVtrZXldID0gKGRhdGEgYXMgYW55KVtrZXldO1xuICAgICAgICB9XG4gICAgICB9XG4gICAgfVxuICB9XG5cbiAgLy8gI2VuZHJlZ2lvbiBDb25zdHJ1Y3RvcnMgKDEpXG59XG4iXX0=
|
@@ -1,6 +1,7 @@
|
|
1
1
|
export { AppEntity } from './app.entity';
|
2
|
+
export { DesenfilaTokenEntity } from './desenfila-token.entity';
|
2
3
|
export { DesenfilaEntity } from './desenfila.entity';
|
3
4
|
export { NatiWaEntity } from './nati-wa.entity';
|
4
5
|
export { NatiGoEntity } from './natigo.entity';
|
5
6
|
export { RabbitEntity } from './rabbit.entity';
|
6
|
-
//# sourceMappingURL=data:application/json;base64,
|
7
|
+
//# sourceMappingURL=data:application/json;base64,eyJ2ZXJzaW9uIjozLCJmaWxlIjoiaW5kZXguanMiLCJzb3VyY2VSb290IjoiIiwic291cmNlcyI6WyIuLi8uLi8uLi8uLi9zcmMvYXBwL2VudGl0aWVzL2luZGV4LnRzIl0sIm5hbWVzIjpbXSwibWFwcGluZ3MiOiJBQUFBLE9BQU8sRUFBRSxTQUFTLEVBQUUsTUFBTSxjQUFjLENBQUM7QUFDekMsT0FBTyxFQUFFLG9CQUFvQixFQUFFLE1BQU0sMEJBQTBCLENBQUM7QUFDaEUsT0FBTyxFQUFFLGVBQWUsRUFBRSxNQUFNLG9CQUFvQixDQUFDO0FBQ3JELE9BQU8sRUFBRSxZQUFZLEVBQUUsTUFBTSxrQkFBa0IsQ0FBQztBQUNoRCxPQUFPLEVBQUUsWUFBWSxFQUFFLE1BQU0saUJBQWlCLENBQUM7QUFDL0MsT0FBTyxFQUFFLFlBQVksRUFBRSxNQUFNLGlCQUFpQixDQUFDIiwic291cmNlc0NvbnRlbnQiOlsiZXhwb3J0IHsgQXBwRW50aXR5IH0gZnJvbSAnLi9hcHAuZW50aXR5JztcbmV4cG9ydCB7IERlc2VuZmlsYVRva2VuRW50aXR5IH0gZnJvbSAnLi9kZXNlbmZpbGEtdG9rZW4uZW50aXR5JztcbmV4cG9ydCB7IERlc2VuZmlsYUVudGl0eSB9IGZyb20gJy4vZGVzZW5maWxhLmVudGl0eSc7XG5leHBvcnQgeyBOYXRpV2FFbnRpdHkgfSBmcm9tICcuL25hdGktd2EuZW50aXR5JztcbmV4cG9ydCB7IE5hdGlHb0VudGl0eSB9IGZyb20gJy4vbmF0aWdvLmVudGl0eSc7XG5leHBvcnQgeyBSYWJiaXRFbnRpdHkgfSBmcm9tICcuL3JhYmJpdC5lbnRpdHknO1xuIl19
|
@@ -0,0 +1,2 @@
|
|
1
|
+
export {};
|
2
|
+
//# sourceMappingURL=data:application/json;base64,eyJ2ZXJzaW9uIjozLCJmaWxlIjoiaS1kZXNlbmZpbGEtdG9rZW4uanMiLCJzb3VyY2VSb290IjoiIiwic291cmNlcyI6WyIuLi8uLi8uLi8uLi9zcmMvYXBwL2ludGVyZmFjZXMvaS1kZXNlbmZpbGEtdG9rZW4udHMiXSwibmFtZXMiOltdLCJtYXBwaW5ncyI6IiIsInNvdXJjZXNDb250ZW50IjpbImV4cG9ydCBpbnRlcmZhY2UgSURlc2VuZmlsYVRva2VuIHtcbiAgLy8gI3JlZ2lvbiBQcm9wZXJ0aWVzICgyKVxuXG4gIGlkOiBzdHJpbmc7XG4gIHByZWZpeDogc3RyaW5nO1xuXG4gIC8vICNlbmRyZWdpb24gUHJvcGVydGllcyAoMilcbn1cbiJdfQ==
|
@@ -1,2 +1,2 @@
|
|
1
1
|
export {};
|
2
|
-
//# sourceMappingURL=data:application/json;base64,
|
2
|
+
//# sourceMappingURL=data:application/json;base64,eyJ2ZXJzaW9uIjozLCJmaWxlIjoiaS1kZXNlbmZpbGEuanMiLCJzb3VyY2VSb290IjoiIiwic291cmNlcyI6WyIuLi8uLi8uLi8uLi9zcmMvYXBwL2ludGVyZmFjZXMvaS1kZXNlbmZpbGEudHMiXSwibmFtZXMiOltdLCJtYXBwaW5ncyI6IiIsInNvdXJjZXNDb250ZW50IjpbImltcG9ydCB7IElEZXNlbmZpbGFUb2tlbiB9IGZyb20gJy4vaS1kZXNlbmZpbGEtdG9rZW4nO1xuXG5leHBvcnQgaW50ZXJmYWNlIElEZXNlbmZpbGEge1xuICAvLyAjcmVnaW9uIFByb3BlcnRpZXMgKDMpXG5cbiAgY29udGFpbmVySWQ6IHN0cmluZztcbiAgbWVyY2hhbnRJZDogc3RyaW5nO1xuICB0b2tlbjogSURlc2VuZmlsYVRva2VuIHwgbnVsbDtcblxuICAvLyAjZW5kcmVnaW9uIFByb3BlcnRpZXMgKDMpXG59XG4iXX0=
|
@@ -1,2 +1,2 @@
|
|
1
1
|
export {};
|
2
|
-
//# sourceMappingURL=data:application/json;base64,
|
2
|
+
//# sourceMappingURL=data:application/json;base64,eyJ2ZXJzaW9uIjozLCJmaWxlIjoiaW5kZXguanMiLCJzb3VyY2VSb290IjoiIiwic291cmNlcyI6WyIuLi8uLi8uLi8uLi9zcmMvYXBwL2ludGVyZmFjZXMvaW5kZXgudHMiXSwibmFtZXMiOltdLCJtYXBwaW5ncyI6IiIsInNvdXJjZXNDb250ZW50IjpbImV4cG9ydCB7IElBcHAgfSBmcm9tICcuL2ktYXBwJztcbmV4cG9ydCB7IElEZXNlbmZpbGEgfSBmcm9tICcuL2ktZGVzZW5maWxhJztcbmV4cG9ydCB7IElEZXNlbmZpbGFUb2tlbiB9IGZyb20gJy4vaS1kZXNlbmZpbGEtdG9rZW4nO1xuZXhwb3J0IHsgSU5hdGlXYSB9IGZyb20gJy4vaS1uYXRpLXdhJztcbmV4cG9ydCB7IElOYXRpZ28gfSBmcm9tICcuL2ktbmF0aWdvJztcbmV4cG9ydCB7IElSYWJiaXQgfSBmcm9tICcuL2ktcmFiYml0JztcbiJdfQ==
|
@@ -7,6 +7,7 @@ export class EvolutionDatabaseQueueEntity {
|
|
7
7
|
instanceName = '';
|
8
8
|
globalApikey = '';
|
9
9
|
log = [];
|
10
|
+
sendAt = 1713547959155;
|
10
11
|
notified = false;
|
11
12
|
notifiedAt = 0;
|
12
13
|
phoneNumber = '';
|
@@ -24,4 +25,4 @@ export class EvolutionDatabaseQueueEntity {
|
|
24
25
|
}
|
25
26
|
}
|
26
27
|
}
|
27
|
-
//# sourceMappingURL=data:application/json;base64,
|
28
|
+
//# sourceMappingURL=data:application/json;base64,eyJ2ZXJzaW9uIjozLCJmaWxlIjoiZXZvbHV0aW9uLWRhdGFiYXNlLXF1ZXVlLmVudGl0eS5qcyIsInNvdXJjZVJvb3QiOiIiLCJzb3VyY2VzIjpbIi4uLy4uLy4uLy4uL3NyYy9ldm9sdXRpb24vZW50aXRpZXMvZXZvbHV0aW9uLWRhdGFiYXNlLXF1ZXVlLmVudGl0eS50cyJdLCJuYW1lcyI6W10sIm1hcHBpbmdzIjoiQUFFQSxNQUFNLE9BQU8sNEJBQTRCO0lBQ3ZDLDBCQUEwQjtJQUVuQixNQUFNLEdBQVksSUFBSSxDQUFDO0lBQ3ZCLE9BQU8sR0FBVyxFQUFFLENBQUM7SUFDckIsU0FBUyxHQUFXLElBQUksQ0FBQyxHQUFHLEVBQUUsQ0FBQztJQUMvQixFQUFFLEdBQVcsRUFBRSxDQUFDO0lBQ2hCLFlBQVksR0FBVyxFQUFFLENBQUM7SUFDMUIsWUFBWSxHQUFXLEVBQUUsQ0FBQztJQUMxQixHQUFHLEdBQWEsRUFBRSxDQUFDO0lBQ25CLE1BQU0sR0FBVyxhQUFhLENBQUM7SUFDL0IsUUFBUSxHQUFZLEtBQUssQ0FBQztJQUMxQixVQUFVLEdBQVcsQ0FBQyxDQUFDO0lBQ3ZCLFdBQVcsR0FBVyxFQUFFLENBQUM7SUFDekIsSUFBSSxHQUFXLEVBQUUsQ0FBQztJQUNsQixTQUFTLEdBQVcsSUFBSSxDQUFDLEdBQUcsRUFBRSxDQUFDO0lBRXRDLDZCQUE2QjtJQUU3QiwyQkFBMkI7SUFFM0IsWUFBWSxJQUE0QztRQUN0RCxJQUFJLElBQUksRUFBRTtZQUNSLEtBQUssSUFBSSxHQUFHLElBQUksSUFBSSxFQUFFO2dCQUNwQixJQUFJLElBQUksQ0FBQyxjQUFjLENBQUMsR0FBRyxDQUFDLElBQUksR0FBRyxJQUFJLElBQUksRUFBRTtvQkFDMUMsSUFBWSxDQUFDLEdBQUcsQ0FBQyxHQUFJLElBQVksQ0FBQyxHQUFHLENBQUMsQ0FBQztpQkFDekM7YUFDRjtTQUNGO0lBQ0gsQ0FBQztDQUNGIiwic291cmNlc0NvbnRlbnQiOlsiaW1wb3J0IHsgSUV2b2x1dGlvbkRhdGFiYXNlUXVldWUgfSBmcm9tICcuLi9pbnRlcmZhY2VzL2ktZXZvbHV0aW9uLWRhdGFiYXNlLXF1ZXVlJztcblxuZXhwb3J0IGNsYXNzIEV2b2x1dGlvbkRhdGFiYXNlUXVldWVFbnRpdHkgaW1wbGVtZW50cyBJRXZvbHV0aW9uRGF0YWJhc2VRdWV1ZSB7XG4gIC8vICNyZWdpb24gUHJvcGVydGllcyAoMTEpXG5cbiAgcHVibGljIGFjdGl2ZTogYm9vbGVhbiA9IHRydWU7XG4gIHB1YmxpYyBiYXNlVXJsOiBzdHJpbmcgPSAnJztcbiAgcHVibGljIGNyZWF0ZWRBdDogbnVtYmVyID0gRGF0ZS5ub3coKTtcbiAgcHVibGljIGlkOiBzdHJpbmcgPSAnJztcbiAgcHVibGljIGluc3RhbmNlTmFtZTogc3RyaW5nID0gJyc7XG4gIHB1YmxpYyBnbG9iYWxBcGlrZXk6IHN0cmluZyA9ICcnO1xuICBwdWJsaWMgbG9nOiBzdHJpbmdbXSA9IFtdO1xuICBwdWJsaWMgc2VuZEF0OiBudW1iZXIgPSAxNzEzNTQ3OTU5MTU1O1xuICBwdWJsaWMgbm90aWZpZWQ6IGJvb2xlYW4gPSBmYWxzZTtcbiAgcHVibGljIG5vdGlmaWVkQXQ6IG51bWJlciA9IDA7XG4gIHB1YmxpYyBwaG9uZU51bWJlcjogc3RyaW5nID0gJyc7XG4gIHB1YmxpYyB0ZXh0OiBzdHJpbmcgPSAnJztcbiAgcHVibGljIHVwZGF0ZWRBdDogbnVtYmVyID0gRGF0ZS5ub3coKTtcblxuICAvLyAjZW5kcmVnaW9uIFByb3BlcnRpZXMgKDExKVxuXG4gIC8vICNyZWdpb24gQ29uc3RydWN0b3JzICgxKVxuXG4gIGNvbnN0cnVjdG9yKGRhdGE/OiBQYXJ0aWFsPEV2b2x1dGlvbkRhdGFiYXNlUXVldWVFbnRpdHk+KSB7XG4gICAgaWYgKGRhdGEpIHtcbiAgICAgIGZvciAobGV0IGtleSBpbiBkYXRhKSB7XG4gICAgICAgIGlmIChkYXRhLmhhc093blByb3BlcnR5KGtleSkgJiYga2V5IGluIHRoaXMpIHtcbiAgICAgICAgICAodGhpcyBhcyBhbnkpW2tleV0gPSAoZGF0YSBhcyBhbnkpW2tleV07XG4gICAgICAgIH1cbiAgICAgIH1cbiAgICB9XG4gIH1cbn1cbiJdfQ==
|
@@ -1,2 +1,2 @@
|
|
1
1
|
export {};
|
2
|
-
//# sourceMappingURL=data:application/json;base64,
|
2
|
+
//# sourceMappingURL=data:application/json;base64,eyJ2ZXJzaW9uIjozLCJmaWxlIjoiaS1ldm9sdXRpb24tZGF0YWJhc2UtcXVldWUuanMiLCJzb3VyY2VSb290IjoiIiwic291cmNlcyI6WyIuLi8uLi8uLi8uLi9zcmMvZXZvbHV0aW9uL2ludGVyZmFjZXMvaS1ldm9sdXRpb24tZGF0YWJhc2UtcXVldWUudHMiXSwibmFtZXMiOltdLCJtYXBwaW5ncyI6IiIsInNvdXJjZXNDb250ZW50IjpbImV4cG9ydCBpbnRlcmZhY2UgSUV2b2x1dGlvbkRhdGFiYXNlUXVldWUge1xuICAvLyAjcmVnaW9uIFByb3BlcnRpZXMgKDExKVxuXG4gIGFjdGl2ZTogYm9vbGVhbjtcbiAgYmFzZVVybDogc3RyaW5nO1xuICBjcmVhdGVkQXQ6IG51bWJlcjtcbiAgaWQ6IHN0cmluZztcbiAgZ2xvYmFsQXBpa2V5OiBzdHJpbmc7XG4gIGluc3RhbmNlTmFtZTogc3RyaW5nO1xuICBsb2c6IHN0cmluZ1tdO1xuICBub3RpZmllZDogYm9vbGVhbjtcbiAgbm90aWZpZWRBdDogbnVtYmVyO1xuICBzZW5kQXQ6IG51bWJlcjtcbiAgcGhvbmVOdW1iZXI6IHN0cmluZztcbiAgdGV4dDogc3RyaW5nO1xuICB1cGRhdGVkQXQ6IG51bWJlcjtcblxuICAvLyAjZW5kcmVnaW9uIFByb3BlcnRpZXMgKDExKVxufVxuIl19
|
@@ -1,2 +1,2 @@
|
|
1
1
|
export {};
|
2
|
-
//# sourceMappingURL=data:application/json;base64,
|
2
|
+
//# sourceMappingURL=data:application/json;base64,eyJ2ZXJzaW9uIjozLCJmaWxlIjoiaS1ub3RpZmljYXRpb24uanMiLCJzb3VyY2VSb290IjoiIiwic291cmNlcyI6WyIuLi8uLi8uLi8uLi9zcmMvbm90aWZpY2F0aW9uL2ludGVyZmFjZXMvaS1ub3RpZmljYXRpb24udHMiXSwibmFtZXMiOltdLCJtYXBwaW5ncyI6IiIsInNvdXJjZXNDb250ZW50IjpbImltcG9ydCB7IE5vdGlmaWNhdGlvbkNhdGVnb3J5RW51bSwgTm90aWZpY2F0aW9uUHJpb3JpdHlFbnVtLCBOb3RpZmljYXRpb25TdGF0dXNFbnVtIH0gZnJvbSAnLi4vZW51bXMnO1xyXG5pbXBvcnQgeyBJTm90aWZpY2F0aW9uQWN0aW9uIH0gZnJvbSAnLi9pLW5vdGlmaWNhdGlvbi1hY3Rpb24nO1xyXG5cclxuLyoqXHJcbiAqIEBkZXByZWNhdGVkXHJcbiAqL1xyXG5leHBvcnQgaW50ZXJmYWNlIElOb3RpZmljYXRpb24ge1xyXG4gIC8vICNyZWdpb24gUHJvcGVydGllcyAoMTMpXHJcblxyXG4gIGFjdGlvbjogSU5vdGlmaWNhdGlvbkFjdGlvbjtcclxuICBjYXRlZ29yeTogTm90aWZpY2F0aW9uQ2F0ZWdvcnlFbnVtO1xyXG4gIGNyZWF0ZWRBdDogRGF0ZTtcclxuICBkYXRhOiBzdHJpbmc7XHJcbiAgZGVzY3JpcHRpb246IHN0cmluZztcclxuICBleHBpcmF0aW9uVGltZTogbnVtYmVyO1xyXG4gIGlkOiBzdHJpbmc7XHJcbiAgaW1hZ2VVcmw6IHN0cmluZztcclxuICBwcmlvcml0eTogTm90aWZpY2F0aW9uUHJpb3JpdHlFbnVtO1xyXG4gIHNvdW5kOiBib29sZWFuO1xyXG4gIHN0YXR1czogTm90aWZpY2F0aW9uU3RhdHVzRW51bTtcclxuICB0aXRsZTogc3RyaW5nO1xyXG4gIHRvcGljTmFtZTogc3RyaW5nO1xyXG5cclxuICAvLyAjZW5kcmVnaW9uIFByb3BlcnRpZXMgKDEzKVxyXG59XHJcbiJdfQ==
|
@@ -754,12 +754,29 @@ class AppEntity {
|
|
754
754
|
}
|
755
755
|
}
|
756
756
|
|
757
|
+
class DesenfilaTokenEntity {
|
758
|
+
// #region Properties (2)
|
759
|
+
id = '';
|
760
|
+
prefix = '';
|
761
|
+
// #endregion Properties (2)
|
762
|
+
// #region Constructors (1)
|
763
|
+
constructor(data) {
|
764
|
+
if (data) {
|
765
|
+
for (let key in data) {
|
766
|
+
if (data.hasOwnProperty(key) && key in this) {
|
767
|
+
this[key] = data[key];
|
768
|
+
}
|
769
|
+
}
|
770
|
+
}
|
771
|
+
}
|
772
|
+
}
|
773
|
+
|
757
774
|
class DesenfilaEntity {
|
758
|
-
// #region Properties (
|
759
|
-
|
760
|
-
|
761
|
-
token =
|
762
|
-
// #endregion Properties (
|
775
|
+
// #region Properties (5)
|
776
|
+
containerId = '';
|
777
|
+
merchantId = '';
|
778
|
+
token = null;
|
779
|
+
// #endregion Properties (5)
|
763
780
|
// #region Constructors (1)
|
764
781
|
constructor(data) {
|
765
782
|
if (data) {
|
@@ -801,6 +818,7 @@ class EvolutionDatabaseQueueEntity {
|
|
801
818
|
instanceName = '';
|
802
819
|
globalApikey = '';
|
803
820
|
log = [];
|
821
|
+
sendAt = 1713547959155;
|
804
822
|
notified = false;
|
805
823
|
notifiedAt = 0;
|
806
824
|
phoneNumber = '';
|
@@ -4578,5 +4596,5 @@ class WaServerEntity {
|
|
4578
4596
|
* Generated bundle index. Do not edit.
|
4579
4597
|
*/
|
4580
4598
|
|
4581
|
-
export { AccountInformationsEntity, AddressEntity, AppEntity, AppInfoEntity, BaseEntity, BillingEntity, BillingOrderEntity, BillingPaymentEntity, BillingTotalEntity, CampaignEntity, CarouselImageEntity, ClientAplicationCredentialEntity, ClientAplicationEntity, ClientEntity, CompanyEntity, CompanyTrialPlansUsedEntity, ContainerEntity, CoordsEntity, CustomVariableEntity, CustomerEntity, CustomerMemberEntity, DeliveryAreaEntity, DeliveryAreaFixedEntity, DesenfilaEntity, DeviceEntity, EAppCategory, EAppHeaderType, EAppMode, EAppType, EBankSlipStatus, EBillingStatus, EBooleanString, ECampaignStatus, ECompanyKeys, ECompanyMessageType, ECustomerInterval, ECustomerStatus, ECustomerType, EDiscountType, EDocType, EEventMessage, EEvolutionEvent, EEvolutionInstanceType, EFcmSkill, EFiscalDocModelCode, EInstallationStatus, EIntervalType, EInvoiceStatus, ELeadOrigin, ELegalEntiy, EOrderDeliveryMode, EOrderTiming, EOrderType, EOs, EPaymentChannel, EPaymentMode, EPaymentProvider, EPaymentStatus, EPaymentType, EPlanFeatureType, EPlanIdentifier, EPlatform, EPubSub, EPubSubTopicType, ESponsorshipValues, ESubscriptionStatus, EVoucherStatus, EWaServerStatus, EventMessageEntity, EvolutionChatWootEntity, EvolutionDatabaseQueueEntity, EvolutionEntity, EvolutionHashEntity, EvolutionInstanceEntity, EvolutionMessageKeyResponseEntity, EvolutionMessageResponseEntity, EvolutionQrcodeEntity, EvolutionTypeBotEntity, EvolutionWebhookEntity, FcmDataReceivedDesenfilaPaymentEntity, FcmDataRequestItemsEntity, FcmTokenMessageEntity, FeatureEntity, EGtintype as GTINTypeEnum, GlobalSettingEntity, GlobalSettingIuguEntity, GlobalSettingMasterEntity, InstallationAppEntity, InstallationEntity, InviteEntity, InviteStatusEnum, InvoiceBankSlipEntity, InvoiceCreditCardEntity, InvoiceEntity, InvoiceItemEntity, InvoiceLogEntity, InvoicePayerEntity, InvoicePixEntity, IuguAccountEntity, IuguAutoAdvanceEnum, IuguBankEnum, IuguChargeCreditCardEntity, IuguCustomerEntity, IuguInvoiceBankSlipEntity, IuguInvoiceEntity, IuguInvoiceStatusEnum, IuguPaymentTokenDataEntity, IuguPaymentTokenEntity, LastVerificationRequestDataEntity, LeadEntity, LeadStatusEnum, MemberEntity, MemberRulesEnum, MemberTypeEnum, MessagerChannelEntity, MetadataEntity, MobyoApiConfigEntity, MottuAddressEntity, MottuEventDeliveryManEntity, MottuEventEntity, MottuEventRequestedByEntity, MottuOrderDelivererEntity, MottuOrderDeliveryManEntity, MottuOrderEntity, MottuOrderPreviewEntity, MottuOrderStoreEntity, MottuStoreEntity, MottuStoreMatrixEntity, MottuStoreResponsibleEntity, NatiGoEntity, NatiV1CartDesenfilaEntity, NatiV1CartEntity, NatiV1CartItemEntity, NatiWaEntity, NotificationActionEntity, NotificationActionTypeEnum, NotificationCategoryEnum, NotificationEntity, NotificationPriorityEnum, NotificationStatusEnum, OrderAdditionalFeeEntity, OrderBenefitsEntity, OrderCancellationEntity, OrderCustomerEntity, OrderDeliveryEntity, OrderEntity, OrderItemCompositionEntity, OrderItemEntity, OrderItemOptionEntity, OrderMerchantEntity, OrderPaymentCardEntity, OrderPaymentCashEntity, OrderPaymentEntity, OrderPaymentMethodEntity, OrderPaymentPixEntity, OrderPaymentWalletEntity, OrderScaleEntity, OrderScaleItemEntity, OrderStatusEnum, OrderTotalEntity, OrdersCustomerPhoneEntity, OriginEntity, PartnerEntity, PaymentCardEntity, PaymentCashEntity, PaymentEntity, PaymentMethodEntity, PaymentMethodOptionEntity, PaymentPixEntity, PaymentProviderAgentEntity, PaymentProviderEntity, PaymentTokenDataEntity, PaymentTokenEntity, PaymentWalletEntity, PlanEntity, PlanFeatureEntity, ProductBrandEntity, ProductCompanyEntity, ProductContainerEntity, ProductGlobalEntity, ProductNcmEntity, PubsubSubscriptionChangeStatusEntity, PurchaseEntity, RabbitEntity, RatingEntity, RequestedItemDataEntity, RequestedItemsEntity, ResumeCollectionEntity, ResumeDayEntity, ResumeEntity, ResumeHourEntity, ResumeMonthEntity, ResumeTotalEntity, ResumeYearEntity, SponsorshipValueEntity, SubscriptionBaseEntity, SubscriptionBaseItemEntity, SubscriptionBaseLogEntity, SubscriptionCompanyEntity, SubscriptionCompanyProfileEntity, SubscriptionCustomerEntity, SubscriptionCustomerProfileEntity, TokenEntity, VerifierTokenEntity, VoucherEntity, WaServerEntity };
|
4599
|
+
export { AccountInformationsEntity, AddressEntity, AppEntity, AppInfoEntity, BaseEntity, BillingEntity, BillingOrderEntity, BillingPaymentEntity, BillingTotalEntity, CampaignEntity, CarouselImageEntity, ClientAplicationCredentialEntity, ClientAplicationEntity, ClientEntity, CompanyEntity, CompanyTrialPlansUsedEntity, ContainerEntity, CoordsEntity, CustomVariableEntity, CustomerEntity, CustomerMemberEntity, DeliveryAreaEntity, DeliveryAreaFixedEntity, DesenfilaEntity, DesenfilaTokenEntity, DeviceEntity, EAppCategory, EAppHeaderType, EAppMode, EAppType, EBankSlipStatus, EBillingStatus, EBooleanString, ECampaignStatus, ECompanyKeys, ECompanyMessageType, ECustomerInterval, ECustomerStatus, ECustomerType, EDiscountType, EDocType, EEventMessage, EEvolutionEvent, EEvolutionInstanceType, EFcmSkill, EFiscalDocModelCode, EInstallationStatus, EIntervalType, EInvoiceStatus, ELeadOrigin, ELegalEntiy, EOrderDeliveryMode, EOrderTiming, EOrderType, EOs, EPaymentChannel, EPaymentMode, EPaymentProvider, EPaymentStatus, EPaymentType, EPlanFeatureType, EPlanIdentifier, EPlatform, EPubSub, EPubSubTopicType, ESponsorshipValues, ESubscriptionStatus, EVoucherStatus, EWaServerStatus, EventMessageEntity, EvolutionChatWootEntity, EvolutionDatabaseQueueEntity, EvolutionEntity, EvolutionHashEntity, EvolutionInstanceEntity, EvolutionMessageKeyResponseEntity, EvolutionMessageResponseEntity, EvolutionQrcodeEntity, EvolutionTypeBotEntity, EvolutionWebhookEntity, FcmDataReceivedDesenfilaPaymentEntity, FcmDataRequestItemsEntity, FcmTokenMessageEntity, FeatureEntity, EGtintype as GTINTypeEnum, GlobalSettingEntity, GlobalSettingIuguEntity, GlobalSettingMasterEntity, InstallationAppEntity, InstallationEntity, InviteEntity, InviteStatusEnum, InvoiceBankSlipEntity, InvoiceCreditCardEntity, InvoiceEntity, InvoiceItemEntity, InvoiceLogEntity, InvoicePayerEntity, InvoicePixEntity, IuguAccountEntity, IuguAutoAdvanceEnum, IuguBankEnum, IuguChargeCreditCardEntity, IuguCustomerEntity, IuguInvoiceBankSlipEntity, IuguInvoiceEntity, IuguInvoiceStatusEnum, IuguPaymentTokenDataEntity, IuguPaymentTokenEntity, LastVerificationRequestDataEntity, LeadEntity, LeadStatusEnum, MemberEntity, MemberRulesEnum, MemberTypeEnum, MessagerChannelEntity, MetadataEntity, MobyoApiConfigEntity, MottuAddressEntity, MottuEventDeliveryManEntity, MottuEventEntity, MottuEventRequestedByEntity, MottuOrderDelivererEntity, MottuOrderDeliveryManEntity, MottuOrderEntity, MottuOrderPreviewEntity, MottuOrderStoreEntity, MottuStoreEntity, MottuStoreMatrixEntity, MottuStoreResponsibleEntity, NatiGoEntity, NatiV1CartDesenfilaEntity, NatiV1CartEntity, NatiV1CartItemEntity, NatiWaEntity, NotificationActionEntity, NotificationActionTypeEnum, NotificationCategoryEnum, NotificationEntity, NotificationPriorityEnum, NotificationStatusEnum, OrderAdditionalFeeEntity, OrderBenefitsEntity, OrderCancellationEntity, OrderCustomerEntity, OrderDeliveryEntity, OrderEntity, OrderItemCompositionEntity, OrderItemEntity, OrderItemOptionEntity, OrderMerchantEntity, OrderPaymentCardEntity, OrderPaymentCashEntity, OrderPaymentEntity, OrderPaymentMethodEntity, OrderPaymentPixEntity, OrderPaymentWalletEntity, OrderScaleEntity, OrderScaleItemEntity, OrderStatusEnum, OrderTotalEntity, OrdersCustomerPhoneEntity, OriginEntity, PartnerEntity, PaymentCardEntity, PaymentCashEntity, PaymentEntity, PaymentMethodEntity, PaymentMethodOptionEntity, PaymentPixEntity, PaymentProviderAgentEntity, PaymentProviderEntity, PaymentTokenDataEntity, PaymentTokenEntity, PaymentWalletEntity, PlanEntity, PlanFeatureEntity, ProductBrandEntity, ProductCompanyEntity, ProductContainerEntity, ProductGlobalEntity, ProductNcmEntity, PubsubSubscriptionChangeStatusEntity, PurchaseEntity, RabbitEntity, RatingEntity, RequestedItemDataEntity, RequestedItemsEntity, ResumeCollectionEntity, ResumeDayEntity, ResumeEntity, ResumeHourEntity, ResumeMonthEntity, ResumeTotalEntity, ResumeYearEntity, SponsorshipValueEntity, SubscriptionBaseEntity, SubscriptionBaseItemEntity, SubscriptionBaseLogEntity, SubscriptionCompanyEntity, SubscriptionCompanyProfileEntity, SubscriptionCustomerEntity, SubscriptionCustomerProfileEntity, TokenEntity, VerifierTokenEntity, VoucherEntity, WaServerEntity };
|
4582
4600
|
//# sourceMappingURL=cecon-interfaces.mjs.map
|