cecon-interfaces 1.2.43 → 1.2.46
Sign up to get free protection for your applications and to get access to all the features.
- package/dist/esm2022/index.mjs +3 -1
- package/dist/esm2022/mottu/entities/address.entity.mjs +22 -0
- package/dist/esm2022/mottu/entities/event-delivery-man.entity.mjs +17 -0
- package/dist/esm2022/mottu/entities/event-requested-by.entity.mjs +17 -0
- package/dist/esm2022/mottu/entities/event.entity.mjs +24 -0
- package/dist/esm2022/mottu/entities/index.mjs +13 -0
- package/dist/esm2022/mottu/entities/order-deliverer.entity.mjs +30 -0
- package/dist/esm2022/mottu/entities/order-deliverery-man.entity.mjs +24 -0
- package/dist/esm2022/mottu/entities/order-preview.entity.mjs +27 -0
- package/dist/esm2022/mottu/entities/order-store.entity.mjs +16 -0
- package/dist/esm2022/mottu/entities/order.entity.mjs +32 -0
- package/dist/esm2022/mottu/entities/store-matrix.entity.mjs +16 -0
- package/dist/esm2022/mottu/entities/store-responsible.entity.mjs +17 -0
- package/dist/esm2022/mottu/entities/store.entity.mjs +27 -0
- package/dist/esm2022/mottu/index.mjs +3 -0
- package/dist/esm2022/mottu/interfaces/i-address.mjs +2 -0
- package/dist/esm2022/mottu/interfaces/i-event-delivery-man.mjs +2 -0
- package/dist/esm2022/mottu/interfaces/i-event-requested-by.mjs +2 -0
- package/dist/esm2022/mottu/interfaces/i-event.mjs +2 -0
- package/dist/esm2022/mottu/interfaces/i-order-deliverer.mjs +2 -0
- package/dist/esm2022/mottu/interfaces/i-order-delivery-man.mjs +2 -0
- package/dist/esm2022/mottu/interfaces/i-order-preview.mjs +2 -0
- package/dist/esm2022/mottu/interfaces/i-order-store.mjs +2 -0
- package/dist/esm2022/mottu/interfaces/i-order.mjs +2 -0
- package/dist/esm2022/mottu/interfaces/i-store-matrix.mjs +2 -0
- package/dist/esm2022/mottu/interfaces/i-store-responsible.mjs +2 -0
- package/dist/esm2022/mottu/interfaces/i-store.mjs +2 -0
- package/dist/esm2022/mottu/interfaces/index.mjs +2 -0
- package/dist/esm2022/verifier-token/entities/index.mjs +2 -0
- package/dist/esm2022/verifier-token/entities/verifier-token.entity.mjs +24 -0
- package/dist/esm2022/verifier-token/index.mjs +3 -0
- package/dist/esm2022/verifier-token/interfaces/i-verifier-token.mjs +2 -0
- package/dist/esm2022/verifier-token/interfaces/index.mjs +2 -0
- package/dist/fesm2022/cecon-interfaces.mjs +285 -1
- package/dist/fesm2022/cecon-interfaces.mjs.map +1 -1
- package/dist/index.d.ts +2 -0
- package/dist/index.js +2 -0
- package/dist/mottu/entities/address.entity.d.ts +11 -0
- package/dist/mottu/entities/address.entity.js +26 -0
- package/dist/mottu/entities/event-delivery-man.entity.d.ts +6 -0
- package/dist/mottu/entities/event-delivery-man.entity.js +21 -0
- package/dist/mottu/entities/event-requested-by.entity.d.ts +6 -0
- package/dist/mottu/entities/event-requested-by.entity.js +21 -0
- package/dist/mottu/entities/event.entity.d.ts +11 -0
- package/dist/mottu/entities/event.entity.js +28 -0
- package/dist/mottu/entities/index.d.ts +12 -0
- package/dist/mottu/entities/index.js +27 -0
- package/dist/mottu/entities/order-deliverer.entity.d.ts +18 -0
- package/dist/mottu/entities/order-deliverer.entity.js +34 -0
- package/dist/mottu/entities/order-deliverery-man.entity.d.ts +13 -0
- package/dist/mottu/entities/order-deliverery-man.entity.js +28 -0
- package/dist/mottu/entities/order-preview.entity.d.ts +14 -0
- package/dist/mottu/entities/order-preview.entity.js +31 -0
- package/dist/mottu/entities/order-store.entity.d.ts +5 -0
- package/dist/mottu/entities/order-store.entity.js +20 -0
- package/dist/mottu/entities/order.entity.d.ts +20 -0
- package/dist/mottu/entities/order.entity.js +36 -0
- package/dist/mottu/entities/store-matrix.entity.d.ts +5 -0
- package/dist/mottu/entities/store-matrix.entity.js +20 -0
- package/dist/mottu/entities/store-responsible.entity.d.ts +6 -0
- package/dist/mottu/entities/store-responsible.entity.js +21 -0
- package/dist/mottu/entities/store.entity.d.ts +13 -0
- package/dist/mottu/entities/store.entity.js +31 -0
- package/dist/mottu/index.d.ts +2 -0
- package/dist/mottu/index.js +18 -0
- package/dist/mottu/interfaces/i-address.d.ts +9 -0
- package/dist/mottu/interfaces/i-address.js +2 -0
- package/dist/mottu/interfaces/i-event-delivery-man.d.ts +4 -0
- package/dist/mottu/interfaces/i-event-delivery-man.js +2 -0
- package/dist/mottu/interfaces/i-event-requested-by.d.ts +4 -0
- package/dist/mottu/interfaces/i-event-requested-by.js +2 -0
- package/dist/mottu/interfaces/i-event.d.ts +11 -0
- package/dist/mottu/interfaces/i-event.js +2 -0
- package/dist/mottu/interfaces/i-order-deliverer.d.ts +17 -0
- package/dist/mottu/interfaces/i-order-deliverer.js +2 -0
- package/dist/mottu/interfaces/i-order-delivery-man.d.ts +11 -0
- package/dist/mottu/interfaces/i-order-delivery-man.js +2 -0
- package/dist/mottu/interfaces/i-order-preview.d.ts +14 -0
- package/dist/mottu/interfaces/i-order-preview.js +2 -0
- package/dist/mottu/interfaces/i-order-store.d.ts +3 -0
- package/dist/mottu/interfaces/i-order-store.js +2 -0
- package/dist/mottu/interfaces/i-order.d.ts +20 -0
- package/dist/mottu/interfaces/i-order.js +2 -0
- package/dist/mottu/interfaces/i-store-matrix.d.ts +3 -0
- package/dist/mottu/interfaces/i-store-matrix.js +2 -0
- package/dist/mottu/interfaces/i-store-responsible.d.ts +4 -0
- package/dist/mottu/interfaces/i-store-responsible.js +2 -0
- package/dist/mottu/interfaces/i-store.d.ts +14 -0
- package/dist/mottu/interfaces/i-store.js +2 -0
- package/dist/mottu/interfaces/index.d.ts +12 -0
- package/dist/mottu/interfaces/index.js +2 -0
- package/dist/package.json +1 -1
- package/dist/verifier-token/entities/index.d.ts +1 -0
- package/dist/verifier-token/entities/index.js +5 -0
- package/dist/verifier-token/entities/verifier-token.entity.d.ts +13 -0
- package/dist/verifier-token/entities/verifier-token.entity.js +28 -0
- package/dist/verifier-token/index.d.ts +2 -0
- package/dist/verifier-token/index.js +18 -0
- package/dist/verifier-token/interfaces/i-verifier-token.d.ts +11 -0
- package/dist/verifier-token/interfaces/i-verifier-token.js +2 -0
- package/dist/verifier-token/interfaces/index.d.ts +1 -0
- package/dist/verifier-token/interfaces/index.js +2 -0
- package/package.json +1 -1
@@ -3275,6 +3275,266 @@ class LeadEntity {
|
|
3275
3275
|
}
|
3276
3276
|
}
|
3277
3277
|
|
3278
|
+
class MottuAddressEntity {
|
3279
|
+
// #region Properties (7)
|
3280
|
+
city = 'SP';
|
3281
|
+
complement = '';
|
3282
|
+
neighborhood = '';
|
3283
|
+
number = '';
|
3284
|
+
state = 'SP';
|
3285
|
+
street = '';
|
3286
|
+
zipCode = '';
|
3287
|
+
// #endregion Properties (7)
|
3288
|
+
// #region Constructors (1)
|
3289
|
+
constructor(data) {
|
3290
|
+
if (data) {
|
3291
|
+
for (let key in data) {
|
3292
|
+
if (data.hasOwnProperty(key) && key in this) {
|
3293
|
+
this[key] = data[key];
|
3294
|
+
}
|
3295
|
+
}
|
3296
|
+
}
|
3297
|
+
}
|
3298
|
+
}
|
3299
|
+
|
3300
|
+
class MottuEventDeliveryManEntity {
|
3301
|
+
// #region Properties (2)
|
3302
|
+
name = '';
|
3303
|
+
phone = '';
|
3304
|
+
// #endregion Properties (2)
|
3305
|
+
// #region Constructors (1)
|
3306
|
+
constructor(data) {
|
3307
|
+
if (data) {
|
3308
|
+
for (let key in data) {
|
3309
|
+
if (data.hasOwnProperty(key) && key in this) {
|
3310
|
+
this[key] = data[key];
|
3311
|
+
}
|
3312
|
+
}
|
3313
|
+
}
|
3314
|
+
}
|
3315
|
+
}
|
3316
|
+
|
3317
|
+
class MottuEventRequestedByEntity {
|
3318
|
+
// #region Properties (2)
|
3319
|
+
name = '';
|
3320
|
+
phone = '';
|
3321
|
+
// #endregion Properties (2)
|
3322
|
+
// #region Constructors (1)
|
3323
|
+
constructor(data) {
|
3324
|
+
if (data) {
|
3325
|
+
for (let key in data) {
|
3326
|
+
if (data.hasOwnProperty(key) && key in this) {
|
3327
|
+
this[key] = data[key];
|
3328
|
+
}
|
3329
|
+
}
|
3330
|
+
}
|
3331
|
+
}
|
3332
|
+
}
|
3333
|
+
|
3334
|
+
class MottuEventEntity {
|
3335
|
+
// #region Properties (7)
|
3336
|
+
createdAt = new Date();
|
3337
|
+
deliveryMan = new MottuEventDeliveryManEntity();
|
3338
|
+
description = '';
|
3339
|
+
id = 0;
|
3340
|
+
latitude = 0;
|
3341
|
+
longitude = 0;
|
3342
|
+
requestedBy = new MottuEventRequestedByEntity();
|
3343
|
+
// #endregion Properties (7)
|
3344
|
+
// #region Constructors (1)
|
3345
|
+
constructor(data) {
|
3346
|
+
if (data) {
|
3347
|
+
for (let key in data) {
|
3348
|
+
if (data.hasOwnProperty(key) && key in this) {
|
3349
|
+
this[key] = data[key];
|
3350
|
+
}
|
3351
|
+
}
|
3352
|
+
}
|
3353
|
+
}
|
3354
|
+
}
|
3355
|
+
|
3356
|
+
class MottuOrderDelivererEntity {
|
3357
|
+
// #region Properties (14)
|
3358
|
+
address = new MottuAddressEntity();
|
3359
|
+
code = null;
|
3360
|
+
deliveryCode = null;
|
3361
|
+
distance = null;
|
3362
|
+
dropoffCode = null;
|
3363
|
+
fullCode = null;
|
3364
|
+
id = null;
|
3365
|
+
name = null;
|
3366
|
+
observation = null;
|
3367
|
+
onlinePayment = false;
|
3368
|
+
orderRoute = 0;
|
3369
|
+
phone = null;
|
3370
|
+
productValue = null;
|
3371
|
+
situation = null;
|
3372
|
+
// #endregion Properties (14)
|
3373
|
+
// #region Constructors (1)
|
3374
|
+
constructor(data) {
|
3375
|
+
if (data) {
|
3376
|
+
for (let key in data) {
|
3377
|
+
if (data.hasOwnProperty(key) && key in this) {
|
3378
|
+
this[key] = data[key];
|
3379
|
+
}
|
3380
|
+
}
|
3381
|
+
}
|
3382
|
+
}
|
3383
|
+
}
|
3384
|
+
|
3385
|
+
class MottuOrderDeliveryManEntity {
|
3386
|
+
// #region Properties (9)
|
3387
|
+
ddd = '';
|
3388
|
+
document = '';
|
3389
|
+
email = '';
|
3390
|
+
id = 0;
|
3391
|
+
latitude = 0;
|
3392
|
+
longitude = 0;
|
3393
|
+
name = '';
|
3394
|
+
phone = '';
|
3395
|
+
profileId = 0;
|
3396
|
+
// #endregion Properties (9)
|
3397
|
+
// #region Constructors (1)
|
3398
|
+
constructor(data) {
|
3399
|
+
if (data) {
|
3400
|
+
for (let key in data) {
|
3401
|
+
if (data.hasOwnProperty(key) && key in this) {
|
3402
|
+
this[key] = data[key];
|
3403
|
+
}
|
3404
|
+
}
|
3405
|
+
}
|
3406
|
+
}
|
3407
|
+
}
|
3408
|
+
|
3409
|
+
class MottuOrderStoreEntity {
|
3410
|
+
// #region Properties (1)
|
3411
|
+
userMottuId = 0;
|
3412
|
+
// #endregion Properties (1)
|
3413
|
+
// #region Constructors (1)
|
3414
|
+
constructor(data) {
|
3415
|
+
if (data) {
|
3416
|
+
for (let key in data) {
|
3417
|
+
if (data.hasOwnProperty(key) && key in this) {
|
3418
|
+
this[key] = data[key];
|
3419
|
+
}
|
3420
|
+
}
|
3421
|
+
}
|
3422
|
+
}
|
3423
|
+
}
|
3424
|
+
|
3425
|
+
class MottuOrderPreviewEntity {
|
3426
|
+
// #region Properties (10)
|
3427
|
+
deliveries = [];
|
3428
|
+
deliveryFee = 0;
|
3429
|
+
expectedDelivery = new Date();
|
3430
|
+
expectedPickup = new Date();
|
3431
|
+
onlinePayment = false;
|
3432
|
+
pickupAddress = new MottuAddressEntity();
|
3433
|
+
previewDeliveryTime = false;
|
3434
|
+
sortByBestRoute = false;
|
3435
|
+
store = new MottuOrderStoreEntity();
|
3436
|
+
totalDistance = 0;
|
3437
|
+
// #endregion Properties (10)
|
3438
|
+
// #region Constructors (1)
|
3439
|
+
constructor(data) {
|
3440
|
+
if (data) {
|
3441
|
+
for (let key in data) {
|
3442
|
+
if (data.hasOwnProperty(key) && key in this) {
|
3443
|
+
this[key] = data[key];
|
3444
|
+
}
|
3445
|
+
}
|
3446
|
+
}
|
3447
|
+
}
|
3448
|
+
}
|
3449
|
+
|
3450
|
+
class MottuOrderEntity {
|
3451
|
+
// #region Properties (16)
|
3452
|
+
code = '';
|
3453
|
+
createdAt = new Date();
|
3454
|
+
deliveryFee = 0;
|
3455
|
+
deliveryMan = new MottuOrderDeliveryManEntity();
|
3456
|
+
events = [];
|
3457
|
+
expectedDelivery = new Date();
|
3458
|
+
expectedPickup = new Date();
|
3459
|
+
fullCode = '';
|
3460
|
+
id = 0;
|
3461
|
+
origin = '';
|
3462
|
+
pickupCode = '';
|
3463
|
+
preparationTime = 0;
|
3464
|
+
returnCode = '';
|
3465
|
+
situation = 0;
|
3466
|
+
storeId = 0;
|
3467
|
+
totalDistance = 0;
|
3468
|
+
// #endregion Properties (16)
|
3469
|
+
// #region Constructors (1)
|
3470
|
+
constructor(data) {
|
3471
|
+
if (data) {
|
3472
|
+
for (let key in data) {
|
3473
|
+
if (data.hasOwnProperty(key) && key in this) {
|
3474
|
+
this[key] = data[key];
|
3475
|
+
}
|
3476
|
+
}
|
3477
|
+
}
|
3478
|
+
}
|
3479
|
+
}
|
3480
|
+
|
3481
|
+
class MottuStoreMatrixEntity {
|
3482
|
+
// #region Properties (1)
|
3483
|
+
id = 0;
|
3484
|
+
// #endregion Properties (1)
|
3485
|
+
// #region Constructors (1)
|
3486
|
+
constructor(data) {
|
3487
|
+
if (data) {
|
3488
|
+
for (let key in data) {
|
3489
|
+
if (data.hasOwnProperty(key) && key in this) {
|
3490
|
+
this[key] = data[key];
|
3491
|
+
}
|
3492
|
+
}
|
3493
|
+
}
|
3494
|
+
}
|
3495
|
+
}
|
3496
|
+
|
3497
|
+
class MottuStoreResponsibleEntity {
|
3498
|
+
// #region Properties (2)
|
3499
|
+
name = '';
|
3500
|
+
phone = '';
|
3501
|
+
// #endregion Properties (2)
|
3502
|
+
// #region Constructors (1)
|
3503
|
+
constructor(data) {
|
3504
|
+
if (data) {
|
3505
|
+
for (let key in data) {
|
3506
|
+
if (data.hasOwnProperty(key) && key in this) {
|
3507
|
+
this[key] = data[key];
|
3508
|
+
}
|
3509
|
+
}
|
3510
|
+
}
|
3511
|
+
}
|
3512
|
+
}
|
3513
|
+
|
3514
|
+
class MottuStoreEntity {
|
3515
|
+
// #region Properties (10)
|
3516
|
+
address = new MottuAddressEntity();
|
3517
|
+
balance = 0;
|
3518
|
+
cnpj = '';
|
3519
|
+
email = '';
|
3520
|
+
id = 0;
|
3521
|
+
marketplaceBranchId = 0;
|
3522
|
+
matrix = new MottuStoreMatrixEntity();
|
3523
|
+
name = '';
|
3524
|
+
responsible = new MottuStoreResponsibleEntity();
|
3525
|
+
// #endregion Properties (10)
|
3526
|
+
// #region Constructors (1)
|
3527
|
+
constructor(data) {
|
3528
|
+
if (data) {
|
3529
|
+
for (let key in data) {
|
3530
|
+
if (data.hasOwnProperty(key) && key in this) {
|
3531
|
+
this[key] = data[key];
|
3532
|
+
}
|
3533
|
+
}
|
3534
|
+
}
|
3535
|
+
}
|
3536
|
+
}
|
3537
|
+
|
3278
3538
|
var NotificationActionTypeEnum;
|
3279
3539
|
(function (NotificationActionTypeEnum) {
|
3280
3540
|
NotificationActionTypeEnum["URL"] = "url";
|
@@ -3940,6 +4200,30 @@ class TokenEntity {
|
|
3940
4200
|
}
|
3941
4201
|
}
|
3942
4202
|
|
4203
|
+
class VerifierTokenEntity {
|
4204
|
+
// #region Properties (9)
|
4205
|
+
appId = null;
|
4206
|
+
createdAt = Date.now();
|
4207
|
+
expiresAt = Date.now() + 1000 * 60 * 30;
|
4208
|
+
id = '';
|
4209
|
+
message = '';
|
4210
|
+
receiver = '';
|
4211
|
+
value = '';
|
4212
|
+
verified = false;
|
4213
|
+
verifiedAt = 0;
|
4214
|
+
// #endregion Properties (9)
|
4215
|
+
// #region Constructors (1)
|
4216
|
+
constructor(data) {
|
4217
|
+
if (data) {
|
4218
|
+
for (let key in data) {
|
4219
|
+
if (data.hasOwnProperty(key) && key in this) {
|
4220
|
+
this[key] = data[key];
|
4221
|
+
}
|
4222
|
+
}
|
4223
|
+
}
|
4224
|
+
}
|
4225
|
+
}
|
4226
|
+
|
3943
4227
|
var EVoucherStatus;
|
3944
4228
|
(function (EVoucherStatus) {
|
3945
4229
|
EVoucherStatus["ACTIVE"] = "ACTIVE";
|
@@ -4041,5 +4325,5 @@ class WaServerEntity {
|
|
4041
4325
|
* Generated bundle index. Do not edit.
|
4042
4326
|
*/
|
4043
4327
|
|
4044
|
-
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, EEvolutionEvent, EEvolutionInstanceType, EFiscalDocModelCode, EInstallationStatus, EIntervalType, EInvoiceStatus, ELeadOrigin, ELegalEntiy, EOrderDeliveryMode, EOrderTiming, EOrderType, EOs, EPaymentChannel, EPaymentMode, EPaymentProvider, EPaymentStatus, EPaymentType, EPlanFeatureType, EPlanIdentifier, EPlatform, EPubSub, EPubSubTopicType, ESponsorshipValues, ESubscriptionStatus, EVoucherStatus, EWaServerStatus, EvolutionChatWootEntity, EvolutionDatabaseQueueEntity, EvolutionEntity, EvolutionHashEntity, EvolutionInstanceEntity, EvolutionMessageKeyResponseEntity, EvolutionMessageResponseEntity, EvolutionQrcodeEntity, EvolutionTypeBotEntity, EvolutionWebhookEntity, 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, 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, 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, WaServerEntity };
|
4328
|
+
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, EEvolutionEvent, EEvolutionInstanceType, EFiscalDocModelCode, EInstallationStatus, EIntervalType, EInvoiceStatus, ELeadOrigin, ELegalEntiy, EOrderDeliveryMode, EOrderTiming, EOrderType, EOs, EPaymentChannel, EPaymentMode, EPaymentProvider, EPaymentStatus, EPaymentType, EPlanFeatureType, EPlanIdentifier, EPlatform, EPubSub, EPubSubTopicType, ESponsorshipValues, ESubscriptionStatus, EVoucherStatus, EWaServerStatus, EvolutionChatWootEntity, EvolutionDatabaseQueueEntity, EvolutionEntity, EvolutionHashEntity, EvolutionInstanceEntity, EvolutionMessageKeyResponseEntity, EvolutionMessageResponseEntity, EvolutionQrcodeEntity, EvolutionTypeBotEntity, EvolutionWebhookEntity, 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, MottuAddressEntity, MottuEventDeliveryManEntity, MottuEventEntity, MottuEventRequestedByEntity, MottuOrderDelivererEntity, MottuOrderDeliveryManEntity, MottuOrderEntity, MottuOrderPreviewEntity, MottuOrderStoreEntity, MottuStoreEntity, MottuStoreMatrixEntity, MottuStoreResponsibleEntity, NatiGoEntity, 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, ProductNcmEntity, ProductGlobalEntity as ProductglobalEntity, PubsubSubscriptionChangeStatusEntity, PurchaseEntity, RabbitEntity, RatingEntity, ResumeCollectionEntity, ResumeDayEntity, ResumeEntity, ResumeHourEntity, ResumeMonthEntity, ResumeTotalEntity, ResumeYearEntity, SponsorshipValueEntity, SubscriptionBaseEntity, SubscriptionBaseItemEntity, SubscriptionBaseLogEntity, SubscriptionCompanyEntity, SubscriptionCompanyProfileEntity, SubscriptionCustomerEntity, SubscriptionCustomerProfileEntity, TokenEntity, VerifierTokenEntity, VoucherEntity, WaServerEntity };
|
4045
4329
|
//# sourceMappingURL=cecon-interfaces.mjs.map
|