cecon-interfaces 1.2.48 → 1.2.50
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/customer/entities/customer.entity.d.ts +5 -3
- package/dist/customer/entities/customer.entity.js +6 -4
- package/dist/customer/interfaces/i-customer.d.ts +10 -8
- package/dist/esm2022/customer/entities/customer.entity.mjs +7 -5
- package/dist/esm2022/customer/interfaces/i-customer.mjs +1 -1
- package/dist/esm2022/fcm-token-message/entities/index.mjs +2 -0
- package/dist/esm2022/fcm-token-message/entities/token.entity.mjs +26 -0
- package/dist/esm2022/fcm-token-message/index.mjs +3 -0
- package/dist/esm2022/fcm-token-message/interfaces/i-token.mjs +2 -0
- package/dist/esm2022/fcm-token-message/interfaces/index.mjs +2 -0
- package/dist/esm2022/index.mjs +3 -1
- package/dist/esm2022/nati-v1/entities/cart-desenfila.entity.mjs +17 -0
- package/dist/esm2022/nati-v1/entities/cart-item.entity.mjs +38 -0
- package/dist/esm2022/nati-v1/entities/cart.entity.mjs +36 -0
- package/dist/esm2022/nati-v1/entities/index.mjs +4 -0
- package/dist/esm2022/nati-v1/index.mjs +3 -0
- package/dist/esm2022/nati-v1/interfaces/i-cart-desenfila.mjs +2 -0
- package/dist/esm2022/nati-v1/interfaces/i-cart-item.mjs +2 -0
- package/dist/esm2022/nati-v1/interfaces/i-cart.mjs +2 -0
- package/dist/esm2022/nati-v1/interfaces/index.mjs +2 -0
- package/dist/fcm-token-message/entities/index.d.ts +1 -0
- package/dist/fcm-token-message/entities/index.js +5 -0
- package/dist/fcm-token-message/entities/token.entity.d.ts +15 -0
- package/dist/fcm-token-message/entities/token.entity.js +29 -0
- package/dist/fcm-token-message/index.d.ts +2 -0
- package/dist/fcm-token-message/index.js +18 -0
- package/dist/fcm-token-message/interfaces/i-token.d.ts +12 -0
- package/dist/fcm-token-message/interfaces/i-token.js +2 -0
- package/dist/fcm-token-message/interfaces/index.d.ts +1 -0
- package/dist/fcm-token-message/interfaces/index.js +2 -0
- package/dist/fesm2022/cecon-interfaces.mjs +124 -5
- package/dist/fesm2022/cecon-interfaces.mjs.map +1 -1
- package/dist/index.d.ts +2 -0
- package/dist/index.js +2 -0
- package/dist/nati-v1/entities/cart-desenfila.entity.d.ts +6 -0
- package/dist/nati-v1/entities/cart-desenfila.entity.js +21 -0
- package/dist/nati-v1/entities/cart-item.entity.d.ts +27 -0
- package/dist/nati-v1/entities/cart-item.entity.js +42 -0
- package/dist/nati-v1/entities/cart.entity.d.ts +27 -0
- package/dist/nati-v1/entities/cart.entity.js +40 -0
- package/dist/nati-v1/entities/index.d.ts +3 -0
- package/dist/nati-v1/entities/index.js +9 -0
- package/dist/nati-v1/index.d.ts +2 -0
- package/dist/nati-v1/index.js +18 -0
- package/dist/nati-v1/interfaces/i-cart-desenfila.d.ts +4 -0
- package/dist/nati-v1/interfaces/i-cart-desenfila.js +2 -0
- package/dist/nati-v1/interfaces/i-cart-item.d.ts +25 -0
- package/dist/nati-v1/interfaces/i-cart-item.js +2 -0
- package/dist/nati-v1/interfaces/i-cart.d.ts +25 -0
- package/dist/nati-v1/interfaces/i-cart.js +2 -0
- package/dist/nati-v1/interfaces/index.d.ts +3 -0
- package/dist/nati-v1/interfaces/index.js +2 -0
- package/dist/package.json +1 -1
- package/package.json +1 -1
@@ -1893,7 +1893,7 @@ var ECustomerType;
|
|
1893
1893
|
})(ECustomerType || (ECustomerType = {}));
|
1894
1894
|
|
1895
1895
|
class CustomerEntity {
|
1896
|
-
// #region Properties (
|
1896
|
+
// #region Properties (30)
|
1897
1897
|
address = new AddressEntity();
|
1898
1898
|
blockedReason = null;
|
1899
1899
|
createdAt = new Date();
|
@@ -1908,21 +1908,23 @@ class CustomerEntity {
|
|
1908
1908
|
interval = ECustomerInterval.MONTHLY;
|
1909
1909
|
limit = 0;
|
1910
1910
|
name = '';
|
1911
|
+
password = '';
|
1911
1912
|
paymentProvider = new PaymentProviderEntity();
|
1912
1913
|
phoneNumber = '';
|
1913
|
-
phoneNumbersNotification = [];
|
1914
1914
|
phoneNumberVerified = false;
|
1915
1915
|
phoneNumberVerifiedApp = null;
|
1916
1916
|
phoneNumberVerifiedAt = null;
|
1917
|
+
phoneNumbersNotification = [];
|
1918
|
+
refreshToken = null;
|
1917
1919
|
sandbox = false;
|
1918
1920
|
status = ECustomerStatus.WAITING_CREDIT_ANALYSIS;
|
1919
1921
|
subscription = null;
|
1920
1922
|
tags = [];
|
1921
1923
|
token = null;
|
1922
|
-
|
1924
|
+
twoStepsVerification = false;
|
1923
1925
|
type = ECustomerType.SINGLE;
|
1924
1926
|
updatedAt = new Date();
|
1925
|
-
// #endregion Properties (
|
1927
|
+
// #endregion Properties (30)
|
1926
1928
|
// #region Constructors (1)
|
1927
1929
|
constructor(data) {
|
1928
1930
|
if (data) {
|
@@ -2051,6 +2053,32 @@ class MetadataEntity {
|
|
2051
2053
|
|
2052
2054
|
// index.ts
|
2053
2055
|
|
2056
|
+
class FcmTokenMessageEntity {
|
2057
|
+
// #region Properties (11)
|
2058
|
+
companyId = null;
|
2059
|
+
containerId = null;
|
2060
|
+
createdAt = new Date();
|
2061
|
+
customerId = null;
|
2062
|
+
deviceId = null;
|
2063
|
+
expiresAt = new Date();
|
2064
|
+
id = '';
|
2065
|
+
name = null;
|
2066
|
+
partnerId = null;
|
2067
|
+
updatedAt = new Date();
|
2068
|
+
value = '';
|
2069
|
+
// #endregion Properties (11)
|
2070
|
+
// #region Constructors (1)
|
2071
|
+
constructor(data) {
|
2072
|
+
if (data) {
|
2073
|
+
for (let key in data) {
|
2074
|
+
if (data.hasOwnProperty(key) && key in this) {
|
2075
|
+
this[key] = data[key];
|
2076
|
+
}
|
2077
|
+
}
|
2078
|
+
}
|
2079
|
+
}
|
2080
|
+
}
|
2081
|
+
|
2054
2082
|
class FeatureEntity {
|
2055
2083
|
// #region Properties (11)
|
2056
2084
|
appId = '';
|
@@ -3535,6 +3563,97 @@ class MottuStoreEntity {
|
|
3535
3563
|
}
|
3536
3564
|
}
|
3537
3565
|
|
3566
|
+
class NatiV1CartDesenfilaEntity {
|
3567
|
+
// #region Properties (2)
|
3568
|
+
pixKey = '';
|
3569
|
+
qrImage = '';
|
3570
|
+
// #endregion Properties (2)
|
3571
|
+
// #region Constructors (1)
|
3572
|
+
constructor(data) {
|
3573
|
+
if (data) {
|
3574
|
+
for (let key in data) {
|
3575
|
+
if (data.hasOwnProperty(key) && key in this) {
|
3576
|
+
this[key] = data[key];
|
3577
|
+
}
|
3578
|
+
}
|
3579
|
+
}
|
3580
|
+
}
|
3581
|
+
}
|
3582
|
+
|
3583
|
+
class NatiV1CartItemEntity {
|
3584
|
+
// #region Properties (23)
|
3585
|
+
addition = 0;
|
3586
|
+
addsValue = false;
|
3587
|
+
createdAt = new Date();
|
3588
|
+
id = 0;
|
3589
|
+
isAdditionalItem = false;
|
3590
|
+
isDelivery = false;
|
3591
|
+
isNew = false;
|
3592
|
+
linkItemId = 0;
|
3593
|
+
measure = '';
|
3594
|
+
observations = '';
|
3595
|
+
personId = 0;
|
3596
|
+
picture = undefined;
|
3597
|
+
productCode = '';
|
3598
|
+
productId = 0;
|
3599
|
+
productName = '';
|
3600
|
+
quantity = 0;
|
3601
|
+
tabId = 0;
|
3602
|
+
terminalId = '';
|
3603
|
+
total = 0;
|
3604
|
+
unitPrice = 0;
|
3605
|
+
updatedAt = new Date();
|
3606
|
+
userName = '';
|
3607
|
+
without = false;
|
3608
|
+
// #endregion Properties (23)
|
3609
|
+
// #region Constructors (1)
|
3610
|
+
constructor(data) {
|
3611
|
+
if (data) {
|
3612
|
+
for (let key in data) {
|
3613
|
+
if (data.hasOwnProperty(key) && key in this) {
|
3614
|
+
this[key] = data[key];
|
3615
|
+
}
|
3616
|
+
}
|
3617
|
+
}
|
3618
|
+
}
|
3619
|
+
}
|
3620
|
+
|
3621
|
+
class NatiV1CartEntity {
|
3622
|
+
// #region Properties (21)
|
3623
|
+
addition = 0;
|
3624
|
+
askedForTheBill = false;
|
3625
|
+
blocked = false;
|
3626
|
+
customerId = '';
|
3627
|
+
desenfila = null;
|
3628
|
+
dtAlteracao = new Date();
|
3629
|
+
firstDate = new Date();
|
3630
|
+
id = 0;
|
3631
|
+
idOperadorCaixa = 0;
|
3632
|
+
items = [];
|
3633
|
+
lastDate = new Date();
|
3634
|
+
people = 0;
|
3635
|
+
qrCode = undefined;
|
3636
|
+
tableId = 0;
|
3637
|
+
terminalId = '';
|
3638
|
+
total = 0;
|
3639
|
+
useByUser = '';
|
3640
|
+
uuid = '';
|
3641
|
+
vrDesconto = 0;
|
3642
|
+
vrLimite = 0;
|
3643
|
+
wasReturned = false;
|
3644
|
+
// #endregion Properties (21)
|
3645
|
+
// #region Constructors (1)
|
3646
|
+
constructor(data) {
|
3647
|
+
if (data) {
|
3648
|
+
for (let key in data) {
|
3649
|
+
if (data.hasOwnProperty(key) && key in this) {
|
3650
|
+
this[key] = data[key];
|
3651
|
+
}
|
3652
|
+
}
|
3653
|
+
}
|
3654
|
+
}
|
3655
|
+
}
|
3656
|
+
|
3538
3657
|
var NotificationActionTypeEnum;
|
3539
3658
|
(function (NotificationActionTypeEnum) {
|
3540
3659
|
NotificationActionTypeEnum["URL"] = "url";
|
@@ -4325,5 +4444,5 @@ class WaServerEntity {
|
|
4325
4444
|
* Generated bundle index. Do not edit.
|
4326
4445
|
*/
|
4327
4446
|
|
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 };
|
4447
|
+
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, FcmTokenMessageEntity, 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, NatiV1CartDesenfilaEntity, NatiV1CartEntity, NatiV1CartItemEntity, 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 };
|
4329
4448
|
//# sourceMappingURL=cecon-interfaces.mjs.map
|