@nomalism-com/api 0.47.11 → 0.47.12

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