cecon-interfaces 1.2.44 → 1.2.46

Sign up to get free protection for your applications and to get access to all the features.
Files changed (93) hide show
  1. package/dist/esm2022/index.mjs +2 -1
  2. package/dist/esm2022/mottu/entities/address.entity.mjs +22 -0
  3. package/dist/esm2022/mottu/entities/event-delivery-man.entity.mjs +17 -0
  4. package/dist/esm2022/mottu/entities/event-requested-by.entity.mjs +17 -0
  5. package/dist/esm2022/mottu/entities/event.entity.mjs +24 -0
  6. package/dist/esm2022/mottu/entities/index.mjs +13 -0
  7. package/dist/esm2022/mottu/entities/order-deliverer.entity.mjs +30 -0
  8. package/dist/esm2022/mottu/entities/order-deliverery-man.entity.mjs +24 -0
  9. package/dist/esm2022/mottu/entities/order-preview.entity.mjs +27 -0
  10. package/dist/esm2022/mottu/entities/order-store.entity.mjs +16 -0
  11. package/dist/esm2022/mottu/entities/order.entity.mjs +32 -0
  12. package/dist/esm2022/mottu/entities/store-matrix.entity.mjs +16 -0
  13. package/dist/esm2022/mottu/entities/store-responsible.entity.mjs +17 -0
  14. package/dist/esm2022/mottu/entities/store.entity.mjs +27 -0
  15. package/dist/esm2022/mottu/index.mjs +3 -0
  16. package/dist/esm2022/mottu/interfaces/i-address.mjs +2 -0
  17. package/dist/esm2022/mottu/interfaces/i-event-delivery-man.mjs +2 -0
  18. package/dist/esm2022/mottu/interfaces/i-event-requested-by.mjs +2 -0
  19. package/dist/esm2022/mottu/interfaces/i-event.mjs +2 -0
  20. package/dist/esm2022/mottu/interfaces/i-order-deliverer.mjs +2 -0
  21. package/dist/esm2022/mottu/interfaces/i-order-delivery-man.mjs +2 -0
  22. package/dist/esm2022/mottu/interfaces/i-order-preview.mjs +2 -0
  23. package/dist/esm2022/mottu/interfaces/i-order-store.mjs +2 -0
  24. package/dist/esm2022/mottu/interfaces/i-order.mjs +2 -0
  25. package/dist/esm2022/mottu/interfaces/i-store-matrix.mjs +2 -0
  26. package/dist/esm2022/mottu/interfaces/i-store-responsible.mjs +2 -0
  27. package/dist/esm2022/mottu/interfaces/i-store.mjs +2 -0
  28. package/dist/esm2022/mottu/interfaces/index.mjs +2 -0
  29. package/dist/esm2022/verifier-token/entities/verifier-token.entity.mjs +4 -3
  30. package/dist/esm2022/verifier-token/interfaces/i-verifier-token.mjs +1 -1
  31. package/dist/fesm2022/cecon-interfaces.mjs +264 -3
  32. package/dist/fesm2022/cecon-interfaces.mjs.map +1 -1
  33. package/dist/index.d.ts +1 -0
  34. package/dist/index.js +1 -0
  35. package/dist/mottu/entities/address.entity.d.ts +11 -0
  36. package/dist/mottu/entities/address.entity.js +26 -0
  37. package/dist/mottu/entities/event-delivery-man.entity.d.ts +6 -0
  38. package/dist/mottu/entities/event-delivery-man.entity.js +21 -0
  39. package/dist/mottu/entities/event-requested-by.entity.d.ts +6 -0
  40. package/dist/mottu/entities/event-requested-by.entity.js +21 -0
  41. package/dist/mottu/entities/event.entity.d.ts +11 -0
  42. package/dist/mottu/entities/event.entity.js +28 -0
  43. package/dist/mottu/entities/index.d.ts +12 -0
  44. package/dist/mottu/entities/index.js +27 -0
  45. package/dist/mottu/entities/order-deliverer.entity.d.ts +18 -0
  46. package/dist/mottu/entities/order-deliverer.entity.js +34 -0
  47. package/dist/mottu/entities/order-deliverery-man.entity.d.ts +13 -0
  48. package/dist/mottu/entities/order-deliverery-man.entity.js +28 -0
  49. package/dist/mottu/entities/order-preview.entity.d.ts +14 -0
  50. package/dist/mottu/entities/order-preview.entity.js +31 -0
  51. package/dist/mottu/entities/order-store.entity.d.ts +5 -0
  52. package/dist/mottu/entities/order-store.entity.js +20 -0
  53. package/dist/mottu/entities/order.entity.d.ts +20 -0
  54. package/dist/mottu/entities/order.entity.js +36 -0
  55. package/dist/mottu/entities/store-matrix.entity.d.ts +5 -0
  56. package/dist/mottu/entities/store-matrix.entity.js +20 -0
  57. package/dist/mottu/entities/store-responsible.entity.d.ts +6 -0
  58. package/dist/mottu/entities/store-responsible.entity.js +21 -0
  59. package/dist/mottu/entities/store.entity.d.ts +13 -0
  60. package/dist/mottu/entities/store.entity.js +31 -0
  61. package/dist/mottu/index.d.ts +2 -0
  62. package/dist/mottu/index.js +18 -0
  63. package/dist/mottu/interfaces/i-address.d.ts +9 -0
  64. package/dist/mottu/interfaces/i-address.js +2 -0
  65. package/dist/mottu/interfaces/i-event-delivery-man.d.ts +4 -0
  66. package/dist/mottu/interfaces/i-event-delivery-man.js +2 -0
  67. package/dist/mottu/interfaces/i-event-requested-by.d.ts +4 -0
  68. package/dist/mottu/interfaces/i-event-requested-by.js +2 -0
  69. package/dist/mottu/interfaces/i-event.d.ts +11 -0
  70. package/dist/mottu/interfaces/i-event.js +2 -0
  71. package/dist/mottu/interfaces/i-order-deliverer.d.ts +17 -0
  72. package/dist/mottu/interfaces/i-order-deliverer.js +2 -0
  73. package/dist/mottu/interfaces/i-order-delivery-man.d.ts +11 -0
  74. package/dist/mottu/interfaces/i-order-delivery-man.js +2 -0
  75. package/dist/mottu/interfaces/i-order-preview.d.ts +14 -0
  76. package/dist/mottu/interfaces/i-order-preview.js +2 -0
  77. package/dist/mottu/interfaces/i-order-store.d.ts +3 -0
  78. package/dist/mottu/interfaces/i-order-store.js +2 -0
  79. package/dist/mottu/interfaces/i-order.d.ts +20 -0
  80. package/dist/mottu/interfaces/i-order.js +2 -0
  81. package/dist/mottu/interfaces/i-store-matrix.d.ts +3 -0
  82. package/dist/mottu/interfaces/i-store-matrix.js +2 -0
  83. package/dist/mottu/interfaces/i-store-responsible.d.ts +4 -0
  84. package/dist/mottu/interfaces/i-store-responsible.js +2 -0
  85. package/dist/mottu/interfaces/i-store.d.ts +14 -0
  86. package/dist/mottu/interfaces/i-store.js +2 -0
  87. package/dist/mottu/interfaces/index.d.ts +12 -0
  88. package/dist/mottu/interfaces/index.js +2 -0
  89. package/dist/package.json +1 -1
  90. package/dist/verifier-token/entities/verifier-token.entity.d.ts +1 -0
  91. package/dist/verifier-token/entities/verifier-token.entity.js +3 -2
  92. package/dist/verifier-token/interfaces/i-verifier-token.d.ts +1 -0
  93. 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";
@@ -3941,16 +4201,17 @@ class TokenEntity {
3941
4201
  }
3942
4202
 
3943
4203
  class VerifierTokenEntity {
3944
- // #region Properties (8)
4204
+ // #region Properties (9)
3945
4205
  appId = null;
3946
4206
  createdAt = Date.now();
3947
4207
  expiresAt = Date.now() + 1000 * 60 * 30;
3948
4208
  id = '';
4209
+ message = '';
3949
4210
  receiver = '';
3950
4211
  value = '';
3951
4212
  verified = false;
3952
4213
  verifiedAt = 0;
3953
- // #endregion Properties (8)
4214
+ // #endregion Properties (9)
3954
4215
  // #region Constructors (1)
3955
4216
  constructor(data) {
3956
4217
  if (data) {
@@ -4064,5 +4325,5 @@ class WaServerEntity {
4064
4325
  * Generated bundle index. Do not edit.
4065
4326
  */
4066
4327
 
4067
- 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, VerifierTokenEntity, 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 };
4068
4329
  //# sourceMappingURL=cecon-interfaces.mjs.map