@simpleapps-com/augur-api 2026.6.4 → 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/index.js CHANGED
@@ -500,14 +500,28 @@ var HTTPClient = class {
500
500
  this.inflightRequests.set(requestKey, requestPromise);
501
501
  return requestPromise;
502
502
  }
503
- async post(url, data, config) {
504
- return this.request("POST", url, { data, config });
503
+ // The API declares query params on POST/PUT/DELETE as well as GET. `request`
504
+ // already carries both a body and a query slot; these wrappers simply never
505
+ // exposed the latter, leaving those params unreachable from the clients.
506
+ async post(url, data, params, config) {
507
+ return this.request("POST", url, {
508
+ data,
509
+ params: this.transformEdgeCacheParams(params),
510
+ config
511
+ });
505
512
  }
506
- async put(url, data, config) {
507
- return this.request("PUT", url, { data, config });
513
+ async put(url, data, params, config) {
514
+ return this.request("PUT", url, {
515
+ data,
516
+ params: this.transformEdgeCacheParams(params),
517
+ config
518
+ });
508
519
  }
509
- async delete(url, config) {
510
- return this.request("DELETE", url, { config });
520
+ async delete(url, params, config) {
521
+ return this.request("DELETE", url, {
522
+ params: this.transformEdgeCacheParams(params),
523
+ config
524
+ });
511
525
  }
512
526
  setBearerToken(token) {
513
527
  this.config.bearerToken = token;
@@ -521,7 +535,14 @@ var HTTPClient = class {
521
535
  var normalise = (name) => name.replace(/[-_]/g, "").toLowerCase();
522
536
  var NUMERIC_EXACT = /* @__PURE__ */ new Set(["id", "linenumber"]);
523
537
  var NUMERIC_SUFFIX_RE = /(?:id|uid|no|num|number)$/;
524
- var STRING_OVERRIDES = /* @__PURE__ */ new Set(["siteid", "pono", "importuid", "scheduledimportmasteruid"]);
538
+ var STRING_OVERRIDES = /* @__PURE__ */ new Set([
539
+ "siteid",
540
+ "pono",
541
+ "importuid",
542
+ "scheduledimportmasteruid",
543
+ "grantid",
544
+ "salesrepid"
545
+ ]);
525
546
  var isNumericPlaceholder = (placeholder) => {
526
547
  const normalised = normalise(placeholder);
527
548
  if (STRING_OVERRIDES.has(normalised)) return false;
@@ -665,11 +686,11 @@ var BaseServiceClient = class _BaseServiceClient {
665
686
  * @throws ValidationError When parameters or response validation fails
666
687
  * @throws AugurError For HTTP errors (handled by HTTPClient interceptors)
667
688
  */
668
- async executeRequest(config, params, pathParams) {
689
+ async executeRequest(config, params, pathParams, query) {
669
690
  const endpoint = this.buildEndpointPath(config.path, pathParams);
670
691
  try {
671
692
  const validatedParams = this.validateParameters(config, params);
672
- const response = await this.executeHttpRequest(config, endpoint, validatedParams);
693
+ const response = await this.executeHttpRequest(config, endpoint, validatedParams, query);
673
694
  const validatedResponse = v2.parse(config.responseSchema, response);
674
695
  return validatedResponse;
675
696
  } catch (error) {
@@ -697,18 +718,24 @@ var BaseServiceClient = class _BaseServiceClient {
697
718
  }
698
719
  /**
699
720
  * Execute HTTP request based on the configured method
721
+ *
722
+ * For GET, `validatedParams` IS the query string. For POST/PUT it is the
723
+ * request body, and `query` carries the query string alongside it — the API
724
+ * declares query params on write methods too, and DELETE previously dropped
725
+ * them entirely.
700
726
  */
701
- async executeHttpRequest(config, endpoint, validatedParams) {
727
+ async executeHttpRequest(config, endpoint, validatedParams, query) {
702
728
  const url = `${this.baseUrl}${endpoint}`;
729
+ const rest = query === void 0 ? [] : [query];
703
730
  switch (config.method) {
704
731
  case "GET":
705
732
  return await this.http.get(url, validatedParams);
706
733
  case "POST":
707
- return await this.http.post(url, validatedParams);
734
+ return await this.http.post(url, validatedParams, ...rest);
708
735
  case "PUT":
709
- return await this.http.put(url, validatedParams);
736
+ return await this.http.put(url, validatedParams, ...rest);
710
737
  case "DELETE":
711
- return await this.http.delete(url);
738
+ return await this.http.delete(url, ...rest);
712
739
  default:
713
740
  throw new Error(`Unsupported HTTP method: ${config.method}`);
714
741
  }
@@ -1406,32 +1433,71 @@ function createNodeObject(serviceName, executeRequest, node) {
1406
1433
  }
1407
1434
  return obj;
1408
1435
  }
1436
+ function splitPathArgs(pathParams, args) {
1437
+ const pathParamMap = {};
1438
+ let index = 0;
1439
+ for (const name of pathParams) {
1440
+ if (index >= args.length) {
1441
+ break;
1442
+ }
1443
+ pathParamMap[name] = String(args[index]);
1444
+ index++;
1445
+ }
1446
+ return { pathParamMap, rest: args.slice(index) };
1447
+ }
1448
+ function splitBodyAndQuery(method, rest) {
1449
+ if (method === "POST" || method === "PUT") {
1450
+ return { body: rest[0], query: rest[1] };
1451
+ }
1452
+ if (method === "DELETE") {
1453
+ return { body: void 0, query: rest[0] };
1454
+ }
1455
+ return { body: rest[0], query: void 0 };
1456
+ }
1457
+ function normaliseLegacyParamCase(params, declared) {
1458
+ if (!params || typeof params !== "object" || Array.isArray(params) || declared.length === 0) {
1459
+ return params;
1460
+ }
1461
+ const source = params;
1462
+ const wanted = new Set(declared);
1463
+ const out = { ...source };
1464
+ let renamed = false;
1465
+ for (const [key, value] of Object.entries(source)) {
1466
+ const camel = key.replace(/_([a-z0-9])/g, (_m, c) => c.toUpperCase());
1467
+ if (camel === key || !wanted.has(camel)) {
1468
+ continue;
1469
+ }
1470
+ renamed = true;
1471
+ delete out[key];
1472
+ if (!(camel in source)) {
1473
+ out[camel] = value;
1474
+ }
1475
+ }
1476
+ return renamed ? out : params;
1477
+ }
1409
1478
  function createActionFunction(_serviceName, executeRequest, endpoint) {
1410
1479
  const { method, path, pathParams } = endpoint;
1411
1480
  return async (...args) => {
1412
- const pathParamMap = {};
1413
- let argIndex = 0;
1414
- for (const paramName of pathParams) {
1415
- if (argIndex < args.length) {
1416
- pathParamMap[paramName] = String(args[argIndex]);
1417
- argIndex++;
1418
- }
1419
- }
1420
- const remainingArg = argIndex < args.length ? args[argIndex] : void 0;
1481
+ const { pathParamMap, rest } = splitPathArgs(pathParams, args);
1482
+ const { body, query: trailing } = splitBodyAndQuery(method, rest);
1421
1483
  const hasQueryParams = endpoint.queryParams.length > 0;
1484
+ const query = normaliseLegacyParamCase(
1485
+ hasQueryParams ? trailing : void 0,
1486
+ endpoint.queryParams
1487
+ );
1488
+ const wireParams = (value) => method === "GET" ? normaliseLegacyParamCase(value, endpoint.queryParams) : value;
1422
1489
  const config = {
1423
1490
  method,
1424
1491
  path,
1425
1492
  ...hasQueryParams ? { paramsSchema: PassthroughParamsSchema } : {},
1426
1493
  responseSchema: PassthroughResponseSchema
1427
1494
  };
1428
- const hasPathParams = Object.keys(pathParamMap).length > 0;
1429
- if (hasPathParams) {
1430
- const params = hasQueryParams ? remainingArg : remainingArg ?? {};
1431
- return executeRequest(config, params, pathParamMap);
1495
+ if (Object.keys(pathParamMap).length > 0) {
1496
+ const params = wireParams(hasQueryParams ? body : body ?? {});
1497
+ return query === void 0 ? executeRequest(config, params, pathParamMap) : executeRequest(config, params, pathParamMap, query);
1432
1498
  }
1433
- if (hasQueryParams || remainingArg !== void 0) {
1434
- return executeRequest(config, remainingArg);
1499
+ if (hasQueryParams || body !== void 0) {
1500
+ return query === void 0 ? executeRequest(config, wireParams(body)) : executeRequest(config, wireParams(body), void 0, query);
1435
1501
  }
1436
1502
  return executeRequest(config);
1437
1503
  };
@@ -1513,6 +1579,17 @@ var UsergroupsListParamsSchema = v4.looseObject({
1513
1579
  orderBy: v4.optional(v4.string()),
1514
1580
  parentIdList: v4.optional(v4.string())
1515
1581
  });
1582
+ var UsersListParamsSchema = v4.looseObject({
1583
+ ...EdgeCacheParamsSchema.entries,
1584
+ accessLevelList: v4.optional(v4.string()),
1585
+ blocked: v4.optional(v4.pipe(v4.unknown(), v4.transform(Number))),
1586
+ contactId: v4.optional(v4.string()),
1587
+ customerId: v4.optional(v4.pipe(v4.unknown(), v4.transform(Number))),
1588
+ limit: v4.optional(v4.pipe(v4.unknown(), v4.transform(Number))),
1589
+ offset: v4.optional(v4.pipe(v4.unknown(), v4.transform(Number))),
1590
+ orderBy: v4.optional(v4.string()),
1591
+ q: v4.optional(v4.string())
1592
+ });
1516
1593
  var UsersCreateParamsSchema = v4.looseObject({
1517
1594
  accessLevelList: v4.optional(v4.string()),
1518
1595
  customerId: v4.optional(v4.pipe(v4.unknown(), v4.transform(Number))),
@@ -1528,7 +1605,8 @@ var UsersDocListParamsSchema = v4.looseObject({
1528
1605
  var UsersGroupsListParamsSchema = v4.looseObject({
1529
1606
  ...EdgeCacheParamsSchema.entries,
1530
1607
  limit: v4.optional(v4.pipe(v4.unknown(), v4.transform(Number))),
1531
- offset: v4.optional(v4.pipe(v4.unknown(), v4.transform(Number)))
1608
+ offset: v4.optional(v4.pipe(v4.unknown(), v4.transform(Number))),
1609
+ orderBy: v4.optional(v4.string())
1532
1610
  });
1533
1611
  var UsersTrinityListParamsSchema = v4.looseObject({
1534
1612
  ...EdgeCacheParamsSchema.entries,
@@ -1663,7 +1741,16 @@ var endpoints = [
1663
1741
  action: "list",
1664
1742
  aliases: [],
1665
1743
  pathParams: [],
1666
- queryParams: [],
1744
+ queryParams: [
1745
+ "accessLevelList",
1746
+ "blocked",
1747
+ "contactId",
1748
+ "customerId",
1749
+ "limit",
1750
+ "offset",
1751
+ "orderBy",
1752
+ "q"
1753
+ ],
1667
1754
  edgeCache: true,
1668
1755
  responseSchema: PassthroughDataSchema,
1669
1756
  responseType: "passthrough"
@@ -1747,7 +1834,7 @@ var endpoints = [
1747
1834
  action: "list",
1748
1835
  aliases: [],
1749
1836
  pathParams: ["id"],
1750
- queryParams: ["limit", "offset"],
1837
+ queryParams: ["limit", "offset", "orderBy"],
1751
1838
  edgeCache: true,
1752
1839
  responseSchema: PassthroughDataSchema,
1753
1840
  responseType: "passthrough"
@@ -1874,8 +1961,8 @@ function createPingResource(executeRequest) {
1874
1961
  var JoomlaClient = class extends BaseServiceClient {
1875
1962
  constructor(http, baseUrl = "https://joomla.augur-api.com") {
1876
1963
  super("joomla", http, baseUrl);
1877
- const boundExecuteRequest = (config, params, pathParams) => {
1878
- return this.executeRequest(config, params, pathParams);
1964
+ const boundExecuteRequest = (config, params, pathParams, query) => {
1965
+ return this.executeRequest(config, params, pathParams, query);
1879
1966
  };
1880
1967
  const proxy = createServiceProxy("joomla", boundExecuteRequest, endpoints);
1881
1968
  const dataProxy = createDataProxy(proxy);
@@ -1904,15 +1991,15 @@ var JoomlaClient = class extends BaseServiceClient {
1904
1991
  var v7 = __toESM(require("valibot"));
1905
1992
  var CartHdrListListParamsSchema = v7.looseObject({
1906
1993
  ...EdgeCacheParamsSchema.entries,
1907
- user_id: v7.pipe(v7.unknown(), v7.transform(Number))
1994
+ userId: v7.pipe(v7.unknown(), v7.transform(Number))
1908
1995
  });
1909
1996
  var CartHdrLookupGetParamsSchema = v7.looseObject({
1910
1997
  ...EdgeCacheParamsSchema.entries,
1911
- cart_token: v7.optional(v7.string()),
1912
- contact_id: v7.pipe(v7.unknown(), v7.transform(Number)),
1913
- customer_id: v7.pipe(v7.unknown(), v7.transform(Number)),
1914
- user_cart_no: v7.optional(v7.pipe(v7.unknown(), v7.transform(Number))),
1915
- user_id: v7.pipe(v7.unknown(), v7.transform(Number))
1998
+ cartToken: v7.optional(v7.string()),
1999
+ contactId: v7.pipe(v7.unknown(), v7.transform(Number)),
2000
+ customerId: v7.pipe(v7.unknown(), v7.transform(Number)),
2001
+ userCartNo: v7.optional(v7.pipe(v7.unknown(), v7.transform(Number))),
2002
+ userId: v7.pipe(v7.unknown(), v7.transform(Number))
1916
2003
  });
1917
2004
  var CartHdrAlsoBoughtListParamsSchema = v7.looseObject({
1918
2005
  ...EdgeCacheParamsSchema.entries,
@@ -1921,7 +2008,7 @@ var CartHdrAlsoBoughtListParamsSchema = v7.looseObject({
1921
2008
  });
1922
2009
  var CheckoutDocListParamsSchema = v7.looseObject({
1923
2010
  ...EdgeCacheParamsSchema.entries,
1924
- cart_hdr_uid: v7.optional(v7.pipe(v7.unknown(), v7.transform(Number)))
2011
+ cartHdrUid: v7.optional(v7.pipe(v7.unknown(), v7.transform(Number)))
1925
2012
  });
1926
2013
  var PassthroughDataSchema2 = v7.record(v7.string(), v7.unknown());
1927
2014
 
@@ -1934,7 +2021,7 @@ var endpoints2 = [
1934
2021
  action: "list",
1935
2022
  aliases: [],
1936
2023
  pathParams: [],
1937
- queryParams: ["user_id"],
2024
+ queryParams: ["userId"],
1938
2025
  edgeCache: true,
1939
2026
  responseSchema: PassthroughDataSchema2,
1940
2027
  responseType: "passthrough"
@@ -1946,7 +2033,7 @@ var endpoints2 = [
1946
2033
  action: "get",
1947
2034
  aliases: [],
1948
2035
  pathParams: [],
1949
- queryParams: ["cart_token", "contact_id", "customer_id", "user_cart_no", "user_id"],
2036
+ queryParams: ["cartToken", "contactId", "customerId", "userCartNo", "userId"],
1950
2037
  edgeCache: true,
1951
2038
  responseSchema: PassthroughDataSchema2,
1952
2039
  responseType: "passthrough"
@@ -2066,7 +2153,7 @@ var endpoints2 = [
2066
2153
  action: "list",
2067
2154
  aliases: ["get"],
2068
2155
  pathParams: ["checkoutUid"],
2069
- queryParams: ["cart_hdr_uid"],
2156
+ queryParams: ["cartHdrUid"],
2070
2157
  edgeCache: true,
2071
2158
  responseSchema: PassthroughDataSchema2,
2072
2159
  responseType: "passthrough"
@@ -2145,8 +2232,8 @@ function createHealthCheckDataResource2(healthCheck) {
2145
2232
  var CommerceClient = class extends BaseServiceClient {
2146
2233
  constructor(http, baseUrl = "https://commerce.augur-api.com") {
2147
2234
  super("commerce", http, baseUrl);
2148
- const boundExecuteRequest = (config, params, pathParams) => {
2149
- return this.executeRequest(config, params, pathParams);
2235
+ const boundExecuteRequest = (config, params, pathParams, query) => {
2236
+ return this.executeRequest(config, params, pathParams, query);
2150
2237
  };
2151
2238
  const proxy = createServiceProxy(
2152
2239
  "commerce",
@@ -2594,8 +2681,8 @@ function createPingDataResource(ping) {
2594
2681
  var PricingClient = class extends BaseServiceClient {
2595
2682
  constructor(http, baseUrl = "https://pricing.augur-api.com") {
2596
2683
  super("pricing", http, baseUrl);
2597
- const boundExecuteRequest = (config, params, pathParams) => {
2598
- return this.executeRequest(config, params, pathParams);
2684
+ const boundExecuteRequest = (config, params, pathParams, query) => {
2685
+ return this.executeRequest(config, params, pathParams, query);
2599
2686
  };
2600
2687
  const proxy = createServiceProxy("pricing", boundExecuteRequest, endpoints3);
2601
2688
  const dataProxy = createDataProxy(proxy);
@@ -3509,8 +3596,8 @@ function createPingDataResource2(ping) {
3509
3596
  var VMIClient = class extends BaseServiceClient {
3510
3597
  constructor(http, baseUrl = "https://vmi.augur-api.com") {
3511
3598
  super("vmi", http, baseUrl);
3512
- const boundExecuteRequest = (config, params, pathParams) => {
3513
- return this.executeRequest(config, params, pathParams);
3599
+ const boundExecuteRequest = (config, params, pathParams, query) => {
3600
+ return this.executeRequest(config, params, pathParams, query);
3514
3601
  };
3515
3602
  const proxy = createServiceProxy("vmi", boundExecuteRequest, endpoints4);
3516
3603
  const dataProxy = createDataProxy(proxy);
@@ -3559,6 +3646,28 @@ var ItemSearchListParamsSchema = v10.looseObject({
3559
3646
  tags: v10.optional(v10.string()),
3560
3647
  variantFilter: v10.optional(v10.string())
3561
3648
  });
3649
+ var ItemSearchFacetsListParamsSchema = v10.looseObject({
3650
+ ...EdgeCacheParamsSchema.entries,
3651
+ classId5ExcludeList: v10.optional(v10.string()),
3652
+ classId5List: v10.optional(v10.string()),
3653
+ discontinuedAny: v10.optional(v10.string()),
3654
+ fields: v10.optional(v10.string()),
3655
+ filters: v10.optional(v10.string()),
3656
+ from: v10.optional(v10.pipe(v10.unknown(), v10.transform(Number))),
3657
+ itemCategoryUidList: v10.optional(v10.string()),
3658
+ jobNumbers: v10.optional(v10.string()),
3659
+ operator: v10.optional(v10.string()),
3660
+ parentCategoryUid: v10.optional(v10.pipe(v10.unknown(), v10.transform(Number))),
3661
+ q: v10.string(),
3662
+ searchType: v10.optional(v10.string()),
3663
+ size: v10.optional(v10.pipe(v10.unknown(), v10.transform(Number))),
3664
+ sort: v10.optional(v10.string()),
3665
+ sourceFieldsList: v10.optional(v10.string()),
3666
+ stockStatus: v10.optional(v10.string()),
3667
+ tags: v10.optional(v10.string()),
3668
+ useBrandFolderDoc: v10.optional(v10.string()),
3669
+ variantFilter: v10.optional(v10.string())
3670
+ });
3562
3671
  var ItemSearchAttributesListParamsSchema = v10.looseObject({
3563
3672
  ...EdgeCacheParamsSchema.entries,
3564
3673
  cacheSiteId: v10.optional(v10.string()),
@@ -3605,7 +3714,8 @@ var QueryStringRedirectDataSchema = v10.looseObject({
3605
3714
  dateLastModified: v10.optional(v10.string()),
3606
3715
  updateCd: v10.optional(v10.number()),
3607
3716
  statusCd: v10.optional(v10.number()),
3608
- processCd: v10.optional(v10.number())
3717
+ processCd: v10.optional(v10.number()),
3718
+ queryString: v10.optional(v10.nullable(v10.string()))
3609
3719
  });
3610
3720
  var SuggestionsDataSchema = v10.looseObject({
3611
3721
  suggestionsUid: v10.optional(v10.number()),
@@ -3654,6 +3764,38 @@ var endpoints5 = [
3654
3764
  responseSchema: PassthroughDataSchema5,
3655
3765
  responseType: "passthrough"
3656
3766
  },
3767
+ {
3768
+ method: "GET",
3769
+ path: "/item-search-facets",
3770
+ chain: "itemSearchFacets",
3771
+ action: "list",
3772
+ aliases: [],
3773
+ pathParams: [],
3774
+ queryParams: [
3775
+ "classId5ExcludeList",
3776
+ "classId5List",
3777
+ "discontinuedAny",
3778
+ "fields",
3779
+ "filters",
3780
+ "from",
3781
+ "itemCategoryUidList",
3782
+ "jobNumbers",
3783
+ "operator",
3784
+ "parentCategoryUid",
3785
+ "q",
3786
+ "searchType",
3787
+ "size",
3788
+ "sort",
3789
+ "sourceFieldsList",
3790
+ "stockStatus",
3791
+ "tags",
3792
+ "useBrandFolderDoc",
3793
+ "variantFilter"
3794
+ ],
3795
+ edgeCache: true,
3796
+ responseSchema: PassthroughDataSchema5,
3797
+ responseType: "passthrough"
3798
+ },
3657
3799
  {
3658
3800
  method: "GET",
3659
3801
  path: "/item-search/attributes",
@@ -3922,8 +4064,8 @@ function createHealthCheckDataResource5(healthCheck) {
3922
4064
  var OpenSearchClient = class extends BaseServiceClient {
3923
4065
  constructor(http, baseUrl = "https://open-search.augur-api.com") {
3924
4066
  super("open-search", http, baseUrl);
3925
- const boundExecuteRequest = (config, params, pathParams) => {
3926
- return this.executeRequest(config, params, pathParams);
4067
+ const boundExecuteRequest = (config, params, pathParams, query) => {
4068
+ return this.executeRequest(config, params, pathParams, query);
3927
4069
  };
3928
4070
  const proxy = createServiceProxy(
3929
4071
  "open-search",
@@ -3932,10 +4074,12 @@ var OpenSearchClient = class extends BaseServiceClient {
3932
4074
  );
3933
4075
  const dataProxy = createDataProxy(proxy);
3934
4076
  this.itemSearch = proxy.itemSearch;
4077
+ this.itemSearchFacets = proxy.itemSearchFacets;
3935
4078
  this.items = proxy.items;
3936
4079
  this.queryStringRedirect = proxy.queryStringRedirect;
3937
4080
  this.suggestions = proxy.suggestions;
3938
4081
  this.itemSearchData = dataProxy.itemSearch;
4082
+ this.itemSearchFacetsData = dataProxy.itemSearchFacets;
3939
4083
  this.itemsData = dataProxy.items;
3940
4084
  this.queryStringRedirectData = dataProxy.queryStringRedirect;
3941
4085
  this.suggestionsData = dataProxy.suggestions;
@@ -3980,6 +4124,8 @@ var AttributesItemsListParamsSchema = v11.looseObject({
3980
4124
  attributeValueUid: v11.optional(v11.pipe(v11.unknown(), v11.transform(Number))),
3981
4125
  excludeValues: v11.optional(v11.string()),
3982
4126
  includeValues: v11.optional(v11.string()),
4127
+ itemId: v11.optional(v11.string()),
4128
+ itemIdSearch: v11.optional(v11.string()),
3983
4129
  limit: v11.optional(v11.pipe(v11.unknown(), v11.transform(Number))),
3984
4130
  offset: v11.optional(v11.pipe(v11.unknown(), v11.transform(Number))),
3985
4131
  orderBy: v11.optional(v11.string()),
@@ -4207,6 +4353,19 @@ var ItemUomListParamsSchema = v11.looseObject({
4207
4353
  orderBy: v11.optional(v11.string()),
4208
4354
  unitOfMeasure: v11.optional(v11.string())
4209
4355
  });
4356
+ var ItemWishlistGetParamsSchema = v11.looseObject({
4357
+ ...EdgeCacheParamsSchema.entries,
4358
+ limit: v11.optional(v11.pipe(v11.unknown(), v11.transform(Number))),
4359
+ offset: v11.optional(v11.pipe(v11.unknown(), v11.transform(Number))),
4360
+ orderBy: v11.optional(v11.string()),
4361
+ statusCd: v11.optional(v11.pipe(v11.unknown(), v11.transform(Number)))
4362
+ });
4363
+ var ItemWishlistHdrGetParamsSchema = v11.looseObject({
4364
+ ...EdgeCacheParamsSchema.entries,
4365
+ limit: v11.optional(v11.pipe(v11.unknown(), v11.transform(Number))),
4366
+ offset: v11.optional(v11.pipe(v11.unknown(), v11.transform(Number))),
4367
+ statusCd: v11.optional(v11.pipe(v11.unknown(), v11.transform(Number)))
4368
+ });
4210
4369
  var LocationsBinsListParamsSchema = v11.looseObject({
4211
4370
  ...EdgeCacheParamsSchema.entries,
4212
4371
  bin: v11.optional(v11.string()),
@@ -4321,7 +4480,10 @@ var AttributesItemsDataSchema = v11.looseObject({
4321
4480
  processCd: v11.optional(v11.number()),
4322
4481
  statusCd: v11.optional(v11.number()),
4323
4482
  attributeValueUid: v11.optional(v11.number()),
4324
- onlineCd: v11.optional(v11.number())
4483
+ onlineCd: v11.optional(v11.number()),
4484
+ attributeDesc: v11.optional(v11.nullable(v11.string())),
4485
+ attributeId: v11.optional(v11.string()),
4486
+ itemId: v11.optional(v11.string())
4325
4487
  });
4326
4488
  var AttributesValuesDataSchema = v11.looseObject({
4327
4489
  attributeValueUid: v11.optional(v11.number()),
@@ -4413,7 +4575,23 @@ var InvLocDataSchema = v11.looseObject({
4413
4575
  updateCd: v11.optional(v11.number()),
4414
4576
  productGroupId: v11.optional(v11.nullable(v11.string())),
4415
4577
  purchaseDiscountGroup: v11.optional(v11.nullable(v11.string())),
4416
- salesDiscountGroup: v11.optional(v11.nullable(v11.string()))
4578
+ salesDiscountGroup: v11.optional(v11.nullable(v11.string())),
4579
+ purchaseClass: v11.optional(v11.nullable(v11.string()))
4580
+ });
4581
+ var InvMastAttributesDataSchema = v11.looseObject({
4582
+ itemAttributeValueUid: v11.optional(v11.number()),
4583
+ invMastUid: v11.optional(v11.number()),
4584
+ attributeUid: v11.optional(v11.number()),
4585
+ attributeValue: v11.optional(v11.nullable(v11.string())),
4586
+ dateCreated: v11.optional(v11.string()),
4587
+ createdBy: v11.optional(v11.string()),
4588
+ dateLastModified: v11.optional(v11.string()),
4589
+ lastMaintainedBy: v11.optional(v11.string()),
4590
+ updateCd: v11.optional(v11.number()),
4591
+ processCd: v11.optional(v11.number()),
4592
+ statusCd: v11.optional(v11.number()),
4593
+ attributeValueUid: v11.optional(v11.number()),
4594
+ onlineCd: v11.optional(v11.number())
4417
4595
  });
4418
4596
  var InvMastFaqDataSchema = v11.looseObject({
4419
4597
  invMastFaqUid: v11.optional(v11.number()),
@@ -4659,6 +4837,8 @@ var endpoints6 = [
4659
4837
  "attributeValueUid",
4660
4838
  "excludeValues",
4661
4839
  "includeValues",
4840
+ "itemId",
4841
+ "itemIdSearch",
4662
4842
  "limit",
4663
4843
  "offset",
4664
4844
  "orderBy",
@@ -5138,7 +5318,7 @@ var endpoints6 = [
5138
5318
  pathParams: ["invMastUid"],
5139
5319
  queryParams: [],
5140
5320
  edgeCache: false,
5141
- responseSchema: AttributesItemsDataSchema,
5321
+ responseSchema: InvMastAttributesDataSchema,
5142
5322
  responseType: "object"
5143
5323
  },
5144
5324
  {
@@ -5162,7 +5342,7 @@ var endpoints6 = [
5162
5342
  pathParams: ["invMastUid", "attributeUid"],
5163
5343
  queryParams: [],
5164
5344
  edgeCache: false,
5165
- responseSchema: AttributesItemsDataSchema,
5345
+ responseSchema: InvMastAttributesDataSchema,
5166
5346
  responseType: "object"
5167
5347
  },
5168
5348
  {
@@ -5174,7 +5354,7 @@ var endpoints6 = [
5174
5354
  pathParams: ["invMastUid", "attributeUid", "attributeValueUid"],
5175
5355
  queryParams: [],
5176
5356
  edgeCache: false,
5177
- responseSchema: AttributesItemsDataSchema,
5357
+ responseSchema: InvMastAttributesDataSchema,
5178
5358
  responseType: "object"
5179
5359
  },
5180
5360
  {
@@ -5481,7 +5661,7 @@ var endpoints6 = [
5481
5661
  action: "get",
5482
5662
  aliases: [],
5483
5663
  pathParams: ["usersId"],
5484
- queryParams: [],
5664
+ queryParams: ["limit", "offset", "orderBy", "statusCd"],
5485
5665
  edgeCache: true,
5486
5666
  responseSchema: PassthroughDataSchema6,
5487
5667
  responseType: "passthrough"
@@ -5529,7 +5709,7 @@ var endpoints6 = [
5529
5709
  action: "get",
5530
5710
  aliases: [],
5531
5711
  pathParams: ["usersId", "itemWishlistHdrUid"],
5532
- queryParams: [],
5712
+ queryParams: ["limit", "offset", "statusCd"],
5533
5713
  edgeCache: true,
5534
5714
  responseSchema: PassthroughDataSchema6,
5535
5715
  responseType: "passthrough"
@@ -5904,8 +6084,8 @@ function createWhoamiDataResource(whoami) {
5904
6084
  var ItemsClient = class extends BaseServiceClient {
5905
6085
  constructor(http, baseUrl = "https://items.augur-api.com") {
5906
6086
  super("items", http, baseUrl);
5907
- const boundExecuteRequest = (config, params, pathParams) => {
5908
- return this.executeRequest(config, params, pathParams);
6087
+ const boundExecuteRequest = (config, params, pathParams, query) => {
6088
+ return this.executeRequest(config, params, pathParams, query);
5909
6089
  };
5910
6090
  const proxy = createServiceProxy("items", boundExecuteRequest, endpoints6);
5911
6091
  const dataProxy = createDataProxy(proxy);
@@ -6370,8 +6550,8 @@ function createHealthCheckDataResource7(healthCheck) {
6370
6550
  var LegacyClient = class extends BaseServiceClient {
6371
6551
  constructor(http, baseUrl = "https://legacy.augur-api.com") {
6372
6552
  super("legacy", http, baseUrl);
6373
- const boundExecuteRequest = (config, params, pathParams) => {
6374
- return this.executeRequest(config, params, pathParams);
6553
+ const boundExecuteRequest = (config, params, pathParams, query) => {
6554
+ return this.executeRequest(config, params, pathParams, query);
6375
6555
  };
6376
6556
  const proxy = createServiceProxy("legacy", boundExecuteRequest, endpoints7);
6377
6557
  const dataProxy = createDataProxy(proxy);
@@ -6401,11 +6581,6 @@ var BinTransferListParamsSchema = v14.looseObject({
6401
6581
  offset: v14.optional(v14.pipe(v14.unknown(), v14.transform(Number))),
6402
6582
  statusCd: v14.optional(v14.pipe(v14.unknown(), v14.transform(Number)))
6403
6583
  });
6404
- var BinTransferCreateParamsSchema = v14.looseObject({
6405
- limit: v14.optional(v14.pipe(v14.unknown(), v14.transform(Number))),
6406
- offset: v14.optional(v14.pipe(v14.unknown(), v14.transform(Number))),
6407
- statusCd: v14.optional(v14.pipe(v14.unknown(), v14.transform(Number)))
6408
- });
6409
6584
  var PurchaseOrderReceiptListParamsSchema = v14.looseObject({
6410
6585
  ...EdgeCacheParamsSchema.entries,
6411
6586
  limit: v14.optional(v14.pipe(v14.unknown(), v14.transform(Number))),
@@ -6413,12 +6588,6 @@ var PurchaseOrderReceiptListParamsSchema = v14.looseObject({
6413
6588
  referenceNo: v14.optional(v14.string()),
6414
6589
  statusCd: v14.optional(v14.pipe(v14.unknown(), v14.transform(Number)))
6415
6590
  });
6416
- var PurchaseOrderReceiptCreateParamsSchema = v14.looseObject({
6417
- limit: v14.optional(v14.pipe(v14.unknown(), v14.transform(Number))),
6418
- offset: v14.optional(v14.pipe(v14.unknown(), v14.transform(Number))),
6419
- referenceNo: v14.optional(v14.string()),
6420
- statusCd: v14.optional(v14.pipe(v14.unknown(), v14.transform(Number)))
6421
- });
6422
6591
  var ReceivingListParamsSchema = v14.looseObject({
6423
6592
  ...EdgeCacheParamsSchema.entries,
6424
6593
  limit: v14.optional(v14.pipe(v14.unknown(), v14.transform(Number))),
@@ -6426,12 +6595,6 @@ var ReceivingListParamsSchema = v14.looseObject({
6426
6595
  poNo: v14.optional(v14.pipe(v14.unknown(), v14.transform(Number))),
6427
6596
  statusCd: v14.optional(v14.pipe(v14.unknown(), v14.transform(Number)))
6428
6597
  });
6429
- var ReceivingCreateParamsSchema = v14.looseObject({
6430
- limit: v14.optional(v14.pipe(v14.unknown(), v14.transform(Number))),
6431
- offset: v14.optional(v14.pipe(v14.unknown(), v14.transform(Number))),
6432
- poNo: v14.optional(v14.pipe(v14.unknown(), v14.transform(Number))),
6433
- statusCd: v14.optional(v14.pipe(v14.unknown(), v14.transform(Number)))
6434
- });
6435
6598
  var TransferListParamsSchema = v14.looseObject({
6436
6599
  ...EdgeCacheParamsSchema.entries,
6437
6600
  limit: v14.optional(v14.pipe(v14.unknown(), v14.transform(Number))),
@@ -6439,12 +6602,6 @@ var TransferListParamsSchema = v14.looseObject({
6439
6602
  referenceNo: v14.optional(v14.string()),
6440
6603
  statusCd: v14.optional(v14.pipe(v14.unknown(), v14.transform(Number)))
6441
6604
  });
6442
- var TransferCreateParamsSchema = v14.looseObject({
6443
- limit: v14.optional(v14.pipe(v14.unknown(), v14.transform(Number))),
6444
- offset: v14.optional(v14.pipe(v14.unknown(), v14.transform(Number))),
6445
- referenceNo: v14.optional(v14.string()),
6446
- statusCd: v14.optional(v14.pipe(v14.unknown(), v14.transform(Number)))
6447
- });
6448
6605
  var TransferReceiptListParamsSchema = v14.looseObject({
6449
6606
  ...EdgeCacheParamsSchema.entries,
6450
6607
  limit: v14.optional(v14.pipe(v14.unknown(), v14.transform(Number))),
@@ -6452,12 +6609,6 @@ var TransferReceiptListParamsSchema = v14.looseObject({
6452
6609
  referenceNo: v14.optional(v14.string()),
6453
6610
  statusCd: v14.optional(v14.pipe(v14.unknown(), v14.transform(Number)))
6454
6611
  });
6455
- var TransferReceiptCreateParamsSchema = v14.looseObject({
6456
- limit: v14.optional(v14.pipe(v14.unknown(), v14.transform(Number))),
6457
- offset: v14.optional(v14.pipe(v14.unknown(), v14.transform(Number))),
6458
- referenceNo: v14.optional(v14.string()),
6459
- statusCd: v14.optional(v14.pipe(v14.unknown(), v14.transform(Number)))
6460
- });
6461
6612
  var TransferShippingListParamsSchema = v14.looseObject({
6462
6613
  ...EdgeCacheParamsSchema.entries,
6463
6614
  limit: v14.optional(v14.pipe(v14.unknown(), v14.transform(Number))),
@@ -6465,12 +6616,6 @@ var TransferShippingListParamsSchema = v14.looseObject({
6465
6616
  referenceNo: v14.optional(v14.string()),
6466
6617
  statusCd: v14.optional(v14.pipe(v14.unknown(), v14.transform(Number)))
6467
6618
  });
6468
- var TransferShippingCreateParamsSchema = v14.looseObject({
6469
- limit: v14.optional(v14.pipe(v14.unknown(), v14.transform(Number))),
6470
- offset: v14.optional(v14.pipe(v14.unknown(), v14.transform(Number))),
6471
- referenceNo: v14.optional(v14.string()),
6472
- statusCd: v14.optional(v14.pipe(v14.unknown(), v14.transform(Number)))
6473
- });
6474
6619
  var BinTransferDataSchema = v14.looseObject({
6475
6620
  binTransferHdrUid: v14.optional(v14.number()),
6476
6621
  importState: v14.optional(v14.string()),
@@ -6560,6 +6705,30 @@ var PassthroughDataSchema8 = v14.record(v14.string(), v14.unknown());
6560
6705
 
6561
6706
  // src/services/nexus/generated/endpoints.ts
6562
6707
  var endpoints8 = [
6708
+ {
6709
+ method: "GET",
6710
+ path: "/bin-transfer",
6711
+ chain: "binTransfer",
6712
+ action: "list",
6713
+ aliases: [],
6714
+ pathParams: [],
6715
+ queryParams: ["limit", "offset", "statusCd"],
6716
+ edgeCache: true,
6717
+ responseSchema: BinTransferDataSchema,
6718
+ responseType: "array"
6719
+ },
6720
+ {
6721
+ method: "POST",
6722
+ path: "/bin-transfer",
6723
+ chain: "binTransfer",
6724
+ action: "create",
6725
+ aliases: [],
6726
+ pathParams: [],
6727
+ queryParams: [],
6728
+ edgeCache: false,
6729
+ responseSchema: BinTransferDataSchema,
6730
+ responseType: "object"
6731
+ },
6563
6732
  {
6564
6733
  method: "GET",
6565
6734
  path: "/bin-transfer/{binTransferHdrUid}",
@@ -6598,38 +6767,38 @@ var endpoints8 = [
6598
6767
  },
6599
6768
  {
6600
6769
  method: "GET",
6601
- path: "/bin-transfer",
6602
- chain: "binTransfer",
6770
+ path: "/bin-transfer/{binTransferHdrUid}/status",
6771
+ chain: "binTransfer.status",
6772
+ action: "list",
6773
+ aliases: [],
6774
+ pathParams: ["binTransferHdrUid"],
6775
+ queryParams: [],
6776
+ edgeCache: true,
6777
+ responseSchema: BinTransferStatusDataSchema,
6778
+ responseType: "object"
6779
+ },
6780
+ {
6781
+ method: "GET",
6782
+ path: "/purchase-order-receipt",
6783
+ chain: "purchaseOrderReceipt",
6603
6784
  action: "list",
6604
6785
  aliases: [],
6605
6786
  pathParams: [],
6606
- queryParams: ["limit", "offset", "statusCd"],
6787
+ queryParams: ["limit", "offset", "referenceNo", "statusCd"],
6607
6788
  edgeCache: true,
6608
- responseSchema: BinTransferDataSchema,
6789
+ responseSchema: PurchaseOrderReceiptDataSchema,
6609
6790
  responseType: "array"
6610
6791
  },
6611
6792
  {
6612
6793
  method: "POST",
6613
- path: "/bin-transfer",
6614
- chain: "binTransfer",
6794
+ path: "/purchase-order-receipt",
6795
+ chain: "purchaseOrderReceipt",
6615
6796
  action: "create",
6616
6797
  aliases: [],
6617
6798
  pathParams: [],
6618
- queryParams: ["limit", "offset", "statusCd"],
6619
- edgeCache: false,
6620
- responseSchema: BinTransferDataSchema,
6621
- responseType: "object"
6622
- },
6623
- {
6624
- method: "GET",
6625
- path: "/bin-transfer/{binTransferHdrUid}/status",
6626
- chain: "binTransfer.status",
6627
- action: "list",
6628
- aliases: [],
6629
- pathParams: ["binTransferHdrUid"],
6630
6799
  queryParams: [],
6631
- edgeCache: true,
6632
- responseSchema: BinTransferStatusDataSchema,
6800
+ edgeCache: false,
6801
+ responseSchema: PurchaseOrderReceiptDataSchema,
6633
6802
  responseType: "object"
6634
6803
  },
6635
6804
  {
@@ -6670,26 +6839,26 @@ var endpoints8 = [
6670
6839
  },
6671
6840
  {
6672
6841
  method: "GET",
6673
- path: "/purchase-order-receipt",
6674
- chain: "purchaseOrderReceipt",
6842
+ path: "/receiving",
6843
+ chain: "receiving",
6675
6844
  action: "list",
6676
6845
  aliases: [],
6677
6846
  pathParams: [],
6678
- queryParams: ["limit", "offset", "referenceNo", "statusCd"],
6847
+ queryParams: ["limit", "offset", "poNo", "statusCd"],
6679
6848
  edgeCache: true,
6680
- responseSchema: PurchaseOrderReceiptDataSchema,
6849
+ responseSchema: ReceivingDataSchema,
6681
6850
  responseType: "array"
6682
6851
  },
6683
6852
  {
6684
6853
  method: "POST",
6685
- path: "/purchase-order-receipt",
6686
- chain: "purchaseOrderReceipt",
6854
+ path: "/receiving",
6855
+ chain: "receiving",
6687
6856
  action: "create",
6688
6857
  aliases: [],
6689
6858
  pathParams: [],
6690
- queryParams: ["limit", "offset", "referenceNo", "statusCd"],
6859
+ queryParams: [],
6691
6860
  edgeCache: false,
6692
- responseSchema: PurchaseOrderReceiptDataSchema,
6861
+ responseSchema: ReceivingDataSchema,
6693
6862
  responseType: "object"
6694
6863
  },
6695
6864
  {
@@ -6730,59 +6899,23 @@ var endpoints8 = [
6730
6899
  },
6731
6900
  {
6732
6901
  method: "GET",
6733
- path: "/receiving",
6734
- chain: "receiving",
6902
+ path: "/transfer",
6903
+ chain: "transfer",
6735
6904
  action: "list",
6736
6905
  aliases: [],
6737
6906
  pathParams: [],
6738
- queryParams: ["limit", "offset", "poNo", "statusCd"],
6907
+ queryParams: ["limit", "offset", "referenceNo", "statusCd"],
6739
6908
  edgeCache: true,
6740
- responseSchema: ReceivingDataSchema,
6909
+ responseSchema: TransferDataSchema,
6741
6910
  responseType: "array"
6742
6911
  },
6743
6912
  {
6744
6913
  method: "POST",
6745
- path: "/receiving",
6746
- chain: "receiving",
6914
+ path: "/transfer",
6915
+ chain: "transfer",
6747
6916
  action: "create",
6748
6917
  aliases: [],
6749
6918
  pathParams: [],
6750
- queryParams: ["limit", "offset", "poNo", "statusCd"],
6751
- edgeCache: false,
6752
- responseSchema: ReceivingDataSchema,
6753
- responseType: "object"
6754
- },
6755
- {
6756
- method: "GET",
6757
- path: "/transfer/{transferUid}",
6758
- chain: "transfer",
6759
- action: "get",
6760
- aliases: [],
6761
- pathParams: ["transferUid"],
6762
- queryParams: [],
6763
- edgeCache: true,
6764
- responseSchema: TransferDataSchema,
6765
- responseType: "object"
6766
- },
6767
- {
6768
- method: "PUT",
6769
- path: "/transfer/{transferUid}",
6770
- chain: "transfer",
6771
- action: "update",
6772
- aliases: [],
6773
- pathParams: ["transferUid"],
6774
- queryParams: [],
6775
- edgeCache: false,
6776
- responseSchema: TransferDataSchema,
6777
- responseType: "object"
6778
- },
6779
- {
6780
- method: "DELETE",
6781
- path: "/transfer/{transferUid}",
6782
- chain: "transfer",
6783
- action: "delete",
6784
- aliases: [],
6785
- pathParams: ["transferUid"],
6786
6919
  queryParams: [],
6787
6920
  edgeCache: false,
6788
6921
  responseSchema: TransferDataSchema,
@@ -6790,26 +6923,26 @@ var endpoints8 = [
6790
6923
  },
6791
6924
  {
6792
6925
  method: "GET",
6793
- path: "/transfer",
6794
- chain: "transfer",
6926
+ path: "/transfer-receipt",
6927
+ chain: "transferReceipt",
6795
6928
  action: "list",
6796
6929
  aliases: [],
6797
6930
  pathParams: [],
6798
6931
  queryParams: ["limit", "offset", "referenceNo", "statusCd"],
6799
6932
  edgeCache: true,
6800
- responseSchema: TransferDataSchema,
6933
+ responseSchema: TransferReceiptDataSchema,
6801
6934
  responseType: "array"
6802
6935
  },
6803
6936
  {
6804
6937
  method: "POST",
6805
- path: "/transfer",
6806
- chain: "transfer",
6938
+ path: "/transfer-receipt",
6939
+ chain: "transferReceipt",
6807
6940
  action: "create",
6808
6941
  aliases: [],
6809
6942
  pathParams: [],
6810
- queryParams: ["limit", "offset", "referenceNo", "statusCd"],
6943
+ queryParams: [],
6811
6944
  edgeCache: false,
6812
- responseSchema: TransferDataSchema,
6945
+ responseSchema: TransferReceiptDataSchema,
6813
6946
  responseType: "object"
6814
6947
  },
6815
6948
  {
@@ -6850,8 +6983,8 @@ var endpoints8 = [
6850
6983
  },
6851
6984
  {
6852
6985
  method: "GET",
6853
- path: "/transfer-receipt",
6854
- chain: "transferReceipt",
6986
+ path: "/transfer-shipping",
6987
+ chain: "transferShipping",
6855
6988
  action: "list",
6856
6989
  aliases: [],
6857
6990
  pathParams: [],
@@ -6862,12 +6995,12 @@ var endpoints8 = [
6862
6995
  },
6863
6996
  {
6864
6997
  method: "POST",
6865
- path: "/transfer-receipt",
6866
- chain: "transferReceipt",
6998
+ path: "/transfer-shipping",
6999
+ chain: "transferShipping",
6867
7000
  action: "create",
6868
7001
  aliases: [],
6869
7002
  pathParams: [],
6870
- queryParams: ["limit", "offset", "referenceNo", "statusCd"],
7003
+ queryParams: [],
6871
7004
  edgeCache: false,
6872
7005
  responseSchema: TransferReceiptDataSchema,
6873
7006
  responseType: "object"
@@ -6910,26 +7043,38 @@ var endpoints8 = [
6910
7043
  },
6911
7044
  {
6912
7045
  method: "GET",
6913
- path: "/transfer-shipping",
6914
- chain: "transferShipping",
6915
- action: "list",
7046
+ path: "/transfer/{transferUid}",
7047
+ chain: "transfer",
7048
+ action: "get",
7049
+ aliases: [],
7050
+ pathParams: ["transferUid"],
7051
+ queryParams: [],
7052
+ edgeCache: true,
7053
+ responseSchema: TransferDataSchema,
7054
+ responseType: "object"
7055
+ },
7056
+ {
7057
+ method: "PUT",
7058
+ path: "/transfer/{transferUid}",
7059
+ chain: "transfer",
7060
+ action: "update",
6916
7061
  aliases: [],
6917
- pathParams: [],
6918
- queryParams: ["limit", "offset", "referenceNo", "statusCd"],
6919
- edgeCache: true,
6920
- responseSchema: TransferReceiptDataSchema,
6921
- responseType: "array"
7062
+ pathParams: ["transferUid"],
7063
+ queryParams: [],
7064
+ edgeCache: false,
7065
+ responseSchema: TransferDataSchema,
7066
+ responseType: "object"
6922
7067
  },
6923
7068
  {
6924
- method: "POST",
6925
- path: "/transfer-shipping",
6926
- chain: "transferShipping",
6927
- action: "create",
7069
+ method: "DELETE",
7070
+ path: "/transfer/{transferUid}",
7071
+ chain: "transfer",
7072
+ action: "delete",
6928
7073
  aliases: [],
6929
- pathParams: [],
6930
- queryParams: ["limit", "offset", "referenceNo", "statusCd"],
7074
+ pathParams: ["transferUid"],
7075
+ queryParams: [],
6931
7076
  edgeCache: false,
6932
- responseSchema: TransferReceiptDataSchema,
7077
+ responseSchema: TransferDataSchema,
6933
7078
  responseType: "object"
6934
7079
  }
6935
7080
  ];
@@ -7008,8 +7153,8 @@ function createPingDataResource5(ping) {
7008
7153
  var NexusClient = class extends BaseServiceClient {
7009
7154
  constructor(http, baseUrl = "https://nexus.augur-api.com") {
7010
7155
  super("nexus", http, baseUrl);
7011
- const boundExecuteRequest = (config, params, pathParams) => {
7012
- return this.executeRequest(config, params, pathParams);
7156
+ const boundExecuteRequest = (config, params, pathParams, query) => {
7157
+ return this.executeRequest(config, params, pathParams, query);
7013
7158
  };
7014
7159
  const proxy = createServiceProxy("nexus", boundExecuteRequest, endpoints8);
7015
7160
  const dataProxy = createDataProxy(proxy);
@@ -7089,6 +7234,14 @@ var TrainingConversationsMessagesListParamsSchema = v15.looseObject({
7089
7234
  offset: v15.optional(v15.pipe(v15.unknown(), v15.transform(Number))),
7090
7235
  orderBy: v15.optional(v15.string())
7091
7236
  });
7237
+ var UsersAddressesListParamsSchema = v15.looseObject({
7238
+ ...EdgeCacheParamsSchema.entries,
7239
+ emailAddress: v15.optional(v15.string()),
7240
+ limit: v15.optional(v15.pipe(v15.unknown(), v15.transform(Number))),
7241
+ offset: v15.optional(v15.pipe(v15.unknown(), v15.transform(Number))),
7242
+ orderBy: v15.optional(v15.string()),
7243
+ statusCd: v15.optional(v15.pipe(v15.unknown(), v15.transform(Number)))
7244
+ });
7092
7245
  var FyxerTranscriptDataSchema = v15.looseObject({
7093
7246
  fyxerTranscriptHdrUid: v15.optional(v15.number()),
7094
7247
  link: v15.optional(v15.string()),
@@ -7208,6 +7361,26 @@ var TrainingConversationsMessagesDataSchema = v15.looseObject({
7208
7361
  dateCreated: v15.optional(v15.string()),
7209
7362
  dateLastModified: v15.optional(v15.string())
7210
7363
  });
7364
+ var UsersAddressesDataSchema = v15.looseObject({
7365
+ userAddressUid: v15.optional(v15.number()),
7366
+ userId: v15.optional(v15.number()),
7367
+ address1: v15.optional(v15.nullable(v15.string())),
7368
+ address2: v15.optional(v15.nullable(v15.string())),
7369
+ address3: v15.optional(v15.nullable(v15.string())),
7370
+ city: v15.optional(v15.nullable(v15.string())),
7371
+ state: v15.optional(v15.nullable(v15.string())),
7372
+ postalCode: v15.optional(v15.nullable(v15.string())),
7373
+ country: v15.optional(v15.nullable(v15.string())),
7374
+ emailAddress: v15.optional(v15.nullable(v15.string())),
7375
+ name: v15.optional(v15.nullable(v15.string())),
7376
+ phoneNumberMain: v15.optional(v15.nullable(v15.string())),
7377
+ phoneNumberMobile: v15.optional(v15.nullable(v15.string())),
7378
+ dateCreated: v15.optional(v15.string()),
7379
+ dateLastModified: v15.optional(v15.string()),
7380
+ updateCd: v15.optional(v15.number()),
7381
+ statusCd: v15.optional(v15.number()),
7382
+ processCd: v15.optional(v15.number())
7383
+ });
7211
7384
  var PassthroughDataSchema9 = v15.record(v15.string(), v15.unknown());
7212
7385
 
7213
7386
  // src/services/agr-site/generated/endpoints.ts
@@ -7224,6 +7397,18 @@ var endpoints9 = [
7224
7397
  responseSchema: PassthroughDataSchema9,
7225
7398
  responseType: "passthrough"
7226
7399
  },
7400
+ {
7401
+ method: "POST",
7402
+ path: "/datafiles",
7403
+ chain: "datafiles",
7404
+ action: "create",
7405
+ aliases: [],
7406
+ pathParams: [],
7407
+ queryParams: [],
7408
+ edgeCache: false,
7409
+ responseSchema: PassthroughDataSchema9,
7410
+ responseType: "passthrough"
7411
+ },
7227
7412
  {
7228
7413
  method: "GET",
7229
7414
  path: "/fyxer-transcript",
@@ -7643,6 +7828,66 @@ var endpoints9 = [
7643
7828
  edgeCache: false,
7644
7829
  responseSchema: TrainingConversationsMessagesDataSchema,
7645
7830
  responseType: "object"
7831
+ },
7832
+ {
7833
+ method: "GET",
7834
+ path: "/users/{userId}/addresses",
7835
+ chain: "users.addresses",
7836
+ action: "list",
7837
+ aliases: [],
7838
+ pathParams: ["userId"],
7839
+ queryParams: ["emailAddress", "limit", "offset", "orderBy", "statusCd"],
7840
+ edgeCache: true,
7841
+ responseSchema: UsersAddressesDataSchema,
7842
+ responseType: "array"
7843
+ },
7844
+ {
7845
+ method: "POST",
7846
+ path: "/users/{userId}/addresses",
7847
+ chain: "users.addresses",
7848
+ action: "create",
7849
+ aliases: [],
7850
+ pathParams: ["userId"],
7851
+ queryParams: [],
7852
+ edgeCache: false,
7853
+ responseSchema: UsersAddressesDataSchema,
7854
+ responseType: "object"
7855
+ },
7856
+ {
7857
+ method: "GET",
7858
+ path: "/users/{userId}/addresses/{userAddressUid}",
7859
+ chain: "users.addresses",
7860
+ action: "get",
7861
+ aliases: [],
7862
+ pathParams: ["userId", "userAddressUid"],
7863
+ queryParams: [],
7864
+ edgeCache: true,
7865
+ responseSchema: UsersAddressesDataSchema,
7866
+ responseType: "object"
7867
+ },
7868
+ {
7869
+ method: "PUT",
7870
+ path: "/users/{userId}/addresses/{userAddressUid}",
7871
+ chain: "users.addresses",
7872
+ action: "update",
7873
+ aliases: [],
7874
+ pathParams: ["userId", "userAddressUid"],
7875
+ queryParams: [],
7876
+ edgeCache: false,
7877
+ responseSchema: UsersAddressesDataSchema,
7878
+ responseType: "object"
7879
+ },
7880
+ {
7881
+ method: "DELETE",
7882
+ path: "/users/{userId}/addresses/{userAddressUid}",
7883
+ chain: "users.addresses",
7884
+ action: "delete",
7885
+ aliases: [],
7886
+ pathParams: ["userId", "userAddressUid"],
7887
+ queryParams: [],
7888
+ edgeCache: false,
7889
+ responseSchema: UsersAddressesDataSchema,
7890
+ responseType: "object"
7646
7891
  }
7647
7892
  ];
7648
7893
 
@@ -7805,12 +8050,13 @@ function createWhoamiDataResource2(whoami) {
7805
8050
  var AgrSiteClient = class extends BaseServiceClient {
7806
8051
  constructor(http, baseUrl = "https://agr-site.augur-api.com") {
7807
8052
  super("agr-site", http, baseUrl);
7808
- const boundExecuteRequest = (config, params, pathParams) => {
7809
- return this.executeRequest(config, params, pathParams);
8053
+ const boundExecuteRequest = (config, params, pathParams, query) => {
8054
+ return this.executeRequest(config, params, pathParams, query);
7810
8055
  };
7811
8056
  const proxy = createServiceProxy("agr-site", boundExecuteRequest, endpoints9);
7812
8057
  const dataProxy = createDataProxy(proxy);
7813
8058
  this.context = proxy.context;
8059
+ this.datafiles = proxy.datafiles;
7814
8060
  this.fyxerTranscript = proxy.fyxerTranscript;
7815
8061
  this.geoCodesPostalCodes = proxy.geoCodesPostalCodes;
7816
8062
  this.metaFiles = proxy.metaFiles;
@@ -7819,7 +8065,9 @@ var AgrSiteClient = class extends BaseServiceClient {
7819
8065
  this.postalCodesXShiptos = proxy.postalCodesXShiptos;
7820
8066
  this.settings = proxy.settings;
7821
8067
  this.training = proxy.training;
8068
+ this.users = proxy.users;
7822
8069
  this.contextData = dataProxy.context;
8070
+ this.datafilesData = dataProxy.datafiles;
7823
8071
  this.fyxerTranscriptData = dataProxy.fyxerTranscript;
7824
8072
  this.geoCodesPostalCodesData = dataProxy.geoCodesPostalCodes;
7825
8073
  this.metaFilesData = dataProxy.metaFiles;
@@ -7828,6 +8076,7 @@ var AgrSiteClient = class extends BaseServiceClient {
7828
8076
  this.postalCodesXShiptosData = dataProxy.postalCodesXShiptos;
7829
8077
  this.settingsData = dataProxy.settings;
7830
8078
  this.trainingData = dataProxy.training;
8079
+ this.usersData = dataProxy.users;
7831
8080
  this.healthCheck = createHealthCheckResource9(boundExecuteRequest);
7832
8081
  this.ping = createPingResource7(boundExecuteRequest);
7833
8082
  this.whoami = createWhoamiResource2(boundExecuteRequest);
@@ -7885,6 +8134,7 @@ var CustomerContactsListParamsSchema = v17.looseObject({
7885
8134
  });
7886
8135
  var CustomerInvoicesListParamsSchema = v17.looseObject({
7887
8136
  ...EdgeCacheParamsSchema.entries,
8137
+ contactId: v17.optional(v17.string()),
7888
8138
  createdFrom: v17.optional(v17.string()),
7889
8139
  createdOn: v17.optional(v17.string()),
7890
8140
  createdTo: v17.optional(v17.string()),
@@ -7896,6 +8146,7 @@ var CustomerInvoicesListParamsSchema = v17.looseObject({
7896
8146
  });
7897
8147
  var CustomerOrdersListParamsSchema = v17.looseObject({
7898
8148
  ...EdgeCacheParamsSchema.entries,
8149
+ addressId: v17.optional(v17.pipe(v17.unknown(), v17.transform(Number))),
7899
8150
  cancelFlag: v17.optional(v17.string()),
7900
8151
  contactId: v17.optional(v17.string()),
7901
8152
  createdFrom: v17.optional(v17.string()),
@@ -7916,6 +8167,8 @@ var CustomerPurchasedItemsListParamsSchema = v17.looseObject({
7916
8167
  });
7917
8168
  var CustomerQuotesListParamsSchema = v17.looseObject({
7918
8169
  ...EdgeCacheParamsSchema.entries,
8170
+ addressId: v17.optional(v17.pipe(v17.unknown(), v17.transform(Number))),
8171
+ contactId: v17.optional(v17.string()),
7919
8172
  createdFrom: v17.optional(v17.string()),
7920
8173
  createdOn: v17.optional(v17.string()),
7921
8174
  createdTo: v17.optional(v17.string()),
@@ -8179,6 +8432,7 @@ var endpoints10 = [
8179
8432
  aliases: [],
8180
8433
  pathParams: ["customerId"],
8181
8434
  queryParams: [
8435
+ "contactId",
8182
8436
  "createdFrom",
8183
8437
  "createdOn",
8184
8438
  "createdTo",
@@ -8212,6 +8466,7 @@ var endpoints10 = [
8212
8466
  aliases: [],
8213
8467
  pathParams: ["customerId"],
8214
8468
  queryParams: [
8469
+ "addressId",
8215
8470
  "cancelFlag",
8216
8471
  "contactId",
8217
8472
  "createdFrom",
@@ -8259,7 +8514,16 @@ var endpoints10 = [
8259
8514
  action: "list",
8260
8515
  aliases: [],
8261
8516
  pathParams: ["customerId"],
8262
- queryParams: ["createdFrom", "createdOn", "createdTo", "limit", "offset", "orderBy"],
8517
+ queryParams: [
8518
+ "addressId",
8519
+ "contactId",
8520
+ "createdFrom",
8521
+ "createdOn",
8522
+ "createdTo",
8523
+ "limit",
8524
+ "offset",
8525
+ "orderBy"
8526
+ ],
8263
8527
  edgeCache: true,
8264
8528
  responseSchema: PassthroughDataSchema10,
8265
8529
  responseType: "passthrough"
@@ -8446,8 +8710,8 @@ function createHealthCheckDataResource10(healthCheck) {
8446
8710
  var CustomersClient = class extends BaseServiceClient {
8447
8711
  constructor(http, baseUrl = "https://customers.augur-api.com") {
8448
8712
  super("customers", http, baseUrl);
8449
- const boundExecuteRequest = (config, params, pathParams) => {
8450
- return this.executeRequest(config, params, pathParams);
8713
+ const boundExecuteRequest = (config, params, pathParams, query) => {
8714
+ return this.executeRequest(config, params, pathParams, query);
8451
8715
  };
8452
8716
  const proxy = createServiceProxy(
8453
8717
  "customers",
@@ -8810,12 +9074,12 @@ var OrdersClient = class extends BaseServiceClient {
8810
9074
  var v19 = __toESM(require("valibot"));
8811
9075
  var InvMastExtListParamsSchema = v19.looseObject({
8812
9076
  ...EdgeCacheParamsSchema.entries,
8813
- inv_mast_uid: v19.optional(v19.pipe(v19.unknown(), v19.transform(Number))),
9077
+ invMastUid: v19.optional(v19.pipe(v19.unknown(), v19.transform(Number))),
8814
9078
  limit: v19.optional(v19.pipe(v19.unknown(), v19.transform(Number))),
8815
9079
  offset: v19.optional(v19.pipe(v19.unknown(), v19.transform(Number))),
8816
- order_by: v19.optional(v19.string()),
9080
+ orderBy: v19.optional(v19.string()),
8817
9081
  q: v19.optional(v19.string()),
8818
- status_cd: v19.optional(v19.pipe(v19.unknown(), v19.transform(Number)))
9082
+ statusCd: v19.optional(v19.pipe(v19.unknown(), v19.transform(Number)))
8819
9083
  });
8820
9084
  var ItemsSuggestDisplayDescListParamsSchema = v19.looseObject({
8821
9085
  ...EdgeCacheParamsSchema.entries,
@@ -8831,9 +9095,9 @@ var PodcastsListParamsSchema = v19.looseObject({
8831
9095
  ...EdgeCacheParamsSchema.entries,
8832
9096
  limit: v19.optional(v19.pipe(v19.unknown(), v19.transform(Number))),
8833
9097
  offset: v19.optional(v19.pipe(v19.unknown(), v19.transform(Number))),
8834
- order_by: v19.optional(v19.string()),
9098
+ orderBy: v19.optional(v19.string()),
8835
9099
  q: v19.optional(v19.string()),
8836
- status_cd: v19.optional(v19.pipe(v19.unknown(), v19.transform(Number)))
9100
+ statusCd: v19.optional(v19.pipe(v19.unknown(), v19.transform(Number)))
8837
9101
  });
8838
9102
  var PodcastsDataSchema = v19.looseObject({
8839
9103
  podcastsUid: v19.optional(v19.number()),
@@ -8857,7 +9121,7 @@ var endpoints12 = [
8857
9121
  action: "list",
8858
9122
  aliases: [],
8859
9123
  pathParams: [],
8860
- queryParams: ["inv_mast_uid", "limit", "offset", "order_by", "q", "status_cd"],
9124
+ queryParams: ["invMastUid", "limit", "offset", "orderBy", "q", "statusCd"],
8861
9125
  edgeCache: true,
8862
9126
  responseSchema: PassthroughDataSchema12,
8863
9127
  responseType: "passthrough"
@@ -8941,7 +9205,7 @@ var endpoints12 = [
8941
9205
  action: "list",
8942
9206
  aliases: [],
8943
9207
  pathParams: [],
8944
- queryParams: ["limit", "offset", "order_by", "q", "status_cd"],
9208
+ queryParams: ["limit", "offset", "orderBy", "q", "statusCd"],
8945
9209
  edgeCache: true,
8946
9210
  responseSchema: PodcastsDataSchema,
8947
9211
  responseType: "array"
@@ -9041,8 +9305,8 @@ function createHealthCheckDataResource12(healthCheck) {
9041
9305
  var P21PimClient = class extends BaseServiceClient {
9042
9306
  constructor(http, baseUrl = "https://p21-pim.augur-api.com") {
9043
9307
  super("p21-pim", http, baseUrl);
9044
- const boundExecuteRequest = (config, params, pathParams) => {
9045
- return this.executeRequest(config, params, pathParams);
9308
+ const boundExecuteRequest = (config, params, pathParams, query) => {
9309
+ return this.executeRequest(config, params, pathParams, query);
9046
9310
  };
9047
9311
  const proxy = createServiceProxy("p21-pim", boundExecuteRequest, endpoints12);
9048
9312
  const dataProxy = createDataProxy(proxy);
@@ -9055,6 +9319,9 @@ var P21PimClient = class extends BaseServiceClient {
9055
9319
  this.healthCheck = createHealthCheckResource12(boundExecuteRequest);
9056
9320
  this.healthCheckData = createHealthCheckDataResource12(this.healthCheck);
9057
9321
  }
9322
+ getServiceDescription() {
9323
+ return "Product information management for rich content, media assets, and extended item descriptions";
9324
+ }
9058
9325
  };
9059
9326
 
9060
9327
  // src/services/payments/generated/schemas.ts
@@ -9135,6 +9402,10 @@ var UnifiedSurchargeListParamsSchema = v20.looseObject({
9135
9402
  paymentAccountId: v20.string(),
9136
9403
  toState: v20.string()
9137
9404
  });
9405
+ var UnifiedTransactionResponseListParamsSchema = v20.looseObject({
9406
+ ...EdgeCacheParamsSchema.entries,
9407
+ siteId: v20.string()
9408
+ });
9138
9409
  var UnifiedTransactionSetupListParamsSchema = v20.looseObject({
9139
9410
  ...EdgeCacheParamsSchema.entries,
9140
9411
  customerId: v20.string(),
@@ -9302,6 +9573,18 @@ var endpoints13 = [
9302
9573
  responseSchema: PassthroughDataSchema13,
9303
9574
  responseType: "passthrough"
9304
9575
  },
9576
+ {
9577
+ method: "GET",
9578
+ path: "/unified/transaction-response",
9579
+ chain: "unified.transactionResponse",
9580
+ action: "list",
9581
+ aliases: [],
9582
+ pathParams: [],
9583
+ queryParams: ["siteId"],
9584
+ edgeCache: true,
9585
+ responseSchema: PassthroughDataSchema13,
9586
+ responseType: "passthrough"
9587
+ },
9305
9588
  {
9306
9589
  method: "GET",
9307
9590
  path: "/unified/transaction-setup",
@@ -9395,8 +9678,8 @@ function createPingDataResource7(ping) {
9395
9678
  var PaymentsClient = class extends BaseServiceClient {
9396
9679
  constructor(http, baseUrl = "https://payments.augur-api.com") {
9397
9680
  super("payments", http, baseUrl);
9398
- const boundExecuteRequest = (config, params, pathParams) => {
9399
- return this.executeRequest(config, params, pathParams);
9681
+ const boundExecuteRequest = (config, params, pathParams, query) => {
9682
+ return this.executeRequest(config, params, pathParams, query);
9400
9683
  };
9401
9684
  const proxy = createServiceProxy(
9402
9685
  "payments",
@@ -9449,6 +9732,14 @@ var MicroservicesDataSchema = v21.looseObject({
9449
9732
  dateCreated: v21.optional(v21.string()),
9450
9733
  dateLastModified: v21.optional(v21.string())
9451
9734
  });
9735
+ var OauthRefreshDataSchema = v21.looseObject({
9736
+ grantId: v21.optional(v21.string()),
9737
+ usersId: v21.optional(v21.number()),
9738
+ accessToken: v21.optional(v21.string()),
9739
+ refreshToken: v21.optional(v21.string()),
9740
+ accessTokenExpiresAt: v21.optional(v21.string()),
9741
+ refreshTokenExpiresAt: v21.optional(v21.string())
9742
+ });
9452
9743
  var RubricsDataSchema = v21.looseObject({
9453
9744
  rubricsUid: v21.optional(v21.number()),
9454
9745
  title: v21.optional(v21.nullable(v21.string())),
@@ -9460,6 +9751,20 @@ var RubricsDataSchema = v21.looseObject({
9460
9751
  dateCreated: v21.optional(v21.string()),
9461
9752
  dateLastModified: v21.optional(v21.string())
9462
9753
  });
9754
+ var SitesVerifyUserDataSchema = v21.looseObject({
9755
+ grantId: v21.optional(v21.string()),
9756
+ usersId: v21.optional(v21.number()),
9757
+ username: v21.optional(v21.string()),
9758
+ email: v21.optional(v21.string()),
9759
+ name: v21.optional(v21.string()),
9760
+ isAdmin: v21.optional(v21.boolean()),
9761
+ homeSiteId: v21.optional(v21.string()),
9762
+ sites: v21.optional(v21.string()),
9763
+ accessToken: v21.optional(v21.string()),
9764
+ refreshToken: v21.optional(v21.string()),
9765
+ accessTokenExpiresAt: v21.optional(v21.string()),
9766
+ refreshTokenExpiresAt: v21.optional(v21.string())
9767
+ });
9463
9768
  var WorkflowsDataSchema = v21.looseObject({
9464
9769
  workflowsUid: v21.optional(v21.number()),
9465
9770
  workflowsId: v21.optional(v21.string()),
@@ -9573,6 +9878,30 @@ var endpoints14 = [
9573
9878
  responseSchema: PassthroughDataSchema14,
9574
9879
  responseType: "passthrough"
9575
9880
  },
9881
+ {
9882
+ method: "DELETE",
9883
+ path: "/oauth/grants/{grantId}",
9884
+ chain: "oauth.grants",
9885
+ action: "delete",
9886
+ aliases: [],
9887
+ pathParams: ["grantId"],
9888
+ queryParams: [],
9889
+ edgeCache: false,
9890
+ responseSchema: PassthroughDataSchema14,
9891
+ responseType: "passthrough"
9892
+ },
9893
+ {
9894
+ method: "POST",
9895
+ path: "/oauth/refresh",
9896
+ chain: "oauth.refresh",
9897
+ action: "create",
9898
+ aliases: [],
9899
+ pathParams: [],
9900
+ queryParams: [],
9901
+ edgeCache: false,
9902
+ responseSchema: OauthRefreshDataSchema,
9903
+ responseType: "object"
9904
+ },
9576
9905
  {
9577
9906
  method: "GET",
9578
9907
  path: "/ollama/tags",
@@ -9657,6 +9986,18 @@ var endpoints14 = [
9657
9986
  responseSchema: PassthroughDataSchema14,
9658
9987
  responseType: "passthrough"
9659
9988
  },
9989
+ {
9990
+ method: "POST",
9991
+ path: "/sites/verify-user",
9992
+ chain: "sites.verifyUser",
9993
+ action: "create",
9994
+ aliases: [],
9995
+ pathParams: [],
9996
+ queryParams: [],
9997
+ edgeCache: false,
9998
+ responseSchema: SitesVerifyUserDataSchema,
9999
+ responseType: "object"
10000
+ },
9660
10001
  {
9661
10002
  method: "GET",
9662
10003
  path: "/workflows",
@@ -9771,8 +10112,8 @@ function createHealthCheckDataResource14(healthCheck) {
9771
10112
  var AgrInfoClient = class extends BaseServiceClient {
9772
10113
  constructor(http, baseUrl = "https://agr-info.augur-api.com") {
9773
10114
  super("agr-info", http, baseUrl);
9774
- const boundExecuteRequest = (config, params, pathParams) => {
9775
- return this.executeRequest(config, params, pathParams);
10115
+ const boundExecuteRequest = (config, params, pathParams, query) => {
10116
+ return this.executeRequest(config, params, pathParams, query);
9776
10117
  };
9777
10118
  const proxy = createServiceProxy("agr-info", boundExecuteRequest, endpoints14);
9778
10119
  const dataProxy = createDataProxy(proxy);
@@ -9780,6 +10121,7 @@ var AgrInfoClient = class extends BaseServiceClient {
9780
10121
  this.context = proxy.context;
9781
10122
  this.joomla = proxy.joomla;
9782
10123
  this.microservices = proxy.microservices;
10124
+ this.oauth = proxy.oauth;
9783
10125
  this.ollama = proxy.ollama;
9784
10126
  this.rubrics = proxy.rubrics;
9785
10127
  this.sites = proxy.sites;
@@ -9788,6 +10130,7 @@ var AgrInfoClient = class extends BaseServiceClient {
9788
10130
  this.contextData = dataProxy.context;
9789
10131
  this.joomlaData = dataProxy.joomla;
9790
10132
  this.microservicesData = dataProxy.microservices;
10133
+ this.oauthData = dataProxy.oauth;
9791
10134
  this.ollamaData = dataProxy.ollama;
9792
10135
  this.rubricsData = dataProxy.rubrics;
9793
10136
  this.sitesData = dataProxy.sites;
@@ -9847,7 +10190,7 @@ var RolesBundlesListParamsSchema = v22.looseObject({
9847
10190
  orderBy: v22.optional(v22.string()),
9848
10191
  statusCd: v22.optional(v22.pipe(v22.unknown(), v22.transform(Number)))
9849
10192
  });
9850
- var UsersListParamsSchema = v22.looseObject({
10193
+ var UsersListParamsSchema2 = v22.looseObject({
9851
10194
  ...EdgeCacheParamsSchema.entries,
9852
10195
  email: v22.optional(v22.string()),
9853
10196
  limit: v22.optional(v22.pipe(v22.unknown(), v22.transform(Number))),
@@ -10435,8 +10778,8 @@ var endpoints15 = [
10435
10778
  var AgrIntClient = class extends BaseServiceClient {
10436
10779
  constructor(http, baseUrl = "https://agr-int.augur-api.com") {
10437
10780
  super("agr-int", http, baseUrl);
10438
- const boundExecuteRequest = (config, params, pathParams) => {
10439
- return this.executeRequest(config, params, pathParams);
10781
+ const boundExecuteRequest = (config, params, pathParams, query) => {
10782
+ return this.executeRequest(config, params, pathParams, query);
10440
10783
  };
10441
10784
  const proxy = createServiceProxy("agr-int", boundExecuteRequest, endpoints15);
10442
10785
  const dataProxy = createDataProxy(proxy);
@@ -10612,8 +10955,8 @@ function createPingDataResource8(ping) {
10612
10955
  var AgrWorkClient = class extends BaseServiceClient {
10613
10956
  constructor(http, baseUrl = "https://agr-work.augur-api.com") {
10614
10957
  super("agr-work", http, baseUrl);
10615
- const boundExecuteRequest = (config, params, pathParams) => {
10616
- return this.executeRequest(config, params, pathParams);
10958
+ const boundExecuteRequest = (config, params, pathParams, query) => {
10959
+ return this.executeRequest(config, params, pathParams, query);
10617
10960
  };
10618
10961
  this.healthCheck = createHealthCheckResource15(boundExecuteRequest);
10619
10962
  this.ping = createPingResource9(boundExecuteRequest);
@@ -10707,8 +11050,8 @@ function createHealthCheckDataResource16(healthCheck) {
10707
11050
  var AvalaraClient = class extends BaseServiceClient {
10708
11051
  constructor(http, baseUrl = "https://avalara.augur-api.com") {
10709
11052
  super("avalara", http, baseUrl);
10710
- const boundExecuteRequest = (config, params, pathParams) => {
10711
- return this.executeRequest(config, params, pathParams);
11053
+ const boundExecuteRequest = (config, params, pathParams, query) => {
11054
+ return this.executeRequest(config, params, pathParams, query);
10712
11055
  };
10713
11056
  const proxy = createServiceProxy("avalara", boundExecuteRequest, endpoints16);
10714
11057
  const dataProxy = createDataProxy(proxy);
@@ -10721,10 +11064,54 @@ var AvalaraClient = class extends BaseServiceClient {
10721
11064
 
10722
11065
  // src/services/brand-folder/generated/schemas.ts
10723
11066
  var v24 = __toESM(require("valibot"));
11067
+ var CategoriesListParamsSchema2 = v24.looseObject({
11068
+ ...EdgeCacheParamsSchema.entries,
11069
+ limit: v24.optional(v24.pipe(v24.unknown(), v24.transform(Number))),
11070
+ offset: v24.optional(v24.pipe(v24.unknown(), v24.transform(Number))),
11071
+ orderBy: v24.optional(v24.string()),
11072
+ q: v24.optional(v24.string())
11073
+ });
11074
+ var CategoriesDataSchema = v24.looseObject({
11075
+ itemCategoryUid: v24.optional(v24.number()),
11076
+ itemCategoryId: v24.optional(v24.string()),
11077
+ itemCategoryDesc: v24.optional(v24.string()),
11078
+ dateCreated: v24.optional(v24.string()),
11079
+ dateLastModified: v24.optional(v24.string()),
11080
+ updateCd: v24.optional(v24.number()),
11081
+ statusCd: v24.optional(v24.number()),
11082
+ processCd: v24.optional(v24.number()),
11083
+ rootCategoryId: v24.optional(v24.string()),
11084
+ labelsId: v24.optional(v24.nullable(v24.string())),
11085
+ imagesAssetsId: v24.optional(v24.nullable(v24.string())),
11086
+ roomScenesAssetsId: v24.optional(v24.nullable(v24.string())),
11087
+ brochuresAssetsId: v24.optional(v24.nullable(v24.string())),
11088
+ contractorsAssetsId: v24.optional(v24.nullable(v24.string())),
11089
+ dateLastProcessed: v24.optional(v24.string()),
11090
+ dateLastCheckImages: v24.optional(v24.string()),
11091
+ dateLastCheckRoomScene: v24.optional(v24.string()),
11092
+ itemCategoryDescPc: v24.optional(v24.nullable(v24.string())),
11093
+ dateLastUpload: v24.optional(v24.string()),
11094
+ leedAssetsId: v24.optional(v24.nullable(v24.string())),
11095
+ colorsList: v24.optional(v24.nullable(v24.string())),
11096
+ colorsCount: v24.optional(v24.number()),
11097
+ focusCd: v24.optional(v24.number())
11098
+ });
10724
11099
  var PassthroughDataSchema17 = v24.record(v24.string(), v24.unknown());
10725
11100
 
10726
11101
  // src/services/brand-folder/generated/endpoints.ts
10727
11102
  var endpoints17 = [
11103
+ {
11104
+ method: "GET",
11105
+ path: "/categories",
11106
+ chain: "categories",
11107
+ action: "list",
11108
+ aliases: [],
11109
+ pathParams: [],
11110
+ queryParams: ["limit", "offset", "orderBy", "q"],
11111
+ edgeCache: true,
11112
+ responseSchema: CategoriesDataSchema,
11113
+ responseType: "array"
11114
+ },
10728
11115
  {
10729
11116
  method: "POST",
10730
11117
  path: "/categories/focus",
@@ -10736,6 +11123,18 @@ var endpoints17 = [
10736
11123
  edgeCache: false,
10737
11124
  responseSchema: PassthroughDataSchema17,
10738
11125
  responseType: "passthrough"
11126
+ },
11127
+ {
11128
+ method: "GET",
11129
+ path: "/categories/{itemCategoryUid}",
11130
+ chain: "categories",
11131
+ action: "get",
11132
+ aliases: [],
11133
+ pathParams: ["itemCategoryUid"],
11134
+ queryParams: [],
11135
+ edgeCache: true,
11136
+ responseSchema: CategoriesDataSchema,
11137
+ responseType: "object"
10739
11138
  }
10740
11139
  ];
10741
11140
 
@@ -10804,8 +11203,8 @@ function createHealthCheckDataResource17(healthCheck) {
10804
11203
  var BrandFolderClient = class extends BaseServiceClient {
10805
11204
  constructor(http, baseUrl = "https://brand-folder.augur-api.com") {
10806
11205
  super("brand-folder", http, baseUrl);
10807
- const boundExecuteRequest = (config, params, pathParams) => {
10808
- return this.executeRequest(config, params, pathParams);
11206
+ const boundExecuteRequest = (config, params, pathParams, query) => {
11207
+ return this.executeRequest(config, params, pathParams, query);
10809
11208
  };
10810
11209
  const proxy = createServiceProxy(
10811
11210
  "brand-folder",
@@ -10936,8 +11335,8 @@ function createHealthCheckDataResource18(healthCheck) {
10936
11335
  var GregorovichClient = class extends BaseServiceClient {
10937
11336
  constructor(http, baseUrl = "https://gregorovich.augur-api.com") {
10938
11337
  super("gregorovich", http, baseUrl);
10939
- const boundExecuteRequest = (config, params, pathParams) => {
10940
- return this.executeRequest(config, params, pathParams);
11338
+ const boundExecuteRequest = (config, params, pathParams, query) => {
11339
+ return this.executeRequest(config, params, pathParams, query);
10941
11340
  };
10942
11341
  const proxy = createServiceProxy(
10943
11342
  "gregorovich",
@@ -10977,7 +11376,7 @@ var RtsBrandsListParamsSchema = v26.looseObject({
10977
11376
  ...EdgeCacheParamsSchema.entries,
10978
11377
  search: v26.optional(v26.string())
10979
11378
  });
10980
- var RtsBrandsBrandIdMachinesListParamsSchema = v26.looseObject({
11379
+ var RtsBrandsMachinesListParamsSchema = v26.looseObject({
10981
11380
  ...EdgeCacheParamsSchema.entries,
10982
11381
  search: v26.optional(v26.string())
10983
11382
  });
@@ -11130,7 +11529,7 @@ var endpoints19 = [
11130
11529
  {
11131
11530
  method: "GET",
11132
11531
  path: "/rts/brands/{brandId}/machines",
11133
- chain: "rts.brands.brandId.machines",
11532
+ chain: "rts.brands.machines",
11134
11533
  action: "list",
11135
11534
  aliases: [],
11136
11535
  pathParams: ["brandId"],
@@ -11142,7 +11541,7 @@ var endpoints19 = [
11142
11541
  {
11143
11542
  method: "GET",
11144
11543
  path: "/rts/machines/{machineId}/tracks",
11145
- chain: "rts.machines.machineId.tracks",
11544
+ chain: "rts.machines.tracks",
11146
11545
  action: "list",
11147
11546
  aliases: [],
11148
11547
  pathParams: ["machineId"],
@@ -11166,7 +11565,7 @@ var endpoints19 = [
11166
11565
  {
11167
11566
  method: "GET",
11168
11567
  path: "/rts/track/{trackId}",
11169
- chain: "rts.track.trackId",
11568
+ chain: "rts.track",
11170
11569
  action: "list",
11171
11570
  aliases: [],
11172
11571
  pathParams: ["trackId"],
@@ -11457,8 +11856,8 @@ function createPingDataResource9(ping) {
11457
11856
  var LogisticsClient = class extends BaseServiceClient {
11458
11857
  constructor(http, baseUrl = "https://logistics.augur-api.com") {
11459
11858
  super("logistics", http, baseUrl);
11460
- const boundExecuteRequest = (config, params, pathParams) => {
11461
- return this.executeRequest(config, params, pathParams);
11859
+ const boundExecuteRequest = (config, params, pathParams, query) => {
11860
+ return this.executeRequest(config, params, pathParams, query);
11462
11861
  };
11463
11862
  const proxy = createServiceProxy(
11464
11863
  "logistics",
@@ -11490,43 +11889,43 @@ var LogisticsClient = class extends BaseServiceClient {
11490
11889
  var v27 = __toESM(require("valibot"));
11491
11890
  var TransCategoryGetParamsSchema = v27.looseObject({
11492
11891
  ...EdgeCacheParamsSchema.entries,
11493
- category_id: v27.optional(v27.string())
11892
+ categoryId: v27.optional(v27.string())
11494
11893
  });
11495
11894
  var TransCategoryUpdateParamsSchema = v27.looseObject({
11496
- category_id: v27.optional(v27.string())
11895
+ categoryId: v27.optional(v27.string())
11497
11896
  });
11498
11897
  var TransCategoryDeleteParamsSchema = v27.looseObject({
11499
- category_id: v27.optional(v27.string())
11898
+ categoryId: v27.optional(v27.string())
11500
11899
  });
11501
11900
  var TransCompanyGetParamsSchema = v27.looseObject({
11502
11901
  ...EdgeCacheParamsSchema.entries,
11503
- company_id: v27.optional(v27.string())
11902
+ companyId: v27.optional(v27.string())
11504
11903
  });
11505
11904
  var TransCompanyUpdateParamsSchema = v27.looseObject({
11506
- company_id: v27.optional(v27.string())
11905
+ companyId: v27.optional(v27.string())
11507
11906
  });
11508
11907
  var TransCompanyDeleteParamsSchema = v27.looseObject({
11509
- company_id: v27.optional(v27.string())
11908
+ companyId: v27.optional(v27.string())
11510
11909
  });
11511
11910
  var TransUserGetParamsSchema = v27.looseObject({
11512
11911
  ...EdgeCacheParamsSchema.entries,
11513
- user_id: v27.optional(v27.string())
11912
+ userId: v27.optional(v27.string())
11514
11913
  });
11515
11914
  var TransUserUpdateParamsSchema = v27.looseObject({
11516
- user_id: v27.optional(v27.string())
11915
+ userId: v27.optional(v27.string())
11517
11916
  });
11518
11917
  var TransUserDeleteParamsSchema = v27.looseObject({
11519
- user_id: v27.optional(v27.string())
11918
+ userId: v27.optional(v27.string())
11520
11919
  });
11521
11920
  var TransWebDisplayTypeGetParamsSchema = v27.looseObject({
11522
11921
  ...EdgeCacheParamsSchema.entries,
11523
- web_display_type_id: v27.optional(v27.string())
11922
+ webDisplayTypeId: v27.optional(v27.string())
11524
11923
  });
11525
11924
  var TransWebDisplayTypeUpdateParamsSchema = v27.looseObject({
11526
- web_display_type_id: v27.optional(v27.string())
11925
+ webDisplayTypeId: v27.optional(v27.string())
11527
11926
  });
11528
11927
  var TransWebDisplayTypeDeleteParamsSchema = v27.looseObject({
11529
- web_display_type_id: v27.optional(v27.string())
11928
+ webDisplayTypeId: v27.optional(v27.string())
11530
11929
  });
11531
11930
  var PassthroughDataSchema20 = v27.record(v27.string(), v27.unknown());
11532
11931
 
@@ -11575,7 +11974,7 @@ var endpoints20 = [
11575
11974
  action: "get",
11576
11975
  aliases: [],
11577
11976
  pathParams: ["categoryUid"],
11578
- queryParams: ["category_id"],
11977
+ queryParams: ["categoryId"],
11579
11978
  edgeCache: true,
11580
11979
  responseSchema: PassthroughDataSchema20,
11581
11980
  responseType: "passthrough"
@@ -11587,7 +11986,7 @@ var endpoints20 = [
11587
11986
  action: "update",
11588
11987
  aliases: [],
11589
11988
  pathParams: ["categoryUid"],
11590
- queryParams: ["category_id"],
11989
+ queryParams: ["categoryId"],
11591
11990
  edgeCache: false,
11592
11991
  responseSchema: PassthroughDataSchema20,
11593
11992
  responseType: "passthrough"
@@ -11599,7 +11998,7 @@ var endpoints20 = [
11599
11998
  action: "delete",
11600
11999
  aliases: [],
11601
12000
  pathParams: ["categoryUid"],
11602
- queryParams: ["category_id"],
12001
+ queryParams: ["categoryId"],
11603
12002
  edgeCache: false,
11604
12003
  responseSchema: PassthroughDataSchema20,
11605
12004
  responseType: "passthrough"
@@ -11623,7 +12022,7 @@ var endpoints20 = [
11623
12022
  action: "get",
11624
12023
  aliases: [],
11625
12024
  pathParams: ["companyUid"],
11626
- queryParams: ["company_id"],
12025
+ queryParams: ["companyId"],
11627
12026
  edgeCache: true,
11628
12027
  responseSchema: PassthroughDataSchema20,
11629
12028
  responseType: "passthrough"
@@ -11635,7 +12034,7 @@ var endpoints20 = [
11635
12034
  action: "update",
11636
12035
  aliases: [],
11637
12036
  pathParams: ["companyUid"],
11638
- queryParams: ["company_id"],
12037
+ queryParams: ["companyId"],
11639
12038
  edgeCache: false,
11640
12039
  responseSchema: PassthroughDataSchema20,
11641
12040
  responseType: "passthrough"
@@ -11647,7 +12046,7 @@ var endpoints20 = [
11647
12046
  action: "delete",
11648
12047
  aliases: [],
11649
12048
  pathParams: ["companyUid"],
11650
- queryParams: ["company_id"],
12049
+ queryParams: ["companyId"],
11651
12050
  edgeCache: false,
11652
12051
  responseSchema: PassthroughDataSchema20,
11653
12052
  responseType: "passthrough"
@@ -11695,7 +12094,7 @@ var endpoints20 = [
11695
12094
  action: "get",
11696
12095
  aliases: [],
11697
12096
  pathParams: ["usersUid"],
11698
- queryParams: ["user_id"],
12097
+ queryParams: ["userId"],
11699
12098
  edgeCache: true,
11700
12099
  responseSchema: PassthroughDataSchema20,
11701
12100
  responseType: "passthrough"
@@ -11707,7 +12106,7 @@ var endpoints20 = [
11707
12106
  action: "update",
11708
12107
  aliases: [],
11709
12108
  pathParams: ["usersUid"],
11710
- queryParams: ["user_id"],
12109
+ queryParams: ["userId"],
11711
12110
  edgeCache: false,
11712
12111
  responseSchema: PassthroughDataSchema20,
11713
12112
  responseType: "passthrough"
@@ -11719,7 +12118,7 @@ var endpoints20 = [
11719
12118
  action: "delete",
11720
12119
  aliases: [],
11721
12120
  pathParams: ["usersUid"],
11722
- queryParams: ["user_id"],
12121
+ queryParams: ["userId"],
11723
12122
  edgeCache: false,
11724
12123
  responseSchema: PassthroughDataSchema20,
11725
12124
  responseType: "passthrough"
@@ -11767,7 +12166,7 @@ var endpoints20 = [
11767
12166
  action: "get",
11768
12167
  aliases: [],
11769
12168
  pathParams: ["webDisplayTypeUid"],
11770
- queryParams: ["web_display_type_id"],
12169
+ queryParams: ["webDisplayTypeId"],
11771
12170
  edgeCache: true,
11772
12171
  responseSchema: PassthroughDataSchema20,
11773
12172
  responseType: "passthrough"
@@ -11779,7 +12178,7 @@ var endpoints20 = [
11779
12178
  action: "update",
11780
12179
  aliases: [],
11781
12180
  pathParams: ["webDisplayTypeUid"],
11782
- queryParams: ["web_display_type_id"],
12181
+ queryParams: ["webDisplayTypeId"],
11783
12182
  edgeCache: false,
11784
12183
  responseSchema: PassthroughDataSchema20,
11785
12184
  responseType: "passthrough"
@@ -11791,7 +12190,7 @@ var endpoints20 = [
11791
12190
  action: "delete",
11792
12191
  aliases: [],
11793
12192
  pathParams: ["webDisplayTypeUid"],
11794
- queryParams: ["web_display_type_id"],
12193
+ queryParams: ["webDisplayTypeId"],
11795
12194
  edgeCache: false,
11796
12195
  responseSchema: PassthroughDataSchema20,
11797
12196
  responseType: "passthrough"
@@ -11849,8 +12248,8 @@ function createHealthCheckDataResource20(healthCheck) {
11849
12248
  var P21ApisClient = class extends BaseServiceClient {
11850
12249
  constructor(http, baseUrl = "https://p21-apis.augur-api.com") {
11851
12250
  super("p21-apis", http, baseUrl);
11852
- const boundExecuteRequest = (config, params, pathParams) => {
11853
- return this.executeRequest(config, params, pathParams);
12251
+ const boundExecuteRequest = (config, params, pathParams, query) => {
12252
+ return this.executeRequest(config, params, pathParams, query);
11854
12253
  };
11855
12254
  const proxy = createServiceProxy("p21-apis", boundExecuteRequest, endpoints20);
11856
12255
  const dataProxy = createDataProxy(proxy);
@@ -11885,12 +12284,14 @@ var AddressListParamsSchema = v28.looseObject({
11885
12284
  enabledCd: v28.optional(v28.pipe(v28.unknown(), v28.transform(Number))),
11886
12285
  limit: v28.optional(v28.pipe(v28.unknown(), v28.transform(Number))),
11887
12286
  offset: v28.optional(v28.pipe(v28.unknown(), v28.transform(Number))),
12287
+ orderBy: v28.optional(v28.string()),
11888
12288
  statusCd: v28.optional(v28.pipe(v28.unknown(), v28.transform(Number)))
11889
12289
  });
11890
12290
  var AddressCorpAddressListParamsSchema = v28.looseObject({
11891
12291
  ...EdgeCacheParamsSchema.entries,
11892
12292
  limit: v28.optional(v28.pipe(v28.unknown(), v28.transform(Number))),
11893
12293
  offset: v28.optional(v28.pipe(v28.unknown(), v28.transform(Number))),
12294
+ orderBy: v28.optional(v28.string()),
11894
12295
  q: v28.optional(v28.string())
11895
12296
  });
11896
12297
  var AddressEnableGetParamsSchema = v28.looseObject({
@@ -11912,7 +12313,8 @@ var CodeP21ListParamsSchema = v28.looseObject({
11912
12313
  codeNoList: v28.optional(v28.string()),
11913
12314
  limit: v28.optional(v28.pipe(v28.unknown(), v28.transform(Number))),
11914
12315
  offset: v28.optional(v28.pipe(v28.unknown(), v28.transform(Number))),
11915
- q: v28.string()
12316
+ orderBy: v28.optional(v28.string()),
12317
+ q: v28.optional(v28.string())
11916
12318
  });
11917
12319
  var CompanyListParamsSchema = v28.looseObject({
11918
12320
  ...EdgeCacheParamsSchema.entries,
@@ -11942,7 +12344,8 @@ var LocationGetParamsSchema = v28.looseObject({
11942
12344
  var PaymentTypesListParamsSchema = v28.looseObject({
11943
12345
  ...EdgeCacheParamsSchema.entries,
11944
12346
  limit: v28.optional(v28.pipe(v28.unknown(), v28.transform(Number))),
11945
- offset: v28.optional(v28.pipe(v28.unknown(), v28.transform(Number)))
12347
+ offset: v28.optional(v28.pipe(v28.unknown(), v28.transform(Number))),
12348
+ orderBy: v28.optional(v28.string())
11946
12349
  });
11947
12350
  var CashDrawerDataSchema = v28.looseObject({
11948
12351
  cashDrawerId: v28.optional(v28.string()),
@@ -12028,7 +12431,15 @@ var endpoints21 = [
12028
12431
  action: "list",
12029
12432
  aliases: [],
12030
12433
  pathParams: [],
12031
- queryParams: ["carrierFlag", "defaultCd", "enabledCd", "limit", "offset", "statusCd"],
12434
+ queryParams: [
12435
+ "carrierFlag",
12436
+ "defaultCd",
12437
+ "enabledCd",
12438
+ "limit",
12439
+ "offset",
12440
+ "orderBy",
12441
+ "statusCd"
12442
+ ],
12032
12443
  edgeCache: true,
12033
12444
  responseSchema: PassthroughDataSchema21,
12034
12445
  responseType: "passthrough"
@@ -12064,7 +12475,7 @@ var endpoints21 = [
12064
12475
  action: "list",
12065
12476
  aliases: [],
12066
12477
  pathParams: ["id"],
12067
- queryParams: ["limit", "offset", "q"],
12478
+ queryParams: ["limit", "offset", "orderBy", "q"],
12068
12479
  edgeCache: true,
12069
12480
  responseSchema: PassthroughDataSchema21,
12070
12481
  responseType: "passthrough"
@@ -12124,11 +12535,23 @@ var endpoints21 = [
12124
12535
  action: "list",
12125
12536
  aliases: [],
12126
12537
  pathParams: [],
12127
- queryParams: ["codeNoList", "limit", "offset", "q"],
12538
+ queryParams: ["codeNoList", "limit", "offset", "orderBy", "q"],
12128
12539
  edgeCache: true,
12129
12540
  responseSchema: CodeP21DataSchema,
12130
12541
  responseType: "array"
12131
12542
  },
12543
+ {
12544
+ method: "GET",
12545
+ path: "/code-p21/{codeUid}",
12546
+ chain: "codeP21",
12547
+ action: "get",
12548
+ aliases: [],
12549
+ pathParams: ["codeUid"],
12550
+ queryParams: [],
12551
+ edgeCache: true,
12552
+ responseSchema: CodeP21DataSchema,
12553
+ responseType: "object"
12554
+ },
12132
12555
  {
12133
12556
  method: "GET",
12134
12557
  path: "/company",
@@ -12184,7 +12607,7 @@ var endpoints21 = [
12184
12607
  action: "list",
12185
12608
  aliases: [],
12186
12609
  pathParams: [],
12187
- queryParams: ["limit", "offset"],
12610
+ queryParams: ["limit", "offset", "orderBy"],
12188
12611
  edgeCache: true,
12189
12612
  responseSchema: PassthroughDataSchema21,
12190
12613
  responseType: "passthrough"
@@ -12253,8 +12676,8 @@ function createPingDataResource10(ping) {
12253
12676
  var P21CoreClient = class extends BaseServiceClient {
12254
12677
  constructor(http, baseUrl = "https://p21-core.augur-api.com") {
12255
12678
  super("p21-core", http, baseUrl);
12256
- const boundExecuteRequest = (config, params, pathParams) => {
12257
- return this.executeRequest(config, params, pathParams);
12679
+ const boundExecuteRequest = (config, params, pathParams, query) => {
12680
+ return this.executeRequest(config, params, pathParams, query);
12258
12681
  };
12259
12682
  const proxy = createServiceProxy("p21-core", boundExecuteRequest, endpoints21);
12260
12683
  const dataProxy = createDataProxy(proxy);
@@ -12585,8 +13008,8 @@ function createHealthCheckDataResource22(healthCheck) {
12585
13008
  var P21SismClient = class extends BaseServiceClient {
12586
13009
  constructor(http, baseUrl = "https://p21-sism.augur-api.com") {
12587
13010
  super("p21-sism", http, baseUrl);
12588
- const boundExecuteRequest = (config, params, pathParams) => {
12589
- return this.executeRequest(config, params, pathParams);
13011
+ const boundExecuteRequest = (config, params, pathParams, query) => {
13012
+ return this.executeRequest(config, params, pathParams, query);
12590
13013
  };
12591
13014
  const proxy = createServiceProxy("p21-sism", boundExecuteRequest, endpoints22);
12592
13015
  const dataProxy = createDataProxy(proxy);
@@ -12691,8 +13114,8 @@ function createHealthCheckDataResource23(healthCheck) {
12691
13114
  var ShippingClient = class extends BaseServiceClient {
12692
13115
  constructor(http, baseUrl = "https://shipping.augur-api.com") {
12693
13116
  super("shipping", http, baseUrl);
12694
- const boundExecuteRequest = (config, params, pathParams) => {
12695
- return this.executeRequest(config, params, pathParams);
13117
+ const boundExecuteRequest = (config, params, pathParams, query) => {
13118
+ return this.executeRequest(config, params, pathParams, query);
12696
13119
  };
12697
13120
  const proxy = createServiceProxy(
12698
13121
  "shipping",
@@ -12820,8 +13243,8 @@ function createHealthCheckDataResource24(healthCheck) {
12820
13243
  var SlackClient = class extends BaseServiceClient {
12821
13244
  constructor(http, baseUrl = "https://slack.augur-api.com") {
12822
13245
  super("slack", http, baseUrl);
12823
- const boundExecuteRequest = (config, params, pathParams) => {
12824
- return this.executeRequest(config, params, pathParams);
13246
+ const boundExecuteRequest = (config, params, pathParams, query) => {
13247
+ return this.executeRequest(config, params, pathParams, query);
12825
13248
  };
12826
13249
  const proxy = createServiceProxy("slack", boundExecuteRequest, endpoints24);
12827
13250
  const dataProxy = createDataProxy(proxy);
@@ -13020,8 +13443,8 @@ function createPingDataResource11(ping) {
13020
13443
  var SmartyStreetsClient = class extends BaseServiceClient {
13021
13444
  constructor(http, baseUrl = "https://smarty-streets.augur-api.com") {
13022
13445
  super("smarty-streets", http, baseUrl);
13023
- const boundExecuteRequest = (config, params, pathParams) => {
13024
- return this.executeRequest(config, params, pathParams);
13446
+ const boundExecuteRequest = (config, params, pathParams, query) => {
13447
+ return this.executeRequest(config, params, pathParams, query);
13025
13448
  };
13026
13449
  const proxy = createServiceProxy(
13027
13450
  "smarty-streets",
@@ -13186,8 +13609,8 @@ function createHealthCheckDataResource26(healthCheck) {
13186
13609
  var UPSClient = class extends BaseServiceClient {
13187
13610
  constructor(http, baseUrl = "https://ups.augur-api.com") {
13188
13611
  super("ups", http, baseUrl);
13189
- const boundExecuteRequest = (config, params, pathParams) => {
13190
- return this.executeRequest(config, params, pathParams);
13612
+ const boundExecuteRequest = (config, params, pathParams, query) => {
13613
+ return this.executeRequest(config, params, pathParams, query);
13191
13614
  };
13192
13615
  const proxy = createServiceProxy("ups", boundExecuteRequest, endpoints26);
13193
13616
  const dataProxy = createDataProxy(proxy);
@@ -13202,20 +13625,20 @@ var UPSClient = class extends BaseServiceClient {
13202
13625
  var v36 = __toESM(require("valibot"));
13203
13626
  var CommentsListParamsSchema = v36.looseObject({
13204
13627
  ...EdgeCacheParamsSchema.entries,
13205
- creator_id: v36.optional(v36.pipe(v36.unknown(), v36.transform(Number))),
13628
+ creatorId: v36.optional(v36.pipe(v36.unknown(), v36.transform(Number))),
13206
13629
  limit: v36.optional(v36.pipe(v36.unknown(), v36.transform(Number))),
13207
13630
  offset: v36.optional(v36.pipe(v36.unknown(), v36.transform(Number))),
13208
- order_by: v36.optional(v36.string()),
13209
- todos_id: v36.optional(v36.pipe(v36.unknown(), v36.transform(Number)))
13631
+ orderBy: v36.optional(v36.string()),
13632
+ todosId: v36.optional(v36.pipe(v36.unknown(), v36.transform(Number)))
13210
13633
  });
13211
13634
  var EventsListParamsSchema = v36.looseObject({
13212
13635
  ...EdgeCacheParamsSchema.entries,
13213
- event_type_cd: v36.optional(v36.pipe(v36.unknown(), v36.transform(Number))),
13636
+ eventTypeCd: v36.optional(v36.pipe(v36.unknown(), v36.transform(Number))),
13214
13637
  id: v36.optional(v36.pipe(v36.unknown(), v36.transform(Number))),
13215
13638
  limit: v36.optional(v36.pipe(v36.unknown(), v36.transform(Number))),
13216
13639
  offset: v36.optional(v36.pipe(v36.unknown(), v36.transform(Number))),
13217
- order_by: v36.optional(v36.string()),
13218
- people_id: v36.optional(v36.pipe(v36.unknown(), v36.transform(Number)))
13640
+ orderBy: v36.optional(v36.string()),
13641
+ peopleId: v36.optional(v36.pipe(v36.unknown(), v36.transform(Number)))
13219
13642
  });
13220
13643
  var MetricsListParamsSchema = v36.looseObject({
13221
13644
  ...EdgeCacheParamsSchema.entries,
@@ -13251,27 +13674,27 @@ var PeopleMetricsListParamsSchema = v36.looseObject({
13251
13674
  });
13252
13675
  var PeopleTodosListParamsSchema = v36.looseObject({
13253
13676
  ...EdgeCacheParamsSchema.entries,
13254
- completed_flag: v36.optional(v36.string()),
13255
- due_at: v36.optional(v36.string()),
13677
+ completedFlag: v36.optional(v36.string()),
13678
+ dueAt: v36.optional(v36.string()),
13256
13679
  limit: v36.optional(v36.pipe(v36.unknown(), v36.transform(Number))),
13257
13680
  offset: v36.optional(v36.pipe(v36.unknown(), v36.transform(Number))),
13258
- order_by: v36.optional(v36.string()),
13259
- projects_id: v36.optional(v36.pipe(v36.unknown(), v36.transform(Number)))
13681
+ orderBy: v36.optional(v36.string()),
13682
+ projectsId: v36.optional(v36.pipe(v36.unknown(), v36.transform(Number)))
13260
13683
  });
13261
13684
  var PeopleProjectsTodosListParamsSchema = v36.looseObject({
13262
13685
  ...EdgeCacheParamsSchema.entries,
13263
- completed_flag: v36.optional(v36.string()),
13686
+ completedFlag: v36.optional(v36.string()),
13264
13687
  limit: v36.optional(v36.pipe(v36.unknown(), v36.transform(Number))),
13265
13688
  offset: v36.optional(v36.pipe(v36.unknown(), v36.transform(Number))),
13266
- order_by: v36.optional(v36.string())
13689
+ orderBy: v36.optional(v36.string())
13267
13690
  });
13268
13691
  var ProjectsListParamsSchema = v36.looseObject({
13269
13692
  ...EdgeCacheParamsSchema.entries,
13270
- archived_flag: v36.optional(v36.string()),
13693
+ archivedFlag: v36.optional(v36.string()),
13271
13694
  limit: v36.optional(v36.pipe(v36.unknown(), v36.transform(Number))),
13272
13695
  offset: v36.optional(v36.pipe(v36.unknown(), v36.transform(Number))),
13273
- order_by: v36.optional(v36.string()),
13274
- trashed_flag: v36.optional(v36.string())
13696
+ orderBy: v36.optional(v36.string()),
13697
+ trashedFlag: v36.optional(v36.string())
13275
13698
  });
13276
13699
  var ProjectsMetricsListParamsSchema = v36.looseObject({
13277
13700
  ...EdgeCacheParamsSchema.entries,
@@ -13285,74 +13708,74 @@ var ProjectsMetricsListParamsSchema = v36.looseObject({
13285
13708
  });
13286
13709
  var ProjectsTodolistsListParamsSchema = v36.looseObject({
13287
13710
  ...EdgeCacheParamsSchema.entries,
13288
- completed_flag: v36.optional(v36.string()),
13711
+ completedFlag: v36.optional(v36.string()),
13289
13712
  limit: v36.optional(v36.pipe(v36.unknown(), v36.transform(Number))),
13290
13713
  offset: v36.optional(v36.pipe(v36.unknown(), v36.transform(Number))),
13291
- order_by: v36.optional(v36.string())
13714
+ orderBy: v36.optional(v36.string())
13292
13715
  });
13293
13716
  var ProjectsTodosListParamsSchema = v36.looseObject({
13294
13717
  ...EdgeCacheParamsSchema.entries,
13295
- assignee_id: v36.optional(v36.pipe(v36.unknown(), v36.transform(Number))),
13296
- completed_flag: v36.optional(v36.string()),
13718
+ assigneeId: v36.optional(v36.pipe(v36.unknown(), v36.transform(Number))),
13719
+ completedFlag: v36.optional(v36.string()),
13297
13720
  limit: v36.optional(v36.pipe(v36.unknown(), v36.transform(Number))),
13298
13721
  offset: v36.optional(v36.pipe(v36.unknown(), v36.transform(Number))),
13299
- order_by: v36.optional(v36.string())
13722
+ orderBy: v36.optional(v36.string())
13300
13723
  });
13301
13724
  var ProjectsTodolistsTodosListParamsSchema = v36.looseObject({
13302
13725
  ...EdgeCacheParamsSchema.entries,
13303
- assignee_id: v36.optional(v36.pipe(v36.unknown(), v36.transform(Number))),
13304
- completed_flag: v36.optional(v36.string()),
13726
+ assigneeId: v36.optional(v36.pipe(v36.unknown(), v36.transform(Number))),
13727
+ completedFlag: v36.optional(v36.string()),
13305
13728
  limit: v36.optional(v36.pipe(v36.unknown(), v36.transform(Number))),
13306
13729
  offset: v36.optional(v36.pipe(v36.unknown(), v36.transform(Number))),
13307
- order_by: v36.optional(v36.string())
13730
+ orderBy: v36.optional(v36.string())
13308
13731
  });
13309
13732
  var TodolistsListParamsSchema = v36.looseObject({
13310
13733
  ...EdgeCacheParamsSchema.entries,
13311
- assignee_id: v36.optional(v36.pipe(v36.unknown(), v36.transform(Number))),
13312
- completed_flag: v36.optional(v36.string()),
13734
+ assigneeId: v36.optional(v36.pipe(v36.unknown(), v36.transform(Number))),
13735
+ completedFlag: v36.optional(v36.string()),
13313
13736
  limit: v36.optional(v36.pipe(v36.unknown(), v36.transform(Number))),
13314
13737
  offset: v36.optional(v36.pipe(v36.unknown(), v36.transform(Number))),
13315
- order_by: v36.optional(v36.string()),
13316
- projects_id: v36.optional(v36.pipe(v36.unknown(), v36.transform(Number)))
13738
+ orderBy: v36.optional(v36.string()),
13739
+ projectsId: v36.optional(v36.pipe(v36.unknown(), v36.transform(Number)))
13317
13740
  });
13318
13741
  var TodosListParamsSchema = v36.looseObject({
13319
13742
  ...EdgeCacheParamsSchema.entries,
13320
- assignee_id: v36.optional(v36.pipe(v36.unknown(), v36.transform(Number))),
13321
- completed_flag: v36.optional(v36.string()),
13322
- due_at: v36.optional(v36.string()),
13743
+ assigneeId: v36.optional(v36.pipe(v36.unknown(), v36.transform(Number))),
13744
+ completedFlag: v36.optional(v36.string()),
13745
+ dueAt: v36.optional(v36.string()),
13323
13746
  limit: v36.optional(v36.pipe(v36.unknown(), v36.transform(Number))),
13324
13747
  offset: v36.optional(v36.pipe(v36.unknown(), v36.transform(Number))),
13325
- order_by: v36.optional(v36.string()),
13326
- projects_id: v36.optional(v36.pipe(v36.unknown(), v36.transform(Number))),
13327
- todolist_id: v36.optional(v36.pipe(v36.unknown(), v36.transform(Number)))
13748
+ orderBy: v36.optional(v36.string()),
13749
+ projectsId: v36.optional(v36.pipe(v36.unknown(), v36.transform(Number))),
13750
+ todolistId: v36.optional(v36.pipe(v36.unknown(), v36.transform(Number)))
13328
13751
  });
13329
13752
  var TodosSummaryListParamsSchema = v36.looseObject({
13330
13753
  ...EdgeCacheParamsSchema.entries,
13331
- akasha_cd: v36.optional(v36.pipe(v36.unknown(), v36.transform(Number))),
13754
+ akashaCd: v36.optional(v36.pipe(v36.unknown(), v36.transform(Number))),
13332
13755
  limit: v36.optional(v36.pipe(v36.unknown(), v36.transform(Number))),
13333
13756
  offset: v36.optional(v36.pipe(v36.unknown(), v36.transform(Number))),
13334
- process_cd: v36.optional(v36.pipe(v36.unknown(), v36.transform(Number)))
13757
+ processCd: v36.optional(v36.pipe(v36.unknown(), v36.transform(Number)))
13335
13758
  });
13336
13759
  var TodosCommentsListParamsSchema = v36.looseObject({
13337
13760
  ...EdgeCacheParamsSchema.entries,
13338
13761
  limit: v36.optional(v36.pipe(v36.unknown(), v36.transform(Number))),
13339
13762
  offset: v36.optional(v36.pipe(v36.unknown(), v36.transform(Number))),
13340
- order_by: v36.optional(v36.string())
13763
+ orderBy: v36.optional(v36.string())
13341
13764
  });
13342
13765
  var TodosEventsListParamsSchema = v36.looseObject({
13343
13766
  ...EdgeCacheParamsSchema.entries,
13344
- event_type_cd: v36.optional(v36.pipe(v36.unknown(), v36.transform(Number))),
13767
+ eventTypeCd: v36.optional(v36.pipe(v36.unknown(), v36.transform(Number))),
13345
13768
  limit: v36.optional(v36.pipe(v36.unknown(), v36.transform(Number))),
13346
13769
  offset: v36.optional(v36.pipe(v36.unknown(), v36.transform(Number))),
13347
- order_by: v36.optional(v36.string()),
13348
- people_id: v36.optional(v36.pipe(v36.unknown(), v36.transform(Number)))
13770
+ orderBy: v36.optional(v36.string()),
13771
+ peopleId: v36.optional(v36.pipe(v36.unknown(), v36.transform(Number)))
13349
13772
  });
13350
13773
  var TodosSessionsListParamsSchema = v36.looseObject({
13351
13774
  ...EdgeCacheParamsSchema.entries,
13352
13775
  limit: v36.optional(v36.pipe(v36.unknown(), v36.transform(Number))),
13353
13776
  offset: v36.optional(v36.pipe(v36.unknown(), v36.transform(Number))),
13354
- order_by: v36.optional(v36.string()),
13355
- session_status_cd: v36.optional(v36.pipe(v36.unknown(), v36.transform(Number)))
13777
+ orderBy: v36.optional(v36.string()),
13778
+ sessionStatusCd: v36.optional(v36.pipe(v36.unknown(), v36.transform(Number)))
13356
13779
  });
13357
13780
  var CommentsDataSchema = v36.looseObject({
13358
13781
  id: v36.optional(v36.number()),
@@ -13554,7 +13977,7 @@ var endpoints27 = [
13554
13977
  action: "list",
13555
13978
  aliases: [],
13556
13979
  pathParams: [],
13557
- queryParams: ["creator_id", "limit", "offset", "order_by", "todos_id"],
13980
+ queryParams: ["creatorId", "limit", "offset", "orderBy", "todosId"],
13558
13981
  edgeCache: true,
13559
13982
  responseSchema: CommentsDataSchema,
13560
13983
  responseType: "array"
@@ -13578,7 +14001,7 @@ var endpoints27 = [
13578
14001
  action: "list",
13579
14002
  aliases: [],
13580
14003
  pathParams: [],
13581
- queryParams: ["event_type_cd", "id", "limit", "offset", "order_by", "people_id"],
14004
+ queryParams: ["eventTypeCd", "id", "limit", "offset", "orderBy", "peopleId"],
13582
14005
  edgeCache: true,
13583
14006
  responseSchema: EventsDataSchema,
13584
14007
  responseType: "array"
@@ -13657,7 +14080,7 @@ var endpoints27 = [
13657
14080
  action: "list",
13658
14081
  aliases: [],
13659
14082
  pathParams: ["id"],
13660
- queryParams: ["completed_flag", "due_at", "limit", "offset", "order_by", "projects_id"],
14083
+ queryParams: ["completedFlag", "dueAt", "limit", "offset", "orderBy", "projectsId"],
13661
14084
  edgeCache: true,
13662
14085
  responseSchema: PeopleDataSchema,
13663
14086
  responseType: "array"
@@ -13669,7 +14092,7 @@ var endpoints27 = [
13669
14092
  action: "list",
13670
14093
  aliases: [],
13671
14094
  pathParams: ["personId", "projectId"],
13672
- queryParams: ["completed_flag", "limit", "offset", "order_by"],
14095
+ queryParams: ["completedFlag", "limit", "offset", "orderBy"],
13673
14096
  edgeCache: true,
13674
14097
  responseSchema: PeopleDataSchema,
13675
14098
  responseType: "array"
@@ -13681,7 +14104,7 @@ var endpoints27 = [
13681
14104
  action: "list",
13682
14105
  aliases: [],
13683
14106
  pathParams: [],
13684
- queryParams: ["archived_flag", "limit", "offset", "order_by", "trashed_flag"],
14107
+ queryParams: ["archivedFlag", "limit", "offset", "orderBy", "trashedFlag"],
13685
14108
  edgeCache: true,
13686
14109
  responseSchema: ProjectsDataSchema,
13687
14110
  responseType: "array"
@@ -13725,7 +14148,7 @@ var endpoints27 = [
13725
14148
  action: "list",
13726
14149
  aliases: [],
13727
14150
  pathParams: ["id"],
13728
- queryParams: ["completed_flag", "limit", "offset", "order_by"],
14151
+ queryParams: ["completedFlag", "limit", "offset", "orderBy"],
13729
14152
  edgeCache: true,
13730
14153
  responseSchema: ProjectsDataSchema,
13731
14154
  responseType: "array"
@@ -13737,7 +14160,7 @@ var endpoints27 = [
13737
14160
  action: "list",
13738
14161
  aliases: [],
13739
14162
  pathParams: ["id"],
13740
- queryParams: ["assignee_id", "completed_flag", "limit", "offset", "order_by"],
14163
+ queryParams: ["assigneeId", "completedFlag", "limit", "offset", "orderBy"],
13741
14164
  edgeCache: true,
13742
14165
  responseSchema: ProjectsDataSchema,
13743
14166
  responseType: "array"
@@ -13749,7 +14172,7 @@ var endpoints27 = [
13749
14172
  action: "list",
13750
14173
  aliases: [],
13751
14174
  pathParams: ["projectId", "todolistId"],
13752
- queryParams: ["assignee_id", "completed_flag", "limit", "offset", "order_by"],
14175
+ queryParams: ["assigneeId", "completedFlag", "limit", "offset", "orderBy"],
13753
14176
  edgeCache: true,
13754
14177
  responseSchema: ProjectsDataSchema,
13755
14178
  responseType: "array"
@@ -13761,7 +14184,7 @@ var endpoints27 = [
13761
14184
  action: "list",
13762
14185
  aliases: [],
13763
14186
  pathParams: [],
13764
- queryParams: ["assignee_id", "completed_flag", "limit", "offset", "order_by", "projects_id"],
14187
+ queryParams: ["assigneeId", "completedFlag", "limit", "offset", "orderBy", "projectsId"],
13765
14188
  edgeCache: true,
13766
14189
  responseSchema: TodolistsDataSchema,
13767
14190
  responseType: "array"
@@ -13786,14 +14209,14 @@ var endpoints27 = [
13786
14209
  aliases: [],
13787
14210
  pathParams: [],
13788
14211
  queryParams: [
13789
- "assignee_id",
13790
- "completed_flag",
13791
- "due_at",
14212
+ "assigneeId",
14213
+ "completedFlag",
14214
+ "dueAt",
13792
14215
  "limit",
13793
14216
  "offset",
13794
- "order_by",
13795
- "projects_id",
13796
- "todolist_id"
14217
+ "orderBy",
14218
+ "projectsId",
14219
+ "todolistId"
13797
14220
  ],
13798
14221
  edgeCache: true,
13799
14222
  responseSchema: TodosDataSchema,
@@ -13806,7 +14229,7 @@ var endpoints27 = [
13806
14229
  action: "list",
13807
14230
  aliases: [],
13808
14231
  pathParams: [],
13809
- queryParams: ["akasha_cd", "limit", "offset", "process_cd"],
14232
+ queryParams: ["akashaCd", "limit", "offset", "processCd"],
13810
14233
  edgeCache: true,
13811
14234
  responseSchema: TodosSummaryDataSchema,
13812
14235
  responseType: "array"
@@ -13842,7 +14265,7 @@ var endpoints27 = [
13842
14265
  action: "list",
13843
14266
  aliases: [],
13844
14267
  pathParams: ["id"],
13845
- queryParams: ["limit", "offset", "order_by"],
14268
+ queryParams: ["limit", "offset", "orderBy"],
13846
14269
  edgeCache: true,
13847
14270
  responseSchema: TodosDataSchema,
13848
14271
  responseType: "array"
@@ -13854,7 +14277,7 @@ var endpoints27 = [
13854
14277
  action: "list",
13855
14278
  aliases: [],
13856
14279
  pathParams: ["id"],
13857
- queryParams: ["event_type_cd", "limit", "offset", "order_by", "people_id"],
14280
+ queryParams: ["eventTypeCd", "limit", "offset", "orderBy", "peopleId"],
13858
14281
  edgeCache: true,
13859
14282
  responseSchema: EventsDataSchema,
13860
14283
  responseType: "array"
@@ -13890,7 +14313,7 @@ var endpoints27 = [
13890
14313
  action: "list",
13891
14314
  aliases: [],
13892
14315
  pathParams: ["id"],
13893
- queryParams: ["limit", "offset", "order_by", "session_status_cd"],
14316
+ queryParams: ["limit", "offset", "orderBy", "sessionStatusCd"],
13894
14317
  edgeCache: true,
13895
14318
  responseSchema: TodosSessionsDataSchema,
13896
14319
  responseType: "array"
@@ -13994,8 +14417,8 @@ function createHealthCheckDataResource27(healthCheck) {
13994
14417
  var Basecamp2Client = class extends BaseServiceClient {
13995
14418
  constructor(http, baseUrl = "https://basecamp2.augur-api.com") {
13996
14419
  super("basecamp2", http, baseUrl);
13997
- const boundExecuteRequest = (config, params, pathParams) => {
13998
- return this.executeRequest(config, params, pathParams);
14420
+ const boundExecuteRequest = (config, params, pathParams, query) => {
14421
+ return this.executeRequest(config, params, pathParams, query);
13999
14422
  };
14000
14423
  const proxy = createServiceProxy(
14001
14424
  "basecamp2",
@@ -14925,7 +15348,7 @@ function createCrossSiteAuthenticator(augurInfoToken) {
14925
15348
  }
14926
15349
 
14927
15350
  // src/index.ts
14928
- var VERSION = "2026.6.4";
15351
+ var VERSION = "2026.7.1";
14929
15352
  // Annotate the CommonJS export names for ESM import in node:
14930
15353
  0 && (module.exports = {
14931
15354
  AgrInfoClient,