@simpleapps-com/augur-api 2026.6.4 → 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"
@@ -14848,7 +14861,7 @@ function createCrossSiteAuthenticator(augurInfoToken) {
14848
14861
  }
14849
14862
 
14850
14863
  // src/index.ts
14851
- var VERSION = "2026.6.4";
14864
+ var VERSION = "2026.6.5";
14852
14865
  export {
14853
14866
  AgrInfoClient,
14854
14867
  AgrIntClient,