@simpleapps-com/augur-api 2026.6.5 → 2026.8.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()),
@@ -4302,6 +4448,29 @@ var AttributeGroupsAttributesDataSchema = v11.looseObject({
4302
4448
  statusCd: v11.optional(v11.number())
4303
4449
  });
4304
4450
  var AttributesDataSchema = v11.looseObject({
4451
+ attributeUid: v11.optional(v11.number()),
4452
+ attributeDesc: v11.optional(v11.nullable(v11.string())),
4453
+ extendedDesc: v11.optional(v11.nullable(v11.string())),
4454
+ attributeId: v11.optional(v11.string()),
4455
+ dataType: v11.optional(v11.number()),
4456
+ maxLength: v11.optional(v11.number()),
4457
+ noOfDecimal: v11.optional(v11.nullable(v11.number())),
4458
+ rowStatusFlag: v11.optional(v11.number()),
4459
+ validationRequiredFlag: v11.optional(v11.string()),
4460
+ dateCreated: v11.optional(v11.string()),
4461
+ createdBy: v11.optional(v11.string()),
4462
+ dateLastModified: v11.optional(v11.string()),
4463
+ lastMaintainedBy: v11.optional(v11.string()),
4464
+ cfdiAttributeType: v11.optional(v11.nullable(v11.number())),
4465
+ updateCd: v11.optional(v11.number()),
4466
+ processCd: v11.optional(v11.number()),
4467
+ statusCd: v11.optional(v11.number()),
4468
+ typeCd: v11.optional(v11.number()),
4469
+ activeValueCount: v11.optional(v11.number()),
4470
+ inactiveValueCount: v11.optional(v11.number()),
4471
+ deletedValueCount: v11.optional(v11.number())
4472
+ });
4473
+ var AttributesData2Schema = v11.looseObject({
4305
4474
  attributeUid: v11.optional(v11.number()),
4306
4475
  attributeDesc: v11.optional(v11.nullable(v11.string())),
4307
4476
  extendedDesc: v11.optional(v11.nullable(v11.string())),
@@ -4334,7 +4503,11 @@ var AttributesItemsDataSchema = v11.looseObject({
4334
4503
  processCd: v11.optional(v11.number()),
4335
4504
  statusCd: v11.optional(v11.number()),
4336
4505
  attributeValueUid: v11.optional(v11.number()),
4337
- onlineCd: v11.optional(v11.number())
4506
+ onlineCd: v11.optional(v11.number()),
4507
+ attributeDesc: v11.optional(v11.nullable(v11.string())),
4508
+ attributeId: v11.optional(v11.string()),
4509
+ itemId: v11.optional(v11.string()),
4510
+ itemDesc: v11.optional(v11.nullable(v11.string()))
4338
4511
  });
4339
4512
  var AttributesValuesDataSchema = v11.looseObject({
4340
4513
  attributeValueUid: v11.optional(v11.number()),
@@ -4426,7 +4599,23 @@ var InvLocDataSchema = v11.looseObject({
4426
4599
  updateCd: v11.optional(v11.number()),
4427
4600
  productGroupId: v11.optional(v11.nullable(v11.string())),
4428
4601
  purchaseDiscountGroup: v11.optional(v11.nullable(v11.string())),
4429
- salesDiscountGroup: v11.optional(v11.nullable(v11.string()))
4602
+ salesDiscountGroup: v11.optional(v11.nullable(v11.string())),
4603
+ purchaseClass: v11.optional(v11.nullable(v11.string()))
4604
+ });
4605
+ var InvMastAttributesDataSchema = v11.looseObject({
4606
+ itemAttributeValueUid: v11.optional(v11.number()),
4607
+ invMastUid: v11.optional(v11.number()),
4608
+ attributeUid: v11.optional(v11.number()),
4609
+ attributeValue: v11.optional(v11.nullable(v11.string())),
4610
+ dateCreated: v11.optional(v11.string()),
4611
+ createdBy: v11.optional(v11.string()),
4612
+ dateLastModified: v11.optional(v11.string()),
4613
+ lastMaintainedBy: v11.optional(v11.string()),
4614
+ updateCd: v11.optional(v11.number()),
4615
+ processCd: v11.optional(v11.number()),
4616
+ statusCd: v11.optional(v11.number()),
4617
+ attributeValueUid: v11.optional(v11.number()),
4618
+ onlineCd: v11.optional(v11.number())
4430
4619
  });
4431
4620
  var InvMastFaqDataSchema = v11.looseObject({
4432
4621
  invMastFaqUid: v11.optional(v11.number()),
@@ -4622,7 +4811,7 @@ var endpoints6 = [
4622
4811
  pathParams: [],
4623
4812
  queryParams: [],
4624
4813
  edgeCache: false,
4625
- responseSchema: AttributesDataSchema,
4814
+ responseSchema: AttributesData2Schema,
4626
4815
  responseType: "object"
4627
4816
  },
4628
4817
  {
@@ -4646,7 +4835,7 @@ var endpoints6 = [
4646
4835
  pathParams: ["attributeUid"],
4647
4836
  queryParams: [],
4648
4837
  edgeCache: false,
4649
- responseSchema: AttributesDataSchema,
4838
+ responseSchema: AttributesData2Schema,
4650
4839
  responseType: "object"
4651
4840
  },
4652
4841
  {
@@ -4672,6 +4861,8 @@ var endpoints6 = [
4672
4861
  "attributeValueUid",
4673
4862
  "excludeValues",
4674
4863
  "includeValues",
4864
+ "itemId",
4865
+ "itemIdSearch",
4675
4866
  "limit",
4676
4867
  "offset",
4677
4868
  "orderBy",
@@ -5151,7 +5342,7 @@ var endpoints6 = [
5151
5342
  pathParams: ["invMastUid"],
5152
5343
  queryParams: [],
5153
5344
  edgeCache: false,
5154
- responseSchema: AttributesItemsDataSchema,
5345
+ responseSchema: InvMastAttributesDataSchema,
5155
5346
  responseType: "object"
5156
5347
  },
5157
5348
  {
@@ -5175,7 +5366,7 @@ var endpoints6 = [
5175
5366
  pathParams: ["invMastUid", "attributeUid"],
5176
5367
  queryParams: [],
5177
5368
  edgeCache: false,
5178
- responseSchema: AttributesItemsDataSchema,
5369
+ responseSchema: InvMastAttributesDataSchema,
5179
5370
  responseType: "object"
5180
5371
  },
5181
5372
  {
@@ -5187,7 +5378,7 @@ var endpoints6 = [
5187
5378
  pathParams: ["invMastUid", "attributeUid", "attributeValueUid"],
5188
5379
  queryParams: [],
5189
5380
  edgeCache: false,
5190
- responseSchema: AttributesItemsDataSchema,
5381
+ responseSchema: InvMastAttributesDataSchema,
5191
5382
  responseType: "object"
5192
5383
  },
5193
5384
  {
@@ -5917,8 +6108,8 @@ function createWhoamiDataResource(whoami) {
5917
6108
  var ItemsClient = class extends BaseServiceClient {
5918
6109
  constructor(http, baseUrl = "https://items.augur-api.com") {
5919
6110
  super("items", http, baseUrl);
5920
- const boundExecuteRequest = (config, params, pathParams) => {
5921
- return this.executeRequest(config, params, pathParams);
6111
+ const boundExecuteRequest = (config, params, pathParams, query) => {
6112
+ return this.executeRequest(config, params, pathParams, query);
5922
6113
  };
5923
6114
  const proxy = createServiceProxy("items", boundExecuteRequest, endpoints6);
5924
6115
  const dataProxy = createDataProxy(proxy);
@@ -6383,8 +6574,8 @@ function createHealthCheckDataResource7(healthCheck) {
6383
6574
  var LegacyClient = class extends BaseServiceClient {
6384
6575
  constructor(http, baseUrl = "https://legacy.augur-api.com") {
6385
6576
  super("legacy", http, baseUrl);
6386
- const boundExecuteRequest = (config, params, pathParams) => {
6387
- return this.executeRequest(config, params, pathParams);
6577
+ const boundExecuteRequest = (config, params, pathParams, query) => {
6578
+ return this.executeRequest(config, params, pathParams, query);
6388
6579
  };
6389
6580
  const proxy = createServiceProxy("legacy", boundExecuteRequest, endpoints7);
6390
6581
  const dataProxy = createDataProxy(proxy);
@@ -6414,11 +6605,6 @@ var BinTransferListParamsSchema = v14.looseObject({
6414
6605
  offset: v14.optional(v14.pipe(v14.unknown(), v14.transform(Number))),
6415
6606
  statusCd: v14.optional(v14.pipe(v14.unknown(), v14.transform(Number)))
6416
6607
  });
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
6608
  var PurchaseOrderReceiptListParamsSchema = v14.looseObject({
6423
6609
  ...EdgeCacheParamsSchema.entries,
6424
6610
  limit: v14.optional(v14.pipe(v14.unknown(), v14.transform(Number))),
@@ -6426,12 +6612,6 @@ var PurchaseOrderReceiptListParamsSchema = v14.looseObject({
6426
6612
  referenceNo: v14.optional(v14.string()),
6427
6613
  statusCd: v14.optional(v14.pipe(v14.unknown(), v14.transform(Number)))
6428
6614
  });
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
6615
  var ReceivingListParamsSchema = v14.looseObject({
6436
6616
  ...EdgeCacheParamsSchema.entries,
6437
6617
  limit: v14.optional(v14.pipe(v14.unknown(), v14.transform(Number))),
@@ -6439,12 +6619,6 @@ var ReceivingListParamsSchema = v14.looseObject({
6439
6619
  poNo: v14.optional(v14.pipe(v14.unknown(), v14.transform(Number))),
6440
6620
  statusCd: v14.optional(v14.pipe(v14.unknown(), v14.transform(Number)))
6441
6621
  });
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
6622
  var TransferListParamsSchema = v14.looseObject({
6449
6623
  ...EdgeCacheParamsSchema.entries,
6450
6624
  limit: v14.optional(v14.pipe(v14.unknown(), v14.transform(Number))),
@@ -6452,12 +6626,6 @@ var TransferListParamsSchema = v14.looseObject({
6452
6626
  referenceNo: v14.optional(v14.string()),
6453
6627
  statusCd: v14.optional(v14.pipe(v14.unknown(), v14.transform(Number)))
6454
6628
  });
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
6629
  var TransferReceiptListParamsSchema = v14.looseObject({
6462
6630
  ...EdgeCacheParamsSchema.entries,
6463
6631
  limit: v14.optional(v14.pipe(v14.unknown(), v14.transform(Number))),
@@ -6465,12 +6633,6 @@ var TransferReceiptListParamsSchema = v14.looseObject({
6465
6633
  referenceNo: v14.optional(v14.string()),
6466
6634
  statusCd: v14.optional(v14.pipe(v14.unknown(), v14.transform(Number)))
6467
6635
  });
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
6636
  var TransferShippingListParamsSchema = v14.looseObject({
6475
6637
  ...EdgeCacheParamsSchema.entries,
6476
6638
  limit: v14.optional(v14.pipe(v14.unknown(), v14.transform(Number))),
@@ -6478,12 +6640,6 @@ var TransferShippingListParamsSchema = v14.looseObject({
6478
6640
  referenceNo: v14.optional(v14.string()),
6479
6641
  statusCd: v14.optional(v14.pipe(v14.unknown(), v14.transform(Number)))
6480
6642
  });
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
6643
  var BinTransferDataSchema = v14.looseObject({
6488
6644
  binTransferHdrUid: v14.optional(v14.number()),
6489
6645
  importState: v14.optional(v14.string()),
@@ -6573,6 +6729,30 @@ var PassthroughDataSchema8 = v14.record(v14.string(), v14.unknown());
6573
6729
 
6574
6730
  // src/services/nexus/generated/endpoints.ts
6575
6731
  var endpoints8 = [
6732
+ {
6733
+ method: "GET",
6734
+ path: "/bin-transfer",
6735
+ chain: "binTransfer",
6736
+ action: "list",
6737
+ aliases: [],
6738
+ pathParams: [],
6739
+ queryParams: ["limit", "offset", "statusCd"],
6740
+ edgeCache: true,
6741
+ responseSchema: BinTransferDataSchema,
6742
+ responseType: "array"
6743
+ },
6744
+ {
6745
+ method: "POST",
6746
+ path: "/bin-transfer",
6747
+ chain: "binTransfer",
6748
+ action: "create",
6749
+ aliases: [],
6750
+ pathParams: [],
6751
+ queryParams: [],
6752
+ edgeCache: false,
6753
+ responseSchema: BinTransferDataSchema,
6754
+ responseType: "object"
6755
+ },
6576
6756
  {
6577
6757
  method: "GET",
6578
6758
  path: "/bin-transfer/{binTransferHdrUid}",
@@ -6611,38 +6791,38 @@ var endpoints8 = [
6611
6791
  },
6612
6792
  {
6613
6793
  method: "GET",
6614
- path: "/bin-transfer",
6615
- chain: "binTransfer",
6794
+ path: "/bin-transfer/{binTransferHdrUid}/status",
6795
+ chain: "binTransfer.status",
6796
+ action: "list",
6797
+ aliases: [],
6798
+ pathParams: ["binTransferHdrUid"],
6799
+ queryParams: [],
6800
+ edgeCache: true,
6801
+ responseSchema: BinTransferStatusDataSchema,
6802
+ responseType: "object"
6803
+ },
6804
+ {
6805
+ method: "GET",
6806
+ path: "/purchase-order-receipt",
6807
+ chain: "purchaseOrderReceipt",
6616
6808
  action: "list",
6617
6809
  aliases: [],
6618
6810
  pathParams: [],
6619
- queryParams: ["limit", "offset", "statusCd"],
6811
+ queryParams: ["limit", "offset", "referenceNo", "statusCd"],
6620
6812
  edgeCache: true,
6621
- responseSchema: BinTransferDataSchema,
6813
+ responseSchema: PurchaseOrderReceiptDataSchema,
6622
6814
  responseType: "array"
6623
6815
  },
6624
6816
  {
6625
6817
  method: "POST",
6626
- path: "/bin-transfer",
6627
- chain: "binTransfer",
6818
+ path: "/purchase-order-receipt",
6819
+ chain: "purchaseOrderReceipt",
6628
6820
  action: "create",
6629
6821
  aliases: [],
6630
6822
  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
6823
  queryParams: [],
6644
- edgeCache: true,
6645
- responseSchema: BinTransferStatusDataSchema,
6824
+ edgeCache: false,
6825
+ responseSchema: PurchaseOrderReceiptDataSchema,
6646
6826
  responseType: "object"
6647
6827
  },
6648
6828
  {
@@ -6683,26 +6863,26 @@ var endpoints8 = [
6683
6863
  },
6684
6864
  {
6685
6865
  method: "GET",
6686
- path: "/purchase-order-receipt",
6687
- chain: "purchaseOrderReceipt",
6866
+ path: "/receiving",
6867
+ chain: "receiving",
6688
6868
  action: "list",
6689
6869
  aliases: [],
6690
6870
  pathParams: [],
6691
- queryParams: ["limit", "offset", "referenceNo", "statusCd"],
6871
+ queryParams: ["limit", "offset", "poNo", "statusCd"],
6692
6872
  edgeCache: true,
6693
- responseSchema: PurchaseOrderReceiptDataSchema,
6873
+ responseSchema: ReceivingDataSchema,
6694
6874
  responseType: "array"
6695
6875
  },
6696
6876
  {
6697
6877
  method: "POST",
6698
- path: "/purchase-order-receipt",
6699
- chain: "purchaseOrderReceipt",
6878
+ path: "/receiving",
6879
+ chain: "receiving",
6700
6880
  action: "create",
6701
6881
  aliases: [],
6702
6882
  pathParams: [],
6703
- queryParams: ["limit", "offset", "referenceNo", "statusCd"],
6883
+ queryParams: [],
6704
6884
  edgeCache: false,
6705
- responseSchema: PurchaseOrderReceiptDataSchema,
6885
+ responseSchema: ReceivingDataSchema,
6706
6886
  responseType: "object"
6707
6887
  },
6708
6888
  {
@@ -6743,59 +6923,23 @@ var endpoints8 = [
6743
6923
  },
6744
6924
  {
6745
6925
  method: "GET",
6746
- path: "/receiving",
6747
- chain: "receiving",
6926
+ path: "/transfer",
6927
+ chain: "transfer",
6748
6928
  action: "list",
6749
6929
  aliases: [],
6750
6930
  pathParams: [],
6751
- queryParams: ["limit", "offset", "poNo", "statusCd"],
6931
+ queryParams: ["limit", "offset", "referenceNo", "statusCd"],
6752
6932
  edgeCache: true,
6753
- responseSchema: ReceivingDataSchema,
6933
+ responseSchema: TransferDataSchema,
6754
6934
  responseType: "array"
6755
6935
  },
6756
6936
  {
6757
6937
  method: "POST",
6758
- path: "/receiving",
6759
- chain: "receiving",
6938
+ path: "/transfer",
6939
+ chain: "transfer",
6760
6940
  action: "create",
6761
6941
  aliases: [],
6762
6942
  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
6943
  queryParams: [],
6800
6944
  edgeCache: false,
6801
6945
  responseSchema: TransferDataSchema,
@@ -6803,26 +6947,26 @@ var endpoints8 = [
6803
6947
  },
6804
6948
  {
6805
6949
  method: "GET",
6806
- path: "/transfer",
6807
- chain: "transfer",
6950
+ path: "/transfer-receipt",
6951
+ chain: "transferReceipt",
6808
6952
  action: "list",
6809
6953
  aliases: [],
6810
6954
  pathParams: [],
6811
6955
  queryParams: ["limit", "offset", "referenceNo", "statusCd"],
6812
6956
  edgeCache: true,
6813
- responseSchema: TransferDataSchema,
6957
+ responseSchema: TransferReceiptDataSchema,
6814
6958
  responseType: "array"
6815
6959
  },
6816
6960
  {
6817
6961
  method: "POST",
6818
- path: "/transfer",
6819
- chain: "transfer",
6962
+ path: "/transfer-receipt",
6963
+ chain: "transferReceipt",
6820
6964
  action: "create",
6821
6965
  aliases: [],
6822
6966
  pathParams: [],
6823
- queryParams: ["limit", "offset", "referenceNo", "statusCd"],
6967
+ queryParams: [],
6824
6968
  edgeCache: false,
6825
- responseSchema: TransferDataSchema,
6969
+ responseSchema: TransferReceiptDataSchema,
6826
6970
  responseType: "object"
6827
6971
  },
6828
6972
  {
@@ -6863,8 +7007,8 @@ var endpoints8 = [
6863
7007
  },
6864
7008
  {
6865
7009
  method: "GET",
6866
- path: "/transfer-receipt",
6867
- chain: "transferReceipt",
7010
+ path: "/transfer-shipping",
7011
+ chain: "transferShipping",
6868
7012
  action: "list",
6869
7013
  aliases: [],
6870
7014
  pathParams: [],
@@ -6875,12 +7019,12 @@ var endpoints8 = [
6875
7019
  },
6876
7020
  {
6877
7021
  method: "POST",
6878
- path: "/transfer-receipt",
6879
- chain: "transferReceipt",
7022
+ path: "/transfer-shipping",
7023
+ chain: "transferShipping",
6880
7024
  action: "create",
6881
7025
  aliases: [],
6882
7026
  pathParams: [],
6883
- queryParams: ["limit", "offset", "referenceNo", "statusCd"],
7027
+ queryParams: [],
6884
7028
  edgeCache: false,
6885
7029
  responseSchema: TransferReceiptDataSchema,
6886
7030
  responseType: "object"
@@ -6923,26 +7067,38 @@ var endpoints8 = [
6923
7067
  },
6924
7068
  {
6925
7069
  method: "GET",
6926
- path: "/transfer-shipping",
6927
- chain: "transferShipping",
6928
- action: "list",
7070
+ path: "/transfer/{transferUid}",
7071
+ chain: "transfer",
7072
+ action: "get",
6929
7073
  aliases: [],
6930
- pathParams: [],
6931
- queryParams: ["limit", "offset", "referenceNo", "statusCd"],
7074
+ pathParams: ["transferUid"],
7075
+ queryParams: [],
6932
7076
  edgeCache: true,
6933
- responseSchema: TransferReceiptDataSchema,
6934
- responseType: "array"
7077
+ responseSchema: TransferDataSchema,
7078
+ responseType: "object"
6935
7079
  },
6936
7080
  {
6937
- method: "POST",
6938
- path: "/transfer-shipping",
6939
- chain: "transferShipping",
6940
- action: "create",
7081
+ method: "PUT",
7082
+ path: "/transfer/{transferUid}",
7083
+ chain: "transfer",
7084
+ action: "update",
6941
7085
  aliases: [],
6942
- pathParams: [],
6943
- queryParams: ["limit", "offset", "referenceNo", "statusCd"],
7086
+ pathParams: ["transferUid"],
7087
+ queryParams: [],
6944
7088
  edgeCache: false,
6945
- responseSchema: TransferReceiptDataSchema,
7089
+ responseSchema: TransferDataSchema,
7090
+ responseType: "object"
7091
+ },
7092
+ {
7093
+ method: "DELETE",
7094
+ path: "/transfer/{transferUid}",
7095
+ chain: "transfer",
7096
+ action: "delete",
7097
+ aliases: [],
7098
+ pathParams: ["transferUid"],
7099
+ queryParams: [],
7100
+ edgeCache: false,
7101
+ responseSchema: TransferDataSchema,
6946
7102
  responseType: "object"
6947
7103
  }
6948
7104
  ];
@@ -7021,8 +7177,8 @@ function createPingDataResource5(ping) {
7021
7177
  var NexusClient = class extends BaseServiceClient {
7022
7178
  constructor(http, baseUrl = "https://nexus.augur-api.com") {
7023
7179
  super("nexus", http, baseUrl);
7024
- const boundExecuteRequest = (config, params, pathParams) => {
7025
- return this.executeRequest(config, params, pathParams);
7180
+ const boundExecuteRequest = (config, params, pathParams, query) => {
7181
+ return this.executeRequest(config, params, pathParams, query);
7026
7182
  };
7027
7183
  const proxy = createServiceProxy("nexus", boundExecuteRequest, endpoints8);
7028
7184
  const dataProxy = createDataProxy(proxy);
@@ -7102,6 +7258,14 @@ var TrainingConversationsMessagesListParamsSchema = v15.looseObject({
7102
7258
  offset: v15.optional(v15.pipe(v15.unknown(), v15.transform(Number))),
7103
7259
  orderBy: v15.optional(v15.string())
7104
7260
  });
7261
+ var UsersAddressesListParamsSchema = v15.looseObject({
7262
+ ...EdgeCacheParamsSchema.entries,
7263
+ emailAddress: v15.optional(v15.string()),
7264
+ limit: v15.optional(v15.pipe(v15.unknown(), v15.transform(Number))),
7265
+ offset: v15.optional(v15.pipe(v15.unknown(), v15.transform(Number))),
7266
+ orderBy: v15.optional(v15.string()),
7267
+ statusCd: v15.optional(v15.pipe(v15.unknown(), v15.transform(Number)))
7268
+ });
7105
7269
  var FyxerTranscriptDataSchema = v15.looseObject({
7106
7270
  fyxerTranscriptHdrUid: v15.optional(v15.number()),
7107
7271
  link: v15.optional(v15.string()),
@@ -7221,6 +7385,26 @@ var TrainingConversationsMessagesDataSchema = v15.looseObject({
7221
7385
  dateCreated: v15.optional(v15.string()),
7222
7386
  dateLastModified: v15.optional(v15.string())
7223
7387
  });
7388
+ var UsersAddressesDataSchema = v15.looseObject({
7389
+ userAddressUid: v15.optional(v15.number()),
7390
+ userId: v15.optional(v15.number()),
7391
+ address1: v15.optional(v15.nullable(v15.string())),
7392
+ address2: v15.optional(v15.nullable(v15.string())),
7393
+ address3: v15.optional(v15.nullable(v15.string())),
7394
+ city: v15.optional(v15.nullable(v15.string())),
7395
+ state: v15.optional(v15.nullable(v15.string())),
7396
+ postalCode: v15.optional(v15.nullable(v15.string())),
7397
+ country: v15.optional(v15.nullable(v15.string())),
7398
+ emailAddress: v15.optional(v15.nullable(v15.string())),
7399
+ name: v15.optional(v15.nullable(v15.string())),
7400
+ phoneNumberMain: v15.optional(v15.nullable(v15.string())),
7401
+ phoneNumberMobile: v15.optional(v15.nullable(v15.string())),
7402
+ dateCreated: v15.optional(v15.string()),
7403
+ dateLastModified: v15.optional(v15.string()),
7404
+ updateCd: v15.optional(v15.number()),
7405
+ statusCd: v15.optional(v15.number()),
7406
+ processCd: v15.optional(v15.number())
7407
+ });
7224
7408
  var PassthroughDataSchema9 = v15.record(v15.string(), v15.unknown());
7225
7409
 
7226
7410
  // src/services/agr-site/generated/endpoints.ts
@@ -7237,6 +7421,18 @@ var endpoints9 = [
7237
7421
  responseSchema: PassthroughDataSchema9,
7238
7422
  responseType: "passthrough"
7239
7423
  },
7424
+ {
7425
+ method: "POST",
7426
+ path: "/datafiles",
7427
+ chain: "datafiles",
7428
+ action: "create",
7429
+ aliases: [],
7430
+ pathParams: [],
7431
+ queryParams: [],
7432
+ edgeCache: false,
7433
+ responseSchema: PassthroughDataSchema9,
7434
+ responseType: "passthrough"
7435
+ },
7240
7436
  {
7241
7437
  method: "GET",
7242
7438
  path: "/fyxer-transcript",
@@ -7656,6 +7852,66 @@ var endpoints9 = [
7656
7852
  edgeCache: false,
7657
7853
  responseSchema: TrainingConversationsMessagesDataSchema,
7658
7854
  responseType: "object"
7855
+ },
7856
+ {
7857
+ method: "GET",
7858
+ path: "/users/{userId}/addresses",
7859
+ chain: "users.addresses",
7860
+ action: "list",
7861
+ aliases: [],
7862
+ pathParams: ["userId"],
7863
+ queryParams: ["emailAddress", "limit", "offset", "orderBy", "statusCd"],
7864
+ edgeCache: true,
7865
+ responseSchema: UsersAddressesDataSchema,
7866
+ responseType: "array"
7867
+ },
7868
+ {
7869
+ method: "POST",
7870
+ path: "/users/{userId}/addresses",
7871
+ chain: "users.addresses",
7872
+ action: "create",
7873
+ aliases: [],
7874
+ pathParams: ["userId"],
7875
+ queryParams: [],
7876
+ edgeCache: false,
7877
+ responseSchema: UsersAddressesDataSchema,
7878
+ responseType: "object"
7879
+ },
7880
+ {
7881
+ method: "GET",
7882
+ path: "/users/{userId}/addresses/{userAddressUid}",
7883
+ chain: "users.addresses",
7884
+ action: "get",
7885
+ aliases: [],
7886
+ pathParams: ["userId", "userAddressUid"],
7887
+ queryParams: [],
7888
+ edgeCache: true,
7889
+ responseSchema: UsersAddressesDataSchema,
7890
+ responseType: "object"
7891
+ },
7892
+ {
7893
+ method: "PUT",
7894
+ path: "/users/{userId}/addresses/{userAddressUid}",
7895
+ chain: "users.addresses",
7896
+ action: "update",
7897
+ aliases: [],
7898
+ pathParams: ["userId", "userAddressUid"],
7899
+ queryParams: [],
7900
+ edgeCache: false,
7901
+ responseSchema: UsersAddressesDataSchema,
7902
+ responseType: "object"
7903
+ },
7904
+ {
7905
+ method: "DELETE",
7906
+ path: "/users/{userId}/addresses/{userAddressUid}",
7907
+ chain: "users.addresses",
7908
+ action: "delete",
7909
+ aliases: [],
7910
+ pathParams: ["userId", "userAddressUid"],
7911
+ queryParams: [],
7912
+ edgeCache: false,
7913
+ responseSchema: UsersAddressesDataSchema,
7914
+ responseType: "object"
7659
7915
  }
7660
7916
  ];
7661
7917
 
@@ -7818,12 +8074,13 @@ function createWhoamiDataResource2(whoami) {
7818
8074
  var AgrSiteClient = class extends BaseServiceClient {
7819
8075
  constructor(http, baseUrl = "https://agr-site.augur-api.com") {
7820
8076
  super("agr-site", http, baseUrl);
7821
- const boundExecuteRequest = (config, params, pathParams) => {
7822
- return this.executeRequest(config, params, pathParams);
8077
+ const boundExecuteRequest = (config, params, pathParams, query) => {
8078
+ return this.executeRequest(config, params, pathParams, query);
7823
8079
  };
7824
8080
  const proxy = createServiceProxy("agr-site", boundExecuteRequest, endpoints9);
7825
8081
  const dataProxy = createDataProxy(proxy);
7826
8082
  this.context = proxy.context;
8083
+ this.datafiles = proxy.datafiles;
7827
8084
  this.fyxerTranscript = proxy.fyxerTranscript;
7828
8085
  this.geoCodesPostalCodes = proxy.geoCodesPostalCodes;
7829
8086
  this.metaFiles = proxy.metaFiles;
@@ -7832,7 +8089,9 @@ var AgrSiteClient = class extends BaseServiceClient {
7832
8089
  this.postalCodesXShiptos = proxy.postalCodesXShiptos;
7833
8090
  this.settings = proxy.settings;
7834
8091
  this.training = proxy.training;
8092
+ this.users = proxy.users;
7835
8093
  this.contextData = dataProxy.context;
8094
+ this.datafilesData = dataProxy.datafiles;
7836
8095
  this.fyxerTranscriptData = dataProxy.fyxerTranscript;
7837
8096
  this.geoCodesPostalCodesData = dataProxy.geoCodesPostalCodes;
7838
8097
  this.metaFilesData = dataProxy.metaFiles;
@@ -7841,6 +8100,7 @@ var AgrSiteClient = class extends BaseServiceClient {
7841
8100
  this.postalCodesXShiptosData = dataProxy.postalCodesXShiptos;
7842
8101
  this.settingsData = dataProxy.settings;
7843
8102
  this.trainingData = dataProxy.training;
8103
+ this.usersData = dataProxy.users;
7844
8104
  this.healthCheck = createHealthCheckResource9(boundExecuteRequest);
7845
8105
  this.ping = createPingResource7(boundExecuteRequest);
7846
8106
  this.whoami = createWhoamiResource2(boundExecuteRequest);
@@ -7890,6 +8150,14 @@ var CustomerAddressesListParamsSchema = v17.looseObject({
7890
8150
  orderBy: v17.optional(v17.string()),
7891
8151
  statusCd: v17.optional(v17.pipe(v17.unknown(), v17.transform(Number)))
7892
8152
  });
8153
+ var CustomerAgingListParamsSchema = v17.looseObject({
8154
+ ...EdgeCacheParamsSchema.entries,
8155
+ asOf: v17.optional(v17.string()),
8156
+ limit: v17.optional(v17.pipe(v17.unknown(), v17.transform(Number))),
8157
+ offset: v17.optional(v17.pipe(v17.unknown(), v17.transform(Number))),
8158
+ orderBy: v17.optional(v17.string()),
8159
+ shipToId: v17.optional(v17.pipe(v17.unknown(), v17.transform(Number)))
8160
+ });
7893
8161
  var CustomerContactsListParamsSchema = v17.looseObject({
7894
8162
  ...EdgeCacheParamsSchema.entries,
7895
8163
  limit: v17.optional(v17.pipe(v17.unknown(), v17.transform(Number))),
@@ -7898,6 +8166,7 @@ var CustomerContactsListParamsSchema = v17.looseObject({
7898
8166
  });
7899
8167
  var CustomerInvoicesListParamsSchema = v17.looseObject({
7900
8168
  ...EdgeCacheParamsSchema.entries,
8169
+ contactId: v17.optional(v17.string()),
7901
8170
  createdFrom: v17.optional(v17.string()),
7902
8171
  createdOn: v17.optional(v17.string()),
7903
8172
  createdTo: v17.optional(v17.string()),
@@ -7909,6 +8178,7 @@ var CustomerInvoicesListParamsSchema = v17.looseObject({
7909
8178
  });
7910
8179
  var CustomerOrdersListParamsSchema = v17.looseObject({
7911
8180
  ...EdgeCacheParamsSchema.entries,
8181
+ addressId: v17.optional(v17.pipe(v17.unknown(), v17.transform(Number))),
7912
8182
  cancelFlag: v17.optional(v17.string()),
7913
8183
  contactId: v17.optional(v17.string()),
7914
8184
  createdFrom: v17.optional(v17.string()),
@@ -7929,6 +8199,8 @@ var CustomerPurchasedItemsListParamsSchema = v17.looseObject({
7929
8199
  });
7930
8200
  var CustomerQuotesListParamsSchema = v17.looseObject({
7931
8201
  ...EdgeCacheParamsSchema.entries,
8202
+ addressId: v17.optional(v17.pipe(v17.unknown(), v17.transform(Number))),
8203
+ contactId: v17.optional(v17.string()),
7932
8204
  createdFrom: v17.optional(v17.string()),
7933
8205
  createdOn: v17.optional(v17.string()),
7934
8206
  createdTo: v17.optional(v17.string()),
@@ -7945,6 +8217,18 @@ var CustomerRmasListParamsSchema = v17.looseObject({
7945
8217
  offset: v17.optional(v17.pipe(v17.unknown(), v17.transform(Number))),
7946
8218
  orderBy: v17.optional(v17.string())
7947
8219
  });
8220
+ var CustomerSalesUsageListParamsSchema = v17.looseObject({
8221
+ ...EdgeCacheParamsSchema.entries,
8222
+ invoicedFrom: v17.optional(v17.string()),
8223
+ invoicedTo: v17.optional(v17.string()),
8224
+ limit: v17.optional(v17.pipe(v17.unknown(), v17.transform(Number))),
8225
+ offset: v17.optional(v17.pipe(v17.unknown(), v17.transform(Number))),
8226
+ orderBy: v17.optional(v17.string()),
8227
+ q: v17.optional(v17.string()),
8228
+ shipToId: v17.optional(v17.pipe(v17.unknown(), v17.transform(Number))),
8229
+ supplierId: v17.optional(v17.pipe(v17.unknown(), v17.transform(Number))),
8230
+ totalBy: v17.optional(v17.string())
8231
+ });
7948
8232
  var CustomerShipToListParamsSchema = v17.looseObject({
7949
8233
  ...EdgeCacheParamsSchema.entries,
7950
8234
  limit: v17.optional(v17.pipe(v17.unknown(), v17.transform(Number))),
@@ -7978,6 +8262,26 @@ var CustomerAddressesDataSchema = v17.looseObject({
7978
8262
  phoneNumberMain: v17.optional(v17.nullable(v17.string())),
7979
8263
  phoneNumberMobile: v17.optional(v17.nullable(v17.string()))
7980
8264
  });
8265
+ var CustomerAgingDataSchema = v17.looseObject({
8266
+ customerId: v17.optional(v17.string()),
8267
+ asOf: v17.optional(v17.string()),
8268
+ bucketKeys: v17.optional(v17.string()),
8269
+ invoiceCount: v17.optional(v17.number()),
8270
+ totalBalance: v17.optional(v17.number()),
8271
+ totals: v17.optional(v17.string()),
8272
+ data: v17.optional(v17.string())
8273
+ });
8274
+ var CustomerSalesUsageDataSchema = v17.looseObject({
8275
+ customerId: v17.optional(v17.string()),
8276
+ invoicedFrom: v17.optional(v17.string()),
8277
+ invoicedTo: v17.optional(v17.string()),
8278
+ totalBy: v17.optional(v17.string()),
8279
+ bucketKeys: v17.optional(v17.string()),
8280
+ invoiceCount: v17.optional(v17.number()),
8281
+ linesFolded: v17.optional(v17.number()),
8282
+ itemCount: v17.optional(v17.number()),
8283
+ data: v17.optional(v17.string())
8284
+ });
7981
8285
  var CustomerTagsDataSchema = v17.looseObject({
7982
8286
  customerTagsUid: v17.optional(v17.number()),
7983
8287
  customerId: v17.optional(v17.number()),
@@ -8148,6 +8452,18 @@ var endpoints10 = [
8148
8452
  responseSchema: CustomerAddressesDataSchema,
8149
8453
  responseType: "object"
8150
8454
  },
8455
+ {
8456
+ method: "GET",
8457
+ path: "/customer/{customerId}/aging",
8458
+ chain: "customer.aging",
8459
+ action: "list",
8460
+ aliases: [],
8461
+ pathParams: ["customerId"],
8462
+ queryParams: ["asOf", "limit", "offset", "orderBy", "shipToId"],
8463
+ edgeCache: true,
8464
+ responseSchema: CustomerAgingDataSchema,
8465
+ responseType: "object"
8466
+ },
8151
8467
  {
8152
8468
  method: "GET",
8153
8469
  path: "/customer/{customerId}/contacts",
@@ -8192,6 +8508,7 @@ var endpoints10 = [
8192
8508
  aliases: [],
8193
8509
  pathParams: ["customerId"],
8194
8510
  queryParams: [
8511
+ "contactId",
8195
8512
  "createdFrom",
8196
8513
  "createdOn",
8197
8514
  "createdTo",
@@ -8225,6 +8542,7 @@ var endpoints10 = [
8225
8542
  aliases: [],
8226
8543
  pathParams: ["customerId"],
8227
8544
  queryParams: [
8545
+ "addressId",
8228
8546
  "cancelFlag",
8229
8547
  "contactId",
8230
8548
  "createdFrom",
@@ -8272,7 +8590,16 @@ var endpoints10 = [
8272
8590
  action: "list",
8273
8591
  aliases: [],
8274
8592
  pathParams: ["customerId"],
8275
- queryParams: ["createdFrom", "createdOn", "createdTo", "limit", "offset", "orderBy"],
8593
+ queryParams: [
8594
+ "addressId",
8595
+ "contactId",
8596
+ "createdFrom",
8597
+ "createdOn",
8598
+ "createdTo",
8599
+ "limit",
8600
+ "offset",
8601
+ "orderBy"
8602
+ ],
8276
8603
  edgeCache: true,
8277
8604
  responseSchema: PassthroughDataSchema10,
8278
8605
  responseType: "passthrough"
@@ -8313,6 +8640,28 @@ var endpoints10 = [
8313
8640
  responseSchema: PassthroughDataSchema10,
8314
8641
  responseType: "passthrough"
8315
8642
  },
8643
+ {
8644
+ method: "GET",
8645
+ path: "/customer/{customerId}/sales-usage",
8646
+ chain: "customer.salesUsage",
8647
+ action: "list",
8648
+ aliases: [],
8649
+ pathParams: ["customerId"],
8650
+ queryParams: [
8651
+ "invoicedFrom",
8652
+ "invoicedTo",
8653
+ "limit",
8654
+ "offset",
8655
+ "orderBy",
8656
+ "q",
8657
+ "shipToId",
8658
+ "supplierId",
8659
+ "totalBy"
8660
+ ],
8661
+ edgeCache: true,
8662
+ responseSchema: CustomerSalesUsageDataSchema,
8663
+ responseType: "object"
8664
+ },
8316
8665
  {
8317
8666
  method: "GET",
8318
8667
  path: "/customer/{customerId}/ship-to",
@@ -8337,6 +8686,18 @@ var endpoints10 = [
8337
8686
  responseSchema: PassthroughDataSchema10,
8338
8687
  responseType: "passthrough"
8339
8688
  },
8689
+ {
8690
+ method: "GET",
8691
+ path: "/customer/{customerId}/ship-to/{shipToId}/freight-codes",
8692
+ chain: "customer.shipTo.freightCodes",
8693
+ action: "list",
8694
+ aliases: [],
8695
+ pathParams: ["customerId", "shipToId"],
8696
+ queryParams: [],
8697
+ edgeCache: true,
8698
+ responseSchema: PassthroughDataSchema10,
8699
+ responseType: "passthrough"
8700
+ },
8340
8701
  {
8341
8702
  method: "GET",
8342
8703
  path: "/customer/{customerId}/tags",
@@ -8459,8 +8820,8 @@ function createHealthCheckDataResource10(healthCheck) {
8459
8820
  var CustomersClient = class extends BaseServiceClient {
8460
8821
  constructor(http, baseUrl = "https://customers.augur-api.com") {
8461
8822
  super("customers", http, baseUrl);
8462
- const boundExecuteRequest = (config, params, pathParams) => {
8463
- return this.executeRequest(config, params, pathParams);
8823
+ const boundExecuteRequest = (config, params, pathParams, query) => {
8824
+ return this.executeRequest(config, params, pathParams, query);
8464
8825
  };
8465
8826
  const proxy = createServiceProxy(
8466
8827
  "customers",
@@ -8823,12 +9184,29 @@ var OrdersClient = class extends BaseServiceClient {
8823
9184
  var v19 = __toESM(require("valibot"));
8824
9185
  var InvMastExtListParamsSchema = v19.looseObject({
8825
9186
  ...EdgeCacheParamsSchema.entries,
8826
- inv_mast_uid: v19.optional(v19.pipe(v19.unknown(), v19.transform(Number))),
9187
+ invMastUid: v19.optional(v19.pipe(v19.unknown(), v19.transform(Number))),
8827
9188
  limit: v19.optional(v19.pipe(v19.unknown(), v19.transform(Number))),
8828
9189
  offset: v19.optional(v19.pipe(v19.unknown(), v19.transform(Number))),
8829
- order_by: v19.optional(v19.string()),
9190
+ orderBy: v19.optional(v19.string()),
8830
9191
  q: v19.optional(v19.string()),
8831
- status_cd: v19.optional(v19.pipe(v19.unknown(), v19.transform(Number)))
9192
+ statusCd: v19.optional(v19.pipe(v19.unknown(), v19.transform(Number)))
9193
+ });
9194
+ var InvMastFilesListParamsSchema = v19.looseObject({
9195
+ ...EdgeCacheParamsSchema.entries,
9196
+ invMastUid: v19.optional(v19.pipe(v19.unknown(), v19.transform(Number))),
9197
+ limit: v19.optional(v19.pipe(v19.unknown(), v19.transform(Number))),
9198
+ offset: v19.optional(v19.pipe(v19.unknown(), v19.transform(Number))),
9199
+ orderBy: v19.optional(v19.string()),
9200
+ statusCd: v19.optional(v19.pipe(v19.unknown(), v19.transform(Number)))
9201
+ });
9202
+ var InvMastTextListParamsSchema = v19.looseObject({
9203
+ ...EdgeCacheParamsSchema.entries,
9204
+ invMastUid: v19.optional(v19.pipe(v19.unknown(), v19.transform(Number))),
9205
+ limit: v19.optional(v19.pipe(v19.unknown(), v19.transform(Number))),
9206
+ offset: v19.optional(v19.pipe(v19.unknown(), v19.transform(Number))),
9207
+ orderBy: v19.optional(v19.string()),
9208
+ statusCd: v19.optional(v19.pipe(v19.unknown(), v19.transform(Number))),
9209
+ webDisplayTypeUid: v19.optional(v19.pipe(v19.unknown(), v19.transform(Number)))
8832
9210
  });
8833
9211
  var ItemsSuggestDisplayDescListParamsSchema = v19.looseObject({
8834
9212
  ...EdgeCacheParamsSchema.entries,
@@ -8844,9 +9222,58 @@ var PodcastsListParamsSchema = v19.looseObject({
8844
9222
  ...EdgeCacheParamsSchema.entries,
8845
9223
  limit: v19.optional(v19.pipe(v19.unknown(), v19.transform(Number))),
8846
9224
  offset: v19.optional(v19.pipe(v19.unknown(), v19.transform(Number))),
8847
- order_by: v19.optional(v19.string()),
9225
+ orderBy: v19.optional(v19.string()),
8848
9226
  q: v19.optional(v19.string()),
8849
- status_cd: v19.optional(v19.pipe(v19.unknown(), v19.transform(Number)))
9227
+ statusCd: v19.optional(v19.pipe(v19.unknown(), v19.transform(Number)))
9228
+ });
9229
+ var InvMastExtDataSchema = v19.looseObject({
9230
+ invMastExtUid: v19.optional(v19.number()),
9231
+ invMastUid: v19.optional(v19.number()),
9232
+ dateCreated: v19.optional(v19.string()),
9233
+ dateLastModified: v19.optional(v19.string()),
9234
+ updateCd: v19.optional(v19.number()),
9235
+ statusCd: v19.optional(v19.number()),
9236
+ processCd: v19.optional(v19.number()),
9237
+ upcOrEan: v19.optional(v19.nullable(v19.string())),
9238
+ upcOrEanId: v19.optional(v19.nullable(v19.string())),
9239
+ upcOrEanPrefix: v19.optional(v19.nullable(v19.string())),
9240
+ upcOrEanItem: v19.optional(v19.nullable(v19.string())),
9241
+ attributeGroupUid: v19.optional(v19.nullable(v19.number())),
9242
+ brandName: v19.optional(v19.nullable(v19.string())),
9243
+ manufacturerName: v19.optional(v19.nullable(v19.string())),
9244
+ partNumber: v19.optional(v19.nullable(v19.string())),
9245
+ metaTitle: v19.optional(v19.nullable(v19.string())),
9246
+ metaDescription: v19.optional(v19.nullable(v19.string())),
9247
+ metaKeywords: v19.optional(v19.nullable(v19.string()))
9248
+ });
9249
+ var InvMastFilesDataSchema = v19.looseObject({
9250
+ invMastFilesUid: v19.optional(v19.number()),
9251
+ invMastUid: v19.optional(v19.number()),
9252
+ fileName: v19.optional(v19.string()),
9253
+ filePath: v19.optional(v19.string()),
9254
+ linkArea: v19.optional(v19.number()),
9255
+ rowStatusFlag: v19.optional(v19.number()),
9256
+ sequenceNo: v19.optional(v19.number()),
9257
+ dateCreated: v19.optional(v19.string()),
9258
+ dateLastModified: v19.optional(v19.string()),
9259
+ updateCd: v19.optional(v19.number()),
9260
+ statusCd: v19.optional(v19.number()),
9261
+ processCd: v19.optional(v19.number()),
9262
+ fileDesc: v19.optional(v19.string())
9263
+ });
9264
+ var InvMastTextDataSchema = v19.looseObject({
9265
+ invMastTextUid: v19.optional(v19.number()),
9266
+ invMastUid: v19.optional(v19.number()),
9267
+ sequenceNo: v19.optional(v19.number()),
9268
+ textValue: v19.optional(v19.string()),
9269
+ displayOnWebFlag: v19.optional(v19.string()),
9270
+ webDisplayTypeUid: v19.optional(v19.number()),
9271
+ textTypeCd: v19.optional(v19.number()),
9272
+ dateCreated: v19.optional(v19.string()),
9273
+ dateLastModified: v19.optional(v19.string()),
9274
+ updateCd: v19.optional(v19.number()),
9275
+ statusCd: v19.optional(v19.number()),
9276
+ processCd: v19.optional(v19.number())
8850
9277
  });
8851
9278
  var PodcastsDataSchema = v19.looseObject({
8852
9279
  podcastsUid: v19.optional(v19.number()),
@@ -8870,10 +9297,10 @@ var endpoints12 = [
8870
9297
  action: "list",
8871
9298
  aliases: [],
8872
9299
  pathParams: [],
8873
- queryParams: ["inv_mast_uid", "limit", "offset", "order_by", "q", "status_cd"],
9300
+ queryParams: ["invMastUid", "limit", "offset", "orderBy", "q", "statusCd"],
8874
9301
  edgeCache: true,
8875
- responseSchema: PassthroughDataSchema12,
8876
- responseType: "passthrough"
9302
+ responseSchema: InvMastExtDataSchema,
9303
+ responseType: "array"
8877
9304
  },
8878
9305
  {
8879
9306
  method: "POST",
@@ -8884,8 +9311,8 @@ var endpoints12 = [
8884
9311
  pathParams: [],
8885
9312
  queryParams: [],
8886
9313
  edgeCache: false,
8887
- responseSchema: PassthroughDataSchema12,
8888
- responseType: "passthrough"
9314
+ responseSchema: InvMastExtDataSchema,
9315
+ responseType: "object"
8889
9316
  },
8890
9317
  {
8891
9318
  method: "GET",
@@ -8896,8 +9323,8 @@ var endpoints12 = [
8896
9323
  pathParams: ["invMastExtUid"],
8897
9324
  queryParams: [],
8898
9325
  edgeCache: true,
8899
- responseSchema: PassthroughDataSchema12,
8900
- responseType: "passthrough"
9326
+ responseSchema: InvMastExtDataSchema,
9327
+ responseType: "object"
8901
9328
  },
8902
9329
  {
8903
9330
  method: "PUT",
@@ -8908,8 +9335,8 @@ var endpoints12 = [
8908
9335
  pathParams: ["invMastExtUid"],
8909
9336
  queryParams: [],
8910
9337
  edgeCache: false,
8911
- responseSchema: PassthroughDataSchema12,
8912
- responseType: "passthrough"
9338
+ responseSchema: InvMastExtDataSchema,
9339
+ responseType: "object"
8913
9340
  },
8914
9341
  {
8915
9342
  method: "DELETE",
@@ -8923,6 +9350,126 @@ var endpoints12 = [
8923
9350
  responseSchema: PassthroughDataSchema12,
8924
9351
  responseType: "passthrough"
8925
9352
  },
9353
+ {
9354
+ method: "GET",
9355
+ path: "/inv-mast-files",
9356
+ chain: "invMastFiles",
9357
+ action: "list",
9358
+ aliases: [],
9359
+ pathParams: [],
9360
+ queryParams: ["invMastUid", "limit", "offset", "orderBy", "statusCd"],
9361
+ edgeCache: true,
9362
+ responseSchema: InvMastFilesDataSchema,
9363
+ responseType: "array"
9364
+ },
9365
+ {
9366
+ method: "POST",
9367
+ path: "/inv-mast-files",
9368
+ chain: "invMastFiles",
9369
+ action: "create",
9370
+ aliases: [],
9371
+ pathParams: [],
9372
+ queryParams: [],
9373
+ edgeCache: false,
9374
+ responseSchema: InvMastFilesDataSchema,
9375
+ responseType: "object"
9376
+ },
9377
+ {
9378
+ method: "GET",
9379
+ path: "/inv-mast-files/{invMastFilesUid}",
9380
+ chain: "invMastFiles",
9381
+ action: "get",
9382
+ aliases: [],
9383
+ pathParams: ["invMastFilesUid"],
9384
+ queryParams: [],
9385
+ edgeCache: true,
9386
+ responseSchema: InvMastFilesDataSchema,
9387
+ responseType: "object"
9388
+ },
9389
+ {
9390
+ method: "PUT",
9391
+ path: "/inv-mast-files/{invMastFilesUid}",
9392
+ chain: "invMastFiles",
9393
+ action: "update",
9394
+ aliases: [],
9395
+ pathParams: ["invMastFilesUid"],
9396
+ queryParams: [],
9397
+ edgeCache: false,
9398
+ responseSchema: InvMastFilesDataSchema,
9399
+ responseType: "object"
9400
+ },
9401
+ {
9402
+ method: "DELETE",
9403
+ path: "/inv-mast-files/{invMastFilesUid}",
9404
+ chain: "invMastFiles",
9405
+ action: "delete",
9406
+ aliases: [],
9407
+ pathParams: ["invMastFilesUid"],
9408
+ queryParams: [],
9409
+ edgeCache: false,
9410
+ responseSchema: PassthroughDataSchema12,
9411
+ responseType: "passthrough"
9412
+ },
9413
+ {
9414
+ method: "GET",
9415
+ path: "/inv-mast-text",
9416
+ chain: "invMastText",
9417
+ action: "list",
9418
+ aliases: [],
9419
+ pathParams: [],
9420
+ queryParams: ["invMastUid", "limit", "offset", "orderBy", "statusCd", "webDisplayTypeUid"],
9421
+ edgeCache: true,
9422
+ responseSchema: InvMastTextDataSchema,
9423
+ responseType: "array"
9424
+ },
9425
+ {
9426
+ method: "POST",
9427
+ path: "/inv-mast-text",
9428
+ chain: "invMastText",
9429
+ action: "create",
9430
+ aliases: [],
9431
+ pathParams: [],
9432
+ queryParams: [],
9433
+ edgeCache: false,
9434
+ responseSchema: InvMastTextDataSchema,
9435
+ responseType: "object"
9436
+ },
9437
+ {
9438
+ method: "GET",
9439
+ path: "/inv-mast-text/{invMastTextUid}",
9440
+ chain: "invMastText",
9441
+ action: "get",
9442
+ aliases: [],
9443
+ pathParams: ["invMastTextUid"],
9444
+ queryParams: [],
9445
+ edgeCache: true,
9446
+ responseSchema: InvMastTextDataSchema,
9447
+ responseType: "object"
9448
+ },
9449
+ {
9450
+ method: "PUT",
9451
+ path: "/inv-mast-text/{invMastTextUid}",
9452
+ chain: "invMastText",
9453
+ action: "update",
9454
+ aliases: [],
9455
+ pathParams: ["invMastTextUid"],
9456
+ queryParams: [],
9457
+ edgeCache: false,
9458
+ responseSchema: InvMastTextDataSchema,
9459
+ responseType: "object"
9460
+ },
9461
+ {
9462
+ method: "DELETE",
9463
+ path: "/inv-mast-text/{invMastTextUid}",
9464
+ chain: "invMastText",
9465
+ action: "delete",
9466
+ aliases: [],
9467
+ pathParams: ["invMastTextUid"],
9468
+ queryParams: [],
9469
+ edgeCache: false,
9470
+ responseSchema: PassthroughDataSchema12,
9471
+ responseType: "passthrough"
9472
+ },
8926
9473
  {
8927
9474
  method: "GET",
8928
9475
  path: "/items/{invMastUid}/suggest-display-desc",
@@ -8954,7 +9501,7 @@ var endpoints12 = [
8954
9501
  action: "list",
8955
9502
  aliases: [],
8956
9503
  pathParams: [],
8957
- queryParams: ["limit", "offset", "order_by", "q", "status_cd"],
9504
+ queryParams: ["limit", "offset", "orderBy", "q", "statusCd"],
8958
9505
  edgeCache: true,
8959
9506
  responseSchema: PodcastsDataSchema,
8960
9507
  responseType: "array"
@@ -9054,20 +9601,27 @@ function createHealthCheckDataResource12(healthCheck) {
9054
9601
  var P21PimClient = class extends BaseServiceClient {
9055
9602
  constructor(http, baseUrl = "https://p21-pim.augur-api.com") {
9056
9603
  super("p21-pim", http, baseUrl);
9057
- const boundExecuteRequest = (config, params, pathParams) => {
9058
- return this.executeRequest(config, params, pathParams);
9604
+ const boundExecuteRequest = (config, params, pathParams, query) => {
9605
+ return this.executeRequest(config, params, pathParams, query);
9059
9606
  };
9060
9607
  const proxy = createServiceProxy("p21-pim", boundExecuteRequest, endpoints12);
9061
9608
  const dataProxy = createDataProxy(proxy);
9062
9609
  this.invMastExt = proxy.invMastExt;
9610
+ this.invMastFiles = proxy.invMastFiles;
9611
+ this.invMastText = proxy.invMastText;
9063
9612
  this.items = proxy.items;
9064
9613
  this.podcasts = proxy.podcasts;
9065
9614
  this.invMastExtData = dataProxy.invMastExt;
9615
+ this.invMastFilesData = dataProxy.invMastFiles;
9616
+ this.invMastTextData = dataProxy.invMastText;
9066
9617
  this.itemsData = dataProxy.items;
9067
9618
  this.podcastsData = dataProxy.podcasts;
9068
9619
  this.healthCheck = createHealthCheckResource12(boundExecuteRequest);
9069
9620
  this.healthCheckData = createHealthCheckDataResource12(this.healthCheck);
9070
9621
  }
9622
+ getServiceDescription() {
9623
+ return "Product information management for rich content, media assets, and extended item descriptions";
9624
+ }
9071
9625
  };
9072
9626
 
9073
9627
  // src/services/payments/generated/schemas.ts
@@ -9087,6 +9641,62 @@ var MonerisPreAuthCompleteListParamsSchema = v20.looseObject({
9087
9641
  testMode: v20.optional(v20.boolean()),
9088
9642
  txnNumber: v20.string()
9089
9643
  });
9644
+ var PaypalAuthorizationCaptureCreateParamsSchema = v20.looseObject({
9645
+ amount: v20.optional(v20.pipe(v20.unknown(), v20.transform(Number))),
9646
+ authorizationId: v20.string(),
9647
+ finalCapture: v20.optional(v20.boolean()),
9648
+ invoiceId: v20.optional(v20.string()),
9649
+ testMode: v20.optional(v20.boolean())
9650
+ });
9651
+ var PaypalAuthorizationVoidCreateParamsSchema = v20.looseObject({
9652
+ authorizationId: v20.string(),
9653
+ testMode: v20.optional(v20.boolean())
9654
+ });
9655
+ var PaypalCaptureRefundCreateParamsSchema = v20.looseObject({
9656
+ amount: v20.optional(v20.pipe(v20.unknown(), v20.transform(Number))),
9657
+ captureId: v20.string(),
9658
+ invoiceId: v20.optional(v20.string()),
9659
+ noteToPayer: v20.optional(v20.string()),
9660
+ testMode: v20.optional(v20.boolean())
9661
+ });
9662
+ var PaypalOrderCreateParamsSchema = v20.looseObject({
9663
+ amount: v20.pipe(v20.unknown(), v20.transform(Number)),
9664
+ cancelUrl: v20.optional(v20.string()),
9665
+ currencyCode: v20.optional(v20.string()),
9666
+ intent: v20.string(),
9667
+ invoiceId: v20.optional(v20.string()),
9668
+ returnUrl: v20.optional(v20.string()),
9669
+ testMode: v20.optional(v20.boolean())
9670
+ });
9671
+ var PaypalOrderReturnListParamsSchema = v20.looseObject({
9672
+ ...EdgeCacheParamsSchema.entries,
9673
+ payerId: v20.optional(v20.string()),
9674
+ siteId: v20.string(),
9675
+ testMode: v20.optional(v20.boolean()),
9676
+ token: v20.string()
9677
+ });
9678
+ var PaypalOrderAuthorizeCreateParamsSchema = v20.looseObject({
9679
+ orderId: v20.string(),
9680
+ testMode: v20.optional(v20.boolean())
9681
+ });
9682
+ var PaypalOrderCaptureCreateParamsSchema = v20.looseObject({
9683
+ orderId: v20.string(),
9684
+ testMode: v20.optional(v20.boolean())
9685
+ });
9686
+ var PaypalOrderDetailsListParamsSchema = v20.looseObject({
9687
+ ...EdgeCacheParamsSchema.entries,
9688
+ orderId: v20.string(),
9689
+ testMode: v20.optional(v20.boolean())
9690
+ });
9691
+ var PaypalRefundListParamsSchema = v20.looseObject({
9692
+ ...EdgeCacheParamsSchema.entries,
9693
+ refundId: v20.string(),
9694
+ testMode: v20.optional(v20.boolean())
9695
+ });
9696
+ var PaypalWebhookCreateParamsSchema = v20.looseObject({
9697
+ siteId: v20.string(),
9698
+ testMode: v20.optional(v20.boolean())
9699
+ });
9090
9700
  var PaytraceAuthorizationCreateParamsSchema = v20.looseObject({
9091
9701
  amount: v20.pipe(v20.unknown(), v20.transform(Number)),
9092
9702
  billingAddress: v20.optional(v20.string()),
@@ -9148,6 +9758,10 @@ var UnifiedSurchargeListParamsSchema = v20.looseObject({
9148
9758
  paymentAccountId: v20.string(),
9149
9759
  toState: v20.string()
9150
9760
  });
9761
+ var UnifiedTransactionResponseListParamsSchema = v20.looseObject({
9762
+ ...EdgeCacheParamsSchema.entries,
9763
+ siteId: v20.string()
9764
+ });
9151
9765
  var UnifiedTransactionSetupListParamsSchema = v20.looseObject({
9152
9766
  ...EdgeCacheParamsSchema.entries,
9153
9767
  customerId: v20.string(),
@@ -9165,40 +9779,168 @@ var PassthroughDataSchema13 = v20.record(v20.string(), v20.unknown());
9165
9779
  var endpoints13 = [
9166
9780
  {
9167
9781
  method: "POST",
9168
- path: "/element/payment",
9169
- chain: "element.payment",
9782
+ path: "/element/payment",
9783
+ chain: "element.payment",
9784
+ action: "create",
9785
+ aliases: [],
9786
+ pathParams: [],
9787
+ queryParams: [],
9788
+ edgeCache: false,
9789
+ responseSchema: PassthroughDataSchema13,
9790
+ responseType: "passthrough"
9791
+ },
9792
+ {
9793
+ method: "GET",
9794
+ path: "/moneris/pre-auth",
9795
+ chain: "moneris.preAuth",
9796
+ action: "list",
9797
+ aliases: [],
9798
+ pathParams: [],
9799
+ queryParams: ["amount", "ccNumber", "expDate", "orderId", "testMode"],
9800
+ edgeCache: true,
9801
+ responseSchema: PassthroughDataSchema13,
9802
+ responseType: "passthrough"
9803
+ },
9804
+ {
9805
+ method: "GET",
9806
+ path: "/moneris/pre-auth-complete",
9807
+ chain: "moneris.preAuthComplete",
9808
+ action: "list",
9809
+ aliases: [],
9810
+ pathParams: [],
9811
+ queryParams: ["amount", "orderId", "testMode", "txnNumber"],
9812
+ edgeCache: true,
9813
+ responseSchema: PassthroughDataSchema13,
9814
+ responseType: "passthrough"
9815
+ },
9816
+ {
9817
+ method: "POST",
9818
+ path: "/paypal/authorization/capture",
9819
+ chain: "paypal.authorization.capture",
9820
+ action: "create",
9821
+ aliases: [],
9822
+ pathParams: [],
9823
+ queryParams: ["amount", "authorizationId", "finalCapture", "invoiceId", "testMode"],
9824
+ edgeCache: false,
9825
+ responseSchema: PassthroughDataSchema13,
9826
+ responseType: "passthrough"
9827
+ },
9828
+ {
9829
+ method: "POST",
9830
+ path: "/paypal/authorization/void",
9831
+ chain: "paypal.authorization.void",
9832
+ action: "create",
9833
+ aliases: [],
9834
+ pathParams: [],
9835
+ queryParams: ["authorizationId", "testMode"],
9836
+ edgeCache: false,
9837
+ responseSchema: PassthroughDataSchema13,
9838
+ responseType: "passthrough"
9839
+ },
9840
+ {
9841
+ method: "POST",
9842
+ path: "/paypal/capture/refund",
9843
+ chain: "paypal.capture.refund",
9844
+ action: "create",
9845
+ aliases: [],
9846
+ pathParams: [],
9847
+ queryParams: ["amount", "captureId", "invoiceId", "noteToPayer", "testMode"],
9848
+ edgeCache: false,
9849
+ responseSchema: PassthroughDataSchema13,
9850
+ responseType: "passthrough"
9851
+ },
9852
+ {
9853
+ method: "POST",
9854
+ path: "/paypal/order",
9855
+ chain: "paypal.order",
9856
+ action: "create",
9857
+ aliases: [],
9858
+ pathParams: [],
9859
+ queryParams: [
9860
+ "amount",
9861
+ "cancelUrl",
9862
+ "currencyCode",
9863
+ "intent",
9864
+ "invoiceId",
9865
+ "returnUrl",
9866
+ "testMode"
9867
+ ],
9868
+ edgeCache: false,
9869
+ responseSchema: PassthroughDataSchema13,
9870
+ responseType: "passthrough"
9871
+ },
9872
+ {
9873
+ method: "GET",
9874
+ path: "/paypal/order-return",
9875
+ chain: "paypal.orderReturn",
9876
+ action: "list",
9877
+ aliases: [],
9878
+ pathParams: [],
9879
+ queryParams: ["payerId", "siteId", "testMode", "token"],
9880
+ edgeCache: true,
9881
+ responseSchema: PassthroughDataSchema13,
9882
+ responseType: "passthrough"
9883
+ },
9884
+ {
9885
+ method: "POST",
9886
+ path: "/paypal/order/authorize",
9887
+ chain: "paypal.order.authorize",
9170
9888
  action: "create",
9171
9889
  aliases: [],
9172
9890
  pathParams: [],
9173
- queryParams: [],
9891
+ queryParams: ["orderId", "testMode"],
9892
+ edgeCache: false,
9893
+ responseSchema: PassthroughDataSchema13,
9894
+ responseType: "passthrough"
9895
+ },
9896
+ {
9897
+ method: "POST",
9898
+ path: "/paypal/order/capture",
9899
+ chain: "paypal.order.capture",
9900
+ action: "create",
9901
+ aliases: [],
9902
+ pathParams: [],
9903
+ queryParams: ["orderId", "testMode"],
9174
9904
  edgeCache: false,
9175
9905
  responseSchema: PassthroughDataSchema13,
9176
9906
  responseType: "passthrough"
9177
9907
  },
9178
9908
  {
9179
9909
  method: "GET",
9180
- path: "/moneris/pre-auth",
9181
- chain: "moneris.preAuth",
9910
+ path: "/paypal/order/details",
9911
+ chain: "paypal.order.details",
9182
9912
  action: "list",
9183
9913
  aliases: [],
9184
9914
  pathParams: [],
9185
- queryParams: ["amount", "ccNumber", "expDate", "orderId", "testMode"],
9915
+ queryParams: ["orderId", "testMode"],
9186
9916
  edgeCache: true,
9187
9917
  responseSchema: PassthroughDataSchema13,
9188
9918
  responseType: "passthrough"
9189
9919
  },
9190
9920
  {
9191
9921
  method: "GET",
9192
- path: "/moneris/pre-auth-complete",
9193
- chain: "moneris.preAuthComplete",
9922
+ path: "/paypal/refund",
9923
+ chain: "paypal.refund",
9194
9924
  action: "list",
9195
9925
  aliases: [],
9196
9926
  pathParams: [],
9197
- queryParams: ["amount", "orderId", "testMode", "txnNumber"],
9927
+ queryParams: ["refundId", "testMode"],
9198
9928
  edgeCache: true,
9199
9929
  responseSchema: PassthroughDataSchema13,
9200
9930
  responseType: "passthrough"
9201
9931
  },
9932
+ {
9933
+ method: "POST",
9934
+ path: "/paypal/webhook",
9935
+ chain: "paypal.webhook",
9936
+ action: "create",
9937
+ aliases: [],
9938
+ pathParams: [],
9939
+ queryParams: ["siteId", "testMode"],
9940
+ edgeCache: false,
9941
+ responseSchema: PassthroughDataSchema13,
9942
+ responseType: "passthrough"
9943
+ },
9202
9944
  {
9203
9945
  method: "POST",
9204
9946
  path: "/paytrace/authorization",
@@ -9315,6 +10057,18 @@ var endpoints13 = [
9315
10057
  responseSchema: PassthroughDataSchema13,
9316
10058
  responseType: "passthrough"
9317
10059
  },
10060
+ {
10061
+ method: "GET",
10062
+ path: "/unified/transaction-response",
10063
+ chain: "unified.transactionResponse",
10064
+ action: "list",
10065
+ aliases: [],
10066
+ pathParams: [],
10067
+ queryParams: ["siteId"],
10068
+ edgeCache: true,
10069
+ responseSchema: PassthroughDataSchema13,
10070
+ responseType: "passthrough"
10071
+ },
9318
10072
  {
9319
10073
  method: "GET",
9320
10074
  path: "/unified/transaction-setup",
@@ -9408,8 +10162,8 @@ function createPingDataResource7(ping) {
9408
10162
  var PaymentsClient = class extends BaseServiceClient {
9409
10163
  constructor(http, baseUrl = "https://payments.augur-api.com") {
9410
10164
  super("payments", http, baseUrl);
9411
- const boundExecuteRequest = (config, params, pathParams) => {
9412
- return this.executeRequest(config, params, pathParams);
10165
+ const boundExecuteRequest = (config, params, pathParams, query) => {
10166
+ return this.executeRequest(config, params, pathParams, query);
9413
10167
  };
9414
10168
  const proxy = createServiceProxy(
9415
10169
  "payments",
@@ -9419,10 +10173,12 @@ var PaymentsClient = class extends BaseServiceClient {
9419
10173
  const dataProxy = createDataProxy(proxy);
9420
10174
  this.element = proxy.element;
9421
10175
  this.moneris = proxy.moneris;
10176
+ this.paypal = proxy.paypal;
9422
10177
  this.paytrace = proxy.paytrace;
9423
10178
  this.unified = proxy.unified;
9424
10179
  this.elementData = dataProxy.element;
9425
10180
  this.monerisData = dataProxy.moneris;
10181
+ this.paypalData = dataProxy.paypal;
9426
10182
  this.paytraceData = dataProxy.paytrace;
9427
10183
  this.unifiedData = dataProxy.unified;
9428
10184
  this.healthCheck = createHealthCheckResource13(boundExecuteRequest);
@@ -9431,7 +10187,7 @@ var PaymentsClient = class extends BaseServiceClient {
9431
10187
  this.pingData = createPingDataResource7(this.ping);
9432
10188
  }
9433
10189
  getServiceDescription() {
9434
- return "Unified payment processing gateway supporting Moneris, PayTrace, and Element card transactions";
10190
+ return "Unified payment processing gateway supporting Moneris, PayTrace, and Element card transactions and PayPal orders";
9435
10191
  }
9436
10192
  };
9437
10193
 
@@ -9462,6 +10218,14 @@ var MicroservicesDataSchema = v21.looseObject({
9462
10218
  dateCreated: v21.optional(v21.string()),
9463
10219
  dateLastModified: v21.optional(v21.string())
9464
10220
  });
10221
+ var OauthRefreshDataSchema = v21.looseObject({
10222
+ grantId: v21.optional(v21.string()),
10223
+ usersId: v21.optional(v21.number()),
10224
+ accessToken: v21.optional(v21.string()),
10225
+ refreshToken: v21.optional(v21.string()),
10226
+ accessTokenExpiresAt: v21.optional(v21.string()),
10227
+ refreshTokenExpiresAt: v21.optional(v21.string())
10228
+ });
9465
10229
  var RubricsDataSchema = v21.looseObject({
9466
10230
  rubricsUid: v21.optional(v21.number()),
9467
10231
  title: v21.optional(v21.nullable(v21.string())),
@@ -9473,6 +10237,20 @@ var RubricsDataSchema = v21.looseObject({
9473
10237
  dateCreated: v21.optional(v21.string()),
9474
10238
  dateLastModified: v21.optional(v21.string())
9475
10239
  });
10240
+ var SitesVerifyUserDataSchema = v21.looseObject({
10241
+ grantId: v21.optional(v21.string()),
10242
+ usersId: v21.optional(v21.number()),
10243
+ username: v21.optional(v21.string()),
10244
+ email: v21.optional(v21.string()),
10245
+ name: v21.optional(v21.string()),
10246
+ isAdmin: v21.optional(v21.boolean()),
10247
+ homeSiteId: v21.optional(v21.string()),
10248
+ sites: v21.optional(v21.string()),
10249
+ accessToken: v21.optional(v21.string()),
10250
+ refreshToken: v21.optional(v21.string()),
10251
+ accessTokenExpiresAt: v21.optional(v21.string()),
10252
+ refreshTokenExpiresAt: v21.optional(v21.string())
10253
+ });
9476
10254
  var WorkflowsDataSchema = v21.looseObject({
9477
10255
  workflowsUid: v21.optional(v21.number()),
9478
10256
  workflowsId: v21.optional(v21.string()),
@@ -9586,6 +10364,30 @@ var endpoints14 = [
9586
10364
  responseSchema: PassthroughDataSchema14,
9587
10365
  responseType: "passthrough"
9588
10366
  },
10367
+ {
10368
+ method: "DELETE",
10369
+ path: "/oauth/grants/{grantId}",
10370
+ chain: "oauth.grants",
10371
+ action: "delete",
10372
+ aliases: [],
10373
+ pathParams: ["grantId"],
10374
+ queryParams: [],
10375
+ edgeCache: false,
10376
+ responseSchema: PassthroughDataSchema14,
10377
+ responseType: "passthrough"
10378
+ },
10379
+ {
10380
+ method: "POST",
10381
+ path: "/oauth/refresh",
10382
+ chain: "oauth.refresh",
10383
+ action: "create",
10384
+ aliases: [],
10385
+ pathParams: [],
10386
+ queryParams: [],
10387
+ edgeCache: false,
10388
+ responseSchema: OauthRefreshDataSchema,
10389
+ responseType: "object"
10390
+ },
9589
10391
  {
9590
10392
  method: "GET",
9591
10393
  path: "/ollama/tags",
@@ -9670,6 +10472,18 @@ var endpoints14 = [
9670
10472
  responseSchema: PassthroughDataSchema14,
9671
10473
  responseType: "passthrough"
9672
10474
  },
10475
+ {
10476
+ method: "POST",
10477
+ path: "/sites/verify-user",
10478
+ chain: "sites.verifyUser",
10479
+ action: "create",
10480
+ aliases: [],
10481
+ pathParams: [],
10482
+ queryParams: [],
10483
+ edgeCache: false,
10484
+ responseSchema: SitesVerifyUserDataSchema,
10485
+ responseType: "object"
10486
+ },
9673
10487
  {
9674
10488
  method: "GET",
9675
10489
  path: "/workflows",
@@ -9784,8 +10598,8 @@ function createHealthCheckDataResource14(healthCheck) {
9784
10598
  var AgrInfoClient = class extends BaseServiceClient {
9785
10599
  constructor(http, baseUrl = "https://agr-info.augur-api.com") {
9786
10600
  super("agr-info", http, baseUrl);
9787
- const boundExecuteRequest = (config, params, pathParams) => {
9788
- return this.executeRequest(config, params, pathParams);
10601
+ const boundExecuteRequest = (config, params, pathParams, query) => {
10602
+ return this.executeRequest(config, params, pathParams, query);
9789
10603
  };
9790
10604
  const proxy = createServiceProxy("agr-info", boundExecuteRequest, endpoints14);
9791
10605
  const dataProxy = createDataProxy(proxy);
@@ -9793,6 +10607,7 @@ var AgrInfoClient = class extends BaseServiceClient {
9793
10607
  this.context = proxy.context;
9794
10608
  this.joomla = proxy.joomla;
9795
10609
  this.microservices = proxy.microservices;
10610
+ this.oauth = proxy.oauth;
9796
10611
  this.ollama = proxy.ollama;
9797
10612
  this.rubrics = proxy.rubrics;
9798
10613
  this.sites = proxy.sites;
@@ -9801,6 +10616,7 @@ var AgrInfoClient = class extends BaseServiceClient {
9801
10616
  this.contextData = dataProxy.context;
9802
10617
  this.joomlaData = dataProxy.joomla;
9803
10618
  this.microservicesData = dataProxy.microservices;
10619
+ this.oauthData = dataProxy.oauth;
9804
10620
  this.ollamaData = dataProxy.ollama;
9805
10621
  this.rubricsData = dataProxy.rubrics;
9806
10622
  this.sitesData = dataProxy.sites;
@@ -9860,7 +10676,7 @@ var RolesBundlesListParamsSchema = v22.looseObject({
9860
10676
  orderBy: v22.optional(v22.string()),
9861
10677
  statusCd: v22.optional(v22.pipe(v22.unknown(), v22.transform(Number)))
9862
10678
  });
9863
- var UsersListParamsSchema = v22.looseObject({
10679
+ var UsersListParamsSchema2 = v22.looseObject({
9864
10680
  ...EdgeCacheParamsSchema.entries,
9865
10681
  email: v22.optional(v22.string()),
9866
10682
  limit: v22.optional(v22.pipe(v22.unknown(), v22.transform(Number))),
@@ -10448,8 +11264,8 @@ var endpoints15 = [
10448
11264
  var AgrIntClient = class extends BaseServiceClient {
10449
11265
  constructor(http, baseUrl = "https://agr-int.augur-api.com") {
10450
11266
  super("agr-int", http, baseUrl);
10451
- const boundExecuteRequest = (config, params, pathParams) => {
10452
- return this.executeRequest(config, params, pathParams);
11267
+ const boundExecuteRequest = (config, params, pathParams, query) => {
11268
+ return this.executeRequest(config, params, pathParams, query);
10453
11269
  };
10454
11270
  const proxy = createServiceProxy("agr-int", boundExecuteRequest, endpoints15);
10455
11271
  const dataProxy = createDataProxy(proxy);
@@ -10625,8 +11441,8 @@ function createPingDataResource8(ping) {
10625
11441
  var AgrWorkClient = class extends BaseServiceClient {
10626
11442
  constructor(http, baseUrl = "https://agr-work.augur-api.com") {
10627
11443
  super("agr-work", http, baseUrl);
10628
- const boundExecuteRequest = (config, params, pathParams) => {
10629
- return this.executeRequest(config, params, pathParams);
11444
+ const boundExecuteRequest = (config, params, pathParams, query) => {
11445
+ return this.executeRequest(config, params, pathParams, query);
10630
11446
  };
10631
11447
  this.healthCheck = createHealthCheckResource15(boundExecuteRequest);
10632
11448
  this.ping = createPingResource9(boundExecuteRequest);
@@ -10720,8 +11536,8 @@ function createHealthCheckDataResource16(healthCheck) {
10720
11536
  var AvalaraClient = class extends BaseServiceClient {
10721
11537
  constructor(http, baseUrl = "https://avalara.augur-api.com") {
10722
11538
  super("avalara", http, baseUrl);
10723
- const boundExecuteRequest = (config, params, pathParams) => {
10724
- return this.executeRequest(config, params, pathParams);
11539
+ const boundExecuteRequest = (config, params, pathParams, query) => {
11540
+ return this.executeRequest(config, params, pathParams, query);
10725
11541
  };
10726
11542
  const proxy = createServiceProxy("avalara", boundExecuteRequest, endpoints16);
10727
11543
  const dataProxy = createDataProxy(proxy);
@@ -10734,10 +11550,54 @@ var AvalaraClient = class extends BaseServiceClient {
10734
11550
 
10735
11551
  // src/services/brand-folder/generated/schemas.ts
10736
11552
  var v24 = __toESM(require("valibot"));
11553
+ var CategoriesListParamsSchema2 = v24.looseObject({
11554
+ ...EdgeCacheParamsSchema.entries,
11555
+ limit: v24.optional(v24.pipe(v24.unknown(), v24.transform(Number))),
11556
+ offset: v24.optional(v24.pipe(v24.unknown(), v24.transform(Number))),
11557
+ orderBy: v24.optional(v24.string()),
11558
+ q: v24.optional(v24.string())
11559
+ });
11560
+ var CategoriesDataSchema = v24.looseObject({
11561
+ itemCategoryUid: v24.optional(v24.number()),
11562
+ itemCategoryId: v24.optional(v24.string()),
11563
+ itemCategoryDesc: v24.optional(v24.string()),
11564
+ dateCreated: v24.optional(v24.string()),
11565
+ dateLastModified: v24.optional(v24.string()),
11566
+ updateCd: v24.optional(v24.number()),
11567
+ statusCd: v24.optional(v24.number()),
11568
+ processCd: v24.optional(v24.number()),
11569
+ rootCategoryId: v24.optional(v24.string()),
11570
+ labelsId: v24.optional(v24.nullable(v24.string())),
11571
+ imagesAssetsId: v24.optional(v24.nullable(v24.string())),
11572
+ roomScenesAssetsId: v24.optional(v24.nullable(v24.string())),
11573
+ brochuresAssetsId: v24.optional(v24.nullable(v24.string())),
11574
+ contractorsAssetsId: v24.optional(v24.nullable(v24.string())),
11575
+ dateLastProcessed: v24.optional(v24.string()),
11576
+ dateLastCheckImages: v24.optional(v24.string()),
11577
+ dateLastCheckRoomScene: v24.optional(v24.string()),
11578
+ itemCategoryDescPc: v24.optional(v24.nullable(v24.string())),
11579
+ dateLastUpload: v24.optional(v24.string()),
11580
+ leedAssetsId: v24.optional(v24.nullable(v24.string())),
11581
+ colorsList: v24.optional(v24.nullable(v24.string())),
11582
+ colorsCount: v24.optional(v24.number()),
11583
+ focusCd: v24.optional(v24.number())
11584
+ });
10737
11585
  var PassthroughDataSchema17 = v24.record(v24.string(), v24.unknown());
10738
11586
 
10739
11587
  // src/services/brand-folder/generated/endpoints.ts
10740
11588
  var endpoints17 = [
11589
+ {
11590
+ method: "GET",
11591
+ path: "/categories",
11592
+ chain: "categories",
11593
+ action: "list",
11594
+ aliases: [],
11595
+ pathParams: [],
11596
+ queryParams: ["limit", "offset", "orderBy", "q"],
11597
+ edgeCache: true,
11598
+ responseSchema: CategoriesDataSchema,
11599
+ responseType: "array"
11600
+ },
10741
11601
  {
10742
11602
  method: "POST",
10743
11603
  path: "/categories/focus",
@@ -10749,6 +11609,18 @@ var endpoints17 = [
10749
11609
  edgeCache: false,
10750
11610
  responseSchema: PassthroughDataSchema17,
10751
11611
  responseType: "passthrough"
11612
+ },
11613
+ {
11614
+ method: "GET",
11615
+ path: "/categories/{itemCategoryUid}",
11616
+ chain: "categories",
11617
+ action: "get",
11618
+ aliases: [],
11619
+ pathParams: ["itemCategoryUid"],
11620
+ queryParams: [],
11621
+ edgeCache: true,
11622
+ responseSchema: CategoriesDataSchema,
11623
+ responseType: "object"
10752
11624
  }
10753
11625
  ];
10754
11626
 
@@ -10817,8 +11689,8 @@ function createHealthCheckDataResource17(healthCheck) {
10817
11689
  var BrandFolderClient = class extends BaseServiceClient {
10818
11690
  constructor(http, baseUrl = "https://brand-folder.augur-api.com") {
10819
11691
  super("brand-folder", http, baseUrl);
10820
- const boundExecuteRequest = (config, params, pathParams) => {
10821
- return this.executeRequest(config, params, pathParams);
11692
+ const boundExecuteRequest = (config, params, pathParams, query) => {
11693
+ return this.executeRequest(config, params, pathParams, query);
10822
11694
  };
10823
11695
  const proxy = createServiceProxy(
10824
11696
  "brand-folder",
@@ -10949,8 +11821,8 @@ function createHealthCheckDataResource18(healthCheck) {
10949
11821
  var GregorovichClient = class extends BaseServiceClient {
10950
11822
  constructor(http, baseUrl = "https://gregorovich.augur-api.com") {
10951
11823
  super("gregorovich", http, baseUrl);
10952
- const boundExecuteRequest = (config, params, pathParams) => {
10953
- return this.executeRequest(config, params, pathParams);
11824
+ const boundExecuteRequest = (config, params, pathParams, query) => {
11825
+ return this.executeRequest(config, params, pathParams, query);
10954
11826
  };
10955
11827
  const proxy = createServiceProxy(
10956
11828
  "gregorovich",
@@ -10990,7 +11862,7 @@ var RtsBrandsListParamsSchema = v26.looseObject({
10990
11862
  ...EdgeCacheParamsSchema.entries,
10991
11863
  search: v26.optional(v26.string())
10992
11864
  });
10993
- var RtsBrandsBrandIdMachinesListParamsSchema = v26.looseObject({
11865
+ var RtsBrandsMachinesListParamsSchema = v26.looseObject({
10994
11866
  ...EdgeCacheParamsSchema.entries,
10995
11867
  search: v26.optional(v26.string())
10996
11868
  });
@@ -11003,6 +11875,19 @@ var RtsTracksListParamsSchema = v26.looseObject({
11003
11875
  search: v26.optional(v26.string()),
11004
11876
  trackClass: v26.optional(v26.string())
11005
11877
  });
11878
+ var ShippingMethodsListParamsSchema = v26.looseObject({
11879
+ ...EdgeCacheParamsSchema.entries,
11880
+ limit: v26.optional(v26.pipe(v26.unknown(), v26.transform(Number))),
11881
+ offset: v26.optional(v26.pipe(v26.unknown(), v26.transform(Number))),
11882
+ orderBy: v26.optional(v26.string()),
11883
+ shippingMethodsId: v26.optional(v26.pipe(v26.unknown(), v26.transform(Number))),
11884
+ shippingType: v26.optional(v26.string()),
11885
+ statusCd: v26.optional(v26.pipe(v26.unknown(), v26.transform(Number)))
11886
+ });
11887
+ var ShippingMethodsGetParamsSchema = v26.looseObject({
11888
+ ...EdgeCacheParamsSchema.entries,
11889
+ shippingMethodsId: v26.optional(v26.pipe(v26.unknown(), v26.transform(Number)))
11890
+ });
11006
11891
  var ShipviaRatesListParamsSchema = v26.looseObject({
11007
11892
  ...EdgeCacheParamsSchema.entries,
11008
11893
  carriers: v26.optional(v26.string()),
@@ -11066,6 +11951,7 @@ var SpeedshipFreightListParamsSchema = v26.looseObject({
11066
11951
  handlingCharge: v26.optional(v26.pipe(v26.unknown(), v26.transform(Number))),
11067
11952
  handlingChargeUnit: v26.optional(v26.string()),
11068
11953
  international: v26.optional(v26.boolean()),
11954
+ maxPalletWeight: v26.optional(v26.pipe(v26.unknown(), v26.transform(Number))),
11069
11955
  packageHeight: v26.optional(v26.pipe(v26.unknown(), v26.transform(Number))),
11070
11956
  packageLength: v26.pipe(v26.unknown(), v26.transform(Number)),
11071
11957
  packageWidth: v26.pipe(v26.unknown(), v26.transform(Number)),
@@ -11092,6 +11978,7 @@ var UPSRatesListParamsSchema = v26.looseObject({
11092
11978
  fromCountryCode: v26.optional(v26.string()),
11093
11979
  fromPostalCode: v26.string(),
11094
11980
  fromStateProvinceCode: v26.string(),
11981
+ maxPackageWeight: v26.optional(v26.pipe(v26.unknown(), v26.transform(Number))),
11095
11982
  toAddress1: v26.string(),
11096
11983
  toCity: v26.string(),
11097
11984
  toCountryCode: v26.optional(v26.string()),
@@ -11143,7 +12030,7 @@ var endpoints19 = [
11143
12030
  {
11144
12031
  method: "GET",
11145
12032
  path: "/rts/brands/{brandId}/machines",
11146
- chain: "rts.brands.brandId.machines",
12033
+ chain: "rts.brands.machines",
11147
12034
  action: "list",
11148
12035
  aliases: [],
11149
12036
  pathParams: ["brandId"],
@@ -11155,7 +12042,7 @@ var endpoints19 = [
11155
12042
  {
11156
12043
  method: "GET",
11157
12044
  path: "/rts/machines/{machineId}/tracks",
11158
- chain: "rts.machines.machineId.tracks",
12045
+ chain: "rts.machines.tracks",
11159
12046
  action: "list",
11160
12047
  aliases: [],
11161
12048
  pathParams: ["machineId"],
@@ -11179,7 +12066,7 @@ var endpoints19 = [
11179
12066
  {
11180
12067
  method: "GET",
11181
12068
  path: "/rts/track/{trackId}",
11182
- chain: "rts.track.trackId",
12069
+ chain: "rts.track",
11183
12070
  action: "list",
11184
12071
  aliases: [],
11185
12072
  pathParams: ["trackId"],
@@ -11200,6 +12087,54 @@ var endpoints19 = [
11200
12087
  responseSchema: PassthroughDataSchema19,
11201
12088
  responseType: "passthrough"
11202
12089
  },
12090
+ {
12091
+ method: "GET",
12092
+ path: "/shipping-methods",
12093
+ chain: "shippingMethods",
12094
+ action: "list",
12095
+ aliases: [],
12096
+ pathParams: [],
12097
+ queryParams: ["limit", "offset", "orderBy", "shippingMethodsId", "shippingType", "statusCd"],
12098
+ edgeCache: true,
12099
+ responseSchema: PassthroughDataSchema19,
12100
+ responseType: "passthrough"
12101
+ },
12102
+ {
12103
+ method: "GET",
12104
+ path: "/shipping-methods/{shippingMethodsUid}",
12105
+ chain: "shippingMethods",
12106
+ action: "get",
12107
+ aliases: [],
12108
+ pathParams: ["shippingMethodsUid"],
12109
+ queryParams: ["shippingMethodsId"],
12110
+ edgeCache: true,
12111
+ responseSchema: PassthroughDataSchema19,
12112
+ responseType: "passthrough"
12113
+ },
12114
+ {
12115
+ method: "PUT",
12116
+ path: "/shipping-methods/{shippingMethodsUid}",
12117
+ chain: "shippingMethods",
12118
+ action: "update",
12119
+ aliases: [],
12120
+ pathParams: ["shippingMethodsUid"],
12121
+ queryParams: [],
12122
+ edgeCache: false,
12123
+ responseSchema: PassthroughDataSchema19,
12124
+ responseType: "passthrough"
12125
+ },
12126
+ {
12127
+ method: "DELETE",
12128
+ path: "/shipping-methods/{shippingMethodsUid}",
12129
+ chain: "shippingMethods",
12130
+ action: "delete",
12131
+ aliases: [],
12132
+ pathParams: ["shippingMethodsUid"],
12133
+ queryParams: [],
12134
+ edgeCache: false,
12135
+ responseSchema: PassthroughDataSchema19,
12136
+ responseType: "passthrough"
12137
+ },
11203
12138
  {
11204
12139
  method: "GET",
11205
12140
  path: "/shipvia/rates",
@@ -11289,6 +12224,7 @@ var endpoints19 = [
11289
12224
  "handlingCharge",
11290
12225
  "handlingChargeUnit",
11291
12226
  "international",
12227
+ "maxPalletWeight",
11292
12228
  "packageHeight",
11293
12229
  "packageLength",
11294
12230
  "packageWidth",
@@ -11325,6 +12261,7 @@ var endpoints19 = [
11325
12261
  "fromCountryCode",
11326
12262
  "fromPostalCode",
11327
12263
  "fromStateProvinceCode",
12264
+ "maxPackageWeight",
11328
12265
  "toAddress1",
11329
12266
  "toCity",
11330
12267
  "toCountryCode",
@@ -11470,8 +12407,8 @@ function createPingDataResource9(ping) {
11470
12407
  var LogisticsClient = class extends BaseServiceClient {
11471
12408
  constructor(http, baseUrl = "https://logistics.augur-api.com") {
11472
12409
  super("logistics", http, baseUrl);
11473
- const boundExecuteRequest = (config, params, pathParams) => {
11474
- return this.executeRequest(config, params, pathParams);
12410
+ const boundExecuteRequest = (config, params, pathParams, query) => {
12411
+ return this.executeRequest(config, params, pathParams, query);
11475
12412
  };
11476
12413
  const proxy = createServiceProxy(
11477
12414
  "logistics",
@@ -11481,11 +12418,13 @@ var LogisticsClient = class extends BaseServiceClient {
11481
12418
  const dataProxy = createDataProxy(proxy);
11482
12419
  this.fedex = proxy.fedex;
11483
12420
  this.rts = proxy.rts;
12421
+ this.shippingMethods = proxy.shippingMethods;
11484
12422
  this.shipvia = proxy.shipvia;
11485
12423
  this.speedship = proxy.speedship;
11486
12424
  this.ups = proxy.ups;
11487
12425
  this.fedexData = dataProxy.fedex;
11488
12426
  this.rtsData = dataProxy.rts;
12427
+ this.shippingMethodsData = dataProxy.shippingMethods;
11489
12428
  this.shipviaData = dataProxy.shipvia;
11490
12429
  this.speedshipData = dataProxy.speedship;
11491
12430
  this.upsData = dataProxy.ups;
@@ -11503,43 +12442,43 @@ var LogisticsClient = class extends BaseServiceClient {
11503
12442
  var v27 = __toESM(require("valibot"));
11504
12443
  var TransCategoryGetParamsSchema = v27.looseObject({
11505
12444
  ...EdgeCacheParamsSchema.entries,
11506
- category_id: v27.optional(v27.string())
12445
+ categoryId: v27.optional(v27.string())
11507
12446
  });
11508
12447
  var TransCategoryUpdateParamsSchema = v27.looseObject({
11509
- category_id: v27.optional(v27.string())
12448
+ categoryId: v27.optional(v27.string())
11510
12449
  });
11511
12450
  var TransCategoryDeleteParamsSchema = v27.looseObject({
11512
- category_id: v27.optional(v27.string())
12451
+ categoryId: v27.optional(v27.string())
11513
12452
  });
11514
12453
  var TransCompanyGetParamsSchema = v27.looseObject({
11515
12454
  ...EdgeCacheParamsSchema.entries,
11516
- company_id: v27.optional(v27.string())
12455
+ companyId: v27.optional(v27.string())
11517
12456
  });
11518
12457
  var TransCompanyUpdateParamsSchema = v27.looseObject({
11519
- company_id: v27.optional(v27.string())
12458
+ companyId: v27.optional(v27.string())
11520
12459
  });
11521
12460
  var TransCompanyDeleteParamsSchema = v27.looseObject({
11522
- company_id: v27.optional(v27.string())
12461
+ companyId: v27.optional(v27.string())
11523
12462
  });
11524
12463
  var TransUserGetParamsSchema = v27.looseObject({
11525
12464
  ...EdgeCacheParamsSchema.entries,
11526
- user_id: v27.optional(v27.string())
12465
+ userId: v27.optional(v27.string())
11527
12466
  });
11528
12467
  var TransUserUpdateParamsSchema = v27.looseObject({
11529
- user_id: v27.optional(v27.string())
12468
+ userId: v27.optional(v27.string())
11530
12469
  });
11531
12470
  var TransUserDeleteParamsSchema = v27.looseObject({
11532
- user_id: v27.optional(v27.string())
12471
+ userId: v27.optional(v27.string())
11533
12472
  });
11534
12473
  var TransWebDisplayTypeGetParamsSchema = v27.looseObject({
11535
12474
  ...EdgeCacheParamsSchema.entries,
11536
- web_display_type_id: v27.optional(v27.string())
12475
+ webDisplayTypeId: v27.optional(v27.string())
11537
12476
  });
11538
12477
  var TransWebDisplayTypeUpdateParamsSchema = v27.looseObject({
11539
- web_display_type_id: v27.optional(v27.string())
12478
+ webDisplayTypeId: v27.optional(v27.string())
11540
12479
  });
11541
12480
  var TransWebDisplayTypeDeleteParamsSchema = v27.looseObject({
11542
- web_display_type_id: v27.optional(v27.string())
12481
+ webDisplayTypeId: v27.optional(v27.string())
11543
12482
  });
11544
12483
  var PassthroughDataSchema20 = v27.record(v27.string(), v27.unknown());
11545
12484
 
@@ -11588,7 +12527,7 @@ var endpoints20 = [
11588
12527
  action: "get",
11589
12528
  aliases: [],
11590
12529
  pathParams: ["categoryUid"],
11591
- queryParams: ["category_id"],
12530
+ queryParams: ["categoryId"],
11592
12531
  edgeCache: true,
11593
12532
  responseSchema: PassthroughDataSchema20,
11594
12533
  responseType: "passthrough"
@@ -11600,7 +12539,7 @@ var endpoints20 = [
11600
12539
  action: "update",
11601
12540
  aliases: [],
11602
12541
  pathParams: ["categoryUid"],
11603
- queryParams: ["category_id"],
12542
+ queryParams: ["categoryId"],
11604
12543
  edgeCache: false,
11605
12544
  responseSchema: PassthroughDataSchema20,
11606
12545
  responseType: "passthrough"
@@ -11612,7 +12551,7 @@ var endpoints20 = [
11612
12551
  action: "delete",
11613
12552
  aliases: [],
11614
12553
  pathParams: ["categoryUid"],
11615
- queryParams: ["category_id"],
12554
+ queryParams: ["categoryId"],
11616
12555
  edgeCache: false,
11617
12556
  responseSchema: PassthroughDataSchema20,
11618
12557
  responseType: "passthrough"
@@ -11636,7 +12575,7 @@ var endpoints20 = [
11636
12575
  action: "get",
11637
12576
  aliases: [],
11638
12577
  pathParams: ["companyUid"],
11639
- queryParams: ["company_id"],
12578
+ queryParams: ["companyId"],
11640
12579
  edgeCache: true,
11641
12580
  responseSchema: PassthroughDataSchema20,
11642
12581
  responseType: "passthrough"
@@ -11648,7 +12587,7 @@ var endpoints20 = [
11648
12587
  action: "update",
11649
12588
  aliases: [],
11650
12589
  pathParams: ["companyUid"],
11651
- queryParams: ["company_id"],
12590
+ queryParams: ["companyId"],
11652
12591
  edgeCache: false,
11653
12592
  responseSchema: PassthroughDataSchema20,
11654
12593
  responseType: "passthrough"
@@ -11660,7 +12599,7 @@ var endpoints20 = [
11660
12599
  action: "delete",
11661
12600
  aliases: [],
11662
12601
  pathParams: ["companyUid"],
11663
- queryParams: ["company_id"],
12602
+ queryParams: ["companyId"],
11664
12603
  edgeCache: false,
11665
12604
  responseSchema: PassthroughDataSchema20,
11666
12605
  responseType: "passthrough"
@@ -11708,7 +12647,7 @@ var endpoints20 = [
11708
12647
  action: "get",
11709
12648
  aliases: [],
11710
12649
  pathParams: ["usersUid"],
11711
- queryParams: ["user_id"],
12650
+ queryParams: ["userId"],
11712
12651
  edgeCache: true,
11713
12652
  responseSchema: PassthroughDataSchema20,
11714
12653
  responseType: "passthrough"
@@ -11720,7 +12659,7 @@ var endpoints20 = [
11720
12659
  action: "update",
11721
12660
  aliases: [],
11722
12661
  pathParams: ["usersUid"],
11723
- queryParams: ["user_id"],
12662
+ queryParams: ["userId"],
11724
12663
  edgeCache: false,
11725
12664
  responseSchema: PassthroughDataSchema20,
11726
12665
  responseType: "passthrough"
@@ -11732,7 +12671,7 @@ var endpoints20 = [
11732
12671
  action: "delete",
11733
12672
  aliases: [],
11734
12673
  pathParams: ["usersUid"],
11735
- queryParams: ["user_id"],
12674
+ queryParams: ["userId"],
11736
12675
  edgeCache: false,
11737
12676
  responseSchema: PassthroughDataSchema20,
11738
12677
  responseType: "passthrough"
@@ -11780,7 +12719,7 @@ var endpoints20 = [
11780
12719
  action: "get",
11781
12720
  aliases: [],
11782
12721
  pathParams: ["webDisplayTypeUid"],
11783
- queryParams: ["web_display_type_id"],
12722
+ queryParams: ["webDisplayTypeId"],
11784
12723
  edgeCache: true,
11785
12724
  responseSchema: PassthroughDataSchema20,
11786
12725
  responseType: "passthrough"
@@ -11792,7 +12731,7 @@ var endpoints20 = [
11792
12731
  action: "update",
11793
12732
  aliases: [],
11794
12733
  pathParams: ["webDisplayTypeUid"],
11795
- queryParams: ["web_display_type_id"],
12734
+ queryParams: ["webDisplayTypeId"],
11796
12735
  edgeCache: false,
11797
12736
  responseSchema: PassthroughDataSchema20,
11798
12737
  responseType: "passthrough"
@@ -11804,7 +12743,7 @@ var endpoints20 = [
11804
12743
  action: "delete",
11805
12744
  aliases: [],
11806
12745
  pathParams: ["webDisplayTypeUid"],
11807
- queryParams: ["web_display_type_id"],
12746
+ queryParams: ["webDisplayTypeId"],
11808
12747
  edgeCache: false,
11809
12748
  responseSchema: PassthroughDataSchema20,
11810
12749
  responseType: "passthrough"
@@ -11862,8 +12801,8 @@ function createHealthCheckDataResource20(healthCheck) {
11862
12801
  var P21ApisClient = class extends BaseServiceClient {
11863
12802
  constructor(http, baseUrl = "https://p21-apis.augur-api.com") {
11864
12803
  super("p21-apis", http, baseUrl);
11865
- const boundExecuteRequest = (config, params, pathParams) => {
11866
- return this.executeRequest(config, params, pathParams);
12804
+ const boundExecuteRequest = (config, params, pathParams, query) => {
12805
+ return this.executeRequest(config, params, pathParams, query);
11867
12806
  };
11868
12807
  const proxy = createServiceProxy("p21-apis", boundExecuteRequest, endpoints20);
11869
12808
  const dataProxy = createDataProxy(proxy);
@@ -11898,12 +12837,14 @@ var AddressListParamsSchema = v28.looseObject({
11898
12837
  enabledCd: v28.optional(v28.pipe(v28.unknown(), v28.transform(Number))),
11899
12838
  limit: v28.optional(v28.pipe(v28.unknown(), v28.transform(Number))),
11900
12839
  offset: v28.optional(v28.pipe(v28.unknown(), v28.transform(Number))),
12840
+ orderBy: v28.optional(v28.string()),
11901
12841
  statusCd: v28.optional(v28.pipe(v28.unknown(), v28.transform(Number)))
11902
12842
  });
11903
12843
  var AddressCorpAddressListParamsSchema = v28.looseObject({
11904
12844
  ...EdgeCacheParamsSchema.entries,
11905
12845
  limit: v28.optional(v28.pipe(v28.unknown(), v28.transform(Number))),
11906
12846
  offset: v28.optional(v28.pipe(v28.unknown(), v28.transform(Number))),
12847
+ orderBy: v28.optional(v28.string()),
11907
12848
  q: v28.optional(v28.string())
11908
12849
  });
11909
12850
  var AddressEnableGetParamsSchema = v28.looseObject({
@@ -11925,7 +12866,8 @@ var CodeP21ListParamsSchema = v28.looseObject({
11925
12866
  codeNoList: v28.optional(v28.string()),
11926
12867
  limit: v28.optional(v28.pipe(v28.unknown(), v28.transform(Number))),
11927
12868
  offset: v28.optional(v28.pipe(v28.unknown(), v28.transform(Number))),
11928
- q: v28.string()
12869
+ orderBy: v28.optional(v28.string()),
12870
+ q: v28.optional(v28.string())
11929
12871
  });
11930
12872
  var CompanyListParamsSchema = v28.looseObject({
11931
12873
  ...EdgeCacheParamsSchema.entries,
@@ -11939,6 +12881,19 @@ var CompanyGetParamsSchema = v28.looseObject({
11939
12881
  ...EdgeCacheParamsSchema.entries,
11940
12882
  companyId: v28.optional(v28.string())
11941
12883
  });
12884
+ var FreightCodeListParamsSchema = v28.looseObject({
12885
+ ...EdgeCacheParamsSchema.entries,
12886
+ companyId: v28.optional(v28.string()),
12887
+ freightCodeId: v28.optional(v28.string()),
12888
+ limit: v28.optional(v28.pipe(v28.unknown(), v28.transform(Number))),
12889
+ offset: v28.optional(v28.pipe(v28.unknown(), v28.transform(Number))),
12890
+ orderBy: v28.optional(v28.string()),
12891
+ statusCd: v28.optional(v28.pipe(v28.unknown(), v28.transform(Number)))
12892
+ });
12893
+ var FreightCodeGetParamsSchema = v28.looseObject({
12894
+ ...EdgeCacheParamsSchema.entries,
12895
+ freightCodeId: v28.optional(v28.string())
12896
+ });
11942
12897
  var LocationListParamsSchema = v28.looseObject({
11943
12898
  ...EdgeCacheParamsSchema.entries,
11944
12899
  deleteFlag: v28.optional(v28.string()),
@@ -11955,7 +12910,8 @@ var LocationGetParamsSchema = v28.looseObject({
11955
12910
  var PaymentTypesListParamsSchema = v28.looseObject({
11956
12911
  ...EdgeCacheParamsSchema.entries,
11957
12912
  limit: v28.optional(v28.pipe(v28.unknown(), v28.transform(Number))),
11958
- offset: v28.optional(v28.pipe(v28.unknown(), v28.transform(Number)))
12913
+ offset: v28.optional(v28.pipe(v28.unknown(), v28.transform(Number))),
12914
+ orderBy: v28.optional(v28.string())
11959
12915
  });
11960
12916
  var CashDrawerDataSchema = v28.looseObject({
11961
12917
  cashDrawerId: v28.optional(v28.string()),
@@ -12009,6 +12965,48 @@ var CompanyDataSchema = v28.looseObject({
12009
12965
  defaultSourcePriceCd: v28.optional(v28.nullable(v28.number())),
12010
12966
  defaultMultiplier: v28.optional(v28.nullable(v28.number()))
12011
12967
  });
12968
+ var FreightCodeDataSchema = v28.looseObject({
12969
+ freightCodeUid: v28.optional(v28.number()),
12970
+ companyId: v28.optional(v28.string()),
12971
+ freightCd: v28.optional(v28.string()),
12972
+ freightDesc: v28.optional(v28.string()),
12973
+ incomingFreight: v28.optional(v28.string()),
12974
+ outgoingFreight: v28.optional(v28.string()),
12975
+ incomingReduceCommission: v28.optional(v28.string()),
12976
+ outgoingIncreaseCommission: v28.optional(v28.string()),
12977
+ prorateMethodCodeNo: v28.optional(v28.number()),
12978
+ taxGroupId: v28.optional(v28.nullable(v28.string())),
12979
+ revenueAccountNo: v28.optional(v28.string()),
12980
+ rowStatus: v28.optional(v28.number()),
12981
+ dateCreated: v28.optional(v28.nullable(v28.string())),
12982
+ dateLastModified: v28.optional(v28.nullable(v28.string())),
12983
+ lastMaintainedBy: v28.optional(v28.string()),
12984
+ freeFreightBasisCd: v28.optional(v28.nullable(v28.number())),
12985
+ freeInFreightMin: v28.optional(v28.nullable(v28.number())),
12986
+ freeOutFreightMin: v28.optional(v28.nullable(v28.number())),
12987
+ directShipFreeFreightFlag: v28.optional(v28.nullable(v28.string())),
12988
+ freeInFreightMinWeb: v28.optional(v28.nullable(v28.number())),
12989
+ freeOutFreightMinWeb: v28.optional(v28.nullable(v28.number())),
12990
+ handlingChargeOptionCd: v28.optional(v28.nullable(v28.number())),
12991
+ externalTaxProductCodeIn: v28.optional(v28.nullable(v28.string())),
12992
+ externalTaxProductCodeOut: v28.optional(v28.nullable(v28.string())),
12993
+ incomingIncreaseCommission: v28.optional(v28.nullable(v28.string())),
12994
+ paySpecialFlag: v28.optional(v28.nullable(v28.string())),
12995
+ skipFirstShipmentFlag: v28.optional(v28.nullable(v28.string())),
12996
+ excludeFromSalesMasterInquiry: v28.optional(v28.string()),
12997
+ deductibleFlag: v28.optional(v28.nullable(v28.string())),
12998
+ freeColdFreight: v28.optional(v28.string()),
12999
+ freeHazmatFreight: v28.optional(v28.string()),
13000
+ freeExpressFreight: v28.optional(v28.string()),
13001
+ freeBulkFreight: v28.optional(v28.string()),
13002
+ fedexPaymentMethod: v28.optional(v28.nullable(v28.number())),
13003
+ excludeDiscountedFreight: v28.optional(v28.string()),
13004
+ freeFreightDefaultFlag: v28.optional(v28.nullable(v28.string())),
13005
+ outgoingAdjustCommissionByProfitFlag: v28.optional(v28.nullable(v28.string())),
13006
+ updateCd: v28.optional(v28.number()),
13007
+ statusCd: v28.optional(v28.number()),
13008
+ processCd: v28.optional(v28.number())
13009
+ });
12012
13010
  var LocationDataSchema = v28.looseObject({
12013
13011
  locationId: v28.optional(v28.number()),
12014
13012
  companyId: v28.optional(v28.string()),
@@ -12041,7 +13039,15 @@ var endpoints21 = [
12041
13039
  action: "list",
12042
13040
  aliases: [],
12043
13041
  pathParams: [],
12044
- queryParams: ["carrierFlag", "defaultCd", "enabledCd", "limit", "offset", "statusCd"],
13042
+ queryParams: [
13043
+ "carrierFlag",
13044
+ "defaultCd",
13045
+ "enabledCd",
13046
+ "limit",
13047
+ "offset",
13048
+ "orderBy",
13049
+ "statusCd"
13050
+ ],
12045
13051
  edgeCache: true,
12046
13052
  responseSchema: PassthroughDataSchema21,
12047
13053
  responseType: "passthrough"
@@ -12077,7 +13083,7 @@ var endpoints21 = [
12077
13083
  action: "list",
12078
13084
  aliases: [],
12079
13085
  pathParams: ["id"],
12080
- queryParams: ["limit", "offset", "q"],
13086
+ queryParams: ["limit", "offset", "orderBy", "q"],
12081
13087
  edgeCache: true,
12082
13088
  responseSchema: PassthroughDataSchema21,
12083
13089
  responseType: "passthrough"
@@ -12137,11 +13143,23 @@ var endpoints21 = [
12137
13143
  action: "list",
12138
13144
  aliases: [],
12139
13145
  pathParams: [],
12140
- queryParams: ["codeNoList", "limit", "offset", "q"],
13146
+ queryParams: ["codeNoList", "limit", "offset", "orderBy", "q"],
12141
13147
  edgeCache: true,
12142
13148
  responseSchema: CodeP21DataSchema,
12143
13149
  responseType: "array"
12144
13150
  },
13151
+ {
13152
+ method: "GET",
13153
+ path: "/code-p21/{codeUid}",
13154
+ chain: "codeP21",
13155
+ action: "get",
13156
+ aliases: [],
13157
+ pathParams: ["codeUid"],
13158
+ queryParams: [],
13159
+ edgeCache: true,
13160
+ responseSchema: CodeP21DataSchema,
13161
+ responseType: "object"
13162
+ },
12145
13163
  {
12146
13164
  method: "GET",
12147
13165
  path: "/company",
@@ -12166,6 +13184,30 @@ var endpoints21 = [
12166
13184
  responseSchema: CompanyDataSchema,
12167
13185
  responseType: "object"
12168
13186
  },
13187
+ {
13188
+ method: "GET",
13189
+ path: "/freight-code",
13190
+ chain: "freightCode",
13191
+ action: "list",
13192
+ aliases: [],
13193
+ pathParams: [],
13194
+ queryParams: ["companyId", "freightCodeId", "limit", "offset", "orderBy", "statusCd"],
13195
+ edgeCache: true,
13196
+ responseSchema: FreightCodeDataSchema,
13197
+ responseType: "array"
13198
+ },
13199
+ {
13200
+ method: "GET",
13201
+ path: "/freight-code/{freightCodeUid}",
13202
+ chain: "freightCode",
13203
+ action: "get",
13204
+ aliases: [],
13205
+ pathParams: ["freightCodeUid"],
13206
+ queryParams: ["freightCodeId"],
13207
+ edgeCache: true,
13208
+ responseSchema: FreightCodeDataSchema,
13209
+ responseType: "object"
13210
+ },
12169
13211
  {
12170
13212
  method: "GET",
12171
13213
  path: "/location",
@@ -12197,7 +13239,7 @@ var endpoints21 = [
12197
13239
  action: "list",
12198
13240
  aliases: [],
12199
13241
  pathParams: [],
12200
- queryParams: ["limit", "offset"],
13242
+ queryParams: ["limit", "offset", "orderBy"],
12201
13243
  edgeCache: true,
12202
13244
  responseSchema: PassthroughDataSchema21,
12203
13245
  responseType: "passthrough"
@@ -12266,8 +13308,8 @@ function createPingDataResource10(ping) {
12266
13308
  var P21CoreClient = class extends BaseServiceClient {
12267
13309
  constructor(http, baseUrl = "https://p21-core.augur-api.com") {
12268
13310
  super("p21-core", http, baseUrl);
12269
- const boundExecuteRequest = (config, params, pathParams) => {
12270
- return this.executeRequest(config, params, pathParams);
13311
+ const boundExecuteRequest = (config, params, pathParams, query) => {
13312
+ return this.executeRequest(config, params, pathParams, query);
12271
13313
  };
12272
13314
  const proxy = createServiceProxy("p21-core", boundExecuteRequest, endpoints21);
12273
13315
  const dataProxy = createDataProxy(proxy);
@@ -12275,12 +13317,14 @@ var P21CoreClient = class extends BaseServiceClient {
12275
13317
  this.cashDrawer = proxy.cashDrawer;
12276
13318
  this.codeP21 = proxy.codeP21;
12277
13319
  this.company = proxy.company;
13320
+ this.freightCode = proxy.freightCode;
12278
13321
  this.location = proxy.location;
12279
13322
  this.paymentTypes = proxy.paymentTypes;
12280
13323
  this.addressData = dataProxy.address;
12281
13324
  this.cashDrawerData = dataProxy.cashDrawer;
12282
13325
  this.codeP21Data = dataProxy.codeP21;
12283
13326
  this.companyData = dataProxy.company;
13327
+ this.freightCodeData = dataProxy.freightCode;
12284
13328
  this.locationData = dataProxy.location;
12285
13329
  this.paymentTypesData = dataProxy.paymentTypes;
12286
13330
  this.healthCheck = createHealthCheckResource21(boundExecuteRequest);
@@ -12598,8 +13642,8 @@ function createHealthCheckDataResource22(healthCheck) {
12598
13642
  var P21SismClient = class extends BaseServiceClient {
12599
13643
  constructor(http, baseUrl = "https://p21-sism.augur-api.com") {
12600
13644
  super("p21-sism", http, baseUrl);
12601
- const boundExecuteRequest = (config, params, pathParams) => {
12602
- return this.executeRequest(config, params, pathParams);
13645
+ const boundExecuteRequest = (config, params, pathParams, query) => {
13646
+ return this.executeRequest(config, params, pathParams, query);
12603
13647
  };
12604
13648
  const proxy = createServiceProxy("p21-sism", boundExecuteRequest, endpoints22);
12605
13649
  const dataProxy = createDataProxy(proxy);
@@ -12704,8 +13748,8 @@ function createHealthCheckDataResource23(healthCheck) {
12704
13748
  var ShippingClient = class extends BaseServiceClient {
12705
13749
  constructor(http, baseUrl = "https://shipping.augur-api.com") {
12706
13750
  super("shipping", http, baseUrl);
12707
- const boundExecuteRequest = (config, params, pathParams) => {
12708
- return this.executeRequest(config, params, pathParams);
13751
+ const boundExecuteRequest = (config, params, pathParams, query) => {
13752
+ return this.executeRequest(config, params, pathParams, query);
12709
13753
  };
12710
13754
  const proxy = createServiceProxy(
12711
13755
  "shipping",
@@ -12833,8 +13877,8 @@ function createHealthCheckDataResource24(healthCheck) {
12833
13877
  var SlackClient = class extends BaseServiceClient {
12834
13878
  constructor(http, baseUrl = "https://slack.augur-api.com") {
12835
13879
  super("slack", http, baseUrl);
12836
- const boundExecuteRequest = (config, params, pathParams) => {
12837
- return this.executeRequest(config, params, pathParams);
13880
+ const boundExecuteRequest = (config, params, pathParams, query) => {
13881
+ return this.executeRequest(config, params, pathParams, query);
12838
13882
  };
12839
13883
  const proxy = createServiceProxy("slack", boundExecuteRequest, endpoints24);
12840
13884
  const dataProxy = createDataProxy(proxy);
@@ -13033,8 +14077,8 @@ function createPingDataResource11(ping) {
13033
14077
  var SmartyStreetsClient = class extends BaseServiceClient {
13034
14078
  constructor(http, baseUrl = "https://smarty-streets.augur-api.com") {
13035
14079
  super("smarty-streets", http, baseUrl);
13036
- const boundExecuteRequest = (config, params, pathParams) => {
13037
- return this.executeRequest(config, params, pathParams);
14080
+ const boundExecuteRequest = (config, params, pathParams, query) => {
14081
+ return this.executeRequest(config, params, pathParams, query);
13038
14082
  };
13039
14083
  const proxy = createServiceProxy(
13040
14084
  "smarty-streets",
@@ -13199,8 +14243,8 @@ function createHealthCheckDataResource26(healthCheck) {
13199
14243
  var UPSClient = class extends BaseServiceClient {
13200
14244
  constructor(http, baseUrl = "https://ups.augur-api.com") {
13201
14245
  super("ups", http, baseUrl);
13202
- const boundExecuteRequest = (config, params, pathParams) => {
13203
- return this.executeRequest(config, params, pathParams);
14246
+ const boundExecuteRequest = (config, params, pathParams, query) => {
14247
+ return this.executeRequest(config, params, pathParams, query);
13204
14248
  };
13205
14249
  const proxy = createServiceProxy("ups", boundExecuteRequest, endpoints26);
13206
14250
  const dataProxy = createDataProxy(proxy);
@@ -13215,20 +14259,20 @@ var UPSClient = class extends BaseServiceClient {
13215
14259
  var v36 = __toESM(require("valibot"));
13216
14260
  var CommentsListParamsSchema = v36.looseObject({
13217
14261
  ...EdgeCacheParamsSchema.entries,
13218
- creator_id: v36.optional(v36.pipe(v36.unknown(), v36.transform(Number))),
14262
+ creatorId: v36.optional(v36.pipe(v36.unknown(), v36.transform(Number))),
13219
14263
  limit: v36.optional(v36.pipe(v36.unknown(), v36.transform(Number))),
13220
14264
  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)))
14265
+ orderBy: v36.optional(v36.string()),
14266
+ todosId: v36.optional(v36.pipe(v36.unknown(), v36.transform(Number)))
13223
14267
  });
13224
14268
  var EventsListParamsSchema = v36.looseObject({
13225
14269
  ...EdgeCacheParamsSchema.entries,
13226
- event_type_cd: v36.optional(v36.pipe(v36.unknown(), v36.transform(Number))),
14270
+ eventTypeCd: v36.optional(v36.pipe(v36.unknown(), v36.transform(Number))),
13227
14271
  id: v36.optional(v36.pipe(v36.unknown(), v36.transform(Number))),
13228
14272
  limit: v36.optional(v36.pipe(v36.unknown(), v36.transform(Number))),
13229
14273
  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)))
14274
+ orderBy: v36.optional(v36.string()),
14275
+ peopleId: v36.optional(v36.pipe(v36.unknown(), v36.transform(Number)))
13232
14276
  });
13233
14277
  var MetricsListParamsSchema = v36.looseObject({
13234
14278
  ...EdgeCacheParamsSchema.entries,
@@ -13264,27 +14308,27 @@ var PeopleMetricsListParamsSchema = v36.looseObject({
13264
14308
  });
13265
14309
  var PeopleTodosListParamsSchema = v36.looseObject({
13266
14310
  ...EdgeCacheParamsSchema.entries,
13267
- completed_flag: v36.optional(v36.string()),
13268
- due_at: v36.optional(v36.string()),
14311
+ completedFlag: v36.optional(v36.string()),
14312
+ dueAt: v36.optional(v36.string()),
13269
14313
  limit: v36.optional(v36.pipe(v36.unknown(), v36.transform(Number))),
13270
14314
  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)))
14315
+ orderBy: v36.optional(v36.string()),
14316
+ projectsId: v36.optional(v36.pipe(v36.unknown(), v36.transform(Number)))
13273
14317
  });
13274
14318
  var PeopleProjectsTodosListParamsSchema = v36.looseObject({
13275
14319
  ...EdgeCacheParamsSchema.entries,
13276
- completed_flag: v36.optional(v36.string()),
14320
+ completedFlag: v36.optional(v36.string()),
13277
14321
  limit: v36.optional(v36.pipe(v36.unknown(), v36.transform(Number))),
13278
14322
  offset: v36.optional(v36.pipe(v36.unknown(), v36.transform(Number))),
13279
- order_by: v36.optional(v36.string())
14323
+ orderBy: v36.optional(v36.string())
13280
14324
  });
13281
14325
  var ProjectsListParamsSchema = v36.looseObject({
13282
14326
  ...EdgeCacheParamsSchema.entries,
13283
- archived_flag: v36.optional(v36.string()),
14327
+ archivedFlag: v36.optional(v36.string()),
13284
14328
  limit: v36.optional(v36.pipe(v36.unknown(), v36.transform(Number))),
13285
14329
  offset: v36.optional(v36.pipe(v36.unknown(), v36.transform(Number))),
13286
- order_by: v36.optional(v36.string()),
13287
- trashed_flag: v36.optional(v36.string())
14330
+ orderBy: v36.optional(v36.string()),
14331
+ trashedFlag: v36.optional(v36.string())
13288
14332
  });
13289
14333
  var ProjectsMetricsListParamsSchema = v36.looseObject({
13290
14334
  ...EdgeCacheParamsSchema.entries,
@@ -13298,74 +14342,74 @@ var ProjectsMetricsListParamsSchema = v36.looseObject({
13298
14342
  });
13299
14343
  var ProjectsTodolistsListParamsSchema = v36.looseObject({
13300
14344
  ...EdgeCacheParamsSchema.entries,
13301
- completed_flag: v36.optional(v36.string()),
14345
+ completedFlag: v36.optional(v36.string()),
13302
14346
  limit: v36.optional(v36.pipe(v36.unknown(), v36.transform(Number))),
13303
14347
  offset: v36.optional(v36.pipe(v36.unknown(), v36.transform(Number))),
13304
- order_by: v36.optional(v36.string())
14348
+ orderBy: v36.optional(v36.string())
13305
14349
  });
13306
14350
  var ProjectsTodosListParamsSchema = v36.looseObject({
13307
14351
  ...EdgeCacheParamsSchema.entries,
13308
- assignee_id: v36.optional(v36.pipe(v36.unknown(), v36.transform(Number))),
13309
- completed_flag: v36.optional(v36.string()),
14352
+ assigneeId: v36.optional(v36.pipe(v36.unknown(), v36.transform(Number))),
14353
+ completedFlag: v36.optional(v36.string()),
13310
14354
  limit: v36.optional(v36.pipe(v36.unknown(), v36.transform(Number))),
13311
14355
  offset: v36.optional(v36.pipe(v36.unknown(), v36.transform(Number))),
13312
- order_by: v36.optional(v36.string())
14356
+ orderBy: v36.optional(v36.string())
13313
14357
  });
13314
14358
  var ProjectsTodolistsTodosListParamsSchema = v36.looseObject({
13315
14359
  ...EdgeCacheParamsSchema.entries,
13316
- assignee_id: v36.optional(v36.pipe(v36.unknown(), v36.transform(Number))),
13317
- completed_flag: v36.optional(v36.string()),
14360
+ assigneeId: v36.optional(v36.pipe(v36.unknown(), v36.transform(Number))),
14361
+ completedFlag: v36.optional(v36.string()),
13318
14362
  limit: v36.optional(v36.pipe(v36.unknown(), v36.transform(Number))),
13319
14363
  offset: v36.optional(v36.pipe(v36.unknown(), v36.transform(Number))),
13320
- order_by: v36.optional(v36.string())
14364
+ orderBy: v36.optional(v36.string())
13321
14365
  });
13322
14366
  var TodolistsListParamsSchema = v36.looseObject({
13323
14367
  ...EdgeCacheParamsSchema.entries,
13324
- assignee_id: v36.optional(v36.pipe(v36.unknown(), v36.transform(Number))),
13325
- completed_flag: v36.optional(v36.string()),
14368
+ assigneeId: v36.optional(v36.pipe(v36.unknown(), v36.transform(Number))),
14369
+ completedFlag: v36.optional(v36.string()),
13326
14370
  limit: v36.optional(v36.pipe(v36.unknown(), v36.transform(Number))),
13327
14371
  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)))
14372
+ orderBy: v36.optional(v36.string()),
14373
+ projectsId: v36.optional(v36.pipe(v36.unknown(), v36.transform(Number)))
13330
14374
  });
13331
14375
  var TodosListParamsSchema = v36.looseObject({
13332
14376
  ...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()),
14377
+ assigneeId: v36.optional(v36.pipe(v36.unknown(), v36.transform(Number))),
14378
+ completedFlag: v36.optional(v36.string()),
14379
+ dueAt: v36.optional(v36.string()),
13336
14380
  limit: v36.optional(v36.pipe(v36.unknown(), v36.transform(Number))),
13337
14381
  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)))
14382
+ orderBy: v36.optional(v36.string()),
14383
+ projectsId: v36.optional(v36.pipe(v36.unknown(), v36.transform(Number))),
14384
+ todolistId: v36.optional(v36.pipe(v36.unknown(), v36.transform(Number)))
13341
14385
  });
13342
14386
  var TodosSummaryListParamsSchema = v36.looseObject({
13343
14387
  ...EdgeCacheParamsSchema.entries,
13344
- akasha_cd: v36.optional(v36.pipe(v36.unknown(), v36.transform(Number))),
14388
+ akashaCd: v36.optional(v36.pipe(v36.unknown(), v36.transform(Number))),
13345
14389
  limit: v36.optional(v36.pipe(v36.unknown(), v36.transform(Number))),
13346
14390
  offset: v36.optional(v36.pipe(v36.unknown(), v36.transform(Number))),
13347
- process_cd: v36.optional(v36.pipe(v36.unknown(), v36.transform(Number)))
14391
+ processCd: v36.optional(v36.pipe(v36.unknown(), v36.transform(Number)))
13348
14392
  });
13349
14393
  var TodosCommentsListParamsSchema = v36.looseObject({
13350
14394
  ...EdgeCacheParamsSchema.entries,
13351
14395
  limit: v36.optional(v36.pipe(v36.unknown(), v36.transform(Number))),
13352
14396
  offset: v36.optional(v36.pipe(v36.unknown(), v36.transform(Number))),
13353
- order_by: v36.optional(v36.string())
14397
+ orderBy: v36.optional(v36.string())
13354
14398
  });
13355
14399
  var TodosEventsListParamsSchema = v36.looseObject({
13356
14400
  ...EdgeCacheParamsSchema.entries,
13357
- event_type_cd: v36.optional(v36.pipe(v36.unknown(), v36.transform(Number))),
14401
+ eventTypeCd: v36.optional(v36.pipe(v36.unknown(), v36.transform(Number))),
13358
14402
  limit: v36.optional(v36.pipe(v36.unknown(), v36.transform(Number))),
13359
14403
  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)))
14404
+ orderBy: v36.optional(v36.string()),
14405
+ peopleId: v36.optional(v36.pipe(v36.unknown(), v36.transform(Number)))
13362
14406
  });
13363
14407
  var TodosSessionsListParamsSchema = v36.looseObject({
13364
14408
  ...EdgeCacheParamsSchema.entries,
13365
14409
  limit: v36.optional(v36.pipe(v36.unknown(), v36.transform(Number))),
13366
14410
  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)))
14411
+ orderBy: v36.optional(v36.string()),
14412
+ sessionStatusCd: v36.optional(v36.pipe(v36.unknown(), v36.transform(Number)))
13369
14413
  });
13370
14414
  var CommentsDataSchema = v36.looseObject({
13371
14415
  id: v36.optional(v36.number()),
@@ -13567,7 +14611,7 @@ var endpoints27 = [
13567
14611
  action: "list",
13568
14612
  aliases: [],
13569
14613
  pathParams: [],
13570
- queryParams: ["creator_id", "limit", "offset", "order_by", "todos_id"],
14614
+ queryParams: ["creatorId", "limit", "offset", "orderBy", "todosId"],
13571
14615
  edgeCache: true,
13572
14616
  responseSchema: CommentsDataSchema,
13573
14617
  responseType: "array"
@@ -13591,7 +14635,7 @@ var endpoints27 = [
13591
14635
  action: "list",
13592
14636
  aliases: [],
13593
14637
  pathParams: [],
13594
- queryParams: ["event_type_cd", "id", "limit", "offset", "order_by", "people_id"],
14638
+ queryParams: ["eventTypeCd", "id", "limit", "offset", "orderBy", "peopleId"],
13595
14639
  edgeCache: true,
13596
14640
  responseSchema: EventsDataSchema,
13597
14641
  responseType: "array"
@@ -13670,7 +14714,7 @@ var endpoints27 = [
13670
14714
  action: "list",
13671
14715
  aliases: [],
13672
14716
  pathParams: ["id"],
13673
- queryParams: ["completed_flag", "due_at", "limit", "offset", "order_by", "projects_id"],
14717
+ queryParams: ["completedFlag", "dueAt", "limit", "offset", "orderBy", "projectsId"],
13674
14718
  edgeCache: true,
13675
14719
  responseSchema: PeopleDataSchema,
13676
14720
  responseType: "array"
@@ -13682,7 +14726,7 @@ var endpoints27 = [
13682
14726
  action: "list",
13683
14727
  aliases: [],
13684
14728
  pathParams: ["personId", "projectId"],
13685
- queryParams: ["completed_flag", "limit", "offset", "order_by"],
14729
+ queryParams: ["completedFlag", "limit", "offset", "orderBy"],
13686
14730
  edgeCache: true,
13687
14731
  responseSchema: PeopleDataSchema,
13688
14732
  responseType: "array"
@@ -13694,7 +14738,7 @@ var endpoints27 = [
13694
14738
  action: "list",
13695
14739
  aliases: [],
13696
14740
  pathParams: [],
13697
- queryParams: ["archived_flag", "limit", "offset", "order_by", "trashed_flag"],
14741
+ queryParams: ["archivedFlag", "limit", "offset", "orderBy", "trashedFlag"],
13698
14742
  edgeCache: true,
13699
14743
  responseSchema: ProjectsDataSchema,
13700
14744
  responseType: "array"
@@ -13738,7 +14782,7 @@ var endpoints27 = [
13738
14782
  action: "list",
13739
14783
  aliases: [],
13740
14784
  pathParams: ["id"],
13741
- queryParams: ["completed_flag", "limit", "offset", "order_by"],
14785
+ queryParams: ["completedFlag", "limit", "offset", "orderBy"],
13742
14786
  edgeCache: true,
13743
14787
  responseSchema: ProjectsDataSchema,
13744
14788
  responseType: "array"
@@ -13750,7 +14794,7 @@ var endpoints27 = [
13750
14794
  action: "list",
13751
14795
  aliases: [],
13752
14796
  pathParams: ["id"],
13753
- queryParams: ["assignee_id", "completed_flag", "limit", "offset", "order_by"],
14797
+ queryParams: ["assigneeId", "completedFlag", "limit", "offset", "orderBy"],
13754
14798
  edgeCache: true,
13755
14799
  responseSchema: ProjectsDataSchema,
13756
14800
  responseType: "array"
@@ -13762,7 +14806,7 @@ var endpoints27 = [
13762
14806
  action: "list",
13763
14807
  aliases: [],
13764
14808
  pathParams: ["projectId", "todolistId"],
13765
- queryParams: ["assignee_id", "completed_flag", "limit", "offset", "order_by"],
14809
+ queryParams: ["assigneeId", "completedFlag", "limit", "offset", "orderBy"],
13766
14810
  edgeCache: true,
13767
14811
  responseSchema: ProjectsDataSchema,
13768
14812
  responseType: "array"
@@ -13774,7 +14818,7 @@ var endpoints27 = [
13774
14818
  action: "list",
13775
14819
  aliases: [],
13776
14820
  pathParams: [],
13777
- queryParams: ["assignee_id", "completed_flag", "limit", "offset", "order_by", "projects_id"],
14821
+ queryParams: ["assigneeId", "completedFlag", "limit", "offset", "orderBy", "projectsId"],
13778
14822
  edgeCache: true,
13779
14823
  responseSchema: TodolistsDataSchema,
13780
14824
  responseType: "array"
@@ -13799,14 +14843,14 @@ var endpoints27 = [
13799
14843
  aliases: [],
13800
14844
  pathParams: [],
13801
14845
  queryParams: [
13802
- "assignee_id",
13803
- "completed_flag",
13804
- "due_at",
14846
+ "assigneeId",
14847
+ "completedFlag",
14848
+ "dueAt",
13805
14849
  "limit",
13806
14850
  "offset",
13807
- "order_by",
13808
- "projects_id",
13809
- "todolist_id"
14851
+ "orderBy",
14852
+ "projectsId",
14853
+ "todolistId"
13810
14854
  ],
13811
14855
  edgeCache: true,
13812
14856
  responseSchema: TodosDataSchema,
@@ -13819,7 +14863,7 @@ var endpoints27 = [
13819
14863
  action: "list",
13820
14864
  aliases: [],
13821
14865
  pathParams: [],
13822
- queryParams: ["akasha_cd", "limit", "offset", "process_cd"],
14866
+ queryParams: ["akashaCd", "limit", "offset", "processCd"],
13823
14867
  edgeCache: true,
13824
14868
  responseSchema: TodosSummaryDataSchema,
13825
14869
  responseType: "array"
@@ -13855,7 +14899,7 @@ var endpoints27 = [
13855
14899
  action: "list",
13856
14900
  aliases: [],
13857
14901
  pathParams: ["id"],
13858
- queryParams: ["limit", "offset", "order_by"],
14902
+ queryParams: ["limit", "offset", "orderBy"],
13859
14903
  edgeCache: true,
13860
14904
  responseSchema: TodosDataSchema,
13861
14905
  responseType: "array"
@@ -13867,7 +14911,7 @@ var endpoints27 = [
13867
14911
  action: "list",
13868
14912
  aliases: [],
13869
14913
  pathParams: ["id"],
13870
- queryParams: ["event_type_cd", "limit", "offset", "order_by", "people_id"],
14914
+ queryParams: ["eventTypeCd", "limit", "offset", "orderBy", "peopleId"],
13871
14915
  edgeCache: true,
13872
14916
  responseSchema: EventsDataSchema,
13873
14917
  responseType: "array"
@@ -13903,7 +14947,7 @@ var endpoints27 = [
13903
14947
  action: "list",
13904
14948
  aliases: [],
13905
14949
  pathParams: ["id"],
13906
- queryParams: ["limit", "offset", "order_by", "session_status_cd"],
14950
+ queryParams: ["limit", "offset", "orderBy", "sessionStatusCd"],
13907
14951
  edgeCache: true,
13908
14952
  responseSchema: TodosSessionsDataSchema,
13909
14953
  responseType: "array"
@@ -14007,8 +15051,8 @@ function createHealthCheckDataResource27(healthCheck) {
14007
15051
  var Basecamp2Client = class extends BaseServiceClient {
14008
15052
  constructor(http, baseUrl = "https://basecamp2.augur-api.com") {
14009
15053
  super("basecamp2", http, baseUrl);
14010
- const boundExecuteRequest = (config, params, pathParams) => {
14011
- return this.executeRequest(config, params, pathParams);
15054
+ const boundExecuteRequest = (config, params, pathParams, query) => {
15055
+ return this.executeRequest(config, params, pathParams, query);
14012
15056
  };
14013
15057
  const proxy = createServiceProxy(
14014
15058
  "basecamp2",
@@ -14938,7 +15982,7 @@ function createCrossSiteAuthenticator(augurInfoToken) {
14938
15982
  }
14939
15983
 
14940
15984
  // src/index.ts
14941
- var VERSION = "2026.6.5";
15985
+ var VERSION = "2026.8.1";
14942
15986
  // Annotate the CommonJS export names for ESM import in node:
14943
15987
  0 && (module.exports = {
14944
15988
  AgrInfoClient,