@simpleapps-com/augur-api 2026.6.3 → 2026.6.5
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-Bkt57JO1.d.mts → client-DeDnTdXi.d.mts} +146 -6
- package/dist/{client-Bkt57JO1.d.ts → client-DeDnTdXi.d.ts} +146 -6
- package/dist/index.d.mts +3 -3
- package/dist/index.d.ts +3 -3
- package/dist/index.js +352 -3
- package/dist/index.js.map +1 -1
- package/dist/index.mjs +352 -3
- 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
|
@@ -1961,7 +1961,7 @@ declare class OpenSearchClient extends BaseServiceClient {
|
|
|
1961
1961
|
/**
|
|
1962
1962
|
* Generated types for items service
|
|
1963
1963
|
* Source: shared/specs/items.json
|
|
1964
|
-
* Generated: 2026-06-
|
|
1964
|
+
* Generated: 2026-06-15T18:49:50Z
|
|
1965
1965
|
*
|
|
1966
1966
|
* DO NOT EDIT — regenerate with: python shared/scripts/generate-ts.py
|
|
1967
1967
|
*/
|
|
@@ -2257,9 +2257,18 @@ interface ItemUomListParams extends EdgeCacheParams {
|
|
|
2257
2257
|
/** Params for GET /item-uom/{itemUomUid} */
|
|
2258
2258
|
type ItemUomGetParams = EdgeCacheParams;
|
|
2259
2259
|
/** Params for GET /item-wishlist/{usersId} */
|
|
2260
|
-
|
|
2260
|
+
interface ItemWishlistGetParams extends EdgeCacheParams {
|
|
2261
|
+
limit?: number;
|
|
2262
|
+
offset?: number;
|
|
2263
|
+
orderBy?: string;
|
|
2264
|
+
statusCd?: number;
|
|
2265
|
+
}
|
|
2261
2266
|
/** Params for GET /item-wishlist/{usersId}/hdr/{itemWishlistHdrUid} */
|
|
2262
|
-
|
|
2267
|
+
interface ItemWishlistHdrGetParams extends EdgeCacheParams {
|
|
2268
|
+
limit?: number;
|
|
2269
|
+
offset?: number;
|
|
2270
|
+
statusCd?: number;
|
|
2271
|
+
}
|
|
2263
2272
|
/** Params for GET /locations/{locationId}/bins */
|
|
2264
2273
|
interface LocationsBinsListParams extends EdgeCacheParams {
|
|
2265
2274
|
bin?: string;
|
|
@@ -2847,7 +2856,7 @@ type WhoamiDataResource$1 = ReturnType<typeof createWhoamiDataResource$1>;
|
|
|
2847
2856
|
/**
|
|
2848
2857
|
* Generated client for items service
|
|
2849
2858
|
* Source: shared/specs/items.json
|
|
2850
|
-
* Generated: 2026-06-
|
|
2859
|
+
* Generated: 2026-06-15T18:49:50Z
|
|
2851
2860
|
*
|
|
2852
2861
|
* DO NOT EDIT — regenerate with: python shared/scripts/generate-ts.py
|
|
2853
2862
|
*/
|
|
@@ -4957,11 +4966,45 @@ declare class AgrInfoClient extends BaseServiceClient {
|
|
|
4957
4966
|
/**
|
|
4958
4967
|
* Generated types for agr-int service
|
|
4959
4968
|
* Source: shared/specs/agr-int.json
|
|
4960
|
-
* Generated: 2026-06-
|
|
4969
|
+
* Generated: 2026-06-14T22:37:15Z
|
|
4961
4970
|
*
|
|
4962
4971
|
* DO NOT EDIT — regenerate with: python shared/scripts/generate-ts.py
|
|
4963
4972
|
*/
|
|
4964
4973
|
|
|
4974
|
+
/** Params for GET /bundles */
|
|
4975
|
+
interface BundlesListParams extends EdgeCacheParams {
|
|
4976
|
+
bundleId?: string;
|
|
4977
|
+
bundleName?: string;
|
|
4978
|
+
limit?: number;
|
|
4979
|
+
offset?: number;
|
|
4980
|
+
orderBy?: string;
|
|
4981
|
+
statusCd?: number;
|
|
4982
|
+
systemFlag?: string;
|
|
4983
|
+
}
|
|
4984
|
+
/** Params for GET /bundles/{bundlesUid} */
|
|
4985
|
+
type BundlesGetParams = EdgeCacheParams;
|
|
4986
|
+
/** Params for GET /bundles/{bundlesUid}/resources */
|
|
4987
|
+
interface BundlesResourcesListParams extends EdgeCacheParams {
|
|
4988
|
+
limit?: number;
|
|
4989
|
+
offset?: number;
|
|
4990
|
+
orderBy?: string;
|
|
4991
|
+
statusCd?: number;
|
|
4992
|
+
}
|
|
4993
|
+
/** Params for GET /bundles/{bundlesUid}/resources/{bundlesXResourcesUid} */
|
|
4994
|
+
type BundlesResourcesGetParams = EdgeCacheParams;
|
|
4995
|
+
/** Params for GET /resources */
|
|
4996
|
+
interface ResourcesListParams extends EdgeCacheParams {
|
|
4997
|
+
limit?: number;
|
|
4998
|
+
offset?: number;
|
|
4999
|
+
orderBy?: string;
|
|
5000
|
+
resourceId?: string;
|
|
5001
|
+
resourceName?: string;
|
|
5002
|
+
resourcePath?: string;
|
|
5003
|
+
resourceType?: string;
|
|
5004
|
+
statusCd?: number;
|
|
5005
|
+
}
|
|
5006
|
+
/** Params for GET /resources/{resourcesUid} */
|
|
5007
|
+
type ResourcesGetParams = EdgeCacheParams;
|
|
4965
5008
|
/** Params for GET /roles */
|
|
4966
5009
|
interface RolesListParams extends EdgeCacheParams {
|
|
4967
5010
|
limit?: number;
|
|
@@ -4974,6 +5017,15 @@ interface RolesListParams extends EdgeCacheParams {
|
|
|
4974
5017
|
}
|
|
4975
5018
|
/** Params for GET /roles/{rolesUid} */
|
|
4976
5019
|
type RolesGetParams = EdgeCacheParams;
|
|
5020
|
+
/** Params for GET /roles/{rolesUid}/bundles */
|
|
5021
|
+
interface RolesBundlesListParams extends EdgeCacheParams {
|
|
5022
|
+
limit?: number;
|
|
5023
|
+
offset?: number;
|
|
5024
|
+
orderBy?: string;
|
|
5025
|
+
statusCd?: number;
|
|
5026
|
+
}
|
|
5027
|
+
/** Params for GET /roles/{rolesUid}/bundles/{rolesXBundlesUid} */
|
|
5028
|
+
type RolesBundlesGetParams = EdgeCacheParams;
|
|
4977
5029
|
/** Params for GET /users */
|
|
4978
5030
|
interface UsersListParams extends EdgeCacheParams {
|
|
4979
5031
|
email?: string;
|
|
@@ -4996,6 +5048,50 @@ interface UsersRolesListParams extends EdgeCacheParams {
|
|
|
4996
5048
|
/** Params for GET /users/{usersUid}/roles/{usersXRolesUid} */
|
|
4997
5049
|
type UsersRolesGetParams = EdgeCacheParams;
|
|
4998
5050
|
/** Response data — fields are MINIMUM, extra fields pass through */
|
|
5051
|
+
interface BundlesData {
|
|
5052
|
+
bundlesUid?: number;
|
|
5053
|
+
bundleId?: string;
|
|
5054
|
+
bundleName?: string;
|
|
5055
|
+
description?: string | null;
|
|
5056
|
+
systemFlag?: string;
|
|
5057
|
+
dateCreated?: string;
|
|
5058
|
+
dateLastModified?: string;
|
|
5059
|
+
updateCd?: number;
|
|
5060
|
+
statusCd?: number;
|
|
5061
|
+
processCd?: number;
|
|
5062
|
+
[key: string]: unknown;
|
|
5063
|
+
}
|
|
5064
|
+
/** Response data — fields are MINIMUM, extra fields pass through */
|
|
5065
|
+
interface BundlesResourcesData {
|
|
5066
|
+
bundlesXResourcesUid?: number;
|
|
5067
|
+
bundlesUid?: number;
|
|
5068
|
+
resourcesUid?: number;
|
|
5069
|
+
readCd?: number;
|
|
5070
|
+
writeCd?: number;
|
|
5071
|
+
executeCd?: number;
|
|
5072
|
+
dateCreated?: string;
|
|
5073
|
+
dateLastModified?: string;
|
|
5074
|
+
updateCd?: number;
|
|
5075
|
+
statusCd?: number;
|
|
5076
|
+
processCd?: number;
|
|
5077
|
+
[key: string]: unknown;
|
|
5078
|
+
}
|
|
5079
|
+
/** Response data — fields are MINIMUM, extra fields pass through */
|
|
5080
|
+
interface ResourcesData {
|
|
5081
|
+
resourcesUid?: number;
|
|
5082
|
+
resourceId?: string;
|
|
5083
|
+
resourceName?: string;
|
|
5084
|
+
resourceType?: string;
|
|
5085
|
+
resourcePath?: string;
|
|
5086
|
+
description?: string | null;
|
|
5087
|
+
dateCreated?: string;
|
|
5088
|
+
dateLastModified?: string;
|
|
5089
|
+
updateCd?: number;
|
|
5090
|
+
statusCd?: number;
|
|
5091
|
+
processCd?: number;
|
|
5092
|
+
[key: string]: unknown;
|
|
5093
|
+
}
|
|
5094
|
+
/** Response data — fields are MINIMUM, extra fields pass through */
|
|
4999
5095
|
interface RolesData {
|
|
5000
5096
|
rolesUid?: number;
|
|
5001
5097
|
roleId?: string;
|
|
@@ -5010,6 +5106,18 @@ interface RolesData {
|
|
|
5010
5106
|
[key: string]: unknown;
|
|
5011
5107
|
}
|
|
5012
5108
|
/** Response data — fields are MINIMUM, extra fields pass through */
|
|
5109
|
+
interface RolesBundlesData {
|
|
5110
|
+
rolesXBundlesUid?: number;
|
|
5111
|
+
rolesUid?: number;
|
|
5112
|
+
bundlesUid?: number;
|
|
5113
|
+
dateCreated?: string;
|
|
5114
|
+
dateLastModified?: string;
|
|
5115
|
+
updateCd?: number;
|
|
5116
|
+
statusCd?: number;
|
|
5117
|
+
processCd?: number;
|
|
5118
|
+
[key: string]: unknown;
|
|
5119
|
+
}
|
|
5120
|
+
/** Response data — fields are MINIMUM, extra fields pass through */
|
|
5013
5121
|
interface UsersData {
|
|
5014
5122
|
usersUid?: number;
|
|
5015
5123
|
username?: string;
|
|
@@ -5054,12 +5162,40 @@ interface UsersRolesData {
|
|
|
5054
5162
|
[key: string]: unknown;
|
|
5055
5163
|
}
|
|
5056
5164
|
interface AgrIntClientSpec {
|
|
5165
|
+
bundles: {
|
|
5166
|
+
list: (params?: BundlesListParams) => Promise<BaseResponse<BundlesData[]>>;
|
|
5167
|
+
create: (data: Record<string, unknown>) => Promise<BaseResponse<BundlesData>>;
|
|
5168
|
+
get: (bundlesUid: number, params?: BundlesGetParams) => Promise<BaseResponse<BundlesData>>;
|
|
5169
|
+
update: (bundlesUid: number, data: Record<string, unknown>) => Promise<BaseResponse<BundlesData>>;
|
|
5170
|
+
delete: (bundlesUid: number) => Promise<BaseResponse<BundlesData>>;
|
|
5171
|
+
resources: {
|
|
5172
|
+
list: (bundlesUid: number, params?: BundlesResourcesListParams) => Promise<BaseResponse<BundlesResourcesData[]>>;
|
|
5173
|
+
create: (bundlesUid: number, data: Record<string, unknown>) => Promise<BaseResponse<BundlesResourcesData>>;
|
|
5174
|
+
get: (bundlesUid: number, bundlesXResourcesUid: number, params?: BundlesResourcesGetParams) => Promise<BaseResponse<BundlesResourcesData>>;
|
|
5175
|
+
update: (bundlesUid: number, bundlesXResourcesUid: number, data: Record<string, unknown>) => Promise<BaseResponse<BundlesResourcesData>>;
|
|
5176
|
+
delete: (bundlesUid: number, bundlesXResourcesUid: number) => Promise<BaseResponse<BundlesResourcesData>>;
|
|
5177
|
+
};
|
|
5178
|
+
};
|
|
5179
|
+
resources: {
|
|
5180
|
+
list: (params?: ResourcesListParams) => Promise<BaseResponse<ResourcesData[]>>;
|
|
5181
|
+
create: (data: Record<string, unknown>) => Promise<BaseResponse<ResourcesData>>;
|
|
5182
|
+
get: (resourcesUid: number, params?: ResourcesGetParams) => Promise<BaseResponse<ResourcesData>>;
|
|
5183
|
+
update: (resourcesUid: number, data: Record<string, unknown>) => Promise<BaseResponse<ResourcesData>>;
|
|
5184
|
+
delete: (resourcesUid: number) => Promise<BaseResponse<ResourcesData>>;
|
|
5185
|
+
};
|
|
5057
5186
|
roles: {
|
|
5058
5187
|
list: (params?: RolesListParams) => Promise<BaseResponse<RolesData[]>>;
|
|
5059
5188
|
create: (data: Record<string, unknown>) => Promise<BaseResponse<RolesData>>;
|
|
5060
5189
|
get: (rolesUid: number, params?: RolesGetParams) => Promise<BaseResponse<RolesData>>;
|
|
5061
5190
|
update: (rolesUid: number, data: Record<string, unknown>) => Promise<BaseResponse<RolesData>>;
|
|
5062
5191
|
delete: (rolesUid: number) => Promise<BaseResponse<RolesData>>;
|
|
5192
|
+
bundles: {
|
|
5193
|
+
list: (rolesUid: number, params?: RolesBundlesListParams) => Promise<BaseResponse<RolesBundlesData[]>>;
|
|
5194
|
+
create: (rolesUid: number, data: Record<string, unknown>) => Promise<BaseResponse<RolesBundlesData>>;
|
|
5195
|
+
get: (rolesUid: number, rolesXBundlesUid: number, params?: RolesBundlesGetParams) => Promise<BaseResponse<RolesBundlesData>>;
|
|
5196
|
+
update: (rolesUid: number, rolesXBundlesUid: number, data: Record<string, unknown>) => Promise<BaseResponse<RolesBundlesData>>;
|
|
5197
|
+
delete: (rolesUid: number, rolesXBundlesUid: number) => Promise<BaseResponse<RolesBundlesData>>;
|
|
5198
|
+
};
|
|
5063
5199
|
};
|
|
5064
5200
|
users: {
|
|
5065
5201
|
list: (params?: UsersListParams) => Promise<BaseResponse<UsersData[]>>;
|
|
@@ -5089,14 +5225,18 @@ interface AgrIntClientSpec {
|
|
|
5089
5225
|
/**
|
|
5090
5226
|
* Generated client for agr-int service
|
|
5091
5227
|
* Source: shared/specs/agr-int.json
|
|
5092
|
-
* Generated: 2026-06-
|
|
5228
|
+
* Generated: 2026-06-14T22:37:15Z
|
|
5093
5229
|
*
|
|
5094
5230
|
* DO NOT EDIT — regenerate with: python shared/scripts/generate-ts.py
|
|
5095
5231
|
*/
|
|
5096
5232
|
|
|
5097
5233
|
declare class AgrIntClient extends BaseServiceClient {
|
|
5234
|
+
readonly bundles: AgrIntClientSpec['bundles'];
|
|
5235
|
+
readonly resources: AgrIntClientSpec['resources'];
|
|
5098
5236
|
readonly roles: AgrIntClientSpec['roles'];
|
|
5099
5237
|
readonly users: AgrIntClientSpec['users'];
|
|
5238
|
+
readonly bundlesData: AgrIntClientSpec['bundles'];
|
|
5239
|
+
readonly resourcesData: AgrIntClientSpec['resources'];
|
|
5100
5240
|
readonly rolesData: AgrIntClientSpec['roles'];
|
|
5101
5241
|
readonly usersData: AgrIntClientSpec['users'];
|
|
5102
5242
|
constructor(http: HTTPClient, baseUrl?: string);
|
|
@@ -1961,7 +1961,7 @@ declare class OpenSearchClient extends BaseServiceClient {
|
|
|
1961
1961
|
/**
|
|
1962
1962
|
* Generated types for items service
|
|
1963
1963
|
* Source: shared/specs/items.json
|
|
1964
|
-
* Generated: 2026-06-
|
|
1964
|
+
* Generated: 2026-06-15T18:49:50Z
|
|
1965
1965
|
*
|
|
1966
1966
|
* DO NOT EDIT — regenerate with: python shared/scripts/generate-ts.py
|
|
1967
1967
|
*/
|
|
@@ -2257,9 +2257,18 @@ interface ItemUomListParams extends EdgeCacheParams {
|
|
|
2257
2257
|
/** Params for GET /item-uom/{itemUomUid} */
|
|
2258
2258
|
type ItemUomGetParams = EdgeCacheParams;
|
|
2259
2259
|
/** Params for GET /item-wishlist/{usersId} */
|
|
2260
|
-
|
|
2260
|
+
interface ItemWishlistGetParams extends EdgeCacheParams {
|
|
2261
|
+
limit?: number;
|
|
2262
|
+
offset?: number;
|
|
2263
|
+
orderBy?: string;
|
|
2264
|
+
statusCd?: number;
|
|
2265
|
+
}
|
|
2261
2266
|
/** Params for GET /item-wishlist/{usersId}/hdr/{itemWishlistHdrUid} */
|
|
2262
|
-
|
|
2267
|
+
interface ItemWishlistHdrGetParams extends EdgeCacheParams {
|
|
2268
|
+
limit?: number;
|
|
2269
|
+
offset?: number;
|
|
2270
|
+
statusCd?: number;
|
|
2271
|
+
}
|
|
2263
2272
|
/** Params for GET /locations/{locationId}/bins */
|
|
2264
2273
|
interface LocationsBinsListParams extends EdgeCacheParams {
|
|
2265
2274
|
bin?: string;
|
|
@@ -2847,7 +2856,7 @@ type WhoamiDataResource$1 = ReturnType<typeof createWhoamiDataResource$1>;
|
|
|
2847
2856
|
/**
|
|
2848
2857
|
* Generated client for items service
|
|
2849
2858
|
* Source: shared/specs/items.json
|
|
2850
|
-
* Generated: 2026-06-
|
|
2859
|
+
* Generated: 2026-06-15T18:49:50Z
|
|
2851
2860
|
*
|
|
2852
2861
|
* DO NOT EDIT — regenerate with: python shared/scripts/generate-ts.py
|
|
2853
2862
|
*/
|
|
@@ -4957,11 +4966,45 @@ declare class AgrInfoClient extends BaseServiceClient {
|
|
|
4957
4966
|
/**
|
|
4958
4967
|
* Generated types for agr-int service
|
|
4959
4968
|
* Source: shared/specs/agr-int.json
|
|
4960
|
-
* Generated: 2026-06-
|
|
4969
|
+
* Generated: 2026-06-14T22:37:15Z
|
|
4961
4970
|
*
|
|
4962
4971
|
* DO NOT EDIT — regenerate with: python shared/scripts/generate-ts.py
|
|
4963
4972
|
*/
|
|
4964
4973
|
|
|
4974
|
+
/** Params for GET /bundles */
|
|
4975
|
+
interface BundlesListParams extends EdgeCacheParams {
|
|
4976
|
+
bundleId?: string;
|
|
4977
|
+
bundleName?: string;
|
|
4978
|
+
limit?: number;
|
|
4979
|
+
offset?: number;
|
|
4980
|
+
orderBy?: string;
|
|
4981
|
+
statusCd?: number;
|
|
4982
|
+
systemFlag?: string;
|
|
4983
|
+
}
|
|
4984
|
+
/** Params for GET /bundles/{bundlesUid} */
|
|
4985
|
+
type BundlesGetParams = EdgeCacheParams;
|
|
4986
|
+
/** Params for GET /bundles/{bundlesUid}/resources */
|
|
4987
|
+
interface BundlesResourcesListParams extends EdgeCacheParams {
|
|
4988
|
+
limit?: number;
|
|
4989
|
+
offset?: number;
|
|
4990
|
+
orderBy?: string;
|
|
4991
|
+
statusCd?: number;
|
|
4992
|
+
}
|
|
4993
|
+
/** Params for GET /bundles/{bundlesUid}/resources/{bundlesXResourcesUid} */
|
|
4994
|
+
type BundlesResourcesGetParams = EdgeCacheParams;
|
|
4995
|
+
/** Params for GET /resources */
|
|
4996
|
+
interface ResourcesListParams extends EdgeCacheParams {
|
|
4997
|
+
limit?: number;
|
|
4998
|
+
offset?: number;
|
|
4999
|
+
orderBy?: string;
|
|
5000
|
+
resourceId?: string;
|
|
5001
|
+
resourceName?: string;
|
|
5002
|
+
resourcePath?: string;
|
|
5003
|
+
resourceType?: string;
|
|
5004
|
+
statusCd?: number;
|
|
5005
|
+
}
|
|
5006
|
+
/** Params for GET /resources/{resourcesUid} */
|
|
5007
|
+
type ResourcesGetParams = EdgeCacheParams;
|
|
4965
5008
|
/** Params for GET /roles */
|
|
4966
5009
|
interface RolesListParams extends EdgeCacheParams {
|
|
4967
5010
|
limit?: number;
|
|
@@ -4974,6 +5017,15 @@ interface RolesListParams extends EdgeCacheParams {
|
|
|
4974
5017
|
}
|
|
4975
5018
|
/** Params for GET /roles/{rolesUid} */
|
|
4976
5019
|
type RolesGetParams = EdgeCacheParams;
|
|
5020
|
+
/** Params for GET /roles/{rolesUid}/bundles */
|
|
5021
|
+
interface RolesBundlesListParams extends EdgeCacheParams {
|
|
5022
|
+
limit?: number;
|
|
5023
|
+
offset?: number;
|
|
5024
|
+
orderBy?: string;
|
|
5025
|
+
statusCd?: number;
|
|
5026
|
+
}
|
|
5027
|
+
/** Params for GET /roles/{rolesUid}/bundles/{rolesXBundlesUid} */
|
|
5028
|
+
type RolesBundlesGetParams = EdgeCacheParams;
|
|
4977
5029
|
/** Params for GET /users */
|
|
4978
5030
|
interface UsersListParams extends EdgeCacheParams {
|
|
4979
5031
|
email?: string;
|
|
@@ -4996,6 +5048,50 @@ interface UsersRolesListParams extends EdgeCacheParams {
|
|
|
4996
5048
|
/** Params for GET /users/{usersUid}/roles/{usersXRolesUid} */
|
|
4997
5049
|
type UsersRolesGetParams = EdgeCacheParams;
|
|
4998
5050
|
/** Response data — fields are MINIMUM, extra fields pass through */
|
|
5051
|
+
interface BundlesData {
|
|
5052
|
+
bundlesUid?: number;
|
|
5053
|
+
bundleId?: string;
|
|
5054
|
+
bundleName?: string;
|
|
5055
|
+
description?: string | null;
|
|
5056
|
+
systemFlag?: string;
|
|
5057
|
+
dateCreated?: string;
|
|
5058
|
+
dateLastModified?: string;
|
|
5059
|
+
updateCd?: number;
|
|
5060
|
+
statusCd?: number;
|
|
5061
|
+
processCd?: number;
|
|
5062
|
+
[key: string]: unknown;
|
|
5063
|
+
}
|
|
5064
|
+
/** Response data — fields are MINIMUM, extra fields pass through */
|
|
5065
|
+
interface BundlesResourcesData {
|
|
5066
|
+
bundlesXResourcesUid?: number;
|
|
5067
|
+
bundlesUid?: number;
|
|
5068
|
+
resourcesUid?: number;
|
|
5069
|
+
readCd?: number;
|
|
5070
|
+
writeCd?: number;
|
|
5071
|
+
executeCd?: number;
|
|
5072
|
+
dateCreated?: string;
|
|
5073
|
+
dateLastModified?: string;
|
|
5074
|
+
updateCd?: number;
|
|
5075
|
+
statusCd?: number;
|
|
5076
|
+
processCd?: number;
|
|
5077
|
+
[key: string]: unknown;
|
|
5078
|
+
}
|
|
5079
|
+
/** Response data — fields are MINIMUM, extra fields pass through */
|
|
5080
|
+
interface ResourcesData {
|
|
5081
|
+
resourcesUid?: number;
|
|
5082
|
+
resourceId?: string;
|
|
5083
|
+
resourceName?: string;
|
|
5084
|
+
resourceType?: string;
|
|
5085
|
+
resourcePath?: string;
|
|
5086
|
+
description?: string | null;
|
|
5087
|
+
dateCreated?: string;
|
|
5088
|
+
dateLastModified?: string;
|
|
5089
|
+
updateCd?: number;
|
|
5090
|
+
statusCd?: number;
|
|
5091
|
+
processCd?: number;
|
|
5092
|
+
[key: string]: unknown;
|
|
5093
|
+
}
|
|
5094
|
+
/** Response data — fields are MINIMUM, extra fields pass through */
|
|
4999
5095
|
interface RolesData {
|
|
5000
5096
|
rolesUid?: number;
|
|
5001
5097
|
roleId?: string;
|
|
@@ -5010,6 +5106,18 @@ interface RolesData {
|
|
|
5010
5106
|
[key: string]: unknown;
|
|
5011
5107
|
}
|
|
5012
5108
|
/** Response data — fields are MINIMUM, extra fields pass through */
|
|
5109
|
+
interface RolesBundlesData {
|
|
5110
|
+
rolesXBundlesUid?: number;
|
|
5111
|
+
rolesUid?: number;
|
|
5112
|
+
bundlesUid?: number;
|
|
5113
|
+
dateCreated?: string;
|
|
5114
|
+
dateLastModified?: string;
|
|
5115
|
+
updateCd?: number;
|
|
5116
|
+
statusCd?: number;
|
|
5117
|
+
processCd?: number;
|
|
5118
|
+
[key: string]: unknown;
|
|
5119
|
+
}
|
|
5120
|
+
/** Response data — fields are MINIMUM, extra fields pass through */
|
|
5013
5121
|
interface UsersData {
|
|
5014
5122
|
usersUid?: number;
|
|
5015
5123
|
username?: string;
|
|
@@ -5054,12 +5162,40 @@ interface UsersRolesData {
|
|
|
5054
5162
|
[key: string]: unknown;
|
|
5055
5163
|
}
|
|
5056
5164
|
interface AgrIntClientSpec {
|
|
5165
|
+
bundles: {
|
|
5166
|
+
list: (params?: BundlesListParams) => Promise<BaseResponse<BundlesData[]>>;
|
|
5167
|
+
create: (data: Record<string, unknown>) => Promise<BaseResponse<BundlesData>>;
|
|
5168
|
+
get: (bundlesUid: number, params?: BundlesGetParams) => Promise<BaseResponse<BundlesData>>;
|
|
5169
|
+
update: (bundlesUid: number, data: Record<string, unknown>) => Promise<BaseResponse<BundlesData>>;
|
|
5170
|
+
delete: (bundlesUid: number) => Promise<BaseResponse<BundlesData>>;
|
|
5171
|
+
resources: {
|
|
5172
|
+
list: (bundlesUid: number, params?: BundlesResourcesListParams) => Promise<BaseResponse<BundlesResourcesData[]>>;
|
|
5173
|
+
create: (bundlesUid: number, data: Record<string, unknown>) => Promise<BaseResponse<BundlesResourcesData>>;
|
|
5174
|
+
get: (bundlesUid: number, bundlesXResourcesUid: number, params?: BundlesResourcesGetParams) => Promise<BaseResponse<BundlesResourcesData>>;
|
|
5175
|
+
update: (bundlesUid: number, bundlesXResourcesUid: number, data: Record<string, unknown>) => Promise<BaseResponse<BundlesResourcesData>>;
|
|
5176
|
+
delete: (bundlesUid: number, bundlesXResourcesUid: number) => Promise<BaseResponse<BundlesResourcesData>>;
|
|
5177
|
+
};
|
|
5178
|
+
};
|
|
5179
|
+
resources: {
|
|
5180
|
+
list: (params?: ResourcesListParams) => Promise<BaseResponse<ResourcesData[]>>;
|
|
5181
|
+
create: (data: Record<string, unknown>) => Promise<BaseResponse<ResourcesData>>;
|
|
5182
|
+
get: (resourcesUid: number, params?: ResourcesGetParams) => Promise<BaseResponse<ResourcesData>>;
|
|
5183
|
+
update: (resourcesUid: number, data: Record<string, unknown>) => Promise<BaseResponse<ResourcesData>>;
|
|
5184
|
+
delete: (resourcesUid: number) => Promise<BaseResponse<ResourcesData>>;
|
|
5185
|
+
};
|
|
5057
5186
|
roles: {
|
|
5058
5187
|
list: (params?: RolesListParams) => Promise<BaseResponse<RolesData[]>>;
|
|
5059
5188
|
create: (data: Record<string, unknown>) => Promise<BaseResponse<RolesData>>;
|
|
5060
5189
|
get: (rolesUid: number, params?: RolesGetParams) => Promise<BaseResponse<RolesData>>;
|
|
5061
5190
|
update: (rolesUid: number, data: Record<string, unknown>) => Promise<BaseResponse<RolesData>>;
|
|
5062
5191
|
delete: (rolesUid: number) => Promise<BaseResponse<RolesData>>;
|
|
5192
|
+
bundles: {
|
|
5193
|
+
list: (rolesUid: number, params?: RolesBundlesListParams) => Promise<BaseResponse<RolesBundlesData[]>>;
|
|
5194
|
+
create: (rolesUid: number, data: Record<string, unknown>) => Promise<BaseResponse<RolesBundlesData>>;
|
|
5195
|
+
get: (rolesUid: number, rolesXBundlesUid: number, params?: RolesBundlesGetParams) => Promise<BaseResponse<RolesBundlesData>>;
|
|
5196
|
+
update: (rolesUid: number, rolesXBundlesUid: number, data: Record<string, unknown>) => Promise<BaseResponse<RolesBundlesData>>;
|
|
5197
|
+
delete: (rolesUid: number, rolesXBundlesUid: number) => Promise<BaseResponse<RolesBundlesData>>;
|
|
5198
|
+
};
|
|
5063
5199
|
};
|
|
5064
5200
|
users: {
|
|
5065
5201
|
list: (params?: UsersListParams) => Promise<BaseResponse<UsersData[]>>;
|
|
@@ -5089,14 +5225,18 @@ interface AgrIntClientSpec {
|
|
|
5089
5225
|
/**
|
|
5090
5226
|
* Generated client for agr-int service
|
|
5091
5227
|
* Source: shared/specs/agr-int.json
|
|
5092
|
-
* Generated: 2026-06-
|
|
5228
|
+
* Generated: 2026-06-14T22:37:15Z
|
|
5093
5229
|
*
|
|
5094
5230
|
* DO NOT EDIT — regenerate with: python shared/scripts/generate-ts.py
|
|
5095
5231
|
*/
|
|
5096
5232
|
|
|
5097
5233
|
declare class AgrIntClient extends BaseServiceClient {
|
|
5234
|
+
readonly bundles: AgrIntClientSpec['bundles'];
|
|
5235
|
+
readonly resources: AgrIntClientSpec['resources'];
|
|
5098
5236
|
readonly roles: AgrIntClientSpec['roles'];
|
|
5099
5237
|
readonly users: AgrIntClientSpec['users'];
|
|
5238
|
+
readonly bundlesData: AgrIntClientSpec['bundles'];
|
|
5239
|
+
readonly resourcesData: AgrIntClientSpec['resources'];
|
|
5100
5240
|
readonly rolesData: AgrIntClientSpec['roles'];
|
|
5101
5241
|
readonly usersData: AgrIntClientSpec['users'];
|
|
5102
5242
|
constructor(http: HTTPClient, baseUrl?: string);
|
package/dist/index.d.mts
CHANGED
|
@@ -1,5 +1,5 @@
|
|
|
1
|
-
import { A as AugurAPI } from './client-
|
|
2
|
-
export { a as AgrInfoClient, b as AgrIntClient, c as AgrSiteClient, d as AgrWorkClient, e as AugurAPIConfig, f as AugurContext, g as AugurRequestConfig, h as AugurRequestError, i as AugurResponse, j as AvalaraClient, B as BaseResponse, k as BaseResponseSchema, l as Basecamp2Client, m as BrandFolderClient, C as CommerceClient, n as ContextCreationError, o as CustomersClient, D as DiscoveryEndpoint, E as EndpointSearchResult, G as GregorovichClient, H as HealthCheckData, p as HealthCheckDataSchema, I as ItemsClient, J as JoomlaClient, L as LegacyClient, q as LogisticsClient, N as NexusClient, O as OpenSearchClient, r as OrdersClient, P as P21ApisClient, s as P21CoreClient, t as P21PimClient, u as P21SismClient, v as PaginationParamsSchema, w as PaymentsClient, x as PricingClient, R as RequestConfig, S as ServiceMap, y as ShippingClient, z as SlackClient, F as SmartyStreetsClient, U as UPSClient, V as VMIClient } from './client-
|
|
1
|
+
import { A as AugurAPI } from './client-DeDnTdXi.mjs';
|
|
2
|
+
export { a as AgrInfoClient, b as AgrIntClient, c as AgrSiteClient, d as AgrWorkClient, e as AugurAPIConfig, f as AugurContext, g as AugurRequestConfig, h as AugurRequestError, i as AugurResponse, j as AvalaraClient, B as BaseResponse, k as BaseResponseSchema, l as Basecamp2Client, m as BrandFolderClient, C as CommerceClient, n as ContextCreationError, o as CustomersClient, D as DiscoveryEndpoint, E as EndpointSearchResult, G as GregorovichClient, H as HealthCheckData, p as HealthCheckDataSchema, I as ItemsClient, J as JoomlaClient, L as LegacyClient, q as LogisticsClient, N as NexusClient, O as OpenSearchClient, r as OrdersClient, P as P21ApisClient, s as P21CoreClient, t as P21PimClient, u as P21SismClient, v as PaginationParamsSchema, w as PaymentsClient, x as PricingClient, R as RequestConfig, S as ServiceMap, y as ShippingClient, z as SlackClient, F as SmartyStreetsClient, U as UPSClient, V as VMIClient } from './client-DeDnTdXi.mjs';
|
|
3
3
|
import 'valibot';
|
|
4
4
|
|
|
5
5
|
/**
|
|
@@ -180,6 +180,6 @@ declare class InvalidArgumentError extends AugurError {
|
|
|
180
180
|
});
|
|
181
181
|
}
|
|
182
182
|
|
|
183
|
-
declare const VERSION = "2026.6.
|
|
183
|
+
declare const VERSION = "2026.6.5";
|
|
184
184
|
|
|
185
185
|
export { AugurAPI, type AugurAPIError, AugurError, AuthenticationError, type CrossSiteAuthParams, type CrossSiteAuthResult, InvalidArgumentError, NotFoundError, RateLimitError, VERSION, ValidationError, authenticateUserForSite, createCrossSiteAuthenticator };
|
package/dist/index.d.ts
CHANGED
|
@@ -1,5 +1,5 @@
|
|
|
1
|
-
import { A as AugurAPI } from './client-
|
|
2
|
-
export { a as AgrInfoClient, b as AgrIntClient, c as AgrSiteClient, d as AgrWorkClient, e as AugurAPIConfig, f as AugurContext, g as AugurRequestConfig, h as AugurRequestError, i as AugurResponse, j as AvalaraClient, B as BaseResponse, k as BaseResponseSchema, l as Basecamp2Client, m as BrandFolderClient, C as CommerceClient, n as ContextCreationError, o as CustomersClient, D as DiscoveryEndpoint, E as EndpointSearchResult, G as GregorovichClient, H as HealthCheckData, p as HealthCheckDataSchema, I as ItemsClient, J as JoomlaClient, L as LegacyClient, q as LogisticsClient, N as NexusClient, O as OpenSearchClient, r as OrdersClient, P as P21ApisClient, s as P21CoreClient, t as P21PimClient, u as P21SismClient, v as PaginationParamsSchema, w as PaymentsClient, x as PricingClient, R as RequestConfig, S as ServiceMap, y as ShippingClient, z as SlackClient, F as SmartyStreetsClient, U as UPSClient, V as VMIClient } from './client-
|
|
1
|
+
import { A as AugurAPI } from './client-DeDnTdXi.js';
|
|
2
|
+
export { a as AgrInfoClient, b as AgrIntClient, c as AgrSiteClient, d as AgrWorkClient, e as AugurAPIConfig, f as AugurContext, g as AugurRequestConfig, h as AugurRequestError, i as AugurResponse, j as AvalaraClient, B as BaseResponse, k as BaseResponseSchema, l as Basecamp2Client, m as BrandFolderClient, C as CommerceClient, n as ContextCreationError, o as CustomersClient, D as DiscoveryEndpoint, E as EndpointSearchResult, G as GregorovichClient, H as HealthCheckData, p as HealthCheckDataSchema, I as ItemsClient, J as JoomlaClient, L as LegacyClient, q as LogisticsClient, N as NexusClient, O as OpenSearchClient, r as OrdersClient, P as P21ApisClient, s as P21CoreClient, t as P21PimClient, u as P21SismClient, v as PaginationParamsSchema, w as PaymentsClient, x as PricingClient, R as RequestConfig, S as ServiceMap, y as ShippingClient, z as SlackClient, F as SmartyStreetsClient, U as UPSClient, V as VMIClient } from './client-DeDnTdXi.js';
|
|
3
3
|
import 'valibot';
|
|
4
4
|
|
|
5
5
|
/**
|
|
@@ -180,6 +180,6 @@ declare class InvalidArgumentError extends AugurError {
|
|
|
180
180
|
});
|
|
181
181
|
}
|
|
182
182
|
|
|
183
|
-
declare const VERSION = "2026.6.
|
|
183
|
+
declare const VERSION = "2026.6.5";
|
|
184
184
|
|
|
185
185
|
export { AugurAPI, type AugurAPIError, AugurError, AuthenticationError, type CrossSiteAuthParams, type CrossSiteAuthResult, InvalidArgumentError, NotFoundError, RateLimitError, VERSION, ValidationError, authenticateUserForSite, createCrossSiteAuthenticator };
|