@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.mjs CHANGED
@@ -4130,6 +4130,19 @@ var ItemUomListParamsSchema = v11.looseObject({
4130
4130
  orderBy: v11.optional(v11.string()),
4131
4131
  unitOfMeasure: v11.optional(v11.string())
4132
4132
  });
4133
+ var ItemWishlistGetParamsSchema = v11.looseObject({
4134
+ ...EdgeCacheParamsSchema.entries,
4135
+ limit: v11.optional(v11.pipe(v11.unknown(), v11.transform(Number))),
4136
+ offset: v11.optional(v11.pipe(v11.unknown(), v11.transform(Number))),
4137
+ orderBy: v11.optional(v11.string()),
4138
+ statusCd: v11.optional(v11.pipe(v11.unknown(), v11.transform(Number)))
4139
+ });
4140
+ var ItemWishlistHdrGetParamsSchema = v11.looseObject({
4141
+ ...EdgeCacheParamsSchema.entries,
4142
+ limit: v11.optional(v11.pipe(v11.unknown(), v11.transform(Number))),
4143
+ offset: v11.optional(v11.pipe(v11.unknown(), v11.transform(Number))),
4144
+ statusCd: v11.optional(v11.pipe(v11.unknown(), v11.transform(Number)))
4145
+ });
4133
4146
  var LocationsBinsListParamsSchema = v11.looseObject({
4134
4147
  ...EdgeCacheParamsSchema.entries,
4135
4148
  bin: v11.optional(v11.string()),
@@ -5404,7 +5417,7 @@ var endpoints6 = [
5404
5417
  action: "get",
5405
5418
  aliases: [],
5406
5419
  pathParams: ["usersId"],
5407
- queryParams: [],
5420
+ queryParams: ["limit", "offset", "orderBy", "statusCd"],
5408
5421
  edgeCache: true,
5409
5422
  responseSchema: PassthroughDataSchema6,
5410
5423
  responseType: "passthrough"
@@ -5452,7 +5465,7 @@ var endpoints6 = [
5452
5465
  action: "get",
5453
5466
  aliases: [],
5454
5467
  pathParams: ["usersId", "itemWishlistHdrUid"],
5455
- queryParams: [],
5468
+ queryParams: ["limit", "offset", "statusCd"],
5456
5469
  edgeCache: true,
5457
5470
  responseSchema: PassthroughDataSchema6,
5458
5471
  responseType: "passthrough"
@@ -9725,6 +9738,34 @@ var AgrInfoClient = class extends BaseServiceClient {
9725
9738
 
9726
9739
  // src/services/agr-int/generated/schemas.ts
9727
9740
  import * as v22 from "valibot";
9741
+ var BundlesListParamsSchema = v22.looseObject({
9742
+ ...EdgeCacheParamsSchema.entries,
9743
+ bundleId: v22.optional(v22.string()),
9744
+ bundleName: v22.optional(v22.string()),
9745
+ limit: v22.optional(v22.pipe(v22.unknown(), v22.transform(Number))),
9746
+ offset: v22.optional(v22.pipe(v22.unknown(), v22.transform(Number))),
9747
+ orderBy: v22.optional(v22.string()),
9748
+ statusCd: v22.optional(v22.pipe(v22.unknown(), v22.transform(Number))),
9749
+ systemFlag: v22.optional(v22.string())
9750
+ });
9751
+ var BundlesResourcesListParamsSchema = v22.looseObject({
9752
+ ...EdgeCacheParamsSchema.entries,
9753
+ limit: v22.optional(v22.pipe(v22.unknown(), v22.transform(Number))),
9754
+ offset: v22.optional(v22.pipe(v22.unknown(), v22.transform(Number))),
9755
+ orderBy: v22.optional(v22.string()),
9756
+ statusCd: v22.optional(v22.pipe(v22.unknown(), v22.transform(Number)))
9757
+ });
9758
+ var ResourcesListParamsSchema = v22.looseObject({
9759
+ ...EdgeCacheParamsSchema.entries,
9760
+ limit: v22.optional(v22.pipe(v22.unknown(), v22.transform(Number))),
9761
+ offset: v22.optional(v22.pipe(v22.unknown(), v22.transform(Number))),
9762
+ orderBy: v22.optional(v22.string()),
9763
+ resourceId: v22.optional(v22.string()),
9764
+ resourceName: v22.optional(v22.string()),
9765
+ resourcePath: v22.optional(v22.string()),
9766
+ resourceType: v22.optional(v22.string()),
9767
+ statusCd: v22.optional(v22.pipe(v22.unknown(), v22.transform(Number)))
9768
+ });
9728
9769
  var RolesListParamsSchema = v22.looseObject({
9729
9770
  ...EdgeCacheParamsSchema.entries,
9730
9771
  limit: v22.optional(v22.pipe(v22.unknown(), v22.transform(Number))),
@@ -9735,6 +9776,13 @@ var RolesListParamsSchema = v22.looseObject({
9735
9776
  statusCd: v22.optional(v22.pipe(v22.unknown(), v22.transform(Number))),
9736
9777
  systemFlag: v22.optional(v22.string())
9737
9778
  });
9779
+ var RolesBundlesListParamsSchema = v22.looseObject({
9780
+ ...EdgeCacheParamsSchema.entries,
9781
+ limit: v22.optional(v22.pipe(v22.unknown(), v22.transform(Number))),
9782
+ offset: v22.optional(v22.pipe(v22.unknown(), v22.transform(Number))),
9783
+ orderBy: v22.optional(v22.string()),
9784
+ statusCd: v22.optional(v22.pipe(v22.unknown(), v22.transform(Number)))
9785
+ });
9738
9786
  var UsersListParamsSchema = v22.looseObject({
9739
9787
  ...EdgeCacheParamsSchema.entries,
9740
9788
  email: v22.optional(v22.string()),
@@ -9752,6 +9800,44 @@ var UsersRolesListParamsSchema = v22.looseObject({
9752
9800
  orderBy: v22.optional(v22.string()),
9753
9801
  statusCd: v22.optional(v22.pipe(v22.unknown(), v22.transform(Number)))
9754
9802
  });
9803
+ var BundlesDataSchema = v22.looseObject({
9804
+ bundlesUid: v22.optional(v22.number()),
9805
+ bundleId: v22.optional(v22.string()),
9806
+ bundleName: v22.optional(v22.string()),
9807
+ description: v22.optional(v22.nullable(v22.string())),
9808
+ systemFlag: v22.optional(v22.string()),
9809
+ dateCreated: v22.optional(v22.string()),
9810
+ dateLastModified: v22.optional(v22.string()),
9811
+ updateCd: v22.optional(v22.number()),
9812
+ statusCd: v22.optional(v22.number()),
9813
+ processCd: v22.optional(v22.number())
9814
+ });
9815
+ var BundlesResourcesDataSchema = v22.looseObject({
9816
+ bundlesXResourcesUid: v22.optional(v22.number()),
9817
+ bundlesUid: v22.optional(v22.number()),
9818
+ resourcesUid: v22.optional(v22.number()),
9819
+ readCd: v22.optional(v22.number()),
9820
+ writeCd: v22.optional(v22.number()),
9821
+ executeCd: v22.optional(v22.number()),
9822
+ dateCreated: v22.optional(v22.string()),
9823
+ dateLastModified: v22.optional(v22.string()),
9824
+ updateCd: v22.optional(v22.number()),
9825
+ statusCd: v22.optional(v22.number()),
9826
+ processCd: v22.optional(v22.number())
9827
+ });
9828
+ var ResourcesDataSchema = v22.looseObject({
9829
+ resourcesUid: v22.optional(v22.number()),
9830
+ resourceId: v22.optional(v22.string()),
9831
+ resourceName: v22.optional(v22.string()),
9832
+ resourceType: v22.optional(v22.string()),
9833
+ resourcePath: v22.optional(v22.string()),
9834
+ description: v22.optional(v22.nullable(v22.string())),
9835
+ dateCreated: v22.optional(v22.string()),
9836
+ dateLastModified: v22.optional(v22.string()),
9837
+ updateCd: v22.optional(v22.number()),
9838
+ statusCd: v22.optional(v22.number()),
9839
+ processCd: v22.optional(v22.number())
9840
+ });
9755
9841
  var RolesDataSchema = v22.looseObject({
9756
9842
  rolesUid: v22.optional(v22.number()),
9757
9843
  roleId: v22.optional(v22.string()),
@@ -9764,6 +9850,16 @@ var RolesDataSchema = v22.looseObject({
9764
9850
  statusCd: v22.optional(v22.number()),
9765
9851
  processCd: v22.optional(v22.number())
9766
9852
  });
9853
+ var RolesBundlesDataSchema = v22.looseObject({
9854
+ rolesXBundlesUid: v22.optional(v22.number()),
9855
+ rolesUid: v22.optional(v22.number()),
9856
+ bundlesUid: v22.optional(v22.number()),
9857
+ dateCreated: v22.optional(v22.string()),
9858
+ dateLastModified: v22.optional(v22.string()),
9859
+ updateCd: v22.optional(v22.number()),
9860
+ statusCd: v22.optional(v22.number()),
9861
+ processCd: v22.optional(v22.number())
9862
+ });
9767
9863
  var UsersDataSchema = v22.looseObject({
9768
9864
  usersUid: v22.optional(v22.number()),
9769
9865
  username: v22.optional(v22.string()),
@@ -9804,6 +9900,195 @@ var PassthroughDataSchema15 = v22.record(v22.string(), v22.unknown());
9804
9900
 
9805
9901
  // src/services/agr-int/generated/endpoints.ts
9806
9902
  var endpoints15 = [
9903
+ {
9904
+ method: "GET",
9905
+ path: "/bundles",
9906
+ chain: "bundles",
9907
+ action: "list",
9908
+ aliases: [],
9909
+ pathParams: [],
9910
+ queryParams: ["bundleId", "bundleName", "limit", "offset", "orderBy", "statusCd", "systemFlag"],
9911
+ edgeCache: true,
9912
+ responseSchema: BundlesDataSchema,
9913
+ responseType: "array"
9914
+ },
9915
+ {
9916
+ method: "POST",
9917
+ path: "/bundles",
9918
+ chain: "bundles",
9919
+ action: "create",
9920
+ aliases: [],
9921
+ pathParams: [],
9922
+ queryParams: [],
9923
+ edgeCache: false,
9924
+ responseSchema: BundlesDataSchema,
9925
+ responseType: "object"
9926
+ },
9927
+ {
9928
+ method: "GET",
9929
+ path: "/bundles/{bundlesUid}",
9930
+ chain: "bundles",
9931
+ action: "get",
9932
+ aliases: [],
9933
+ pathParams: ["bundlesUid"],
9934
+ queryParams: [],
9935
+ edgeCache: true,
9936
+ responseSchema: BundlesDataSchema,
9937
+ responseType: "object"
9938
+ },
9939
+ {
9940
+ method: "PUT",
9941
+ path: "/bundles/{bundlesUid}",
9942
+ chain: "bundles",
9943
+ action: "update",
9944
+ aliases: [],
9945
+ pathParams: ["bundlesUid"],
9946
+ queryParams: [],
9947
+ edgeCache: false,
9948
+ responseSchema: BundlesDataSchema,
9949
+ responseType: "object"
9950
+ },
9951
+ {
9952
+ method: "DELETE",
9953
+ path: "/bundles/{bundlesUid}",
9954
+ chain: "bundles",
9955
+ action: "delete",
9956
+ aliases: [],
9957
+ pathParams: ["bundlesUid"],
9958
+ queryParams: [],
9959
+ edgeCache: false,
9960
+ responseSchema: BundlesDataSchema,
9961
+ responseType: "object"
9962
+ },
9963
+ {
9964
+ method: "GET",
9965
+ path: "/bundles/{bundlesUid}/resources",
9966
+ chain: "bundles.resources",
9967
+ action: "list",
9968
+ aliases: [],
9969
+ pathParams: ["bundlesUid"],
9970
+ queryParams: ["limit", "offset", "orderBy", "statusCd"],
9971
+ edgeCache: true,
9972
+ responseSchema: BundlesResourcesDataSchema,
9973
+ responseType: "array"
9974
+ },
9975
+ {
9976
+ method: "POST",
9977
+ path: "/bundles/{bundlesUid}/resources",
9978
+ chain: "bundles.resources",
9979
+ action: "create",
9980
+ aliases: [],
9981
+ pathParams: ["bundlesUid"],
9982
+ queryParams: [],
9983
+ edgeCache: false,
9984
+ responseSchema: BundlesResourcesDataSchema,
9985
+ responseType: "object"
9986
+ },
9987
+ {
9988
+ method: "GET",
9989
+ path: "/bundles/{bundlesUid}/resources/{bundlesXResourcesUid}",
9990
+ chain: "bundles.resources",
9991
+ action: "get",
9992
+ aliases: [],
9993
+ pathParams: ["bundlesUid", "bundlesXResourcesUid"],
9994
+ queryParams: [],
9995
+ edgeCache: true,
9996
+ responseSchema: BundlesResourcesDataSchema,
9997
+ responseType: "object"
9998
+ },
9999
+ {
10000
+ method: "PUT",
10001
+ path: "/bundles/{bundlesUid}/resources/{bundlesXResourcesUid}",
10002
+ chain: "bundles.resources",
10003
+ action: "update",
10004
+ aliases: [],
10005
+ pathParams: ["bundlesUid", "bundlesXResourcesUid"],
10006
+ queryParams: [],
10007
+ edgeCache: false,
10008
+ responseSchema: BundlesResourcesDataSchema,
10009
+ responseType: "object"
10010
+ },
10011
+ {
10012
+ method: "DELETE",
10013
+ path: "/bundles/{bundlesUid}/resources/{bundlesXResourcesUid}",
10014
+ chain: "bundles.resources",
10015
+ action: "delete",
10016
+ aliases: [],
10017
+ pathParams: ["bundlesUid", "bundlesXResourcesUid"],
10018
+ queryParams: [],
10019
+ edgeCache: false,
10020
+ responseSchema: BundlesResourcesDataSchema,
10021
+ responseType: "object"
10022
+ },
10023
+ {
10024
+ method: "GET",
10025
+ path: "/resources",
10026
+ chain: "resources",
10027
+ action: "list",
10028
+ aliases: [],
10029
+ pathParams: [],
10030
+ queryParams: [
10031
+ "limit",
10032
+ "offset",
10033
+ "orderBy",
10034
+ "resourceId",
10035
+ "resourceName",
10036
+ "resourcePath",
10037
+ "resourceType",
10038
+ "statusCd"
10039
+ ],
10040
+ edgeCache: true,
10041
+ responseSchema: ResourcesDataSchema,
10042
+ responseType: "array"
10043
+ },
10044
+ {
10045
+ method: "POST",
10046
+ path: "/resources",
10047
+ chain: "resources",
10048
+ action: "create",
10049
+ aliases: [],
10050
+ pathParams: [],
10051
+ queryParams: [],
10052
+ edgeCache: false,
10053
+ responseSchema: ResourcesDataSchema,
10054
+ responseType: "object"
10055
+ },
10056
+ {
10057
+ method: "GET",
10058
+ path: "/resources/{resourcesUid}",
10059
+ chain: "resources",
10060
+ action: "get",
10061
+ aliases: [],
10062
+ pathParams: ["resourcesUid"],
10063
+ queryParams: [],
10064
+ edgeCache: true,
10065
+ responseSchema: ResourcesDataSchema,
10066
+ responseType: "object"
10067
+ },
10068
+ {
10069
+ method: "PUT",
10070
+ path: "/resources/{resourcesUid}",
10071
+ chain: "resources",
10072
+ action: "update",
10073
+ aliases: [],
10074
+ pathParams: ["resourcesUid"],
10075
+ queryParams: [],
10076
+ edgeCache: false,
10077
+ responseSchema: ResourcesDataSchema,
10078
+ responseType: "object"
10079
+ },
10080
+ {
10081
+ method: "DELETE",
10082
+ path: "/resources/{resourcesUid}",
10083
+ chain: "resources",
10084
+ action: "delete",
10085
+ aliases: [],
10086
+ pathParams: ["resourcesUid"],
10087
+ queryParams: [],
10088
+ edgeCache: false,
10089
+ responseSchema: ResourcesDataSchema,
10090
+ responseType: "object"
10091
+ },
9807
10092
  {
9808
10093
  method: "GET",
9809
10094
  path: "/roles",
@@ -9864,6 +10149,66 @@ var endpoints15 = [
9864
10149
  responseSchema: RolesDataSchema,
9865
10150
  responseType: "object"
9866
10151
  },
10152
+ {
10153
+ method: "GET",
10154
+ path: "/roles/{rolesUid}/bundles",
10155
+ chain: "roles.bundles",
10156
+ action: "list",
10157
+ aliases: [],
10158
+ pathParams: ["rolesUid"],
10159
+ queryParams: ["limit", "offset", "orderBy", "statusCd"],
10160
+ edgeCache: true,
10161
+ responseSchema: RolesBundlesDataSchema,
10162
+ responseType: "array"
10163
+ },
10164
+ {
10165
+ method: "POST",
10166
+ path: "/roles/{rolesUid}/bundles",
10167
+ chain: "roles.bundles",
10168
+ action: "create",
10169
+ aliases: [],
10170
+ pathParams: ["rolesUid"],
10171
+ queryParams: [],
10172
+ edgeCache: false,
10173
+ responseSchema: RolesBundlesDataSchema,
10174
+ responseType: "object"
10175
+ },
10176
+ {
10177
+ method: "GET",
10178
+ path: "/roles/{rolesUid}/bundles/{rolesXBundlesUid}",
10179
+ chain: "roles.bundles",
10180
+ action: "get",
10181
+ aliases: [],
10182
+ pathParams: ["rolesUid", "rolesXBundlesUid"],
10183
+ queryParams: [],
10184
+ edgeCache: true,
10185
+ responseSchema: RolesBundlesDataSchema,
10186
+ responseType: "object"
10187
+ },
10188
+ {
10189
+ method: "PUT",
10190
+ path: "/roles/{rolesUid}/bundles/{rolesXBundlesUid}",
10191
+ chain: "roles.bundles",
10192
+ action: "update",
10193
+ aliases: [],
10194
+ pathParams: ["rolesUid", "rolesXBundlesUid"],
10195
+ queryParams: [],
10196
+ edgeCache: false,
10197
+ responseSchema: RolesBundlesDataSchema,
10198
+ responseType: "object"
10199
+ },
10200
+ {
10201
+ method: "DELETE",
10202
+ path: "/roles/{rolesUid}/bundles/{rolesXBundlesUid}",
10203
+ chain: "roles.bundles",
10204
+ action: "delete",
10205
+ aliases: [],
10206
+ pathParams: ["rolesUid", "rolesXBundlesUid"],
10207
+ queryParams: [],
10208
+ edgeCache: false,
10209
+ responseSchema: RolesBundlesDataSchema,
10210
+ responseType: "object"
10211
+ },
9867
10212
  {
9868
10213
  method: "GET",
9869
10214
  path: "/users",
@@ -10031,8 +10376,12 @@ var AgrIntClient = class extends BaseServiceClient {
10031
10376
  };
10032
10377
  const proxy = createServiceProxy("agr-int", boundExecuteRequest, endpoints15);
10033
10378
  const dataProxy = createDataProxy(proxy);
10379
+ this.bundles = proxy.bundles;
10380
+ this.resources = proxy.resources;
10034
10381
  this.roles = proxy.roles;
10035
10382
  this.users = proxy.users;
10383
+ this.bundlesData = dataProxy.bundles;
10384
+ this.resourcesData = dataProxy.resources;
10036
10385
  this.rolesData = dataProxy.roles;
10037
10386
  this.usersData = dataProxy.users;
10038
10387
  }
@@ -14512,7 +14861,7 @@ function createCrossSiteAuthenticator(augurInfoToken) {
14512
14861
  }
14513
14862
 
14514
14863
  // src/index.ts
14515
- var VERSION = "2026.6.3";
14864
+ var VERSION = "2026.6.5";
14516
14865
  export {
14517
14866
  AgrInfoClient,
14518
14867
  AgrIntClient,