cecon-interfaces 1.2.14 → 1.2.17
Sign up to get free protection for your applications and to get access to all the features.
- package/dist/app/entities/app.entity.d.ts +1 -0
- package/dist/app/entities/app.entity.js +3 -2
- package/dist/app/entities/index.d.ts +1 -0
- package/dist/app/entities/index.js +3 -1
- package/dist/app/entities/nati-wa.entity.d.ts +14 -0
- package/dist/app/entities/nati-wa.entity.js +34 -0
- package/dist/app/enums/mode.enum.d.ts +1 -1
- package/dist/app/enums/mode.enum.js +1 -1
- package/dist/app/interfaces/i-app.d.ts +1 -0
- package/dist/app/interfaces/i-nati-wa.d.ts +36 -0
- package/dist/app/interfaces/i-nati-wa.js +2 -0
- package/dist/app/interfaces/index.d.ts +1 -0
- package/dist/app/types/app-config.type.d.ts +2 -2
- package/dist/esm2022/app/entities/app.entity.mjs +4 -3
- package/dist/esm2022/app/entities/index.mjs +2 -1
- package/dist/esm2022/app/entities/nati-wa.entity.mjs +30 -0
- package/dist/esm2022/app/enums/mode.enum.mjs +2 -2
- package/dist/esm2022/app/interfaces/i-app.mjs +1 -1
- package/dist/esm2022/app/interfaces/i-nati-wa.mjs +2 -0
- package/dist/esm2022/app/interfaces/index.mjs +1 -1
- package/dist/esm2022/app/types/app-config.type.mjs +1 -1
- package/dist/esm2022/evolution/enums/index.mjs +2 -1
- package/dist/esm2022/evolution/enums/instance-types.enum.mjs +10 -0
- package/dist/esm2022/invoice/entities/invoice-item.entity.mjs +4 -3
- package/dist/esm2022/invoice/interfaces/i-invoice-item.mjs +1 -1
- package/dist/esm2022/wa-server/entities/wa-server.entity.mjs +1 -2
- package/dist/esm2022/wa-server/enums/status.enum.mjs +2 -5
- package/dist/esm2022/wa-server/interfaces/i-wa-server.mjs +1 -1
- package/dist/evolution/enums/index.d.ts +1 -0
- package/dist/evolution/enums/index.js +3 -1
- package/dist/evolution/enums/instance-types.enum.d.ts +8 -0
- package/dist/evolution/enums/instance-types.enum.js +12 -0
- package/dist/fesm2022/cecon-interfaces.mjs +161 -124
- package/dist/fesm2022/cecon-interfaces.mjs.map +1 -1
- package/dist/invoice/entities/invoice-item.entity.d.ts +1 -0
- package/dist/invoice/entities/invoice-item.entity.js +3 -2
- package/dist/invoice/interfaces/i-invoice-item.d.ts +5 -4
- package/dist/package.json +1 -1
- package/dist/wa-server/entities/wa-server.entity.d.ts +0 -1
- package/dist/wa-server/entities/wa-server.entity.js +0 -1
- package/dist/wa-server/enums/status.enum.d.ts +1 -4
- package/dist/wa-server/enums/status.enum.js +1 -4
- package/dist/wa-server/interfaces/i-wa-server.d.ts +0 -1
- package/package.json +1 -1
@@ -660,7 +660,7 @@ var EAppMode;
|
|
660
660
|
EAppMode["SAT_MANAGER"] = "SAT-MANAGER";
|
661
661
|
EAppMode["NATI_PDV"] = "NATI-PDV";
|
662
662
|
EAppMode["NATI_PHP"] = "NATI_PHP";
|
663
|
-
EAppMode["
|
663
|
+
EAppMode["NATI_WHATSAPP"] = "NATI_WA";
|
664
664
|
EAppMode["NATI_TYPE_BOT"] = "NATI_TYPE_BOT";
|
665
665
|
EAppMode["NATI_ST"] = "NATI_ST";
|
666
666
|
EAppMode["RABBIT"] = "RABBIT";
|
@@ -671,13 +671,14 @@ var EAppMode;
|
|
671
671
|
})(EAppMode || (EAppMode = {}));
|
672
672
|
|
673
673
|
class AppEntity {
|
674
|
-
// #region Properties (
|
674
|
+
// #region Properties (31)
|
675
675
|
active = false;
|
676
676
|
activeInstalls = 0;
|
677
677
|
/**
|
678
678
|
* Indica se permite adicionar a assinatura
|
679
679
|
*/
|
680
680
|
allowAddSubscription = false;
|
681
|
+
allowDefaultDevice = false;
|
681
682
|
carousel = [];
|
682
683
|
categories = [];
|
683
684
|
createdBy = '';
|
@@ -721,7 +722,7 @@ class AppEntity {
|
|
721
722
|
type = EAppType.FREE;
|
722
723
|
versionCode = 1;
|
723
724
|
versionName = '';
|
724
|
-
// #endregion Properties (
|
725
|
+
// #endregion Properties (31)
|
725
726
|
// #region Constructors (1)
|
726
727
|
constructor(data) {
|
727
728
|
if (data) {
|
@@ -752,6 +753,158 @@ class DesenfilaEntity {
|
|
752
753
|
}
|
753
754
|
}
|
754
755
|
|
756
|
+
class EvolutionChatWootEntity {
|
757
|
+
// #region Properties (7)
|
758
|
+
accountId = '';
|
759
|
+
enabled = false;
|
760
|
+
nameInbox = '';
|
761
|
+
signMsg = false;
|
762
|
+
token = '';
|
763
|
+
url = '';
|
764
|
+
webhookUrl = '';
|
765
|
+
constructor(data) {
|
766
|
+
if (data) {
|
767
|
+
for (let key in data) {
|
768
|
+
if (data.hasOwnProperty(key) && key in this) {
|
769
|
+
this[key] = data[key];
|
770
|
+
}
|
771
|
+
}
|
772
|
+
}
|
773
|
+
}
|
774
|
+
}
|
775
|
+
|
776
|
+
class EvolutionHashEntity {
|
777
|
+
// #region Properties (1)
|
778
|
+
apikey = '';
|
779
|
+
// #endregion Properties (1)
|
780
|
+
// #region Constructors (1)
|
781
|
+
constructor(data) {
|
782
|
+
if (data) {
|
783
|
+
for (let key in data) {
|
784
|
+
if (data.hasOwnProperty(key) && key in this) {
|
785
|
+
this[key] = data[key];
|
786
|
+
}
|
787
|
+
}
|
788
|
+
}
|
789
|
+
}
|
790
|
+
}
|
791
|
+
|
792
|
+
class EvolutionInstanceEntity {
|
793
|
+
// #region Properties (2)
|
794
|
+
instanceName = '';
|
795
|
+
status = '';
|
796
|
+
// #endregion Properties (2)
|
797
|
+
// #region Constructors (1)
|
798
|
+
constructor(data) {
|
799
|
+
if (data) {
|
800
|
+
for (let key in data) {
|
801
|
+
if (data.hasOwnProperty(key) && key in this) {
|
802
|
+
this[key] = data[key];
|
803
|
+
}
|
804
|
+
}
|
805
|
+
}
|
806
|
+
}
|
807
|
+
}
|
808
|
+
|
809
|
+
class EvolutionQrcodeEntity {
|
810
|
+
// #region Properties (2)
|
811
|
+
base64 = null;
|
812
|
+
code = null;
|
813
|
+
// #endregion Properties (2)
|
814
|
+
// #region Constructors (1)
|
815
|
+
constructor(data) {
|
816
|
+
if (data) {
|
817
|
+
for (let key in data) {
|
818
|
+
if (data.hasOwnProperty(key) && key in this) {
|
819
|
+
this[key] = data[key];
|
820
|
+
}
|
821
|
+
}
|
822
|
+
}
|
823
|
+
}
|
824
|
+
}
|
825
|
+
|
826
|
+
class EvolutionEntity {
|
827
|
+
// #region Properties (6)
|
828
|
+
chatwoot = null;
|
829
|
+
events = [];
|
830
|
+
hash = new EvolutionHashEntity();
|
831
|
+
instance = new EvolutionInstanceEntity();
|
832
|
+
qrcode = new EvolutionQrcodeEntity();
|
833
|
+
webhook = '';
|
834
|
+
constructor(data) {
|
835
|
+
if (data) {
|
836
|
+
for (let key in data) {
|
837
|
+
if (data.hasOwnProperty(key) && key in this) {
|
838
|
+
this[key] = data[key];
|
839
|
+
}
|
840
|
+
}
|
841
|
+
}
|
842
|
+
}
|
843
|
+
}
|
844
|
+
|
845
|
+
var EEvolutionEvent;
|
846
|
+
(function (EEvolutionEvent) {
|
847
|
+
EEvolutionEvent["APPLICATION_STARTUP"] = "APPLICATION_STARTUP";
|
848
|
+
EEvolutionEvent["QRCODE_UPDATED"] = "QRCODE_UPDATED";
|
849
|
+
EEvolutionEvent["MESSAGES_SET"] = "MESSAGES_SET";
|
850
|
+
EEvolutionEvent["MESSAGES_UPSERT"] = "MESSAGES_UPSERT";
|
851
|
+
EEvolutionEvent["MESSAGES_UPDATE"] = "MESSAGES_UPDATE";
|
852
|
+
EEvolutionEvent["MESSAGES_DELETE"] = "MESSAGES_DELETE";
|
853
|
+
EEvolutionEvent["SEND_MESSAGE"] = "SEND_MESSAGE";
|
854
|
+
EEvolutionEvent["CONTACTS_SET"] = "CONTACTS_SET";
|
855
|
+
EEvolutionEvent["CONTACTS_UPSERT"] = "CONTACTS_UPSERT";
|
856
|
+
EEvolutionEvent["CONTACTS_UPDATE"] = "CONTACTS_UPDATE";
|
857
|
+
EEvolutionEvent["PRESENCE_UPDATE"] = "PRESENCE_UPDATE";
|
858
|
+
EEvolutionEvent["CHATS_SET"] = "CHATS_SET";
|
859
|
+
EEvolutionEvent["CHATS_UPSERT"] = "CHATS_UPSERT";
|
860
|
+
EEvolutionEvent["CHATS_UPDATE"] = "CHATS_UPDATE";
|
861
|
+
EEvolutionEvent["CHATS_DELETE"] = "CHATS_DELETE";
|
862
|
+
EEvolutionEvent["GROUPS_UPSERT"] = "GROUPS_UPSERT";
|
863
|
+
EEvolutionEvent["GROUP_UPDATE"] = "GROUP_UPDATE";
|
864
|
+
EEvolutionEvent["GROUP_PARTICIPANTS_UPDATE"] = "GROUP_PARTICIPANTS_UPDATE";
|
865
|
+
EEvolutionEvent["CONNECTION_UPDATE"] = "CONNECTION_UPDATE";
|
866
|
+
EEvolutionEvent["NEW_JWT_TOKE"] = "NEW_JWT_TOKE";
|
867
|
+
})(EEvolutionEvent || (EEvolutionEvent = {}));
|
868
|
+
|
869
|
+
var EEvolutionInstanceType;
|
870
|
+
(function (EEvolutionInstanceType) {
|
871
|
+
EEvolutionInstanceType["WEBHOOK"] = "WEBHOOK";
|
872
|
+
EEvolutionInstanceType["CHATWOOT"] = "CHATWOOT";
|
873
|
+
EEvolutionInstanceType["TYPE_BOOT"] = "TYPE_BOOT";
|
874
|
+
EEvolutionInstanceType["BASIC"] = "BASIC";
|
875
|
+
EEvolutionInstanceType["WEBSOCKET"] = "WEBSOCKET";
|
876
|
+
EEvolutionInstanceType["RABBIT_MQ"] = "RABBIT_MQ";
|
877
|
+
})(EEvolutionInstanceType || (EEvolutionInstanceType = {}));
|
878
|
+
|
879
|
+
// #region Interfaces (3)
|
880
|
+
// #endregion Interfaces (3)
|
881
|
+
// #region Classes (1)
|
882
|
+
class NatiWaEntity {
|
883
|
+
// #region Properties (10)
|
884
|
+
chatwoot = null;
|
885
|
+
id = '';
|
886
|
+
instanceName = '';
|
887
|
+
number = '';
|
888
|
+
qrcode = false;
|
889
|
+
token = '';
|
890
|
+
type = EEvolutionInstanceType.WEBHOOK;
|
891
|
+
typebot = null;
|
892
|
+
waServerId = '';
|
893
|
+
webhook = null;
|
894
|
+
// #endregion Properties (10)
|
895
|
+
// #region Constructors (1)
|
896
|
+
constructor(data) {
|
897
|
+
if (data) {
|
898
|
+
for (let key in data) {
|
899
|
+
if (data.hasOwnProperty(key) && key in this) {
|
900
|
+
this[key] = data[key];
|
901
|
+
}
|
902
|
+
}
|
903
|
+
}
|
904
|
+
}
|
905
|
+
}
|
906
|
+
// #endregion Classes (1)
|
907
|
+
|
755
908
|
var EAppCategory;
|
756
909
|
(function (EAppCategory) {
|
757
910
|
EAppCategory["UTILITIES"] = "UTILIDADES";
|
@@ -1763,119 +1916,6 @@ class MetadataEntity {
|
|
1763
1916
|
|
1764
1917
|
// index.ts
|
1765
1918
|
|
1766
|
-
class EvolutionChatWootEntity {
|
1767
|
-
// #region Properties (7)
|
1768
|
-
accountId = '';
|
1769
|
-
enabled = false;
|
1770
|
-
nameInbox = '';
|
1771
|
-
signMsg = false;
|
1772
|
-
token = '';
|
1773
|
-
url = '';
|
1774
|
-
webhookUrl = '';
|
1775
|
-
constructor(data) {
|
1776
|
-
if (data) {
|
1777
|
-
for (let key in data) {
|
1778
|
-
if (data.hasOwnProperty(key) && key in this) {
|
1779
|
-
this[key] = data[key];
|
1780
|
-
}
|
1781
|
-
}
|
1782
|
-
}
|
1783
|
-
}
|
1784
|
-
}
|
1785
|
-
|
1786
|
-
class EvolutionHashEntity {
|
1787
|
-
// #region Properties (1)
|
1788
|
-
apikey = '';
|
1789
|
-
// #endregion Properties (1)
|
1790
|
-
// #region Constructors (1)
|
1791
|
-
constructor(data) {
|
1792
|
-
if (data) {
|
1793
|
-
for (let key in data) {
|
1794
|
-
if (data.hasOwnProperty(key) && key in this) {
|
1795
|
-
this[key] = data[key];
|
1796
|
-
}
|
1797
|
-
}
|
1798
|
-
}
|
1799
|
-
}
|
1800
|
-
}
|
1801
|
-
|
1802
|
-
class EvolutionInstanceEntity {
|
1803
|
-
// #region Properties (2)
|
1804
|
-
instanceName = '';
|
1805
|
-
status = '';
|
1806
|
-
// #endregion Properties (2)
|
1807
|
-
// #region Constructors (1)
|
1808
|
-
constructor(data) {
|
1809
|
-
if (data) {
|
1810
|
-
for (let key in data) {
|
1811
|
-
if (data.hasOwnProperty(key) && key in this) {
|
1812
|
-
this[key] = data[key];
|
1813
|
-
}
|
1814
|
-
}
|
1815
|
-
}
|
1816
|
-
}
|
1817
|
-
}
|
1818
|
-
|
1819
|
-
class EvolutionQrcodeEntity {
|
1820
|
-
// #region Properties (2)
|
1821
|
-
base64 = null;
|
1822
|
-
code = null;
|
1823
|
-
// #endregion Properties (2)
|
1824
|
-
// #region Constructors (1)
|
1825
|
-
constructor(data) {
|
1826
|
-
if (data) {
|
1827
|
-
for (let key in data) {
|
1828
|
-
if (data.hasOwnProperty(key) && key in this) {
|
1829
|
-
this[key] = data[key];
|
1830
|
-
}
|
1831
|
-
}
|
1832
|
-
}
|
1833
|
-
}
|
1834
|
-
}
|
1835
|
-
|
1836
|
-
class EvolutionEntity {
|
1837
|
-
// #region Properties (6)
|
1838
|
-
chatwoot = null;
|
1839
|
-
events = [];
|
1840
|
-
hash = new EvolutionHashEntity();
|
1841
|
-
instance = new EvolutionInstanceEntity();
|
1842
|
-
qrcode = new EvolutionQrcodeEntity();
|
1843
|
-
webhook = '';
|
1844
|
-
constructor(data) {
|
1845
|
-
if (data) {
|
1846
|
-
for (let key in data) {
|
1847
|
-
if (data.hasOwnProperty(key) && key in this) {
|
1848
|
-
this[key] = data[key];
|
1849
|
-
}
|
1850
|
-
}
|
1851
|
-
}
|
1852
|
-
}
|
1853
|
-
}
|
1854
|
-
|
1855
|
-
var EEvolutionEvent;
|
1856
|
-
(function (EEvolutionEvent) {
|
1857
|
-
EEvolutionEvent["APPLICATION_STARTUP"] = "APPLICATION_STARTUP";
|
1858
|
-
EEvolutionEvent["QRCODE_UPDATED"] = "QRCODE_UPDATED";
|
1859
|
-
EEvolutionEvent["MESSAGES_SET"] = "MESSAGES_SET";
|
1860
|
-
EEvolutionEvent["MESSAGES_UPSERT"] = "MESSAGES_UPSERT";
|
1861
|
-
EEvolutionEvent["MESSAGES_UPDATE"] = "MESSAGES_UPDATE";
|
1862
|
-
EEvolutionEvent["MESSAGES_DELETE"] = "MESSAGES_DELETE";
|
1863
|
-
EEvolutionEvent["SEND_MESSAGE"] = "SEND_MESSAGE";
|
1864
|
-
EEvolutionEvent["CONTACTS_SET"] = "CONTACTS_SET";
|
1865
|
-
EEvolutionEvent["CONTACTS_UPSERT"] = "CONTACTS_UPSERT";
|
1866
|
-
EEvolutionEvent["CONTACTS_UPDATE"] = "CONTACTS_UPDATE";
|
1867
|
-
EEvolutionEvent["PRESENCE_UPDATE"] = "PRESENCE_UPDATE";
|
1868
|
-
EEvolutionEvent["CHATS_SET"] = "CHATS_SET";
|
1869
|
-
EEvolutionEvent["CHATS_UPSERT"] = "CHATS_UPSERT";
|
1870
|
-
EEvolutionEvent["CHATS_UPDATE"] = "CHATS_UPDATE";
|
1871
|
-
EEvolutionEvent["CHATS_DELETE"] = "CHATS_DELETE";
|
1872
|
-
EEvolutionEvent["GROUPS_UPSERT"] = "GROUPS_UPSERT";
|
1873
|
-
EEvolutionEvent["GROUP_UPDATE"] = "GROUP_UPDATE";
|
1874
|
-
EEvolutionEvent["GROUP_PARTICIPANTS_UPDATE"] = "GROUP_PARTICIPANTS_UPDATE";
|
1875
|
-
EEvolutionEvent["CONNECTION_UPDATE"] = "CONNECTION_UPDATE";
|
1876
|
-
EEvolutionEvent["NEW_JWT_TOKE"] = "NEW_JWT_TOKE";
|
1877
|
-
})(EEvolutionEvent || (EEvolutionEvent = {}));
|
1878
|
-
|
1879
1919
|
class FeatureEntity {
|
1880
1920
|
// #region Properties (11)
|
1881
1921
|
appId = '';
|
@@ -2250,7 +2290,8 @@ class InvoiceCreditCardEntity {
|
|
2250
2290
|
}
|
2251
2291
|
|
2252
2292
|
class InvoiceItemEntity {
|
2253
|
-
// #region Properties (
|
2293
|
+
// #region Properties (9)
|
2294
|
+
companyId = '';
|
2254
2295
|
createdAt = new Date();
|
2255
2296
|
description = '';
|
2256
2297
|
isRefunded = false;
|
@@ -2259,7 +2300,7 @@ class InvoiceItemEntity {
|
|
2259
2300
|
totalPrice = 0;
|
2260
2301
|
unitPrice = 0;
|
2261
2302
|
updatedAt = new Date();
|
2262
|
-
// #endregion Properties (
|
2303
|
+
// #endregion Properties (9)
|
2263
2304
|
// #region Constructors (1)
|
2264
2305
|
constructor(data) {
|
2265
2306
|
if (data) {
|
@@ -3821,12 +3862,9 @@ class VoucherEntity {
|
|
3821
3862
|
|
3822
3863
|
var EWaServerStatus;
|
3823
3864
|
(function (EWaServerStatus) {
|
3824
|
-
EWaServerStatus["CONNECTED"] = "CONNECTED";
|
3825
|
-
EWaServerStatus["DISCONNECTED"] = "DISCONNECTED";
|
3826
|
-
EWaServerStatus["RECONNECTING"] = "RECONNECTING";
|
3827
3865
|
EWaServerStatus["RUNNING"] = "RUNNING";
|
3828
3866
|
EWaServerStatus["STOPPED"] = "STOPPED";
|
3829
|
-
EWaServerStatus["
|
3867
|
+
EWaServerStatus["FULL"] = "FULL";
|
3830
3868
|
})(EWaServerStatus || (EWaServerStatus = {}));
|
3831
3869
|
|
3832
3870
|
class WaServerEntity {
|
@@ -3836,7 +3874,6 @@ class WaServerEntity {
|
|
3836
3874
|
createdAt = new Date();
|
3837
3875
|
globalApiKey = '';
|
3838
3876
|
id = '';
|
3839
|
-
installIds = [];
|
3840
3877
|
name = '';
|
3841
3878
|
tags = [];
|
3842
3879
|
sessions = 0;
|
@@ -3858,5 +3895,5 @@ class WaServerEntity {
|
|
3858
3895
|
* Generated bundle index. Do not edit.
|
3859
3896
|
*/
|
3860
3897
|
|
3861
|
-
export { AccountInformationsEntity, AddressEntity, AppEntity, AppInfoEntity, BaseEntity, BillingEntity, BillingOrderEntity, BillingPaymentEntity, BillingTotalEntity, CampaignEntity, CarouselImageEntity, ClientAplicationCredentialEntity, ClientAplicationEntity, ClientEntity, CompanyEntity, 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, 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, EvolutionEntity, EvolutionHashEntity, EvolutionInstanceEntity, EvolutionQrcodeEntity, 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, NotificationActionEntity, NotificationActionTypeEnum, NotificationCategoryEnum, NotificationEntity, NotificationPriorityEnum, NotificationStatusEnum, OrderAdditionalFeeEntity, OrderBenefitsEntity, OrderCancellationEntity, OrderCustomerEntity, OrderDeliveryEntity, OrderEntity, OrderItemCompositionEntity, OrderItemEntity, OrderItemOptionEntity, OrderMerchantEntity, OrderPaymentCardEntity, OrderPaymentCashEntity, OrderPaymentEntity, OrderPaymentMethodEntity, OrderPaymentPixEntity, OrderPaymentWalletEntity, OrderScaleEntity, OrderScaleItemEntity, OrderStatusEnum, OrderTotalEntity, OrdersCustomerPhoneEntity, OriginEntity, PartnerEntity, PaymentCardEntity, PaymentCashEntity, PaymentEntity, PaymentMethodEntity, PaymentMethodOptionEntity, PaymentPixEntity, PaymentProviderAgentEntity, PaymentProviderEntity, PaymentTokenDataEntity, PaymentTokenEntity, PaymentWalletEntity, PlanEntity, PlanFeatureEntity, ProductBrandEntity, ProductCompanyEntity, ProductContainerEntity, ProductNcmEntity, ProductGlobalEntity as ProductglobalEntity, PubsubSubscriptionChangeStatusEntity, PurchaseEntity, RabbitEntity, RatingEntity, ResumeCollectionEntity, ResumeDayEntity, ResumeEntity, ResumeHourEntity, ResumeMonthEntity, ResumeTotalEntity, ResumeYearEntity, SponsorshipValueEntity, SubscriptionBaseEntity, SubscriptionBaseItemEntity, SubscriptionBaseLogEntity, SubscriptionCompanyEntity, SubscriptionCompanyProfileEntity, SubscriptionCustomerEntity, SubscriptionCustomerProfileEntity, TokenEntity, VoucherEntity, WaServerEntity };
|
3898
|
+
export { AccountInformationsEntity, AddressEntity, AppEntity, AppInfoEntity, BaseEntity, BillingEntity, BillingOrderEntity, BillingPaymentEntity, BillingTotalEntity, CampaignEntity, CarouselImageEntity, ClientAplicationCredentialEntity, ClientAplicationEntity, ClientEntity, CompanyEntity, 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, EvolutionEntity, EvolutionHashEntity, EvolutionInstanceEntity, EvolutionQrcodeEntity, FeatureEntity, EGtintype as GTINTypeEnum, GlobalSettingEntity, GlobalSettingIuguEntity, GlobalSettingMasterEntity, InstallationEntity, InviteEntity, InviteStatusEnum, InvoiceBankSlipEntity, InvoiceCreditCardEntity, InvoiceEntity, InvoiceItemEntity, InvoiceLogEntity, InvoicePayerEntity, InvoicePixEntity, IuguAccountEntity, IuguAutoAdvanceEnum, IuguBankEnum, IuguChargeCreditCardEntity, IuguCustomerEntity, IuguInvoiceBankSlipEntity, IuguInvoiceEntity, IuguInvoiceStatusEnum, IuguPaymentTokenDataEntity, IuguPaymentTokenEntity, LastVerificationRequestDataEntity, LeadEntity, LeadStatusEnum, MemberEntity, MemberRulesEnum, MemberTypeEnum, MessagerChannelEntity, MetadataEntity, MobyoApiConfigEntity, NatiGoEntity, NatiWaEntity, NotificationActionEntity, NotificationActionTypeEnum, NotificationCategoryEnum, NotificationEntity, NotificationPriorityEnum, NotificationStatusEnum, OrderAdditionalFeeEntity, OrderBenefitsEntity, OrderCancellationEntity, OrderCustomerEntity, OrderDeliveryEntity, OrderEntity, OrderItemCompositionEntity, OrderItemEntity, OrderItemOptionEntity, OrderMerchantEntity, OrderPaymentCardEntity, OrderPaymentCashEntity, OrderPaymentEntity, OrderPaymentMethodEntity, OrderPaymentPixEntity, OrderPaymentWalletEntity, OrderScaleEntity, OrderScaleItemEntity, OrderStatusEnum, OrderTotalEntity, OrdersCustomerPhoneEntity, OriginEntity, PartnerEntity, PaymentCardEntity, PaymentCashEntity, PaymentEntity, PaymentMethodEntity, PaymentMethodOptionEntity, PaymentPixEntity, PaymentProviderAgentEntity, PaymentProviderEntity, PaymentTokenDataEntity, PaymentTokenEntity, PaymentWalletEntity, PlanEntity, PlanFeatureEntity, ProductBrandEntity, ProductCompanyEntity, ProductContainerEntity, ProductNcmEntity, ProductGlobalEntity as ProductglobalEntity, PubsubSubscriptionChangeStatusEntity, PurchaseEntity, RabbitEntity, RatingEntity, ResumeCollectionEntity, ResumeDayEntity, ResumeEntity, ResumeHourEntity, ResumeMonthEntity, ResumeTotalEntity, ResumeYearEntity, SponsorshipValueEntity, SubscriptionBaseEntity, SubscriptionBaseItemEntity, SubscriptionBaseLogEntity, SubscriptionCompanyEntity, SubscriptionCompanyProfileEntity, SubscriptionCustomerEntity, SubscriptionCustomerProfileEntity, TokenEntity, VoucherEntity, WaServerEntity };
|
3862
3899
|
//# sourceMappingURL=cecon-interfaces.mjs.map
|