cecon-interfaces 1.0.99 → 1.1.2
Sign up to get free protection for your applications and to get access to all the features.
- package/.prettierrc +7 -0
- package/dist/README.md +1 -1
- package/dist/app/entities/index.d.ts +1 -0
- package/dist/app/entities/index.js +3 -1
- package/dist/app/entities/rabbit.entity.d.ts +21 -0
- package/dist/app/entities/rabbit.entity.js +36 -0
- package/dist/app/enums/mode.enum.d.ts +1 -0
- package/dist/app/enums/mode.enum.js +1 -0
- package/dist/app/interfaces/i-rabbit.d.ts +64 -0
- package/dist/app/interfaces/i-rabbit.js +2 -0
- package/dist/app/interfaces/index.d.ts +1 -0
- package/dist/esm2022/app/entities/index.mjs +2 -1
- package/dist/esm2022/app/entities/rabbit.entity.mjs +32 -0
- package/dist/esm2022/app/enums/mode.enum.mjs +2 -1
- package/dist/esm2022/app/interfaces/i-rabbit.mjs +2 -0
- package/dist/esm2022/app/interfaces/index.mjs +1 -1
- package/dist/esm2022/general/enums/fiscal-doc-model-code.enum.mjs +13 -0
- package/dist/esm2022/general/enums/index.mjs +2 -1
- package/dist/esm2022/iugu/enums/iugu-bank.enum.mjs +156 -123
- package/dist/fesm2022/cecon-interfaces.mjs +200 -123
- package/dist/fesm2022/cecon-interfaces.mjs.map +1 -1
- package/dist/general/enums/fiscal-doc-model-code.enum.d.ts +11 -0
- package/dist/general/enums/fiscal-doc-model-code.enum.js +15 -0
- package/dist/general/enums/index.d.ts +1 -0
- package/dist/general/enums/index.js +3 -1
- package/dist/iugu/enums/iugu-bank.enum.d.ts +12 -1
- package/dist/iugu/enums/iugu-bank.enum.js +155 -122
- package/dist/package.json +1 -1
- package/package.json +2 -2
- package/readme.md +1 -1
@@ -397,6 +397,19 @@ var DocTypeEnum;
|
|
397
397
|
DocTypeEnum["CNPJ"] = "CNPJ";
|
398
398
|
})(DocTypeEnum || (DocTypeEnum = {}));
|
399
399
|
|
400
|
+
var EFiscalDocModelCode;
|
401
|
+
(function (EFiscalDocModelCode) {
|
402
|
+
EFiscalDocModelCode["NFE"] = "55";
|
403
|
+
EFiscalDocModelCode["CTE"] = "57";
|
404
|
+
EFiscalDocModelCode["SAT"] = "59";
|
405
|
+
EFiscalDocModelCode["ECF"] = "60";
|
406
|
+
EFiscalDocModelCode["NFCOM"] = "62";
|
407
|
+
EFiscalDocModelCode["BPE"] = "63";
|
408
|
+
EFiscalDocModelCode["NFCE"] = "65";
|
409
|
+
EFiscalDocModelCode["NF3E"] = "66";
|
410
|
+
EFiscalDocModelCode["OS"] = "67";
|
411
|
+
})(EFiscalDocModelCode || (EFiscalDocModelCode = {}));
|
412
|
+
|
400
413
|
var IntervalTypeEnum;
|
401
414
|
(function (IntervalTypeEnum) {
|
402
415
|
IntervalTypeEnum["DAYS"] = "DAYS";
|
@@ -479,6 +492,7 @@ var EAppMode;
|
|
479
492
|
EAppMode["NATI_GO"] = "NATIGO";
|
480
493
|
EAppMode["SAT_MANAGER"] = "SAT-MANAGER";
|
481
494
|
EAppMode["PDV_NATI"] = "PDV-NATI";
|
495
|
+
EAppMode["RABBIT"] = "RABBIT";
|
482
496
|
EAppMode["FISCAL_MANAGER"] = "FISCAL-MANAGER";
|
483
497
|
EAppMode["NONE"] = "NONE";
|
484
498
|
})(EAppMode || (EAppMode = {}));
|
@@ -565,6 +579,36 @@ class NatiGoEntity {
|
|
565
579
|
}
|
566
580
|
}
|
567
581
|
|
582
|
+
class RabbitEntity {
|
583
|
+
// #region Properties (15)
|
584
|
+
address = new AddressEntity();
|
585
|
+
api = 'http://localhost:8089';
|
586
|
+
cityCode = '';
|
587
|
+
doc = '';
|
588
|
+
ie = '';
|
589
|
+
ignoreCpfCnpj = false;
|
590
|
+
model = EFiscalDocModelCode.NFCE;
|
591
|
+
name = '';
|
592
|
+
onlyCash = false;
|
593
|
+
pdvId = '';
|
594
|
+
percentage = 50;
|
595
|
+
regime = 1;
|
596
|
+
serialNumber = '';
|
597
|
+
signature = '';
|
598
|
+
version = '1.0.0';
|
599
|
+
// #endregion Properties (15)
|
600
|
+
// #region Constructors (1)
|
601
|
+
constructor(data) {
|
602
|
+
if (data) {
|
603
|
+
for (let key in data) {
|
604
|
+
if (data.hasOwnProperty(key) && key in this) {
|
605
|
+
this[key] = data[key];
|
606
|
+
}
|
607
|
+
}
|
608
|
+
}
|
609
|
+
}
|
610
|
+
}
|
611
|
+
|
568
612
|
var EAppCategory;
|
569
613
|
(function (EAppCategory) {
|
570
614
|
EAppCategory["UTILITIES"] = "UTILIDADES";
|
@@ -1237,132 +1281,165 @@ var IuguBankEnum;
|
|
1237
1281
|
IuguBankEnum["PAN"] = "Banco Pan";
|
1238
1282
|
IuguBankEnum["VORTX"] = "VORTX DTVM LTDA";
|
1239
1283
|
IuguBankEnum["BMG"] = "Banco BMG";
|
1284
|
+
IuguBankEnum["PEFISA"] = "Pefisa";
|
1285
|
+
IuguBankEnum["J17"] = "J17 - SCD S/A";
|
1286
|
+
IuguBankEnum["CREDISAN"] = "Credisan";
|
1287
|
+
IuguBankEnum["PINBANK"] = "Pinbank";
|
1288
|
+
IuguBankEnum["XPINVESTIMENTOS"] = "XP Investimentos";
|
1289
|
+
IuguBankEnum["CREFISA"] = "Crefisa";
|
1290
|
+
IuguBankEnum["SINGULARE"] = "Singulare";
|
1291
|
+
IuguBankEnum["SUMUP"] = "SUMUP SCD S.A.";
|
1292
|
+
IuguBankEnum["ABCBRASIL"] = "Banco ABC Brasil";
|
1293
|
+
IuguBankEnum["LETSBANK"] = "BCO LETSBANK S.A.";
|
1294
|
+
IuguBankEnum["HRDIGITAL"] = "HR Digital Sociedade de Cr\u00E9dito Direto S.A";
|
1240
1295
|
})(IuguBankEnum || (IuguBankEnum = {}));
|
1241
1296
|
const IuguBankNumber = [
|
1242
|
-
{ code:
|
1243
|
-
{ code:
|
1244
|
-
{ code:
|
1245
|
-
{ code:
|
1246
|
-
{ code:
|
1247
|
-
{ code:
|
1248
|
-
{ code:
|
1249
|
-
{ code:
|
1250
|
-
{ code:
|
1251
|
-
{ code:
|
1252
|
-
{ code:
|
1253
|
-
{ code:
|
1254
|
-
{ code:
|
1255
|
-
{ code:
|
1256
|
-
{ code:
|
1257
|
-
{ code:
|
1258
|
-
{ code:
|
1259
|
-
{ code:
|
1260
|
-
{ code:
|
1261
|
-
{ code:
|
1262
|
-
{ code:
|
1263
|
-
{ code:
|
1264
|
-
{ code:
|
1265
|
-
{ code:
|
1266
|
-
{ code:
|
1267
|
-
{ code:
|
1268
|
-
{ code:
|
1269
|
-
{ code:
|
1270
|
-
{ code:
|
1271
|
-
{ code:
|
1272
|
-
{ code:
|
1273
|
-
{ code:
|
1274
|
-
{ code:
|
1275
|
-
{ code:
|
1276
|
-
{ code:
|
1277
|
-
{ code:
|
1278
|
-
{ code:
|
1279
|
-
{ code:
|
1280
|
-
{ code:
|
1281
|
-
{ code:
|
1282
|
-
{ code:
|
1283
|
-
{ code:
|
1284
|
-
{ code:
|
1285
|
-
{ code:
|
1286
|
-
{ code:
|
1287
|
-
{ code:
|
1288
|
-
{ code:
|
1289
|
-
{ code:
|
1290
|
-
{ code:
|
1291
|
-
{ code:
|
1292
|
-
{ code:
|
1293
|
-
{ code:
|
1294
|
-
{ code:
|
1295
|
-
{ code:
|
1296
|
-
{ code:
|
1297
|
-
{ code:
|
1298
|
-
{ code:
|
1297
|
+
{ code: "341", label: IuguBankEnum.ITAU },
|
1298
|
+
{ code: "237", label: IuguBankEnum.BRADESCO },
|
1299
|
+
{ code: "104", label: IuguBankEnum.CAIXA },
|
1300
|
+
{ code: "001", label: IuguBankEnum.BRASIL },
|
1301
|
+
{ code: "033", label: IuguBankEnum.SANTANDER },
|
1302
|
+
{ code: "041", label: IuguBankEnum.BANRISUL },
|
1303
|
+
{ code: "748", label: IuguBankEnum.SICRED },
|
1304
|
+
{ code: "756", label: IuguBankEnum.SICOOB },
|
1305
|
+
{ code: "077", label: IuguBankEnum.INTER },
|
1306
|
+
{ code: "070", label: IuguBankEnum.BRB },
|
1307
|
+
{ code: "085", label: IuguBankEnum.VIACRED },
|
1308
|
+
{ code: "735", label: IuguBankEnum.NEON },
|
1309
|
+
{ code: "655", label: IuguBankEnum.VOTORANTIN },
|
1310
|
+
{ code: "260", label: IuguBankEnum.NUBANK },
|
1311
|
+
{ code: "290", label: IuguBankEnum.PAGSEGURO },
|
1312
|
+
{ code: "212", label: IuguBankEnum.ORIGINAL },
|
1313
|
+
{ code: "422", label: IuguBankEnum.SAFRA },
|
1314
|
+
{ code: "746", label: IuguBankEnum.MODAL },
|
1315
|
+
{ code: "021", label: IuguBankEnum.BANESTES },
|
1316
|
+
{ code: "136", label: IuguBankEnum.UNICRED },
|
1317
|
+
{ code: "274", label: IuguBankEnum.MONEYPLUS },
|
1318
|
+
{ code: "389", label: IuguBankEnum.MERCANTIL },
|
1319
|
+
{ code: "376", label: IuguBankEnum.JPMORGAN },
|
1320
|
+
{ code: "364", label: IuguBankEnum.GERENCIANET },
|
1321
|
+
{ code: "336", label: IuguBankEnum.C6 },
|
1322
|
+
{ code: "218", label: IuguBankEnum.BS2 },
|
1323
|
+
{ code: "082", label: IuguBankEnum.TOPAZIO },
|
1324
|
+
{ code: "099", label: IuguBankEnum.UNIPRIME },
|
1325
|
+
{ code: "197", label: IuguBankEnum.STONE },
|
1326
|
+
{ code: "707", label: IuguBankEnum.DAYCOVAL },
|
1327
|
+
{ code: "633", label: IuguBankEnum.RENDIMENTO },
|
1328
|
+
{ code: "004", label: IuguBankEnum.NORDESTE },
|
1329
|
+
{ code: "745", label: IuguBankEnum.CITIBANK },
|
1330
|
+
{ code: "301", label: IuguBankEnum.PJBANK },
|
1331
|
+
{ code: "320", label: IuguBankEnum.CCCNB },
|
1332
|
+
{ code: "084", label: IuguBankEnum.UNIPRIMENPARANA },
|
1333
|
+
{ code: "384", label: IuguBankEnum.GLOBALSCM },
|
1334
|
+
{ code: "237", label: IuguBankEnum.NEXT },
|
1335
|
+
{ code: "403", label: IuguBankEnum.CORA },
|
1336
|
+
{ code: "323", label: IuguBankEnum.MERCADOPAGO },
|
1337
|
+
{ code: "003", label: IuguBankEnum.AMAZONIA },
|
1338
|
+
{ code: "752", label: IuguBankEnum.BNP },
|
1339
|
+
{ code: "383", label: IuguBankEnum.JUNO },
|
1340
|
+
{ code: "133", label: IuguBankEnum.CRESOL },
|
1341
|
+
{ code: "173", label: IuguBankEnum.BRLTRUST },
|
1342
|
+
{ code: "047", label: IuguBankEnum.BANESE },
|
1343
|
+
{ code: "208", label: IuguBankEnum.BTGPACTUAL },
|
1344
|
+
{ code: "613", label: IuguBankEnum.OMNI },
|
1345
|
+
{ code: "332", label: IuguBankEnum.ACESSOSOLUCOES },
|
1346
|
+
{ code: "281", label: IuguBankEnum.CCR },
|
1347
|
+
{ code: "093", label: IuguBankEnum.POLOCRED },
|
1348
|
+
{ code: "355", label: IuguBankEnum.OTIMO },
|
1349
|
+
{ code: "741", label: IuguBankEnum.RIBEIRAOPRETO },
|
1350
|
+
{ code: "461", label: IuguBankEnum.ASAASIP },
|
1351
|
+
{ code: "623", label: IuguBankEnum.PAN },
|
1352
|
+
{ code: "310", label: IuguBankEnum.VORTX },
|
1353
|
+
{ code: "318", label: IuguBankEnum.BMG },
|
1354
|
+
{ code: "174", label: IuguBankEnum.PEFISA },
|
1355
|
+
{ code: "085", label: IuguBankEnum.J17 },
|
1356
|
+
{ code: "222", label: IuguBankEnum.CREDISAN },
|
1357
|
+
{ code: "094", label: IuguBankEnum.PINBANK },
|
1358
|
+
{ code: "102", label: IuguBankEnum.XPINVESTIMENTOS },
|
1359
|
+
{ code: "069", label: IuguBankEnum.CREFISA },
|
1360
|
+
{ code: "300", label: IuguBankEnum.SINGULARE },
|
1361
|
+
{ code: "290", label: IuguBankEnum.SUMUP },
|
1362
|
+
{ code: "246", label: IuguBankEnum.ABCBRASIL },
|
1363
|
+
{ code: "290", label: IuguBankEnum.LETSBANK },
|
1364
|
+
{ code: "255", label: IuguBankEnum.HRDIGITAL },
|
1299
1365
|
];
|
1300
1366
|
const IuguBankFormatter = [
|
1301
|
-
{ name:
|
1302
|
-
{ name:
|
1303
|
-
{ name:
|
1304
|
-
{ name:
|
1305
|
-
{ name:
|
1306
|
-
{ name:
|
1307
|
-
{ name:
|
1308
|
-
{ name:
|
1309
|
-
{ name:
|
1310
|
-
{ name:
|
1311
|
-
{ name:
|
1312
|
-
{ name:
|
1313
|
-
{ name:
|
1314
|
-
{ name:
|
1315
|
-
{ name:
|
1316
|
-
{ name:
|
1317
|
-
{ name:
|
1318
|
-
{ name:
|
1319
|
-
{ name:
|
1320
|
-
{ name:
|
1321
|
-
{ name:
|
1322
|
-
{ name:
|
1323
|
-
{ name:
|
1324
|
-
{ name:
|
1325
|
-
{ name:
|
1326
|
-
{ name:
|
1327
|
-
{ name:
|
1328
|
-
{ name:
|
1329
|
-
{ name:
|
1330
|
-
{ name:
|
1331
|
-
{ name:
|
1332
|
-
{ name:
|
1333
|
-
{ name:
|
1334
|
-
{ name:
|
1335
|
-
{ name:
|
1336
|
-
{ name:
|
1337
|
-
{ name:
|
1338
|
-
{ name:
|
1339
|
-
{ name:
|
1340
|
-
{ name:
|
1341
|
-
{ name:
|
1342
|
-
{ name:
|
1343
|
-
{ name:
|
1344
|
-
{ name:
|
1345
|
-
{ name:
|
1346
|
-
{ name:
|
1347
|
-
{ name:
|
1348
|
-
{ name:
|
1349
|
-
{ name:
|
1350
|
-
{ name:
|
1351
|
-
{ name:
|
1352
|
-
{ name:
|
1353
|
-
{ name:
|
1354
|
-
{ name:
|
1355
|
-
{ name:
|
1356
|
-
{ name:
|
1357
|
-
{ name:
|
1358
|
-
{ name:
|
1359
|
-
{ name:
|
1360
|
-
{ name:
|
1361
|
-
{ name:
|
1362
|
-
{ name:
|
1363
|
-
{ name:
|
1364
|
-
{ name:
|
1365
|
-
{ name:
|
1367
|
+
{ name: "Banco do Brasil", agency: "9999-D", account: "99999999-D" },
|
1368
|
+
{ name: "Santander", agency: "9999", account: "99999999-D" },
|
1369
|
+
{ name: "Caixa Econômica", agency: "9999", account: "XXX99999999-D (X: Operação)" },
|
1370
|
+
{ name: "Caixa Econômica", agency: "9999", account: "XXXX999999999-D (X: Operação - Novo formato CP)" },
|
1371
|
+
{ name: "Bradesco", agency: "9999-D", account: "9999999-D" },
|
1372
|
+
{ name: "Itaú", agency: "9999", account: "99999-D" },
|
1373
|
+
{ name: "Itaú", agency: "9999", account: "999999999-D (Itaú-Iti)" },
|
1374
|
+
{ name: "Agibank", agency: "9999", account: "9999999999" },
|
1375
|
+
{ name: "Banpará", agency: "9999", account: "999999999-D" },
|
1376
|
+
{ name: "Banrisul", agency: "9999", account: "999999999-D" },
|
1377
|
+
{ name: "Sicoob", agency: "9999", account: "999999999-D" },
|
1378
|
+
{ name: "Inter", agency: "9999", account: "999999999-D" },
|
1379
|
+
{ name: "BRB", agency: "9999", account: "999999999-D" },
|
1380
|
+
{ name: "Via Credi", agency: "9999", account: "99999999999-D" },
|
1381
|
+
{ name: "Neon/Votorantim", agency: "9999", account: "9999999999-D" },
|
1382
|
+
{ name: "Nubank", agency: "9999", account: "9999999999-D" },
|
1383
|
+
{ name: "Pagseguro", agency: "9999", account: "99999999-D" },
|
1384
|
+
{ name: "Banco Original", agency: "9999", account: "9999999-D" },
|
1385
|
+
{ name: "Safra", agency: "9999", account: "99999999-D" },
|
1386
|
+
{ name: "Modal", agency: "9999", account: "999999999-D" },
|
1387
|
+
{ name: "Banestes", agency: "9999", account: "99999999-D" },
|
1388
|
+
{ name: "Unicred", agency: "9999", account: "99999999-D" },
|
1389
|
+
{ name: "Money Plus", agency: "9", account: "99999999-D" },
|
1390
|
+
{ name: "Mercantil do Brasil", agency: "9999", account: "99999999-D" },
|
1391
|
+
{ name: "JP Morgan", agency: "9999", account: "99999999999-D" },
|
1392
|
+
{ name: "Gerencianet Pagamentos do Brasil", agency: "9999", account: "99999999-D" },
|
1393
|
+
{ name: "Banco C6", agency: "9999", account: "99999999-D" },
|
1394
|
+
{ name: "BS2", agency: "9999", account: "9999999-D" },
|
1395
|
+
{ name: "Banco Topazio", agency: "9999", account: "99999-D" },
|
1396
|
+
{ name: "Uniprime", agency: "9999", account: "9999-D" },
|
1397
|
+
{ name: "Stone", agency: "9999", account: "9999999-D" },
|
1398
|
+
{ name: "Rendimento", agency: "9999-D", account: "9999999999" },
|
1399
|
+
{ name: "Banco Daycoval", agency: "9999", account: "999999-D" },
|
1400
|
+
{ name: "Banco do Nordeste", agency: "999", account: "999999-D" },
|
1401
|
+
{ name: "Citibank", agency: "9999", account: "99999999" },
|
1402
|
+
{ name: "PJBank", agency: "9999", account: "9999999999-D" },
|
1403
|
+
{ name: "Cooperativa Central de Credito Noroeste Brasileiro", agency: "9999", account: "9999999-D" },
|
1404
|
+
{ name: "Uniprime Norte do Paraná", agency: "9999", account: "999999-D" },
|
1405
|
+
{ name: "Global SCM", agency: "9999", account: "99999999999" },
|
1406
|
+
{ name: "Next", agency: "9999-D", account: "9999999-D" },
|
1407
|
+
{ name: "Cora", agency: "9999", account: "9999999-D" },
|
1408
|
+
{ name: "Mercado Pago", agency: "9999", account: "9999999999-D" },
|
1409
|
+
{ name: "Banco da Amazonia", agency: "9999", account: "999999-D" },
|
1410
|
+
{ name: "BNP Paribas Brasil", agency: "999", account: "999999-DDD" },
|
1411
|
+
{ name: "Juno", agency: "9999", account: "9999999999-D" },
|
1412
|
+
{ name: "Cresol", agency: "9999", account: "99999999-D" },
|
1413
|
+
{ name: "BRL Trust DTVM", agency: "999", account: "999999-D" },
|
1414
|
+
{ name: "Banco Banese", agency: "999", account: "99999999-D" },
|
1415
|
+
{ name: "Banco BTG Pactual", agency: "9999", account: "9999999-D" },
|
1416
|
+
{ name: "Banco Omni", agency: "9999", account: "999999-D" },
|
1417
|
+
{ name: "Acesso Soluções de pagamento", agency: "9999", account: "99999999" },
|
1418
|
+
{ name: "CCR de São Miguel do Oeste", agency: "9999", account: "99999" },
|
1419
|
+
{ name: "Polocred", agency: "9999", account: "999999-D" },
|
1420
|
+
{ name: "Ótimo", agency: "9999", account: "99999-D" },
|
1421
|
+
{ name: "Picpay", agency: "9999", account: "99999999-D" },
|
1422
|
+
{ name: "Banco Genial", agency: "9999", account: "9999-D" },
|
1423
|
+
{ name: "Banco Capital S.A", agency: "9999", account: "999999999" },
|
1424
|
+
{ name: "Sicredi", agency: "9999", account: "99999999D" },
|
1425
|
+
{ name: "Banco Ribeirão Preto", agency: "99999", account: "9999999999" },
|
1426
|
+
{ name: "ASAAS IP", agency: "9999", account: "9999999-D" },
|
1427
|
+
{ name: "Banco Pan", agency: "9999", account: "999999999-D" },
|
1428
|
+
{ name: "Neon", agency: "9999", account: "9999999999-D" },
|
1429
|
+
{ name: "VORTX DTVM LTDA", agency: "9999-D", account: "999-D" },
|
1430
|
+
{ name: "Banco BMG", agency: "9999", account: "99999999-D" },
|
1431
|
+
{ name: "Fitbank", agency: "9999", account: "999999999-9" },
|
1432
|
+
{ name: "Pefisa", agency: "9999", account: "9999999-D" },
|
1433
|
+
{ name: "J17 - SCD S/A", agency: "9999", account: "99999999999-D" },
|
1434
|
+
{ name: "Credisan", agency: "9999", account: "999999999-D" },
|
1435
|
+
{ name: "Pinbank", agency: "999", account: "99999999-D" },
|
1436
|
+
{ name: "XP Investimentos", agency: "9999", account: "999999-D" },
|
1437
|
+
{ name: "Crefisa", agency: "9999", account: "999999999-D" },
|
1438
|
+
{ name: "Singulare", agency: "9999", account: "9999999-D" },
|
1439
|
+
{ name: "SUMUP SCD S.A.", agency: "9999", account: "999999999-D" },
|
1440
|
+
{ name: "Banco ABC Brasil", agency: "9999-D", account: "9999999999" },
|
1441
|
+
{ name: "BCO LETSBANK S.A.", agency: "9999", account: "999999999-D" },
|
1442
|
+
{ name: "HR Digital Sociedade de Crédito Direto S.A", agency: "9999", account: "999999999-D" },
|
1366
1443
|
];
|
1367
1444
|
|
1368
1445
|
var IuguInvoiceStatusEnum;
|
@@ -2385,5 +2462,5 @@ class TokenEntity {
|
|
2385
2462
|
* Generated bundle index. Do not edit.
|
2386
2463
|
*/
|
2387
2464
|
|
2388
|
-
export { AccountInformationsEntity, AddressEntity, AppEntity, AppInfoEntity, BaseEntity, BooleanStringEnum, CarouselImageEntity, CompanyEntity, ContainerEntity, CoordsEntity, CustomVariableEntity, DeliveryAreaEntity, DeliveryAreaFixedEntity, DeviceEntity, DocTypeEnum, EAppCategory, EAppHeaderType, EAppMode, EAppType, ECompanyKeys, ECompanyMessageType, EPlanFeatureType, EPlanIdentifier, FeatureEntity, InstallationEntity, IntervalTypeEnum, InviteEntity, InviteStatusEnum, InvoiceEntity, InvoiceItemEntity, InvoicePaymentMethodEntity, InvoiceStatusEnum, IuguAccountEntity, LastVerificationRequestDataEntity as IuguAccountLastVerificationRequestDataEntity, IuguAutoAdvanceEnum, IuguBankEnum, IuguCustomerEntity, IuguInvoiceEntity, IuguInvoiceStatusEnum, IuguPaymentTokenDataEntity, IuguPaymentTokenEntity, LeadEntity, LeadOriginEnum, LeadStatusEnum, LegalEntiyEnum, MemberEntity, MemberRulesEnum, MemberTypeEnum, MessagerChannelEntity, MetadataEntity, MobyoApiConfigEntity, NatiGoEntity, NotificationActionEntity, NotificationActionTypeEnum, NotificationCategoryEnum, NotificationEntity, NotificationPriorityEnum, NotificationStatusEnum, OrderAdditionalFeeEntity, OrderBenefitsEntity, OrderCancellationEntity, OrderCustomerEntity, OrderEntity, OrderItemCompositionEntity, OrderItemEntity, OrderItemOptionEntity, OrderPaymentCardEntity, OrderPaymentCashEntity, OrderPaymentEntity, OrderPaymentMethodEntity, OrderPaymentPixEntity, OrderPaymentWalletEntity, OrderScaleEntity, OrderScaleItemEntity, OrderStatusEnum, OrderTotalEntity, OrdersCustomerPhoneEntity, OriginEntity, OsEnum, PartnerEntity, PaymentChannelEnum, PaymentMethodEntity, PaymentModeEnum, PaymentProviderAgentEntity, PaymentProviderEntity, PaymentProviderEnum, PaymentStatusEnum, PaymentTokenDataEntity, PaymentTokenEntity, PaymentTypeEnum, PlanEntity, PlanFeatureEntity, PlatfomrEnum, PurchaseEntity, RatingEntity, SponsorshipValuesEntity, SubscriptionEntity, SubscriptionItemEntity, SubscriptionLogEntity, SubscriptionStatusEnum, TokenEntity };
|
2465
|
+
export { AccountInformationsEntity, AddressEntity, AppEntity, AppInfoEntity, BaseEntity, BooleanStringEnum, CarouselImageEntity, CompanyEntity, ContainerEntity, CoordsEntity, CustomVariableEntity, DeliveryAreaEntity, DeliveryAreaFixedEntity, DeviceEntity, DocTypeEnum, EAppCategory, EAppHeaderType, EAppMode, EAppType, ECompanyKeys, ECompanyMessageType, EFiscalDocModelCode, EPlanFeatureType, EPlanIdentifier, FeatureEntity, InstallationEntity, IntervalTypeEnum, InviteEntity, InviteStatusEnum, InvoiceEntity, InvoiceItemEntity, InvoicePaymentMethodEntity, InvoiceStatusEnum, IuguAccountEntity, LastVerificationRequestDataEntity as IuguAccountLastVerificationRequestDataEntity, IuguAutoAdvanceEnum, IuguBankEnum, IuguCustomerEntity, IuguInvoiceEntity, IuguInvoiceStatusEnum, IuguPaymentTokenDataEntity, IuguPaymentTokenEntity, LeadEntity, LeadOriginEnum, LeadStatusEnum, LegalEntiyEnum, MemberEntity, MemberRulesEnum, MemberTypeEnum, MessagerChannelEntity, MetadataEntity, MobyoApiConfigEntity, NatiGoEntity, NotificationActionEntity, NotificationActionTypeEnum, NotificationCategoryEnum, NotificationEntity, NotificationPriorityEnum, NotificationStatusEnum, OrderAdditionalFeeEntity, OrderBenefitsEntity, OrderCancellationEntity, OrderCustomerEntity, OrderEntity, OrderItemCompositionEntity, OrderItemEntity, OrderItemOptionEntity, OrderPaymentCardEntity, OrderPaymentCashEntity, OrderPaymentEntity, OrderPaymentMethodEntity, OrderPaymentPixEntity, OrderPaymentWalletEntity, OrderScaleEntity, OrderScaleItemEntity, OrderStatusEnum, OrderTotalEntity, OrdersCustomerPhoneEntity, OriginEntity, OsEnum, PartnerEntity, PaymentChannelEnum, PaymentMethodEntity, PaymentModeEnum, PaymentProviderAgentEntity, PaymentProviderEntity, PaymentProviderEnum, PaymentStatusEnum, PaymentTokenDataEntity, PaymentTokenEntity, PaymentTypeEnum, PlanEntity, PlanFeatureEntity, PlatfomrEnum, PurchaseEntity, RabbitEntity, RatingEntity, SponsorshipValuesEntity, SubscriptionEntity, SubscriptionItemEntity, SubscriptionLogEntity, SubscriptionStatusEnum, TokenEntity };
|
2389
2466
|
//# sourceMappingURL=cecon-interfaces.mjs.map
|