@simpleapps-com/augur-api 2026.6.5 → 2026.7.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.
- package/dist/{client-DeDnTdXi.d.mts → client-CtkvL4em.d.mts} +463 -179
- package/dist/{client-DeDnTdXi.d.ts → client-CtkvL4em.d.ts} +463 -179
- package/dist/index.d.mts +3 -3
- package/dist/index.d.ts +3 -3
- package/dist/index.js +747 -337
- package/dist/index.js.map +1 -1
- package/dist/index.mjs +747 -337
- package/dist/index.mjs.map +1 -1
- package/dist/testing.d.mts +1 -1
- package/dist/testing.d.ts +1 -1
- package/package.json +1 -1
|
@@ -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
|
|
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-
|
|
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$
|
|
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
|
-
|
|
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$
|
|
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
|
|
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-
|
|
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-
|
|
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
|
-
|
|
889
|
+
userId: number;
|
|
866
890
|
}
|
|
867
891
|
/** Params for GET /cart-hdr/lookup */
|
|
868
892
|
interface CartHdrLookupGetParams extends EdgeCacheParams {
|
|
869
|
-
|
|
870
|
-
|
|
871
|
-
|
|
872
|
-
|
|
873
|
-
|
|
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
|
-
|
|
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-
|
|
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-
|
|
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-
|
|
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-
|
|
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
|
|
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-
|
|
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-
|
|
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-
|
|
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-
|
|
2020
|
+
* Generated: 2026-07-28T13:58:10Z
|
|
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;
|
|
@@ -2399,6 +2457,9 @@ interface AttributesItemsData {
|
|
|
2399
2457
|
statusCd?: number;
|
|
2400
2458
|
attributeValueUid?: number;
|
|
2401
2459
|
onlineCd?: number;
|
|
2460
|
+
attributeDesc?: string | null;
|
|
2461
|
+
attributeId?: string;
|
|
2462
|
+
itemId?: string;
|
|
2402
2463
|
[key: string]: unknown;
|
|
2403
2464
|
}
|
|
2404
2465
|
/** Response data — fields are MINIMUM, extra fields pass through */
|
|
@@ -2499,6 +2560,24 @@ interface InvLocData {
|
|
|
2499
2560
|
productGroupId?: string | null;
|
|
2500
2561
|
purchaseDiscountGroup?: string | null;
|
|
2501
2562
|
salesDiscountGroup?: string | null;
|
|
2563
|
+
purchaseClass?: string | null;
|
|
2564
|
+
[key: string]: unknown;
|
|
2565
|
+
}
|
|
2566
|
+
/** Response data — fields are MINIMUM, extra fields pass through */
|
|
2567
|
+
interface InvMastAttributesData {
|
|
2568
|
+
itemAttributeValueUid?: number;
|
|
2569
|
+
invMastUid?: number;
|
|
2570
|
+
attributeUid?: number;
|
|
2571
|
+
attributeValue?: string | null;
|
|
2572
|
+
dateCreated?: string;
|
|
2573
|
+
createdBy?: string;
|
|
2574
|
+
dateLastModified?: string;
|
|
2575
|
+
lastMaintainedBy?: string;
|
|
2576
|
+
updateCd?: number;
|
|
2577
|
+
processCd?: number;
|
|
2578
|
+
statusCd?: number;
|
|
2579
|
+
attributeValueUid?: number;
|
|
2580
|
+
onlineCd?: number;
|
|
2502
2581
|
[key: string]: unknown;
|
|
2503
2582
|
}
|
|
2504
2583
|
/** Response data — fields are MINIMUM, extra fields pass through */
|
|
@@ -2606,7 +2685,7 @@ interface ItemsClientSpec {
|
|
|
2606
2685
|
};
|
|
2607
2686
|
};
|
|
2608
2687
|
categories: {
|
|
2609
|
-
get: (itemCategoryUid: number, params?: CategoriesGetParams) => Promise<BaseResponse<Record<string, unknown>>>;
|
|
2688
|
+
get: (itemCategoryUid: number, params?: CategoriesGetParams$1) => Promise<BaseResponse<Record<string, unknown>>>;
|
|
2610
2689
|
attributes: {
|
|
2611
2690
|
list: (itemCategoryUid: number, params?: CategoriesAttributesListParams) => Promise<BaseResponse<Record<string, unknown>>>;
|
|
2612
2691
|
};
|
|
@@ -2644,11 +2723,11 @@ interface ItemsClientSpec {
|
|
|
2644
2723
|
};
|
|
2645
2724
|
attributes: {
|
|
2646
2725
|
list: (invMastUid: number, params?: InvMastAttributesListParams) => Promise<BaseResponse<Record<string, unknown>>>;
|
|
2647
|
-
create: (invMastUid: number, data: Record<string, unknown>) => Promise<BaseResponse<
|
|
2726
|
+
create: (invMastUid: number, data: Record<string, unknown>) => Promise<BaseResponse<InvMastAttributesData>>;
|
|
2648
2727
|
values: {
|
|
2649
2728
|
list: (invMastUid: number, attributeUid: number, params?: InvMastAttributesValuesListParams) => Promise<BaseResponse<Record<string, unknown>>>;
|
|
2650
|
-
create: (invMastUid: number, attributeUid: number, data: Record<string, unknown>) => Promise<BaseResponse<
|
|
2651
|
-
update: (invMastUid: number, attributeUid: number, attributeValueUid: number, data: Record<string, unknown>) => Promise<BaseResponse<
|
|
2729
|
+
create: (invMastUid: number, attributeUid: number, data: Record<string, unknown>) => Promise<BaseResponse<InvMastAttributesData>>;
|
|
2730
|
+
update: (invMastUid: number, attributeUid: number, attributeValueUid: number, data: Record<string, unknown>) => Promise<BaseResponse<InvMastAttributesData>>;
|
|
2652
2731
|
delete: (invMastUid: number, attributeUid: number, attributeValueUid: number) => Promise<BaseResponse<Record<string, unknown>>>;
|
|
2653
2732
|
};
|
|
2654
2733
|
};
|
|
@@ -2856,7 +2935,7 @@ type WhoamiDataResource$1 = ReturnType<typeof createWhoamiDataResource$1>;
|
|
|
2856
2935
|
/**
|
|
2857
2936
|
* Generated client for items service
|
|
2858
2937
|
* Source: shared/specs/items.json
|
|
2859
|
-
* Generated: 2026-
|
|
2938
|
+
* Generated: 2026-07-28T13:58:10Z
|
|
2860
2939
|
*
|
|
2861
2940
|
* DO NOT EDIT — regenerate with: python shared/scripts/generate-ts.py
|
|
2862
2941
|
*/
|
|
@@ -2911,7 +2990,7 @@ declare class ItemsClient extends BaseServiceClient {
|
|
|
2911
2990
|
/**
|
|
2912
2991
|
* Generated types for legacy service
|
|
2913
2992
|
* Source: shared/specs/legacy.json
|
|
2914
|
-
* Generated: 2026-
|
|
2993
|
+
* Generated: 2026-07-28T13:58:12Z
|
|
2915
2994
|
*
|
|
2916
2995
|
* DO NOT EDIT — regenerate with: python shared/scripts/generate-ts.py
|
|
2917
2996
|
*/
|
|
@@ -3114,7 +3193,7 @@ type HealthCheckDataResource$k = ReturnType<typeof createHealthCheckDataResource
|
|
|
3114
3193
|
/**
|
|
3115
3194
|
* Generated client for legacy service
|
|
3116
3195
|
* Source: shared/specs/legacy.json
|
|
3117
|
-
* Generated: 2026-
|
|
3196
|
+
* Generated: 2026-07-28T13:58:12Z
|
|
3118
3197
|
*
|
|
3119
3198
|
* DO NOT EDIT — regenerate with: python shared/scripts/generate-ts.py
|
|
3120
3199
|
*/
|
|
@@ -3139,23 +3218,21 @@ declare class LegacyClient extends BaseServiceClient {
|
|
|
3139
3218
|
/**
|
|
3140
3219
|
* Generated types for nexus service
|
|
3141
3220
|
* Source: shared/specs/nexus.json
|
|
3142
|
-
* Generated: 2026-
|
|
3221
|
+
* Generated: 2026-07-28T13:58:13Z
|
|
3143
3222
|
*
|
|
3144
3223
|
* DO NOT EDIT — regenerate with: python shared/scripts/generate-ts.py
|
|
3145
3224
|
*/
|
|
3146
3225
|
|
|
3147
|
-
/** Params for GET /bin-transfer/{binTransferHdrUid} */
|
|
3148
|
-
type BinTransferGetParams = EdgeCacheParams;
|
|
3149
3226
|
/** Params for GET /bin-transfer */
|
|
3150
3227
|
interface BinTransferListParams extends EdgeCacheParams {
|
|
3151
3228
|
limit?: number;
|
|
3152
3229
|
offset?: number;
|
|
3153
3230
|
statusCd?: number;
|
|
3154
3231
|
}
|
|
3232
|
+
/** Params for GET /bin-transfer/{binTransferHdrUid} */
|
|
3233
|
+
type BinTransferGetParams = EdgeCacheParams;
|
|
3155
3234
|
/** Params for GET /bin-transfer/{binTransferHdrUid}/status */
|
|
3156
3235
|
type BinTransferStatusListParams = EdgeCacheParams;
|
|
3157
|
-
/** Params for GET /purchase-order-receipt/{purchaseOrderReceiptUid} */
|
|
3158
|
-
type PurchaseOrderReceiptGetParams = EdgeCacheParams;
|
|
3159
3236
|
/** Params for GET /purchase-order-receipt */
|
|
3160
3237
|
interface PurchaseOrderReceiptListParams extends EdgeCacheParams {
|
|
3161
3238
|
limit?: number;
|
|
@@ -3163,8 +3240,8 @@ interface PurchaseOrderReceiptListParams extends EdgeCacheParams {
|
|
|
3163
3240
|
referenceNo?: string;
|
|
3164
3241
|
statusCd?: number;
|
|
3165
3242
|
}
|
|
3166
|
-
/** Params for GET /
|
|
3167
|
-
type
|
|
3243
|
+
/** Params for GET /purchase-order-receipt/{purchaseOrderReceiptUid} */
|
|
3244
|
+
type PurchaseOrderReceiptGetParams = EdgeCacheParams;
|
|
3168
3245
|
/** Params for GET /receiving */
|
|
3169
3246
|
interface ReceivingListParams extends EdgeCacheParams {
|
|
3170
3247
|
limit?: number;
|
|
@@ -3172,8 +3249,8 @@ interface ReceivingListParams extends EdgeCacheParams {
|
|
|
3172
3249
|
poNo?: number;
|
|
3173
3250
|
statusCd?: number;
|
|
3174
3251
|
}
|
|
3175
|
-
/** Params for GET /
|
|
3176
|
-
type
|
|
3252
|
+
/** Params for GET /receiving/{receivingUid} */
|
|
3253
|
+
type ReceivingGetParams = EdgeCacheParams;
|
|
3177
3254
|
/** Params for GET /transfer */
|
|
3178
3255
|
interface TransferListParams extends EdgeCacheParams {
|
|
3179
3256
|
limit?: number;
|
|
@@ -3181,8 +3258,6 @@ interface TransferListParams extends EdgeCacheParams {
|
|
|
3181
3258
|
referenceNo?: string;
|
|
3182
3259
|
statusCd?: number;
|
|
3183
3260
|
}
|
|
3184
|
-
/** Params for GET /transfer-receipt/{transferReceiptUid} */
|
|
3185
|
-
type TransferReceiptGetParams = EdgeCacheParams;
|
|
3186
3261
|
/** Params for GET /transfer-receipt */
|
|
3187
3262
|
interface TransferReceiptListParams extends EdgeCacheParams {
|
|
3188
3263
|
limit?: number;
|
|
@@ -3190,8 +3265,8 @@ interface TransferReceiptListParams extends EdgeCacheParams {
|
|
|
3190
3265
|
referenceNo?: string;
|
|
3191
3266
|
statusCd?: number;
|
|
3192
3267
|
}
|
|
3193
|
-
/** Params for GET /transfer-
|
|
3194
|
-
type
|
|
3268
|
+
/** Params for GET /transfer-receipt/{transferReceiptUid} */
|
|
3269
|
+
type TransferReceiptGetParams = EdgeCacheParams;
|
|
3195
3270
|
/** Params for GET /transfer-shipping */
|
|
3196
3271
|
interface TransferShippingListParams extends EdgeCacheParams {
|
|
3197
3272
|
limit?: number;
|
|
@@ -3199,6 +3274,10 @@ interface TransferShippingListParams extends EdgeCacheParams {
|
|
|
3199
3274
|
referenceNo?: string;
|
|
3200
3275
|
statusCd?: number;
|
|
3201
3276
|
}
|
|
3277
|
+
/** Params for GET /transfer-shipping/{transferReceiptUid} */
|
|
3278
|
+
type TransferShippingGetParams = EdgeCacheParams;
|
|
3279
|
+
/** Params for GET /transfer/{transferUid} */
|
|
3280
|
+
type TransferGetParams = EdgeCacheParams;
|
|
3202
3281
|
/** Response data — fields are MINIMUM, extra fields pass through */
|
|
3203
3282
|
interface BinTransferData {
|
|
3204
3283
|
binTransferHdrUid?: number;
|
|
@@ -3298,49 +3377,49 @@ interface TransferReceiptData {
|
|
|
3298
3377
|
}
|
|
3299
3378
|
interface NexusClientSpec {
|
|
3300
3379
|
binTransfer: {
|
|
3380
|
+
list: (params?: BinTransferListParams) => Promise<BaseResponse<BinTransferData[]>>;
|
|
3381
|
+
create: (data: Record<string, unknown>) => Promise<BaseResponse<BinTransferData>>;
|
|
3301
3382
|
get: (binTransferHdrUid: number, params?: BinTransferGetParams) => Promise<BaseResponse<BinTransferData>>;
|
|
3302
3383
|
update: (binTransferHdrUid: number, data: Record<string, unknown>) => Promise<BaseResponse<BinTransferData>>;
|
|
3303
3384
|
delete: (binTransferHdrUid: number) => Promise<BaseResponse<BinTransferData>>;
|
|
3304
|
-
list: (params?: BinTransferListParams) => Promise<BaseResponse<BinTransferData[]>>;
|
|
3305
|
-
create: (data: Record<string, unknown>) => Promise<BaseResponse<BinTransferData>>;
|
|
3306
3385
|
status: {
|
|
3307
3386
|
list: (binTransferHdrUid: number, params?: BinTransferStatusListParams) => Promise<BaseResponse<BinTransferStatusData>>;
|
|
3308
3387
|
};
|
|
3309
3388
|
};
|
|
3310
3389
|
purchaseOrderReceipt: {
|
|
3390
|
+
list: (params?: PurchaseOrderReceiptListParams) => Promise<BaseResponse<PurchaseOrderReceiptData[]>>;
|
|
3391
|
+
create: (data: Record<string, unknown>) => Promise<BaseResponse<PurchaseOrderReceiptData>>;
|
|
3311
3392
|
get: (purchaseOrderReceiptUid: number, params?: PurchaseOrderReceiptGetParams) => Promise<BaseResponse<PurchaseOrderReceiptData>>;
|
|
3312
3393
|
update: (purchaseOrderReceiptUid: number, data: Record<string, unknown>) => Promise<BaseResponse<PurchaseOrderReceiptData>>;
|
|
3313
3394
|
delete: (purchaseOrderReceiptUid: number) => Promise<BaseResponse<PurchaseOrderReceiptData>>;
|
|
3314
|
-
list: (params?: PurchaseOrderReceiptListParams) => Promise<BaseResponse<PurchaseOrderReceiptData[]>>;
|
|
3315
|
-
create: (data: Record<string, unknown>) => Promise<BaseResponse<PurchaseOrderReceiptData>>;
|
|
3316
3395
|
};
|
|
3317
3396
|
receiving: {
|
|
3397
|
+
list: (params?: ReceivingListParams) => Promise<BaseResponse<ReceivingData[]>>;
|
|
3398
|
+
create: (data: Record<string, unknown>) => Promise<BaseResponse<ReceivingData>>;
|
|
3318
3399
|
get: (receivingUid: number, params?: ReceivingGetParams) => Promise<BaseResponse<ReceivingData>>;
|
|
3319
3400
|
update: (receivingUid: number, data: Record<string, unknown>) => Promise<BaseResponse<ReceivingData>>;
|
|
3320
3401
|
delete: (receivingUid: number) => Promise<BaseResponse<ReceivingData>>;
|
|
3321
|
-
list: (params?: ReceivingListParams) => Promise<BaseResponse<ReceivingData[]>>;
|
|
3322
|
-
create: (data: Record<string, unknown>) => Promise<BaseResponse<ReceivingData>>;
|
|
3323
3402
|
};
|
|
3324
3403
|
transfer: {
|
|
3404
|
+
list: (params?: TransferListParams) => Promise<BaseResponse<TransferData[]>>;
|
|
3405
|
+
create: (data: Record<string, unknown>) => Promise<BaseResponse<TransferData>>;
|
|
3325
3406
|
get: (transferUid: number, params?: TransferGetParams) => Promise<BaseResponse<TransferData>>;
|
|
3326
3407
|
update: (transferUid: number, data: Record<string, unknown>) => Promise<BaseResponse<TransferData>>;
|
|
3327
3408
|
delete: (transferUid: number) => Promise<BaseResponse<TransferData>>;
|
|
3328
|
-
list: (params?: TransferListParams) => Promise<BaseResponse<TransferData[]>>;
|
|
3329
|
-
create: (data: Record<string, unknown>) => Promise<BaseResponse<TransferData>>;
|
|
3330
3409
|
};
|
|
3331
3410
|
transferReceipt: {
|
|
3411
|
+
list: (params?: TransferReceiptListParams) => Promise<BaseResponse<TransferReceiptData[]>>;
|
|
3412
|
+
create: (data: Record<string, unknown>) => Promise<BaseResponse<TransferReceiptData>>;
|
|
3332
3413
|
get: (transferReceiptUid: number, params?: TransferReceiptGetParams) => Promise<BaseResponse<TransferReceiptData>>;
|
|
3333
3414
|
update: (transferReceiptUid: number, data: Record<string, unknown>) => Promise<BaseResponse<TransferReceiptData>>;
|
|
3334
3415
|
delete: (transferReceiptUid: number) => Promise<BaseResponse<TransferReceiptData>>;
|
|
3335
|
-
list: (params?: TransferReceiptListParams) => Promise<BaseResponse<TransferReceiptData[]>>;
|
|
3336
|
-
create: (data: Record<string, unknown>) => Promise<BaseResponse<TransferReceiptData>>;
|
|
3337
3416
|
};
|
|
3338
3417
|
transferShipping: {
|
|
3418
|
+
list: (params?: TransferShippingListParams) => Promise<BaseResponse<TransferReceiptData[]>>;
|
|
3419
|
+
create: (data: Record<string, unknown>) => Promise<BaseResponse<TransferReceiptData>>;
|
|
3339
3420
|
get: (transferReceiptUid: number, params?: TransferShippingGetParams) => Promise<BaseResponse<TransferReceiptData>>;
|
|
3340
3421
|
update: (transferReceiptUid: number, data: Record<string, unknown>) => Promise<BaseResponse<TransferReceiptData>>;
|
|
3341
3422
|
delete: (transferReceiptUid: number) => Promise<BaseResponse<TransferReceiptData>>;
|
|
3342
|
-
list: (params?: TransferShippingListParams) => Promise<BaseResponse<TransferReceiptData[]>>;
|
|
3343
|
-
create: (data: Record<string, unknown>) => Promise<BaseResponse<TransferReceiptData>>;
|
|
3344
3423
|
};
|
|
3345
3424
|
}
|
|
3346
3425
|
|
|
@@ -3411,7 +3490,7 @@ type PingDataResource$6 = ReturnType<typeof createPingDataResource$6>;
|
|
|
3411
3490
|
/**
|
|
3412
3491
|
* Generated client for nexus service
|
|
3413
3492
|
* Source: shared/specs/nexus.json
|
|
3414
|
-
* Generated: 2026-
|
|
3493
|
+
* Generated: 2026-07-28T13:58:13Z
|
|
3415
3494
|
*
|
|
3416
3495
|
* DO NOT EDIT — regenerate with: python shared/scripts/generate-ts.py
|
|
3417
3496
|
*/
|
|
@@ -3440,7 +3519,7 @@ declare class NexusClient extends BaseServiceClient {
|
|
|
3440
3519
|
/**
|
|
3441
3520
|
* Generated types for agr-site service
|
|
3442
3521
|
* Source: shared/specs/agr-site.json
|
|
3443
|
-
* Generated: 2026-
|
|
3522
|
+
* Generated: 2026-07-28T13:58:02Z
|
|
3444
3523
|
*
|
|
3445
3524
|
* DO NOT EDIT — regenerate with: python shared/scripts/generate-ts.py
|
|
3446
3525
|
*/
|
|
@@ -3515,6 +3594,16 @@ interface TrainingConversationsMessagesListParams extends EdgeCacheParams {
|
|
|
3515
3594
|
}
|
|
3516
3595
|
/** Params for GET /training/{trainingSetUid}/conversations/{trainingConvUid}/messages/{trainingMsgUid} */
|
|
3517
3596
|
type TrainingConversationsMessagesGetParams = EdgeCacheParams;
|
|
3597
|
+
/** Params for GET /users/{userId}/addresses */
|
|
3598
|
+
interface UsersAddressesListParams extends EdgeCacheParams {
|
|
3599
|
+
emailAddress?: string;
|
|
3600
|
+
limit?: number;
|
|
3601
|
+
offset?: number;
|
|
3602
|
+
orderBy?: string;
|
|
3603
|
+
statusCd?: number;
|
|
3604
|
+
}
|
|
3605
|
+
/** Params for GET /users/{userId}/addresses/{userAddressUid} */
|
|
3606
|
+
type UsersAddressesGetParams = EdgeCacheParams;
|
|
3518
3607
|
/** Response data — fields are MINIMUM, extra fields pass through */
|
|
3519
3608
|
interface FyxerTranscriptData {
|
|
3520
3609
|
fyxerTranscriptHdrUid?: number;
|
|
@@ -3650,10 +3739,35 @@ interface TrainingConversationsMessagesData {
|
|
|
3650
3739
|
dateLastModified?: string;
|
|
3651
3740
|
[key: string]: unknown;
|
|
3652
3741
|
}
|
|
3742
|
+
/** Response data — fields are MINIMUM, extra fields pass through */
|
|
3743
|
+
interface UsersAddressesData {
|
|
3744
|
+
userAddressUid?: number;
|
|
3745
|
+
userId?: number;
|
|
3746
|
+
address1?: string | null;
|
|
3747
|
+
address2?: string | null;
|
|
3748
|
+
address3?: string | null;
|
|
3749
|
+
city?: string | null;
|
|
3750
|
+
state?: string | null;
|
|
3751
|
+
postalCode?: string | null;
|
|
3752
|
+
country?: string | null;
|
|
3753
|
+
emailAddress?: string | null;
|
|
3754
|
+
name?: string | null;
|
|
3755
|
+
phoneNumberMain?: string | null;
|
|
3756
|
+
phoneNumberMobile?: string | null;
|
|
3757
|
+
dateCreated?: string;
|
|
3758
|
+
dateLastModified?: string;
|
|
3759
|
+
updateCd?: number;
|
|
3760
|
+
statusCd?: number;
|
|
3761
|
+
processCd?: number;
|
|
3762
|
+
[key: string]: unknown;
|
|
3763
|
+
}
|
|
3653
3764
|
interface AgrSiteClientSpec {
|
|
3654
3765
|
context: {
|
|
3655
3766
|
get: (siteId: string, params?: ContextGetParams$1) => Promise<BaseResponse<Record<string, unknown>>>;
|
|
3656
3767
|
};
|
|
3768
|
+
datafiles: {
|
|
3769
|
+
create: (data: Record<string, unknown>) => Promise<BaseResponse<Record<string, unknown>>>;
|
|
3770
|
+
};
|
|
3657
3771
|
fyxerTranscript: {
|
|
3658
3772
|
list: (params?: FyxerTranscriptListParams) => Promise<BaseResponse<FyxerTranscriptData[]>>;
|
|
3659
3773
|
create: (data: Record<string, unknown>) => Promise<BaseResponse<FyxerTranscriptData>>;
|
|
@@ -3713,6 +3827,15 @@ interface AgrSiteClientSpec {
|
|
|
3713
3827
|
};
|
|
3714
3828
|
};
|
|
3715
3829
|
};
|
|
3830
|
+
users: {
|
|
3831
|
+
addresses: {
|
|
3832
|
+
list: (userId: number, params?: UsersAddressesListParams) => Promise<BaseResponse<UsersAddressesData[]>>;
|
|
3833
|
+
create: (userId: number, data: Record<string, unknown>) => Promise<BaseResponse<UsersAddressesData>>;
|
|
3834
|
+
get: (userId: number, userAddressUid: number, params?: UsersAddressesGetParams) => Promise<BaseResponse<UsersAddressesData>>;
|
|
3835
|
+
update: (userId: number, userAddressUid: number, data: Record<string, unknown>) => Promise<BaseResponse<UsersAddressesData>>;
|
|
3836
|
+
delete: (userId: number, userAddressUid: number) => Promise<BaseResponse<UsersAddressesData>>;
|
|
3837
|
+
};
|
|
3838
|
+
};
|
|
3716
3839
|
}
|
|
3717
3840
|
|
|
3718
3841
|
type ExecuteRequest$l = AgrSiteClient['executeRequest'];
|
|
@@ -3853,13 +3976,14 @@ type WhoamiDataResource = ReturnType<typeof createWhoamiDataResource>;
|
|
|
3853
3976
|
/**
|
|
3854
3977
|
* Generated client for agr-site service
|
|
3855
3978
|
* Source: shared/specs/agr-site.json
|
|
3856
|
-
* Generated: 2026-
|
|
3979
|
+
* Generated: 2026-07-28T13:58:02Z
|
|
3857
3980
|
*
|
|
3858
3981
|
* DO NOT EDIT — regenerate with: python shared/scripts/generate-ts.py
|
|
3859
3982
|
*/
|
|
3860
3983
|
|
|
3861
3984
|
declare class AgrSiteClient extends BaseServiceClient {
|
|
3862
3985
|
readonly context: AgrSiteClientSpec['context'];
|
|
3986
|
+
readonly datafiles: AgrSiteClientSpec['datafiles'];
|
|
3863
3987
|
readonly fyxerTranscript: AgrSiteClientSpec['fyxerTranscript'];
|
|
3864
3988
|
readonly geoCodesPostalCodes: AgrSiteClientSpec['geoCodesPostalCodes'];
|
|
3865
3989
|
readonly metaFiles: AgrSiteClientSpec['metaFiles'];
|
|
@@ -3868,7 +3992,9 @@ declare class AgrSiteClient extends BaseServiceClient {
|
|
|
3868
3992
|
readonly postalCodesXShiptos: AgrSiteClientSpec['postalCodesXShiptos'];
|
|
3869
3993
|
readonly settings: AgrSiteClientSpec['settings'];
|
|
3870
3994
|
readonly training: AgrSiteClientSpec['training'];
|
|
3995
|
+
readonly users: AgrSiteClientSpec['users'];
|
|
3871
3996
|
readonly contextData: AgrSiteClientSpec['context'];
|
|
3997
|
+
readonly datafilesData: AgrSiteClientSpec['datafiles'];
|
|
3872
3998
|
readonly fyxerTranscriptData: AgrSiteClientSpec['fyxerTranscript'];
|
|
3873
3999
|
readonly geoCodesPostalCodesData: AgrSiteClientSpec['geoCodesPostalCodes'];
|
|
3874
4000
|
readonly metaFilesData: AgrSiteClientSpec['metaFiles'];
|
|
@@ -3877,6 +4003,7 @@ declare class AgrSiteClient extends BaseServiceClient {
|
|
|
3877
4003
|
readonly postalCodesXShiptosData: AgrSiteClientSpec['postalCodesXShiptos'];
|
|
3878
4004
|
readonly settingsData: AgrSiteClientSpec['settings'];
|
|
3879
4005
|
readonly trainingData: AgrSiteClientSpec['training'];
|
|
4006
|
+
readonly usersData: AgrSiteClientSpec['users'];
|
|
3880
4007
|
readonly healthCheck: HealthCheckResource$i;
|
|
3881
4008
|
readonly healthCheckData: HealthCheckDataResource$i;
|
|
3882
4009
|
readonly ping: PingResource$5;
|
|
@@ -3890,7 +4017,7 @@ declare class AgrSiteClient extends BaseServiceClient {
|
|
|
3890
4017
|
/**
|
|
3891
4018
|
* Generated types for customers service
|
|
3892
4019
|
* Source: shared/specs/customers.json
|
|
3893
|
-
* Generated: 2026-
|
|
4020
|
+
* Generated: 2026-07-28T13:58:07Z
|
|
3894
4021
|
*
|
|
3895
4022
|
* DO NOT EDIT — regenerate with: python shared/scripts/generate-ts.py
|
|
3896
4023
|
*/
|
|
@@ -3950,6 +4077,7 @@ interface CustomerContactsListParams extends EdgeCacheParams {
|
|
|
3950
4077
|
type CustomerDocListParams = EdgeCacheParams;
|
|
3951
4078
|
/** Params for GET /customer/{customerId}/invoices */
|
|
3952
4079
|
interface CustomerInvoicesListParams extends EdgeCacheParams {
|
|
4080
|
+
contactId?: string;
|
|
3953
4081
|
createdFrom?: string;
|
|
3954
4082
|
createdOn?: string;
|
|
3955
4083
|
createdTo?: string;
|
|
@@ -3963,6 +4091,7 @@ interface CustomerInvoicesListParams extends EdgeCacheParams {
|
|
|
3963
4091
|
type CustomerInvoicesGetParams = EdgeCacheParams;
|
|
3964
4092
|
/** Params for GET /customer/{customerId}/orders */
|
|
3965
4093
|
interface CustomerOrdersListParams extends EdgeCacheParams {
|
|
4094
|
+
addressId?: number;
|
|
3966
4095
|
cancelFlag?: string;
|
|
3967
4096
|
contactId?: string;
|
|
3968
4097
|
createdFrom?: string;
|
|
@@ -3985,6 +4114,8 @@ interface CustomerPurchasedItemsListParams extends EdgeCacheParams {
|
|
|
3985
4114
|
}
|
|
3986
4115
|
/** Params for GET /customer/{customerId}/quotes */
|
|
3987
4116
|
interface CustomerQuotesListParams extends EdgeCacheParams {
|
|
4117
|
+
addressId?: number;
|
|
4118
|
+
contactId?: string;
|
|
3988
4119
|
createdFrom?: string;
|
|
3989
4120
|
createdOn?: string;
|
|
3990
4121
|
createdTo?: string;
|
|
@@ -4172,7 +4303,7 @@ type HealthCheckDataResource$h = ReturnType<typeof createHealthCheckDataResource
|
|
|
4172
4303
|
/**
|
|
4173
4304
|
* Generated client for customers service
|
|
4174
4305
|
* Source: shared/specs/customers.json
|
|
4175
|
-
* Generated: 2026-
|
|
4306
|
+
* Generated: 2026-07-28T13:58:07Z
|
|
4176
4307
|
*
|
|
4177
4308
|
* DO NOT EDIT — regenerate with: python shared/scripts/generate-ts.py
|
|
4178
4309
|
*/
|
|
@@ -4197,7 +4328,7 @@ declare class CustomersClient extends BaseServiceClient {
|
|
|
4197
4328
|
/**
|
|
4198
4329
|
* Generated types for orders service
|
|
4199
4330
|
* Source: shared/specs/orders.json
|
|
4200
|
-
* Generated: 2026-
|
|
4331
|
+
* Generated: 2026-07-28T13:58:15Z
|
|
4201
4332
|
*
|
|
4202
4333
|
* DO NOT EDIT — regenerate with: python shared/scripts/generate-ts.py
|
|
4203
4334
|
*/
|
|
@@ -4447,19 +4578,19 @@ declare class OrdersClient extends BaseServiceClient {
|
|
|
4447
4578
|
/**
|
|
4448
4579
|
* Generated types for p21-pim service
|
|
4449
4580
|
* Source: shared/specs/p21-pim.json
|
|
4450
|
-
* Generated: 2026-
|
|
4581
|
+
* Generated: 2026-07-28T13:58:18Z
|
|
4451
4582
|
*
|
|
4452
4583
|
* DO NOT EDIT — regenerate with: python shared/scripts/generate-ts.py
|
|
4453
4584
|
*/
|
|
4454
4585
|
|
|
4455
4586
|
/** Params for GET /inv-mast-ext */
|
|
4456
4587
|
interface InvMastExtListParams extends EdgeCacheParams {
|
|
4457
|
-
|
|
4588
|
+
invMastUid?: number;
|
|
4458
4589
|
limit?: number;
|
|
4459
4590
|
offset?: number;
|
|
4460
|
-
|
|
4591
|
+
orderBy?: string;
|
|
4461
4592
|
q?: string;
|
|
4462
|
-
|
|
4593
|
+
statusCd?: number;
|
|
4463
4594
|
}
|
|
4464
4595
|
/** Params for GET /inv-mast-ext/{invMastExtUid} */
|
|
4465
4596
|
type InvMastExtGetParams = EdgeCacheParams;
|
|
@@ -4477,9 +4608,9 @@ interface ItemsSuggestWebDescListParams extends EdgeCacheParams {
|
|
|
4477
4608
|
interface PodcastsListParams extends EdgeCacheParams {
|
|
4478
4609
|
limit?: number;
|
|
4479
4610
|
offset?: number;
|
|
4480
|
-
|
|
4611
|
+
orderBy?: string;
|
|
4481
4612
|
q?: string;
|
|
4482
|
-
|
|
4613
|
+
statusCd?: number;
|
|
4483
4614
|
}
|
|
4484
4615
|
/** Params for GET /podcasts/{podcastsUid} */
|
|
4485
4616
|
type PodcastsGetParams = EdgeCacheParams;
|
|
@@ -4559,7 +4690,7 @@ type HealthCheckDataResource$f = ReturnType<typeof createHealthCheckDataResource
|
|
|
4559
4690
|
/**
|
|
4560
4691
|
* Generated client for p21-pim service
|
|
4561
4692
|
* Source: shared/specs/p21-pim.json
|
|
4562
|
-
* Generated: 2026-
|
|
4693
|
+
* Generated: 2026-07-28T13:58:18Z
|
|
4563
4694
|
*
|
|
4564
4695
|
* DO NOT EDIT — regenerate with: python shared/scripts/generate-ts.py
|
|
4565
4696
|
*/
|
|
@@ -4574,12 +4705,13 @@ declare class P21PimClient extends BaseServiceClient {
|
|
|
4574
4705
|
readonly healthCheck: HealthCheckResource$f;
|
|
4575
4706
|
readonly healthCheckData: HealthCheckDataResource$f;
|
|
4576
4707
|
constructor(http: HTTPClient, baseUrl?: string);
|
|
4708
|
+
protected getServiceDescription(): string;
|
|
4577
4709
|
}
|
|
4578
4710
|
|
|
4579
4711
|
/**
|
|
4580
4712
|
* Generated types for payments service
|
|
4581
4713
|
* Source: shared/specs/payments.json
|
|
4582
|
-
* Generated: 2026-
|
|
4714
|
+
* Generated: 2026-07-28T13:58:19Z
|
|
4583
4715
|
*
|
|
4584
4716
|
* DO NOT EDIT — regenerate with: python shared/scripts/generate-ts.py
|
|
4585
4717
|
*/
|
|
@@ -4599,6 +4731,41 @@ interface MonerisPreAuthCompleteListParams extends EdgeCacheParams {
|
|
|
4599
4731
|
testMode?: boolean;
|
|
4600
4732
|
txnNumber: string;
|
|
4601
4733
|
}
|
|
4734
|
+
/** Params for POST /paytrace/authorization */
|
|
4735
|
+
interface PaytraceAuthorizationCreateParams {
|
|
4736
|
+
amount: number;
|
|
4737
|
+
billingAddress?: string;
|
|
4738
|
+
creditCard: string;
|
|
4739
|
+
csc?: string;
|
|
4740
|
+
invoiceId?: string;
|
|
4741
|
+
testMode?: boolean;
|
|
4742
|
+
}
|
|
4743
|
+
/** Params for POST /paytrace/capture */
|
|
4744
|
+
interface PaytraceCaptureCreateParams {
|
|
4745
|
+
amount?: number;
|
|
4746
|
+
testMode?: boolean;
|
|
4747
|
+
transactionId: string;
|
|
4748
|
+
}
|
|
4749
|
+
/** Params for POST /paytrace/refund */
|
|
4750
|
+
interface PaytraceRefundCreateParams {
|
|
4751
|
+
amount?: number;
|
|
4752
|
+
testMode?: boolean;
|
|
4753
|
+
transactionId: string;
|
|
4754
|
+
}
|
|
4755
|
+
/** Params for POST /paytrace/sale */
|
|
4756
|
+
interface PaytraceSaleCreateParams {
|
|
4757
|
+
amount: number;
|
|
4758
|
+
billingAddress?: string;
|
|
4759
|
+
creditCard: string;
|
|
4760
|
+
csc?: string;
|
|
4761
|
+
invoiceId?: string;
|
|
4762
|
+
testMode?: boolean;
|
|
4763
|
+
}
|
|
4764
|
+
/** Params for POST /paytrace/void */
|
|
4765
|
+
interface PaytraceVoidCreateParams {
|
|
4766
|
+
testMode?: boolean;
|
|
4767
|
+
transactionId: string;
|
|
4768
|
+
}
|
|
4602
4769
|
/** Params for GET /unified/account-query */
|
|
4603
4770
|
interface UnifiedAccountQueryListParams extends EdgeCacheParams {
|
|
4604
4771
|
customerId: string;
|
|
@@ -4630,6 +4797,10 @@ interface UnifiedSurchargeListParams extends EdgeCacheParams {
|
|
|
4630
4797
|
paymentAccountId: string;
|
|
4631
4798
|
toState: string;
|
|
4632
4799
|
}
|
|
4800
|
+
/** Params for GET /unified/transaction-response */
|
|
4801
|
+
interface UnifiedTransactionResponseListParams extends EdgeCacheParams {
|
|
4802
|
+
siteId: string;
|
|
4803
|
+
}
|
|
4633
4804
|
/** Params for GET /unified/transaction-setup */
|
|
4634
4805
|
interface UnifiedTransactionSetupListParams extends EdgeCacheParams {
|
|
4635
4806
|
customerId: string;
|
|
@@ -4657,19 +4828,19 @@ interface PaymentsClientSpec {
|
|
|
4657
4828
|
};
|
|
4658
4829
|
paytrace: {
|
|
4659
4830
|
authorization: {
|
|
4660
|
-
create: (data: Record<string, unknown
|
|
4831
|
+
create: (data: Record<string, unknown>, params?: PaytraceAuthorizationCreateParams) => Promise<BaseResponse<Record<string, unknown>>>;
|
|
4661
4832
|
};
|
|
4662
4833
|
capture: {
|
|
4663
|
-
create: (data: Record<string, unknown
|
|
4834
|
+
create: (data: Record<string, unknown>, params?: PaytraceCaptureCreateParams) => Promise<BaseResponse<Record<string, unknown>>>;
|
|
4664
4835
|
};
|
|
4665
4836
|
refund: {
|
|
4666
|
-
create: (data: Record<string, unknown
|
|
4837
|
+
create: (data: Record<string, unknown>, params?: PaytraceRefundCreateParams) => Promise<BaseResponse<Record<string, unknown>>>;
|
|
4667
4838
|
};
|
|
4668
4839
|
sale: {
|
|
4669
|
-
create: (data: Record<string, unknown
|
|
4840
|
+
create: (data: Record<string, unknown>, params?: PaytraceSaleCreateParams) => Promise<BaseResponse<Record<string, unknown>>>;
|
|
4670
4841
|
};
|
|
4671
4842
|
void: {
|
|
4672
|
-
create: (data: Record<string, unknown
|
|
4843
|
+
create: (data: Record<string, unknown>, params?: PaytraceVoidCreateParams) => Promise<BaseResponse<Record<string, unknown>>>;
|
|
4673
4844
|
};
|
|
4674
4845
|
};
|
|
4675
4846
|
unified: {
|
|
@@ -4685,6 +4856,9 @@ interface PaymentsClientSpec {
|
|
|
4685
4856
|
surcharge: {
|
|
4686
4857
|
list: (params?: UnifiedSurchargeListParams) => Promise<BaseResponse<Record<string, unknown>>>;
|
|
4687
4858
|
};
|
|
4859
|
+
transactionResponse: {
|
|
4860
|
+
list: (params?: UnifiedTransactionResponseListParams) => Promise<BaseResponse<Record<string, unknown>>>;
|
|
4861
|
+
};
|
|
4688
4862
|
transactionSetup: {
|
|
4689
4863
|
list: (params?: UnifiedTransactionSetupListParams) => Promise<BaseResponse<Record<string, unknown>>>;
|
|
4690
4864
|
};
|
|
@@ -4747,7 +4921,7 @@ type PingDataResource$4 = ReturnType<typeof createPingDataResource$4>;
|
|
|
4747
4921
|
/**
|
|
4748
4922
|
* Generated client for payments service
|
|
4749
4923
|
* Source: shared/specs/payments.json
|
|
4750
|
-
* Generated: 2026-
|
|
4924
|
+
* Generated: 2026-07-28T13:58:19Z
|
|
4751
4925
|
*
|
|
4752
4926
|
* DO NOT EDIT — regenerate with: python shared/scripts/generate-ts.py
|
|
4753
4927
|
*/
|
|
@@ -4772,7 +4946,7 @@ declare class PaymentsClient extends BaseServiceClient {
|
|
|
4772
4946
|
/**
|
|
4773
4947
|
* Generated types for agr-info service
|
|
4774
4948
|
* Source: shared/specs/agr-info.json
|
|
4775
|
-
* Generated: 2026-
|
|
4949
|
+
* Generated: 2026-07-28T13:57:59Z
|
|
4776
4950
|
*
|
|
4777
4951
|
* DO NOT EDIT — regenerate with: python shared/scripts/generate-ts.py
|
|
4778
4952
|
*/
|
|
@@ -4815,6 +4989,16 @@ interface MicroservicesData {
|
|
|
4815
4989
|
[key: string]: unknown;
|
|
4816
4990
|
}
|
|
4817
4991
|
/** Response data — fields are MINIMUM, extra fields pass through */
|
|
4992
|
+
interface OauthRefreshData {
|
|
4993
|
+
grantId?: string;
|
|
4994
|
+
usersId?: number;
|
|
4995
|
+
accessToken?: string;
|
|
4996
|
+
refreshToken?: string;
|
|
4997
|
+
accessTokenExpiresAt?: string;
|
|
4998
|
+
refreshTokenExpiresAt?: string;
|
|
4999
|
+
[key: string]: unknown;
|
|
5000
|
+
}
|
|
5001
|
+
/** Response data — fields are MINIMUM, extra fields pass through */
|
|
4818
5002
|
interface RubricsData {
|
|
4819
5003
|
rubricsUid?: number;
|
|
4820
5004
|
title?: string | null;
|
|
@@ -4828,6 +5012,22 @@ interface RubricsData {
|
|
|
4828
5012
|
[key: string]: unknown;
|
|
4829
5013
|
}
|
|
4830
5014
|
/** Response data — fields are MINIMUM, extra fields pass through */
|
|
5015
|
+
interface SitesVerifyUserData {
|
|
5016
|
+
grantId?: string;
|
|
5017
|
+
usersId?: number;
|
|
5018
|
+
username?: string;
|
|
5019
|
+
email?: string;
|
|
5020
|
+
name?: string;
|
|
5021
|
+
isAdmin?: boolean;
|
|
5022
|
+
homeSiteId?: string;
|
|
5023
|
+
sites?: unknown;
|
|
5024
|
+
accessToken?: string;
|
|
5025
|
+
refreshToken?: string;
|
|
5026
|
+
accessTokenExpiresAt?: string;
|
|
5027
|
+
refreshTokenExpiresAt?: string;
|
|
5028
|
+
[key: string]: unknown;
|
|
5029
|
+
}
|
|
5030
|
+
/** Response data — fields are MINIMUM, extra fields pass through */
|
|
4831
5031
|
interface WorkflowsData {
|
|
4832
5032
|
workflowsUid?: number;
|
|
4833
5033
|
workflowsId?: string;
|
|
@@ -4863,6 +5063,14 @@ interface AgrInfoClientSpec {
|
|
|
4863
5063
|
update: (microservicesUid: number, data: Record<string, unknown>) => Promise<BaseResponse<MicroservicesData>>;
|
|
4864
5064
|
delete: (microservicesUid: number) => Promise<BaseResponse<Record<string, unknown>>>;
|
|
4865
5065
|
};
|
|
5066
|
+
oauth: {
|
|
5067
|
+
grants: {
|
|
5068
|
+
delete: (grantId: string) => Promise<BaseResponse<Record<string, unknown>>>;
|
|
5069
|
+
};
|
|
5070
|
+
refresh: {
|
|
5071
|
+
create: (data: Record<string, unknown>) => Promise<BaseResponse<OauthRefreshData>>;
|
|
5072
|
+
};
|
|
5073
|
+
};
|
|
4866
5074
|
ollama: {
|
|
4867
5075
|
tags: {
|
|
4868
5076
|
list: (params?: OllamaTagsListParams) => Promise<BaseResponse<Record<string, unknown>>>;
|
|
@@ -4879,6 +5087,9 @@ interface AgrInfoClientSpec {
|
|
|
4879
5087
|
validate: {
|
|
4880
5088
|
create: (data: Record<string, unknown>) => Promise<BaseResponse<Record<string, unknown>>>;
|
|
4881
5089
|
};
|
|
5090
|
+
verifyUser: {
|
|
5091
|
+
create: (data: Record<string, unknown>) => Promise<BaseResponse<SitesVerifyUserData>>;
|
|
5092
|
+
};
|
|
4882
5093
|
};
|
|
4883
5094
|
workflows: {
|
|
4884
5095
|
list: (params?: WorkflowsListParams) => Promise<BaseResponse<WorkflowsData[]>>;
|
|
@@ -4935,7 +5146,7 @@ type HealthCheckDataResource$d = ReturnType<typeof createHealthCheckDataResource
|
|
|
4935
5146
|
/**
|
|
4936
5147
|
* Generated client for agr-info service
|
|
4937
5148
|
* Source: shared/specs/agr-info.json
|
|
4938
|
-
* Generated: 2026-
|
|
5149
|
+
* Generated: 2026-07-28T13:57:59Z
|
|
4939
5150
|
*
|
|
4940
5151
|
* DO NOT EDIT — regenerate with: python shared/scripts/generate-ts.py
|
|
4941
5152
|
*/
|
|
@@ -4945,6 +5156,7 @@ declare class AgrInfoClient extends BaseServiceClient {
|
|
|
4945
5156
|
readonly context: AgrInfoClientSpec['context'];
|
|
4946
5157
|
readonly joomla: AgrInfoClientSpec['joomla'];
|
|
4947
5158
|
readonly microservices: AgrInfoClientSpec['microservices'];
|
|
5159
|
+
readonly oauth: AgrInfoClientSpec['oauth'];
|
|
4948
5160
|
readonly ollama: AgrInfoClientSpec['ollama'];
|
|
4949
5161
|
readonly rubrics: AgrInfoClientSpec['rubrics'];
|
|
4950
5162
|
readonly sites: AgrInfoClientSpec['sites'];
|
|
@@ -4953,6 +5165,7 @@ declare class AgrInfoClient extends BaseServiceClient {
|
|
|
4953
5165
|
readonly contextData: AgrInfoClientSpec['context'];
|
|
4954
5166
|
readonly joomlaData: AgrInfoClientSpec['joomla'];
|
|
4955
5167
|
readonly microservicesData: AgrInfoClientSpec['microservices'];
|
|
5168
|
+
readonly oauthData: AgrInfoClientSpec['oauth'];
|
|
4956
5169
|
readonly ollamaData: AgrInfoClientSpec['ollama'];
|
|
4957
5170
|
readonly rubricsData: AgrInfoClientSpec['rubrics'];
|
|
4958
5171
|
readonly sitesData: AgrInfoClientSpec['sites'];
|
|
@@ -4966,7 +5179,7 @@ declare class AgrInfoClient extends BaseServiceClient {
|
|
|
4966
5179
|
/**
|
|
4967
5180
|
* Generated types for agr-int service
|
|
4968
5181
|
* Source: shared/specs/agr-int.json
|
|
4969
|
-
* Generated: 2026-
|
|
5182
|
+
* Generated: 2026-07-28T13:58:00Z
|
|
4970
5183
|
*
|
|
4971
5184
|
* DO NOT EDIT — regenerate with: python shared/scripts/generate-ts.py
|
|
4972
5185
|
*/
|
|
@@ -5225,7 +5438,7 @@ interface AgrIntClientSpec {
|
|
|
5225
5438
|
/**
|
|
5226
5439
|
* Generated client for agr-int service
|
|
5227
5440
|
* Source: shared/specs/agr-int.json
|
|
5228
|
-
* Generated: 2026-
|
|
5441
|
+
* Generated: 2026-07-28T13:58:00Z
|
|
5229
5442
|
*
|
|
5230
5443
|
* DO NOT EDIT — regenerate with: python shared/scripts/generate-ts.py
|
|
5231
5444
|
*/
|
|
@@ -5368,7 +5581,7 @@ type PingDataResource$3 = ReturnType<typeof createPingDataResource$3>;
|
|
|
5368
5581
|
/**
|
|
5369
5582
|
* Generated client for agr-work service
|
|
5370
5583
|
* Source: shared/specs/agr-work.json
|
|
5371
|
-
* Generated: 2026-
|
|
5584
|
+
* Generated: 2026-07-28T13:58:02Z
|
|
5372
5585
|
*
|
|
5373
5586
|
* DO NOT EDIT — regenerate with: python shared/scripts/generate-ts.py
|
|
5374
5587
|
*/
|
|
@@ -5384,7 +5597,7 @@ declare class AgrWorkClient extends BaseServiceClient {
|
|
|
5384
5597
|
/**
|
|
5385
5598
|
* Generated types for avalara service
|
|
5386
5599
|
* Source: shared/specs/avalara.json
|
|
5387
|
-
* Generated: 2026-
|
|
5600
|
+
* Generated: 2026-07-28T13:58:03Z
|
|
5388
5601
|
*
|
|
5389
5602
|
* DO NOT EDIT — regenerate with: python shared/scripts/generate-ts.py
|
|
5390
5603
|
*/
|
|
@@ -5453,7 +5666,7 @@ type HealthCheckDataResource$b = ReturnType<typeof createHealthCheckDataResource
|
|
|
5453
5666
|
/**
|
|
5454
5667
|
* Generated client for avalara service
|
|
5455
5668
|
* Source: shared/specs/avalara.json
|
|
5456
|
-
* Generated: 2026-
|
|
5669
|
+
* Generated: 2026-07-28T13:58:03Z
|
|
5457
5670
|
*
|
|
5458
5671
|
* DO NOT EDIT — regenerate with: python shared/scripts/generate-ts.py
|
|
5459
5672
|
*/
|
|
@@ -5469,13 +5682,51 @@ declare class AvalaraClient extends BaseServiceClient {
|
|
|
5469
5682
|
/**
|
|
5470
5683
|
* Generated types for brand-folder service
|
|
5471
5684
|
* Source: shared/specs/brand-folder.json
|
|
5472
|
-
* Generated: 2026-
|
|
5685
|
+
* Generated: 2026-07-28T13:58:05Z
|
|
5473
5686
|
*
|
|
5474
5687
|
* DO NOT EDIT — regenerate with: python shared/scripts/generate-ts.py
|
|
5475
5688
|
*/
|
|
5476
5689
|
|
|
5690
|
+
/** Params for GET /categories */
|
|
5691
|
+
interface CategoriesListParams extends EdgeCacheParams {
|
|
5692
|
+
limit?: number;
|
|
5693
|
+
offset?: number;
|
|
5694
|
+
orderBy?: string;
|
|
5695
|
+
q?: string;
|
|
5696
|
+
}
|
|
5697
|
+
/** Params for GET /categories/{itemCategoryUid} */
|
|
5698
|
+
type CategoriesGetParams = EdgeCacheParams;
|
|
5699
|
+
/** Response data — fields are MINIMUM, extra fields pass through */
|
|
5700
|
+
interface CategoriesData {
|
|
5701
|
+
itemCategoryUid?: number;
|
|
5702
|
+
itemCategoryId?: string;
|
|
5703
|
+
itemCategoryDesc?: string;
|
|
5704
|
+
dateCreated?: string;
|
|
5705
|
+
dateLastModified?: string;
|
|
5706
|
+
updateCd?: number;
|
|
5707
|
+
statusCd?: number;
|
|
5708
|
+
processCd?: number;
|
|
5709
|
+
rootCategoryId?: string;
|
|
5710
|
+
labelsId?: string | null;
|
|
5711
|
+
imagesAssetsId?: string | null;
|
|
5712
|
+
roomScenesAssetsId?: string | null;
|
|
5713
|
+
brochuresAssetsId?: string | null;
|
|
5714
|
+
contractorsAssetsId?: string | null;
|
|
5715
|
+
dateLastProcessed?: string;
|
|
5716
|
+
dateLastCheckImages?: string;
|
|
5717
|
+
dateLastCheckRoomScene?: string;
|
|
5718
|
+
itemCategoryDescPc?: string | null;
|
|
5719
|
+
dateLastUpload?: string;
|
|
5720
|
+
leedAssetsId?: string | null;
|
|
5721
|
+
colorsList?: string | null;
|
|
5722
|
+
colorsCount?: number;
|
|
5723
|
+
focusCd?: number;
|
|
5724
|
+
[key: string]: unknown;
|
|
5725
|
+
}
|
|
5477
5726
|
interface BrandFolderClientSpec {
|
|
5478
5727
|
categories: {
|
|
5728
|
+
list: (params?: CategoriesListParams) => Promise<BaseResponse<CategoriesData[]>>;
|
|
5729
|
+
get: (itemCategoryUid: number, params?: CategoriesGetParams) => Promise<BaseResponse<CategoriesData>>;
|
|
5479
5730
|
focus: {
|
|
5480
5731
|
create: (data: Record<string, unknown>) => Promise<BaseResponse<Record<string, unknown>>>;
|
|
5481
5732
|
};
|
|
@@ -5540,7 +5791,7 @@ type HealthCheckDataResource$a = ReturnType<typeof createHealthCheckDataResource
|
|
|
5540
5791
|
/**
|
|
5541
5792
|
* Generated client for brand-folder service
|
|
5542
5793
|
* Source: shared/specs/brand-folder.json
|
|
5543
|
-
* Generated: 2026-
|
|
5794
|
+
* Generated: 2026-07-28T13:58:05Z
|
|
5544
5795
|
*
|
|
5545
5796
|
* DO NOT EDIT — regenerate with: python shared/scripts/generate-ts.py
|
|
5546
5797
|
*/
|
|
@@ -5557,7 +5808,7 @@ declare class BrandFolderClient extends BaseServiceClient {
|
|
|
5557
5808
|
/**
|
|
5558
5809
|
* Generated types for gregorovich service
|
|
5559
5810
|
* Source: shared/specs/gregorovich.json
|
|
5560
|
-
* Generated: 2026-
|
|
5811
|
+
* Generated: 2026-07-28T13:58:08Z
|
|
5561
5812
|
*
|
|
5562
5813
|
* DO NOT EDIT — regenerate with: python shared/scripts/generate-ts.py
|
|
5563
5814
|
*/
|
|
@@ -5642,7 +5893,7 @@ type HealthCheckDataResource$9 = ReturnType<typeof createHealthCheckDataResource
|
|
|
5642
5893
|
/**
|
|
5643
5894
|
* Generated client for gregorovich service
|
|
5644
5895
|
* Source: shared/specs/gregorovich.json
|
|
5645
|
-
* Generated: 2026-
|
|
5896
|
+
* Generated: 2026-07-28T13:58:08Z
|
|
5646
5897
|
*
|
|
5647
5898
|
* DO NOT EDIT — regenerate with: python shared/scripts/generate-ts.py
|
|
5648
5899
|
*/
|
|
@@ -5662,7 +5913,7 @@ declare class GregorovichClient extends BaseServiceClient {
|
|
|
5662
5913
|
/**
|
|
5663
5914
|
* Generated types for logistics service
|
|
5664
5915
|
* Source: shared/specs/logistics.json
|
|
5665
|
-
* Generated: 2026-
|
|
5916
|
+
* Generated: 2026-07-28T13:58:13Z
|
|
5666
5917
|
*
|
|
5667
5918
|
* DO NOT EDIT — regenerate with: python shared/scripts/generate-ts.py
|
|
5668
5919
|
*/
|
|
@@ -5687,17 +5938,17 @@ interface RtsBrandsListParams extends EdgeCacheParams {
|
|
|
5687
5938
|
search?: string;
|
|
5688
5939
|
}
|
|
5689
5940
|
/** Params for GET /rts/brands/{brandId}/machines */
|
|
5690
|
-
interface
|
|
5941
|
+
interface RtsBrandsMachinesListParams extends EdgeCacheParams {
|
|
5691
5942
|
search?: string;
|
|
5692
5943
|
}
|
|
5693
5944
|
/** Params for GET /rts/machines/{machineId}/tracks */
|
|
5694
|
-
type
|
|
5945
|
+
type RtsMachinesTracksListParams = EdgeCacheParams;
|
|
5695
5946
|
/** Params for GET /rts/search/machines */
|
|
5696
5947
|
interface RtsSearchMachinesListParams extends EdgeCacheParams {
|
|
5697
5948
|
q: string;
|
|
5698
5949
|
}
|
|
5699
5950
|
/** Params for GET /rts/track/{trackId} */
|
|
5700
|
-
type
|
|
5951
|
+
type RtsTrackListParams = EdgeCacheParams;
|
|
5701
5952
|
/** Params for GET /rts/tracks */
|
|
5702
5953
|
interface RtsTracksListParams extends EdgeCacheParams {
|
|
5703
5954
|
search?: string;
|
|
@@ -5808,17 +6059,13 @@ interface LogisticsClientSpec {
|
|
|
5808
6059
|
rts: {
|
|
5809
6060
|
brands: {
|
|
5810
6061
|
list: (params?: RtsBrandsListParams) => Promise<BaseResponse<Record<string, unknown>>>;
|
|
5811
|
-
|
|
5812
|
-
|
|
5813
|
-
list: (brandId: number, params?: RtsBrandsBrandIdMachinesListParams) => Promise<BaseResponse<Record<string, unknown>>>;
|
|
5814
|
-
};
|
|
6062
|
+
machines: {
|
|
6063
|
+
list: (brandId: number, params?: RtsBrandsMachinesListParams) => Promise<BaseResponse<Record<string, unknown>>>;
|
|
5815
6064
|
};
|
|
5816
6065
|
};
|
|
5817
6066
|
machines: {
|
|
5818
|
-
|
|
5819
|
-
|
|
5820
|
-
list: (machineId: number, params?: RtsMachinesMachineIdTracksListParams) => Promise<BaseResponse<Record<string, unknown>>>;
|
|
5821
|
-
};
|
|
6067
|
+
tracks: {
|
|
6068
|
+
list: (machineId: number, params?: RtsMachinesTracksListParams) => Promise<BaseResponse<Record<string, unknown>>>;
|
|
5822
6069
|
};
|
|
5823
6070
|
};
|
|
5824
6071
|
search: {
|
|
@@ -5827,9 +6074,7 @@ interface LogisticsClientSpec {
|
|
|
5827
6074
|
};
|
|
5828
6075
|
};
|
|
5829
6076
|
track: {
|
|
5830
|
-
trackId:
|
|
5831
|
-
list: (trackId: number, params?: RtsTrackTrackIdListParams) => Promise<BaseResponse<Record<string, unknown>>>;
|
|
5832
|
-
};
|
|
6077
|
+
list: (trackId: number, params?: RtsTrackListParams) => Promise<BaseResponse<Record<string, unknown>>>;
|
|
5833
6078
|
};
|
|
5834
6079
|
tracks: {
|
|
5835
6080
|
list: (params?: RtsTracksListParams) => Promise<BaseResponse<Record<string, unknown>>>;
|
|
@@ -5974,7 +6219,7 @@ type PingDataResource$2 = ReturnType<typeof createPingDataResource$2>;
|
|
|
5974
6219
|
/**
|
|
5975
6220
|
* Generated client for logistics service
|
|
5976
6221
|
* Source: shared/specs/logistics.json
|
|
5977
|
-
* Generated: 2026-
|
|
6222
|
+
* Generated: 2026-07-28T13:58:13Z
|
|
5978
6223
|
*
|
|
5979
6224
|
* DO NOT EDIT — regenerate with: python shared/scripts/generate-ts.py
|
|
5980
6225
|
*/
|
|
@@ -6001,7 +6246,7 @@ declare class LogisticsClient extends BaseServiceClient {
|
|
|
6001
6246
|
/**
|
|
6002
6247
|
* Generated types for p21-apis service
|
|
6003
6248
|
* Source: shared/specs/p21-apis.json
|
|
6004
|
-
* Generated: 2026-
|
|
6249
|
+
* Generated: 2026-07-28T13:58:16Z
|
|
6005
6250
|
*
|
|
6006
6251
|
* DO NOT EDIT — regenerate with: python shared/scripts/generate-ts.py
|
|
6007
6252
|
*/
|
|
@@ -6012,17 +6257,41 @@ type EntityContactsRefreshGetParams = EdgeCacheParams;
|
|
|
6012
6257
|
type EntityCustomersRefreshGetParams = EdgeCacheParams;
|
|
6013
6258
|
/** Params for GET /trans-category/{categoryUid} */
|
|
6014
6259
|
interface TransCategoryGetParams extends EdgeCacheParams {
|
|
6015
|
-
|
|
6260
|
+
categoryId?: string;
|
|
6261
|
+
}
|
|
6262
|
+
/** Params for PUT /trans-category/{categoryUid} */
|
|
6263
|
+
interface TransCategoryUpdateParams {
|
|
6264
|
+
categoryId?: string;
|
|
6265
|
+
}
|
|
6266
|
+
/** Params for DELETE /trans-category/{categoryUid} */
|
|
6267
|
+
interface TransCategoryDeleteParams {
|
|
6268
|
+
categoryId?: string;
|
|
6016
6269
|
}
|
|
6017
6270
|
/** Params for GET /trans-company/{companyUid} */
|
|
6018
6271
|
interface TransCompanyGetParams extends EdgeCacheParams {
|
|
6019
|
-
|
|
6272
|
+
companyId?: string;
|
|
6273
|
+
}
|
|
6274
|
+
/** Params for PUT /trans-company/{companyUid} */
|
|
6275
|
+
interface TransCompanyUpdateParams {
|
|
6276
|
+
companyId?: string;
|
|
6277
|
+
}
|
|
6278
|
+
/** Params for DELETE /trans-company/{companyUid} */
|
|
6279
|
+
interface TransCompanyDeleteParams {
|
|
6280
|
+
companyId?: string;
|
|
6020
6281
|
}
|
|
6021
6282
|
/** Params for GET /trans-purchase-order-receipt/{poNo} */
|
|
6022
6283
|
type TransPurchaseOrderReceiptGetParams = EdgeCacheParams;
|
|
6023
6284
|
/** Params for GET /trans-user/{usersUid} */
|
|
6024
6285
|
interface TransUserGetParams extends EdgeCacheParams {
|
|
6025
|
-
|
|
6286
|
+
userId?: string;
|
|
6287
|
+
}
|
|
6288
|
+
/** Params for PUT /trans-user/{usersUid} */
|
|
6289
|
+
interface TransUserUpdateParams {
|
|
6290
|
+
userId?: string;
|
|
6291
|
+
}
|
|
6292
|
+
/** Params for DELETE /trans-user/{usersUid} */
|
|
6293
|
+
interface TransUserDeleteParams {
|
|
6294
|
+
userId?: string;
|
|
6026
6295
|
}
|
|
6027
6296
|
/** Params for GET /trans-web-display-type/defaults */
|
|
6028
6297
|
type TransWebDisplayTypeDefaultsListParams = EdgeCacheParams;
|
|
@@ -6030,7 +6299,15 @@ type TransWebDisplayTypeDefaultsListParams = EdgeCacheParams;
|
|
|
6030
6299
|
type TransWebDisplayTypeDefinitionListParams = EdgeCacheParams;
|
|
6031
6300
|
/** Params for GET /trans-web-display-type/{webDisplayTypeUid} */
|
|
6032
6301
|
interface TransWebDisplayTypeGetParams extends EdgeCacheParams {
|
|
6033
|
-
|
|
6302
|
+
webDisplayTypeId?: string;
|
|
6303
|
+
}
|
|
6304
|
+
/** Params for PUT /trans-web-display-type/{webDisplayTypeUid} */
|
|
6305
|
+
interface TransWebDisplayTypeUpdateParams {
|
|
6306
|
+
webDisplayTypeId?: string;
|
|
6307
|
+
}
|
|
6308
|
+
/** Params for DELETE /trans-web-display-type/{webDisplayTypeUid} */
|
|
6309
|
+
interface TransWebDisplayTypeDeleteParams {
|
|
6310
|
+
webDisplayTypeId?: string;
|
|
6034
6311
|
}
|
|
6035
6312
|
interface P21ApisClientSpec {
|
|
6036
6313
|
entityContacts: {
|
|
@@ -6046,14 +6323,14 @@ interface P21ApisClientSpec {
|
|
|
6046
6323
|
transCategory: {
|
|
6047
6324
|
create: (data: Record<string, unknown>) => Promise<BaseResponse<Record<string, unknown>>>;
|
|
6048
6325
|
get: (categoryUid: number, params?: TransCategoryGetParams) => Promise<BaseResponse<Record<string, unknown>>>;
|
|
6049
|
-
update: (categoryUid: number, data: Record<string, unknown
|
|
6050
|
-
delete: (categoryUid: number) => Promise<BaseResponse<Record<string, unknown>>>;
|
|
6326
|
+
update: (categoryUid: number, data: Record<string, unknown>, params?: TransCategoryUpdateParams) => Promise<BaseResponse<Record<string, unknown>>>;
|
|
6327
|
+
delete: (categoryUid: number, params?: TransCategoryDeleteParams) => Promise<BaseResponse<Record<string, unknown>>>;
|
|
6051
6328
|
};
|
|
6052
6329
|
transCompany: {
|
|
6053
6330
|
create: (data: Record<string, unknown>) => Promise<BaseResponse<Record<string, unknown>>>;
|
|
6054
6331
|
get: (companyUid: number, params?: TransCompanyGetParams) => Promise<BaseResponse<Record<string, unknown>>>;
|
|
6055
|
-
update: (companyUid: number, data: Record<string, unknown
|
|
6056
|
-
delete: (companyUid: number) => Promise<BaseResponse<Record<string, unknown>>>;
|
|
6332
|
+
update: (companyUid: number, data: Record<string, unknown>, params?: TransCompanyUpdateParams) => Promise<BaseResponse<Record<string, unknown>>>;
|
|
6333
|
+
delete: (companyUid: number, params?: TransCompanyDeleteParams) => Promise<BaseResponse<Record<string, unknown>>>;
|
|
6057
6334
|
};
|
|
6058
6335
|
transPurchaseOrderReceipt: {
|
|
6059
6336
|
get: (poNo: string, params?: TransPurchaseOrderReceiptGetParams) => Promise<BaseResponse<Record<string, unknown>>>;
|
|
@@ -6062,14 +6339,14 @@ interface P21ApisClientSpec {
|
|
|
6062
6339
|
transUser: {
|
|
6063
6340
|
create: (data: Record<string, unknown>) => Promise<BaseResponse<Record<string, unknown>>>;
|
|
6064
6341
|
get: (usersUid: number, params?: TransUserGetParams) => Promise<BaseResponse<Record<string, unknown>>>;
|
|
6065
|
-
update: (usersUid: number, data: Record<string, unknown
|
|
6066
|
-
delete: (usersUid: number) => Promise<BaseResponse<Record<string, unknown>>>;
|
|
6342
|
+
update: (usersUid: number, data: Record<string, unknown>, params?: TransUserUpdateParams) => Promise<BaseResponse<Record<string, unknown>>>;
|
|
6343
|
+
delete: (usersUid: number, params?: TransUserDeleteParams) => Promise<BaseResponse<Record<string, unknown>>>;
|
|
6067
6344
|
};
|
|
6068
6345
|
transWebDisplayType: {
|
|
6069
6346
|
create: (data: Record<string, unknown>) => Promise<BaseResponse<Record<string, unknown>>>;
|
|
6070
6347
|
get: (webDisplayTypeUid: number, params?: TransWebDisplayTypeGetParams) => Promise<BaseResponse<Record<string, unknown>>>;
|
|
6071
|
-
update: (webDisplayTypeUid: number, data: Record<string, unknown
|
|
6072
|
-
delete: (webDisplayTypeUid: number) => Promise<BaseResponse<Record<string, unknown>>>;
|
|
6348
|
+
update: (webDisplayTypeUid: number, data: Record<string, unknown>, params?: TransWebDisplayTypeUpdateParams) => Promise<BaseResponse<Record<string, unknown>>>;
|
|
6349
|
+
delete: (webDisplayTypeUid: number, params?: TransWebDisplayTypeDeleteParams) => Promise<BaseResponse<Record<string, unknown>>>;
|
|
6073
6350
|
defaults: {
|
|
6074
6351
|
list: (params?: TransWebDisplayTypeDefaultsListParams) => Promise<BaseResponse<Record<string, unknown>>>;
|
|
6075
6352
|
};
|
|
@@ -6123,7 +6400,7 @@ type HealthCheckDataResource$7 = ReturnType<typeof createHealthCheckDataResource
|
|
|
6123
6400
|
/**
|
|
6124
6401
|
* Generated client for p21-apis service
|
|
6125
6402
|
* Source: shared/specs/p21-apis.json
|
|
6126
|
-
* Generated: 2026-
|
|
6403
|
+
* Generated: 2026-07-28T13:58:16Z
|
|
6127
6404
|
*
|
|
6128
6405
|
* DO NOT EDIT — regenerate with: python shared/scripts/generate-ts.py
|
|
6129
6406
|
*/
|
|
@@ -6152,7 +6429,7 @@ declare class P21ApisClient extends BaseServiceClient {
|
|
|
6152
6429
|
/**
|
|
6153
6430
|
* Generated types for p21-core service
|
|
6154
6431
|
* Source: shared/specs/p21-core.json
|
|
6155
|
-
* Generated: 2026-
|
|
6432
|
+
* Generated: 2026-07-28T13:58:17Z
|
|
6156
6433
|
*
|
|
6157
6434
|
* DO NOT EDIT — regenerate with: python shared/scripts/generate-ts.py
|
|
6158
6435
|
*/
|
|
@@ -6164,6 +6441,7 @@ interface AddressListParams extends EdgeCacheParams {
|
|
|
6164
6441
|
enabledCd?: number;
|
|
6165
6442
|
limit?: number;
|
|
6166
6443
|
offset?: number;
|
|
6444
|
+
orderBy?: string;
|
|
6167
6445
|
statusCd?: number;
|
|
6168
6446
|
}
|
|
6169
6447
|
/** Params for GET /address/refresh */
|
|
@@ -6174,6 +6452,7 @@ type AddressGetParams = EdgeCacheParams;
|
|
|
6174
6452
|
interface AddressCorpAddressListParams extends EdgeCacheParams {
|
|
6175
6453
|
limit?: number;
|
|
6176
6454
|
offset?: number;
|
|
6455
|
+
orderBy?: string;
|
|
6177
6456
|
q?: string;
|
|
6178
6457
|
}
|
|
6179
6458
|
/** Params for GET /address/{id}/default */
|
|
@@ -6199,8 +6478,11 @@ interface CodeP21ListParams extends EdgeCacheParams {
|
|
|
6199
6478
|
codeNoList?: string;
|
|
6200
6479
|
limit?: number;
|
|
6201
6480
|
offset?: number;
|
|
6202
|
-
|
|
6481
|
+
orderBy?: string;
|
|
6482
|
+
q?: string;
|
|
6203
6483
|
}
|
|
6484
|
+
/** Params for GET /code-p21/{codeUid} */
|
|
6485
|
+
type CodeP21GetParams = EdgeCacheParams;
|
|
6204
6486
|
/** Params for GET /company */
|
|
6205
6487
|
interface CompanyListParams extends EdgeCacheParams {
|
|
6206
6488
|
companyId?: string;
|
|
@@ -6230,6 +6512,7 @@ interface LocationGetParams extends EdgeCacheParams {
|
|
|
6230
6512
|
interface PaymentTypesListParams extends EdgeCacheParams {
|
|
6231
6513
|
limit?: number;
|
|
6232
6514
|
offset?: number;
|
|
6515
|
+
orderBy?: string;
|
|
6233
6516
|
}
|
|
6234
6517
|
/** Response data — fields are MINIMUM, extra fields pass through */
|
|
6235
6518
|
interface CashDrawerData {
|
|
@@ -6335,6 +6618,7 @@ interface P21CoreClientSpec {
|
|
|
6335
6618
|
};
|
|
6336
6619
|
codeP21: {
|
|
6337
6620
|
list: (params?: CodeP21ListParams) => Promise<BaseResponse<CodeP21Data[]>>;
|
|
6621
|
+
get: (codeUid: number, params?: CodeP21GetParams) => Promise<BaseResponse<CodeP21Data>>;
|
|
6338
6622
|
};
|
|
6339
6623
|
company: {
|
|
6340
6624
|
list: (params?: CompanyListParams) => Promise<BaseResponse<CompanyData[]>>;
|
|
@@ -6402,7 +6686,7 @@ type PingDataResource$1 = ReturnType<typeof createPingDataResource$1>;
|
|
|
6402
6686
|
/**
|
|
6403
6687
|
* Generated client for p21-core service
|
|
6404
6688
|
* Source: shared/specs/p21-core.json
|
|
6405
|
-
* Generated: 2026-
|
|
6689
|
+
* Generated: 2026-07-28T13:58:17Z
|
|
6406
6690
|
*
|
|
6407
6691
|
* DO NOT EDIT — regenerate with: python shared/scripts/generate-ts.py
|
|
6408
6692
|
*/
|
|
@@ -6431,7 +6715,7 @@ declare class P21CoreClient extends BaseServiceClient {
|
|
|
6431
6715
|
/**
|
|
6432
6716
|
* Generated types for p21-sism service
|
|
6433
6717
|
* Source: shared/specs/p21-sism.json
|
|
6434
|
-
* Generated: 2026-
|
|
6718
|
+
* Generated: 2026-07-28T13:58:19Z
|
|
6435
6719
|
*
|
|
6436
6720
|
* DO NOT EDIT — regenerate with: python shared/scripts/generate-ts.py
|
|
6437
6721
|
*/
|
|
@@ -6598,7 +6882,7 @@ type HealthCheckDataResource$5 = ReturnType<typeof createHealthCheckDataResource
|
|
|
6598
6882
|
/**
|
|
6599
6883
|
* Generated client for p21-sism service
|
|
6600
6884
|
* Source: shared/specs/p21-sism.json
|
|
6601
|
-
* Generated: 2026-
|
|
6885
|
+
* Generated: 2026-07-28T13:58:19Z
|
|
6602
6886
|
*
|
|
6603
6887
|
* DO NOT EDIT — regenerate with: python shared/scripts/generate-ts.py
|
|
6604
6888
|
*/
|
|
@@ -6617,7 +6901,7 @@ declare class P21SismClient extends BaseServiceClient {
|
|
|
6617
6901
|
/**
|
|
6618
6902
|
* Generated types for shipping service
|
|
6619
6903
|
* Source: shared/specs/shipping.json
|
|
6620
|
-
* Generated: 2026-
|
|
6904
|
+
* Generated: 2026-07-28T13:58:21Z
|
|
6621
6905
|
*
|
|
6622
6906
|
* DO NOT EDIT — regenerate with: python shared/scripts/generate-ts.py
|
|
6623
6907
|
*/
|
|
@@ -6692,7 +6976,7 @@ type HealthCheckDataResource$4 = ReturnType<typeof createHealthCheckDataResource
|
|
|
6692
6976
|
/**
|
|
6693
6977
|
* Generated client for shipping service
|
|
6694
6978
|
* Source: shared/specs/shipping.json
|
|
6695
|
-
* Generated: 2026-
|
|
6979
|
+
* Generated: 2026-07-28T13:58:21Z
|
|
6696
6980
|
*
|
|
6697
6981
|
* DO NOT EDIT — regenerate with: python shared/scripts/generate-ts.py
|
|
6698
6982
|
*/
|
|
@@ -6708,7 +6992,7 @@ declare class ShippingClient extends BaseServiceClient {
|
|
|
6708
6992
|
/**
|
|
6709
6993
|
* Generated types for slack service
|
|
6710
6994
|
* Source: shared/specs/slack.json
|
|
6711
|
-
* Generated: 2026-
|
|
6995
|
+
* Generated: 2026-07-28T13:58:22Z
|
|
6712
6996
|
*
|
|
6713
6997
|
* DO NOT EDIT — regenerate with: python shared/scripts/generate-ts.py
|
|
6714
6998
|
*/
|
|
@@ -6800,7 +7084,7 @@ type HealthCheckDataResource$3 = ReturnType<typeof createHealthCheckDataResource
|
|
|
6800
7084
|
/**
|
|
6801
7085
|
* Generated client for slack service
|
|
6802
7086
|
* Source: shared/specs/slack.json
|
|
6803
|
-
* Generated: 2026-
|
|
7087
|
+
* Generated: 2026-07-28T13:58:22Z
|
|
6804
7088
|
*
|
|
6805
7089
|
* DO NOT EDIT — regenerate with: python shared/scripts/generate-ts.py
|
|
6806
7090
|
*/
|
|
@@ -6816,7 +7100,7 @@ declare class SlackClient extends BaseServiceClient {
|
|
|
6816
7100
|
/**
|
|
6817
7101
|
* Generated types for smarty-streets service
|
|
6818
7102
|
* Source: shared/specs/smarty-streets.json
|
|
6819
|
-
* Generated: 2026-
|
|
7103
|
+
* Generated: 2026-07-28T13:58:23Z
|
|
6820
7104
|
*
|
|
6821
7105
|
* DO NOT EDIT — regenerate with: python shared/scripts/generate-ts.py
|
|
6822
7106
|
*/
|
|
@@ -6987,7 +7271,7 @@ type PingDataResource = ReturnType<typeof createPingDataResource>;
|
|
|
6987
7271
|
/**
|
|
6988
7272
|
* Generated client for smarty-streets service
|
|
6989
7273
|
* Source: shared/specs/smarty-streets.json
|
|
6990
|
-
* Generated: 2026-
|
|
7274
|
+
* Generated: 2026-07-28T13:58:23Z
|
|
6991
7275
|
*
|
|
6992
7276
|
* DO NOT EDIT — regenerate with: python shared/scripts/generate-ts.py
|
|
6993
7277
|
*/
|
|
@@ -7005,7 +7289,7 @@ declare class SmartyStreetsClient extends BaseServiceClient {
|
|
|
7005
7289
|
/**
|
|
7006
7290
|
* Generated types for ups service
|
|
7007
7291
|
* Source: shared/specs/ups.json
|
|
7008
|
-
* Generated: 2026-
|
|
7292
|
+
* Generated: 2026-07-28T13:58:24Z
|
|
7009
7293
|
*
|
|
7010
7294
|
* DO NOT EDIT — regenerate with: python shared/scripts/generate-ts.py
|
|
7011
7295
|
*/
|
|
@@ -7122,7 +7406,7 @@ type HealthCheckDataResource$1 = ReturnType<typeof createHealthCheckDataResource
|
|
|
7122
7406
|
/**
|
|
7123
7407
|
* Generated client for ups service
|
|
7124
7408
|
* Source: shared/specs/ups.json
|
|
7125
|
-
* Generated: 2026-
|
|
7409
|
+
* Generated: 2026-07-28T13:58:24Z
|
|
7126
7410
|
*
|
|
7127
7411
|
* DO NOT EDIT — regenerate with: python shared/scripts/generate-ts.py
|
|
7128
7412
|
*/
|
|
@@ -7138,29 +7422,29 @@ declare class UPSClient extends BaseServiceClient {
|
|
|
7138
7422
|
/**
|
|
7139
7423
|
* Generated types for basecamp2 service
|
|
7140
7424
|
* Source: shared/specs/basecamp2.json
|
|
7141
|
-
* Generated: 2026-
|
|
7425
|
+
* Generated: 2026-07-28T13:58:04Z
|
|
7142
7426
|
*
|
|
7143
7427
|
* DO NOT EDIT — regenerate with: python shared/scripts/generate-ts.py
|
|
7144
7428
|
*/
|
|
7145
7429
|
|
|
7146
7430
|
/** Params for GET /comments */
|
|
7147
7431
|
interface CommentsListParams extends EdgeCacheParams {
|
|
7148
|
-
|
|
7432
|
+
creatorId?: number;
|
|
7149
7433
|
limit?: number;
|
|
7150
7434
|
offset?: number;
|
|
7151
|
-
|
|
7152
|
-
|
|
7435
|
+
orderBy?: string;
|
|
7436
|
+
todosId?: number;
|
|
7153
7437
|
}
|
|
7154
7438
|
/** Params for GET /comments/{id} */
|
|
7155
7439
|
type CommentsGetParams = EdgeCacheParams;
|
|
7156
7440
|
/** Params for GET /events */
|
|
7157
7441
|
interface EventsListParams extends EdgeCacheParams {
|
|
7158
|
-
|
|
7442
|
+
eventTypeCd?: number;
|
|
7159
7443
|
id?: number;
|
|
7160
7444
|
limit?: number;
|
|
7161
7445
|
offset?: number;
|
|
7162
|
-
|
|
7163
|
-
|
|
7446
|
+
orderBy?: string;
|
|
7447
|
+
peopleId?: number;
|
|
7164
7448
|
}
|
|
7165
7449
|
/** Params for GET /metrics */
|
|
7166
7450
|
interface MetricsListParams extends EdgeCacheParams {
|
|
@@ -7198,27 +7482,27 @@ interface PeopleMetricsListParams extends EdgeCacheParams {
|
|
|
7198
7482
|
}
|
|
7199
7483
|
/** Params for GET /people/{id}/todos */
|
|
7200
7484
|
interface PeopleTodosListParams extends EdgeCacheParams {
|
|
7201
|
-
|
|
7202
|
-
|
|
7485
|
+
completedFlag?: string;
|
|
7486
|
+
dueAt?: string;
|
|
7203
7487
|
limit?: number;
|
|
7204
7488
|
offset?: number;
|
|
7205
|
-
|
|
7206
|
-
|
|
7489
|
+
orderBy?: string;
|
|
7490
|
+
projectsId?: number;
|
|
7207
7491
|
}
|
|
7208
7492
|
/** Params for GET /people/{personId}/projects/{projectId}/todos */
|
|
7209
7493
|
interface PeopleProjectsTodosListParams extends EdgeCacheParams {
|
|
7210
|
-
|
|
7494
|
+
completedFlag?: string;
|
|
7211
7495
|
limit?: number;
|
|
7212
7496
|
offset?: number;
|
|
7213
|
-
|
|
7497
|
+
orderBy?: string;
|
|
7214
7498
|
}
|
|
7215
7499
|
/** Params for GET /projects */
|
|
7216
7500
|
interface ProjectsListParams extends EdgeCacheParams {
|
|
7217
|
-
|
|
7501
|
+
archivedFlag?: string;
|
|
7218
7502
|
limit?: number;
|
|
7219
7503
|
offset?: number;
|
|
7220
|
-
|
|
7221
|
-
|
|
7504
|
+
orderBy?: string;
|
|
7505
|
+
trashedFlag?: string;
|
|
7222
7506
|
}
|
|
7223
7507
|
/** Params for GET /projects/{id} */
|
|
7224
7508
|
type ProjectsGetParams = EdgeCacheParams;
|
|
@@ -7234,55 +7518,55 @@ interface ProjectsMetricsListParams extends EdgeCacheParams {
|
|
|
7234
7518
|
}
|
|
7235
7519
|
/** Params for GET /projects/{id}/todolists */
|
|
7236
7520
|
interface ProjectsTodolistsListParams extends EdgeCacheParams {
|
|
7237
|
-
|
|
7521
|
+
completedFlag?: string;
|
|
7238
7522
|
limit?: number;
|
|
7239
7523
|
offset?: number;
|
|
7240
|
-
|
|
7524
|
+
orderBy?: string;
|
|
7241
7525
|
}
|
|
7242
7526
|
/** Params for GET /projects/{id}/todos */
|
|
7243
7527
|
interface ProjectsTodosListParams extends EdgeCacheParams {
|
|
7244
|
-
|
|
7245
|
-
|
|
7528
|
+
assigneeId?: number;
|
|
7529
|
+
completedFlag?: string;
|
|
7246
7530
|
limit?: number;
|
|
7247
7531
|
offset?: number;
|
|
7248
|
-
|
|
7532
|
+
orderBy?: string;
|
|
7249
7533
|
}
|
|
7250
7534
|
/** Params for GET /projects/{projectId}/todolists/{todolistId}/todos */
|
|
7251
7535
|
interface ProjectsTodolistsTodosListParams extends EdgeCacheParams {
|
|
7252
|
-
|
|
7253
|
-
|
|
7536
|
+
assigneeId?: number;
|
|
7537
|
+
completedFlag?: string;
|
|
7254
7538
|
limit?: number;
|
|
7255
7539
|
offset?: number;
|
|
7256
|
-
|
|
7540
|
+
orderBy?: string;
|
|
7257
7541
|
}
|
|
7258
7542
|
/** Params for GET /todolists */
|
|
7259
7543
|
interface TodolistsListParams extends EdgeCacheParams {
|
|
7260
|
-
|
|
7261
|
-
|
|
7544
|
+
assigneeId?: number;
|
|
7545
|
+
completedFlag?: string;
|
|
7262
7546
|
limit?: number;
|
|
7263
7547
|
offset?: number;
|
|
7264
|
-
|
|
7265
|
-
|
|
7548
|
+
orderBy?: string;
|
|
7549
|
+
projectsId?: number;
|
|
7266
7550
|
}
|
|
7267
7551
|
/** Params for GET /todolists/{id} */
|
|
7268
7552
|
type TodolistsGetParams = EdgeCacheParams;
|
|
7269
7553
|
/** Params for GET /todos */
|
|
7270
7554
|
interface TodosListParams extends EdgeCacheParams {
|
|
7271
|
-
|
|
7272
|
-
|
|
7273
|
-
|
|
7555
|
+
assigneeId?: number;
|
|
7556
|
+
completedFlag?: string;
|
|
7557
|
+
dueAt?: string;
|
|
7274
7558
|
limit?: number;
|
|
7275
7559
|
offset?: number;
|
|
7276
|
-
|
|
7277
|
-
|
|
7278
|
-
|
|
7560
|
+
orderBy?: string;
|
|
7561
|
+
projectsId?: number;
|
|
7562
|
+
todolistId?: number;
|
|
7279
7563
|
}
|
|
7280
7564
|
/** Params for GET /todos-summary */
|
|
7281
7565
|
interface TodosSummaryListParams extends EdgeCacheParams {
|
|
7282
|
-
|
|
7566
|
+
akashaCd?: number;
|
|
7283
7567
|
limit?: number;
|
|
7284
7568
|
offset?: number;
|
|
7285
|
-
|
|
7569
|
+
processCd?: number;
|
|
7286
7570
|
}
|
|
7287
7571
|
/** Params for GET /todos-summary/{id} */
|
|
7288
7572
|
type TodosSummaryGetParams = EdgeCacheParams;
|
|
@@ -7292,15 +7576,15 @@ type TodosGetParams = EdgeCacheParams;
|
|
|
7292
7576
|
interface TodosCommentsListParams extends EdgeCacheParams {
|
|
7293
7577
|
limit?: number;
|
|
7294
7578
|
offset?: number;
|
|
7295
|
-
|
|
7579
|
+
orderBy?: string;
|
|
7296
7580
|
}
|
|
7297
7581
|
/** Params for GET /todos/{id}/events */
|
|
7298
7582
|
interface TodosEventsListParams extends EdgeCacheParams {
|
|
7299
|
-
|
|
7583
|
+
eventTypeCd?: number;
|
|
7300
7584
|
limit?: number;
|
|
7301
7585
|
offset?: number;
|
|
7302
|
-
|
|
7303
|
-
|
|
7586
|
+
orderBy?: string;
|
|
7587
|
+
peopleId?: number;
|
|
7304
7588
|
}
|
|
7305
7589
|
/** Params for GET /todos/{id}/events/{eventNum} */
|
|
7306
7590
|
type TodosEventsGetParams = EdgeCacheParams;
|
|
@@ -7310,8 +7594,8 @@ type TodosMetricsListParams = EdgeCacheParams;
|
|
|
7310
7594
|
interface TodosSessionsListParams extends EdgeCacheParams {
|
|
7311
7595
|
limit?: number;
|
|
7312
7596
|
offset?: number;
|
|
7313
|
-
|
|
7314
|
-
|
|
7597
|
+
orderBy?: string;
|
|
7598
|
+
sessionStatusCd?: number;
|
|
7315
7599
|
}
|
|
7316
7600
|
/** Params for GET /todos/{id}/sessions/{sessionId} */
|
|
7317
7601
|
type TodosSessionsGetParams = EdgeCacheParams;
|
|
@@ -7639,7 +7923,7 @@ type HealthCheckDataResource = ReturnType<typeof createHealthCheckDataResource>;
|
|
|
7639
7923
|
/**
|
|
7640
7924
|
* Generated client for basecamp2 service
|
|
7641
7925
|
* Source: shared/specs/basecamp2.json
|
|
7642
|
-
* Generated: 2026-
|
|
7926
|
+
* Generated: 2026-07-28T13:58:04Z
|
|
7643
7927
|
*
|
|
7644
7928
|
* DO NOT EDIT — regenerate with: python shared/scripts/generate-ts.py
|
|
7645
7929
|
*/
|