cecon-interfaces 1.7.24 → 1.7.26
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/app/entities/desenfila.entity.d.ts +5 -0
- package/dist/app/entities/desenfila.entity.js +5 -0
- package/dist/app/interfaces/i-desenfila.d.ts +5 -0
- package/dist/esm2022/app/entities/desenfila.entity.mjs +6 -1
- package/dist/esm2022/app/interfaces/i-desenfila.mjs +1 -1
- package/dist/esm2022/envelope/interfaces/factory-envelope-array-pag.functions.mjs +1 -1
- package/dist/esm2022/envelope/interfaces/factory-envelope-array.functions.mjs +1 -1
- package/dist/esm2022/envelope/interfaces/factory-envelope.functions.mjs +1 -1
- package/dist/esm2022/general/entities/pix-keys.entity.mjs +1 -1
- package/dist/esm2022/general/interfaces/i-pix-key.mjs +3 -0
- package/dist/esm2022/natipay/company/entities/company.entity.mjs +1 -1
- package/dist/esm2022/natipay/company/interfaces/i-company.mjs +1 -1
- package/dist/esm2022/payio/chef-config/entities/chef-config-tabs.entity.mjs +15 -0
- package/dist/esm2022/payio/chef-config/entities/chef-config.entity.mjs +2 -4
- package/dist/esm2022/payio/chef-config/entities/index.mjs +2 -1
- package/dist/esm2022/payio/chef-config/enums/tab-mode.enum.mjs +2 -1
- package/dist/esm2022/payio/chef-config/interfaces/i-chef-config-tabs.mjs +2 -0
- package/dist/esm2022/payio/chef-config/interfaces/i-chef-config.mjs +1 -1
- package/dist/esm2022/payio/chef-config/interfaces/index.mjs +1 -1
- package/dist/fesm2022/cecon-interfaces.mjs +172 -154
- package/dist/fesm2022/cecon-interfaces.mjs.map +1 -1
- package/dist/general/entities/pix-keys.entity.d.ts +2 -2
- package/dist/general/interfaces/{i-pix-keys.d.ts → i-pix-key.d.ts} +1 -1
- package/dist/natipay/company/entities/company.entity.d.ts +2 -2
- package/dist/natipay/company/interfaces/i-company.d.ts +2 -2
- package/dist/package.json +1 -1
- package/dist/payio/chef-config/entities/chef-config-tabs.entity.d.ts +7 -0
- package/dist/payio/chef-config/entities/chef-config-tabs.entity.js +19 -0
- package/dist/payio/chef-config/entities/chef-config.entity.d.ts +2 -1
- package/dist/payio/chef-config/entities/chef-config.entity.js +1 -3
- package/dist/payio/chef-config/entities/index.d.ts +1 -0
- package/dist/payio/chef-config/entities/index.js +3 -1
- package/dist/payio/chef-config/enums/tab-mode.enum.d.ts +2 -1
- package/dist/payio/chef-config/enums/tab-mode.enum.js +1 -0
- package/dist/payio/chef-config/interfaces/i-chef-config-tabs.d.ts +5 -0
- package/dist/payio/chef-config/interfaces/i-chef-config-tabs.js +2 -0
- package/dist/payio/chef-config/interfaces/i-chef-config.d.ts +2 -0
- package/dist/payio/chef-config/interfaces/index.d.ts +1 -0
- package/package.json +1 -1
- package/dist/esm2022/general/interfaces/i-pix-keys.mjs +0 -3
- /package/dist/general/interfaces/{i-pix-keys.js → i-pix-key.js} +0 -0
@@ -1134,6 +1134,156 @@ class DesenfilaTokenEntity {
|
|
1134
1134
|
}
|
1135
1135
|
}
|
1136
1136
|
|
1137
|
+
class CompanyContactEntity {
|
1138
|
+
// #region Properties (3)
|
1139
|
+
title = '';
|
1140
|
+
updatedAt = undefined;
|
1141
|
+
value = '';
|
1142
|
+
// #endregion Properties (3)
|
1143
|
+
// #region Constructors (1)
|
1144
|
+
constructor(data) {
|
1145
|
+
if (data) {
|
1146
|
+
for (let key in data) {
|
1147
|
+
if (data.hasOwnProperty(key) && key in this) {
|
1148
|
+
this[key] = data[key];
|
1149
|
+
}
|
1150
|
+
}
|
1151
|
+
}
|
1152
|
+
}
|
1153
|
+
}
|
1154
|
+
|
1155
|
+
class CompanyRemoteAccessEntity {
|
1156
|
+
// #region Properties (5)
|
1157
|
+
active = true;
|
1158
|
+
code = '';
|
1159
|
+
domain = '';
|
1160
|
+
remoteIp = '';
|
1161
|
+
updatedAt = new Date();
|
1162
|
+
// #endregion Properties (5)
|
1163
|
+
// #region Constructors (1)
|
1164
|
+
constructor(data) {
|
1165
|
+
if (data) {
|
1166
|
+
for (let key in data) {
|
1167
|
+
if (data.hasOwnProperty(key) && key in this) {
|
1168
|
+
this[key] = data[key];
|
1169
|
+
}
|
1170
|
+
}
|
1171
|
+
}
|
1172
|
+
}
|
1173
|
+
}
|
1174
|
+
|
1175
|
+
class CompanyCustomDataEntity {
|
1176
|
+
// #region Properties (1)
|
1177
|
+
remoteAccess = new CompanyRemoteAccessEntity();
|
1178
|
+
// #endregion Properties (1)
|
1179
|
+
// #region Constructors (1)
|
1180
|
+
constructor(data) {
|
1181
|
+
if (data) {
|
1182
|
+
for (let key in data) {
|
1183
|
+
if (data.hasOwnProperty(key) && key in this) {
|
1184
|
+
this[key] = data[key];
|
1185
|
+
}
|
1186
|
+
}
|
1187
|
+
}
|
1188
|
+
}
|
1189
|
+
}
|
1190
|
+
|
1191
|
+
class CompanyTrialPlansUsedEntity {
|
1192
|
+
// #region Properties (2)
|
1193
|
+
activedAt = new Date();
|
1194
|
+
id = '';
|
1195
|
+
// #endregion Properties (2)
|
1196
|
+
// #region Constructors (1)
|
1197
|
+
constructor(data) {
|
1198
|
+
if (data) {
|
1199
|
+
for (let key in data) {
|
1200
|
+
if (data.hasOwnProperty(key) && key in this) {
|
1201
|
+
this[key] = data[key];
|
1202
|
+
}
|
1203
|
+
}
|
1204
|
+
}
|
1205
|
+
}
|
1206
|
+
}
|
1207
|
+
|
1208
|
+
var ECompanyKeys;
|
1209
|
+
(function (ECompanyKeys) {
|
1210
|
+
ECompanyKeys["GOOGLE"] = "GOOGLE";
|
1211
|
+
ECompanyKeys["LOGGI"] = "LOGGI";
|
1212
|
+
ECompanyKeys["DESENFILA"] = "DESENFILA";
|
1213
|
+
ECompanyKeys["MOTTU"] = "MOTTU";
|
1214
|
+
ECompanyKeys["NINE_NINE"] = "99";
|
1215
|
+
ECompanyKeys["ALGOLIA"] = "ALGOLIA";
|
1216
|
+
ECompanyKeys["NATI"] = "NATI";
|
1217
|
+
ECompanyKeys["WA_SERVER"] = "WA-SERVER";
|
1218
|
+
})(ECompanyKeys || (ECompanyKeys = {}));
|
1219
|
+
|
1220
|
+
var ECompanyMessageType;
|
1221
|
+
(function (ECompanyMessageType) {
|
1222
|
+
ECompanyMessageType["WHATSAPP"] = "WHATSAPP";
|
1223
|
+
ECompanyMessageType["INSTAGRAM"] = "INSTAGRAM";
|
1224
|
+
ECompanyMessageType["SMS"] = "SMS";
|
1225
|
+
})(ECompanyMessageType || (ECompanyMessageType = {}));
|
1226
|
+
|
1227
|
+
var EPixKeyTypes;
|
1228
|
+
(function (EPixKeyTypes) {
|
1229
|
+
EPixKeyTypes["PHONE"] = "PHONE";
|
1230
|
+
EPixKeyTypes["EMAIL"] = "EMAIL";
|
1231
|
+
EPixKeyTypes["CPF"] = "CPF";
|
1232
|
+
EPixKeyTypes["CNPJ"] = "CNPJ";
|
1233
|
+
EPixKeyTypes["RANDOM_KEY"] = "RANDOM_KEY";
|
1234
|
+
})(EPixKeyTypes || (EPixKeyTypes = {}));
|
1235
|
+
|
1236
|
+
// index.ts
|
1237
|
+
|
1238
|
+
class CompanyEntity {
|
1239
|
+
// #region Properties (33)
|
1240
|
+
active = false;
|
1241
|
+
address = new AddressEntity();
|
1242
|
+
bgImageUrl = null;
|
1243
|
+
config = null;
|
1244
|
+
contacts = [];
|
1245
|
+
containerId = '';
|
1246
|
+
createdAt = new Date();
|
1247
|
+
customData = new CompanyCustomDataEntity();
|
1248
|
+
deliveryArea = [];
|
1249
|
+
deliveryAreaFixed = null;
|
1250
|
+
doc = '';
|
1251
|
+
docType = EDocType.CNPJ;
|
1252
|
+
email = '';
|
1253
|
+
fees = [];
|
1254
|
+
fullName = '';
|
1255
|
+
goTransactionsLive = false;
|
1256
|
+
id = '';
|
1257
|
+
imageUrl = null;
|
1258
|
+
installationDesenfila;
|
1259
|
+
internationalCode = '+55';
|
1260
|
+
logoUrl = null;
|
1261
|
+
messagerChannels = [];
|
1262
|
+
name = '';
|
1263
|
+
origin = new OriginEntity();
|
1264
|
+
paymentProvider = new PaymentProviderEntity();
|
1265
|
+
phoneNumber = '';
|
1266
|
+
phoneNumbersNotification = [];
|
1267
|
+
pixKey = '';
|
1268
|
+
pixKeyType = EPixKeyTypes.RANDOM_KEY;
|
1269
|
+
sandbox = false;
|
1270
|
+
tags = [];
|
1271
|
+
updatedAt = new Date();
|
1272
|
+
usedTrialsPlans = [];
|
1273
|
+
version = '1.0.0';
|
1274
|
+
// #endregion Properties (33)
|
1275
|
+
// #region Constructors (1)
|
1276
|
+
constructor(data) {
|
1277
|
+
if (data) {
|
1278
|
+
for (let key in data) {
|
1279
|
+
if (data.hasOwnProperty(key) && key in this) {
|
1280
|
+
this[key] = data[key];
|
1281
|
+
}
|
1282
|
+
}
|
1283
|
+
}
|
1284
|
+
}
|
1285
|
+
}
|
1286
|
+
|
1137
1287
|
class DesenfilaEntity {
|
1138
1288
|
// #region Properties (8)
|
1139
1289
|
balance = 0;
|
@@ -1144,6 +1294,10 @@ class DesenfilaEntity {
|
|
1144
1294
|
goLive = false;
|
1145
1295
|
merchantId = '';
|
1146
1296
|
token = null;
|
1297
|
+
pixKeyType = EPixKeyTypes.RANDOM_KEY;
|
1298
|
+
pixKey = '';
|
1299
|
+
docType = 'CPF';
|
1300
|
+
doc = '';
|
1147
1301
|
// #endregion Properties (8)
|
1148
1302
|
// #region Constructors (1)
|
1149
1303
|
constructor(data) {
|
@@ -2287,156 +2441,6 @@ class ClientEntity {
|
|
2287
2441
|
}
|
2288
2442
|
}
|
2289
2443
|
|
2290
|
-
class CompanyContactEntity {
|
2291
|
-
// #region Properties (3)
|
2292
|
-
title = '';
|
2293
|
-
updatedAt = undefined;
|
2294
|
-
value = '';
|
2295
|
-
// #endregion Properties (3)
|
2296
|
-
// #region Constructors (1)
|
2297
|
-
constructor(data) {
|
2298
|
-
if (data) {
|
2299
|
-
for (let key in data) {
|
2300
|
-
if (data.hasOwnProperty(key) && key in this) {
|
2301
|
-
this[key] = data[key];
|
2302
|
-
}
|
2303
|
-
}
|
2304
|
-
}
|
2305
|
-
}
|
2306
|
-
}
|
2307
|
-
|
2308
|
-
class CompanyRemoteAccessEntity {
|
2309
|
-
// #region Properties (5)
|
2310
|
-
active = true;
|
2311
|
-
code = '';
|
2312
|
-
domain = '';
|
2313
|
-
remoteIp = '';
|
2314
|
-
updatedAt = new Date();
|
2315
|
-
// #endregion Properties (5)
|
2316
|
-
// #region Constructors (1)
|
2317
|
-
constructor(data) {
|
2318
|
-
if (data) {
|
2319
|
-
for (let key in data) {
|
2320
|
-
if (data.hasOwnProperty(key) && key in this) {
|
2321
|
-
this[key] = data[key];
|
2322
|
-
}
|
2323
|
-
}
|
2324
|
-
}
|
2325
|
-
}
|
2326
|
-
}
|
2327
|
-
|
2328
|
-
class CompanyCustomDataEntity {
|
2329
|
-
// #region Properties (1)
|
2330
|
-
remoteAccess = new CompanyRemoteAccessEntity();
|
2331
|
-
// #endregion Properties (1)
|
2332
|
-
// #region Constructors (1)
|
2333
|
-
constructor(data) {
|
2334
|
-
if (data) {
|
2335
|
-
for (let key in data) {
|
2336
|
-
if (data.hasOwnProperty(key) && key in this) {
|
2337
|
-
this[key] = data[key];
|
2338
|
-
}
|
2339
|
-
}
|
2340
|
-
}
|
2341
|
-
}
|
2342
|
-
}
|
2343
|
-
|
2344
|
-
class CompanyTrialPlansUsedEntity {
|
2345
|
-
// #region Properties (2)
|
2346
|
-
activedAt = new Date();
|
2347
|
-
id = '';
|
2348
|
-
// #endregion Properties (2)
|
2349
|
-
// #region Constructors (1)
|
2350
|
-
constructor(data) {
|
2351
|
-
if (data) {
|
2352
|
-
for (let key in data) {
|
2353
|
-
if (data.hasOwnProperty(key) && key in this) {
|
2354
|
-
this[key] = data[key];
|
2355
|
-
}
|
2356
|
-
}
|
2357
|
-
}
|
2358
|
-
}
|
2359
|
-
}
|
2360
|
-
|
2361
|
-
var ECompanyKeys;
|
2362
|
-
(function (ECompanyKeys) {
|
2363
|
-
ECompanyKeys["GOOGLE"] = "GOOGLE";
|
2364
|
-
ECompanyKeys["LOGGI"] = "LOGGI";
|
2365
|
-
ECompanyKeys["DESENFILA"] = "DESENFILA";
|
2366
|
-
ECompanyKeys["MOTTU"] = "MOTTU";
|
2367
|
-
ECompanyKeys["NINE_NINE"] = "99";
|
2368
|
-
ECompanyKeys["ALGOLIA"] = "ALGOLIA";
|
2369
|
-
ECompanyKeys["NATI"] = "NATI";
|
2370
|
-
ECompanyKeys["WA_SERVER"] = "WA-SERVER";
|
2371
|
-
})(ECompanyKeys || (ECompanyKeys = {}));
|
2372
|
-
|
2373
|
-
var ECompanyMessageType;
|
2374
|
-
(function (ECompanyMessageType) {
|
2375
|
-
ECompanyMessageType["WHATSAPP"] = "WHATSAPP";
|
2376
|
-
ECompanyMessageType["INSTAGRAM"] = "INSTAGRAM";
|
2377
|
-
ECompanyMessageType["SMS"] = "SMS";
|
2378
|
-
})(ECompanyMessageType || (ECompanyMessageType = {}));
|
2379
|
-
|
2380
|
-
var EPixKeyTypes;
|
2381
|
-
(function (EPixKeyTypes) {
|
2382
|
-
EPixKeyTypes["PHONE"] = "PHONE";
|
2383
|
-
EPixKeyTypes["EMAIL"] = "EMAIL";
|
2384
|
-
EPixKeyTypes["CPF"] = "CPF";
|
2385
|
-
EPixKeyTypes["CNPJ"] = "CNPJ";
|
2386
|
-
EPixKeyTypes["RANDOM_KEY"] = "RANDOM_KEY";
|
2387
|
-
})(EPixKeyTypes || (EPixKeyTypes = {}));
|
2388
|
-
|
2389
|
-
// index.ts
|
2390
|
-
|
2391
|
-
class CompanyEntity {
|
2392
|
-
// #region Properties (33)
|
2393
|
-
active = false;
|
2394
|
-
address = new AddressEntity();
|
2395
|
-
bgImageUrl = null;
|
2396
|
-
config = null;
|
2397
|
-
contacts = [];
|
2398
|
-
containerId = '';
|
2399
|
-
createdAt = new Date();
|
2400
|
-
customData = new CompanyCustomDataEntity();
|
2401
|
-
deliveryArea = [];
|
2402
|
-
deliveryAreaFixed = null;
|
2403
|
-
doc = '';
|
2404
|
-
docType = EDocType.CNPJ;
|
2405
|
-
email = '';
|
2406
|
-
fees = [];
|
2407
|
-
fullName = '';
|
2408
|
-
goTransactionsLive = false;
|
2409
|
-
id = '';
|
2410
|
-
imageUrl = null;
|
2411
|
-
installationDesenfila;
|
2412
|
-
internationalCode = '+55';
|
2413
|
-
logoUrl = null;
|
2414
|
-
messagerChannels = [];
|
2415
|
-
name = '';
|
2416
|
-
origin = new OriginEntity();
|
2417
|
-
paymentProvider = new PaymentProviderEntity();
|
2418
|
-
phoneNumber = '';
|
2419
|
-
phoneNumbersNotification = [];
|
2420
|
-
pixKey = '';
|
2421
|
-
pixKeyType = EPixKeyTypes.RANDOM_KEY;
|
2422
|
-
sandbox = false;
|
2423
|
-
tags = [];
|
2424
|
-
updatedAt = new Date();
|
2425
|
-
usedTrialsPlans = [];
|
2426
|
-
version = '1.0.0';
|
2427
|
-
// #endregion Properties (33)
|
2428
|
-
// #region Constructors (1)
|
2429
|
-
constructor(data) {
|
2430
|
-
if (data) {
|
2431
|
-
for (let key in data) {
|
2432
|
-
if (data.hasOwnProperty(key) && key in this) {
|
2433
|
-
this[key] = data[key];
|
2434
|
-
}
|
2435
|
-
}
|
2436
|
-
}
|
2437
|
-
}
|
2438
|
-
}
|
2439
|
-
|
2440
2444
|
class ContainerEntity extends BaseEntity {
|
2441
2445
|
// #region Properties (1)
|
2442
2446
|
name = '';
|
@@ -6062,6 +6066,7 @@ var EPayioChefTabMode;
|
|
6062
6066
|
(function (EPayioChefTabMode) {
|
6063
6067
|
EPayioChefTabMode["DIGITAL"] = "DIGITAL";
|
6064
6068
|
EPayioChefTabMode["MANUAL"] = "MANUAL";
|
6069
|
+
EPayioChefTabMode["FACE"] = "FACE";
|
6065
6070
|
})(EPayioChefTabMode || (EPayioChefTabMode = {}));
|
6066
6071
|
|
6067
6072
|
class PayioChefConfigOperationEntity {
|
@@ -6134,6 +6139,21 @@ class PayioChefConfigScaleEntity {
|
|
6134
6139
|
}
|
6135
6140
|
}
|
6136
6141
|
|
6142
|
+
class PayioChefConfigTabsEntity {
|
6143
|
+
active = true;
|
6144
|
+
id = '';
|
6145
|
+
name = '';
|
6146
|
+
constructor(data) {
|
6147
|
+
if (data) {
|
6148
|
+
for (let key in data) {
|
6149
|
+
if (data.hasOwnProperty(key) && key in this) {
|
6150
|
+
this[key] = data[key];
|
6151
|
+
}
|
6152
|
+
}
|
6153
|
+
}
|
6154
|
+
}
|
6155
|
+
}
|
6156
|
+
|
6137
6157
|
class PayioChefConfigWebhookEntity {
|
6138
6158
|
// #region Properties (9)
|
6139
6159
|
active = true;
|
@@ -6159,17 +6179,15 @@ class PayioChefConfigWebhookEntity {
|
|
6159
6179
|
}
|
6160
6180
|
|
6161
6181
|
class PayioChefConfigEntity {
|
6162
|
-
// #region Properties (9)
|
6163
6182
|
createdAt = new Date();
|
6164
6183
|
id = '';
|
6165
6184
|
name = '';
|
6166
6185
|
operation = new PayioChefConfigOperationEntity();
|
6167
6186
|
printer = null;
|
6168
6187
|
scale = new PayioChefConfigScaleEntity();
|
6188
|
+
tabs = [];
|
6169
6189
|
updatedAt = new Date();
|
6170
6190
|
webhook = [];
|
6171
|
-
// #endregion Properties (9)
|
6172
|
-
// #region Constructors (1)
|
6173
6191
|
constructor(data) {
|
6174
6192
|
if (data) {
|
6175
6193
|
for (let key in data) {
|
@@ -7960,5 +7978,5 @@ class WithDrawRequestEntity {
|
|
7960
7978
|
* Generated bundle index. Do not edit.
|
7961
7979
|
*/
|
7962
7980
|
|
7963
|
-
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, 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, 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, EPixKey, EPixKeyTypes, EPlanFeatureType, EPlanIdentifier, EPlatform, EPubSub, EPubSubTopicType, EReleaseStatus, EResumeIntervalType, EResumeType, ERole, EOperationType as ESponsorIdentifier, ESponsorshipValues, ESubsStatus, ESubscriptionStatus, 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, FirebaseQueryEntity, EGtintype as GTINTypeEnum, GeneralResumeTotalEntity, GlobalSettingEntity, GlobalSettingIuguEntity, GlobalSettingMasterEntity, 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, NatipayJwtPayloadAppEntity, NatipayJwtPayloadDeviceEntity, NatipayJwtPayloadEntity, NatipayJwtPayloadInfoEntity, NatipayJwtPayloadUserEntity, 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, PayioChefConfigWebhookEntity, PayioCompanyEntity, 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, 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 };
|
7981
|
+
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, 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, 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, EPixKey, EPixKeyTypes, EPlanFeatureType, EPlanIdentifier, EPlatform, EPubSub, EPubSubTopicType, EReleaseStatus, EResumeIntervalType, EResumeType, ERole, EOperationType as ESponsorIdentifier, ESponsorshipValues, ESubsStatus, ESubscriptionStatus, 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, FirebaseQueryEntity, EGtintype as GTINTypeEnum, GeneralResumeTotalEntity, GlobalSettingEntity, GlobalSettingIuguEntity, GlobalSettingMasterEntity, 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, NatipayJwtPayloadAppEntity, NatipayJwtPayloadDeviceEntity, NatipayJwtPayloadEntity, NatipayJwtPayloadInfoEntity, NatipayJwtPayloadUserEntity, 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, PayioCompanyEntity, 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, 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 };
|
7964
7982
|
//# sourceMappingURL=cecon-interfaces.mjs.map
|