@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/index.js CHANGED
@@ -4207,6 +4207,19 @@ var ItemUomListParamsSchema = v11.looseObject({
4207
4207
  orderBy: v11.optional(v11.string()),
4208
4208
  unitOfMeasure: v11.optional(v11.string())
4209
4209
  });
4210
+ var ItemWishlistGetParamsSchema = v11.looseObject({
4211
+ ...EdgeCacheParamsSchema.entries,
4212
+ limit: v11.optional(v11.pipe(v11.unknown(), v11.transform(Number))),
4213
+ offset: v11.optional(v11.pipe(v11.unknown(), v11.transform(Number))),
4214
+ orderBy: v11.optional(v11.string()),
4215
+ statusCd: v11.optional(v11.pipe(v11.unknown(), v11.transform(Number)))
4216
+ });
4217
+ var ItemWishlistHdrGetParamsSchema = v11.looseObject({
4218
+ ...EdgeCacheParamsSchema.entries,
4219
+ limit: v11.optional(v11.pipe(v11.unknown(), v11.transform(Number))),
4220
+ offset: v11.optional(v11.pipe(v11.unknown(), v11.transform(Number))),
4221
+ statusCd: v11.optional(v11.pipe(v11.unknown(), v11.transform(Number)))
4222
+ });
4210
4223
  var LocationsBinsListParamsSchema = v11.looseObject({
4211
4224
  ...EdgeCacheParamsSchema.entries,
4212
4225
  bin: v11.optional(v11.string()),
@@ -5481,7 +5494,7 @@ var endpoints6 = [
5481
5494
  action: "get",
5482
5495
  aliases: [],
5483
5496
  pathParams: ["usersId"],
5484
- queryParams: [],
5497
+ queryParams: ["limit", "offset", "orderBy", "statusCd"],
5485
5498
  edgeCache: true,
5486
5499
  responseSchema: PassthroughDataSchema6,
5487
5500
  responseType: "passthrough"
@@ -5529,7 +5542,7 @@ var endpoints6 = [
5529
5542
  action: "get",
5530
5543
  aliases: [],
5531
5544
  pathParams: ["usersId", "itemWishlistHdrUid"],
5532
- queryParams: [],
5545
+ queryParams: ["limit", "offset", "statusCd"],
5533
5546
  edgeCache: true,
5534
5547
  responseSchema: PassthroughDataSchema6,
5535
5548
  responseType: "passthrough"
@@ -9802,6 +9815,34 @@ var AgrInfoClient = class extends BaseServiceClient {
9802
9815
 
9803
9816
  // src/services/agr-int/generated/schemas.ts
9804
9817
  var v22 = __toESM(require("valibot"));
9818
+ var BundlesListParamsSchema = v22.looseObject({
9819
+ ...EdgeCacheParamsSchema.entries,
9820
+ bundleId: v22.optional(v22.string()),
9821
+ bundleName: v22.optional(v22.string()),
9822
+ limit: v22.optional(v22.pipe(v22.unknown(), v22.transform(Number))),
9823
+ offset: v22.optional(v22.pipe(v22.unknown(), v22.transform(Number))),
9824
+ orderBy: v22.optional(v22.string()),
9825
+ statusCd: v22.optional(v22.pipe(v22.unknown(), v22.transform(Number))),
9826
+ systemFlag: v22.optional(v22.string())
9827
+ });
9828
+ var BundlesResourcesListParamsSchema = v22.looseObject({
9829
+ ...EdgeCacheParamsSchema.entries,
9830
+ limit: v22.optional(v22.pipe(v22.unknown(), v22.transform(Number))),
9831
+ offset: v22.optional(v22.pipe(v22.unknown(), v22.transform(Number))),
9832
+ orderBy: v22.optional(v22.string()),
9833
+ statusCd: v22.optional(v22.pipe(v22.unknown(), v22.transform(Number)))
9834
+ });
9835
+ var ResourcesListParamsSchema = v22.looseObject({
9836
+ ...EdgeCacheParamsSchema.entries,
9837
+ limit: v22.optional(v22.pipe(v22.unknown(), v22.transform(Number))),
9838
+ offset: v22.optional(v22.pipe(v22.unknown(), v22.transform(Number))),
9839
+ orderBy: v22.optional(v22.string()),
9840
+ resourceId: v22.optional(v22.string()),
9841
+ resourceName: v22.optional(v22.string()),
9842
+ resourcePath: v22.optional(v22.string()),
9843
+ resourceType: v22.optional(v22.string()),
9844
+ statusCd: v22.optional(v22.pipe(v22.unknown(), v22.transform(Number)))
9845
+ });
9805
9846
  var RolesListParamsSchema = v22.looseObject({
9806
9847
  ...EdgeCacheParamsSchema.entries,
9807
9848
  limit: v22.optional(v22.pipe(v22.unknown(), v22.transform(Number))),
@@ -9812,6 +9853,13 @@ var RolesListParamsSchema = v22.looseObject({
9812
9853
  statusCd: v22.optional(v22.pipe(v22.unknown(), v22.transform(Number))),
9813
9854
  systemFlag: v22.optional(v22.string())
9814
9855
  });
9856
+ var RolesBundlesListParamsSchema = v22.looseObject({
9857
+ ...EdgeCacheParamsSchema.entries,
9858
+ limit: v22.optional(v22.pipe(v22.unknown(), v22.transform(Number))),
9859
+ offset: v22.optional(v22.pipe(v22.unknown(), v22.transform(Number))),
9860
+ orderBy: v22.optional(v22.string()),
9861
+ statusCd: v22.optional(v22.pipe(v22.unknown(), v22.transform(Number)))
9862
+ });
9815
9863
  var UsersListParamsSchema = v22.looseObject({
9816
9864
  ...EdgeCacheParamsSchema.entries,
9817
9865
  email: v22.optional(v22.string()),
@@ -9829,6 +9877,44 @@ var UsersRolesListParamsSchema = v22.looseObject({
9829
9877
  orderBy: v22.optional(v22.string()),
9830
9878
  statusCd: v22.optional(v22.pipe(v22.unknown(), v22.transform(Number)))
9831
9879
  });
9880
+ var BundlesDataSchema = v22.looseObject({
9881
+ bundlesUid: v22.optional(v22.number()),
9882
+ bundleId: v22.optional(v22.string()),
9883
+ bundleName: v22.optional(v22.string()),
9884
+ description: v22.optional(v22.nullable(v22.string())),
9885
+ systemFlag: v22.optional(v22.string()),
9886
+ dateCreated: v22.optional(v22.string()),
9887
+ dateLastModified: v22.optional(v22.string()),
9888
+ updateCd: v22.optional(v22.number()),
9889
+ statusCd: v22.optional(v22.number()),
9890
+ processCd: v22.optional(v22.number())
9891
+ });
9892
+ var BundlesResourcesDataSchema = v22.looseObject({
9893
+ bundlesXResourcesUid: v22.optional(v22.number()),
9894
+ bundlesUid: v22.optional(v22.number()),
9895
+ resourcesUid: v22.optional(v22.number()),
9896
+ readCd: v22.optional(v22.number()),
9897
+ writeCd: v22.optional(v22.number()),
9898
+ executeCd: v22.optional(v22.number()),
9899
+ dateCreated: v22.optional(v22.string()),
9900
+ dateLastModified: v22.optional(v22.string()),
9901
+ updateCd: v22.optional(v22.number()),
9902
+ statusCd: v22.optional(v22.number()),
9903
+ processCd: v22.optional(v22.number())
9904
+ });
9905
+ var ResourcesDataSchema = v22.looseObject({
9906
+ resourcesUid: v22.optional(v22.number()),
9907
+ resourceId: v22.optional(v22.string()),
9908
+ resourceName: v22.optional(v22.string()),
9909
+ resourceType: v22.optional(v22.string()),
9910
+ resourcePath: v22.optional(v22.string()),
9911
+ description: v22.optional(v22.nullable(v22.string())),
9912
+ dateCreated: v22.optional(v22.string()),
9913
+ dateLastModified: v22.optional(v22.string()),
9914
+ updateCd: v22.optional(v22.number()),
9915
+ statusCd: v22.optional(v22.number()),
9916
+ processCd: v22.optional(v22.number())
9917
+ });
9832
9918
  var RolesDataSchema = v22.looseObject({
9833
9919
  rolesUid: v22.optional(v22.number()),
9834
9920
  roleId: v22.optional(v22.string()),
@@ -9841,6 +9927,16 @@ var RolesDataSchema = v22.looseObject({
9841
9927
  statusCd: v22.optional(v22.number()),
9842
9928
  processCd: v22.optional(v22.number())
9843
9929
  });
9930
+ var RolesBundlesDataSchema = v22.looseObject({
9931
+ rolesXBundlesUid: v22.optional(v22.number()),
9932
+ rolesUid: v22.optional(v22.number()),
9933
+ bundlesUid: v22.optional(v22.number()),
9934
+ dateCreated: v22.optional(v22.string()),
9935
+ dateLastModified: v22.optional(v22.string()),
9936
+ updateCd: v22.optional(v22.number()),
9937
+ statusCd: v22.optional(v22.number()),
9938
+ processCd: v22.optional(v22.number())
9939
+ });
9844
9940
  var UsersDataSchema = v22.looseObject({
9845
9941
  usersUid: v22.optional(v22.number()),
9846
9942
  username: v22.optional(v22.string()),
@@ -9881,6 +9977,195 @@ var PassthroughDataSchema15 = v22.record(v22.string(), v22.unknown());
9881
9977
 
9882
9978
  // src/services/agr-int/generated/endpoints.ts
9883
9979
  var endpoints15 = [
9980
+ {
9981
+ method: "GET",
9982
+ path: "/bundles",
9983
+ chain: "bundles",
9984
+ action: "list",
9985
+ aliases: [],
9986
+ pathParams: [],
9987
+ queryParams: ["bundleId", "bundleName", "limit", "offset", "orderBy", "statusCd", "systemFlag"],
9988
+ edgeCache: true,
9989
+ responseSchema: BundlesDataSchema,
9990
+ responseType: "array"
9991
+ },
9992
+ {
9993
+ method: "POST",
9994
+ path: "/bundles",
9995
+ chain: "bundles",
9996
+ action: "create",
9997
+ aliases: [],
9998
+ pathParams: [],
9999
+ queryParams: [],
10000
+ edgeCache: false,
10001
+ responseSchema: BundlesDataSchema,
10002
+ responseType: "object"
10003
+ },
10004
+ {
10005
+ method: "GET",
10006
+ path: "/bundles/{bundlesUid}",
10007
+ chain: "bundles",
10008
+ action: "get",
10009
+ aliases: [],
10010
+ pathParams: ["bundlesUid"],
10011
+ queryParams: [],
10012
+ edgeCache: true,
10013
+ responseSchema: BundlesDataSchema,
10014
+ responseType: "object"
10015
+ },
10016
+ {
10017
+ method: "PUT",
10018
+ path: "/bundles/{bundlesUid}",
10019
+ chain: "bundles",
10020
+ action: "update",
10021
+ aliases: [],
10022
+ pathParams: ["bundlesUid"],
10023
+ queryParams: [],
10024
+ edgeCache: false,
10025
+ responseSchema: BundlesDataSchema,
10026
+ responseType: "object"
10027
+ },
10028
+ {
10029
+ method: "DELETE",
10030
+ path: "/bundles/{bundlesUid}",
10031
+ chain: "bundles",
10032
+ action: "delete",
10033
+ aliases: [],
10034
+ pathParams: ["bundlesUid"],
10035
+ queryParams: [],
10036
+ edgeCache: false,
10037
+ responseSchema: BundlesDataSchema,
10038
+ responseType: "object"
10039
+ },
10040
+ {
10041
+ method: "GET",
10042
+ path: "/bundles/{bundlesUid}/resources",
10043
+ chain: "bundles.resources",
10044
+ action: "list",
10045
+ aliases: [],
10046
+ pathParams: ["bundlesUid"],
10047
+ queryParams: ["limit", "offset", "orderBy", "statusCd"],
10048
+ edgeCache: true,
10049
+ responseSchema: BundlesResourcesDataSchema,
10050
+ responseType: "array"
10051
+ },
10052
+ {
10053
+ method: "POST",
10054
+ path: "/bundles/{bundlesUid}/resources",
10055
+ chain: "bundles.resources",
10056
+ action: "create",
10057
+ aliases: [],
10058
+ pathParams: ["bundlesUid"],
10059
+ queryParams: [],
10060
+ edgeCache: false,
10061
+ responseSchema: BundlesResourcesDataSchema,
10062
+ responseType: "object"
10063
+ },
10064
+ {
10065
+ method: "GET",
10066
+ path: "/bundles/{bundlesUid}/resources/{bundlesXResourcesUid}",
10067
+ chain: "bundles.resources",
10068
+ action: "get",
10069
+ aliases: [],
10070
+ pathParams: ["bundlesUid", "bundlesXResourcesUid"],
10071
+ queryParams: [],
10072
+ edgeCache: true,
10073
+ responseSchema: BundlesResourcesDataSchema,
10074
+ responseType: "object"
10075
+ },
10076
+ {
10077
+ method: "PUT",
10078
+ path: "/bundles/{bundlesUid}/resources/{bundlesXResourcesUid}",
10079
+ chain: "bundles.resources",
10080
+ action: "update",
10081
+ aliases: [],
10082
+ pathParams: ["bundlesUid", "bundlesXResourcesUid"],
10083
+ queryParams: [],
10084
+ edgeCache: false,
10085
+ responseSchema: BundlesResourcesDataSchema,
10086
+ responseType: "object"
10087
+ },
10088
+ {
10089
+ method: "DELETE",
10090
+ path: "/bundles/{bundlesUid}/resources/{bundlesXResourcesUid}",
10091
+ chain: "bundles.resources",
10092
+ action: "delete",
10093
+ aliases: [],
10094
+ pathParams: ["bundlesUid", "bundlesXResourcesUid"],
10095
+ queryParams: [],
10096
+ edgeCache: false,
10097
+ responseSchema: BundlesResourcesDataSchema,
10098
+ responseType: "object"
10099
+ },
10100
+ {
10101
+ method: "GET",
10102
+ path: "/resources",
10103
+ chain: "resources",
10104
+ action: "list",
10105
+ aliases: [],
10106
+ pathParams: [],
10107
+ queryParams: [
10108
+ "limit",
10109
+ "offset",
10110
+ "orderBy",
10111
+ "resourceId",
10112
+ "resourceName",
10113
+ "resourcePath",
10114
+ "resourceType",
10115
+ "statusCd"
10116
+ ],
10117
+ edgeCache: true,
10118
+ responseSchema: ResourcesDataSchema,
10119
+ responseType: "array"
10120
+ },
10121
+ {
10122
+ method: "POST",
10123
+ path: "/resources",
10124
+ chain: "resources",
10125
+ action: "create",
10126
+ aliases: [],
10127
+ pathParams: [],
10128
+ queryParams: [],
10129
+ edgeCache: false,
10130
+ responseSchema: ResourcesDataSchema,
10131
+ responseType: "object"
10132
+ },
10133
+ {
10134
+ method: "GET",
10135
+ path: "/resources/{resourcesUid}",
10136
+ chain: "resources",
10137
+ action: "get",
10138
+ aliases: [],
10139
+ pathParams: ["resourcesUid"],
10140
+ queryParams: [],
10141
+ edgeCache: true,
10142
+ responseSchema: ResourcesDataSchema,
10143
+ responseType: "object"
10144
+ },
10145
+ {
10146
+ method: "PUT",
10147
+ path: "/resources/{resourcesUid}",
10148
+ chain: "resources",
10149
+ action: "update",
10150
+ aliases: [],
10151
+ pathParams: ["resourcesUid"],
10152
+ queryParams: [],
10153
+ edgeCache: false,
10154
+ responseSchema: ResourcesDataSchema,
10155
+ responseType: "object"
10156
+ },
10157
+ {
10158
+ method: "DELETE",
10159
+ path: "/resources/{resourcesUid}",
10160
+ chain: "resources",
10161
+ action: "delete",
10162
+ aliases: [],
10163
+ pathParams: ["resourcesUid"],
10164
+ queryParams: [],
10165
+ edgeCache: false,
10166
+ responseSchema: ResourcesDataSchema,
10167
+ responseType: "object"
10168
+ },
9884
10169
  {
9885
10170
  method: "GET",
9886
10171
  path: "/roles",
@@ -9941,6 +10226,66 @@ var endpoints15 = [
9941
10226
  responseSchema: RolesDataSchema,
9942
10227
  responseType: "object"
9943
10228
  },
10229
+ {
10230
+ method: "GET",
10231
+ path: "/roles/{rolesUid}/bundles",
10232
+ chain: "roles.bundles",
10233
+ action: "list",
10234
+ aliases: [],
10235
+ pathParams: ["rolesUid"],
10236
+ queryParams: ["limit", "offset", "orderBy", "statusCd"],
10237
+ edgeCache: true,
10238
+ responseSchema: RolesBundlesDataSchema,
10239
+ responseType: "array"
10240
+ },
10241
+ {
10242
+ method: "POST",
10243
+ path: "/roles/{rolesUid}/bundles",
10244
+ chain: "roles.bundles",
10245
+ action: "create",
10246
+ aliases: [],
10247
+ pathParams: ["rolesUid"],
10248
+ queryParams: [],
10249
+ edgeCache: false,
10250
+ responseSchema: RolesBundlesDataSchema,
10251
+ responseType: "object"
10252
+ },
10253
+ {
10254
+ method: "GET",
10255
+ path: "/roles/{rolesUid}/bundles/{rolesXBundlesUid}",
10256
+ chain: "roles.bundles",
10257
+ action: "get",
10258
+ aliases: [],
10259
+ pathParams: ["rolesUid", "rolesXBundlesUid"],
10260
+ queryParams: [],
10261
+ edgeCache: true,
10262
+ responseSchema: RolesBundlesDataSchema,
10263
+ responseType: "object"
10264
+ },
10265
+ {
10266
+ method: "PUT",
10267
+ path: "/roles/{rolesUid}/bundles/{rolesXBundlesUid}",
10268
+ chain: "roles.bundles",
10269
+ action: "update",
10270
+ aliases: [],
10271
+ pathParams: ["rolesUid", "rolesXBundlesUid"],
10272
+ queryParams: [],
10273
+ edgeCache: false,
10274
+ responseSchema: RolesBundlesDataSchema,
10275
+ responseType: "object"
10276
+ },
10277
+ {
10278
+ method: "DELETE",
10279
+ path: "/roles/{rolesUid}/bundles/{rolesXBundlesUid}",
10280
+ chain: "roles.bundles",
10281
+ action: "delete",
10282
+ aliases: [],
10283
+ pathParams: ["rolesUid", "rolesXBundlesUid"],
10284
+ queryParams: [],
10285
+ edgeCache: false,
10286
+ responseSchema: RolesBundlesDataSchema,
10287
+ responseType: "object"
10288
+ },
9944
10289
  {
9945
10290
  method: "GET",
9946
10291
  path: "/users",
@@ -10108,8 +10453,12 @@ var AgrIntClient = class extends BaseServiceClient {
10108
10453
  };
10109
10454
  const proxy = createServiceProxy("agr-int", boundExecuteRequest, endpoints15);
10110
10455
  const dataProxy = createDataProxy(proxy);
10456
+ this.bundles = proxy.bundles;
10457
+ this.resources = proxy.resources;
10111
10458
  this.roles = proxy.roles;
10112
10459
  this.users = proxy.users;
10460
+ this.bundlesData = dataProxy.bundles;
10461
+ this.resourcesData = dataProxy.resources;
10113
10462
  this.rolesData = dataProxy.roles;
10114
10463
  this.usersData = dataProxy.users;
10115
10464
  }
@@ -14589,7 +14938,7 @@ function createCrossSiteAuthenticator(augurInfoToken) {
14589
14938
  }
14590
14939
 
14591
14940
  // src/index.ts
14592
- var VERSION = "2026.6.3";
14941
+ var VERSION = "2026.6.5";
14593
14942
  // Annotate the CommonJS export names for ESM import in node:
14594
14943
  0 && (module.exports = {
14595
14944
  AgrInfoClient,