@simpleapps-com/augur-api 2026.6.5 → 2026.8.1

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.
@@ -123,9 +123,9 @@ declare class HTTPClient {
123
123
  */
124
124
  private transformEdgeCacheParams;
125
125
  get<T>(url: string, params?: unknown, config?: RequestConfig): Promise<T>;
126
- post<T>(url: string, data?: unknown, config?: RequestConfig): Promise<T>;
127
- put<T>(url: string, data?: unknown, config?: RequestConfig): Promise<T>;
128
- delete<T>(url: string, config?: RequestConfig): Promise<T>;
126
+ post<T>(url: string, data?: unknown, params?: unknown, config?: RequestConfig): Promise<T>;
127
+ put<T>(url: string, data?: unknown, params?: unknown, config?: RequestConfig): Promise<T>;
128
+ delete<T>(url: string, params?: unknown, config?: RequestConfig): Promise<T>;
129
129
  setBearerToken(token: string): void;
130
130
  setSiteId(siteId: string): void;
131
131
  }
@@ -306,13 +306,18 @@ declare abstract class BaseServiceClient {
306
306
  * @throws ValidationError When parameters or response validation fails
307
307
  * @throws AugurError For HTTP errors (handled by HTTPClient interceptors)
308
308
  */
309
- protected executeRequest<TParams = unknown, TResponse = unknown>(config: EndpointConfig, params?: TParams, pathParams?: Record<string, string | number>): Promise<TResponse>;
309
+ protected executeRequest<TParams = unknown, TResponse = unknown>(config: EndpointConfig, params?: TParams, pathParams?: Record<string, string | number>, query?: unknown): Promise<TResponse>;
310
310
  /**
311
311
  * Validate request parameters using the provided schema
312
312
  */
313
313
  private validateParameters;
314
314
  /**
315
315
  * Execute HTTP request based on the configured method
316
+ *
317
+ * For GET, `validatedParams` IS the query string. For POST/PUT it is the
318
+ * request body, and `query` carries the query string alongside it — the API
319
+ * declares query params on write methods too, and DELETE previously dropped
320
+ * them entirely.
316
321
  */
317
322
  private executeHttpRequest;
318
323
  /**
@@ -648,13 +653,13 @@ type EdgeCacheParams = v.InferOutput<typeof EdgeCacheParamsSchema>;
648
653
  /**
649
654
  * Generated types for joomla service
650
655
  * Source: shared/specs/joomla.json
651
- * Generated: 2026-04-27T16:13:32Z
656
+ * Generated: 2026-07-28T13:58:11Z
652
657
  *
653
658
  * DO NOT EDIT — regenerate with: python shared/scripts/generate-ts.py
654
659
  */
655
660
 
656
661
  /** Params for GET /categories */
657
- interface CategoriesListParams extends EdgeCacheParams {
662
+ interface CategoriesListParams$1 extends EdgeCacheParams {
658
663
  extension?: string;
659
664
  limit?: number;
660
665
  offset?: number;
@@ -663,7 +668,7 @@ interface CategoriesListParams extends EdgeCacheParams {
663
668
  published?: number;
664
669
  }
665
670
  /** Params for GET /categories/{id} */
666
- type CategoriesGetParams$1 = EdgeCacheParams;
671
+ type CategoriesGetParams$2 = EdgeCacheParams;
667
672
  /** Params for GET /content */
668
673
  interface ContentListParams extends EdgeCacheParams {
669
674
  categoryIdList?: string;
@@ -710,7 +715,25 @@ interface UsergroupsListParams extends EdgeCacheParams {
710
715
  parentIdList?: string;
711
716
  }
712
717
  /** Params for GET /users */
713
- type UsersListParams$1 = EdgeCacheParams;
718
+ interface UsersListParams$1 extends EdgeCacheParams {
719
+ accessLevelList?: string;
720
+ blocked?: number;
721
+ contactId?: string;
722
+ customerId?: number;
723
+ limit?: number;
724
+ offset?: number;
725
+ orderBy?: string;
726
+ q?: string;
727
+ }
728
+ /** Params for POST /users */
729
+ interface UsersCreateParams {
730
+ accessLevelList?: string;
731
+ customerId?: number;
732
+ limit?: number;
733
+ offset?: number;
734
+ orderBy?: string;
735
+ q?: string;
736
+ }
714
737
  /** Params for GET /users/{id} */
715
738
  type UsersGetParams$1 = EdgeCacheParams;
716
739
  /** Params for GET /users/{id}/doc */
@@ -721,6 +744,7 @@ interface UsersDocListParams extends EdgeCacheParams {
721
744
  interface UsersGroupsListParams extends EdgeCacheParams {
722
745
  limit?: number;
723
746
  offset?: number;
747
+ orderBy?: string;
724
748
  }
725
749
  /** Params for GET /users/{id}/groups/{groupId} */
726
750
  type UsersGroupsGetParams = EdgeCacheParams;
@@ -742,8 +766,8 @@ interface UsersVerifyPasswordData {
742
766
  }
743
767
  interface JoomlaClientSpec {
744
768
  categories: {
745
- list: (params?: CategoriesListParams) => Promise<BaseResponse<Record<string, unknown>>>;
746
- get: (id: number, params?: CategoriesGetParams$1) => Promise<BaseResponse<Record<string, unknown>>>;
769
+ list: (params?: CategoriesListParams$1) => Promise<BaseResponse<Record<string, unknown>>>;
770
+ get: (id: number, params?: CategoriesGetParams$2) => Promise<BaseResponse<Record<string, unknown>>>;
747
771
  };
748
772
  content: {
749
773
  list: (params?: ContentListParams) => Promise<BaseResponse<Record<string, unknown>>>;
@@ -768,7 +792,7 @@ interface JoomlaClientSpec {
768
792
  };
769
793
  users: {
770
794
  list: (params?: UsersListParams$1) => Promise<BaseResponse<Record<string, unknown>>>;
771
- create: (data: Record<string, unknown>) => Promise<BaseResponse<Record<string, unknown>>>;
795
+ create: (data: Record<string, unknown>, params?: UsersCreateParams) => Promise<BaseResponse<Record<string, unknown>>>;
772
796
  get: (id: number, params?: UsersGetParams$1) => Promise<BaseResponse<Record<string, unknown>>>;
773
797
  update: (id: number, data: Record<string, unknown>) => Promise<BaseResponse<Record<string, unknown>>>;
774
798
  delete: (id: number) => Promise<BaseResponse<Record<string, unknown>>>;
@@ -827,7 +851,7 @@ type PingResource$b = ReturnType<typeof createPingResource$b>;
827
851
  /**
828
852
  * Generated client for joomla service
829
853
  * Source: shared/specs/joomla.json
830
- * Generated: 2026-05-14T19:11:07Z
854
+ * Generated: 2026-07-28T13:58:11Z
831
855
  *
832
856
  * DO NOT EDIT — regenerate with: python shared/scripts/generate-ts.py
833
857
  */
@@ -855,22 +879,22 @@ declare class JoomlaClient extends BaseServiceClient {
855
879
  /**
856
880
  * Generated types for commerce service
857
881
  * Source: shared/specs/commerce.json
858
- * Generated: 2026-04-27T16:13:32Z
882
+ * Generated: 2026-07-28T13:58:06Z
859
883
  *
860
884
  * DO NOT EDIT — regenerate with: python shared/scripts/generate-ts.py
861
885
  */
862
886
 
863
887
  /** Params for GET /cart-hdr/list */
864
888
  interface CartHdrListListParams extends EdgeCacheParams {
865
- user_id: number;
889
+ userId: number;
866
890
  }
867
891
  /** Params for GET /cart-hdr/lookup */
868
892
  interface CartHdrLookupGetParams extends EdgeCacheParams {
869
- cart_token?: string;
870
- contact_id: number;
871
- customer_id: number;
872
- user_cart_no?: number;
873
- user_id: number;
893
+ cartToken?: string;
894
+ contactId: number;
895
+ customerId: number;
896
+ userCartNo?: number;
897
+ userId: number;
874
898
  }
875
899
  /** Params for GET /cart-hdr/{cartHdrUid}/also-bought */
876
900
  interface CartHdrAlsoBoughtListParams extends EdgeCacheParams {
@@ -883,7 +907,7 @@ type CartLineGetParams = EdgeCacheParams;
883
907
  type CheckoutGetParams = EdgeCacheParams;
884
908
  /** Params for GET /checkout/{checkoutUid}/doc */
885
909
  interface CheckoutDocListParams extends EdgeCacheParams {
886
- cart_hdr_uid?: number;
910
+ cartHdrUid?: number;
887
911
  }
888
912
  interface CommerceClientSpec {
889
913
  cartHdr: {
@@ -961,7 +985,7 @@ type HealthCheckDataResource$p = ReturnType<typeof createHealthCheckDataResource
961
985
  /**
962
986
  * Generated client for commerce service
963
987
  * Source: shared/specs/commerce.json
964
- * Generated: 2026-05-14T19:11:02Z
988
+ * Generated: 2026-07-28T13:58:06Z
965
989
  *
966
990
  * DO NOT EDIT — regenerate with: python shared/scripts/generate-ts.py
967
991
  */
@@ -982,7 +1006,7 @@ declare class CommerceClient extends BaseServiceClient {
982
1006
  /**
983
1007
  * Generated types for pricing service
984
1008
  * Source: shared/specs/pricing.json
985
- * Generated: 2026-04-27T16:13:32Z
1009
+ * Generated: 2026-07-28T13:58:20Z
986
1010
  *
987
1011
  * DO NOT EDIT — regenerate with: python shared/scripts/generate-ts.py
988
1012
  */
@@ -1296,7 +1320,7 @@ type PingDataResource$a = ReturnType<typeof createPingDataResource$a>;
1296
1320
  /**
1297
1321
  * Generated client for pricing service
1298
1322
  * Source: shared/specs/pricing.json
1299
- * Generated: 2026-05-14T19:11:19Z
1323
+ * Generated: 2026-07-28T13:58:20Z
1300
1324
  *
1301
1325
  * DO NOT EDIT — regenerate with: python shared/scripts/generate-ts.py
1302
1326
  */
@@ -1321,7 +1345,7 @@ declare class PricingClient extends BaseServiceClient {
1321
1345
  /**
1322
1346
  * Generated types for vmi service
1323
1347
  * Source: shared/specs/vmi.json
1324
- * Generated: 2026-04-27T16:13:32Z
1348
+ * Generated: 2026-07-28T13:58:25Z
1325
1349
  *
1326
1350
  * DO NOT EDIT — regenerate with: python shared/scripts/generate-ts.py
1327
1351
  */
@@ -1413,6 +1437,10 @@ interface WarehouseUsersListParams extends EdgeCacheParams {
1413
1437
  offset?: number;
1414
1438
  statusCdList?: string;
1415
1439
  }
1440
+ /** Params for POST /warehouse/{warehouseUid}/users */
1441
+ interface WarehouseUsersCreateParams {
1442
+ makePrimaryUser?: string;
1443
+ }
1416
1444
  /** Params for GET /warehouse/{warehouseUid}/users/{usersId} */
1417
1445
  type WarehouseUsersGetParams = EdgeCacheParams;
1418
1446
  /** Response data — fields are MINIMUM, extra fields pass through */
@@ -1617,7 +1645,7 @@ interface VMIClientSpec {
1617
1645
  };
1618
1646
  users: {
1619
1647
  list: (warehouseUid: number, params?: WarehouseUsersListParams) => Promise<BaseResponse<Record<string, unknown>>>;
1620
- create: (warehouseUid: number, data: Record<string, unknown>) => Promise<BaseResponse<Record<string, unknown>>>;
1648
+ create: (warehouseUid: number, data: Record<string, unknown>, params?: WarehouseUsersCreateParams) => Promise<BaseResponse<Record<string, unknown>>>;
1621
1649
  get: (warehouseUid: number, usersId: number, params?: WarehouseUsersGetParams) => Promise<BaseResponse<Record<string, unknown>>>;
1622
1650
  update: (warehouseUid: number, usersId: number, data: Record<string, unknown>) => Promise<BaseResponse<Record<string, unknown>>>;
1623
1651
  delete: (warehouseUid: number, usersId: number) => Promise<BaseResponse<Record<string, unknown>>>;
@@ -1692,7 +1720,7 @@ type PingDataResource$9 = ReturnType<typeof createPingDataResource$9>;
1692
1720
  /**
1693
1721
  * Generated client for vmi service
1694
1722
  * Source: shared/specs/vmi.json
1695
- * Generated: 2026-05-14T19:11:25Z
1723
+ * Generated: 2026-07-28T13:58:25Z
1696
1724
  *
1697
1725
  * DO NOT EDIT — regenerate with: python shared/scripts/generate-ts.py
1698
1726
  */
@@ -1721,7 +1749,7 @@ declare class VMIClient extends BaseServiceClient {
1721
1749
  /**
1722
1750
  * Generated types for open-search service
1723
1751
  * Source: shared/specs/open-search.json
1724
- * Generated: 2026-05-05T20:37:41Z
1752
+ * Generated: 2026-07-28T13:58:14Z
1725
1753
  *
1726
1754
  * DO NOT EDIT — regenerate with: python shared/scripts/generate-ts.py
1727
1755
  */
@@ -1747,6 +1775,28 @@ interface ItemSearchListParams extends EdgeCacheParams {
1747
1775
  tags?: string;
1748
1776
  variantFilter?: string;
1749
1777
  }
1778
+ /** Params for GET /item-search-facets */
1779
+ interface ItemSearchFacetsListParams extends EdgeCacheParams {
1780
+ classId5ExcludeList?: string;
1781
+ classId5List?: string;
1782
+ discontinuedAny?: string;
1783
+ fields?: string;
1784
+ filters?: string;
1785
+ from?: number;
1786
+ itemCategoryUidList?: string;
1787
+ jobNumbers?: string;
1788
+ operator?: string;
1789
+ parentCategoryUid?: number;
1790
+ q: string;
1791
+ searchType?: string;
1792
+ size?: number;
1793
+ sort?: string;
1794
+ sourceFieldsList?: string;
1795
+ stockStatus?: string;
1796
+ tags?: string;
1797
+ useBrandFolderDoc?: string;
1798
+ variantFilter?: string;
1799
+ }
1750
1800
  /** Params for GET /item-search/attributes */
1751
1801
  interface ItemSearchAttributesListParams extends EdgeCacheParams {
1752
1802
  cacheSiteId?: string;
@@ -1803,6 +1853,7 @@ interface QueryStringRedirectData {
1803
1853
  updateCd?: number;
1804
1854
  statusCd?: number;
1805
1855
  processCd?: number;
1856
+ queryString?: string | null;
1806
1857
  [key: string]: unknown;
1807
1858
  }
1808
1859
  /** Response data — fields are MINIMUM, extra fields pass through */
@@ -1826,6 +1877,9 @@ interface OpenSearchClientSpec {
1826
1877
  list: (params?: ItemSearchAttributesListParams) => Promise<BaseResponse<Record<string, unknown>>>;
1827
1878
  };
1828
1879
  };
1880
+ itemSearchFacets: {
1881
+ list: (params?: ItemSearchFacetsListParams) => Promise<BaseResponse<Record<string, unknown>>>;
1882
+ };
1829
1883
  items: {
1830
1884
  list: (params?: ItemsListParams) => Promise<BaseResponse<Record<string, unknown>>>;
1831
1885
  get: (invMastUid: number, params?: ItemsGetParams) => Promise<BaseResponse<Record<string, unknown>>>;
@@ -1936,17 +1990,19 @@ type HealthCheckDataResource$m = ReturnType<typeof createHealthCheckDataResource
1936
1990
  /**
1937
1991
  * Generated client for open-search service
1938
1992
  * Source: shared/specs/open-search.json
1939
- * Generated: 2026-05-14T19:18:18Z
1993
+ * Generated: 2026-07-28T13:58:14Z
1940
1994
  *
1941
1995
  * DO NOT EDIT — regenerate with: python shared/scripts/generate-ts.py
1942
1996
  */
1943
1997
 
1944
1998
  declare class OpenSearchClient extends BaseServiceClient {
1945
1999
  readonly itemSearch: OpenSearchClientSpec['itemSearch'];
2000
+ readonly itemSearchFacets: OpenSearchClientSpec['itemSearchFacets'];
1946
2001
  readonly items: OpenSearchClientSpec['items'];
1947
2002
  readonly queryStringRedirect: OpenSearchClientSpec['queryStringRedirect'];
1948
2003
  readonly suggestions: OpenSearchClientSpec['suggestions'];
1949
2004
  readonly itemSearchData: OpenSearchClientSpec['itemSearch'];
2005
+ readonly itemSearchFacetsData: OpenSearchClientSpec['itemSearchFacets'];
1950
2006
  readonly itemsData: OpenSearchClientSpec['items'];
1951
2007
  readonly queryStringRedirectData: OpenSearchClientSpec['queryStringRedirect'];
1952
2008
  readonly suggestionsData: OpenSearchClientSpec['suggestions'];
@@ -1961,7 +2017,7 @@ declare class OpenSearchClient extends BaseServiceClient {
1961
2017
  /**
1962
2018
  * Generated types for items service
1963
2019
  * Source: shared/specs/items.json
1964
- * Generated: 2026-06-15T18:49:50Z
2020
+ * Generated: 2026-08-31T15:31:30Z
1965
2021
  *
1966
2022
  * DO NOT EDIT — regenerate with: python shared/scripts/generate-ts.py
1967
2023
  */
@@ -2001,6 +2057,8 @@ interface AttributesItemsListParams extends EdgeCacheParams {
2001
2057
  attributeValueUid?: number;
2002
2058
  excludeValues?: string;
2003
2059
  includeValues?: string;
2060
+ itemId?: string;
2061
+ itemIdSearch?: string;
2004
2062
  limit?: number;
2005
2063
  offset?: number;
2006
2064
  orderBy?: string;
@@ -2053,7 +2111,7 @@ interface CategoriesLookupGetParams extends EdgeCacheParams {
2053
2111
  rootItemCategoryId?: string;
2054
2112
  }
2055
2113
  /** Params for GET /categories/{itemCategoryUid} */
2056
- interface CategoriesGetParams extends EdgeCacheParams {
2114
+ interface CategoriesGetParams$1 extends EdgeCacheParams {
2057
2115
  cacheTtl?: number;
2058
2116
  childrenFilter?: string;
2059
2117
  childrenLimit?: number;
@@ -2364,6 +2422,31 @@ interface AttributeGroupsAttributesData {
2364
2422
  }
2365
2423
  /** Response data — fields are MINIMUM, extra fields pass through */
2366
2424
  interface AttributesData {
2425
+ attributeUid?: number;
2426
+ attributeDesc?: string | null;
2427
+ extendedDesc?: string | null;
2428
+ attributeId?: string;
2429
+ dataType?: number;
2430
+ maxLength?: number;
2431
+ noOfDecimal?: number | null;
2432
+ rowStatusFlag?: number;
2433
+ validationRequiredFlag?: string;
2434
+ dateCreated?: string;
2435
+ createdBy?: string;
2436
+ dateLastModified?: string;
2437
+ lastMaintainedBy?: string;
2438
+ cfdiAttributeType?: number | null;
2439
+ updateCd?: number;
2440
+ processCd?: number;
2441
+ statusCd?: number;
2442
+ typeCd?: number;
2443
+ activeValueCount?: number;
2444
+ inactiveValueCount?: number;
2445
+ deletedValueCount?: number;
2446
+ [key: string]: unknown;
2447
+ }
2448
+ /** Response data — fields are MINIMUM, extra fields pass through */
2449
+ interface AttributesData2 {
2367
2450
  attributeUid?: number;
2368
2451
  attributeDesc?: string | null;
2369
2452
  extendedDesc?: string | null;
@@ -2399,6 +2482,10 @@ interface AttributesItemsData {
2399
2482
  statusCd?: number;
2400
2483
  attributeValueUid?: number;
2401
2484
  onlineCd?: number;
2485
+ attributeDesc?: string | null;
2486
+ attributeId?: string;
2487
+ itemId?: string;
2488
+ itemDesc?: string | null;
2402
2489
  [key: string]: unknown;
2403
2490
  }
2404
2491
  /** Response data — fields are MINIMUM, extra fields pass through */
@@ -2499,6 +2586,24 @@ interface InvLocData {
2499
2586
  productGroupId?: string | null;
2500
2587
  purchaseDiscountGroup?: string | null;
2501
2588
  salesDiscountGroup?: string | null;
2589
+ purchaseClass?: string | null;
2590
+ [key: string]: unknown;
2591
+ }
2592
+ /** Response data — fields are MINIMUM, extra fields pass through */
2593
+ interface InvMastAttributesData {
2594
+ itemAttributeValueUid?: number;
2595
+ invMastUid?: number;
2596
+ attributeUid?: number;
2597
+ attributeValue?: string | null;
2598
+ dateCreated?: string;
2599
+ createdBy?: string;
2600
+ dateLastModified?: string;
2601
+ lastMaintainedBy?: string;
2602
+ updateCd?: number;
2603
+ processCd?: number;
2604
+ statusCd?: number;
2605
+ attributeValueUid?: number;
2606
+ onlineCd?: number;
2502
2607
  [key: string]: unknown;
2503
2608
  }
2504
2609
  /** Response data — fields are MINIMUM, extra fields pass through */
@@ -2573,9 +2678,9 @@ interface ItemsClientSpec {
2573
2678
  };
2574
2679
  attributes: {
2575
2680
  list: (params?: AttributesListParams) => Promise<BaseResponse<AttributesData[]>>;
2576
- create: (data: Record<string, unknown>) => Promise<BaseResponse<AttributesData>>;
2681
+ create: (data: Record<string, unknown>) => Promise<BaseResponse<AttributesData2>>;
2577
2682
  get: (attributeUid: number, params?: AttributesGetParams) => Promise<BaseResponse<AttributesData>>;
2578
- update: (attributeUid: number, data: Record<string, unknown>) => Promise<BaseResponse<AttributesData>>;
2683
+ update: (attributeUid: number, data: Record<string, unknown>) => Promise<BaseResponse<AttributesData2>>;
2579
2684
  delete: (attributeUid: number) => Promise<BaseResponse<Record<string, unknown>>>;
2580
2685
  items: {
2581
2686
  list: (attributeUid: number, params?: AttributesItemsListParams) => Promise<BaseResponse<AttributesItemsData[]>>;
@@ -2606,7 +2711,7 @@ interface ItemsClientSpec {
2606
2711
  };
2607
2712
  };
2608
2713
  categories: {
2609
- get: (itemCategoryUid: number, params?: CategoriesGetParams) => Promise<BaseResponse<Record<string, unknown>>>;
2714
+ get: (itemCategoryUid: number, params?: CategoriesGetParams$1) => Promise<BaseResponse<Record<string, unknown>>>;
2610
2715
  attributes: {
2611
2716
  list: (itemCategoryUid: number, params?: CategoriesAttributesListParams) => Promise<BaseResponse<Record<string, unknown>>>;
2612
2717
  };
@@ -2644,11 +2749,11 @@ interface ItemsClientSpec {
2644
2749
  };
2645
2750
  attributes: {
2646
2751
  list: (invMastUid: number, params?: InvMastAttributesListParams) => Promise<BaseResponse<Record<string, unknown>>>;
2647
- create: (invMastUid: number, data: Record<string, unknown>) => Promise<BaseResponse<AttributesItemsData>>;
2752
+ create: (invMastUid: number, data: Record<string, unknown>) => Promise<BaseResponse<InvMastAttributesData>>;
2648
2753
  values: {
2649
2754
  list: (invMastUid: number, attributeUid: number, params?: InvMastAttributesValuesListParams) => Promise<BaseResponse<Record<string, unknown>>>;
2650
- create: (invMastUid: number, attributeUid: number, data: Record<string, unknown>) => Promise<BaseResponse<AttributesItemsData>>;
2651
- update: (invMastUid: number, attributeUid: number, attributeValueUid: number, data: Record<string, unknown>) => Promise<BaseResponse<AttributesItemsData>>;
2755
+ create: (invMastUid: number, attributeUid: number, data: Record<string, unknown>) => Promise<BaseResponse<InvMastAttributesData>>;
2756
+ update: (invMastUid: number, attributeUid: number, attributeValueUid: number, data: Record<string, unknown>) => Promise<BaseResponse<InvMastAttributesData>>;
2652
2757
  delete: (invMastUid: number, attributeUid: number, attributeValueUid: number) => Promise<BaseResponse<Record<string, unknown>>>;
2653
2758
  };
2654
2759
  };
@@ -2856,7 +2961,7 @@ type WhoamiDataResource$1 = ReturnType<typeof createWhoamiDataResource$1>;
2856
2961
  /**
2857
2962
  * Generated client for items service
2858
2963
  * Source: shared/specs/items.json
2859
- * Generated: 2026-06-15T18:49:50Z
2964
+ * Generated: 2026-08-31T15:31:30Z
2860
2965
  *
2861
2966
  * DO NOT EDIT — regenerate with: python shared/scripts/generate-ts.py
2862
2967
  */
@@ -2911,7 +3016,7 @@ declare class ItemsClient extends BaseServiceClient {
2911
3016
  /**
2912
3017
  * Generated types for legacy service
2913
3018
  * Source: shared/specs/legacy.json
2914
- * Generated: 2026-05-05T20:37:38Z
3019
+ * Generated: 2026-07-28T13:58:12Z
2915
3020
  *
2916
3021
  * DO NOT EDIT — regenerate with: python shared/scripts/generate-ts.py
2917
3022
  */
@@ -3114,7 +3219,7 @@ type HealthCheckDataResource$k = ReturnType<typeof createHealthCheckDataResource
3114
3219
  /**
3115
3220
  * Generated client for legacy service
3116
3221
  * Source: shared/specs/legacy.json
3117
- * Generated: 2026-05-14T19:11:09Z
3222
+ * Generated: 2026-07-28T13:58:12Z
3118
3223
  *
3119
3224
  * DO NOT EDIT — regenerate with: python shared/scripts/generate-ts.py
3120
3225
  */
@@ -3139,23 +3244,21 @@ declare class LegacyClient extends BaseServiceClient {
3139
3244
  /**
3140
3245
  * Generated types for nexus service
3141
3246
  * Source: shared/specs/nexus.json
3142
- * Generated: 2026-04-27T16:13:32Z
3247
+ * Generated: 2026-07-28T13:58:13Z
3143
3248
  *
3144
3249
  * DO NOT EDIT — regenerate with: python shared/scripts/generate-ts.py
3145
3250
  */
3146
3251
 
3147
- /** Params for GET /bin-transfer/{binTransferHdrUid} */
3148
- type BinTransferGetParams = EdgeCacheParams;
3149
3252
  /** Params for GET /bin-transfer */
3150
3253
  interface BinTransferListParams extends EdgeCacheParams {
3151
3254
  limit?: number;
3152
3255
  offset?: number;
3153
3256
  statusCd?: number;
3154
3257
  }
3258
+ /** Params for GET /bin-transfer/{binTransferHdrUid} */
3259
+ type BinTransferGetParams = EdgeCacheParams;
3155
3260
  /** Params for GET /bin-transfer/{binTransferHdrUid}/status */
3156
3261
  type BinTransferStatusListParams = EdgeCacheParams;
3157
- /** Params for GET /purchase-order-receipt/{purchaseOrderReceiptUid} */
3158
- type PurchaseOrderReceiptGetParams = EdgeCacheParams;
3159
3262
  /** Params for GET /purchase-order-receipt */
3160
3263
  interface PurchaseOrderReceiptListParams extends EdgeCacheParams {
3161
3264
  limit?: number;
@@ -3163,8 +3266,8 @@ interface PurchaseOrderReceiptListParams extends EdgeCacheParams {
3163
3266
  referenceNo?: string;
3164
3267
  statusCd?: number;
3165
3268
  }
3166
- /** Params for GET /receiving/{receivingUid} */
3167
- type ReceivingGetParams = EdgeCacheParams;
3269
+ /** Params for GET /purchase-order-receipt/{purchaseOrderReceiptUid} */
3270
+ type PurchaseOrderReceiptGetParams = EdgeCacheParams;
3168
3271
  /** Params for GET /receiving */
3169
3272
  interface ReceivingListParams extends EdgeCacheParams {
3170
3273
  limit?: number;
@@ -3172,8 +3275,8 @@ interface ReceivingListParams extends EdgeCacheParams {
3172
3275
  poNo?: number;
3173
3276
  statusCd?: number;
3174
3277
  }
3175
- /** Params for GET /transfer/{transferUid} */
3176
- type TransferGetParams = EdgeCacheParams;
3278
+ /** Params for GET /receiving/{receivingUid} */
3279
+ type ReceivingGetParams = EdgeCacheParams;
3177
3280
  /** Params for GET /transfer */
3178
3281
  interface TransferListParams extends EdgeCacheParams {
3179
3282
  limit?: number;
@@ -3181,8 +3284,6 @@ interface TransferListParams extends EdgeCacheParams {
3181
3284
  referenceNo?: string;
3182
3285
  statusCd?: number;
3183
3286
  }
3184
- /** Params for GET /transfer-receipt/{transferReceiptUid} */
3185
- type TransferReceiptGetParams = EdgeCacheParams;
3186
3287
  /** Params for GET /transfer-receipt */
3187
3288
  interface TransferReceiptListParams extends EdgeCacheParams {
3188
3289
  limit?: number;
@@ -3190,8 +3291,8 @@ interface TransferReceiptListParams extends EdgeCacheParams {
3190
3291
  referenceNo?: string;
3191
3292
  statusCd?: number;
3192
3293
  }
3193
- /** Params for GET /transfer-shipping/{transferReceiptUid} */
3194
- type TransferShippingGetParams = EdgeCacheParams;
3294
+ /** Params for GET /transfer-receipt/{transferReceiptUid} */
3295
+ type TransferReceiptGetParams = EdgeCacheParams;
3195
3296
  /** Params for GET /transfer-shipping */
3196
3297
  interface TransferShippingListParams extends EdgeCacheParams {
3197
3298
  limit?: number;
@@ -3199,6 +3300,10 @@ interface TransferShippingListParams extends EdgeCacheParams {
3199
3300
  referenceNo?: string;
3200
3301
  statusCd?: number;
3201
3302
  }
3303
+ /** Params for GET /transfer-shipping/{transferReceiptUid} */
3304
+ type TransferShippingGetParams = EdgeCacheParams;
3305
+ /** Params for GET /transfer/{transferUid} */
3306
+ type TransferGetParams = EdgeCacheParams;
3202
3307
  /** Response data — fields are MINIMUM, extra fields pass through */
3203
3308
  interface BinTransferData {
3204
3309
  binTransferHdrUid?: number;
@@ -3298,49 +3403,49 @@ interface TransferReceiptData {
3298
3403
  }
3299
3404
  interface NexusClientSpec {
3300
3405
  binTransfer: {
3406
+ list: (params?: BinTransferListParams) => Promise<BaseResponse<BinTransferData[]>>;
3407
+ create: (data: Record<string, unknown>) => Promise<BaseResponse<BinTransferData>>;
3301
3408
  get: (binTransferHdrUid: number, params?: BinTransferGetParams) => Promise<BaseResponse<BinTransferData>>;
3302
3409
  update: (binTransferHdrUid: number, data: Record<string, unknown>) => Promise<BaseResponse<BinTransferData>>;
3303
3410
  delete: (binTransferHdrUid: number) => Promise<BaseResponse<BinTransferData>>;
3304
- list: (params?: BinTransferListParams) => Promise<BaseResponse<BinTransferData[]>>;
3305
- create: (data: Record<string, unknown>) => Promise<BaseResponse<BinTransferData>>;
3306
3411
  status: {
3307
3412
  list: (binTransferHdrUid: number, params?: BinTransferStatusListParams) => Promise<BaseResponse<BinTransferStatusData>>;
3308
3413
  };
3309
3414
  };
3310
3415
  purchaseOrderReceipt: {
3416
+ list: (params?: PurchaseOrderReceiptListParams) => Promise<BaseResponse<PurchaseOrderReceiptData[]>>;
3417
+ create: (data: Record<string, unknown>) => Promise<BaseResponse<PurchaseOrderReceiptData>>;
3311
3418
  get: (purchaseOrderReceiptUid: number, params?: PurchaseOrderReceiptGetParams) => Promise<BaseResponse<PurchaseOrderReceiptData>>;
3312
3419
  update: (purchaseOrderReceiptUid: number, data: Record<string, unknown>) => Promise<BaseResponse<PurchaseOrderReceiptData>>;
3313
3420
  delete: (purchaseOrderReceiptUid: number) => Promise<BaseResponse<PurchaseOrderReceiptData>>;
3314
- list: (params?: PurchaseOrderReceiptListParams) => Promise<BaseResponse<PurchaseOrderReceiptData[]>>;
3315
- create: (data: Record<string, unknown>) => Promise<BaseResponse<PurchaseOrderReceiptData>>;
3316
3421
  };
3317
3422
  receiving: {
3423
+ list: (params?: ReceivingListParams) => Promise<BaseResponse<ReceivingData[]>>;
3424
+ create: (data: Record<string, unknown>) => Promise<BaseResponse<ReceivingData>>;
3318
3425
  get: (receivingUid: number, params?: ReceivingGetParams) => Promise<BaseResponse<ReceivingData>>;
3319
3426
  update: (receivingUid: number, data: Record<string, unknown>) => Promise<BaseResponse<ReceivingData>>;
3320
3427
  delete: (receivingUid: number) => Promise<BaseResponse<ReceivingData>>;
3321
- list: (params?: ReceivingListParams) => Promise<BaseResponse<ReceivingData[]>>;
3322
- create: (data: Record<string, unknown>) => Promise<BaseResponse<ReceivingData>>;
3323
3428
  };
3324
3429
  transfer: {
3430
+ list: (params?: TransferListParams) => Promise<BaseResponse<TransferData[]>>;
3431
+ create: (data: Record<string, unknown>) => Promise<BaseResponse<TransferData>>;
3325
3432
  get: (transferUid: number, params?: TransferGetParams) => Promise<BaseResponse<TransferData>>;
3326
3433
  update: (transferUid: number, data: Record<string, unknown>) => Promise<BaseResponse<TransferData>>;
3327
3434
  delete: (transferUid: number) => Promise<BaseResponse<TransferData>>;
3328
- list: (params?: TransferListParams) => Promise<BaseResponse<TransferData[]>>;
3329
- create: (data: Record<string, unknown>) => Promise<BaseResponse<TransferData>>;
3330
3435
  };
3331
3436
  transferReceipt: {
3437
+ list: (params?: TransferReceiptListParams) => Promise<BaseResponse<TransferReceiptData[]>>;
3438
+ create: (data: Record<string, unknown>) => Promise<BaseResponse<TransferReceiptData>>;
3332
3439
  get: (transferReceiptUid: number, params?: TransferReceiptGetParams) => Promise<BaseResponse<TransferReceiptData>>;
3333
3440
  update: (transferReceiptUid: number, data: Record<string, unknown>) => Promise<BaseResponse<TransferReceiptData>>;
3334
3441
  delete: (transferReceiptUid: number) => Promise<BaseResponse<TransferReceiptData>>;
3335
- list: (params?: TransferReceiptListParams) => Promise<BaseResponse<TransferReceiptData[]>>;
3336
- create: (data: Record<string, unknown>) => Promise<BaseResponse<TransferReceiptData>>;
3337
3442
  };
3338
3443
  transferShipping: {
3444
+ list: (params?: TransferShippingListParams) => Promise<BaseResponse<TransferReceiptData[]>>;
3445
+ create: (data: Record<string, unknown>) => Promise<BaseResponse<TransferReceiptData>>;
3339
3446
  get: (transferReceiptUid: number, params?: TransferShippingGetParams) => Promise<BaseResponse<TransferReceiptData>>;
3340
3447
  update: (transferReceiptUid: number, data: Record<string, unknown>) => Promise<BaseResponse<TransferReceiptData>>;
3341
3448
  delete: (transferReceiptUid: number) => Promise<BaseResponse<TransferReceiptData>>;
3342
- list: (params?: TransferShippingListParams) => Promise<BaseResponse<TransferReceiptData[]>>;
3343
- create: (data: Record<string, unknown>) => Promise<BaseResponse<TransferReceiptData>>;
3344
3449
  };
3345
3450
  }
3346
3451
 
@@ -3411,7 +3516,7 @@ type PingDataResource$6 = ReturnType<typeof createPingDataResource$6>;
3411
3516
  /**
3412
3517
  * Generated client for nexus service
3413
3518
  * Source: shared/specs/nexus.json
3414
- * Generated: 2026-05-14T19:11:11Z
3519
+ * Generated: 2026-07-28T13:58:13Z
3415
3520
  *
3416
3521
  * DO NOT EDIT — regenerate with: python shared/scripts/generate-ts.py
3417
3522
  */
@@ -3440,7 +3545,7 @@ declare class NexusClient extends BaseServiceClient {
3440
3545
  /**
3441
3546
  * Generated types for agr-site service
3442
3547
  * Source: shared/specs/agr-site.json
3443
- * Generated: 2026-05-05T20:37:27Z
3548
+ * Generated: 2026-07-28T13:58:02Z
3444
3549
  *
3445
3550
  * DO NOT EDIT — regenerate with: python shared/scripts/generate-ts.py
3446
3551
  */
@@ -3515,6 +3620,16 @@ interface TrainingConversationsMessagesListParams extends EdgeCacheParams {
3515
3620
  }
3516
3621
  /** Params for GET /training/{trainingSetUid}/conversations/{trainingConvUid}/messages/{trainingMsgUid} */
3517
3622
  type TrainingConversationsMessagesGetParams = EdgeCacheParams;
3623
+ /** Params for GET /users/{userId}/addresses */
3624
+ interface UsersAddressesListParams extends EdgeCacheParams {
3625
+ emailAddress?: string;
3626
+ limit?: number;
3627
+ offset?: number;
3628
+ orderBy?: string;
3629
+ statusCd?: number;
3630
+ }
3631
+ /** Params for GET /users/{userId}/addresses/{userAddressUid} */
3632
+ type UsersAddressesGetParams = EdgeCacheParams;
3518
3633
  /** Response data — fields are MINIMUM, extra fields pass through */
3519
3634
  interface FyxerTranscriptData {
3520
3635
  fyxerTranscriptHdrUid?: number;
@@ -3650,10 +3765,35 @@ interface TrainingConversationsMessagesData {
3650
3765
  dateLastModified?: string;
3651
3766
  [key: string]: unknown;
3652
3767
  }
3768
+ /** Response data — fields are MINIMUM, extra fields pass through */
3769
+ interface UsersAddressesData {
3770
+ userAddressUid?: number;
3771
+ userId?: number;
3772
+ address1?: string | null;
3773
+ address2?: string | null;
3774
+ address3?: string | null;
3775
+ city?: string | null;
3776
+ state?: string | null;
3777
+ postalCode?: string | null;
3778
+ country?: string | null;
3779
+ emailAddress?: string | null;
3780
+ name?: string | null;
3781
+ phoneNumberMain?: string | null;
3782
+ phoneNumberMobile?: string | null;
3783
+ dateCreated?: string;
3784
+ dateLastModified?: string;
3785
+ updateCd?: number;
3786
+ statusCd?: number;
3787
+ processCd?: number;
3788
+ [key: string]: unknown;
3789
+ }
3653
3790
  interface AgrSiteClientSpec {
3654
3791
  context: {
3655
3792
  get: (siteId: string, params?: ContextGetParams$1) => Promise<BaseResponse<Record<string, unknown>>>;
3656
3793
  };
3794
+ datafiles: {
3795
+ create: (data: Record<string, unknown>) => Promise<BaseResponse<Record<string, unknown>>>;
3796
+ };
3657
3797
  fyxerTranscript: {
3658
3798
  list: (params?: FyxerTranscriptListParams) => Promise<BaseResponse<FyxerTranscriptData[]>>;
3659
3799
  create: (data: Record<string, unknown>) => Promise<BaseResponse<FyxerTranscriptData>>;
@@ -3713,6 +3853,15 @@ interface AgrSiteClientSpec {
3713
3853
  };
3714
3854
  };
3715
3855
  };
3856
+ users: {
3857
+ addresses: {
3858
+ list: (userId: number, params?: UsersAddressesListParams) => Promise<BaseResponse<UsersAddressesData[]>>;
3859
+ create: (userId: number, data: Record<string, unknown>) => Promise<BaseResponse<UsersAddressesData>>;
3860
+ get: (userId: number, userAddressUid: number, params?: UsersAddressesGetParams) => Promise<BaseResponse<UsersAddressesData>>;
3861
+ update: (userId: number, userAddressUid: number, data: Record<string, unknown>) => Promise<BaseResponse<UsersAddressesData>>;
3862
+ delete: (userId: number, userAddressUid: number) => Promise<BaseResponse<UsersAddressesData>>;
3863
+ };
3864
+ };
3716
3865
  }
3717
3866
 
3718
3867
  type ExecuteRequest$l = AgrSiteClient['executeRequest'];
@@ -3853,13 +4002,14 @@ type WhoamiDataResource = ReturnType<typeof createWhoamiDataResource>;
3853
4002
  /**
3854
4003
  * Generated client for agr-site service
3855
4004
  * Source: shared/specs/agr-site.json
3856
- * Generated: 2026-05-14T19:10:57Z
4005
+ * Generated: 2026-07-28T13:58:02Z
3857
4006
  *
3858
4007
  * DO NOT EDIT — regenerate with: python shared/scripts/generate-ts.py
3859
4008
  */
3860
4009
 
3861
4010
  declare class AgrSiteClient extends BaseServiceClient {
3862
4011
  readonly context: AgrSiteClientSpec['context'];
4012
+ readonly datafiles: AgrSiteClientSpec['datafiles'];
3863
4013
  readonly fyxerTranscript: AgrSiteClientSpec['fyxerTranscript'];
3864
4014
  readonly geoCodesPostalCodes: AgrSiteClientSpec['geoCodesPostalCodes'];
3865
4015
  readonly metaFiles: AgrSiteClientSpec['metaFiles'];
@@ -3868,7 +4018,9 @@ declare class AgrSiteClient extends BaseServiceClient {
3868
4018
  readonly postalCodesXShiptos: AgrSiteClientSpec['postalCodesXShiptos'];
3869
4019
  readonly settings: AgrSiteClientSpec['settings'];
3870
4020
  readonly training: AgrSiteClientSpec['training'];
4021
+ readonly users: AgrSiteClientSpec['users'];
3871
4022
  readonly contextData: AgrSiteClientSpec['context'];
4023
+ readonly datafilesData: AgrSiteClientSpec['datafiles'];
3872
4024
  readonly fyxerTranscriptData: AgrSiteClientSpec['fyxerTranscript'];
3873
4025
  readonly geoCodesPostalCodesData: AgrSiteClientSpec['geoCodesPostalCodes'];
3874
4026
  readonly metaFilesData: AgrSiteClientSpec['metaFiles'];
@@ -3877,6 +4029,7 @@ declare class AgrSiteClient extends BaseServiceClient {
3877
4029
  readonly postalCodesXShiptosData: AgrSiteClientSpec['postalCodesXShiptos'];
3878
4030
  readonly settingsData: AgrSiteClientSpec['settings'];
3879
4031
  readonly trainingData: AgrSiteClientSpec['training'];
4032
+ readonly usersData: AgrSiteClientSpec['users'];
3880
4033
  readonly healthCheck: HealthCheckResource$i;
3881
4034
  readonly healthCheckData: HealthCheckDataResource$i;
3882
4035
  readonly ping: PingResource$5;
@@ -3890,7 +4043,7 @@ declare class AgrSiteClient extends BaseServiceClient {
3890
4043
  /**
3891
4044
  * Generated types for customers service
3892
4045
  * Source: shared/specs/customers.json
3893
- * Generated: 2026-06-08T16:58:52Z
4046
+ * Generated: 2026-08-31T15:31:28Z
3894
4047
  *
3895
4048
  * DO NOT EDIT — regenerate with: python shared/scripts/generate-ts.py
3896
4049
  */
@@ -3940,6 +4093,14 @@ interface CustomerAddressesListParams extends EdgeCacheParams {
3940
4093
  }
3941
4094
  /** Params for GET /customer/{customerId}/addresses/{customerAddressUid} */
3942
4095
  type CustomerAddressesGetParams = EdgeCacheParams;
4096
+ /** Params for GET /customer/{customerId}/aging */
4097
+ interface CustomerAgingListParams extends EdgeCacheParams {
4098
+ asOf?: string;
4099
+ limit?: number;
4100
+ offset?: number;
4101
+ orderBy?: string;
4102
+ shipToId?: number;
4103
+ }
3943
4104
  /** Params for GET /customer/{customerId}/contacts */
3944
4105
  interface CustomerContactsListParams extends EdgeCacheParams {
3945
4106
  limit?: number;
@@ -3950,6 +4111,7 @@ interface CustomerContactsListParams extends EdgeCacheParams {
3950
4111
  type CustomerDocListParams = EdgeCacheParams;
3951
4112
  /** Params for GET /customer/{customerId}/invoices */
3952
4113
  interface CustomerInvoicesListParams extends EdgeCacheParams {
4114
+ contactId?: string;
3953
4115
  createdFrom?: string;
3954
4116
  createdOn?: string;
3955
4117
  createdTo?: string;
@@ -3963,6 +4125,7 @@ interface CustomerInvoicesListParams extends EdgeCacheParams {
3963
4125
  type CustomerInvoicesGetParams = EdgeCacheParams;
3964
4126
  /** Params for GET /customer/{customerId}/orders */
3965
4127
  interface CustomerOrdersListParams extends EdgeCacheParams {
4128
+ addressId?: number;
3966
4129
  cancelFlag?: string;
3967
4130
  contactId?: string;
3968
4131
  createdFrom?: string;
@@ -3985,6 +4148,8 @@ interface CustomerPurchasedItemsListParams extends EdgeCacheParams {
3985
4148
  }
3986
4149
  /** Params for GET /customer/{customerId}/quotes */
3987
4150
  interface CustomerQuotesListParams extends EdgeCacheParams {
4151
+ addressId?: number;
4152
+ contactId?: string;
3988
4153
  createdFrom?: string;
3989
4154
  createdOn?: string;
3990
4155
  createdTo?: string;
@@ -4005,12 +4170,26 @@ interface CustomerRmasListParams extends EdgeCacheParams {
4005
4170
  }
4006
4171
  /** Params for GET /customer/{customerId}/rmas/{rmaNo} */
4007
4172
  type CustomerRmasGetParams = EdgeCacheParams;
4173
+ /** Params for GET /customer/{customerId}/sales-usage */
4174
+ interface CustomerSalesUsageListParams extends EdgeCacheParams {
4175
+ invoicedFrom?: string;
4176
+ invoicedTo?: string;
4177
+ limit?: number;
4178
+ offset?: number;
4179
+ orderBy?: string;
4180
+ q?: string;
4181
+ shipToId?: number;
4182
+ supplierId?: number;
4183
+ totalBy?: string;
4184
+ }
4008
4185
  /** Params for GET /customer/{customerId}/ship-to */
4009
4186
  interface CustomerShipToListParams extends EdgeCacheParams {
4010
4187
  limit?: number;
4011
4188
  offset?: number;
4012
4189
  orderBy?: string;
4013
4190
  }
4191
+ /** Params for GET /customer/{customerId}/ship-to/{shipToId}/freight-codes */
4192
+ type CustomerShipToFreightCodesListParams = EdgeCacheParams;
4014
4193
  /** Params for GET /customer/{customerId}/tags */
4015
4194
  interface CustomerTagsListParams extends EdgeCacheParams {
4016
4195
  limit?: number;
@@ -4047,6 +4226,30 @@ interface CustomerAddressesData {
4047
4226
  [key: string]: unknown;
4048
4227
  }
4049
4228
  /** Response data — fields are MINIMUM, extra fields pass through */
4229
+ interface CustomerAgingData {
4230
+ customerId?: string;
4231
+ asOf?: string;
4232
+ bucketKeys?: unknown;
4233
+ invoiceCount?: number;
4234
+ totalBalance?: number;
4235
+ totals?: unknown;
4236
+ data?: unknown;
4237
+ [key: string]: unknown;
4238
+ }
4239
+ /** Response data — fields are MINIMUM, extra fields pass through */
4240
+ interface CustomerSalesUsageData {
4241
+ customerId?: string;
4242
+ invoicedFrom?: string;
4243
+ invoicedTo?: string;
4244
+ totalBy?: string;
4245
+ bucketKeys?: unknown;
4246
+ invoiceCount?: number;
4247
+ linesFolded?: number;
4248
+ itemCount?: number;
4249
+ data?: unknown;
4250
+ [key: string]: unknown;
4251
+ }
4252
+ /** Response data — fields are MINIMUM, extra fields pass through */
4050
4253
  interface CustomerTagsData {
4051
4254
  customerTagsUid?: number;
4052
4255
  customerId?: number;
@@ -4089,6 +4292,9 @@ interface CustomersClientSpec {
4089
4292
  update: (customerId: number, customerAddressUid: number, data: Record<string, unknown>) => Promise<BaseResponse<CustomerAddressesData>>;
4090
4293
  delete: (customerId: number, customerAddressUid: number) => Promise<BaseResponse<CustomerAddressesData>>;
4091
4294
  };
4295
+ aging: {
4296
+ list: (customerId: number, params?: CustomerAgingListParams) => Promise<BaseResponse<CustomerAgingData>>;
4297
+ };
4092
4298
  contacts: {
4093
4299
  list: (customerId: number, params?: CustomerContactsListParams) => Promise<BaseResponse<Record<string, unknown>>>;
4094
4300
  create: (customerId: number, data: Record<string, unknown>) => Promise<BaseResponse<Record<string, unknown>>>;
@@ -4119,9 +4325,15 @@ interface CustomersClientSpec {
4119
4325
  list: (customerId: number, params?: CustomerRmasListParams) => Promise<BaseResponse<Record<string, unknown>>>;
4120
4326
  get: (customerId: number, rmaNo: number, params?: CustomerRmasGetParams) => Promise<BaseResponse<Record<string, unknown>>>;
4121
4327
  };
4328
+ salesUsage: {
4329
+ list: (customerId: number, params?: CustomerSalesUsageListParams) => Promise<BaseResponse<CustomerSalesUsageData>>;
4330
+ };
4122
4331
  shipTo: {
4123
4332
  list: (customerId: number, params?: CustomerShipToListParams) => Promise<BaseResponse<Record<string, unknown>>>;
4124
4333
  create: (customerId: number, data: Record<string, unknown>) => Promise<BaseResponse<Record<string, unknown>>>;
4334
+ freightCodes: {
4335
+ list: (customerId: number, shipToId: number, params?: CustomerShipToFreightCodesListParams) => Promise<BaseResponse<Record<string, unknown>>>;
4336
+ };
4125
4337
  };
4126
4338
  tags: {
4127
4339
  list: (customerId: number, params?: CustomerTagsListParams) => Promise<BaseResponse<CustomerTagsData[]>>;
@@ -4172,7 +4384,7 @@ type HealthCheckDataResource$h = ReturnType<typeof createHealthCheckDataResource
4172
4384
  /**
4173
4385
  * Generated client for customers service
4174
4386
  * Source: shared/specs/customers.json
4175
- * Generated: 2026-06-08T16:58:52Z
4387
+ * Generated: 2026-08-31T15:31:28Z
4176
4388
  *
4177
4389
  * DO NOT EDIT — regenerate with: python shared/scripts/generate-ts.py
4178
4390
  */
@@ -4197,7 +4409,7 @@ declare class CustomersClient extends BaseServiceClient {
4197
4409
  /**
4198
4410
  * Generated types for orders service
4199
4411
  * Source: shared/specs/orders.json
4200
- * Generated: 2026-04-27T16:13:32Z
4412
+ * Generated: 2026-07-28T13:58:15Z
4201
4413
  *
4202
4414
  * DO NOT EDIT — regenerate with: python shared/scripts/generate-ts.py
4203
4415
  */
@@ -4447,22 +4659,43 @@ declare class OrdersClient extends BaseServiceClient {
4447
4659
  /**
4448
4660
  * Generated types for p21-pim service
4449
4661
  * Source: shared/specs/p21-pim.json
4450
- * Generated: 2026-04-27T16:13:32Z
4662
+ * Generated: 2026-08-31T15:38:16Z
4451
4663
  *
4452
4664
  * DO NOT EDIT — regenerate with: python shared/scripts/generate-ts.py
4453
4665
  */
4454
4666
 
4455
4667
  /** Params for GET /inv-mast-ext */
4456
4668
  interface InvMastExtListParams extends EdgeCacheParams {
4457
- inv_mast_uid?: number;
4669
+ invMastUid?: number;
4458
4670
  limit?: number;
4459
4671
  offset?: number;
4460
- order_by?: string;
4672
+ orderBy?: string;
4461
4673
  q?: string;
4462
- status_cd?: number;
4674
+ statusCd?: number;
4463
4675
  }
4464
4676
  /** Params for GET /inv-mast-ext/{invMastExtUid} */
4465
4677
  type InvMastExtGetParams = EdgeCacheParams;
4678
+ /** Params for GET /inv-mast-files */
4679
+ interface InvMastFilesListParams extends EdgeCacheParams {
4680
+ invMastUid?: number;
4681
+ limit?: number;
4682
+ offset?: number;
4683
+ orderBy?: string;
4684
+ statusCd?: number;
4685
+ }
4686
+ /** Params for GET /inv-mast-files/{invMastFilesUid} */
4687
+ type InvMastFilesGetParams = EdgeCacheParams;
4688
+ /** Params for GET /inv-mast-text */
4689
+ interface InvMastTextListParams extends EdgeCacheParams {
4690
+ invMastUid?: number;
4691
+ limit?: number;
4692
+ offset?: number;
4693
+ orderBy?: string;
4694
+ statusCd?: number;
4695
+ webDisplayTypeUid?: number;
4696
+ }
4697
+ /** Params for GET /inv-mast-text/{invMastTextUid} */
4698
+ type InvMastTextGetParams = EdgeCacheParams;
4466
4699
  /** Params for GET /items/{invMastUid}/suggest-display-desc */
4467
4700
  interface ItemsSuggestDisplayDescListParams extends EdgeCacheParams {
4468
4701
  limit?: number;
@@ -4477,13 +4710,68 @@ interface ItemsSuggestWebDescListParams extends EdgeCacheParams {
4477
4710
  interface PodcastsListParams extends EdgeCacheParams {
4478
4711
  limit?: number;
4479
4712
  offset?: number;
4480
- order_by?: string;
4713
+ orderBy?: string;
4481
4714
  q?: string;
4482
- status_cd?: number;
4715
+ statusCd?: number;
4483
4716
  }
4484
4717
  /** Params for GET /podcasts/{podcastsUid} */
4485
4718
  type PodcastsGetParams = EdgeCacheParams;
4486
4719
  /** Response data — fields are MINIMUM, extra fields pass through */
4720
+ interface InvMastExtData {
4721
+ invMastExtUid?: number;
4722
+ invMastUid?: number;
4723
+ dateCreated?: string;
4724
+ dateLastModified?: string;
4725
+ updateCd?: number;
4726
+ statusCd?: number;
4727
+ processCd?: number;
4728
+ upcOrEan?: string | null;
4729
+ upcOrEanId?: string | null;
4730
+ upcOrEanPrefix?: string | null;
4731
+ upcOrEanItem?: string | null;
4732
+ attributeGroupUid?: number | null;
4733
+ brandName?: string | null;
4734
+ manufacturerName?: string | null;
4735
+ partNumber?: string | null;
4736
+ metaTitle?: string | null;
4737
+ metaDescription?: string | null;
4738
+ metaKeywords?: string | null;
4739
+ [key: string]: unknown;
4740
+ }
4741
+ /** Response data — fields are MINIMUM, extra fields pass through */
4742
+ interface InvMastFilesData {
4743
+ invMastFilesUid?: number;
4744
+ invMastUid?: number;
4745
+ fileName?: string;
4746
+ filePath?: string;
4747
+ linkArea?: number;
4748
+ rowStatusFlag?: number;
4749
+ sequenceNo?: number;
4750
+ dateCreated?: string;
4751
+ dateLastModified?: string;
4752
+ updateCd?: number;
4753
+ statusCd?: number;
4754
+ processCd?: number;
4755
+ fileDesc?: string;
4756
+ [key: string]: unknown;
4757
+ }
4758
+ /** Response data — fields are MINIMUM, extra fields pass through */
4759
+ interface InvMastTextData {
4760
+ invMastTextUid?: number;
4761
+ invMastUid?: number;
4762
+ sequenceNo?: number;
4763
+ textValue?: string;
4764
+ displayOnWebFlag?: string;
4765
+ webDisplayTypeUid?: number;
4766
+ textTypeCd?: number;
4767
+ dateCreated?: string;
4768
+ dateLastModified?: string;
4769
+ updateCd?: number;
4770
+ statusCd?: number;
4771
+ processCd?: number;
4772
+ [key: string]: unknown;
4773
+ }
4774
+ /** Response data — fields are MINIMUM, extra fields pass through */
4487
4775
  interface PodcastsData {
4488
4776
  podcastsUid?: number;
4489
4777
  title?: string | null;
@@ -4498,12 +4786,26 @@ interface PodcastsData {
4498
4786
  }
4499
4787
  interface P21PimClientSpec {
4500
4788
  invMastExt: {
4501
- list: (params?: InvMastExtListParams) => Promise<BaseResponse<Record<string, unknown>>>;
4502
- create: (data: Record<string, unknown>) => Promise<BaseResponse<Record<string, unknown>>>;
4503
- get: (invMastExtUid: number, params?: InvMastExtGetParams) => Promise<BaseResponse<Record<string, unknown>>>;
4504
- update: (invMastExtUid: number, data: Record<string, unknown>) => Promise<BaseResponse<Record<string, unknown>>>;
4789
+ list: (params?: InvMastExtListParams) => Promise<BaseResponse<InvMastExtData[]>>;
4790
+ create: (data: Record<string, unknown>) => Promise<BaseResponse<InvMastExtData>>;
4791
+ get: (invMastExtUid: number, params?: InvMastExtGetParams) => Promise<BaseResponse<InvMastExtData>>;
4792
+ update: (invMastExtUid: number, data: Record<string, unknown>) => Promise<BaseResponse<InvMastExtData>>;
4505
4793
  delete: (invMastExtUid: number) => Promise<BaseResponse<Record<string, unknown>>>;
4506
4794
  };
4795
+ invMastFiles: {
4796
+ list: (params?: InvMastFilesListParams) => Promise<BaseResponse<InvMastFilesData[]>>;
4797
+ create: (data: Record<string, unknown>) => Promise<BaseResponse<InvMastFilesData>>;
4798
+ get: (invMastFilesUid: number, params?: InvMastFilesGetParams) => Promise<BaseResponse<InvMastFilesData>>;
4799
+ update: (invMastFilesUid: number, data: Record<string, unknown>) => Promise<BaseResponse<InvMastFilesData>>;
4800
+ delete: (invMastFilesUid: number) => Promise<BaseResponse<Record<string, unknown>>>;
4801
+ };
4802
+ invMastText: {
4803
+ list: (params?: InvMastTextListParams) => Promise<BaseResponse<InvMastTextData[]>>;
4804
+ create: (data: Record<string, unknown>) => Promise<BaseResponse<InvMastTextData>>;
4805
+ get: (invMastTextUid: number, params?: InvMastTextGetParams) => Promise<BaseResponse<InvMastTextData>>;
4806
+ update: (invMastTextUid: number, data: Record<string, unknown>) => Promise<BaseResponse<InvMastTextData>>;
4807
+ delete: (invMastTextUid: number) => Promise<BaseResponse<Record<string, unknown>>>;
4808
+ };
4507
4809
  items: {
4508
4810
  suggestDisplayDesc: {
4509
4811
  list: (invMastUid: number, params?: ItemsSuggestDisplayDescListParams) => Promise<BaseResponse<Record<string, unknown>>>;
@@ -4559,27 +4861,32 @@ type HealthCheckDataResource$f = ReturnType<typeof createHealthCheckDataResource
4559
4861
  /**
4560
4862
  * Generated client for p21-pim service
4561
4863
  * Source: shared/specs/p21-pim.json
4562
- * Generated: 2026-05-14T19:11:16Z
4864
+ * Generated: 2026-08-31T15:38:16Z
4563
4865
  *
4564
4866
  * DO NOT EDIT — regenerate with: python shared/scripts/generate-ts.py
4565
4867
  */
4566
4868
 
4567
4869
  declare class P21PimClient extends BaseServiceClient {
4568
4870
  readonly invMastExt: P21PimClientSpec['invMastExt'];
4871
+ readonly invMastFiles: P21PimClientSpec['invMastFiles'];
4872
+ readonly invMastText: P21PimClientSpec['invMastText'];
4569
4873
  readonly items: P21PimClientSpec['items'];
4570
4874
  readonly podcasts: P21PimClientSpec['podcasts'];
4571
4875
  readonly invMastExtData: P21PimClientSpec['invMastExt'];
4876
+ readonly invMastFilesData: P21PimClientSpec['invMastFiles'];
4877
+ readonly invMastTextData: P21PimClientSpec['invMastText'];
4572
4878
  readonly itemsData: P21PimClientSpec['items'];
4573
4879
  readonly podcastsData: P21PimClientSpec['podcasts'];
4574
4880
  readonly healthCheck: HealthCheckResource$f;
4575
4881
  readonly healthCheckData: HealthCheckDataResource$f;
4576
4882
  constructor(http: HTTPClient, baseUrl?: string);
4883
+ protected getServiceDescription(): string;
4577
4884
  }
4578
4885
 
4579
4886
  /**
4580
4887
  * Generated types for payments service
4581
4888
  * Source: shared/specs/payments.json
4582
- * Generated: 2026-04-27T16:13:32Z
4889
+ * Generated: 2026-08-04T17:10:16Z
4583
4890
  *
4584
4891
  * DO NOT EDIT — regenerate with: python shared/scripts/generate-ts.py
4585
4892
  */
@@ -4599,6 +4906,104 @@ interface MonerisPreAuthCompleteListParams extends EdgeCacheParams {
4599
4906
  testMode?: boolean;
4600
4907
  txnNumber: string;
4601
4908
  }
4909
+ /** Params for POST /paypal/authorization/capture */
4910
+ interface PaypalAuthorizationCaptureCreateParams {
4911
+ amount?: number;
4912
+ authorizationId: string;
4913
+ finalCapture?: boolean;
4914
+ invoiceId?: string;
4915
+ testMode?: boolean;
4916
+ }
4917
+ /** Params for POST /paypal/authorization/void */
4918
+ interface PaypalAuthorizationVoidCreateParams {
4919
+ authorizationId: string;
4920
+ testMode?: boolean;
4921
+ }
4922
+ /** Params for POST /paypal/capture/refund */
4923
+ interface PaypalCaptureRefundCreateParams {
4924
+ amount?: number;
4925
+ captureId: string;
4926
+ invoiceId?: string;
4927
+ noteToPayer?: string;
4928
+ testMode?: boolean;
4929
+ }
4930
+ /** Params for POST /paypal/order */
4931
+ interface PaypalOrderCreateParams {
4932
+ amount: number;
4933
+ cancelUrl?: string;
4934
+ currencyCode?: string;
4935
+ intent: string;
4936
+ invoiceId?: string;
4937
+ returnUrl?: string;
4938
+ testMode?: boolean;
4939
+ }
4940
+ /** Params for GET /paypal/order-return */
4941
+ interface PaypalOrderReturnListParams extends EdgeCacheParams {
4942
+ payerId?: string;
4943
+ siteId: string;
4944
+ testMode?: boolean;
4945
+ token: string;
4946
+ }
4947
+ /** Params for POST /paypal/order/authorize */
4948
+ interface PaypalOrderAuthorizeCreateParams {
4949
+ orderId: string;
4950
+ testMode?: boolean;
4951
+ }
4952
+ /** Params for POST /paypal/order/capture */
4953
+ interface PaypalOrderCaptureCreateParams {
4954
+ orderId: string;
4955
+ testMode?: boolean;
4956
+ }
4957
+ /** Params for GET /paypal/order/details */
4958
+ interface PaypalOrderDetailsListParams extends EdgeCacheParams {
4959
+ orderId: string;
4960
+ testMode?: boolean;
4961
+ }
4962
+ /** Params for GET /paypal/refund */
4963
+ interface PaypalRefundListParams extends EdgeCacheParams {
4964
+ refundId: string;
4965
+ testMode?: boolean;
4966
+ }
4967
+ /** Params for POST /paypal/webhook */
4968
+ interface PaypalWebhookCreateParams {
4969
+ siteId: string;
4970
+ testMode?: boolean;
4971
+ }
4972
+ /** Params for POST /paytrace/authorization */
4973
+ interface PaytraceAuthorizationCreateParams {
4974
+ amount: number;
4975
+ billingAddress?: string;
4976
+ creditCard: string;
4977
+ csc?: string;
4978
+ invoiceId?: string;
4979
+ testMode?: boolean;
4980
+ }
4981
+ /** Params for POST /paytrace/capture */
4982
+ interface PaytraceCaptureCreateParams {
4983
+ amount?: number;
4984
+ testMode?: boolean;
4985
+ transactionId: string;
4986
+ }
4987
+ /** Params for POST /paytrace/refund */
4988
+ interface PaytraceRefundCreateParams {
4989
+ amount?: number;
4990
+ testMode?: boolean;
4991
+ transactionId: string;
4992
+ }
4993
+ /** Params for POST /paytrace/sale */
4994
+ interface PaytraceSaleCreateParams {
4995
+ amount: number;
4996
+ billingAddress?: string;
4997
+ creditCard: string;
4998
+ csc?: string;
4999
+ invoiceId?: string;
5000
+ testMode?: boolean;
5001
+ }
5002
+ /** Params for POST /paytrace/void */
5003
+ interface PaytraceVoidCreateParams {
5004
+ testMode?: boolean;
5005
+ transactionId: string;
5006
+ }
4602
5007
  /** Params for GET /unified/account-query */
4603
5008
  interface UnifiedAccountQueryListParams extends EdgeCacheParams {
4604
5009
  customerId: string;
@@ -4630,6 +5035,10 @@ interface UnifiedSurchargeListParams extends EdgeCacheParams {
4630
5035
  paymentAccountId: string;
4631
5036
  toState: string;
4632
5037
  }
5038
+ /** Params for GET /unified/transaction-response */
5039
+ interface UnifiedTransactionResponseListParams extends EdgeCacheParams {
5040
+ siteId: string;
5041
+ }
4633
5042
  /** Params for GET /unified/transaction-setup */
4634
5043
  interface UnifiedTransactionSetupListParams extends EdgeCacheParams {
4635
5044
  customerId: string;
@@ -4655,21 +5064,57 @@ interface PaymentsClientSpec {
4655
5064
  list: (params?: MonerisPreAuthCompleteListParams) => Promise<BaseResponse<Record<string, unknown>>>;
4656
5065
  };
4657
5066
  };
5067
+ paypal: {
5068
+ authorization: {
5069
+ capture: {
5070
+ create: (data: Record<string, unknown>, params?: PaypalAuthorizationCaptureCreateParams) => Promise<BaseResponse<Record<string, unknown>>>;
5071
+ };
5072
+ void: {
5073
+ create: (data: Record<string, unknown>, params?: PaypalAuthorizationVoidCreateParams) => Promise<BaseResponse<Record<string, unknown>>>;
5074
+ };
5075
+ };
5076
+ capture: {
5077
+ refund: {
5078
+ create: (data: Record<string, unknown>, params?: PaypalCaptureRefundCreateParams) => Promise<BaseResponse<Record<string, unknown>>>;
5079
+ };
5080
+ };
5081
+ order: {
5082
+ create: (data: Record<string, unknown>, params?: PaypalOrderCreateParams) => Promise<BaseResponse<Record<string, unknown>>>;
5083
+ authorize: {
5084
+ create: (data: Record<string, unknown>, params?: PaypalOrderAuthorizeCreateParams) => Promise<BaseResponse<Record<string, unknown>>>;
5085
+ };
5086
+ capture: {
5087
+ create: (data: Record<string, unknown>, params?: PaypalOrderCaptureCreateParams) => Promise<BaseResponse<Record<string, unknown>>>;
5088
+ };
5089
+ details: {
5090
+ list: (params?: PaypalOrderDetailsListParams) => Promise<BaseResponse<Record<string, unknown>>>;
5091
+ };
5092
+ };
5093
+ orderReturn: {
5094
+ list: (params?: PaypalOrderReturnListParams) => Promise<BaseResponse<Record<string, unknown>>>;
5095
+ };
5096
+ refund: {
5097
+ list: (params?: PaypalRefundListParams) => Promise<BaseResponse<Record<string, unknown>>>;
5098
+ };
5099
+ webhook: {
5100
+ create: (data: Record<string, unknown>, params?: PaypalWebhookCreateParams) => Promise<BaseResponse<Record<string, unknown>>>;
5101
+ };
5102
+ };
4658
5103
  paytrace: {
4659
5104
  authorization: {
4660
- create: (data: Record<string, unknown>) => Promise<BaseResponse<Record<string, unknown>>>;
5105
+ create: (data: Record<string, unknown>, params?: PaytraceAuthorizationCreateParams) => Promise<BaseResponse<Record<string, unknown>>>;
4661
5106
  };
4662
5107
  capture: {
4663
- create: (data: Record<string, unknown>) => Promise<BaseResponse<Record<string, unknown>>>;
5108
+ create: (data: Record<string, unknown>, params?: PaytraceCaptureCreateParams) => Promise<BaseResponse<Record<string, unknown>>>;
4664
5109
  };
4665
5110
  refund: {
4666
- create: (data: Record<string, unknown>) => Promise<BaseResponse<Record<string, unknown>>>;
5111
+ create: (data: Record<string, unknown>, params?: PaytraceRefundCreateParams) => Promise<BaseResponse<Record<string, unknown>>>;
4667
5112
  };
4668
5113
  sale: {
4669
- create: (data: Record<string, unknown>) => Promise<BaseResponse<Record<string, unknown>>>;
5114
+ create: (data: Record<string, unknown>, params?: PaytraceSaleCreateParams) => Promise<BaseResponse<Record<string, unknown>>>;
4670
5115
  };
4671
5116
  void: {
4672
- create: (data: Record<string, unknown>) => Promise<BaseResponse<Record<string, unknown>>>;
5117
+ create: (data: Record<string, unknown>, params?: PaytraceVoidCreateParams) => Promise<BaseResponse<Record<string, unknown>>>;
4673
5118
  };
4674
5119
  };
4675
5120
  unified: {
@@ -4685,6 +5130,9 @@ interface PaymentsClientSpec {
4685
5130
  surcharge: {
4686
5131
  list: (params?: UnifiedSurchargeListParams) => Promise<BaseResponse<Record<string, unknown>>>;
4687
5132
  };
5133
+ transactionResponse: {
5134
+ list: (params?: UnifiedTransactionResponseListParams) => Promise<BaseResponse<Record<string, unknown>>>;
5135
+ };
4688
5136
  transactionSetup: {
4689
5137
  list: (params?: UnifiedTransactionSetupListParams) => Promise<BaseResponse<Record<string, unknown>>>;
4690
5138
  };
@@ -4747,7 +5195,7 @@ type PingDataResource$4 = ReturnType<typeof createPingDataResource$4>;
4747
5195
  /**
4748
5196
  * Generated client for payments service
4749
5197
  * Source: shared/specs/payments.json
4750
- * Generated: 2026-05-14T19:11:18Z
5198
+ * Generated: 2026-08-04T17:10:16Z
4751
5199
  *
4752
5200
  * DO NOT EDIT — regenerate with: python shared/scripts/generate-ts.py
4753
5201
  */
@@ -4755,10 +5203,12 @@ type PingDataResource$4 = ReturnType<typeof createPingDataResource$4>;
4755
5203
  declare class PaymentsClient extends BaseServiceClient {
4756
5204
  readonly element: PaymentsClientSpec['element'];
4757
5205
  readonly moneris: PaymentsClientSpec['moneris'];
5206
+ readonly paypal: PaymentsClientSpec['paypal'];
4758
5207
  readonly paytrace: PaymentsClientSpec['paytrace'];
4759
5208
  readonly unified: PaymentsClientSpec['unified'];
4760
5209
  readonly elementData: PaymentsClientSpec['element'];
4761
5210
  readonly monerisData: PaymentsClientSpec['moneris'];
5211
+ readonly paypalData: PaymentsClientSpec['paypal'];
4762
5212
  readonly paytraceData: PaymentsClientSpec['paytrace'];
4763
5213
  readonly unifiedData: PaymentsClientSpec['unified'];
4764
5214
  readonly healthCheck: HealthCheckResource$e;
@@ -4772,7 +5222,7 @@ declare class PaymentsClient extends BaseServiceClient {
4772
5222
  /**
4773
5223
  * Generated types for agr-info service
4774
5224
  * Source: shared/specs/agr-info.json
4775
- * Generated: 2026-05-05T20:37:26Z
5225
+ * Generated: 2026-07-28T13:57:59Z
4776
5226
  *
4777
5227
  * DO NOT EDIT — regenerate with: python shared/scripts/generate-ts.py
4778
5228
  */
@@ -4815,6 +5265,16 @@ interface MicroservicesData {
4815
5265
  [key: string]: unknown;
4816
5266
  }
4817
5267
  /** Response data — fields are MINIMUM, extra fields pass through */
5268
+ interface OauthRefreshData {
5269
+ grantId?: string;
5270
+ usersId?: number;
5271
+ accessToken?: string;
5272
+ refreshToken?: string;
5273
+ accessTokenExpiresAt?: string;
5274
+ refreshTokenExpiresAt?: string;
5275
+ [key: string]: unknown;
5276
+ }
5277
+ /** Response data — fields are MINIMUM, extra fields pass through */
4818
5278
  interface RubricsData {
4819
5279
  rubricsUid?: number;
4820
5280
  title?: string | null;
@@ -4828,6 +5288,22 @@ interface RubricsData {
4828
5288
  [key: string]: unknown;
4829
5289
  }
4830
5290
  /** Response data — fields are MINIMUM, extra fields pass through */
5291
+ interface SitesVerifyUserData {
5292
+ grantId?: string;
5293
+ usersId?: number;
5294
+ username?: string;
5295
+ email?: string;
5296
+ name?: string;
5297
+ isAdmin?: boolean;
5298
+ homeSiteId?: string;
5299
+ sites?: unknown;
5300
+ accessToken?: string;
5301
+ refreshToken?: string;
5302
+ accessTokenExpiresAt?: string;
5303
+ refreshTokenExpiresAt?: string;
5304
+ [key: string]: unknown;
5305
+ }
5306
+ /** Response data — fields are MINIMUM, extra fields pass through */
4831
5307
  interface WorkflowsData {
4832
5308
  workflowsUid?: number;
4833
5309
  workflowsId?: string;
@@ -4863,6 +5339,14 @@ interface AgrInfoClientSpec {
4863
5339
  update: (microservicesUid: number, data: Record<string, unknown>) => Promise<BaseResponse<MicroservicesData>>;
4864
5340
  delete: (microservicesUid: number) => Promise<BaseResponse<Record<string, unknown>>>;
4865
5341
  };
5342
+ oauth: {
5343
+ grants: {
5344
+ delete: (grantId: string) => Promise<BaseResponse<Record<string, unknown>>>;
5345
+ };
5346
+ refresh: {
5347
+ create: (data: Record<string, unknown>) => Promise<BaseResponse<OauthRefreshData>>;
5348
+ };
5349
+ };
4866
5350
  ollama: {
4867
5351
  tags: {
4868
5352
  list: (params?: OllamaTagsListParams) => Promise<BaseResponse<Record<string, unknown>>>;
@@ -4879,6 +5363,9 @@ interface AgrInfoClientSpec {
4879
5363
  validate: {
4880
5364
  create: (data: Record<string, unknown>) => Promise<BaseResponse<Record<string, unknown>>>;
4881
5365
  };
5366
+ verifyUser: {
5367
+ create: (data: Record<string, unknown>) => Promise<BaseResponse<SitesVerifyUserData>>;
5368
+ };
4882
5369
  };
4883
5370
  workflows: {
4884
5371
  list: (params?: WorkflowsListParams) => Promise<BaseResponse<WorkflowsData[]>>;
@@ -4935,7 +5422,7 @@ type HealthCheckDataResource$d = ReturnType<typeof createHealthCheckDataResource
4935
5422
  /**
4936
5423
  * Generated client for agr-info service
4937
5424
  * Source: shared/specs/agr-info.json
4938
- * Generated: 2026-05-14T19:10:56Z
5425
+ * Generated: 2026-07-28T13:57:59Z
4939
5426
  *
4940
5427
  * DO NOT EDIT — regenerate with: python shared/scripts/generate-ts.py
4941
5428
  */
@@ -4945,6 +5432,7 @@ declare class AgrInfoClient extends BaseServiceClient {
4945
5432
  readonly context: AgrInfoClientSpec['context'];
4946
5433
  readonly joomla: AgrInfoClientSpec['joomla'];
4947
5434
  readonly microservices: AgrInfoClientSpec['microservices'];
5435
+ readonly oauth: AgrInfoClientSpec['oauth'];
4948
5436
  readonly ollama: AgrInfoClientSpec['ollama'];
4949
5437
  readonly rubrics: AgrInfoClientSpec['rubrics'];
4950
5438
  readonly sites: AgrInfoClientSpec['sites'];
@@ -4953,6 +5441,7 @@ declare class AgrInfoClient extends BaseServiceClient {
4953
5441
  readonly contextData: AgrInfoClientSpec['context'];
4954
5442
  readonly joomlaData: AgrInfoClientSpec['joomla'];
4955
5443
  readonly microservicesData: AgrInfoClientSpec['microservices'];
5444
+ readonly oauthData: AgrInfoClientSpec['oauth'];
4956
5445
  readonly ollamaData: AgrInfoClientSpec['ollama'];
4957
5446
  readonly rubricsData: AgrInfoClientSpec['rubrics'];
4958
5447
  readonly sitesData: AgrInfoClientSpec['sites'];
@@ -4966,7 +5455,7 @@ declare class AgrInfoClient extends BaseServiceClient {
4966
5455
  /**
4967
5456
  * Generated types for agr-int service
4968
5457
  * Source: shared/specs/agr-int.json
4969
- * Generated: 2026-06-14T22:37:15Z
5458
+ * Generated: 2026-07-28T13:58:00Z
4970
5459
  *
4971
5460
  * DO NOT EDIT — regenerate with: python shared/scripts/generate-ts.py
4972
5461
  */
@@ -5225,7 +5714,7 @@ interface AgrIntClientSpec {
5225
5714
  /**
5226
5715
  * Generated client for agr-int service
5227
5716
  * Source: shared/specs/agr-int.json
5228
- * Generated: 2026-06-14T22:37:15Z
5717
+ * Generated: 2026-07-28T13:58:00Z
5229
5718
  *
5230
5719
  * DO NOT EDIT — regenerate with: python shared/scripts/generate-ts.py
5231
5720
  */
@@ -5368,7 +5857,7 @@ type PingDataResource$3 = ReturnType<typeof createPingDataResource$3>;
5368
5857
  /**
5369
5858
  * Generated client for agr-work service
5370
5859
  * Source: shared/specs/agr-work.json
5371
- * Generated: 2026-05-14T19:10:58Z
5860
+ * Generated: 2026-07-28T13:58:02Z
5372
5861
  *
5373
5862
  * DO NOT EDIT — regenerate with: python shared/scripts/generate-ts.py
5374
5863
  */
@@ -5384,7 +5873,7 @@ declare class AgrWorkClient extends BaseServiceClient {
5384
5873
  /**
5385
5874
  * Generated types for avalara service
5386
5875
  * Source: shared/specs/avalara.json
5387
- * Generated: 2026-04-27T16:13:32Z
5876
+ * Generated: 2026-07-28T13:58:03Z
5388
5877
  *
5389
5878
  * DO NOT EDIT — regenerate with: python shared/scripts/generate-ts.py
5390
5879
  */
@@ -5453,7 +5942,7 @@ type HealthCheckDataResource$b = ReturnType<typeof createHealthCheckDataResource
5453
5942
  /**
5454
5943
  * Generated client for avalara service
5455
5944
  * Source: shared/specs/avalara.json
5456
- * Generated: 2026-05-14T19:10:59Z
5945
+ * Generated: 2026-07-28T13:58:03Z
5457
5946
  *
5458
5947
  * DO NOT EDIT — regenerate with: python shared/scripts/generate-ts.py
5459
5948
  */
@@ -5469,13 +5958,51 @@ declare class AvalaraClient extends BaseServiceClient {
5469
5958
  /**
5470
5959
  * Generated types for brand-folder service
5471
5960
  * Source: shared/specs/brand-folder.json
5472
- * Generated: 2026-04-27T16:13:32Z
5961
+ * Generated: 2026-07-28T13:58:05Z
5473
5962
  *
5474
5963
  * DO NOT EDIT — regenerate with: python shared/scripts/generate-ts.py
5475
5964
  */
5476
5965
 
5966
+ /** Params for GET /categories */
5967
+ interface CategoriesListParams extends EdgeCacheParams {
5968
+ limit?: number;
5969
+ offset?: number;
5970
+ orderBy?: string;
5971
+ q?: string;
5972
+ }
5973
+ /** Params for GET /categories/{itemCategoryUid} */
5974
+ type CategoriesGetParams = EdgeCacheParams;
5975
+ /** Response data — fields are MINIMUM, extra fields pass through */
5976
+ interface CategoriesData {
5977
+ itemCategoryUid?: number;
5978
+ itemCategoryId?: string;
5979
+ itemCategoryDesc?: string;
5980
+ dateCreated?: string;
5981
+ dateLastModified?: string;
5982
+ updateCd?: number;
5983
+ statusCd?: number;
5984
+ processCd?: number;
5985
+ rootCategoryId?: string;
5986
+ labelsId?: string | null;
5987
+ imagesAssetsId?: string | null;
5988
+ roomScenesAssetsId?: string | null;
5989
+ brochuresAssetsId?: string | null;
5990
+ contractorsAssetsId?: string | null;
5991
+ dateLastProcessed?: string;
5992
+ dateLastCheckImages?: string;
5993
+ dateLastCheckRoomScene?: string;
5994
+ itemCategoryDescPc?: string | null;
5995
+ dateLastUpload?: string;
5996
+ leedAssetsId?: string | null;
5997
+ colorsList?: string | null;
5998
+ colorsCount?: number;
5999
+ focusCd?: number;
6000
+ [key: string]: unknown;
6001
+ }
5477
6002
  interface BrandFolderClientSpec {
5478
6003
  categories: {
6004
+ list: (params?: CategoriesListParams) => Promise<BaseResponse<CategoriesData[]>>;
6005
+ get: (itemCategoryUid: number, params?: CategoriesGetParams) => Promise<BaseResponse<CategoriesData>>;
5479
6006
  focus: {
5480
6007
  create: (data: Record<string, unknown>) => Promise<BaseResponse<Record<string, unknown>>>;
5481
6008
  };
@@ -5540,7 +6067,7 @@ type HealthCheckDataResource$a = ReturnType<typeof createHealthCheckDataResource
5540
6067
  /**
5541
6068
  * Generated client for brand-folder service
5542
6069
  * Source: shared/specs/brand-folder.json
5543
- * Generated: 2026-05-14T19:11:02Z
6070
+ * Generated: 2026-07-28T13:58:05Z
5544
6071
  *
5545
6072
  * DO NOT EDIT — regenerate with: python shared/scripts/generate-ts.py
5546
6073
  */
@@ -5557,7 +6084,7 @@ declare class BrandFolderClient extends BaseServiceClient {
5557
6084
  /**
5558
6085
  * Generated types for gregorovich service
5559
6086
  * Source: shared/specs/gregorovich.json
5560
- * Generated: 2026-04-27T16:13:32Z
6087
+ * Generated: 2026-07-28T13:58:08Z
5561
6088
  *
5562
6089
  * DO NOT EDIT — regenerate with: python shared/scripts/generate-ts.py
5563
6090
  */
@@ -5642,7 +6169,7 @@ type HealthCheckDataResource$9 = ReturnType<typeof createHealthCheckDataResource
5642
6169
  /**
5643
6170
  * Generated client for gregorovich service
5644
6171
  * Source: shared/specs/gregorovich.json
5645
- * Generated: 2026-05-14T19:11:05Z
6172
+ * Generated: 2026-07-28T13:58:08Z
5646
6173
  *
5647
6174
  * DO NOT EDIT — regenerate with: python shared/scripts/generate-ts.py
5648
6175
  */
@@ -5662,7 +6189,7 @@ declare class GregorovichClient extends BaseServiceClient {
5662
6189
  /**
5663
6190
  * Generated types for logistics service
5664
6191
  * Source: shared/specs/logistics.json
5665
- * Generated: 2026-05-12T02:26:15Z
6192
+ * Generated: 2026-08-31T15:31:33Z
5666
6193
  *
5667
6194
  * DO NOT EDIT — regenerate with: python shared/scripts/generate-ts.py
5668
6195
  */
@@ -5687,22 +6214,35 @@ interface RtsBrandsListParams extends EdgeCacheParams {
5687
6214
  search?: string;
5688
6215
  }
5689
6216
  /** Params for GET /rts/brands/{brandId}/machines */
5690
- interface RtsBrandsBrandIdMachinesListParams extends EdgeCacheParams {
6217
+ interface RtsBrandsMachinesListParams extends EdgeCacheParams {
5691
6218
  search?: string;
5692
6219
  }
5693
6220
  /** Params for GET /rts/machines/{machineId}/tracks */
5694
- type RtsMachinesMachineIdTracksListParams = EdgeCacheParams;
6221
+ type RtsMachinesTracksListParams = EdgeCacheParams;
5695
6222
  /** Params for GET /rts/search/machines */
5696
6223
  interface RtsSearchMachinesListParams extends EdgeCacheParams {
5697
6224
  q: string;
5698
6225
  }
5699
6226
  /** Params for GET /rts/track/{trackId} */
5700
- type RtsTrackTrackIdListParams = EdgeCacheParams;
6227
+ type RtsTrackListParams = EdgeCacheParams;
5701
6228
  /** Params for GET /rts/tracks */
5702
6229
  interface RtsTracksListParams extends EdgeCacheParams {
5703
6230
  search?: string;
5704
6231
  trackClass?: string;
5705
6232
  }
6233
+ /** Params for GET /shipping-methods */
6234
+ interface ShippingMethodsListParams extends EdgeCacheParams {
6235
+ limit?: number;
6236
+ offset?: number;
6237
+ orderBy?: string;
6238
+ shippingMethodsId?: number;
6239
+ shippingType?: string;
6240
+ statusCd?: number;
6241
+ }
6242
+ /** Params for GET /shipping-methods/{shippingMethodsUid} */
6243
+ interface ShippingMethodsGetParams extends EdgeCacheParams {
6244
+ shippingMethodsId?: number;
6245
+ }
5706
6246
  /** Params for GET /shipvia/rates */
5707
6247
  interface ShipviaRatesListParams extends EdgeCacheParams {
5708
6248
  carriers?: string;
@@ -5766,6 +6306,7 @@ interface SpeedshipFreightListParams extends EdgeCacheParams {
5766
6306
  handlingCharge?: number;
5767
6307
  handlingChargeUnit?: string;
5768
6308
  international?: boolean;
6309
+ maxPalletWeight?: number;
5769
6310
  packageHeight?: number;
5770
6311
  packageLength: number;
5771
6312
  packageWidth: number;
@@ -5792,6 +6333,7 @@ interface UPSRatesListParams extends EdgeCacheParams {
5792
6333
  fromCountryCode?: string;
5793
6334
  fromPostalCode: string;
5794
6335
  fromStateProvinceCode: string;
6336
+ maxPackageWeight?: number;
5795
6337
  toAddress1: string;
5796
6338
  toCity: string;
5797
6339
  toCountryCode?: string;
@@ -5808,17 +6350,13 @@ interface LogisticsClientSpec {
5808
6350
  rts: {
5809
6351
  brands: {
5810
6352
  list: (params?: RtsBrandsListParams) => Promise<BaseResponse<Record<string, unknown>>>;
5811
- brandId: {
5812
- machines: {
5813
- list: (brandId: number, params?: RtsBrandsBrandIdMachinesListParams) => Promise<BaseResponse<Record<string, unknown>>>;
5814
- };
6353
+ machines: {
6354
+ list: (brandId: number, params?: RtsBrandsMachinesListParams) => Promise<BaseResponse<Record<string, unknown>>>;
5815
6355
  };
5816
6356
  };
5817
6357
  machines: {
5818
- machineId: {
5819
- tracks: {
5820
- list: (machineId: number, params?: RtsMachinesMachineIdTracksListParams) => Promise<BaseResponse<Record<string, unknown>>>;
5821
- };
6358
+ tracks: {
6359
+ list: (machineId: number, params?: RtsMachinesTracksListParams) => Promise<BaseResponse<Record<string, unknown>>>;
5822
6360
  };
5823
6361
  };
5824
6362
  search: {
@@ -5827,14 +6365,18 @@ interface LogisticsClientSpec {
5827
6365
  };
5828
6366
  };
5829
6367
  track: {
5830
- trackId: {
5831
- list: (trackId: number, params?: RtsTrackTrackIdListParams) => Promise<BaseResponse<Record<string, unknown>>>;
5832
- };
6368
+ list: (trackId: number, params?: RtsTrackListParams) => Promise<BaseResponse<Record<string, unknown>>>;
5833
6369
  };
5834
6370
  tracks: {
5835
6371
  list: (params?: RtsTracksListParams) => Promise<BaseResponse<Record<string, unknown>>>;
5836
6372
  };
5837
6373
  };
6374
+ shippingMethods: {
6375
+ list: (params?: ShippingMethodsListParams) => Promise<BaseResponse<Record<string, unknown>>>;
6376
+ get: (shippingMethodsUid: number, params?: ShippingMethodsGetParams) => Promise<BaseResponse<Record<string, unknown>>>;
6377
+ update: (shippingMethodsUid: number, data: Record<string, unknown>) => Promise<BaseResponse<Record<string, unknown>>>;
6378
+ delete: (shippingMethodsUid: number) => Promise<BaseResponse<Record<string, unknown>>>;
6379
+ };
5838
6380
  shipvia: {
5839
6381
  rates: {
5840
6382
  list: (params?: ShipviaRatesListParams) => Promise<BaseResponse<Record<string, unknown>>>;
@@ -5974,7 +6516,7 @@ type PingDataResource$2 = ReturnType<typeof createPingDataResource$2>;
5974
6516
  /**
5975
6517
  * Generated client for logistics service
5976
6518
  * Source: shared/specs/logistics.json
5977
- * Generated: 2026-05-14T19:18:10Z
6519
+ * Generated: 2026-08-31T15:31:33Z
5978
6520
  *
5979
6521
  * DO NOT EDIT — regenerate with: python shared/scripts/generate-ts.py
5980
6522
  */
@@ -5982,11 +6524,13 @@ type PingDataResource$2 = ReturnType<typeof createPingDataResource$2>;
5982
6524
  declare class LogisticsClient extends BaseServiceClient {
5983
6525
  readonly fedex: LogisticsClientSpec['fedex'];
5984
6526
  readonly rts: LogisticsClientSpec['rts'];
6527
+ readonly shippingMethods: LogisticsClientSpec['shippingMethods'];
5985
6528
  readonly shipvia: LogisticsClientSpec['shipvia'];
5986
6529
  readonly speedship: LogisticsClientSpec['speedship'];
5987
6530
  readonly ups: LogisticsClientSpec['ups'];
5988
6531
  readonly fedexData: LogisticsClientSpec['fedex'];
5989
6532
  readonly rtsData: LogisticsClientSpec['rts'];
6533
+ readonly shippingMethodsData: LogisticsClientSpec['shippingMethods'];
5990
6534
  readonly shipviaData: LogisticsClientSpec['shipvia'];
5991
6535
  readonly speedshipData: LogisticsClientSpec['speedship'];
5992
6536
  readonly upsData: LogisticsClientSpec['ups'];
@@ -6001,7 +6545,7 @@ declare class LogisticsClient extends BaseServiceClient {
6001
6545
  /**
6002
6546
  * Generated types for p21-apis service
6003
6547
  * Source: shared/specs/p21-apis.json
6004
- * Generated: 2026-04-27T16:13:32Z
6548
+ * Generated: 2026-07-28T13:58:16Z
6005
6549
  *
6006
6550
  * DO NOT EDIT — regenerate with: python shared/scripts/generate-ts.py
6007
6551
  */
@@ -6012,17 +6556,41 @@ type EntityContactsRefreshGetParams = EdgeCacheParams;
6012
6556
  type EntityCustomersRefreshGetParams = EdgeCacheParams;
6013
6557
  /** Params for GET /trans-category/{categoryUid} */
6014
6558
  interface TransCategoryGetParams extends EdgeCacheParams {
6015
- category_id?: string;
6559
+ categoryId?: string;
6560
+ }
6561
+ /** Params for PUT /trans-category/{categoryUid} */
6562
+ interface TransCategoryUpdateParams {
6563
+ categoryId?: string;
6564
+ }
6565
+ /** Params for DELETE /trans-category/{categoryUid} */
6566
+ interface TransCategoryDeleteParams {
6567
+ categoryId?: string;
6016
6568
  }
6017
6569
  /** Params for GET /trans-company/{companyUid} */
6018
6570
  interface TransCompanyGetParams extends EdgeCacheParams {
6019
- company_id?: string;
6571
+ companyId?: string;
6572
+ }
6573
+ /** Params for PUT /trans-company/{companyUid} */
6574
+ interface TransCompanyUpdateParams {
6575
+ companyId?: string;
6576
+ }
6577
+ /** Params for DELETE /trans-company/{companyUid} */
6578
+ interface TransCompanyDeleteParams {
6579
+ companyId?: string;
6020
6580
  }
6021
6581
  /** Params for GET /trans-purchase-order-receipt/{poNo} */
6022
6582
  type TransPurchaseOrderReceiptGetParams = EdgeCacheParams;
6023
6583
  /** Params for GET /trans-user/{usersUid} */
6024
6584
  interface TransUserGetParams extends EdgeCacheParams {
6025
- user_id?: string;
6585
+ userId?: string;
6586
+ }
6587
+ /** Params for PUT /trans-user/{usersUid} */
6588
+ interface TransUserUpdateParams {
6589
+ userId?: string;
6590
+ }
6591
+ /** Params for DELETE /trans-user/{usersUid} */
6592
+ interface TransUserDeleteParams {
6593
+ userId?: string;
6026
6594
  }
6027
6595
  /** Params for GET /trans-web-display-type/defaults */
6028
6596
  type TransWebDisplayTypeDefaultsListParams = EdgeCacheParams;
@@ -6030,7 +6598,15 @@ type TransWebDisplayTypeDefaultsListParams = EdgeCacheParams;
6030
6598
  type TransWebDisplayTypeDefinitionListParams = EdgeCacheParams;
6031
6599
  /** Params for GET /trans-web-display-type/{webDisplayTypeUid} */
6032
6600
  interface TransWebDisplayTypeGetParams extends EdgeCacheParams {
6033
- web_display_type_id?: string;
6601
+ webDisplayTypeId?: string;
6602
+ }
6603
+ /** Params for PUT /trans-web-display-type/{webDisplayTypeUid} */
6604
+ interface TransWebDisplayTypeUpdateParams {
6605
+ webDisplayTypeId?: string;
6606
+ }
6607
+ /** Params for DELETE /trans-web-display-type/{webDisplayTypeUid} */
6608
+ interface TransWebDisplayTypeDeleteParams {
6609
+ webDisplayTypeId?: string;
6034
6610
  }
6035
6611
  interface P21ApisClientSpec {
6036
6612
  entityContacts: {
@@ -6046,14 +6622,14 @@ interface P21ApisClientSpec {
6046
6622
  transCategory: {
6047
6623
  create: (data: Record<string, unknown>) => Promise<BaseResponse<Record<string, unknown>>>;
6048
6624
  get: (categoryUid: number, params?: TransCategoryGetParams) => Promise<BaseResponse<Record<string, unknown>>>;
6049
- update: (categoryUid: number, data: Record<string, unknown>) => Promise<BaseResponse<Record<string, unknown>>>;
6050
- delete: (categoryUid: number) => Promise<BaseResponse<Record<string, unknown>>>;
6625
+ update: (categoryUid: number, data: Record<string, unknown>, params?: TransCategoryUpdateParams) => Promise<BaseResponse<Record<string, unknown>>>;
6626
+ delete: (categoryUid: number, params?: TransCategoryDeleteParams) => Promise<BaseResponse<Record<string, unknown>>>;
6051
6627
  };
6052
6628
  transCompany: {
6053
6629
  create: (data: Record<string, unknown>) => Promise<BaseResponse<Record<string, unknown>>>;
6054
6630
  get: (companyUid: number, params?: TransCompanyGetParams) => Promise<BaseResponse<Record<string, unknown>>>;
6055
- update: (companyUid: number, data: Record<string, unknown>) => Promise<BaseResponse<Record<string, unknown>>>;
6056
- delete: (companyUid: number) => Promise<BaseResponse<Record<string, unknown>>>;
6631
+ update: (companyUid: number, data: Record<string, unknown>, params?: TransCompanyUpdateParams) => Promise<BaseResponse<Record<string, unknown>>>;
6632
+ delete: (companyUid: number, params?: TransCompanyDeleteParams) => Promise<BaseResponse<Record<string, unknown>>>;
6057
6633
  };
6058
6634
  transPurchaseOrderReceipt: {
6059
6635
  get: (poNo: string, params?: TransPurchaseOrderReceiptGetParams) => Promise<BaseResponse<Record<string, unknown>>>;
@@ -6062,14 +6638,14 @@ interface P21ApisClientSpec {
6062
6638
  transUser: {
6063
6639
  create: (data: Record<string, unknown>) => Promise<BaseResponse<Record<string, unknown>>>;
6064
6640
  get: (usersUid: number, params?: TransUserGetParams) => Promise<BaseResponse<Record<string, unknown>>>;
6065
- update: (usersUid: number, data: Record<string, unknown>) => Promise<BaseResponse<Record<string, unknown>>>;
6066
- delete: (usersUid: number) => Promise<BaseResponse<Record<string, unknown>>>;
6641
+ update: (usersUid: number, data: Record<string, unknown>, params?: TransUserUpdateParams) => Promise<BaseResponse<Record<string, unknown>>>;
6642
+ delete: (usersUid: number, params?: TransUserDeleteParams) => Promise<BaseResponse<Record<string, unknown>>>;
6067
6643
  };
6068
6644
  transWebDisplayType: {
6069
6645
  create: (data: Record<string, unknown>) => Promise<BaseResponse<Record<string, unknown>>>;
6070
6646
  get: (webDisplayTypeUid: number, params?: TransWebDisplayTypeGetParams) => Promise<BaseResponse<Record<string, unknown>>>;
6071
- update: (webDisplayTypeUid: number, data: Record<string, unknown>) => Promise<BaseResponse<Record<string, unknown>>>;
6072
- delete: (webDisplayTypeUid: number) => Promise<BaseResponse<Record<string, unknown>>>;
6647
+ update: (webDisplayTypeUid: number, data: Record<string, unknown>, params?: TransWebDisplayTypeUpdateParams) => Promise<BaseResponse<Record<string, unknown>>>;
6648
+ delete: (webDisplayTypeUid: number, params?: TransWebDisplayTypeDeleteParams) => Promise<BaseResponse<Record<string, unknown>>>;
6073
6649
  defaults: {
6074
6650
  list: (params?: TransWebDisplayTypeDefaultsListParams) => Promise<BaseResponse<Record<string, unknown>>>;
6075
6651
  };
@@ -6123,7 +6699,7 @@ type HealthCheckDataResource$7 = ReturnType<typeof createHealthCheckDataResource
6123
6699
  /**
6124
6700
  * Generated client for p21-apis service
6125
6701
  * Source: shared/specs/p21-apis.json
6126
- * Generated: 2026-05-14T19:11:14Z
6702
+ * Generated: 2026-07-28T13:58:16Z
6127
6703
  *
6128
6704
  * DO NOT EDIT — regenerate with: python shared/scripts/generate-ts.py
6129
6705
  */
@@ -6152,7 +6728,7 @@ declare class P21ApisClient extends BaseServiceClient {
6152
6728
  /**
6153
6729
  * Generated types for p21-core service
6154
6730
  * Source: shared/specs/p21-core.json
6155
- * Generated: 2026-04-27T16:13:32Z
6731
+ * Generated: 2026-08-04T17:10:21Z
6156
6732
  *
6157
6733
  * DO NOT EDIT — regenerate with: python shared/scripts/generate-ts.py
6158
6734
  */
@@ -6164,6 +6740,7 @@ interface AddressListParams extends EdgeCacheParams {
6164
6740
  enabledCd?: number;
6165
6741
  limit?: number;
6166
6742
  offset?: number;
6743
+ orderBy?: string;
6167
6744
  statusCd?: number;
6168
6745
  }
6169
6746
  /** Params for GET /address/refresh */
@@ -6174,6 +6751,7 @@ type AddressGetParams = EdgeCacheParams;
6174
6751
  interface AddressCorpAddressListParams extends EdgeCacheParams {
6175
6752
  limit?: number;
6176
6753
  offset?: number;
6754
+ orderBy?: string;
6177
6755
  q?: string;
6178
6756
  }
6179
6757
  /** Params for GET /address/{id}/default */
@@ -6199,8 +6777,11 @@ interface CodeP21ListParams extends EdgeCacheParams {
6199
6777
  codeNoList?: string;
6200
6778
  limit?: number;
6201
6779
  offset?: number;
6202
- q: string;
6780
+ orderBy?: string;
6781
+ q?: string;
6203
6782
  }
6783
+ /** Params for GET /code-p21/{codeUid} */
6784
+ type CodeP21GetParams = EdgeCacheParams;
6204
6785
  /** Params for GET /company */
6205
6786
  interface CompanyListParams extends EdgeCacheParams {
6206
6787
  companyId?: string;
@@ -6213,6 +6794,19 @@ interface CompanyListParams extends EdgeCacheParams {
6213
6794
  interface CompanyGetParams extends EdgeCacheParams {
6214
6795
  companyId?: string;
6215
6796
  }
6797
+ /** Params for GET /freight-code */
6798
+ interface FreightCodeListParams extends EdgeCacheParams {
6799
+ companyId?: string;
6800
+ freightCodeId?: string;
6801
+ limit?: number;
6802
+ offset?: number;
6803
+ orderBy?: string;
6804
+ statusCd?: number;
6805
+ }
6806
+ /** Params for GET /freight-code/{freightCodeUid} */
6807
+ interface FreightCodeGetParams extends EdgeCacheParams {
6808
+ freightCodeId?: string;
6809
+ }
6216
6810
  /** Params for GET /location */
6217
6811
  interface LocationListParams extends EdgeCacheParams {
6218
6812
  deleteFlag?: string;
@@ -6230,6 +6824,7 @@ interface LocationGetParams extends EdgeCacheParams {
6230
6824
  interface PaymentTypesListParams extends EdgeCacheParams {
6231
6825
  limit?: number;
6232
6826
  offset?: number;
6827
+ orderBy?: string;
6233
6828
  }
6234
6829
  /** Response data — fields are MINIMUM, extra fields pass through */
6235
6830
  interface CashDrawerData {
@@ -6290,6 +6885,50 @@ interface CompanyData {
6290
6885
  [key: string]: unknown;
6291
6886
  }
6292
6887
  /** Response data — fields are MINIMUM, extra fields pass through */
6888
+ interface FreightCodeData {
6889
+ freightCodeUid?: number;
6890
+ companyId?: string;
6891
+ freightCd?: string;
6892
+ freightDesc?: string;
6893
+ incomingFreight?: string;
6894
+ outgoingFreight?: string;
6895
+ incomingReduceCommission?: string;
6896
+ outgoingIncreaseCommission?: string;
6897
+ prorateMethodCodeNo?: number;
6898
+ taxGroupId?: string | null;
6899
+ revenueAccountNo?: string;
6900
+ rowStatus?: number;
6901
+ dateCreated?: string | null;
6902
+ dateLastModified?: string | null;
6903
+ lastMaintainedBy?: string;
6904
+ freeFreightBasisCd?: number | null;
6905
+ freeInFreightMin?: number | null;
6906
+ freeOutFreightMin?: number | null;
6907
+ directShipFreeFreightFlag?: string | null;
6908
+ freeInFreightMinWeb?: number | null;
6909
+ freeOutFreightMinWeb?: number | null;
6910
+ handlingChargeOptionCd?: number | null;
6911
+ externalTaxProductCodeIn?: string | null;
6912
+ externalTaxProductCodeOut?: string | null;
6913
+ incomingIncreaseCommission?: string | null;
6914
+ paySpecialFlag?: string | null;
6915
+ skipFirstShipmentFlag?: string | null;
6916
+ excludeFromSalesMasterInquiry?: string;
6917
+ deductibleFlag?: string | null;
6918
+ freeColdFreight?: string;
6919
+ freeHazmatFreight?: string;
6920
+ freeExpressFreight?: string;
6921
+ freeBulkFreight?: string;
6922
+ fedexPaymentMethod?: number | null;
6923
+ excludeDiscountedFreight?: string;
6924
+ freeFreightDefaultFlag?: string | null;
6925
+ outgoingAdjustCommissionByProfitFlag?: string | null;
6926
+ updateCd?: number;
6927
+ statusCd?: number;
6928
+ processCd?: number;
6929
+ [key: string]: unknown;
6930
+ }
6931
+ /** Response data — fields are MINIMUM, extra fields pass through */
6293
6932
  interface LocationData {
6294
6933
  locationId?: number;
6295
6934
  companyId?: string;
@@ -6335,11 +6974,16 @@ interface P21CoreClientSpec {
6335
6974
  };
6336
6975
  codeP21: {
6337
6976
  list: (params?: CodeP21ListParams) => Promise<BaseResponse<CodeP21Data[]>>;
6977
+ get: (codeUid: number, params?: CodeP21GetParams) => Promise<BaseResponse<CodeP21Data>>;
6338
6978
  };
6339
6979
  company: {
6340
6980
  list: (params?: CompanyListParams) => Promise<BaseResponse<CompanyData[]>>;
6341
6981
  get: (companyUid: number, params?: CompanyGetParams) => Promise<BaseResponse<CompanyData>>;
6342
6982
  };
6983
+ freightCode: {
6984
+ list: (params?: FreightCodeListParams) => Promise<BaseResponse<FreightCodeData[]>>;
6985
+ get: (freightCodeUid: number, params?: FreightCodeGetParams) => Promise<BaseResponse<FreightCodeData>>;
6986
+ };
6343
6987
  location: {
6344
6988
  list: (params?: LocationListParams) => Promise<BaseResponse<LocationData[]>>;
6345
6989
  get: (locationId: number, params?: LocationGetParams) => Promise<BaseResponse<LocationData>>;
@@ -6402,7 +7046,7 @@ type PingDataResource$1 = ReturnType<typeof createPingDataResource$1>;
6402
7046
  /**
6403
7047
  * Generated client for p21-core service
6404
7048
  * Source: shared/specs/p21-core.json
6405
- * Generated: 2026-05-14T19:11:15Z
7049
+ * Generated: 2026-08-04T17:10:21Z
6406
7050
  *
6407
7051
  * DO NOT EDIT — regenerate with: python shared/scripts/generate-ts.py
6408
7052
  */
@@ -6412,12 +7056,14 @@ declare class P21CoreClient extends BaseServiceClient {
6412
7056
  readonly cashDrawer: P21CoreClientSpec['cashDrawer'];
6413
7057
  readonly codeP21: P21CoreClientSpec['codeP21'];
6414
7058
  readonly company: P21CoreClientSpec['company'];
7059
+ readonly freightCode: P21CoreClientSpec['freightCode'];
6415
7060
  readonly location: P21CoreClientSpec['location'];
6416
7061
  readonly paymentTypes: P21CoreClientSpec['paymentTypes'];
6417
7062
  readonly addressData: P21CoreClientSpec['address'];
6418
7063
  readonly cashDrawerData: P21CoreClientSpec['cashDrawer'];
6419
7064
  readonly codeP21Data: P21CoreClientSpec['codeP21'];
6420
7065
  readonly companyData: P21CoreClientSpec['company'];
7066
+ readonly freightCodeData: P21CoreClientSpec['freightCode'];
6421
7067
  readonly locationData: P21CoreClientSpec['location'];
6422
7068
  readonly paymentTypesData: P21CoreClientSpec['paymentTypes'];
6423
7069
  readonly healthCheck: HealthCheckResource$6;
@@ -6431,7 +7077,7 @@ declare class P21CoreClient extends BaseServiceClient {
6431
7077
  /**
6432
7078
  * Generated types for p21-sism service
6433
7079
  * Source: shared/specs/p21-sism.json
6434
- * Generated: 2026-04-27T16:13:32Z
7080
+ * Generated: 2026-07-28T13:58:19Z
6435
7081
  *
6436
7082
  * DO NOT EDIT — regenerate with: python shared/scripts/generate-ts.py
6437
7083
  */
@@ -6598,7 +7244,7 @@ type HealthCheckDataResource$5 = ReturnType<typeof createHealthCheckDataResource
6598
7244
  /**
6599
7245
  * Generated client for p21-sism service
6600
7246
  * Source: shared/specs/p21-sism.json
6601
- * Generated: 2026-05-14T19:11:17Z
7247
+ * Generated: 2026-07-28T13:58:19Z
6602
7248
  *
6603
7249
  * DO NOT EDIT — regenerate with: python shared/scripts/generate-ts.py
6604
7250
  */
@@ -6617,7 +7263,7 @@ declare class P21SismClient extends BaseServiceClient {
6617
7263
  /**
6618
7264
  * Generated types for shipping service
6619
7265
  * Source: shared/specs/shipping.json
6620
- * Generated: 2026-04-27T16:13:32Z
7266
+ * Generated: 2026-07-28T13:58:21Z
6621
7267
  *
6622
7268
  * DO NOT EDIT — regenerate with: python shared/scripts/generate-ts.py
6623
7269
  */
@@ -6692,7 +7338,7 @@ type HealthCheckDataResource$4 = ReturnType<typeof createHealthCheckDataResource
6692
7338
  /**
6693
7339
  * Generated client for shipping service
6694
7340
  * Source: shared/specs/shipping.json
6695
- * Generated: 2026-05-14T19:11:21Z
7341
+ * Generated: 2026-07-28T13:58:21Z
6696
7342
  *
6697
7343
  * DO NOT EDIT — regenerate with: python shared/scripts/generate-ts.py
6698
7344
  */
@@ -6708,7 +7354,7 @@ declare class ShippingClient extends BaseServiceClient {
6708
7354
  /**
6709
7355
  * Generated types for slack service
6710
7356
  * Source: shared/specs/slack.json
6711
- * Generated: 2026-04-27T16:13:32Z
7357
+ * Generated: 2026-07-28T13:58:22Z
6712
7358
  *
6713
7359
  * DO NOT EDIT — regenerate with: python shared/scripts/generate-ts.py
6714
7360
  */
@@ -6800,7 +7446,7 @@ type HealthCheckDataResource$3 = ReturnType<typeof createHealthCheckDataResource
6800
7446
  /**
6801
7447
  * Generated client for slack service
6802
7448
  * Source: shared/specs/slack.json
6803
- * Generated: 2026-05-14T19:11:21Z
7449
+ * Generated: 2026-07-28T13:58:22Z
6804
7450
  *
6805
7451
  * DO NOT EDIT — regenerate with: python shared/scripts/generate-ts.py
6806
7452
  */
@@ -6816,7 +7462,7 @@ declare class SlackClient extends BaseServiceClient {
6816
7462
  /**
6817
7463
  * Generated types for smarty-streets service
6818
7464
  * Source: shared/specs/smarty-streets.json
6819
- * Generated: 2026-04-27T16:13:32Z
7465
+ * Generated: 2026-07-28T13:58:23Z
6820
7466
  *
6821
7467
  * DO NOT EDIT — regenerate with: python shared/scripts/generate-ts.py
6822
7468
  */
@@ -6987,7 +7633,7 @@ type PingDataResource = ReturnType<typeof createPingDataResource>;
6987
7633
  /**
6988
7634
  * Generated client for smarty-streets service
6989
7635
  * Source: shared/specs/smarty-streets.json
6990
- * Generated: 2026-05-14T19:11:23Z
7636
+ * Generated: 2026-07-28T13:58:23Z
6991
7637
  *
6992
7638
  * DO NOT EDIT — regenerate with: python shared/scripts/generate-ts.py
6993
7639
  */
@@ -7005,7 +7651,7 @@ declare class SmartyStreetsClient extends BaseServiceClient {
7005
7651
  /**
7006
7652
  * Generated types for ups service
7007
7653
  * Source: shared/specs/ups.json
7008
- * Generated: 2026-04-27T16:13:32Z
7654
+ * Generated: 2026-07-28T13:58:24Z
7009
7655
  *
7010
7656
  * DO NOT EDIT — regenerate with: python shared/scripts/generate-ts.py
7011
7657
  */
@@ -7122,7 +7768,7 @@ type HealthCheckDataResource$1 = ReturnType<typeof createHealthCheckDataResource
7122
7768
  /**
7123
7769
  * Generated client for ups service
7124
7770
  * Source: shared/specs/ups.json
7125
- * Generated: 2026-05-14T19:11:24Z
7771
+ * Generated: 2026-07-28T13:58:24Z
7126
7772
  *
7127
7773
  * DO NOT EDIT — regenerate with: python shared/scripts/generate-ts.py
7128
7774
  */
@@ -7138,29 +7784,29 @@ declare class UPSClient extends BaseServiceClient {
7138
7784
  /**
7139
7785
  * Generated types for basecamp2 service
7140
7786
  * Source: shared/specs/basecamp2.json
7141
- * Generated: 2026-04-27T16:13:32Z
7787
+ * Generated: 2026-07-28T13:58:04Z
7142
7788
  *
7143
7789
  * DO NOT EDIT — regenerate with: python shared/scripts/generate-ts.py
7144
7790
  */
7145
7791
 
7146
7792
  /** Params for GET /comments */
7147
7793
  interface CommentsListParams extends EdgeCacheParams {
7148
- creator_id?: number;
7794
+ creatorId?: number;
7149
7795
  limit?: number;
7150
7796
  offset?: number;
7151
- order_by?: string;
7152
- todos_id?: number;
7797
+ orderBy?: string;
7798
+ todosId?: number;
7153
7799
  }
7154
7800
  /** Params for GET /comments/{id} */
7155
7801
  type CommentsGetParams = EdgeCacheParams;
7156
7802
  /** Params for GET /events */
7157
7803
  interface EventsListParams extends EdgeCacheParams {
7158
- event_type_cd?: number;
7804
+ eventTypeCd?: number;
7159
7805
  id?: number;
7160
7806
  limit?: number;
7161
7807
  offset?: number;
7162
- order_by?: string;
7163
- people_id?: number;
7808
+ orderBy?: string;
7809
+ peopleId?: number;
7164
7810
  }
7165
7811
  /** Params for GET /metrics */
7166
7812
  interface MetricsListParams extends EdgeCacheParams {
@@ -7198,27 +7844,27 @@ interface PeopleMetricsListParams extends EdgeCacheParams {
7198
7844
  }
7199
7845
  /** Params for GET /people/{id}/todos */
7200
7846
  interface PeopleTodosListParams extends EdgeCacheParams {
7201
- completed_flag?: string;
7202
- due_at?: string;
7847
+ completedFlag?: string;
7848
+ dueAt?: string;
7203
7849
  limit?: number;
7204
7850
  offset?: number;
7205
- order_by?: string;
7206
- projects_id?: number;
7851
+ orderBy?: string;
7852
+ projectsId?: number;
7207
7853
  }
7208
7854
  /** Params for GET /people/{personId}/projects/{projectId}/todos */
7209
7855
  interface PeopleProjectsTodosListParams extends EdgeCacheParams {
7210
- completed_flag?: string;
7856
+ completedFlag?: string;
7211
7857
  limit?: number;
7212
7858
  offset?: number;
7213
- order_by?: string;
7859
+ orderBy?: string;
7214
7860
  }
7215
7861
  /** Params for GET /projects */
7216
7862
  interface ProjectsListParams extends EdgeCacheParams {
7217
- archived_flag?: string;
7863
+ archivedFlag?: string;
7218
7864
  limit?: number;
7219
7865
  offset?: number;
7220
- order_by?: string;
7221
- trashed_flag?: string;
7866
+ orderBy?: string;
7867
+ trashedFlag?: string;
7222
7868
  }
7223
7869
  /** Params for GET /projects/{id} */
7224
7870
  type ProjectsGetParams = EdgeCacheParams;
@@ -7234,55 +7880,55 @@ interface ProjectsMetricsListParams extends EdgeCacheParams {
7234
7880
  }
7235
7881
  /** Params for GET /projects/{id}/todolists */
7236
7882
  interface ProjectsTodolistsListParams extends EdgeCacheParams {
7237
- completed_flag?: string;
7883
+ completedFlag?: string;
7238
7884
  limit?: number;
7239
7885
  offset?: number;
7240
- order_by?: string;
7886
+ orderBy?: string;
7241
7887
  }
7242
7888
  /** Params for GET /projects/{id}/todos */
7243
7889
  interface ProjectsTodosListParams extends EdgeCacheParams {
7244
- assignee_id?: number;
7245
- completed_flag?: string;
7890
+ assigneeId?: number;
7891
+ completedFlag?: string;
7246
7892
  limit?: number;
7247
7893
  offset?: number;
7248
- order_by?: string;
7894
+ orderBy?: string;
7249
7895
  }
7250
7896
  /** Params for GET /projects/{projectId}/todolists/{todolistId}/todos */
7251
7897
  interface ProjectsTodolistsTodosListParams extends EdgeCacheParams {
7252
- assignee_id?: number;
7253
- completed_flag?: string;
7898
+ assigneeId?: number;
7899
+ completedFlag?: string;
7254
7900
  limit?: number;
7255
7901
  offset?: number;
7256
- order_by?: string;
7902
+ orderBy?: string;
7257
7903
  }
7258
7904
  /** Params for GET /todolists */
7259
7905
  interface TodolistsListParams extends EdgeCacheParams {
7260
- assignee_id?: number;
7261
- completed_flag?: string;
7906
+ assigneeId?: number;
7907
+ completedFlag?: string;
7262
7908
  limit?: number;
7263
7909
  offset?: number;
7264
- order_by?: string;
7265
- projects_id?: number;
7910
+ orderBy?: string;
7911
+ projectsId?: number;
7266
7912
  }
7267
7913
  /** Params for GET /todolists/{id} */
7268
7914
  type TodolistsGetParams = EdgeCacheParams;
7269
7915
  /** Params for GET /todos */
7270
7916
  interface TodosListParams extends EdgeCacheParams {
7271
- assignee_id?: number;
7272
- completed_flag?: string;
7273
- due_at?: string;
7917
+ assigneeId?: number;
7918
+ completedFlag?: string;
7919
+ dueAt?: string;
7274
7920
  limit?: number;
7275
7921
  offset?: number;
7276
- order_by?: string;
7277
- projects_id?: number;
7278
- todolist_id?: number;
7922
+ orderBy?: string;
7923
+ projectsId?: number;
7924
+ todolistId?: number;
7279
7925
  }
7280
7926
  /** Params for GET /todos-summary */
7281
7927
  interface TodosSummaryListParams extends EdgeCacheParams {
7282
- akasha_cd?: number;
7928
+ akashaCd?: number;
7283
7929
  limit?: number;
7284
7930
  offset?: number;
7285
- process_cd?: number;
7931
+ processCd?: number;
7286
7932
  }
7287
7933
  /** Params for GET /todos-summary/{id} */
7288
7934
  type TodosSummaryGetParams = EdgeCacheParams;
@@ -7292,15 +7938,15 @@ type TodosGetParams = EdgeCacheParams;
7292
7938
  interface TodosCommentsListParams extends EdgeCacheParams {
7293
7939
  limit?: number;
7294
7940
  offset?: number;
7295
- order_by?: string;
7941
+ orderBy?: string;
7296
7942
  }
7297
7943
  /** Params for GET /todos/{id}/events */
7298
7944
  interface TodosEventsListParams extends EdgeCacheParams {
7299
- event_type_cd?: number;
7945
+ eventTypeCd?: number;
7300
7946
  limit?: number;
7301
7947
  offset?: number;
7302
- order_by?: string;
7303
- people_id?: number;
7948
+ orderBy?: string;
7949
+ peopleId?: number;
7304
7950
  }
7305
7951
  /** Params for GET /todos/{id}/events/{eventNum} */
7306
7952
  type TodosEventsGetParams = EdgeCacheParams;
@@ -7310,8 +7956,8 @@ type TodosMetricsListParams = EdgeCacheParams;
7310
7956
  interface TodosSessionsListParams extends EdgeCacheParams {
7311
7957
  limit?: number;
7312
7958
  offset?: number;
7313
- order_by?: string;
7314
- session_status_cd?: number;
7959
+ orderBy?: string;
7960
+ sessionStatusCd?: number;
7315
7961
  }
7316
7962
  /** Params for GET /todos/{id}/sessions/{sessionId} */
7317
7963
  type TodosSessionsGetParams = EdgeCacheParams;
@@ -7639,7 +8285,7 @@ type HealthCheckDataResource = ReturnType<typeof createHealthCheckDataResource>;
7639
8285
  /**
7640
8286
  * Generated client for basecamp2 service
7641
8287
  * Source: shared/specs/basecamp2.json
7642
- * Generated: 2026-05-14T19:11:01Z
8288
+ * Generated: 2026-07-28T13:58:04Z
7643
8289
  *
7644
8290
  * DO NOT EDIT — regenerate with: python shared/scripts/generate-ts.py
7645
8291
  */