@nomalism-com/api 0.45.54 → 0.45.56

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
@@ -114,6 +114,7 @@ __export(main_exports, {
114
114
  Theme: () => theme_exports,
115
115
  Tickets: () => tickets_exports,
116
116
  TicketsLanguage: () => language_exports2,
117
+ TimeSheet: () => timeSheet_exports,
117
118
  Transformado: () => transformado_exports,
118
119
  TypeOfLocation: () => typeOfLocation_exports,
119
120
  UnitOfMeasure: () => unitOfMeasure_exports,
@@ -1847,57 +1848,49 @@ var Repository44 = class {
1847
1848
  // src/modules/user/user.ts
1848
1849
  var user_exports = {};
1849
1850
  __export(user_exports, {
1850
- default: () => TimesheetRepository
1851
+ default: () => Repository45
1851
1852
  });
1852
- var TimesheetRepository = class {
1853
+ var Repository45 = class {
1853
1854
  constructor({ api, route }) {
1854
1855
  this.api = api;
1855
- this.route = route.endsWith("/") ? route : `${route}/`;
1856
+ this.route = route;
1856
1857
  }
1857
- // ==========================================
1858
- // METODOS: TimeSheetDay (Cabeçalho do Dia)
1859
- // ==========================================
1860
- async findDays(params) {
1858
+ async find(params) {
1861
1859
  const response = await this.api.get(`${this.route}`, { params });
1862
1860
  return response.data;
1863
1861
  }
1864
- async findDayById(selector) {
1865
- const response = await this.api.get(`${this.route}${selector.id}`);
1866
- return response.data;
1867
- }
1868
- async createDay(body) {
1869
- const response = await this.api.post(`${this.route}`, body);
1862
+ async findPaginated(params) {
1863
+ const response = await this.api.get(`${this.route}paginated`, { params });
1870
1864
  return response.data;
1871
1865
  }
1872
- async updateDay(selector, body) {
1873
- const response = await this.api.put(`${this.route}${selector.id}`, body);
1866
+ async findMinified(params) {
1867
+ const response = await this.api.get(`${this.route}minified`, {
1868
+ params
1869
+ });
1874
1870
  return response.data;
1875
1871
  }
1876
- async deleteDay(selector) {
1877
- const response = await this.api.delete(`${this.route}${selector.id}`);
1872
+ async findById(selector) {
1873
+ const response = await this.api.get(`${this.route}${selector.id}`);
1878
1874
  return response.data;
1879
1875
  }
1880
- // ==========================================
1881
- // METODOS: TimeSheetClock (Picagens Individuais)
1882
- // ==========================================
1883
- async findClocks(params) {
1884
- const response = await this.api.get(`${this.route}clocks`, { params });
1876
+ async create(body) {
1877
+ const response = await this.api.post(`${this.route}`, body);
1885
1878
  return response.data;
1886
1879
  }
1887
- async findClockById(selector) {
1888
- const response = await this.api.get(`${this.route}clocks/${selector.id}`);
1880
+ async update(selector, body) {
1881
+ const response = await this.api.put(`${this.route}${selector.id}`, body);
1889
1882
  return response.data;
1890
1883
  }
1891
- async createClock(body) {
1892
- const response = await this.api.post(`${this.route}clocks`, body);
1884
+ async deleteOne(selector) {
1885
+ const response = await this.api.delete(`${this.route}${selector.id}`);
1893
1886
  return response.data;
1894
1887
  }
1895
- async updateClock(selector, body) {
1896
- const response = await this.api.put(`${this.route}clocks/${selector.id}`, body);
1888
+ async findProvidersWithClientId(body) {
1889
+ const response = await this.api.post(`${this.route}providers`, body);
1897
1890
  return response.data;
1898
1891
  }
1899
- async deleteClock(selector) {
1900
- const response = await this.api.delete(`${this.route}clocks/${selector.id}`);
1892
+ async findFromClientOrProviderId(body) {
1893
+ const response = await this.api.post(`${this.route}from_client_or_provider_id`, body);
1901
1894
  return response.data;
1902
1895
  }
1903
1896
  };
@@ -1905,9 +1898,9 @@ var TimesheetRepository = class {
1905
1898
  // src/modules/stock/vatTax.ts
1906
1899
  var vatTax_exports = {};
1907
1900
  __export(vatTax_exports, {
1908
- default: () => Repository45
1901
+ default: () => Repository46
1909
1902
  });
1910
- var Repository45 = class {
1903
+ var Repository46 = class {
1911
1904
  constructor({ api, route }) {
1912
1905
  this.api = api;
1913
1906
  this.route = route;
@@ -1953,9 +1946,9 @@ var Repository45 = class {
1953
1946
  // src/modules/stock/vatTaxZone.ts
1954
1947
  var vatTaxZone_exports = {};
1955
1948
  __export(vatTaxZone_exports, {
1956
- default: () => Repository46
1949
+ default: () => Repository47
1957
1950
  });
1958
- var Repository46 = class {
1951
+ var Repository47 = class {
1959
1952
  constructor({ api, route }) {
1960
1953
  this.api = api;
1961
1954
  this.route = route;
@@ -2001,9 +1994,9 @@ var Repository46 = class {
2001
1994
  // src/modules/supply/workflow.ts
2002
1995
  var workflow_exports = {};
2003
1996
  __export(workflow_exports, {
2004
- default: () => Repository47
1997
+ default: () => Repository48
2005
1998
  });
2006
- var Repository47 = class {
1999
+ var Repository48 = class {
2007
2000
  constructor({ api, route }) {
2008
2001
  this.api = api;
2009
2002
  this.route = route;
@@ -2033,9 +2026,9 @@ var Repository47 = class {
2033
2026
  // src/modules/user/deliveryMethods.ts
2034
2027
  var deliveryMethods_exports = {};
2035
2028
  __export(deliveryMethods_exports, {
2036
- default: () => Repository48
2029
+ default: () => Repository49
2037
2030
  });
2038
- var Repository48 = class {
2031
+ var Repository49 = class {
2039
2032
  constructor({ api, route }) {
2040
2033
  this.api = api;
2041
2034
  this.route = route;
@@ -2071,9 +2064,9 @@ var Repository48 = class {
2071
2064
  // src/modules/user/maturityDates.ts
2072
2065
  var maturityDates_exports = {};
2073
2066
  __export(maturityDates_exports, {
2074
- default: () => Repository49
2067
+ default: () => Repository50
2075
2068
  });
2076
- var Repository49 = class {
2069
+ var Repository50 = class {
2077
2070
  constructor({ api, route }) {
2078
2071
  this.api = api;
2079
2072
  this.route = route;
@@ -2109,9 +2102,9 @@ var Repository49 = class {
2109
2102
  // src/modules/user/paymentMethods.ts
2110
2103
  var paymentMethods_exports = {};
2111
2104
  __export(paymentMethods_exports, {
2112
- default: () => Repository50
2105
+ default: () => Repository51
2113
2106
  });
2114
- var Repository50 = class {
2107
+ var Repository51 = class {
2115
2108
  constructor({ api, route }) {
2116
2109
  this.api = api;
2117
2110
  this.route = route;
@@ -2147,9 +2140,9 @@ var Repository50 = class {
2147
2140
  // src/modules/user/vehicles.ts
2148
2141
  var vehicles_exports = {};
2149
2142
  __export(vehicles_exports, {
2150
- default: () => Repository51
2143
+ default: () => Repository52
2151
2144
  });
2152
- var Repository51 = class {
2145
+ var Repository52 = class {
2153
2146
  constructor({ api, route }) {
2154
2147
  this.api = api;
2155
2148
  this.route = route;
@@ -2175,9 +2168,9 @@ var Repository51 = class {
2175
2168
  // src/modules/supply/externalDocumentType.ts
2176
2169
  var externalDocumentType_exports = {};
2177
2170
  __export(externalDocumentType_exports, {
2178
- default: () => Repository52
2171
+ default: () => Repository53
2179
2172
  });
2180
- var Repository52 = class {
2173
+ var Repository53 = class {
2181
2174
  constructor({ api, route }) {
2182
2175
  this.api = api;
2183
2176
  this.route = route;
@@ -2195,9 +2188,9 @@ var Repository52 = class {
2195
2188
  // src/modules/supply/documentSet.ts
2196
2189
  var documentSet_exports = {};
2197
2190
  __export(documentSet_exports, {
2198
- default: () => Repository53
2191
+ default: () => Repository54
2199
2192
  });
2200
- var Repository53 = class {
2193
+ var Repository54 = class {
2201
2194
  constructor({ api, route }) {
2202
2195
  this.api = api;
2203
2196
  this.route = route;
@@ -2231,9 +2224,9 @@ var Repository53 = class {
2231
2224
  // src/modules/supply/payment.ts
2232
2225
  var payment_exports = {};
2233
2226
  __export(payment_exports, {
2234
- default: () => Repository54
2227
+ default: () => Repository55
2235
2228
  });
2236
- var Repository54 = class {
2229
+ var Repository55 = class {
2237
2230
  constructor({ api, route }) {
2238
2231
  this.api = api;
2239
2232
  this.route = route;
@@ -2277,9 +2270,9 @@ var Repository54 = class {
2277
2270
  // src/modules/supply/externalDocumentHeader.ts
2278
2271
  var externalDocumentHeader_exports = {};
2279
2272
  __export(externalDocumentHeader_exports, {
2280
- default: () => Repository55
2273
+ default: () => Repository56
2281
2274
  });
2282
- var Repository55 = class {
2275
+ var Repository56 = class {
2283
2276
  constructor({ api, route }) {
2284
2277
  this.api = api;
2285
2278
  this.route = route;
@@ -2311,9 +2304,9 @@ var Repository55 = class {
2311
2304
  // src/modules/supply/vatValidation.ts
2312
2305
  var vatValidation_exports = {};
2313
2306
  __export(vatValidation_exports, {
2314
- default: () => Repository56
2307
+ default: () => Repository57
2315
2308
  });
2316
- var Repository56 = class {
2309
+ var Repository57 = class {
2317
2310
  constructor({ api, route }) {
2318
2311
  this.api = api;
2319
2312
  this.route = route;
@@ -2331,9 +2324,9 @@ var Repository56 = class {
2331
2324
  // src/modules/stock/stockMovement.ts
2332
2325
  var stockMovement_exports = {};
2333
2326
  __export(stockMovement_exports, {
2334
- default: () => Repository57
2327
+ default: () => Repository58
2335
2328
  });
2336
- var Repository57 = class {
2329
+ var Repository58 = class {
2337
2330
  constructor({ api, route }) {
2338
2331
  this.api = api;
2339
2332
  this.route = route;
@@ -2369,9 +2362,9 @@ var Repository57 = class {
2369
2362
  // src/modules/user/zipCode.ts
2370
2363
  var zipCode_exports = {};
2371
2364
  __export(zipCode_exports, {
2372
- default: () => Repository58
2365
+ default: () => Repository59
2373
2366
  });
2374
- var Repository58 = class {
2367
+ var Repository59 = class {
2375
2368
  constructor({ api, route }) {
2376
2369
  this.api = api;
2377
2370
  this.route = route;
@@ -2388,9 +2381,9 @@ var Repository58 = class {
2388
2381
  // src/modules/user/tenant.ts
2389
2382
  var tenant_exports = {};
2390
2383
  __export(tenant_exports, {
2391
- default: () => Repository59
2384
+ default: () => Repository60
2392
2385
  });
2393
- var Repository59 = class {
2386
+ var Repository60 = class {
2394
2387
  constructor({ api, route }) {
2395
2388
  this.api = api;
2396
2389
  this.route = route;
@@ -2416,9 +2409,9 @@ var Repository59 = class {
2416
2409
  // src/modules/supply/preSale.ts
2417
2410
  var preSale_exports = {};
2418
2411
  __export(preSale_exports, {
2419
- default: () => Repository60
2412
+ default: () => Repository61
2420
2413
  });
2421
- var Repository60 = class {
2414
+ var Repository61 = class {
2422
2415
  constructor({ api, route }) {
2423
2416
  this.api = api;
2424
2417
  this.route = route;
@@ -2460,9 +2453,9 @@ var Repository60 = class {
2460
2453
  // src/modules/supply/preSaleProduct.ts
2461
2454
  var preSaleProduct_exports = {};
2462
2455
  __export(preSaleProduct_exports, {
2463
- default: () => Repository61
2456
+ default: () => Repository62
2464
2457
  });
2465
- var Repository61 = class {
2458
+ var Repository62 = class {
2466
2459
  constructor({ api, route }) {
2467
2460
  this.api = api;
2468
2461
  this.route = route;
@@ -2480,9 +2473,9 @@ var Repository61 = class {
2480
2473
  // src/modules/supply/orderManagement.ts
2481
2474
  var orderManagement_exports = {};
2482
2475
  __export(orderManagement_exports, {
2483
- default: () => Repository62
2476
+ default: () => Repository63
2484
2477
  });
2485
- var Repository62 = class {
2478
+ var Repository63 = class {
2486
2479
  constructor({ api, route }) {
2487
2480
  this.api = api;
2488
2481
  this.route = route;
@@ -2502,9 +2495,9 @@ var Repository62 = class {
2502
2495
  // src/modules/print/npc.ts
2503
2496
  var npc_exports = {};
2504
2497
  __export(npc_exports, {
2505
- default: () => Repository63
2498
+ default: () => Repository64
2506
2499
  });
2507
- var Repository63 = class {
2500
+ var Repository64 = class {
2508
2501
  constructor({ api, route }) {
2509
2502
  this.api = api;
2510
2503
  this.route = route;
@@ -2528,9 +2521,9 @@ var Repository63 = class {
2528
2521
  // src/modules/print/printer.ts
2529
2522
  var printer_exports = {};
2530
2523
  __export(printer_exports, {
2531
- default: () => Repository64
2524
+ default: () => Repository65
2532
2525
  });
2533
- var Repository64 = class {
2526
+ var Repository65 = class {
2534
2527
  constructor({ api, route }) {
2535
2528
  this.api = api;
2536
2529
  this.route = route;
@@ -2559,9 +2552,9 @@ var Repository64 = class {
2559
2552
  // src/modules/print/schedulePrintJob.ts
2560
2553
  var schedulePrintJob_exports = {};
2561
2554
  __export(schedulePrintJob_exports, {
2562
- default: () => Repository65
2555
+ default: () => Repository66
2563
2556
  });
2564
- var Repository65 = class {
2557
+ var Repository66 = class {
2565
2558
  constructor({ api, route }) {
2566
2559
  this.api = api;
2567
2560
  this.route = route;
@@ -2588,9 +2581,9 @@ var Repository65 = class {
2588
2581
  // src/modules/stock/queryList.ts
2589
2582
  var queryList_exports = {};
2590
2583
  __export(queryList_exports, {
2591
- default: () => Repository66
2584
+ default: () => Repository67
2592
2585
  });
2593
- var Repository66 = class {
2586
+ var Repository67 = class {
2594
2587
  constructor({ api, route }) {
2595
2588
  this.api = api;
2596
2589
  this.route = route;
@@ -2638,9 +2631,9 @@ var Repository66 = class {
2638
2631
  // src/modules/stock/queryParameter.ts
2639
2632
  var queryParameter_exports = {};
2640
2633
  __export(queryParameter_exports, {
2641
- default: () => Repository67
2634
+ default: () => Repository68
2642
2635
  });
2643
- var Repository67 = class {
2636
+ var Repository68 = class {
2644
2637
  constructor({ api, route }) {
2645
2638
  this.api = api;
2646
2639
  this.route = route;
@@ -2674,9 +2667,9 @@ var Repository67 = class {
2674
2667
  // src/modules/stock/returnReason.ts
2675
2668
  var returnReason_exports = {};
2676
2669
  __export(returnReason_exports, {
2677
- default: () => Repository68
2670
+ default: () => Repository69
2678
2671
  });
2679
- var Repository68 = class {
2672
+ var Repository69 = class {
2680
2673
  constructor({ api, route }) {
2681
2674
  this.api = api;
2682
2675
  this.route = route;
@@ -2702,9 +2695,9 @@ var Repository68 = class {
2702
2695
  // src/modules/document/propostaSheets.ts
2703
2696
  var propostaSheets_exports = {};
2704
2697
  __export(propostaSheets_exports, {
2705
- default: () => Repository69
2698
+ default: () => Repository70
2706
2699
  });
2707
- var Repository69 = class {
2700
+ var Repository70 = class {
2708
2701
  constructor({ api, route }) {
2709
2702
  this.api = api;
2710
2703
  this.route = route;
@@ -2759,9 +2752,9 @@ var Repository69 = class {
2759
2752
  // src/modules/stock/schedule.ts
2760
2753
  var schedule_exports = {};
2761
2754
  __export(schedule_exports, {
2762
- default: () => Repository70
2755
+ default: () => Repository71
2763
2756
  });
2764
- var Repository70 = class {
2757
+ var Repository71 = class {
2765
2758
  constructor({ api, route }) {
2766
2759
  this.api = api;
2767
2760
  this.route = route;
@@ -2774,9 +2767,9 @@ var Repository70 = class {
2774
2767
  // src/modules/integration/googleFilePermission.ts
2775
2768
  var googleFilePermission_exports = {};
2776
2769
  __export(googleFilePermission_exports, {
2777
- default: () => Repository71
2770
+ default: () => Repository72
2778
2771
  });
2779
- var Repository71 = class {
2772
+ var Repository72 = class {
2780
2773
  constructor({ api, route }) {
2781
2774
  this.api = api;
2782
2775
  this.route = route;
@@ -2802,9 +2795,9 @@ var Repository71 = class {
2802
2795
  // src/modules/integration/settings.ts
2803
2796
  var settings_exports = {};
2804
2797
  __export(settings_exports, {
2805
- default: () => Repository72
2798
+ default: () => Repository73
2806
2799
  });
2807
- var Repository72 = class {
2800
+ var Repository73 = class {
2808
2801
  constructor({ api, route }) {
2809
2802
  this.api = api;
2810
2803
  this.route = route;
@@ -2836,9 +2829,9 @@ var Repository72 = class {
2836
2829
  // src/modules/tickets/tickets.ts
2837
2830
  var tickets_exports = {};
2838
2831
  __export(tickets_exports, {
2839
- default: () => Repository73
2832
+ default: () => Repository74
2840
2833
  });
2841
- var Repository73 = class {
2834
+ var Repository74 = class {
2842
2835
  constructor({ api, route }) {
2843
2836
  this.api = api;
2844
2837
  this.route = route;
@@ -2864,9 +2857,9 @@ var Repository73 = class {
2864
2857
  // src/modules/tickets/channel.ts
2865
2858
  var channel_exports = {};
2866
2859
  __export(channel_exports, {
2867
- default: () => Repository74
2860
+ default: () => Repository75
2868
2861
  });
2869
- var Repository74 = class {
2862
+ var Repository75 = class {
2870
2863
  constructor({ api, route }) {
2871
2864
  this.api = api;
2872
2865
  this.route = route;
@@ -2900,9 +2893,9 @@ var Repository74 = class {
2900
2893
  // src/modules/tickets/language.ts
2901
2894
  var language_exports2 = {};
2902
2895
  __export(language_exports2, {
2903
- default: () => Repository75
2896
+ default: () => Repository76
2904
2897
  });
2905
- var Repository75 = class {
2898
+ var Repository76 = class {
2906
2899
  constructor({ api, route }) {
2907
2900
  this.api = api;
2908
2901
  this.route = route;
@@ -2936,9 +2929,9 @@ var Repository75 = class {
2936
2929
  // src/modules/tickets/clt.ts
2937
2930
  var clt_exports = {};
2938
2931
  __export(clt_exports, {
2939
- default: () => Repository76
2932
+ default: () => Repository77
2940
2933
  });
2941
- var Repository76 = class {
2934
+ var Repository77 = class {
2942
2935
  constructor({ api, route }) {
2943
2936
  this.api = api;
2944
2937
  this.route = route;
@@ -2972,9 +2965,9 @@ var Repository76 = class {
2972
2965
  // src/modules/supply/startDocumentHeaderLastUpdate.ts
2973
2966
  var startDocumentHeaderLastUpdate_exports = {};
2974
2967
  __export(startDocumentHeaderLastUpdate_exports, {
2975
- default: () => Repository77
2968
+ default: () => Repository78
2976
2969
  });
2977
- var Repository77 = class {
2970
+ var Repository78 = class {
2978
2971
  constructor({ api, route }) {
2979
2972
  this.api = api;
2980
2973
  this.route = route;
@@ -2988,9 +2981,9 @@ var Repository77 = class {
2988
2981
  // src/modules/user/persona.ts
2989
2982
  var persona_exports = {};
2990
2983
  __export(persona_exports, {
2991
- default: () => Repository78
2984
+ default: () => Repository79
2992
2985
  });
2993
- var Repository78 = class {
2986
+ var Repository79 = class {
2994
2987
  constructor({ api, route }) {
2995
2988
  this.api = api;
2996
2989
  this.route = route;
@@ -3051,9 +3044,9 @@ var Repository78 = class {
3051
3044
  // src/modules/integration/projectInfo.ts
3052
3045
  var projectInfo_exports = {};
3053
3046
  __export(projectInfo_exports, {
3054
- default: () => Repository79
3047
+ default: () => Repository80
3055
3048
  });
3056
- var Repository79 = class {
3049
+ var Repository80 = class {
3057
3050
  constructor({ api, route }) {
3058
3051
  this.api = api;
3059
3052
  this.route = route;
@@ -3067,9 +3060,9 @@ var Repository79 = class {
3067
3060
  // src/modules/document/order.ts
3068
3061
  var order_exports = {};
3069
3062
  __export(order_exports, {
3070
- default: () => Repository80
3063
+ default: () => Repository81
3071
3064
  });
3072
- var Repository80 = class {
3065
+ var Repository81 = class {
3073
3066
  constructor({ api, route }) {
3074
3067
  this.api = api;
3075
3068
  this.route = route;
@@ -3114,9 +3107,9 @@ var Repository80 = class {
3114
3107
  // src/modules/document/purchase.ts
3115
3108
  var purchase_exports = {};
3116
3109
  __export(purchase_exports, {
3117
- default: () => Repository81
3110
+ default: () => Repository82
3118
3111
  });
3119
- var Repository81 = class {
3112
+ var Repository82 = class {
3120
3113
  constructor({ api, route }) {
3121
3114
  this.api = api;
3122
3115
  this.route = route;
@@ -3147,9 +3140,9 @@ var Repository81 = class {
3147
3140
  // src/modules/document/materialEntrance.ts
3148
3141
  var materialEntrance_exports = {};
3149
3142
  __export(materialEntrance_exports, {
3150
- default: () => Repository82
3143
+ default: () => Repository83
3151
3144
  });
3152
- var Repository82 = class {
3145
+ var Repository83 = class {
3153
3146
  constructor({ api, route }) {
3154
3147
  this.api = api;
3155
3148
  this.route = route;
@@ -3221,9 +3214,9 @@ var Repository82 = class {
3221
3214
  // src/modules/document/transformado.ts
3222
3215
  var transformado_exports = {};
3223
3216
  __export(transformado_exports, {
3224
- default: () => Repository83
3217
+ default: () => Repository84
3225
3218
  });
3226
- var Repository83 = class {
3219
+ var Repository84 = class {
3227
3220
  constructor({ api, route }) {
3228
3221
  this.api = api;
3229
3222
  this.route = route;
@@ -3241,9 +3234,9 @@ var Repository83 = class {
3241
3234
  // src/modules/document/upfrontReturn.ts
3242
3235
  var upfrontReturn_exports = {};
3243
3236
  __export(upfrontReturn_exports, {
3244
- default: () => Repository84
3237
+ default: () => Repository85
3245
3238
  });
3246
- var Repository84 = class {
3239
+ var Repository85 = class {
3247
3240
  constructor({ api, route }) {
3248
3241
  this.api = api;
3249
3242
  this.route = route;
@@ -3257,9 +3250,9 @@ var Repository84 = class {
3257
3250
  // src/modules/stock/savedEmPicking.ts
3258
3251
  var savedEmPicking_exports = {};
3259
3252
  __export(savedEmPicking_exports, {
3260
- default: () => Repository85
3253
+ default: () => Repository86
3261
3254
  });
3262
- var Repository85 = class {
3255
+ var Repository86 = class {
3263
3256
  constructor({ api, route }) {
3264
3257
  this.api = api;
3265
3258
  this.route = route;
@@ -3283,9 +3276,9 @@ var Repository85 = class {
3283
3276
  // src/modules/integration/emailTemplate.ts
3284
3277
  var emailTemplate_exports = {};
3285
3278
  __export(emailTemplate_exports, {
3286
- default: () => Repository86
3279
+ default: () => Repository87
3287
3280
  });
3288
- var Repository86 = class {
3281
+ var Repository87 = class {
3289
3282
  constructor({ api, route }) {
3290
3283
  this.api = api;
3291
3284
  this.route = route;
@@ -3318,9 +3311,9 @@ var Repository86 = class {
3318
3311
  // src/modules/integration/emailTemplateAttachment.ts
3319
3312
  var emailTemplateAttachment_exports = {};
3320
3313
  __export(emailTemplateAttachment_exports, {
3321
- default: () => Repository87
3314
+ default: () => Repository88
3322
3315
  });
3323
- var Repository87 = class {
3316
+ var Repository88 = class {
3324
3317
  constructor({ api, route }) {
3325
3318
  this.api = api;
3326
3319
  this.route = route;
@@ -3337,9 +3330,9 @@ var Repository87 = class {
3337
3330
  // src/modules/stock/prison.ts
3338
3331
  var prison_exports = {};
3339
3332
  __export(prison_exports, {
3340
- default: () => Repository88
3333
+ default: () => Repository89
3341
3334
  });
3342
- var Repository88 = class {
3335
+ var Repository89 = class {
3343
3336
  constructor({ api, route }) {
3344
3337
  this.api = api;
3345
3338
  this.route = route;
@@ -3373,9 +3366,9 @@ var Repository88 = class {
3373
3366
  // src/modules/document/quebra.ts
3374
3367
  var quebra_exports = {};
3375
3368
  __export(quebra_exports, {
3376
- default: () => Repository89
3369
+ default: () => Repository90
3377
3370
  });
3378
- var Repository89 = class {
3371
+ var Repository90 = class {
3379
3372
  constructor({ api, route }) {
3380
3373
  this.api = api;
3381
3374
  this.route = route;
@@ -3404,9 +3397,9 @@ var Repository89 = class {
3404
3397
  // src/modules/document/inventario.ts
3405
3398
  var inventario_exports = {};
3406
3399
  __export(inventario_exports, {
3407
- default: () => Repository90
3400
+ default: () => Repository91
3408
3401
  });
3409
- var Repository90 = class {
3402
+ var Repository91 = class {
3410
3403
  constructor({ api, route }) {
3411
3404
  this.api = api;
3412
3405
  this.route = route;
@@ -3422,9 +3415,9 @@ var Repository90 = class {
3422
3415
  // src/modules/document/returnToProvider.ts
3423
3416
  var returnToProvider_exports = {};
3424
3417
  __export(returnToProvider_exports, {
3425
- default: () => Repository91
3418
+ default: () => Repository92
3426
3419
  });
3427
- var Repository91 = class {
3420
+ var Repository92 = class {
3428
3421
  constructor({ api, route }) {
3429
3422
  this.api = api;
3430
3423
  this.route = route;
@@ -3447,9 +3440,9 @@ var Repository91 = class {
3447
3440
  // src/modules/integration/emailVerification.ts
3448
3441
  var emailVerification_exports = {};
3449
3442
  __export(emailVerification_exports, {
3450
- default: () => Repository92
3443
+ default: () => Repository93
3451
3444
  });
3452
- var Repository92 = class {
3445
+ var Repository93 = class {
3453
3446
  constructor({ api, route }) {
3454
3447
  this.api = api;
3455
3448
  this.route = route;
@@ -3471,9 +3464,9 @@ var Repository92 = class {
3471
3464
  // src/modules/integration/emailLog.ts
3472
3465
  var emailLog_exports = {};
3473
3466
  __export(emailLog_exports, {
3474
- default: () => Repository93
3467
+ default: () => Repository94
3475
3468
  });
3476
- var Repository93 = class {
3469
+ var Repository94 = class {
3477
3470
  constructor({ api, route }) {
3478
3471
  this.api = api;
3479
3472
  this.route = route;
@@ -3503,9 +3496,9 @@ var Repository93 = class {
3503
3496
  // src/modules/supply/documentLineNote.ts
3504
3497
  var documentLineNote_exports = {};
3505
3498
  __export(documentLineNote_exports, {
3506
- default: () => Repository94
3499
+ default: () => Repository95
3507
3500
  });
3508
- var Repository94 = class {
3501
+ var Repository95 = class {
3509
3502
  constructor({ api, route }) {
3510
3503
  this.api = api;
3511
3504
  this.route = route;
@@ -3519,9 +3512,9 @@ var Repository94 = class {
3519
3512
  // src/modules/stock/savedProviderProposal.ts
3520
3513
  var savedProviderProposal_exports = {};
3521
3514
  __export(savedProviderProposal_exports, {
3522
- default: () => Repository95
3515
+ default: () => Repository96
3523
3516
  });
3524
- var Repository95 = class {
3517
+ var Repository96 = class {
3525
3518
  constructor({ api, route }) {
3526
3519
  this.api = api;
3527
3520
  this.route = route;
@@ -3539,9 +3532,9 @@ var Repository95 = class {
3539
3532
  // src/modules/stock/productGoogleSheets.ts
3540
3533
  var productGoogleSheets_exports = {};
3541
3534
  __export(productGoogleSheets_exports, {
3542
- default: () => Repository96
3535
+ default: () => Repository97
3543
3536
  });
3544
- var Repository96 = class {
3537
+ var Repository97 = class {
3545
3538
  constructor({ api, route }) {
3546
3539
  this.api = api;
3547
3540
  this.route = route;
@@ -3658,9 +3651,9 @@ var Repository96 = class {
3658
3651
  // src/modules/stock/task.ts
3659
3652
  var task_exports = {};
3660
3653
  __export(task_exports, {
3661
- default: () => Repository97
3654
+ default: () => Repository98
3662
3655
  });
3663
- var Repository97 = class {
3656
+ var Repository98 = class {
3664
3657
  constructor({ api, route }) {
3665
3658
  this.api = api;
3666
3659
  this.route = route;
@@ -3696,9 +3689,9 @@ var Repository97 = class {
3696
3689
  // src/modules/stock/taskMessage.ts
3697
3690
  var taskMessage_exports = {};
3698
3691
  __export(taskMessage_exports, {
3699
- default: () => Repository98
3692
+ default: () => Repository99
3700
3693
  });
3701
- var Repository98 = class {
3694
+ var Repository99 = class {
3702
3695
  constructor({ api, route }) {
3703
3696
  this.api = api;
3704
3697
  this.route = route;
@@ -3718,9 +3711,9 @@ var Repository98 = class {
3718
3711
  // src/modules/stock/recurrentTasks.ts
3719
3712
  var recurrentTasks_exports = {};
3720
3713
  __export(recurrentTasks_exports, {
3721
- default: () => Repository99
3714
+ default: () => Repository100
3722
3715
  });
3723
- var Repository99 = class {
3716
+ var Repository100 = class {
3724
3717
  constructor({ api, route }) {
3725
3718
  this.api = api;
3726
3719
  this.route = route;
@@ -3736,9 +3729,9 @@ var Repository99 = class {
3736
3729
  // src/modules/stock/taskRead.ts
3737
3730
  var taskRead_exports = {};
3738
3731
  __export(taskRead_exports, {
3739
- default: () => Repository100
3732
+ default: () => Repository101
3740
3733
  });
3741
- var Repository100 = class {
3734
+ var Repository101 = class {
3742
3735
  constructor({ api, route }) {
3743
3736
  this.api = api;
3744
3737
  this.route = route;
@@ -3754,9 +3747,9 @@ var Repository100 = class {
3754
3747
  // src/modules/user/theme.ts
3755
3748
  var theme_exports = {};
3756
3749
  __export(theme_exports, {
3757
- default: () => Repository101
3750
+ default: () => Repository102
3758
3751
  });
3759
- var Repository101 = class {
3752
+ var Repository102 = class {
3760
3753
  constructor({ api, route }) {
3761
3754
  this.api = api;
3762
3755
  this.route = route;
@@ -3769,9 +3762,9 @@ var Repository101 = class {
3769
3762
  // src/modules/stock/dashboard.ts
3770
3763
  var dashboard_exports = {};
3771
3764
  __export(dashboard_exports, {
3772
- default: () => Repository102
3765
+ default: () => Repository103
3773
3766
  });
3774
- var Repository102 = class {
3767
+ var Repository103 = class {
3775
3768
  constructor({ api, route }) {
3776
3769
  this.api = api;
3777
3770
  this.route = route;
@@ -3789,9 +3782,9 @@ var Repository102 = class {
3789
3782
  // src/modules/stock/chatRapidMessage.ts
3790
3783
  var chatRapidMessage_exports = {};
3791
3784
  __export(chatRapidMessage_exports, {
3792
- default: () => Repository103
3785
+ default: () => Repository104
3793
3786
  });
3794
- var Repository103 = class {
3787
+ var Repository104 = class {
3795
3788
  constructor({ api, route }) {
3796
3789
  this.api = api;
3797
3790
  this.route = route;
@@ -3820,9 +3813,9 @@ var Repository103 = class {
3820
3813
  // src/modules/ui/sideMenu.ts
3821
3814
  var sideMenu_exports = {};
3822
3815
  __export(sideMenu_exports, {
3823
- default: () => Repository104
3816
+ default: () => Repository105
3824
3817
  });
3825
- var Repository104 = class {
3818
+ var Repository105 = class {
3826
3819
  constructor({ api, route }) {
3827
3820
  this.api = api;
3828
3821
  this.route = route;
@@ -3852,9 +3845,9 @@ var Repository104 = class {
3852
3845
  // src/modules/ui/sidemenuHighlight.ts
3853
3846
  var sidemenuHighlight_exports = {};
3854
3847
  __export(sidemenuHighlight_exports, {
3855
- default: () => Repository105
3848
+ default: () => Repository106
3856
3849
  });
3857
- var Repository105 = class {
3850
+ var Repository106 = class {
3858
3851
  constructor({ api, route }) {
3859
3852
  this.api = api;
3860
3853
  this.route = route;
@@ -3876,9 +3869,9 @@ var Repository105 = class {
3876
3869
  // src/modules/view/errorLog.ts
3877
3870
  var errorLog_exports = {};
3878
3871
  __export(errorLog_exports, {
3879
- default: () => Repository106
3872
+ default: () => Repository107
3880
3873
  });
3881
- var Repository106 = class {
3874
+ var Repository107 = class {
3882
3875
  constructor({ api, route }) {
3883
3876
  this.api = api;
3884
3877
  this.route = route;
@@ -3891,9 +3884,9 @@ var Repository106 = class {
3891
3884
  // src/modules/view/adminPanel.ts
3892
3885
  var adminPanel_exports = {};
3893
3886
  __export(adminPanel_exports, {
3894
- default: () => Repository107
3887
+ default: () => Repository108
3895
3888
  });
3896
- var Repository107 = class {
3889
+ var Repository108 = class {
3897
3890
  constructor({ api, route }) {
3898
3891
  this.api = api;
3899
3892
  this.route = route;
@@ -3907,9 +3900,9 @@ var Repository107 = class {
3907
3900
  // src/modules/supply/documentLineRm.ts
3908
3901
  var documentLineRm_exports = {};
3909
3902
  __export(documentLineRm_exports, {
3910
- default: () => Repository108
3903
+ default: () => Repository109
3911
3904
  });
3912
- var Repository108 = class {
3905
+ var Repository109 = class {
3913
3906
  constructor({ api, route }) {
3914
3907
  this.api = api;
3915
3908
  this.route = route;
@@ -3928,9 +3921,9 @@ var Repository108 = class {
3928
3921
  // src/modules/supply/documentLineMt.ts
3929
3922
  var documentLineMt_exports = {};
3930
3923
  __export(documentLineMt_exports, {
3931
- default: () => Repository109
3924
+ default: () => Repository110
3932
3925
  });
3933
- var Repository109 = class {
3926
+ var Repository110 = class {
3934
3927
  constructor({ api, route }) {
3935
3928
  this.api = api;
3936
3929
  this.route = route;
@@ -3949,9 +3942,9 @@ var Repository109 = class {
3949
3942
  // src/modules/user/chatSubscriber.ts
3950
3943
  var chatSubscriber_exports = {};
3951
3944
  __export(chatSubscriber_exports, {
3952
- default: () => Repository110
3945
+ default: () => Repository111
3953
3946
  });
3954
- var Repository110 = class {
3947
+ var Repository111 = class {
3955
3948
  constructor({ api, route }) {
3956
3949
  this.api = api;
3957
3950
  this.route = route;
@@ -3995,9 +3988,9 @@ var Repository110 = class {
3995
3988
  // src/modules/stock/tag.ts
3996
3989
  var tag_exports = {};
3997
3990
  __export(tag_exports, {
3998
- default: () => Repository111
3991
+ default: () => Repository112
3999
3992
  });
4000
- var Repository111 = class {
3993
+ var Repository112 = class {
4001
3994
  constructor({ api, route }) {
4002
3995
  this.api = api;
4003
3996
  this.route = route;
@@ -4021,9 +4014,9 @@ var Repository111 = class {
4021
4014
  // src/modules/stock/gmails.ts
4022
4015
  var gmails_exports = {};
4023
4016
  __export(gmails_exports, {
4024
- default: () => Repository112
4017
+ default: () => Repository113
4025
4018
  });
4026
- var Repository112 = class {
4019
+ var Repository113 = class {
4027
4020
  constructor({ api, route }) {
4028
4021
  this.api = api;
4029
4022
  this.route = route;
@@ -4041,9 +4034,9 @@ var Repository112 = class {
4041
4034
  // src/modules/document/NPF.ts
4042
4035
  var NPF_exports = {};
4043
4036
  __export(NPF_exports, {
4044
- default: () => Repository113
4037
+ default: () => Repository114
4045
4038
  });
4046
- var Repository113 = class {
4039
+ var Repository114 = class {
4047
4040
  constructor({ api, route }) {
4048
4041
  this.api = api;
4049
4042
  this.route = route;
@@ -4057,9 +4050,9 @@ var Repository113 = class {
4057
4050
  // src/modules/document/NRCL.ts
4058
4051
  var NRCL_exports = {};
4059
4052
  __export(NRCL_exports, {
4060
- default: () => Repository114
4053
+ default: () => Repository115
4061
4054
  });
4062
- var Repository114 = class {
4055
+ var Repository115 = class {
4063
4056
  constructor({ api, route }) {
4064
4057
  this.api = api;
4065
4058
  this.route = route;
@@ -4074,9 +4067,9 @@ var Repository114 = class {
4074
4067
  // src/modules/supply/currentAccount.ts
4075
4068
  var currentAccount_exports = {};
4076
4069
  __export(currentAccount_exports, {
4077
- default: () => Repository115
4070
+ default: () => Repository116
4078
4071
  });
4079
- var Repository115 = class {
4072
+ var Repository116 = class {
4080
4073
  constructor({ api, route }) {
4081
4074
  this.api = api;
4082
4075
  this.route = route;
@@ -4137,9 +4130,9 @@ var Repository115 = class {
4137
4130
  // src/modules/supply/paymentBatch.ts
4138
4131
  var paymentBatch_exports = {};
4139
4132
  __export(paymentBatch_exports, {
4140
- default: () => Repository116
4133
+ default: () => Repository117
4141
4134
  });
4142
- var Repository116 = class {
4135
+ var Repository117 = class {
4143
4136
  constructor({ api, route }) {
4144
4137
  this.api = api;
4145
4138
  this.route = route;
@@ -4183,9 +4176,9 @@ var Repository116 = class {
4183
4176
  // src/modules/ui/portal.ts
4184
4177
  var portal_exports = {};
4185
4178
  __export(portal_exports, {
4186
- default: () => Repository117
4179
+ default: () => Repository118
4187
4180
  });
4188
- var Repository117 = class {
4181
+ var Repository118 = class {
4189
4182
  constructor({ api, route }) {
4190
4183
  this.api = api;
4191
4184
  this.route = route;
@@ -4209,9 +4202,9 @@ var Repository117 = class {
4209
4202
  // src/modules/supply/googleSheetPool.ts
4210
4203
  var googleSheetPool_exports = {};
4211
4204
  __export(googleSheetPool_exports, {
4212
- default: () => Repository118
4205
+ default: () => Repository119
4213
4206
  });
4214
- var Repository118 = class {
4207
+ var Repository119 = class {
4215
4208
  constructor({ api, route }) {
4216
4209
  this.api = api;
4217
4210
  this.route = route;
@@ -4225,9 +4218,9 @@ var Repository118 = class {
4225
4218
  // src/modules/stock/accountCode.ts
4226
4219
  var accountCode_exports = {};
4227
4220
  __export(accountCode_exports, {
4228
- default: () => Repository119
4221
+ default: () => Repository120
4229
4222
  });
4230
- var Repository119 = class {
4223
+ var Repository120 = class {
4231
4224
  constructor({ api, route }) {
4232
4225
  this.api = api;
4233
4226
  this.route = route;
@@ -4243,9 +4236,9 @@ var Repository119 = class {
4243
4236
  // src/modules/llm/llm.ts
4244
4237
  var llm_exports = {};
4245
4238
  __export(llm_exports, {
4246
- default: () => Repository120
4239
+ default: () => Repository121
4247
4240
  });
4248
- var Repository120 = class {
4241
+ var Repository121 = class {
4249
4242
  constructor({ api, route }) {
4250
4243
  this.api = api;
4251
4244
  this.route = route;
@@ -4299,9 +4292,9 @@ var Repository120 = class {
4299
4292
  // src/modules/integration/patchNotes.ts
4300
4293
  var patchNotes_exports = {};
4301
4294
  __export(patchNotes_exports, {
4302
- default: () => Repository121
4295
+ default: () => Repository122
4303
4296
  });
4304
- var Repository121 = class {
4297
+ var Repository122 = class {
4305
4298
  constructor({ api, route }) {
4306
4299
  this.api = api;
4307
4300
  this.route = route;
@@ -4319,9 +4312,9 @@ var Repository121 = class {
4319
4312
  // src/modules/supply/documentHeaderSurvey.ts
4320
4313
  var documentHeaderSurvey_exports = {};
4321
4314
  __export(documentHeaderSurvey_exports, {
4322
- default: () => Repository122
4315
+ default: () => Repository123
4323
4316
  });
4324
- var Repository122 = class {
4317
+ var Repository123 = class {
4325
4318
  constructor({ api, route }) {
4326
4319
  this.api = api;
4327
4320
  this.route = route;
@@ -4343,9 +4336,9 @@ var Repository122 = class {
4343
4336
  // src/modules/supply/documentHeaderSubscriber.ts
4344
4337
  var documentHeaderSubscriber_exports = {};
4345
4338
  __export(documentHeaderSubscriber_exports, {
4346
- default: () => Repository123
4339
+ default: () => Repository124
4347
4340
  });
4348
- var Repository123 = class {
4341
+ var Repository124 = class {
4349
4342
  constructor({ api, route }) {
4350
4343
  this.api = api;
4351
4344
  this.route = route;
@@ -4367,9 +4360,9 @@ var Repository123 = class {
4367
4360
  // src/modules/stock/googleCalendar.ts
4368
4361
  var googleCalendar_exports = {};
4369
4362
  __export(googleCalendar_exports, {
4370
- default: () => Repository124
4363
+ default: () => Repository125
4371
4364
  });
4372
- var Repository124 = class {
4365
+ var Repository125 = class {
4373
4366
  constructor({ api, route }) {
4374
4367
  this.api = api;
4375
4368
  this.route = route;
@@ -4387,9 +4380,9 @@ var Repository124 = class {
4387
4380
  // src/modules/stock/productLocation.ts
4388
4381
  var productLocation_exports = {};
4389
4382
  __export(productLocation_exports, {
4390
- default: () => Repository125
4383
+ default: () => Repository126
4391
4384
  });
4392
- var Repository125 = class {
4385
+ var Repository126 = class {
4393
4386
  constructor({ api, route }) {
4394
4387
  this.api = api;
4395
4388
  this.route = route;
@@ -4400,6 +4393,38 @@ var Repository125 = class {
4400
4393
  }
4401
4394
  };
4402
4395
 
4396
+ // src/modules/user/timeSheet.ts
4397
+ var timeSheet_exports = {};
4398
+ __export(timeSheet_exports, {
4399
+ default: () => TimesheetRepository
4400
+ });
4401
+ var TimesheetRepository = class {
4402
+ constructor({ api, route }) {
4403
+ this.api = api;
4404
+ this.route = route.endsWith("/") ? route : `${route}/`;
4405
+ }
4406
+ async find(params) {
4407
+ const response = await this.api.get(`${this.route}`, { params });
4408
+ return response.data;
4409
+ }
4410
+ async findById(selector) {
4411
+ const response = await this.api.get(`${this.route}${selector.id}`);
4412
+ return response.data;
4413
+ }
4414
+ async create(body) {
4415
+ const response = await this.api.post(`${this.route}`, body);
4416
+ return response.data;
4417
+ }
4418
+ async update(selector, body) {
4419
+ const response = await this.api.put(`${this.route}${selector.id}`, body);
4420
+ return response.data;
4421
+ }
4422
+ async deleteOne(selector) {
4423
+ const response = await this.api.delete(`${this.route}${selector.id}`);
4424
+ return response.data;
4425
+ }
4426
+ };
4427
+
4403
4428
  // src/main.ts
4404
4429
  var API = class {
4405
4430
  constructor({ processEnvironment, services, gatewayUrl, apikey, tokenBearer }) {
@@ -4533,172 +4558,173 @@ var API = class {
4533
4558
  this.UserPositions = new Repository44(
4534
4559
  getModuleParams("users", Nomalism.UserPositions.Route)
4535
4560
  );
4536
- this.Users = new TimesheetRepository(getModuleParams("users", Nomalism.Users.Route));
4537
- this.VatTax = new Repository45(getModuleParams("stock", Nomalism.VatTax.Route));
4538
- this.VatTaxZone = new Repository46(getModuleParams("stock", Nomalism.VatTaxZone.Route));
4539
- this.Workflow = new Repository47(getModuleParams("stock", Nomalism.Workflow.Route));
4540
- this.DeliveryMethods = new Repository48(
4561
+ this.Users = new Repository45(getModuleParams("users", Nomalism.Users.Route));
4562
+ this.VatTax = new Repository46(getModuleParams("stock", Nomalism.VatTax.Route));
4563
+ this.VatTaxZone = new Repository47(getModuleParams("stock", Nomalism.VatTaxZone.Route));
4564
+ this.Workflow = new Repository48(getModuleParams("stock", Nomalism.Workflow.Route));
4565
+ this.DeliveryMethods = new Repository49(
4541
4566
  getModuleParams("users", Nomalism.DeliveryMethods.Route)
4542
4567
  );
4543
- this.MaturityDates = new Repository49(
4568
+ this.MaturityDates = new Repository50(
4544
4569
  getModuleParams("users", Nomalism.MaturityDates.Route)
4545
4570
  );
4546
- this.PaymentMethods = new Repository50(
4571
+ this.PaymentMethods = new Repository51(
4547
4572
  getModuleParams("users", Nomalism.PaymentMethods.Route)
4548
4573
  );
4549
- this.Vehicles = new Repository51(getModuleParams("users", Nomalism.Vehicles.Route));
4550
- this.ExternalDocumentType = new Repository52(
4574
+ this.Vehicles = new Repository52(getModuleParams("users", Nomalism.Vehicles.Route));
4575
+ this.ExternalDocumentType = new Repository53(
4551
4576
  getModuleParams("stock", Nomalism.ExternalDocumentType.Route)
4552
4577
  );
4553
- this.DocumentSet = new Repository53(getModuleParams("stock", Nomalism.DocumentSet.Route));
4554
- this.Payment = new Repository54(getModuleParams("stock", Nomalism.Payment.Route));
4555
- this.ExternalDocumentHeader = new Repository55(
4578
+ this.DocumentSet = new Repository54(getModuleParams("stock", Nomalism.DocumentSet.Route));
4579
+ this.Payment = new Repository55(getModuleParams("stock", Nomalism.Payment.Route));
4580
+ this.ExternalDocumentHeader = new Repository56(
4556
4581
  getModuleParams("stock", Nomalism.ExternalDocumentHeader.Route)
4557
4582
  );
4558
- this.VatValidation = new Repository56(
4583
+ this.VatValidation = new Repository57(
4559
4584
  getModuleParams("stock", Nomalism.VatValidation.Route)
4560
4585
  );
4561
- this.StockMovement = new Repository57(
4586
+ this.StockMovement = new Repository58(
4562
4587
  getModuleParams("stock", Nomalism.StockMovement.Route)
4563
4588
  );
4564
- this.ZipCode = new Repository58(getModuleParams("users", Nomalism.ZipCode.Route));
4565
- this.Tenant = new Repository59(getModuleParams("users", Nomalism.Tenant.Route));
4566
- this.PreSale = new Repository60(getModuleParams("stock", Nomalism.PreSale.Route));
4567
- this.PreSaleProduct = new Repository61(
4589
+ this.ZipCode = new Repository59(getModuleParams("users", Nomalism.ZipCode.Route));
4590
+ this.Tenant = new Repository60(getModuleParams("users", Nomalism.Tenant.Route));
4591
+ this.PreSale = new Repository61(getModuleParams("stock", Nomalism.PreSale.Route));
4592
+ this.PreSaleProduct = new Repository62(
4568
4593
  getModuleParams("stock", Nomalism.PreSaleProduct.Route)
4569
4594
  );
4570
- this.OrderManagement = new Repository62(
4595
+ this.OrderManagement = new Repository63(
4571
4596
  getModuleParams("stock", Nomalism.OrderManagement.Route)
4572
4597
  );
4573
- this.Npc = new Repository63(getModuleParams("print", Nomalism.Npc.Route));
4574
- this.Printer = new Repository64(getModuleParams("print", Nomalism.Printer.Route));
4575
- this.SchedulePrintJob = new Repository65(
4598
+ this.Npc = new Repository64(getModuleParams("print", Nomalism.Npc.Route));
4599
+ this.Printer = new Repository65(getModuleParams("print", Nomalism.Printer.Route));
4600
+ this.SchedulePrintJob = new Repository66(
4576
4601
  getModuleParams("print", Nomalism.SchedulePrintJob.Route)
4577
4602
  );
4578
- this.QueryList = new Repository66(getModuleParams("stock", Nomalism.QueryList.Route));
4579
- this.QueryParameter = new Repository67(
4603
+ this.QueryList = new Repository67(getModuleParams("stock", Nomalism.QueryList.Route));
4604
+ this.QueryParameter = new Repository68(
4580
4605
  getModuleParams("stock", Nomalism.QueryParameter.Route)
4581
4606
  );
4582
- this.ReturnReason = new Repository68(
4607
+ this.ReturnReason = new Repository69(
4583
4608
  getModuleParams("stock", Nomalism.ReturnReason.Route)
4584
4609
  );
4585
- this.PropostaSheets = new Repository69(
4610
+ this.PropostaSheets = new Repository70(
4586
4611
  getModuleParams("stock", Nomalism.PropostaSheets.Route)
4587
4612
  );
4588
- this.Schedule = new Repository70(getModuleParams("stock", Nomalism.Schedule.Route));
4589
- this.GoogleFilePermission = new Repository71(
4613
+ this.Schedule = new Repository71(getModuleParams("stock", Nomalism.Schedule.Route));
4614
+ this.GoogleFilePermission = new Repository72(
4590
4615
  getModuleParams("integration", Nomalism.GoogleFilePermission.Route)
4591
4616
  );
4592
- this.Settings = new Repository72(getModuleParams("integration", Nomalism.Settings.Route));
4593
- this.Tickets = new Repository73(getModuleParams("tickets", Nomalism.Tickets.Route));
4594
- this.Channel = new Repository74(getModuleParams("tickets", Nomalism.Channel.Route));
4595
- this.TicketsLanguage = new Repository75(
4617
+ this.Settings = new Repository73(getModuleParams("integration", Nomalism.Settings.Route));
4618
+ this.Tickets = new Repository74(getModuleParams("tickets", Nomalism.Tickets.Route));
4619
+ this.Channel = new Repository75(getModuleParams("tickets", Nomalism.Channel.Route));
4620
+ this.TicketsLanguage = new Repository76(
4596
4621
  getModuleParams("tickets", Nomalism.TicketsLanguage.Route)
4597
4622
  );
4598
- this.Clt = new Repository76(getModuleParams("tickets", Nomalism.CLT.Route));
4599
- this.StartDocumentHeaderLastUpdate = new Repository77(
4623
+ this.Clt = new Repository77(getModuleParams("tickets", Nomalism.CLT.Route));
4624
+ this.StartDocumentHeaderLastUpdate = new Repository78(
4600
4625
  getModuleParams("stock", Nomalism.StartDocumentHeaderLastUpdate.Route)
4601
4626
  );
4602
- this.Persona = new Repository78(getModuleParams("users", Nomalism.Persona.Route));
4603
- this.ProjectInfo = new Repository79(
4627
+ this.Persona = new Repository79(getModuleParams("users", Nomalism.Persona.Route));
4628
+ this.ProjectInfo = new Repository80(
4604
4629
  getModuleParams("integration", Nomalism.ProjectInfo.Route)
4605
4630
  );
4606
- this.Order = new Repository80(getModuleParams("stock", Nomalism.Order.Route));
4607
- this.Purchase = new Repository81(getModuleParams("stock", Nomalism.Purchase.Route));
4608
- this.MaterialEntrance = new Repository82(
4631
+ this.Order = new Repository81(getModuleParams("stock", Nomalism.Order.Route));
4632
+ this.Purchase = new Repository82(getModuleParams("stock", Nomalism.Purchase.Route));
4633
+ this.MaterialEntrance = new Repository83(
4609
4634
  getModuleParams("stock", Nomalism.MaterialEntrance.Route)
4610
4635
  );
4611
- this.Transformado = new Repository83(
4636
+ this.Transformado = new Repository84(
4612
4637
  getModuleParams("stock", Nomalism.Transformado.Route)
4613
4638
  );
4614
- this.UpfrontReturn = new Repository84(
4639
+ this.UpfrontReturn = new Repository85(
4615
4640
  getModuleParams("stock", Nomalism.UpfrontReturn.Route)
4616
4641
  );
4617
- this.SavedEmPicking = new Repository85(
4642
+ this.SavedEmPicking = new Repository86(
4618
4643
  getModuleParams("stock", Nomalism.SavedEmPicking.Route)
4619
4644
  );
4620
- this.EmailTemplate = new Repository86(
4645
+ this.EmailTemplate = new Repository87(
4621
4646
  getModuleParams("integration", Nomalism.EmailTemplate.Route)
4622
4647
  );
4623
- this.EmailTemplateAttachment = new Repository87(
4648
+ this.EmailTemplateAttachment = new Repository88(
4624
4649
  getModuleParams("integration", Nomalism.EmailTemplateAttachment.Route)
4625
4650
  );
4626
- this.Prison = new Repository88(getModuleParams("stock", Nomalism.Prison.Route));
4627
- this.Quebra = new Repository89(getModuleParams("stock", Nomalism.Quebra.Route));
4628
- this.Inventario = new Repository90(getModuleParams("stock", Nomalism.Inventario.Route));
4629
- this.ReturnToProvider = new Repository91(
4651
+ this.Prison = new Repository89(getModuleParams("stock", Nomalism.Prison.Route));
4652
+ this.Quebra = new Repository90(getModuleParams("stock", Nomalism.Quebra.Route));
4653
+ this.Inventario = new Repository91(getModuleParams("stock", Nomalism.Inventario.Route));
4654
+ this.ReturnToProvider = new Repository92(
4630
4655
  getModuleParams("stock", Nomalism.ReturnToProvider.Route)
4631
4656
  );
4632
- this.EmailVerification = new Repository92(
4657
+ this.EmailVerification = new Repository93(
4633
4658
  getModuleParams("integration", Nomalism.EmailVerification.Route)
4634
4659
  );
4635
- this.EmailLog = new Repository93(getModuleParams("integration", Nomalism.EmailLog.Route));
4636
- this.DocumentLineNote = new Repository94(
4660
+ this.EmailLog = new Repository94(getModuleParams("integration", Nomalism.EmailLog.Route));
4661
+ this.DocumentLineNote = new Repository95(
4637
4662
  getModuleParams("stock", Nomalism.DocumentLineNote.Route)
4638
4663
  );
4639
- this.SavedProviderProposal = new Repository95(
4664
+ this.SavedProviderProposal = new Repository96(
4640
4665
  getModuleParams("stock", Nomalism.SavedProviderProposal.Route)
4641
4666
  );
4642
- this.ProductGoogleSheets = new Repository96(
4667
+ this.ProductGoogleSheets = new Repository97(
4643
4668
  getModuleParams("stock", Nomalism.ProductGoogleSheets.Route)
4644
4669
  );
4645
- this.Task = new Repository97(getModuleParams("stock", Nomalism.Task.Route));
4646
- this.TaskMessage = new Repository98(getModuleParams("stock", Nomalism.TaskMessage.Route));
4647
- this.RecurrentTasks = new Repository99(
4670
+ this.Task = new Repository98(getModuleParams("stock", Nomalism.Task.Route));
4671
+ this.TaskMessage = new Repository99(getModuleParams("stock", Nomalism.TaskMessage.Route));
4672
+ this.RecurrentTasks = new Repository100(
4648
4673
  getModuleParams("stock", Nomalism.RecurrentTasks.Route)
4649
4674
  );
4650
- this.TaskRead = new Repository100(getModuleParams("stock", Nomalism.TaskRead.Route));
4651
- this.Theme = new Repository101(getModuleParams("users", Nomalism.Theme.Route));
4652
- this.Dashboard = new Repository102(getModuleParams("stock", Nomalism.Dashboard.Route));
4653
- this.ChatRapidMessage = new Repository103(
4675
+ this.TaskRead = new Repository101(getModuleParams("stock", Nomalism.TaskRead.Route));
4676
+ this.Theme = new Repository102(getModuleParams("users", Nomalism.Theme.Route));
4677
+ this.Dashboard = new Repository103(getModuleParams("stock", Nomalism.Dashboard.Route));
4678
+ this.ChatRapidMessage = new Repository104(
4654
4679
  getModuleParams("stock", Nomalism.ChatRapidMessage.Route)
4655
4680
  );
4656
- this.SideMenu = new Repository104(getModuleParams("stock", Nomalism.SideMenu.Route));
4657
- this.SidemenuHighlight = new Repository105(
4681
+ this.SideMenu = new Repository105(getModuleParams("stock", Nomalism.SideMenu.Route));
4682
+ this.SidemenuHighlight = new Repository106(
4658
4683
  getModuleParams("stock", Nomalism.SidemenuHighlight.Route)
4659
4684
  );
4660
- this.ErrorLog = new Repository106(getModuleParams("view", Nomalism.ErrorLog.Route));
4661
- this.AdminPanel = new Repository107(getModuleParams("view", Nomalism.AdminPanel.Route));
4662
- this.DocumentLineRm = new Repository108(
4685
+ this.ErrorLog = new Repository107(getModuleParams("view", Nomalism.ErrorLog.Route));
4686
+ this.AdminPanel = new Repository108(getModuleParams("view", Nomalism.AdminPanel.Route));
4687
+ this.DocumentLineRm = new Repository109(
4663
4688
  getModuleParams("stock", Nomalism.DocumentLineRm.Route)
4664
4689
  );
4665
- this.DocumentLineMt = new Repository109(
4690
+ this.DocumentLineMt = new Repository110(
4666
4691
  getModuleParams("stock", Nomalism.DocumentLineMt.Route)
4667
4692
  );
4668
- this.ChatSubscriber = new Repository110(
4693
+ this.ChatSubscriber = new Repository111(
4669
4694
  getModuleParams("users", Nomalism.ChatSubscriber.Route)
4670
4695
  );
4671
- this.Tag = new Repository111(getModuleParams("stock", Nomalism.Tag.Route));
4672
- this.Gmails = new Repository112(getModuleParams("stock", Nomalism.Gmails.Route));
4673
- this.NPF = new Repository113(getModuleParams("stock", Nomalism.NPF.Route));
4674
- this.NRCL = new Repository114(getModuleParams("stock", Nomalism.NRCL.Route));
4675
- this.PaymentBatch = new Repository116(
4696
+ this.Tag = new Repository112(getModuleParams("stock", Nomalism.Tag.Route));
4697
+ this.Gmails = new Repository113(getModuleParams("stock", Nomalism.Gmails.Route));
4698
+ this.NPF = new Repository114(getModuleParams("stock", Nomalism.NPF.Route));
4699
+ this.NRCL = new Repository115(getModuleParams("stock", Nomalism.NRCL.Route));
4700
+ this.PaymentBatch = new Repository117(
4676
4701
  getModuleParams("stock", Nomalism.PaymentBatch.Route)
4677
4702
  );
4678
- this.CurrentAccount = new Repository115(
4703
+ this.CurrentAccount = new Repository116(
4679
4704
  getModuleParams("stock", Nomalism.CurrentAccount.Route)
4680
4705
  );
4681
- this.Portal = new Repository117(getModuleParams("stock", Nomalism.Portal.Route));
4682
- this.GoogleSheetPool = new Repository118(
4706
+ this.Portal = new Repository118(getModuleParams("stock", Nomalism.Portal.Route));
4707
+ this.GoogleSheetPool = new Repository119(
4683
4708
  getModuleParams("stock", Nomalism.GoogleSheetPool.Route)
4684
4709
  );
4685
- this.AccountCode = new Repository119(getModuleParams("stock", Nomalism.AccountCode.Route));
4686
- this.LLM = new Repository120(getModuleParams("llm", Nomalism.LLM.Route));
4687
- this.PatchNotes = new Repository121(
4710
+ this.AccountCode = new Repository120(getModuleParams("stock", Nomalism.AccountCode.Route));
4711
+ this.LLM = new Repository121(getModuleParams("llm", Nomalism.LLM.Route));
4712
+ this.PatchNotes = new Repository122(
4688
4713
  getModuleParams("integration", Nomalism.PatchNotes.Route)
4689
4714
  );
4690
- this.DocumentHeaderSurvey = new Repository122(
4715
+ this.DocumentHeaderSurvey = new Repository123(
4691
4716
  getModuleParams("stock", Nomalism.DocumentHeaderSurvey.Route)
4692
4717
  );
4693
- this.DocumentHeaderSubscriber = new Repository123(
4718
+ this.DocumentHeaderSubscriber = new Repository124(
4694
4719
  getModuleParams("stock", Nomalism.DocumentHeaderSubscriber.Route)
4695
4720
  );
4696
- this.GoogleCalendar = new Repository124(
4721
+ this.GoogleCalendar = new Repository125(
4697
4722
  getModuleParams("stock", Nomalism.GoogleCalendar.Route)
4698
4723
  );
4699
- this.ProductLocation = new Repository125(
4724
+ this.ProductLocation = new Repository126(
4700
4725
  getModuleParams("stock", Nomalism.ProductLocation.Route)
4701
4726
  );
4727
+ this.TimeSheet = new TimesheetRepository(getModuleParams("users", Nomalism.TimeSheet.Route));
4702
4728
  }
4703
4729
  };
4704
4730