@simpleapps-com/augur-api 2026.6.5 → 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()),
@@ -4334,7 +4480,10 @@ var AttributesItemsDataSchema = v11.looseObject({
4334
4480
  processCd: v11.optional(v11.number()),
4335
4481
  statusCd: v11.optional(v11.number()),
4336
4482
  attributeValueUid: v11.optional(v11.number()),
4337
- 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())
4338
4487
  });
4339
4488
  var AttributesValuesDataSchema = v11.looseObject({
4340
4489
  attributeValueUid: v11.optional(v11.number()),
@@ -4426,7 +4575,23 @@ var InvLocDataSchema = v11.looseObject({
4426
4575
  updateCd: v11.optional(v11.number()),
4427
4576
  productGroupId: v11.optional(v11.nullable(v11.string())),
4428
4577
  purchaseDiscountGroup: v11.optional(v11.nullable(v11.string())),
4429
- 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())
4430
4595
  });
4431
4596
  var InvMastFaqDataSchema = v11.looseObject({
4432
4597
  invMastFaqUid: v11.optional(v11.number()),
@@ -4672,6 +4837,8 @@ var endpoints6 = [
4672
4837
  "attributeValueUid",
4673
4838
  "excludeValues",
4674
4839
  "includeValues",
4840
+ "itemId",
4841
+ "itemIdSearch",
4675
4842
  "limit",
4676
4843
  "offset",
4677
4844
  "orderBy",
@@ -5151,7 +5318,7 @@ var endpoints6 = [
5151
5318
  pathParams: ["invMastUid"],
5152
5319
  queryParams: [],
5153
5320
  edgeCache: false,
5154
- responseSchema: AttributesItemsDataSchema,
5321
+ responseSchema: InvMastAttributesDataSchema,
5155
5322
  responseType: "object"
5156
5323
  },
5157
5324
  {
@@ -5175,7 +5342,7 @@ var endpoints6 = [
5175
5342
  pathParams: ["invMastUid", "attributeUid"],
5176
5343
  queryParams: [],
5177
5344
  edgeCache: false,
5178
- responseSchema: AttributesItemsDataSchema,
5345
+ responseSchema: InvMastAttributesDataSchema,
5179
5346
  responseType: "object"
5180
5347
  },
5181
5348
  {
@@ -5187,7 +5354,7 @@ var endpoints6 = [
5187
5354
  pathParams: ["invMastUid", "attributeUid", "attributeValueUid"],
5188
5355
  queryParams: [],
5189
5356
  edgeCache: false,
5190
- responseSchema: AttributesItemsDataSchema,
5357
+ responseSchema: InvMastAttributesDataSchema,
5191
5358
  responseType: "object"
5192
5359
  },
5193
5360
  {
@@ -5917,8 +6084,8 @@ function createWhoamiDataResource(whoami) {
5917
6084
  var ItemsClient = class extends BaseServiceClient {
5918
6085
  constructor(http, baseUrl = "https://items.augur-api.com") {
5919
6086
  super("items", http, baseUrl);
5920
- const boundExecuteRequest = (config, params, pathParams) => {
5921
- return this.executeRequest(config, params, pathParams);
6087
+ const boundExecuteRequest = (config, params, pathParams, query) => {
6088
+ return this.executeRequest(config, params, pathParams, query);
5922
6089
  };
5923
6090
  const proxy = createServiceProxy("items", boundExecuteRequest, endpoints6);
5924
6091
  const dataProxy = createDataProxy(proxy);
@@ -6383,8 +6550,8 @@ function createHealthCheckDataResource7(healthCheck) {
6383
6550
  var LegacyClient = class extends BaseServiceClient {
6384
6551
  constructor(http, baseUrl = "https://legacy.augur-api.com") {
6385
6552
  super("legacy", http, baseUrl);
6386
- const boundExecuteRequest = (config, params, pathParams) => {
6387
- return this.executeRequest(config, params, pathParams);
6553
+ const boundExecuteRequest = (config, params, pathParams, query) => {
6554
+ return this.executeRequest(config, params, pathParams, query);
6388
6555
  };
6389
6556
  const proxy = createServiceProxy("legacy", boundExecuteRequest, endpoints7);
6390
6557
  const dataProxy = createDataProxy(proxy);
@@ -6414,11 +6581,6 @@ var BinTransferListParamsSchema = v14.looseObject({
6414
6581
  offset: v14.optional(v14.pipe(v14.unknown(), v14.transform(Number))),
6415
6582
  statusCd: v14.optional(v14.pipe(v14.unknown(), v14.transform(Number)))
6416
6583
  });
6417
- var BinTransferCreateParamsSchema = v14.looseObject({
6418
- limit: v14.optional(v14.pipe(v14.unknown(), v14.transform(Number))),
6419
- offset: v14.optional(v14.pipe(v14.unknown(), v14.transform(Number))),
6420
- statusCd: v14.optional(v14.pipe(v14.unknown(), v14.transform(Number)))
6421
- });
6422
6584
  var PurchaseOrderReceiptListParamsSchema = v14.looseObject({
6423
6585
  ...EdgeCacheParamsSchema.entries,
6424
6586
  limit: v14.optional(v14.pipe(v14.unknown(), v14.transform(Number))),
@@ -6426,12 +6588,6 @@ var PurchaseOrderReceiptListParamsSchema = v14.looseObject({
6426
6588
  referenceNo: v14.optional(v14.string()),
6427
6589
  statusCd: v14.optional(v14.pipe(v14.unknown(), v14.transform(Number)))
6428
6590
  });
6429
- var PurchaseOrderReceiptCreateParamsSchema = 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
- referenceNo: v14.optional(v14.string()),
6433
- statusCd: v14.optional(v14.pipe(v14.unknown(), v14.transform(Number)))
6434
- });
6435
6591
  var ReceivingListParamsSchema = v14.looseObject({
6436
6592
  ...EdgeCacheParamsSchema.entries,
6437
6593
  limit: v14.optional(v14.pipe(v14.unknown(), v14.transform(Number))),
@@ -6439,12 +6595,6 @@ var ReceivingListParamsSchema = v14.looseObject({
6439
6595
  poNo: v14.optional(v14.pipe(v14.unknown(), v14.transform(Number))),
6440
6596
  statusCd: v14.optional(v14.pipe(v14.unknown(), v14.transform(Number)))
6441
6597
  });
6442
- var ReceivingCreateParamsSchema = 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
- poNo: v14.optional(v14.pipe(v14.unknown(), v14.transform(Number))),
6446
- statusCd: v14.optional(v14.pipe(v14.unknown(), v14.transform(Number)))
6447
- });
6448
6598
  var TransferListParamsSchema = v14.looseObject({
6449
6599
  ...EdgeCacheParamsSchema.entries,
6450
6600
  limit: v14.optional(v14.pipe(v14.unknown(), v14.transform(Number))),
@@ -6452,12 +6602,6 @@ var TransferListParamsSchema = v14.looseObject({
6452
6602
  referenceNo: v14.optional(v14.string()),
6453
6603
  statusCd: v14.optional(v14.pipe(v14.unknown(), v14.transform(Number)))
6454
6604
  });
6455
- var TransferCreateParamsSchema = 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
6605
  var TransferReceiptListParamsSchema = v14.looseObject({
6462
6606
  ...EdgeCacheParamsSchema.entries,
6463
6607
  limit: v14.optional(v14.pipe(v14.unknown(), v14.transform(Number))),
@@ -6465,12 +6609,6 @@ var TransferReceiptListParamsSchema = v14.looseObject({
6465
6609
  referenceNo: v14.optional(v14.string()),
6466
6610
  statusCd: v14.optional(v14.pipe(v14.unknown(), v14.transform(Number)))
6467
6611
  });
6468
- var TransferReceiptCreateParamsSchema = 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
6612
  var TransferShippingListParamsSchema = v14.looseObject({
6475
6613
  ...EdgeCacheParamsSchema.entries,
6476
6614
  limit: v14.optional(v14.pipe(v14.unknown(), v14.transform(Number))),
@@ -6478,12 +6616,6 @@ var TransferShippingListParamsSchema = v14.looseObject({
6478
6616
  referenceNo: v14.optional(v14.string()),
6479
6617
  statusCd: v14.optional(v14.pipe(v14.unknown(), v14.transform(Number)))
6480
6618
  });
6481
- var TransferShippingCreateParamsSchema = v14.looseObject({
6482
- limit: v14.optional(v14.pipe(v14.unknown(), v14.transform(Number))),
6483
- offset: v14.optional(v14.pipe(v14.unknown(), v14.transform(Number))),
6484
- referenceNo: v14.optional(v14.string()),
6485
- statusCd: v14.optional(v14.pipe(v14.unknown(), v14.transform(Number)))
6486
- });
6487
6619
  var BinTransferDataSchema = v14.looseObject({
6488
6620
  binTransferHdrUid: v14.optional(v14.number()),
6489
6621
  importState: v14.optional(v14.string()),
@@ -6573,6 +6705,30 @@ var PassthroughDataSchema8 = v14.record(v14.string(), v14.unknown());
6573
6705
 
6574
6706
  // src/services/nexus/generated/endpoints.ts
6575
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
+ },
6576
6732
  {
6577
6733
  method: "GET",
6578
6734
  path: "/bin-transfer/{binTransferHdrUid}",
@@ -6611,38 +6767,38 @@ var endpoints8 = [
6611
6767
  },
6612
6768
  {
6613
6769
  method: "GET",
6614
- path: "/bin-transfer",
6615
- 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",
6616
6784
  action: "list",
6617
6785
  aliases: [],
6618
6786
  pathParams: [],
6619
- queryParams: ["limit", "offset", "statusCd"],
6787
+ queryParams: ["limit", "offset", "referenceNo", "statusCd"],
6620
6788
  edgeCache: true,
6621
- responseSchema: BinTransferDataSchema,
6789
+ responseSchema: PurchaseOrderReceiptDataSchema,
6622
6790
  responseType: "array"
6623
6791
  },
6624
6792
  {
6625
6793
  method: "POST",
6626
- path: "/bin-transfer",
6627
- chain: "binTransfer",
6794
+ path: "/purchase-order-receipt",
6795
+ chain: "purchaseOrderReceipt",
6628
6796
  action: "create",
6629
6797
  aliases: [],
6630
6798
  pathParams: [],
6631
- queryParams: ["limit", "offset", "statusCd"],
6632
- edgeCache: false,
6633
- responseSchema: BinTransferDataSchema,
6634
- responseType: "object"
6635
- },
6636
- {
6637
- method: "GET",
6638
- path: "/bin-transfer/{binTransferHdrUid}/status",
6639
- chain: "binTransfer.status",
6640
- action: "list",
6641
- aliases: [],
6642
- pathParams: ["binTransferHdrUid"],
6643
6799
  queryParams: [],
6644
- edgeCache: true,
6645
- responseSchema: BinTransferStatusDataSchema,
6800
+ edgeCache: false,
6801
+ responseSchema: PurchaseOrderReceiptDataSchema,
6646
6802
  responseType: "object"
6647
6803
  },
6648
6804
  {
@@ -6683,26 +6839,26 @@ var endpoints8 = [
6683
6839
  },
6684
6840
  {
6685
6841
  method: "GET",
6686
- path: "/purchase-order-receipt",
6687
- chain: "purchaseOrderReceipt",
6842
+ path: "/receiving",
6843
+ chain: "receiving",
6688
6844
  action: "list",
6689
6845
  aliases: [],
6690
6846
  pathParams: [],
6691
- queryParams: ["limit", "offset", "referenceNo", "statusCd"],
6847
+ queryParams: ["limit", "offset", "poNo", "statusCd"],
6692
6848
  edgeCache: true,
6693
- responseSchema: PurchaseOrderReceiptDataSchema,
6849
+ responseSchema: ReceivingDataSchema,
6694
6850
  responseType: "array"
6695
6851
  },
6696
6852
  {
6697
6853
  method: "POST",
6698
- path: "/purchase-order-receipt",
6699
- chain: "purchaseOrderReceipt",
6854
+ path: "/receiving",
6855
+ chain: "receiving",
6700
6856
  action: "create",
6701
6857
  aliases: [],
6702
6858
  pathParams: [],
6703
- queryParams: ["limit", "offset", "referenceNo", "statusCd"],
6859
+ queryParams: [],
6704
6860
  edgeCache: false,
6705
- responseSchema: PurchaseOrderReceiptDataSchema,
6861
+ responseSchema: ReceivingDataSchema,
6706
6862
  responseType: "object"
6707
6863
  },
6708
6864
  {
@@ -6743,59 +6899,23 @@ var endpoints8 = [
6743
6899
  },
6744
6900
  {
6745
6901
  method: "GET",
6746
- path: "/receiving",
6747
- chain: "receiving",
6902
+ path: "/transfer",
6903
+ chain: "transfer",
6748
6904
  action: "list",
6749
6905
  aliases: [],
6750
6906
  pathParams: [],
6751
- queryParams: ["limit", "offset", "poNo", "statusCd"],
6907
+ queryParams: ["limit", "offset", "referenceNo", "statusCd"],
6752
6908
  edgeCache: true,
6753
- responseSchema: ReceivingDataSchema,
6909
+ responseSchema: TransferDataSchema,
6754
6910
  responseType: "array"
6755
6911
  },
6756
6912
  {
6757
6913
  method: "POST",
6758
- path: "/receiving",
6759
- chain: "receiving",
6914
+ path: "/transfer",
6915
+ chain: "transfer",
6760
6916
  action: "create",
6761
6917
  aliases: [],
6762
6918
  pathParams: [],
6763
- queryParams: ["limit", "offset", "poNo", "statusCd"],
6764
- edgeCache: false,
6765
- responseSchema: ReceivingDataSchema,
6766
- responseType: "object"
6767
- },
6768
- {
6769
- method: "GET",
6770
- path: "/transfer/{transferUid}",
6771
- chain: "transfer",
6772
- action: "get",
6773
- aliases: [],
6774
- pathParams: ["transferUid"],
6775
- queryParams: [],
6776
- edgeCache: true,
6777
- responseSchema: TransferDataSchema,
6778
- responseType: "object"
6779
- },
6780
- {
6781
- method: "PUT",
6782
- path: "/transfer/{transferUid}",
6783
- chain: "transfer",
6784
- action: "update",
6785
- aliases: [],
6786
- pathParams: ["transferUid"],
6787
- queryParams: [],
6788
- edgeCache: false,
6789
- responseSchema: TransferDataSchema,
6790
- responseType: "object"
6791
- },
6792
- {
6793
- method: "DELETE",
6794
- path: "/transfer/{transferUid}",
6795
- chain: "transfer",
6796
- action: "delete",
6797
- aliases: [],
6798
- pathParams: ["transferUid"],
6799
6919
  queryParams: [],
6800
6920
  edgeCache: false,
6801
6921
  responseSchema: TransferDataSchema,
@@ -6803,26 +6923,26 @@ var endpoints8 = [
6803
6923
  },
6804
6924
  {
6805
6925
  method: "GET",
6806
- path: "/transfer",
6807
- chain: "transfer",
6926
+ path: "/transfer-receipt",
6927
+ chain: "transferReceipt",
6808
6928
  action: "list",
6809
6929
  aliases: [],
6810
6930
  pathParams: [],
6811
6931
  queryParams: ["limit", "offset", "referenceNo", "statusCd"],
6812
6932
  edgeCache: true,
6813
- responseSchema: TransferDataSchema,
6933
+ responseSchema: TransferReceiptDataSchema,
6814
6934
  responseType: "array"
6815
6935
  },
6816
6936
  {
6817
6937
  method: "POST",
6818
- path: "/transfer",
6819
- chain: "transfer",
6938
+ path: "/transfer-receipt",
6939
+ chain: "transferReceipt",
6820
6940
  action: "create",
6821
6941
  aliases: [],
6822
6942
  pathParams: [],
6823
- queryParams: ["limit", "offset", "referenceNo", "statusCd"],
6943
+ queryParams: [],
6824
6944
  edgeCache: false,
6825
- responseSchema: TransferDataSchema,
6945
+ responseSchema: TransferReceiptDataSchema,
6826
6946
  responseType: "object"
6827
6947
  },
6828
6948
  {
@@ -6863,8 +6983,8 @@ var endpoints8 = [
6863
6983
  },
6864
6984
  {
6865
6985
  method: "GET",
6866
- path: "/transfer-receipt",
6867
- chain: "transferReceipt",
6986
+ path: "/transfer-shipping",
6987
+ chain: "transferShipping",
6868
6988
  action: "list",
6869
6989
  aliases: [],
6870
6990
  pathParams: [],
@@ -6875,12 +6995,12 @@ var endpoints8 = [
6875
6995
  },
6876
6996
  {
6877
6997
  method: "POST",
6878
- path: "/transfer-receipt",
6879
- chain: "transferReceipt",
6998
+ path: "/transfer-shipping",
6999
+ chain: "transferShipping",
6880
7000
  action: "create",
6881
7001
  aliases: [],
6882
7002
  pathParams: [],
6883
- queryParams: ["limit", "offset", "referenceNo", "statusCd"],
7003
+ queryParams: [],
6884
7004
  edgeCache: false,
6885
7005
  responseSchema: TransferReceiptDataSchema,
6886
7006
  responseType: "object"
@@ -6923,26 +7043,38 @@ var endpoints8 = [
6923
7043
  },
6924
7044
  {
6925
7045
  method: "GET",
6926
- path: "/transfer-shipping",
6927
- chain: "transferShipping",
6928
- 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",
6929
7061
  aliases: [],
6930
- pathParams: [],
6931
- queryParams: ["limit", "offset", "referenceNo", "statusCd"],
6932
- edgeCache: true,
6933
- responseSchema: TransferReceiptDataSchema,
6934
- responseType: "array"
7062
+ pathParams: ["transferUid"],
7063
+ queryParams: [],
7064
+ edgeCache: false,
7065
+ responseSchema: TransferDataSchema,
7066
+ responseType: "object"
6935
7067
  },
6936
7068
  {
6937
- method: "POST",
6938
- path: "/transfer-shipping",
6939
- chain: "transferShipping",
6940
- action: "create",
7069
+ method: "DELETE",
7070
+ path: "/transfer/{transferUid}",
7071
+ chain: "transfer",
7072
+ action: "delete",
6941
7073
  aliases: [],
6942
- pathParams: [],
6943
- queryParams: ["limit", "offset", "referenceNo", "statusCd"],
7074
+ pathParams: ["transferUid"],
7075
+ queryParams: [],
6944
7076
  edgeCache: false,
6945
- responseSchema: TransferReceiptDataSchema,
7077
+ responseSchema: TransferDataSchema,
6946
7078
  responseType: "object"
6947
7079
  }
6948
7080
  ];
@@ -7021,8 +7153,8 @@ function createPingDataResource5(ping) {
7021
7153
  var NexusClient = class extends BaseServiceClient {
7022
7154
  constructor(http, baseUrl = "https://nexus.augur-api.com") {
7023
7155
  super("nexus", http, baseUrl);
7024
- const boundExecuteRequest = (config, params, pathParams) => {
7025
- return this.executeRequest(config, params, pathParams);
7156
+ const boundExecuteRequest = (config, params, pathParams, query) => {
7157
+ return this.executeRequest(config, params, pathParams, query);
7026
7158
  };
7027
7159
  const proxy = createServiceProxy("nexus", boundExecuteRequest, endpoints8);
7028
7160
  const dataProxy = createDataProxy(proxy);
@@ -7102,6 +7234,14 @@ var TrainingConversationsMessagesListParamsSchema = v15.looseObject({
7102
7234
  offset: v15.optional(v15.pipe(v15.unknown(), v15.transform(Number))),
7103
7235
  orderBy: v15.optional(v15.string())
7104
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
+ });
7105
7245
  var FyxerTranscriptDataSchema = v15.looseObject({
7106
7246
  fyxerTranscriptHdrUid: v15.optional(v15.number()),
7107
7247
  link: v15.optional(v15.string()),
@@ -7221,6 +7361,26 @@ var TrainingConversationsMessagesDataSchema = v15.looseObject({
7221
7361
  dateCreated: v15.optional(v15.string()),
7222
7362
  dateLastModified: v15.optional(v15.string())
7223
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
+ });
7224
7384
  var PassthroughDataSchema9 = v15.record(v15.string(), v15.unknown());
7225
7385
 
7226
7386
  // src/services/agr-site/generated/endpoints.ts
@@ -7237,6 +7397,18 @@ var endpoints9 = [
7237
7397
  responseSchema: PassthroughDataSchema9,
7238
7398
  responseType: "passthrough"
7239
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
+ },
7240
7412
  {
7241
7413
  method: "GET",
7242
7414
  path: "/fyxer-transcript",
@@ -7656,6 +7828,66 @@ var endpoints9 = [
7656
7828
  edgeCache: false,
7657
7829
  responseSchema: TrainingConversationsMessagesDataSchema,
7658
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"
7659
7891
  }
7660
7892
  ];
7661
7893
 
@@ -7818,12 +8050,13 @@ function createWhoamiDataResource2(whoami) {
7818
8050
  var AgrSiteClient = class extends BaseServiceClient {
7819
8051
  constructor(http, baseUrl = "https://agr-site.augur-api.com") {
7820
8052
  super("agr-site", http, baseUrl);
7821
- const boundExecuteRequest = (config, params, pathParams) => {
7822
- return this.executeRequest(config, params, pathParams);
8053
+ const boundExecuteRequest = (config, params, pathParams, query) => {
8054
+ return this.executeRequest(config, params, pathParams, query);
7823
8055
  };
7824
8056
  const proxy = createServiceProxy("agr-site", boundExecuteRequest, endpoints9);
7825
8057
  const dataProxy = createDataProxy(proxy);
7826
8058
  this.context = proxy.context;
8059
+ this.datafiles = proxy.datafiles;
7827
8060
  this.fyxerTranscript = proxy.fyxerTranscript;
7828
8061
  this.geoCodesPostalCodes = proxy.geoCodesPostalCodes;
7829
8062
  this.metaFiles = proxy.metaFiles;
@@ -7832,7 +8065,9 @@ var AgrSiteClient = class extends BaseServiceClient {
7832
8065
  this.postalCodesXShiptos = proxy.postalCodesXShiptos;
7833
8066
  this.settings = proxy.settings;
7834
8067
  this.training = proxy.training;
8068
+ this.users = proxy.users;
7835
8069
  this.contextData = dataProxy.context;
8070
+ this.datafilesData = dataProxy.datafiles;
7836
8071
  this.fyxerTranscriptData = dataProxy.fyxerTranscript;
7837
8072
  this.geoCodesPostalCodesData = dataProxy.geoCodesPostalCodes;
7838
8073
  this.metaFilesData = dataProxy.metaFiles;
@@ -7841,6 +8076,7 @@ var AgrSiteClient = class extends BaseServiceClient {
7841
8076
  this.postalCodesXShiptosData = dataProxy.postalCodesXShiptos;
7842
8077
  this.settingsData = dataProxy.settings;
7843
8078
  this.trainingData = dataProxy.training;
8079
+ this.usersData = dataProxy.users;
7844
8080
  this.healthCheck = createHealthCheckResource9(boundExecuteRequest);
7845
8081
  this.ping = createPingResource7(boundExecuteRequest);
7846
8082
  this.whoami = createWhoamiResource2(boundExecuteRequest);
@@ -7898,6 +8134,7 @@ var CustomerContactsListParamsSchema = v17.looseObject({
7898
8134
  });
7899
8135
  var CustomerInvoicesListParamsSchema = v17.looseObject({
7900
8136
  ...EdgeCacheParamsSchema.entries,
8137
+ contactId: v17.optional(v17.string()),
7901
8138
  createdFrom: v17.optional(v17.string()),
7902
8139
  createdOn: v17.optional(v17.string()),
7903
8140
  createdTo: v17.optional(v17.string()),
@@ -7909,6 +8146,7 @@ var CustomerInvoicesListParamsSchema = v17.looseObject({
7909
8146
  });
7910
8147
  var CustomerOrdersListParamsSchema = v17.looseObject({
7911
8148
  ...EdgeCacheParamsSchema.entries,
8149
+ addressId: v17.optional(v17.pipe(v17.unknown(), v17.transform(Number))),
7912
8150
  cancelFlag: v17.optional(v17.string()),
7913
8151
  contactId: v17.optional(v17.string()),
7914
8152
  createdFrom: v17.optional(v17.string()),
@@ -7929,6 +8167,8 @@ var CustomerPurchasedItemsListParamsSchema = v17.looseObject({
7929
8167
  });
7930
8168
  var CustomerQuotesListParamsSchema = v17.looseObject({
7931
8169
  ...EdgeCacheParamsSchema.entries,
8170
+ addressId: v17.optional(v17.pipe(v17.unknown(), v17.transform(Number))),
8171
+ contactId: v17.optional(v17.string()),
7932
8172
  createdFrom: v17.optional(v17.string()),
7933
8173
  createdOn: v17.optional(v17.string()),
7934
8174
  createdTo: v17.optional(v17.string()),
@@ -8192,6 +8432,7 @@ var endpoints10 = [
8192
8432
  aliases: [],
8193
8433
  pathParams: ["customerId"],
8194
8434
  queryParams: [
8435
+ "contactId",
8195
8436
  "createdFrom",
8196
8437
  "createdOn",
8197
8438
  "createdTo",
@@ -8225,6 +8466,7 @@ var endpoints10 = [
8225
8466
  aliases: [],
8226
8467
  pathParams: ["customerId"],
8227
8468
  queryParams: [
8469
+ "addressId",
8228
8470
  "cancelFlag",
8229
8471
  "contactId",
8230
8472
  "createdFrom",
@@ -8272,7 +8514,16 @@ var endpoints10 = [
8272
8514
  action: "list",
8273
8515
  aliases: [],
8274
8516
  pathParams: ["customerId"],
8275
- 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
+ ],
8276
8527
  edgeCache: true,
8277
8528
  responseSchema: PassthroughDataSchema10,
8278
8529
  responseType: "passthrough"
@@ -8459,8 +8710,8 @@ function createHealthCheckDataResource10(healthCheck) {
8459
8710
  var CustomersClient = class extends BaseServiceClient {
8460
8711
  constructor(http, baseUrl = "https://customers.augur-api.com") {
8461
8712
  super("customers", http, baseUrl);
8462
- const boundExecuteRequest = (config, params, pathParams) => {
8463
- return this.executeRequest(config, params, pathParams);
8713
+ const boundExecuteRequest = (config, params, pathParams, query) => {
8714
+ return this.executeRequest(config, params, pathParams, query);
8464
8715
  };
8465
8716
  const proxy = createServiceProxy(
8466
8717
  "customers",
@@ -8823,12 +9074,12 @@ var OrdersClient = class extends BaseServiceClient {
8823
9074
  var v19 = __toESM(require("valibot"));
8824
9075
  var InvMastExtListParamsSchema = v19.looseObject({
8825
9076
  ...EdgeCacheParamsSchema.entries,
8826
- inv_mast_uid: v19.optional(v19.pipe(v19.unknown(), v19.transform(Number))),
9077
+ invMastUid: v19.optional(v19.pipe(v19.unknown(), v19.transform(Number))),
8827
9078
  limit: v19.optional(v19.pipe(v19.unknown(), v19.transform(Number))),
8828
9079
  offset: v19.optional(v19.pipe(v19.unknown(), v19.transform(Number))),
8829
- order_by: v19.optional(v19.string()),
9080
+ orderBy: v19.optional(v19.string()),
8830
9081
  q: v19.optional(v19.string()),
8831
- status_cd: v19.optional(v19.pipe(v19.unknown(), v19.transform(Number)))
9082
+ statusCd: v19.optional(v19.pipe(v19.unknown(), v19.transform(Number)))
8832
9083
  });
8833
9084
  var ItemsSuggestDisplayDescListParamsSchema = v19.looseObject({
8834
9085
  ...EdgeCacheParamsSchema.entries,
@@ -8844,9 +9095,9 @@ var PodcastsListParamsSchema = v19.looseObject({
8844
9095
  ...EdgeCacheParamsSchema.entries,
8845
9096
  limit: v19.optional(v19.pipe(v19.unknown(), v19.transform(Number))),
8846
9097
  offset: v19.optional(v19.pipe(v19.unknown(), v19.transform(Number))),
8847
- order_by: v19.optional(v19.string()),
9098
+ orderBy: v19.optional(v19.string()),
8848
9099
  q: v19.optional(v19.string()),
8849
- status_cd: v19.optional(v19.pipe(v19.unknown(), v19.transform(Number)))
9100
+ statusCd: v19.optional(v19.pipe(v19.unknown(), v19.transform(Number)))
8850
9101
  });
8851
9102
  var PodcastsDataSchema = v19.looseObject({
8852
9103
  podcastsUid: v19.optional(v19.number()),
@@ -8870,7 +9121,7 @@ var endpoints12 = [
8870
9121
  action: "list",
8871
9122
  aliases: [],
8872
9123
  pathParams: [],
8873
- queryParams: ["inv_mast_uid", "limit", "offset", "order_by", "q", "status_cd"],
9124
+ queryParams: ["invMastUid", "limit", "offset", "orderBy", "q", "statusCd"],
8874
9125
  edgeCache: true,
8875
9126
  responseSchema: PassthroughDataSchema12,
8876
9127
  responseType: "passthrough"
@@ -8954,7 +9205,7 @@ var endpoints12 = [
8954
9205
  action: "list",
8955
9206
  aliases: [],
8956
9207
  pathParams: [],
8957
- queryParams: ["limit", "offset", "order_by", "q", "status_cd"],
9208
+ queryParams: ["limit", "offset", "orderBy", "q", "statusCd"],
8958
9209
  edgeCache: true,
8959
9210
  responseSchema: PodcastsDataSchema,
8960
9211
  responseType: "array"
@@ -9054,8 +9305,8 @@ function createHealthCheckDataResource12(healthCheck) {
9054
9305
  var P21PimClient = class extends BaseServiceClient {
9055
9306
  constructor(http, baseUrl = "https://p21-pim.augur-api.com") {
9056
9307
  super("p21-pim", http, baseUrl);
9057
- const boundExecuteRequest = (config, params, pathParams) => {
9058
- return this.executeRequest(config, params, pathParams);
9308
+ const boundExecuteRequest = (config, params, pathParams, query) => {
9309
+ return this.executeRequest(config, params, pathParams, query);
9059
9310
  };
9060
9311
  const proxy = createServiceProxy("p21-pim", boundExecuteRequest, endpoints12);
9061
9312
  const dataProxy = createDataProxy(proxy);
@@ -9068,6 +9319,9 @@ var P21PimClient = class extends BaseServiceClient {
9068
9319
  this.healthCheck = createHealthCheckResource12(boundExecuteRequest);
9069
9320
  this.healthCheckData = createHealthCheckDataResource12(this.healthCheck);
9070
9321
  }
9322
+ getServiceDescription() {
9323
+ return "Product information management for rich content, media assets, and extended item descriptions";
9324
+ }
9071
9325
  };
9072
9326
 
9073
9327
  // src/services/payments/generated/schemas.ts
@@ -9148,6 +9402,10 @@ var UnifiedSurchargeListParamsSchema = v20.looseObject({
9148
9402
  paymentAccountId: v20.string(),
9149
9403
  toState: v20.string()
9150
9404
  });
9405
+ var UnifiedTransactionResponseListParamsSchema = v20.looseObject({
9406
+ ...EdgeCacheParamsSchema.entries,
9407
+ siteId: v20.string()
9408
+ });
9151
9409
  var UnifiedTransactionSetupListParamsSchema = v20.looseObject({
9152
9410
  ...EdgeCacheParamsSchema.entries,
9153
9411
  customerId: v20.string(),
@@ -9315,6 +9573,18 @@ var endpoints13 = [
9315
9573
  responseSchema: PassthroughDataSchema13,
9316
9574
  responseType: "passthrough"
9317
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
+ },
9318
9588
  {
9319
9589
  method: "GET",
9320
9590
  path: "/unified/transaction-setup",
@@ -9408,8 +9678,8 @@ function createPingDataResource7(ping) {
9408
9678
  var PaymentsClient = class extends BaseServiceClient {
9409
9679
  constructor(http, baseUrl = "https://payments.augur-api.com") {
9410
9680
  super("payments", http, baseUrl);
9411
- const boundExecuteRequest = (config, params, pathParams) => {
9412
- return this.executeRequest(config, params, pathParams);
9681
+ const boundExecuteRequest = (config, params, pathParams, query) => {
9682
+ return this.executeRequest(config, params, pathParams, query);
9413
9683
  };
9414
9684
  const proxy = createServiceProxy(
9415
9685
  "payments",
@@ -9462,6 +9732,14 @@ var MicroservicesDataSchema = v21.looseObject({
9462
9732
  dateCreated: v21.optional(v21.string()),
9463
9733
  dateLastModified: v21.optional(v21.string())
9464
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
+ });
9465
9743
  var RubricsDataSchema = v21.looseObject({
9466
9744
  rubricsUid: v21.optional(v21.number()),
9467
9745
  title: v21.optional(v21.nullable(v21.string())),
@@ -9473,6 +9751,20 @@ var RubricsDataSchema = v21.looseObject({
9473
9751
  dateCreated: v21.optional(v21.string()),
9474
9752
  dateLastModified: v21.optional(v21.string())
9475
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
+ });
9476
9768
  var WorkflowsDataSchema = v21.looseObject({
9477
9769
  workflowsUid: v21.optional(v21.number()),
9478
9770
  workflowsId: v21.optional(v21.string()),
@@ -9586,6 +9878,30 @@ var endpoints14 = [
9586
9878
  responseSchema: PassthroughDataSchema14,
9587
9879
  responseType: "passthrough"
9588
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
+ },
9589
9905
  {
9590
9906
  method: "GET",
9591
9907
  path: "/ollama/tags",
@@ -9670,6 +9986,18 @@ var endpoints14 = [
9670
9986
  responseSchema: PassthroughDataSchema14,
9671
9987
  responseType: "passthrough"
9672
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
+ },
9673
10001
  {
9674
10002
  method: "GET",
9675
10003
  path: "/workflows",
@@ -9784,8 +10112,8 @@ function createHealthCheckDataResource14(healthCheck) {
9784
10112
  var AgrInfoClient = class extends BaseServiceClient {
9785
10113
  constructor(http, baseUrl = "https://agr-info.augur-api.com") {
9786
10114
  super("agr-info", http, baseUrl);
9787
- const boundExecuteRequest = (config, params, pathParams) => {
9788
- return this.executeRequest(config, params, pathParams);
10115
+ const boundExecuteRequest = (config, params, pathParams, query) => {
10116
+ return this.executeRequest(config, params, pathParams, query);
9789
10117
  };
9790
10118
  const proxy = createServiceProxy("agr-info", boundExecuteRequest, endpoints14);
9791
10119
  const dataProxy = createDataProxy(proxy);
@@ -9793,6 +10121,7 @@ var AgrInfoClient = class extends BaseServiceClient {
9793
10121
  this.context = proxy.context;
9794
10122
  this.joomla = proxy.joomla;
9795
10123
  this.microservices = proxy.microservices;
10124
+ this.oauth = proxy.oauth;
9796
10125
  this.ollama = proxy.ollama;
9797
10126
  this.rubrics = proxy.rubrics;
9798
10127
  this.sites = proxy.sites;
@@ -9801,6 +10130,7 @@ var AgrInfoClient = class extends BaseServiceClient {
9801
10130
  this.contextData = dataProxy.context;
9802
10131
  this.joomlaData = dataProxy.joomla;
9803
10132
  this.microservicesData = dataProxy.microservices;
10133
+ this.oauthData = dataProxy.oauth;
9804
10134
  this.ollamaData = dataProxy.ollama;
9805
10135
  this.rubricsData = dataProxy.rubrics;
9806
10136
  this.sitesData = dataProxy.sites;
@@ -9860,7 +10190,7 @@ var RolesBundlesListParamsSchema = v22.looseObject({
9860
10190
  orderBy: v22.optional(v22.string()),
9861
10191
  statusCd: v22.optional(v22.pipe(v22.unknown(), v22.transform(Number)))
9862
10192
  });
9863
- var UsersListParamsSchema = v22.looseObject({
10193
+ var UsersListParamsSchema2 = v22.looseObject({
9864
10194
  ...EdgeCacheParamsSchema.entries,
9865
10195
  email: v22.optional(v22.string()),
9866
10196
  limit: v22.optional(v22.pipe(v22.unknown(), v22.transform(Number))),
@@ -10448,8 +10778,8 @@ var endpoints15 = [
10448
10778
  var AgrIntClient = class extends BaseServiceClient {
10449
10779
  constructor(http, baseUrl = "https://agr-int.augur-api.com") {
10450
10780
  super("agr-int", http, baseUrl);
10451
- const boundExecuteRequest = (config, params, pathParams) => {
10452
- return this.executeRequest(config, params, pathParams);
10781
+ const boundExecuteRequest = (config, params, pathParams, query) => {
10782
+ return this.executeRequest(config, params, pathParams, query);
10453
10783
  };
10454
10784
  const proxy = createServiceProxy("agr-int", boundExecuteRequest, endpoints15);
10455
10785
  const dataProxy = createDataProxy(proxy);
@@ -10625,8 +10955,8 @@ function createPingDataResource8(ping) {
10625
10955
  var AgrWorkClient = class extends BaseServiceClient {
10626
10956
  constructor(http, baseUrl = "https://agr-work.augur-api.com") {
10627
10957
  super("agr-work", http, baseUrl);
10628
- const boundExecuteRequest = (config, params, pathParams) => {
10629
- return this.executeRequest(config, params, pathParams);
10958
+ const boundExecuteRequest = (config, params, pathParams, query) => {
10959
+ return this.executeRequest(config, params, pathParams, query);
10630
10960
  };
10631
10961
  this.healthCheck = createHealthCheckResource15(boundExecuteRequest);
10632
10962
  this.ping = createPingResource9(boundExecuteRequest);
@@ -10720,8 +11050,8 @@ function createHealthCheckDataResource16(healthCheck) {
10720
11050
  var AvalaraClient = class extends BaseServiceClient {
10721
11051
  constructor(http, baseUrl = "https://avalara.augur-api.com") {
10722
11052
  super("avalara", http, baseUrl);
10723
- const boundExecuteRequest = (config, params, pathParams) => {
10724
- return this.executeRequest(config, params, pathParams);
11053
+ const boundExecuteRequest = (config, params, pathParams, query) => {
11054
+ return this.executeRequest(config, params, pathParams, query);
10725
11055
  };
10726
11056
  const proxy = createServiceProxy("avalara", boundExecuteRequest, endpoints16);
10727
11057
  const dataProxy = createDataProxy(proxy);
@@ -10734,10 +11064,54 @@ var AvalaraClient = class extends BaseServiceClient {
10734
11064
 
10735
11065
  // src/services/brand-folder/generated/schemas.ts
10736
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
+ });
10737
11099
  var PassthroughDataSchema17 = v24.record(v24.string(), v24.unknown());
10738
11100
 
10739
11101
  // src/services/brand-folder/generated/endpoints.ts
10740
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
+ },
10741
11115
  {
10742
11116
  method: "POST",
10743
11117
  path: "/categories/focus",
@@ -10749,6 +11123,18 @@ var endpoints17 = [
10749
11123
  edgeCache: false,
10750
11124
  responseSchema: PassthroughDataSchema17,
10751
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"
10752
11138
  }
10753
11139
  ];
10754
11140
 
@@ -10817,8 +11203,8 @@ function createHealthCheckDataResource17(healthCheck) {
10817
11203
  var BrandFolderClient = class extends BaseServiceClient {
10818
11204
  constructor(http, baseUrl = "https://brand-folder.augur-api.com") {
10819
11205
  super("brand-folder", http, baseUrl);
10820
- const boundExecuteRequest = (config, params, pathParams) => {
10821
- return this.executeRequest(config, params, pathParams);
11206
+ const boundExecuteRequest = (config, params, pathParams, query) => {
11207
+ return this.executeRequest(config, params, pathParams, query);
10822
11208
  };
10823
11209
  const proxy = createServiceProxy(
10824
11210
  "brand-folder",
@@ -10949,8 +11335,8 @@ function createHealthCheckDataResource18(healthCheck) {
10949
11335
  var GregorovichClient = class extends BaseServiceClient {
10950
11336
  constructor(http, baseUrl = "https://gregorovich.augur-api.com") {
10951
11337
  super("gregorovich", http, baseUrl);
10952
- const boundExecuteRequest = (config, params, pathParams) => {
10953
- return this.executeRequest(config, params, pathParams);
11338
+ const boundExecuteRequest = (config, params, pathParams, query) => {
11339
+ return this.executeRequest(config, params, pathParams, query);
10954
11340
  };
10955
11341
  const proxy = createServiceProxy(
10956
11342
  "gregorovich",
@@ -10990,7 +11376,7 @@ var RtsBrandsListParamsSchema = v26.looseObject({
10990
11376
  ...EdgeCacheParamsSchema.entries,
10991
11377
  search: v26.optional(v26.string())
10992
11378
  });
10993
- var RtsBrandsBrandIdMachinesListParamsSchema = v26.looseObject({
11379
+ var RtsBrandsMachinesListParamsSchema = v26.looseObject({
10994
11380
  ...EdgeCacheParamsSchema.entries,
10995
11381
  search: v26.optional(v26.string())
10996
11382
  });
@@ -11143,7 +11529,7 @@ var endpoints19 = [
11143
11529
  {
11144
11530
  method: "GET",
11145
11531
  path: "/rts/brands/{brandId}/machines",
11146
- chain: "rts.brands.brandId.machines",
11532
+ chain: "rts.brands.machines",
11147
11533
  action: "list",
11148
11534
  aliases: [],
11149
11535
  pathParams: ["brandId"],
@@ -11155,7 +11541,7 @@ var endpoints19 = [
11155
11541
  {
11156
11542
  method: "GET",
11157
11543
  path: "/rts/machines/{machineId}/tracks",
11158
- chain: "rts.machines.machineId.tracks",
11544
+ chain: "rts.machines.tracks",
11159
11545
  action: "list",
11160
11546
  aliases: [],
11161
11547
  pathParams: ["machineId"],
@@ -11179,7 +11565,7 @@ var endpoints19 = [
11179
11565
  {
11180
11566
  method: "GET",
11181
11567
  path: "/rts/track/{trackId}",
11182
- chain: "rts.track.trackId",
11568
+ chain: "rts.track",
11183
11569
  action: "list",
11184
11570
  aliases: [],
11185
11571
  pathParams: ["trackId"],
@@ -11470,8 +11856,8 @@ function createPingDataResource9(ping) {
11470
11856
  var LogisticsClient = class extends BaseServiceClient {
11471
11857
  constructor(http, baseUrl = "https://logistics.augur-api.com") {
11472
11858
  super("logistics", http, baseUrl);
11473
- const boundExecuteRequest = (config, params, pathParams) => {
11474
- return this.executeRequest(config, params, pathParams);
11859
+ const boundExecuteRequest = (config, params, pathParams, query) => {
11860
+ return this.executeRequest(config, params, pathParams, query);
11475
11861
  };
11476
11862
  const proxy = createServiceProxy(
11477
11863
  "logistics",
@@ -11503,43 +11889,43 @@ var LogisticsClient = class extends BaseServiceClient {
11503
11889
  var v27 = __toESM(require("valibot"));
11504
11890
  var TransCategoryGetParamsSchema = v27.looseObject({
11505
11891
  ...EdgeCacheParamsSchema.entries,
11506
- category_id: v27.optional(v27.string())
11892
+ categoryId: v27.optional(v27.string())
11507
11893
  });
11508
11894
  var TransCategoryUpdateParamsSchema = v27.looseObject({
11509
- category_id: v27.optional(v27.string())
11895
+ categoryId: v27.optional(v27.string())
11510
11896
  });
11511
11897
  var TransCategoryDeleteParamsSchema = v27.looseObject({
11512
- category_id: v27.optional(v27.string())
11898
+ categoryId: v27.optional(v27.string())
11513
11899
  });
11514
11900
  var TransCompanyGetParamsSchema = v27.looseObject({
11515
11901
  ...EdgeCacheParamsSchema.entries,
11516
- company_id: v27.optional(v27.string())
11902
+ companyId: v27.optional(v27.string())
11517
11903
  });
11518
11904
  var TransCompanyUpdateParamsSchema = v27.looseObject({
11519
- company_id: v27.optional(v27.string())
11905
+ companyId: v27.optional(v27.string())
11520
11906
  });
11521
11907
  var TransCompanyDeleteParamsSchema = v27.looseObject({
11522
- company_id: v27.optional(v27.string())
11908
+ companyId: v27.optional(v27.string())
11523
11909
  });
11524
11910
  var TransUserGetParamsSchema = v27.looseObject({
11525
11911
  ...EdgeCacheParamsSchema.entries,
11526
- user_id: v27.optional(v27.string())
11912
+ userId: v27.optional(v27.string())
11527
11913
  });
11528
11914
  var TransUserUpdateParamsSchema = v27.looseObject({
11529
- user_id: v27.optional(v27.string())
11915
+ userId: v27.optional(v27.string())
11530
11916
  });
11531
11917
  var TransUserDeleteParamsSchema = v27.looseObject({
11532
- user_id: v27.optional(v27.string())
11918
+ userId: v27.optional(v27.string())
11533
11919
  });
11534
11920
  var TransWebDisplayTypeGetParamsSchema = v27.looseObject({
11535
11921
  ...EdgeCacheParamsSchema.entries,
11536
- web_display_type_id: v27.optional(v27.string())
11922
+ webDisplayTypeId: v27.optional(v27.string())
11537
11923
  });
11538
11924
  var TransWebDisplayTypeUpdateParamsSchema = v27.looseObject({
11539
- web_display_type_id: v27.optional(v27.string())
11925
+ webDisplayTypeId: v27.optional(v27.string())
11540
11926
  });
11541
11927
  var TransWebDisplayTypeDeleteParamsSchema = v27.looseObject({
11542
- web_display_type_id: v27.optional(v27.string())
11928
+ webDisplayTypeId: v27.optional(v27.string())
11543
11929
  });
11544
11930
  var PassthroughDataSchema20 = v27.record(v27.string(), v27.unknown());
11545
11931
 
@@ -11588,7 +11974,7 @@ var endpoints20 = [
11588
11974
  action: "get",
11589
11975
  aliases: [],
11590
11976
  pathParams: ["categoryUid"],
11591
- queryParams: ["category_id"],
11977
+ queryParams: ["categoryId"],
11592
11978
  edgeCache: true,
11593
11979
  responseSchema: PassthroughDataSchema20,
11594
11980
  responseType: "passthrough"
@@ -11600,7 +11986,7 @@ var endpoints20 = [
11600
11986
  action: "update",
11601
11987
  aliases: [],
11602
11988
  pathParams: ["categoryUid"],
11603
- queryParams: ["category_id"],
11989
+ queryParams: ["categoryId"],
11604
11990
  edgeCache: false,
11605
11991
  responseSchema: PassthroughDataSchema20,
11606
11992
  responseType: "passthrough"
@@ -11612,7 +11998,7 @@ var endpoints20 = [
11612
11998
  action: "delete",
11613
11999
  aliases: [],
11614
12000
  pathParams: ["categoryUid"],
11615
- queryParams: ["category_id"],
12001
+ queryParams: ["categoryId"],
11616
12002
  edgeCache: false,
11617
12003
  responseSchema: PassthroughDataSchema20,
11618
12004
  responseType: "passthrough"
@@ -11636,7 +12022,7 @@ var endpoints20 = [
11636
12022
  action: "get",
11637
12023
  aliases: [],
11638
12024
  pathParams: ["companyUid"],
11639
- queryParams: ["company_id"],
12025
+ queryParams: ["companyId"],
11640
12026
  edgeCache: true,
11641
12027
  responseSchema: PassthroughDataSchema20,
11642
12028
  responseType: "passthrough"
@@ -11648,7 +12034,7 @@ var endpoints20 = [
11648
12034
  action: "update",
11649
12035
  aliases: [],
11650
12036
  pathParams: ["companyUid"],
11651
- queryParams: ["company_id"],
12037
+ queryParams: ["companyId"],
11652
12038
  edgeCache: false,
11653
12039
  responseSchema: PassthroughDataSchema20,
11654
12040
  responseType: "passthrough"
@@ -11660,7 +12046,7 @@ var endpoints20 = [
11660
12046
  action: "delete",
11661
12047
  aliases: [],
11662
12048
  pathParams: ["companyUid"],
11663
- queryParams: ["company_id"],
12049
+ queryParams: ["companyId"],
11664
12050
  edgeCache: false,
11665
12051
  responseSchema: PassthroughDataSchema20,
11666
12052
  responseType: "passthrough"
@@ -11708,7 +12094,7 @@ var endpoints20 = [
11708
12094
  action: "get",
11709
12095
  aliases: [],
11710
12096
  pathParams: ["usersUid"],
11711
- queryParams: ["user_id"],
12097
+ queryParams: ["userId"],
11712
12098
  edgeCache: true,
11713
12099
  responseSchema: PassthroughDataSchema20,
11714
12100
  responseType: "passthrough"
@@ -11720,7 +12106,7 @@ var endpoints20 = [
11720
12106
  action: "update",
11721
12107
  aliases: [],
11722
12108
  pathParams: ["usersUid"],
11723
- queryParams: ["user_id"],
12109
+ queryParams: ["userId"],
11724
12110
  edgeCache: false,
11725
12111
  responseSchema: PassthroughDataSchema20,
11726
12112
  responseType: "passthrough"
@@ -11732,7 +12118,7 @@ var endpoints20 = [
11732
12118
  action: "delete",
11733
12119
  aliases: [],
11734
12120
  pathParams: ["usersUid"],
11735
- queryParams: ["user_id"],
12121
+ queryParams: ["userId"],
11736
12122
  edgeCache: false,
11737
12123
  responseSchema: PassthroughDataSchema20,
11738
12124
  responseType: "passthrough"
@@ -11780,7 +12166,7 @@ var endpoints20 = [
11780
12166
  action: "get",
11781
12167
  aliases: [],
11782
12168
  pathParams: ["webDisplayTypeUid"],
11783
- queryParams: ["web_display_type_id"],
12169
+ queryParams: ["webDisplayTypeId"],
11784
12170
  edgeCache: true,
11785
12171
  responseSchema: PassthroughDataSchema20,
11786
12172
  responseType: "passthrough"
@@ -11792,7 +12178,7 @@ var endpoints20 = [
11792
12178
  action: "update",
11793
12179
  aliases: [],
11794
12180
  pathParams: ["webDisplayTypeUid"],
11795
- queryParams: ["web_display_type_id"],
12181
+ queryParams: ["webDisplayTypeId"],
11796
12182
  edgeCache: false,
11797
12183
  responseSchema: PassthroughDataSchema20,
11798
12184
  responseType: "passthrough"
@@ -11804,7 +12190,7 @@ var endpoints20 = [
11804
12190
  action: "delete",
11805
12191
  aliases: [],
11806
12192
  pathParams: ["webDisplayTypeUid"],
11807
- queryParams: ["web_display_type_id"],
12193
+ queryParams: ["webDisplayTypeId"],
11808
12194
  edgeCache: false,
11809
12195
  responseSchema: PassthroughDataSchema20,
11810
12196
  responseType: "passthrough"
@@ -11862,8 +12248,8 @@ function createHealthCheckDataResource20(healthCheck) {
11862
12248
  var P21ApisClient = class extends BaseServiceClient {
11863
12249
  constructor(http, baseUrl = "https://p21-apis.augur-api.com") {
11864
12250
  super("p21-apis", http, baseUrl);
11865
- const boundExecuteRequest = (config, params, pathParams) => {
11866
- return this.executeRequest(config, params, pathParams);
12251
+ const boundExecuteRequest = (config, params, pathParams, query) => {
12252
+ return this.executeRequest(config, params, pathParams, query);
11867
12253
  };
11868
12254
  const proxy = createServiceProxy("p21-apis", boundExecuteRequest, endpoints20);
11869
12255
  const dataProxy = createDataProxy(proxy);
@@ -11898,12 +12284,14 @@ var AddressListParamsSchema = v28.looseObject({
11898
12284
  enabledCd: v28.optional(v28.pipe(v28.unknown(), v28.transform(Number))),
11899
12285
  limit: v28.optional(v28.pipe(v28.unknown(), v28.transform(Number))),
11900
12286
  offset: v28.optional(v28.pipe(v28.unknown(), v28.transform(Number))),
12287
+ orderBy: v28.optional(v28.string()),
11901
12288
  statusCd: v28.optional(v28.pipe(v28.unknown(), v28.transform(Number)))
11902
12289
  });
11903
12290
  var AddressCorpAddressListParamsSchema = v28.looseObject({
11904
12291
  ...EdgeCacheParamsSchema.entries,
11905
12292
  limit: v28.optional(v28.pipe(v28.unknown(), v28.transform(Number))),
11906
12293
  offset: v28.optional(v28.pipe(v28.unknown(), v28.transform(Number))),
12294
+ orderBy: v28.optional(v28.string()),
11907
12295
  q: v28.optional(v28.string())
11908
12296
  });
11909
12297
  var AddressEnableGetParamsSchema = v28.looseObject({
@@ -11925,7 +12313,8 @@ var CodeP21ListParamsSchema = v28.looseObject({
11925
12313
  codeNoList: v28.optional(v28.string()),
11926
12314
  limit: v28.optional(v28.pipe(v28.unknown(), v28.transform(Number))),
11927
12315
  offset: v28.optional(v28.pipe(v28.unknown(), v28.transform(Number))),
11928
- q: v28.string()
12316
+ orderBy: v28.optional(v28.string()),
12317
+ q: v28.optional(v28.string())
11929
12318
  });
11930
12319
  var CompanyListParamsSchema = v28.looseObject({
11931
12320
  ...EdgeCacheParamsSchema.entries,
@@ -11955,7 +12344,8 @@ var LocationGetParamsSchema = v28.looseObject({
11955
12344
  var PaymentTypesListParamsSchema = v28.looseObject({
11956
12345
  ...EdgeCacheParamsSchema.entries,
11957
12346
  limit: v28.optional(v28.pipe(v28.unknown(), v28.transform(Number))),
11958
- 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())
11959
12349
  });
11960
12350
  var CashDrawerDataSchema = v28.looseObject({
11961
12351
  cashDrawerId: v28.optional(v28.string()),
@@ -12041,7 +12431,15 @@ var endpoints21 = [
12041
12431
  action: "list",
12042
12432
  aliases: [],
12043
12433
  pathParams: [],
12044
- queryParams: ["carrierFlag", "defaultCd", "enabledCd", "limit", "offset", "statusCd"],
12434
+ queryParams: [
12435
+ "carrierFlag",
12436
+ "defaultCd",
12437
+ "enabledCd",
12438
+ "limit",
12439
+ "offset",
12440
+ "orderBy",
12441
+ "statusCd"
12442
+ ],
12045
12443
  edgeCache: true,
12046
12444
  responseSchema: PassthroughDataSchema21,
12047
12445
  responseType: "passthrough"
@@ -12077,7 +12475,7 @@ var endpoints21 = [
12077
12475
  action: "list",
12078
12476
  aliases: [],
12079
12477
  pathParams: ["id"],
12080
- queryParams: ["limit", "offset", "q"],
12478
+ queryParams: ["limit", "offset", "orderBy", "q"],
12081
12479
  edgeCache: true,
12082
12480
  responseSchema: PassthroughDataSchema21,
12083
12481
  responseType: "passthrough"
@@ -12137,11 +12535,23 @@ var endpoints21 = [
12137
12535
  action: "list",
12138
12536
  aliases: [],
12139
12537
  pathParams: [],
12140
- queryParams: ["codeNoList", "limit", "offset", "q"],
12538
+ queryParams: ["codeNoList", "limit", "offset", "orderBy", "q"],
12141
12539
  edgeCache: true,
12142
12540
  responseSchema: CodeP21DataSchema,
12143
12541
  responseType: "array"
12144
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
+ },
12145
12555
  {
12146
12556
  method: "GET",
12147
12557
  path: "/company",
@@ -12197,7 +12607,7 @@ var endpoints21 = [
12197
12607
  action: "list",
12198
12608
  aliases: [],
12199
12609
  pathParams: [],
12200
- queryParams: ["limit", "offset"],
12610
+ queryParams: ["limit", "offset", "orderBy"],
12201
12611
  edgeCache: true,
12202
12612
  responseSchema: PassthroughDataSchema21,
12203
12613
  responseType: "passthrough"
@@ -12266,8 +12676,8 @@ function createPingDataResource10(ping) {
12266
12676
  var P21CoreClient = class extends BaseServiceClient {
12267
12677
  constructor(http, baseUrl = "https://p21-core.augur-api.com") {
12268
12678
  super("p21-core", http, baseUrl);
12269
- const boundExecuteRequest = (config, params, pathParams) => {
12270
- return this.executeRequest(config, params, pathParams);
12679
+ const boundExecuteRequest = (config, params, pathParams, query) => {
12680
+ return this.executeRequest(config, params, pathParams, query);
12271
12681
  };
12272
12682
  const proxy = createServiceProxy("p21-core", boundExecuteRequest, endpoints21);
12273
12683
  const dataProxy = createDataProxy(proxy);
@@ -12598,8 +13008,8 @@ function createHealthCheckDataResource22(healthCheck) {
12598
13008
  var P21SismClient = class extends BaseServiceClient {
12599
13009
  constructor(http, baseUrl = "https://p21-sism.augur-api.com") {
12600
13010
  super("p21-sism", http, baseUrl);
12601
- const boundExecuteRequest = (config, params, pathParams) => {
12602
- return this.executeRequest(config, params, pathParams);
13011
+ const boundExecuteRequest = (config, params, pathParams, query) => {
13012
+ return this.executeRequest(config, params, pathParams, query);
12603
13013
  };
12604
13014
  const proxy = createServiceProxy("p21-sism", boundExecuteRequest, endpoints22);
12605
13015
  const dataProxy = createDataProxy(proxy);
@@ -12704,8 +13114,8 @@ function createHealthCheckDataResource23(healthCheck) {
12704
13114
  var ShippingClient = class extends BaseServiceClient {
12705
13115
  constructor(http, baseUrl = "https://shipping.augur-api.com") {
12706
13116
  super("shipping", http, baseUrl);
12707
- const boundExecuteRequest = (config, params, pathParams) => {
12708
- return this.executeRequest(config, params, pathParams);
13117
+ const boundExecuteRequest = (config, params, pathParams, query) => {
13118
+ return this.executeRequest(config, params, pathParams, query);
12709
13119
  };
12710
13120
  const proxy = createServiceProxy(
12711
13121
  "shipping",
@@ -12833,8 +13243,8 @@ function createHealthCheckDataResource24(healthCheck) {
12833
13243
  var SlackClient = class extends BaseServiceClient {
12834
13244
  constructor(http, baseUrl = "https://slack.augur-api.com") {
12835
13245
  super("slack", http, baseUrl);
12836
- const boundExecuteRequest = (config, params, pathParams) => {
12837
- return this.executeRequest(config, params, pathParams);
13246
+ const boundExecuteRequest = (config, params, pathParams, query) => {
13247
+ return this.executeRequest(config, params, pathParams, query);
12838
13248
  };
12839
13249
  const proxy = createServiceProxy("slack", boundExecuteRequest, endpoints24);
12840
13250
  const dataProxy = createDataProxy(proxy);
@@ -13033,8 +13443,8 @@ function createPingDataResource11(ping) {
13033
13443
  var SmartyStreetsClient = class extends BaseServiceClient {
13034
13444
  constructor(http, baseUrl = "https://smarty-streets.augur-api.com") {
13035
13445
  super("smarty-streets", http, baseUrl);
13036
- const boundExecuteRequest = (config, params, pathParams) => {
13037
- return this.executeRequest(config, params, pathParams);
13446
+ const boundExecuteRequest = (config, params, pathParams, query) => {
13447
+ return this.executeRequest(config, params, pathParams, query);
13038
13448
  };
13039
13449
  const proxy = createServiceProxy(
13040
13450
  "smarty-streets",
@@ -13199,8 +13609,8 @@ function createHealthCheckDataResource26(healthCheck) {
13199
13609
  var UPSClient = class extends BaseServiceClient {
13200
13610
  constructor(http, baseUrl = "https://ups.augur-api.com") {
13201
13611
  super("ups", http, baseUrl);
13202
- const boundExecuteRequest = (config, params, pathParams) => {
13203
- return this.executeRequest(config, params, pathParams);
13612
+ const boundExecuteRequest = (config, params, pathParams, query) => {
13613
+ return this.executeRequest(config, params, pathParams, query);
13204
13614
  };
13205
13615
  const proxy = createServiceProxy("ups", boundExecuteRequest, endpoints26);
13206
13616
  const dataProxy = createDataProxy(proxy);
@@ -13215,20 +13625,20 @@ var UPSClient = class extends BaseServiceClient {
13215
13625
  var v36 = __toESM(require("valibot"));
13216
13626
  var CommentsListParamsSchema = v36.looseObject({
13217
13627
  ...EdgeCacheParamsSchema.entries,
13218
- creator_id: v36.optional(v36.pipe(v36.unknown(), v36.transform(Number))),
13628
+ creatorId: v36.optional(v36.pipe(v36.unknown(), v36.transform(Number))),
13219
13629
  limit: v36.optional(v36.pipe(v36.unknown(), v36.transform(Number))),
13220
13630
  offset: v36.optional(v36.pipe(v36.unknown(), v36.transform(Number))),
13221
- order_by: v36.optional(v36.string()),
13222
- 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)))
13223
13633
  });
13224
13634
  var EventsListParamsSchema = v36.looseObject({
13225
13635
  ...EdgeCacheParamsSchema.entries,
13226
- event_type_cd: v36.optional(v36.pipe(v36.unknown(), v36.transform(Number))),
13636
+ eventTypeCd: v36.optional(v36.pipe(v36.unknown(), v36.transform(Number))),
13227
13637
  id: v36.optional(v36.pipe(v36.unknown(), v36.transform(Number))),
13228
13638
  limit: v36.optional(v36.pipe(v36.unknown(), v36.transform(Number))),
13229
13639
  offset: v36.optional(v36.pipe(v36.unknown(), v36.transform(Number))),
13230
- order_by: v36.optional(v36.string()),
13231
- 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)))
13232
13642
  });
13233
13643
  var MetricsListParamsSchema = v36.looseObject({
13234
13644
  ...EdgeCacheParamsSchema.entries,
@@ -13264,27 +13674,27 @@ var PeopleMetricsListParamsSchema = v36.looseObject({
13264
13674
  });
13265
13675
  var PeopleTodosListParamsSchema = v36.looseObject({
13266
13676
  ...EdgeCacheParamsSchema.entries,
13267
- completed_flag: v36.optional(v36.string()),
13268
- due_at: v36.optional(v36.string()),
13677
+ completedFlag: v36.optional(v36.string()),
13678
+ dueAt: v36.optional(v36.string()),
13269
13679
  limit: v36.optional(v36.pipe(v36.unknown(), v36.transform(Number))),
13270
13680
  offset: v36.optional(v36.pipe(v36.unknown(), v36.transform(Number))),
13271
- order_by: v36.optional(v36.string()),
13272
- 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)))
13273
13683
  });
13274
13684
  var PeopleProjectsTodosListParamsSchema = v36.looseObject({
13275
13685
  ...EdgeCacheParamsSchema.entries,
13276
- completed_flag: v36.optional(v36.string()),
13686
+ completedFlag: v36.optional(v36.string()),
13277
13687
  limit: v36.optional(v36.pipe(v36.unknown(), v36.transform(Number))),
13278
13688
  offset: v36.optional(v36.pipe(v36.unknown(), v36.transform(Number))),
13279
- order_by: v36.optional(v36.string())
13689
+ orderBy: v36.optional(v36.string())
13280
13690
  });
13281
13691
  var ProjectsListParamsSchema = v36.looseObject({
13282
13692
  ...EdgeCacheParamsSchema.entries,
13283
- archived_flag: v36.optional(v36.string()),
13693
+ archivedFlag: v36.optional(v36.string()),
13284
13694
  limit: v36.optional(v36.pipe(v36.unknown(), v36.transform(Number))),
13285
13695
  offset: v36.optional(v36.pipe(v36.unknown(), v36.transform(Number))),
13286
- order_by: v36.optional(v36.string()),
13287
- trashed_flag: v36.optional(v36.string())
13696
+ orderBy: v36.optional(v36.string()),
13697
+ trashedFlag: v36.optional(v36.string())
13288
13698
  });
13289
13699
  var ProjectsMetricsListParamsSchema = v36.looseObject({
13290
13700
  ...EdgeCacheParamsSchema.entries,
@@ -13298,74 +13708,74 @@ var ProjectsMetricsListParamsSchema = v36.looseObject({
13298
13708
  });
13299
13709
  var ProjectsTodolistsListParamsSchema = v36.looseObject({
13300
13710
  ...EdgeCacheParamsSchema.entries,
13301
- completed_flag: v36.optional(v36.string()),
13711
+ completedFlag: v36.optional(v36.string()),
13302
13712
  limit: v36.optional(v36.pipe(v36.unknown(), v36.transform(Number))),
13303
13713
  offset: v36.optional(v36.pipe(v36.unknown(), v36.transform(Number))),
13304
- order_by: v36.optional(v36.string())
13714
+ orderBy: v36.optional(v36.string())
13305
13715
  });
13306
13716
  var ProjectsTodosListParamsSchema = v36.looseObject({
13307
13717
  ...EdgeCacheParamsSchema.entries,
13308
- assignee_id: v36.optional(v36.pipe(v36.unknown(), v36.transform(Number))),
13309
- completed_flag: v36.optional(v36.string()),
13718
+ assigneeId: v36.optional(v36.pipe(v36.unknown(), v36.transform(Number))),
13719
+ completedFlag: v36.optional(v36.string()),
13310
13720
  limit: v36.optional(v36.pipe(v36.unknown(), v36.transform(Number))),
13311
13721
  offset: v36.optional(v36.pipe(v36.unknown(), v36.transform(Number))),
13312
- order_by: v36.optional(v36.string())
13722
+ orderBy: v36.optional(v36.string())
13313
13723
  });
13314
13724
  var ProjectsTodolistsTodosListParamsSchema = v36.looseObject({
13315
13725
  ...EdgeCacheParamsSchema.entries,
13316
- assignee_id: v36.optional(v36.pipe(v36.unknown(), v36.transform(Number))),
13317
- completed_flag: v36.optional(v36.string()),
13726
+ assigneeId: v36.optional(v36.pipe(v36.unknown(), v36.transform(Number))),
13727
+ completedFlag: v36.optional(v36.string()),
13318
13728
  limit: v36.optional(v36.pipe(v36.unknown(), v36.transform(Number))),
13319
13729
  offset: v36.optional(v36.pipe(v36.unknown(), v36.transform(Number))),
13320
- order_by: v36.optional(v36.string())
13730
+ orderBy: v36.optional(v36.string())
13321
13731
  });
13322
13732
  var TodolistsListParamsSchema = v36.looseObject({
13323
13733
  ...EdgeCacheParamsSchema.entries,
13324
- assignee_id: v36.optional(v36.pipe(v36.unknown(), v36.transform(Number))),
13325
- completed_flag: v36.optional(v36.string()),
13734
+ assigneeId: v36.optional(v36.pipe(v36.unknown(), v36.transform(Number))),
13735
+ completedFlag: v36.optional(v36.string()),
13326
13736
  limit: v36.optional(v36.pipe(v36.unknown(), v36.transform(Number))),
13327
13737
  offset: v36.optional(v36.pipe(v36.unknown(), v36.transform(Number))),
13328
- order_by: v36.optional(v36.string()),
13329
- 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)))
13330
13740
  });
13331
13741
  var TodosListParamsSchema = v36.looseObject({
13332
13742
  ...EdgeCacheParamsSchema.entries,
13333
- assignee_id: v36.optional(v36.pipe(v36.unknown(), v36.transform(Number))),
13334
- completed_flag: v36.optional(v36.string()),
13335
- 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()),
13336
13746
  limit: v36.optional(v36.pipe(v36.unknown(), v36.transform(Number))),
13337
13747
  offset: v36.optional(v36.pipe(v36.unknown(), v36.transform(Number))),
13338
- order_by: v36.optional(v36.string()),
13339
- projects_id: v36.optional(v36.pipe(v36.unknown(), v36.transform(Number))),
13340
- 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)))
13341
13751
  });
13342
13752
  var TodosSummaryListParamsSchema = v36.looseObject({
13343
13753
  ...EdgeCacheParamsSchema.entries,
13344
- akasha_cd: v36.optional(v36.pipe(v36.unknown(), v36.transform(Number))),
13754
+ akashaCd: v36.optional(v36.pipe(v36.unknown(), v36.transform(Number))),
13345
13755
  limit: v36.optional(v36.pipe(v36.unknown(), v36.transform(Number))),
13346
13756
  offset: v36.optional(v36.pipe(v36.unknown(), v36.transform(Number))),
13347
- process_cd: v36.optional(v36.pipe(v36.unknown(), v36.transform(Number)))
13757
+ processCd: v36.optional(v36.pipe(v36.unknown(), v36.transform(Number)))
13348
13758
  });
13349
13759
  var TodosCommentsListParamsSchema = v36.looseObject({
13350
13760
  ...EdgeCacheParamsSchema.entries,
13351
13761
  limit: v36.optional(v36.pipe(v36.unknown(), v36.transform(Number))),
13352
13762
  offset: v36.optional(v36.pipe(v36.unknown(), v36.transform(Number))),
13353
- order_by: v36.optional(v36.string())
13763
+ orderBy: v36.optional(v36.string())
13354
13764
  });
13355
13765
  var TodosEventsListParamsSchema = v36.looseObject({
13356
13766
  ...EdgeCacheParamsSchema.entries,
13357
- event_type_cd: v36.optional(v36.pipe(v36.unknown(), v36.transform(Number))),
13767
+ eventTypeCd: v36.optional(v36.pipe(v36.unknown(), v36.transform(Number))),
13358
13768
  limit: v36.optional(v36.pipe(v36.unknown(), v36.transform(Number))),
13359
13769
  offset: v36.optional(v36.pipe(v36.unknown(), v36.transform(Number))),
13360
- order_by: v36.optional(v36.string()),
13361
- 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)))
13362
13772
  });
13363
13773
  var TodosSessionsListParamsSchema = v36.looseObject({
13364
13774
  ...EdgeCacheParamsSchema.entries,
13365
13775
  limit: v36.optional(v36.pipe(v36.unknown(), v36.transform(Number))),
13366
13776
  offset: v36.optional(v36.pipe(v36.unknown(), v36.transform(Number))),
13367
- order_by: v36.optional(v36.string()),
13368
- 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)))
13369
13779
  });
13370
13780
  var CommentsDataSchema = v36.looseObject({
13371
13781
  id: v36.optional(v36.number()),
@@ -13567,7 +13977,7 @@ var endpoints27 = [
13567
13977
  action: "list",
13568
13978
  aliases: [],
13569
13979
  pathParams: [],
13570
- queryParams: ["creator_id", "limit", "offset", "order_by", "todos_id"],
13980
+ queryParams: ["creatorId", "limit", "offset", "orderBy", "todosId"],
13571
13981
  edgeCache: true,
13572
13982
  responseSchema: CommentsDataSchema,
13573
13983
  responseType: "array"
@@ -13591,7 +14001,7 @@ var endpoints27 = [
13591
14001
  action: "list",
13592
14002
  aliases: [],
13593
14003
  pathParams: [],
13594
- queryParams: ["event_type_cd", "id", "limit", "offset", "order_by", "people_id"],
14004
+ queryParams: ["eventTypeCd", "id", "limit", "offset", "orderBy", "peopleId"],
13595
14005
  edgeCache: true,
13596
14006
  responseSchema: EventsDataSchema,
13597
14007
  responseType: "array"
@@ -13670,7 +14080,7 @@ var endpoints27 = [
13670
14080
  action: "list",
13671
14081
  aliases: [],
13672
14082
  pathParams: ["id"],
13673
- queryParams: ["completed_flag", "due_at", "limit", "offset", "order_by", "projects_id"],
14083
+ queryParams: ["completedFlag", "dueAt", "limit", "offset", "orderBy", "projectsId"],
13674
14084
  edgeCache: true,
13675
14085
  responseSchema: PeopleDataSchema,
13676
14086
  responseType: "array"
@@ -13682,7 +14092,7 @@ var endpoints27 = [
13682
14092
  action: "list",
13683
14093
  aliases: [],
13684
14094
  pathParams: ["personId", "projectId"],
13685
- queryParams: ["completed_flag", "limit", "offset", "order_by"],
14095
+ queryParams: ["completedFlag", "limit", "offset", "orderBy"],
13686
14096
  edgeCache: true,
13687
14097
  responseSchema: PeopleDataSchema,
13688
14098
  responseType: "array"
@@ -13694,7 +14104,7 @@ var endpoints27 = [
13694
14104
  action: "list",
13695
14105
  aliases: [],
13696
14106
  pathParams: [],
13697
- queryParams: ["archived_flag", "limit", "offset", "order_by", "trashed_flag"],
14107
+ queryParams: ["archivedFlag", "limit", "offset", "orderBy", "trashedFlag"],
13698
14108
  edgeCache: true,
13699
14109
  responseSchema: ProjectsDataSchema,
13700
14110
  responseType: "array"
@@ -13738,7 +14148,7 @@ var endpoints27 = [
13738
14148
  action: "list",
13739
14149
  aliases: [],
13740
14150
  pathParams: ["id"],
13741
- queryParams: ["completed_flag", "limit", "offset", "order_by"],
14151
+ queryParams: ["completedFlag", "limit", "offset", "orderBy"],
13742
14152
  edgeCache: true,
13743
14153
  responseSchema: ProjectsDataSchema,
13744
14154
  responseType: "array"
@@ -13750,7 +14160,7 @@ var endpoints27 = [
13750
14160
  action: "list",
13751
14161
  aliases: [],
13752
14162
  pathParams: ["id"],
13753
- queryParams: ["assignee_id", "completed_flag", "limit", "offset", "order_by"],
14163
+ queryParams: ["assigneeId", "completedFlag", "limit", "offset", "orderBy"],
13754
14164
  edgeCache: true,
13755
14165
  responseSchema: ProjectsDataSchema,
13756
14166
  responseType: "array"
@@ -13762,7 +14172,7 @@ var endpoints27 = [
13762
14172
  action: "list",
13763
14173
  aliases: [],
13764
14174
  pathParams: ["projectId", "todolistId"],
13765
- queryParams: ["assignee_id", "completed_flag", "limit", "offset", "order_by"],
14175
+ queryParams: ["assigneeId", "completedFlag", "limit", "offset", "orderBy"],
13766
14176
  edgeCache: true,
13767
14177
  responseSchema: ProjectsDataSchema,
13768
14178
  responseType: "array"
@@ -13774,7 +14184,7 @@ var endpoints27 = [
13774
14184
  action: "list",
13775
14185
  aliases: [],
13776
14186
  pathParams: [],
13777
- queryParams: ["assignee_id", "completed_flag", "limit", "offset", "order_by", "projects_id"],
14187
+ queryParams: ["assigneeId", "completedFlag", "limit", "offset", "orderBy", "projectsId"],
13778
14188
  edgeCache: true,
13779
14189
  responseSchema: TodolistsDataSchema,
13780
14190
  responseType: "array"
@@ -13799,14 +14209,14 @@ var endpoints27 = [
13799
14209
  aliases: [],
13800
14210
  pathParams: [],
13801
14211
  queryParams: [
13802
- "assignee_id",
13803
- "completed_flag",
13804
- "due_at",
14212
+ "assigneeId",
14213
+ "completedFlag",
14214
+ "dueAt",
13805
14215
  "limit",
13806
14216
  "offset",
13807
- "order_by",
13808
- "projects_id",
13809
- "todolist_id"
14217
+ "orderBy",
14218
+ "projectsId",
14219
+ "todolistId"
13810
14220
  ],
13811
14221
  edgeCache: true,
13812
14222
  responseSchema: TodosDataSchema,
@@ -13819,7 +14229,7 @@ var endpoints27 = [
13819
14229
  action: "list",
13820
14230
  aliases: [],
13821
14231
  pathParams: [],
13822
- queryParams: ["akasha_cd", "limit", "offset", "process_cd"],
14232
+ queryParams: ["akashaCd", "limit", "offset", "processCd"],
13823
14233
  edgeCache: true,
13824
14234
  responseSchema: TodosSummaryDataSchema,
13825
14235
  responseType: "array"
@@ -13855,7 +14265,7 @@ var endpoints27 = [
13855
14265
  action: "list",
13856
14266
  aliases: [],
13857
14267
  pathParams: ["id"],
13858
- queryParams: ["limit", "offset", "order_by"],
14268
+ queryParams: ["limit", "offset", "orderBy"],
13859
14269
  edgeCache: true,
13860
14270
  responseSchema: TodosDataSchema,
13861
14271
  responseType: "array"
@@ -13867,7 +14277,7 @@ var endpoints27 = [
13867
14277
  action: "list",
13868
14278
  aliases: [],
13869
14279
  pathParams: ["id"],
13870
- queryParams: ["event_type_cd", "limit", "offset", "order_by", "people_id"],
14280
+ queryParams: ["eventTypeCd", "limit", "offset", "orderBy", "peopleId"],
13871
14281
  edgeCache: true,
13872
14282
  responseSchema: EventsDataSchema,
13873
14283
  responseType: "array"
@@ -13903,7 +14313,7 @@ var endpoints27 = [
13903
14313
  action: "list",
13904
14314
  aliases: [],
13905
14315
  pathParams: ["id"],
13906
- queryParams: ["limit", "offset", "order_by", "session_status_cd"],
14316
+ queryParams: ["limit", "offset", "orderBy", "sessionStatusCd"],
13907
14317
  edgeCache: true,
13908
14318
  responseSchema: TodosSessionsDataSchema,
13909
14319
  responseType: "array"
@@ -14007,8 +14417,8 @@ function createHealthCheckDataResource27(healthCheck) {
14007
14417
  var Basecamp2Client = class extends BaseServiceClient {
14008
14418
  constructor(http, baseUrl = "https://basecamp2.augur-api.com") {
14009
14419
  super("basecamp2", http, baseUrl);
14010
- const boundExecuteRequest = (config, params, pathParams) => {
14011
- return this.executeRequest(config, params, pathParams);
14420
+ const boundExecuteRequest = (config, params, pathParams, query) => {
14421
+ return this.executeRequest(config, params, pathParams, query);
14012
14422
  };
14013
14423
  const proxy = createServiceProxy(
14014
14424
  "basecamp2",
@@ -14938,7 +15348,7 @@ function createCrossSiteAuthenticator(augurInfoToken) {
14938
15348
  }
14939
15349
 
14940
15350
  // src/index.ts
14941
- var VERSION = "2026.6.5";
15351
+ var VERSION = "2026.7.1";
14942
15352
  // Annotate the CommonJS export names for ESM import in node:
14943
15353
  0 && (module.exports = {
14944
15354
  AgrInfoClient,