cecon-interfaces 1.8.82 → 1.8.84
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.
- package/dist/esm2022/index.mjs +10 -1
- package/dist/esm2022/n8n/entities/chat-api-callback.entity.mjs +91 -0
- package/dist/esm2022/n8n/entities/chat-context.entity.mjs +36 -0
- package/dist/esm2022/n8n/entities/chat-response.entity.mjs +64 -0
- package/dist/esm2022/n8n/entities/chat-trigger.entity.mjs +39 -0
- package/dist/esm2022/n8n/entities/index.mjs +4 -0
- package/dist/esm2022/n8n/index.mjs +13 -0
- package/dist/esm2022/n8n/interfaces/i-chat-api-callback.mjs +2 -0
- package/dist/esm2022/n8n/interfaces/i-chat-context.mjs +2 -0
- package/dist/esm2022/n8n/interfaces/i-chat-response.mjs +2 -0
- package/dist/esm2022/n8n/interfaces/i-chat-trigger.mjs +2 -0
- package/dist/esm2022/n8n/interfaces/index.mjs +2 -0
- package/dist/esm2022/payio/activation-key/entities/activation-key.entity.mjs +5 -3
- package/dist/esm2022/payio/activation-key/enums/activation-key-status.enum.mjs +2 -1
- package/dist/esm2022/payio/activation-key/interfaces/i-activation-key.mjs +1 -1
- package/dist/fesm2022/cecon-interfaces.mjs +236 -3
- package/dist/fesm2022/cecon-interfaces.mjs.map +1 -1
- package/dist/index.d.ts +9 -0
- package/dist/index.js +9 -0
- package/dist/n8n/entities/chat-api-callback.entity.d.ts +75 -0
- package/dist/n8n/entities/chat-api-callback.entity.js +77 -0
- package/dist/n8n/entities/chat-context.entity.d.ts +49 -0
- package/dist/n8n/entities/chat-context.entity.js +40 -0
- package/dist/n8n/entities/chat-response.entity.d.ts +77 -0
- package/dist/n8n/entities/chat-response.entity.js +68 -0
- package/dist/n8n/entities/chat-trigger.entity.d.ts +47 -0
- package/dist/n8n/entities/chat-trigger.entity.js +43 -0
- package/dist/n8n/entities/index.d.ts +3 -0
- package/dist/n8n/entities/index.js +9 -0
- package/dist/n8n/index.d.ts +10 -0
- package/dist/n8n/index.js +28 -0
- package/dist/n8n/interfaces/i-chat-api-callback.d.ts +65 -0
- package/dist/n8n/interfaces/i-chat-api-callback.js +2 -0
- package/dist/n8n/interfaces/i-chat-context.d.ts +47 -0
- package/dist/n8n/interfaces/i-chat-context.js +2 -0
- package/dist/n8n/interfaces/i-chat-response.d.ts +50 -0
- package/dist/n8n/interfaces/i-chat-response.js +2 -0
- package/dist/n8n/interfaces/i-chat-trigger.d.ts +45 -0
- package/dist/n8n/interfaces/i-chat-trigger.js +2 -0
- package/dist/n8n/interfaces/index.d.ts +3 -0
- package/dist/n8n/interfaces/index.js +2 -0
- package/dist/payio/activation-key/entities/activation-key.entity.d.ts +2 -0
- package/dist/payio/activation-key/entities/activation-key.entity.js +4 -2
- package/dist/payio/activation-key/enums/activation-key-status.enum.d.ts +1 -0
- package/dist/payio/activation-key/enums/activation-key-status.enum.js +1 -0
- package/dist/payio/activation-key/interfaces/i-activation-key.d.ts +2 -0
- package/docs/examples/n8n-api-callback-example.md +1 -0
- package/package.json +1 -1
@@ -5603,6 +5603,236 @@ class MottuStoreEntity {
|
|
5603
5603
|
}
|
5604
5604
|
}
|
5605
5605
|
|
5606
|
+
class N8nChatContextEntity {
|
5607
|
+
// #region Properties (10)
|
5608
|
+
contextId = '';
|
5609
|
+
sessionId = '';
|
5610
|
+
userId = '';
|
5611
|
+
platform = '';
|
5612
|
+
messageHistory = [];
|
5613
|
+
conversationState = {
|
5614
|
+
isActive: false,
|
5615
|
+
lastActivity: new Date(),
|
5616
|
+
};
|
5617
|
+
userData = {};
|
5618
|
+
sessionConfig = {
|
5619
|
+
timeout: 30,
|
5620
|
+
maxMessages: 100,
|
5621
|
+
language: 'pt-BR',
|
5622
|
+
timezone: 'America/Sao_Paulo',
|
5623
|
+
};
|
5624
|
+
metrics = undefined;
|
5625
|
+
timestamps = {
|
5626
|
+
createdAt: new Date(),
|
5627
|
+
updatedAt: new Date(),
|
5628
|
+
};
|
5629
|
+
// #endregion Properties (10)
|
5630
|
+
// #region Constructors (1)
|
5631
|
+
constructor(data) {
|
5632
|
+
if (data) {
|
5633
|
+
for (let key in data) {
|
5634
|
+
if (data.hasOwnProperty(key) && key in this) {
|
5635
|
+
this[key] = data[key];
|
5636
|
+
}
|
5637
|
+
}
|
5638
|
+
}
|
5639
|
+
}
|
5640
|
+
}
|
5641
|
+
|
5642
|
+
class N8nChatResponseEntity {
|
5643
|
+
// #region Properties (12)
|
5644
|
+
responseId = '';
|
5645
|
+
originalMessageId = '';
|
5646
|
+
sessionId = '';
|
5647
|
+
userId = '';
|
5648
|
+
message = '';
|
5649
|
+
messageType = 'text';
|
5650
|
+
timestamp = new Date();
|
5651
|
+
platform = '';
|
5652
|
+
responseData = undefined;
|
5653
|
+
delivery = {
|
5654
|
+
priority: 'normal',
|
5655
|
+
};
|
5656
|
+
metadata = undefined;
|
5657
|
+
status = 'queued';
|
5658
|
+
// #endregion Properties (12)
|
5659
|
+
// #region Constructors (1)
|
5660
|
+
constructor(data) {
|
5661
|
+
if (data) {
|
5662
|
+
for (let key in data) {
|
5663
|
+
if (data.hasOwnProperty(key) && key in this) {
|
5664
|
+
this[key] = data[key];
|
5665
|
+
}
|
5666
|
+
}
|
5667
|
+
}
|
5668
|
+
}
|
5669
|
+
// #endregion Constructors (1)
|
5670
|
+
/**
|
5671
|
+
* Adiciona um botão com callback de API opcional
|
5672
|
+
*/
|
5673
|
+
addButton(button) {
|
5674
|
+
if (!this.responseData) {
|
5675
|
+
this.responseData = {};
|
5676
|
+
}
|
5677
|
+
if (!this.responseData.buttons) {
|
5678
|
+
this.responseData.buttons = [];
|
5679
|
+
}
|
5680
|
+
this.responseData.buttons.push(button);
|
5681
|
+
this.messageType = 'button';
|
5682
|
+
}
|
5683
|
+
/**
|
5684
|
+
* Adiciona uma resposta rápida com callback de API opcional
|
5685
|
+
*/
|
5686
|
+
addQuickReply(quickReply) {
|
5687
|
+
if (!this.responseData) {
|
5688
|
+
this.responseData = {};
|
5689
|
+
}
|
5690
|
+
if (!this.responseData.quickReplies) {
|
5691
|
+
this.responseData.quickReplies = [];
|
5692
|
+
}
|
5693
|
+
this.responseData.quickReplies.push(quickReply);
|
5694
|
+
this.messageType = 'quick_reply';
|
5695
|
+
}
|
5696
|
+
/**
|
5697
|
+
* Valida se a resposta está pronta para ser enviada
|
5698
|
+
*/
|
5699
|
+
isValid() {
|
5700
|
+
const hasBasicData = !!(this.responseId && this.userId && this.sessionId);
|
5701
|
+
const hasContent = !!(this.message || this.responseData);
|
5702
|
+
return hasBasicData && hasContent;
|
5703
|
+
}
|
5704
|
+
}
|
5705
|
+
|
5706
|
+
class N8nChatTriggerEntity {
|
5707
|
+
// #region Properties (15)
|
5708
|
+
messageId = '';
|
5709
|
+
sessionId = '';
|
5710
|
+
userId = '';
|
5711
|
+
message = '';
|
5712
|
+
messageType = 'text';
|
5713
|
+
timestamp = new Date();
|
5714
|
+
platform = '';
|
5715
|
+
user = {
|
5716
|
+
id: '',
|
5717
|
+
name: '',
|
5718
|
+
};
|
5719
|
+
conversation = {
|
5720
|
+
id: '',
|
5721
|
+
isGroup: false,
|
5722
|
+
};
|
5723
|
+
metadata = {};
|
5724
|
+
webhook = {
|
5725
|
+
id: '',
|
5726
|
+
url: '',
|
5727
|
+
};
|
5728
|
+
rawData = null;
|
5729
|
+
tags = [];
|
5730
|
+
customData = {};
|
5731
|
+
status = 'pending';
|
5732
|
+
// #endregion Properties (15)
|
5733
|
+
// #region Constructors (1)
|
5734
|
+
constructor(data) {
|
5735
|
+
if (data) {
|
5736
|
+
for (let key in data) {
|
5737
|
+
if (data.hasOwnProperty(key) && key in this) {
|
5738
|
+
this[key] = data[key];
|
5739
|
+
}
|
5740
|
+
}
|
5741
|
+
}
|
5742
|
+
}
|
5743
|
+
}
|
5744
|
+
|
5745
|
+
class N8nChatApiCallbackEntity {
|
5746
|
+
// #region Properties (12)
|
5747
|
+
// Se deve executar chamada de API
|
5748
|
+
callApi;
|
5749
|
+
// ID único do callback para rastreamento
|
5750
|
+
callbackId;
|
5751
|
+
// URL da API a ser chamada
|
5752
|
+
apiUrl;
|
5753
|
+
// Método HTTP
|
5754
|
+
method;
|
5755
|
+
// Headers de autorização e outros
|
5756
|
+
headers;
|
5757
|
+
// Body/payload da requisição (DTO)
|
5758
|
+
payload;
|
5759
|
+
// Configurações da requisição
|
5760
|
+
requestConfig;
|
5761
|
+
// Configurações de resposta
|
5762
|
+
responseHandling;
|
5763
|
+
// Dados para logging e auditoria
|
5764
|
+
metadata;
|
5765
|
+
// Condições para executar a API
|
5766
|
+
conditions;
|
5767
|
+
// Webhook para notificar resultado
|
5768
|
+
webhook;
|
5769
|
+
// #endregion Properties (12)
|
5770
|
+
constructor(data = {}) {
|
5771
|
+
this.callApi = data.callApi ?? false;
|
5772
|
+
this.callbackId = data.callbackId ?? '';
|
5773
|
+
this.apiUrl = data.apiUrl ?? '';
|
5774
|
+
this.method = data.method ?? 'POST';
|
5775
|
+
this.headers = data.headers ?? {};
|
5776
|
+
this.payload = data.payload;
|
5777
|
+
this.requestConfig = data.requestConfig;
|
5778
|
+
this.responseHandling = data.responseHandling;
|
5779
|
+
this.metadata = data.metadata;
|
5780
|
+
this.conditions = data.conditions;
|
5781
|
+
this.webhook = data.webhook;
|
5782
|
+
}
|
5783
|
+
/**
|
5784
|
+
* Valida se o callback está configurado corretamente para execução
|
5785
|
+
*/
|
5786
|
+
isValid() {
|
5787
|
+
if (!this.callApi)
|
5788
|
+
return true; // Se não vai chamar API, é válido
|
5789
|
+
return !!(this.callbackId && this.apiUrl && this.method);
|
5790
|
+
}
|
5791
|
+
/**
|
5792
|
+
* Valida se todas as condições são atendidas para executar a API
|
5793
|
+
*/
|
5794
|
+
canExecute(formData) {
|
5795
|
+
if (!this.callApi || !this.isValid())
|
5796
|
+
return false;
|
5797
|
+
// Verifica campos obrigatórios
|
5798
|
+
if (this.conditions?.requireAllFields && this.metadata?.requiredFields) {
|
5799
|
+
for (const field of this.metadata.requiredFields) {
|
5800
|
+
if (!formData?.[field])
|
5801
|
+
return false;
|
5802
|
+
}
|
5803
|
+
}
|
5804
|
+
// Valida validações customizadas
|
5805
|
+
if (this.conditions?.customValidations && formData) {
|
5806
|
+
for (const validation of this.conditions.customValidations) {
|
5807
|
+
const value = formData[validation.field];
|
5808
|
+
switch (validation.rule) {
|
5809
|
+
case 'required':
|
5810
|
+
if (!value)
|
5811
|
+
return false;
|
5812
|
+
break;
|
5813
|
+
case 'email':
|
5814
|
+
if (value && !/^[^\s@]+@[^\s@]+\.[^\s@]+$/.test(value))
|
5815
|
+
return false;
|
5816
|
+
break;
|
5817
|
+
case 'phone':
|
5818
|
+
if (value && !/^\+?[\d\s\-\(\)]+$/.test(value))
|
5819
|
+
return false;
|
5820
|
+
break;
|
5821
|
+
case 'date':
|
5822
|
+
if (value && isNaN(Date.parse(value)))
|
5823
|
+
return false;
|
5824
|
+
break;
|
5825
|
+
case 'regex':
|
5826
|
+
if (value && validation.value && !new RegExp(validation.value).test(value))
|
5827
|
+
return false;
|
5828
|
+
break;
|
5829
|
+
}
|
5830
|
+
}
|
5831
|
+
}
|
5832
|
+
return true;
|
5833
|
+
}
|
5834
|
+
}
|
5835
|
+
|
5606
5836
|
class NatiV1CartDesenfilaEntity {
|
5607
5837
|
// #region Properties (2)
|
5608
5838
|
pixKey = '';
|
@@ -6787,6 +7017,7 @@ var EPayuioActivationStatus;
|
|
6787
7017
|
(function (EPayuioActivationStatus) {
|
6788
7018
|
EPayuioActivationStatus["NONE"] = "NONE";
|
6789
7019
|
EPayuioActivationStatus["PENDING"] = "PENDING";
|
7020
|
+
EPayuioActivationStatus["IN_DISTRIBUTION"] = "IN_DISTRIBUTION";
|
6790
7021
|
EPayuioActivationStatus["ACTIVE"] = "ACTIVE";
|
6791
7022
|
EPayuioActivationStatus["EXPIRED"] = "EXPIRED";
|
6792
7023
|
EPayuioActivationStatus["CANCELLED"] = "CANCELLED";
|
@@ -6797,7 +7028,7 @@ var EPayuioActivationStatus;
|
|
6797
7028
|
})(EPayuioActivationStatus || (EPayuioActivationStatus = {}));
|
6798
7029
|
|
6799
7030
|
class PayioActivationKeyEntity {
|
6800
|
-
// #region Properties (
|
7031
|
+
// #region Properties (22)
|
6801
7032
|
activationDate = null;
|
6802
7033
|
activationReleasedId = '';
|
6803
7034
|
appId = null;
|
@@ -6807,6 +7038,8 @@ class PayioActivationKeyEntity {
|
|
6807
7038
|
companyName = null;
|
6808
7039
|
createdAt = new Date();
|
6809
7040
|
createdBy = null;
|
7041
|
+
distributionDate = null;
|
7042
|
+
distributedBy = null;
|
6810
7043
|
deviceId = null;
|
6811
7044
|
distributorId = null;
|
6812
7045
|
distributorKey = null;
|
@@ -6818,7 +7051,7 @@ class PayioActivationKeyEntity {
|
|
6818
7051
|
status = EPayuioActivationStatus.PENDING;
|
6819
7052
|
usageLimit = 0;
|
6820
7053
|
usedCount = 0;
|
6821
|
-
// #endregion Properties (
|
7054
|
+
// #endregion Properties (22)
|
6822
7055
|
// #region Constructors (1)
|
6823
7056
|
constructor(data) {
|
6824
7057
|
if (data) {
|
@@ -9359,5 +9592,5 @@ var BinanceSymbol;
|
|
9359
9592
|
* Generated bundle index. Do not edit.
|
9360
9593
|
*/
|
9361
9594
|
|
9362
|
-
export { AccountInformationsEntity, AddressEntity, AppEntity, AppInfoEntity, BaseEntity, BillingEntity, BillingOrderEntity, BillingPaymentEntity, BillingTotalEntity, BinanceStatus, BinanceSymbol, 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, EFeePayer, EFirebankTransactionStatus, EFirebankWithdrawDetailsKey, EFiscalDocModelCode, EFrom, EGlobalSettingsExchange, 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, EPayioAppSlug, EPayioCatalogContext, EPayioCatalogStatus, EPayioCategoryTemplate, EPayioChefOperationMode, EPayioChefTabMode, EPayioDistributorStatus, EPayioEngines, EPayioImportStatus, EPayioRole, EPayioScheduleSkill, EPayioTabStatus, EPayioUserType, EPaymentChannel, EPaymentMethodId, EPaymentMode, EPaymentProvider, EPaymentStatus, EPaymentType$1 as EPaymentType, EPaymentTypeId, EPixKeyType, EPlanFeatureType, EPlanIdentifier, EPlatform, EPubSub, EPubSubTopicType, EReleaseStatus, EResumeIntervalType, EResumeType, ERole, EOperationType as ESponsorIdentifier, ESponsorshipValues, ESubsStatus, ESubscriptionStatus, ETefProvider, ETransactionOperation, ETransactionProvider, ETransactionResumesTargetType, ETransactionStatus, ETypeFile, EVoucherRuleType, EVoucherStatus, EVoucherTargetTypes, EWaServerStatus, EWebhookMethod, EWebhookType, EWithdrawRequestStatus, EWorkShiftType, EventMessageEntity, EvolutionChatWootEntity, EvolutionDatabaseQueueEntity, EvolutionEntity, EvolutionHashEntity, EvolutionInstanceEntity, EvolutionMessageKeyResponseEntity, EvolutionMessageResponseEntity, EvolutionQrcodeEntity, EvolutionTypeBotEntity, EvolutionWebhookEntity, ExchangeEntity, FcmDataReceivedDesenfilaPaymentEntity, FcmDataRequestItemsEntity, FcmTokenMessageEntity, FeatureEntity, FeeDetailEntity, FeeEntity, FeeFromEntity, FeeSaleChannelEntity, FirebankCallbackEntity, FirebankCallbackErrorEntity, FirebankPaymentPostAddressEntity, FirebankPaymentPostContactEntity, FirebankPaymentPostEntity, FirebankPaymentPostPayerEntity, FirebankPaymentPostSplitEntity, FirebankPaymentPostTransactionEntity, FirebankTransactionCalendarioEntity, FirebankTransactionDevedorEntity, FirebankTransactionEntity, FirebankTransactionHistoryEntity, FirebankTransactionInfoEntity, FirebankTransactionLocEntity, FirebankTransactionNegotiatorEntity, FirebankTransactionOperationEntity, FirebankTransactionProviderResponseEntity, FirebankTransactionResponseBodyEntity, FirebankTransactionValorEntity, FirebankWithdrawPostDetailsEntity, FirebankWithdrawPostEntity, FirebankWithdrawPostResponseEntity, FirebaseQueryEntity, EGtintype as GTINTypeEnum, GeneralResumeTotalEntity, GlobalSettingBinanceEntity, GlobalSettingBinanceRateEntity, GlobalSettingBlockchainEntity, GlobalSettingBlockchainSpreadEntity, GlobalSettingEntity, GlobalSettingFirebankEntity, GlobalSettingIfoodCredentialsEntity, GlobalSettingIfoodEntity, GlobalSettingIfoodProductionEntity, GlobalSettingIfoodSandboxEntity, 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, 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, PayioBigChefConfigEntity, PayioBigChefConfigOperationEntity, PayioBigChefConfigPrinterEntity, PayioBigChefConfigScaleEntity, PayioCashConfigEntity, PayioCashConfigOperationEntity, PayioCashConfigOperationTefEntity, PayioCatalogCategoryEntity, PayioCatalogEntity, PayioCatalogItemEntity, PayioCatalogOptionEntity, PayioCatalogOptionGroupEntity, PayioCatalogPizzaCrustEntity, PayioCatalogPizzaEdgeEntity, PayioCatalogPizzaEntity, PayioCatalogPizzaSizeEntity, PayioCatalogPizzaToppingEntity, PayioCatalogShiftEntity, 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, PayioTokenEntity, PayioUserEntity, PayioUserReportEntity, PayioUserReportEvidenceEntity, PayioUserTypeEnum, PayioVisionTerminalEntity, 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, SpreadAmountMode, 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 };
|
9595
|
+
export { AccountInformationsEntity, AddressEntity, AppEntity, AppInfoEntity, BaseEntity, BillingEntity, BillingOrderEntity, BillingPaymentEntity, BillingTotalEntity, BinanceStatus, BinanceSymbol, 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, EFeePayer, EFirebankTransactionStatus, EFirebankWithdrawDetailsKey, EFiscalDocModelCode, EFrom, EGlobalSettingsExchange, 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, EPayioAppSlug, EPayioCatalogContext, EPayioCatalogStatus, EPayioCategoryTemplate, EPayioChefOperationMode, EPayioChefTabMode, EPayioDistributorStatus, EPayioEngines, EPayioImportStatus, EPayioRole, EPayioScheduleSkill, EPayioTabStatus, EPayioUserType, EPaymentChannel, EPaymentMethodId, EPaymentMode, EPaymentProvider, EPaymentStatus, EPaymentType$1 as EPaymentType, EPaymentTypeId, EPixKeyType, EPlanFeatureType, EPlanIdentifier, EPlatform, EPubSub, EPubSubTopicType, EReleaseStatus, EResumeIntervalType, EResumeType, ERole, EOperationType as ESponsorIdentifier, ESponsorshipValues, ESubsStatus, ESubscriptionStatus, ETefProvider, ETransactionOperation, ETransactionProvider, ETransactionResumesTargetType, ETransactionStatus, ETypeFile, EVoucherRuleType, EVoucherStatus, EVoucherTargetTypes, EWaServerStatus, EWebhookMethod, EWebhookType, EWithdrawRequestStatus, EWorkShiftType, EventMessageEntity, EvolutionChatWootEntity, EvolutionDatabaseQueueEntity, EvolutionEntity, EvolutionHashEntity, EvolutionInstanceEntity, EvolutionMessageKeyResponseEntity, EvolutionMessageResponseEntity, EvolutionQrcodeEntity, EvolutionTypeBotEntity, EvolutionWebhookEntity, ExchangeEntity, FcmDataReceivedDesenfilaPaymentEntity, FcmDataRequestItemsEntity, FcmTokenMessageEntity, FeatureEntity, FeeDetailEntity, FeeEntity, FeeFromEntity, FeeSaleChannelEntity, FirebankCallbackEntity, FirebankCallbackErrorEntity, FirebankPaymentPostAddressEntity, FirebankPaymentPostContactEntity, FirebankPaymentPostEntity, FirebankPaymentPostPayerEntity, FirebankPaymentPostSplitEntity, FirebankPaymentPostTransactionEntity, FirebankTransactionCalendarioEntity, FirebankTransactionDevedorEntity, FirebankTransactionEntity, FirebankTransactionHistoryEntity, FirebankTransactionInfoEntity, FirebankTransactionLocEntity, FirebankTransactionNegotiatorEntity, FirebankTransactionOperationEntity, FirebankTransactionProviderResponseEntity, FirebankTransactionResponseBodyEntity, FirebankTransactionValorEntity, FirebankWithdrawPostDetailsEntity, FirebankWithdrawPostEntity, FirebankWithdrawPostResponseEntity, FirebaseQueryEntity, EGtintype as GTINTypeEnum, GeneralResumeTotalEntity, GlobalSettingBinanceEntity, GlobalSettingBinanceRateEntity, GlobalSettingBlockchainEntity, GlobalSettingBlockchainSpreadEntity, GlobalSettingEntity, GlobalSettingFirebankEntity, GlobalSettingIfoodCredentialsEntity, GlobalSettingIfoodEntity, GlobalSettingIfoodProductionEntity, GlobalSettingIfoodSandboxEntity, 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, N8nChatApiCallbackEntity, N8nChatContextEntity, N8nChatResponseEntity, N8nChatTriggerEntity, NatiGoEntity, NatiV1CartDesenfilaEntity, NatiV1CartEntity, NatiV1CartItemEntity, NatiV2ValidateCodeEntity, NatiWaEntity, NatiapyAddressEntity, NatipayCompanyEntity, NatipayCompanyExternalFeeEntity, NatipayEntity, NatipayFeeEntity, NatipayJwtPayloadAppEntity, NatipayJwtPayloadDeviceEntity, NatipayJwtPayloadEntity, NatipayJwtPayloadInfoEntity, NatipayJwtPayloadUserEntity, NatipayMemberEntity, NatipayMemberRulesEnum, NatipayMemberTypeEnum, NatipayMercadoPagoEntity, NatipayOrderEntity, NatipayOrderItemEntity, 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, PayioBigChefConfigEntity, PayioBigChefConfigOperationEntity, PayioBigChefConfigPrinterEntity, PayioBigChefConfigScaleEntity, PayioCashConfigEntity, PayioCashConfigOperationEntity, PayioCashConfigOperationTefEntity, PayioCatalogCategoryEntity, PayioCatalogEntity, PayioCatalogItemEntity, PayioCatalogOptionEntity, PayioCatalogOptionGroupEntity, PayioCatalogPizzaCrustEntity, PayioCatalogPizzaEdgeEntity, PayioCatalogPizzaEntity, PayioCatalogPizzaSizeEntity, PayioCatalogPizzaToppingEntity, PayioCatalogShiftEntity, 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, PayioTokenEntity, PayioUserEntity, PayioUserReportEntity, PayioUserReportEvidenceEntity, PayioUserTypeEnum, PayioVisionTerminalEntity, 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, SpreadAmountMode, 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 };
|
9363
9596
|
//# sourceMappingURL=cecon-interfaces.mjs.map
|