cecon-interfaces 1.2.10 → 1.2.11
Sign up to get free protection for your applications and to get access to all the features.
- package/dist/app/entities/desenfila.entity.d.ts +7 -0
- package/dist/app/entities/desenfila.entity.js +22 -0
- package/dist/app/entities/index.d.ts +1 -0
- package/dist/app/entities/index.js +3 -1
- package/dist/app/interfaces/i-app.d.ts +3 -3
- package/dist/app/interfaces/i-desenfila.d.ts +5 -0
- package/dist/app/interfaces/i-desenfila.js +2 -0
- package/dist/app/interfaces/index.d.ts +1 -0
- package/dist/esm2022/app/entities/desenfila.entity.mjs +18 -0
- package/dist/esm2022/app/entities/index.mjs +2 -1
- package/dist/esm2022/app/interfaces/i-app.mjs +1 -1
- package/dist/esm2022/app/interfaces/i-desenfila.mjs +2 -0
- package/dist/esm2022/app/interfaces/index.mjs +1 -1
- package/dist/fesm2022/cecon-interfaces.mjs +19 -1
- package/dist/fesm2022/cecon-interfaces.mjs.map +1 -1
- package/dist/package.json +1 -1
- package/package.json +1 -1
@@ -0,0 +1,22 @@
|
|
1
|
+
"use strict";
|
2
|
+
Object.defineProperty(exports, "__esModule", { value: true });
|
3
|
+
exports.DesenfilaEntity = void 0;
|
4
|
+
var DesenfilaEntity = /** @class */ (function () {
|
5
|
+
// #endregion Properties (3)
|
6
|
+
// #region Constructors (1)
|
7
|
+
function DesenfilaEntity(data) {
|
8
|
+
// #region Properties (3)
|
9
|
+
this.accountId = '';
|
10
|
+
this.email = null;
|
11
|
+
this.token = '';
|
12
|
+
if (data) {
|
13
|
+
for (var key in data) {
|
14
|
+
if (data.hasOwnProperty(key) && key in this) {
|
15
|
+
this[key] = data[key];
|
16
|
+
}
|
17
|
+
}
|
18
|
+
}
|
19
|
+
}
|
20
|
+
return DesenfilaEntity;
|
21
|
+
}());
|
22
|
+
exports.DesenfilaEntity = DesenfilaEntity;
|
@@ -1,8 +1,10 @@
|
|
1
1
|
"use strict";
|
2
2
|
Object.defineProperty(exports, "__esModule", { value: true });
|
3
|
-
exports.RabbitEntity = exports.NatiGoEntity = exports.AppEntity = void 0;
|
3
|
+
exports.RabbitEntity = exports.NatiGoEntity = exports.DesenfilaEntity = 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_entity_1 = require("./desenfila.entity");
|
7
|
+
Object.defineProperty(exports, "DesenfilaEntity", { enumerable: true, get: function () { return desenfila_entity_1.DesenfilaEntity; } });
|
6
8
|
var natigo_entity_1 = require("./natigo.entity");
|
7
9
|
Object.defineProperty(exports, "NatiGoEntity", { enumerable: true, get: function () { return natigo_entity_1.NatiGoEntity; } });
|
8
10
|
var rabbit_entity_1 = require("./rabbit.entity");
|
@@ -16,15 +16,14 @@ export interface IApp {
|
|
16
16
|
categories: EAppCategory[];
|
17
17
|
createdBy: string;
|
18
18
|
description: string;
|
19
|
-
instanceNumberAllowed: number;
|
20
19
|
downloadUrl: string;
|
21
20
|
features: string[];
|
22
21
|
headerImage: string;
|
23
22
|
headerType: EAppHeaderType;
|
24
23
|
headerVideo: string;
|
25
24
|
iconUrl: string;
|
26
|
-
type: EAppType;
|
27
25
|
id: string;
|
26
|
+
instanceNumberAllowed: number;
|
28
27
|
/**
|
29
28
|
* Intervalo de tempo para o preço
|
30
29
|
* @example
|
@@ -44,15 +43,16 @@ export interface IApp {
|
|
44
43
|
* Indica se o app é gratuito ou não
|
45
44
|
*/
|
46
45
|
mode: EAppMode;
|
47
|
-
production: boolean;
|
48
46
|
name: string;
|
49
47
|
os: EOs[];
|
50
48
|
platforms: EPlatform[];
|
51
49
|
price: number;
|
50
|
+
production: boolean;
|
52
51
|
ratings: IRating[];
|
53
52
|
tags: string[];
|
54
53
|
totalInstalls: number;
|
55
54
|
trialTime: number;
|
55
|
+
type: EAppType;
|
56
56
|
versionCode: number;
|
57
57
|
versionName: string;
|
58
58
|
}
|
@@ -0,0 +1,18 @@
|
|
1
|
+
export class DesenfilaEntity {
|
2
|
+
// #region Properties (3)
|
3
|
+
accountId = '';
|
4
|
+
email = null;
|
5
|
+
token = '';
|
6
|
+
// #endregion Properties (3)
|
7
|
+
// #region Constructors (1)
|
8
|
+
constructor(data) {
|
9
|
+
if (data) {
|
10
|
+
for (let key in data) {
|
11
|
+
if (data.hasOwnProperty(key) && key in this) {
|
12
|
+
this[key] = data[key];
|
13
|
+
}
|
14
|
+
}
|
15
|
+
}
|
16
|
+
}
|
17
|
+
}
|
18
|
+
//# sourceMappingURL=data:application/json;base64,eyJ2ZXJzaW9uIjozLCJmaWxlIjoiZGVzZW5maWxhLmVudGl0eS5qcyIsInNvdXJjZVJvb3QiOiIiLCJzb3VyY2VzIjpbIi4uLy4uLy4uLy4uL3NyYy9hcHAvZW50aXRpZXMvZGVzZW5maWxhLmVudGl0eS50cyJdLCJuYW1lcyI6W10sIm1hcHBpbmdzIjoiQUFFQSxNQUFNLE9BQU8sZUFBZTtJQUMxQix5QkFBeUI7SUFFbEIsU0FBUyxHQUFXLEVBQUUsQ0FBQztJQUN2QixLQUFLLEdBQWtCLElBQUksQ0FBQztJQUM1QixLQUFLLEdBQVcsRUFBRSxDQUFDO0lBRTFCLDRCQUE0QjtJQUU1QiwyQkFBMkI7SUFFM0IsWUFBWSxJQUErQjtRQUN6QyxJQUFJLElBQUksRUFBRTtZQUNSLEtBQUssSUFBSSxHQUFHLElBQUksSUFBSSxFQUFFO2dCQUNwQixJQUFJLElBQUksQ0FBQyxjQUFjLENBQUMsR0FBRyxDQUFDLElBQUksR0FBRyxJQUFJLElBQUksRUFBRTtvQkFDMUMsSUFBWSxDQUFDLEdBQUcsQ0FBQyxHQUFJLElBQVksQ0FBQyxHQUFHLENBQUMsQ0FBQztpQkFDekM7YUFDRjtTQUNGO0lBQ0gsQ0FBQztDQUdGIiwic291cmNlc0NvbnRlbnQiOlsiaW1wb3J0IHsgSURlc2VuZmlsYSB9IGZyb20gJy4uL2ludGVyZmFjZXMnO1xuXG5leHBvcnQgY2xhc3MgRGVzZW5maWxhRW50aXR5IGltcGxlbWVudHMgSURlc2VuZmlsYSB7XG4gIC8vICNyZWdpb24gUHJvcGVydGllcyAoMylcblxuICBwdWJsaWMgYWNjb3VudElkOiBzdHJpbmcgPSAnJztcbiAgcHVibGljIGVtYWlsOiBzdHJpbmcgfCBudWxsID0gbnVsbDtcbiAgcHVibGljIHRva2VuOiBzdHJpbmcgPSAnJztcblxuICAvLyAjZW5kcmVnaW9uIFByb3BlcnRpZXMgKDMpXG5cbiAgLy8gI3JlZ2lvbiBDb25zdHJ1Y3RvcnMgKDEpXG5cbiAgY29uc3RydWN0b3IoZGF0YT86IFBhcnRpYWw8RGVzZW5maWxhRW50aXR5Pikge1xuICAgIGlmIChkYXRhKSB7XG4gICAgICBmb3IgKGxldCBrZXkgaW4gZGF0YSkge1xuICAgICAgICBpZiAoZGF0YS5oYXNPd25Qcm9wZXJ0eShrZXkpICYmIGtleSBpbiB0aGlzKSB7XG4gICAgICAgICAgKHRoaXMgYXMgYW55KVtrZXldID0gKGRhdGEgYXMgYW55KVtrZXldO1xuICAgICAgICB9XG4gICAgICB9XG4gICAgfVxuICB9XG5cbiAgLy8gI2VuZHJlZ2lvbiBDb25zdHJ1Y3RvcnMgKDEpXG59XG4iXX0=
|
@@ -1,4 +1,5 @@
|
|
1
1
|
export { AppEntity } from './app.entity';
|
2
|
+
export { DesenfilaEntity } from './desenfila.entity';
|
2
3
|
export { NatiGoEntity } from './natigo.entity';
|
3
4
|
export { RabbitEntity } from './rabbit.entity';
|
4
|
-
//# sourceMappingURL=data:application/json;base64,
|
5
|
+
//# sourceMappingURL=data:application/json;base64,eyJ2ZXJzaW9uIjozLCJmaWxlIjoiaW5kZXguanMiLCJzb3VyY2VSb290IjoiIiwic291cmNlcyI6WyIuLi8uLi8uLi8uLi9zcmMvYXBwL2VudGl0aWVzL2luZGV4LnRzIl0sIm5hbWVzIjpbXSwibWFwcGluZ3MiOiJBQUFBLE9BQU8sRUFBRSxTQUFTLEVBQUUsTUFBTSxjQUFjLENBQUM7QUFDekMsT0FBTyxFQUFFLGVBQWUsRUFBRSxNQUFNLG9CQUFvQixDQUFDO0FBQ3JELE9BQU8sRUFBRSxZQUFZLEVBQUUsTUFBTSxpQkFBaUIsQ0FBQztBQUMvQyxPQUFPLEVBQUUsWUFBWSxFQUFFLE1BQU0saUJBQWlCLENBQUMiLCJzb3VyY2VzQ29udGVudCI6WyJleHBvcnQgeyBBcHBFbnRpdHkgfSBmcm9tICcuL2FwcC5lbnRpdHknO1xuZXhwb3J0IHsgRGVzZW5maWxhRW50aXR5IH0gZnJvbSAnLi9kZXNlbmZpbGEuZW50aXR5JztcbmV4cG9ydCB7IE5hdGlHb0VudGl0eSB9IGZyb20gJy4vbmF0aWdvLmVudGl0eSc7XG5leHBvcnQgeyBSYWJiaXRFbnRpdHkgfSBmcm9tICcuL3JhYmJpdC5lbnRpdHknO1xuIl19
|
@@ -1,2 +1,2 @@
|
|
1
1
|
export {};
|
2
|
-
//# sourceMappingURL=data:application/json;base64,
|
2
|
+
//# sourceMappingURL=data:application/json;base64,eyJ2ZXJzaW9uIjozLCJmaWxlIjoiaS1hcHAuanMiLCJzb3VyY2VSb290IjoiIiwic291cmNlcyI6WyIuLi8uLi8uLi8uLi9zcmMvYXBwL2ludGVyZmFjZXMvaS1hcHAudHMiXSwibmFtZXMiOltdLCJtYXBwaW5ncyI6IiIsInNvdXJjZXNDb250ZW50IjpbImltcG9ydCB7IEVJbnRlcnZhbFR5cGUsIElDYXJvdXNlbEltYWdlLCBJUmF0aW5nIH0gZnJvbSAnLi4vLi4vZ2VuZXJhbCc7XG5pbXBvcnQgeyBFT3MgfSBmcm9tICcuLi8uLi9nZW5lcmFsL2VudW1zL29zLmVudW0nO1xuaW1wb3J0IHsgRVBsYXRmb3JtIH0gZnJvbSAnLi4vLi4vZ2VuZXJhbC9lbnVtcy9wbGF0Zm9ybS5lbnVtJztcbmltcG9ydCB7IEVBcHBNb2RlIH0gZnJvbSAnLi4vZW51bXMnO1xuaW1wb3J0IHsgRUFwcENhdGVnb3J5IH0gZnJvbSAnLi4vZW51bXMvYXBwLWNhdGVnb3J5LmVudW0nO1xuaW1wb3J0IHsgRUFwcFR5cGUgfSBmcm9tICcuLi9lbnVtcy9hcHAtdHlwZS5lbnVtJztcbmltcG9ydCB7IEVBcHBIZWFkZXJUeXBlIH0gZnJvbSAnLi4vZW51bXMvaGVhZGVyLXR5cGUuZW51bSc7XG5cbmV4cG9ydCBpbnRlcmZhY2UgSUFwcCB7XG4gIC8vICNyZWdpb24gUHJvcGVydGllcyAoMzApXG5cbiAgYWN0aXZlOiBib29sZWFuO1xuICBhY3RpdmVJbnN0YWxsczogbnVtYmVyO1xuICAvKipcbiAgICogSW5kaWNhIHNlIHBlcm1pdGUgYWRpY2lvbmFyIGEgYXNzaW5hdHVyYVxuICAgKi9cbiAgYWxsb3dBZGRTdWJzY3JpcHRpb246IGJvb2xlYW47XG4gIGNhcm91c2VsOiBJQ2Fyb3VzZWxJbWFnZVtdO1xuICBjYXRlZ29yaWVzOiBFQXBwQ2F0ZWdvcnlbXTtcbiAgY3JlYXRlZEJ5OiBzdHJpbmc7XG4gIGRlc2NyaXB0aW9uOiBzdHJpbmc7XG4gIGRvd25sb2FkVXJsOiBzdHJpbmc7XG4gIGZlYXR1cmVzOiBzdHJpbmdbXTtcbiAgaGVhZGVySW1hZ2U6IHN0cmluZztcbiAgaGVhZGVyVHlwZTogRUFwcEhlYWRlclR5cGU7XG4gIGhlYWRlclZpZGVvOiBzdHJpbmc7XG4gIGljb25Vcmw6IHN0cmluZztcbiAgaWQ6IHN0cmluZztcbiAgaW5zdGFuY2VOdW1iZXJBbGxvd2VkOiBudW1iZXI7XG4gIC8qKlxuICAgKiBJbnRlcnZhbG8gZGUgdGVtcG8gcGFyYSBvIHByZcOnb1xuICAgKiBAZXhhbXBsZVxuICAgKiAxLCAyLCAzLCA0LCA1LCA2LCA3LCA4LCA5LCAxMFxuICAgKiBQYXJhIGludGVydmFsVHlwZSA9IE1PTlRIU1xuICAgKiAxID0gMSBtw6pzIChtZW5zYWwpXG4gICAqXG4gICAqL1xuICBpbnRlcnZhbDogbnVtYmVyO1xuICAvKipcbiAgICogVGlwbyBkZSBpbnRlcnZhbG8gcGFyYSBvIHByZcOnb1xuICAgKiBAZXhhbXBsZVxuICAgKiBNZW5zYWwsIFNlbWFuYWwsIERpw6FyaW9cbiAgICovXG4gIGludGVydmFsVHlwZTogRUludGVydmFsVHlwZTtcbiAgLyoqXG4gICAqIEluZGljYSBzZSBvIGFwcCDDqSBncmF0dWl0byBvdSBuw6NvXG4gICAqL1xuICBtb2RlOiBFQXBwTW9kZTtcbiAgbmFtZTogc3RyaW5nO1xuICBvczogRU9zW107XG4gIHBsYXRmb3JtczogRVBsYXRmb3JtW107XG4gIHByaWNlOiBudW1iZXI7XG4gIHByb2R1Y3Rpb246IGJvb2xlYW47XG4gIHJhdGluZ3M6IElSYXRpbmdbXTtcbiAgdGFnczogc3RyaW5nW107XG4gIHRvdGFsSW5zdGFsbHM6IG51bWJlcjtcbiAgdHJpYWxUaW1lOiBudW1iZXI7XG4gIHR5cGU6IEVBcHBUeXBlO1xuICB2ZXJzaW9uQ29kZTogbnVtYmVyO1xuICB2ZXJzaW9uTmFtZTogc3RyaW5nO1xuXG4gIC8vICNlbmRyZWdpb24gUHJvcGVydGllcyAoMzApXG59XG4iXX0=
|
@@ -0,0 +1,2 @@
|
|
1
|
+
export {};
|
2
|
+
//# sourceMappingURL=data:application/json;base64,eyJ2ZXJzaW9uIjozLCJmaWxlIjoiaS1kZXNlbmZpbGEuanMiLCJzb3VyY2VSb290IjoiIiwic291cmNlcyI6WyIuLi8uLi8uLi8uLi9zcmMvYXBwL2ludGVyZmFjZXMvaS1kZXNlbmZpbGEudHMiXSwibmFtZXMiOltdLCJtYXBwaW5ncyI6IiIsInNvdXJjZXNDb250ZW50IjpbImV4cG9ydCBpbnRlcmZhY2UgSURlc2VuZmlsYSB7XG4gIC8vICNyZWdpb24gUHJvcGVydGllcyAoMylcblxuICBhY2NvdW50SWQ6IHN0cmluZztcbiAgZW1haWw6IHN0cmluZyB8IG51bGw7XG4gIHRva2VuOiBzdHJpbmc7XG5cbiAgLy8gI2VuZHJlZ2lvbiBQcm9wZXJ0aWVzICgzKVxufVxuIl19
|
@@ -1,2 +1,2 @@
|
|
1
1
|
export {};
|
2
|
-
//# sourceMappingURL=data:application/json;base64,
|
2
|
+
//# sourceMappingURL=data:application/json;base64,eyJ2ZXJzaW9uIjozLCJmaWxlIjoiaW5kZXguanMiLCJzb3VyY2VSb290IjoiIiwic291cmNlcyI6WyIuLi8uLi8uLi8uLi9zcmMvYXBwL2ludGVyZmFjZXMvaW5kZXgudHMiXSwibmFtZXMiOltdLCJtYXBwaW5ncyI6IiIsInNvdXJjZXNDb250ZW50IjpbImV4cG9ydCB7IElBcHAgfSBmcm9tICcuL2ktYXBwJztcbmV4cG9ydCB7IElEZXNlbmZpbGEgfSBmcm9tICcuL2ktZGVzZW5maWxhJztcbmV4cG9ydCB7IElOYXRpZ28gfSBmcm9tICcuL2ktbmF0aWdvJztcbmV4cG9ydCB7IElSYWJiaXQgfSBmcm9tICcuL2ktcmFiYml0JztcbiJdfQ==
|
@@ -730,6 +730,24 @@ class AppEntity {
|
|
730
730
|
}
|
731
731
|
}
|
732
732
|
|
733
|
+
class DesenfilaEntity {
|
734
|
+
// #region Properties (3)
|
735
|
+
accountId = '';
|
736
|
+
email = null;
|
737
|
+
token = '';
|
738
|
+
// #endregion Properties (3)
|
739
|
+
// #region Constructors (1)
|
740
|
+
constructor(data) {
|
741
|
+
if (data) {
|
742
|
+
for (let key in data) {
|
743
|
+
if (data.hasOwnProperty(key) && key in this) {
|
744
|
+
this[key] = data[key];
|
745
|
+
}
|
746
|
+
}
|
747
|
+
}
|
748
|
+
}
|
749
|
+
}
|
750
|
+
|
733
751
|
var EAppCategory;
|
734
752
|
(function (EAppCategory) {
|
735
753
|
EAppCategory["UTILITIES"] = "UTILIDADES";
|
@@ -3687,5 +3705,5 @@ class VoucherEntity {
|
|
3687
3705
|
* Generated bundle index. Do not edit.
|
3688
3706
|
*/
|
3689
3707
|
|
3690
|
-
export { AccountInformationsEntity, AddressEntity, AppEntity, AppInfoEntity, BaseEntity, BillingEntity, BillingOrderEntity, BillingPaymentEntity, BillingTotalEntity, CampaignEntity, CarouselImageEntity, ClientAplicationCredentialEntity, ClientAplicationEntity, ClientEntity, CompanyEntity, ContainerEntity, CoordsEntity, CustomVariableEntity, CustomerEntity, CustomerMemberEntity, DeliveryAreaEntity, DeliveryAreaFixedEntity, DeviceEntity, EAppCategory, EAppHeaderType, EAppMode, EAppType, EBankSlipStatus, EBillingStatus, EBooleanString, ECampaignStatus, ECompanyKeys, ECompanyMessageType, ECustomerInterval, ECustomerStatus, ECustomerType, EDiscountType, EDocType, EFiscalDocModelCode, EInstallationStatus, EIntervalType, EInvoiceStatus, ELeadOrigin, ELegalEntiy, EOrderDeliveryMode, EOrderTiming, EOrderType, EOs, EPaymentChannel, EPaymentMode, EPaymentProvider, EPaymentStatus, EPaymentType, EPlanFeatureType, EPlanIdentifier, EPlatform, EPubSub, EPubSubTopicType, ESponsorshipValues, ESubscriptionStatus, EVoucherStatus, FeatureEntity, EGtintype as GTINTypeEnum, GlobalSettingEntity, GlobalSettingIuguEntity, GlobalSettingMasterEntity, 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, NatiGoEntity, 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, ProductNcmEntity, ProductGlobalEntity as ProductglobalEntity, PubsubSubscriptionChangeStatusEntity, PurchaseEntity, RabbitEntity, RatingEntity, ResumeCollectionEntity, ResumeDayEntity, ResumeEntity, ResumeHourEntity, ResumeMonthEntity, ResumeTotalEntity, ResumeYearEntity, SponsorshipValueEntity, SubscriptionBaseEntity, SubscriptionBaseItemEntity, SubscriptionBaseLogEntity, SubscriptionCompanyEntity, SubscriptionCompanyProfileEntity, SubscriptionCustomerEntity, SubscriptionCustomerProfileEntity, TokenEntity, VoucherEntity };
|
3708
|
+
export { AccountInformationsEntity, AddressEntity, AppEntity, AppInfoEntity, BaseEntity, BillingEntity, BillingOrderEntity, BillingPaymentEntity, BillingTotalEntity, CampaignEntity, CarouselImageEntity, ClientAplicationCredentialEntity, ClientAplicationEntity, ClientEntity, CompanyEntity, ContainerEntity, CoordsEntity, CustomVariableEntity, CustomerEntity, CustomerMemberEntity, DeliveryAreaEntity, DeliveryAreaFixedEntity, DesenfilaEntity, DeviceEntity, EAppCategory, EAppHeaderType, EAppMode, EAppType, EBankSlipStatus, EBillingStatus, EBooleanString, ECampaignStatus, ECompanyKeys, ECompanyMessageType, ECustomerInterval, ECustomerStatus, ECustomerType, EDiscountType, EDocType, EFiscalDocModelCode, EInstallationStatus, EIntervalType, EInvoiceStatus, ELeadOrigin, ELegalEntiy, EOrderDeliveryMode, EOrderTiming, EOrderType, EOs, EPaymentChannel, EPaymentMode, EPaymentProvider, EPaymentStatus, EPaymentType, EPlanFeatureType, EPlanIdentifier, EPlatform, EPubSub, EPubSubTopicType, ESponsorshipValues, ESubscriptionStatus, EVoucherStatus, FeatureEntity, EGtintype as GTINTypeEnum, GlobalSettingEntity, GlobalSettingIuguEntity, GlobalSettingMasterEntity, 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, NatiGoEntity, 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, ProductNcmEntity, ProductGlobalEntity as ProductglobalEntity, PubsubSubscriptionChangeStatusEntity, PurchaseEntity, RabbitEntity, RatingEntity, ResumeCollectionEntity, ResumeDayEntity, ResumeEntity, ResumeHourEntity, ResumeMonthEntity, ResumeTotalEntity, ResumeYearEntity, SponsorshipValueEntity, SubscriptionBaseEntity, SubscriptionBaseItemEntity, SubscriptionBaseLogEntity, SubscriptionCompanyEntity, SubscriptionCompanyProfileEntity, SubscriptionCustomerEntity, SubscriptionCustomerProfileEntity, TokenEntity, VoucherEntity };
|
3691
3709
|
//# sourceMappingURL=cecon-interfaces.mjs.map
|