@simpleapps-com/augur-api 2026.6.5 → 2026.7.1

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
package/dist/index.mjs CHANGED
@@ -423,14 +423,28 @@ var HTTPClient = class {
423
423
  this.inflightRequests.set(requestKey, requestPromise);
424
424
  return requestPromise;
425
425
  }
426
- async post(url, data, config) {
427
- return this.request("POST", url, { data, config });
426
+ // The API declares query params on POST/PUT/DELETE as well as GET. `request`
427
+ // already carries both a body and a query slot; these wrappers simply never
428
+ // exposed the latter, leaving those params unreachable from the clients.
429
+ async post(url, data, params, config) {
430
+ return this.request("POST", url, {
431
+ data,
432
+ params: this.transformEdgeCacheParams(params),
433
+ config
434
+ });
428
435
  }
429
- async put(url, data, config) {
430
- return this.request("PUT", url, { data, config });
436
+ async put(url, data, params, config) {
437
+ return this.request("PUT", url, {
438
+ data,
439
+ params: this.transformEdgeCacheParams(params),
440
+ config
441
+ });
431
442
  }
432
- async delete(url, config) {
433
- return this.request("DELETE", url, { config });
443
+ async delete(url, params, config) {
444
+ return this.request("DELETE", url, {
445
+ params: this.transformEdgeCacheParams(params),
446
+ config
447
+ });
434
448
  }
435
449
  setBearerToken(token) {
436
450
  this.config.bearerToken = token;
@@ -444,7 +458,14 @@ var HTTPClient = class {
444
458
  var normalise = (name) => name.replace(/[-_]/g, "").toLowerCase();
445
459
  var NUMERIC_EXACT = /* @__PURE__ */ new Set(["id", "linenumber"]);
446
460
  var NUMERIC_SUFFIX_RE = /(?:id|uid|no|num|number)$/;
447
- var STRING_OVERRIDES = /* @__PURE__ */ new Set(["siteid", "pono", "importuid", "scheduledimportmasteruid"]);
461
+ var STRING_OVERRIDES = /* @__PURE__ */ new Set([
462
+ "siteid",
463
+ "pono",
464
+ "importuid",
465
+ "scheduledimportmasteruid",
466
+ "grantid",
467
+ "salesrepid"
468
+ ]);
448
469
  var isNumericPlaceholder = (placeholder) => {
449
470
  const normalised = normalise(placeholder);
450
471
  if (STRING_OVERRIDES.has(normalised)) return false;
@@ -588,11 +609,11 @@ var BaseServiceClient = class _BaseServiceClient {
588
609
  * @throws ValidationError When parameters or response validation fails
589
610
  * @throws AugurError For HTTP errors (handled by HTTPClient interceptors)
590
611
  */
591
- async executeRequest(config, params, pathParams) {
612
+ async executeRequest(config, params, pathParams, query) {
592
613
  const endpoint = this.buildEndpointPath(config.path, pathParams);
593
614
  try {
594
615
  const validatedParams = this.validateParameters(config, params);
595
- const response = await this.executeHttpRequest(config, endpoint, validatedParams);
616
+ const response = await this.executeHttpRequest(config, endpoint, validatedParams, query);
596
617
  const validatedResponse = v2.parse(config.responseSchema, response);
597
618
  return validatedResponse;
598
619
  } catch (error) {
@@ -620,18 +641,24 @@ var BaseServiceClient = class _BaseServiceClient {
620
641
  }
621
642
  /**
622
643
  * Execute HTTP request based on the configured method
644
+ *
645
+ * For GET, `validatedParams` IS the query string. For POST/PUT it is the
646
+ * request body, and `query` carries the query string alongside it — the API
647
+ * declares query params on write methods too, and DELETE previously dropped
648
+ * them entirely.
623
649
  */
624
- async executeHttpRequest(config, endpoint, validatedParams) {
650
+ async executeHttpRequest(config, endpoint, validatedParams, query) {
625
651
  const url = `${this.baseUrl}${endpoint}`;
652
+ const rest = query === void 0 ? [] : [query];
626
653
  switch (config.method) {
627
654
  case "GET":
628
655
  return await this.http.get(url, validatedParams);
629
656
  case "POST":
630
- return await this.http.post(url, validatedParams);
657
+ return await this.http.post(url, validatedParams, ...rest);
631
658
  case "PUT":
632
- return await this.http.put(url, validatedParams);
659
+ return await this.http.put(url, validatedParams, ...rest);
633
660
  case "DELETE":
634
- return await this.http.delete(url);
661
+ return await this.http.delete(url, ...rest);
635
662
  default:
636
663
  throw new Error(`Unsupported HTTP method: ${config.method}`);
637
664
  }
@@ -1329,32 +1356,71 @@ function createNodeObject(serviceName, executeRequest, node) {
1329
1356
  }
1330
1357
  return obj;
1331
1358
  }
1359
+ function splitPathArgs(pathParams, args) {
1360
+ const pathParamMap = {};
1361
+ let index = 0;
1362
+ for (const name of pathParams) {
1363
+ if (index >= args.length) {
1364
+ break;
1365
+ }
1366
+ pathParamMap[name] = String(args[index]);
1367
+ index++;
1368
+ }
1369
+ return { pathParamMap, rest: args.slice(index) };
1370
+ }
1371
+ function splitBodyAndQuery(method, rest) {
1372
+ if (method === "POST" || method === "PUT") {
1373
+ return { body: rest[0], query: rest[1] };
1374
+ }
1375
+ if (method === "DELETE") {
1376
+ return { body: void 0, query: rest[0] };
1377
+ }
1378
+ return { body: rest[0], query: void 0 };
1379
+ }
1380
+ function normaliseLegacyParamCase(params, declared) {
1381
+ if (!params || typeof params !== "object" || Array.isArray(params) || declared.length === 0) {
1382
+ return params;
1383
+ }
1384
+ const source = params;
1385
+ const wanted = new Set(declared);
1386
+ const out = { ...source };
1387
+ let renamed = false;
1388
+ for (const [key, value] of Object.entries(source)) {
1389
+ const camel = key.replace(/_([a-z0-9])/g, (_m, c) => c.toUpperCase());
1390
+ if (camel === key || !wanted.has(camel)) {
1391
+ continue;
1392
+ }
1393
+ renamed = true;
1394
+ delete out[key];
1395
+ if (!(camel in source)) {
1396
+ out[camel] = value;
1397
+ }
1398
+ }
1399
+ return renamed ? out : params;
1400
+ }
1332
1401
  function createActionFunction(_serviceName, executeRequest, endpoint) {
1333
1402
  const { method, path, pathParams } = endpoint;
1334
1403
  return async (...args) => {
1335
- const pathParamMap = {};
1336
- let argIndex = 0;
1337
- for (const paramName of pathParams) {
1338
- if (argIndex < args.length) {
1339
- pathParamMap[paramName] = String(args[argIndex]);
1340
- argIndex++;
1341
- }
1342
- }
1343
- const remainingArg = argIndex < args.length ? args[argIndex] : void 0;
1404
+ const { pathParamMap, rest } = splitPathArgs(pathParams, args);
1405
+ const { body, query: trailing } = splitBodyAndQuery(method, rest);
1344
1406
  const hasQueryParams = endpoint.queryParams.length > 0;
1407
+ const query = normaliseLegacyParamCase(
1408
+ hasQueryParams ? trailing : void 0,
1409
+ endpoint.queryParams
1410
+ );
1411
+ const wireParams = (value) => method === "GET" ? normaliseLegacyParamCase(value, endpoint.queryParams) : value;
1345
1412
  const config = {
1346
1413
  method,
1347
1414
  path,
1348
1415
  ...hasQueryParams ? { paramsSchema: PassthroughParamsSchema } : {},
1349
1416
  responseSchema: PassthroughResponseSchema
1350
1417
  };
1351
- const hasPathParams = Object.keys(pathParamMap).length > 0;
1352
- if (hasPathParams) {
1353
- const params = hasQueryParams ? remainingArg : remainingArg ?? {};
1354
- return executeRequest(config, params, pathParamMap);
1418
+ if (Object.keys(pathParamMap).length > 0) {
1419
+ const params = wireParams(hasQueryParams ? body : body ?? {});
1420
+ return query === void 0 ? executeRequest(config, params, pathParamMap) : executeRequest(config, params, pathParamMap, query);
1355
1421
  }
1356
- if (hasQueryParams || remainingArg !== void 0) {
1357
- return executeRequest(config, remainingArg);
1422
+ if (hasQueryParams || body !== void 0) {
1423
+ return query === void 0 ? executeRequest(config, wireParams(body)) : executeRequest(config, wireParams(body), void 0, query);
1358
1424
  }
1359
1425
  return executeRequest(config);
1360
1426
  };
@@ -1436,6 +1502,17 @@ var UsergroupsListParamsSchema = v4.looseObject({
1436
1502
  orderBy: v4.optional(v4.string()),
1437
1503
  parentIdList: v4.optional(v4.string())
1438
1504
  });
1505
+ var UsersListParamsSchema = v4.looseObject({
1506
+ ...EdgeCacheParamsSchema.entries,
1507
+ accessLevelList: v4.optional(v4.string()),
1508
+ blocked: v4.optional(v4.pipe(v4.unknown(), v4.transform(Number))),
1509
+ contactId: v4.optional(v4.string()),
1510
+ customerId: v4.optional(v4.pipe(v4.unknown(), v4.transform(Number))),
1511
+ limit: v4.optional(v4.pipe(v4.unknown(), v4.transform(Number))),
1512
+ offset: v4.optional(v4.pipe(v4.unknown(), v4.transform(Number))),
1513
+ orderBy: v4.optional(v4.string()),
1514
+ q: v4.optional(v4.string())
1515
+ });
1439
1516
  var UsersCreateParamsSchema = v4.looseObject({
1440
1517
  accessLevelList: v4.optional(v4.string()),
1441
1518
  customerId: v4.optional(v4.pipe(v4.unknown(), v4.transform(Number))),
@@ -1451,7 +1528,8 @@ var UsersDocListParamsSchema = v4.looseObject({
1451
1528
  var UsersGroupsListParamsSchema = v4.looseObject({
1452
1529
  ...EdgeCacheParamsSchema.entries,
1453
1530
  limit: v4.optional(v4.pipe(v4.unknown(), v4.transform(Number))),
1454
- offset: v4.optional(v4.pipe(v4.unknown(), v4.transform(Number)))
1531
+ offset: v4.optional(v4.pipe(v4.unknown(), v4.transform(Number))),
1532
+ orderBy: v4.optional(v4.string())
1455
1533
  });
1456
1534
  var UsersTrinityListParamsSchema = v4.looseObject({
1457
1535
  ...EdgeCacheParamsSchema.entries,
@@ -1586,7 +1664,16 @@ var endpoints = [
1586
1664
  action: "list",
1587
1665
  aliases: [],
1588
1666
  pathParams: [],
1589
- queryParams: [],
1667
+ queryParams: [
1668
+ "accessLevelList",
1669
+ "blocked",
1670
+ "contactId",
1671
+ "customerId",
1672
+ "limit",
1673
+ "offset",
1674
+ "orderBy",
1675
+ "q"
1676
+ ],
1590
1677
  edgeCache: true,
1591
1678
  responseSchema: PassthroughDataSchema,
1592
1679
  responseType: "passthrough"
@@ -1670,7 +1757,7 @@ var endpoints = [
1670
1757
  action: "list",
1671
1758
  aliases: [],
1672
1759
  pathParams: ["id"],
1673
- queryParams: ["limit", "offset"],
1760
+ queryParams: ["limit", "offset", "orderBy"],
1674
1761
  edgeCache: true,
1675
1762
  responseSchema: PassthroughDataSchema,
1676
1763
  responseType: "passthrough"
@@ -1797,8 +1884,8 @@ function createPingResource(executeRequest) {
1797
1884
  var JoomlaClient = class extends BaseServiceClient {
1798
1885
  constructor(http, baseUrl = "https://joomla.augur-api.com") {
1799
1886
  super("joomla", http, baseUrl);
1800
- const boundExecuteRequest = (config, params, pathParams) => {
1801
- return this.executeRequest(config, params, pathParams);
1887
+ const boundExecuteRequest = (config, params, pathParams, query) => {
1888
+ return this.executeRequest(config, params, pathParams, query);
1802
1889
  };
1803
1890
  const proxy = createServiceProxy("joomla", boundExecuteRequest, endpoints);
1804
1891
  const dataProxy = createDataProxy(proxy);
@@ -1827,15 +1914,15 @@ var JoomlaClient = class extends BaseServiceClient {
1827
1914
  import * as v7 from "valibot";
1828
1915
  var CartHdrListListParamsSchema = v7.looseObject({
1829
1916
  ...EdgeCacheParamsSchema.entries,
1830
- user_id: v7.pipe(v7.unknown(), v7.transform(Number))
1917
+ userId: v7.pipe(v7.unknown(), v7.transform(Number))
1831
1918
  });
1832
1919
  var CartHdrLookupGetParamsSchema = v7.looseObject({
1833
1920
  ...EdgeCacheParamsSchema.entries,
1834
- cart_token: v7.optional(v7.string()),
1835
- contact_id: v7.pipe(v7.unknown(), v7.transform(Number)),
1836
- customer_id: v7.pipe(v7.unknown(), v7.transform(Number)),
1837
- user_cart_no: v7.optional(v7.pipe(v7.unknown(), v7.transform(Number))),
1838
- user_id: v7.pipe(v7.unknown(), v7.transform(Number))
1921
+ cartToken: v7.optional(v7.string()),
1922
+ contactId: v7.pipe(v7.unknown(), v7.transform(Number)),
1923
+ customerId: v7.pipe(v7.unknown(), v7.transform(Number)),
1924
+ userCartNo: v7.optional(v7.pipe(v7.unknown(), v7.transform(Number))),
1925
+ userId: v7.pipe(v7.unknown(), v7.transform(Number))
1839
1926
  });
1840
1927
  var CartHdrAlsoBoughtListParamsSchema = v7.looseObject({
1841
1928
  ...EdgeCacheParamsSchema.entries,
@@ -1844,7 +1931,7 @@ var CartHdrAlsoBoughtListParamsSchema = v7.looseObject({
1844
1931
  });
1845
1932
  var CheckoutDocListParamsSchema = v7.looseObject({
1846
1933
  ...EdgeCacheParamsSchema.entries,
1847
- cart_hdr_uid: v7.optional(v7.pipe(v7.unknown(), v7.transform(Number)))
1934
+ cartHdrUid: v7.optional(v7.pipe(v7.unknown(), v7.transform(Number)))
1848
1935
  });
1849
1936
  var PassthroughDataSchema2 = v7.record(v7.string(), v7.unknown());
1850
1937
 
@@ -1857,7 +1944,7 @@ var endpoints2 = [
1857
1944
  action: "list",
1858
1945
  aliases: [],
1859
1946
  pathParams: [],
1860
- queryParams: ["user_id"],
1947
+ queryParams: ["userId"],
1861
1948
  edgeCache: true,
1862
1949
  responseSchema: PassthroughDataSchema2,
1863
1950
  responseType: "passthrough"
@@ -1869,7 +1956,7 @@ var endpoints2 = [
1869
1956
  action: "get",
1870
1957
  aliases: [],
1871
1958
  pathParams: [],
1872
- queryParams: ["cart_token", "contact_id", "customer_id", "user_cart_no", "user_id"],
1959
+ queryParams: ["cartToken", "contactId", "customerId", "userCartNo", "userId"],
1873
1960
  edgeCache: true,
1874
1961
  responseSchema: PassthroughDataSchema2,
1875
1962
  responseType: "passthrough"
@@ -1989,7 +2076,7 @@ var endpoints2 = [
1989
2076
  action: "list",
1990
2077
  aliases: ["get"],
1991
2078
  pathParams: ["checkoutUid"],
1992
- queryParams: ["cart_hdr_uid"],
2079
+ queryParams: ["cartHdrUid"],
1993
2080
  edgeCache: true,
1994
2081
  responseSchema: PassthroughDataSchema2,
1995
2082
  responseType: "passthrough"
@@ -2068,8 +2155,8 @@ function createHealthCheckDataResource2(healthCheck) {
2068
2155
  var CommerceClient = class extends BaseServiceClient {
2069
2156
  constructor(http, baseUrl = "https://commerce.augur-api.com") {
2070
2157
  super("commerce", http, baseUrl);
2071
- const boundExecuteRequest = (config, params, pathParams) => {
2072
- return this.executeRequest(config, params, pathParams);
2158
+ const boundExecuteRequest = (config, params, pathParams, query) => {
2159
+ return this.executeRequest(config, params, pathParams, query);
2073
2160
  };
2074
2161
  const proxy = createServiceProxy(
2075
2162
  "commerce",
@@ -2517,8 +2604,8 @@ function createPingDataResource(ping) {
2517
2604
  var PricingClient = class extends BaseServiceClient {
2518
2605
  constructor(http, baseUrl = "https://pricing.augur-api.com") {
2519
2606
  super("pricing", http, baseUrl);
2520
- const boundExecuteRequest = (config, params, pathParams) => {
2521
- return this.executeRequest(config, params, pathParams);
2607
+ const boundExecuteRequest = (config, params, pathParams, query) => {
2608
+ return this.executeRequest(config, params, pathParams, query);
2522
2609
  };
2523
2610
  const proxy = createServiceProxy("pricing", boundExecuteRequest, endpoints3);
2524
2611
  const dataProxy = createDataProxy(proxy);
@@ -3432,8 +3519,8 @@ function createPingDataResource2(ping) {
3432
3519
  var VMIClient = class extends BaseServiceClient {
3433
3520
  constructor(http, baseUrl = "https://vmi.augur-api.com") {
3434
3521
  super("vmi", http, baseUrl);
3435
- const boundExecuteRequest = (config, params, pathParams) => {
3436
- return this.executeRequest(config, params, pathParams);
3522
+ const boundExecuteRequest = (config, params, pathParams, query) => {
3523
+ return this.executeRequest(config, params, pathParams, query);
3437
3524
  };
3438
3525
  const proxy = createServiceProxy("vmi", boundExecuteRequest, endpoints4);
3439
3526
  const dataProxy = createDataProxy(proxy);
@@ -3482,6 +3569,28 @@ var ItemSearchListParamsSchema = v10.looseObject({
3482
3569
  tags: v10.optional(v10.string()),
3483
3570
  variantFilter: v10.optional(v10.string())
3484
3571
  });
3572
+ var ItemSearchFacetsListParamsSchema = v10.looseObject({
3573
+ ...EdgeCacheParamsSchema.entries,
3574
+ classId5ExcludeList: v10.optional(v10.string()),
3575
+ classId5List: v10.optional(v10.string()),
3576
+ discontinuedAny: v10.optional(v10.string()),
3577
+ fields: v10.optional(v10.string()),
3578
+ filters: v10.optional(v10.string()),
3579
+ from: v10.optional(v10.pipe(v10.unknown(), v10.transform(Number))),
3580
+ itemCategoryUidList: v10.optional(v10.string()),
3581
+ jobNumbers: v10.optional(v10.string()),
3582
+ operator: v10.optional(v10.string()),
3583
+ parentCategoryUid: v10.optional(v10.pipe(v10.unknown(), v10.transform(Number))),
3584
+ q: v10.string(),
3585
+ searchType: v10.optional(v10.string()),
3586
+ size: v10.optional(v10.pipe(v10.unknown(), v10.transform(Number))),
3587
+ sort: v10.optional(v10.string()),
3588
+ sourceFieldsList: v10.optional(v10.string()),
3589
+ stockStatus: v10.optional(v10.string()),
3590
+ tags: v10.optional(v10.string()),
3591
+ useBrandFolderDoc: v10.optional(v10.string()),
3592
+ variantFilter: v10.optional(v10.string())
3593
+ });
3485
3594
  var ItemSearchAttributesListParamsSchema = v10.looseObject({
3486
3595
  ...EdgeCacheParamsSchema.entries,
3487
3596
  cacheSiteId: v10.optional(v10.string()),
@@ -3528,7 +3637,8 @@ var QueryStringRedirectDataSchema = v10.looseObject({
3528
3637
  dateLastModified: v10.optional(v10.string()),
3529
3638
  updateCd: v10.optional(v10.number()),
3530
3639
  statusCd: v10.optional(v10.number()),
3531
- processCd: v10.optional(v10.number())
3640
+ processCd: v10.optional(v10.number()),
3641
+ queryString: v10.optional(v10.nullable(v10.string()))
3532
3642
  });
3533
3643
  var SuggestionsDataSchema = v10.looseObject({
3534
3644
  suggestionsUid: v10.optional(v10.number()),
@@ -3577,6 +3687,38 @@ var endpoints5 = [
3577
3687
  responseSchema: PassthroughDataSchema5,
3578
3688
  responseType: "passthrough"
3579
3689
  },
3690
+ {
3691
+ method: "GET",
3692
+ path: "/item-search-facets",
3693
+ chain: "itemSearchFacets",
3694
+ action: "list",
3695
+ aliases: [],
3696
+ pathParams: [],
3697
+ queryParams: [
3698
+ "classId5ExcludeList",
3699
+ "classId5List",
3700
+ "discontinuedAny",
3701
+ "fields",
3702
+ "filters",
3703
+ "from",
3704
+ "itemCategoryUidList",
3705
+ "jobNumbers",
3706
+ "operator",
3707
+ "parentCategoryUid",
3708
+ "q",
3709
+ "searchType",
3710
+ "size",
3711
+ "sort",
3712
+ "sourceFieldsList",
3713
+ "stockStatus",
3714
+ "tags",
3715
+ "useBrandFolderDoc",
3716
+ "variantFilter"
3717
+ ],
3718
+ edgeCache: true,
3719
+ responseSchema: PassthroughDataSchema5,
3720
+ responseType: "passthrough"
3721
+ },
3580
3722
  {
3581
3723
  method: "GET",
3582
3724
  path: "/item-search/attributes",
@@ -3845,8 +3987,8 @@ function createHealthCheckDataResource5(healthCheck) {
3845
3987
  var OpenSearchClient = class extends BaseServiceClient {
3846
3988
  constructor(http, baseUrl = "https://open-search.augur-api.com") {
3847
3989
  super("open-search", http, baseUrl);
3848
- const boundExecuteRequest = (config, params, pathParams) => {
3849
- return this.executeRequest(config, params, pathParams);
3990
+ const boundExecuteRequest = (config, params, pathParams, query) => {
3991
+ return this.executeRequest(config, params, pathParams, query);
3850
3992
  };
3851
3993
  const proxy = createServiceProxy(
3852
3994
  "open-search",
@@ -3855,10 +3997,12 @@ var OpenSearchClient = class extends BaseServiceClient {
3855
3997
  );
3856
3998
  const dataProxy = createDataProxy(proxy);
3857
3999
  this.itemSearch = proxy.itemSearch;
4000
+ this.itemSearchFacets = proxy.itemSearchFacets;
3858
4001
  this.items = proxy.items;
3859
4002
  this.queryStringRedirect = proxy.queryStringRedirect;
3860
4003
  this.suggestions = proxy.suggestions;
3861
4004
  this.itemSearchData = dataProxy.itemSearch;
4005
+ this.itemSearchFacetsData = dataProxy.itemSearchFacets;
3862
4006
  this.itemsData = dataProxy.items;
3863
4007
  this.queryStringRedirectData = dataProxy.queryStringRedirect;
3864
4008
  this.suggestionsData = dataProxy.suggestions;
@@ -3903,6 +4047,8 @@ var AttributesItemsListParamsSchema = v11.looseObject({
3903
4047
  attributeValueUid: v11.optional(v11.pipe(v11.unknown(), v11.transform(Number))),
3904
4048
  excludeValues: v11.optional(v11.string()),
3905
4049
  includeValues: v11.optional(v11.string()),
4050
+ itemId: v11.optional(v11.string()),
4051
+ itemIdSearch: v11.optional(v11.string()),
3906
4052
  limit: v11.optional(v11.pipe(v11.unknown(), v11.transform(Number))),
3907
4053
  offset: v11.optional(v11.pipe(v11.unknown(), v11.transform(Number))),
3908
4054
  orderBy: v11.optional(v11.string()),
@@ -4257,7 +4403,10 @@ var AttributesItemsDataSchema = v11.looseObject({
4257
4403
  processCd: v11.optional(v11.number()),
4258
4404
  statusCd: v11.optional(v11.number()),
4259
4405
  attributeValueUid: v11.optional(v11.number()),
4260
- onlineCd: v11.optional(v11.number())
4406
+ onlineCd: v11.optional(v11.number()),
4407
+ attributeDesc: v11.optional(v11.nullable(v11.string())),
4408
+ attributeId: v11.optional(v11.string()),
4409
+ itemId: v11.optional(v11.string())
4261
4410
  });
4262
4411
  var AttributesValuesDataSchema = v11.looseObject({
4263
4412
  attributeValueUid: v11.optional(v11.number()),
@@ -4349,7 +4498,23 @@ var InvLocDataSchema = v11.looseObject({
4349
4498
  updateCd: v11.optional(v11.number()),
4350
4499
  productGroupId: v11.optional(v11.nullable(v11.string())),
4351
4500
  purchaseDiscountGroup: v11.optional(v11.nullable(v11.string())),
4352
- salesDiscountGroup: v11.optional(v11.nullable(v11.string()))
4501
+ salesDiscountGroup: v11.optional(v11.nullable(v11.string())),
4502
+ purchaseClass: v11.optional(v11.nullable(v11.string()))
4503
+ });
4504
+ var InvMastAttributesDataSchema = v11.looseObject({
4505
+ itemAttributeValueUid: v11.optional(v11.number()),
4506
+ invMastUid: v11.optional(v11.number()),
4507
+ attributeUid: v11.optional(v11.number()),
4508
+ attributeValue: v11.optional(v11.nullable(v11.string())),
4509
+ dateCreated: v11.optional(v11.string()),
4510
+ createdBy: v11.optional(v11.string()),
4511
+ dateLastModified: v11.optional(v11.string()),
4512
+ lastMaintainedBy: v11.optional(v11.string()),
4513
+ updateCd: v11.optional(v11.number()),
4514
+ processCd: v11.optional(v11.number()),
4515
+ statusCd: v11.optional(v11.number()),
4516
+ attributeValueUid: v11.optional(v11.number()),
4517
+ onlineCd: v11.optional(v11.number())
4353
4518
  });
4354
4519
  var InvMastFaqDataSchema = v11.looseObject({
4355
4520
  invMastFaqUid: v11.optional(v11.number()),
@@ -4595,6 +4760,8 @@ var endpoints6 = [
4595
4760
  "attributeValueUid",
4596
4761
  "excludeValues",
4597
4762
  "includeValues",
4763
+ "itemId",
4764
+ "itemIdSearch",
4598
4765
  "limit",
4599
4766
  "offset",
4600
4767
  "orderBy",
@@ -5074,7 +5241,7 @@ var endpoints6 = [
5074
5241
  pathParams: ["invMastUid"],
5075
5242
  queryParams: [],
5076
5243
  edgeCache: false,
5077
- responseSchema: AttributesItemsDataSchema,
5244
+ responseSchema: InvMastAttributesDataSchema,
5078
5245
  responseType: "object"
5079
5246
  },
5080
5247
  {
@@ -5098,7 +5265,7 @@ var endpoints6 = [
5098
5265
  pathParams: ["invMastUid", "attributeUid"],
5099
5266
  queryParams: [],
5100
5267
  edgeCache: false,
5101
- responseSchema: AttributesItemsDataSchema,
5268
+ responseSchema: InvMastAttributesDataSchema,
5102
5269
  responseType: "object"
5103
5270
  },
5104
5271
  {
@@ -5110,7 +5277,7 @@ var endpoints6 = [
5110
5277
  pathParams: ["invMastUid", "attributeUid", "attributeValueUid"],
5111
5278
  queryParams: [],
5112
5279
  edgeCache: false,
5113
- responseSchema: AttributesItemsDataSchema,
5280
+ responseSchema: InvMastAttributesDataSchema,
5114
5281
  responseType: "object"
5115
5282
  },
5116
5283
  {
@@ -5840,8 +6007,8 @@ function createWhoamiDataResource(whoami) {
5840
6007
  var ItemsClient = class extends BaseServiceClient {
5841
6008
  constructor(http, baseUrl = "https://items.augur-api.com") {
5842
6009
  super("items", http, baseUrl);
5843
- const boundExecuteRequest = (config, params, pathParams) => {
5844
- return this.executeRequest(config, params, pathParams);
6010
+ const boundExecuteRequest = (config, params, pathParams, query) => {
6011
+ return this.executeRequest(config, params, pathParams, query);
5845
6012
  };
5846
6013
  const proxy = createServiceProxy("items", boundExecuteRequest, endpoints6);
5847
6014
  const dataProxy = createDataProxy(proxy);
@@ -6306,8 +6473,8 @@ function createHealthCheckDataResource7(healthCheck) {
6306
6473
  var LegacyClient = class extends BaseServiceClient {
6307
6474
  constructor(http, baseUrl = "https://legacy.augur-api.com") {
6308
6475
  super("legacy", http, baseUrl);
6309
- const boundExecuteRequest = (config, params, pathParams) => {
6310
- return this.executeRequest(config, params, pathParams);
6476
+ const boundExecuteRequest = (config, params, pathParams, query) => {
6477
+ return this.executeRequest(config, params, pathParams, query);
6311
6478
  };
6312
6479
  const proxy = createServiceProxy("legacy", boundExecuteRequest, endpoints7);
6313
6480
  const dataProxy = createDataProxy(proxy);
@@ -6337,11 +6504,6 @@ var BinTransferListParamsSchema = v14.looseObject({
6337
6504
  offset: v14.optional(v14.pipe(v14.unknown(), v14.transform(Number))),
6338
6505
  statusCd: v14.optional(v14.pipe(v14.unknown(), v14.transform(Number)))
6339
6506
  });
6340
- var BinTransferCreateParamsSchema = v14.looseObject({
6341
- limit: v14.optional(v14.pipe(v14.unknown(), v14.transform(Number))),
6342
- offset: v14.optional(v14.pipe(v14.unknown(), v14.transform(Number))),
6343
- statusCd: v14.optional(v14.pipe(v14.unknown(), v14.transform(Number)))
6344
- });
6345
6507
  var PurchaseOrderReceiptListParamsSchema = v14.looseObject({
6346
6508
  ...EdgeCacheParamsSchema.entries,
6347
6509
  limit: v14.optional(v14.pipe(v14.unknown(), v14.transform(Number))),
@@ -6349,12 +6511,6 @@ var PurchaseOrderReceiptListParamsSchema = v14.looseObject({
6349
6511
  referenceNo: v14.optional(v14.string()),
6350
6512
  statusCd: v14.optional(v14.pipe(v14.unknown(), v14.transform(Number)))
6351
6513
  });
6352
- var PurchaseOrderReceiptCreateParamsSchema = v14.looseObject({
6353
- limit: v14.optional(v14.pipe(v14.unknown(), v14.transform(Number))),
6354
- offset: v14.optional(v14.pipe(v14.unknown(), v14.transform(Number))),
6355
- referenceNo: v14.optional(v14.string()),
6356
- statusCd: v14.optional(v14.pipe(v14.unknown(), v14.transform(Number)))
6357
- });
6358
6514
  var ReceivingListParamsSchema = v14.looseObject({
6359
6515
  ...EdgeCacheParamsSchema.entries,
6360
6516
  limit: v14.optional(v14.pipe(v14.unknown(), v14.transform(Number))),
@@ -6362,12 +6518,6 @@ var ReceivingListParamsSchema = v14.looseObject({
6362
6518
  poNo: v14.optional(v14.pipe(v14.unknown(), v14.transform(Number))),
6363
6519
  statusCd: v14.optional(v14.pipe(v14.unknown(), v14.transform(Number)))
6364
6520
  });
6365
- var ReceivingCreateParamsSchema = v14.looseObject({
6366
- limit: v14.optional(v14.pipe(v14.unknown(), v14.transform(Number))),
6367
- offset: v14.optional(v14.pipe(v14.unknown(), v14.transform(Number))),
6368
- poNo: v14.optional(v14.pipe(v14.unknown(), v14.transform(Number))),
6369
- statusCd: v14.optional(v14.pipe(v14.unknown(), v14.transform(Number)))
6370
- });
6371
6521
  var TransferListParamsSchema = v14.looseObject({
6372
6522
  ...EdgeCacheParamsSchema.entries,
6373
6523
  limit: v14.optional(v14.pipe(v14.unknown(), v14.transform(Number))),
@@ -6375,12 +6525,6 @@ var TransferListParamsSchema = v14.looseObject({
6375
6525
  referenceNo: v14.optional(v14.string()),
6376
6526
  statusCd: v14.optional(v14.pipe(v14.unknown(), v14.transform(Number)))
6377
6527
  });
6378
- var TransferCreateParamsSchema = v14.looseObject({
6379
- limit: v14.optional(v14.pipe(v14.unknown(), v14.transform(Number))),
6380
- offset: v14.optional(v14.pipe(v14.unknown(), v14.transform(Number))),
6381
- referenceNo: v14.optional(v14.string()),
6382
- statusCd: v14.optional(v14.pipe(v14.unknown(), v14.transform(Number)))
6383
- });
6384
6528
  var TransferReceiptListParamsSchema = v14.looseObject({
6385
6529
  ...EdgeCacheParamsSchema.entries,
6386
6530
  limit: v14.optional(v14.pipe(v14.unknown(), v14.transform(Number))),
@@ -6388,12 +6532,6 @@ var TransferReceiptListParamsSchema = v14.looseObject({
6388
6532
  referenceNo: v14.optional(v14.string()),
6389
6533
  statusCd: v14.optional(v14.pipe(v14.unknown(), v14.transform(Number)))
6390
6534
  });
6391
- var TransferReceiptCreateParamsSchema = v14.looseObject({
6392
- limit: v14.optional(v14.pipe(v14.unknown(), v14.transform(Number))),
6393
- offset: v14.optional(v14.pipe(v14.unknown(), v14.transform(Number))),
6394
- referenceNo: v14.optional(v14.string()),
6395
- statusCd: v14.optional(v14.pipe(v14.unknown(), v14.transform(Number)))
6396
- });
6397
6535
  var TransferShippingListParamsSchema = v14.looseObject({
6398
6536
  ...EdgeCacheParamsSchema.entries,
6399
6537
  limit: v14.optional(v14.pipe(v14.unknown(), v14.transform(Number))),
@@ -6401,12 +6539,6 @@ var TransferShippingListParamsSchema = v14.looseObject({
6401
6539
  referenceNo: v14.optional(v14.string()),
6402
6540
  statusCd: v14.optional(v14.pipe(v14.unknown(), v14.transform(Number)))
6403
6541
  });
6404
- var TransferShippingCreateParamsSchema = v14.looseObject({
6405
- limit: v14.optional(v14.pipe(v14.unknown(), v14.transform(Number))),
6406
- offset: v14.optional(v14.pipe(v14.unknown(), v14.transform(Number))),
6407
- referenceNo: v14.optional(v14.string()),
6408
- statusCd: v14.optional(v14.pipe(v14.unknown(), v14.transform(Number)))
6409
- });
6410
6542
  var BinTransferDataSchema = v14.looseObject({
6411
6543
  binTransferHdrUid: v14.optional(v14.number()),
6412
6544
  importState: v14.optional(v14.string()),
@@ -6496,6 +6628,30 @@ var PassthroughDataSchema8 = v14.record(v14.string(), v14.unknown());
6496
6628
 
6497
6629
  // src/services/nexus/generated/endpoints.ts
6498
6630
  var endpoints8 = [
6631
+ {
6632
+ method: "GET",
6633
+ path: "/bin-transfer",
6634
+ chain: "binTransfer",
6635
+ action: "list",
6636
+ aliases: [],
6637
+ pathParams: [],
6638
+ queryParams: ["limit", "offset", "statusCd"],
6639
+ edgeCache: true,
6640
+ responseSchema: BinTransferDataSchema,
6641
+ responseType: "array"
6642
+ },
6643
+ {
6644
+ method: "POST",
6645
+ path: "/bin-transfer",
6646
+ chain: "binTransfer",
6647
+ action: "create",
6648
+ aliases: [],
6649
+ pathParams: [],
6650
+ queryParams: [],
6651
+ edgeCache: false,
6652
+ responseSchema: BinTransferDataSchema,
6653
+ responseType: "object"
6654
+ },
6499
6655
  {
6500
6656
  method: "GET",
6501
6657
  path: "/bin-transfer/{binTransferHdrUid}",
@@ -6534,38 +6690,38 @@ var endpoints8 = [
6534
6690
  },
6535
6691
  {
6536
6692
  method: "GET",
6537
- path: "/bin-transfer",
6538
- chain: "binTransfer",
6693
+ path: "/bin-transfer/{binTransferHdrUid}/status",
6694
+ chain: "binTransfer.status",
6695
+ action: "list",
6696
+ aliases: [],
6697
+ pathParams: ["binTransferHdrUid"],
6698
+ queryParams: [],
6699
+ edgeCache: true,
6700
+ responseSchema: BinTransferStatusDataSchema,
6701
+ responseType: "object"
6702
+ },
6703
+ {
6704
+ method: "GET",
6705
+ path: "/purchase-order-receipt",
6706
+ chain: "purchaseOrderReceipt",
6539
6707
  action: "list",
6540
6708
  aliases: [],
6541
6709
  pathParams: [],
6542
- queryParams: ["limit", "offset", "statusCd"],
6710
+ queryParams: ["limit", "offset", "referenceNo", "statusCd"],
6543
6711
  edgeCache: true,
6544
- responseSchema: BinTransferDataSchema,
6712
+ responseSchema: PurchaseOrderReceiptDataSchema,
6545
6713
  responseType: "array"
6546
6714
  },
6547
6715
  {
6548
6716
  method: "POST",
6549
- path: "/bin-transfer",
6550
- chain: "binTransfer",
6717
+ path: "/purchase-order-receipt",
6718
+ chain: "purchaseOrderReceipt",
6551
6719
  action: "create",
6552
6720
  aliases: [],
6553
6721
  pathParams: [],
6554
- queryParams: ["limit", "offset", "statusCd"],
6555
- edgeCache: false,
6556
- responseSchema: BinTransferDataSchema,
6557
- responseType: "object"
6558
- },
6559
- {
6560
- method: "GET",
6561
- path: "/bin-transfer/{binTransferHdrUid}/status",
6562
- chain: "binTransfer.status",
6563
- action: "list",
6564
- aliases: [],
6565
- pathParams: ["binTransferHdrUid"],
6566
6722
  queryParams: [],
6567
- edgeCache: true,
6568
- responseSchema: BinTransferStatusDataSchema,
6723
+ edgeCache: false,
6724
+ responseSchema: PurchaseOrderReceiptDataSchema,
6569
6725
  responseType: "object"
6570
6726
  },
6571
6727
  {
@@ -6606,26 +6762,26 @@ var endpoints8 = [
6606
6762
  },
6607
6763
  {
6608
6764
  method: "GET",
6609
- path: "/purchase-order-receipt",
6610
- chain: "purchaseOrderReceipt",
6765
+ path: "/receiving",
6766
+ chain: "receiving",
6611
6767
  action: "list",
6612
6768
  aliases: [],
6613
6769
  pathParams: [],
6614
- queryParams: ["limit", "offset", "referenceNo", "statusCd"],
6770
+ queryParams: ["limit", "offset", "poNo", "statusCd"],
6615
6771
  edgeCache: true,
6616
- responseSchema: PurchaseOrderReceiptDataSchema,
6772
+ responseSchema: ReceivingDataSchema,
6617
6773
  responseType: "array"
6618
6774
  },
6619
6775
  {
6620
6776
  method: "POST",
6621
- path: "/purchase-order-receipt",
6622
- chain: "purchaseOrderReceipt",
6777
+ path: "/receiving",
6778
+ chain: "receiving",
6623
6779
  action: "create",
6624
6780
  aliases: [],
6625
6781
  pathParams: [],
6626
- queryParams: ["limit", "offset", "referenceNo", "statusCd"],
6782
+ queryParams: [],
6627
6783
  edgeCache: false,
6628
- responseSchema: PurchaseOrderReceiptDataSchema,
6784
+ responseSchema: ReceivingDataSchema,
6629
6785
  responseType: "object"
6630
6786
  },
6631
6787
  {
@@ -6666,59 +6822,23 @@ var endpoints8 = [
6666
6822
  },
6667
6823
  {
6668
6824
  method: "GET",
6669
- path: "/receiving",
6670
- chain: "receiving",
6825
+ path: "/transfer",
6826
+ chain: "transfer",
6671
6827
  action: "list",
6672
6828
  aliases: [],
6673
6829
  pathParams: [],
6674
- queryParams: ["limit", "offset", "poNo", "statusCd"],
6830
+ queryParams: ["limit", "offset", "referenceNo", "statusCd"],
6675
6831
  edgeCache: true,
6676
- responseSchema: ReceivingDataSchema,
6832
+ responseSchema: TransferDataSchema,
6677
6833
  responseType: "array"
6678
6834
  },
6679
6835
  {
6680
6836
  method: "POST",
6681
- path: "/receiving",
6682
- chain: "receiving",
6837
+ path: "/transfer",
6838
+ chain: "transfer",
6683
6839
  action: "create",
6684
6840
  aliases: [],
6685
6841
  pathParams: [],
6686
- queryParams: ["limit", "offset", "poNo", "statusCd"],
6687
- edgeCache: false,
6688
- responseSchema: ReceivingDataSchema,
6689
- responseType: "object"
6690
- },
6691
- {
6692
- method: "GET",
6693
- path: "/transfer/{transferUid}",
6694
- chain: "transfer",
6695
- action: "get",
6696
- aliases: [],
6697
- pathParams: ["transferUid"],
6698
- queryParams: [],
6699
- edgeCache: true,
6700
- responseSchema: TransferDataSchema,
6701
- responseType: "object"
6702
- },
6703
- {
6704
- method: "PUT",
6705
- path: "/transfer/{transferUid}",
6706
- chain: "transfer",
6707
- action: "update",
6708
- aliases: [],
6709
- pathParams: ["transferUid"],
6710
- queryParams: [],
6711
- edgeCache: false,
6712
- responseSchema: TransferDataSchema,
6713
- responseType: "object"
6714
- },
6715
- {
6716
- method: "DELETE",
6717
- path: "/transfer/{transferUid}",
6718
- chain: "transfer",
6719
- action: "delete",
6720
- aliases: [],
6721
- pathParams: ["transferUid"],
6722
6842
  queryParams: [],
6723
6843
  edgeCache: false,
6724
6844
  responseSchema: TransferDataSchema,
@@ -6726,26 +6846,26 @@ var endpoints8 = [
6726
6846
  },
6727
6847
  {
6728
6848
  method: "GET",
6729
- path: "/transfer",
6730
- chain: "transfer",
6849
+ path: "/transfer-receipt",
6850
+ chain: "transferReceipt",
6731
6851
  action: "list",
6732
6852
  aliases: [],
6733
6853
  pathParams: [],
6734
6854
  queryParams: ["limit", "offset", "referenceNo", "statusCd"],
6735
6855
  edgeCache: true,
6736
- responseSchema: TransferDataSchema,
6856
+ responseSchema: TransferReceiptDataSchema,
6737
6857
  responseType: "array"
6738
6858
  },
6739
6859
  {
6740
6860
  method: "POST",
6741
- path: "/transfer",
6742
- chain: "transfer",
6861
+ path: "/transfer-receipt",
6862
+ chain: "transferReceipt",
6743
6863
  action: "create",
6744
6864
  aliases: [],
6745
6865
  pathParams: [],
6746
- queryParams: ["limit", "offset", "referenceNo", "statusCd"],
6866
+ queryParams: [],
6747
6867
  edgeCache: false,
6748
- responseSchema: TransferDataSchema,
6868
+ responseSchema: TransferReceiptDataSchema,
6749
6869
  responseType: "object"
6750
6870
  },
6751
6871
  {
@@ -6786,8 +6906,8 @@ var endpoints8 = [
6786
6906
  },
6787
6907
  {
6788
6908
  method: "GET",
6789
- path: "/transfer-receipt",
6790
- chain: "transferReceipt",
6909
+ path: "/transfer-shipping",
6910
+ chain: "transferShipping",
6791
6911
  action: "list",
6792
6912
  aliases: [],
6793
6913
  pathParams: [],
@@ -6798,12 +6918,12 @@ var endpoints8 = [
6798
6918
  },
6799
6919
  {
6800
6920
  method: "POST",
6801
- path: "/transfer-receipt",
6802
- chain: "transferReceipt",
6921
+ path: "/transfer-shipping",
6922
+ chain: "transferShipping",
6803
6923
  action: "create",
6804
6924
  aliases: [],
6805
6925
  pathParams: [],
6806
- queryParams: ["limit", "offset", "referenceNo", "statusCd"],
6926
+ queryParams: [],
6807
6927
  edgeCache: false,
6808
6928
  responseSchema: TransferReceiptDataSchema,
6809
6929
  responseType: "object"
@@ -6846,26 +6966,38 @@ var endpoints8 = [
6846
6966
  },
6847
6967
  {
6848
6968
  method: "GET",
6849
- path: "/transfer-shipping",
6850
- chain: "transferShipping",
6851
- action: "list",
6969
+ path: "/transfer/{transferUid}",
6970
+ chain: "transfer",
6971
+ action: "get",
6972
+ aliases: [],
6973
+ pathParams: ["transferUid"],
6974
+ queryParams: [],
6975
+ edgeCache: true,
6976
+ responseSchema: TransferDataSchema,
6977
+ responseType: "object"
6978
+ },
6979
+ {
6980
+ method: "PUT",
6981
+ path: "/transfer/{transferUid}",
6982
+ chain: "transfer",
6983
+ action: "update",
6852
6984
  aliases: [],
6853
- pathParams: [],
6854
- queryParams: ["limit", "offset", "referenceNo", "statusCd"],
6855
- edgeCache: true,
6856
- responseSchema: TransferReceiptDataSchema,
6857
- responseType: "array"
6985
+ pathParams: ["transferUid"],
6986
+ queryParams: [],
6987
+ edgeCache: false,
6988
+ responseSchema: TransferDataSchema,
6989
+ responseType: "object"
6858
6990
  },
6859
6991
  {
6860
- method: "POST",
6861
- path: "/transfer-shipping",
6862
- chain: "transferShipping",
6863
- action: "create",
6992
+ method: "DELETE",
6993
+ path: "/transfer/{transferUid}",
6994
+ chain: "transfer",
6995
+ action: "delete",
6864
6996
  aliases: [],
6865
- pathParams: [],
6866
- queryParams: ["limit", "offset", "referenceNo", "statusCd"],
6997
+ pathParams: ["transferUid"],
6998
+ queryParams: [],
6867
6999
  edgeCache: false,
6868
- responseSchema: TransferReceiptDataSchema,
7000
+ responseSchema: TransferDataSchema,
6869
7001
  responseType: "object"
6870
7002
  }
6871
7003
  ];
@@ -6944,8 +7076,8 @@ function createPingDataResource5(ping) {
6944
7076
  var NexusClient = class extends BaseServiceClient {
6945
7077
  constructor(http, baseUrl = "https://nexus.augur-api.com") {
6946
7078
  super("nexus", http, baseUrl);
6947
- const boundExecuteRequest = (config, params, pathParams) => {
6948
- return this.executeRequest(config, params, pathParams);
7079
+ const boundExecuteRequest = (config, params, pathParams, query) => {
7080
+ return this.executeRequest(config, params, pathParams, query);
6949
7081
  };
6950
7082
  const proxy = createServiceProxy("nexus", boundExecuteRequest, endpoints8);
6951
7083
  const dataProxy = createDataProxy(proxy);
@@ -7025,6 +7157,14 @@ var TrainingConversationsMessagesListParamsSchema = v15.looseObject({
7025
7157
  offset: v15.optional(v15.pipe(v15.unknown(), v15.transform(Number))),
7026
7158
  orderBy: v15.optional(v15.string())
7027
7159
  });
7160
+ var UsersAddressesListParamsSchema = v15.looseObject({
7161
+ ...EdgeCacheParamsSchema.entries,
7162
+ emailAddress: v15.optional(v15.string()),
7163
+ limit: v15.optional(v15.pipe(v15.unknown(), v15.transform(Number))),
7164
+ offset: v15.optional(v15.pipe(v15.unknown(), v15.transform(Number))),
7165
+ orderBy: v15.optional(v15.string()),
7166
+ statusCd: v15.optional(v15.pipe(v15.unknown(), v15.transform(Number)))
7167
+ });
7028
7168
  var FyxerTranscriptDataSchema = v15.looseObject({
7029
7169
  fyxerTranscriptHdrUid: v15.optional(v15.number()),
7030
7170
  link: v15.optional(v15.string()),
@@ -7144,6 +7284,26 @@ var TrainingConversationsMessagesDataSchema = v15.looseObject({
7144
7284
  dateCreated: v15.optional(v15.string()),
7145
7285
  dateLastModified: v15.optional(v15.string())
7146
7286
  });
7287
+ var UsersAddressesDataSchema = v15.looseObject({
7288
+ userAddressUid: v15.optional(v15.number()),
7289
+ userId: v15.optional(v15.number()),
7290
+ address1: v15.optional(v15.nullable(v15.string())),
7291
+ address2: v15.optional(v15.nullable(v15.string())),
7292
+ address3: v15.optional(v15.nullable(v15.string())),
7293
+ city: v15.optional(v15.nullable(v15.string())),
7294
+ state: v15.optional(v15.nullable(v15.string())),
7295
+ postalCode: v15.optional(v15.nullable(v15.string())),
7296
+ country: v15.optional(v15.nullable(v15.string())),
7297
+ emailAddress: v15.optional(v15.nullable(v15.string())),
7298
+ name: v15.optional(v15.nullable(v15.string())),
7299
+ phoneNumberMain: v15.optional(v15.nullable(v15.string())),
7300
+ phoneNumberMobile: v15.optional(v15.nullable(v15.string())),
7301
+ dateCreated: v15.optional(v15.string()),
7302
+ dateLastModified: v15.optional(v15.string()),
7303
+ updateCd: v15.optional(v15.number()),
7304
+ statusCd: v15.optional(v15.number()),
7305
+ processCd: v15.optional(v15.number())
7306
+ });
7147
7307
  var PassthroughDataSchema9 = v15.record(v15.string(), v15.unknown());
7148
7308
 
7149
7309
  // src/services/agr-site/generated/endpoints.ts
@@ -7160,6 +7320,18 @@ var endpoints9 = [
7160
7320
  responseSchema: PassthroughDataSchema9,
7161
7321
  responseType: "passthrough"
7162
7322
  },
7323
+ {
7324
+ method: "POST",
7325
+ path: "/datafiles",
7326
+ chain: "datafiles",
7327
+ action: "create",
7328
+ aliases: [],
7329
+ pathParams: [],
7330
+ queryParams: [],
7331
+ edgeCache: false,
7332
+ responseSchema: PassthroughDataSchema9,
7333
+ responseType: "passthrough"
7334
+ },
7163
7335
  {
7164
7336
  method: "GET",
7165
7337
  path: "/fyxer-transcript",
@@ -7579,6 +7751,66 @@ var endpoints9 = [
7579
7751
  edgeCache: false,
7580
7752
  responseSchema: TrainingConversationsMessagesDataSchema,
7581
7753
  responseType: "object"
7754
+ },
7755
+ {
7756
+ method: "GET",
7757
+ path: "/users/{userId}/addresses",
7758
+ chain: "users.addresses",
7759
+ action: "list",
7760
+ aliases: [],
7761
+ pathParams: ["userId"],
7762
+ queryParams: ["emailAddress", "limit", "offset", "orderBy", "statusCd"],
7763
+ edgeCache: true,
7764
+ responseSchema: UsersAddressesDataSchema,
7765
+ responseType: "array"
7766
+ },
7767
+ {
7768
+ method: "POST",
7769
+ path: "/users/{userId}/addresses",
7770
+ chain: "users.addresses",
7771
+ action: "create",
7772
+ aliases: [],
7773
+ pathParams: ["userId"],
7774
+ queryParams: [],
7775
+ edgeCache: false,
7776
+ responseSchema: UsersAddressesDataSchema,
7777
+ responseType: "object"
7778
+ },
7779
+ {
7780
+ method: "GET",
7781
+ path: "/users/{userId}/addresses/{userAddressUid}",
7782
+ chain: "users.addresses",
7783
+ action: "get",
7784
+ aliases: [],
7785
+ pathParams: ["userId", "userAddressUid"],
7786
+ queryParams: [],
7787
+ edgeCache: true,
7788
+ responseSchema: UsersAddressesDataSchema,
7789
+ responseType: "object"
7790
+ },
7791
+ {
7792
+ method: "PUT",
7793
+ path: "/users/{userId}/addresses/{userAddressUid}",
7794
+ chain: "users.addresses",
7795
+ action: "update",
7796
+ aliases: [],
7797
+ pathParams: ["userId", "userAddressUid"],
7798
+ queryParams: [],
7799
+ edgeCache: false,
7800
+ responseSchema: UsersAddressesDataSchema,
7801
+ responseType: "object"
7802
+ },
7803
+ {
7804
+ method: "DELETE",
7805
+ path: "/users/{userId}/addresses/{userAddressUid}",
7806
+ chain: "users.addresses",
7807
+ action: "delete",
7808
+ aliases: [],
7809
+ pathParams: ["userId", "userAddressUid"],
7810
+ queryParams: [],
7811
+ edgeCache: false,
7812
+ responseSchema: UsersAddressesDataSchema,
7813
+ responseType: "object"
7582
7814
  }
7583
7815
  ];
7584
7816
 
@@ -7741,12 +7973,13 @@ function createWhoamiDataResource2(whoami) {
7741
7973
  var AgrSiteClient = class extends BaseServiceClient {
7742
7974
  constructor(http, baseUrl = "https://agr-site.augur-api.com") {
7743
7975
  super("agr-site", http, baseUrl);
7744
- const boundExecuteRequest = (config, params, pathParams) => {
7745
- return this.executeRequest(config, params, pathParams);
7976
+ const boundExecuteRequest = (config, params, pathParams, query) => {
7977
+ return this.executeRequest(config, params, pathParams, query);
7746
7978
  };
7747
7979
  const proxy = createServiceProxy("agr-site", boundExecuteRequest, endpoints9);
7748
7980
  const dataProxy = createDataProxy(proxy);
7749
7981
  this.context = proxy.context;
7982
+ this.datafiles = proxy.datafiles;
7750
7983
  this.fyxerTranscript = proxy.fyxerTranscript;
7751
7984
  this.geoCodesPostalCodes = proxy.geoCodesPostalCodes;
7752
7985
  this.metaFiles = proxy.metaFiles;
@@ -7755,7 +7988,9 @@ var AgrSiteClient = class extends BaseServiceClient {
7755
7988
  this.postalCodesXShiptos = proxy.postalCodesXShiptos;
7756
7989
  this.settings = proxy.settings;
7757
7990
  this.training = proxy.training;
7991
+ this.users = proxy.users;
7758
7992
  this.contextData = dataProxy.context;
7993
+ this.datafilesData = dataProxy.datafiles;
7759
7994
  this.fyxerTranscriptData = dataProxy.fyxerTranscript;
7760
7995
  this.geoCodesPostalCodesData = dataProxy.geoCodesPostalCodes;
7761
7996
  this.metaFilesData = dataProxy.metaFiles;
@@ -7764,6 +7999,7 @@ var AgrSiteClient = class extends BaseServiceClient {
7764
7999
  this.postalCodesXShiptosData = dataProxy.postalCodesXShiptos;
7765
8000
  this.settingsData = dataProxy.settings;
7766
8001
  this.trainingData = dataProxy.training;
8002
+ this.usersData = dataProxy.users;
7767
8003
  this.healthCheck = createHealthCheckResource9(boundExecuteRequest);
7768
8004
  this.ping = createPingResource7(boundExecuteRequest);
7769
8005
  this.whoami = createWhoamiResource2(boundExecuteRequest);
@@ -7821,6 +8057,7 @@ var CustomerContactsListParamsSchema = v17.looseObject({
7821
8057
  });
7822
8058
  var CustomerInvoicesListParamsSchema = v17.looseObject({
7823
8059
  ...EdgeCacheParamsSchema.entries,
8060
+ contactId: v17.optional(v17.string()),
7824
8061
  createdFrom: v17.optional(v17.string()),
7825
8062
  createdOn: v17.optional(v17.string()),
7826
8063
  createdTo: v17.optional(v17.string()),
@@ -7832,6 +8069,7 @@ var CustomerInvoicesListParamsSchema = v17.looseObject({
7832
8069
  });
7833
8070
  var CustomerOrdersListParamsSchema = v17.looseObject({
7834
8071
  ...EdgeCacheParamsSchema.entries,
8072
+ addressId: v17.optional(v17.pipe(v17.unknown(), v17.transform(Number))),
7835
8073
  cancelFlag: v17.optional(v17.string()),
7836
8074
  contactId: v17.optional(v17.string()),
7837
8075
  createdFrom: v17.optional(v17.string()),
@@ -7852,6 +8090,8 @@ var CustomerPurchasedItemsListParamsSchema = v17.looseObject({
7852
8090
  });
7853
8091
  var CustomerQuotesListParamsSchema = v17.looseObject({
7854
8092
  ...EdgeCacheParamsSchema.entries,
8093
+ addressId: v17.optional(v17.pipe(v17.unknown(), v17.transform(Number))),
8094
+ contactId: v17.optional(v17.string()),
7855
8095
  createdFrom: v17.optional(v17.string()),
7856
8096
  createdOn: v17.optional(v17.string()),
7857
8097
  createdTo: v17.optional(v17.string()),
@@ -8115,6 +8355,7 @@ var endpoints10 = [
8115
8355
  aliases: [],
8116
8356
  pathParams: ["customerId"],
8117
8357
  queryParams: [
8358
+ "contactId",
8118
8359
  "createdFrom",
8119
8360
  "createdOn",
8120
8361
  "createdTo",
@@ -8148,6 +8389,7 @@ var endpoints10 = [
8148
8389
  aliases: [],
8149
8390
  pathParams: ["customerId"],
8150
8391
  queryParams: [
8392
+ "addressId",
8151
8393
  "cancelFlag",
8152
8394
  "contactId",
8153
8395
  "createdFrom",
@@ -8195,7 +8437,16 @@ var endpoints10 = [
8195
8437
  action: "list",
8196
8438
  aliases: [],
8197
8439
  pathParams: ["customerId"],
8198
- queryParams: ["createdFrom", "createdOn", "createdTo", "limit", "offset", "orderBy"],
8440
+ queryParams: [
8441
+ "addressId",
8442
+ "contactId",
8443
+ "createdFrom",
8444
+ "createdOn",
8445
+ "createdTo",
8446
+ "limit",
8447
+ "offset",
8448
+ "orderBy"
8449
+ ],
8199
8450
  edgeCache: true,
8200
8451
  responseSchema: PassthroughDataSchema10,
8201
8452
  responseType: "passthrough"
@@ -8382,8 +8633,8 @@ function createHealthCheckDataResource10(healthCheck) {
8382
8633
  var CustomersClient = class extends BaseServiceClient {
8383
8634
  constructor(http, baseUrl = "https://customers.augur-api.com") {
8384
8635
  super("customers", http, baseUrl);
8385
- const boundExecuteRequest = (config, params, pathParams) => {
8386
- return this.executeRequest(config, params, pathParams);
8636
+ const boundExecuteRequest = (config, params, pathParams, query) => {
8637
+ return this.executeRequest(config, params, pathParams, query);
8387
8638
  };
8388
8639
  const proxy = createServiceProxy(
8389
8640
  "customers",
@@ -8746,12 +8997,12 @@ var OrdersClient = class extends BaseServiceClient {
8746
8997
  import * as v19 from "valibot";
8747
8998
  var InvMastExtListParamsSchema = v19.looseObject({
8748
8999
  ...EdgeCacheParamsSchema.entries,
8749
- inv_mast_uid: v19.optional(v19.pipe(v19.unknown(), v19.transform(Number))),
9000
+ invMastUid: v19.optional(v19.pipe(v19.unknown(), v19.transform(Number))),
8750
9001
  limit: v19.optional(v19.pipe(v19.unknown(), v19.transform(Number))),
8751
9002
  offset: v19.optional(v19.pipe(v19.unknown(), v19.transform(Number))),
8752
- order_by: v19.optional(v19.string()),
9003
+ orderBy: v19.optional(v19.string()),
8753
9004
  q: v19.optional(v19.string()),
8754
- status_cd: v19.optional(v19.pipe(v19.unknown(), v19.transform(Number)))
9005
+ statusCd: v19.optional(v19.pipe(v19.unknown(), v19.transform(Number)))
8755
9006
  });
8756
9007
  var ItemsSuggestDisplayDescListParamsSchema = v19.looseObject({
8757
9008
  ...EdgeCacheParamsSchema.entries,
@@ -8767,9 +9018,9 @@ var PodcastsListParamsSchema = v19.looseObject({
8767
9018
  ...EdgeCacheParamsSchema.entries,
8768
9019
  limit: v19.optional(v19.pipe(v19.unknown(), v19.transform(Number))),
8769
9020
  offset: v19.optional(v19.pipe(v19.unknown(), v19.transform(Number))),
8770
- order_by: v19.optional(v19.string()),
9021
+ orderBy: v19.optional(v19.string()),
8771
9022
  q: v19.optional(v19.string()),
8772
- status_cd: v19.optional(v19.pipe(v19.unknown(), v19.transform(Number)))
9023
+ statusCd: v19.optional(v19.pipe(v19.unknown(), v19.transform(Number)))
8773
9024
  });
8774
9025
  var PodcastsDataSchema = v19.looseObject({
8775
9026
  podcastsUid: v19.optional(v19.number()),
@@ -8793,7 +9044,7 @@ var endpoints12 = [
8793
9044
  action: "list",
8794
9045
  aliases: [],
8795
9046
  pathParams: [],
8796
- queryParams: ["inv_mast_uid", "limit", "offset", "order_by", "q", "status_cd"],
9047
+ queryParams: ["invMastUid", "limit", "offset", "orderBy", "q", "statusCd"],
8797
9048
  edgeCache: true,
8798
9049
  responseSchema: PassthroughDataSchema12,
8799
9050
  responseType: "passthrough"
@@ -8877,7 +9128,7 @@ var endpoints12 = [
8877
9128
  action: "list",
8878
9129
  aliases: [],
8879
9130
  pathParams: [],
8880
- queryParams: ["limit", "offset", "order_by", "q", "status_cd"],
9131
+ queryParams: ["limit", "offset", "orderBy", "q", "statusCd"],
8881
9132
  edgeCache: true,
8882
9133
  responseSchema: PodcastsDataSchema,
8883
9134
  responseType: "array"
@@ -8977,8 +9228,8 @@ function createHealthCheckDataResource12(healthCheck) {
8977
9228
  var P21PimClient = class extends BaseServiceClient {
8978
9229
  constructor(http, baseUrl = "https://p21-pim.augur-api.com") {
8979
9230
  super("p21-pim", http, baseUrl);
8980
- const boundExecuteRequest = (config, params, pathParams) => {
8981
- return this.executeRequest(config, params, pathParams);
9231
+ const boundExecuteRequest = (config, params, pathParams, query) => {
9232
+ return this.executeRequest(config, params, pathParams, query);
8982
9233
  };
8983
9234
  const proxy = createServiceProxy("p21-pim", boundExecuteRequest, endpoints12);
8984
9235
  const dataProxy = createDataProxy(proxy);
@@ -8991,6 +9242,9 @@ var P21PimClient = class extends BaseServiceClient {
8991
9242
  this.healthCheck = createHealthCheckResource12(boundExecuteRequest);
8992
9243
  this.healthCheckData = createHealthCheckDataResource12(this.healthCheck);
8993
9244
  }
9245
+ getServiceDescription() {
9246
+ return "Product information management for rich content, media assets, and extended item descriptions";
9247
+ }
8994
9248
  };
8995
9249
 
8996
9250
  // src/services/payments/generated/schemas.ts
@@ -9071,6 +9325,10 @@ var UnifiedSurchargeListParamsSchema = v20.looseObject({
9071
9325
  paymentAccountId: v20.string(),
9072
9326
  toState: v20.string()
9073
9327
  });
9328
+ var UnifiedTransactionResponseListParamsSchema = v20.looseObject({
9329
+ ...EdgeCacheParamsSchema.entries,
9330
+ siteId: v20.string()
9331
+ });
9074
9332
  var UnifiedTransactionSetupListParamsSchema = v20.looseObject({
9075
9333
  ...EdgeCacheParamsSchema.entries,
9076
9334
  customerId: v20.string(),
@@ -9238,6 +9496,18 @@ var endpoints13 = [
9238
9496
  responseSchema: PassthroughDataSchema13,
9239
9497
  responseType: "passthrough"
9240
9498
  },
9499
+ {
9500
+ method: "GET",
9501
+ path: "/unified/transaction-response",
9502
+ chain: "unified.transactionResponse",
9503
+ action: "list",
9504
+ aliases: [],
9505
+ pathParams: [],
9506
+ queryParams: ["siteId"],
9507
+ edgeCache: true,
9508
+ responseSchema: PassthroughDataSchema13,
9509
+ responseType: "passthrough"
9510
+ },
9241
9511
  {
9242
9512
  method: "GET",
9243
9513
  path: "/unified/transaction-setup",
@@ -9331,8 +9601,8 @@ function createPingDataResource7(ping) {
9331
9601
  var PaymentsClient = class extends BaseServiceClient {
9332
9602
  constructor(http, baseUrl = "https://payments.augur-api.com") {
9333
9603
  super("payments", http, baseUrl);
9334
- const boundExecuteRequest = (config, params, pathParams) => {
9335
- return this.executeRequest(config, params, pathParams);
9604
+ const boundExecuteRequest = (config, params, pathParams, query) => {
9605
+ return this.executeRequest(config, params, pathParams, query);
9336
9606
  };
9337
9607
  const proxy = createServiceProxy(
9338
9608
  "payments",
@@ -9385,6 +9655,14 @@ var MicroservicesDataSchema = v21.looseObject({
9385
9655
  dateCreated: v21.optional(v21.string()),
9386
9656
  dateLastModified: v21.optional(v21.string())
9387
9657
  });
9658
+ var OauthRefreshDataSchema = v21.looseObject({
9659
+ grantId: v21.optional(v21.string()),
9660
+ usersId: v21.optional(v21.number()),
9661
+ accessToken: v21.optional(v21.string()),
9662
+ refreshToken: v21.optional(v21.string()),
9663
+ accessTokenExpiresAt: v21.optional(v21.string()),
9664
+ refreshTokenExpiresAt: v21.optional(v21.string())
9665
+ });
9388
9666
  var RubricsDataSchema = v21.looseObject({
9389
9667
  rubricsUid: v21.optional(v21.number()),
9390
9668
  title: v21.optional(v21.nullable(v21.string())),
@@ -9396,6 +9674,20 @@ var RubricsDataSchema = v21.looseObject({
9396
9674
  dateCreated: v21.optional(v21.string()),
9397
9675
  dateLastModified: v21.optional(v21.string())
9398
9676
  });
9677
+ var SitesVerifyUserDataSchema = v21.looseObject({
9678
+ grantId: v21.optional(v21.string()),
9679
+ usersId: v21.optional(v21.number()),
9680
+ username: v21.optional(v21.string()),
9681
+ email: v21.optional(v21.string()),
9682
+ name: v21.optional(v21.string()),
9683
+ isAdmin: v21.optional(v21.boolean()),
9684
+ homeSiteId: v21.optional(v21.string()),
9685
+ sites: v21.optional(v21.string()),
9686
+ accessToken: v21.optional(v21.string()),
9687
+ refreshToken: v21.optional(v21.string()),
9688
+ accessTokenExpiresAt: v21.optional(v21.string()),
9689
+ refreshTokenExpiresAt: v21.optional(v21.string())
9690
+ });
9399
9691
  var WorkflowsDataSchema = v21.looseObject({
9400
9692
  workflowsUid: v21.optional(v21.number()),
9401
9693
  workflowsId: v21.optional(v21.string()),
@@ -9509,6 +9801,30 @@ var endpoints14 = [
9509
9801
  responseSchema: PassthroughDataSchema14,
9510
9802
  responseType: "passthrough"
9511
9803
  },
9804
+ {
9805
+ method: "DELETE",
9806
+ path: "/oauth/grants/{grantId}",
9807
+ chain: "oauth.grants",
9808
+ action: "delete",
9809
+ aliases: [],
9810
+ pathParams: ["grantId"],
9811
+ queryParams: [],
9812
+ edgeCache: false,
9813
+ responseSchema: PassthroughDataSchema14,
9814
+ responseType: "passthrough"
9815
+ },
9816
+ {
9817
+ method: "POST",
9818
+ path: "/oauth/refresh",
9819
+ chain: "oauth.refresh",
9820
+ action: "create",
9821
+ aliases: [],
9822
+ pathParams: [],
9823
+ queryParams: [],
9824
+ edgeCache: false,
9825
+ responseSchema: OauthRefreshDataSchema,
9826
+ responseType: "object"
9827
+ },
9512
9828
  {
9513
9829
  method: "GET",
9514
9830
  path: "/ollama/tags",
@@ -9593,6 +9909,18 @@ var endpoints14 = [
9593
9909
  responseSchema: PassthroughDataSchema14,
9594
9910
  responseType: "passthrough"
9595
9911
  },
9912
+ {
9913
+ method: "POST",
9914
+ path: "/sites/verify-user",
9915
+ chain: "sites.verifyUser",
9916
+ action: "create",
9917
+ aliases: [],
9918
+ pathParams: [],
9919
+ queryParams: [],
9920
+ edgeCache: false,
9921
+ responseSchema: SitesVerifyUserDataSchema,
9922
+ responseType: "object"
9923
+ },
9596
9924
  {
9597
9925
  method: "GET",
9598
9926
  path: "/workflows",
@@ -9707,8 +10035,8 @@ function createHealthCheckDataResource14(healthCheck) {
9707
10035
  var AgrInfoClient = class extends BaseServiceClient {
9708
10036
  constructor(http, baseUrl = "https://agr-info.augur-api.com") {
9709
10037
  super("agr-info", http, baseUrl);
9710
- const boundExecuteRequest = (config, params, pathParams) => {
9711
- return this.executeRequest(config, params, pathParams);
10038
+ const boundExecuteRequest = (config, params, pathParams, query) => {
10039
+ return this.executeRequest(config, params, pathParams, query);
9712
10040
  };
9713
10041
  const proxy = createServiceProxy("agr-info", boundExecuteRequest, endpoints14);
9714
10042
  const dataProxy = createDataProxy(proxy);
@@ -9716,6 +10044,7 @@ var AgrInfoClient = class extends BaseServiceClient {
9716
10044
  this.context = proxy.context;
9717
10045
  this.joomla = proxy.joomla;
9718
10046
  this.microservices = proxy.microservices;
10047
+ this.oauth = proxy.oauth;
9719
10048
  this.ollama = proxy.ollama;
9720
10049
  this.rubrics = proxy.rubrics;
9721
10050
  this.sites = proxy.sites;
@@ -9724,6 +10053,7 @@ var AgrInfoClient = class extends BaseServiceClient {
9724
10053
  this.contextData = dataProxy.context;
9725
10054
  this.joomlaData = dataProxy.joomla;
9726
10055
  this.microservicesData = dataProxy.microservices;
10056
+ this.oauthData = dataProxy.oauth;
9727
10057
  this.ollamaData = dataProxy.ollama;
9728
10058
  this.rubricsData = dataProxy.rubrics;
9729
10059
  this.sitesData = dataProxy.sites;
@@ -9783,7 +10113,7 @@ var RolesBundlesListParamsSchema = v22.looseObject({
9783
10113
  orderBy: v22.optional(v22.string()),
9784
10114
  statusCd: v22.optional(v22.pipe(v22.unknown(), v22.transform(Number)))
9785
10115
  });
9786
- var UsersListParamsSchema = v22.looseObject({
10116
+ var UsersListParamsSchema2 = v22.looseObject({
9787
10117
  ...EdgeCacheParamsSchema.entries,
9788
10118
  email: v22.optional(v22.string()),
9789
10119
  limit: v22.optional(v22.pipe(v22.unknown(), v22.transform(Number))),
@@ -10371,8 +10701,8 @@ var endpoints15 = [
10371
10701
  var AgrIntClient = class extends BaseServiceClient {
10372
10702
  constructor(http, baseUrl = "https://agr-int.augur-api.com") {
10373
10703
  super("agr-int", http, baseUrl);
10374
- const boundExecuteRequest = (config, params, pathParams) => {
10375
- return this.executeRequest(config, params, pathParams);
10704
+ const boundExecuteRequest = (config, params, pathParams, query) => {
10705
+ return this.executeRequest(config, params, pathParams, query);
10376
10706
  };
10377
10707
  const proxy = createServiceProxy("agr-int", boundExecuteRequest, endpoints15);
10378
10708
  const dataProxy = createDataProxy(proxy);
@@ -10548,8 +10878,8 @@ function createPingDataResource8(ping) {
10548
10878
  var AgrWorkClient = class extends BaseServiceClient {
10549
10879
  constructor(http, baseUrl = "https://agr-work.augur-api.com") {
10550
10880
  super("agr-work", http, baseUrl);
10551
- const boundExecuteRequest = (config, params, pathParams) => {
10552
- return this.executeRequest(config, params, pathParams);
10881
+ const boundExecuteRequest = (config, params, pathParams, query) => {
10882
+ return this.executeRequest(config, params, pathParams, query);
10553
10883
  };
10554
10884
  this.healthCheck = createHealthCheckResource15(boundExecuteRequest);
10555
10885
  this.ping = createPingResource9(boundExecuteRequest);
@@ -10643,8 +10973,8 @@ function createHealthCheckDataResource16(healthCheck) {
10643
10973
  var AvalaraClient = class extends BaseServiceClient {
10644
10974
  constructor(http, baseUrl = "https://avalara.augur-api.com") {
10645
10975
  super("avalara", http, baseUrl);
10646
- const boundExecuteRequest = (config, params, pathParams) => {
10647
- return this.executeRequest(config, params, pathParams);
10976
+ const boundExecuteRequest = (config, params, pathParams, query) => {
10977
+ return this.executeRequest(config, params, pathParams, query);
10648
10978
  };
10649
10979
  const proxy = createServiceProxy("avalara", boundExecuteRequest, endpoints16);
10650
10980
  const dataProxy = createDataProxy(proxy);
@@ -10657,10 +10987,54 @@ var AvalaraClient = class extends BaseServiceClient {
10657
10987
 
10658
10988
  // src/services/brand-folder/generated/schemas.ts
10659
10989
  import * as v24 from "valibot";
10990
+ var CategoriesListParamsSchema2 = v24.looseObject({
10991
+ ...EdgeCacheParamsSchema.entries,
10992
+ limit: v24.optional(v24.pipe(v24.unknown(), v24.transform(Number))),
10993
+ offset: v24.optional(v24.pipe(v24.unknown(), v24.transform(Number))),
10994
+ orderBy: v24.optional(v24.string()),
10995
+ q: v24.optional(v24.string())
10996
+ });
10997
+ var CategoriesDataSchema = v24.looseObject({
10998
+ itemCategoryUid: v24.optional(v24.number()),
10999
+ itemCategoryId: v24.optional(v24.string()),
11000
+ itemCategoryDesc: v24.optional(v24.string()),
11001
+ dateCreated: v24.optional(v24.string()),
11002
+ dateLastModified: v24.optional(v24.string()),
11003
+ updateCd: v24.optional(v24.number()),
11004
+ statusCd: v24.optional(v24.number()),
11005
+ processCd: v24.optional(v24.number()),
11006
+ rootCategoryId: v24.optional(v24.string()),
11007
+ labelsId: v24.optional(v24.nullable(v24.string())),
11008
+ imagesAssetsId: v24.optional(v24.nullable(v24.string())),
11009
+ roomScenesAssetsId: v24.optional(v24.nullable(v24.string())),
11010
+ brochuresAssetsId: v24.optional(v24.nullable(v24.string())),
11011
+ contractorsAssetsId: v24.optional(v24.nullable(v24.string())),
11012
+ dateLastProcessed: v24.optional(v24.string()),
11013
+ dateLastCheckImages: v24.optional(v24.string()),
11014
+ dateLastCheckRoomScene: v24.optional(v24.string()),
11015
+ itemCategoryDescPc: v24.optional(v24.nullable(v24.string())),
11016
+ dateLastUpload: v24.optional(v24.string()),
11017
+ leedAssetsId: v24.optional(v24.nullable(v24.string())),
11018
+ colorsList: v24.optional(v24.nullable(v24.string())),
11019
+ colorsCount: v24.optional(v24.number()),
11020
+ focusCd: v24.optional(v24.number())
11021
+ });
10660
11022
  var PassthroughDataSchema17 = v24.record(v24.string(), v24.unknown());
10661
11023
 
10662
11024
  // src/services/brand-folder/generated/endpoints.ts
10663
11025
  var endpoints17 = [
11026
+ {
11027
+ method: "GET",
11028
+ path: "/categories",
11029
+ chain: "categories",
11030
+ action: "list",
11031
+ aliases: [],
11032
+ pathParams: [],
11033
+ queryParams: ["limit", "offset", "orderBy", "q"],
11034
+ edgeCache: true,
11035
+ responseSchema: CategoriesDataSchema,
11036
+ responseType: "array"
11037
+ },
10664
11038
  {
10665
11039
  method: "POST",
10666
11040
  path: "/categories/focus",
@@ -10672,6 +11046,18 @@ var endpoints17 = [
10672
11046
  edgeCache: false,
10673
11047
  responseSchema: PassthroughDataSchema17,
10674
11048
  responseType: "passthrough"
11049
+ },
11050
+ {
11051
+ method: "GET",
11052
+ path: "/categories/{itemCategoryUid}",
11053
+ chain: "categories",
11054
+ action: "get",
11055
+ aliases: [],
11056
+ pathParams: ["itemCategoryUid"],
11057
+ queryParams: [],
11058
+ edgeCache: true,
11059
+ responseSchema: CategoriesDataSchema,
11060
+ responseType: "object"
10675
11061
  }
10676
11062
  ];
10677
11063
 
@@ -10740,8 +11126,8 @@ function createHealthCheckDataResource17(healthCheck) {
10740
11126
  var BrandFolderClient = class extends BaseServiceClient {
10741
11127
  constructor(http, baseUrl = "https://brand-folder.augur-api.com") {
10742
11128
  super("brand-folder", http, baseUrl);
10743
- const boundExecuteRequest = (config, params, pathParams) => {
10744
- return this.executeRequest(config, params, pathParams);
11129
+ const boundExecuteRequest = (config, params, pathParams, query) => {
11130
+ return this.executeRequest(config, params, pathParams, query);
10745
11131
  };
10746
11132
  const proxy = createServiceProxy(
10747
11133
  "brand-folder",
@@ -10872,8 +11258,8 @@ function createHealthCheckDataResource18(healthCheck) {
10872
11258
  var GregorovichClient = class extends BaseServiceClient {
10873
11259
  constructor(http, baseUrl = "https://gregorovich.augur-api.com") {
10874
11260
  super("gregorovich", http, baseUrl);
10875
- const boundExecuteRequest = (config, params, pathParams) => {
10876
- return this.executeRequest(config, params, pathParams);
11261
+ const boundExecuteRequest = (config, params, pathParams, query) => {
11262
+ return this.executeRequest(config, params, pathParams, query);
10877
11263
  };
10878
11264
  const proxy = createServiceProxy(
10879
11265
  "gregorovich",
@@ -10913,7 +11299,7 @@ var RtsBrandsListParamsSchema = v26.looseObject({
10913
11299
  ...EdgeCacheParamsSchema.entries,
10914
11300
  search: v26.optional(v26.string())
10915
11301
  });
10916
- var RtsBrandsBrandIdMachinesListParamsSchema = v26.looseObject({
11302
+ var RtsBrandsMachinesListParamsSchema = v26.looseObject({
10917
11303
  ...EdgeCacheParamsSchema.entries,
10918
11304
  search: v26.optional(v26.string())
10919
11305
  });
@@ -11066,7 +11452,7 @@ var endpoints19 = [
11066
11452
  {
11067
11453
  method: "GET",
11068
11454
  path: "/rts/brands/{brandId}/machines",
11069
- chain: "rts.brands.brandId.machines",
11455
+ chain: "rts.brands.machines",
11070
11456
  action: "list",
11071
11457
  aliases: [],
11072
11458
  pathParams: ["brandId"],
@@ -11078,7 +11464,7 @@ var endpoints19 = [
11078
11464
  {
11079
11465
  method: "GET",
11080
11466
  path: "/rts/machines/{machineId}/tracks",
11081
- chain: "rts.machines.machineId.tracks",
11467
+ chain: "rts.machines.tracks",
11082
11468
  action: "list",
11083
11469
  aliases: [],
11084
11470
  pathParams: ["machineId"],
@@ -11102,7 +11488,7 @@ var endpoints19 = [
11102
11488
  {
11103
11489
  method: "GET",
11104
11490
  path: "/rts/track/{trackId}",
11105
- chain: "rts.track.trackId",
11491
+ chain: "rts.track",
11106
11492
  action: "list",
11107
11493
  aliases: [],
11108
11494
  pathParams: ["trackId"],
@@ -11393,8 +11779,8 @@ function createPingDataResource9(ping) {
11393
11779
  var LogisticsClient = class extends BaseServiceClient {
11394
11780
  constructor(http, baseUrl = "https://logistics.augur-api.com") {
11395
11781
  super("logistics", http, baseUrl);
11396
- const boundExecuteRequest = (config, params, pathParams) => {
11397
- return this.executeRequest(config, params, pathParams);
11782
+ const boundExecuteRequest = (config, params, pathParams, query) => {
11783
+ return this.executeRequest(config, params, pathParams, query);
11398
11784
  };
11399
11785
  const proxy = createServiceProxy(
11400
11786
  "logistics",
@@ -11426,43 +11812,43 @@ var LogisticsClient = class extends BaseServiceClient {
11426
11812
  import * as v27 from "valibot";
11427
11813
  var TransCategoryGetParamsSchema = v27.looseObject({
11428
11814
  ...EdgeCacheParamsSchema.entries,
11429
- category_id: v27.optional(v27.string())
11815
+ categoryId: v27.optional(v27.string())
11430
11816
  });
11431
11817
  var TransCategoryUpdateParamsSchema = v27.looseObject({
11432
- category_id: v27.optional(v27.string())
11818
+ categoryId: v27.optional(v27.string())
11433
11819
  });
11434
11820
  var TransCategoryDeleteParamsSchema = v27.looseObject({
11435
- category_id: v27.optional(v27.string())
11821
+ categoryId: v27.optional(v27.string())
11436
11822
  });
11437
11823
  var TransCompanyGetParamsSchema = v27.looseObject({
11438
11824
  ...EdgeCacheParamsSchema.entries,
11439
- company_id: v27.optional(v27.string())
11825
+ companyId: v27.optional(v27.string())
11440
11826
  });
11441
11827
  var TransCompanyUpdateParamsSchema = v27.looseObject({
11442
- company_id: v27.optional(v27.string())
11828
+ companyId: v27.optional(v27.string())
11443
11829
  });
11444
11830
  var TransCompanyDeleteParamsSchema = v27.looseObject({
11445
- company_id: v27.optional(v27.string())
11831
+ companyId: v27.optional(v27.string())
11446
11832
  });
11447
11833
  var TransUserGetParamsSchema = v27.looseObject({
11448
11834
  ...EdgeCacheParamsSchema.entries,
11449
- user_id: v27.optional(v27.string())
11835
+ userId: v27.optional(v27.string())
11450
11836
  });
11451
11837
  var TransUserUpdateParamsSchema = v27.looseObject({
11452
- user_id: v27.optional(v27.string())
11838
+ userId: v27.optional(v27.string())
11453
11839
  });
11454
11840
  var TransUserDeleteParamsSchema = v27.looseObject({
11455
- user_id: v27.optional(v27.string())
11841
+ userId: v27.optional(v27.string())
11456
11842
  });
11457
11843
  var TransWebDisplayTypeGetParamsSchema = v27.looseObject({
11458
11844
  ...EdgeCacheParamsSchema.entries,
11459
- web_display_type_id: v27.optional(v27.string())
11845
+ webDisplayTypeId: v27.optional(v27.string())
11460
11846
  });
11461
11847
  var TransWebDisplayTypeUpdateParamsSchema = v27.looseObject({
11462
- web_display_type_id: v27.optional(v27.string())
11848
+ webDisplayTypeId: v27.optional(v27.string())
11463
11849
  });
11464
11850
  var TransWebDisplayTypeDeleteParamsSchema = v27.looseObject({
11465
- web_display_type_id: v27.optional(v27.string())
11851
+ webDisplayTypeId: v27.optional(v27.string())
11466
11852
  });
11467
11853
  var PassthroughDataSchema20 = v27.record(v27.string(), v27.unknown());
11468
11854
 
@@ -11511,7 +11897,7 @@ var endpoints20 = [
11511
11897
  action: "get",
11512
11898
  aliases: [],
11513
11899
  pathParams: ["categoryUid"],
11514
- queryParams: ["category_id"],
11900
+ queryParams: ["categoryId"],
11515
11901
  edgeCache: true,
11516
11902
  responseSchema: PassthroughDataSchema20,
11517
11903
  responseType: "passthrough"
@@ -11523,7 +11909,7 @@ var endpoints20 = [
11523
11909
  action: "update",
11524
11910
  aliases: [],
11525
11911
  pathParams: ["categoryUid"],
11526
- queryParams: ["category_id"],
11912
+ queryParams: ["categoryId"],
11527
11913
  edgeCache: false,
11528
11914
  responseSchema: PassthroughDataSchema20,
11529
11915
  responseType: "passthrough"
@@ -11535,7 +11921,7 @@ var endpoints20 = [
11535
11921
  action: "delete",
11536
11922
  aliases: [],
11537
11923
  pathParams: ["categoryUid"],
11538
- queryParams: ["category_id"],
11924
+ queryParams: ["categoryId"],
11539
11925
  edgeCache: false,
11540
11926
  responseSchema: PassthroughDataSchema20,
11541
11927
  responseType: "passthrough"
@@ -11559,7 +11945,7 @@ var endpoints20 = [
11559
11945
  action: "get",
11560
11946
  aliases: [],
11561
11947
  pathParams: ["companyUid"],
11562
- queryParams: ["company_id"],
11948
+ queryParams: ["companyId"],
11563
11949
  edgeCache: true,
11564
11950
  responseSchema: PassthroughDataSchema20,
11565
11951
  responseType: "passthrough"
@@ -11571,7 +11957,7 @@ var endpoints20 = [
11571
11957
  action: "update",
11572
11958
  aliases: [],
11573
11959
  pathParams: ["companyUid"],
11574
- queryParams: ["company_id"],
11960
+ queryParams: ["companyId"],
11575
11961
  edgeCache: false,
11576
11962
  responseSchema: PassthroughDataSchema20,
11577
11963
  responseType: "passthrough"
@@ -11583,7 +11969,7 @@ var endpoints20 = [
11583
11969
  action: "delete",
11584
11970
  aliases: [],
11585
11971
  pathParams: ["companyUid"],
11586
- queryParams: ["company_id"],
11972
+ queryParams: ["companyId"],
11587
11973
  edgeCache: false,
11588
11974
  responseSchema: PassthroughDataSchema20,
11589
11975
  responseType: "passthrough"
@@ -11631,7 +12017,7 @@ var endpoints20 = [
11631
12017
  action: "get",
11632
12018
  aliases: [],
11633
12019
  pathParams: ["usersUid"],
11634
- queryParams: ["user_id"],
12020
+ queryParams: ["userId"],
11635
12021
  edgeCache: true,
11636
12022
  responseSchema: PassthroughDataSchema20,
11637
12023
  responseType: "passthrough"
@@ -11643,7 +12029,7 @@ var endpoints20 = [
11643
12029
  action: "update",
11644
12030
  aliases: [],
11645
12031
  pathParams: ["usersUid"],
11646
- queryParams: ["user_id"],
12032
+ queryParams: ["userId"],
11647
12033
  edgeCache: false,
11648
12034
  responseSchema: PassthroughDataSchema20,
11649
12035
  responseType: "passthrough"
@@ -11655,7 +12041,7 @@ var endpoints20 = [
11655
12041
  action: "delete",
11656
12042
  aliases: [],
11657
12043
  pathParams: ["usersUid"],
11658
- queryParams: ["user_id"],
12044
+ queryParams: ["userId"],
11659
12045
  edgeCache: false,
11660
12046
  responseSchema: PassthroughDataSchema20,
11661
12047
  responseType: "passthrough"
@@ -11703,7 +12089,7 @@ var endpoints20 = [
11703
12089
  action: "get",
11704
12090
  aliases: [],
11705
12091
  pathParams: ["webDisplayTypeUid"],
11706
- queryParams: ["web_display_type_id"],
12092
+ queryParams: ["webDisplayTypeId"],
11707
12093
  edgeCache: true,
11708
12094
  responseSchema: PassthroughDataSchema20,
11709
12095
  responseType: "passthrough"
@@ -11715,7 +12101,7 @@ var endpoints20 = [
11715
12101
  action: "update",
11716
12102
  aliases: [],
11717
12103
  pathParams: ["webDisplayTypeUid"],
11718
- queryParams: ["web_display_type_id"],
12104
+ queryParams: ["webDisplayTypeId"],
11719
12105
  edgeCache: false,
11720
12106
  responseSchema: PassthroughDataSchema20,
11721
12107
  responseType: "passthrough"
@@ -11727,7 +12113,7 @@ var endpoints20 = [
11727
12113
  action: "delete",
11728
12114
  aliases: [],
11729
12115
  pathParams: ["webDisplayTypeUid"],
11730
- queryParams: ["web_display_type_id"],
12116
+ queryParams: ["webDisplayTypeId"],
11731
12117
  edgeCache: false,
11732
12118
  responseSchema: PassthroughDataSchema20,
11733
12119
  responseType: "passthrough"
@@ -11785,8 +12171,8 @@ function createHealthCheckDataResource20(healthCheck) {
11785
12171
  var P21ApisClient = class extends BaseServiceClient {
11786
12172
  constructor(http, baseUrl = "https://p21-apis.augur-api.com") {
11787
12173
  super("p21-apis", http, baseUrl);
11788
- const boundExecuteRequest = (config, params, pathParams) => {
11789
- return this.executeRequest(config, params, pathParams);
12174
+ const boundExecuteRequest = (config, params, pathParams, query) => {
12175
+ return this.executeRequest(config, params, pathParams, query);
11790
12176
  };
11791
12177
  const proxy = createServiceProxy("p21-apis", boundExecuteRequest, endpoints20);
11792
12178
  const dataProxy = createDataProxy(proxy);
@@ -11821,12 +12207,14 @@ var AddressListParamsSchema = v28.looseObject({
11821
12207
  enabledCd: v28.optional(v28.pipe(v28.unknown(), v28.transform(Number))),
11822
12208
  limit: v28.optional(v28.pipe(v28.unknown(), v28.transform(Number))),
11823
12209
  offset: v28.optional(v28.pipe(v28.unknown(), v28.transform(Number))),
12210
+ orderBy: v28.optional(v28.string()),
11824
12211
  statusCd: v28.optional(v28.pipe(v28.unknown(), v28.transform(Number)))
11825
12212
  });
11826
12213
  var AddressCorpAddressListParamsSchema = v28.looseObject({
11827
12214
  ...EdgeCacheParamsSchema.entries,
11828
12215
  limit: v28.optional(v28.pipe(v28.unknown(), v28.transform(Number))),
11829
12216
  offset: v28.optional(v28.pipe(v28.unknown(), v28.transform(Number))),
12217
+ orderBy: v28.optional(v28.string()),
11830
12218
  q: v28.optional(v28.string())
11831
12219
  });
11832
12220
  var AddressEnableGetParamsSchema = v28.looseObject({
@@ -11848,7 +12236,8 @@ var CodeP21ListParamsSchema = v28.looseObject({
11848
12236
  codeNoList: v28.optional(v28.string()),
11849
12237
  limit: v28.optional(v28.pipe(v28.unknown(), v28.transform(Number))),
11850
12238
  offset: v28.optional(v28.pipe(v28.unknown(), v28.transform(Number))),
11851
- q: v28.string()
12239
+ orderBy: v28.optional(v28.string()),
12240
+ q: v28.optional(v28.string())
11852
12241
  });
11853
12242
  var CompanyListParamsSchema = v28.looseObject({
11854
12243
  ...EdgeCacheParamsSchema.entries,
@@ -11878,7 +12267,8 @@ var LocationGetParamsSchema = v28.looseObject({
11878
12267
  var PaymentTypesListParamsSchema = v28.looseObject({
11879
12268
  ...EdgeCacheParamsSchema.entries,
11880
12269
  limit: v28.optional(v28.pipe(v28.unknown(), v28.transform(Number))),
11881
- offset: v28.optional(v28.pipe(v28.unknown(), v28.transform(Number)))
12270
+ offset: v28.optional(v28.pipe(v28.unknown(), v28.transform(Number))),
12271
+ orderBy: v28.optional(v28.string())
11882
12272
  });
11883
12273
  var CashDrawerDataSchema = v28.looseObject({
11884
12274
  cashDrawerId: v28.optional(v28.string()),
@@ -11964,7 +12354,15 @@ var endpoints21 = [
11964
12354
  action: "list",
11965
12355
  aliases: [],
11966
12356
  pathParams: [],
11967
- queryParams: ["carrierFlag", "defaultCd", "enabledCd", "limit", "offset", "statusCd"],
12357
+ queryParams: [
12358
+ "carrierFlag",
12359
+ "defaultCd",
12360
+ "enabledCd",
12361
+ "limit",
12362
+ "offset",
12363
+ "orderBy",
12364
+ "statusCd"
12365
+ ],
11968
12366
  edgeCache: true,
11969
12367
  responseSchema: PassthroughDataSchema21,
11970
12368
  responseType: "passthrough"
@@ -12000,7 +12398,7 @@ var endpoints21 = [
12000
12398
  action: "list",
12001
12399
  aliases: [],
12002
12400
  pathParams: ["id"],
12003
- queryParams: ["limit", "offset", "q"],
12401
+ queryParams: ["limit", "offset", "orderBy", "q"],
12004
12402
  edgeCache: true,
12005
12403
  responseSchema: PassthroughDataSchema21,
12006
12404
  responseType: "passthrough"
@@ -12060,11 +12458,23 @@ var endpoints21 = [
12060
12458
  action: "list",
12061
12459
  aliases: [],
12062
12460
  pathParams: [],
12063
- queryParams: ["codeNoList", "limit", "offset", "q"],
12461
+ queryParams: ["codeNoList", "limit", "offset", "orderBy", "q"],
12064
12462
  edgeCache: true,
12065
12463
  responseSchema: CodeP21DataSchema,
12066
12464
  responseType: "array"
12067
12465
  },
12466
+ {
12467
+ method: "GET",
12468
+ path: "/code-p21/{codeUid}",
12469
+ chain: "codeP21",
12470
+ action: "get",
12471
+ aliases: [],
12472
+ pathParams: ["codeUid"],
12473
+ queryParams: [],
12474
+ edgeCache: true,
12475
+ responseSchema: CodeP21DataSchema,
12476
+ responseType: "object"
12477
+ },
12068
12478
  {
12069
12479
  method: "GET",
12070
12480
  path: "/company",
@@ -12120,7 +12530,7 @@ var endpoints21 = [
12120
12530
  action: "list",
12121
12531
  aliases: [],
12122
12532
  pathParams: [],
12123
- queryParams: ["limit", "offset"],
12533
+ queryParams: ["limit", "offset", "orderBy"],
12124
12534
  edgeCache: true,
12125
12535
  responseSchema: PassthroughDataSchema21,
12126
12536
  responseType: "passthrough"
@@ -12189,8 +12599,8 @@ function createPingDataResource10(ping) {
12189
12599
  var P21CoreClient = class extends BaseServiceClient {
12190
12600
  constructor(http, baseUrl = "https://p21-core.augur-api.com") {
12191
12601
  super("p21-core", http, baseUrl);
12192
- const boundExecuteRequest = (config, params, pathParams) => {
12193
- return this.executeRequest(config, params, pathParams);
12602
+ const boundExecuteRequest = (config, params, pathParams, query) => {
12603
+ return this.executeRequest(config, params, pathParams, query);
12194
12604
  };
12195
12605
  const proxy = createServiceProxy("p21-core", boundExecuteRequest, endpoints21);
12196
12606
  const dataProxy = createDataProxy(proxy);
@@ -12521,8 +12931,8 @@ function createHealthCheckDataResource22(healthCheck) {
12521
12931
  var P21SismClient = class extends BaseServiceClient {
12522
12932
  constructor(http, baseUrl = "https://p21-sism.augur-api.com") {
12523
12933
  super("p21-sism", http, baseUrl);
12524
- const boundExecuteRequest = (config, params, pathParams) => {
12525
- return this.executeRequest(config, params, pathParams);
12934
+ const boundExecuteRequest = (config, params, pathParams, query) => {
12935
+ return this.executeRequest(config, params, pathParams, query);
12526
12936
  };
12527
12937
  const proxy = createServiceProxy("p21-sism", boundExecuteRequest, endpoints22);
12528
12938
  const dataProxy = createDataProxy(proxy);
@@ -12627,8 +13037,8 @@ function createHealthCheckDataResource23(healthCheck) {
12627
13037
  var ShippingClient = class extends BaseServiceClient {
12628
13038
  constructor(http, baseUrl = "https://shipping.augur-api.com") {
12629
13039
  super("shipping", http, baseUrl);
12630
- const boundExecuteRequest = (config, params, pathParams) => {
12631
- return this.executeRequest(config, params, pathParams);
13040
+ const boundExecuteRequest = (config, params, pathParams, query) => {
13041
+ return this.executeRequest(config, params, pathParams, query);
12632
13042
  };
12633
13043
  const proxy = createServiceProxy(
12634
13044
  "shipping",
@@ -12756,8 +13166,8 @@ function createHealthCheckDataResource24(healthCheck) {
12756
13166
  var SlackClient = class extends BaseServiceClient {
12757
13167
  constructor(http, baseUrl = "https://slack.augur-api.com") {
12758
13168
  super("slack", http, baseUrl);
12759
- const boundExecuteRequest = (config, params, pathParams) => {
12760
- return this.executeRequest(config, params, pathParams);
13169
+ const boundExecuteRequest = (config, params, pathParams, query) => {
13170
+ return this.executeRequest(config, params, pathParams, query);
12761
13171
  };
12762
13172
  const proxy = createServiceProxy("slack", boundExecuteRequest, endpoints24);
12763
13173
  const dataProxy = createDataProxy(proxy);
@@ -12956,8 +13366,8 @@ function createPingDataResource11(ping) {
12956
13366
  var SmartyStreetsClient = class extends BaseServiceClient {
12957
13367
  constructor(http, baseUrl = "https://smarty-streets.augur-api.com") {
12958
13368
  super("smarty-streets", http, baseUrl);
12959
- const boundExecuteRequest = (config, params, pathParams) => {
12960
- return this.executeRequest(config, params, pathParams);
13369
+ const boundExecuteRequest = (config, params, pathParams, query) => {
13370
+ return this.executeRequest(config, params, pathParams, query);
12961
13371
  };
12962
13372
  const proxy = createServiceProxy(
12963
13373
  "smarty-streets",
@@ -13122,8 +13532,8 @@ function createHealthCheckDataResource26(healthCheck) {
13122
13532
  var UPSClient = class extends BaseServiceClient {
13123
13533
  constructor(http, baseUrl = "https://ups.augur-api.com") {
13124
13534
  super("ups", http, baseUrl);
13125
- const boundExecuteRequest = (config, params, pathParams) => {
13126
- return this.executeRequest(config, params, pathParams);
13535
+ const boundExecuteRequest = (config, params, pathParams, query) => {
13536
+ return this.executeRequest(config, params, pathParams, query);
13127
13537
  };
13128
13538
  const proxy = createServiceProxy("ups", boundExecuteRequest, endpoints26);
13129
13539
  const dataProxy = createDataProxy(proxy);
@@ -13138,20 +13548,20 @@ var UPSClient = class extends BaseServiceClient {
13138
13548
  import * as v36 from "valibot";
13139
13549
  var CommentsListParamsSchema = v36.looseObject({
13140
13550
  ...EdgeCacheParamsSchema.entries,
13141
- creator_id: v36.optional(v36.pipe(v36.unknown(), v36.transform(Number))),
13551
+ creatorId: v36.optional(v36.pipe(v36.unknown(), v36.transform(Number))),
13142
13552
  limit: v36.optional(v36.pipe(v36.unknown(), v36.transform(Number))),
13143
13553
  offset: v36.optional(v36.pipe(v36.unknown(), v36.transform(Number))),
13144
- order_by: v36.optional(v36.string()),
13145
- todos_id: v36.optional(v36.pipe(v36.unknown(), v36.transform(Number)))
13554
+ orderBy: v36.optional(v36.string()),
13555
+ todosId: v36.optional(v36.pipe(v36.unknown(), v36.transform(Number)))
13146
13556
  });
13147
13557
  var EventsListParamsSchema = v36.looseObject({
13148
13558
  ...EdgeCacheParamsSchema.entries,
13149
- event_type_cd: v36.optional(v36.pipe(v36.unknown(), v36.transform(Number))),
13559
+ eventTypeCd: v36.optional(v36.pipe(v36.unknown(), v36.transform(Number))),
13150
13560
  id: v36.optional(v36.pipe(v36.unknown(), v36.transform(Number))),
13151
13561
  limit: v36.optional(v36.pipe(v36.unknown(), v36.transform(Number))),
13152
13562
  offset: v36.optional(v36.pipe(v36.unknown(), v36.transform(Number))),
13153
- order_by: v36.optional(v36.string()),
13154
- people_id: v36.optional(v36.pipe(v36.unknown(), v36.transform(Number)))
13563
+ orderBy: v36.optional(v36.string()),
13564
+ peopleId: v36.optional(v36.pipe(v36.unknown(), v36.transform(Number)))
13155
13565
  });
13156
13566
  var MetricsListParamsSchema = v36.looseObject({
13157
13567
  ...EdgeCacheParamsSchema.entries,
@@ -13187,27 +13597,27 @@ var PeopleMetricsListParamsSchema = v36.looseObject({
13187
13597
  });
13188
13598
  var PeopleTodosListParamsSchema = v36.looseObject({
13189
13599
  ...EdgeCacheParamsSchema.entries,
13190
- completed_flag: v36.optional(v36.string()),
13191
- due_at: v36.optional(v36.string()),
13600
+ completedFlag: v36.optional(v36.string()),
13601
+ dueAt: v36.optional(v36.string()),
13192
13602
  limit: v36.optional(v36.pipe(v36.unknown(), v36.transform(Number))),
13193
13603
  offset: v36.optional(v36.pipe(v36.unknown(), v36.transform(Number))),
13194
- order_by: v36.optional(v36.string()),
13195
- projects_id: v36.optional(v36.pipe(v36.unknown(), v36.transform(Number)))
13604
+ orderBy: v36.optional(v36.string()),
13605
+ projectsId: v36.optional(v36.pipe(v36.unknown(), v36.transform(Number)))
13196
13606
  });
13197
13607
  var PeopleProjectsTodosListParamsSchema = v36.looseObject({
13198
13608
  ...EdgeCacheParamsSchema.entries,
13199
- completed_flag: v36.optional(v36.string()),
13609
+ completedFlag: v36.optional(v36.string()),
13200
13610
  limit: v36.optional(v36.pipe(v36.unknown(), v36.transform(Number))),
13201
13611
  offset: v36.optional(v36.pipe(v36.unknown(), v36.transform(Number))),
13202
- order_by: v36.optional(v36.string())
13612
+ orderBy: v36.optional(v36.string())
13203
13613
  });
13204
13614
  var ProjectsListParamsSchema = v36.looseObject({
13205
13615
  ...EdgeCacheParamsSchema.entries,
13206
- archived_flag: v36.optional(v36.string()),
13616
+ archivedFlag: v36.optional(v36.string()),
13207
13617
  limit: v36.optional(v36.pipe(v36.unknown(), v36.transform(Number))),
13208
13618
  offset: v36.optional(v36.pipe(v36.unknown(), v36.transform(Number))),
13209
- order_by: v36.optional(v36.string()),
13210
- trashed_flag: v36.optional(v36.string())
13619
+ orderBy: v36.optional(v36.string()),
13620
+ trashedFlag: v36.optional(v36.string())
13211
13621
  });
13212
13622
  var ProjectsMetricsListParamsSchema = v36.looseObject({
13213
13623
  ...EdgeCacheParamsSchema.entries,
@@ -13221,74 +13631,74 @@ var ProjectsMetricsListParamsSchema = v36.looseObject({
13221
13631
  });
13222
13632
  var ProjectsTodolistsListParamsSchema = v36.looseObject({
13223
13633
  ...EdgeCacheParamsSchema.entries,
13224
- completed_flag: v36.optional(v36.string()),
13634
+ completedFlag: v36.optional(v36.string()),
13225
13635
  limit: v36.optional(v36.pipe(v36.unknown(), v36.transform(Number))),
13226
13636
  offset: v36.optional(v36.pipe(v36.unknown(), v36.transform(Number))),
13227
- order_by: v36.optional(v36.string())
13637
+ orderBy: v36.optional(v36.string())
13228
13638
  });
13229
13639
  var ProjectsTodosListParamsSchema = v36.looseObject({
13230
13640
  ...EdgeCacheParamsSchema.entries,
13231
- assignee_id: v36.optional(v36.pipe(v36.unknown(), v36.transform(Number))),
13232
- completed_flag: v36.optional(v36.string()),
13641
+ assigneeId: v36.optional(v36.pipe(v36.unknown(), v36.transform(Number))),
13642
+ completedFlag: v36.optional(v36.string()),
13233
13643
  limit: v36.optional(v36.pipe(v36.unknown(), v36.transform(Number))),
13234
13644
  offset: v36.optional(v36.pipe(v36.unknown(), v36.transform(Number))),
13235
- order_by: v36.optional(v36.string())
13645
+ orderBy: v36.optional(v36.string())
13236
13646
  });
13237
13647
  var ProjectsTodolistsTodosListParamsSchema = v36.looseObject({
13238
13648
  ...EdgeCacheParamsSchema.entries,
13239
- assignee_id: v36.optional(v36.pipe(v36.unknown(), v36.transform(Number))),
13240
- completed_flag: v36.optional(v36.string()),
13649
+ assigneeId: v36.optional(v36.pipe(v36.unknown(), v36.transform(Number))),
13650
+ completedFlag: v36.optional(v36.string()),
13241
13651
  limit: v36.optional(v36.pipe(v36.unknown(), v36.transform(Number))),
13242
13652
  offset: v36.optional(v36.pipe(v36.unknown(), v36.transform(Number))),
13243
- order_by: v36.optional(v36.string())
13653
+ orderBy: v36.optional(v36.string())
13244
13654
  });
13245
13655
  var TodolistsListParamsSchema = v36.looseObject({
13246
13656
  ...EdgeCacheParamsSchema.entries,
13247
- assignee_id: v36.optional(v36.pipe(v36.unknown(), v36.transform(Number))),
13248
- completed_flag: v36.optional(v36.string()),
13657
+ assigneeId: v36.optional(v36.pipe(v36.unknown(), v36.transform(Number))),
13658
+ completedFlag: v36.optional(v36.string()),
13249
13659
  limit: v36.optional(v36.pipe(v36.unknown(), v36.transform(Number))),
13250
13660
  offset: v36.optional(v36.pipe(v36.unknown(), v36.transform(Number))),
13251
- order_by: v36.optional(v36.string()),
13252
- projects_id: v36.optional(v36.pipe(v36.unknown(), v36.transform(Number)))
13661
+ orderBy: v36.optional(v36.string()),
13662
+ projectsId: v36.optional(v36.pipe(v36.unknown(), v36.transform(Number)))
13253
13663
  });
13254
13664
  var TodosListParamsSchema = v36.looseObject({
13255
13665
  ...EdgeCacheParamsSchema.entries,
13256
- assignee_id: v36.optional(v36.pipe(v36.unknown(), v36.transform(Number))),
13257
- completed_flag: v36.optional(v36.string()),
13258
- due_at: v36.optional(v36.string()),
13666
+ assigneeId: v36.optional(v36.pipe(v36.unknown(), v36.transform(Number))),
13667
+ completedFlag: v36.optional(v36.string()),
13668
+ dueAt: v36.optional(v36.string()),
13259
13669
  limit: v36.optional(v36.pipe(v36.unknown(), v36.transform(Number))),
13260
13670
  offset: v36.optional(v36.pipe(v36.unknown(), v36.transform(Number))),
13261
- order_by: v36.optional(v36.string()),
13262
- projects_id: v36.optional(v36.pipe(v36.unknown(), v36.transform(Number))),
13263
- todolist_id: v36.optional(v36.pipe(v36.unknown(), v36.transform(Number)))
13671
+ orderBy: v36.optional(v36.string()),
13672
+ projectsId: v36.optional(v36.pipe(v36.unknown(), v36.transform(Number))),
13673
+ todolistId: v36.optional(v36.pipe(v36.unknown(), v36.transform(Number)))
13264
13674
  });
13265
13675
  var TodosSummaryListParamsSchema = v36.looseObject({
13266
13676
  ...EdgeCacheParamsSchema.entries,
13267
- akasha_cd: v36.optional(v36.pipe(v36.unknown(), v36.transform(Number))),
13677
+ akashaCd: v36.optional(v36.pipe(v36.unknown(), v36.transform(Number))),
13268
13678
  limit: v36.optional(v36.pipe(v36.unknown(), v36.transform(Number))),
13269
13679
  offset: v36.optional(v36.pipe(v36.unknown(), v36.transform(Number))),
13270
- process_cd: v36.optional(v36.pipe(v36.unknown(), v36.transform(Number)))
13680
+ processCd: v36.optional(v36.pipe(v36.unknown(), v36.transform(Number)))
13271
13681
  });
13272
13682
  var TodosCommentsListParamsSchema = v36.looseObject({
13273
13683
  ...EdgeCacheParamsSchema.entries,
13274
13684
  limit: v36.optional(v36.pipe(v36.unknown(), v36.transform(Number))),
13275
13685
  offset: v36.optional(v36.pipe(v36.unknown(), v36.transform(Number))),
13276
- order_by: v36.optional(v36.string())
13686
+ orderBy: v36.optional(v36.string())
13277
13687
  });
13278
13688
  var TodosEventsListParamsSchema = v36.looseObject({
13279
13689
  ...EdgeCacheParamsSchema.entries,
13280
- event_type_cd: v36.optional(v36.pipe(v36.unknown(), v36.transform(Number))),
13690
+ eventTypeCd: v36.optional(v36.pipe(v36.unknown(), v36.transform(Number))),
13281
13691
  limit: v36.optional(v36.pipe(v36.unknown(), v36.transform(Number))),
13282
13692
  offset: v36.optional(v36.pipe(v36.unknown(), v36.transform(Number))),
13283
- order_by: v36.optional(v36.string()),
13284
- people_id: v36.optional(v36.pipe(v36.unknown(), v36.transform(Number)))
13693
+ orderBy: v36.optional(v36.string()),
13694
+ peopleId: v36.optional(v36.pipe(v36.unknown(), v36.transform(Number)))
13285
13695
  });
13286
13696
  var TodosSessionsListParamsSchema = v36.looseObject({
13287
13697
  ...EdgeCacheParamsSchema.entries,
13288
13698
  limit: v36.optional(v36.pipe(v36.unknown(), v36.transform(Number))),
13289
13699
  offset: v36.optional(v36.pipe(v36.unknown(), v36.transform(Number))),
13290
- order_by: v36.optional(v36.string()),
13291
- session_status_cd: v36.optional(v36.pipe(v36.unknown(), v36.transform(Number)))
13700
+ orderBy: v36.optional(v36.string()),
13701
+ sessionStatusCd: v36.optional(v36.pipe(v36.unknown(), v36.transform(Number)))
13292
13702
  });
13293
13703
  var CommentsDataSchema = v36.looseObject({
13294
13704
  id: v36.optional(v36.number()),
@@ -13490,7 +13900,7 @@ var endpoints27 = [
13490
13900
  action: "list",
13491
13901
  aliases: [],
13492
13902
  pathParams: [],
13493
- queryParams: ["creator_id", "limit", "offset", "order_by", "todos_id"],
13903
+ queryParams: ["creatorId", "limit", "offset", "orderBy", "todosId"],
13494
13904
  edgeCache: true,
13495
13905
  responseSchema: CommentsDataSchema,
13496
13906
  responseType: "array"
@@ -13514,7 +13924,7 @@ var endpoints27 = [
13514
13924
  action: "list",
13515
13925
  aliases: [],
13516
13926
  pathParams: [],
13517
- queryParams: ["event_type_cd", "id", "limit", "offset", "order_by", "people_id"],
13927
+ queryParams: ["eventTypeCd", "id", "limit", "offset", "orderBy", "peopleId"],
13518
13928
  edgeCache: true,
13519
13929
  responseSchema: EventsDataSchema,
13520
13930
  responseType: "array"
@@ -13593,7 +14003,7 @@ var endpoints27 = [
13593
14003
  action: "list",
13594
14004
  aliases: [],
13595
14005
  pathParams: ["id"],
13596
- queryParams: ["completed_flag", "due_at", "limit", "offset", "order_by", "projects_id"],
14006
+ queryParams: ["completedFlag", "dueAt", "limit", "offset", "orderBy", "projectsId"],
13597
14007
  edgeCache: true,
13598
14008
  responseSchema: PeopleDataSchema,
13599
14009
  responseType: "array"
@@ -13605,7 +14015,7 @@ var endpoints27 = [
13605
14015
  action: "list",
13606
14016
  aliases: [],
13607
14017
  pathParams: ["personId", "projectId"],
13608
- queryParams: ["completed_flag", "limit", "offset", "order_by"],
14018
+ queryParams: ["completedFlag", "limit", "offset", "orderBy"],
13609
14019
  edgeCache: true,
13610
14020
  responseSchema: PeopleDataSchema,
13611
14021
  responseType: "array"
@@ -13617,7 +14027,7 @@ var endpoints27 = [
13617
14027
  action: "list",
13618
14028
  aliases: [],
13619
14029
  pathParams: [],
13620
- queryParams: ["archived_flag", "limit", "offset", "order_by", "trashed_flag"],
14030
+ queryParams: ["archivedFlag", "limit", "offset", "orderBy", "trashedFlag"],
13621
14031
  edgeCache: true,
13622
14032
  responseSchema: ProjectsDataSchema,
13623
14033
  responseType: "array"
@@ -13661,7 +14071,7 @@ var endpoints27 = [
13661
14071
  action: "list",
13662
14072
  aliases: [],
13663
14073
  pathParams: ["id"],
13664
- queryParams: ["completed_flag", "limit", "offset", "order_by"],
14074
+ queryParams: ["completedFlag", "limit", "offset", "orderBy"],
13665
14075
  edgeCache: true,
13666
14076
  responseSchema: ProjectsDataSchema,
13667
14077
  responseType: "array"
@@ -13673,7 +14083,7 @@ var endpoints27 = [
13673
14083
  action: "list",
13674
14084
  aliases: [],
13675
14085
  pathParams: ["id"],
13676
- queryParams: ["assignee_id", "completed_flag", "limit", "offset", "order_by"],
14086
+ queryParams: ["assigneeId", "completedFlag", "limit", "offset", "orderBy"],
13677
14087
  edgeCache: true,
13678
14088
  responseSchema: ProjectsDataSchema,
13679
14089
  responseType: "array"
@@ -13685,7 +14095,7 @@ var endpoints27 = [
13685
14095
  action: "list",
13686
14096
  aliases: [],
13687
14097
  pathParams: ["projectId", "todolistId"],
13688
- queryParams: ["assignee_id", "completed_flag", "limit", "offset", "order_by"],
14098
+ queryParams: ["assigneeId", "completedFlag", "limit", "offset", "orderBy"],
13689
14099
  edgeCache: true,
13690
14100
  responseSchema: ProjectsDataSchema,
13691
14101
  responseType: "array"
@@ -13697,7 +14107,7 @@ var endpoints27 = [
13697
14107
  action: "list",
13698
14108
  aliases: [],
13699
14109
  pathParams: [],
13700
- queryParams: ["assignee_id", "completed_flag", "limit", "offset", "order_by", "projects_id"],
14110
+ queryParams: ["assigneeId", "completedFlag", "limit", "offset", "orderBy", "projectsId"],
13701
14111
  edgeCache: true,
13702
14112
  responseSchema: TodolistsDataSchema,
13703
14113
  responseType: "array"
@@ -13722,14 +14132,14 @@ var endpoints27 = [
13722
14132
  aliases: [],
13723
14133
  pathParams: [],
13724
14134
  queryParams: [
13725
- "assignee_id",
13726
- "completed_flag",
13727
- "due_at",
14135
+ "assigneeId",
14136
+ "completedFlag",
14137
+ "dueAt",
13728
14138
  "limit",
13729
14139
  "offset",
13730
- "order_by",
13731
- "projects_id",
13732
- "todolist_id"
14140
+ "orderBy",
14141
+ "projectsId",
14142
+ "todolistId"
13733
14143
  ],
13734
14144
  edgeCache: true,
13735
14145
  responseSchema: TodosDataSchema,
@@ -13742,7 +14152,7 @@ var endpoints27 = [
13742
14152
  action: "list",
13743
14153
  aliases: [],
13744
14154
  pathParams: [],
13745
- queryParams: ["akasha_cd", "limit", "offset", "process_cd"],
14155
+ queryParams: ["akashaCd", "limit", "offset", "processCd"],
13746
14156
  edgeCache: true,
13747
14157
  responseSchema: TodosSummaryDataSchema,
13748
14158
  responseType: "array"
@@ -13778,7 +14188,7 @@ var endpoints27 = [
13778
14188
  action: "list",
13779
14189
  aliases: [],
13780
14190
  pathParams: ["id"],
13781
- queryParams: ["limit", "offset", "order_by"],
14191
+ queryParams: ["limit", "offset", "orderBy"],
13782
14192
  edgeCache: true,
13783
14193
  responseSchema: TodosDataSchema,
13784
14194
  responseType: "array"
@@ -13790,7 +14200,7 @@ var endpoints27 = [
13790
14200
  action: "list",
13791
14201
  aliases: [],
13792
14202
  pathParams: ["id"],
13793
- queryParams: ["event_type_cd", "limit", "offset", "order_by", "people_id"],
14203
+ queryParams: ["eventTypeCd", "limit", "offset", "orderBy", "peopleId"],
13794
14204
  edgeCache: true,
13795
14205
  responseSchema: EventsDataSchema,
13796
14206
  responseType: "array"
@@ -13826,7 +14236,7 @@ var endpoints27 = [
13826
14236
  action: "list",
13827
14237
  aliases: [],
13828
14238
  pathParams: ["id"],
13829
- queryParams: ["limit", "offset", "order_by", "session_status_cd"],
14239
+ queryParams: ["limit", "offset", "orderBy", "sessionStatusCd"],
13830
14240
  edgeCache: true,
13831
14241
  responseSchema: TodosSessionsDataSchema,
13832
14242
  responseType: "array"
@@ -13930,8 +14340,8 @@ function createHealthCheckDataResource27(healthCheck) {
13930
14340
  var Basecamp2Client = class extends BaseServiceClient {
13931
14341
  constructor(http, baseUrl = "https://basecamp2.augur-api.com") {
13932
14342
  super("basecamp2", http, baseUrl);
13933
- const boundExecuteRequest = (config, params, pathParams) => {
13934
- return this.executeRequest(config, params, pathParams);
14343
+ const boundExecuteRequest = (config, params, pathParams, query) => {
14344
+ return this.executeRequest(config, params, pathParams, query);
13935
14345
  };
13936
14346
  const proxy = createServiceProxy(
13937
14347
  "basecamp2",
@@ -14861,7 +15271,7 @@ function createCrossSiteAuthenticator(augurInfoToken) {
14861
15271
  }
14862
15272
 
14863
15273
  // src/index.ts
14864
- var VERSION = "2026.6.5";
15274
+ var VERSION = "2026.7.1";
14865
15275
  export {
14866
15276
  AgrInfoClient,
14867
15277
  AgrIntClient,