@simpleapps-com/augur-api 2026.6.4 → 2026.7.1
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/dist/{client-LO8qxF0b.d.mts → client-CtkvL4em.d.mts} +474 -181
- package/dist/{client-LO8qxF0b.d.ts → client-CtkvL4em.d.ts} +474 -181
- package/dist/index.d.mts +3 -3
- package/dist/index.d.ts +3 -3
- package/dist/index.js +762 -339
- package/dist/index.js.map +1 -1
- package/dist/index.mjs +762 -339
- package/dist/index.mjs.map +1 -1
- package/dist/testing.d.mts +1 -1
- package/dist/testing.d.ts +1 -1
- package/package.json +1 -1
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
|
-
|
|
427
|
-
|
|
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, {
|
|
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, {
|
|
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([
|
|
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
|
-
|
|
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
|
-
|
|
1352
|
-
|
|
1353
|
-
|
|
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 ||
|
|
1357
|
-
return executeRequest(config,
|
|
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
|
-
|
|
1917
|
+
userId: v7.pipe(v7.unknown(), v7.transform(Number))
|
|
1831
1918
|
});
|
|
1832
1919
|
var CartHdrLookupGetParamsSchema = v7.looseObject({
|
|
1833
1920
|
...EdgeCacheParamsSchema.entries,
|
|
1834
|
-
|
|
1835
|
-
|
|
1836
|
-
|
|
1837
|
-
|
|
1838
|
-
|
|
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
|
-
|
|
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: ["
|
|
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: ["
|
|
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: ["
|
|
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()),
|
|
@@ -4130,6 +4276,19 @@ var ItemUomListParamsSchema = v11.looseObject({
|
|
|
4130
4276
|
orderBy: v11.optional(v11.string()),
|
|
4131
4277
|
unitOfMeasure: v11.optional(v11.string())
|
|
4132
4278
|
});
|
|
4279
|
+
var ItemWishlistGetParamsSchema = v11.looseObject({
|
|
4280
|
+
...EdgeCacheParamsSchema.entries,
|
|
4281
|
+
limit: v11.optional(v11.pipe(v11.unknown(), v11.transform(Number))),
|
|
4282
|
+
offset: v11.optional(v11.pipe(v11.unknown(), v11.transform(Number))),
|
|
4283
|
+
orderBy: v11.optional(v11.string()),
|
|
4284
|
+
statusCd: v11.optional(v11.pipe(v11.unknown(), v11.transform(Number)))
|
|
4285
|
+
});
|
|
4286
|
+
var ItemWishlistHdrGetParamsSchema = v11.looseObject({
|
|
4287
|
+
...EdgeCacheParamsSchema.entries,
|
|
4288
|
+
limit: v11.optional(v11.pipe(v11.unknown(), v11.transform(Number))),
|
|
4289
|
+
offset: v11.optional(v11.pipe(v11.unknown(), v11.transform(Number))),
|
|
4290
|
+
statusCd: v11.optional(v11.pipe(v11.unknown(), v11.transform(Number)))
|
|
4291
|
+
});
|
|
4133
4292
|
var LocationsBinsListParamsSchema = v11.looseObject({
|
|
4134
4293
|
...EdgeCacheParamsSchema.entries,
|
|
4135
4294
|
bin: v11.optional(v11.string()),
|
|
@@ -4244,7 +4403,10 @@ var AttributesItemsDataSchema = v11.looseObject({
|
|
|
4244
4403
|
processCd: v11.optional(v11.number()),
|
|
4245
4404
|
statusCd: v11.optional(v11.number()),
|
|
4246
4405
|
attributeValueUid: v11.optional(v11.number()),
|
|
4247
|
-
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())
|
|
4248
4410
|
});
|
|
4249
4411
|
var AttributesValuesDataSchema = v11.looseObject({
|
|
4250
4412
|
attributeValueUid: v11.optional(v11.number()),
|
|
@@ -4336,7 +4498,23 @@ var InvLocDataSchema = v11.looseObject({
|
|
|
4336
4498
|
updateCd: v11.optional(v11.number()),
|
|
4337
4499
|
productGroupId: v11.optional(v11.nullable(v11.string())),
|
|
4338
4500
|
purchaseDiscountGroup: v11.optional(v11.nullable(v11.string())),
|
|
4339
|
-
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())
|
|
4340
4518
|
});
|
|
4341
4519
|
var InvMastFaqDataSchema = v11.looseObject({
|
|
4342
4520
|
invMastFaqUid: v11.optional(v11.number()),
|
|
@@ -4582,6 +4760,8 @@ var endpoints6 = [
|
|
|
4582
4760
|
"attributeValueUid",
|
|
4583
4761
|
"excludeValues",
|
|
4584
4762
|
"includeValues",
|
|
4763
|
+
"itemId",
|
|
4764
|
+
"itemIdSearch",
|
|
4585
4765
|
"limit",
|
|
4586
4766
|
"offset",
|
|
4587
4767
|
"orderBy",
|
|
@@ -5061,7 +5241,7 @@ var endpoints6 = [
|
|
|
5061
5241
|
pathParams: ["invMastUid"],
|
|
5062
5242
|
queryParams: [],
|
|
5063
5243
|
edgeCache: false,
|
|
5064
|
-
responseSchema:
|
|
5244
|
+
responseSchema: InvMastAttributesDataSchema,
|
|
5065
5245
|
responseType: "object"
|
|
5066
5246
|
},
|
|
5067
5247
|
{
|
|
@@ -5085,7 +5265,7 @@ var endpoints6 = [
|
|
|
5085
5265
|
pathParams: ["invMastUid", "attributeUid"],
|
|
5086
5266
|
queryParams: [],
|
|
5087
5267
|
edgeCache: false,
|
|
5088
|
-
responseSchema:
|
|
5268
|
+
responseSchema: InvMastAttributesDataSchema,
|
|
5089
5269
|
responseType: "object"
|
|
5090
5270
|
},
|
|
5091
5271
|
{
|
|
@@ -5097,7 +5277,7 @@ var endpoints6 = [
|
|
|
5097
5277
|
pathParams: ["invMastUid", "attributeUid", "attributeValueUid"],
|
|
5098
5278
|
queryParams: [],
|
|
5099
5279
|
edgeCache: false,
|
|
5100
|
-
responseSchema:
|
|
5280
|
+
responseSchema: InvMastAttributesDataSchema,
|
|
5101
5281
|
responseType: "object"
|
|
5102
5282
|
},
|
|
5103
5283
|
{
|
|
@@ -5404,7 +5584,7 @@ var endpoints6 = [
|
|
|
5404
5584
|
action: "get",
|
|
5405
5585
|
aliases: [],
|
|
5406
5586
|
pathParams: ["usersId"],
|
|
5407
|
-
queryParams: [],
|
|
5587
|
+
queryParams: ["limit", "offset", "orderBy", "statusCd"],
|
|
5408
5588
|
edgeCache: true,
|
|
5409
5589
|
responseSchema: PassthroughDataSchema6,
|
|
5410
5590
|
responseType: "passthrough"
|
|
@@ -5452,7 +5632,7 @@ var endpoints6 = [
|
|
|
5452
5632
|
action: "get",
|
|
5453
5633
|
aliases: [],
|
|
5454
5634
|
pathParams: ["usersId", "itemWishlistHdrUid"],
|
|
5455
|
-
queryParams: [],
|
|
5635
|
+
queryParams: ["limit", "offset", "statusCd"],
|
|
5456
5636
|
edgeCache: true,
|
|
5457
5637
|
responseSchema: PassthroughDataSchema6,
|
|
5458
5638
|
responseType: "passthrough"
|
|
@@ -5827,8 +6007,8 @@ function createWhoamiDataResource(whoami) {
|
|
|
5827
6007
|
var ItemsClient = class extends BaseServiceClient {
|
|
5828
6008
|
constructor(http, baseUrl = "https://items.augur-api.com") {
|
|
5829
6009
|
super("items", http, baseUrl);
|
|
5830
|
-
const boundExecuteRequest = (config, params, pathParams) => {
|
|
5831
|
-
return this.executeRequest(config, params, pathParams);
|
|
6010
|
+
const boundExecuteRequest = (config, params, pathParams, query) => {
|
|
6011
|
+
return this.executeRequest(config, params, pathParams, query);
|
|
5832
6012
|
};
|
|
5833
6013
|
const proxy = createServiceProxy("items", boundExecuteRequest, endpoints6);
|
|
5834
6014
|
const dataProxy = createDataProxy(proxy);
|
|
@@ -6293,8 +6473,8 @@ function createHealthCheckDataResource7(healthCheck) {
|
|
|
6293
6473
|
var LegacyClient = class extends BaseServiceClient {
|
|
6294
6474
|
constructor(http, baseUrl = "https://legacy.augur-api.com") {
|
|
6295
6475
|
super("legacy", http, baseUrl);
|
|
6296
|
-
const boundExecuteRequest = (config, params, pathParams) => {
|
|
6297
|
-
return this.executeRequest(config, params, pathParams);
|
|
6476
|
+
const boundExecuteRequest = (config, params, pathParams, query) => {
|
|
6477
|
+
return this.executeRequest(config, params, pathParams, query);
|
|
6298
6478
|
};
|
|
6299
6479
|
const proxy = createServiceProxy("legacy", boundExecuteRequest, endpoints7);
|
|
6300
6480
|
const dataProxy = createDataProxy(proxy);
|
|
@@ -6324,11 +6504,6 @@ var BinTransferListParamsSchema = v14.looseObject({
|
|
|
6324
6504
|
offset: v14.optional(v14.pipe(v14.unknown(), v14.transform(Number))),
|
|
6325
6505
|
statusCd: v14.optional(v14.pipe(v14.unknown(), v14.transform(Number)))
|
|
6326
6506
|
});
|
|
6327
|
-
var BinTransferCreateParamsSchema = v14.looseObject({
|
|
6328
|
-
limit: v14.optional(v14.pipe(v14.unknown(), v14.transform(Number))),
|
|
6329
|
-
offset: v14.optional(v14.pipe(v14.unknown(), v14.transform(Number))),
|
|
6330
|
-
statusCd: v14.optional(v14.pipe(v14.unknown(), v14.transform(Number)))
|
|
6331
|
-
});
|
|
6332
6507
|
var PurchaseOrderReceiptListParamsSchema = v14.looseObject({
|
|
6333
6508
|
...EdgeCacheParamsSchema.entries,
|
|
6334
6509
|
limit: v14.optional(v14.pipe(v14.unknown(), v14.transform(Number))),
|
|
@@ -6336,12 +6511,6 @@ var PurchaseOrderReceiptListParamsSchema = v14.looseObject({
|
|
|
6336
6511
|
referenceNo: v14.optional(v14.string()),
|
|
6337
6512
|
statusCd: v14.optional(v14.pipe(v14.unknown(), v14.transform(Number)))
|
|
6338
6513
|
});
|
|
6339
|
-
var PurchaseOrderReceiptCreateParamsSchema = v14.looseObject({
|
|
6340
|
-
limit: v14.optional(v14.pipe(v14.unknown(), v14.transform(Number))),
|
|
6341
|
-
offset: v14.optional(v14.pipe(v14.unknown(), v14.transform(Number))),
|
|
6342
|
-
referenceNo: v14.optional(v14.string()),
|
|
6343
|
-
statusCd: v14.optional(v14.pipe(v14.unknown(), v14.transform(Number)))
|
|
6344
|
-
});
|
|
6345
6514
|
var ReceivingListParamsSchema = v14.looseObject({
|
|
6346
6515
|
...EdgeCacheParamsSchema.entries,
|
|
6347
6516
|
limit: v14.optional(v14.pipe(v14.unknown(), v14.transform(Number))),
|
|
@@ -6349,12 +6518,6 @@ var ReceivingListParamsSchema = v14.looseObject({
|
|
|
6349
6518
|
poNo: v14.optional(v14.pipe(v14.unknown(), v14.transform(Number))),
|
|
6350
6519
|
statusCd: v14.optional(v14.pipe(v14.unknown(), v14.transform(Number)))
|
|
6351
6520
|
});
|
|
6352
|
-
var ReceivingCreateParamsSchema = 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
|
-
poNo: v14.optional(v14.pipe(v14.unknown(), v14.transform(Number))),
|
|
6356
|
-
statusCd: v14.optional(v14.pipe(v14.unknown(), v14.transform(Number)))
|
|
6357
|
-
});
|
|
6358
6521
|
var TransferListParamsSchema = v14.looseObject({
|
|
6359
6522
|
...EdgeCacheParamsSchema.entries,
|
|
6360
6523
|
limit: v14.optional(v14.pipe(v14.unknown(), v14.transform(Number))),
|
|
@@ -6362,12 +6525,6 @@ var TransferListParamsSchema = v14.looseObject({
|
|
|
6362
6525
|
referenceNo: v14.optional(v14.string()),
|
|
6363
6526
|
statusCd: v14.optional(v14.pipe(v14.unknown(), v14.transform(Number)))
|
|
6364
6527
|
});
|
|
6365
|
-
var TransferCreateParamsSchema = 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
|
-
referenceNo: v14.optional(v14.string()),
|
|
6369
|
-
statusCd: v14.optional(v14.pipe(v14.unknown(), v14.transform(Number)))
|
|
6370
|
-
});
|
|
6371
6528
|
var TransferReceiptListParamsSchema = v14.looseObject({
|
|
6372
6529
|
...EdgeCacheParamsSchema.entries,
|
|
6373
6530
|
limit: v14.optional(v14.pipe(v14.unknown(), v14.transform(Number))),
|
|
@@ -6375,12 +6532,6 @@ var TransferReceiptListParamsSchema = v14.looseObject({
|
|
|
6375
6532
|
referenceNo: v14.optional(v14.string()),
|
|
6376
6533
|
statusCd: v14.optional(v14.pipe(v14.unknown(), v14.transform(Number)))
|
|
6377
6534
|
});
|
|
6378
|
-
var TransferReceiptCreateParamsSchema = 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
6535
|
var TransferShippingListParamsSchema = v14.looseObject({
|
|
6385
6536
|
...EdgeCacheParamsSchema.entries,
|
|
6386
6537
|
limit: v14.optional(v14.pipe(v14.unknown(), v14.transform(Number))),
|
|
@@ -6388,12 +6539,6 @@ var TransferShippingListParamsSchema = v14.looseObject({
|
|
|
6388
6539
|
referenceNo: v14.optional(v14.string()),
|
|
6389
6540
|
statusCd: v14.optional(v14.pipe(v14.unknown(), v14.transform(Number)))
|
|
6390
6541
|
});
|
|
6391
|
-
var TransferShippingCreateParamsSchema = 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
6542
|
var BinTransferDataSchema = v14.looseObject({
|
|
6398
6543
|
binTransferHdrUid: v14.optional(v14.number()),
|
|
6399
6544
|
importState: v14.optional(v14.string()),
|
|
@@ -6483,6 +6628,30 @@ var PassthroughDataSchema8 = v14.record(v14.string(), v14.unknown());
|
|
|
6483
6628
|
|
|
6484
6629
|
// src/services/nexus/generated/endpoints.ts
|
|
6485
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
|
+
},
|
|
6486
6655
|
{
|
|
6487
6656
|
method: "GET",
|
|
6488
6657
|
path: "/bin-transfer/{binTransferHdrUid}",
|
|
@@ -6521,38 +6690,38 @@ var endpoints8 = [
|
|
|
6521
6690
|
},
|
|
6522
6691
|
{
|
|
6523
6692
|
method: "GET",
|
|
6524
|
-
path: "/bin-transfer",
|
|
6525
|
-
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",
|
|
6526
6707
|
action: "list",
|
|
6527
6708
|
aliases: [],
|
|
6528
6709
|
pathParams: [],
|
|
6529
|
-
queryParams: ["limit", "offset", "statusCd"],
|
|
6710
|
+
queryParams: ["limit", "offset", "referenceNo", "statusCd"],
|
|
6530
6711
|
edgeCache: true,
|
|
6531
|
-
responseSchema:
|
|
6712
|
+
responseSchema: PurchaseOrderReceiptDataSchema,
|
|
6532
6713
|
responseType: "array"
|
|
6533
6714
|
},
|
|
6534
6715
|
{
|
|
6535
6716
|
method: "POST",
|
|
6536
|
-
path: "/
|
|
6537
|
-
chain: "
|
|
6717
|
+
path: "/purchase-order-receipt",
|
|
6718
|
+
chain: "purchaseOrderReceipt",
|
|
6538
6719
|
action: "create",
|
|
6539
6720
|
aliases: [],
|
|
6540
6721
|
pathParams: [],
|
|
6541
|
-
queryParams: ["limit", "offset", "statusCd"],
|
|
6542
|
-
edgeCache: false,
|
|
6543
|
-
responseSchema: BinTransferDataSchema,
|
|
6544
|
-
responseType: "object"
|
|
6545
|
-
},
|
|
6546
|
-
{
|
|
6547
|
-
method: "GET",
|
|
6548
|
-
path: "/bin-transfer/{binTransferHdrUid}/status",
|
|
6549
|
-
chain: "binTransfer.status",
|
|
6550
|
-
action: "list",
|
|
6551
|
-
aliases: [],
|
|
6552
|
-
pathParams: ["binTransferHdrUid"],
|
|
6553
6722
|
queryParams: [],
|
|
6554
|
-
edgeCache:
|
|
6555
|
-
responseSchema:
|
|
6723
|
+
edgeCache: false,
|
|
6724
|
+
responseSchema: PurchaseOrderReceiptDataSchema,
|
|
6556
6725
|
responseType: "object"
|
|
6557
6726
|
},
|
|
6558
6727
|
{
|
|
@@ -6593,26 +6762,26 @@ var endpoints8 = [
|
|
|
6593
6762
|
},
|
|
6594
6763
|
{
|
|
6595
6764
|
method: "GET",
|
|
6596
|
-
path: "/
|
|
6597
|
-
chain: "
|
|
6765
|
+
path: "/receiving",
|
|
6766
|
+
chain: "receiving",
|
|
6598
6767
|
action: "list",
|
|
6599
6768
|
aliases: [],
|
|
6600
6769
|
pathParams: [],
|
|
6601
|
-
queryParams: ["limit", "offset", "
|
|
6770
|
+
queryParams: ["limit", "offset", "poNo", "statusCd"],
|
|
6602
6771
|
edgeCache: true,
|
|
6603
|
-
responseSchema:
|
|
6772
|
+
responseSchema: ReceivingDataSchema,
|
|
6604
6773
|
responseType: "array"
|
|
6605
6774
|
},
|
|
6606
6775
|
{
|
|
6607
6776
|
method: "POST",
|
|
6608
|
-
path: "/
|
|
6609
|
-
chain: "
|
|
6777
|
+
path: "/receiving",
|
|
6778
|
+
chain: "receiving",
|
|
6610
6779
|
action: "create",
|
|
6611
6780
|
aliases: [],
|
|
6612
6781
|
pathParams: [],
|
|
6613
|
-
queryParams: [
|
|
6782
|
+
queryParams: [],
|
|
6614
6783
|
edgeCache: false,
|
|
6615
|
-
responseSchema:
|
|
6784
|
+
responseSchema: ReceivingDataSchema,
|
|
6616
6785
|
responseType: "object"
|
|
6617
6786
|
},
|
|
6618
6787
|
{
|
|
@@ -6653,59 +6822,23 @@ var endpoints8 = [
|
|
|
6653
6822
|
},
|
|
6654
6823
|
{
|
|
6655
6824
|
method: "GET",
|
|
6656
|
-
path: "/
|
|
6657
|
-
chain: "
|
|
6825
|
+
path: "/transfer",
|
|
6826
|
+
chain: "transfer",
|
|
6658
6827
|
action: "list",
|
|
6659
6828
|
aliases: [],
|
|
6660
6829
|
pathParams: [],
|
|
6661
|
-
queryParams: ["limit", "offset", "
|
|
6830
|
+
queryParams: ["limit", "offset", "referenceNo", "statusCd"],
|
|
6662
6831
|
edgeCache: true,
|
|
6663
|
-
responseSchema:
|
|
6832
|
+
responseSchema: TransferDataSchema,
|
|
6664
6833
|
responseType: "array"
|
|
6665
6834
|
},
|
|
6666
6835
|
{
|
|
6667
6836
|
method: "POST",
|
|
6668
|
-
path: "/
|
|
6669
|
-
chain: "
|
|
6837
|
+
path: "/transfer",
|
|
6838
|
+
chain: "transfer",
|
|
6670
6839
|
action: "create",
|
|
6671
6840
|
aliases: [],
|
|
6672
6841
|
pathParams: [],
|
|
6673
|
-
queryParams: ["limit", "offset", "poNo", "statusCd"],
|
|
6674
|
-
edgeCache: false,
|
|
6675
|
-
responseSchema: ReceivingDataSchema,
|
|
6676
|
-
responseType: "object"
|
|
6677
|
-
},
|
|
6678
|
-
{
|
|
6679
|
-
method: "GET",
|
|
6680
|
-
path: "/transfer/{transferUid}",
|
|
6681
|
-
chain: "transfer",
|
|
6682
|
-
action: "get",
|
|
6683
|
-
aliases: [],
|
|
6684
|
-
pathParams: ["transferUid"],
|
|
6685
|
-
queryParams: [],
|
|
6686
|
-
edgeCache: true,
|
|
6687
|
-
responseSchema: TransferDataSchema,
|
|
6688
|
-
responseType: "object"
|
|
6689
|
-
},
|
|
6690
|
-
{
|
|
6691
|
-
method: "PUT",
|
|
6692
|
-
path: "/transfer/{transferUid}",
|
|
6693
|
-
chain: "transfer",
|
|
6694
|
-
action: "update",
|
|
6695
|
-
aliases: [],
|
|
6696
|
-
pathParams: ["transferUid"],
|
|
6697
|
-
queryParams: [],
|
|
6698
|
-
edgeCache: false,
|
|
6699
|
-
responseSchema: TransferDataSchema,
|
|
6700
|
-
responseType: "object"
|
|
6701
|
-
},
|
|
6702
|
-
{
|
|
6703
|
-
method: "DELETE",
|
|
6704
|
-
path: "/transfer/{transferUid}",
|
|
6705
|
-
chain: "transfer",
|
|
6706
|
-
action: "delete",
|
|
6707
|
-
aliases: [],
|
|
6708
|
-
pathParams: ["transferUid"],
|
|
6709
6842
|
queryParams: [],
|
|
6710
6843
|
edgeCache: false,
|
|
6711
6844
|
responseSchema: TransferDataSchema,
|
|
@@ -6713,26 +6846,26 @@ var endpoints8 = [
|
|
|
6713
6846
|
},
|
|
6714
6847
|
{
|
|
6715
6848
|
method: "GET",
|
|
6716
|
-
path: "/transfer",
|
|
6717
|
-
chain: "
|
|
6849
|
+
path: "/transfer-receipt",
|
|
6850
|
+
chain: "transferReceipt",
|
|
6718
6851
|
action: "list",
|
|
6719
6852
|
aliases: [],
|
|
6720
6853
|
pathParams: [],
|
|
6721
6854
|
queryParams: ["limit", "offset", "referenceNo", "statusCd"],
|
|
6722
6855
|
edgeCache: true,
|
|
6723
|
-
responseSchema:
|
|
6856
|
+
responseSchema: TransferReceiptDataSchema,
|
|
6724
6857
|
responseType: "array"
|
|
6725
6858
|
},
|
|
6726
6859
|
{
|
|
6727
6860
|
method: "POST",
|
|
6728
|
-
path: "/transfer",
|
|
6729
|
-
chain: "
|
|
6861
|
+
path: "/transfer-receipt",
|
|
6862
|
+
chain: "transferReceipt",
|
|
6730
6863
|
action: "create",
|
|
6731
6864
|
aliases: [],
|
|
6732
6865
|
pathParams: [],
|
|
6733
|
-
queryParams: [
|
|
6866
|
+
queryParams: [],
|
|
6734
6867
|
edgeCache: false,
|
|
6735
|
-
responseSchema:
|
|
6868
|
+
responseSchema: TransferReceiptDataSchema,
|
|
6736
6869
|
responseType: "object"
|
|
6737
6870
|
},
|
|
6738
6871
|
{
|
|
@@ -6773,8 +6906,8 @@ var endpoints8 = [
|
|
|
6773
6906
|
},
|
|
6774
6907
|
{
|
|
6775
6908
|
method: "GET",
|
|
6776
|
-
path: "/transfer-
|
|
6777
|
-
chain: "
|
|
6909
|
+
path: "/transfer-shipping",
|
|
6910
|
+
chain: "transferShipping",
|
|
6778
6911
|
action: "list",
|
|
6779
6912
|
aliases: [],
|
|
6780
6913
|
pathParams: [],
|
|
@@ -6785,12 +6918,12 @@ var endpoints8 = [
|
|
|
6785
6918
|
},
|
|
6786
6919
|
{
|
|
6787
6920
|
method: "POST",
|
|
6788
|
-
path: "/transfer-
|
|
6789
|
-
chain: "
|
|
6921
|
+
path: "/transfer-shipping",
|
|
6922
|
+
chain: "transferShipping",
|
|
6790
6923
|
action: "create",
|
|
6791
6924
|
aliases: [],
|
|
6792
6925
|
pathParams: [],
|
|
6793
|
-
queryParams: [
|
|
6926
|
+
queryParams: [],
|
|
6794
6927
|
edgeCache: false,
|
|
6795
6928
|
responseSchema: TransferReceiptDataSchema,
|
|
6796
6929
|
responseType: "object"
|
|
@@ -6833,26 +6966,38 @@ var endpoints8 = [
|
|
|
6833
6966
|
},
|
|
6834
6967
|
{
|
|
6835
6968
|
method: "GET",
|
|
6836
|
-
path: "/transfer
|
|
6837
|
-
chain: "
|
|
6838
|
-
action: "
|
|
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",
|
|
6839
6984
|
aliases: [],
|
|
6840
|
-
pathParams: [],
|
|
6841
|
-
queryParams: [
|
|
6842
|
-
edgeCache:
|
|
6843
|
-
responseSchema:
|
|
6844
|
-
responseType: "
|
|
6985
|
+
pathParams: ["transferUid"],
|
|
6986
|
+
queryParams: [],
|
|
6987
|
+
edgeCache: false,
|
|
6988
|
+
responseSchema: TransferDataSchema,
|
|
6989
|
+
responseType: "object"
|
|
6845
6990
|
},
|
|
6846
6991
|
{
|
|
6847
|
-
method: "
|
|
6848
|
-
path: "/transfer
|
|
6849
|
-
chain: "
|
|
6850
|
-
action: "
|
|
6992
|
+
method: "DELETE",
|
|
6993
|
+
path: "/transfer/{transferUid}",
|
|
6994
|
+
chain: "transfer",
|
|
6995
|
+
action: "delete",
|
|
6851
6996
|
aliases: [],
|
|
6852
|
-
pathParams: [],
|
|
6853
|
-
queryParams: [
|
|
6997
|
+
pathParams: ["transferUid"],
|
|
6998
|
+
queryParams: [],
|
|
6854
6999
|
edgeCache: false,
|
|
6855
|
-
responseSchema:
|
|
7000
|
+
responseSchema: TransferDataSchema,
|
|
6856
7001
|
responseType: "object"
|
|
6857
7002
|
}
|
|
6858
7003
|
];
|
|
@@ -6931,8 +7076,8 @@ function createPingDataResource5(ping) {
|
|
|
6931
7076
|
var NexusClient = class extends BaseServiceClient {
|
|
6932
7077
|
constructor(http, baseUrl = "https://nexus.augur-api.com") {
|
|
6933
7078
|
super("nexus", http, baseUrl);
|
|
6934
|
-
const boundExecuteRequest = (config, params, pathParams) => {
|
|
6935
|
-
return this.executeRequest(config, params, pathParams);
|
|
7079
|
+
const boundExecuteRequest = (config, params, pathParams, query) => {
|
|
7080
|
+
return this.executeRequest(config, params, pathParams, query);
|
|
6936
7081
|
};
|
|
6937
7082
|
const proxy = createServiceProxy("nexus", boundExecuteRequest, endpoints8);
|
|
6938
7083
|
const dataProxy = createDataProxy(proxy);
|
|
@@ -7012,6 +7157,14 @@ var TrainingConversationsMessagesListParamsSchema = v15.looseObject({
|
|
|
7012
7157
|
offset: v15.optional(v15.pipe(v15.unknown(), v15.transform(Number))),
|
|
7013
7158
|
orderBy: v15.optional(v15.string())
|
|
7014
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
|
+
});
|
|
7015
7168
|
var FyxerTranscriptDataSchema = v15.looseObject({
|
|
7016
7169
|
fyxerTranscriptHdrUid: v15.optional(v15.number()),
|
|
7017
7170
|
link: v15.optional(v15.string()),
|
|
@@ -7131,6 +7284,26 @@ var TrainingConversationsMessagesDataSchema = v15.looseObject({
|
|
|
7131
7284
|
dateCreated: v15.optional(v15.string()),
|
|
7132
7285
|
dateLastModified: v15.optional(v15.string())
|
|
7133
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
|
+
});
|
|
7134
7307
|
var PassthroughDataSchema9 = v15.record(v15.string(), v15.unknown());
|
|
7135
7308
|
|
|
7136
7309
|
// src/services/agr-site/generated/endpoints.ts
|
|
@@ -7147,6 +7320,18 @@ var endpoints9 = [
|
|
|
7147
7320
|
responseSchema: PassthroughDataSchema9,
|
|
7148
7321
|
responseType: "passthrough"
|
|
7149
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
|
+
},
|
|
7150
7335
|
{
|
|
7151
7336
|
method: "GET",
|
|
7152
7337
|
path: "/fyxer-transcript",
|
|
@@ -7566,6 +7751,66 @@ var endpoints9 = [
|
|
|
7566
7751
|
edgeCache: false,
|
|
7567
7752
|
responseSchema: TrainingConversationsMessagesDataSchema,
|
|
7568
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"
|
|
7569
7814
|
}
|
|
7570
7815
|
];
|
|
7571
7816
|
|
|
@@ -7728,12 +7973,13 @@ function createWhoamiDataResource2(whoami) {
|
|
|
7728
7973
|
var AgrSiteClient = class extends BaseServiceClient {
|
|
7729
7974
|
constructor(http, baseUrl = "https://agr-site.augur-api.com") {
|
|
7730
7975
|
super("agr-site", http, baseUrl);
|
|
7731
|
-
const boundExecuteRequest = (config, params, pathParams) => {
|
|
7732
|
-
return this.executeRequest(config, params, pathParams);
|
|
7976
|
+
const boundExecuteRequest = (config, params, pathParams, query) => {
|
|
7977
|
+
return this.executeRequest(config, params, pathParams, query);
|
|
7733
7978
|
};
|
|
7734
7979
|
const proxy = createServiceProxy("agr-site", boundExecuteRequest, endpoints9);
|
|
7735
7980
|
const dataProxy = createDataProxy(proxy);
|
|
7736
7981
|
this.context = proxy.context;
|
|
7982
|
+
this.datafiles = proxy.datafiles;
|
|
7737
7983
|
this.fyxerTranscript = proxy.fyxerTranscript;
|
|
7738
7984
|
this.geoCodesPostalCodes = proxy.geoCodesPostalCodes;
|
|
7739
7985
|
this.metaFiles = proxy.metaFiles;
|
|
@@ -7742,7 +7988,9 @@ var AgrSiteClient = class extends BaseServiceClient {
|
|
|
7742
7988
|
this.postalCodesXShiptos = proxy.postalCodesXShiptos;
|
|
7743
7989
|
this.settings = proxy.settings;
|
|
7744
7990
|
this.training = proxy.training;
|
|
7991
|
+
this.users = proxy.users;
|
|
7745
7992
|
this.contextData = dataProxy.context;
|
|
7993
|
+
this.datafilesData = dataProxy.datafiles;
|
|
7746
7994
|
this.fyxerTranscriptData = dataProxy.fyxerTranscript;
|
|
7747
7995
|
this.geoCodesPostalCodesData = dataProxy.geoCodesPostalCodes;
|
|
7748
7996
|
this.metaFilesData = dataProxy.metaFiles;
|
|
@@ -7751,6 +7999,7 @@ var AgrSiteClient = class extends BaseServiceClient {
|
|
|
7751
7999
|
this.postalCodesXShiptosData = dataProxy.postalCodesXShiptos;
|
|
7752
8000
|
this.settingsData = dataProxy.settings;
|
|
7753
8001
|
this.trainingData = dataProxy.training;
|
|
8002
|
+
this.usersData = dataProxy.users;
|
|
7754
8003
|
this.healthCheck = createHealthCheckResource9(boundExecuteRequest);
|
|
7755
8004
|
this.ping = createPingResource7(boundExecuteRequest);
|
|
7756
8005
|
this.whoami = createWhoamiResource2(boundExecuteRequest);
|
|
@@ -7808,6 +8057,7 @@ var CustomerContactsListParamsSchema = v17.looseObject({
|
|
|
7808
8057
|
});
|
|
7809
8058
|
var CustomerInvoicesListParamsSchema = v17.looseObject({
|
|
7810
8059
|
...EdgeCacheParamsSchema.entries,
|
|
8060
|
+
contactId: v17.optional(v17.string()),
|
|
7811
8061
|
createdFrom: v17.optional(v17.string()),
|
|
7812
8062
|
createdOn: v17.optional(v17.string()),
|
|
7813
8063
|
createdTo: v17.optional(v17.string()),
|
|
@@ -7819,6 +8069,7 @@ var CustomerInvoicesListParamsSchema = v17.looseObject({
|
|
|
7819
8069
|
});
|
|
7820
8070
|
var CustomerOrdersListParamsSchema = v17.looseObject({
|
|
7821
8071
|
...EdgeCacheParamsSchema.entries,
|
|
8072
|
+
addressId: v17.optional(v17.pipe(v17.unknown(), v17.transform(Number))),
|
|
7822
8073
|
cancelFlag: v17.optional(v17.string()),
|
|
7823
8074
|
contactId: v17.optional(v17.string()),
|
|
7824
8075
|
createdFrom: v17.optional(v17.string()),
|
|
@@ -7839,6 +8090,8 @@ var CustomerPurchasedItemsListParamsSchema = v17.looseObject({
|
|
|
7839
8090
|
});
|
|
7840
8091
|
var CustomerQuotesListParamsSchema = v17.looseObject({
|
|
7841
8092
|
...EdgeCacheParamsSchema.entries,
|
|
8093
|
+
addressId: v17.optional(v17.pipe(v17.unknown(), v17.transform(Number))),
|
|
8094
|
+
contactId: v17.optional(v17.string()),
|
|
7842
8095
|
createdFrom: v17.optional(v17.string()),
|
|
7843
8096
|
createdOn: v17.optional(v17.string()),
|
|
7844
8097
|
createdTo: v17.optional(v17.string()),
|
|
@@ -8102,6 +8355,7 @@ var endpoints10 = [
|
|
|
8102
8355
|
aliases: [],
|
|
8103
8356
|
pathParams: ["customerId"],
|
|
8104
8357
|
queryParams: [
|
|
8358
|
+
"contactId",
|
|
8105
8359
|
"createdFrom",
|
|
8106
8360
|
"createdOn",
|
|
8107
8361
|
"createdTo",
|
|
@@ -8135,6 +8389,7 @@ var endpoints10 = [
|
|
|
8135
8389
|
aliases: [],
|
|
8136
8390
|
pathParams: ["customerId"],
|
|
8137
8391
|
queryParams: [
|
|
8392
|
+
"addressId",
|
|
8138
8393
|
"cancelFlag",
|
|
8139
8394
|
"contactId",
|
|
8140
8395
|
"createdFrom",
|
|
@@ -8182,7 +8437,16 @@ var endpoints10 = [
|
|
|
8182
8437
|
action: "list",
|
|
8183
8438
|
aliases: [],
|
|
8184
8439
|
pathParams: ["customerId"],
|
|
8185
|
-
queryParams: [
|
|
8440
|
+
queryParams: [
|
|
8441
|
+
"addressId",
|
|
8442
|
+
"contactId",
|
|
8443
|
+
"createdFrom",
|
|
8444
|
+
"createdOn",
|
|
8445
|
+
"createdTo",
|
|
8446
|
+
"limit",
|
|
8447
|
+
"offset",
|
|
8448
|
+
"orderBy"
|
|
8449
|
+
],
|
|
8186
8450
|
edgeCache: true,
|
|
8187
8451
|
responseSchema: PassthroughDataSchema10,
|
|
8188
8452
|
responseType: "passthrough"
|
|
@@ -8369,8 +8633,8 @@ function createHealthCheckDataResource10(healthCheck) {
|
|
|
8369
8633
|
var CustomersClient = class extends BaseServiceClient {
|
|
8370
8634
|
constructor(http, baseUrl = "https://customers.augur-api.com") {
|
|
8371
8635
|
super("customers", http, baseUrl);
|
|
8372
|
-
const boundExecuteRequest = (config, params, pathParams) => {
|
|
8373
|
-
return this.executeRequest(config, params, pathParams);
|
|
8636
|
+
const boundExecuteRequest = (config, params, pathParams, query) => {
|
|
8637
|
+
return this.executeRequest(config, params, pathParams, query);
|
|
8374
8638
|
};
|
|
8375
8639
|
const proxy = createServiceProxy(
|
|
8376
8640
|
"customers",
|
|
@@ -8733,12 +8997,12 @@ var OrdersClient = class extends BaseServiceClient {
|
|
|
8733
8997
|
import * as v19 from "valibot";
|
|
8734
8998
|
var InvMastExtListParamsSchema = v19.looseObject({
|
|
8735
8999
|
...EdgeCacheParamsSchema.entries,
|
|
8736
|
-
|
|
9000
|
+
invMastUid: v19.optional(v19.pipe(v19.unknown(), v19.transform(Number))),
|
|
8737
9001
|
limit: v19.optional(v19.pipe(v19.unknown(), v19.transform(Number))),
|
|
8738
9002
|
offset: v19.optional(v19.pipe(v19.unknown(), v19.transform(Number))),
|
|
8739
|
-
|
|
9003
|
+
orderBy: v19.optional(v19.string()),
|
|
8740
9004
|
q: v19.optional(v19.string()),
|
|
8741
|
-
|
|
9005
|
+
statusCd: v19.optional(v19.pipe(v19.unknown(), v19.transform(Number)))
|
|
8742
9006
|
});
|
|
8743
9007
|
var ItemsSuggestDisplayDescListParamsSchema = v19.looseObject({
|
|
8744
9008
|
...EdgeCacheParamsSchema.entries,
|
|
@@ -8754,9 +9018,9 @@ var PodcastsListParamsSchema = v19.looseObject({
|
|
|
8754
9018
|
...EdgeCacheParamsSchema.entries,
|
|
8755
9019
|
limit: v19.optional(v19.pipe(v19.unknown(), v19.transform(Number))),
|
|
8756
9020
|
offset: v19.optional(v19.pipe(v19.unknown(), v19.transform(Number))),
|
|
8757
|
-
|
|
9021
|
+
orderBy: v19.optional(v19.string()),
|
|
8758
9022
|
q: v19.optional(v19.string()),
|
|
8759
|
-
|
|
9023
|
+
statusCd: v19.optional(v19.pipe(v19.unknown(), v19.transform(Number)))
|
|
8760
9024
|
});
|
|
8761
9025
|
var PodcastsDataSchema = v19.looseObject({
|
|
8762
9026
|
podcastsUid: v19.optional(v19.number()),
|
|
@@ -8780,7 +9044,7 @@ var endpoints12 = [
|
|
|
8780
9044
|
action: "list",
|
|
8781
9045
|
aliases: [],
|
|
8782
9046
|
pathParams: [],
|
|
8783
|
-
queryParams: ["
|
|
9047
|
+
queryParams: ["invMastUid", "limit", "offset", "orderBy", "q", "statusCd"],
|
|
8784
9048
|
edgeCache: true,
|
|
8785
9049
|
responseSchema: PassthroughDataSchema12,
|
|
8786
9050
|
responseType: "passthrough"
|
|
@@ -8864,7 +9128,7 @@ var endpoints12 = [
|
|
|
8864
9128
|
action: "list",
|
|
8865
9129
|
aliases: [],
|
|
8866
9130
|
pathParams: [],
|
|
8867
|
-
queryParams: ["limit", "offset", "
|
|
9131
|
+
queryParams: ["limit", "offset", "orderBy", "q", "statusCd"],
|
|
8868
9132
|
edgeCache: true,
|
|
8869
9133
|
responseSchema: PodcastsDataSchema,
|
|
8870
9134
|
responseType: "array"
|
|
@@ -8964,8 +9228,8 @@ function createHealthCheckDataResource12(healthCheck) {
|
|
|
8964
9228
|
var P21PimClient = class extends BaseServiceClient {
|
|
8965
9229
|
constructor(http, baseUrl = "https://p21-pim.augur-api.com") {
|
|
8966
9230
|
super("p21-pim", http, baseUrl);
|
|
8967
|
-
const boundExecuteRequest = (config, params, pathParams) => {
|
|
8968
|
-
return this.executeRequest(config, params, pathParams);
|
|
9231
|
+
const boundExecuteRequest = (config, params, pathParams, query) => {
|
|
9232
|
+
return this.executeRequest(config, params, pathParams, query);
|
|
8969
9233
|
};
|
|
8970
9234
|
const proxy = createServiceProxy("p21-pim", boundExecuteRequest, endpoints12);
|
|
8971
9235
|
const dataProxy = createDataProxy(proxy);
|
|
@@ -8978,6 +9242,9 @@ var P21PimClient = class extends BaseServiceClient {
|
|
|
8978
9242
|
this.healthCheck = createHealthCheckResource12(boundExecuteRequest);
|
|
8979
9243
|
this.healthCheckData = createHealthCheckDataResource12(this.healthCheck);
|
|
8980
9244
|
}
|
|
9245
|
+
getServiceDescription() {
|
|
9246
|
+
return "Product information management for rich content, media assets, and extended item descriptions";
|
|
9247
|
+
}
|
|
8981
9248
|
};
|
|
8982
9249
|
|
|
8983
9250
|
// src/services/payments/generated/schemas.ts
|
|
@@ -9058,6 +9325,10 @@ var UnifiedSurchargeListParamsSchema = v20.looseObject({
|
|
|
9058
9325
|
paymentAccountId: v20.string(),
|
|
9059
9326
|
toState: v20.string()
|
|
9060
9327
|
});
|
|
9328
|
+
var UnifiedTransactionResponseListParamsSchema = v20.looseObject({
|
|
9329
|
+
...EdgeCacheParamsSchema.entries,
|
|
9330
|
+
siteId: v20.string()
|
|
9331
|
+
});
|
|
9061
9332
|
var UnifiedTransactionSetupListParamsSchema = v20.looseObject({
|
|
9062
9333
|
...EdgeCacheParamsSchema.entries,
|
|
9063
9334
|
customerId: v20.string(),
|
|
@@ -9225,6 +9496,18 @@ var endpoints13 = [
|
|
|
9225
9496
|
responseSchema: PassthroughDataSchema13,
|
|
9226
9497
|
responseType: "passthrough"
|
|
9227
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
|
+
},
|
|
9228
9511
|
{
|
|
9229
9512
|
method: "GET",
|
|
9230
9513
|
path: "/unified/transaction-setup",
|
|
@@ -9318,8 +9601,8 @@ function createPingDataResource7(ping) {
|
|
|
9318
9601
|
var PaymentsClient = class extends BaseServiceClient {
|
|
9319
9602
|
constructor(http, baseUrl = "https://payments.augur-api.com") {
|
|
9320
9603
|
super("payments", http, baseUrl);
|
|
9321
|
-
const boundExecuteRequest = (config, params, pathParams) => {
|
|
9322
|
-
return this.executeRequest(config, params, pathParams);
|
|
9604
|
+
const boundExecuteRequest = (config, params, pathParams, query) => {
|
|
9605
|
+
return this.executeRequest(config, params, pathParams, query);
|
|
9323
9606
|
};
|
|
9324
9607
|
const proxy = createServiceProxy(
|
|
9325
9608
|
"payments",
|
|
@@ -9372,6 +9655,14 @@ var MicroservicesDataSchema = v21.looseObject({
|
|
|
9372
9655
|
dateCreated: v21.optional(v21.string()),
|
|
9373
9656
|
dateLastModified: v21.optional(v21.string())
|
|
9374
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
|
+
});
|
|
9375
9666
|
var RubricsDataSchema = v21.looseObject({
|
|
9376
9667
|
rubricsUid: v21.optional(v21.number()),
|
|
9377
9668
|
title: v21.optional(v21.nullable(v21.string())),
|
|
@@ -9383,6 +9674,20 @@ var RubricsDataSchema = v21.looseObject({
|
|
|
9383
9674
|
dateCreated: v21.optional(v21.string()),
|
|
9384
9675
|
dateLastModified: v21.optional(v21.string())
|
|
9385
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
|
+
});
|
|
9386
9691
|
var WorkflowsDataSchema = v21.looseObject({
|
|
9387
9692
|
workflowsUid: v21.optional(v21.number()),
|
|
9388
9693
|
workflowsId: v21.optional(v21.string()),
|
|
@@ -9496,6 +9801,30 @@ var endpoints14 = [
|
|
|
9496
9801
|
responseSchema: PassthroughDataSchema14,
|
|
9497
9802
|
responseType: "passthrough"
|
|
9498
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
|
+
},
|
|
9499
9828
|
{
|
|
9500
9829
|
method: "GET",
|
|
9501
9830
|
path: "/ollama/tags",
|
|
@@ -9580,6 +9909,18 @@ var endpoints14 = [
|
|
|
9580
9909
|
responseSchema: PassthroughDataSchema14,
|
|
9581
9910
|
responseType: "passthrough"
|
|
9582
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
|
+
},
|
|
9583
9924
|
{
|
|
9584
9925
|
method: "GET",
|
|
9585
9926
|
path: "/workflows",
|
|
@@ -9694,8 +10035,8 @@ function createHealthCheckDataResource14(healthCheck) {
|
|
|
9694
10035
|
var AgrInfoClient = class extends BaseServiceClient {
|
|
9695
10036
|
constructor(http, baseUrl = "https://agr-info.augur-api.com") {
|
|
9696
10037
|
super("agr-info", http, baseUrl);
|
|
9697
|
-
const boundExecuteRequest = (config, params, pathParams) => {
|
|
9698
|
-
return this.executeRequest(config, params, pathParams);
|
|
10038
|
+
const boundExecuteRequest = (config, params, pathParams, query) => {
|
|
10039
|
+
return this.executeRequest(config, params, pathParams, query);
|
|
9699
10040
|
};
|
|
9700
10041
|
const proxy = createServiceProxy("agr-info", boundExecuteRequest, endpoints14);
|
|
9701
10042
|
const dataProxy = createDataProxy(proxy);
|
|
@@ -9703,6 +10044,7 @@ var AgrInfoClient = class extends BaseServiceClient {
|
|
|
9703
10044
|
this.context = proxy.context;
|
|
9704
10045
|
this.joomla = proxy.joomla;
|
|
9705
10046
|
this.microservices = proxy.microservices;
|
|
10047
|
+
this.oauth = proxy.oauth;
|
|
9706
10048
|
this.ollama = proxy.ollama;
|
|
9707
10049
|
this.rubrics = proxy.rubrics;
|
|
9708
10050
|
this.sites = proxy.sites;
|
|
@@ -9711,6 +10053,7 @@ var AgrInfoClient = class extends BaseServiceClient {
|
|
|
9711
10053
|
this.contextData = dataProxy.context;
|
|
9712
10054
|
this.joomlaData = dataProxy.joomla;
|
|
9713
10055
|
this.microservicesData = dataProxy.microservices;
|
|
10056
|
+
this.oauthData = dataProxy.oauth;
|
|
9714
10057
|
this.ollamaData = dataProxy.ollama;
|
|
9715
10058
|
this.rubricsData = dataProxy.rubrics;
|
|
9716
10059
|
this.sitesData = dataProxy.sites;
|
|
@@ -9770,7 +10113,7 @@ var RolesBundlesListParamsSchema = v22.looseObject({
|
|
|
9770
10113
|
orderBy: v22.optional(v22.string()),
|
|
9771
10114
|
statusCd: v22.optional(v22.pipe(v22.unknown(), v22.transform(Number)))
|
|
9772
10115
|
});
|
|
9773
|
-
var
|
|
10116
|
+
var UsersListParamsSchema2 = v22.looseObject({
|
|
9774
10117
|
...EdgeCacheParamsSchema.entries,
|
|
9775
10118
|
email: v22.optional(v22.string()),
|
|
9776
10119
|
limit: v22.optional(v22.pipe(v22.unknown(), v22.transform(Number))),
|
|
@@ -10358,8 +10701,8 @@ var endpoints15 = [
|
|
|
10358
10701
|
var AgrIntClient = class extends BaseServiceClient {
|
|
10359
10702
|
constructor(http, baseUrl = "https://agr-int.augur-api.com") {
|
|
10360
10703
|
super("agr-int", http, baseUrl);
|
|
10361
|
-
const boundExecuteRequest = (config, params, pathParams) => {
|
|
10362
|
-
return this.executeRequest(config, params, pathParams);
|
|
10704
|
+
const boundExecuteRequest = (config, params, pathParams, query) => {
|
|
10705
|
+
return this.executeRequest(config, params, pathParams, query);
|
|
10363
10706
|
};
|
|
10364
10707
|
const proxy = createServiceProxy("agr-int", boundExecuteRequest, endpoints15);
|
|
10365
10708
|
const dataProxy = createDataProxy(proxy);
|
|
@@ -10535,8 +10878,8 @@ function createPingDataResource8(ping) {
|
|
|
10535
10878
|
var AgrWorkClient = class extends BaseServiceClient {
|
|
10536
10879
|
constructor(http, baseUrl = "https://agr-work.augur-api.com") {
|
|
10537
10880
|
super("agr-work", http, baseUrl);
|
|
10538
|
-
const boundExecuteRequest = (config, params, pathParams) => {
|
|
10539
|
-
return this.executeRequest(config, params, pathParams);
|
|
10881
|
+
const boundExecuteRequest = (config, params, pathParams, query) => {
|
|
10882
|
+
return this.executeRequest(config, params, pathParams, query);
|
|
10540
10883
|
};
|
|
10541
10884
|
this.healthCheck = createHealthCheckResource15(boundExecuteRequest);
|
|
10542
10885
|
this.ping = createPingResource9(boundExecuteRequest);
|
|
@@ -10630,8 +10973,8 @@ function createHealthCheckDataResource16(healthCheck) {
|
|
|
10630
10973
|
var AvalaraClient = class extends BaseServiceClient {
|
|
10631
10974
|
constructor(http, baseUrl = "https://avalara.augur-api.com") {
|
|
10632
10975
|
super("avalara", http, baseUrl);
|
|
10633
|
-
const boundExecuteRequest = (config, params, pathParams) => {
|
|
10634
|
-
return this.executeRequest(config, params, pathParams);
|
|
10976
|
+
const boundExecuteRequest = (config, params, pathParams, query) => {
|
|
10977
|
+
return this.executeRequest(config, params, pathParams, query);
|
|
10635
10978
|
};
|
|
10636
10979
|
const proxy = createServiceProxy("avalara", boundExecuteRequest, endpoints16);
|
|
10637
10980
|
const dataProxy = createDataProxy(proxy);
|
|
@@ -10644,10 +10987,54 @@ var AvalaraClient = class extends BaseServiceClient {
|
|
|
10644
10987
|
|
|
10645
10988
|
// src/services/brand-folder/generated/schemas.ts
|
|
10646
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
|
+
});
|
|
10647
11022
|
var PassthroughDataSchema17 = v24.record(v24.string(), v24.unknown());
|
|
10648
11023
|
|
|
10649
11024
|
// src/services/brand-folder/generated/endpoints.ts
|
|
10650
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
|
+
},
|
|
10651
11038
|
{
|
|
10652
11039
|
method: "POST",
|
|
10653
11040
|
path: "/categories/focus",
|
|
@@ -10659,6 +11046,18 @@ var endpoints17 = [
|
|
|
10659
11046
|
edgeCache: false,
|
|
10660
11047
|
responseSchema: PassthroughDataSchema17,
|
|
10661
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"
|
|
10662
11061
|
}
|
|
10663
11062
|
];
|
|
10664
11063
|
|
|
@@ -10727,8 +11126,8 @@ function createHealthCheckDataResource17(healthCheck) {
|
|
|
10727
11126
|
var BrandFolderClient = class extends BaseServiceClient {
|
|
10728
11127
|
constructor(http, baseUrl = "https://brand-folder.augur-api.com") {
|
|
10729
11128
|
super("brand-folder", http, baseUrl);
|
|
10730
|
-
const boundExecuteRequest = (config, params, pathParams) => {
|
|
10731
|
-
return this.executeRequest(config, params, pathParams);
|
|
11129
|
+
const boundExecuteRequest = (config, params, pathParams, query) => {
|
|
11130
|
+
return this.executeRequest(config, params, pathParams, query);
|
|
10732
11131
|
};
|
|
10733
11132
|
const proxy = createServiceProxy(
|
|
10734
11133
|
"brand-folder",
|
|
@@ -10859,8 +11258,8 @@ function createHealthCheckDataResource18(healthCheck) {
|
|
|
10859
11258
|
var GregorovichClient = class extends BaseServiceClient {
|
|
10860
11259
|
constructor(http, baseUrl = "https://gregorovich.augur-api.com") {
|
|
10861
11260
|
super("gregorovich", http, baseUrl);
|
|
10862
|
-
const boundExecuteRequest = (config, params, pathParams) => {
|
|
10863
|
-
return this.executeRequest(config, params, pathParams);
|
|
11261
|
+
const boundExecuteRequest = (config, params, pathParams, query) => {
|
|
11262
|
+
return this.executeRequest(config, params, pathParams, query);
|
|
10864
11263
|
};
|
|
10865
11264
|
const proxy = createServiceProxy(
|
|
10866
11265
|
"gregorovich",
|
|
@@ -10900,7 +11299,7 @@ var RtsBrandsListParamsSchema = v26.looseObject({
|
|
|
10900
11299
|
...EdgeCacheParamsSchema.entries,
|
|
10901
11300
|
search: v26.optional(v26.string())
|
|
10902
11301
|
});
|
|
10903
|
-
var
|
|
11302
|
+
var RtsBrandsMachinesListParamsSchema = v26.looseObject({
|
|
10904
11303
|
...EdgeCacheParamsSchema.entries,
|
|
10905
11304
|
search: v26.optional(v26.string())
|
|
10906
11305
|
});
|
|
@@ -11053,7 +11452,7 @@ var endpoints19 = [
|
|
|
11053
11452
|
{
|
|
11054
11453
|
method: "GET",
|
|
11055
11454
|
path: "/rts/brands/{brandId}/machines",
|
|
11056
|
-
chain: "rts.brands.
|
|
11455
|
+
chain: "rts.brands.machines",
|
|
11057
11456
|
action: "list",
|
|
11058
11457
|
aliases: [],
|
|
11059
11458
|
pathParams: ["brandId"],
|
|
@@ -11065,7 +11464,7 @@ var endpoints19 = [
|
|
|
11065
11464
|
{
|
|
11066
11465
|
method: "GET",
|
|
11067
11466
|
path: "/rts/machines/{machineId}/tracks",
|
|
11068
|
-
chain: "rts.machines.
|
|
11467
|
+
chain: "rts.machines.tracks",
|
|
11069
11468
|
action: "list",
|
|
11070
11469
|
aliases: [],
|
|
11071
11470
|
pathParams: ["machineId"],
|
|
@@ -11089,7 +11488,7 @@ var endpoints19 = [
|
|
|
11089
11488
|
{
|
|
11090
11489
|
method: "GET",
|
|
11091
11490
|
path: "/rts/track/{trackId}",
|
|
11092
|
-
chain: "rts.track
|
|
11491
|
+
chain: "rts.track",
|
|
11093
11492
|
action: "list",
|
|
11094
11493
|
aliases: [],
|
|
11095
11494
|
pathParams: ["trackId"],
|
|
@@ -11380,8 +11779,8 @@ function createPingDataResource9(ping) {
|
|
|
11380
11779
|
var LogisticsClient = class extends BaseServiceClient {
|
|
11381
11780
|
constructor(http, baseUrl = "https://logistics.augur-api.com") {
|
|
11382
11781
|
super("logistics", http, baseUrl);
|
|
11383
|
-
const boundExecuteRequest = (config, params, pathParams) => {
|
|
11384
|
-
return this.executeRequest(config, params, pathParams);
|
|
11782
|
+
const boundExecuteRequest = (config, params, pathParams, query) => {
|
|
11783
|
+
return this.executeRequest(config, params, pathParams, query);
|
|
11385
11784
|
};
|
|
11386
11785
|
const proxy = createServiceProxy(
|
|
11387
11786
|
"logistics",
|
|
@@ -11413,43 +11812,43 @@ var LogisticsClient = class extends BaseServiceClient {
|
|
|
11413
11812
|
import * as v27 from "valibot";
|
|
11414
11813
|
var TransCategoryGetParamsSchema = v27.looseObject({
|
|
11415
11814
|
...EdgeCacheParamsSchema.entries,
|
|
11416
|
-
|
|
11815
|
+
categoryId: v27.optional(v27.string())
|
|
11417
11816
|
});
|
|
11418
11817
|
var TransCategoryUpdateParamsSchema = v27.looseObject({
|
|
11419
|
-
|
|
11818
|
+
categoryId: v27.optional(v27.string())
|
|
11420
11819
|
});
|
|
11421
11820
|
var TransCategoryDeleteParamsSchema = v27.looseObject({
|
|
11422
|
-
|
|
11821
|
+
categoryId: v27.optional(v27.string())
|
|
11423
11822
|
});
|
|
11424
11823
|
var TransCompanyGetParamsSchema = v27.looseObject({
|
|
11425
11824
|
...EdgeCacheParamsSchema.entries,
|
|
11426
|
-
|
|
11825
|
+
companyId: v27.optional(v27.string())
|
|
11427
11826
|
});
|
|
11428
11827
|
var TransCompanyUpdateParamsSchema = v27.looseObject({
|
|
11429
|
-
|
|
11828
|
+
companyId: v27.optional(v27.string())
|
|
11430
11829
|
});
|
|
11431
11830
|
var TransCompanyDeleteParamsSchema = v27.looseObject({
|
|
11432
|
-
|
|
11831
|
+
companyId: v27.optional(v27.string())
|
|
11433
11832
|
});
|
|
11434
11833
|
var TransUserGetParamsSchema = v27.looseObject({
|
|
11435
11834
|
...EdgeCacheParamsSchema.entries,
|
|
11436
|
-
|
|
11835
|
+
userId: v27.optional(v27.string())
|
|
11437
11836
|
});
|
|
11438
11837
|
var TransUserUpdateParamsSchema = v27.looseObject({
|
|
11439
|
-
|
|
11838
|
+
userId: v27.optional(v27.string())
|
|
11440
11839
|
});
|
|
11441
11840
|
var TransUserDeleteParamsSchema = v27.looseObject({
|
|
11442
|
-
|
|
11841
|
+
userId: v27.optional(v27.string())
|
|
11443
11842
|
});
|
|
11444
11843
|
var TransWebDisplayTypeGetParamsSchema = v27.looseObject({
|
|
11445
11844
|
...EdgeCacheParamsSchema.entries,
|
|
11446
|
-
|
|
11845
|
+
webDisplayTypeId: v27.optional(v27.string())
|
|
11447
11846
|
});
|
|
11448
11847
|
var TransWebDisplayTypeUpdateParamsSchema = v27.looseObject({
|
|
11449
|
-
|
|
11848
|
+
webDisplayTypeId: v27.optional(v27.string())
|
|
11450
11849
|
});
|
|
11451
11850
|
var TransWebDisplayTypeDeleteParamsSchema = v27.looseObject({
|
|
11452
|
-
|
|
11851
|
+
webDisplayTypeId: v27.optional(v27.string())
|
|
11453
11852
|
});
|
|
11454
11853
|
var PassthroughDataSchema20 = v27.record(v27.string(), v27.unknown());
|
|
11455
11854
|
|
|
@@ -11498,7 +11897,7 @@ var endpoints20 = [
|
|
|
11498
11897
|
action: "get",
|
|
11499
11898
|
aliases: [],
|
|
11500
11899
|
pathParams: ["categoryUid"],
|
|
11501
|
-
queryParams: ["
|
|
11900
|
+
queryParams: ["categoryId"],
|
|
11502
11901
|
edgeCache: true,
|
|
11503
11902
|
responseSchema: PassthroughDataSchema20,
|
|
11504
11903
|
responseType: "passthrough"
|
|
@@ -11510,7 +11909,7 @@ var endpoints20 = [
|
|
|
11510
11909
|
action: "update",
|
|
11511
11910
|
aliases: [],
|
|
11512
11911
|
pathParams: ["categoryUid"],
|
|
11513
|
-
queryParams: ["
|
|
11912
|
+
queryParams: ["categoryId"],
|
|
11514
11913
|
edgeCache: false,
|
|
11515
11914
|
responseSchema: PassthroughDataSchema20,
|
|
11516
11915
|
responseType: "passthrough"
|
|
@@ -11522,7 +11921,7 @@ var endpoints20 = [
|
|
|
11522
11921
|
action: "delete",
|
|
11523
11922
|
aliases: [],
|
|
11524
11923
|
pathParams: ["categoryUid"],
|
|
11525
|
-
queryParams: ["
|
|
11924
|
+
queryParams: ["categoryId"],
|
|
11526
11925
|
edgeCache: false,
|
|
11527
11926
|
responseSchema: PassthroughDataSchema20,
|
|
11528
11927
|
responseType: "passthrough"
|
|
@@ -11546,7 +11945,7 @@ var endpoints20 = [
|
|
|
11546
11945
|
action: "get",
|
|
11547
11946
|
aliases: [],
|
|
11548
11947
|
pathParams: ["companyUid"],
|
|
11549
|
-
queryParams: ["
|
|
11948
|
+
queryParams: ["companyId"],
|
|
11550
11949
|
edgeCache: true,
|
|
11551
11950
|
responseSchema: PassthroughDataSchema20,
|
|
11552
11951
|
responseType: "passthrough"
|
|
@@ -11558,7 +11957,7 @@ var endpoints20 = [
|
|
|
11558
11957
|
action: "update",
|
|
11559
11958
|
aliases: [],
|
|
11560
11959
|
pathParams: ["companyUid"],
|
|
11561
|
-
queryParams: ["
|
|
11960
|
+
queryParams: ["companyId"],
|
|
11562
11961
|
edgeCache: false,
|
|
11563
11962
|
responseSchema: PassthroughDataSchema20,
|
|
11564
11963
|
responseType: "passthrough"
|
|
@@ -11570,7 +11969,7 @@ var endpoints20 = [
|
|
|
11570
11969
|
action: "delete",
|
|
11571
11970
|
aliases: [],
|
|
11572
11971
|
pathParams: ["companyUid"],
|
|
11573
|
-
queryParams: ["
|
|
11972
|
+
queryParams: ["companyId"],
|
|
11574
11973
|
edgeCache: false,
|
|
11575
11974
|
responseSchema: PassthroughDataSchema20,
|
|
11576
11975
|
responseType: "passthrough"
|
|
@@ -11618,7 +12017,7 @@ var endpoints20 = [
|
|
|
11618
12017
|
action: "get",
|
|
11619
12018
|
aliases: [],
|
|
11620
12019
|
pathParams: ["usersUid"],
|
|
11621
|
-
queryParams: ["
|
|
12020
|
+
queryParams: ["userId"],
|
|
11622
12021
|
edgeCache: true,
|
|
11623
12022
|
responseSchema: PassthroughDataSchema20,
|
|
11624
12023
|
responseType: "passthrough"
|
|
@@ -11630,7 +12029,7 @@ var endpoints20 = [
|
|
|
11630
12029
|
action: "update",
|
|
11631
12030
|
aliases: [],
|
|
11632
12031
|
pathParams: ["usersUid"],
|
|
11633
|
-
queryParams: ["
|
|
12032
|
+
queryParams: ["userId"],
|
|
11634
12033
|
edgeCache: false,
|
|
11635
12034
|
responseSchema: PassthroughDataSchema20,
|
|
11636
12035
|
responseType: "passthrough"
|
|
@@ -11642,7 +12041,7 @@ var endpoints20 = [
|
|
|
11642
12041
|
action: "delete",
|
|
11643
12042
|
aliases: [],
|
|
11644
12043
|
pathParams: ["usersUid"],
|
|
11645
|
-
queryParams: ["
|
|
12044
|
+
queryParams: ["userId"],
|
|
11646
12045
|
edgeCache: false,
|
|
11647
12046
|
responseSchema: PassthroughDataSchema20,
|
|
11648
12047
|
responseType: "passthrough"
|
|
@@ -11690,7 +12089,7 @@ var endpoints20 = [
|
|
|
11690
12089
|
action: "get",
|
|
11691
12090
|
aliases: [],
|
|
11692
12091
|
pathParams: ["webDisplayTypeUid"],
|
|
11693
|
-
queryParams: ["
|
|
12092
|
+
queryParams: ["webDisplayTypeId"],
|
|
11694
12093
|
edgeCache: true,
|
|
11695
12094
|
responseSchema: PassthroughDataSchema20,
|
|
11696
12095
|
responseType: "passthrough"
|
|
@@ -11702,7 +12101,7 @@ var endpoints20 = [
|
|
|
11702
12101
|
action: "update",
|
|
11703
12102
|
aliases: [],
|
|
11704
12103
|
pathParams: ["webDisplayTypeUid"],
|
|
11705
|
-
queryParams: ["
|
|
12104
|
+
queryParams: ["webDisplayTypeId"],
|
|
11706
12105
|
edgeCache: false,
|
|
11707
12106
|
responseSchema: PassthroughDataSchema20,
|
|
11708
12107
|
responseType: "passthrough"
|
|
@@ -11714,7 +12113,7 @@ var endpoints20 = [
|
|
|
11714
12113
|
action: "delete",
|
|
11715
12114
|
aliases: [],
|
|
11716
12115
|
pathParams: ["webDisplayTypeUid"],
|
|
11717
|
-
queryParams: ["
|
|
12116
|
+
queryParams: ["webDisplayTypeId"],
|
|
11718
12117
|
edgeCache: false,
|
|
11719
12118
|
responseSchema: PassthroughDataSchema20,
|
|
11720
12119
|
responseType: "passthrough"
|
|
@@ -11772,8 +12171,8 @@ function createHealthCheckDataResource20(healthCheck) {
|
|
|
11772
12171
|
var P21ApisClient = class extends BaseServiceClient {
|
|
11773
12172
|
constructor(http, baseUrl = "https://p21-apis.augur-api.com") {
|
|
11774
12173
|
super("p21-apis", http, baseUrl);
|
|
11775
|
-
const boundExecuteRequest = (config, params, pathParams) => {
|
|
11776
|
-
return this.executeRequest(config, params, pathParams);
|
|
12174
|
+
const boundExecuteRequest = (config, params, pathParams, query) => {
|
|
12175
|
+
return this.executeRequest(config, params, pathParams, query);
|
|
11777
12176
|
};
|
|
11778
12177
|
const proxy = createServiceProxy("p21-apis", boundExecuteRequest, endpoints20);
|
|
11779
12178
|
const dataProxy = createDataProxy(proxy);
|
|
@@ -11808,12 +12207,14 @@ var AddressListParamsSchema = v28.looseObject({
|
|
|
11808
12207
|
enabledCd: v28.optional(v28.pipe(v28.unknown(), v28.transform(Number))),
|
|
11809
12208
|
limit: v28.optional(v28.pipe(v28.unknown(), v28.transform(Number))),
|
|
11810
12209
|
offset: v28.optional(v28.pipe(v28.unknown(), v28.transform(Number))),
|
|
12210
|
+
orderBy: v28.optional(v28.string()),
|
|
11811
12211
|
statusCd: v28.optional(v28.pipe(v28.unknown(), v28.transform(Number)))
|
|
11812
12212
|
});
|
|
11813
12213
|
var AddressCorpAddressListParamsSchema = v28.looseObject({
|
|
11814
12214
|
...EdgeCacheParamsSchema.entries,
|
|
11815
12215
|
limit: v28.optional(v28.pipe(v28.unknown(), v28.transform(Number))),
|
|
11816
12216
|
offset: v28.optional(v28.pipe(v28.unknown(), v28.transform(Number))),
|
|
12217
|
+
orderBy: v28.optional(v28.string()),
|
|
11817
12218
|
q: v28.optional(v28.string())
|
|
11818
12219
|
});
|
|
11819
12220
|
var AddressEnableGetParamsSchema = v28.looseObject({
|
|
@@ -11835,7 +12236,8 @@ var CodeP21ListParamsSchema = v28.looseObject({
|
|
|
11835
12236
|
codeNoList: v28.optional(v28.string()),
|
|
11836
12237
|
limit: v28.optional(v28.pipe(v28.unknown(), v28.transform(Number))),
|
|
11837
12238
|
offset: v28.optional(v28.pipe(v28.unknown(), v28.transform(Number))),
|
|
11838
|
-
|
|
12239
|
+
orderBy: v28.optional(v28.string()),
|
|
12240
|
+
q: v28.optional(v28.string())
|
|
11839
12241
|
});
|
|
11840
12242
|
var CompanyListParamsSchema = v28.looseObject({
|
|
11841
12243
|
...EdgeCacheParamsSchema.entries,
|
|
@@ -11865,7 +12267,8 @@ var LocationGetParamsSchema = v28.looseObject({
|
|
|
11865
12267
|
var PaymentTypesListParamsSchema = v28.looseObject({
|
|
11866
12268
|
...EdgeCacheParamsSchema.entries,
|
|
11867
12269
|
limit: v28.optional(v28.pipe(v28.unknown(), v28.transform(Number))),
|
|
11868
|
-
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())
|
|
11869
12272
|
});
|
|
11870
12273
|
var CashDrawerDataSchema = v28.looseObject({
|
|
11871
12274
|
cashDrawerId: v28.optional(v28.string()),
|
|
@@ -11951,7 +12354,15 @@ var endpoints21 = [
|
|
|
11951
12354
|
action: "list",
|
|
11952
12355
|
aliases: [],
|
|
11953
12356
|
pathParams: [],
|
|
11954
|
-
queryParams: [
|
|
12357
|
+
queryParams: [
|
|
12358
|
+
"carrierFlag",
|
|
12359
|
+
"defaultCd",
|
|
12360
|
+
"enabledCd",
|
|
12361
|
+
"limit",
|
|
12362
|
+
"offset",
|
|
12363
|
+
"orderBy",
|
|
12364
|
+
"statusCd"
|
|
12365
|
+
],
|
|
11955
12366
|
edgeCache: true,
|
|
11956
12367
|
responseSchema: PassthroughDataSchema21,
|
|
11957
12368
|
responseType: "passthrough"
|
|
@@ -11987,7 +12398,7 @@ var endpoints21 = [
|
|
|
11987
12398
|
action: "list",
|
|
11988
12399
|
aliases: [],
|
|
11989
12400
|
pathParams: ["id"],
|
|
11990
|
-
queryParams: ["limit", "offset", "q"],
|
|
12401
|
+
queryParams: ["limit", "offset", "orderBy", "q"],
|
|
11991
12402
|
edgeCache: true,
|
|
11992
12403
|
responseSchema: PassthroughDataSchema21,
|
|
11993
12404
|
responseType: "passthrough"
|
|
@@ -12047,11 +12458,23 @@ var endpoints21 = [
|
|
|
12047
12458
|
action: "list",
|
|
12048
12459
|
aliases: [],
|
|
12049
12460
|
pathParams: [],
|
|
12050
|
-
queryParams: ["codeNoList", "limit", "offset", "q"],
|
|
12461
|
+
queryParams: ["codeNoList", "limit", "offset", "orderBy", "q"],
|
|
12051
12462
|
edgeCache: true,
|
|
12052
12463
|
responseSchema: CodeP21DataSchema,
|
|
12053
12464
|
responseType: "array"
|
|
12054
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
|
+
},
|
|
12055
12478
|
{
|
|
12056
12479
|
method: "GET",
|
|
12057
12480
|
path: "/company",
|
|
@@ -12107,7 +12530,7 @@ var endpoints21 = [
|
|
|
12107
12530
|
action: "list",
|
|
12108
12531
|
aliases: [],
|
|
12109
12532
|
pathParams: [],
|
|
12110
|
-
queryParams: ["limit", "offset"],
|
|
12533
|
+
queryParams: ["limit", "offset", "orderBy"],
|
|
12111
12534
|
edgeCache: true,
|
|
12112
12535
|
responseSchema: PassthroughDataSchema21,
|
|
12113
12536
|
responseType: "passthrough"
|
|
@@ -12176,8 +12599,8 @@ function createPingDataResource10(ping) {
|
|
|
12176
12599
|
var P21CoreClient = class extends BaseServiceClient {
|
|
12177
12600
|
constructor(http, baseUrl = "https://p21-core.augur-api.com") {
|
|
12178
12601
|
super("p21-core", http, baseUrl);
|
|
12179
|
-
const boundExecuteRequest = (config, params, pathParams) => {
|
|
12180
|
-
return this.executeRequest(config, params, pathParams);
|
|
12602
|
+
const boundExecuteRequest = (config, params, pathParams, query) => {
|
|
12603
|
+
return this.executeRequest(config, params, pathParams, query);
|
|
12181
12604
|
};
|
|
12182
12605
|
const proxy = createServiceProxy("p21-core", boundExecuteRequest, endpoints21);
|
|
12183
12606
|
const dataProxy = createDataProxy(proxy);
|
|
@@ -12508,8 +12931,8 @@ function createHealthCheckDataResource22(healthCheck) {
|
|
|
12508
12931
|
var P21SismClient = class extends BaseServiceClient {
|
|
12509
12932
|
constructor(http, baseUrl = "https://p21-sism.augur-api.com") {
|
|
12510
12933
|
super("p21-sism", http, baseUrl);
|
|
12511
|
-
const boundExecuteRequest = (config, params, pathParams) => {
|
|
12512
|
-
return this.executeRequest(config, params, pathParams);
|
|
12934
|
+
const boundExecuteRequest = (config, params, pathParams, query) => {
|
|
12935
|
+
return this.executeRequest(config, params, pathParams, query);
|
|
12513
12936
|
};
|
|
12514
12937
|
const proxy = createServiceProxy("p21-sism", boundExecuteRequest, endpoints22);
|
|
12515
12938
|
const dataProxy = createDataProxy(proxy);
|
|
@@ -12614,8 +13037,8 @@ function createHealthCheckDataResource23(healthCheck) {
|
|
|
12614
13037
|
var ShippingClient = class extends BaseServiceClient {
|
|
12615
13038
|
constructor(http, baseUrl = "https://shipping.augur-api.com") {
|
|
12616
13039
|
super("shipping", http, baseUrl);
|
|
12617
|
-
const boundExecuteRequest = (config, params, pathParams) => {
|
|
12618
|
-
return this.executeRequest(config, params, pathParams);
|
|
13040
|
+
const boundExecuteRequest = (config, params, pathParams, query) => {
|
|
13041
|
+
return this.executeRequest(config, params, pathParams, query);
|
|
12619
13042
|
};
|
|
12620
13043
|
const proxy = createServiceProxy(
|
|
12621
13044
|
"shipping",
|
|
@@ -12743,8 +13166,8 @@ function createHealthCheckDataResource24(healthCheck) {
|
|
|
12743
13166
|
var SlackClient = class extends BaseServiceClient {
|
|
12744
13167
|
constructor(http, baseUrl = "https://slack.augur-api.com") {
|
|
12745
13168
|
super("slack", http, baseUrl);
|
|
12746
|
-
const boundExecuteRequest = (config, params, pathParams) => {
|
|
12747
|
-
return this.executeRequest(config, params, pathParams);
|
|
13169
|
+
const boundExecuteRequest = (config, params, pathParams, query) => {
|
|
13170
|
+
return this.executeRequest(config, params, pathParams, query);
|
|
12748
13171
|
};
|
|
12749
13172
|
const proxy = createServiceProxy("slack", boundExecuteRequest, endpoints24);
|
|
12750
13173
|
const dataProxy = createDataProxy(proxy);
|
|
@@ -12943,8 +13366,8 @@ function createPingDataResource11(ping) {
|
|
|
12943
13366
|
var SmartyStreetsClient = class extends BaseServiceClient {
|
|
12944
13367
|
constructor(http, baseUrl = "https://smarty-streets.augur-api.com") {
|
|
12945
13368
|
super("smarty-streets", http, baseUrl);
|
|
12946
|
-
const boundExecuteRequest = (config, params, pathParams) => {
|
|
12947
|
-
return this.executeRequest(config, params, pathParams);
|
|
13369
|
+
const boundExecuteRequest = (config, params, pathParams, query) => {
|
|
13370
|
+
return this.executeRequest(config, params, pathParams, query);
|
|
12948
13371
|
};
|
|
12949
13372
|
const proxy = createServiceProxy(
|
|
12950
13373
|
"smarty-streets",
|
|
@@ -13109,8 +13532,8 @@ function createHealthCheckDataResource26(healthCheck) {
|
|
|
13109
13532
|
var UPSClient = class extends BaseServiceClient {
|
|
13110
13533
|
constructor(http, baseUrl = "https://ups.augur-api.com") {
|
|
13111
13534
|
super("ups", http, baseUrl);
|
|
13112
|
-
const boundExecuteRequest = (config, params, pathParams) => {
|
|
13113
|
-
return this.executeRequest(config, params, pathParams);
|
|
13535
|
+
const boundExecuteRequest = (config, params, pathParams, query) => {
|
|
13536
|
+
return this.executeRequest(config, params, pathParams, query);
|
|
13114
13537
|
};
|
|
13115
13538
|
const proxy = createServiceProxy("ups", boundExecuteRequest, endpoints26);
|
|
13116
13539
|
const dataProxy = createDataProxy(proxy);
|
|
@@ -13125,20 +13548,20 @@ var UPSClient = class extends BaseServiceClient {
|
|
|
13125
13548
|
import * as v36 from "valibot";
|
|
13126
13549
|
var CommentsListParamsSchema = v36.looseObject({
|
|
13127
13550
|
...EdgeCacheParamsSchema.entries,
|
|
13128
|
-
|
|
13551
|
+
creatorId: v36.optional(v36.pipe(v36.unknown(), v36.transform(Number))),
|
|
13129
13552
|
limit: v36.optional(v36.pipe(v36.unknown(), v36.transform(Number))),
|
|
13130
13553
|
offset: v36.optional(v36.pipe(v36.unknown(), v36.transform(Number))),
|
|
13131
|
-
|
|
13132
|
-
|
|
13554
|
+
orderBy: v36.optional(v36.string()),
|
|
13555
|
+
todosId: v36.optional(v36.pipe(v36.unknown(), v36.transform(Number)))
|
|
13133
13556
|
});
|
|
13134
13557
|
var EventsListParamsSchema = v36.looseObject({
|
|
13135
13558
|
...EdgeCacheParamsSchema.entries,
|
|
13136
|
-
|
|
13559
|
+
eventTypeCd: v36.optional(v36.pipe(v36.unknown(), v36.transform(Number))),
|
|
13137
13560
|
id: v36.optional(v36.pipe(v36.unknown(), v36.transform(Number))),
|
|
13138
13561
|
limit: v36.optional(v36.pipe(v36.unknown(), v36.transform(Number))),
|
|
13139
13562
|
offset: v36.optional(v36.pipe(v36.unknown(), v36.transform(Number))),
|
|
13140
|
-
|
|
13141
|
-
|
|
13563
|
+
orderBy: v36.optional(v36.string()),
|
|
13564
|
+
peopleId: v36.optional(v36.pipe(v36.unknown(), v36.transform(Number)))
|
|
13142
13565
|
});
|
|
13143
13566
|
var MetricsListParamsSchema = v36.looseObject({
|
|
13144
13567
|
...EdgeCacheParamsSchema.entries,
|
|
@@ -13174,27 +13597,27 @@ var PeopleMetricsListParamsSchema = v36.looseObject({
|
|
|
13174
13597
|
});
|
|
13175
13598
|
var PeopleTodosListParamsSchema = v36.looseObject({
|
|
13176
13599
|
...EdgeCacheParamsSchema.entries,
|
|
13177
|
-
|
|
13178
|
-
|
|
13600
|
+
completedFlag: v36.optional(v36.string()),
|
|
13601
|
+
dueAt: v36.optional(v36.string()),
|
|
13179
13602
|
limit: v36.optional(v36.pipe(v36.unknown(), v36.transform(Number))),
|
|
13180
13603
|
offset: v36.optional(v36.pipe(v36.unknown(), v36.transform(Number))),
|
|
13181
|
-
|
|
13182
|
-
|
|
13604
|
+
orderBy: v36.optional(v36.string()),
|
|
13605
|
+
projectsId: v36.optional(v36.pipe(v36.unknown(), v36.transform(Number)))
|
|
13183
13606
|
});
|
|
13184
13607
|
var PeopleProjectsTodosListParamsSchema = v36.looseObject({
|
|
13185
13608
|
...EdgeCacheParamsSchema.entries,
|
|
13186
|
-
|
|
13609
|
+
completedFlag: v36.optional(v36.string()),
|
|
13187
13610
|
limit: v36.optional(v36.pipe(v36.unknown(), v36.transform(Number))),
|
|
13188
13611
|
offset: v36.optional(v36.pipe(v36.unknown(), v36.transform(Number))),
|
|
13189
|
-
|
|
13612
|
+
orderBy: v36.optional(v36.string())
|
|
13190
13613
|
});
|
|
13191
13614
|
var ProjectsListParamsSchema = v36.looseObject({
|
|
13192
13615
|
...EdgeCacheParamsSchema.entries,
|
|
13193
|
-
|
|
13616
|
+
archivedFlag: v36.optional(v36.string()),
|
|
13194
13617
|
limit: v36.optional(v36.pipe(v36.unknown(), v36.transform(Number))),
|
|
13195
13618
|
offset: v36.optional(v36.pipe(v36.unknown(), v36.transform(Number))),
|
|
13196
|
-
|
|
13197
|
-
|
|
13619
|
+
orderBy: v36.optional(v36.string()),
|
|
13620
|
+
trashedFlag: v36.optional(v36.string())
|
|
13198
13621
|
});
|
|
13199
13622
|
var ProjectsMetricsListParamsSchema = v36.looseObject({
|
|
13200
13623
|
...EdgeCacheParamsSchema.entries,
|
|
@@ -13208,74 +13631,74 @@ var ProjectsMetricsListParamsSchema = v36.looseObject({
|
|
|
13208
13631
|
});
|
|
13209
13632
|
var ProjectsTodolistsListParamsSchema = v36.looseObject({
|
|
13210
13633
|
...EdgeCacheParamsSchema.entries,
|
|
13211
|
-
|
|
13634
|
+
completedFlag: v36.optional(v36.string()),
|
|
13212
13635
|
limit: v36.optional(v36.pipe(v36.unknown(), v36.transform(Number))),
|
|
13213
13636
|
offset: v36.optional(v36.pipe(v36.unknown(), v36.transform(Number))),
|
|
13214
|
-
|
|
13637
|
+
orderBy: v36.optional(v36.string())
|
|
13215
13638
|
});
|
|
13216
13639
|
var ProjectsTodosListParamsSchema = v36.looseObject({
|
|
13217
13640
|
...EdgeCacheParamsSchema.entries,
|
|
13218
|
-
|
|
13219
|
-
|
|
13641
|
+
assigneeId: v36.optional(v36.pipe(v36.unknown(), v36.transform(Number))),
|
|
13642
|
+
completedFlag: v36.optional(v36.string()),
|
|
13220
13643
|
limit: v36.optional(v36.pipe(v36.unknown(), v36.transform(Number))),
|
|
13221
13644
|
offset: v36.optional(v36.pipe(v36.unknown(), v36.transform(Number))),
|
|
13222
|
-
|
|
13645
|
+
orderBy: v36.optional(v36.string())
|
|
13223
13646
|
});
|
|
13224
13647
|
var ProjectsTodolistsTodosListParamsSchema = v36.looseObject({
|
|
13225
13648
|
...EdgeCacheParamsSchema.entries,
|
|
13226
|
-
|
|
13227
|
-
|
|
13649
|
+
assigneeId: v36.optional(v36.pipe(v36.unknown(), v36.transform(Number))),
|
|
13650
|
+
completedFlag: v36.optional(v36.string()),
|
|
13228
13651
|
limit: v36.optional(v36.pipe(v36.unknown(), v36.transform(Number))),
|
|
13229
13652
|
offset: v36.optional(v36.pipe(v36.unknown(), v36.transform(Number))),
|
|
13230
|
-
|
|
13653
|
+
orderBy: v36.optional(v36.string())
|
|
13231
13654
|
});
|
|
13232
13655
|
var TodolistsListParamsSchema = v36.looseObject({
|
|
13233
13656
|
...EdgeCacheParamsSchema.entries,
|
|
13234
|
-
|
|
13235
|
-
|
|
13657
|
+
assigneeId: v36.optional(v36.pipe(v36.unknown(), v36.transform(Number))),
|
|
13658
|
+
completedFlag: v36.optional(v36.string()),
|
|
13236
13659
|
limit: v36.optional(v36.pipe(v36.unknown(), v36.transform(Number))),
|
|
13237
13660
|
offset: v36.optional(v36.pipe(v36.unknown(), v36.transform(Number))),
|
|
13238
|
-
|
|
13239
|
-
|
|
13661
|
+
orderBy: v36.optional(v36.string()),
|
|
13662
|
+
projectsId: v36.optional(v36.pipe(v36.unknown(), v36.transform(Number)))
|
|
13240
13663
|
});
|
|
13241
13664
|
var TodosListParamsSchema = v36.looseObject({
|
|
13242
13665
|
...EdgeCacheParamsSchema.entries,
|
|
13243
|
-
|
|
13244
|
-
|
|
13245
|
-
|
|
13666
|
+
assigneeId: v36.optional(v36.pipe(v36.unknown(), v36.transform(Number))),
|
|
13667
|
+
completedFlag: v36.optional(v36.string()),
|
|
13668
|
+
dueAt: v36.optional(v36.string()),
|
|
13246
13669
|
limit: v36.optional(v36.pipe(v36.unknown(), v36.transform(Number))),
|
|
13247
13670
|
offset: v36.optional(v36.pipe(v36.unknown(), v36.transform(Number))),
|
|
13248
|
-
|
|
13249
|
-
|
|
13250
|
-
|
|
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)))
|
|
13251
13674
|
});
|
|
13252
13675
|
var TodosSummaryListParamsSchema = v36.looseObject({
|
|
13253
13676
|
...EdgeCacheParamsSchema.entries,
|
|
13254
|
-
|
|
13677
|
+
akashaCd: v36.optional(v36.pipe(v36.unknown(), v36.transform(Number))),
|
|
13255
13678
|
limit: v36.optional(v36.pipe(v36.unknown(), v36.transform(Number))),
|
|
13256
13679
|
offset: v36.optional(v36.pipe(v36.unknown(), v36.transform(Number))),
|
|
13257
|
-
|
|
13680
|
+
processCd: v36.optional(v36.pipe(v36.unknown(), v36.transform(Number)))
|
|
13258
13681
|
});
|
|
13259
13682
|
var TodosCommentsListParamsSchema = v36.looseObject({
|
|
13260
13683
|
...EdgeCacheParamsSchema.entries,
|
|
13261
13684
|
limit: v36.optional(v36.pipe(v36.unknown(), v36.transform(Number))),
|
|
13262
13685
|
offset: v36.optional(v36.pipe(v36.unknown(), v36.transform(Number))),
|
|
13263
|
-
|
|
13686
|
+
orderBy: v36.optional(v36.string())
|
|
13264
13687
|
});
|
|
13265
13688
|
var TodosEventsListParamsSchema = v36.looseObject({
|
|
13266
13689
|
...EdgeCacheParamsSchema.entries,
|
|
13267
|
-
|
|
13690
|
+
eventTypeCd: v36.optional(v36.pipe(v36.unknown(), v36.transform(Number))),
|
|
13268
13691
|
limit: v36.optional(v36.pipe(v36.unknown(), v36.transform(Number))),
|
|
13269
13692
|
offset: v36.optional(v36.pipe(v36.unknown(), v36.transform(Number))),
|
|
13270
|
-
|
|
13271
|
-
|
|
13693
|
+
orderBy: v36.optional(v36.string()),
|
|
13694
|
+
peopleId: v36.optional(v36.pipe(v36.unknown(), v36.transform(Number)))
|
|
13272
13695
|
});
|
|
13273
13696
|
var TodosSessionsListParamsSchema = v36.looseObject({
|
|
13274
13697
|
...EdgeCacheParamsSchema.entries,
|
|
13275
13698
|
limit: v36.optional(v36.pipe(v36.unknown(), v36.transform(Number))),
|
|
13276
13699
|
offset: v36.optional(v36.pipe(v36.unknown(), v36.transform(Number))),
|
|
13277
|
-
|
|
13278
|
-
|
|
13700
|
+
orderBy: v36.optional(v36.string()),
|
|
13701
|
+
sessionStatusCd: v36.optional(v36.pipe(v36.unknown(), v36.transform(Number)))
|
|
13279
13702
|
});
|
|
13280
13703
|
var CommentsDataSchema = v36.looseObject({
|
|
13281
13704
|
id: v36.optional(v36.number()),
|
|
@@ -13477,7 +13900,7 @@ var endpoints27 = [
|
|
|
13477
13900
|
action: "list",
|
|
13478
13901
|
aliases: [],
|
|
13479
13902
|
pathParams: [],
|
|
13480
|
-
queryParams: ["
|
|
13903
|
+
queryParams: ["creatorId", "limit", "offset", "orderBy", "todosId"],
|
|
13481
13904
|
edgeCache: true,
|
|
13482
13905
|
responseSchema: CommentsDataSchema,
|
|
13483
13906
|
responseType: "array"
|
|
@@ -13501,7 +13924,7 @@ var endpoints27 = [
|
|
|
13501
13924
|
action: "list",
|
|
13502
13925
|
aliases: [],
|
|
13503
13926
|
pathParams: [],
|
|
13504
|
-
queryParams: ["
|
|
13927
|
+
queryParams: ["eventTypeCd", "id", "limit", "offset", "orderBy", "peopleId"],
|
|
13505
13928
|
edgeCache: true,
|
|
13506
13929
|
responseSchema: EventsDataSchema,
|
|
13507
13930
|
responseType: "array"
|
|
@@ -13580,7 +14003,7 @@ var endpoints27 = [
|
|
|
13580
14003
|
action: "list",
|
|
13581
14004
|
aliases: [],
|
|
13582
14005
|
pathParams: ["id"],
|
|
13583
|
-
queryParams: ["
|
|
14006
|
+
queryParams: ["completedFlag", "dueAt", "limit", "offset", "orderBy", "projectsId"],
|
|
13584
14007
|
edgeCache: true,
|
|
13585
14008
|
responseSchema: PeopleDataSchema,
|
|
13586
14009
|
responseType: "array"
|
|
@@ -13592,7 +14015,7 @@ var endpoints27 = [
|
|
|
13592
14015
|
action: "list",
|
|
13593
14016
|
aliases: [],
|
|
13594
14017
|
pathParams: ["personId", "projectId"],
|
|
13595
|
-
queryParams: ["
|
|
14018
|
+
queryParams: ["completedFlag", "limit", "offset", "orderBy"],
|
|
13596
14019
|
edgeCache: true,
|
|
13597
14020
|
responseSchema: PeopleDataSchema,
|
|
13598
14021
|
responseType: "array"
|
|
@@ -13604,7 +14027,7 @@ var endpoints27 = [
|
|
|
13604
14027
|
action: "list",
|
|
13605
14028
|
aliases: [],
|
|
13606
14029
|
pathParams: [],
|
|
13607
|
-
queryParams: ["
|
|
14030
|
+
queryParams: ["archivedFlag", "limit", "offset", "orderBy", "trashedFlag"],
|
|
13608
14031
|
edgeCache: true,
|
|
13609
14032
|
responseSchema: ProjectsDataSchema,
|
|
13610
14033
|
responseType: "array"
|
|
@@ -13648,7 +14071,7 @@ var endpoints27 = [
|
|
|
13648
14071
|
action: "list",
|
|
13649
14072
|
aliases: [],
|
|
13650
14073
|
pathParams: ["id"],
|
|
13651
|
-
queryParams: ["
|
|
14074
|
+
queryParams: ["completedFlag", "limit", "offset", "orderBy"],
|
|
13652
14075
|
edgeCache: true,
|
|
13653
14076
|
responseSchema: ProjectsDataSchema,
|
|
13654
14077
|
responseType: "array"
|
|
@@ -13660,7 +14083,7 @@ var endpoints27 = [
|
|
|
13660
14083
|
action: "list",
|
|
13661
14084
|
aliases: [],
|
|
13662
14085
|
pathParams: ["id"],
|
|
13663
|
-
queryParams: ["
|
|
14086
|
+
queryParams: ["assigneeId", "completedFlag", "limit", "offset", "orderBy"],
|
|
13664
14087
|
edgeCache: true,
|
|
13665
14088
|
responseSchema: ProjectsDataSchema,
|
|
13666
14089
|
responseType: "array"
|
|
@@ -13672,7 +14095,7 @@ var endpoints27 = [
|
|
|
13672
14095
|
action: "list",
|
|
13673
14096
|
aliases: [],
|
|
13674
14097
|
pathParams: ["projectId", "todolistId"],
|
|
13675
|
-
queryParams: ["
|
|
14098
|
+
queryParams: ["assigneeId", "completedFlag", "limit", "offset", "orderBy"],
|
|
13676
14099
|
edgeCache: true,
|
|
13677
14100
|
responseSchema: ProjectsDataSchema,
|
|
13678
14101
|
responseType: "array"
|
|
@@ -13684,7 +14107,7 @@ var endpoints27 = [
|
|
|
13684
14107
|
action: "list",
|
|
13685
14108
|
aliases: [],
|
|
13686
14109
|
pathParams: [],
|
|
13687
|
-
queryParams: ["
|
|
14110
|
+
queryParams: ["assigneeId", "completedFlag", "limit", "offset", "orderBy", "projectsId"],
|
|
13688
14111
|
edgeCache: true,
|
|
13689
14112
|
responseSchema: TodolistsDataSchema,
|
|
13690
14113
|
responseType: "array"
|
|
@@ -13709,14 +14132,14 @@ var endpoints27 = [
|
|
|
13709
14132
|
aliases: [],
|
|
13710
14133
|
pathParams: [],
|
|
13711
14134
|
queryParams: [
|
|
13712
|
-
"
|
|
13713
|
-
"
|
|
13714
|
-
"
|
|
14135
|
+
"assigneeId",
|
|
14136
|
+
"completedFlag",
|
|
14137
|
+
"dueAt",
|
|
13715
14138
|
"limit",
|
|
13716
14139
|
"offset",
|
|
13717
|
-
"
|
|
13718
|
-
"
|
|
13719
|
-
"
|
|
14140
|
+
"orderBy",
|
|
14141
|
+
"projectsId",
|
|
14142
|
+
"todolistId"
|
|
13720
14143
|
],
|
|
13721
14144
|
edgeCache: true,
|
|
13722
14145
|
responseSchema: TodosDataSchema,
|
|
@@ -13729,7 +14152,7 @@ var endpoints27 = [
|
|
|
13729
14152
|
action: "list",
|
|
13730
14153
|
aliases: [],
|
|
13731
14154
|
pathParams: [],
|
|
13732
|
-
queryParams: ["
|
|
14155
|
+
queryParams: ["akashaCd", "limit", "offset", "processCd"],
|
|
13733
14156
|
edgeCache: true,
|
|
13734
14157
|
responseSchema: TodosSummaryDataSchema,
|
|
13735
14158
|
responseType: "array"
|
|
@@ -13765,7 +14188,7 @@ var endpoints27 = [
|
|
|
13765
14188
|
action: "list",
|
|
13766
14189
|
aliases: [],
|
|
13767
14190
|
pathParams: ["id"],
|
|
13768
|
-
queryParams: ["limit", "offset", "
|
|
14191
|
+
queryParams: ["limit", "offset", "orderBy"],
|
|
13769
14192
|
edgeCache: true,
|
|
13770
14193
|
responseSchema: TodosDataSchema,
|
|
13771
14194
|
responseType: "array"
|
|
@@ -13777,7 +14200,7 @@ var endpoints27 = [
|
|
|
13777
14200
|
action: "list",
|
|
13778
14201
|
aliases: [],
|
|
13779
14202
|
pathParams: ["id"],
|
|
13780
|
-
queryParams: ["
|
|
14203
|
+
queryParams: ["eventTypeCd", "limit", "offset", "orderBy", "peopleId"],
|
|
13781
14204
|
edgeCache: true,
|
|
13782
14205
|
responseSchema: EventsDataSchema,
|
|
13783
14206
|
responseType: "array"
|
|
@@ -13813,7 +14236,7 @@ var endpoints27 = [
|
|
|
13813
14236
|
action: "list",
|
|
13814
14237
|
aliases: [],
|
|
13815
14238
|
pathParams: ["id"],
|
|
13816
|
-
queryParams: ["limit", "offset", "
|
|
14239
|
+
queryParams: ["limit", "offset", "orderBy", "sessionStatusCd"],
|
|
13817
14240
|
edgeCache: true,
|
|
13818
14241
|
responseSchema: TodosSessionsDataSchema,
|
|
13819
14242
|
responseType: "array"
|
|
@@ -13917,8 +14340,8 @@ function createHealthCheckDataResource27(healthCheck) {
|
|
|
13917
14340
|
var Basecamp2Client = class extends BaseServiceClient {
|
|
13918
14341
|
constructor(http, baseUrl = "https://basecamp2.augur-api.com") {
|
|
13919
14342
|
super("basecamp2", http, baseUrl);
|
|
13920
|
-
const boundExecuteRequest = (config, params, pathParams) => {
|
|
13921
|
-
return this.executeRequest(config, params, pathParams);
|
|
14343
|
+
const boundExecuteRequest = (config, params, pathParams, query) => {
|
|
14344
|
+
return this.executeRequest(config, params, pathParams, query);
|
|
13922
14345
|
};
|
|
13923
14346
|
const proxy = createServiceProxy(
|
|
13924
14347
|
"basecamp2",
|
|
@@ -14848,7 +15271,7 @@ function createCrossSiteAuthenticator(augurInfoToken) {
|
|
|
14848
15271
|
}
|
|
14849
15272
|
|
|
14850
15273
|
// src/index.ts
|
|
14851
|
-
var VERSION = "2026.
|
|
15274
|
+
var VERSION = "2026.7.1";
|
|
14852
15275
|
export {
|
|
14853
15276
|
AgrInfoClient,
|
|
14854
15277
|
AgrIntClient,
|