@nomalism-com/api 0.47.15 → 0.48.0

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/index.js CHANGED
@@ -41,6 +41,7 @@ __export(main_exports, {
41
41
  EmailTemplateAttachment: () => emailTemplateAttachment_exports,
42
42
  EmailVerification: () => emailVerification_exports,
43
43
  ErrorLog: () => errorLog_exports,
44
+ EuPago: () => euPago_exports,
44
45
  ExternalDocumentHeader: () => externalDocumentHeader_exports,
45
46
  ExternalDocumentType: () => externalDocumentType_exports,
46
47
  Favorites: () => favorites_exports,
@@ -894,12 +895,41 @@ var Repository24 = class {
894
895
  }
895
896
  };
896
897
 
898
+ // src/modules/integration/euPago.ts
899
+ var euPago_exports = {};
900
+ __export(euPago_exports, {
901
+ default: () => Repository25
902
+ });
903
+ var Repository25 = class {
904
+ constructor({ api, route }) {
905
+ this.api = api;
906
+ this.route = route;
907
+ }
908
+ async generate(data) {
909
+ const response = await this.api.post(
910
+ `${this.route}generate`,
911
+ data
912
+ );
913
+ return response.data;
914
+ }
915
+ async chooseMethod({
916
+ id,
917
+ ...body
918
+ }) {
919
+ const response = await this.api.post(
920
+ `${this.route}${id}/method`,
921
+ body
922
+ );
923
+ return response.data;
924
+ }
925
+ };
926
+
897
927
  // src/modules/integration/googleFilePermission.ts
898
928
  var googleFilePermission_exports = {};
899
929
  __export(googleFilePermission_exports, {
900
- default: () => Repository25
930
+ default: () => Repository26
901
931
  });
902
- var Repository25 = class {
932
+ var Repository26 = class {
903
933
  constructor({ api, route }) {
904
934
  this.api = api;
905
935
  this.route = route;
@@ -934,9 +964,9 @@ var Repository25 = class {
934
964
  // src/modules/integration/googleSheets.ts
935
965
  var googleSheets_exports = {};
936
966
  __export(googleSheets_exports, {
937
- default: () => Repository26
967
+ default: () => Repository27
938
968
  });
939
- var Repository26 = class {
969
+ var Repository27 = class {
940
970
  constructor({ api, route }) {
941
971
  this.api = api;
942
972
  this.route = route;
@@ -970,9 +1000,9 @@ var Repository26 = class {
970
1000
  // src/modules/integration/observation.ts
971
1001
  var observation_exports = {};
972
1002
  __export(observation_exports, {
973
- default: () => Repository27
1003
+ default: () => Repository28
974
1004
  });
975
- var Repository27 = class {
1005
+ var Repository28 = class {
976
1006
  constructor({ api, route }) {
977
1007
  this.api = api;
978
1008
  this.route = route;
@@ -1012,9 +1042,9 @@ var Repository27 = class {
1012
1042
  // src/modules/integration/observationType.ts
1013
1043
  var observationType_exports = {};
1014
1044
  __export(observationType_exports, {
1015
- default: () => Repository28
1045
+ default: () => Repository29
1016
1046
  });
1017
- var Repository28 = class {
1047
+ var Repository29 = class {
1018
1048
  constructor({ api, route }) {
1019
1049
  this.api = api;
1020
1050
  this.route = route;
@@ -1056,9 +1086,9 @@ var Repository28 = class {
1056
1086
  // src/modules/integration/patchNotes.ts
1057
1087
  var patchNotes_exports = {};
1058
1088
  __export(patchNotes_exports, {
1059
- default: () => Repository29
1089
+ default: () => Repository30
1060
1090
  });
1061
- var Repository29 = class {
1091
+ var Repository30 = class {
1062
1092
  constructor({ api, route }) {
1063
1093
  this.api = api;
1064
1094
  this.route = route;
@@ -1077,9 +1107,9 @@ var Repository29 = class {
1077
1107
  // src/modules/integration/projectInfo.ts
1078
1108
  var projectInfo_exports = {};
1079
1109
  __export(projectInfo_exports, {
1080
- default: () => Repository30
1110
+ default: () => Repository31
1081
1111
  });
1082
- var Repository30 = class {
1112
+ var Repository31 = class {
1083
1113
  constructor({ api, route }) {
1084
1114
  this.api = api;
1085
1115
  this.route = route;
@@ -1096,9 +1126,9 @@ var Repository30 = class {
1096
1126
  // src/modules/integration/settings.ts
1097
1127
  var settings_exports = {};
1098
1128
  __export(settings_exports, {
1099
- default: () => Repository31
1129
+ default: () => Repository32
1100
1130
  });
1101
- var Repository31 = class {
1131
+ var Repository32 = class {
1102
1132
  constructor({ api, route }) {
1103
1133
  this.api = api;
1104
1134
  this.route = route;
@@ -1143,9 +1173,9 @@ var Repository31 = class {
1143
1173
  // src/modules/llm/llm.ts
1144
1174
  var llm_exports = {};
1145
1175
  __export(llm_exports, {
1146
- default: () => Repository32
1176
+ default: () => Repository33
1147
1177
  });
1148
- var Repository32 = class {
1178
+ var Repository33 = class {
1149
1179
  constructor({ api, route }) {
1150
1180
  this.api = api;
1151
1181
  this.route = route;
@@ -1209,9 +1239,9 @@ var Repository32 = class {
1209
1239
  // src/modules/print/npc.ts
1210
1240
  var npc_exports = {};
1211
1241
  __export(npc_exports, {
1212
- default: () => Repository33
1242
+ default: () => Repository34
1213
1243
  });
1214
- var Repository33 = class {
1244
+ var Repository34 = class {
1215
1245
  constructor({ api, route }) {
1216
1246
  this.api = api;
1217
1247
  this.route = route;
@@ -1238,9 +1268,9 @@ var Repository33 = class {
1238
1268
  // src/modules/print/printer.ts
1239
1269
  var printer_exports = {};
1240
1270
  __export(printer_exports, {
1241
- default: () => Repository34
1271
+ default: () => Repository35
1242
1272
  });
1243
- var Repository34 = class {
1273
+ var Repository35 = class {
1244
1274
  constructor({ api, route }) {
1245
1275
  this.api = api;
1246
1276
  this.route = route;
@@ -1278,9 +1308,9 @@ var Repository34 = class {
1278
1308
  // src/modules/print/schedulePrintJob.ts
1279
1309
  var schedulePrintJob_exports = {};
1280
1310
  __export(schedulePrintJob_exports, {
1281
- default: () => Repository35
1311
+ default: () => Repository36
1282
1312
  });
1283
- var Repository35 = class {
1313
+ var Repository36 = class {
1284
1314
  constructor({ api, route }) {
1285
1315
  this.api = api;
1286
1316
  this.route = route;
@@ -1313,9 +1343,9 @@ var Repository35 = class {
1313
1343
  // src/modules/sms/allowedDevice.ts
1314
1344
  var allowedDevice_exports = {};
1315
1345
  __export(allowedDevice_exports, {
1316
- default: () => Repository36
1346
+ default: () => Repository37
1317
1347
  });
1318
- var Repository36 = class {
1348
+ var Repository37 = class {
1319
1349
  constructor({ api, route }) {
1320
1350
  this.api = api;
1321
1351
  this.route = route;
@@ -1356,9 +1386,9 @@ var Repository36 = class {
1356
1386
  // src/modules/sms/smsSender.ts
1357
1387
  var smsSender_exports = {};
1358
1388
  __export(smsSender_exports, {
1359
- default: () => Repository37
1389
+ default: () => Repository38
1360
1390
  });
1361
- var Repository37 = class {
1391
+ var Repository38 = class {
1362
1392
  constructor({ api, route }) {
1363
1393
  this.api = api;
1364
1394
  this.route = route;
@@ -1389,9 +1419,9 @@ var Repository37 = class {
1389
1419
  // src/modules/sms/smsTemplate.ts
1390
1420
  var smsTemplate_exports = {};
1391
1421
  __export(smsTemplate_exports, {
1392
- default: () => Repository38
1422
+ default: () => Repository39
1393
1423
  });
1394
- var Repository38 = class {
1424
+ var Repository39 = class {
1395
1425
  constructor({ api, route }) {
1396
1426
  this.api = api;
1397
1427
  this.route = route;
@@ -1429,9 +1459,9 @@ var Repository38 = class {
1429
1459
  // src/modules/stock/accountCode.ts
1430
1460
  var accountCode_exports = {};
1431
1461
  __export(accountCode_exports, {
1432
- default: () => Repository39
1462
+ default: () => Repository40
1433
1463
  });
1434
- var Repository39 = class {
1464
+ var Repository40 = class {
1435
1465
  constructor({ api, route }) {
1436
1466
  this.api = api;
1437
1467
  this.route = route;
@@ -1447,7 +1477,7 @@ var Repository39 = class {
1447
1477
  };
1448
1478
 
1449
1479
  // src/modules/stock/chat.ts
1450
- var Repository40 = class {
1480
+ var Repository41 = class {
1451
1481
  constructor({ api, route }) {
1452
1482
  this.api = api;
1453
1483
  this.route = route;
@@ -1502,9 +1532,9 @@ var Repository40 = class {
1502
1532
  // src/modules/stock/chatRapidMessage.ts
1503
1533
  var chatRapidMessage_exports = {};
1504
1534
  __export(chatRapidMessage_exports, {
1505
- default: () => Repository41
1535
+ default: () => Repository42
1506
1536
  });
1507
- var Repository41 = class {
1537
+ var Repository42 = class {
1508
1538
  constructor({ api, route }) {
1509
1539
  this.api = api;
1510
1540
  this.route = route;
@@ -1537,9 +1567,9 @@ var Repository41 = class {
1537
1567
  // src/modules/stock/dashboard.ts
1538
1568
  var dashboard_exports = {};
1539
1569
  __export(dashboard_exports, {
1540
- default: () => Repository42
1570
+ default: () => Repository43
1541
1571
  });
1542
- var Repository42 = class {
1572
+ var Repository43 = class {
1543
1573
  constructor({ api, route }) {
1544
1574
  this.api = api;
1545
1575
  this.route = route;
@@ -1567,9 +1597,9 @@ var Repository42 = class {
1567
1597
  // src/modules/stock/emailAccount.ts
1568
1598
  var emailAccount_exports = {};
1569
1599
  __export(emailAccount_exports, {
1570
- default: () => Repository43
1600
+ default: () => Repository44
1571
1601
  });
1572
- var Repository43 = class {
1602
+ var Repository44 = class {
1573
1603
  constructor({ api, route }) {
1574
1604
  this.api = api;
1575
1605
  this.route = route;
@@ -1618,9 +1648,9 @@ var Repository43 = class {
1618
1648
  // src/modules/stock/file.ts
1619
1649
  var file_exports = {};
1620
1650
  __export(file_exports, {
1621
- default: () => Repository44
1651
+ default: () => Repository45
1622
1652
  });
1623
- var Repository44 = class {
1653
+ var Repository45 = class {
1624
1654
  constructor({ api, route }) {
1625
1655
  this.api = api;
1626
1656
  this.route = route;
@@ -1655,9 +1685,9 @@ var Repository44 = class {
1655
1685
  // src/modules/stock/gmails.ts
1656
1686
  var gmails_exports = {};
1657
1687
  __export(gmails_exports, {
1658
- default: () => Repository45
1688
+ default: () => Repository46
1659
1689
  });
1660
- var Repository45 = class {
1690
+ var Repository46 = class {
1661
1691
  constructor({ api, route }) {
1662
1692
  this.api = api;
1663
1693
  this.route = route;
@@ -1677,9 +1707,9 @@ var Repository45 = class {
1677
1707
  // src/modules/stock/googleCalendar.ts
1678
1708
  var googleCalendar_exports = {};
1679
1709
  __export(googleCalendar_exports, {
1680
- default: () => Repository46
1710
+ default: () => Repository47
1681
1711
  });
1682
- var Repository46 = class {
1712
+ var Repository47 = class {
1683
1713
  constructor({ api, route }) {
1684
1714
  this.api = api;
1685
1715
  this.route = route;
@@ -1699,9 +1729,9 @@ var Repository46 = class {
1699
1729
  // src/modules/stock/location.ts
1700
1730
  var location_exports = {};
1701
1731
  __export(location_exports, {
1702
- default: () => Repository47
1732
+ default: () => Repository48
1703
1733
  });
1704
- var Repository47 = class {
1734
+ var Repository48 = class {
1705
1735
  constructor({ api, route }) {
1706
1736
  this.api = api;
1707
1737
  this.route = route;
@@ -1763,9 +1793,9 @@ var Repository47 = class {
1763
1793
  // src/modules/stock/prison.ts
1764
1794
  var prison_exports = {};
1765
1795
  __export(prison_exports, {
1766
- default: () => Repository48
1796
+ default: () => Repository49
1767
1797
  });
1768
- var Repository48 = class {
1798
+ var Repository49 = class {
1769
1799
  constructor({ api, route }) {
1770
1800
  this.api = api;
1771
1801
  this.route = route;
@@ -1803,9 +1833,9 @@ var Repository48 = class {
1803
1833
  // src/modules/stock/productGoogleSheets.ts
1804
1834
  var productGoogleSheets_exports = {};
1805
1835
  __export(productGoogleSheets_exports, {
1806
- default: () => Repository49
1836
+ default: () => Repository50
1807
1837
  });
1808
- var Repository49 = class {
1838
+ var Repository50 = class {
1809
1839
  constructor({ api, route }) {
1810
1840
  this.api = api;
1811
1841
  this.route = route;
@@ -1940,9 +1970,9 @@ var Repository49 = class {
1940
1970
  // src/modules/stock/productImage.ts
1941
1971
  var productImage_exports = {};
1942
1972
  __export(productImage_exports, {
1943
- default: () => Repository50
1973
+ default: () => Repository51
1944
1974
  });
1945
- var Repository50 = class {
1975
+ var Repository51 = class {
1946
1976
  constructor({ api, route }) {
1947
1977
  this.api = api;
1948
1978
  this.route = route;
@@ -1998,9 +2028,9 @@ var Repository50 = class {
1998
2028
  // src/modules/stock/productLocation.ts
1999
2029
  var productLocation_exports = {};
2000
2030
  __export(productLocation_exports, {
2001
- default: () => Repository51
2031
+ default: () => Repository52
2002
2032
  });
2003
- var Repository51 = class {
2033
+ var Repository52 = class {
2004
2034
  constructor({ api, route }) {
2005
2035
  this.api = api;
2006
2036
  this.route = route;
@@ -2014,9 +2044,9 @@ var Repository51 = class {
2014
2044
  // src/modules/stock/promotion.ts
2015
2045
  var promotion_exports = {};
2016
2046
  __export(promotion_exports, {
2017
- default: () => Repository52
2047
+ default: () => Repository53
2018
2048
  });
2019
- var Repository52 = class {
2049
+ var Repository53 = class {
2020
2050
  constructor({ api, route }) {
2021
2051
  this.api = api;
2022
2052
  this.route = route;
@@ -2090,9 +2120,9 @@ var Repository52 = class {
2090
2120
  // src/modules/stock/promotionAssoc.ts
2091
2121
  var promotionAssoc_exports = {};
2092
2122
  __export(promotionAssoc_exports, {
2093
- default: () => Repository53
2123
+ default: () => Repository54
2094
2124
  });
2095
- var Repository53 = class {
2125
+ var Repository54 = class {
2096
2126
  constructor({ api, route }) {
2097
2127
  this.api = api;
2098
2128
  this.route = route;
@@ -2142,9 +2172,9 @@ var Repository53 = class {
2142
2172
  // src/modules/stock/queryList.ts
2143
2173
  var queryList_exports = {};
2144
2174
  __export(queryList_exports, {
2145
- default: () => Repository54
2175
+ default: () => Repository55
2146
2176
  });
2147
- var Repository54 = class {
2177
+ var Repository55 = class {
2148
2178
  constructor({ api, route }) {
2149
2179
  this.api = api;
2150
2180
  this.route = route;
@@ -2209,9 +2239,9 @@ var Repository54 = class {
2209
2239
  // src/modules/stock/queryParameter.ts
2210
2240
  var queryParameter_exports = {};
2211
2241
  __export(queryParameter_exports, {
2212
- default: () => Repository55
2242
+ default: () => Repository56
2213
2243
  });
2214
- var Repository55 = class {
2244
+ var Repository56 = class {
2215
2245
  constructor({ api, route }) {
2216
2246
  this.api = api;
2217
2247
  this.route = route;
@@ -2254,9 +2284,9 @@ var Repository55 = class {
2254
2284
  // src/modules/stock/recurrentTasks.ts
2255
2285
  var recurrentTasks_exports = {};
2256
2286
  __export(recurrentTasks_exports, {
2257
- default: () => Repository56
2287
+ default: () => Repository57
2258
2288
  });
2259
- var Repository56 = class {
2289
+ var Repository57 = class {
2260
2290
  constructor({ api, route }) {
2261
2291
  this.api = api;
2262
2292
  this.route = route;
@@ -2274,9 +2304,9 @@ var Repository56 = class {
2274
2304
  // src/modules/stock/returnReason.ts
2275
2305
  var returnReason_exports = {};
2276
2306
  __export(returnReason_exports, {
2277
- default: () => Repository57
2307
+ default: () => Repository58
2278
2308
  });
2279
- var Repository57 = class {
2309
+ var Repository58 = class {
2280
2310
  constructor({ api, route }) {
2281
2311
  this.api = api;
2282
2312
  this.route = route;
@@ -2312,9 +2342,9 @@ var Repository57 = class {
2312
2342
  // src/modules/stock/savedEmPicking.ts
2313
2343
  var savedEmPicking_exports = {};
2314
2344
  __export(savedEmPicking_exports, {
2315
- default: () => Repository58
2345
+ default: () => Repository59
2316
2346
  });
2317
- var Repository58 = class {
2347
+ var Repository59 = class {
2318
2348
  constructor({ api, route }) {
2319
2349
  this.api = api;
2320
2350
  this.route = route;
@@ -2338,9 +2368,9 @@ var Repository58 = class {
2338
2368
  // src/modules/stock/savedProviderProposal.ts
2339
2369
  var savedProviderProposal_exports = {};
2340
2370
  __export(savedProviderProposal_exports, {
2341
- default: () => Repository59
2371
+ default: () => Repository60
2342
2372
  });
2343
- var Repository59 = class {
2373
+ var Repository60 = class {
2344
2374
  constructor({ api, route }) {
2345
2375
  this.api = api;
2346
2376
  this.route = route;
@@ -2357,9 +2387,9 @@ var Repository59 = class {
2357
2387
  // src/modules/stock/schedule.ts
2358
2388
  var schedule_exports = {};
2359
2389
  __export(schedule_exports, {
2360
- default: () => Repository60
2390
+ default: () => Repository61
2361
2391
  });
2362
- var Repository60 = class {
2392
+ var Repository61 = class {
2363
2393
  constructor({ api, route }) {
2364
2394
  this.api = api;
2365
2395
  this.route = route;
@@ -2372,9 +2402,9 @@ var Repository60 = class {
2372
2402
  // src/modules/stock/stockMovement.ts
2373
2403
  var stockMovement_exports = {};
2374
2404
  __export(stockMovement_exports, {
2375
- default: () => Repository61
2405
+ default: () => Repository62
2376
2406
  });
2377
- var Repository61 = class {
2407
+ var Repository62 = class {
2378
2408
  constructor({ api, route }) {
2379
2409
  this.api = api;
2380
2410
  this.route = route;
@@ -2415,9 +2445,9 @@ var Repository61 = class {
2415
2445
  // src/modules/stock/tag.ts
2416
2446
  var tag_exports = {};
2417
2447
  __export(tag_exports, {
2418
- default: () => Repository62
2448
+ default: () => Repository63
2419
2449
  });
2420
- var Repository62 = class {
2450
+ var Repository63 = class {
2421
2451
  constructor({ api, route }) {
2422
2452
  this.api = api;
2423
2453
  this.route = route;
@@ -2442,9 +2472,9 @@ var Repository62 = class {
2442
2472
  // src/modules/stock/task.ts
2443
2473
  var task_exports = {};
2444
2474
  __export(task_exports, {
2445
- default: () => Repository63
2475
+ default: () => Repository64
2446
2476
  });
2447
- var Repository63 = class {
2477
+ var Repository64 = class {
2448
2478
  constructor({ api, route }) {
2449
2479
  this.api = api;
2450
2480
  this.route = route;
@@ -2495,9 +2525,9 @@ var Repository63 = class {
2495
2525
  // src/modules/stock/taskMessage.ts
2496
2526
  var taskMessage_exports = {};
2497
2527
  __export(taskMessage_exports, {
2498
- default: () => Repository64
2528
+ default: () => Repository65
2499
2529
  });
2500
- var Repository64 = class {
2530
+ var Repository65 = class {
2501
2531
  constructor({ api, route }) {
2502
2532
  this.api = api;
2503
2533
  this.route = route;
@@ -2520,9 +2550,9 @@ var Repository64 = class {
2520
2550
  // src/modules/stock/taskRead.ts
2521
2551
  var taskRead_exports = {};
2522
2552
  __export(taskRead_exports, {
2523
- default: () => Repository65
2553
+ default: () => Repository66
2524
2554
  });
2525
- var Repository65 = class {
2555
+ var Repository66 = class {
2526
2556
  constructor({ api, route }) {
2527
2557
  this.api = api;
2528
2558
  this.route = route;
@@ -2538,9 +2568,9 @@ var Repository65 = class {
2538
2568
  // src/modules/stock/typeOfLocation.ts
2539
2569
  var typeOfLocation_exports = {};
2540
2570
  __export(typeOfLocation_exports, {
2541
- default: () => Repository66
2571
+ default: () => Repository67
2542
2572
  });
2543
- var Repository66 = class {
2573
+ var Repository67 = class {
2544
2574
  constructor({ api, route }) {
2545
2575
  this.api = api;
2546
2576
  this.route = route;
@@ -2596,9 +2626,9 @@ var Repository66 = class {
2596
2626
  // src/modules/stock/unitOfMeasure.ts
2597
2627
  var unitOfMeasure_exports = {};
2598
2628
  __export(unitOfMeasure_exports, {
2599
- default: () => Repository67
2629
+ default: () => Repository68
2600
2630
  });
2601
- var Repository67 = class {
2631
+ var Repository68 = class {
2602
2632
  constructor({ api, route }) {
2603
2633
  this.api = api;
2604
2634
  this.route = route;
@@ -2660,9 +2690,9 @@ var Repository67 = class {
2660
2690
  // src/modules/stock/vatTax.ts
2661
2691
  var vatTax_exports = {};
2662
2692
  __export(vatTax_exports, {
2663
- default: () => Repository68
2693
+ default: () => Repository69
2664
2694
  });
2665
- var Repository68 = class {
2695
+ var Repository69 = class {
2666
2696
  constructor({ api, route }) {
2667
2697
  this.api = api;
2668
2698
  this.route = route;
@@ -2724,9 +2754,9 @@ var Repository68 = class {
2724
2754
  // src/modules/stock/vatTaxZone.ts
2725
2755
  var vatTaxZone_exports = {};
2726
2756
  __export(vatTaxZone_exports, {
2727
- default: () => Repository69
2757
+ default: () => Repository70
2728
2758
  });
2729
- var Repository69 = class {
2759
+ var Repository70 = class {
2730
2760
  constructor({ api, route }) {
2731
2761
  this.api = api;
2732
2762
  this.route = route;
@@ -2785,9 +2815,9 @@ var Repository69 = class {
2785
2815
  // src/modules/supply/currentAccount.ts
2786
2816
  var currentAccount_exports = {};
2787
2817
  __export(currentAccount_exports, {
2788
- default: () => Repository70
2818
+ default: () => Repository71
2789
2819
  });
2790
- var Repository70 = class {
2820
+ var Repository71 = class {
2791
2821
  constructor({ api, route }) {
2792
2822
  this.api = api;
2793
2823
  this.route = route;
@@ -2848,9 +2878,9 @@ var Repository70 = class {
2848
2878
  // src/modules/supply/documentHeader.ts
2849
2879
  var documentHeader_exports = {};
2850
2880
  __export(documentHeader_exports, {
2851
- default: () => Repository71
2881
+ default: () => Repository72
2852
2882
  });
2853
- var Repository71 = class {
2883
+ var Repository72 = class {
2854
2884
  constructor({ api, route }) {
2855
2885
  this.api = api;
2856
2886
  this.route = route;
@@ -2963,9 +2993,9 @@ var Repository71 = class {
2963
2993
  // src/modules/supply/documentHeaderHistory.ts
2964
2994
  var documentHeaderHistory_exports = {};
2965
2995
  __export(documentHeaderHistory_exports, {
2966
- default: () => Repository72
2996
+ default: () => Repository73
2967
2997
  });
2968
- var Repository72 = class {
2998
+ var Repository73 = class {
2969
2999
  constructor({ api, route }) {
2970
3000
  this.api = api;
2971
3001
  this.route = route;
@@ -2979,9 +3009,9 @@ var Repository72 = class {
2979
3009
  // src/modules/supply/documentHeaderSubscriber.ts
2980
3010
  var documentHeaderSubscriber_exports = {};
2981
3011
  __export(documentHeaderSubscriber_exports, {
2982
- default: () => Repository73
3012
+ default: () => Repository74
2983
3013
  });
2984
- var Repository73 = class {
3014
+ var Repository74 = class {
2985
3015
  constructor({ api, route }) {
2986
3016
  this.api = api;
2987
3017
  this.route = route;
@@ -3003,9 +3033,9 @@ var Repository73 = class {
3003
3033
  // src/modules/supply/documentHeaderSurvey.ts
3004
3034
  var documentHeaderSurvey_exports = {};
3005
3035
  __export(documentHeaderSurvey_exports, {
3006
- default: () => Repository74
3036
+ default: () => Repository75
3007
3037
  });
3008
- var Repository74 = class {
3038
+ var Repository75 = class {
3009
3039
  constructor({ api, route }) {
3010
3040
  this.api = api;
3011
3041
  this.route = route;
@@ -3025,9 +3055,9 @@ var Repository74 = class {
3025
3055
  // src/modules/supply/documentLine.ts
3026
3056
  var documentLine_exports = {};
3027
3057
  __export(documentLine_exports, {
3028
- default: () => Repository75
3058
+ default: () => Repository76
3029
3059
  });
3030
- var Repository75 = class {
3060
+ var Repository76 = class {
3031
3061
  constructor({ api, route }) {
3032
3062
  this.api = api;
3033
3063
  this.route = route;
@@ -3073,9 +3103,9 @@ var Repository75 = class {
3073
3103
  // src/modules/supply/documentLineAssoc.ts
3074
3104
  var documentLineAssoc_exports = {};
3075
3105
  __export(documentLineAssoc_exports, {
3076
- default: () => Repository76
3106
+ default: () => Repository77
3077
3107
  });
3078
- var Repository76 = class {
3108
+ var Repository77 = class {
3079
3109
  constructor({ api, route }) {
3080
3110
  this.api = api;
3081
3111
  this.route = route;
@@ -3104,9 +3134,9 @@ var Repository76 = class {
3104
3134
  // src/modules/supply/documentLineMt.ts
3105
3135
  var documentLineMt_exports = {};
3106
3136
  __export(documentLineMt_exports, {
3107
- default: () => Repository77
3137
+ default: () => Repository78
3108
3138
  });
3109
- var Repository77 = class {
3139
+ var Repository78 = class {
3110
3140
  constructor({ api, route }) {
3111
3141
  this.api = api;
3112
3142
  this.route = route;
@@ -3127,9 +3157,9 @@ var Repository77 = class {
3127
3157
  // src/modules/supply/documentLineNote.ts
3128
3158
  var documentLineNote_exports = {};
3129
3159
  __export(documentLineNote_exports, {
3130
- default: () => Repository78
3160
+ default: () => Repository79
3131
3161
  });
3132
- var Repository78 = class {
3162
+ var Repository79 = class {
3133
3163
  constructor({ api, route }) {
3134
3164
  this.api = api;
3135
3165
  this.route = route;
@@ -3142,9 +3172,9 @@ var Repository78 = class {
3142
3172
  // src/modules/supply/documentLineRm.ts
3143
3173
  var documentLineRm_exports = {};
3144
3174
  __export(documentLineRm_exports, {
3145
- default: () => Repository79
3175
+ default: () => Repository80
3146
3176
  });
3147
- var Repository79 = class {
3177
+ var Repository80 = class {
3148
3178
  constructor({ api, route }) {
3149
3179
  this.api = api;
3150
3180
  this.route = route;
@@ -3165,9 +3195,9 @@ var Repository79 = class {
3165
3195
  // src/modules/supply/documentSet.ts
3166
3196
  var documentSet_exports = {};
3167
3197
  __export(documentSet_exports, {
3168
- default: () => Repository80
3198
+ default: () => Repository81
3169
3199
  });
3170
- var Repository80 = class {
3200
+ var Repository81 = class {
3171
3201
  constructor({ api, route }) {
3172
3202
  this.api = api;
3173
3203
  this.route = route;
@@ -3213,9 +3243,9 @@ var Repository80 = class {
3213
3243
  // src/modules/supply/documentType.ts
3214
3244
  var documentType_exports = {};
3215
3245
  __export(documentType_exports, {
3216
- default: () => Repository81
3246
+ default: () => Repository82
3217
3247
  });
3218
- var Repository81 = class {
3248
+ var Repository82 = class {
3219
3249
  constructor({ api, route }) {
3220
3250
  this.api = api;
3221
3251
  this.route = route;
@@ -3260,9 +3290,9 @@ var Repository81 = class {
3260
3290
  // src/modules/supply/externalDocumentHeader.ts
3261
3291
  var externalDocumentHeader_exports = {};
3262
3292
  __export(externalDocumentHeader_exports, {
3263
- default: () => Repository82
3293
+ default: () => Repository83
3264
3294
  });
3265
- var Repository82 = class {
3295
+ var Repository83 = class {
3266
3296
  constructor({ api, route }) {
3267
3297
  this.api = api;
3268
3298
  this.route = route;
@@ -3302,9 +3332,9 @@ var Repository82 = class {
3302
3332
  // src/modules/supply/externalDocumentType.ts
3303
3333
  var externalDocumentType_exports = {};
3304
3334
  __export(externalDocumentType_exports, {
3305
- default: () => Repository83
3335
+ default: () => Repository84
3306
3336
  });
3307
- var Repository83 = class {
3337
+ var Repository84 = class {
3308
3338
  constructor({ api, route }) {
3309
3339
  this.api = api;
3310
3340
  this.route = route;
@@ -3324,9 +3354,9 @@ var Repository83 = class {
3324
3354
  // src/modules/supply/googleSheetPool.ts
3325
3355
  var googleSheetPool_exports = {};
3326
3356
  __export(googleSheetPool_exports, {
3327
- default: () => Repository84
3357
+ default: () => Repository85
3328
3358
  });
3329
- var Repository84 = class {
3359
+ var Repository85 = class {
3330
3360
  constructor({ api, route }) {
3331
3361
  this.api = api;
3332
3362
  this.route = route;
@@ -3339,9 +3369,9 @@ var Repository84 = class {
3339
3369
  // src/modules/supply/orderManagement.ts
3340
3370
  var orderManagement_exports = {};
3341
3371
  __export(orderManagement_exports, {
3342
- default: () => Repository85
3372
+ default: () => Repository86
3343
3373
  });
3344
- var Repository85 = class {
3374
+ var Repository86 = class {
3345
3375
  constructor({ api, route }) {
3346
3376
  this.api = api;
3347
3377
  this.route = route;
@@ -3361,9 +3391,9 @@ var Repository85 = class {
3361
3391
  // src/modules/supply/payment.ts
3362
3392
  var payment_exports = {};
3363
3393
  __export(payment_exports, {
3364
- default: () => Repository86
3394
+ default: () => Repository87
3365
3395
  });
3366
- var Repository86 = class {
3396
+ var Repository87 = class {
3367
3397
  constructor({ api, route }) {
3368
3398
  this.api = api;
3369
3399
  this.route = route;
@@ -3415,9 +3445,9 @@ var Repository86 = class {
3415
3445
  // src/modules/supply/paymentBatch.ts
3416
3446
  var paymentBatch_exports = {};
3417
3447
  __export(paymentBatch_exports, {
3418
- default: () => Repository87
3448
+ default: () => Repository88
3419
3449
  });
3420
- var Repository87 = class {
3450
+ var Repository88 = class {
3421
3451
  constructor({ api, route }) {
3422
3452
  this.api = api;
3423
3453
  this.route = route;
@@ -3462,9 +3492,9 @@ var Repository87 = class {
3462
3492
  // src/modules/supply/preSale.ts
3463
3493
  var preSale_exports = {};
3464
3494
  __export(preSale_exports, {
3465
- default: () => Repository88
3495
+ default: () => Repository89
3466
3496
  });
3467
- var Repository88 = class {
3497
+ var Repository89 = class {
3468
3498
  constructor({ api, route }) {
3469
3499
  this.api = api;
3470
3500
  this.route = route;
@@ -3517,9 +3547,9 @@ var Repository88 = class {
3517
3547
  // src/modules/supply/preSaleProduct.ts
3518
3548
  var preSaleProduct_exports = {};
3519
3549
  __export(preSaleProduct_exports, {
3520
- default: () => Repository89
3550
+ default: () => Repository90
3521
3551
  });
3522
- var Repository89 = class {
3552
+ var Repository90 = class {
3523
3553
  constructor({ api, route }) {
3524
3554
  this.api = api;
3525
3555
  this.route = route;
@@ -3539,9 +3569,9 @@ var Repository89 = class {
3539
3569
  // src/modules/supply/saft.ts
3540
3570
  var saft_exports = {};
3541
3571
  __export(saft_exports, {
3542
- default: () => Repository90
3572
+ default: () => Repository91
3543
3573
  });
3544
- var Repository90 = class {
3574
+ var Repository91 = class {
3545
3575
  constructor({ route }) {
3546
3576
  this.route = route;
3547
3577
  }
@@ -3557,9 +3587,9 @@ var Repository90 = class {
3557
3587
  // src/modules/supply/startDocumentHeaderLastUpdate.ts
3558
3588
  var startDocumentHeaderLastUpdate_exports = {};
3559
3589
  __export(startDocumentHeaderLastUpdate_exports, {
3560
- default: () => Repository91
3590
+ default: () => Repository92
3561
3591
  });
3562
- var Repository91 = class {
3592
+ var Repository92 = class {
3563
3593
  constructor({ api, route }) {
3564
3594
  this.api = api;
3565
3595
  this.route = route;
@@ -3575,9 +3605,9 @@ var Repository91 = class {
3575
3605
  // src/modules/supply/vatValidation.ts
3576
3606
  var vatValidation_exports = {};
3577
3607
  __export(vatValidation_exports, {
3578
- default: () => Repository92
3608
+ default: () => Repository93
3579
3609
  });
3580
- var Repository92 = class {
3610
+ var Repository93 = class {
3581
3611
  constructor({ api, route }) {
3582
3612
  this.api = api;
3583
3613
  this.route = route;
@@ -3598,9 +3628,9 @@ var Repository92 = class {
3598
3628
  // src/modules/supply/workflow.ts
3599
3629
  var workflow_exports = {};
3600
3630
  __export(workflow_exports, {
3601
- default: () => Repository93
3631
+ default: () => Repository94
3602
3632
  });
3603
- var Repository93 = class {
3633
+ var Repository94 = class {
3604
3634
  constructor({ api, route }) {
3605
3635
  this.api = api;
3606
3636
  this.route = route;
@@ -3638,9 +3668,9 @@ var Repository93 = class {
3638
3668
  // src/modules/tickets/channel.ts
3639
3669
  var channel_exports = {};
3640
3670
  __export(channel_exports, {
3641
- default: () => Repository94
3671
+ default: () => Repository95
3642
3672
  });
3643
- var Repository94 = class {
3673
+ var Repository95 = class {
3644
3674
  constructor({ api, route }) {
3645
3675
  this.api = api;
3646
3676
  this.route = route;
@@ -3688,9 +3718,9 @@ var Repository94 = class {
3688
3718
  // src/modules/tickets/clt.ts
3689
3719
  var clt_exports = {};
3690
3720
  __export(clt_exports, {
3691
- default: () => Repository95
3721
+ default: () => Repository96
3692
3722
  });
3693
- var Repository95 = class {
3723
+ var Repository96 = class {
3694
3724
  constructor({ api, route }) {
3695
3725
  this.api = api;
3696
3726
  this.route = route;
@@ -3736,9 +3766,9 @@ var Repository95 = class {
3736
3766
  // src/modules/tickets/language.ts
3737
3767
  var language_exports = {};
3738
3768
  __export(language_exports, {
3739
- default: () => Repository96
3769
+ default: () => Repository97
3740
3770
  });
3741
- var Repository96 = class {
3771
+ var Repository97 = class {
3742
3772
  constructor({ api, route }) {
3743
3773
  this.api = api;
3744
3774
  this.route = route;
@@ -3786,9 +3816,9 @@ var Repository96 = class {
3786
3816
  // src/modules/tickets/tickets.ts
3787
3817
  var tickets_exports = {};
3788
3818
  __export(tickets_exports, {
3789
- default: () => Repository97
3819
+ default: () => Repository98
3790
3820
  });
3791
- var Repository97 = class {
3821
+ var Repository98 = class {
3792
3822
  constructor({ api, route }) {
3793
3823
  this.api = api;
3794
3824
  this.route = route;
@@ -3824,9 +3854,9 @@ var Repository97 = class {
3824
3854
  // src/modules/ui/portal.ts
3825
3855
  var portal_exports = {};
3826
3856
  __export(portal_exports, {
3827
- default: () => Repository98
3857
+ default: () => Repository99
3828
3858
  });
3829
- var Repository98 = class {
3859
+ var Repository99 = class {
3830
3860
  constructor({ api, route }) {
3831
3861
  this.api = api;
3832
3862
  this.route = route;
@@ -3853,9 +3883,9 @@ var Repository98 = class {
3853
3883
  // src/modules/ui/sideMenu.ts
3854
3884
  var sideMenu_exports = {};
3855
3885
  __export(sideMenu_exports, {
3856
- default: () => Repository99
3886
+ default: () => Repository100
3857
3887
  });
3858
- var Repository99 = class {
3888
+ var Repository100 = class {
3859
3889
  constructor({ api, route }) {
3860
3890
  this.api = api;
3861
3891
  this.route = route;
@@ -3889,9 +3919,9 @@ var Repository99 = class {
3889
3919
  // src/modules/ui/sidemenuHighlight.ts
3890
3920
  var sidemenuHighlight_exports = {};
3891
3921
  __export(sidemenuHighlight_exports, {
3892
- default: () => Repository100
3922
+ default: () => Repository101
3893
3923
  });
3894
- var Repository100 = class {
3924
+ var Repository101 = class {
3895
3925
  constructor({ api, route }) {
3896
3926
  this.api = api;
3897
3927
  this.route = route;
@@ -3914,9 +3944,9 @@ var Repository100 = class {
3914
3944
  // src/modules/user/bankData.ts
3915
3945
  var bankData_exports = {};
3916
3946
  __export(bankData_exports, {
3917
- default: () => Repository101
3947
+ default: () => Repository102
3918
3948
  });
3919
- var Repository101 = class {
3949
+ var Repository102 = class {
3920
3950
  constructor({ api, route }) {
3921
3951
  this.api = api;
3922
3952
  this.route = route;
@@ -3969,9 +3999,9 @@ var Repository101 = class {
3969
3999
  // src/modules/user/chatSubscriber.ts
3970
4000
  var chatSubscriber_exports = {};
3971
4001
  __export(chatSubscriber_exports, {
3972
- default: () => Repository102
4002
+ default: () => Repository103
3973
4003
  });
3974
- var Repository102 = class {
4004
+ var Repository103 = class {
3975
4005
  constructor({ api, route }) {
3976
4006
  this.api = api;
3977
4007
  this.route = route;
@@ -4045,9 +4075,9 @@ var Repository102 = class {
4045
4075
  // src/modules/user/clients.ts
4046
4076
  var clients_exports = {};
4047
4077
  __export(clients_exports, {
4048
- default: () => Repository103
4078
+ default: () => Repository104
4049
4079
  });
4050
- var Repository103 = class {
4080
+ var Repository104 = class {
4051
4081
  constructor({ api, route }) {
4052
4082
  this.api = api;
4053
4083
  this.route = route;
@@ -4115,9 +4145,9 @@ var Repository103 = class {
4115
4145
  // src/modules/user/clientType.ts
4116
4146
  var clientType_exports = {};
4117
4147
  __export(clientType_exports, {
4118
- default: () => Repository104
4148
+ default: () => Repository105
4119
4149
  });
4120
- var Repository104 = class {
4150
+ var Repository105 = class {
4121
4151
  constructor({ api, route }) {
4122
4152
  this.api = api;
4123
4153
  this.route = route;
@@ -4170,9 +4200,9 @@ var Repository104 = class {
4170
4200
  // src/modules/user/commissioner.ts
4171
4201
  var commissioner_exports = {};
4172
4202
  __export(commissioner_exports, {
4173
- default: () => Repository105
4203
+ default: () => Repository106
4174
4204
  });
4175
- var Repository105 = class {
4205
+ var Repository106 = class {
4176
4206
  constructor({ api, route }) {
4177
4207
  this.api = api;
4178
4208
  this.route = route;
@@ -4234,9 +4264,9 @@ var Repository105 = class {
4234
4264
  // src/modules/user/country.ts
4235
4265
  var country_exports = {};
4236
4266
  __export(country_exports, {
4237
- default: () => Repository106
4267
+ default: () => Repository107
4238
4268
  });
4239
- var Repository106 = class {
4269
+ var Repository107 = class {
4240
4270
  constructor({ api, route }) {
4241
4271
  this.api = api;
4242
4272
  this.route = route;
@@ -4298,9 +4328,9 @@ var Repository106 = class {
4298
4328
  // src/modules/user/deliveryMethods.ts
4299
4329
  var deliveryMethods_exports = {};
4300
4330
  __export(deliveryMethods_exports, {
4301
- default: () => Repository107
4331
+ default: () => Repository108
4302
4332
  });
4303
- var Repository107 = class {
4333
+ var Repository108 = class {
4304
4334
  constructor({ api, route }) {
4305
4335
  this.api = api;
4306
4336
  this.route = route;
@@ -4348,9 +4378,9 @@ var Repository107 = class {
4348
4378
  // src/modules/user/favorites.ts
4349
4379
  var favorites_exports = {};
4350
4380
  __export(favorites_exports, {
4351
- default: () => Repository108
4381
+ default: () => Repository109
4352
4382
  });
4353
- var Repository108 = class {
4383
+ var Repository109 = class {
4354
4384
  constructor({ api, route }) {
4355
4385
  this.api = api;
4356
4386
  this.route = route;
@@ -4384,9 +4414,9 @@ var Repository108 = class {
4384
4414
  // src/modules/user/language.ts
4385
4415
  var language_exports2 = {};
4386
4416
  __export(language_exports2, {
4387
- default: () => Repository109
4417
+ default: () => Repository110
4388
4418
  });
4389
- var Repository109 = class {
4419
+ var Repository110 = class {
4390
4420
  constructor({ api, route }) {
4391
4421
  this.api = api;
4392
4422
  this.route = route;
@@ -4442,9 +4472,9 @@ var Repository109 = class {
4442
4472
  // src/modules/user/maturityDates.ts
4443
4473
  var maturityDates_exports = {};
4444
4474
  __export(maturityDates_exports, {
4445
- default: () => Repository110
4475
+ default: () => Repository111
4446
4476
  });
4447
- var Repository110 = class {
4477
+ var Repository111 = class {
4448
4478
  constructor({ api, route }) {
4449
4479
  this.api = api;
4450
4480
  this.route = route;
@@ -4492,9 +4522,9 @@ var Repository110 = class {
4492
4522
  // src/modules/user/password.ts
4493
4523
  var password_exports = {};
4494
4524
  __export(password_exports, {
4495
- default: () => Repository111
4525
+ default: () => Repository112
4496
4526
  });
4497
- var Repository111 = class {
4527
+ var Repository112 = class {
4498
4528
  constructor({ api, route }) {
4499
4529
  this.api = api;
4500
4530
  this.route = route;
@@ -4517,9 +4547,9 @@ var Repository111 = class {
4517
4547
  // src/modules/user/paymentMethods.ts
4518
4548
  var paymentMethods_exports = {};
4519
4549
  __export(paymentMethods_exports, {
4520
- default: () => Repository112
4550
+ default: () => Repository113
4521
4551
  });
4522
- var Repository112 = class {
4552
+ var Repository113 = class {
4523
4553
  constructor({ api, route }) {
4524
4554
  this.api = api;
4525
4555
  this.route = route;
@@ -4567,9 +4597,9 @@ var Repository112 = class {
4567
4597
  // src/modules/user/persona.ts
4568
4598
  var persona_exports = {};
4569
4599
  __export(persona_exports, {
4570
- default: () => Repository113
4600
+ default: () => Repository114
4571
4601
  });
4572
- var Repository113 = class {
4602
+ var Repository114 = class {
4573
4603
  constructor({ api, route }) {
4574
4604
  this.api = api;
4575
4605
  this.route = route;
@@ -4647,9 +4677,9 @@ var Repository113 = class {
4647
4677
  // src/modules/user/provider.ts
4648
4678
  var provider_exports = {};
4649
4679
  __export(provider_exports, {
4650
- default: () => Repository114
4680
+ default: () => Repository115
4651
4681
  });
4652
- var Repository114 = class {
4682
+ var Repository115 = class {
4653
4683
  constructor({ api, route }) {
4654
4684
  this.api = api;
4655
4685
  this.route = route;
@@ -4726,9 +4756,9 @@ var Repository114 = class {
4726
4756
  // src/modules/user/providerType.ts
4727
4757
  var providerType_exports = {};
4728
4758
  __export(providerType_exports, {
4729
- default: () => Repository115
4759
+ default: () => Repository116
4730
4760
  });
4731
- var Repository115 = class {
4761
+ var Repository116 = class {
4732
4762
  constructor({ api, route }) {
4733
4763
  this.api = api;
4734
4764
  this.route = route;
@@ -4784,9 +4814,9 @@ var Repository115 = class {
4784
4814
  // src/modules/user/purchaseCondition.ts
4785
4815
  var purchaseCondition_exports = {};
4786
4816
  __export(purchaseCondition_exports, {
4787
- default: () => Repository116
4817
+ default: () => Repository117
4788
4818
  });
4789
- var Repository116 = class {
4819
+ var Repository117 = class {
4790
4820
  constructor({ api, route }) {
4791
4821
  this.api = api;
4792
4822
  this.route = route;
@@ -4842,9 +4872,9 @@ var Repository116 = class {
4842
4872
  // src/modules/user/reasonForExemption.ts
4843
4873
  var reasonForExemption_exports = {};
4844
4874
  __export(reasonForExemption_exports, {
4845
- default: () => Repository117
4875
+ default: () => Repository118
4846
4876
  });
4847
- var Repository117 = class {
4877
+ var Repository118 = class {
4848
4878
  constructor({ api, route }) {
4849
4879
  this.api = api;
4850
4880
  this.route = route;
@@ -4894,9 +4924,9 @@ var Repository117 = class {
4894
4924
  // src/modules/user/refreshToken.ts
4895
4925
  var refreshToken_exports = {};
4896
4926
  __export(refreshToken_exports, {
4897
- default: () => Repository118
4927
+ default: () => Repository119
4898
4928
  });
4899
- var Repository118 = class {
4929
+ var Repository119 = class {
4900
4930
  constructor({ api, route }) {
4901
4931
  this.api = api;
4902
4932
  this.route = route;
@@ -4913,9 +4943,9 @@ var Repository118 = class {
4913
4943
  // src/modules/user/segmentsArea.ts
4914
4944
  var segmentsArea_exports = {};
4915
4945
  __export(segmentsArea_exports, {
4916
- default: () => Repository119
4946
+ default: () => Repository120
4917
4947
  });
4918
- var Repository119 = class {
4948
+ var Repository120 = class {
4919
4949
  constructor({ api, route }) {
4920
4950
  this.api = api;
4921
4951
  this.route = route;
@@ -4968,9 +4998,9 @@ var Repository119 = class {
4968
4998
  // src/modules/user/sessions.ts
4969
4999
  var sessions_exports = {};
4970
5000
  __export(sessions_exports, {
4971
- default: () => Repository120
5001
+ default: () => Repository121
4972
5002
  });
4973
- var Repository120 = class {
5003
+ var Repository121 = class {
4974
5004
  constructor({ api, route }) {
4975
5005
  this.api = api;
4976
5006
  this.route = route;
@@ -4990,9 +5020,9 @@ var Repository120 = class {
4990
5020
  // src/modules/user/shippings.ts
4991
5021
  var shippings_exports = {};
4992
5022
  __export(shippings_exports, {
4993
- default: () => Repository121
5023
+ default: () => Repository122
4994
5024
  });
4995
- var Repository121 = class {
5025
+ var Repository122 = class {
4996
5026
  constructor({ api, route }) {
4997
5027
  this.api = api;
4998
5028
  this.route = route;
@@ -5048,9 +5078,9 @@ var Repository121 = class {
5048
5078
  // src/modules/user/storeOperator.ts
5049
5079
  var storeOperator_exports = {};
5050
5080
  __export(storeOperator_exports, {
5051
- default: () => Repository122
5081
+ default: () => Repository123
5052
5082
  });
5053
- var Repository122 = class {
5083
+ var Repository123 = class {
5054
5084
  constructor({ api, route }) {
5055
5085
  this.api = api;
5056
5086
  this.route = route;
@@ -5092,9 +5122,9 @@ var Repository122 = class {
5092
5122
  // src/modules/user/swift.ts
5093
5123
  var swift_exports = {};
5094
5124
  __export(swift_exports, {
5095
- default: () => Repository123
5125
+ default: () => Repository124
5096
5126
  });
5097
- var Repository123 = class {
5127
+ var Repository124 = class {
5098
5128
  constructor({ api, route }) {
5099
5129
  this.api = api;
5100
5130
  this.route = route;
@@ -5150,9 +5180,9 @@ var Repository123 = class {
5150
5180
  // src/modules/user/systemModule.ts
5151
5181
  var systemModule_exports = {};
5152
5182
  __export(systemModule_exports, {
5153
- default: () => Repository124
5183
+ default: () => Repository125
5154
5184
  });
5155
- var Repository124 = class {
5185
+ var Repository125 = class {
5156
5186
  constructor({ api, route }) {
5157
5187
  this.api = api;
5158
5188
  this.route = route;
@@ -5175,9 +5205,9 @@ var Repository124 = class {
5175
5205
  // src/modules/user/tenant.ts
5176
5206
  var tenant_exports = {};
5177
5207
  __export(tenant_exports, {
5178
- default: () => Repository125
5208
+ default: () => Repository126
5179
5209
  });
5180
- var Repository125 = class {
5210
+ var Repository126 = class {
5181
5211
  constructor({ api, route }) {
5182
5212
  this.api = api;
5183
5213
  this.route = route;
@@ -5213,9 +5243,9 @@ var Repository125 = class {
5213
5243
  // src/modules/user/theme.ts
5214
5244
  var theme_exports = {};
5215
5245
  __export(theme_exports, {
5216
- default: () => Repository126
5246
+ default: () => Repository127
5217
5247
  });
5218
- var Repository126 = class {
5248
+ var Repository127 = class {
5219
5249
  constructor({ api, route }) {
5220
5250
  this.api = api;
5221
5251
  this.route = route;
@@ -5297,9 +5327,9 @@ var TimesheetRepository = class {
5297
5327
  // src/modules/user/user.ts
5298
5328
  var user_exports = {};
5299
5329
  __export(user_exports, {
5300
- default: () => Repository127
5330
+ default: () => Repository128
5301
5331
  });
5302
- var Repository127 = class {
5332
+ var Repository128 = class {
5303
5333
  constructor({ api, route }) {
5304
5334
  this.api = api;
5305
5335
  this.route = route;
@@ -5360,9 +5390,9 @@ var Repository127 = class {
5360
5390
  // src/modules/user/userPositions.ts
5361
5391
  var userPositions_exports = {};
5362
5392
  __export(userPositions_exports, {
5363
- default: () => Repository128
5393
+ default: () => Repository129
5364
5394
  });
5365
- var Repository128 = class {
5395
+ var Repository129 = class {
5366
5396
  constructor({ api, route }) {
5367
5397
  this.api = api;
5368
5398
  this.route = route;
@@ -5415,9 +5445,9 @@ var Repository128 = class {
5415
5445
  // src/modules/user/vehicles.ts
5416
5446
  var vehicles_exports = {};
5417
5447
  __export(vehicles_exports, {
5418
- default: () => Repository129
5448
+ default: () => Repository130
5419
5449
  });
5420
- var Repository129 = class {
5450
+ var Repository130 = class {
5421
5451
  constructor({ api, route }) {
5422
5452
  this.api = api;
5423
5453
  this.route = route;
@@ -5453,9 +5483,9 @@ var Repository129 = class {
5453
5483
  // src/modules/view/adminPanel.ts
5454
5484
  var adminPanel_exports = {};
5455
5485
  __export(adminPanel_exports, {
5456
- default: () => Repository130
5486
+ default: () => Repository131
5457
5487
  });
5458
- var Repository130 = class {
5488
+ var Repository131 = class {
5459
5489
  constructor({ api, route }) {
5460
5490
  this.api = api;
5461
5491
  this.route = route;
@@ -5472,9 +5502,9 @@ var Repository130 = class {
5472
5502
  // src/modules/view/errorLog.ts
5473
5503
  var errorLog_exports = {};
5474
5504
  __export(errorLog_exports, {
5475
- default: () => Repository131
5505
+ default: () => Repository132
5476
5506
  });
5477
- var Repository131 = class {
5507
+ var Repository132 = class {
5478
5508
  constructor({ api, route }) {
5479
5509
  this.api = api;
5480
5510
  this.route = route;
@@ -5664,26 +5694,26 @@ var API = class {
5664
5694
  route: `${this.services[service]}${module}/`
5665
5695
  });
5666
5696
  this.WebSocket = new Service(getModuleParams("view", "ws"));
5667
- this.BankData = new Repository101(
5697
+ this.BankData = new Repository102(
5668
5698
  getModuleParams("users", Nomalism.BankData.Route)
5669
5699
  );
5670
- this.Client = new Repository103(
5700
+ this.Client = new Repository104(
5671
5701
  getModuleParams("users", Nomalism.Client.Route)
5672
5702
  );
5673
- this.ClientType = new Repository104(
5703
+ this.ClientType = new Repository105(
5674
5704
  getModuleParams("users", Nomalism.ClientType.Route)
5675
5705
  );
5676
- this.Chat = new Repository40(getModuleParams("stock", Nomalism.Chat.Route));
5677
- this.Commissioner = new Repository105(
5706
+ this.Chat = new Repository41(getModuleParams("stock", Nomalism.Chat.Route));
5707
+ this.Commissioner = new Repository106(
5678
5708
  getModuleParams("users", Nomalism.Commissioner.Route)
5679
5709
  );
5680
- this.Country = new Repository106(
5710
+ this.Country = new Repository107(
5681
5711
  getModuleParams("users", Nomalism.Country.Route)
5682
5712
  );
5683
- this.DocumentHeader = new Repository71(
5713
+ this.DocumentHeader = new Repository72(
5684
5714
  getModuleParams("stock", Nomalism.DocumentHeader.Route)
5685
5715
  );
5686
- this.DocumentHeaderHistory = new Repository72(
5716
+ this.DocumentHeaderHistory = new Repository73(
5687
5717
  getModuleParams("stock", Nomalism.DocumentHeaderHistory.Route)
5688
5718
  );
5689
5719
  this.BillOfLading = new Repository(
@@ -5707,186 +5737,186 @@ var API = class {
5707
5737
  this.ProviderServiceInvoice = new Repository14(
5708
5738
  getModuleParams("stock", Nomalism.ProviderServiceInvoice.Route)
5709
5739
  );
5710
- this.DocumentLine = new Repository75(
5740
+ this.DocumentLine = new Repository76(
5711
5741
  getModuleParams("stock", Nomalism.DocumentLine.Route)
5712
5742
  );
5713
- this.DocumentLineAssoc = new Repository76(
5743
+ this.DocumentLineAssoc = new Repository77(
5714
5744
  getModuleParams("stock", Nomalism.DocumentLineAssoc.Route)
5715
5745
  );
5716
- this.DocumentType = new Repository81(
5746
+ this.DocumentType = new Repository82(
5717
5747
  getModuleParams("stock", Nomalism.DocumentType.Route)
5718
5748
  );
5719
- this.Favorites = new Repository108(
5749
+ this.Favorites = new Repository109(
5720
5750
  getModuleParams("users", Nomalism.Favorites.Route)
5721
5751
  );
5722
- this.File = new Repository44(getModuleParams("stock", Nomalism.File.Route));
5723
- this.GoogleSheets = new Repository26(
5752
+ this.File = new Repository45(getModuleParams("stock", Nomalism.File.Route));
5753
+ this.GoogleSheets = new Repository27(
5724
5754
  getModuleParams("integration", Nomalism.GoogleSheets.Route)
5725
5755
  );
5726
- this.Language = new Repository109(
5756
+ this.Language = new Repository110(
5727
5757
  getModuleParams("users", Nomalism.Language.Route)
5728
5758
  );
5729
- this.Location = new Repository47(
5759
+ this.Location = new Repository48(
5730
5760
  getModuleParams("stock", Nomalism.Location.Route)
5731
5761
  );
5732
5762
  this.Multimedia = new Repository20(
5733
5763
  getModuleParams("documents", Nomalism.Multimedia.Route)
5734
5764
  );
5735
- this.Observation = new Repository27(
5765
+ this.Observation = new Repository28(
5736
5766
  getModuleParams("integration", Nomalism.Observation.Route)
5737
5767
  );
5738
- this.ObservationType = new Repository28(
5768
+ this.ObservationType = new Repository29(
5739
5769
  getModuleParams("integration", Nomalism.ObservationType.Route)
5740
5770
  );
5741
- this.Password = new Repository111(
5771
+ this.Password = new Repository112(
5742
5772
  getModuleParams("users", Nomalism.Password.Route)
5743
5773
  );
5744
- this.ProductImage = new Repository50(
5774
+ this.ProductImage = new Repository51(
5745
5775
  getModuleParams("stock", Nomalism.ProductImage.Route)
5746
5776
  );
5747
- this.Promotion = new Repository52(
5777
+ this.Promotion = new Repository53(
5748
5778
  getModuleParams("stock", Nomalism.Promotion.Route)
5749
5779
  );
5750
- this.PromotionAssoc = new Repository53(
5780
+ this.PromotionAssoc = new Repository54(
5751
5781
  getModuleParams("stock", Nomalism.PromotionAssoc.Route)
5752
5782
  );
5753
- this.Providers = new Repository114(
5783
+ this.Providers = new Repository115(
5754
5784
  getModuleParams("users", Nomalism.Providers.Route)
5755
5785
  );
5756
- this.ProviderType = new Repository115(
5786
+ this.ProviderType = new Repository116(
5757
5787
  getModuleParams("users", Nomalism.ProviderType.Route)
5758
5788
  );
5759
- this.PurchaseConditions = new Repository116(
5789
+ this.PurchaseConditions = new Repository117(
5760
5790
  getModuleParams("users", Nomalism.PurchaseConditions.Route)
5761
5791
  );
5762
- this.ReasonForExemption = new Repository117(
5792
+ this.ReasonForExemption = new Repository118(
5763
5793
  getModuleParams("users", Nomalism.ReasonForExemption.Route)
5764
5794
  );
5765
- this.RefreshToken = new Repository118(
5795
+ this.RefreshToken = new Repository119(
5766
5796
  getModuleParams("users", Nomalism.RefreshToken.Route)
5767
5797
  );
5768
- this.SegmentsArea = new Repository119(
5798
+ this.SegmentsArea = new Repository120(
5769
5799
  getModuleParams("users", Nomalism.SegmentsArea.Route)
5770
5800
  );
5771
- this.Sessions = new Repository120(
5801
+ this.Sessions = new Repository121(
5772
5802
  getModuleParams("users", Nomalism.Sessions.Route)
5773
5803
  );
5774
- this.Shippings = new Repository121(
5804
+ this.Shippings = new Repository122(
5775
5805
  getModuleParams("users", Nomalism.Shippings.Route)
5776
5806
  );
5777
- this.StoreOperator = new Repository122(
5807
+ this.StoreOperator = new Repository123(
5778
5808
  getModuleParams("users", Nomalism.StoreOperator.Route)
5779
5809
  );
5780
- this.SystemModule = new Repository124(
5810
+ this.SystemModule = new Repository125(
5781
5811
  getModuleParams("users", Nomalism.SystemModule.Route)
5782
5812
  );
5783
- this.Swift = new Repository123(getModuleParams("users", Nomalism.Swift.Route));
5784
- this.TypeOfLocation = new Repository66(
5813
+ this.Swift = new Repository124(getModuleParams("users", Nomalism.Swift.Route));
5814
+ this.TypeOfLocation = new Repository67(
5785
5815
  getModuleParams("stock", Nomalism.TypeOfLocation.Route)
5786
5816
  );
5787
- this.UnitOfMeasure = new Repository67(
5817
+ this.UnitOfMeasure = new Repository68(
5788
5818
  getModuleParams("stock", Nomalism.UnitOfMeasure.Route)
5789
5819
  );
5790
- this.UserPositions = new Repository128(
5820
+ this.UserPositions = new Repository129(
5791
5821
  getModuleParams("users", Nomalism.UserPositions.Route)
5792
5822
  );
5793
- this.Users = new Repository127(getModuleParams("users", Nomalism.Users.Route));
5794
- this.VatTax = new Repository68(
5823
+ this.Users = new Repository128(getModuleParams("users", Nomalism.Users.Route));
5824
+ this.VatTax = new Repository69(
5795
5825
  getModuleParams("stock", Nomalism.VatTax.Route)
5796
5826
  );
5797
- this.VatTaxZone = new Repository69(
5827
+ this.VatTaxZone = new Repository70(
5798
5828
  getModuleParams("stock", Nomalism.VatTaxZone.Route)
5799
5829
  );
5800
- this.Workflow = new Repository93(
5830
+ this.Workflow = new Repository94(
5801
5831
  getModuleParams("stock", Nomalism.Workflow.Route)
5802
5832
  );
5803
- this.DeliveryMethods = new Repository107(
5833
+ this.DeliveryMethods = new Repository108(
5804
5834
  getModuleParams("users", Nomalism.DeliveryMethods.Route)
5805
5835
  );
5806
- this.MaturityDates = new Repository110(
5836
+ this.MaturityDates = new Repository111(
5807
5837
  getModuleParams("users", Nomalism.MaturityDates.Route)
5808
5838
  );
5809
- this.PaymentMethods = new Repository112(
5839
+ this.PaymentMethods = new Repository113(
5810
5840
  getModuleParams("users", Nomalism.PaymentMethods.Route)
5811
5841
  );
5812
- this.Vehicles = new Repository129(
5842
+ this.Vehicles = new Repository130(
5813
5843
  getModuleParams("users", Nomalism.Vehicles.Route)
5814
5844
  );
5815
- this.ExternalDocumentType = new Repository83(
5845
+ this.ExternalDocumentType = new Repository84(
5816
5846
  getModuleParams("stock", Nomalism.ExternalDocumentType.Route)
5817
5847
  );
5818
- this.DocumentSet = new Repository80(
5848
+ this.DocumentSet = new Repository81(
5819
5849
  getModuleParams("stock", Nomalism.DocumentSet.Route)
5820
5850
  );
5821
- this.Payment = new Repository86(
5851
+ this.Payment = new Repository87(
5822
5852
  getModuleParams("stock", Nomalism.Payment.Route)
5823
5853
  );
5824
- this.ExternalDocumentHeader = new Repository82(
5854
+ this.ExternalDocumentHeader = new Repository83(
5825
5855
  getModuleParams("stock", Nomalism.ExternalDocumentHeader.Route)
5826
5856
  );
5827
- this.VatValidation = new Repository92(
5857
+ this.VatValidation = new Repository93(
5828
5858
  getModuleParams("stock", Nomalism.VatValidation.Route)
5829
5859
  );
5830
- this.StockMovement = new Repository61(
5860
+ this.StockMovement = new Repository62(
5831
5861
  getModuleParams("stock", Nomalism.StockMovement.Route)
5832
5862
  );
5833
- this.Tenant = new Repository125(
5863
+ this.Tenant = new Repository126(
5834
5864
  getModuleParams("users", Nomalism.Tenant.Route)
5835
5865
  );
5836
- this.PreSale = new Repository88(
5866
+ this.PreSale = new Repository89(
5837
5867
  getModuleParams("stock", Nomalism.PreSale.Route)
5838
5868
  );
5839
- this.PreSaleProduct = new Repository89(
5869
+ this.PreSaleProduct = new Repository90(
5840
5870
  getModuleParams("stock", Nomalism.PreSaleProduct.Route)
5841
5871
  );
5842
- this.OrderManagement = new Repository85(
5872
+ this.OrderManagement = new Repository86(
5843
5873
  getModuleParams("stock", Nomalism.OrderManagement.Route)
5844
5874
  );
5845
- this.Npc = new Repository33(getModuleParams("print", Nomalism.Npc.Route));
5846
- this.Printer = new Repository34(
5875
+ this.Npc = new Repository34(getModuleParams("print", Nomalism.Npc.Route));
5876
+ this.Printer = new Repository35(
5847
5877
  getModuleParams("print", Nomalism.Printer.Route)
5848
5878
  );
5849
- this.SchedulePrintJob = new Repository35(
5879
+ this.SchedulePrintJob = new Repository36(
5850
5880
  getModuleParams("print", Nomalism.SchedulePrintJob.Route)
5851
5881
  );
5852
- this.QueryList = new Repository54(
5882
+ this.QueryList = new Repository55(
5853
5883
  getModuleParams("stock", Nomalism.QueryList.Route)
5854
5884
  );
5855
- this.QueryParameter = new Repository55(
5885
+ this.QueryParameter = new Repository56(
5856
5886
  getModuleParams("stock", Nomalism.QueryParameter.Route)
5857
5887
  );
5858
- this.ReturnReason = new Repository57(
5888
+ this.ReturnReason = new Repository58(
5859
5889
  getModuleParams("stock", Nomalism.ReturnReason.Route)
5860
5890
  );
5861
5891
  this.PropostaSheets = new Repository11(
5862
5892
  getModuleParams("stock", Nomalism.PropostaSheets.Route)
5863
5893
  );
5864
- this.Schedule = new Repository60(
5894
+ this.Schedule = new Repository61(
5865
5895
  getModuleParams("stock", Nomalism.Schedule.Route)
5866
5896
  );
5867
- this.GoogleFilePermission = new Repository25(
5897
+ this.GoogleFilePermission = new Repository26(
5868
5898
  getModuleParams("integration", Nomalism.GoogleFilePermission.Route)
5869
5899
  );
5870
- this.Settings = new Repository31(
5900
+ this.Settings = new Repository32(
5871
5901
  getModuleParams("integration", Nomalism.Settings.Route)
5872
5902
  );
5873
- this.Tickets = new Repository97(
5903
+ this.Tickets = new Repository98(
5874
5904
  getModuleParams("tickets", Nomalism.Tickets.Route)
5875
5905
  );
5876
- this.Channel = new Repository94(
5906
+ this.Channel = new Repository95(
5877
5907
  getModuleParams("tickets", Nomalism.Channel.Route)
5878
5908
  );
5879
- this.TicketsLanguage = new Repository96(
5909
+ this.TicketsLanguage = new Repository97(
5880
5910
  getModuleParams("tickets", Nomalism.TicketsLanguage.Route)
5881
5911
  );
5882
- this.Clt = new Repository95(getModuleParams("tickets", Nomalism.CLT.Route));
5883
- this.StartDocumentHeaderLastUpdate = new Repository91(
5912
+ this.Clt = new Repository96(getModuleParams("tickets", Nomalism.CLT.Route));
5913
+ this.StartDocumentHeaderLastUpdate = new Repository92(
5884
5914
  getModuleParams("stock", Nomalism.StartDocumentHeaderLastUpdate.Route)
5885
5915
  );
5886
- this.Persona = new Repository113(
5916
+ this.Persona = new Repository114(
5887
5917
  getModuleParams("users", Nomalism.Persona.Route)
5888
5918
  );
5889
- this.ProjectInfo = new Repository30(
5919
+ this.ProjectInfo = new Repository31(
5890
5920
  getModuleParams("integration", Nomalism.ProjectInfo.Route)
5891
5921
  );
5892
5922
  this.Order = new Repository7(getModuleParams("stock", Nomalism.Order.Route));
@@ -5902,7 +5932,7 @@ var API = class {
5902
5932
  this.UpfrontReturn = new Repository19(
5903
5933
  getModuleParams("stock", Nomalism.UpfrontReturn.Route)
5904
5934
  );
5905
- this.SavedEmPicking = new Repository58(
5935
+ this.SavedEmPicking = new Repository59(
5906
5936
  getModuleParams("stock", Nomalism.SavedEmPicking.Route)
5907
5937
  );
5908
5938
  this.EmailTemplate = new Repository22(
@@ -5911,7 +5941,7 @@ var API = class {
5911
5941
  this.EmailTemplateAttachment = new Repository23(
5912
5942
  getModuleParams("integration", Nomalism.EmailTemplateAttachment.Route)
5913
5943
  );
5914
- this.Prison = new Repository48(
5944
+ this.Prison = new Repository49(
5915
5945
  getModuleParams("stock", Nomalism.Prison.Route)
5916
5946
  );
5917
5947
  this.Quebra = new Repository16(
@@ -5929,95 +5959,98 @@ var API = class {
5929
5959
  this.EmailLog = new Repository21(
5930
5960
  getModuleParams("integration", Nomalism.EmailLog.Route)
5931
5961
  );
5932
- this.DocumentLineNote = new Repository78(
5962
+ this.EuPago = new Repository25(
5963
+ getModuleParams("integration", Nomalism.EuPago.Route)
5964
+ );
5965
+ this.DocumentLineNote = new Repository79(
5933
5966
  getModuleParams("stock", Nomalism.DocumentLineNote.Route)
5934
5967
  );
5935
- this.SavedProviderProposal = new Repository59(
5968
+ this.SavedProviderProposal = new Repository60(
5936
5969
  getModuleParams("stock", Nomalism.SavedProviderProposal.Route)
5937
5970
  );
5938
- this.ProductGoogleSheets = new Repository49(
5971
+ this.ProductGoogleSheets = new Repository50(
5939
5972
  getModuleParams("stock", Nomalism.ProductGoogleSheets.Route)
5940
5973
  );
5941
- this.Task = new Repository63(getModuleParams("stock", Nomalism.Task.Route));
5942
- this.TaskMessage = new Repository64(
5974
+ this.Task = new Repository64(getModuleParams("stock", Nomalism.Task.Route));
5975
+ this.TaskMessage = new Repository65(
5943
5976
  getModuleParams("stock", Nomalism.TaskMessage.Route)
5944
5977
  );
5945
- this.RecurrentTasks = new Repository56(
5978
+ this.RecurrentTasks = new Repository57(
5946
5979
  getModuleParams("stock", Nomalism.RecurrentTasks.Route)
5947
5980
  );
5948
- this.TaskRead = new Repository65(
5981
+ this.TaskRead = new Repository66(
5949
5982
  getModuleParams("stock", Nomalism.TaskRead.Route)
5950
5983
  );
5951
- this.Theme = new Repository126(getModuleParams("users", Nomalism.Theme.Route));
5952
- this.Dashboard = new Repository42(
5984
+ this.Theme = new Repository127(getModuleParams("users", Nomalism.Theme.Route));
5985
+ this.Dashboard = new Repository43(
5953
5986
  getModuleParams("stock", Nomalism.Dashboard.Route)
5954
5987
  );
5955
- this.ChatRapidMessage = new Repository41(
5988
+ this.ChatRapidMessage = new Repository42(
5956
5989
  getModuleParams("stock", Nomalism.ChatRapidMessage.Route)
5957
5990
  );
5958
- this.SideMenu = new Repository99(
5991
+ this.SideMenu = new Repository100(
5959
5992
  getModuleParams("stock", Nomalism.SideMenu.Route)
5960
5993
  );
5961
- this.SidemenuHighlight = new Repository100(
5994
+ this.SidemenuHighlight = new Repository101(
5962
5995
  getModuleParams("stock", Nomalism.SidemenuHighlight.Route)
5963
5996
  );
5964
- this.ErrorLog = new Repository131(
5997
+ this.ErrorLog = new Repository132(
5965
5998
  getModuleParams("view", Nomalism.ErrorLog.Route)
5966
5999
  );
5967
- this.AdminPanel = new Repository130(
6000
+ this.AdminPanel = new Repository131(
5968
6001
  getModuleParams("view", Nomalism.AdminPanel.Route)
5969
6002
  );
5970
- this.DocumentLineRm = new Repository79(
6003
+ this.DocumentLineRm = new Repository80(
5971
6004
  getModuleParams("stock", Nomalism.DocumentLineRm.Route)
5972
6005
  );
5973
- this.DocumentLineMt = new Repository77(
6006
+ this.DocumentLineMt = new Repository78(
5974
6007
  getModuleParams("stock", Nomalism.DocumentLineMt.Route)
5975
6008
  );
5976
- this.ChatSubscriber = new Repository102(
6009
+ this.ChatSubscriber = new Repository103(
5977
6010
  getModuleParams("users", Nomalism.ChatSubscriber.Route)
5978
6011
  );
5979
- this.Tag = new Repository62(getModuleParams("stock", Nomalism.Tag.Route));
5980
- this.Gmails = new Repository45(
6012
+ this.Tag = new Repository63(getModuleParams("stock", Nomalism.Tag.Route));
6013
+ this.Gmails = new Repository46(
5981
6014
  getModuleParams("stock", Nomalism.Gmails.Route)
5982
6015
  );
5983
- this.EmailAccount = new Repository43(
6016
+ this.EmailAccount = new Repository44(
5984
6017
  getModuleParams("stock", Nomalism.EmailAccount.Route)
5985
6018
  );
5986
6019
  this.NPF = new Repository5(getModuleParams("stock", Nomalism.NPF.Route));
5987
6020
  this.NRCL = new Repository6(getModuleParams("stock", Nomalism.NRCL.Route));
5988
- this.PaymentBatch = new Repository87(
6021
+ this.PaymentBatch = new Repository88(
5989
6022
  getModuleParams("stock", Nomalism.PaymentBatch.Route)
5990
6023
  );
5991
- this.CurrentAccount = new Repository70(
6024
+ this.CurrentAccount = new Repository71(
5992
6025
  getModuleParams("stock", Nomalism.CurrentAccount.Route)
5993
6026
  );
5994
- this.Portal = new Repository98(
6027
+ this.Portal = new Repository99(
5995
6028
  getModuleParams("stock", Nomalism.Portal.Route)
5996
6029
  );
5997
- this.Saft = new Repository90(getModuleParams("stock", "saft"));
5998
- this.AccountCode = new Repository39(
6030
+ this.Saft = new Repository91(getModuleParams("stock", "saft"));
6031
+ this.AccountCode = new Repository40(
5999
6032
  getModuleParams("stock", "account_code")
6000
6033
  );
6001
- this.GoogleSheetPool = new Repository84(
6034
+ this.GoogleSheetPool = new Repository85(
6002
6035
  getModuleParams("stock", Nomalism.GoogleSheetPool.Route)
6003
6036
  );
6004
- this.AccountCode = new Repository39(
6037
+ this.AccountCode = new Repository40(
6005
6038
  getModuleParams("stock", Nomalism.AccountCode.Route)
6006
6039
  );
6007
- this.LLM = new Repository32(getModuleParams("llm", Nomalism.LLM.Route));
6008
- this.PatchNotes = new Repository29(
6040
+ this.LLM = new Repository33(getModuleParams("llm", Nomalism.LLM.Route));
6041
+ this.PatchNotes = new Repository30(
6009
6042
  getModuleParams("integration", Nomalism.PatchNotes.Route)
6010
6043
  );
6011
- this.DocumentHeaderSurvey = new Repository74(
6044
+ this.DocumentHeaderSurvey = new Repository75(
6012
6045
  getModuleParams("stock", Nomalism.DocumentHeaderSurvey.Route)
6013
6046
  );
6014
- this.DocumentHeaderSubscriber = new Repository73(
6047
+ this.DocumentHeaderSubscriber = new Repository74(
6015
6048
  getModuleParams("stock", Nomalism.DocumentHeaderSubscriber.Route)
6016
6049
  );
6017
- this.GoogleCalendar = new Repository46(
6050
+ this.GoogleCalendar = new Repository47(
6018
6051
  getModuleParams("stock", Nomalism.GoogleCalendar.Route)
6019
6052
  );
6020
- this.ProductLocation = new Repository51(
6053
+ this.ProductLocation = new Repository52(
6021
6054
  getModuleParams("stock", Nomalism.ProductLocation.Route)
6022
6055
  );
6023
6056
  this.TimeSheet = new TimesheetRepository(
@@ -6026,13 +6059,13 @@ var API = class {
6026
6059
  this.Catalogo = new Repository2(
6027
6060
  getModuleParams("stock", Nomalism.Catalogo.Route)
6028
6061
  );
6029
- this.SmsSender = new Repository37(
6062
+ this.SmsSender = new Repository38(
6030
6063
  getModuleParams("sms", Nomalism.SmsSender.Route)
6031
6064
  );
6032
- this.SmsTemplate = new Repository38(
6065
+ this.SmsTemplate = new Repository39(
6033
6066
  getModuleParams("sms", Nomalism.SmsTemplate.Route)
6034
6067
  );
6035
- this.AllowedDevice = new Repository36(
6068
+ this.AllowedDevice = new Repository37(
6036
6069
  getModuleParams("sms", Nomalism.AllowedDevice.Route)
6037
6070
  );
6038
6071
  }