@nomalism-com/api 1.3.44 → 1.3.45

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
@@ -35,6 +35,7 @@ __export(main_exports, {
35
35
  DocumentLineRm: () => documentLineRm_exports,
36
36
  DocumentSet: () => documentSet_exports,
37
37
  DocumentType: () => documentType_exports,
38
+ EmailAccount: () => emailAccount_exports,
38
39
  EmailLog: () => emailLog_exports,
39
40
  EmailTemplate: () => emailTemplate_exports,
40
41
  EmailTemplateAttachment: () => emailTemplateAttachment_exports,
@@ -1563,12 +1564,63 @@ var Repository42 = class {
1563
1564
  }
1564
1565
  };
1565
1566
 
1567
+ // src/modules/stock/emailAccount.ts
1568
+ var emailAccount_exports = {};
1569
+ __export(emailAccount_exports, {
1570
+ default: () => Repository43
1571
+ });
1572
+ var Repository43 = class {
1573
+ constructor({ api, route }) {
1574
+ this.api = api;
1575
+ this.route = route;
1576
+ }
1577
+ async find() {
1578
+ const response = await this.api.get(`${this.route}`);
1579
+ return response.data;
1580
+ }
1581
+ async findById(selector) {
1582
+ const response = await this.api.get(
1583
+ `${this.route}${selector.id}`
1584
+ );
1585
+ return response.data;
1586
+ }
1587
+ async create(data) {
1588
+ const response = await this.api.post(
1589
+ `${this.route}`,
1590
+ data
1591
+ );
1592
+ return response.data;
1593
+ }
1594
+ async update(selector, data) {
1595
+ await this.api.put(`${this.route}${selector.id}`, data);
1596
+ }
1597
+ async deleteOne(selector) {
1598
+ await this.api.delete(`${this.route}${selector.id}`);
1599
+ }
1600
+ async auth(selector) {
1601
+ const response = await this.api.get(
1602
+ `${this.route}${selector.id}/auth`
1603
+ );
1604
+ return response.data;
1605
+ }
1606
+ async sync(selector) {
1607
+ const response = await this.api.post(
1608
+ `${this.route}${selector.id}/sync`
1609
+ );
1610
+ return response.data;
1611
+ }
1612
+ async syncAll() {
1613
+ const response = await this.api.post(`${this.route}sync`);
1614
+ return response.data;
1615
+ }
1616
+ };
1617
+
1566
1618
  // src/modules/stock/file.ts
1567
1619
  var file_exports = {};
1568
1620
  __export(file_exports, {
1569
- default: () => Repository43
1621
+ default: () => Repository44
1570
1622
  });
1571
- var Repository43 = class {
1623
+ var Repository44 = class {
1572
1624
  constructor({ api, route }) {
1573
1625
  this.api = api;
1574
1626
  this.route = route;
@@ -1603,9 +1655,9 @@ var Repository43 = class {
1603
1655
  // src/modules/stock/gmails.ts
1604
1656
  var gmails_exports = {};
1605
1657
  __export(gmails_exports, {
1606
- default: () => Repository44
1658
+ default: () => Repository45
1607
1659
  });
1608
- var Repository44 = class {
1660
+ var Repository45 = class {
1609
1661
  constructor({ api, route }) {
1610
1662
  this.api = api;
1611
1663
  this.route = route;
@@ -1625,9 +1677,9 @@ var Repository44 = class {
1625
1677
  // src/modules/stock/googleCalendar.ts
1626
1678
  var googleCalendar_exports = {};
1627
1679
  __export(googleCalendar_exports, {
1628
- default: () => Repository45
1680
+ default: () => Repository46
1629
1681
  });
1630
- var Repository45 = class {
1682
+ var Repository46 = class {
1631
1683
  constructor({ api, route }) {
1632
1684
  this.api = api;
1633
1685
  this.route = route;
@@ -1647,9 +1699,9 @@ var Repository45 = class {
1647
1699
  // src/modules/stock/location.ts
1648
1700
  var location_exports = {};
1649
1701
  __export(location_exports, {
1650
- default: () => Repository46
1702
+ default: () => Repository47
1651
1703
  });
1652
- var Repository46 = class {
1704
+ var Repository47 = class {
1653
1705
  constructor({ api, route }) {
1654
1706
  this.api = api;
1655
1707
  this.route = route;
@@ -1711,9 +1763,9 @@ var Repository46 = class {
1711
1763
  // src/modules/stock/prison.ts
1712
1764
  var prison_exports = {};
1713
1765
  __export(prison_exports, {
1714
- default: () => Repository47
1766
+ default: () => Repository48
1715
1767
  });
1716
- var Repository47 = class {
1768
+ var Repository48 = class {
1717
1769
  constructor({ api, route }) {
1718
1770
  this.api = api;
1719
1771
  this.route = route;
@@ -1751,9 +1803,9 @@ var Repository47 = class {
1751
1803
  // src/modules/stock/productGoogleSheets.ts
1752
1804
  var productGoogleSheets_exports = {};
1753
1805
  __export(productGoogleSheets_exports, {
1754
- default: () => Repository48
1806
+ default: () => Repository49
1755
1807
  });
1756
- var Repository48 = class {
1808
+ var Repository49 = class {
1757
1809
  constructor({ api, route }) {
1758
1810
  this.api = api;
1759
1811
  this.route = route;
@@ -1888,9 +1940,9 @@ var Repository48 = class {
1888
1940
  // src/modules/stock/productImage.ts
1889
1941
  var productImage_exports = {};
1890
1942
  __export(productImage_exports, {
1891
- default: () => Repository49
1943
+ default: () => Repository50
1892
1944
  });
1893
- var Repository49 = class {
1945
+ var Repository50 = class {
1894
1946
  constructor({ api, route }) {
1895
1947
  this.api = api;
1896
1948
  this.route = route;
@@ -1946,9 +1998,9 @@ var Repository49 = class {
1946
1998
  // src/modules/stock/productLocation.ts
1947
1999
  var productLocation_exports = {};
1948
2000
  __export(productLocation_exports, {
1949
- default: () => Repository50
2001
+ default: () => Repository51
1950
2002
  });
1951
- var Repository50 = class {
2003
+ var Repository51 = class {
1952
2004
  constructor({ api, route }) {
1953
2005
  this.api = api;
1954
2006
  this.route = route;
@@ -1962,9 +2014,9 @@ var Repository50 = class {
1962
2014
  // src/modules/stock/promotion.ts
1963
2015
  var promotion_exports = {};
1964
2016
  __export(promotion_exports, {
1965
- default: () => Repository51
2017
+ default: () => Repository52
1966
2018
  });
1967
- var Repository51 = class {
2019
+ var Repository52 = class {
1968
2020
  constructor({ api, route }) {
1969
2021
  this.api = api;
1970
2022
  this.route = route;
@@ -2038,9 +2090,9 @@ var Repository51 = class {
2038
2090
  // src/modules/stock/promotionAssoc.ts
2039
2091
  var promotionAssoc_exports = {};
2040
2092
  __export(promotionAssoc_exports, {
2041
- default: () => Repository52
2093
+ default: () => Repository53
2042
2094
  });
2043
- var Repository52 = class {
2095
+ var Repository53 = class {
2044
2096
  constructor({ api, route }) {
2045
2097
  this.api = api;
2046
2098
  this.route = route;
@@ -2090,9 +2142,9 @@ var Repository52 = class {
2090
2142
  // src/modules/stock/queryList.ts
2091
2143
  var queryList_exports = {};
2092
2144
  __export(queryList_exports, {
2093
- default: () => Repository53
2145
+ default: () => Repository54
2094
2146
  });
2095
- var Repository53 = class {
2147
+ var Repository54 = class {
2096
2148
  constructor({ api, route }) {
2097
2149
  this.api = api;
2098
2150
  this.route = route;
@@ -2157,9 +2209,9 @@ var Repository53 = class {
2157
2209
  // src/modules/stock/queryParameter.ts
2158
2210
  var queryParameter_exports = {};
2159
2211
  __export(queryParameter_exports, {
2160
- default: () => Repository54
2212
+ default: () => Repository55
2161
2213
  });
2162
- var Repository54 = class {
2214
+ var Repository55 = class {
2163
2215
  constructor({ api, route }) {
2164
2216
  this.api = api;
2165
2217
  this.route = route;
@@ -2202,9 +2254,9 @@ var Repository54 = class {
2202
2254
  // src/modules/stock/recurrentTasks.ts
2203
2255
  var recurrentTasks_exports = {};
2204
2256
  __export(recurrentTasks_exports, {
2205
- default: () => Repository55
2257
+ default: () => Repository56
2206
2258
  });
2207
- var Repository55 = class {
2259
+ var Repository56 = class {
2208
2260
  constructor({ api, route }) {
2209
2261
  this.api = api;
2210
2262
  this.route = route;
@@ -2222,9 +2274,9 @@ var Repository55 = class {
2222
2274
  // src/modules/stock/returnReason.ts
2223
2275
  var returnReason_exports = {};
2224
2276
  __export(returnReason_exports, {
2225
- default: () => Repository56
2277
+ default: () => Repository57
2226
2278
  });
2227
- var Repository56 = class {
2279
+ var Repository57 = class {
2228
2280
  constructor({ api, route }) {
2229
2281
  this.api = api;
2230
2282
  this.route = route;
@@ -2260,9 +2312,9 @@ var Repository56 = class {
2260
2312
  // src/modules/stock/savedEmPicking.ts
2261
2313
  var savedEmPicking_exports = {};
2262
2314
  __export(savedEmPicking_exports, {
2263
- default: () => Repository57
2315
+ default: () => Repository58
2264
2316
  });
2265
- var Repository57 = class {
2317
+ var Repository58 = class {
2266
2318
  constructor({ api, route }) {
2267
2319
  this.api = api;
2268
2320
  this.route = route;
@@ -2286,9 +2338,9 @@ var Repository57 = class {
2286
2338
  // src/modules/stock/savedProviderProposal.ts
2287
2339
  var savedProviderProposal_exports = {};
2288
2340
  __export(savedProviderProposal_exports, {
2289
- default: () => Repository58
2341
+ default: () => Repository59
2290
2342
  });
2291
- var Repository58 = class {
2343
+ var Repository59 = class {
2292
2344
  constructor({ api, route }) {
2293
2345
  this.api = api;
2294
2346
  this.route = route;
@@ -2305,9 +2357,9 @@ var Repository58 = class {
2305
2357
  // src/modules/stock/schedule.ts
2306
2358
  var schedule_exports = {};
2307
2359
  __export(schedule_exports, {
2308
- default: () => Repository59
2360
+ default: () => Repository60
2309
2361
  });
2310
- var Repository59 = class {
2362
+ var Repository60 = class {
2311
2363
  constructor({ api, route }) {
2312
2364
  this.api = api;
2313
2365
  this.route = route;
@@ -2320,9 +2372,9 @@ var Repository59 = class {
2320
2372
  // src/modules/stock/stockMovement.ts
2321
2373
  var stockMovement_exports = {};
2322
2374
  __export(stockMovement_exports, {
2323
- default: () => Repository60
2375
+ default: () => Repository61
2324
2376
  });
2325
- var Repository60 = class {
2377
+ var Repository61 = class {
2326
2378
  constructor({ api, route }) {
2327
2379
  this.api = api;
2328
2380
  this.route = route;
@@ -2363,9 +2415,9 @@ var Repository60 = class {
2363
2415
  // src/modules/stock/tag.ts
2364
2416
  var tag_exports = {};
2365
2417
  __export(tag_exports, {
2366
- default: () => Repository61
2418
+ default: () => Repository62
2367
2419
  });
2368
- var Repository61 = class {
2420
+ var Repository62 = class {
2369
2421
  constructor({ api, route }) {
2370
2422
  this.api = api;
2371
2423
  this.route = route;
@@ -2390,9 +2442,9 @@ var Repository61 = class {
2390
2442
  // src/modules/stock/task.ts
2391
2443
  var task_exports = {};
2392
2444
  __export(task_exports, {
2393
- default: () => Repository62
2445
+ default: () => Repository63
2394
2446
  });
2395
- var Repository62 = class {
2447
+ var Repository63 = class {
2396
2448
  constructor({ api, route }) {
2397
2449
  this.api = api;
2398
2450
  this.route = route;
@@ -2443,9 +2495,9 @@ var Repository62 = class {
2443
2495
  // src/modules/stock/taskMessage.ts
2444
2496
  var taskMessage_exports = {};
2445
2497
  __export(taskMessage_exports, {
2446
- default: () => Repository63
2498
+ default: () => Repository64
2447
2499
  });
2448
- var Repository63 = class {
2500
+ var Repository64 = class {
2449
2501
  constructor({ api, route }) {
2450
2502
  this.api = api;
2451
2503
  this.route = route;
@@ -2468,9 +2520,9 @@ var Repository63 = class {
2468
2520
  // src/modules/stock/taskRead.ts
2469
2521
  var taskRead_exports = {};
2470
2522
  __export(taskRead_exports, {
2471
- default: () => Repository64
2523
+ default: () => Repository65
2472
2524
  });
2473
- var Repository64 = class {
2525
+ var Repository65 = class {
2474
2526
  constructor({ api, route }) {
2475
2527
  this.api = api;
2476
2528
  this.route = route;
@@ -2486,9 +2538,9 @@ var Repository64 = class {
2486
2538
  // src/modules/stock/typeOfLocation.ts
2487
2539
  var typeOfLocation_exports = {};
2488
2540
  __export(typeOfLocation_exports, {
2489
- default: () => Repository65
2541
+ default: () => Repository66
2490
2542
  });
2491
- var Repository65 = class {
2543
+ var Repository66 = class {
2492
2544
  constructor({ api, route }) {
2493
2545
  this.api = api;
2494
2546
  this.route = route;
@@ -2544,9 +2596,9 @@ var Repository65 = class {
2544
2596
  // src/modules/stock/unitOfMeasure.ts
2545
2597
  var unitOfMeasure_exports = {};
2546
2598
  __export(unitOfMeasure_exports, {
2547
- default: () => Repository66
2599
+ default: () => Repository67
2548
2600
  });
2549
- var Repository66 = class {
2601
+ var Repository67 = class {
2550
2602
  constructor({ api, route }) {
2551
2603
  this.api = api;
2552
2604
  this.route = route;
@@ -2608,9 +2660,9 @@ var Repository66 = class {
2608
2660
  // src/modules/stock/vatTax.ts
2609
2661
  var vatTax_exports = {};
2610
2662
  __export(vatTax_exports, {
2611
- default: () => Repository67
2663
+ default: () => Repository68
2612
2664
  });
2613
- var Repository67 = class {
2665
+ var Repository68 = class {
2614
2666
  constructor({ api, route }) {
2615
2667
  this.api = api;
2616
2668
  this.route = route;
@@ -2672,9 +2724,9 @@ var Repository67 = class {
2672
2724
  // src/modules/stock/vatTaxZone.ts
2673
2725
  var vatTaxZone_exports = {};
2674
2726
  __export(vatTaxZone_exports, {
2675
- default: () => Repository68
2727
+ default: () => Repository69
2676
2728
  });
2677
- var Repository68 = class {
2729
+ var Repository69 = class {
2678
2730
  constructor({ api, route }) {
2679
2731
  this.api = api;
2680
2732
  this.route = route;
@@ -2733,9 +2785,9 @@ var Repository68 = class {
2733
2785
  // src/modules/supply/currentAccount.ts
2734
2786
  var currentAccount_exports = {};
2735
2787
  __export(currentAccount_exports, {
2736
- default: () => Repository69
2788
+ default: () => Repository70
2737
2789
  });
2738
- var Repository69 = class {
2790
+ var Repository70 = class {
2739
2791
  constructor({ api, route }) {
2740
2792
  this.api = api;
2741
2793
  this.route = route;
@@ -2796,9 +2848,9 @@ var Repository69 = class {
2796
2848
  // src/modules/supply/documentHeader.ts
2797
2849
  var documentHeader_exports = {};
2798
2850
  __export(documentHeader_exports, {
2799
- default: () => Repository70
2851
+ default: () => Repository71
2800
2852
  });
2801
- var Repository70 = class {
2853
+ var Repository71 = class {
2802
2854
  constructor({ api, route }) {
2803
2855
  this.api = api;
2804
2856
  this.route = route;
@@ -2911,9 +2963,9 @@ var Repository70 = class {
2911
2963
  // src/modules/supply/documentHeaderHistory.ts
2912
2964
  var documentHeaderHistory_exports = {};
2913
2965
  __export(documentHeaderHistory_exports, {
2914
- default: () => Repository71
2966
+ default: () => Repository72
2915
2967
  });
2916
- var Repository71 = class {
2968
+ var Repository72 = class {
2917
2969
  constructor({ api, route }) {
2918
2970
  this.api = api;
2919
2971
  this.route = route;
@@ -2927,9 +2979,9 @@ var Repository71 = class {
2927
2979
  // src/modules/supply/documentHeaderSubscriber.ts
2928
2980
  var documentHeaderSubscriber_exports = {};
2929
2981
  __export(documentHeaderSubscriber_exports, {
2930
- default: () => Repository72
2982
+ default: () => Repository73
2931
2983
  });
2932
- var Repository72 = class {
2984
+ var Repository73 = class {
2933
2985
  constructor({ api, route }) {
2934
2986
  this.api = api;
2935
2987
  this.route = route;
@@ -2951,9 +3003,9 @@ var Repository72 = class {
2951
3003
  // src/modules/supply/documentHeaderSurvey.ts
2952
3004
  var documentHeaderSurvey_exports = {};
2953
3005
  __export(documentHeaderSurvey_exports, {
2954
- default: () => Repository73
3006
+ default: () => Repository74
2955
3007
  });
2956
- var Repository73 = class {
3008
+ var Repository74 = class {
2957
3009
  constructor({ api, route }) {
2958
3010
  this.api = api;
2959
3011
  this.route = route;
@@ -2973,9 +3025,9 @@ var Repository73 = class {
2973
3025
  // src/modules/supply/documentLine.ts
2974
3026
  var documentLine_exports = {};
2975
3027
  __export(documentLine_exports, {
2976
- default: () => Repository74
3028
+ default: () => Repository75
2977
3029
  });
2978
- var Repository74 = class {
3030
+ var Repository75 = class {
2979
3031
  constructor({ api, route }) {
2980
3032
  this.api = api;
2981
3033
  this.route = route;
@@ -3021,9 +3073,9 @@ var Repository74 = class {
3021
3073
  // src/modules/supply/documentLineAssoc.ts
3022
3074
  var documentLineAssoc_exports = {};
3023
3075
  __export(documentLineAssoc_exports, {
3024
- default: () => Repository75
3076
+ default: () => Repository76
3025
3077
  });
3026
- var Repository75 = class {
3078
+ var Repository76 = class {
3027
3079
  constructor({ api, route }) {
3028
3080
  this.api = api;
3029
3081
  this.route = route;
@@ -3052,9 +3104,9 @@ var Repository75 = class {
3052
3104
  // src/modules/supply/documentLineMt.ts
3053
3105
  var documentLineMt_exports = {};
3054
3106
  __export(documentLineMt_exports, {
3055
- default: () => Repository76
3107
+ default: () => Repository77
3056
3108
  });
3057
- var Repository76 = class {
3109
+ var Repository77 = class {
3058
3110
  constructor({ api, route }) {
3059
3111
  this.api = api;
3060
3112
  this.route = route;
@@ -3075,9 +3127,9 @@ var Repository76 = class {
3075
3127
  // src/modules/supply/documentLineNote.ts
3076
3128
  var documentLineNote_exports = {};
3077
3129
  __export(documentLineNote_exports, {
3078
- default: () => Repository77
3130
+ default: () => Repository78
3079
3131
  });
3080
- var Repository77 = class {
3132
+ var Repository78 = class {
3081
3133
  constructor({ api, route }) {
3082
3134
  this.api = api;
3083
3135
  this.route = route;
@@ -3090,9 +3142,9 @@ var Repository77 = class {
3090
3142
  // src/modules/supply/documentLineRm.ts
3091
3143
  var documentLineRm_exports = {};
3092
3144
  __export(documentLineRm_exports, {
3093
- default: () => Repository78
3145
+ default: () => Repository79
3094
3146
  });
3095
- var Repository78 = class {
3147
+ var Repository79 = class {
3096
3148
  constructor({ api, route }) {
3097
3149
  this.api = api;
3098
3150
  this.route = route;
@@ -3113,9 +3165,9 @@ var Repository78 = class {
3113
3165
  // src/modules/supply/documentSet.ts
3114
3166
  var documentSet_exports = {};
3115
3167
  __export(documentSet_exports, {
3116
- default: () => Repository79
3168
+ default: () => Repository80
3117
3169
  });
3118
- var Repository79 = class {
3170
+ var Repository80 = class {
3119
3171
  constructor({ api, route }) {
3120
3172
  this.api = api;
3121
3173
  this.route = route;
@@ -3161,9 +3213,9 @@ var Repository79 = class {
3161
3213
  // src/modules/supply/documentType.ts
3162
3214
  var documentType_exports = {};
3163
3215
  __export(documentType_exports, {
3164
- default: () => Repository80
3216
+ default: () => Repository81
3165
3217
  });
3166
- var Repository80 = class {
3218
+ var Repository81 = class {
3167
3219
  constructor({ api, route }) {
3168
3220
  this.api = api;
3169
3221
  this.route = route;
@@ -3208,9 +3260,9 @@ var Repository80 = class {
3208
3260
  // src/modules/supply/externalDocumentHeader.ts
3209
3261
  var externalDocumentHeader_exports = {};
3210
3262
  __export(externalDocumentHeader_exports, {
3211
- default: () => Repository81
3263
+ default: () => Repository82
3212
3264
  });
3213
- var Repository81 = class {
3265
+ var Repository82 = class {
3214
3266
  constructor({ api, route }) {
3215
3267
  this.api = api;
3216
3268
  this.route = route;
@@ -3250,9 +3302,9 @@ var Repository81 = class {
3250
3302
  // src/modules/supply/externalDocumentType.ts
3251
3303
  var externalDocumentType_exports = {};
3252
3304
  __export(externalDocumentType_exports, {
3253
- default: () => Repository82
3305
+ default: () => Repository83
3254
3306
  });
3255
- var Repository82 = class {
3307
+ var Repository83 = class {
3256
3308
  constructor({ api, route }) {
3257
3309
  this.api = api;
3258
3310
  this.route = route;
@@ -3272,9 +3324,9 @@ var Repository82 = class {
3272
3324
  // src/modules/supply/googleSheetPool.ts
3273
3325
  var googleSheetPool_exports = {};
3274
3326
  __export(googleSheetPool_exports, {
3275
- default: () => Repository83
3327
+ default: () => Repository84
3276
3328
  });
3277
- var Repository83 = class {
3329
+ var Repository84 = class {
3278
3330
  constructor({ api, route }) {
3279
3331
  this.api = api;
3280
3332
  this.route = route;
@@ -3287,9 +3339,9 @@ var Repository83 = class {
3287
3339
  // src/modules/supply/orderManagement.ts
3288
3340
  var orderManagement_exports = {};
3289
3341
  __export(orderManagement_exports, {
3290
- default: () => Repository84
3342
+ default: () => Repository85
3291
3343
  });
3292
- var Repository84 = class {
3344
+ var Repository85 = class {
3293
3345
  constructor({ api, route }) {
3294
3346
  this.api = api;
3295
3347
  this.route = route;
@@ -3309,9 +3361,9 @@ var Repository84 = class {
3309
3361
  // src/modules/supply/payment.ts
3310
3362
  var payment_exports = {};
3311
3363
  __export(payment_exports, {
3312
- default: () => Repository85
3364
+ default: () => Repository86
3313
3365
  });
3314
- var Repository85 = class {
3366
+ var Repository86 = class {
3315
3367
  constructor({ api, route }) {
3316
3368
  this.api = api;
3317
3369
  this.route = route;
@@ -3363,9 +3415,9 @@ var Repository85 = class {
3363
3415
  // src/modules/supply/paymentBatch.ts
3364
3416
  var paymentBatch_exports = {};
3365
3417
  __export(paymentBatch_exports, {
3366
- default: () => Repository86
3418
+ default: () => Repository87
3367
3419
  });
3368
- var Repository86 = class {
3420
+ var Repository87 = class {
3369
3421
  constructor({ api, route }) {
3370
3422
  this.api = api;
3371
3423
  this.route = route;
@@ -3410,9 +3462,9 @@ var Repository86 = class {
3410
3462
  // src/modules/supply/preSale.ts
3411
3463
  var preSale_exports = {};
3412
3464
  __export(preSale_exports, {
3413
- default: () => Repository87
3465
+ default: () => Repository88
3414
3466
  });
3415
- var Repository87 = class {
3467
+ var Repository88 = class {
3416
3468
  constructor({ api, route }) {
3417
3469
  this.api = api;
3418
3470
  this.route = route;
@@ -3465,9 +3517,9 @@ var Repository87 = class {
3465
3517
  // src/modules/supply/preSaleProduct.ts
3466
3518
  var preSaleProduct_exports = {};
3467
3519
  __export(preSaleProduct_exports, {
3468
- default: () => Repository88
3520
+ default: () => Repository89
3469
3521
  });
3470
- var Repository88 = class {
3522
+ var Repository89 = class {
3471
3523
  constructor({ api, route }) {
3472
3524
  this.api = api;
3473
3525
  this.route = route;
@@ -3487,9 +3539,9 @@ var Repository88 = class {
3487
3539
  // src/modules/supply/saft.ts
3488
3540
  var saft_exports = {};
3489
3541
  __export(saft_exports, {
3490
- default: () => Repository89
3542
+ default: () => Repository90
3491
3543
  });
3492
- var Repository89 = class {
3544
+ var Repository90 = class {
3493
3545
  constructor({ route }) {
3494
3546
  this.route = route;
3495
3547
  }
@@ -3505,9 +3557,9 @@ var Repository89 = class {
3505
3557
  // src/modules/supply/startDocumentHeaderLastUpdate.ts
3506
3558
  var startDocumentHeaderLastUpdate_exports = {};
3507
3559
  __export(startDocumentHeaderLastUpdate_exports, {
3508
- default: () => Repository90
3560
+ default: () => Repository91
3509
3561
  });
3510
- var Repository90 = class {
3562
+ var Repository91 = class {
3511
3563
  constructor({ api, route }) {
3512
3564
  this.api = api;
3513
3565
  this.route = route;
@@ -3523,9 +3575,9 @@ var Repository90 = class {
3523
3575
  // src/modules/supply/vatValidation.ts
3524
3576
  var vatValidation_exports = {};
3525
3577
  __export(vatValidation_exports, {
3526
- default: () => Repository91
3578
+ default: () => Repository92
3527
3579
  });
3528
- var Repository91 = class {
3580
+ var Repository92 = class {
3529
3581
  constructor({ api, route }) {
3530
3582
  this.api = api;
3531
3583
  this.route = route;
@@ -3546,9 +3598,9 @@ var Repository91 = class {
3546
3598
  // src/modules/supply/workflow.ts
3547
3599
  var workflow_exports = {};
3548
3600
  __export(workflow_exports, {
3549
- default: () => Repository92
3601
+ default: () => Repository93
3550
3602
  });
3551
- var Repository92 = class {
3603
+ var Repository93 = class {
3552
3604
  constructor({ api, route }) {
3553
3605
  this.api = api;
3554
3606
  this.route = route;
@@ -3586,9 +3638,9 @@ var Repository92 = class {
3586
3638
  // src/modules/tickets/channel.ts
3587
3639
  var channel_exports = {};
3588
3640
  __export(channel_exports, {
3589
- default: () => Repository93
3641
+ default: () => Repository94
3590
3642
  });
3591
- var Repository93 = class {
3643
+ var Repository94 = class {
3592
3644
  constructor({ api, route }) {
3593
3645
  this.api = api;
3594
3646
  this.route = route;
@@ -3636,9 +3688,9 @@ var Repository93 = class {
3636
3688
  // src/modules/tickets/clt.ts
3637
3689
  var clt_exports = {};
3638
3690
  __export(clt_exports, {
3639
- default: () => Repository94
3691
+ default: () => Repository95
3640
3692
  });
3641
- var Repository94 = class {
3693
+ var Repository95 = class {
3642
3694
  constructor({ api, route }) {
3643
3695
  this.api = api;
3644
3696
  this.route = route;
@@ -3684,9 +3736,9 @@ var Repository94 = class {
3684
3736
  // src/modules/tickets/language.ts
3685
3737
  var language_exports = {};
3686
3738
  __export(language_exports, {
3687
- default: () => Repository95
3739
+ default: () => Repository96
3688
3740
  });
3689
- var Repository95 = class {
3741
+ var Repository96 = class {
3690
3742
  constructor({ api, route }) {
3691
3743
  this.api = api;
3692
3744
  this.route = route;
@@ -3734,9 +3786,9 @@ var Repository95 = class {
3734
3786
  // src/modules/tickets/tickets.ts
3735
3787
  var tickets_exports = {};
3736
3788
  __export(tickets_exports, {
3737
- default: () => Repository96
3789
+ default: () => Repository97
3738
3790
  });
3739
- var Repository96 = class {
3791
+ var Repository97 = class {
3740
3792
  constructor({ api, route }) {
3741
3793
  this.api = api;
3742
3794
  this.route = route;
@@ -3772,9 +3824,9 @@ var Repository96 = class {
3772
3824
  // src/modules/ui/portal.ts
3773
3825
  var portal_exports = {};
3774
3826
  __export(portal_exports, {
3775
- default: () => Repository97
3827
+ default: () => Repository98
3776
3828
  });
3777
- var Repository97 = class {
3829
+ var Repository98 = class {
3778
3830
  constructor({ api, route }) {
3779
3831
  this.api = api;
3780
3832
  this.route = route;
@@ -3801,9 +3853,9 @@ var Repository97 = class {
3801
3853
  // src/modules/ui/sideMenu.ts
3802
3854
  var sideMenu_exports = {};
3803
3855
  __export(sideMenu_exports, {
3804
- default: () => Repository98
3856
+ default: () => Repository99
3805
3857
  });
3806
- var Repository98 = class {
3858
+ var Repository99 = class {
3807
3859
  constructor({ api, route }) {
3808
3860
  this.api = api;
3809
3861
  this.route = route;
@@ -3837,9 +3889,9 @@ var Repository98 = class {
3837
3889
  // src/modules/ui/sidemenuHighlight.ts
3838
3890
  var sidemenuHighlight_exports = {};
3839
3891
  __export(sidemenuHighlight_exports, {
3840
- default: () => Repository99
3892
+ default: () => Repository100
3841
3893
  });
3842
- var Repository99 = class {
3894
+ var Repository100 = class {
3843
3895
  constructor({ api, route }) {
3844
3896
  this.api = api;
3845
3897
  this.route = route;
@@ -3862,9 +3914,9 @@ var Repository99 = class {
3862
3914
  // src/modules/user/bankData.ts
3863
3915
  var bankData_exports = {};
3864
3916
  __export(bankData_exports, {
3865
- default: () => Repository100
3917
+ default: () => Repository101
3866
3918
  });
3867
- var Repository100 = class {
3919
+ var Repository101 = class {
3868
3920
  constructor({ api, route }) {
3869
3921
  this.api = api;
3870
3922
  this.route = route;
@@ -3917,9 +3969,9 @@ var Repository100 = class {
3917
3969
  // src/modules/user/chatSubscriber.ts
3918
3970
  var chatSubscriber_exports = {};
3919
3971
  __export(chatSubscriber_exports, {
3920
- default: () => Repository101
3972
+ default: () => Repository102
3921
3973
  });
3922
- var Repository101 = class {
3974
+ var Repository102 = class {
3923
3975
  constructor({ api, route }) {
3924
3976
  this.api = api;
3925
3977
  this.route = route;
@@ -3993,9 +4045,9 @@ var Repository101 = class {
3993
4045
  // src/modules/user/clients.ts
3994
4046
  var clients_exports = {};
3995
4047
  __export(clients_exports, {
3996
- default: () => Repository102
4048
+ default: () => Repository103
3997
4049
  });
3998
- var Repository102 = class {
4050
+ var Repository103 = class {
3999
4051
  constructor({ api, route }) {
4000
4052
  this.api = api;
4001
4053
  this.route = route;
@@ -4063,9 +4115,9 @@ var Repository102 = class {
4063
4115
  // src/modules/user/clientType.ts
4064
4116
  var clientType_exports = {};
4065
4117
  __export(clientType_exports, {
4066
- default: () => Repository103
4118
+ default: () => Repository104
4067
4119
  });
4068
- var Repository103 = class {
4120
+ var Repository104 = class {
4069
4121
  constructor({ api, route }) {
4070
4122
  this.api = api;
4071
4123
  this.route = route;
@@ -4118,9 +4170,9 @@ var Repository103 = class {
4118
4170
  // src/modules/user/commissioner.ts
4119
4171
  var commissioner_exports = {};
4120
4172
  __export(commissioner_exports, {
4121
- default: () => Repository104
4173
+ default: () => Repository105
4122
4174
  });
4123
- var Repository104 = class {
4175
+ var Repository105 = class {
4124
4176
  constructor({ api, route }) {
4125
4177
  this.api = api;
4126
4178
  this.route = route;
@@ -4182,9 +4234,9 @@ var Repository104 = class {
4182
4234
  // src/modules/user/country.ts
4183
4235
  var country_exports = {};
4184
4236
  __export(country_exports, {
4185
- default: () => Repository105
4237
+ default: () => Repository106
4186
4238
  });
4187
- var Repository105 = class {
4239
+ var Repository106 = class {
4188
4240
  constructor({ api, route }) {
4189
4241
  this.api = api;
4190
4242
  this.route = route;
@@ -4246,9 +4298,9 @@ var Repository105 = class {
4246
4298
  // src/modules/user/deliveryMethods.ts
4247
4299
  var deliveryMethods_exports = {};
4248
4300
  __export(deliveryMethods_exports, {
4249
- default: () => Repository106
4301
+ default: () => Repository107
4250
4302
  });
4251
- var Repository106 = class {
4303
+ var Repository107 = class {
4252
4304
  constructor({ api, route }) {
4253
4305
  this.api = api;
4254
4306
  this.route = route;
@@ -4296,9 +4348,9 @@ var Repository106 = class {
4296
4348
  // src/modules/user/favorites.ts
4297
4349
  var favorites_exports = {};
4298
4350
  __export(favorites_exports, {
4299
- default: () => Repository107
4351
+ default: () => Repository108
4300
4352
  });
4301
- var Repository107 = class {
4353
+ var Repository108 = class {
4302
4354
  constructor({ api, route }) {
4303
4355
  this.api = api;
4304
4356
  this.route = route;
@@ -4332,9 +4384,9 @@ var Repository107 = class {
4332
4384
  // src/modules/user/language.ts
4333
4385
  var language_exports2 = {};
4334
4386
  __export(language_exports2, {
4335
- default: () => Repository108
4387
+ default: () => Repository109
4336
4388
  });
4337
- var Repository108 = class {
4389
+ var Repository109 = class {
4338
4390
  constructor({ api, route }) {
4339
4391
  this.api = api;
4340
4392
  this.route = route;
@@ -4390,9 +4442,9 @@ var Repository108 = class {
4390
4442
  // src/modules/user/maturityDates.ts
4391
4443
  var maturityDates_exports = {};
4392
4444
  __export(maturityDates_exports, {
4393
- default: () => Repository109
4445
+ default: () => Repository110
4394
4446
  });
4395
- var Repository109 = class {
4447
+ var Repository110 = class {
4396
4448
  constructor({ api, route }) {
4397
4449
  this.api = api;
4398
4450
  this.route = route;
@@ -4440,9 +4492,9 @@ var Repository109 = class {
4440
4492
  // src/modules/user/password.ts
4441
4493
  var password_exports = {};
4442
4494
  __export(password_exports, {
4443
- default: () => Repository110
4495
+ default: () => Repository111
4444
4496
  });
4445
- var Repository110 = class {
4497
+ var Repository111 = class {
4446
4498
  constructor({ api, route }) {
4447
4499
  this.api = api;
4448
4500
  this.route = route;
@@ -4465,9 +4517,9 @@ var Repository110 = class {
4465
4517
  // src/modules/user/paymentMethods.ts
4466
4518
  var paymentMethods_exports = {};
4467
4519
  __export(paymentMethods_exports, {
4468
- default: () => Repository111
4520
+ default: () => Repository112
4469
4521
  });
4470
- var Repository111 = class {
4522
+ var Repository112 = class {
4471
4523
  constructor({ api, route }) {
4472
4524
  this.api = api;
4473
4525
  this.route = route;
@@ -4515,9 +4567,9 @@ var Repository111 = class {
4515
4567
  // src/modules/user/persona.ts
4516
4568
  var persona_exports = {};
4517
4569
  __export(persona_exports, {
4518
- default: () => Repository112
4570
+ default: () => Repository113
4519
4571
  });
4520
- var Repository112 = class {
4572
+ var Repository113 = class {
4521
4573
  constructor({ api, route }) {
4522
4574
  this.api = api;
4523
4575
  this.route = route;
@@ -4595,9 +4647,9 @@ var Repository112 = class {
4595
4647
  // src/modules/user/provider.ts
4596
4648
  var provider_exports = {};
4597
4649
  __export(provider_exports, {
4598
- default: () => Repository113
4650
+ default: () => Repository114
4599
4651
  });
4600
- var Repository113 = class {
4652
+ var Repository114 = class {
4601
4653
  constructor({ api, route }) {
4602
4654
  this.api = api;
4603
4655
  this.route = route;
@@ -4674,9 +4726,9 @@ var Repository113 = class {
4674
4726
  // src/modules/user/providerType.ts
4675
4727
  var providerType_exports = {};
4676
4728
  __export(providerType_exports, {
4677
- default: () => Repository114
4729
+ default: () => Repository115
4678
4730
  });
4679
- var Repository114 = class {
4731
+ var Repository115 = class {
4680
4732
  constructor({ api, route }) {
4681
4733
  this.api = api;
4682
4734
  this.route = route;
@@ -4732,9 +4784,9 @@ var Repository114 = class {
4732
4784
  // src/modules/user/purchaseCondition.ts
4733
4785
  var purchaseCondition_exports = {};
4734
4786
  __export(purchaseCondition_exports, {
4735
- default: () => Repository115
4787
+ default: () => Repository116
4736
4788
  });
4737
- var Repository115 = class {
4789
+ var Repository116 = class {
4738
4790
  constructor({ api, route }) {
4739
4791
  this.api = api;
4740
4792
  this.route = route;
@@ -4790,9 +4842,9 @@ var Repository115 = class {
4790
4842
  // src/modules/user/reasonForExemption.ts
4791
4843
  var reasonForExemption_exports = {};
4792
4844
  __export(reasonForExemption_exports, {
4793
- default: () => Repository116
4845
+ default: () => Repository117
4794
4846
  });
4795
- var Repository116 = class {
4847
+ var Repository117 = class {
4796
4848
  constructor({ api, route }) {
4797
4849
  this.api = api;
4798
4850
  this.route = route;
@@ -4842,9 +4894,9 @@ var Repository116 = class {
4842
4894
  // src/modules/user/refreshToken.ts
4843
4895
  var refreshToken_exports = {};
4844
4896
  __export(refreshToken_exports, {
4845
- default: () => Repository117
4897
+ default: () => Repository118
4846
4898
  });
4847
- var Repository117 = class {
4899
+ var Repository118 = class {
4848
4900
  constructor({ api, route }) {
4849
4901
  this.api = api;
4850
4902
  this.route = route;
@@ -4861,9 +4913,9 @@ var Repository117 = class {
4861
4913
  // src/modules/user/segmentsArea.ts
4862
4914
  var segmentsArea_exports = {};
4863
4915
  __export(segmentsArea_exports, {
4864
- default: () => Repository118
4916
+ default: () => Repository119
4865
4917
  });
4866
- var Repository118 = class {
4918
+ var Repository119 = class {
4867
4919
  constructor({ api, route }) {
4868
4920
  this.api = api;
4869
4921
  this.route = route;
@@ -4916,9 +4968,9 @@ var Repository118 = class {
4916
4968
  // src/modules/user/sessions.ts
4917
4969
  var sessions_exports = {};
4918
4970
  __export(sessions_exports, {
4919
- default: () => Repository119
4971
+ default: () => Repository120
4920
4972
  });
4921
- var Repository119 = class {
4973
+ var Repository120 = class {
4922
4974
  constructor({ api, route }) {
4923
4975
  this.api = api;
4924
4976
  this.route = route;
@@ -4938,9 +4990,9 @@ var Repository119 = class {
4938
4990
  // src/modules/user/shippings.ts
4939
4991
  var shippings_exports = {};
4940
4992
  __export(shippings_exports, {
4941
- default: () => Repository120
4993
+ default: () => Repository121
4942
4994
  });
4943
- var Repository120 = class {
4995
+ var Repository121 = class {
4944
4996
  constructor({ api, route }) {
4945
4997
  this.api = api;
4946
4998
  this.route = route;
@@ -4996,9 +5048,9 @@ var Repository120 = class {
4996
5048
  // src/modules/user/storeOperator.ts
4997
5049
  var storeOperator_exports = {};
4998
5050
  __export(storeOperator_exports, {
4999
- default: () => Repository121
5051
+ default: () => Repository122
5000
5052
  });
5001
- var Repository121 = class {
5053
+ var Repository122 = class {
5002
5054
  constructor({ api, route }) {
5003
5055
  this.api = api;
5004
5056
  this.route = route;
@@ -5040,9 +5092,9 @@ var Repository121 = class {
5040
5092
  // src/modules/user/swift.ts
5041
5093
  var swift_exports = {};
5042
5094
  __export(swift_exports, {
5043
- default: () => Repository122
5095
+ default: () => Repository123
5044
5096
  });
5045
- var Repository122 = class {
5097
+ var Repository123 = class {
5046
5098
  constructor({ api, route }) {
5047
5099
  this.api = api;
5048
5100
  this.route = route;
@@ -5098,9 +5150,9 @@ var Repository122 = class {
5098
5150
  // src/modules/user/systemModule.ts
5099
5151
  var systemModule_exports = {};
5100
5152
  __export(systemModule_exports, {
5101
- default: () => Repository123
5153
+ default: () => Repository124
5102
5154
  });
5103
- var Repository123 = class {
5155
+ var Repository124 = class {
5104
5156
  constructor({ api, route }) {
5105
5157
  this.api = api;
5106
5158
  this.route = route;
@@ -5123,9 +5175,9 @@ var Repository123 = class {
5123
5175
  // src/modules/user/tenant.ts
5124
5176
  var tenant_exports = {};
5125
5177
  __export(tenant_exports, {
5126
- default: () => Repository124
5178
+ default: () => Repository125
5127
5179
  });
5128
- var Repository124 = class {
5180
+ var Repository125 = class {
5129
5181
  constructor({ api, route }) {
5130
5182
  this.api = api;
5131
5183
  this.route = route;
@@ -5161,9 +5213,9 @@ var Repository124 = class {
5161
5213
  // src/modules/user/theme.ts
5162
5214
  var theme_exports = {};
5163
5215
  __export(theme_exports, {
5164
- default: () => Repository125
5216
+ default: () => Repository126
5165
5217
  });
5166
- var Repository125 = class {
5218
+ var Repository126 = class {
5167
5219
  constructor({ api, route }) {
5168
5220
  this.api = api;
5169
5221
  this.route = route;
@@ -5245,9 +5297,9 @@ var TimesheetRepository = class {
5245
5297
  // src/modules/user/user.ts
5246
5298
  var user_exports = {};
5247
5299
  __export(user_exports, {
5248
- default: () => Repository126
5300
+ default: () => Repository127
5249
5301
  });
5250
- var Repository126 = class {
5302
+ var Repository127 = class {
5251
5303
  constructor({ api, route }) {
5252
5304
  this.api = api;
5253
5305
  this.route = route;
@@ -5308,9 +5360,9 @@ var Repository126 = class {
5308
5360
  // src/modules/user/userPositions.ts
5309
5361
  var userPositions_exports = {};
5310
5362
  __export(userPositions_exports, {
5311
- default: () => Repository127
5363
+ default: () => Repository128
5312
5364
  });
5313
- var Repository127 = class {
5365
+ var Repository128 = class {
5314
5366
  constructor({ api, route }) {
5315
5367
  this.api = api;
5316
5368
  this.route = route;
@@ -5363,9 +5415,9 @@ var Repository127 = class {
5363
5415
  // src/modules/user/vehicles.ts
5364
5416
  var vehicles_exports = {};
5365
5417
  __export(vehicles_exports, {
5366
- default: () => Repository128
5418
+ default: () => Repository129
5367
5419
  });
5368
- var Repository128 = class {
5420
+ var Repository129 = class {
5369
5421
  constructor({ api, route }) {
5370
5422
  this.api = api;
5371
5423
  this.route = route;
@@ -5401,9 +5453,9 @@ var Repository128 = class {
5401
5453
  // src/modules/view/adminPanel.ts
5402
5454
  var adminPanel_exports = {};
5403
5455
  __export(adminPanel_exports, {
5404
- default: () => Repository129
5456
+ default: () => Repository130
5405
5457
  });
5406
- var Repository129 = class {
5458
+ var Repository130 = class {
5407
5459
  constructor({ api, route }) {
5408
5460
  this.api = api;
5409
5461
  this.route = route;
@@ -5420,9 +5472,9 @@ var Repository129 = class {
5420
5472
  // src/modules/view/errorLog.ts
5421
5473
  var errorLog_exports = {};
5422
5474
  __export(errorLog_exports, {
5423
- default: () => Repository130
5475
+ default: () => Repository131
5424
5476
  });
5425
- var Repository130 = class {
5477
+ var Repository131 = class {
5426
5478
  constructor({ api, route }) {
5427
5479
  this.api = api;
5428
5480
  this.route = route;
@@ -5612,26 +5664,26 @@ var API = class {
5612
5664
  route: `${this.services[service]}${module}/`
5613
5665
  });
5614
5666
  this.WebSocket = new Service(getModuleParams("view", "ws"));
5615
- this.BankData = new Repository100(
5667
+ this.BankData = new Repository101(
5616
5668
  getModuleParams("users", Nomalism.BankData.Route)
5617
5669
  );
5618
- this.Client = new Repository102(
5670
+ this.Client = new Repository103(
5619
5671
  getModuleParams("users", Nomalism.Client.Route)
5620
5672
  );
5621
- this.ClientType = new Repository103(
5673
+ this.ClientType = new Repository104(
5622
5674
  getModuleParams("users", Nomalism.ClientType.Route)
5623
5675
  );
5624
5676
  this.Chat = new Repository40(getModuleParams("stock", Nomalism.Chat.Route));
5625
- this.Commissioner = new Repository104(
5677
+ this.Commissioner = new Repository105(
5626
5678
  getModuleParams("users", Nomalism.Commissioner.Route)
5627
5679
  );
5628
- this.Country = new Repository105(
5680
+ this.Country = new Repository106(
5629
5681
  getModuleParams("users", Nomalism.Country.Route)
5630
5682
  );
5631
- this.DocumentHeader = new Repository70(
5683
+ this.DocumentHeader = new Repository71(
5632
5684
  getModuleParams("stock", Nomalism.DocumentHeader.Route)
5633
5685
  );
5634
- this.DocumentHeaderHistory = new Repository71(
5686
+ this.DocumentHeaderHistory = new Repository72(
5635
5687
  getModuleParams("stock", Nomalism.DocumentHeaderHistory.Route)
5636
5688
  );
5637
5689
  this.BillOfLading = new Repository(
@@ -5655,26 +5707,26 @@ var API = class {
5655
5707
  this.ProviderServiceInvoice = new Repository14(
5656
5708
  getModuleParams("stock", Nomalism.ProviderServiceInvoice.Route)
5657
5709
  );
5658
- this.DocumentLine = new Repository74(
5710
+ this.DocumentLine = new Repository75(
5659
5711
  getModuleParams("stock", Nomalism.DocumentLine.Route)
5660
5712
  );
5661
- this.DocumentLineAssoc = new Repository75(
5713
+ this.DocumentLineAssoc = new Repository76(
5662
5714
  getModuleParams("stock", Nomalism.DocumentLineAssoc.Route)
5663
5715
  );
5664
- this.DocumentType = new Repository80(
5716
+ this.DocumentType = new Repository81(
5665
5717
  getModuleParams("stock", Nomalism.DocumentType.Route)
5666
5718
  );
5667
- this.Favorites = new Repository107(
5719
+ this.Favorites = new Repository108(
5668
5720
  getModuleParams("users", Nomalism.Favorites.Route)
5669
5721
  );
5670
- this.File = new Repository43(getModuleParams("stock", Nomalism.File.Route));
5722
+ this.File = new Repository44(getModuleParams("stock", Nomalism.File.Route));
5671
5723
  this.GoogleSheets = new Repository26(
5672
5724
  getModuleParams("integration", Nomalism.GoogleSheets.Route)
5673
5725
  );
5674
- this.Language = new Repository108(
5726
+ this.Language = new Repository109(
5675
5727
  getModuleParams("users", Nomalism.Language.Route)
5676
5728
  );
5677
- this.Location = new Repository46(
5729
+ this.Location = new Repository47(
5678
5730
  getModuleParams("stock", Nomalism.Location.Route)
5679
5731
  );
5680
5732
  this.Multimedia = new Repository20(
@@ -5686,108 +5738,108 @@ var API = class {
5686
5738
  this.ObservationType = new Repository28(
5687
5739
  getModuleParams("integration", Nomalism.ObservationType.Route)
5688
5740
  );
5689
- this.Password = new Repository110(
5741
+ this.Password = new Repository111(
5690
5742
  getModuleParams("users", Nomalism.Password.Route)
5691
5743
  );
5692
- this.ProductImage = new Repository49(
5744
+ this.ProductImage = new Repository50(
5693
5745
  getModuleParams("stock", Nomalism.ProductImage.Route)
5694
5746
  );
5695
- this.Promotion = new Repository51(
5747
+ this.Promotion = new Repository52(
5696
5748
  getModuleParams("stock", Nomalism.Promotion.Route)
5697
5749
  );
5698
- this.PromotionAssoc = new Repository52(
5750
+ this.PromotionAssoc = new Repository53(
5699
5751
  getModuleParams("stock", Nomalism.PromotionAssoc.Route)
5700
5752
  );
5701
- this.Providers = new Repository113(
5753
+ this.Providers = new Repository114(
5702
5754
  getModuleParams("users", Nomalism.Providers.Route)
5703
5755
  );
5704
- this.ProviderType = new Repository114(
5756
+ this.ProviderType = new Repository115(
5705
5757
  getModuleParams("users", Nomalism.ProviderType.Route)
5706
5758
  );
5707
- this.PurchaseConditions = new Repository115(
5759
+ this.PurchaseConditions = new Repository116(
5708
5760
  getModuleParams("users", Nomalism.PurchaseConditions.Route)
5709
5761
  );
5710
- this.ReasonForExemption = new Repository116(
5762
+ this.ReasonForExemption = new Repository117(
5711
5763
  getModuleParams("users", Nomalism.ReasonForExemption.Route)
5712
5764
  );
5713
- this.RefreshToken = new Repository117(
5765
+ this.RefreshToken = new Repository118(
5714
5766
  getModuleParams("users", Nomalism.RefreshToken.Route)
5715
5767
  );
5716
- this.SegmentsArea = new Repository118(
5768
+ this.SegmentsArea = new Repository119(
5717
5769
  getModuleParams("users", Nomalism.SegmentsArea.Route)
5718
5770
  );
5719
- this.Sessions = new Repository119(
5771
+ this.Sessions = new Repository120(
5720
5772
  getModuleParams("users", Nomalism.Sessions.Route)
5721
5773
  );
5722
- this.Shippings = new Repository120(
5774
+ this.Shippings = new Repository121(
5723
5775
  getModuleParams("users", Nomalism.Shippings.Route)
5724
5776
  );
5725
- this.StoreOperator = new Repository121(
5777
+ this.StoreOperator = new Repository122(
5726
5778
  getModuleParams("users", Nomalism.StoreOperator.Route)
5727
5779
  );
5728
- this.SystemModule = new Repository123(
5780
+ this.SystemModule = new Repository124(
5729
5781
  getModuleParams("users", Nomalism.SystemModule.Route)
5730
5782
  );
5731
- this.Swift = new Repository122(getModuleParams("users", Nomalism.Swift.Route));
5732
- this.TypeOfLocation = new Repository65(
5783
+ this.Swift = new Repository123(getModuleParams("users", Nomalism.Swift.Route));
5784
+ this.TypeOfLocation = new Repository66(
5733
5785
  getModuleParams("stock", Nomalism.TypeOfLocation.Route)
5734
5786
  );
5735
- this.UnitOfMeasure = new Repository66(
5787
+ this.UnitOfMeasure = new Repository67(
5736
5788
  getModuleParams("stock", Nomalism.UnitOfMeasure.Route)
5737
5789
  );
5738
- this.UserPositions = new Repository127(
5790
+ this.UserPositions = new Repository128(
5739
5791
  getModuleParams("users", Nomalism.UserPositions.Route)
5740
5792
  );
5741
- this.Users = new Repository126(getModuleParams("users", Nomalism.Users.Route));
5742
- this.VatTax = new Repository67(
5793
+ this.Users = new Repository127(getModuleParams("users", Nomalism.Users.Route));
5794
+ this.VatTax = new Repository68(
5743
5795
  getModuleParams("stock", Nomalism.VatTax.Route)
5744
5796
  );
5745
- this.VatTaxZone = new Repository68(
5797
+ this.VatTaxZone = new Repository69(
5746
5798
  getModuleParams("stock", Nomalism.VatTaxZone.Route)
5747
5799
  );
5748
- this.Workflow = new Repository92(
5800
+ this.Workflow = new Repository93(
5749
5801
  getModuleParams("stock", Nomalism.Workflow.Route)
5750
5802
  );
5751
- this.DeliveryMethods = new Repository106(
5803
+ this.DeliveryMethods = new Repository107(
5752
5804
  getModuleParams("users", Nomalism.DeliveryMethods.Route)
5753
5805
  );
5754
- this.MaturityDates = new Repository109(
5806
+ this.MaturityDates = new Repository110(
5755
5807
  getModuleParams("users", Nomalism.MaturityDates.Route)
5756
5808
  );
5757
- this.PaymentMethods = new Repository111(
5809
+ this.PaymentMethods = new Repository112(
5758
5810
  getModuleParams("users", Nomalism.PaymentMethods.Route)
5759
5811
  );
5760
- this.Vehicles = new Repository128(
5812
+ this.Vehicles = new Repository129(
5761
5813
  getModuleParams("users", Nomalism.Vehicles.Route)
5762
5814
  );
5763
- this.ExternalDocumentType = new Repository82(
5815
+ this.ExternalDocumentType = new Repository83(
5764
5816
  getModuleParams("stock", Nomalism.ExternalDocumentType.Route)
5765
5817
  );
5766
- this.DocumentSet = new Repository79(
5818
+ this.DocumentSet = new Repository80(
5767
5819
  getModuleParams("stock", Nomalism.DocumentSet.Route)
5768
5820
  );
5769
- this.Payment = new Repository85(
5821
+ this.Payment = new Repository86(
5770
5822
  getModuleParams("stock", Nomalism.Payment.Route)
5771
5823
  );
5772
- this.ExternalDocumentHeader = new Repository81(
5824
+ this.ExternalDocumentHeader = new Repository82(
5773
5825
  getModuleParams("stock", Nomalism.ExternalDocumentHeader.Route)
5774
5826
  );
5775
- this.VatValidation = new Repository91(
5827
+ this.VatValidation = new Repository92(
5776
5828
  getModuleParams("stock", Nomalism.VatValidation.Route)
5777
5829
  );
5778
- this.StockMovement = new Repository60(
5830
+ this.StockMovement = new Repository61(
5779
5831
  getModuleParams("stock", Nomalism.StockMovement.Route)
5780
5832
  );
5781
- this.Tenant = new Repository124(
5833
+ this.Tenant = new Repository125(
5782
5834
  getModuleParams("users", Nomalism.Tenant.Route)
5783
5835
  );
5784
- this.PreSale = new Repository87(
5836
+ this.PreSale = new Repository88(
5785
5837
  getModuleParams("stock", Nomalism.PreSale.Route)
5786
5838
  );
5787
- this.PreSaleProduct = new Repository88(
5839
+ this.PreSaleProduct = new Repository89(
5788
5840
  getModuleParams("stock", Nomalism.PreSaleProduct.Route)
5789
5841
  );
5790
- this.OrderManagement = new Repository84(
5842
+ this.OrderManagement = new Repository85(
5791
5843
  getModuleParams("stock", Nomalism.OrderManagement.Route)
5792
5844
  );
5793
5845
  this.Npc = new Repository33(getModuleParams("print", Nomalism.Npc.Route));
@@ -5797,19 +5849,19 @@ var API = class {
5797
5849
  this.SchedulePrintJob = new Repository35(
5798
5850
  getModuleParams("print", Nomalism.SchedulePrintJob.Route)
5799
5851
  );
5800
- this.QueryList = new Repository53(
5852
+ this.QueryList = new Repository54(
5801
5853
  getModuleParams("stock", Nomalism.QueryList.Route)
5802
5854
  );
5803
- this.QueryParameter = new Repository54(
5855
+ this.QueryParameter = new Repository55(
5804
5856
  getModuleParams("stock", Nomalism.QueryParameter.Route)
5805
5857
  );
5806
- this.ReturnReason = new Repository56(
5858
+ this.ReturnReason = new Repository57(
5807
5859
  getModuleParams("stock", Nomalism.ReturnReason.Route)
5808
5860
  );
5809
5861
  this.PropostaSheets = new Repository11(
5810
5862
  getModuleParams("stock", Nomalism.PropostaSheets.Route)
5811
5863
  );
5812
- this.Schedule = new Repository59(
5864
+ this.Schedule = new Repository60(
5813
5865
  getModuleParams("stock", Nomalism.Schedule.Route)
5814
5866
  );
5815
5867
  this.GoogleFilePermission = new Repository25(
@@ -5818,20 +5870,20 @@ var API = class {
5818
5870
  this.Settings = new Repository31(
5819
5871
  getModuleParams("integration", Nomalism.Settings.Route)
5820
5872
  );
5821
- this.Tickets = new Repository96(
5873
+ this.Tickets = new Repository97(
5822
5874
  getModuleParams("tickets", Nomalism.Tickets.Route)
5823
5875
  );
5824
- this.Channel = new Repository93(
5876
+ this.Channel = new Repository94(
5825
5877
  getModuleParams("tickets", Nomalism.Channel.Route)
5826
5878
  );
5827
- this.TicketsLanguage = new Repository95(
5879
+ this.TicketsLanguage = new Repository96(
5828
5880
  getModuleParams("tickets", Nomalism.TicketsLanguage.Route)
5829
5881
  );
5830
- this.Clt = new Repository94(getModuleParams("tickets", Nomalism.CLT.Route));
5831
- this.StartDocumentHeaderLastUpdate = new Repository90(
5882
+ this.Clt = new Repository95(getModuleParams("tickets", Nomalism.CLT.Route));
5883
+ this.StartDocumentHeaderLastUpdate = new Repository91(
5832
5884
  getModuleParams("stock", Nomalism.StartDocumentHeaderLastUpdate.Route)
5833
5885
  );
5834
- this.Persona = new Repository112(
5886
+ this.Persona = new Repository113(
5835
5887
  getModuleParams("users", Nomalism.Persona.Route)
5836
5888
  );
5837
5889
  this.ProjectInfo = new Repository30(
@@ -5850,7 +5902,7 @@ var API = class {
5850
5902
  this.UpfrontReturn = new Repository19(
5851
5903
  getModuleParams("stock", Nomalism.UpfrontReturn.Route)
5852
5904
  );
5853
- this.SavedEmPicking = new Repository57(
5905
+ this.SavedEmPicking = new Repository58(
5854
5906
  getModuleParams("stock", Nomalism.SavedEmPicking.Route)
5855
5907
  );
5856
5908
  this.EmailTemplate = new Repository22(
@@ -5859,7 +5911,7 @@ var API = class {
5859
5911
  this.EmailTemplateAttachment = new Repository23(
5860
5912
  getModuleParams("integration", Nomalism.EmailTemplateAttachment.Route)
5861
5913
  );
5862
- this.Prison = new Repository47(
5914
+ this.Prison = new Repository48(
5863
5915
  getModuleParams("stock", Nomalism.Prison.Route)
5864
5916
  );
5865
5917
  this.Quebra = new Repository16(
@@ -5877,73 +5929,76 @@ var API = class {
5877
5929
  this.EmailLog = new Repository21(
5878
5930
  getModuleParams("integration", Nomalism.EmailLog.Route)
5879
5931
  );
5880
- this.DocumentLineNote = new Repository77(
5932
+ this.DocumentLineNote = new Repository78(
5881
5933
  getModuleParams("stock", Nomalism.DocumentLineNote.Route)
5882
5934
  );
5883
- this.SavedProviderProposal = new Repository58(
5935
+ this.SavedProviderProposal = new Repository59(
5884
5936
  getModuleParams("stock", Nomalism.SavedProviderProposal.Route)
5885
5937
  );
5886
- this.ProductGoogleSheets = new Repository48(
5938
+ this.ProductGoogleSheets = new Repository49(
5887
5939
  getModuleParams("stock", Nomalism.ProductGoogleSheets.Route)
5888
5940
  );
5889
- this.Task = new Repository62(getModuleParams("stock", Nomalism.Task.Route));
5890
- this.TaskMessage = new Repository63(
5941
+ this.Task = new Repository63(getModuleParams("stock", Nomalism.Task.Route));
5942
+ this.TaskMessage = new Repository64(
5891
5943
  getModuleParams("stock", Nomalism.TaskMessage.Route)
5892
5944
  );
5893
- this.RecurrentTasks = new Repository55(
5945
+ this.RecurrentTasks = new Repository56(
5894
5946
  getModuleParams("stock", Nomalism.RecurrentTasks.Route)
5895
5947
  );
5896
- this.TaskRead = new Repository64(
5948
+ this.TaskRead = new Repository65(
5897
5949
  getModuleParams("stock", Nomalism.TaskRead.Route)
5898
5950
  );
5899
- this.Theme = new Repository125(getModuleParams("users", Nomalism.Theme.Route));
5951
+ this.Theme = new Repository126(getModuleParams("users", Nomalism.Theme.Route));
5900
5952
  this.Dashboard = new Repository42(
5901
5953
  getModuleParams("stock", Nomalism.Dashboard.Route)
5902
5954
  );
5903
5955
  this.ChatRapidMessage = new Repository41(
5904
5956
  getModuleParams("stock", Nomalism.ChatRapidMessage.Route)
5905
5957
  );
5906
- this.SideMenu = new Repository98(
5958
+ this.SideMenu = new Repository99(
5907
5959
  getModuleParams("stock", Nomalism.SideMenu.Route)
5908
5960
  );
5909
- this.SidemenuHighlight = new Repository99(
5961
+ this.SidemenuHighlight = new Repository100(
5910
5962
  getModuleParams("stock", Nomalism.SidemenuHighlight.Route)
5911
5963
  );
5912
- this.ErrorLog = new Repository130(
5964
+ this.ErrorLog = new Repository131(
5913
5965
  getModuleParams("view", Nomalism.ErrorLog.Route)
5914
5966
  );
5915
- this.AdminPanel = new Repository129(
5967
+ this.AdminPanel = new Repository130(
5916
5968
  getModuleParams("view", Nomalism.AdminPanel.Route)
5917
5969
  );
5918
- this.DocumentLineRm = new Repository78(
5970
+ this.DocumentLineRm = new Repository79(
5919
5971
  getModuleParams("stock", Nomalism.DocumentLineRm.Route)
5920
5972
  );
5921
- this.DocumentLineMt = new Repository76(
5973
+ this.DocumentLineMt = new Repository77(
5922
5974
  getModuleParams("stock", Nomalism.DocumentLineMt.Route)
5923
5975
  );
5924
- this.ChatSubscriber = new Repository101(
5976
+ this.ChatSubscriber = new Repository102(
5925
5977
  getModuleParams("users", Nomalism.ChatSubscriber.Route)
5926
5978
  );
5927
- this.Tag = new Repository61(getModuleParams("stock", Nomalism.Tag.Route));
5928
- this.Gmails = new Repository44(
5979
+ this.Tag = new Repository62(getModuleParams("stock", Nomalism.Tag.Route));
5980
+ this.Gmails = new Repository45(
5929
5981
  getModuleParams("stock", Nomalism.Gmails.Route)
5930
5982
  );
5983
+ this.EmailAccount = new Repository43(
5984
+ getModuleParams("stock", Nomalism.EmailAccount.Route)
5985
+ );
5931
5986
  this.NPF = new Repository5(getModuleParams("stock", Nomalism.NPF.Route));
5932
5987
  this.NRCL = new Repository6(getModuleParams("stock", Nomalism.NRCL.Route));
5933
- this.PaymentBatch = new Repository86(
5988
+ this.PaymentBatch = new Repository87(
5934
5989
  getModuleParams("stock", Nomalism.PaymentBatch.Route)
5935
5990
  );
5936
- this.CurrentAccount = new Repository69(
5991
+ this.CurrentAccount = new Repository70(
5937
5992
  getModuleParams("stock", Nomalism.CurrentAccount.Route)
5938
5993
  );
5939
- this.Portal = new Repository97(
5994
+ this.Portal = new Repository98(
5940
5995
  getModuleParams("stock", Nomalism.Portal.Route)
5941
5996
  );
5942
- this.Saft = new Repository89(getModuleParams("stock", "saft"));
5997
+ this.Saft = new Repository90(getModuleParams("stock", "saft"));
5943
5998
  this.AccountCode = new Repository39(
5944
5999
  getModuleParams("stock", "account_code")
5945
6000
  );
5946
- this.GoogleSheetPool = new Repository83(
6001
+ this.GoogleSheetPool = new Repository84(
5947
6002
  getModuleParams("stock", Nomalism.GoogleSheetPool.Route)
5948
6003
  );
5949
6004
  this.AccountCode = new Repository39(
@@ -5953,16 +6008,16 @@ var API = class {
5953
6008
  this.PatchNotes = new Repository29(
5954
6009
  getModuleParams("integration", Nomalism.PatchNotes.Route)
5955
6010
  );
5956
- this.DocumentHeaderSurvey = new Repository73(
6011
+ this.DocumentHeaderSurvey = new Repository74(
5957
6012
  getModuleParams("stock", Nomalism.DocumentHeaderSurvey.Route)
5958
6013
  );
5959
- this.DocumentHeaderSubscriber = new Repository72(
6014
+ this.DocumentHeaderSubscriber = new Repository73(
5960
6015
  getModuleParams("stock", Nomalism.DocumentHeaderSubscriber.Route)
5961
6016
  );
5962
- this.GoogleCalendar = new Repository45(
6017
+ this.GoogleCalendar = new Repository46(
5963
6018
  getModuleParams("stock", Nomalism.GoogleCalendar.Route)
5964
6019
  );
5965
- this.ProductLocation = new Repository50(
6020
+ this.ProductLocation = new Repository51(
5966
6021
  getModuleParams("stock", Nomalism.ProductLocation.Route)
5967
6022
  );
5968
6023
  this.TimeSheet = new TimesheetRepository(