cecon-interfaces 1.7.96 → 1.7.98

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.
Files changed (92) hide show
  1. package/dist/esm2022/natipay/company/interfaces/i-company.mjs +1 -1
  2. package/dist/esm2022/payio/cash-config/entities/config-operation.entity.mjs +23 -0
  3. package/dist/esm2022/payio/cash-config/entities/config.entity.mjs +20 -0
  4. package/dist/esm2022/payio/cash-config/entities/index.mjs +3 -0
  5. package/dist/esm2022/payio/cash-config/enums/index.mjs +2 -0
  6. package/dist/esm2022/payio/cash-config/enums/tef-provider.enum.mjs +8 -0
  7. package/dist/esm2022/payio/cash-config/index.mjs +4 -0
  8. package/dist/esm2022/payio/cash-config/interfaces/i-cash-config.mjs +2 -0
  9. package/dist/esm2022/payio/cash-config/interfaces/i-chef-config-operation.mjs +2 -0
  10. package/dist/esm2022/payio/cash-config/interfaces/index.mjs +2 -0
  11. package/dist/esm2022/payio/chef-config/entities/{chef-config-operation.entity.mjs → config-operation.entity.mjs} +2 -2
  12. package/dist/esm2022/payio/chef-config/entities/config-printer.entity.mjs +20 -0
  13. package/dist/esm2022/payio/chef-config/entities/config-scale.entity.mjs +18 -0
  14. package/dist/esm2022/payio/chef-config/entities/config.entity.mjs +23 -0
  15. package/dist/esm2022/payio/chef-config/entities/index.mjs +7 -8
  16. package/dist/esm2022/payio/chef-config/entities/tabs.entity.mjs +15 -0
  17. package/dist/esm2022/payio/chef-config/entities/webhook.entity.mjs +25 -0
  18. package/dist/esm2022/payio/chef-config/enums/index.mjs +3 -1
  19. package/dist/esm2022/payio/chef-config/enums/webhook-method.enum.mjs +8 -0
  20. package/dist/esm2022/payio/chef-config/enums/webhook-type.enum.mjs +16 -0
  21. package/dist/esm2022/payio/chef-config/interfaces/i-chef-config.mjs +1 -1
  22. package/dist/esm2022/payio/chef-config/interfaces/i-tabs.mjs +2 -0
  23. package/dist/esm2022/payio/chef-config/interfaces/i-webhook.mjs +2 -0
  24. package/dist/esm2022/payio/chef-config/interfaces/index.mjs +1 -1
  25. package/dist/esm2022/payio/index.mjs +2 -1
  26. package/dist/fesm2022/cecon-interfaces.mjs +112 -50
  27. package/dist/fesm2022/cecon-interfaces.mjs.map +1 -1
  28. package/dist/natipay/company/interfaces/i-company.d.ts +9 -9
  29. package/dist/package.json +1 -1
  30. package/dist/payio/cash-config/entities/config-operation.entity.d.ts +15 -0
  31. package/dist/payio/cash-config/entities/config-operation.entity.js +31 -0
  32. package/dist/payio/cash-config/entities/config.entity.d.ts +13 -0
  33. package/dist/payio/cash-config/entities/config.entity.js +24 -0
  34. package/dist/payio/cash-config/entities/index.d.ts +2 -0
  35. package/dist/payio/cash-config/entities/index.js +7 -0
  36. package/dist/payio/cash-config/enums/index.d.ts +1 -0
  37. package/dist/payio/cash-config/enums/index.js +5 -0
  38. package/dist/payio/cash-config/enums/tef-provider.enum.d.ts +6 -0
  39. package/dist/payio/cash-config/enums/tef-provider.enum.js +10 -0
  40. package/dist/payio/cash-config/index.d.ts +3 -0
  41. package/dist/payio/cash-config/index.js +19 -0
  42. package/dist/payio/cash-config/interfaces/i-cash-config.d.ts +11 -0
  43. package/dist/payio/cash-config/interfaces/i-chef-config-operation.d.ts +13 -0
  44. package/dist/payio/cash-config/interfaces/index.d.ts +1 -0
  45. package/dist/payio/chef-config/entities/{chef-config-operation.entity.js → config-operation.entity.js} +1 -0
  46. package/dist/payio/chef-config/entities/{chef-config.entity.d.ts → config.entity.d.ts} +3 -3
  47. package/dist/payio/chef-config/entities/{chef-config.entity.js → config.entity.js} +4 -4
  48. package/dist/payio/chef-config/entities/index.d.ts +6 -7
  49. package/dist/payio/chef-config/entities/index.js +13 -15
  50. package/dist/payio/chef-config/entities/tabs.entity.d.ts +7 -0
  51. package/dist/payio/chef-config/entities/{chef-config-tabs.entity.js → tabs.entity.js} +5 -5
  52. package/dist/payio/chef-config/entities/webhook.entity.d.ts +16 -0
  53. package/dist/payio/chef-config/entities/webhook.entity.js +31 -0
  54. package/dist/payio/chef-config/enums/index.d.ts +2 -0
  55. package/dist/payio/chef-config/enums/index.js +5 -1
  56. package/dist/payio/chef-config/enums/webhook-method.enum.d.ts +6 -0
  57. package/dist/payio/chef-config/enums/webhook-method.enum.js +10 -0
  58. package/dist/payio/chef-config/enums/webhook-type.enum.d.ts +14 -0
  59. package/dist/payio/chef-config/enums/webhook-type.enum.js +18 -0
  60. package/dist/payio/chef-config/interfaces/i-chef-config.d.ts +4 -4
  61. package/dist/payio/chef-config/interfaces/{i-chef-config-tabs.d.ts → i-tabs.d.ts} +1 -1
  62. package/dist/payio/chef-config/interfaces/i-tabs.js +2 -0
  63. package/dist/payio/chef-config/interfaces/i-webhook.d.ts +14 -0
  64. package/dist/payio/chef-config/interfaces/i-webhook.js +2 -0
  65. package/dist/payio/chef-config/interfaces/index.d.ts +2 -3
  66. package/dist/payio/index.d.ts +1 -0
  67. package/dist/payio/index.js +1 -0
  68. package/package.json +1 -1
  69. package/dist/esm2022/payio/chef-config/entities/chef-config-printer.entity.mjs +0 -20
  70. package/dist/esm2022/payio/chef-config/entities/chef-config-scale.entity.mjs +0 -18
  71. package/dist/esm2022/payio/chef-config/entities/chef-config-tabs.entity.mjs +0 -15
  72. package/dist/esm2022/payio/chef-config/entities/chef-config-webhook-header.entity.mjs +0 -14
  73. package/dist/esm2022/payio/chef-config/entities/chef-config-webhook.entity.mjs +0 -20
  74. package/dist/esm2022/payio/chef-config/entities/chef-config.entity.mjs +0 -23
  75. package/dist/esm2022/payio/chef-config/interfaces/i-chef-config-tabs.mjs +0 -2
  76. package/dist/esm2022/payio/chef-config/interfaces/i-chef-config-webhook-header.mjs +0 -2
  77. package/dist/esm2022/payio/chef-config/interfaces/i-chef-config-webhook.mjs +0 -2
  78. package/dist/payio/chef-config/entities/chef-config-tabs.entity.d.ts +0 -7
  79. package/dist/payio/chef-config/entities/chef-config-webhook-header.entity.d.ts +0 -6
  80. package/dist/payio/chef-config/entities/chef-config-webhook-header.entity.js +0 -18
  81. package/dist/payio/chef-config/entities/chef-config-webhook.entity.d.ts +0 -12
  82. package/dist/payio/chef-config/entities/chef-config-webhook.entity.js +0 -22
  83. package/dist/payio/chef-config/interfaces/i-chef-config-webhook-header.d.ts +0 -4
  84. package/dist/payio/chef-config/interfaces/i-chef-config-webhook.d.ts +0 -10
  85. package/dist/payio/{chef-config/interfaces/i-chef-config-tabs.js → cash-config/interfaces/i-cash-config.js} +0 -0
  86. package/dist/payio/{chef-config/interfaces/i-chef-config-webhook-header.js → cash-config/interfaces/i-chef-config-operation.js} +0 -0
  87. package/dist/payio/{chef-config/interfaces/i-chef-config-webhook.js → cash-config/interfaces/index.js} +0 -0
  88. package/dist/payio/chef-config/entities/{chef-config-operation.entity.d.ts → config-operation.entity.d.ts} +1 -1
  89. /package/dist/payio/chef-config/entities/{chef-config-printer.entity.d.ts → config-printer.entity.d.ts} +0 -0
  90. /package/dist/payio/chef-config/entities/{chef-config-printer.entity.js → config-printer.entity.js} +0 -0
  91. /package/dist/payio/chef-config/entities/{chef-config-scale.entity.d.ts → config-scale.entity.d.ts} +0 -0
  92. /package/dist/payio/chef-config/entities/{chef-config-scale.entity.js → config-scale.entity.js} +0 -0
