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