repzo 1.0.130 → 1.0.131

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/src/index.ts CHANGED
@@ -37,7 +37,7 @@ export default class Repzo {
37
37
  }
38
38
  }
39
39
 
40
- private _end_points = {
40
+ private static _end_points = {
41
41
  CLIENT: "client",
42
42
  PRODUCT: "product",
43
43
  VARIANT: "variant",
@@ -122,7 +122,9 @@ export default class Repzo {
122
122
  ACTIVITY_FEEDBACKV2: "activity-feedback-v2",
123
123
  FEEDBACK_OPTION: "feedback-options",
124
124
  } as const;
125
- public END_POINTS = this._end_points;
125
+ public static get END_POINTS() {
126
+ return Repzo._end_points;
127
+ }
126
128
  private async _fetch(baseUrl: string, path: string, params?: Params) {
127
129
  if (params) {
128
130
  params = normalizeParams(params);
@@ -187,7 +189,7 @@ export default class Repzo {
187
189
  }
188
190
 
189
191
  client = {
190
- _path: this._end_points.CLIENT,
192
+ _path: Repzo._end_points.CLIENT,
191
193
  find: async (
192
194
  params?: Service.Client.Find.Params
193
195
  ): Promise<Service.Client.Find.Result> => {
@@ -241,7 +243,7 @@ export default class Repzo {
241
243
  };
242
244
 
243
245
  product = {
244
- _path: this._end_points.PRODUCT,
246
+ _path: Repzo._end_points.PRODUCT,
245
247
  find: async (
246
248
  params?: Service.Product.Find.Params
247
249
  ): Promise<Service.Product.Find.Result> => {
@@ -299,7 +301,7 @@ export default class Repzo {
299
301
  };
300
302
 
301
303
  variant = {
302
- _path: this._end_points.VARIANT,
304
+ _path: Repzo._end_points.VARIANT,
303
305
  find: async (
304
306
  params?: Service.Variant.Find.Params
305
307
  ): Promise<Service.Variant.Find.Result> => {
@@ -357,7 +359,7 @@ export default class Repzo {
357
359
  };
358
360
 
359
361
  category = {
360
- _path: this._end_points.CATEGORY,
362
+ _path: Repzo._end_points.CATEGORY,
361
363
  find: async (
362
364
  params?: Service.Category.Find.Params
363
365
  ): Promise<Service.Category.Find.Result> => {
@@ -413,7 +415,7 @@ export default class Repzo {
413
415
  };
414
416
 
415
417
  sub_category = {
416
- _path: this._end_points.SUB_CATEGORY,
418
+ _path: Repzo._end_points.SUB_CATEGORY,
417
419
  find: async (
418
420
  params?: Service.SubCategory.Find.Params
419
421
  ): Promise<Service.SubCategory.Find.Result> => {
@@ -471,7 +473,7 @@ export default class Repzo {
471
473
  };
472
474
 
473
475
  brand = {
474
- _path: this._end_points.BRAND,
476
+ _path: Repzo._end_points.BRAND,
475
477
  find: async (
476
478
  params?: Service.Brand.Find.Params
477
479
  ): Promise<Service.Brand.Find.Result> => {
@@ -520,7 +522,7 @@ export default class Repzo {
520
522
  };
521
523
 
522
524
  product_group = {
523
- _path: this._end_points.PRODUCT_GROUP,
525
+ _path: Repzo._end_points.PRODUCT_GROUP,
524
526
  find: async (
525
527
  params?: Service.ProductGroup.Find.Params
526
528
  ): Promise<Service.ProductGroup.Find.Result> => {
@@ -576,7 +578,7 @@ export default class Repzo {
576
578
  };
577
579
 
578
580
  tax = {
579
- _path: this._end_points.TAX,
581
+ _path: Repzo._end_points.TAX,
580
582
  find: async (
581
583
  params?: Service.Tax.Find.Params
582
584
  ): Promise<Service.Tax.Find.Result> => {
@@ -623,7 +625,7 @@ export default class Repzo {
623
625
  };
624
626
 
625
627
  measureunit = {
626
- _path: this._end_points.MEASUREUNIT,
628
+ _path: Repzo._end_points.MEASUREUNIT,
627
629
  find: async (
628
630
  params?: Service.MeasureUnit.Find.Params
629
631
  ): Promise<Service.MeasureUnit.Find.Result> => {
@@ -679,7 +681,7 @@ export default class Repzo {
679
681
  };
680
682
 
681
683
  measureunitFamily = {
682
- _path: this._end_points.MEASUREUNIT_FAMILY,
684
+ _path: Repzo._end_points.MEASUREUNIT_FAMILY,
683
685
  find: async (
684
686
  params?: Service.MeasureUnitFamily.Find.Params
685
687
  ): Promise<Service.MeasureUnitFamily.Find.Result> => {
@@ -735,7 +737,7 @@ export default class Repzo {
735
737
  };
736
738
 
737
739
  media = {
738
- _path: this._end_points.MEDIA,
740
+ _path: Repzo._end_points.MEDIA,
739
741
  find: async (
740
742
  params?: Service.Media.Find.Params
741
743
  ): Promise<Service.Media.Find.Result> => {
@@ -784,7 +786,7 @@ export default class Repzo {
784
786
  };
785
787
 
786
788
  priceList = {
787
- _path: this._end_points.PRICELIST,
789
+ _path: Repzo._end_points.PRICELIST,
788
790
  find: async (
789
791
  params?: Service.PriceList.Find.Params
790
792
  ): Promise<Service.PriceList.Find.Result> => {
@@ -840,7 +842,7 @@ export default class Repzo {
840
842
  };
841
843
 
842
844
  priceListItem = {
843
- _path: this._end_points.PRICELIST_ITEM,
845
+ _path: Repzo._end_points.PRICELIST_ITEM,
844
846
  find: async (
845
847
  params?: Service.PriceListItem.Find.Params
846
848
  ): Promise<Service.PriceListItem.Find.Result> => {
@@ -896,7 +898,7 @@ export default class Repzo {
896
898
  };
897
899
 
898
900
  team = {
899
- _path: this._end_points.TEAM,
901
+ _path: Repzo._end_points.TEAM,
900
902
  find: async (
901
903
  params?: Service.Team.Find.Params
902
904
  ): Promise<Service.Team.Find.Result> => {
@@ -943,7 +945,7 @@ export default class Repzo {
943
945
  };
944
946
 
945
947
  returnReason = {
946
- _path: this._end_points.RETURN_REASON,
948
+ _path: Repzo._end_points.RETURN_REASON,
947
949
  find: async (
948
950
  params?: Service.ReturnReason.Find.Params
949
951
  ): Promise<Service.ReturnReason.Find.Result> => {
@@ -998,7 +1000,7 @@ export default class Repzo {
998
1000
  };
999
1001
 
1000
1002
  rep = {
1001
- _path: this._end_points.REP,
1003
+ _path: Repzo._end_points.REP,
1002
1004
  find: async (
1003
1005
  params?: Service.Rep.Find.Params
1004
1006
  ): Promise<Service.Rep.Find.Result> => {
@@ -1052,7 +1054,7 @@ export default class Repzo {
1052
1054
  };
1053
1055
 
1054
1056
  tag = {
1055
- _path: this._end_points.TAG,
1057
+ _path: Repzo._end_points.TAG,
1056
1058
  find: async (
1057
1059
  params?: Service.Tag.Find.Params
1058
1060
  ): Promise<Service.Tag.Find.Result> => {
@@ -1099,7 +1101,7 @@ export default class Repzo {
1099
1101
  };
1100
1102
 
1101
1103
  warehouse = {
1102
- _path: this._end_points.WAREHOUSE,
1104
+ _path: Repzo._end_points.WAREHOUSE,
1103
1105
  find: async (
1104
1106
  params?: Service.Warehouse.Find.Params
1105
1107
  ): Promise<Service.Warehouse.Find.Result> => {
@@ -1155,7 +1157,7 @@ export default class Repzo {
1155
1157
  };
1156
1158
 
1157
1159
  route = {
1158
- _path: this._end_points.ROUTE,
1160
+ _path: Repzo._end_points.ROUTE,
1159
1161
  find: async (
1160
1162
  params?: Service.Route.Find.Params
1161
1163
  ): Promise<Service.Route.Find.Result> => {
@@ -1200,7 +1202,7 @@ export default class Repzo {
1200
1202
  };
1201
1203
 
1202
1204
  productModifiersGroup = {
1203
- _path: this._end_points.PRODUCT_MODIFIERS_GROUP,
1205
+ _path: Repzo._end_points.PRODUCT_MODIFIERS_GROUP,
1204
1206
  find: async (
1205
1207
  params?: Service.ProductModifiersGroup.Find.Params
1206
1208
  ): Promise<Service.ProductModifiersGroup.Find.Result> => {
@@ -1252,7 +1254,7 @@ export default class Repzo {
1252
1254
  };
1253
1255
 
1254
1256
  channel = {
1255
- _path: this._end_points.CHANNEL,
1257
+ _path: Repzo._end_points.CHANNEL,
1256
1258
  find: async (
1257
1259
  params?: Service.Channel.Find.Params
1258
1260
  ): Promise<Service.Channel.Find.Result> => {
@@ -1307,7 +1309,7 @@ export default class Repzo {
1307
1309
  },
1308
1310
  };
1309
1311
  speciality = {
1310
- _path: this._end_points.SPECIALITY,
1312
+ _path: Repzo._end_points.SPECIALITY,
1311
1313
  find: async (
1312
1314
  params?: Service.Speciality.Find.Params
1313
1315
  ): Promise<Service.Speciality.Find.Result> => {
@@ -1362,7 +1364,7 @@ export default class Repzo {
1362
1364
  },
1363
1365
  };
1364
1366
  clientContact = {
1365
- _path: this._end_points.CLIENT_CONTACT,
1367
+ _path: Repzo._end_points.CLIENT_CONTACT,
1366
1368
  find: async (
1367
1369
  params?: Service.ClientContact.Find.Params
1368
1370
  ): Promise<Service.ClientContact.Find.Result> => {
@@ -1417,7 +1419,7 @@ export default class Repzo {
1417
1419
  },
1418
1420
  };
1419
1421
  paymentTerm = {
1420
- _path: this._end_points.PAYMENT_TERM,
1422
+ _path: Repzo._end_points.PAYMENT_TERM,
1421
1423
  find: async (
1422
1424
  params?: Service.PaymentTerm.Find.Params
1423
1425
  ): Promise<Service.PaymentTerm.Find.Result> => {
@@ -1473,7 +1475,7 @@ export default class Repzo {
1473
1475
  };
1474
1476
 
1475
1477
  bank = {
1476
- _path: this._end_points.BANK,
1478
+ _path: Repzo._end_points.BANK,
1477
1479
  find: async (
1478
1480
  params?: Service.Bank.Find.Params
1479
1481
  ): Promise<Service.Bank.Find.Result> => {
@@ -1510,7 +1512,7 @@ export default class Repzo {
1510
1512
  };
1511
1513
 
1512
1514
  bank_list = {
1513
- _path: this._end_points.BANK_LIST,
1515
+ _path: Repzo._end_points.BANK_LIST,
1514
1516
  find: async (
1515
1517
  params?: Service.BankList.Find.Params
1516
1518
  ): Promise<Service.BankList.Find.Result> => {
@@ -1556,7 +1558,7 @@ export default class Repzo {
1556
1558
  };
1557
1559
 
1558
1560
  customStatus = {
1559
- _path: this._end_points.CUSTOM_STATUS,
1561
+ _path: Repzo._end_points.CUSTOM_STATUS,
1560
1562
  find: async (
1561
1563
  params?: Service.CustomStatus.Find.Params
1562
1564
  ): Promise<Service.CustomStatus.Find.Result> => {
@@ -1612,7 +1614,7 @@ export default class Repzo {
1612
1614
  };
1613
1615
 
1614
1616
  customList = {
1615
- _path: this._end_points.CUSTOM_LIST,
1617
+ _path: Repzo._end_points.CUSTOM_LIST,
1616
1618
  find: async (
1617
1619
  params?: Service.CustomList.Find.Params
1618
1620
  ): Promise<Service.CustomList.Find.Result> => {
@@ -1669,7 +1671,7 @@ export default class Repzo {
1669
1671
  };
1670
1672
 
1671
1673
  customListItem = {
1672
- _path: this._end_points.CUSTOM_LIST_ITEM,
1674
+ _path: Repzo._end_points.CUSTOM_LIST_ITEM,
1673
1675
  find: async (
1674
1676
  params?: Service.CustomListItem.Find.Params
1675
1677
  ): Promise<Service.CustomListItem.Find.Result> => {
@@ -1726,7 +1728,7 @@ export default class Repzo {
1726
1728
  };
1727
1729
 
1728
1730
  inventoryAdjustmentReason = {
1729
- _path: this._end_points.INVENTORY_ADJUSTMENT_REASON,
1731
+ _path: Repzo._end_points.INVENTORY_ADJUSTMENT_REASON,
1730
1732
  find: async (
1731
1733
  params?: Service.InventoryAdjustmentReason.Find.Params
1732
1734
  ): Promise<Service.InventoryAdjustmentReason.Find.Result> => {
@@ -1780,7 +1782,7 @@ export default class Repzo {
1780
1782
  };
1781
1783
 
1782
1784
  workorder = {
1783
- _path: this._end_points.WORKORDER,
1785
+ _path: Repzo._end_points.WORKORDER,
1784
1786
  find: async (
1785
1787
  params?: Service.Workorder.Find.Params
1786
1788
  ): Promise<Service.Workorder.Find.Result> => {
@@ -1834,7 +1836,7 @@ export default class Repzo {
1834
1836
  };
1835
1837
 
1836
1838
  workorderRequest = {
1837
- _path: this._end_points.WORKORDER_REQUEST,
1839
+ _path: Repzo._end_points.WORKORDER_REQUEST,
1838
1840
  find: async (
1839
1841
  params?: Service.WorkorderRequest.Find.Params
1840
1842
  ): Promise<Service.WorkorderRequest.Find.Result> => {
@@ -1888,7 +1890,7 @@ export default class Repzo {
1888
1890
  };
1889
1891
 
1890
1892
  supplier = {
1891
- _path: this._end_points.SUPPLIER,
1893
+ _path: Repzo._end_points.SUPPLIER,
1892
1894
  find: async (
1893
1895
  params?: Service.Supplier.Find.Params
1894
1896
  ): Promise<Service.Supplier.Find.Result> => {
@@ -1934,7 +1936,7 @@ export default class Repzo {
1934
1936
  };
1935
1937
 
1936
1938
  quickConvertToPdf = {
1937
- _path: this._end_points.QUICK_CONVERT_TO_PDF,
1939
+ _path: Repzo._end_points.QUICK_CONVERT_TO_PDF,
1938
1940
  find: async (
1939
1941
  params?: Service.QuickConvertToPdf.Find.Params
1940
1942
  ): Promise<Service.QuickConvertToPdf.Find.Result> => {
@@ -1976,7 +1978,7 @@ export default class Repzo {
1976
1978
  },
1977
1979
  };
1978
1980
  visit = {
1979
- _path: this._end_points.VISIT,
1981
+ _path: Repzo._end_points.VISIT,
1980
1982
  find: async (
1981
1983
  params?: Service.Visit.Find.Params
1982
1984
  ): Promise<Service.Visit.Find.Result> => {
@@ -2018,7 +2020,7 @@ export default class Repzo {
2018
2020
  };
2019
2021
 
2020
2022
  activityFeedback = {
2021
- _path: this._end_points.ACTIVITY_FEEDBACK,
2023
+ _path: Repzo._end_points.ACTIVITY_FEEDBACK,
2022
2024
  find: async (
2023
2025
  params?: Service.ActivityFeedback.Find.Params
2024
2026
  ): Promise<Service.ActivityFeedback.Find.Result> => {
@@ -2064,7 +2066,7 @@ export default class Repzo {
2064
2066
  };
2065
2067
 
2066
2068
  activityFeedbackV2 = {
2067
- _path: this._end_points.ACTIVITY_FEEDBACKV2,
2069
+ _path: Repzo._end_points.ACTIVITY_FEEDBACKV2,
2068
2070
  find: async (
2069
2071
  params?: Service.ActivityFeedbackV2.Find.Params
2070
2072
  ): Promise<Service.ActivityFeedbackV2.Find.Result> => {
@@ -2110,7 +2112,7 @@ export default class Repzo {
2110
2112
  };
2111
2113
 
2112
2114
  feedbackOption = {
2113
- _path: this._end_points.FEEDBACK_OPTION,
2115
+ _path: Repzo._end_points.FEEDBACK_OPTION,
2114
2116
  find: async (
2115
2117
  params?: Service.FeedbackOption.Find.Params
2116
2118
  ): Promise<Service.FeedbackOption.Find.Result> => {
@@ -2156,7 +2158,7 @@ export default class Repzo {
2156
2158
  };
2157
2159
 
2158
2160
  invoice = {
2159
- _path: this._end_points.INVOICE,
2161
+ _path: Repzo._end_points.INVOICE,
2160
2162
  find: async (
2161
2163
  params?: Service.FullInvoice.Find.Params
2162
2164
  ): Promise<Service.FullInvoice.Find.Result> => {
@@ -2204,7 +2206,7 @@ export default class Repzo {
2204
2206
  };
2205
2207
 
2206
2208
  proforma = {
2207
- _path: this._end_points.PROFORMA,
2209
+ _path: Repzo._end_points.PROFORMA,
2208
2210
  find: async (
2209
2211
  params?: Service.Proforma.Find.Params
2210
2212
  ): Promise<Service.Proforma.Find.Result> => {
@@ -2252,7 +2254,7 @@ export default class Repzo {
2252
2254
  };
2253
2255
 
2254
2256
  payment = {
2255
- _path: this._end_points.PAYMENT,
2257
+ _path: Repzo._end_points.PAYMENT,
2256
2258
  find: async (
2257
2259
  params?: Service.Payment.Find.Params
2258
2260
  ): Promise<Service.Payment.Find.Result> => {
@@ -2300,7 +2302,7 @@ export default class Repzo {
2300
2302
  };
2301
2303
 
2302
2304
  refund = {
2303
- _path: this._end_points.REFUND,
2305
+ _path: Repzo._end_points.REFUND,
2304
2306
  find: async (
2305
2307
  params?: Service.Refund.Find.Params
2306
2308
  ): Promise<Service.Refund.Find.Result> => {
@@ -2344,7 +2346,7 @@ export default class Repzo {
2344
2346
  };
2345
2347
 
2346
2348
  settlement = {
2347
- _path: this._end_points.SETTLEMENT,
2349
+ _path: Repzo._end_points.SETTLEMENT,
2348
2350
 
2349
2351
  find: async (
2350
2352
  params?: Service.Settlement.Find.Params
@@ -2381,7 +2383,7 @@ export default class Repzo {
2381
2383
  };
2382
2384
 
2383
2385
  check = {
2384
- _path: this._end_points.CHECK,
2386
+ _path: Repzo._end_points.CHECK,
2385
2387
 
2386
2388
  find: async (
2387
2389
  params?: Service.Check.Find.Params
@@ -2414,7 +2416,7 @@ export default class Repzo {
2414
2416
  };
2415
2417
 
2416
2418
  day = {
2417
- _path: this._end_points.DAY,
2419
+ _path: Repzo._end_points.DAY,
2418
2420
 
2419
2421
  find: async (
2420
2422
  params?: Service.Day.Find.Params
@@ -2447,7 +2449,7 @@ export default class Repzo {
2447
2449
  };
2448
2450
 
2449
2451
  receivingMaterial = {
2450
- _path: this._end_points.RECEIVING_MATERIAL,
2452
+ _path: Repzo._end_points.RECEIVING_MATERIAL,
2451
2453
 
2452
2454
  find: async (
2453
2455
  params?: Service.ReceivingMaterial.Find.Params
@@ -2496,7 +2498,7 @@ export default class Repzo {
2496
2498
  };
2497
2499
 
2498
2500
  adjustAccount = {
2499
- _path: this._end_points.ADJUST_ACCOUNT,
2501
+ _path: Repzo._end_points.ADJUST_ACCOUNT,
2500
2502
  find: async (
2501
2503
  params?: Service.AdjustAccount.Find.Params
2502
2504
  ): Promise<Service.AdjustAccount.Find.Result> => {
@@ -2532,7 +2534,7 @@ export default class Repzo {
2532
2534
  };
2533
2535
 
2534
2536
  transfer = {
2535
- _path: this._end_points.TRANSFER,
2537
+ _path: Repzo._end_points.TRANSFER,
2536
2538
  find: async (
2537
2539
  params?: Service.Transfer.Find.Params
2538
2540
  ): Promise<Service.Transfer.Find.Result> => {
@@ -2580,7 +2582,7 @@ export default class Repzo {
2580
2582
  };
2581
2583
 
2582
2584
  msl = {
2583
- _path: this._end_points.MSL,
2585
+ _path: Repzo._end_points.MSL,
2584
2586
  find: async (
2585
2587
  params?: Service.Msl.Find.Params
2586
2588
  ): Promise<Service.Msl.Find.Result> => {
@@ -2634,7 +2636,7 @@ export default class Repzo {
2634
2636
  };
2635
2637
 
2636
2638
  mslProduct = {
2637
- _path: this._end_points.MSL_PRODUCT,
2639
+ _path: Repzo._end_points.MSL_PRODUCT,
2638
2640
  find: async (
2639
2641
  params?: Service.MslProduct.Find.Params
2640
2642
  ): Promise<Service.MslProduct.Find.Result> => {
@@ -2692,7 +2694,7 @@ export default class Repzo {
2692
2694
  };
2693
2695
 
2694
2696
  mediaStorage = {
2695
- _path: this._end_points.MEDIA_STORAGE,
2697
+ _path: Repzo._end_points.MEDIA_STORAGE,
2696
2698
  find: async (
2697
2699
  params?: Service.MediaStorage.Find.Params
2698
2700
  ): Promise<Service.MediaStorage.Find.Result> => {
@@ -2750,7 +2752,7 @@ export default class Repzo {
2750
2752
  };
2751
2753
 
2752
2754
  storecheckTemplate = {
2753
- _path: this._end_points.STORECHECK_TEMPLATE,
2755
+ _path: Repzo._end_points.STORECHECK_TEMPLATE,
2754
2756
  find: async (
2755
2757
  params?: Service.StorecheckTemplate.Find.Params
2756
2758
  ): Promise<Service.StorecheckTemplate.Find.Result> => {
@@ -2808,7 +2810,7 @@ export default class Repzo {
2808
2810
  };
2809
2811
 
2810
2812
  activityStorecheck = {
2811
- _path: this._end_points.ACTIVITY_STORECHECK,
2813
+ _path: Repzo._end_points.ACTIVITY_STORECHECK,
2812
2814
  find: async (
2813
2815
  params?: Service.ActivityStorecheck.Find.Params
2814
2816
  ): Promise<Service.ActivityStorecheck.Find.Result> => {
@@ -2856,7 +2858,7 @@ export default class Repzo {
2856
2858
  };
2857
2859
 
2858
2860
  adjustInventory = {
2859
- _path: this._end_points.ADJUST_INVENTORY,
2861
+ _path: Repzo._end_points.ADJUST_INVENTORY,
2860
2862
  find: async (
2861
2863
  params?: Service.AdjustInventory.Find.Params
2862
2864
  ): Promise<Service.AdjustInventory.Find.Result> => {
@@ -2892,7 +2894,7 @@ export default class Repzo {
2892
2894
  };
2893
2895
 
2894
2896
  inventory = {
2895
- _path: this._end_points.INVENTORY,
2897
+ _path: Repzo._end_points.INVENTORY,
2896
2898
  find: async (
2897
2899
  params?: Service.Inventory.Find.Params
2898
2900
  ): Promise<Service.Inventory.Find.Result> => {
@@ -2906,7 +2908,7 @@ export default class Repzo {
2906
2908
  };
2907
2909
 
2908
2910
  integrationApp = {
2909
- _path: this._end_points.INTEGRATION_APP,
2911
+ _path: Repzo._end_points.INTEGRATION_APP,
2910
2912
  find: async (
2911
2913
  params?: Service.App.Find.Params
2912
2914
  ): Promise<Service.App.Find.Result> => {
@@ -2954,7 +2956,7 @@ export default class Repzo {
2954
2956
  };
2955
2957
 
2956
2958
  joinActionsWebHook = {
2957
- _path: this._end_points.JOIN_ACTIONS_WEBHOOK,
2959
+ _path: Repzo._end_points.JOIN_ACTIONS_WEBHOOK,
2958
2960
  update: async (
2959
2961
  id: null,
2960
2962
  body: Service.JoinActionsWeHook.Data
@@ -3316,7 +3318,7 @@ export default class Repzo {
3316
3318
  };
3317
3319
 
3318
3320
  patchAction = {
3319
- _path: this._end_points.PATCH_ACTION,
3321
+ _path: Repzo._end_points.PATCH_ACTION,
3320
3322
  create: async (
3321
3323
  body: Service.PatchAction.Create.Body,
3322
3324
  params?: Service.PatchAction.Create.Params
@@ -3343,7 +3345,7 @@ export default class Repzo {
3343
3345
  };
3344
3346
 
3345
3347
  updateIntegrationMeta = {
3346
- _path: this._end_points.UPDATE_INTEGRATION_META,
3348
+ _path: Repzo._end_points.UPDATE_INTEGRATION_META,
3347
3349
  create: async (
3348
3350
  body: Service.UpdateIntegrationMeta.Create.Body,
3349
3351
  params?: Service.UpdateIntegrationMeta.Create.Params
@@ -3359,7 +3361,7 @@ export default class Repzo {
3359
3361
  };
3360
3362
 
3361
3363
  assetPartType = {
3362
- _path: this._end_points.ASSET_PART_TYPE,
3364
+ _path: Repzo._end_points.ASSET_PART_TYPE,
3363
3365
  find: async (
3364
3366
  params?: Service.AssetPartType.Find.Params
3365
3367
  ): Promise<Service.AssetPartType.Find.Result> => {
@@ -3411,7 +3413,7 @@ export default class Repzo {
3411
3413
  };
3412
3414
 
3413
3415
  assetPart = {
3414
- _path: this._end_points.ASSET_PART,
3416
+ _path: Repzo._end_points.ASSET_PART,
3415
3417
  find: async (
3416
3418
  params?: Service.AssetPart.Find.Params
3417
3419
  ): Promise<Service.AssetPart.Find.Result> => {
@@ -3465,7 +3467,7 @@ export default class Repzo {
3465
3467
  };
3466
3468
 
3467
3469
  assetPartUnit = {
3468
- _path: this._end_points.ASSET_PART_UNIT,
3470
+ _path: Repzo._end_points.ASSET_PART_UNIT,
3469
3471
  find: async (
3470
3472
  params?: Service.AssetPartUnit.Find.Params
3471
3473
  ): Promise<Service.AssetPartUnit.Find.Result> => {
@@ -3500,7 +3502,7 @@ export default class Repzo {
3500
3502
  };
3501
3503
 
3502
3504
  assetPartReceival = {
3503
- _path: this._end_points.ASSET_PART_RECEIVAL,
3505
+ _path: Repzo._end_points.ASSET_PART_RECEIVAL,
3504
3506
  find: async (
3505
3507
  params?: Service.AssetPartReceival.Find.Params
3506
3508
  ): Promise<Service.AssetPartReceival.Find.Result> => {
@@ -3557,7 +3559,7 @@ export default class Repzo {
3557
3559
  };
3558
3560
 
3559
3561
  assetPartTransfer = {
3560
- _path: this._end_points.ASSET_PART_TRANSFER,
3562
+ _path: Repzo._end_points.ASSET_PART_TRANSFER,
3561
3563
  find: async (
3562
3564
  params?: Service.AssetPartTransfer.Find.Params
3563
3565
  ): Promise<Service.AssetPartTransfer.Find.Result> => {
@@ -3614,7 +3616,7 @@ export default class Repzo {
3614
3616
  };
3615
3617
 
3616
3618
  returnAssetPartUnit = {
3617
- _path: this._end_points.RETURN_ASSET_PART_UNIT,
3619
+ _path: Repzo._end_points.RETURN_ASSET_PART_UNIT,
3618
3620
  find: async (
3619
3621
  params?: Service.ReturnAssetPartUnit.Find.Params
3620
3622
  ): Promise<Service.ReturnAssetPartUnit.Find.Result> => {
@@ -3671,7 +3673,7 @@ export default class Repzo {
3671
3673
  };
3672
3674
 
3673
3675
  storeAssetPartUnit = {
3674
- _path: this._end_points.STORE_ASSET_PART_UNIT,
3676
+ _path: Repzo._end_points.STORE_ASSET_PART_UNIT,
3675
3677
  find: async (
3676
3678
  params?: Service.StoreAssetPartUnit.Find.Params
3677
3679
  ): Promise<Service.StoreAssetPartUnit.Find.Result> => {
@@ -3728,7 +3730,7 @@ export default class Repzo {
3728
3730
  };
3729
3731
 
3730
3732
  ocrInvoiceJobTemplate = {
3731
- _path: this._end_points.OCR_INVOICE_JOB_TEMPLATE,
3733
+ _path: Repzo._end_points.OCR_INVOICE_JOB_TEMPLATE,
3732
3734
  find: async (
3733
3735
  params?: Service.OcrInvoiceJobTemplate.Find.Params
3734
3736
  ): Promise<Service.OcrInvoiceJobTemplate.Find.Result> => {
@@ -3771,7 +3773,7 @@ export default class Repzo {
3771
3773
  };
3772
3774
 
3773
3775
  ocrInvoiceJobGroup = {
3774
- _path: this._end_points.OCR_INVOICE_JOB_GROUP,
3776
+ _path: Repzo._end_points.OCR_INVOICE_JOB_GROUP,
3775
3777
  find: async (
3776
3778
  params?: Service.OcrInvoiceJobGroup.Find.Params
3777
3779
  ): Promise<Service.OcrInvoiceJobGroup.Find.Result> => {
@@ -3803,7 +3805,7 @@ export default class Repzo {
3803
3805
  };
3804
3806
 
3805
3807
  activityAiSalesOrder = {
3806
- _path: this._end_points.ACTIVITY_AI_SALES_ORDER,
3808
+ _path: Repzo._end_points.ACTIVITY_AI_SALES_ORDER,
3807
3809
  find: async (
3808
3810
  params?: Service.ActivityAiSalesOrder.Find.Params
3809
3811
  ): Promise<Service.ActivityAiSalesOrder.Find.Result> => {
@@ -3835,7 +3837,7 @@ export default class Repzo {
3835
3837
  };
3836
3838
 
3837
3839
  ocrInvoiceJob = {
3838
- _path: this._end_points.OCR_INVOICE_JOB,
3840
+ _path: Repzo._end_points.OCR_INVOICE_JOB,
3839
3841
  find: async (
3840
3842
  params?: Service.OcrInvoiceJob.Find.Params
3841
3843
  ): Promise<Service.OcrInvoiceJob.Find.Result> => {
@@ -3857,7 +3859,7 @@ export default class Repzo {
3857
3859
  };
3858
3860
 
3859
3861
  ocrInvoiceJobPage = {
3860
- _path: this._end_points.OCR_INVOICE_JOB_PAGE,
3862
+ _path: Repzo._end_points.OCR_INVOICE_JOB_PAGE,
3861
3863
  find: async (
3862
3864
  params?: Service.OcrInvoiceJobPage.Find.Params
3863
3865
  ): Promise<Service.OcrInvoiceJobPage.Find.Result> => {
@@ -3890,7 +3892,7 @@ export default class Repzo {
3890
3892
  };
3891
3893
 
3892
3894
  settings = {
3893
- _path: this._end_points.SETTINGS,
3895
+ _path: Repzo._end_points.SETTINGS,
3894
3896
  find: async (
3895
3897
  params?: Service.Settings.Find.Params
3896
3898
  ): Promise<Service.Settings.Find.Result> => {
@@ -3923,7 +3925,7 @@ export default class Repzo {
3923
3925
  };
3924
3926
 
3925
3927
  mailUnsubscribe = {
3926
- _path: this._end_points.MAIL_UNSUBSCRIBE,
3928
+ _path: Repzo._end_points.MAIL_UNSUBSCRIBE,
3927
3929
 
3928
3930
  get: async (
3929
3931
  id: Service.MailUnsubsrcibe.Get.ID
@@ -3948,7 +3950,7 @@ export default class Repzo {
3948
3950
  };
3949
3951
 
3950
3952
  approvalRequest = {
3951
- _path: this._end_points.APPROVAL_REQUEST,
3953
+ _path: Repzo._end_points.APPROVAL_REQUEST,
3952
3954
  find: async (
3953
3955
  params?: Service.ApprovalRequest.Find.Params
3954
3956
  ): Promise<Service.ApprovalRequest.Find.Result> => {
@@ -4004,7 +4006,7 @@ export default class Repzo {
4004
4006
  };
4005
4007
 
4006
4008
  safeInvoiceSerialCounter = {
4007
- _path: this._end_points.SAFE_INVOICE_SERIAL_COUNTER,
4009
+ _path: Repzo._end_points.SAFE_INVOICE_SERIAL_COUNTER,
4008
4010
 
4009
4011
  update: async (
4010
4012
  id: Service.SafeInvoiceSerialCounter.Update.ID,
@@ -4020,7 +4022,7 @@ export default class Repzo {
4020
4022
  };
4021
4023
 
4022
4024
  clientLocation = {
4023
- _path: this._end_points.CLIENT_LOCATION,
4025
+ _path: Repzo._end_points.CLIENT_LOCATION,
4024
4026
  find: async (
4025
4027
  params?: Service.ClientLocation.Find.Params
4026
4028
  ): Promise<Service.ClientLocation.Find.Result> => {
@@ -4076,7 +4078,7 @@ export default class Repzo {
4076
4078
  };
4077
4079
 
4078
4080
  assetType = {
4079
- _path: this._end_points.ASSET_TYPE,
4081
+ _path: Repzo._end_points.ASSET_TYPE,
4080
4082
  find: async (
4081
4083
  params?: Service.AssetType.Find.Params
4082
4084
  ): Promise<Service.AssetType.Find.Result> => {
@@ -4130,7 +4132,7 @@ export default class Repzo {
4130
4132
  };
4131
4133
 
4132
4134
  asset = {
4133
- _path: this._end_points.ASSET,
4135
+ _path: Repzo._end_points.ASSET,
4134
4136
  find: async (
4135
4137
  params?: Service.Asset.Find.Params
4136
4138
  ): Promise<Service.Asset.Find.Result> => {
@@ -4182,7 +4184,7 @@ export default class Repzo {
4182
4184
  };
4183
4185
 
4184
4186
  assetUnit = {
4185
- _path: this._end_points.ASSET_UNIT,
4187
+ _path: Repzo._end_points.ASSET_UNIT,
4186
4188
  find: async (
4187
4189
  params?: Service.AssetUnit.Find.Params
4188
4190
  ): Promise<Service.AssetUnit.Find.Result> => {
@@ -4238,7 +4240,7 @@ export default class Repzo {
4238
4240
  };
4239
4241
 
4240
4242
  workorderPortal = {
4241
- _path: this._end_points.WORKORDER_PORTAL,
4243
+ _path: Repzo._end_points.WORKORDER_PORTAL,
4242
4244
  find: async (
4243
4245
  params?: Service.WorkorderPortal.Find.Params
4244
4246
  ): Promise<Service.WorkorderPortal.Find.Result> => {
@@ -4292,7 +4294,7 @@ export default class Repzo {
4292
4294
  };
4293
4295
 
4294
4296
  approval = {
4295
- _path: this._end_points.APPROVAL,
4297
+ _path: Repzo._end_points.APPROVAL,
4296
4298
  find: async (
4297
4299
  params?: Service.Approval.Find.Params
4298
4300
  ): Promise<Service.Approval.Find.Result> => {