@@ -6733,6 +6733,26 @@ class PayioAppEntity {
6733
6733
  }
6734
6734
  }
6735
6735
 
6736
+ class PayioChefConfigPrinterEntity {
6737
+ // #region Properties (5)
6738
+ active = true;
6739
+ brand = null;
6740
+ interface = 'USB';
6741
+ model = null;
6742
+ port = null;
6743
+ // #endregion Properties (5)
6744
+ // #region Constructors (1)
6745
+ constructor(data) {
6746
+ if (data) {
6747
+ for (let key in data) {
6748
+ if (data.hasOwnProperty(key) && key in this) {
6749
+ this[key] = data[key];
6750
+ }
6751
+ }
6752
+ }
6753
+ }
6754
+ }
6755
+
6736
6756
  var EBarcodeFormat;
6737
6757
  (function (EBarcodeFormat) {
6738
6758
  EBarcodeFormat["CODE_4_PRICE_5"] = "FCCCCTTTTT";
@@ -6759,6 +6779,30 @@ var EPayioChefTabMode;
6759
6779
  EPayioChefTabMode["FACE"] = "FACE";
6760
6780
  })(EPayioChefTabMode || (EPayioChefTabMode = {}));
6761
6781
 
6782
+ var EWebhookMethod;
6783
+ (function (EWebhookMethod) {
6784
+ EWebhookMethod["GET"] = "GET";
6785
+ EWebhookMethod["POST"] = "POST";
6786
+ EWebhookMethod["PUT"] = "PUT";
6787
+ EWebhookMethod["DELETE"] = "DELETE";
6788
+ })(EWebhookMethod || (EWebhookMethod = {}));
6789
+
6790
+ var EWebhookType;
6791
+ (function (EWebhookType) {
6792
+ EWebhookType["PING"] = "PING";
6793
+ EWebhookType["GET_PRODUCT"] = "GET_PRODUCT";
6794
+ EWebhookType["SEND_ORDER"] = "SEND_ORDER";
6795
+ EWebhookType["GET_ORDER"] = "GET_ORDER";
6796
+ EWebhookType["CANCEL_ORDER"] = "CANCEL_ORDER";
6797
+ EWebhookType["GET_ORDER_STATUS"] = "GET_ORDER_STATUS";
6798
+ EWebhookType["VISION_SEND_IMG"] = "VISION_SEND_IMG";
6799
+ EWebhookType["VISION_ASSIGN_POSITION"] = "VISION_ASSIGN_POSITION";
6800
+ EWebhookType["VISION_UNASSIGN_POSITION"] = "VISION_UNASSIGN_POSITION";
6801
+ EWebhookType["VISION_GET_POSITION"] = "VISION_GET_POSITION";
6802
+ EWebhookType["NFCE_GET_XML"] = "NFCE_GET_XML";
6803
+ EWebhookType["GET_TAB"] = "GET_TAB";
6804
+ })(EWebhookType || (EWebhookType = {}));
6805
+
6762
6806
  class PayioChefConfigOperationEntity {
6763
6807
  barcodeFormat = EBarcodeFormat.CODE_6_PRICE_6;
6764
6808
  barcodeInitialFlag = '2';
@@ -6778,27 +6822,7 @@ class PayioChefConfigOperationEntity {
6778
6822
  tabMode = EPayioChefTabMode.MANUAL;
6779
6823
  tabRegistered = false;
6780
6824
  urlLogo = '';
6781
- constructor(data) {
6782
- if (data) {
6783
- for (let key in data) {
6784
- if (data.hasOwnProperty(key) && key in this) {
6785
- this[key] = data[key];
6786
- }
6787
- }
6788
- }
6789
- }
6790
- tabRegistred;
6791
- }
6792
-
6793
- class PayioChefConfigPrinterEntity {
6794
- // #region Properties (5)
6795
- active = true;
6796
- brand = null;
6797
- interface = 'USB';
6798
- model = null;
6799
- port = null;
6800
- // #endregion Properties (5)
6801
- // #region Constructors (1)
6825
+ tabRegistred = false;
6802
6826
  constructor(data) {
6803
6827
  if (data) {
6804
6828
  for (let key in data) {
@@ -6828,10 +6852,16 @@ class PayioChefConfigScaleEntity {
6828
6852
  }
6829
6853
  }
6830
6854
 
6831
- class PayioChefConfigTabsEntity {
6832
- active = true;
6855
+ class PayioChefConfigEntity {
6856
+ createdAt = new Date();
6833
6857
  id = '';
6834
6858
  name = '';
6859
+ operation = new PayioChefConfigOperationEntity();
6860
+ printer = null;
6861
+ scale = new PayioChefConfigScaleEntity();
6862
+ tabs = [];
6863
+ updatedAt = new Date();
6864
+ webhook = [];
6835
6865
  constructor(data) {
6836
6866
  if (data) {
6837
6867
  for (let key in data) {
@@ -6843,9 +6873,10 @@ class PayioChefConfigTabsEntity {
6843
6873
  }
6844
6874
  }
6845
6875
 
6846
- class PayioChefConfigWebhookHeaderEntity {
6847
- key = '';
6848
- value = '';
6876
+ class PayioTabsEntity {
6877
+ active = true;
6878
+ id = '';
6879
+ name = '';
6849
6880
  constructor(data) {
6850
6881
  if (data) {
6851
6882
  for (let key in data) {
@@ -6857,14 +6888,14 @@ class PayioChefConfigWebhookHeaderEntity {
6857
6888
  }
6858
6889
  }
6859
6890
 
6860
- class PayioChefConfigWebhookEntity {
6891
+ class PayioWebhookEntity {
6861
6892
  active = true;
6862
6893
  headers = [];
6863
6894
  locked = false;
6864
- method = 'POST';
6895
+ method = EWebhookMethod.POST;
6865
6896
  // Travar caso não esteja respondendo
6866
6897
  response;
6867
- type = 'SEND_ORDER';
6898
+ type = EWebhookType.SEND_ORDER;
6868
6899
  url = '';
6869
6900
  constructor(data) {
6870
6901
  if (data) {
@@ -6876,26 +6907,9 @@ class PayioChefConfigWebhookEntity {
6876
6907
  }
6877
6908
  }
6878
6909
  }
6879
-
6880
- class PayioChefConfigEntity {
6881
- createdAt = new Date();
6882
- id = '';
6883
- name = '';
6884
- operation = new PayioChefConfigOperationEntity();
6885
- printer = null;
6886
- scale = new PayioChefConfigScaleEntity();
6887
- tabs = [];
6888
- updatedAt = new Date();
6889
- webhook = [];
6890
- constructor(data) {
6891
- if (data) {
6892
- for (let key in data) {
6893
- if (data.hasOwnProperty(key) && key in this) {
6894
- this[key] = data[key];
6895
- }
6896
- }
6897
- }
6898
- }
6910
+ class PayioWebhookHeaderEntity {
6911
+ key = '';
6912
+ value = '';
6899
6913
  }
6900
6914
 
6901
6915
  class PayioAddressEntity {
@@ -7673,6 +7687,54 @@ class PayioTokenEntity {
7673
7687
  }
7674
7688
  }
7675
7689
 
7690
+ var ETefProvider;
7691
+ (function (ETefProvider) {
7692
+ ETefProvider["FISERV"] = "FISERV";
7693
+ ETefProvider["PAYER"] = "PAYER";
7694
+ ETefProvider["FIREBANK"] = "FIREBANK";
7695
+ ETefProvider["FORPAY"] = "FORPAY";
7696
+ })(ETefProvider || (ETefProvider = {}));
7697
+
7698
+ class PayioCashConfigOperationEntity {
7699
+ balanceMethod = EBarcodeFormat.CODE_6_PRICE_6;
7700
+ tabFormat = null;
7701
+ tef = new PayioCashConfigOperationTefEntity();
7702
+ constructor(data) {
7703
+ if (data) {
7704
+ for (let key in data) {
7705
+ if (data.hasOwnProperty(key) && key in this) {
7706
+ this[key] = data[key];
7707
+ }
7708
+ }
7709
+ }
7710
+ }
7711
+ }
7712
+ class PayioCashConfigOperationTefEntity {
7713
+ companyNumber = 0;
7714
+ provider = ETefProvider.FISERV;
7715
+ terminal = '';
7716
+ url = '';
7717
+ }
7718
+
7719
+ class PayioCashConfigEntity {
7720
+ createdAt = new Date();
7721
+ id = '';
7722
+ name = '';
7723
+ operation = new PayioCashConfigOperationEntity();
7724
+ tabs = [];
7725
+ updatedAt = new Date();
7726
+ webhook = [];
7727
+ constructor(data) {
7728
+ if (data) {
7729
+ for (let key in data) {
7730
+ if (data.hasOwnProperty(key) && key in this) {
7731
+ this[key] = data[key];
7732
+ }
7733
+ }
7734
+ }
7735
+ }
7736
+ }
7737
+
7676
7738
  var EPlanFeatureType;
7677
7739
  (function (EPlanFeatureType) {
7678
7740
  EPlanFeatureType["FEATURE"] = "FEATURE";
@@ -8345,5 +8407,5 @@ class WithDrawRequestEntity {
8345
8407
  * Generated bundle index. Do not edit.
8346
8408
  */
8347
8409
 
8348
- export { AccountInformationsEntity, AddressEntity, AppEntity, AppInfoEntity, BaseEntity, BillingEntity, BillingOrderEntity, BillingPaymentEntity, BillingTotalEntity, CampaignRuleEntity, CarouselImageEntity, ClientAplicationCredentialEntity, ClientAplicationEntity, ClientEntity, CompanyContactEntity, CompanyCustomDataEntity, CompanyEntity, CompanyRemoteAccessEntity, CompanySettingsEntity, CompanySettingsWaServerEntity, CompanyTrialPlansUsedEntity, ContainerEntity, CoordsEntity, CustomVariableEntity, CustomerCreditLimitEntity, CustomerEntity, CustomerMemberEntity, CustomerMobyoEntity, DelivererMobyoEntity, DeliveryAreaEntity, DeliveryAreaFixedEntity, DesenfilaConfigEntity, DesenfilaConfigMercadoPagoEntity, DesenfilaContainerOrderEntity, DesenfilaContainerOrderItemEntity, DesenfilaContainerOrderPaymentEntity, DesenfilaContainerOrderPixEntity, DesenfilaEntity, DesenfilaFeeEntity, DesenfilaInfoEntity, DesenfilaMerchantAddressEntity, DesenfilaMerchantEntity, DesenfilaMerchantV2PaymentProviderEntity, DesenfilaTokenEntity, DeveloperAppCredentialsEntity, DeveloperAppEntity, DeveloperAppStatusEnum, DeveloperEntity, DeveloperMemberEntity, DeviceEntity, EAmountMode, EAppCategory, EAppHeaderType, EAppMode, EAppType, EBankSlipStatus, EBarcodeFormat, EBillingStatus, EBooleanString, ECollectionsTypes, ECompanyKeys, ECompanyMessageType, ECustomerInterval, ECustomerStatus, ECustomerType, EPaymentType as EDeprecatedPaymentType, EDeviceAppImages, EDeviceCheckoutImages, EDeviceStatus, EDiscountType, EDocType, EEventMessage, EEvolutionEvent, EEvolutionInstanceType, EEvolutionIntegrationType, EFcmSkill, EFiscalDocModelCode, EFrom, EIFoodCatalogContext, EIFoodDietaryRestrictions, EIFoodSellingOptions, EIFoodServing, EIFoodUnit, EImageFolder, EIndoorMode, EInstallationStatus, EIntDocType, EIntervalType, EInvoiceStatus, EJwtStatus, ELeadOrigin, ELegalEntiy, EMimeTypeFile, EMpStatus, EMpStatusDetail, ENatipayOrderStatus, ENatipaySaleChannel, ENineNineCurrency, ENineNinePackageType, ENineNinePackageWeight, ENineNineVehicleType, EOperationType, EOperator, EOrderDeliveryMode, EOrderExtraInfo, EOrderStatus, EOrderTiming, EOrderType, EOs, EPayioAdminRole, EPayioChefOperationMode, EPayioChefTabMode, EPayioDistributorStatus, EPayioRole, EPaymentChannel, EPaymentMethodId, EPaymentMode, EPaymentProvider, EPaymentStatus, EPaymentType$1 as EPaymentType, EPaymentTypeId, EPayuioAppSlug, EPixKeyType, EPlanFeatureType, EPlanIdentifier, EPlatform, EPubSub, EPubSubTopicType, EReleaseStatus, EResumeIntervalType, EResumeType, ERole, EOperationType as ESponsorIdentifier, ESponsorshipValues, ESubsStatus, ESubscriptionStatus, ETransactionProvider, ETransactionResumesTargetType, ETransactionStatus, ETypeFile, EVoucherRuleType, EVoucherStatus, EVoucherTargetTypes, EWaServerStatus, EWithdrawRequestStatus, EventMessageEntity, EvolutionChatWootEntity, EvolutionDatabaseQueueEntity, EvolutionEntity, EvolutionHashEntity, EvolutionInstanceEntity, EvolutionMessageKeyResponseEntity, EvolutionMessageResponseEntity, EvolutionQrcodeEntity, EvolutionTypeBotEntity, EvolutionWebhookEntity, ExchangeEntity, FcmDataReceivedDesenfilaPaymentEntity, FcmDataRequestItemsEntity, FcmTokenMessageEntity, FeatureEntity, FeeDetailEntity, FeeEntity, FeeFromEntity, FeeSaleChannelEntity, FirebaseQueryEntity, EGtintype as GTINTypeEnum, GeneralResumeTotalEntity, GlobalSettingEntity, GlobalSettingIuguEntity, GlobalSettingMasterEntity, GlobalSettingMercadoPagoEntity, GlobalSettingNatiPayEntity, GlobalSettingTaxesEntity, InfoEntity, InstallationAppEntity, InstallationEntity, InviteEntity, InviteStatusEnum, InvoiceBankSlipEntity, InvoiceCreditCardEntity, InvoiceEntity, InvoiceItemEntity, InvoiceLogEntity, InvoicePayerEntity, InvoicePixEntity, IuguAccountEntity, IuguAutoAdvanceEnum, IuguBankEnum, IuguChargeCreditCardEntity, IuguCustomerEntity, IuguInvoiceBankSlipEntity, IuguInvoiceEntity, IuguInvoiceStatusEnum, IuguPaymentTokenDataEntity, IuguPaymentTokenEntity, LastVerificationRequestDataEntity, LeadEntity, LeadStatusEnum, LogsEntity, MasterEntity, MasterV1Entity, MemberAccessEntity, MemberAccessRoleEntity, MemberAccessRolePermissionEntity, MemberEntity, MemberRulesEnum, MemberTypeEnum, MessagerChannelEntity, MetadataEntity, MobyoApiConfigEntity, ECampaignRuleType as MobyoECampaignRuleType, ECompanyMessageChannel as MobyoECompanyMessageChannel, EDeviceAppMode as MobyoEDeviceAppMode, EDeviceAppStatus as MobyoEDeviceAppStatus, EDeviceCheckoutStatus as MobyoEDeviceCheckoutStatus, EDeviceCustomerName as MobyoEDeviceCustomerName, EDeviceMode as MobyoEDeviceMode, EDeviceScreenMode as MobyoEDeviceScreenMode, EDeviceTefType as MobyoEDeviceTefType, EEngineType as MobyoEEngineType, EIuguInvoicesStatus as MobyoEIuguInvoicesStatus, EMemberRules as MobyoEMemberRules, EOrderCancelReasons as MobyoEOrderCancelReasons, EOrderDeliveredBy as MobyoEOrderDeliveredBy, EOrderOccurrenceType as MobyoEOrderOccurrenceType, EOrderPaymentId as MobyoEOrderPaymentId, EOrderPaymentMethod as MobyoEOrderPaymentMethod, EOrderV3DeliveryMode as MobyoEOrderV3DeliveryMode, EOrderV3SalesChannel as MobyoEOrderV3SalesChannel, EOrderV3Timing as MobyoEOrderV3Timing, EOrderV3Type as MobyoEOrderV3Type, EPreferenceAutoReturn as MobyoEPreferenceAutoReturn, EPreparingStatus as MobyoEPreparingStatus, EProductHighlight as MobyoEProductHighlight, EProductSkillV2 as MobyoEProductSkillV2, EQuestionTypes as MobyoEQuestionTypes, ETopics as MobyoETopics, IEntity as MobyoIEntity, IPaymentMethod as MobyoIPaymentMethod, MobyoInfoEntity, MonitorEntity, MottuAddressEntity, MottuEventDeliveryManEntity, MottuEventEntity, MottuEventRequestedByEntity, MottuOrderDelivererEntity, MottuOrderDeliveryManEntity, MottuOrderEntity, MottuOrderPreviewEntity, MottuOrderStoreEntity, MottuStoreEntity, MottuStoreMatrixEntity, MottuStoreResponsibleEntity, NatiGoEntity, NatiV1CartDesenfilaEntity, NatiV1CartEntity, NatiV1CartItemEntity, NatiV2ValidateCodeEntity, NatiWaEntity, NatiapyAddressEntity, NatipayCompanyEntity, NatipayCompanyExternalFeeEntity, NatipayEntity, NatipayFeeEntity, NatipayJwtPayloadAppEntity, NatipayJwtPayloadDeviceEntity, NatipayJwtPayloadEntity, NatipayJwtPayloadInfoEntity, NatipayJwtPayloadUserEntity, NatipayMemberEntity, NatipayMemberRulesEnum, NatipayMemberTypeEnum, NatipayMercadoPagoEntity, NatipayOrderEntity, NatipayOrderItemEntity, NatipaySponsorEntity, NatipaySponsorFeeEntity, NatipayTokenEntity, NatipayUserEntity, NotificationActionEntity, NotificationActionTypeEnum, NotificationCategoryEnum, NotificationEntity, NotificationPriorityEnum, NotificationStatusEnum, OrderAdditionalFeeEntity, OrderBenefitsEntity, OrderCancellationEntity, OrderCustomerEntity, OrderDeliveryEntity, OrderEntity, OrderItemCompositionEntity, OrderItemEntity, OrderItemOptionEntity, OrderMerchantEntity, OrderPaymentCardEntity, OrderPaymentCashEntity, OrderPaymentEntity, OrderPaymentMethodEntity, OrderPaymentPixEntity, OrderPaymentWalletEntity, OrderScaleEntity, OrderScaleItemEntity, OrderTotalEntity, OrdersCustomerPhoneEntity, OriginEntity, PartnerEntity, PayioActivationKeyEntity, PayioAddressEntity, PayioAdminEntity, PayioAppEntity, PayioChefConfigEntity, PayioChefConfigOperationEntity, PayioChefConfigPrinterEntity, PayioChefConfigScaleEntity, PayioChefConfigTabsEntity, PayioChefConfigWebhookEntity, PayioChefConfigWebhookHeaderEntity, PayioCompanyEntity, PayioCompanyNatipayCredentialEntity, PayioDeviceChefEntity, PayioDeviceEntity, PayioDistributorEntity, PayioDistributorResponsibleEntity, PayioEntitiesEnum, PayioGlobalProductEntity, PayioJwtPayloadAppEntity, PayioJwtPayloadDeviceEntity, PayioJwtPayloadEntity, PayioJwtPayloadInfoEntity, PayioJwtPayloadSubscriptionEntity, PayioJwtPayloadUserEntity, PayioMemberEntity, PayioOrderEntity, PayioOrderIndoorEntity, PayioOrderQueueEntity, PayioOrderQueueStatusEnum, PayioPartnerEntity, PayioPermissionEntity, PayioProductEntity, PayioResumeCompanyEntity, PayioResumeCompanyItemDetailEntity, PayioResumeCompanyItemEntity, PayioResumeQueueActionEnum, PayioResumeQueueEntity, PayioResumeQueueStatusEnum, PayioScheduleDayEntity, PayioScheduleEntity, PayioScheduleProductEntity, PayioScheduleSlotEntity, PayioTabEntity, PayioTokenEntity, PayioUserTypeEnum, PaymentCardEntity, PaymentCashEntity, PaymentEntity, PaymentMethodEntity, PaymentMethodOptionEntity, PaymentPixEntity, PaymentProviderAgentEntity, PaymentProviderEntity, PaymentTokenDataEntity, PaymentTokenEntity, PaymentWalletEntity, PixKeyEntity, PlanEntity, PlanFeatureEntity, PrivacySettingEntity, ProductBrandEntity, ProductCompanyEntity, ProductContainerEntity, ProductGlobalEntity, ProductNcmEntity, PubsubSubscriptionChangeStatusEntity, PurchaseEntity, QueryEntity, RabbitEntity, RatingEntity, RequestedItemDataEntity, RequestedItemsEntity, ResumeChildEntity, ResumeCustomerEntity, ResumeEnginesEntity, ResumeEntity, ResumeItemDetailEntity, ResumeItemEntity, ResumeOrderEntity, ResumeProductEntity, ResumeVoucherEntity, SponsorEntity, SponsorshipValueEntity, SubscriptionBaseEntity, SubscriptionBaseItemEntity, SubscriptionBaseLogEntity, SubscriptionCompanyEntity, SubscriptionCompanyProfileEntity, SubscriptionCustomerEntity, SubscriptionCustomerProfileEntity, TokenEntity, TransactionBalanceEntity, TransactionEntity, TransactionInfoResumeEntity, TransactionPaymentMethodEntity, TransactionResumeEntity, TransactionTotalEntity, TransferRequestEntity, UserEntity, UserTypeEnum, VerifierTokenEntity, VoucherCustomerEntity, VoucherEntity, VoucherSponsorshipEntity, WaServerEntity, WithDrawRequestEntity, factoryEnvelope, factoryEnvelopeArray, factoryEnvelopeArrayPagination };
8410
+ export { AccountInformationsEntity, AddressEntity, AppEntity, AppInfoEntity, BaseEntity, BillingEntity, BillingOrderEntity, BillingPaymentEntity, BillingTotalEntity, CampaignRuleEntity, CarouselImageEntity, ClientAplicationCredentialEntity, ClientAplicationEntity, ClientEntity, CompanyContactEntity, CompanyCustomDataEntity, CompanyEntity, CompanyRemoteAccessEntity, CompanySettingsEntity, CompanySettingsWaServerEntity, CompanyTrialPlansUsedEntity, ContainerEntity, CoordsEntity, CustomVariableEntity, CustomerCreditLimitEntity, CustomerEntity, CustomerMemberEntity, CustomerMobyoEntity, DelivererMobyoEntity, DeliveryAreaEntity, DeliveryAreaFixedEntity, DesenfilaConfigEntity, DesenfilaConfigMercadoPagoEntity, DesenfilaContainerOrderEntity, DesenfilaContainerOrderItemEntity, DesenfilaContainerOrderPaymentEntity, DesenfilaContainerOrderPixEntity, DesenfilaEntity, DesenfilaFeeEntity, DesenfilaInfoEntity, DesenfilaMerchantAddressEntity, DesenfilaMerchantEntity, DesenfilaMerchantV2PaymentProviderEntity, DesenfilaTokenEntity, DeveloperAppCredentialsEntity, DeveloperAppEntity, DeveloperAppStatusEnum, DeveloperEntity, DeveloperMemberEntity, DeviceEntity, EAmountMode, EAppCategory, EAppHeaderType, EAppMode, EAppType, EBankSlipStatus, EBarcodeFormat, EBillingStatus, EBooleanString, ECollectionsTypes, ECompanyKeys, ECompanyMessageType, ECustomerInterval, ECustomerStatus, ECustomerType, EPaymentType as EDeprecatedPaymentType, EDeviceAppImages, EDeviceCheckoutImages, EDeviceStatus, EDiscountType, EDocType, EEventMessage, EEvolutionEvent, EEvolutionInstanceType, EEvolutionIntegrationType, EFcmSkill, EFiscalDocModelCode, EFrom, EIFoodCatalogContext, EIFoodDietaryRestrictions, EIFoodSellingOptions, EIFoodServing, EIFoodUnit, EImageFolder, EIndoorMode, EInstallationStatus, EIntDocType, EIntervalType, EInvoiceStatus, EJwtStatus, ELeadOrigin, ELegalEntiy, EMimeTypeFile, EMpStatus, EMpStatusDetail, ENatipayOrderStatus, ENatipaySaleChannel, ENineNineCurrency, ENineNinePackageType, ENineNinePackageWeight, ENineNineVehicleType, EOperationType, EOperator, EOrderDeliveryMode, EOrderExtraInfo, EOrderStatus, EOrderTiming, EOrderType, EOs, EPayioAdminRole, EPayioChefOperationMode, EPayioChefTabMode, EPayioDistributorStatus, EPayioRole, EPaymentChannel, EPaymentMethodId, EPaymentMode, EPaymentProvider, EPaymentStatus, EPaymentType$1 as EPaymentType, EPaymentTypeId, EPayuioAppSlug, EPixKeyType, EPlanFeatureType, EPlanIdentifier, EPlatform, EPubSub, EPubSubTopicType, EReleaseStatus, EResumeIntervalType, EResumeType, ERole, EOperationType as ESponsorIdentifier, ESponsorshipValues, ESubsStatus, ESubscriptionStatus, ETefProvider, ETransactionProvider, ETransactionResumesTargetType, ETransactionStatus, ETypeFile, EVoucherRuleType, EVoucherStatus, EVoucherTargetTypes, EWaServerStatus, EWebhookMethod, EWebhookType, EWithdrawRequestStatus, EventMessageEntity, EvolutionChatWootEntity, EvolutionDatabaseQueueEntity, EvolutionEntity, EvolutionHashEntity, EvolutionInstanceEntity, EvolutionMessageKeyResponseEntity, EvolutionMessageResponseEntity, EvolutionQrcodeEntity, EvolutionTypeBotEntity, EvolutionWebhookEntity, ExchangeEntity, FcmDataReceivedDesenfilaPaymentEntity, FcmDataRequestItemsEntity, FcmTokenMessageEntity, FeatureEntity, FeeDetailEntity, FeeEntity, FeeFromEntity, FeeSaleChannelEntity, FirebaseQueryEntity, EGtintype as GTINTypeEnum, GeneralResumeTotalEntity, GlobalSettingEntity, GlobalSettingIuguEntity, GlobalSettingMasterEntity, GlobalSettingMercadoPagoEntity, GlobalSettingNatiPayEntity, GlobalSettingTaxesEntity, InfoEntity, InstallationAppEntity, InstallationEntity, InviteEntity, InviteStatusEnum, InvoiceBankSlipEntity, InvoiceCreditCardEntity, InvoiceEntity, InvoiceItemEntity, InvoiceLogEntity, InvoicePayerEntity, InvoicePixEntity, IuguAccountEntity, IuguAutoAdvanceEnum, IuguBankEnum, IuguChargeCreditCardEntity, IuguCustomerEntity, IuguInvoiceBankSlipEntity, IuguInvoiceEntity, IuguInvoiceStatusEnum, IuguPaymentTokenDataEntity, IuguPaymentTokenEntity, LastVerificationRequestDataEntity, LeadEntity, LeadStatusEnum, LogsEntity, MasterEntity, MasterV1Entity, MemberAccessEntity, MemberAccessRoleEntity, MemberAccessRolePermissionEntity, MemberEntity, MemberRulesEnum, MemberTypeEnum, MessagerChannelEntity, MetadataEntity, MobyoApiConfigEntity, ECampaignRuleType as MobyoECampaignRuleType, ECompanyMessageChannel as MobyoECompanyMessageChannel, EDeviceAppMode as MobyoEDeviceAppMode, EDeviceAppStatus as MobyoEDeviceAppStatus, EDeviceCheckoutStatus as MobyoEDeviceCheckoutStatus, EDeviceCustomerName as MobyoEDeviceCustomerName, EDeviceMode as MobyoEDeviceMode, EDeviceScreenMode as MobyoEDeviceScreenMode, EDeviceTefType as MobyoEDeviceTefType, EEngineType as MobyoEEngineType, EIuguInvoicesStatus as MobyoEIuguInvoicesStatus, EMemberRules as MobyoEMemberRules, EOrderCancelReasons as MobyoEOrderCancelReasons, EOrderDeliveredBy as MobyoEOrderDeliveredBy, EOrderOccurrenceType as MobyoEOrderOccurrenceType, EOrderPaymentId as MobyoEOrderPaymentId, EOrderPaymentMethod as MobyoEOrderPaymentMethod, EOrderV3DeliveryMode as MobyoEOrderV3DeliveryMode, EOrderV3SalesChannel as MobyoEOrderV3SalesChannel, EOrderV3Timing as MobyoEOrderV3Timing, EOrderV3Type as MobyoEOrderV3Type, EPreferenceAutoReturn as MobyoEPreferenceAutoReturn, EPreparingStatus as MobyoEPreparingStatus, EProductHighlight as MobyoEProductHighlight, EProductSkillV2 as MobyoEProductSkillV2, EQuestionTypes as MobyoEQuestionTypes, ETopics as MobyoETopics, IEntity as MobyoIEntity, IPaymentMethod as MobyoIPaymentMethod, MobyoInfoEntity, MonitorEntity, MottuAddressEntity, MottuEventDeliveryManEntity, MottuEventEntity, MottuEventRequestedByEntity, MottuOrderDelivererEntity, MottuOrderDeliveryManEntity, MottuOrderEntity, MottuOrderPreviewEntity, MottuOrderStoreEntity, MottuStoreEntity, MottuStoreMatrixEntity, MottuStoreResponsibleEntity, NatiGoEntity, NatiV1CartDesenfilaEntity, NatiV1CartEntity, NatiV1CartItemEntity, NatiV2ValidateCodeEntity, NatiWaEntity, NatiapyAddressEntity, NatipayCompanyEntity, NatipayCompanyExternalFeeEntity, NatipayEntity, NatipayFeeEntity, NatipayJwtPayloadAppEntity, NatipayJwtPayloadDeviceEntity, NatipayJwtPayloadEntity, NatipayJwtPayloadInfoEntity, NatipayJwtPayloadUserEntity, NatipayMemberEntity, NatipayMemberRulesEnum, NatipayMemberTypeEnum, NatipayMercadoPagoEntity, NatipayOrderEntity, NatipayOrderItemEntity, NatipaySponsorEntity, NatipaySponsorFeeEntity, NatipayTokenEntity, NatipayUserEntity, NotificationActionEntity, NotificationActionTypeEnum, NotificationCategoryEnum, NotificationEntity, NotificationPriorityEnum, NotificationStatusEnum, OrderAdditionalFeeEntity, OrderBenefitsEntity, OrderCancellationEntity, OrderCustomerEntity, OrderDeliveryEntity, OrderEntity, OrderItemCompositionEntity, OrderItemEntity, OrderItemOptionEntity, OrderMerchantEntity, OrderPaymentCardEntity, OrderPaymentCashEntity, OrderPaymentEntity, OrderPaymentMethodEntity, OrderPaymentPixEntity, OrderPaymentWalletEntity, OrderScaleEntity, OrderScaleItemEntity, OrderTotalEntity, OrdersCustomerPhoneEntity, OriginEntity, PartnerEntity, PayioActivationKeyEntity, PayioAddressEntity, PayioAdminEntity, PayioAppEntity, PayioCashConfigEntity, PayioCashConfigOperationEntity, PayioChefConfigEntity, PayioChefConfigOperationEntity, PayioChefConfigPrinterEntity, PayioChefConfigScaleEntity, PayioCompanyEntity, PayioCompanyNatipayCredentialEntity, PayioDeviceChefEntity, PayioDeviceEntity, PayioDistributorEntity, PayioDistributorResponsibleEntity, PayioEntitiesEnum, PayioGlobalProductEntity, PayioJwtPayloadAppEntity, PayioJwtPayloadDeviceEntity, PayioJwtPayloadEntity, PayioJwtPayloadInfoEntity, PayioJwtPayloadSubscriptionEntity, PayioJwtPayloadUserEntity, PayioMemberEntity, PayioOrderEntity, PayioOrderIndoorEntity, PayioOrderQueueEntity, PayioOrderQueueStatusEnum, PayioPartnerEntity, PayioPermissionEntity, PayioProductEntity, PayioResumeCompanyEntity, PayioResumeCompanyItemDetailEntity, PayioResumeCompanyItemEntity, PayioResumeQueueActionEnum, PayioResumeQueueEntity, PayioResumeQueueStatusEnum, PayioScheduleDayEntity, PayioScheduleEntity, PayioScheduleProductEntity, PayioScheduleSlotEntity, PayioTabEntity, PayioTabsEntity, PayioTokenEntity, PayioUserTypeEnum, PayioWebhookEntity, PaymentCardEntity, PaymentCashEntity, PaymentEntity, PaymentMethodEntity, PaymentMethodOptionEntity, PaymentPixEntity, PaymentProviderAgentEntity, PaymentProviderEntity, PaymentTokenDataEntity, PaymentTokenEntity, PaymentWalletEntity, PixKeyEntity, PlanEntity, PlanFeatureEntity, PrivacySettingEntity, ProductBrandEntity, ProductCompanyEntity, ProductContainerEntity, ProductGlobalEntity, ProductNcmEntity, PubsubSubscriptionChangeStatusEntity, PurchaseEntity, QueryEntity, RabbitEntity, RatingEntity, RequestedItemDataEntity, RequestedItemsEntity, ResumeChildEntity, ResumeCustomerEntity, ResumeEnginesEntity, ResumeEntity, ResumeItemDetailEntity, ResumeItemEntity, ResumeOrderEntity, ResumeProductEntity, ResumeVoucherEntity, SponsorEntity, SponsorshipValueEntity, SubscriptionBaseEntity, SubscriptionBaseItemEntity, SubscriptionBaseLogEntity, SubscriptionCompanyEntity, SubscriptionCompanyProfileEntity, SubscriptionCustomerEntity, SubscriptionCustomerProfileEntity, TokenEntity, TransactionBalanceEntity, TransactionEntity, TransactionInfoResumeEntity, TransactionPaymentMethodEntity, TransactionResumeEntity, TransactionTotalEntity, TransferRequestEntity, UserEntity, UserTypeEnum, VerifierTokenEntity, VoucherCustomerEntity, VoucherEntity, VoucherSponsorshipEntity, WaServerEntity, WithDrawRequestEntity, factoryEnvelope, factoryEnvelopeArray, factoryEnvelopeArrayPagination };
8349
8411
  //# sourceMappingURL=cecon-interfaces.mjs.map