@simpleapps-com/augur-api 2026.6.5 → 2026.8.1
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/README.md +1 -1
- package/SKILL.md +2 -2
- package/dist/{client-DeDnTdXi.d.mts → client-Dbn_tglP.d.mts} +831 -185
- package/dist/{client-DeDnTdXi.d.ts → client-Dbn_tglP.d.ts} +831 -185
- package/dist/index.d.mts +3 -3
- package/dist/index.d.ts +3 -3
- package/dist/index.js +1400 -356
- package/dist/index.js.map +1 -1
- package/dist/index.mjs +1400 -356
- 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()),
|
|
@@ -4225,6 +4371,29 @@ var AttributeGroupsAttributesDataSchema = v11.looseObject({
|
|
|
4225
4371
|
statusCd: v11.optional(v11.number())
|
|
4226
4372
|
});
|
|
4227
4373
|
var AttributesDataSchema = v11.looseObject({
|
|
4374
|
+
attributeUid: v11.optional(v11.number()),
|
|
4375
|
+
attributeDesc: v11.optional(v11.nullable(v11.string())),
|
|
4376
|
+
extendedDesc: v11.optional(v11.nullable(v11.string())),
|
|
4377
|
+
attributeId: v11.optional(v11.string()),
|
|
4378
|
+
dataType: v11.optional(v11.number()),
|
|
4379
|
+
maxLength: v11.optional(v11.number()),
|
|
4380
|
+
noOfDecimal: v11.optional(v11.nullable(v11.number())),
|
|
4381
|
+
rowStatusFlag: v11.optional(v11.number()),
|
|
4382
|
+
validationRequiredFlag: v11.optional(v11.string()),
|
|
4383
|
+
dateCreated: v11.optional(v11.string()),
|
|
4384
|
+
createdBy: v11.optional(v11.string()),
|
|
4385
|
+
dateLastModified: v11.optional(v11.string()),
|
|
4386
|
+
lastMaintainedBy: v11.optional(v11.string()),
|
|
4387
|
+
cfdiAttributeType: v11.optional(v11.nullable(v11.number())),
|
|
4388
|
+
updateCd: v11.optional(v11.number()),
|
|
4389
|
+
processCd: v11.optional(v11.number()),
|
|
4390
|
+
statusCd: v11.optional(v11.number()),
|
|
4391
|
+
typeCd: v11.optional(v11.number()),
|
|
4392
|
+
activeValueCount: v11.optional(v11.number()),
|
|
4393
|
+
inactiveValueCount: v11.optional(v11.number()),
|
|
4394
|
+
deletedValueCount: v11.optional(v11.number())
|
|
4395
|
+
});
|
|
4396
|
+
var AttributesData2Schema = v11.looseObject({
|
|
4228
4397
|
attributeUid: v11.optional(v11.number()),
|
|
4229
4398
|
attributeDesc: v11.optional(v11.nullable(v11.string())),
|
|
4230
4399
|
extendedDesc: v11.optional(v11.nullable(v11.string())),
|
|
@@ -4257,7 +4426,11 @@ var AttributesItemsDataSchema = v11.looseObject({
|
|
|
4257
4426
|
processCd: v11.optional(v11.number()),
|
|
4258
4427
|
statusCd: v11.optional(v11.number()),
|
|
4259
4428
|
attributeValueUid: v11.optional(v11.number()),
|
|
4260
|
-
onlineCd: v11.optional(v11.number())
|
|
4429
|
+
onlineCd: v11.optional(v11.number()),
|
|
4430
|
+
attributeDesc: v11.optional(v11.nullable(v11.string())),
|
|
4431
|
+
attributeId: v11.optional(v11.string()),
|
|
4432
|
+
itemId: v11.optional(v11.string()),
|
|
4433
|
+
itemDesc: v11.optional(v11.nullable(v11.string()))
|
|
4261
4434
|
});
|
|
4262
4435
|
var AttributesValuesDataSchema = v11.looseObject({
|
|
4263
4436
|
attributeValueUid: v11.optional(v11.number()),
|
|
@@ -4349,7 +4522,23 @@ var InvLocDataSchema = v11.looseObject({
|
|
|
4349
4522
|
updateCd: v11.optional(v11.number()),
|
|
4350
4523
|
productGroupId: v11.optional(v11.nullable(v11.string())),
|
|
4351
4524
|
purchaseDiscountGroup: v11.optional(v11.nullable(v11.string())),
|
|
4352
|
-
salesDiscountGroup: v11.optional(v11.nullable(v11.string()))
|
|
4525
|
+
salesDiscountGroup: v11.optional(v11.nullable(v11.string())),
|
|
4526
|
+
purchaseClass: v11.optional(v11.nullable(v11.string()))
|
|
4527
|
+
});
|
|
4528
|
+
var InvMastAttributesDataSchema = v11.looseObject({
|
|
4529
|
+
itemAttributeValueUid: v11.optional(v11.number()),
|
|
4530
|
+
invMastUid: v11.optional(v11.number()),
|
|
4531
|
+
attributeUid: v11.optional(v11.number()),
|
|
4532
|
+
attributeValue: v11.optional(v11.nullable(v11.string())),
|
|
4533
|
+
dateCreated: v11.optional(v11.string()),
|
|
4534
|
+
createdBy: v11.optional(v11.string()),
|
|
4535
|
+
dateLastModified: v11.optional(v11.string()),
|
|
4536
|
+
lastMaintainedBy: v11.optional(v11.string()),
|
|
4537
|
+
updateCd: v11.optional(v11.number()),
|
|
4538
|
+
processCd: v11.optional(v11.number()),
|
|
4539
|
+
statusCd: v11.optional(v11.number()),
|
|
4540
|
+
attributeValueUid: v11.optional(v11.number()),
|
|
4541
|
+
onlineCd: v11.optional(v11.number())
|
|
4353
4542
|
});
|
|
4354
4543
|
var InvMastFaqDataSchema = v11.looseObject({
|
|
4355
4544
|
invMastFaqUid: v11.optional(v11.number()),
|
|
@@ -4545,7 +4734,7 @@ var endpoints6 = [
|
|
|
4545
4734
|
pathParams: [],
|
|
4546
4735
|
queryParams: [],
|
|
4547
4736
|
edgeCache: false,
|
|
4548
|
-
responseSchema:
|
|
4737
|
+
responseSchema: AttributesData2Schema,
|
|
4549
4738
|
responseType: "object"
|
|
4550
4739
|
},
|
|
4551
4740
|
{
|
|
@@ -4569,7 +4758,7 @@ var endpoints6 = [
|
|
|
4569
4758
|
pathParams: ["attributeUid"],
|
|
4570
4759
|
queryParams: [],
|
|
4571
4760
|
edgeCache: false,
|
|
4572
|
-
responseSchema:
|
|
4761
|
+
responseSchema: AttributesData2Schema,
|
|
4573
4762
|
responseType: "object"
|
|
4574
4763
|
},
|
|
4575
4764
|
{
|
|
@@ -4595,6 +4784,8 @@ var endpoints6 = [
|
|
|
4595
4784
|
"attributeValueUid",
|
|
4596
4785
|
"excludeValues",
|
|
4597
4786
|
"includeValues",
|
|
4787
|
+
"itemId",
|
|
4788
|
+
"itemIdSearch",
|
|
4598
4789
|
"limit",
|
|
4599
4790
|
"offset",
|
|
4600
4791
|
"orderBy",
|
|
@@ -5074,7 +5265,7 @@ var endpoints6 = [
|
|
|
5074
5265
|
pathParams: ["invMastUid"],
|
|
5075
5266
|
queryParams: [],
|
|
5076
5267
|
edgeCache: false,
|
|
5077
|
-
responseSchema:
|
|
5268
|
+
responseSchema: InvMastAttributesDataSchema,
|
|
5078
5269
|
responseType: "object"
|
|
5079
5270
|
},
|
|
5080
5271
|
{
|
|
@@ -5098,7 +5289,7 @@ var endpoints6 = [
|
|
|
5098
5289
|
pathParams: ["invMastUid", "attributeUid"],
|
|
5099
5290
|
queryParams: [],
|
|
5100
5291
|
edgeCache: false,
|
|
5101
|
-
responseSchema:
|
|
5292
|
+
responseSchema: InvMastAttributesDataSchema,
|
|
5102
5293
|
responseType: "object"
|
|
5103
5294
|
},
|
|
5104
5295
|
{
|
|
@@ -5110,7 +5301,7 @@ var endpoints6 = [
|
|
|
5110
5301
|
pathParams: ["invMastUid", "attributeUid", "attributeValueUid"],
|
|
5111
5302
|
queryParams: [],
|
|
5112
5303
|
edgeCache: false,
|
|
5113
|
-
responseSchema:
|
|
5304
|
+
responseSchema: InvMastAttributesDataSchema,
|
|
5114
5305
|
responseType: "object"
|
|
5115
5306
|
},
|
|
5116
5307
|
{
|
|
@@ -5840,8 +6031,8 @@ function createWhoamiDataResource(whoami) {
|
|
|
5840
6031
|
var ItemsClient = class extends BaseServiceClient {
|
|
5841
6032
|
constructor(http, baseUrl = "https://items.augur-api.com") {
|
|
5842
6033
|
super("items", http, baseUrl);
|
|
5843
|
-
const boundExecuteRequest = (config, params, pathParams) => {
|
|
5844
|
-
return this.executeRequest(config, params, pathParams);
|
|
6034
|
+
const boundExecuteRequest = (config, params, pathParams, query) => {
|
|
6035
|
+
return this.executeRequest(config, params, pathParams, query);
|
|
5845
6036
|
};
|
|
5846
6037
|
const proxy = createServiceProxy("items", boundExecuteRequest, endpoints6);
|
|
5847
6038
|
const dataProxy = createDataProxy(proxy);
|
|
@@ -6306,8 +6497,8 @@ function createHealthCheckDataResource7(healthCheck) {
|
|
|
6306
6497
|
var LegacyClient = class extends BaseServiceClient {
|
|
6307
6498
|
constructor(http, baseUrl = "https://legacy.augur-api.com") {
|
|
6308
6499
|
super("legacy", http, baseUrl);
|
|
6309
|
-
const boundExecuteRequest = (config, params, pathParams) => {
|
|
6310
|
-
return this.executeRequest(config, params, pathParams);
|
|
6500
|
+
const boundExecuteRequest = (config, params, pathParams, query) => {
|
|
6501
|
+
return this.executeRequest(config, params, pathParams, query);
|
|
6311
6502
|
};
|
|
6312
6503
|
const proxy = createServiceProxy("legacy", boundExecuteRequest, endpoints7);
|
|
6313
6504
|
const dataProxy = createDataProxy(proxy);
|
|
@@ -6337,11 +6528,6 @@ var BinTransferListParamsSchema = v14.looseObject({
|
|
|
6337
6528
|
offset: v14.optional(v14.pipe(v14.unknown(), v14.transform(Number))),
|
|
6338
6529
|
statusCd: v14.optional(v14.pipe(v14.unknown(), v14.transform(Number)))
|
|
6339
6530
|
});
|
|
6340
|
-
var BinTransferCreateParamsSchema = v14.looseObject({
|
|
6341
|
-
limit: v14.optional(v14.pipe(v14.unknown(), v14.transform(Number))),
|
|
6342
|
-
offset: v14.optional(v14.pipe(v14.unknown(), v14.transform(Number))),
|
|
6343
|
-
statusCd: v14.optional(v14.pipe(v14.unknown(), v14.transform(Number)))
|
|
6344
|
-
});
|
|
6345
6531
|
var PurchaseOrderReceiptListParamsSchema = v14.looseObject({
|
|
6346
6532
|
...EdgeCacheParamsSchema.entries,
|
|
6347
6533
|
limit: v14.optional(v14.pipe(v14.unknown(), v14.transform(Number))),
|
|
@@ -6349,12 +6535,6 @@ var PurchaseOrderReceiptListParamsSchema = v14.looseObject({
|
|
|
6349
6535
|
referenceNo: v14.optional(v14.string()),
|
|
6350
6536
|
statusCd: v14.optional(v14.pipe(v14.unknown(), v14.transform(Number)))
|
|
6351
6537
|
});
|
|
6352
|
-
var PurchaseOrderReceiptCreateParamsSchema = v14.looseObject({
|
|
6353
|
-
limit: v14.optional(v14.pipe(v14.unknown(), v14.transform(Number))),
|
|
6354
|
-
offset: v14.optional(v14.pipe(v14.unknown(), v14.transform(Number))),
|
|
6355
|
-
referenceNo: v14.optional(v14.string()),
|
|
6356
|
-
statusCd: v14.optional(v14.pipe(v14.unknown(), v14.transform(Number)))
|
|
6357
|
-
});
|
|
6358
6538
|
var ReceivingListParamsSchema = v14.looseObject({
|
|
6359
6539
|
...EdgeCacheParamsSchema.entries,
|
|
6360
6540
|
limit: v14.optional(v14.pipe(v14.unknown(), v14.transform(Number))),
|
|
@@ -6362,12 +6542,6 @@ var ReceivingListParamsSchema = v14.looseObject({
|
|
|
6362
6542
|
poNo: v14.optional(v14.pipe(v14.unknown(), v14.transform(Number))),
|
|
6363
6543
|
statusCd: v14.optional(v14.pipe(v14.unknown(), v14.transform(Number)))
|
|
6364
6544
|
});
|
|
6365
|
-
var ReceivingCreateParamsSchema = v14.looseObject({
|
|
6366
|
-
limit: v14.optional(v14.pipe(v14.unknown(), v14.transform(Number))),
|
|
6367
|
-
offset: v14.optional(v14.pipe(v14.unknown(), v14.transform(Number))),
|
|
6368
|
-
poNo: v14.optional(v14.pipe(v14.unknown(), v14.transform(Number))),
|
|
6369
|
-
statusCd: v14.optional(v14.pipe(v14.unknown(), v14.transform(Number)))
|
|
6370
|
-
});
|
|
6371
6545
|
var TransferListParamsSchema = v14.looseObject({
|
|
6372
6546
|
...EdgeCacheParamsSchema.entries,
|
|
6373
6547
|
limit: v14.optional(v14.pipe(v14.unknown(), v14.transform(Number))),
|
|
@@ -6375,12 +6549,6 @@ var TransferListParamsSchema = v14.looseObject({
|
|
|
6375
6549
|
referenceNo: v14.optional(v14.string()),
|
|
6376
6550
|
statusCd: v14.optional(v14.pipe(v14.unknown(), v14.transform(Number)))
|
|
6377
6551
|
});
|
|
6378
|
-
var TransferCreateParamsSchema = v14.looseObject({
|
|
6379
|
-
limit: v14.optional(v14.pipe(v14.unknown(), v14.transform(Number))),
|
|
6380
|
-
offset: v14.optional(v14.pipe(v14.unknown(), v14.transform(Number))),
|
|
6381
|
-
referenceNo: v14.optional(v14.string()),
|
|
6382
|
-
statusCd: v14.optional(v14.pipe(v14.unknown(), v14.transform(Number)))
|
|
6383
|
-
});
|
|
6384
6552
|
var TransferReceiptListParamsSchema = v14.looseObject({
|
|
6385
6553
|
...EdgeCacheParamsSchema.entries,
|
|
6386
6554
|
limit: v14.optional(v14.pipe(v14.unknown(), v14.transform(Number))),
|
|
@@ -6388,12 +6556,6 @@ var TransferReceiptListParamsSchema = v14.looseObject({
|
|
|
6388
6556
|
referenceNo: v14.optional(v14.string()),
|
|
6389
6557
|
statusCd: v14.optional(v14.pipe(v14.unknown(), v14.transform(Number)))
|
|
6390
6558
|
});
|
|
6391
|
-
var TransferReceiptCreateParamsSchema = v14.looseObject({
|
|
6392
|
-
limit: v14.optional(v14.pipe(v14.unknown(), v14.transform(Number))),
|
|
6393
|
-
offset: v14.optional(v14.pipe(v14.unknown(), v14.transform(Number))),
|
|
6394
|
-
referenceNo: v14.optional(v14.string()),
|
|
6395
|
-
statusCd: v14.optional(v14.pipe(v14.unknown(), v14.transform(Number)))
|
|
6396
|
-
});
|
|
6397
6559
|
var TransferShippingListParamsSchema = v14.looseObject({
|
|
6398
6560
|
...EdgeCacheParamsSchema.entries,
|
|
6399
6561
|
limit: v14.optional(v14.pipe(v14.unknown(), v14.transform(Number))),
|
|
@@ -6401,12 +6563,6 @@ var TransferShippingListParamsSchema = v14.looseObject({
|
|
|
6401
6563
|
referenceNo: v14.optional(v14.string()),
|
|
6402
6564
|
statusCd: v14.optional(v14.pipe(v14.unknown(), v14.transform(Number)))
|
|
6403
6565
|
});
|
|
6404
|
-
var TransferShippingCreateParamsSchema = v14.looseObject({
|
|
6405
|
-
limit: v14.optional(v14.pipe(v14.unknown(), v14.transform(Number))),
|
|
6406
|
-
offset: v14.optional(v14.pipe(v14.unknown(), v14.transform(Number))),
|
|
6407
|
-
referenceNo: v14.optional(v14.string()),
|
|
6408
|
-
statusCd: v14.optional(v14.pipe(v14.unknown(), v14.transform(Number)))
|
|
6409
|
-
});
|
|
6410
6566
|
var BinTransferDataSchema = v14.looseObject({
|
|
6411
6567
|
binTransferHdrUid: v14.optional(v14.number()),
|
|
6412
6568
|
importState: v14.optional(v14.string()),
|
|
@@ -6496,6 +6652,30 @@ var PassthroughDataSchema8 = v14.record(v14.string(), v14.unknown());
|
|
|
6496
6652
|
|
|
6497
6653
|
// src/services/nexus/generated/endpoints.ts
|
|
6498
6654
|
var endpoints8 = [
|
|
6655
|
+
{
|
|
6656
|
+
method: "GET",
|
|
6657
|
+
path: "/bin-transfer",
|
|
6658
|
+
chain: "binTransfer",
|
|
6659
|
+
action: "list",
|
|
6660
|
+
aliases: [],
|
|
6661
|
+
pathParams: [],
|
|
6662
|
+
queryParams: ["limit", "offset", "statusCd"],
|
|
6663
|
+
edgeCache: true,
|
|
6664
|
+
responseSchema: BinTransferDataSchema,
|
|
6665
|
+
responseType: "array"
|
|
6666
|
+
},
|
|
6667
|
+
{
|
|
6668
|
+
method: "POST",
|
|
6669
|
+
path: "/bin-transfer",
|
|
6670
|
+
chain: "binTransfer",
|
|
6671
|
+
action: "create",
|
|
6672
|
+
aliases: [],
|
|
6673
|
+
pathParams: [],
|
|
6674
|
+
queryParams: [],
|
|
6675
|
+
edgeCache: false,
|
|
6676
|
+
responseSchema: BinTransferDataSchema,
|
|
6677
|
+
responseType: "object"
|
|
6678
|
+
},
|
|
6499
6679
|
{
|
|
6500
6680
|
method: "GET",
|
|
6501
6681
|
path: "/bin-transfer/{binTransferHdrUid}",
|
|
@@ -6534,38 +6714,38 @@ var endpoints8 = [
|
|
|
6534
6714
|
},
|
|
6535
6715
|
{
|
|
6536
6716
|
method: "GET",
|
|
6537
|
-
path: "/bin-transfer",
|
|
6538
|
-
chain: "binTransfer",
|
|
6717
|
+
path: "/bin-transfer/{binTransferHdrUid}/status",
|
|
6718
|
+
chain: "binTransfer.status",
|
|
6719
|
+
action: "list",
|
|
6720
|
+
aliases: [],
|
|
6721
|
+
pathParams: ["binTransferHdrUid"],
|
|
6722
|
+
queryParams: [],
|
|
6723
|
+
edgeCache: true,
|
|
6724
|
+
responseSchema: BinTransferStatusDataSchema,
|
|
6725
|
+
responseType: "object"
|
|
6726
|
+
},
|
|
6727
|
+
{
|
|
6728
|
+
method: "GET",
|
|
6729
|
+
path: "/purchase-order-receipt",
|
|
6730
|
+
chain: "purchaseOrderReceipt",
|
|
6539
6731
|
action: "list",
|
|
6540
6732
|
aliases: [],
|
|
6541
6733
|
pathParams: [],
|
|
6542
|
-
queryParams: ["limit", "offset", "statusCd"],
|
|
6734
|
+
queryParams: ["limit", "offset", "referenceNo", "statusCd"],
|
|
6543
6735
|
edgeCache: true,
|
|
6544
|
-
responseSchema:
|
|
6736
|
+
responseSchema: PurchaseOrderReceiptDataSchema,
|
|
6545
6737
|
responseType: "array"
|
|
6546
6738
|
},
|
|
6547
6739
|
{
|
|
6548
6740
|
method: "POST",
|
|
6549
|
-
path: "/
|
|
6550
|
-
chain: "
|
|
6741
|
+
path: "/purchase-order-receipt",
|
|
6742
|
+
chain: "purchaseOrderReceipt",
|
|
6551
6743
|
action: "create",
|
|
6552
6744
|
aliases: [],
|
|
6553
6745
|
pathParams: [],
|
|
6554
|
-
queryParams: ["limit", "offset", "statusCd"],
|
|
6555
|
-
edgeCache: false,
|
|
6556
|
-
responseSchema: BinTransferDataSchema,
|
|
6557
|
-
responseType: "object"
|
|
6558
|
-
},
|
|
6559
|
-
{
|
|
6560
|
-
method: "GET",
|
|
6561
|
-
path: "/bin-transfer/{binTransferHdrUid}/status",
|
|
6562
|
-
chain: "binTransfer.status",
|
|
6563
|
-
action: "list",
|
|
6564
|
-
aliases: [],
|
|
6565
|
-
pathParams: ["binTransferHdrUid"],
|
|
6566
6746
|
queryParams: [],
|
|
6567
|
-
edgeCache:
|
|
6568
|
-
responseSchema:
|
|
6747
|
+
edgeCache: false,
|
|
6748
|
+
responseSchema: PurchaseOrderReceiptDataSchema,
|
|
6569
6749
|
responseType: "object"
|
|
6570
6750
|
},
|
|
6571
6751
|
{
|
|
@@ -6606,26 +6786,26 @@ var endpoints8 = [
|
|
|
6606
6786
|
},
|
|
6607
6787
|
{
|
|
6608
6788
|
method: "GET",
|
|
6609
|
-
path: "/
|
|
6610
|
-
chain: "
|
|
6789
|
+
path: "/receiving",
|
|
6790
|
+
chain: "receiving",
|
|
6611
6791
|
action: "list",
|
|
6612
6792
|
aliases: [],
|
|
6613
6793
|
pathParams: [],
|
|
6614
|
-
queryParams: ["limit", "offset", "
|
|
6794
|
+
queryParams: ["limit", "offset", "poNo", "statusCd"],
|
|
6615
6795
|
edgeCache: true,
|
|
6616
|
-
responseSchema:
|
|
6796
|
+
responseSchema: ReceivingDataSchema,
|
|
6617
6797
|
responseType: "array"
|
|
6618
6798
|
},
|
|
6619
6799
|
{
|
|
6620
6800
|
method: "POST",
|
|
6621
|
-
path: "/
|
|
6622
|
-
chain: "
|
|
6801
|
+
path: "/receiving",
|
|
6802
|
+
chain: "receiving",
|
|
6623
6803
|
action: "create",
|
|
6624
6804
|
aliases: [],
|
|
6625
6805
|
pathParams: [],
|
|
6626
|
-
queryParams: [
|
|
6806
|
+
queryParams: [],
|
|
6627
6807
|
edgeCache: false,
|
|
6628
|
-
responseSchema:
|
|
6808
|
+
responseSchema: ReceivingDataSchema,
|
|
6629
6809
|
responseType: "object"
|
|
6630
6810
|
},
|
|
6631
6811
|
{
|
|
@@ -6666,59 +6846,23 @@ var endpoints8 = [
|
|
|
6666
6846
|
},
|
|
6667
6847
|
{
|
|
6668
6848
|
method: "GET",
|
|
6669
|
-
path: "/
|
|
6670
|
-
chain: "
|
|
6849
|
+
path: "/transfer",
|
|
6850
|
+
chain: "transfer",
|
|
6671
6851
|
action: "list",
|
|
6672
6852
|
aliases: [],
|
|
6673
6853
|
pathParams: [],
|
|
6674
|
-
queryParams: ["limit", "offset", "
|
|
6854
|
+
queryParams: ["limit", "offset", "referenceNo", "statusCd"],
|
|
6675
6855
|
edgeCache: true,
|
|
6676
|
-
responseSchema:
|
|
6856
|
+
responseSchema: TransferDataSchema,
|
|
6677
6857
|
responseType: "array"
|
|
6678
6858
|
},
|
|
6679
6859
|
{
|
|
6680
6860
|
method: "POST",
|
|
6681
|
-
path: "/
|
|
6682
|
-
chain: "
|
|
6861
|
+
path: "/transfer",
|
|
6862
|
+
chain: "transfer",
|
|
6683
6863
|
action: "create",
|
|
6684
6864
|
aliases: [],
|
|
6685
6865
|
pathParams: [],
|
|
6686
|
-
queryParams: ["limit", "offset", "poNo", "statusCd"],
|
|
6687
|
-
edgeCache: false,
|
|
6688
|
-
responseSchema: ReceivingDataSchema,
|
|
6689
|
-
responseType: "object"
|
|
6690
|
-
},
|
|
6691
|
-
{
|
|
6692
|
-
method: "GET",
|
|
6693
|
-
path: "/transfer/{transferUid}",
|
|
6694
|
-
chain: "transfer",
|
|
6695
|
-
action: "get",
|
|
6696
|
-
aliases: [],
|
|
6697
|
-
pathParams: ["transferUid"],
|
|
6698
|
-
queryParams: [],
|
|
6699
|
-
edgeCache: true,
|
|
6700
|
-
responseSchema: TransferDataSchema,
|
|
6701
|
-
responseType: "object"
|
|
6702
|
-
},
|
|
6703
|
-
{
|
|
6704
|
-
method: "PUT",
|
|
6705
|
-
path: "/transfer/{transferUid}",
|
|
6706
|
-
chain: "transfer",
|
|
6707
|
-
action: "update",
|
|
6708
|
-
aliases: [],
|
|
6709
|
-
pathParams: ["transferUid"],
|
|
6710
|
-
queryParams: [],
|
|
6711
|
-
edgeCache: false,
|
|
6712
|
-
responseSchema: TransferDataSchema,
|
|
6713
|
-
responseType: "object"
|
|
6714
|
-
},
|
|
6715
|
-
{
|
|
6716
|
-
method: "DELETE",
|
|
6717
|
-
path: "/transfer/{transferUid}",
|
|
6718
|
-
chain: "transfer",
|
|
6719
|
-
action: "delete",
|
|
6720
|
-
aliases: [],
|
|
6721
|
-
pathParams: ["transferUid"],
|
|
6722
6866
|
queryParams: [],
|
|
6723
6867
|
edgeCache: false,
|
|
6724
6868
|
responseSchema: TransferDataSchema,
|
|
@@ -6726,26 +6870,26 @@ var endpoints8 = [
|
|
|
6726
6870
|
},
|
|
6727
6871
|
{
|
|
6728
6872
|
method: "GET",
|
|
6729
|
-
path: "/transfer",
|
|
6730
|
-
chain: "
|
|
6873
|
+
path: "/transfer-receipt",
|
|
6874
|
+
chain: "transferReceipt",
|
|
6731
6875
|
action: "list",
|
|
6732
6876
|
aliases: [],
|
|
6733
6877
|
pathParams: [],
|
|
6734
6878
|
queryParams: ["limit", "offset", "referenceNo", "statusCd"],
|
|
6735
6879
|
edgeCache: true,
|
|
6736
|
-
responseSchema:
|
|
6880
|
+
responseSchema: TransferReceiptDataSchema,
|
|
6737
6881
|
responseType: "array"
|
|
6738
6882
|
},
|
|
6739
6883
|
{
|
|
6740
6884
|
method: "POST",
|
|
6741
|
-
path: "/transfer",
|
|
6742
|
-
chain: "
|
|
6885
|
+
path: "/transfer-receipt",
|
|
6886
|
+
chain: "transferReceipt",
|
|
6743
6887
|
action: "create",
|
|
6744
6888
|
aliases: [],
|
|
6745
6889
|
pathParams: [],
|
|
6746
|
-
queryParams: [
|
|
6890
|
+
queryParams: [],
|
|
6747
6891
|
edgeCache: false,
|
|
6748
|
-
responseSchema:
|
|
6892
|
+
responseSchema: TransferReceiptDataSchema,
|
|
6749
6893
|
responseType: "object"
|
|
6750
6894
|
},
|
|
6751
6895
|
{
|
|
@@ -6786,8 +6930,8 @@ var endpoints8 = [
|
|
|
6786
6930
|
},
|
|
6787
6931
|
{
|
|
6788
6932
|
method: "GET",
|
|
6789
|
-
path: "/transfer-
|
|
6790
|
-
chain: "
|
|
6933
|
+
path: "/transfer-shipping",
|
|
6934
|
+
chain: "transferShipping",
|
|
6791
6935
|
action: "list",
|
|
6792
6936
|
aliases: [],
|
|
6793
6937
|
pathParams: [],
|
|
@@ -6798,12 +6942,12 @@ var endpoints8 = [
|
|
|
6798
6942
|
},
|
|
6799
6943
|
{
|
|
6800
6944
|
method: "POST",
|
|
6801
|
-
path: "/transfer-
|
|
6802
|
-
chain: "
|
|
6945
|
+
path: "/transfer-shipping",
|
|
6946
|
+
chain: "transferShipping",
|
|
6803
6947
|
action: "create",
|
|
6804
6948
|
aliases: [],
|
|
6805
6949
|
pathParams: [],
|
|
6806
|
-
queryParams: [
|
|
6950
|
+
queryParams: [],
|
|
6807
6951
|
edgeCache: false,
|
|
6808
6952
|
responseSchema: TransferReceiptDataSchema,
|
|
6809
6953
|
responseType: "object"
|
|
@@ -6846,26 +6990,38 @@ var endpoints8 = [
|
|
|
6846
6990
|
},
|
|
6847
6991
|
{
|
|
6848
6992
|
method: "GET",
|
|
6849
|
-
path: "/transfer
|
|
6850
|
-
chain: "
|
|
6851
|
-
action: "
|
|
6993
|
+
path: "/transfer/{transferUid}",
|
|
6994
|
+
chain: "transfer",
|
|
6995
|
+
action: "get",
|
|
6852
6996
|
aliases: [],
|
|
6853
|
-
pathParams: [],
|
|
6854
|
-
queryParams: [
|
|
6997
|
+
pathParams: ["transferUid"],
|
|
6998
|
+
queryParams: [],
|
|
6855
6999
|
edgeCache: true,
|
|
6856
|
-
responseSchema:
|
|
6857
|
-
responseType: "
|
|
7000
|
+
responseSchema: TransferDataSchema,
|
|
7001
|
+
responseType: "object"
|
|
6858
7002
|
},
|
|
6859
7003
|
{
|
|
6860
|
-
method: "
|
|
6861
|
-
path: "/transfer
|
|
6862
|
-
chain: "
|
|
6863
|
-
action: "
|
|
7004
|
+
method: "PUT",
|
|
7005
|
+
path: "/transfer/{transferUid}",
|
|
7006
|
+
chain: "transfer",
|
|
7007
|
+
action: "update",
|
|
6864
7008
|
aliases: [],
|
|
6865
|
-
pathParams: [],
|
|
6866
|
-
queryParams: [
|
|
7009
|
+
pathParams: ["transferUid"],
|
|
7010
|
+
queryParams: [],
|
|
6867
7011
|
edgeCache: false,
|
|
6868
|
-
responseSchema:
|
|
7012
|
+
responseSchema: TransferDataSchema,
|
|
7013
|
+
responseType: "object"
|
|
7014
|
+
},
|
|
7015
|
+
{
|
|
7016
|
+
method: "DELETE",
|
|
7017
|
+
path: "/transfer/{transferUid}",
|
|
7018
|
+
chain: "transfer",
|
|
7019
|
+
action: "delete",
|
|
7020
|
+
aliases: [],
|
|
7021
|
+
pathParams: ["transferUid"],
|
|
7022
|
+
queryParams: [],
|
|
7023
|
+
edgeCache: false,
|
|
7024
|
+
responseSchema: TransferDataSchema,
|
|
6869
7025
|
responseType: "object"
|
|
6870
7026
|
}
|
|
6871
7027
|
];
|
|
@@ -6944,8 +7100,8 @@ function createPingDataResource5(ping) {
|
|
|
6944
7100
|
var NexusClient = class extends BaseServiceClient {
|
|
6945
7101
|
constructor(http, baseUrl = "https://nexus.augur-api.com") {
|
|
6946
7102
|
super("nexus", http, baseUrl);
|
|
6947
|
-
const boundExecuteRequest = (config, params, pathParams) => {
|
|
6948
|
-
return this.executeRequest(config, params, pathParams);
|
|
7103
|
+
const boundExecuteRequest = (config, params, pathParams, query) => {
|
|
7104
|
+
return this.executeRequest(config, params, pathParams, query);
|
|
6949
7105
|
};
|
|
6950
7106
|
const proxy = createServiceProxy("nexus", boundExecuteRequest, endpoints8);
|
|
6951
7107
|
const dataProxy = createDataProxy(proxy);
|
|
@@ -7025,6 +7181,14 @@ var TrainingConversationsMessagesListParamsSchema = v15.looseObject({
|
|
|
7025
7181
|
offset: v15.optional(v15.pipe(v15.unknown(), v15.transform(Number))),
|
|
7026
7182
|
orderBy: v15.optional(v15.string())
|
|
7027
7183
|
});
|
|
7184
|
+
var UsersAddressesListParamsSchema = v15.looseObject({
|
|
7185
|
+
...EdgeCacheParamsSchema.entries,
|
|
7186
|
+
emailAddress: v15.optional(v15.string()),
|
|
7187
|
+
limit: v15.optional(v15.pipe(v15.unknown(), v15.transform(Number))),
|
|
7188
|
+
offset: v15.optional(v15.pipe(v15.unknown(), v15.transform(Number))),
|
|
7189
|
+
orderBy: v15.optional(v15.string()),
|
|
7190
|
+
statusCd: v15.optional(v15.pipe(v15.unknown(), v15.transform(Number)))
|
|
7191
|
+
});
|
|
7028
7192
|
var FyxerTranscriptDataSchema = v15.looseObject({
|
|
7029
7193
|
fyxerTranscriptHdrUid: v15.optional(v15.number()),
|
|
7030
7194
|
link: v15.optional(v15.string()),
|
|
@@ -7144,6 +7308,26 @@ var TrainingConversationsMessagesDataSchema = v15.looseObject({
|
|
|
7144
7308
|
dateCreated: v15.optional(v15.string()),
|
|
7145
7309
|
dateLastModified: v15.optional(v15.string())
|
|
7146
7310
|
});
|
|
7311
|
+
var UsersAddressesDataSchema = v15.looseObject({
|
|
7312
|
+
userAddressUid: v15.optional(v15.number()),
|
|
7313
|
+
userId: v15.optional(v15.number()),
|
|
7314
|
+
address1: v15.optional(v15.nullable(v15.string())),
|
|
7315
|
+
address2: v15.optional(v15.nullable(v15.string())),
|
|
7316
|
+
address3: v15.optional(v15.nullable(v15.string())),
|
|
7317
|
+
city: v15.optional(v15.nullable(v15.string())),
|
|
7318
|
+
state: v15.optional(v15.nullable(v15.string())),
|
|
7319
|
+
postalCode: v15.optional(v15.nullable(v15.string())),
|
|
7320
|
+
country: v15.optional(v15.nullable(v15.string())),
|
|
7321
|
+
emailAddress: v15.optional(v15.nullable(v15.string())),
|
|
7322
|
+
name: v15.optional(v15.nullable(v15.string())),
|
|
7323
|
+
phoneNumberMain: v15.optional(v15.nullable(v15.string())),
|
|
7324
|
+
phoneNumberMobile: v15.optional(v15.nullable(v15.string())),
|
|
7325
|
+
dateCreated: v15.optional(v15.string()),
|
|
7326
|
+
dateLastModified: v15.optional(v15.string()),
|
|
7327
|
+
updateCd: v15.optional(v15.number()),
|
|
7328
|
+
statusCd: v15.optional(v15.number()),
|
|
7329
|
+
processCd: v15.optional(v15.number())
|
|
7330
|
+
});
|
|
7147
7331
|
var PassthroughDataSchema9 = v15.record(v15.string(), v15.unknown());
|
|
7148
7332
|
|
|
7149
7333
|
// src/services/agr-site/generated/endpoints.ts
|
|
@@ -7160,6 +7344,18 @@ var endpoints9 = [
|
|
|
7160
7344
|
responseSchema: PassthroughDataSchema9,
|
|
7161
7345
|
responseType: "passthrough"
|
|
7162
7346
|
},
|
|
7347
|
+
{
|
|
7348
|
+
method: "POST",
|
|
7349
|
+
path: "/datafiles",
|
|
7350
|
+
chain: "datafiles",
|
|
7351
|
+
action: "create",
|
|
7352
|
+
aliases: [],
|
|
7353
|
+
pathParams: [],
|
|
7354
|
+
queryParams: [],
|
|
7355
|
+
edgeCache: false,
|
|
7356
|
+
responseSchema: PassthroughDataSchema9,
|
|
7357
|
+
responseType: "passthrough"
|
|
7358
|
+
},
|
|
7163
7359
|
{
|
|
7164
7360
|
method: "GET",
|
|
7165
7361
|
path: "/fyxer-transcript",
|
|
@@ -7579,6 +7775,66 @@ var endpoints9 = [
|
|
|
7579
7775
|
edgeCache: false,
|
|
7580
7776
|
responseSchema: TrainingConversationsMessagesDataSchema,
|
|
7581
7777
|
responseType: "object"
|
|
7778
|
+
},
|
|
7779
|
+
{
|
|
7780
|
+
method: "GET",
|
|
7781
|
+
path: "/users/{userId}/addresses",
|
|
7782
|
+
chain: "users.addresses",
|
|
7783
|
+
action: "list",
|
|
7784
|
+
aliases: [],
|
|
7785
|
+
pathParams: ["userId"],
|
|
7786
|
+
queryParams: ["emailAddress", "limit", "offset", "orderBy", "statusCd"],
|
|
7787
|
+
edgeCache: true,
|
|
7788
|
+
responseSchema: UsersAddressesDataSchema,
|
|
7789
|
+
responseType: "array"
|
|
7790
|
+
},
|
|
7791
|
+
{
|
|
7792
|
+
method: "POST",
|
|
7793
|
+
path: "/users/{userId}/addresses",
|
|
7794
|
+
chain: "users.addresses",
|
|
7795
|
+
action: "create",
|
|
7796
|
+
aliases: [],
|
|
7797
|
+
pathParams: ["userId"],
|
|
7798
|
+
queryParams: [],
|
|
7799
|
+
edgeCache: false,
|
|
7800
|
+
responseSchema: UsersAddressesDataSchema,
|
|
7801
|
+
responseType: "object"
|
|
7802
|
+
},
|
|
7803
|
+
{
|
|
7804
|
+
method: "GET",
|
|
7805
|
+
path: "/users/{userId}/addresses/{userAddressUid}",
|
|
7806
|
+
chain: "users.addresses",
|
|
7807
|
+
action: "get",
|
|
7808
|
+
aliases: [],
|
|
7809
|
+
pathParams: ["userId", "userAddressUid"],
|
|
7810
|
+
queryParams: [],
|
|
7811
|
+
edgeCache: true,
|
|
7812
|
+
responseSchema: UsersAddressesDataSchema,
|
|
7813
|
+
responseType: "object"
|
|
7814
|
+
},
|
|
7815
|
+
{
|
|
7816
|
+
method: "PUT",
|
|
7817
|
+
path: "/users/{userId}/addresses/{userAddressUid}",
|
|
7818
|
+
chain: "users.addresses",
|
|
7819
|
+
action: "update",
|
|
7820
|
+
aliases: [],
|
|
7821
|
+
pathParams: ["userId", "userAddressUid"],
|
|
7822
|
+
queryParams: [],
|
|
7823
|
+
edgeCache: false,
|
|
7824
|
+
responseSchema: UsersAddressesDataSchema,
|
|
7825
|
+
responseType: "object"
|
|
7826
|
+
},
|
|
7827
|
+
{
|
|
7828
|
+
method: "DELETE",
|
|
7829
|
+
path: "/users/{userId}/addresses/{userAddressUid}",
|
|
7830
|
+
chain: "users.addresses",
|
|
7831
|
+
action: "delete",
|
|
7832
|
+
aliases: [],
|
|
7833
|
+
pathParams: ["userId", "userAddressUid"],
|
|
7834
|
+
queryParams: [],
|
|
7835
|
+
edgeCache: false,
|
|
7836
|
+
responseSchema: UsersAddressesDataSchema,
|
|
7837
|
+
responseType: "object"
|
|
7582
7838
|
}
|
|
7583
7839
|
];
|
|
7584
7840
|
|
|
@@ -7741,12 +7997,13 @@ function createWhoamiDataResource2(whoami) {
|
|
|
7741
7997
|
var AgrSiteClient = class extends BaseServiceClient {
|
|
7742
7998
|
constructor(http, baseUrl = "https://agr-site.augur-api.com") {
|
|
7743
7999
|
super("agr-site", http, baseUrl);
|
|
7744
|
-
const boundExecuteRequest = (config, params, pathParams) => {
|
|
7745
|
-
return this.executeRequest(config, params, pathParams);
|
|
8000
|
+
const boundExecuteRequest = (config, params, pathParams, query) => {
|
|
8001
|
+
return this.executeRequest(config, params, pathParams, query);
|
|
7746
8002
|
};
|
|
7747
8003
|
const proxy = createServiceProxy("agr-site", boundExecuteRequest, endpoints9);
|
|
7748
8004
|
const dataProxy = createDataProxy(proxy);
|
|
7749
8005
|
this.context = proxy.context;
|
|
8006
|
+
this.datafiles = proxy.datafiles;
|
|
7750
8007
|
this.fyxerTranscript = proxy.fyxerTranscript;
|
|
7751
8008
|
this.geoCodesPostalCodes = proxy.geoCodesPostalCodes;
|
|
7752
8009
|
this.metaFiles = proxy.metaFiles;
|
|
@@ -7755,7 +8012,9 @@ var AgrSiteClient = class extends BaseServiceClient {
|
|
|
7755
8012
|
this.postalCodesXShiptos = proxy.postalCodesXShiptos;
|
|
7756
8013
|
this.settings = proxy.settings;
|
|
7757
8014
|
this.training = proxy.training;
|
|
8015
|
+
this.users = proxy.users;
|
|
7758
8016
|
this.contextData = dataProxy.context;
|
|
8017
|
+
this.datafilesData = dataProxy.datafiles;
|
|
7759
8018
|
this.fyxerTranscriptData = dataProxy.fyxerTranscript;
|
|
7760
8019
|
this.geoCodesPostalCodesData = dataProxy.geoCodesPostalCodes;
|
|
7761
8020
|
this.metaFilesData = dataProxy.metaFiles;
|
|
@@ -7764,6 +8023,7 @@ var AgrSiteClient = class extends BaseServiceClient {
|
|
|
7764
8023
|
this.postalCodesXShiptosData = dataProxy.postalCodesXShiptos;
|
|
7765
8024
|
this.settingsData = dataProxy.settings;
|
|
7766
8025
|
this.trainingData = dataProxy.training;
|
|
8026
|
+
this.usersData = dataProxy.users;
|
|
7767
8027
|
this.healthCheck = createHealthCheckResource9(boundExecuteRequest);
|
|
7768
8028
|
this.ping = createPingResource7(boundExecuteRequest);
|
|
7769
8029
|
this.whoami = createWhoamiResource2(boundExecuteRequest);
|
|
@@ -7813,6 +8073,14 @@ var CustomerAddressesListParamsSchema = v17.looseObject({
|
|
|
7813
8073
|
orderBy: v17.optional(v17.string()),
|
|
7814
8074
|
statusCd: v17.optional(v17.pipe(v17.unknown(), v17.transform(Number)))
|
|
7815
8075
|
});
|
|
8076
|
+
var CustomerAgingListParamsSchema = v17.looseObject({
|
|
8077
|
+
...EdgeCacheParamsSchema.entries,
|
|
8078
|
+
asOf: v17.optional(v17.string()),
|
|
8079
|
+
limit: v17.optional(v17.pipe(v17.unknown(), v17.transform(Number))),
|
|
8080
|
+
offset: v17.optional(v17.pipe(v17.unknown(), v17.transform(Number))),
|
|
8081
|
+
orderBy: v17.optional(v17.string()),
|
|
8082
|
+
shipToId: v17.optional(v17.pipe(v17.unknown(), v17.transform(Number)))
|
|
8083
|
+
});
|
|
7816
8084
|
var CustomerContactsListParamsSchema = v17.looseObject({
|
|
7817
8085
|
...EdgeCacheParamsSchema.entries,
|
|
7818
8086
|
limit: v17.optional(v17.pipe(v17.unknown(), v17.transform(Number))),
|
|
@@ -7821,6 +8089,7 @@ var CustomerContactsListParamsSchema = v17.looseObject({
|
|
|
7821
8089
|
});
|
|
7822
8090
|
var CustomerInvoicesListParamsSchema = v17.looseObject({
|
|
7823
8091
|
...EdgeCacheParamsSchema.entries,
|
|
8092
|
+
contactId: v17.optional(v17.string()),
|
|
7824
8093
|
createdFrom: v17.optional(v17.string()),
|
|
7825
8094
|
createdOn: v17.optional(v17.string()),
|
|
7826
8095
|
createdTo: v17.optional(v17.string()),
|
|
@@ -7832,6 +8101,7 @@ var CustomerInvoicesListParamsSchema = v17.looseObject({
|
|
|
7832
8101
|
});
|
|
7833
8102
|
var CustomerOrdersListParamsSchema = v17.looseObject({
|
|
7834
8103
|
...EdgeCacheParamsSchema.entries,
|
|
8104
|
+
addressId: v17.optional(v17.pipe(v17.unknown(), v17.transform(Number))),
|
|
7835
8105
|
cancelFlag: v17.optional(v17.string()),
|
|
7836
8106
|
contactId: v17.optional(v17.string()),
|
|
7837
8107
|
createdFrom: v17.optional(v17.string()),
|
|
@@ -7852,6 +8122,8 @@ var CustomerPurchasedItemsListParamsSchema = v17.looseObject({
|
|
|
7852
8122
|
});
|
|
7853
8123
|
var CustomerQuotesListParamsSchema = v17.looseObject({
|
|
7854
8124
|
...EdgeCacheParamsSchema.entries,
|
|
8125
|
+
addressId: v17.optional(v17.pipe(v17.unknown(), v17.transform(Number))),
|
|
8126
|
+
contactId: v17.optional(v17.string()),
|
|
7855
8127
|
createdFrom: v17.optional(v17.string()),
|
|
7856
8128
|
createdOn: v17.optional(v17.string()),
|
|
7857
8129
|
createdTo: v17.optional(v17.string()),
|
|
@@ -7868,6 +8140,18 @@ var CustomerRmasListParamsSchema = v17.looseObject({
|
|
|
7868
8140
|
offset: v17.optional(v17.pipe(v17.unknown(), v17.transform(Number))),
|
|
7869
8141
|
orderBy: v17.optional(v17.string())
|
|
7870
8142
|
});
|
|
8143
|
+
var CustomerSalesUsageListParamsSchema = v17.looseObject({
|
|
8144
|
+
...EdgeCacheParamsSchema.entries,
|
|
8145
|
+
invoicedFrom: v17.optional(v17.string()),
|
|
8146
|
+
invoicedTo: v17.optional(v17.string()),
|
|
8147
|
+
limit: v17.optional(v17.pipe(v17.unknown(), v17.transform(Number))),
|
|
8148
|
+
offset: v17.optional(v17.pipe(v17.unknown(), v17.transform(Number))),
|
|
8149
|
+
orderBy: v17.optional(v17.string()),
|
|
8150
|
+
q: v17.optional(v17.string()),
|
|
8151
|
+
shipToId: v17.optional(v17.pipe(v17.unknown(), v17.transform(Number))),
|
|
8152
|
+
supplierId: v17.optional(v17.pipe(v17.unknown(), v17.transform(Number))),
|
|
8153
|
+
totalBy: v17.optional(v17.string())
|
|
8154
|
+
});
|
|
7871
8155
|
var CustomerShipToListParamsSchema = v17.looseObject({
|
|
7872
8156
|
...EdgeCacheParamsSchema.entries,
|
|
7873
8157
|
limit: v17.optional(v17.pipe(v17.unknown(), v17.transform(Number))),
|
|
@@ -7901,6 +8185,26 @@ var CustomerAddressesDataSchema = v17.looseObject({
|
|
|
7901
8185
|
phoneNumberMain: v17.optional(v17.nullable(v17.string())),
|
|
7902
8186
|
phoneNumberMobile: v17.optional(v17.nullable(v17.string()))
|
|
7903
8187
|
});
|
|
8188
|
+
var CustomerAgingDataSchema = v17.looseObject({
|
|
8189
|
+
customerId: v17.optional(v17.string()),
|
|
8190
|
+
asOf: v17.optional(v17.string()),
|
|
8191
|
+
bucketKeys: v17.optional(v17.string()),
|
|
8192
|
+
invoiceCount: v17.optional(v17.number()),
|
|
8193
|
+
totalBalance: v17.optional(v17.number()),
|
|
8194
|
+
totals: v17.optional(v17.string()),
|
|
8195
|
+
data: v17.optional(v17.string())
|
|
8196
|
+
});
|
|
8197
|
+
var CustomerSalesUsageDataSchema = v17.looseObject({
|
|
8198
|
+
customerId: v17.optional(v17.string()),
|
|
8199
|
+
invoicedFrom: v17.optional(v17.string()),
|
|
8200
|
+
invoicedTo: v17.optional(v17.string()),
|
|
8201
|
+
totalBy: v17.optional(v17.string()),
|
|
8202
|
+
bucketKeys: v17.optional(v17.string()),
|
|
8203
|
+
invoiceCount: v17.optional(v17.number()),
|
|
8204
|
+
linesFolded: v17.optional(v17.number()),
|
|
8205
|
+
itemCount: v17.optional(v17.number()),
|
|
8206
|
+
data: v17.optional(v17.string())
|
|
8207
|
+
});
|
|
7904
8208
|
var CustomerTagsDataSchema = v17.looseObject({
|
|
7905
8209
|
customerTagsUid: v17.optional(v17.number()),
|
|
7906
8210
|
customerId: v17.optional(v17.number()),
|
|
@@ -8071,6 +8375,18 @@ var endpoints10 = [
|
|
|
8071
8375
|
responseSchema: CustomerAddressesDataSchema,
|
|
8072
8376
|
responseType: "object"
|
|
8073
8377
|
},
|
|
8378
|
+
{
|
|
8379
|
+
method: "GET",
|
|
8380
|
+
path: "/customer/{customerId}/aging",
|
|
8381
|
+
chain: "customer.aging",
|
|
8382
|
+
action: "list",
|
|
8383
|
+
aliases: [],
|
|
8384
|
+
pathParams: ["customerId"],
|
|
8385
|
+
queryParams: ["asOf", "limit", "offset", "orderBy", "shipToId"],
|
|
8386
|
+
edgeCache: true,
|
|
8387
|
+
responseSchema: CustomerAgingDataSchema,
|
|
8388
|
+
responseType: "object"
|
|
8389
|
+
},
|
|
8074
8390
|
{
|
|
8075
8391
|
method: "GET",
|
|
8076
8392
|
path: "/customer/{customerId}/contacts",
|
|
@@ -8115,6 +8431,7 @@ var endpoints10 = [
|
|
|
8115
8431
|
aliases: [],
|
|
8116
8432
|
pathParams: ["customerId"],
|
|
8117
8433
|
queryParams: [
|
|
8434
|
+
"contactId",
|
|
8118
8435
|
"createdFrom",
|
|
8119
8436
|
"createdOn",
|
|
8120
8437
|
"createdTo",
|
|
@@ -8148,6 +8465,7 @@ var endpoints10 = [
|
|
|
8148
8465
|
aliases: [],
|
|
8149
8466
|
pathParams: ["customerId"],
|
|
8150
8467
|
queryParams: [
|
|
8468
|
+
"addressId",
|
|
8151
8469
|
"cancelFlag",
|
|
8152
8470
|
"contactId",
|
|
8153
8471
|
"createdFrom",
|
|
@@ -8195,7 +8513,16 @@ var endpoints10 = [
|
|
|
8195
8513
|
action: "list",
|
|
8196
8514
|
aliases: [],
|
|
8197
8515
|
pathParams: ["customerId"],
|
|
8198
|
-
queryParams: [
|
|
8516
|
+
queryParams: [
|
|
8517
|
+
"addressId",
|
|
8518
|
+
"contactId",
|
|
8519
|
+
"createdFrom",
|
|
8520
|
+
"createdOn",
|
|
8521
|
+
"createdTo",
|
|
8522
|
+
"limit",
|
|
8523
|
+
"offset",
|
|
8524
|
+
"orderBy"
|
|
8525
|
+
],
|
|
8199
8526
|
edgeCache: true,
|
|
8200
8527
|
responseSchema: PassthroughDataSchema10,
|
|
8201
8528
|
responseType: "passthrough"
|
|
@@ -8236,6 +8563,28 @@ var endpoints10 = [
|
|
|
8236
8563
|
responseSchema: PassthroughDataSchema10,
|
|
8237
8564
|
responseType: "passthrough"
|
|
8238
8565
|
},
|
|
8566
|
+
{
|
|
8567
|
+
method: "GET",
|
|
8568
|
+
path: "/customer/{customerId}/sales-usage",
|
|
8569
|
+
chain: "customer.salesUsage",
|
|
8570
|
+
action: "list",
|
|
8571
|
+
aliases: [],
|
|
8572
|
+
pathParams: ["customerId"],
|
|
8573
|
+
queryParams: [
|
|
8574
|
+
"invoicedFrom",
|
|
8575
|
+
"invoicedTo",
|
|
8576
|
+
"limit",
|
|
8577
|
+
"offset",
|
|
8578
|
+
"orderBy",
|
|
8579
|
+
"q",
|
|
8580
|
+
"shipToId",
|
|
8581
|
+
"supplierId",
|
|
8582
|
+
"totalBy"
|
|
8583
|
+
],
|
|
8584
|
+
edgeCache: true,
|
|
8585
|
+
responseSchema: CustomerSalesUsageDataSchema,
|
|
8586
|
+
responseType: "object"
|
|
8587
|
+
},
|
|
8239
8588
|
{
|
|
8240
8589
|
method: "GET",
|
|
8241
8590
|
path: "/customer/{customerId}/ship-to",
|
|
@@ -8260,6 +8609,18 @@ var endpoints10 = [
|
|
|
8260
8609
|
responseSchema: PassthroughDataSchema10,
|
|
8261
8610
|
responseType: "passthrough"
|
|
8262
8611
|
},
|
|
8612
|
+
{
|
|
8613
|
+
method: "GET",
|
|
8614
|
+
path: "/customer/{customerId}/ship-to/{shipToId}/freight-codes",
|
|
8615
|
+
chain: "customer.shipTo.freightCodes",
|
|
8616
|
+
action: "list",
|
|
8617
|
+
aliases: [],
|
|
8618
|
+
pathParams: ["customerId", "shipToId"],
|
|
8619
|
+
queryParams: [],
|
|
8620
|
+
edgeCache: true,
|
|
8621
|
+
responseSchema: PassthroughDataSchema10,
|
|
8622
|
+
responseType: "passthrough"
|
|
8623
|
+
},
|
|
8263
8624
|
{
|
|
8264
8625
|
method: "GET",
|
|
8265
8626
|
path: "/customer/{customerId}/tags",
|
|
@@ -8382,8 +8743,8 @@ function createHealthCheckDataResource10(healthCheck) {
|
|
|
8382
8743
|
var CustomersClient = class extends BaseServiceClient {
|
|
8383
8744
|
constructor(http, baseUrl = "https://customers.augur-api.com") {
|
|
8384
8745
|
super("customers", http, baseUrl);
|
|
8385
|
-
const boundExecuteRequest = (config, params, pathParams) => {
|
|
8386
|
-
return this.executeRequest(config, params, pathParams);
|
|
8746
|
+
const boundExecuteRequest = (config, params, pathParams, query) => {
|
|
8747
|
+
return this.executeRequest(config, params, pathParams, query);
|
|
8387
8748
|
};
|
|
8388
8749
|
const proxy = createServiceProxy(
|
|
8389
8750
|
"customers",
|
|
@@ -8746,12 +9107,29 @@ var OrdersClient = class extends BaseServiceClient {
|
|
|
8746
9107
|
import * as v19 from "valibot";
|
|
8747
9108
|
var InvMastExtListParamsSchema = v19.looseObject({
|
|
8748
9109
|
...EdgeCacheParamsSchema.entries,
|
|
8749
|
-
|
|
9110
|
+
invMastUid: v19.optional(v19.pipe(v19.unknown(), v19.transform(Number))),
|
|
8750
9111
|
limit: v19.optional(v19.pipe(v19.unknown(), v19.transform(Number))),
|
|
8751
9112
|
offset: v19.optional(v19.pipe(v19.unknown(), v19.transform(Number))),
|
|
8752
|
-
|
|
9113
|
+
orderBy: v19.optional(v19.string()),
|
|
8753
9114
|
q: v19.optional(v19.string()),
|
|
8754
|
-
|
|
9115
|
+
statusCd: v19.optional(v19.pipe(v19.unknown(), v19.transform(Number)))
|
|
9116
|
+
});
|
|
9117
|
+
var InvMastFilesListParamsSchema = v19.looseObject({
|
|
9118
|
+
...EdgeCacheParamsSchema.entries,
|
|
9119
|
+
invMastUid: v19.optional(v19.pipe(v19.unknown(), v19.transform(Number))),
|
|
9120
|
+
limit: v19.optional(v19.pipe(v19.unknown(), v19.transform(Number))),
|
|
9121
|
+
offset: v19.optional(v19.pipe(v19.unknown(), v19.transform(Number))),
|
|
9122
|
+
orderBy: v19.optional(v19.string()),
|
|
9123
|
+
statusCd: v19.optional(v19.pipe(v19.unknown(), v19.transform(Number)))
|
|
9124
|
+
});
|
|
9125
|
+
var InvMastTextListParamsSchema = v19.looseObject({
|
|
9126
|
+
...EdgeCacheParamsSchema.entries,
|
|
9127
|
+
invMastUid: v19.optional(v19.pipe(v19.unknown(), v19.transform(Number))),
|
|
9128
|
+
limit: v19.optional(v19.pipe(v19.unknown(), v19.transform(Number))),
|
|
9129
|
+
offset: v19.optional(v19.pipe(v19.unknown(), v19.transform(Number))),
|
|
9130
|
+
orderBy: v19.optional(v19.string()),
|
|
9131
|
+
statusCd: v19.optional(v19.pipe(v19.unknown(), v19.transform(Number))),
|
|
9132
|
+
webDisplayTypeUid: v19.optional(v19.pipe(v19.unknown(), v19.transform(Number)))
|
|
8755
9133
|
});
|
|
8756
9134
|
var ItemsSuggestDisplayDescListParamsSchema = v19.looseObject({
|
|
8757
9135
|
...EdgeCacheParamsSchema.entries,
|
|
@@ -8767,9 +9145,58 @@ var PodcastsListParamsSchema = v19.looseObject({
|
|
|
8767
9145
|
...EdgeCacheParamsSchema.entries,
|
|
8768
9146
|
limit: v19.optional(v19.pipe(v19.unknown(), v19.transform(Number))),
|
|
8769
9147
|
offset: v19.optional(v19.pipe(v19.unknown(), v19.transform(Number))),
|
|
8770
|
-
|
|
9148
|
+
orderBy: v19.optional(v19.string()),
|
|
8771
9149
|
q: v19.optional(v19.string()),
|
|
8772
|
-
|
|
9150
|
+
statusCd: v19.optional(v19.pipe(v19.unknown(), v19.transform(Number)))
|
|
9151
|
+
});
|
|
9152
|
+
var InvMastExtDataSchema = v19.looseObject({
|
|
9153
|
+
invMastExtUid: v19.optional(v19.number()),
|
|
9154
|
+
invMastUid: v19.optional(v19.number()),
|
|
9155
|
+
dateCreated: v19.optional(v19.string()),
|
|
9156
|
+
dateLastModified: v19.optional(v19.string()),
|
|
9157
|
+
updateCd: v19.optional(v19.number()),
|
|
9158
|
+
statusCd: v19.optional(v19.number()),
|
|
9159
|
+
processCd: v19.optional(v19.number()),
|
|
9160
|
+
upcOrEan: v19.optional(v19.nullable(v19.string())),
|
|
9161
|
+
upcOrEanId: v19.optional(v19.nullable(v19.string())),
|
|
9162
|
+
upcOrEanPrefix: v19.optional(v19.nullable(v19.string())),
|
|
9163
|
+
upcOrEanItem: v19.optional(v19.nullable(v19.string())),
|
|
9164
|
+
attributeGroupUid: v19.optional(v19.nullable(v19.number())),
|
|
9165
|
+
brandName: v19.optional(v19.nullable(v19.string())),
|
|
9166
|
+
manufacturerName: v19.optional(v19.nullable(v19.string())),
|
|
9167
|
+
partNumber: v19.optional(v19.nullable(v19.string())),
|
|
9168
|
+
metaTitle: v19.optional(v19.nullable(v19.string())),
|
|
9169
|
+
metaDescription: v19.optional(v19.nullable(v19.string())),
|
|
9170
|
+
metaKeywords: v19.optional(v19.nullable(v19.string()))
|
|
9171
|
+
});
|
|
9172
|
+
var InvMastFilesDataSchema = v19.looseObject({
|
|
9173
|
+
invMastFilesUid: v19.optional(v19.number()),
|
|
9174
|
+
invMastUid: v19.optional(v19.number()),
|
|
9175
|
+
fileName: v19.optional(v19.string()),
|
|
9176
|
+
filePath: v19.optional(v19.string()),
|
|
9177
|
+
linkArea: v19.optional(v19.number()),
|
|
9178
|
+
rowStatusFlag: v19.optional(v19.number()),
|
|
9179
|
+
sequenceNo: v19.optional(v19.number()),
|
|
9180
|
+
dateCreated: v19.optional(v19.string()),
|
|
9181
|
+
dateLastModified: v19.optional(v19.string()),
|
|
9182
|
+
updateCd: v19.optional(v19.number()),
|
|
9183
|
+
statusCd: v19.optional(v19.number()),
|
|
9184
|
+
processCd: v19.optional(v19.number()),
|
|
9185
|
+
fileDesc: v19.optional(v19.string())
|
|
9186
|
+
});
|
|
9187
|
+
var InvMastTextDataSchema = v19.looseObject({
|
|
9188
|
+
invMastTextUid: v19.optional(v19.number()),
|
|
9189
|
+
invMastUid: v19.optional(v19.number()),
|
|
9190
|
+
sequenceNo: v19.optional(v19.number()),
|
|
9191
|
+
textValue: v19.optional(v19.string()),
|
|
9192
|
+
displayOnWebFlag: v19.optional(v19.string()),
|
|
9193
|
+
webDisplayTypeUid: v19.optional(v19.number()),
|
|
9194
|
+
textTypeCd: v19.optional(v19.number()),
|
|
9195
|
+
dateCreated: v19.optional(v19.string()),
|
|
9196
|
+
dateLastModified: v19.optional(v19.string()),
|
|
9197
|
+
updateCd: v19.optional(v19.number()),
|
|
9198
|
+
statusCd: v19.optional(v19.number()),
|
|
9199
|
+
processCd: v19.optional(v19.number())
|
|
8773
9200
|
});
|
|
8774
9201
|
var PodcastsDataSchema = v19.looseObject({
|
|
8775
9202
|
podcastsUid: v19.optional(v19.number()),
|
|
@@ -8793,10 +9220,10 @@ var endpoints12 = [
|
|
|
8793
9220
|
action: "list",
|
|
8794
9221
|
aliases: [],
|
|
8795
9222
|
pathParams: [],
|
|
8796
|
-
queryParams: ["
|
|
9223
|
+
queryParams: ["invMastUid", "limit", "offset", "orderBy", "q", "statusCd"],
|
|
8797
9224
|
edgeCache: true,
|
|
8798
|
-
responseSchema:
|
|
8799
|
-
responseType: "
|
|
9225
|
+
responseSchema: InvMastExtDataSchema,
|
|
9226
|
+
responseType: "array"
|
|
8800
9227
|
},
|
|
8801
9228
|
{
|
|
8802
9229
|
method: "POST",
|
|
@@ -8807,8 +9234,8 @@ var endpoints12 = [
|
|
|
8807
9234
|
pathParams: [],
|
|
8808
9235
|
queryParams: [],
|
|
8809
9236
|
edgeCache: false,
|
|
8810
|
-
responseSchema:
|
|
8811
|
-
responseType: "
|
|
9237
|
+
responseSchema: InvMastExtDataSchema,
|
|
9238
|
+
responseType: "object"
|
|
8812
9239
|
},
|
|
8813
9240
|
{
|
|
8814
9241
|
method: "GET",
|
|
@@ -8819,8 +9246,8 @@ var endpoints12 = [
|
|
|
8819
9246
|
pathParams: ["invMastExtUid"],
|
|
8820
9247
|
queryParams: [],
|
|
8821
9248
|
edgeCache: true,
|
|
8822
|
-
responseSchema:
|
|
8823
|
-
responseType: "
|
|
9249
|
+
responseSchema: InvMastExtDataSchema,
|
|
9250
|
+
responseType: "object"
|
|
8824
9251
|
},
|
|
8825
9252
|
{
|
|
8826
9253
|
method: "PUT",
|
|
@@ -8831,8 +9258,8 @@ var endpoints12 = [
|
|
|
8831
9258
|
pathParams: ["invMastExtUid"],
|
|
8832
9259
|
queryParams: [],
|
|
8833
9260
|
edgeCache: false,
|
|
8834
|
-
responseSchema:
|
|
8835
|
-
responseType: "
|
|
9261
|
+
responseSchema: InvMastExtDataSchema,
|
|
9262
|
+
responseType: "object"
|
|
8836
9263
|
},
|
|
8837
9264
|
{
|
|
8838
9265
|
method: "DELETE",
|
|
@@ -8846,6 +9273,126 @@ var endpoints12 = [
|
|
|
8846
9273
|
responseSchema: PassthroughDataSchema12,
|
|
8847
9274
|
responseType: "passthrough"
|
|
8848
9275
|
},
|
|
9276
|
+
{
|
|
9277
|
+
method: "GET",
|
|
9278
|
+
path: "/inv-mast-files",
|
|
9279
|
+
chain: "invMastFiles",
|
|
9280
|
+
action: "list",
|
|
9281
|
+
aliases: [],
|
|
9282
|
+
pathParams: [],
|
|
9283
|
+
queryParams: ["invMastUid", "limit", "offset", "orderBy", "statusCd"],
|
|
9284
|
+
edgeCache: true,
|
|
9285
|
+
responseSchema: InvMastFilesDataSchema,
|
|
9286
|
+
responseType: "array"
|
|
9287
|
+
},
|
|
9288
|
+
{
|
|
9289
|
+
method: "POST",
|
|
9290
|
+
path: "/inv-mast-files",
|
|
9291
|
+
chain: "invMastFiles",
|
|
9292
|
+
action: "create",
|
|
9293
|
+
aliases: [],
|
|
9294
|
+
pathParams: [],
|
|
9295
|
+
queryParams: [],
|
|
9296
|
+
edgeCache: false,
|
|
9297
|
+
responseSchema: InvMastFilesDataSchema,
|
|
9298
|
+
responseType: "object"
|
|
9299
|
+
},
|
|
9300
|
+
{
|
|
9301
|
+
method: "GET",
|
|
9302
|
+
path: "/inv-mast-files/{invMastFilesUid}",
|
|
9303
|
+
chain: "invMastFiles",
|
|
9304
|
+
action: "get",
|
|
9305
|
+
aliases: [],
|
|
9306
|
+
pathParams: ["invMastFilesUid"],
|
|
9307
|
+
queryParams: [],
|
|
9308
|
+
edgeCache: true,
|
|
9309
|
+
responseSchema: InvMastFilesDataSchema,
|
|
9310
|
+
responseType: "object"
|
|
9311
|
+
},
|
|
9312
|
+
{
|
|
9313
|
+
method: "PUT",
|
|
9314
|
+
path: "/inv-mast-files/{invMastFilesUid}",
|
|
9315
|
+
chain: "invMastFiles",
|
|
9316
|
+
action: "update",
|
|
9317
|
+
aliases: [],
|
|
9318
|
+
pathParams: ["invMastFilesUid"],
|
|
9319
|
+
queryParams: [],
|
|
9320
|
+
edgeCache: false,
|
|
9321
|
+
responseSchema: InvMastFilesDataSchema,
|
|
9322
|
+
responseType: "object"
|
|
9323
|
+
},
|
|
9324
|
+
{
|
|
9325
|
+
method: "DELETE",
|
|
9326
|
+
path: "/inv-mast-files/{invMastFilesUid}",
|
|
9327
|
+
chain: "invMastFiles",
|
|
9328
|
+
action: "delete",
|
|
9329
|
+
aliases: [],
|
|
9330
|
+
pathParams: ["invMastFilesUid"],
|
|
9331
|
+
queryParams: [],
|
|
9332
|
+
edgeCache: false,
|
|
9333
|
+
responseSchema: PassthroughDataSchema12,
|
|
9334
|
+
responseType: "passthrough"
|
|
9335
|
+
},
|
|
9336
|
+
{
|
|
9337
|
+
method: "GET",
|
|
9338
|
+
path: "/inv-mast-text",
|
|
9339
|
+
chain: "invMastText",
|
|
9340
|
+
action: "list",
|
|
9341
|
+
aliases: [],
|
|
9342
|
+
pathParams: [],
|
|
9343
|
+
queryParams: ["invMastUid", "limit", "offset", "orderBy", "statusCd", "webDisplayTypeUid"],
|
|
9344
|
+
edgeCache: true,
|
|
9345
|
+
responseSchema: InvMastTextDataSchema,
|
|
9346
|
+
responseType: "array"
|
|
9347
|
+
},
|
|
9348
|
+
{
|
|
9349
|
+
method: "POST",
|
|
9350
|
+
path: "/inv-mast-text",
|
|
9351
|
+
chain: "invMastText",
|
|
9352
|
+
action: "create",
|
|
9353
|
+
aliases: [],
|
|
9354
|
+
pathParams: [],
|
|
9355
|
+
queryParams: [],
|
|
9356
|
+
edgeCache: false,
|
|
9357
|
+
responseSchema: InvMastTextDataSchema,
|
|
9358
|
+
responseType: "object"
|
|
9359
|
+
},
|
|
9360
|
+
{
|
|
9361
|
+
method: "GET",
|
|
9362
|
+
path: "/inv-mast-text/{invMastTextUid}",
|
|
9363
|
+
chain: "invMastText",
|
|
9364
|
+
action: "get",
|
|
9365
|
+
aliases: [],
|
|
9366
|
+
pathParams: ["invMastTextUid"],
|
|
9367
|
+
queryParams: [],
|
|
9368
|
+
edgeCache: true,
|
|
9369
|
+
responseSchema: InvMastTextDataSchema,
|
|
9370
|
+
responseType: "object"
|
|
9371
|
+
},
|
|
9372
|
+
{
|
|
9373
|
+
method: "PUT",
|
|
9374
|
+
path: "/inv-mast-text/{invMastTextUid}",
|
|
9375
|
+
chain: "invMastText",
|
|
9376
|
+
action: "update",
|
|
9377
|
+
aliases: [],
|
|
9378
|
+
pathParams: ["invMastTextUid"],
|
|
9379
|
+
queryParams: [],
|
|
9380
|
+
edgeCache: false,
|
|
9381
|
+
responseSchema: InvMastTextDataSchema,
|
|
9382
|
+
responseType: "object"
|
|
9383
|
+
},
|
|
9384
|
+
{
|
|
9385
|
+
method: "DELETE",
|
|
9386
|
+
path: "/inv-mast-text/{invMastTextUid}",
|
|
9387
|
+
chain: "invMastText",
|
|
9388
|
+
action: "delete",
|
|
9389
|
+
aliases: [],
|
|
9390
|
+
pathParams: ["invMastTextUid"],
|
|
9391
|
+
queryParams: [],
|
|
9392
|
+
edgeCache: false,
|
|
9393
|
+
responseSchema: PassthroughDataSchema12,
|
|
9394
|
+
responseType: "passthrough"
|
|
9395
|
+
},
|
|
8849
9396
|
{
|
|
8850
9397
|
method: "GET",
|
|
8851
9398
|
path: "/items/{invMastUid}/suggest-display-desc",
|
|
@@ -8877,7 +9424,7 @@ var endpoints12 = [
|
|
|
8877
9424
|
action: "list",
|
|
8878
9425
|
aliases: [],
|
|
8879
9426
|
pathParams: [],
|
|
8880
|
-
queryParams: ["limit", "offset", "
|
|
9427
|
+
queryParams: ["limit", "offset", "orderBy", "q", "statusCd"],
|
|
8881
9428
|
edgeCache: true,
|
|
8882
9429
|
responseSchema: PodcastsDataSchema,
|
|
8883
9430
|
responseType: "array"
|
|
@@ -8977,20 +9524,27 @@ function createHealthCheckDataResource12(healthCheck) {
|
|
|
8977
9524
|
var P21PimClient = class extends BaseServiceClient {
|
|
8978
9525
|
constructor(http, baseUrl = "https://p21-pim.augur-api.com") {
|
|
8979
9526
|
super("p21-pim", http, baseUrl);
|
|
8980
|
-
const boundExecuteRequest = (config, params, pathParams) => {
|
|
8981
|
-
return this.executeRequest(config, params, pathParams);
|
|
9527
|
+
const boundExecuteRequest = (config, params, pathParams, query) => {
|
|
9528
|
+
return this.executeRequest(config, params, pathParams, query);
|
|
8982
9529
|
};
|
|
8983
9530
|
const proxy = createServiceProxy("p21-pim", boundExecuteRequest, endpoints12);
|
|
8984
9531
|
const dataProxy = createDataProxy(proxy);
|
|
8985
9532
|
this.invMastExt = proxy.invMastExt;
|
|
9533
|
+
this.invMastFiles = proxy.invMastFiles;
|
|
9534
|
+
this.invMastText = proxy.invMastText;
|
|
8986
9535
|
this.items = proxy.items;
|
|
8987
9536
|
this.podcasts = proxy.podcasts;
|
|
8988
9537
|
this.invMastExtData = dataProxy.invMastExt;
|
|
9538
|
+
this.invMastFilesData = dataProxy.invMastFiles;
|
|
9539
|
+
this.invMastTextData = dataProxy.invMastText;
|
|
8989
9540
|
this.itemsData = dataProxy.items;
|
|
8990
9541
|
this.podcastsData = dataProxy.podcasts;
|
|
8991
9542
|
this.healthCheck = createHealthCheckResource12(boundExecuteRequest);
|
|
8992
9543
|
this.healthCheckData = createHealthCheckDataResource12(this.healthCheck);
|
|
8993
9544
|
}
|
|
9545
|
+
getServiceDescription() {
|
|
9546
|
+
return "Product information management for rich content, media assets, and extended item descriptions";
|
|
9547
|
+
}
|
|
8994
9548
|
};
|
|
8995
9549
|
|
|
8996
9550
|
// src/services/payments/generated/schemas.ts
|
|
@@ -9010,6 +9564,62 @@ var MonerisPreAuthCompleteListParamsSchema = v20.looseObject({
|
|
|
9010
9564
|
testMode: v20.optional(v20.boolean()),
|
|
9011
9565
|
txnNumber: v20.string()
|
|
9012
9566
|
});
|
|
9567
|
+
var PaypalAuthorizationCaptureCreateParamsSchema = v20.looseObject({
|
|
9568
|
+
amount: v20.optional(v20.pipe(v20.unknown(), v20.transform(Number))),
|
|
9569
|
+
authorizationId: v20.string(),
|
|
9570
|
+
finalCapture: v20.optional(v20.boolean()),
|
|
9571
|
+
invoiceId: v20.optional(v20.string()),
|
|
9572
|
+
testMode: v20.optional(v20.boolean())
|
|
9573
|
+
});
|
|
9574
|
+
var PaypalAuthorizationVoidCreateParamsSchema = v20.looseObject({
|
|
9575
|
+
authorizationId: v20.string(),
|
|
9576
|
+
testMode: v20.optional(v20.boolean())
|
|
9577
|
+
});
|
|
9578
|
+
var PaypalCaptureRefundCreateParamsSchema = v20.looseObject({
|
|
9579
|
+
amount: v20.optional(v20.pipe(v20.unknown(), v20.transform(Number))),
|
|
9580
|
+
captureId: v20.string(),
|
|
9581
|
+
invoiceId: v20.optional(v20.string()),
|
|
9582
|
+
noteToPayer: v20.optional(v20.string()),
|
|
9583
|
+
testMode: v20.optional(v20.boolean())
|
|
9584
|
+
});
|
|
9585
|
+
var PaypalOrderCreateParamsSchema = v20.looseObject({
|
|
9586
|
+
amount: v20.pipe(v20.unknown(), v20.transform(Number)),
|
|
9587
|
+
cancelUrl: v20.optional(v20.string()),
|
|
9588
|
+
currencyCode: v20.optional(v20.string()),
|
|
9589
|
+
intent: v20.string(),
|
|
9590
|
+
invoiceId: v20.optional(v20.string()),
|
|
9591
|
+
returnUrl: v20.optional(v20.string()),
|
|
9592
|
+
testMode: v20.optional(v20.boolean())
|
|
9593
|
+
});
|
|
9594
|
+
var PaypalOrderReturnListParamsSchema = v20.looseObject({
|
|
9595
|
+
...EdgeCacheParamsSchema.entries,
|
|
9596
|
+
payerId: v20.optional(v20.string()),
|
|
9597
|
+
siteId: v20.string(),
|
|
9598
|
+
testMode: v20.optional(v20.boolean()),
|
|
9599
|
+
token: v20.string()
|
|
9600
|
+
});
|
|
9601
|
+
var PaypalOrderAuthorizeCreateParamsSchema = v20.looseObject({
|
|
9602
|
+
orderId: v20.string(),
|
|
9603
|
+
testMode: v20.optional(v20.boolean())
|
|
9604
|
+
});
|
|
9605
|
+
var PaypalOrderCaptureCreateParamsSchema = v20.looseObject({
|
|
9606
|
+
orderId: v20.string(),
|
|
9607
|
+
testMode: v20.optional(v20.boolean())
|
|
9608
|
+
});
|
|
9609
|
+
var PaypalOrderDetailsListParamsSchema = v20.looseObject({
|
|
9610
|
+
...EdgeCacheParamsSchema.entries,
|
|
9611
|
+
orderId: v20.string(),
|
|
9612
|
+
testMode: v20.optional(v20.boolean())
|
|
9613
|
+
});
|
|
9614
|
+
var PaypalRefundListParamsSchema = v20.looseObject({
|
|
9615
|
+
...EdgeCacheParamsSchema.entries,
|
|
9616
|
+
refundId: v20.string(),
|
|
9617
|
+
testMode: v20.optional(v20.boolean())
|
|
9618
|
+
});
|
|
9619
|
+
var PaypalWebhookCreateParamsSchema = v20.looseObject({
|
|
9620
|
+
siteId: v20.string(),
|
|
9621
|
+
testMode: v20.optional(v20.boolean())
|
|
9622
|
+
});
|
|
9013
9623
|
var PaytraceAuthorizationCreateParamsSchema = v20.looseObject({
|
|
9014
9624
|
amount: v20.pipe(v20.unknown(), v20.transform(Number)),
|
|
9015
9625
|
billingAddress: v20.optional(v20.string()),
|
|
@@ -9071,6 +9681,10 @@ var UnifiedSurchargeListParamsSchema = v20.looseObject({
|
|
|
9071
9681
|
paymentAccountId: v20.string(),
|
|
9072
9682
|
toState: v20.string()
|
|
9073
9683
|
});
|
|
9684
|
+
var UnifiedTransactionResponseListParamsSchema = v20.looseObject({
|
|
9685
|
+
...EdgeCacheParamsSchema.entries,
|
|
9686
|
+
siteId: v20.string()
|
|
9687
|
+
});
|
|
9074
9688
|
var UnifiedTransactionSetupListParamsSchema = v20.looseObject({
|
|
9075
9689
|
...EdgeCacheParamsSchema.entries,
|
|
9076
9690
|
customerId: v20.string(),
|
|
@@ -9088,40 +9702,168 @@ var PassthroughDataSchema13 = v20.record(v20.string(), v20.unknown());
|
|
|
9088
9702
|
var endpoints13 = [
|
|
9089
9703
|
{
|
|
9090
9704
|
method: "POST",
|
|
9091
|
-
path: "/element/payment",
|
|
9092
|
-
chain: "element.payment",
|
|
9705
|
+
path: "/element/payment",
|
|
9706
|
+
chain: "element.payment",
|
|
9707
|
+
action: "create",
|
|
9708
|
+
aliases: [],
|
|
9709
|
+
pathParams: [],
|
|
9710
|
+
queryParams: [],
|
|
9711
|
+
edgeCache: false,
|
|
9712
|
+
responseSchema: PassthroughDataSchema13,
|
|
9713
|
+
responseType: "passthrough"
|
|
9714
|
+
},
|
|
9715
|
+
{
|
|
9716
|
+
method: "GET",
|
|
9717
|
+
path: "/moneris/pre-auth",
|
|
9718
|
+
chain: "moneris.preAuth",
|
|
9719
|
+
action: "list",
|
|
9720
|
+
aliases: [],
|
|
9721
|
+
pathParams: [],
|
|
9722
|
+
queryParams: ["amount", "ccNumber", "expDate", "orderId", "testMode"],
|
|
9723
|
+
edgeCache: true,
|
|
9724
|
+
responseSchema: PassthroughDataSchema13,
|
|
9725
|
+
responseType: "passthrough"
|
|
9726
|
+
},
|
|
9727
|
+
{
|
|
9728
|
+
method: "GET",
|
|
9729
|
+
path: "/moneris/pre-auth-complete",
|
|
9730
|
+
chain: "moneris.preAuthComplete",
|
|
9731
|
+
action: "list",
|
|
9732
|
+
aliases: [],
|
|
9733
|
+
pathParams: [],
|
|
9734
|
+
queryParams: ["amount", "orderId", "testMode", "txnNumber"],
|
|
9735
|
+
edgeCache: true,
|
|
9736
|
+
responseSchema: PassthroughDataSchema13,
|
|
9737
|
+
responseType: "passthrough"
|
|
9738
|
+
},
|
|
9739
|
+
{
|
|
9740
|
+
method: "POST",
|
|
9741
|
+
path: "/paypal/authorization/capture",
|
|
9742
|
+
chain: "paypal.authorization.capture",
|
|
9743
|
+
action: "create",
|
|
9744
|
+
aliases: [],
|
|
9745
|
+
pathParams: [],
|
|
9746
|
+
queryParams: ["amount", "authorizationId", "finalCapture", "invoiceId", "testMode"],
|
|
9747
|
+
edgeCache: false,
|
|
9748
|
+
responseSchema: PassthroughDataSchema13,
|
|
9749
|
+
responseType: "passthrough"
|
|
9750
|
+
},
|
|
9751
|
+
{
|
|
9752
|
+
method: "POST",
|
|
9753
|
+
path: "/paypal/authorization/void",
|
|
9754
|
+
chain: "paypal.authorization.void",
|
|
9755
|
+
action: "create",
|
|
9756
|
+
aliases: [],
|
|
9757
|
+
pathParams: [],
|
|
9758
|
+
queryParams: ["authorizationId", "testMode"],
|
|
9759
|
+
edgeCache: false,
|
|
9760
|
+
responseSchema: PassthroughDataSchema13,
|
|
9761
|
+
responseType: "passthrough"
|
|
9762
|
+
},
|
|
9763
|
+
{
|
|
9764
|
+
method: "POST",
|
|
9765
|
+
path: "/paypal/capture/refund",
|
|
9766
|
+
chain: "paypal.capture.refund",
|
|
9767
|
+
action: "create",
|
|
9768
|
+
aliases: [],
|
|
9769
|
+
pathParams: [],
|
|
9770
|
+
queryParams: ["amount", "captureId", "invoiceId", "noteToPayer", "testMode"],
|
|
9771
|
+
edgeCache: false,
|
|
9772
|
+
responseSchema: PassthroughDataSchema13,
|
|
9773
|
+
responseType: "passthrough"
|
|
9774
|
+
},
|
|
9775
|
+
{
|
|
9776
|
+
method: "POST",
|
|
9777
|
+
path: "/paypal/order",
|
|
9778
|
+
chain: "paypal.order",
|
|
9779
|
+
action: "create",
|
|
9780
|
+
aliases: [],
|
|
9781
|
+
pathParams: [],
|
|
9782
|
+
queryParams: [
|
|
9783
|
+
"amount",
|
|
9784
|
+
"cancelUrl",
|
|
9785
|
+
"currencyCode",
|
|
9786
|
+
"intent",
|
|
9787
|
+
"invoiceId",
|
|
9788
|
+
"returnUrl",
|
|
9789
|
+
"testMode"
|
|
9790
|
+
],
|
|
9791
|
+
edgeCache: false,
|
|
9792
|
+
responseSchema: PassthroughDataSchema13,
|
|
9793
|
+
responseType: "passthrough"
|
|
9794
|
+
},
|
|
9795
|
+
{
|
|
9796
|
+
method: "GET",
|
|
9797
|
+
path: "/paypal/order-return",
|
|
9798
|
+
chain: "paypal.orderReturn",
|
|
9799
|
+
action: "list",
|
|
9800
|
+
aliases: [],
|
|
9801
|
+
pathParams: [],
|
|
9802
|
+
queryParams: ["payerId", "siteId", "testMode", "token"],
|
|
9803
|
+
edgeCache: true,
|
|
9804
|
+
responseSchema: PassthroughDataSchema13,
|
|
9805
|
+
responseType: "passthrough"
|
|
9806
|
+
},
|
|
9807
|
+
{
|
|
9808
|
+
method: "POST",
|
|
9809
|
+
path: "/paypal/order/authorize",
|
|
9810
|
+
chain: "paypal.order.authorize",
|
|
9093
9811
|
action: "create",
|
|
9094
9812
|
aliases: [],
|
|
9095
9813
|
pathParams: [],
|
|
9096
|
-
queryParams: [],
|
|
9814
|
+
queryParams: ["orderId", "testMode"],
|
|
9815
|
+
edgeCache: false,
|
|
9816
|
+
responseSchema: PassthroughDataSchema13,
|
|
9817
|
+
responseType: "passthrough"
|
|
9818
|
+
},
|
|
9819
|
+
{
|
|
9820
|
+
method: "POST",
|
|
9821
|
+
path: "/paypal/order/capture",
|
|
9822
|
+
chain: "paypal.order.capture",
|
|
9823
|
+
action: "create",
|
|
9824
|
+
aliases: [],
|
|
9825
|
+
pathParams: [],
|
|
9826
|
+
queryParams: ["orderId", "testMode"],
|
|
9097
9827
|
edgeCache: false,
|
|
9098
9828
|
responseSchema: PassthroughDataSchema13,
|
|
9099
9829
|
responseType: "passthrough"
|
|
9100
9830
|
},
|
|
9101
9831
|
{
|
|
9102
9832
|
method: "GET",
|
|
9103
|
-
path: "/
|
|
9104
|
-
chain: "
|
|
9833
|
+
path: "/paypal/order/details",
|
|
9834
|
+
chain: "paypal.order.details",
|
|
9105
9835
|
action: "list",
|
|
9106
9836
|
aliases: [],
|
|
9107
9837
|
pathParams: [],
|
|
9108
|
-
queryParams: ["
|
|
9838
|
+
queryParams: ["orderId", "testMode"],
|
|
9109
9839
|
edgeCache: true,
|
|
9110
9840
|
responseSchema: PassthroughDataSchema13,
|
|
9111
9841
|
responseType: "passthrough"
|
|
9112
9842
|
},
|
|
9113
9843
|
{
|
|
9114
9844
|
method: "GET",
|
|
9115
|
-
path: "/
|
|
9116
|
-
chain: "
|
|
9845
|
+
path: "/paypal/refund",
|
|
9846
|
+
chain: "paypal.refund",
|
|
9117
9847
|
action: "list",
|
|
9118
9848
|
aliases: [],
|
|
9119
9849
|
pathParams: [],
|
|
9120
|
-
queryParams: ["
|
|
9850
|
+
queryParams: ["refundId", "testMode"],
|
|
9121
9851
|
edgeCache: true,
|
|
9122
9852
|
responseSchema: PassthroughDataSchema13,
|
|
9123
9853
|
responseType: "passthrough"
|
|
9124
9854
|
},
|
|
9855
|
+
{
|
|
9856
|
+
method: "POST",
|
|
9857
|
+
path: "/paypal/webhook",
|
|
9858
|
+
chain: "paypal.webhook",
|
|
9859
|
+
action: "create",
|
|
9860
|
+
aliases: [],
|
|
9861
|
+
pathParams: [],
|
|
9862
|
+
queryParams: ["siteId", "testMode"],
|
|
9863
|
+
edgeCache: false,
|
|
9864
|
+
responseSchema: PassthroughDataSchema13,
|
|
9865
|
+
responseType: "passthrough"
|
|
9866
|
+
},
|
|
9125
9867
|
{
|
|
9126
9868
|
method: "POST",
|
|
9127
9869
|
path: "/paytrace/authorization",
|
|
@@ -9238,6 +9980,18 @@ var endpoints13 = [
|
|
|
9238
9980
|
responseSchema: PassthroughDataSchema13,
|
|
9239
9981
|
responseType: "passthrough"
|
|
9240
9982
|
},
|
|
9983
|
+
{
|
|
9984
|
+
method: "GET",
|
|
9985
|
+
path: "/unified/transaction-response",
|
|
9986
|
+
chain: "unified.transactionResponse",
|
|
9987
|
+
action: "list",
|
|
9988
|
+
aliases: [],
|
|
9989
|
+
pathParams: [],
|
|
9990
|
+
queryParams: ["siteId"],
|
|
9991
|
+
edgeCache: true,
|
|
9992
|
+
responseSchema: PassthroughDataSchema13,
|
|
9993
|
+
responseType: "passthrough"
|
|
9994
|
+
},
|
|
9241
9995
|
{
|
|
9242
9996
|
method: "GET",
|
|
9243
9997
|
path: "/unified/transaction-setup",
|
|
@@ -9331,8 +10085,8 @@ function createPingDataResource7(ping) {
|
|
|
9331
10085
|
var PaymentsClient = class extends BaseServiceClient {
|
|
9332
10086
|
constructor(http, baseUrl = "https://payments.augur-api.com") {
|
|
9333
10087
|
super("payments", http, baseUrl);
|
|
9334
|
-
const boundExecuteRequest = (config, params, pathParams) => {
|
|
9335
|
-
return this.executeRequest(config, params, pathParams);
|
|
10088
|
+
const boundExecuteRequest = (config, params, pathParams, query) => {
|
|
10089
|
+
return this.executeRequest(config, params, pathParams, query);
|
|
9336
10090
|
};
|
|
9337
10091
|
const proxy = createServiceProxy(
|
|
9338
10092
|
"payments",
|
|
@@ -9342,10 +10096,12 @@ var PaymentsClient = class extends BaseServiceClient {
|
|
|
9342
10096
|
const dataProxy = createDataProxy(proxy);
|
|
9343
10097
|
this.element = proxy.element;
|
|
9344
10098
|
this.moneris = proxy.moneris;
|
|
10099
|
+
this.paypal = proxy.paypal;
|
|
9345
10100
|
this.paytrace = proxy.paytrace;
|
|
9346
10101
|
this.unified = proxy.unified;
|
|
9347
10102
|
this.elementData = dataProxy.element;
|
|
9348
10103
|
this.monerisData = dataProxy.moneris;
|
|
10104
|
+
this.paypalData = dataProxy.paypal;
|
|
9349
10105
|
this.paytraceData = dataProxy.paytrace;
|
|
9350
10106
|
this.unifiedData = dataProxy.unified;
|
|
9351
10107
|
this.healthCheck = createHealthCheckResource13(boundExecuteRequest);
|
|
@@ -9354,7 +10110,7 @@ var PaymentsClient = class extends BaseServiceClient {
|
|
|
9354
10110
|
this.pingData = createPingDataResource7(this.ping);
|
|
9355
10111
|
}
|
|
9356
10112
|
getServiceDescription() {
|
|
9357
|
-
return "Unified payment processing gateway supporting Moneris, PayTrace, and Element card transactions";
|
|
10113
|
+
return "Unified payment processing gateway supporting Moneris, PayTrace, and Element card transactions and PayPal orders";
|
|
9358
10114
|
}
|
|
9359
10115
|
};
|
|
9360
10116
|
|
|
@@ -9385,6 +10141,14 @@ var MicroservicesDataSchema = v21.looseObject({
|
|
|
9385
10141
|
dateCreated: v21.optional(v21.string()),
|
|
9386
10142
|
dateLastModified: v21.optional(v21.string())
|
|
9387
10143
|
});
|
|
10144
|
+
var OauthRefreshDataSchema = v21.looseObject({
|
|
10145
|
+
grantId: v21.optional(v21.string()),
|
|
10146
|
+
usersId: v21.optional(v21.number()),
|
|
10147
|
+
accessToken: v21.optional(v21.string()),
|
|
10148
|
+
refreshToken: v21.optional(v21.string()),
|
|
10149
|
+
accessTokenExpiresAt: v21.optional(v21.string()),
|
|
10150
|
+
refreshTokenExpiresAt: v21.optional(v21.string())
|
|
10151
|
+
});
|
|
9388
10152
|
var RubricsDataSchema = v21.looseObject({
|
|
9389
10153
|
rubricsUid: v21.optional(v21.number()),
|
|
9390
10154
|
title: v21.optional(v21.nullable(v21.string())),
|
|
@@ -9396,6 +10160,20 @@ var RubricsDataSchema = v21.looseObject({
|
|
|
9396
10160
|
dateCreated: v21.optional(v21.string()),
|
|
9397
10161
|
dateLastModified: v21.optional(v21.string())
|
|
9398
10162
|
});
|
|
10163
|
+
var SitesVerifyUserDataSchema = v21.looseObject({
|
|
10164
|
+
grantId: v21.optional(v21.string()),
|
|
10165
|
+
usersId: v21.optional(v21.number()),
|
|
10166
|
+
username: v21.optional(v21.string()),
|
|
10167
|
+
email: v21.optional(v21.string()),
|
|
10168
|
+
name: v21.optional(v21.string()),
|
|
10169
|
+
isAdmin: v21.optional(v21.boolean()),
|
|
10170
|
+
homeSiteId: v21.optional(v21.string()),
|
|
10171
|
+
sites: v21.optional(v21.string()),
|
|
10172
|
+
accessToken: v21.optional(v21.string()),
|
|
10173
|
+
refreshToken: v21.optional(v21.string()),
|
|
10174
|
+
accessTokenExpiresAt: v21.optional(v21.string()),
|
|
10175
|
+
refreshTokenExpiresAt: v21.optional(v21.string())
|
|
10176
|
+
});
|
|
9399
10177
|
var WorkflowsDataSchema = v21.looseObject({
|
|
9400
10178
|
workflowsUid: v21.optional(v21.number()),
|
|
9401
10179
|
workflowsId: v21.optional(v21.string()),
|
|
@@ -9509,6 +10287,30 @@ var endpoints14 = [
|
|
|
9509
10287
|
responseSchema: PassthroughDataSchema14,
|
|
9510
10288
|
responseType: "passthrough"
|
|
9511
10289
|
},
|
|
10290
|
+
{
|
|
10291
|
+
method: "DELETE",
|
|
10292
|
+
path: "/oauth/grants/{grantId}",
|
|
10293
|
+
chain: "oauth.grants",
|
|
10294
|
+
action: "delete",
|
|
10295
|
+
aliases: [],
|
|
10296
|
+
pathParams: ["grantId"],
|
|
10297
|
+
queryParams: [],
|
|
10298
|
+
edgeCache: false,
|
|
10299
|
+
responseSchema: PassthroughDataSchema14,
|
|
10300
|
+
responseType: "passthrough"
|
|
10301
|
+
},
|
|
10302
|
+
{
|
|
10303
|
+
method: "POST",
|
|
10304
|
+
path: "/oauth/refresh",
|
|
10305
|
+
chain: "oauth.refresh",
|
|
10306
|
+
action: "create",
|
|
10307
|
+
aliases: [],
|
|
10308
|
+
pathParams: [],
|
|
10309
|
+
queryParams: [],
|
|
10310
|
+
edgeCache: false,
|
|
10311
|
+
responseSchema: OauthRefreshDataSchema,
|
|
10312
|
+
responseType: "object"
|
|
10313
|
+
},
|
|
9512
10314
|
{
|
|
9513
10315
|
method: "GET",
|
|
9514
10316
|
path: "/ollama/tags",
|
|
@@ -9593,6 +10395,18 @@ var endpoints14 = [
|
|
|
9593
10395
|
responseSchema: PassthroughDataSchema14,
|
|
9594
10396
|
responseType: "passthrough"
|
|
9595
10397
|
},
|
|
10398
|
+
{
|
|
10399
|
+
method: "POST",
|
|
10400
|
+
path: "/sites/verify-user",
|
|
10401
|
+
chain: "sites.verifyUser",
|
|
10402
|
+
action: "create",
|
|
10403
|
+
aliases: [],
|
|
10404
|
+
pathParams: [],
|
|
10405
|
+
queryParams: [],
|
|
10406
|
+
edgeCache: false,
|
|
10407
|
+
responseSchema: SitesVerifyUserDataSchema,
|
|
10408
|
+
responseType: "object"
|
|
10409
|
+
},
|
|
9596
10410
|
{
|
|
9597
10411
|
method: "GET",
|
|
9598
10412
|
path: "/workflows",
|
|
@@ -9707,8 +10521,8 @@ function createHealthCheckDataResource14(healthCheck) {
|
|
|
9707
10521
|
var AgrInfoClient = class extends BaseServiceClient {
|
|
9708
10522
|
constructor(http, baseUrl = "https://agr-info.augur-api.com") {
|
|
9709
10523
|
super("agr-info", http, baseUrl);
|
|
9710
|
-
const boundExecuteRequest = (config, params, pathParams) => {
|
|
9711
|
-
return this.executeRequest(config, params, pathParams);
|
|
10524
|
+
const boundExecuteRequest = (config, params, pathParams, query) => {
|
|
10525
|
+
return this.executeRequest(config, params, pathParams, query);
|
|
9712
10526
|
};
|
|
9713
10527
|
const proxy = createServiceProxy("agr-info", boundExecuteRequest, endpoints14);
|
|
9714
10528
|
const dataProxy = createDataProxy(proxy);
|
|
@@ -9716,6 +10530,7 @@ var AgrInfoClient = class extends BaseServiceClient {
|
|
|
9716
10530
|
this.context = proxy.context;
|
|
9717
10531
|
this.joomla = proxy.joomla;
|
|
9718
10532
|
this.microservices = proxy.microservices;
|
|
10533
|
+
this.oauth = proxy.oauth;
|
|
9719
10534
|
this.ollama = proxy.ollama;
|
|
9720
10535
|
this.rubrics = proxy.rubrics;
|
|
9721
10536
|
this.sites = proxy.sites;
|
|
@@ -9724,6 +10539,7 @@ var AgrInfoClient = class extends BaseServiceClient {
|
|
|
9724
10539
|
this.contextData = dataProxy.context;
|
|
9725
10540
|
this.joomlaData = dataProxy.joomla;
|
|
9726
10541
|
this.microservicesData = dataProxy.microservices;
|
|
10542
|
+
this.oauthData = dataProxy.oauth;
|
|
9727
10543
|
this.ollamaData = dataProxy.ollama;
|
|
9728
10544
|
this.rubricsData = dataProxy.rubrics;
|
|
9729
10545
|
this.sitesData = dataProxy.sites;
|
|
@@ -9783,7 +10599,7 @@ var RolesBundlesListParamsSchema = v22.looseObject({
|
|
|
9783
10599
|
orderBy: v22.optional(v22.string()),
|
|
9784
10600
|
statusCd: v22.optional(v22.pipe(v22.unknown(), v22.transform(Number)))
|
|
9785
10601
|
});
|
|
9786
|
-
var
|
|
10602
|
+
var UsersListParamsSchema2 = v22.looseObject({
|
|
9787
10603
|
...EdgeCacheParamsSchema.entries,
|
|
9788
10604
|
email: v22.optional(v22.string()),
|
|
9789
10605
|
limit: v22.optional(v22.pipe(v22.unknown(), v22.transform(Number))),
|
|
@@ -10371,8 +11187,8 @@ var endpoints15 = [
|
|
|
10371
11187
|
var AgrIntClient = class extends BaseServiceClient {
|
|
10372
11188
|
constructor(http, baseUrl = "https://agr-int.augur-api.com") {
|
|
10373
11189
|
super("agr-int", http, baseUrl);
|
|
10374
|
-
const boundExecuteRequest = (config, params, pathParams) => {
|
|
10375
|
-
return this.executeRequest(config, params, pathParams);
|
|
11190
|
+
const boundExecuteRequest = (config, params, pathParams, query) => {
|
|
11191
|
+
return this.executeRequest(config, params, pathParams, query);
|
|
10376
11192
|
};
|
|
10377
11193
|
const proxy = createServiceProxy("agr-int", boundExecuteRequest, endpoints15);
|
|
10378
11194
|
const dataProxy = createDataProxy(proxy);
|
|
@@ -10548,8 +11364,8 @@ function createPingDataResource8(ping) {
|
|
|
10548
11364
|
var AgrWorkClient = class extends BaseServiceClient {
|
|
10549
11365
|
constructor(http, baseUrl = "https://agr-work.augur-api.com") {
|
|
10550
11366
|
super("agr-work", http, baseUrl);
|
|
10551
|
-
const boundExecuteRequest = (config, params, pathParams) => {
|
|
10552
|
-
return this.executeRequest(config, params, pathParams);
|
|
11367
|
+
const boundExecuteRequest = (config, params, pathParams, query) => {
|
|
11368
|
+
return this.executeRequest(config, params, pathParams, query);
|
|
10553
11369
|
};
|
|
10554
11370
|
this.healthCheck = createHealthCheckResource15(boundExecuteRequest);
|
|
10555
11371
|
this.ping = createPingResource9(boundExecuteRequest);
|
|
@@ -10643,8 +11459,8 @@ function createHealthCheckDataResource16(healthCheck) {
|
|
|
10643
11459
|
var AvalaraClient = class extends BaseServiceClient {
|
|
10644
11460
|
constructor(http, baseUrl = "https://avalara.augur-api.com") {
|
|
10645
11461
|
super("avalara", http, baseUrl);
|
|
10646
|
-
const boundExecuteRequest = (config, params, pathParams) => {
|
|
10647
|
-
return this.executeRequest(config, params, pathParams);
|
|
11462
|
+
const boundExecuteRequest = (config, params, pathParams, query) => {
|
|
11463
|
+
return this.executeRequest(config, params, pathParams, query);
|
|
10648
11464
|
};
|
|
10649
11465
|
const proxy = createServiceProxy("avalara", boundExecuteRequest, endpoints16);
|
|
10650
11466
|
const dataProxy = createDataProxy(proxy);
|
|
@@ -10657,10 +11473,54 @@ var AvalaraClient = class extends BaseServiceClient {
|
|
|
10657
11473
|
|
|
10658
11474
|
// src/services/brand-folder/generated/schemas.ts
|
|
10659
11475
|
import * as v24 from "valibot";
|
|
11476
|
+
var CategoriesListParamsSchema2 = v24.looseObject({
|
|
11477
|
+
...EdgeCacheParamsSchema.entries,
|
|
11478
|
+
limit: v24.optional(v24.pipe(v24.unknown(), v24.transform(Number))),
|
|
11479
|
+
offset: v24.optional(v24.pipe(v24.unknown(), v24.transform(Number))),
|
|
11480
|
+
orderBy: v24.optional(v24.string()),
|
|
11481
|
+
q: v24.optional(v24.string())
|
|
11482
|
+
});
|
|
11483
|
+
var CategoriesDataSchema = v24.looseObject({
|
|
11484
|
+
itemCategoryUid: v24.optional(v24.number()),
|
|
11485
|
+
itemCategoryId: v24.optional(v24.string()),
|
|
11486
|
+
itemCategoryDesc: v24.optional(v24.string()),
|
|
11487
|
+
dateCreated: v24.optional(v24.string()),
|
|
11488
|
+
dateLastModified: v24.optional(v24.string()),
|
|
11489
|
+
updateCd: v24.optional(v24.number()),
|
|
11490
|
+
statusCd: v24.optional(v24.number()),
|
|
11491
|
+
processCd: v24.optional(v24.number()),
|
|
11492
|
+
rootCategoryId: v24.optional(v24.string()),
|
|
11493
|
+
labelsId: v24.optional(v24.nullable(v24.string())),
|
|
11494
|
+
imagesAssetsId: v24.optional(v24.nullable(v24.string())),
|
|
11495
|
+
roomScenesAssetsId: v24.optional(v24.nullable(v24.string())),
|
|
11496
|
+
brochuresAssetsId: v24.optional(v24.nullable(v24.string())),
|
|
11497
|
+
contractorsAssetsId: v24.optional(v24.nullable(v24.string())),
|
|
11498
|
+
dateLastProcessed: v24.optional(v24.string()),
|
|
11499
|
+
dateLastCheckImages: v24.optional(v24.string()),
|
|
11500
|
+
dateLastCheckRoomScene: v24.optional(v24.string()),
|
|
11501
|
+
itemCategoryDescPc: v24.optional(v24.nullable(v24.string())),
|
|
11502
|
+
dateLastUpload: v24.optional(v24.string()),
|
|
11503
|
+
leedAssetsId: v24.optional(v24.nullable(v24.string())),
|
|
11504
|
+
colorsList: v24.optional(v24.nullable(v24.string())),
|
|
11505
|
+
colorsCount: v24.optional(v24.number()),
|
|
11506
|
+
focusCd: v24.optional(v24.number())
|
|
11507
|
+
});
|
|
10660
11508
|
var PassthroughDataSchema17 = v24.record(v24.string(), v24.unknown());
|
|
10661
11509
|
|
|
10662
11510
|
// src/services/brand-folder/generated/endpoints.ts
|
|
10663
11511
|
var endpoints17 = [
|
|
11512
|
+
{
|
|
11513
|
+
method: "GET",
|
|
11514
|
+
path: "/categories",
|
|
11515
|
+
chain: "categories",
|
|
11516
|
+
action: "list",
|
|
11517
|
+
aliases: [],
|
|
11518
|
+
pathParams: [],
|
|
11519
|
+
queryParams: ["limit", "offset", "orderBy", "q"],
|
|
11520
|
+
edgeCache: true,
|
|
11521
|
+
responseSchema: CategoriesDataSchema,
|
|
11522
|
+
responseType: "array"
|
|
11523
|
+
},
|
|
10664
11524
|
{
|
|
10665
11525
|
method: "POST",
|
|
10666
11526
|
path: "/categories/focus",
|
|
@@ -10672,6 +11532,18 @@ var endpoints17 = [
|
|
|
10672
11532
|
edgeCache: false,
|
|
10673
11533
|
responseSchema: PassthroughDataSchema17,
|
|
10674
11534
|
responseType: "passthrough"
|
|
11535
|
+
},
|
|
11536
|
+
{
|
|
11537
|
+
method: "GET",
|
|
11538
|
+
path: "/categories/{itemCategoryUid}",
|
|
11539
|
+
chain: "categories",
|
|
11540
|
+
action: "get",
|
|
11541
|
+
aliases: [],
|
|
11542
|
+
pathParams: ["itemCategoryUid"],
|
|
11543
|
+
queryParams: [],
|
|
11544
|
+
edgeCache: true,
|
|
11545
|
+
responseSchema: CategoriesDataSchema,
|
|
11546
|
+
responseType: "object"
|
|
10675
11547
|
}
|
|
10676
11548
|
];
|
|
10677
11549
|
|
|
@@ -10740,8 +11612,8 @@ function createHealthCheckDataResource17(healthCheck) {
|
|
|
10740
11612
|
var BrandFolderClient = class extends BaseServiceClient {
|
|
10741
11613
|
constructor(http, baseUrl = "https://brand-folder.augur-api.com") {
|
|
10742
11614
|
super("brand-folder", http, baseUrl);
|
|
10743
|
-
const boundExecuteRequest = (config, params, pathParams) => {
|
|
10744
|
-
return this.executeRequest(config, params, pathParams);
|
|
11615
|
+
const boundExecuteRequest = (config, params, pathParams, query) => {
|
|
11616
|
+
return this.executeRequest(config, params, pathParams, query);
|
|
10745
11617
|
};
|
|
10746
11618
|
const proxy = createServiceProxy(
|
|
10747
11619
|
"brand-folder",
|
|
@@ -10872,8 +11744,8 @@ function createHealthCheckDataResource18(healthCheck) {
|
|
|
10872
11744
|
var GregorovichClient = class extends BaseServiceClient {
|
|
10873
11745
|
constructor(http, baseUrl = "https://gregorovich.augur-api.com") {
|
|
10874
11746
|
super("gregorovich", http, baseUrl);
|
|
10875
|
-
const boundExecuteRequest = (config, params, pathParams) => {
|
|
10876
|
-
return this.executeRequest(config, params, pathParams);
|
|
11747
|
+
const boundExecuteRequest = (config, params, pathParams, query) => {
|
|
11748
|
+
return this.executeRequest(config, params, pathParams, query);
|
|
10877
11749
|
};
|
|
10878
11750
|
const proxy = createServiceProxy(
|
|
10879
11751
|
"gregorovich",
|
|
@@ -10913,7 +11785,7 @@ var RtsBrandsListParamsSchema = v26.looseObject({
|
|
|
10913
11785
|
...EdgeCacheParamsSchema.entries,
|
|
10914
11786
|
search: v26.optional(v26.string())
|
|
10915
11787
|
});
|
|
10916
|
-
var
|
|
11788
|
+
var RtsBrandsMachinesListParamsSchema = v26.looseObject({
|
|
10917
11789
|
...EdgeCacheParamsSchema.entries,
|
|
10918
11790
|
search: v26.optional(v26.string())
|
|
10919
11791
|
});
|
|
@@ -10926,6 +11798,19 @@ var RtsTracksListParamsSchema = v26.looseObject({
|
|
|
10926
11798
|
search: v26.optional(v26.string()),
|
|
10927
11799
|
trackClass: v26.optional(v26.string())
|
|
10928
11800
|
});
|
|
11801
|
+
var ShippingMethodsListParamsSchema = v26.looseObject({
|
|
11802
|
+
...EdgeCacheParamsSchema.entries,
|
|
11803
|
+
limit: v26.optional(v26.pipe(v26.unknown(), v26.transform(Number))),
|
|
11804
|
+
offset: v26.optional(v26.pipe(v26.unknown(), v26.transform(Number))),
|
|
11805
|
+
orderBy: v26.optional(v26.string()),
|
|
11806
|
+
shippingMethodsId: v26.optional(v26.pipe(v26.unknown(), v26.transform(Number))),
|
|
11807
|
+
shippingType: v26.optional(v26.string()),
|
|
11808
|
+
statusCd: v26.optional(v26.pipe(v26.unknown(), v26.transform(Number)))
|
|
11809
|
+
});
|
|
11810
|
+
var ShippingMethodsGetParamsSchema = v26.looseObject({
|
|
11811
|
+
...EdgeCacheParamsSchema.entries,
|
|
11812
|
+
shippingMethodsId: v26.optional(v26.pipe(v26.unknown(), v26.transform(Number)))
|
|
11813
|
+
});
|
|
10929
11814
|
var ShipviaRatesListParamsSchema = v26.looseObject({
|
|
10930
11815
|
...EdgeCacheParamsSchema.entries,
|
|
10931
11816
|
carriers: v26.optional(v26.string()),
|
|
@@ -10989,6 +11874,7 @@ var SpeedshipFreightListParamsSchema = v26.looseObject({
|
|
|
10989
11874
|
handlingCharge: v26.optional(v26.pipe(v26.unknown(), v26.transform(Number))),
|
|
10990
11875
|
handlingChargeUnit: v26.optional(v26.string()),
|
|
10991
11876
|
international: v26.optional(v26.boolean()),
|
|
11877
|
+
maxPalletWeight: v26.optional(v26.pipe(v26.unknown(), v26.transform(Number))),
|
|
10992
11878
|
packageHeight: v26.optional(v26.pipe(v26.unknown(), v26.transform(Number))),
|
|
10993
11879
|
packageLength: v26.pipe(v26.unknown(), v26.transform(Number)),
|
|
10994
11880
|
packageWidth: v26.pipe(v26.unknown(), v26.transform(Number)),
|
|
@@ -11015,6 +11901,7 @@ var UPSRatesListParamsSchema = v26.looseObject({
|
|
|
11015
11901
|
fromCountryCode: v26.optional(v26.string()),
|
|
11016
11902
|
fromPostalCode: v26.string(),
|
|
11017
11903
|
fromStateProvinceCode: v26.string(),
|
|
11904
|
+
maxPackageWeight: v26.optional(v26.pipe(v26.unknown(), v26.transform(Number))),
|
|
11018
11905
|
toAddress1: v26.string(),
|
|
11019
11906
|
toCity: v26.string(),
|
|
11020
11907
|
toCountryCode: v26.optional(v26.string()),
|
|
@@ -11066,7 +11953,7 @@ var endpoints19 = [
|
|
|
11066
11953
|
{
|
|
11067
11954
|
method: "GET",
|
|
11068
11955
|
path: "/rts/brands/{brandId}/machines",
|
|
11069
|
-
chain: "rts.brands.
|
|
11956
|
+
chain: "rts.brands.machines",
|
|
11070
11957
|
action: "list",
|
|
11071
11958
|
aliases: [],
|
|
11072
11959
|
pathParams: ["brandId"],
|
|
@@ -11078,7 +11965,7 @@ var endpoints19 = [
|
|
|
11078
11965
|
{
|
|
11079
11966
|
method: "GET",
|
|
11080
11967
|
path: "/rts/machines/{machineId}/tracks",
|
|
11081
|
-
chain: "rts.machines.
|
|
11968
|
+
chain: "rts.machines.tracks",
|
|
11082
11969
|
action: "list",
|
|
11083
11970
|
aliases: [],
|
|
11084
11971
|
pathParams: ["machineId"],
|
|
@@ -11102,7 +11989,7 @@ var endpoints19 = [
|
|
|
11102
11989
|
{
|
|
11103
11990
|
method: "GET",
|
|
11104
11991
|
path: "/rts/track/{trackId}",
|
|
11105
|
-
chain: "rts.track
|
|
11992
|
+
chain: "rts.track",
|
|
11106
11993
|
action: "list",
|
|
11107
11994
|
aliases: [],
|
|
11108
11995
|
pathParams: ["trackId"],
|
|
@@ -11123,6 +12010,54 @@ var endpoints19 = [
|
|
|
11123
12010
|
responseSchema: PassthroughDataSchema19,
|
|
11124
12011
|
responseType: "passthrough"
|
|
11125
12012
|
},
|
|
12013
|
+
{
|
|
12014
|
+
method: "GET",
|
|
12015
|
+
path: "/shipping-methods",
|
|
12016
|
+
chain: "shippingMethods",
|
|
12017
|
+
action: "list",
|
|
12018
|
+
aliases: [],
|
|
12019
|
+
pathParams: [],
|
|
12020
|
+
queryParams: ["limit", "offset", "orderBy", "shippingMethodsId", "shippingType", "statusCd"],
|
|
12021
|
+
edgeCache: true,
|
|
12022
|
+
responseSchema: PassthroughDataSchema19,
|
|
12023
|
+
responseType: "passthrough"
|
|
12024
|
+
},
|
|
12025
|
+
{
|
|
12026
|
+
method: "GET",
|
|
12027
|
+
path: "/shipping-methods/{shippingMethodsUid}",
|
|
12028
|
+
chain: "shippingMethods",
|
|
12029
|
+
action: "get",
|
|
12030
|
+
aliases: [],
|
|
12031
|
+
pathParams: ["shippingMethodsUid"],
|
|
12032
|
+
queryParams: ["shippingMethodsId"],
|
|
12033
|
+
edgeCache: true,
|
|
12034
|
+
responseSchema: PassthroughDataSchema19,
|
|
12035
|
+
responseType: "passthrough"
|
|
12036
|
+
},
|
|
12037
|
+
{
|
|
12038
|
+
method: "PUT",
|
|
12039
|
+
path: "/shipping-methods/{shippingMethodsUid}",
|
|
12040
|
+
chain: "shippingMethods",
|
|
12041
|
+
action: "update",
|
|
12042
|
+
aliases: [],
|
|
12043
|
+
pathParams: ["shippingMethodsUid"],
|
|
12044
|
+
queryParams: [],
|
|
12045
|
+
edgeCache: false,
|
|
12046
|
+
responseSchema: PassthroughDataSchema19,
|
|
12047
|
+
responseType: "passthrough"
|
|
12048
|
+
},
|
|
12049
|
+
{
|
|
12050
|
+
method: "DELETE",
|
|
12051
|
+
path: "/shipping-methods/{shippingMethodsUid}",
|
|
12052
|
+
chain: "shippingMethods",
|
|
12053
|
+
action: "delete",
|
|
12054
|
+
aliases: [],
|
|
12055
|
+
pathParams: ["shippingMethodsUid"],
|
|
12056
|
+
queryParams: [],
|
|
12057
|
+
edgeCache: false,
|
|
12058
|
+
responseSchema: PassthroughDataSchema19,
|
|
12059
|
+
responseType: "passthrough"
|
|
12060
|
+
},
|
|
11126
12061
|
{
|
|
11127
12062
|
method: "GET",
|
|
11128
12063
|
path: "/shipvia/rates",
|
|
@@ -11212,6 +12147,7 @@ var endpoints19 = [
|
|
|
11212
12147
|
"handlingCharge",
|
|
11213
12148
|
"handlingChargeUnit",
|
|
11214
12149
|
"international",
|
|
12150
|
+
"maxPalletWeight",
|
|
11215
12151
|
"packageHeight",
|
|
11216
12152
|
"packageLength",
|
|
11217
12153
|
"packageWidth",
|
|
@@ -11248,6 +12184,7 @@ var endpoints19 = [
|
|
|
11248
12184
|
"fromCountryCode",
|
|
11249
12185
|
"fromPostalCode",
|
|
11250
12186
|
"fromStateProvinceCode",
|
|
12187
|
+
"maxPackageWeight",
|
|
11251
12188
|
"toAddress1",
|
|
11252
12189
|
"toCity",
|
|
11253
12190
|
"toCountryCode",
|
|
@@ -11393,8 +12330,8 @@ function createPingDataResource9(ping) {
|
|
|
11393
12330
|
var LogisticsClient = class extends BaseServiceClient {
|
|
11394
12331
|
constructor(http, baseUrl = "https://logistics.augur-api.com") {
|
|
11395
12332
|
super("logistics", http, baseUrl);
|
|
11396
|
-
const boundExecuteRequest = (config, params, pathParams) => {
|
|
11397
|
-
return this.executeRequest(config, params, pathParams);
|
|
12333
|
+
const boundExecuteRequest = (config, params, pathParams, query) => {
|
|
12334
|
+
return this.executeRequest(config, params, pathParams, query);
|
|
11398
12335
|
};
|
|
11399
12336
|
const proxy = createServiceProxy(
|
|
11400
12337
|
"logistics",
|
|
@@ -11404,11 +12341,13 @@ var LogisticsClient = class extends BaseServiceClient {
|
|
|
11404
12341
|
const dataProxy = createDataProxy(proxy);
|
|
11405
12342
|
this.fedex = proxy.fedex;
|
|
11406
12343
|
this.rts = proxy.rts;
|
|
12344
|
+
this.shippingMethods = proxy.shippingMethods;
|
|
11407
12345
|
this.shipvia = proxy.shipvia;
|
|
11408
12346
|
this.speedship = proxy.speedship;
|
|
11409
12347
|
this.ups = proxy.ups;
|
|
11410
12348
|
this.fedexData = dataProxy.fedex;
|
|
11411
12349
|
this.rtsData = dataProxy.rts;
|
|
12350
|
+
this.shippingMethodsData = dataProxy.shippingMethods;
|
|
11412
12351
|
this.shipviaData = dataProxy.shipvia;
|
|
11413
12352
|
this.speedshipData = dataProxy.speedship;
|
|
11414
12353
|
this.upsData = dataProxy.ups;
|
|
@@ -11426,43 +12365,43 @@ var LogisticsClient = class extends BaseServiceClient {
|
|
|
11426
12365
|
import * as v27 from "valibot";
|
|
11427
12366
|
var TransCategoryGetParamsSchema = v27.looseObject({
|
|
11428
12367
|
...EdgeCacheParamsSchema.entries,
|
|
11429
|
-
|
|
12368
|
+
categoryId: v27.optional(v27.string())
|
|
11430
12369
|
});
|
|
11431
12370
|
var TransCategoryUpdateParamsSchema = v27.looseObject({
|
|
11432
|
-
|
|
12371
|
+
categoryId: v27.optional(v27.string())
|
|
11433
12372
|
});
|
|
11434
12373
|
var TransCategoryDeleteParamsSchema = v27.looseObject({
|
|
11435
|
-
|
|
12374
|
+
categoryId: v27.optional(v27.string())
|
|
11436
12375
|
});
|
|
11437
12376
|
var TransCompanyGetParamsSchema = v27.looseObject({
|
|
11438
12377
|
...EdgeCacheParamsSchema.entries,
|
|
11439
|
-
|
|
12378
|
+
companyId: v27.optional(v27.string())
|
|
11440
12379
|
});
|
|
11441
12380
|
var TransCompanyUpdateParamsSchema = v27.looseObject({
|
|
11442
|
-
|
|
12381
|
+
companyId: v27.optional(v27.string())
|
|
11443
12382
|
});
|
|
11444
12383
|
var TransCompanyDeleteParamsSchema = v27.looseObject({
|
|
11445
|
-
|
|
12384
|
+
companyId: v27.optional(v27.string())
|
|
11446
12385
|
});
|
|
11447
12386
|
var TransUserGetParamsSchema = v27.looseObject({
|
|
11448
12387
|
...EdgeCacheParamsSchema.entries,
|
|
11449
|
-
|
|
12388
|
+
userId: v27.optional(v27.string())
|
|
11450
12389
|
});
|
|
11451
12390
|
var TransUserUpdateParamsSchema = v27.looseObject({
|
|
11452
|
-
|
|
12391
|
+
userId: v27.optional(v27.string())
|
|
11453
12392
|
});
|
|
11454
12393
|
var TransUserDeleteParamsSchema = v27.looseObject({
|
|
11455
|
-
|
|
12394
|
+
userId: v27.optional(v27.string())
|
|
11456
12395
|
});
|
|
11457
12396
|
var TransWebDisplayTypeGetParamsSchema = v27.looseObject({
|
|
11458
12397
|
...EdgeCacheParamsSchema.entries,
|
|
11459
|
-
|
|
12398
|
+
webDisplayTypeId: v27.optional(v27.string())
|
|
11460
12399
|
});
|
|
11461
12400
|
var TransWebDisplayTypeUpdateParamsSchema = v27.looseObject({
|
|
11462
|
-
|
|
12401
|
+
webDisplayTypeId: v27.optional(v27.string())
|
|
11463
12402
|
});
|
|
11464
12403
|
var TransWebDisplayTypeDeleteParamsSchema = v27.looseObject({
|
|
11465
|
-
|
|
12404
|
+
webDisplayTypeId: v27.optional(v27.string())
|
|
11466
12405
|
});
|
|
11467
12406
|
var PassthroughDataSchema20 = v27.record(v27.string(), v27.unknown());
|
|
11468
12407
|
|
|
@@ -11511,7 +12450,7 @@ var endpoints20 = [
|
|
|
11511
12450
|
action: "get",
|
|
11512
12451
|
aliases: [],
|
|
11513
12452
|
pathParams: ["categoryUid"],
|
|
11514
|
-
queryParams: ["
|
|
12453
|
+
queryParams: ["categoryId"],
|
|
11515
12454
|
edgeCache: true,
|
|
11516
12455
|
responseSchema: PassthroughDataSchema20,
|
|
11517
12456
|
responseType: "passthrough"
|
|
@@ -11523,7 +12462,7 @@ var endpoints20 = [
|
|
|
11523
12462
|
action: "update",
|
|
11524
12463
|
aliases: [],
|
|
11525
12464
|
pathParams: ["categoryUid"],
|
|
11526
|
-
queryParams: ["
|
|
12465
|
+
queryParams: ["categoryId"],
|
|
11527
12466
|
edgeCache: false,
|
|
11528
12467
|
responseSchema: PassthroughDataSchema20,
|
|
11529
12468
|
responseType: "passthrough"
|
|
@@ -11535,7 +12474,7 @@ var endpoints20 = [
|
|
|
11535
12474
|
action: "delete",
|
|
11536
12475
|
aliases: [],
|
|
11537
12476
|
pathParams: ["categoryUid"],
|
|
11538
|
-
queryParams: ["
|
|
12477
|
+
queryParams: ["categoryId"],
|
|
11539
12478
|
edgeCache: false,
|
|
11540
12479
|
responseSchema: PassthroughDataSchema20,
|
|
11541
12480
|
responseType: "passthrough"
|
|
@@ -11559,7 +12498,7 @@ var endpoints20 = [
|
|
|
11559
12498
|
action: "get",
|
|
11560
12499
|
aliases: [],
|
|
11561
12500
|
pathParams: ["companyUid"],
|
|
11562
|
-
queryParams: ["
|
|
12501
|
+
queryParams: ["companyId"],
|
|
11563
12502
|
edgeCache: true,
|
|
11564
12503
|
responseSchema: PassthroughDataSchema20,
|
|
11565
12504
|
responseType: "passthrough"
|
|
@@ -11571,7 +12510,7 @@ var endpoints20 = [
|
|
|
11571
12510
|
action: "update",
|
|
11572
12511
|
aliases: [],
|
|
11573
12512
|
pathParams: ["companyUid"],
|
|
11574
|
-
queryParams: ["
|
|
12513
|
+
queryParams: ["companyId"],
|
|
11575
12514
|
edgeCache: false,
|
|
11576
12515
|
responseSchema: PassthroughDataSchema20,
|
|
11577
12516
|
responseType: "passthrough"
|
|
@@ -11583,7 +12522,7 @@ var endpoints20 = [
|
|
|
11583
12522
|
action: "delete",
|
|
11584
12523
|
aliases: [],
|
|
11585
12524
|
pathParams: ["companyUid"],
|
|
11586
|
-
queryParams: ["
|
|
12525
|
+
queryParams: ["companyId"],
|
|
11587
12526
|
edgeCache: false,
|
|
11588
12527
|
responseSchema: PassthroughDataSchema20,
|
|
11589
12528
|
responseType: "passthrough"
|
|
@@ -11631,7 +12570,7 @@ var endpoints20 = [
|
|
|
11631
12570
|
action: "get",
|
|
11632
12571
|
aliases: [],
|
|
11633
12572
|
pathParams: ["usersUid"],
|
|
11634
|
-
queryParams: ["
|
|
12573
|
+
queryParams: ["userId"],
|
|
11635
12574
|
edgeCache: true,
|
|
11636
12575
|
responseSchema: PassthroughDataSchema20,
|
|
11637
12576
|
responseType: "passthrough"
|
|
@@ -11643,7 +12582,7 @@ var endpoints20 = [
|
|
|
11643
12582
|
action: "update",
|
|
11644
12583
|
aliases: [],
|
|
11645
12584
|
pathParams: ["usersUid"],
|
|
11646
|
-
queryParams: ["
|
|
12585
|
+
queryParams: ["userId"],
|
|
11647
12586
|
edgeCache: false,
|
|
11648
12587
|
responseSchema: PassthroughDataSchema20,
|
|
11649
12588
|
responseType: "passthrough"
|
|
@@ -11655,7 +12594,7 @@ var endpoints20 = [
|
|
|
11655
12594
|
action: "delete",
|
|
11656
12595
|
aliases: [],
|
|
11657
12596
|
pathParams: ["usersUid"],
|
|
11658
|
-
queryParams: ["
|
|
12597
|
+
queryParams: ["userId"],
|
|
11659
12598
|
edgeCache: false,
|
|
11660
12599
|
responseSchema: PassthroughDataSchema20,
|
|
11661
12600
|
responseType: "passthrough"
|
|
@@ -11703,7 +12642,7 @@ var endpoints20 = [
|
|
|
11703
12642
|
action: "get",
|
|
11704
12643
|
aliases: [],
|
|
11705
12644
|
pathParams: ["webDisplayTypeUid"],
|
|
11706
|
-
queryParams: ["
|
|
12645
|
+
queryParams: ["webDisplayTypeId"],
|
|
11707
12646
|
edgeCache: true,
|
|
11708
12647
|
responseSchema: PassthroughDataSchema20,
|
|
11709
12648
|
responseType: "passthrough"
|
|
@@ -11715,7 +12654,7 @@ var endpoints20 = [
|
|
|
11715
12654
|
action: "update",
|
|
11716
12655
|
aliases: [],
|
|
11717
12656
|
pathParams: ["webDisplayTypeUid"],
|
|
11718
|
-
queryParams: ["
|
|
12657
|
+
queryParams: ["webDisplayTypeId"],
|
|
11719
12658
|
edgeCache: false,
|
|
11720
12659
|
responseSchema: PassthroughDataSchema20,
|
|
11721
12660
|
responseType: "passthrough"
|
|
@@ -11727,7 +12666,7 @@ var endpoints20 = [
|
|
|
11727
12666
|
action: "delete",
|
|
11728
12667
|
aliases: [],
|
|
11729
12668
|
pathParams: ["webDisplayTypeUid"],
|
|
11730
|
-
queryParams: ["
|
|
12669
|
+
queryParams: ["webDisplayTypeId"],
|
|
11731
12670
|
edgeCache: false,
|
|
11732
12671
|
responseSchema: PassthroughDataSchema20,
|
|
11733
12672
|
responseType: "passthrough"
|
|
@@ -11785,8 +12724,8 @@ function createHealthCheckDataResource20(healthCheck) {
|
|
|
11785
12724
|
var P21ApisClient = class extends BaseServiceClient {
|
|
11786
12725
|
constructor(http, baseUrl = "https://p21-apis.augur-api.com") {
|
|
11787
12726
|
super("p21-apis", http, baseUrl);
|
|
11788
|
-
const boundExecuteRequest = (config, params, pathParams) => {
|
|
11789
|
-
return this.executeRequest(config, params, pathParams);
|
|
12727
|
+
const boundExecuteRequest = (config, params, pathParams, query) => {
|
|
12728
|
+
return this.executeRequest(config, params, pathParams, query);
|
|
11790
12729
|
};
|
|
11791
12730
|
const proxy = createServiceProxy("p21-apis", boundExecuteRequest, endpoints20);
|
|
11792
12731
|
const dataProxy = createDataProxy(proxy);
|
|
@@ -11821,12 +12760,14 @@ var AddressListParamsSchema = v28.looseObject({
|
|
|
11821
12760
|
enabledCd: v28.optional(v28.pipe(v28.unknown(), v28.transform(Number))),
|
|
11822
12761
|
limit: v28.optional(v28.pipe(v28.unknown(), v28.transform(Number))),
|
|
11823
12762
|
offset: v28.optional(v28.pipe(v28.unknown(), v28.transform(Number))),
|
|
12763
|
+
orderBy: v28.optional(v28.string()),
|
|
11824
12764
|
statusCd: v28.optional(v28.pipe(v28.unknown(), v28.transform(Number)))
|
|
11825
12765
|
});
|
|
11826
12766
|
var AddressCorpAddressListParamsSchema = v28.looseObject({
|
|
11827
12767
|
...EdgeCacheParamsSchema.entries,
|
|
11828
12768
|
limit: v28.optional(v28.pipe(v28.unknown(), v28.transform(Number))),
|
|
11829
12769
|
offset: v28.optional(v28.pipe(v28.unknown(), v28.transform(Number))),
|
|
12770
|
+
orderBy: v28.optional(v28.string()),
|
|
11830
12771
|
q: v28.optional(v28.string())
|
|
11831
12772
|
});
|
|
11832
12773
|
var AddressEnableGetParamsSchema = v28.looseObject({
|
|
@@ -11848,7 +12789,8 @@ var CodeP21ListParamsSchema = v28.looseObject({
|
|
|
11848
12789
|
codeNoList: v28.optional(v28.string()),
|
|
11849
12790
|
limit: v28.optional(v28.pipe(v28.unknown(), v28.transform(Number))),
|
|
11850
12791
|
offset: v28.optional(v28.pipe(v28.unknown(), v28.transform(Number))),
|
|
11851
|
-
|
|
12792
|
+
orderBy: v28.optional(v28.string()),
|
|
12793
|
+
q: v28.optional(v28.string())
|
|
11852
12794
|
});
|
|
11853
12795
|
var CompanyListParamsSchema = v28.looseObject({
|
|
11854
12796
|
...EdgeCacheParamsSchema.entries,
|
|
@@ -11862,6 +12804,19 @@ var CompanyGetParamsSchema = v28.looseObject({
|
|
|
11862
12804
|
...EdgeCacheParamsSchema.entries,
|
|
11863
12805
|
companyId: v28.optional(v28.string())
|
|
11864
12806
|
});
|
|
12807
|
+
var FreightCodeListParamsSchema = v28.looseObject({
|
|
12808
|
+
...EdgeCacheParamsSchema.entries,
|
|
12809
|
+
companyId: v28.optional(v28.string()),
|
|
12810
|
+
freightCodeId: v28.optional(v28.string()),
|
|
12811
|
+
limit: v28.optional(v28.pipe(v28.unknown(), v28.transform(Number))),
|
|
12812
|
+
offset: v28.optional(v28.pipe(v28.unknown(), v28.transform(Number))),
|
|
12813
|
+
orderBy: v28.optional(v28.string()),
|
|
12814
|
+
statusCd: v28.optional(v28.pipe(v28.unknown(), v28.transform(Number)))
|
|
12815
|
+
});
|
|
12816
|
+
var FreightCodeGetParamsSchema = v28.looseObject({
|
|
12817
|
+
...EdgeCacheParamsSchema.entries,
|
|
12818
|
+
freightCodeId: v28.optional(v28.string())
|
|
12819
|
+
});
|
|
11865
12820
|
var LocationListParamsSchema = v28.looseObject({
|
|
11866
12821
|
...EdgeCacheParamsSchema.entries,
|
|
11867
12822
|
deleteFlag: v28.optional(v28.string()),
|
|
@@ -11878,7 +12833,8 @@ var LocationGetParamsSchema = v28.looseObject({
|
|
|
11878
12833
|
var PaymentTypesListParamsSchema = v28.looseObject({
|
|
11879
12834
|
...EdgeCacheParamsSchema.entries,
|
|
11880
12835
|
limit: v28.optional(v28.pipe(v28.unknown(), v28.transform(Number))),
|
|
11881
|
-
offset: v28.optional(v28.pipe(v28.unknown(), v28.transform(Number)))
|
|
12836
|
+
offset: v28.optional(v28.pipe(v28.unknown(), v28.transform(Number))),
|
|
12837
|
+
orderBy: v28.optional(v28.string())
|
|
11882
12838
|
});
|
|
11883
12839
|
var CashDrawerDataSchema = v28.looseObject({
|
|
11884
12840
|
cashDrawerId: v28.optional(v28.string()),
|
|
@@ -11932,6 +12888,48 @@ var CompanyDataSchema = v28.looseObject({
|
|
|
11932
12888
|
defaultSourcePriceCd: v28.optional(v28.nullable(v28.number())),
|
|
11933
12889
|
defaultMultiplier: v28.optional(v28.nullable(v28.number()))
|
|
11934
12890
|
});
|
|
12891
|
+
var FreightCodeDataSchema = v28.looseObject({
|
|
12892
|
+
freightCodeUid: v28.optional(v28.number()),
|
|
12893
|
+
companyId: v28.optional(v28.string()),
|
|
12894
|
+
freightCd: v28.optional(v28.string()),
|
|
12895
|
+
freightDesc: v28.optional(v28.string()),
|
|
12896
|
+
incomingFreight: v28.optional(v28.string()),
|
|
12897
|
+
outgoingFreight: v28.optional(v28.string()),
|
|
12898
|
+
incomingReduceCommission: v28.optional(v28.string()),
|
|
12899
|
+
outgoingIncreaseCommission: v28.optional(v28.string()),
|
|
12900
|
+
prorateMethodCodeNo: v28.optional(v28.number()),
|
|
12901
|
+
taxGroupId: v28.optional(v28.nullable(v28.string())),
|
|
12902
|
+
revenueAccountNo: v28.optional(v28.string()),
|
|
12903
|
+
rowStatus: v28.optional(v28.number()),
|
|
12904
|
+
dateCreated: v28.optional(v28.nullable(v28.string())),
|
|
12905
|
+
dateLastModified: v28.optional(v28.nullable(v28.string())),
|
|
12906
|
+
lastMaintainedBy: v28.optional(v28.string()),
|
|
12907
|
+
freeFreightBasisCd: v28.optional(v28.nullable(v28.number())),
|
|
12908
|
+
freeInFreightMin: v28.optional(v28.nullable(v28.number())),
|
|
12909
|
+
freeOutFreightMin: v28.optional(v28.nullable(v28.number())),
|
|
12910
|
+
directShipFreeFreightFlag: v28.optional(v28.nullable(v28.string())),
|
|
12911
|
+
freeInFreightMinWeb: v28.optional(v28.nullable(v28.number())),
|
|
12912
|
+
freeOutFreightMinWeb: v28.optional(v28.nullable(v28.number())),
|
|
12913
|
+
handlingChargeOptionCd: v28.optional(v28.nullable(v28.number())),
|
|
12914
|
+
externalTaxProductCodeIn: v28.optional(v28.nullable(v28.string())),
|
|
12915
|
+
externalTaxProductCodeOut: v28.optional(v28.nullable(v28.string())),
|
|
12916
|
+
incomingIncreaseCommission: v28.optional(v28.nullable(v28.string())),
|
|
12917
|
+
paySpecialFlag: v28.optional(v28.nullable(v28.string())),
|
|
12918
|
+
skipFirstShipmentFlag: v28.optional(v28.nullable(v28.string())),
|
|
12919
|
+
excludeFromSalesMasterInquiry: v28.optional(v28.string()),
|
|
12920
|
+
deductibleFlag: v28.optional(v28.nullable(v28.string())),
|
|
12921
|
+
freeColdFreight: v28.optional(v28.string()),
|
|
12922
|
+
freeHazmatFreight: v28.optional(v28.string()),
|
|
12923
|
+
freeExpressFreight: v28.optional(v28.string()),
|
|
12924
|
+
freeBulkFreight: v28.optional(v28.string()),
|
|
12925
|
+
fedexPaymentMethod: v28.optional(v28.nullable(v28.number())),
|
|
12926
|
+
excludeDiscountedFreight: v28.optional(v28.string()),
|
|
12927
|
+
freeFreightDefaultFlag: v28.optional(v28.nullable(v28.string())),
|
|
12928
|
+
outgoingAdjustCommissionByProfitFlag: v28.optional(v28.nullable(v28.string())),
|
|
12929
|
+
updateCd: v28.optional(v28.number()),
|
|
12930
|
+
statusCd: v28.optional(v28.number()),
|
|
12931
|
+
processCd: v28.optional(v28.number())
|
|
12932
|
+
});
|
|
11935
12933
|
var LocationDataSchema = v28.looseObject({
|
|
11936
12934
|
locationId: v28.optional(v28.number()),
|
|
11937
12935
|
companyId: v28.optional(v28.string()),
|
|
@@ -11964,7 +12962,15 @@ var endpoints21 = [
|
|
|
11964
12962
|
action: "list",
|
|
11965
12963
|
aliases: [],
|
|
11966
12964
|
pathParams: [],
|
|
11967
|
-
queryParams: [
|
|
12965
|
+
queryParams: [
|
|
12966
|
+
"carrierFlag",
|
|
12967
|
+
"defaultCd",
|
|
12968
|
+
"enabledCd",
|
|
12969
|
+
"limit",
|
|
12970
|
+
"offset",
|
|
12971
|
+
"orderBy",
|
|
12972
|
+
"statusCd"
|
|
12973
|
+
],
|
|
11968
12974
|
edgeCache: true,
|
|
11969
12975
|
responseSchema: PassthroughDataSchema21,
|
|
11970
12976
|
responseType: "passthrough"
|
|
@@ -12000,7 +13006,7 @@ var endpoints21 = [
|
|
|
12000
13006
|
action: "list",
|
|
12001
13007
|
aliases: [],
|
|
12002
13008
|
pathParams: ["id"],
|
|
12003
|
-
queryParams: ["limit", "offset", "q"],
|
|
13009
|
+
queryParams: ["limit", "offset", "orderBy", "q"],
|
|
12004
13010
|
edgeCache: true,
|
|
12005
13011
|
responseSchema: PassthroughDataSchema21,
|
|
12006
13012
|
responseType: "passthrough"
|
|
@@ -12060,11 +13066,23 @@ var endpoints21 = [
|
|
|
12060
13066
|
action: "list",
|
|
12061
13067
|
aliases: [],
|
|
12062
13068
|
pathParams: [],
|
|
12063
|
-
queryParams: ["codeNoList", "limit", "offset", "q"],
|
|
13069
|
+
queryParams: ["codeNoList", "limit", "offset", "orderBy", "q"],
|
|
12064
13070
|
edgeCache: true,
|
|
12065
13071
|
responseSchema: CodeP21DataSchema,
|
|
12066
13072
|
responseType: "array"
|
|
12067
13073
|
},
|
|
13074
|
+
{
|
|
13075
|
+
method: "GET",
|
|
13076
|
+
path: "/code-p21/{codeUid}",
|
|
13077
|
+
chain: "codeP21",
|
|
13078
|
+
action: "get",
|
|
13079
|
+
aliases: [],
|
|
13080
|
+
pathParams: ["codeUid"],
|
|
13081
|
+
queryParams: [],
|
|
13082
|
+
edgeCache: true,
|
|
13083
|
+
responseSchema: CodeP21DataSchema,
|
|
13084
|
+
responseType: "object"
|
|
13085
|
+
},
|
|
12068
13086
|
{
|
|
12069
13087
|
method: "GET",
|
|
12070
13088
|
path: "/company",
|
|
@@ -12089,6 +13107,30 @@ var endpoints21 = [
|
|
|
12089
13107
|
responseSchema: CompanyDataSchema,
|
|
12090
13108
|
responseType: "object"
|
|
12091
13109
|
},
|
|
13110
|
+
{
|
|
13111
|
+
method: "GET",
|
|
13112
|
+
path: "/freight-code",
|
|
13113
|
+
chain: "freightCode",
|
|
13114
|
+
action: "list",
|
|
13115
|
+
aliases: [],
|
|
13116
|
+
pathParams: [],
|
|
13117
|
+
queryParams: ["companyId", "freightCodeId", "limit", "offset", "orderBy", "statusCd"],
|
|
13118
|
+
edgeCache: true,
|
|
13119
|
+
responseSchema: FreightCodeDataSchema,
|
|
13120
|
+
responseType: "array"
|
|
13121
|
+
},
|
|
13122
|
+
{
|
|
13123
|
+
method: "GET",
|
|
13124
|
+
path: "/freight-code/{freightCodeUid}",
|
|
13125
|
+
chain: "freightCode",
|
|
13126
|
+
action: "get",
|
|
13127
|
+
aliases: [],
|
|
13128
|
+
pathParams: ["freightCodeUid"],
|
|
13129
|
+
queryParams: ["freightCodeId"],
|
|
13130
|
+
edgeCache: true,
|
|
13131
|
+
responseSchema: FreightCodeDataSchema,
|
|
13132
|
+
responseType: "object"
|
|
13133
|
+
},
|
|
12092
13134
|
{
|
|
12093
13135
|
method: "GET",
|
|
12094
13136
|
path: "/location",
|
|
@@ -12120,7 +13162,7 @@ var endpoints21 = [
|
|
|
12120
13162
|
action: "list",
|
|
12121
13163
|
aliases: [],
|
|
12122
13164
|
pathParams: [],
|
|
12123
|
-
queryParams: ["limit", "offset"],
|
|
13165
|
+
queryParams: ["limit", "offset", "orderBy"],
|
|
12124
13166
|
edgeCache: true,
|
|
12125
13167
|
responseSchema: PassthroughDataSchema21,
|
|
12126
13168
|
responseType: "passthrough"
|
|
@@ -12189,8 +13231,8 @@ function createPingDataResource10(ping) {
|
|
|
12189
13231
|
var P21CoreClient = class extends BaseServiceClient {
|
|
12190
13232
|
constructor(http, baseUrl = "https://p21-core.augur-api.com") {
|
|
12191
13233
|
super("p21-core", http, baseUrl);
|
|
12192
|
-
const boundExecuteRequest = (config, params, pathParams) => {
|
|
12193
|
-
return this.executeRequest(config, params, pathParams);
|
|
13234
|
+
const boundExecuteRequest = (config, params, pathParams, query) => {
|
|
13235
|
+
return this.executeRequest(config, params, pathParams, query);
|
|
12194
13236
|
};
|
|
12195
13237
|
const proxy = createServiceProxy("p21-core", boundExecuteRequest, endpoints21);
|
|
12196
13238
|
const dataProxy = createDataProxy(proxy);
|
|
@@ -12198,12 +13240,14 @@ var P21CoreClient = class extends BaseServiceClient {
|
|
|
12198
13240
|
this.cashDrawer = proxy.cashDrawer;
|
|
12199
13241
|
this.codeP21 = proxy.codeP21;
|
|
12200
13242
|
this.company = proxy.company;
|
|
13243
|
+
this.freightCode = proxy.freightCode;
|
|
12201
13244
|
this.location = proxy.location;
|
|
12202
13245
|
this.paymentTypes = proxy.paymentTypes;
|
|
12203
13246
|
this.addressData = dataProxy.address;
|
|
12204
13247
|
this.cashDrawerData = dataProxy.cashDrawer;
|
|
12205
13248
|
this.codeP21Data = dataProxy.codeP21;
|
|
12206
13249
|
this.companyData = dataProxy.company;
|
|
13250
|
+
this.freightCodeData = dataProxy.freightCode;
|
|
12207
13251
|
this.locationData = dataProxy.location;
|
|
12208
13252
|
this.paymentTypesData = dataProxy.paymentTypes;
|
|
12209
13253
|
this.healthCheck = createHealthCheckResource21(boundExecuteRequest);
|
|
@@ -12521,8 +13565,8 @@ function createHealthCheckDataResource22(healthCheck) {
|
|
|
12521
13565
|
var P21SismClient = class extends BaseServiceClient {
|
|
12522
13566
|
constructor(http, baseUrl = "https://p21-sism.augur-api.com") {
|
|
12523
13567
|
super("p21-sism", http, baseUrl);
|
|
12524
|
-
const boundExecuteRequest = (config, params, pathParams) => {
|
|
12525
|
-
return this.executeRequest(config, params, pathParams);
|
|
13568
|
+
const boundExecuteRequest = (config, params, pathParams, query) => {
|
|
13569
|
+
return this.executeRequest(config, params, pathParams, query);
|
|
12526
13570
|
};
|
|
12527
13571
|
const proxy = createServiceProxy("p21-sism", boundExecuteRequest, endpoints22);
|
|
12528
13572
|
const dataProxy = createDataProxy(proxy);
|
|
@@ -12627,8 +13671,8 @@ function createHealthCheckDataResource23(healthCheck) {
|
|
|
12627
13671
|
var ShippingClient = class extends BaseServiceClient {
|
|
12628
13672
|
constructor(http, baseUrl = "https://shipping.augur-api.com") {
|
|
12629
13673
|
super("shipping", http, baseUrl);
|
|
12630
|
-
const boundExecuteRequest = (config, params, pathParams) => {
|
|
12631
|
-
return this.executeRequest(config, params, pathParams);
|
|
13674
|
+
const boundExecuteRequest = (config, params, pathParams, query) => {
|
|
13675
|
+
return this.executeRequest(config, params, pathParams, query);
|
|
12632
13676
|
};
|
|
12633
13677
|
const proxy = createServiceProxy(
|
|
12634
13678
|
"shipping",
|
|
@@ -12756,8 +13800,8 @@ function createHealthCheckDataResource24(healthCheck) {
|
|
|
12756
13800
|
var SlackClient = class extends BaseServiceClient {
|
|
12757
13801
|
constructor(http, baseUrl = "https://slack.augur-api.com") {
|
|
12758
13802
|
super("slack", http, baseUrl);
|
|
12759
|
-
const boundExecuteRequest = (config, params, pathParams) => {
|
|
12760
|
-
return this.executeRequest(config, params, pathParams);
|
|
13803
|
+
const boundExecuteRequest = (config, params, pathParams, query) => {
|
|
13804
|
+
return this.executeRequest(config, params, pathParams, query);
|
|
12761
13805
|
};
|
|
12762
13806
|
const proxy = createServiceProxy("slack", boundExecuteRequest, endpoints24);
|
|
12763
13807
|
const dataProxy = createDataProxy(proxy);
|
|
@@ -12956,8 +14000,8 @@ function createPingDataResource11(ping) {
|
|
|
12956
14000
|
var SmartyStreetsClient = class extends BaseServiceClient {
|
|
12957
14001
|
constructor(http, baseUrl = "https://smarty-streets.augur-api.com") {
|
|
12958
14002
|
super("smarty-streets", http, baseUrl);
|
|
12959
|
-
const boundExecuteRequest = (config, params, pathParams) => {
|
|
12960
|
-
return this.executeRequest(config, params, pathParams);
|
|
14003
|
+
const boundExecuteRequest = (config, params, pathParams, query) => {
|
|
14004
|
+
return this.executeRequest(config, params, pathParams, query);
|
|
12961
14005
|
};
|
|
12962
14006
|
const proxy = createServiceProxy(
|
|
12963
14007
|
"smarty-streets",
|
|
@@ -13122,8 +14166,8 @@ function createHealthCheckDataResource26(healthCheck) {
|
|
|
13122
14166
|
var UPSClient = class extends BaseServiceClient {
|
|
13123
14167
|
constructor(http, baseUrl = "https://ups.augur-api.com") {
|
|
13124
14168
|
super("ups", http, baseUrl);
|
|
13125
|
-
const boundExecuteRequest = (config, params, pathParams) => {
|
|
13126
|
-
return this.executeRequest(config, params, pathParams);
|
|
14169
|
+
const boundExecuteRequest = (config, params, pathParams, query) => {
|
|
14170
|
+
return this.executeRequest(config, params, pathParams, query);
|
|
13127
14171
|
};
|
|
13128
14172
|
const proxy = createServiceProxy("ups", boundExecuteRequest, endpoints26);
|
|
13129
14173
|
const dataProxy = createDataProxy(proxy);
|
|
@@ -13138,20 +14182,20 @@ var UPSClient = class extends BaseServiceClient {
|
|
|
13138
14182
|
import * as v36 from "valibot";
|
|
13139
14183
|
var CommentsListParamsSchema = v36.looseObject({
|
|
13140
14184
|
...EdgeCacheParamsSchema.entries,
|
|
13141
|
-
|
|
14185
|
+
creatorId: v36.optional(v36.pipe(v36.unknown(), v36.transform(Number))),
|
|
13142
14186
|
limit: v36.optional(v36.pipe(v36.unknown(), v36.transform(Number))),
|
|
13143
14187
|
offset: v36.optional(v36.pipe(v36.unknown(), v36.transform(Number))),
|
|
13144
|
-
|
|
13145
|
-
|
|
14188
|
+
orderBy: v36.optional(v36.string()),
|
|
14189
|
+
todosId: v36.optional(v36.pipe(v36.unknown(), v36.transform(Number)))
|
|
13146
14190
|
});
|
|
13147
14191
|
var EventsListParamsSchema = v36.looseObject({
|
|
13148
14192
|
...EdgeCacheParamsSchema.entries,
|
|
13149
|
-
|
|
14193
|
+
eventTypeCd: v36.optional(v36.pipe(v36.unknown(), v36.transform(Number))),
|
|
13150
14194
|
id: v36.optional(v36.pipe(v36.unknown(), v36.transform(Number))),
|
|
13151
14195
|
limit: v36.optional(v36.pipe(v36.unknown(), v36.transform(Number))),
|
|
13152
14196
|
offset: v36.optional(v36.pipe(v36.unknown(), v36.transform(Number))),
|
|
13153
|
-
|
|
13154
|
-
|
|
14197
|
+
orderBy: v36.optional(v36.string()),
|
|
14198
|
+
peopleId: v36.optional(v36.pipe(v36.unknown(), v36.transform(Number)))
|
|
13155
14199
|
});
|
|
13156
14200
|
var MetricsListParamsSchema = v36.looseObject({
|
|
13157
14201
|
...EdgeCacheParamsSchema.entries,
|
|
@@ -13187,27 +14231,27 @@ var PeopleMetricsListParamsSchema = v36.looseObject({
|
|
|
13187
14231
|
});
|
|
13188
14232
|
var PeopleTodosListParamsSchema = v36.looseObject({
|
|
13189
14233
|
...EdgeCacheParamsSchema.entries,
|
|
13190
|
-
|
|
13191
|
-
|
|
14234
|
+
completedFlag: v36.optional(v36.string()),
|
|
14235
|
+
dueAt: v36.optional(v36.string()),
|
|
13192
14236
|
limit: v36.optional(v36.pipe(v36.unknown(), v36.transform(Number))),
|
|
13193
14237
|
offset: v36.optional(v36.pipe(v36.unknown(), v36.transform(Number))),
|
|
13194
|
-
|
|
13195
|
-
|
|
14238
|
+
orderBy: v36.optional(v36.string()),
|
|
14239
|
+
projectsId: v36.optional(v36.pipe(v36.unknown(), v36.transform(Number)))
|
|
13196
14240
|
});
|
|
13197
14241
|
var PeopleProjectsTodosListParamsSchema = v36.looseObject({
|
|
13198
14242
|
...EdgeCacheParamsSchema.entries,
|
|
13199
|
-
|
|
14243
|
+
completedFlag: v36.optional(v36.string()),
|
|
13200
14244
|
limit: v36.optional(v36.pipe(v36.unknown(), v36.transform(Number))),
|
|
13201
14245
|
offset: v36.optional(v36.pipe(v36.unknown(), v36.transform(Number))),
|
|
13202
|
-
|
|
14246
|
+
orderBy: v36.optional(v36.string())
|
|
13203
14247
|
});
|
|
13204
14248
|
var ProjectsListParamsSchema = v36.looseObject({
|
|
13205
14249
|
...EdgeCacheParamsSchema.entries,
|
|
13206
|
-
|
|
14250
|
+
archivedFlag: v36.optional(v36.string()),
|
|
13207
14251
|
limit: v36.optional(v36.pipe(v36.unknown(), v36.transform(Number))),
|
|
13208
14252
|
offset: v36.optional(v36.pipe(v36.unknown(), v36.transform(Number))),
|
|
13209
|
-
|
|
13210
|
-
|
|
14253
|
+
orderBy: v36.optional(v36.string()),
|
|
14254
|
+
trashedFlag: v36.optional(v36.string())
|
|
13211
14255
|
});
|
|
13212
14256
|
var ProjectsMetricsListParamsSchema = v36.looseObject({
|
|
13213
14257
|
...EdgeCacheParamsSchema.entries,
|
|
@@ -13221,74 +14265,74 @@ var ProjectsMetricsListParamsSchema = v36.looseObject({
|
|
|
13221
14265
|
});
|
|
13222
14266
|
var ProjectsTodolistsListParamsSchema = v36.looseObject({
|
|
13223
14267
|
...EdgeCacheParamsSchema.entries,
|
|
13224
|
-
|
|
14268
|
+
completedFlag: v36.optional(v36.string()),
|
|
13225
14269
|
limit: v36.optional(v36.pipe(v36.unknown(), v36.transform(Number))),
|
|
13226
14270
|
offset: v36.optional(v36.pipe(v36.unknown(), v36.transform(Number))),
|
|
13227
|
-
|
|
14271
|
+
orderBy: v36.optional(v36.string())
|
|
13228
14272
|
});
|
|
13229
14273
|
var ProjectsTodosListParamsSchema = v36.looseObject({
|
|
13230
14274
|
...EdgeCacheParamsSchema.entries,
|
|
13231
|
-
|
|
13232
|
-
|
|
14275
|
+
assigneeId: v36.optional(v36.pipe(v36.unknown(), v36.transform(Number))),
|
|
14276
|
+
completedFlag: v36.optional(v36.string()),
|
|
13233
14277
|
limit: v36.optional(v36.pipe(v36.unknown(), v36.transform(Number))),
|
|
13234
14278
|
offset: v36.optional(v36.pipe(v36.unknown(), v36.transform(Number))),
|
|
13235
|
-
|
|
14279
|
+
orderBy: v36.optional(v36.string())
|
|
13236
14280
|
});
|
|
13237
14281
|
var ProjectsTodolistsTodosListParamsSchema = v36.looseObject({
|
|
13238
14282
|
...EdgeCacheParamsSchema.entries,
|
|
13239
|
-
|
|
13240
|
-
|
|
14283
|
+
assigneeId: v36.optional(v36.pipe(v36.unknown(), v36.transform(Number))),
|
|
14284
|
+
completedFlag: v36.optional(v36.string()),
|
|
13241
14285
|
limit: v36.optional(v36.pipe(v36.unknown(), v36.transform(Number))),
|
|
13242
14286
|
offset: v36.optional(v36.pipe(v36.unknown(), v36.transform(Number))),
|
|
13243
|
-
|
|
14287
|
+
orderBy: v36.optional(v36.string())
|
|
13244
14288
|
});
|
|
13245
14289
|
var TodolistsListParamsSchema = v36.looseObject({
|
|
13246
14290
|
...EdgeCacheParamsSchema.entries,
|
|
13247
|
-
|
|
13248
|
-
|
|
14291
|
+
assigneeId: v36.optional(v36.pipe(v36.unknown(), v36.transform(Number))),
|
|
14292
|
+
completedFlag: v36.optional(v36.string()),
|
|
13249
14293
|
limit: v36.optional(v36.pipe(v36.unknown(), v36.transform(Number))),
|
|
13250
14294
|
offset: v36.optional(v36.pipe(v36.unknown(), v36.transform(Number))),
|
|
13251
|
-
|
|
13252
|
-
|
|
14295
|
+
orderBy: v36.optional(v36.string()),
|
|
14296
|
+
projectsId: v36.optional(v36.pipe(v36.unknown(), v36.transform(Number)))
|
|
13253
14297
|
});
|
|
13254
14298
|
var TodosListParamsSchema = v36.looseObject({
|
|
13255
14299
|
...EdgeCacheParamsSchema.entries,
|
|
13256
|
-
|
|
13257
|
-
|
|
13258
|
-
|
|
14300
|
+
assigneeId: v36.optional(v36.pipe(v36.unknown(), v36.transform(Number))),
|
|
14301
|
+
completedFlag: v36.optional(v36.string()),
|
|
14302
|
+
dueAt: v36.optional(v36.string()),
|
|
13259
14303
|
limit: v36.optional(v36.pipe(v36.unknown(), v36.transform(Number))),
|
|
13260
14304
|
offset: v36.optional(v36.pipe(v36.unknown(), v36.transform(Number))),
|
|
13261
|
-
|
|
13262
|
-
|
|
13263
|
-
|
|
14305
|
+
orderBy: v36.optional(v36.string()),
|
|
14306
|
+
projectsId: v36.optional(v36.pipe(v36.unknown(), v36.transform(Number))),
|
|
14307
|
+
todolistId: v36.optional(v36.pipe(v36.unknown(), v36.transform(Number)))
|
|
13264
14308
|
});
|
|
13265
14309
|
var TodosSummaryListParamsSchema = v36.looseObject({
|
|
13266
14310
|
...EdgeCacheParamsSchema.entries,
|
|
13267
|
-
|
|
14311
|
+
akashaCd: v36.optional(v36.pipe(v36.unknown(), v36.transform(Number))),
|
|
13268
14312
|
limit: v36.optional(v36.pipe(v36.unknown(), v36.transform(Number))),
|
|
13269
14313
|
offset: v36.optional(v36.pipe(v36.unknown(), v36.transform(Number))),
|
|
13270
|
-
|
|
14314
|
+
processCd: v36.optional(v36.pipe(v36.unknown(), v36.transform(Number)))
|
|
13271
14315
|
});
|
|
13272
14316
|
var TodosCommentsListParamsSchema = v36.looseObject({
|
|
13273
14317
|
...EdgeCacheParamsSchema.entries,
|
|
13274
14318
|
limit: v36.optional(v36.pipe(v36.unknown(), v36.transform(Number))),
|
|
13275
14319
|
offset: v36.optional(v36.pipe(v36.unknown(), v36.transform(Number))),
|
|
13276
|
-
|
|
14320
|
+
orderBy: v36.optional(v36.string())
|
|
13277
14321
|
});
|
|
13278
14322
|
var TodosEventsListParamsSchema = v36.looseObject({
|
|
13279
14323
|
...EdgeCacheParamsSchema.entries,
|
|
13280
|
-
|
|
14324
|
+
eventTypeCd: v36.optional(v36.pipe(v36.unknown(), v36.transform(Number))),
|
|
13281
14325
|
limit: v36.optional(v36.pipe(v36.unknown(), v36.transform(Number))),
|
|
13282
14326
|
offset: v36.optional(v36.pipe(v36.unknown(), v36.transform(Number))),
|
|
13283
|
-
|
|
13284
|
-
|
|
14327
|
+
orderBy: v36.optional(v36.string()),
|
|
14328
|
+
peopleId: v36.optional(v36.pipe(v36.unknown(), v36.transform(Number)))
|
|
13285
14329
|
});
|
|
13286
14330
|
var TodosSessionsListParamsSchema = v36.looseObject({
|
|
13287
14331
|
...EdgeCacheParamsSchema.entries,
|
|
13288
14332
|
limit: v36.optional(v36.pipe(v36.unknown(), v36.transform(Number))),
|
|
13289
14333
|
offset: v36.optional(v36.pipe(v36.unknown(), v36.transform(Number))),
|
|
13290
|
-
|
|
13291
|
-
|
|
14334
|
+
orderBy: v36.optional(v36.string()),
|
|
14335
|
+
sessionStatusCd: v36.optional(v36.pipe(v36.unknown(), v36.transform(Number)))
|
|
13292
14336
|
});
|
|
13293
14337
|
var CommentsDataSchema = v36.looseObject({
|
|
13294
14338
|
id: v36.optional(v36.number()),
|
|
@@ -13490,7 +14534,7 @@ var endpoints27 = [
|
|
|
13490
14534
|
action: "list",
|
|
13491
14535
|
aliases: [],
|
|
13492
14536
|
pathParams: [],
|
|
13493
|
-
queryParams: ["
|
|
14537
|
+
queryParams: ["creatorId", "limit", "offset", "orderBy", "todosId"],
|
|
13494
14538
|
edgeCache: true,
|
|
13495
14539
|
responseSchema: CommentsDataSchema,
|
|
13496
14540
|
responseType: "array"
|
|
@@ -13514,7 +14558,7 @@ var endpoints27 = [
|
|
|
13514
14558
|
action: "list",
|
|
13515
14559
|
aliases: [],
|
|
13516
14560
|
pathParams: [],
|
|
13517
|
-
queryParams: ["
|
|
14561
|
+
queryParams: ["eventTypeCd", "id", "limit", "offset", "orderBy", "peopleId"],
|
|
13518
14562
|
edgeCache: true,
|
|
13519
14563
|
responseSchema: EventsDataSchema,
|
|
13520
14564
|
responseType: "array"
|
|
@@ -13593,7 +14637,7 @@ var endpoints27 = [
|
|
|
13593
14637
|
action: "list",
|
|
13594
14638
|
aliases: [],
|
|
13595
14639
|
pathParams: ["id"],
|
|
13596
|
-
queryParams: ["
|
|
14640
|
+
queryParams: ["completedFlag", "dueAt", "limit", "offset", "orderBy", "projectsId"],
|
|
13597
14641
|
edgeCache: true,
|
|
13598
14642
|
responseSchema: PeopleDataSchema,
|
|
13599
14643
|
responseType: "array"
|
|
@@ -13605,7 +14649,7 @@ var endpoints27 = [
|
|
|
13605
14649
|
action: "list",
|
|
13606
14650
|
aliases: [],
|
|
13607
14651
|
pathParams: ["personId", "projectId"],
|
|
13608
|
-
queryParams: ["
|
|
14652
|
+
queryParams: ["completedFlag", "limit", "offset", "orderBy"],
|
|
13609
14653
|
edgeCache: true,
|
|
13610
14654
|
responseSchema: PeopleDataSchema,
|
|
13611
14655
|
responseType: "array"
|
|
@@ -13617,7 +14661,7 @@ var endpoints27 = [
|
|
|
13617
14661
|
action: "list",
|
|
13618
14662
|
aliases: [],
|
|
13619
14663
|
pathParams: [],
|
|
13620
|
-
queryParams: ["
|
|
14664
|
+
queryParams: ["archivedFlag", "limit", "offset", "orderBy", "trashedFlag"],
|
|
13621
14665
|
edgeCache: true,
|
|
13622
14666
|
responseSchema: ProjectsDataSchema,
|
|
13623
14667
|
responseType: "array"
|
|
@@ -13661,7 +14705,7 @@ var endpoints27 = [
|
|
|
13661
14705
|
action: "list",
|
|
13662
14706
|
aliases: [],
|
|
13663
14707
|
pathParams: ["id"],
|
|
13664
|
-
queryParams: ["
|
|
14708
|
+
queryParams: ["completedFlag", "limit", "offset", "orderBy"],
|
|
13665
14709
|
edgeCache: true,
|
|
13666
14710
|
responseSchema: ProjectsDataSchema,
|
|
13667
14711
|
responseType: "array"
|
|
@@ -13673,7 +14717,7 @@ var endpoints27 = [
|
|
|
13673
14717
|
action: "list",
|
|
13674
14718
|
aliases: [],
|
|
13675
14719
|
pathParams: ["id"],
|
|
13676
|
-
queryParams: ["
|
|
14720
|
+
queryParams: ["assigneeId", "completedFlag", "limit", "offset", "orderBy"],
|
|
13677
14721
|
edgeCache: true,
|
|
13678
14722
|
responseSchema: ProjectsDataSchema,
|
|
13679
14723
|
responseType: "array"
|
|
@@ -13685,7 +14729,7 @@ var endpoints27 = [
|
|
|
13685
14729
|
action: "list",
|
|
13686
14730
|
aliases: [],
|
|
13687
14731
|
pathParams: ["projectId", "todolistId"],
|
|
13688
|
-
queryParams: ["
|
|
14732
|
+
queryParams: ["assigneeId", "completedFlag", "limit", "offset", "orderBy"],
|
|
13689
14733
|
edgeCache: true,
|
|
13690
14734
|
responseSchema: ProjectsDataSchema,
|
|
13691
14735
|
responseType: "array"
|
|
@@ -13697,7 +14741,7 @@ var endpoints27 = [
|
|
|
13697
14741
|
action: "list",
|
|
13698
14742
|
aliases: [],
|
|
13699
14743
|
pathParams: [],
|
|
13700
|
-
queryParams: ["
|
|
14744
|
+
queryParams: ["assigneeId", "completedFlag", "limit", "offset", "orderBy", "projectsId"],
|
|
13701
14745
|
edgeCache: true,
|
|
13702
14746
|
responseSchema: TodolistsDataSchema,
|
|
13703
14747
|
responseType: "array"
|
|
@@ -13722,14 +14766,14 @@ var endpoints27 = [
|
|
|
13722
14766
|
aliases: [],
|
|
13723
14767
|
pathParams: [],
|
|
13724
14768
|
queryParams: [
|
|
13725
|
-
"
|
|
13726
|
-
"
|
|
13727
|
-
"
|
|
14769
|
+
"assigneeId",
|
|
14770
|
+
"completedFlag",
|
|
14771
|
+
"dueAt",
|
|
13728
14772
|
"limit",
|
|
13729
14773
|
"offset",
|
|
13730
|
-
"
|
|
13731
|
-
"
|
|
13732
|
-
"
|
|
14774
|
+
"orderBy",
|
|
14775
|
+
"projectsId",
|
|
14776
|
+
"todolistId"
|
|
13733
14777
|
],
|
|
13734
14778
|
edgeCache: true,
|
|
13735
14779
|
responseSchema: TodosDataSchema,
|
|
@@ -13742,7 +14786,7 @@ var endpoints27 = [
|
|
|
13742
14786
|
action: "list",
|
|
13743
14787
|
aliases: [],
|
|
13744
14788
|
pathParams: [],
|
|
13745
|
-
queryParams: ["
|
|
14789
|
+
queryParams: ["akashaCd", "limit", "offset", "processCd"],
|
|
13746
14790
|
edgeCache: true,
|
|
13747
14791
|
responseSchema: TodosSummaryDataSchema,
|
|
13748
14792
|
responseType: "array"
|
|
@@ -13778,7 +14822,7 @@ var endpoints27 = [
|
|
|
13778
14822
|
action: "list",
|
|
13779
14823
|
aliases: [],
|
|
13780
14824
|
pathParams: ["id"],
|
|
13781
|
-
queryParams: ["limit", "offset", "
|
|
14825
|
+
queryParams: ["limit", "offset", "orderBy"],
|
|
13782
14826
|
edgeCache: true,
|
|
13783
14827
|
responseSchema: TodosDataSchema,
|
|
13784
14828
|
responseType: "array"
|
|
@@ -13790,7 +14834,7 @@ var endpoints27 = [
|
|
|
13790
14834
|
action: "list",
|
|
13791
14835
|
aliases: [],
|
|
13792
14836
|
pathParams: ["id"],
|
|
13793
|
-
queryParams: ["
|
|
14837
|
+
queryParams: ["eventTypeCd", "limit", "offset", "orderBy", "peopleId"],
|
|
13794
14838
|
edgeCache: true,
|
|
13795
14839
|
responseSchema: EventsDataSchema,
|
|
13796
14840
|
responseType: "array"
|
|
@@ -13826,7 +14870,7 @@ var endpoints27 = [
|
|
|
13826
14870
|
action: "list",
|
|
13827
14871
|
aliases: [],
|
|
13828
14872
|
pathParams: ["id"],
|
|
13829
|
-
queryParams: ["limit", "offset", "
|
|
14873
|
+
queryParams: ["limit", "offset", "orderBy", "sessionStatusCd"],
|
|
13830
14874
|
edgeCache: true,
|
|
13831
14875
|
responseSchema: TodosSessionsDataSchema,
|
|
13832
14876
|
responseType: "array"
|
|
@@ -13930,8 +14974,8 @@ function createHealthCheckDataResource27(healthCheck) {
|
|
|
13930
14974
|
var Basecamp2Client = class extends BaseServiceClient {
|
|
13931
14975
|
constructor(http, baseUrl = "https://basecamp2.augur-api.com") {
|
|
13932
14976
|
super("basecamp2", http, baseUrl);
|
|
13933
|
-
const boundExecuteRequest = (config, params, pathParams) => {
|
|
13934
|
-
return this.executeRequest(config, params, pathParams);
|
|
14977
|
+
const boundExecuteRequest = (config, params, pathParams, query) => {
|
|
14978
|
+
return this.executeRequest(config, params, pathParams, query);
|
|
13935
14979
|
};
|
|
13936
14980
|
const proxy = createServiceProxy(
|
|
13937
14981
|
"basecamp2",
|
|
@@ -14861,7 +15905,7 @@ function createCrossSiteAuthenticator(augurInfoToken) {
|
|
|
14861
15905
|
}
|
|
14862
15906
|
|
|
14863
15907
|
// src/index.ts
|
|
14864
|
-
var VERSION = "2026.
|
|
15908
|
+
var VERSION = "2026.8.1";
|
|
14865
15909
|
export {
|
|
14866
15910
|
AgrInfoClient,
|
|
14867
15911
|
AgrIntClient,
|