@simpleapps-com/augur-api 2026.5.6 → 2026.6.2
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/dist/{client-yZ3HRVgf.d.mts → client-rJXd07YM.d.mts} +236 -53
- package/dist/{client-yZ3HRVgf.d.ts → client-rJXd07YM.d.ts} +236 -53
- package/dist/index.d.mts +3 -3
- package/dist/index.d.ts +3 -3
- package/dist/index.js +1303 -1068
- package/dist/index.js.map +1 -1
- package/dist/index.mjs +1302 -1068
- 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.js
CHANGED
|
@@ -31,6 +31,7 @@ var __toCommonJS = (mod) => __copyProps(__defProp({}, "__esModule", { value: tru
|
|
|
31
31
|
var index_exports = {};
|
|
32
32
|
__export(index_exports, {
|
|
33
33
|
AgrInfoClient: () => AgrInfoClient,
|
|
34
|
+
AgrIntClient: () => AgrIntClient,
|
|
34
35
|
AgrSiteClient: () => AgrSiteClient,
|
|
35
36
|
AgrWorkClient: () => AgrWorkClient,
|
|
36
37
|
AugurAPI: () => AugurAPI,
|
|
@@ -236,11 +237,11 @@ function buildUrlWithParams(url, params) {
|
|
|
236
237
|
return `${url}${separator}${queryString}`;
|
|
237
238
|
}
|
|
238
239
|
function headersToRecord(headers) {
|
|
239
|
-
const
|
|
240
|
+
const record29 = {};
|
|
240
241
|
headers.forEach((value, key) => {
|
|
241
|
-
|
|
242
|
+
record29[key] = value;
|
|
242
243
|
});
|
|
243
|
-
return
|
|
244
|
+
return record29;
|
|
244
245
|
}
|
|
245
246
|
var HTTPClient = class {
|
|
246
247
|
constructor(serviceName, config) {
|
|
@@ -1185,19 +1186,19 @@ Provided parameters: ${JSON.stringify(params, null, 2)}`;
|
|
|
1185
1186
|
* @returns ServiceDiscoveryMetadata containing service info and endpoint metadata
|
|
1186
1187
|
*/
|
|
1187
1188
|
getDiscoveryMetadata() {
|
|
1188
|
-
const
|
|
1189
|
+
const endpoints28 = [];
|
|
1189
1190
|
const methods = this.getAllMethods();
|
|
1190
1191
|
for (const methodName of methods) {
|
|
1191
1192
|
const metadata = this.extractMethodMetadata(methodName);
|
|
1192
1193
|
if (metadata && metadata.discoverable) {
|
|
1193
|
-
|
|
1194
|
+
endpoints28.push(metadata);
|
|
1194
1195
|
}
|
|
1195
1196
|
}
|
|
1196
1197
|
return {
|
|
1197
1198
|
serviceName: this.serviceName,
|
|
1198
1199
|
description: this.getServiceDescription(),
|
|
1199
1200
|
baseUrl: this.baseUrl,
|
|
1200
|
-
endpoints:
|
|
1201
|
+
endpoints: endpoints28
|
|
1201
1202
|
};
|
|
1202
1203
|
}
|
|
1203
1204
|
/**
|
|
@@ -1373,9 +1374,9 @@ var PassthroughResponseSchema = v3.looseObject({
|
|
|
1373
1374
|
totalResults: v3.number()
|
|
1374
1375
|
});
|
|
1375
1376
|
var PassthroughParamsSchema = v3.looseObject({});
|
|
1376
|
-
function buildEndpointTrie(
|
|
1377
|
+
function buildEndpointTrie(endpoints28) {
|
|
1377
1378
|
const root = { actions: /* @__PURE__ */ new Map(), children: /* @__PURE__ */ new Map() };
|
|
1378
|
-
for (const ep of
|
|
1379
|
+
for (const ep of endpoints28) {
|
|
1379
1380
|
const parts = ep.chain.split(".");
|
|
1380
1381
|
let node = root;
|
|
1381
1382
|
for (const part of parts) {
|
|
@@ -1391,8 +1392,8 @@ function buildEndpointTrie(endpoints27) {
|
|
|
1391
1392
|
}
|
|
1392
1393
|
return root;
|
|
1393
1394
|
}
|
|
1394
|
-
function createServiceProxy(serviceName, executeRequest,
|
|
1395
|
-
const trie = buildEndpointTrie(
|
|
1395
|
+
function createServiceProxy(serviceName, executeRequest, endpoints28) {
|
|
1396
|
+
const trie = buildEndpointTrie(endpoints28);
|
|
1396
1397
|
return createNodeObject(serviceName, executeRequest, trie);
|
|
1397
1398
|
}
|
|
1398
1399
|
function createNodeObject(serviceName, executeRequest, node) {
|
|
@@ -1874,13 +1875,7 @@ var JoomlaClient = class extends BaseServiceClient {
|
|
|
1874
1875
|
constructor(http, baseUrl = "https://joomla.augur-api.com") {
|
|
1875
1876
|
super("joomla", http, baseUrl);
|
|
1876
1877
|
const boundExecuteRequest = (config, params, pathParams) => {
|
|
1877
|
-
|
|
1878
|
-
return this.executeRequest(config, params, pathParams);
|
|
1879
|
-
}
|
|
1880
|
-
if (params !== void 0 || config.paramsSchema !== void 0) {
|
|
1881
|
-
return this.executeRequest(config, params);
|
|
1882
|
-
}
|
|
1883
|
-
return this.executeRequest(config);
|
|
1878
|
+
return this.executeRequest(config, params, pathParams);
|
|
1884
1879
|
};
|
|
1885
1880
|
const proxy = createServiceProxy("joomla", boundExecuteRequest, endpoints);
|
|
1886
1881
|
const dataProxy = createDataProxy(proxy);
|
|
@@ -2151,13 +2146,7 @@ var CommerceClient = class extends BaseServiceClient {
|
|
|
2151
2146
|
constructor(http, baseUrl = "https://commerce.augur-api.com") {
|
|
2152
2147
|
super("commerce", http, baseUrl);
|
|
2153
2148
|
const boundExecuteRequest = (config, params, pathParams) => {
|
|
2154
|
-
|
|
2155
|
-
return this.executeRequest(config, params, pathParams);
|
|
2156
|
-
}
|
|
2157
|
-
if (params !== void 0 || config.paramsSchema !== void 0) {
|
|
2158
|
-
return this.executeRequest(config, params);
|
|
2159
|
-
}
|
|
2160
|
-
return this.executeRequest(config);
|
|
2149
|
+
return this.executeRequest(config, params, pathParams);
|
|
2161
2150
|
};
|
|
2162
2151
|
const proxy = createServiceProxy(
|
|
2163
2152
|
"commerce",
|
|
@@ -2174,6 +2163,9 @@ var CommerceClient = class extends BaseServiceClient {
|
|
|
2174
2163
|
this.healthCheck = createHealthCheckResource2(boundExecuteRequest);
|
|
2175
2164
|
this.healthCheckData = createHealthCheckDataResource2(this.healthCheck);
|
|
2176
2165
|
}
|
|
2166
|
+
getServiceDescription() {
|
|
2167
|
+
return "Shopping cart and checkout engine managing cart state, checkout flow, and Prophet 21 order submission";
|
|
2168
|
+
}
|
|
2177
2169
|
};
|
|
2178
2170
|
|
|
2179
2171
|
// src/services/pricing/generated/schemas.ts
|
|
@@ -2603,13 +2595,7 @@ var PricingClient = class extends BaseServiceClient {
|
|
|
2603
2595
|
constructor(http, baseUrl = "https://pricing.augur-api.com") {
|
|
2604
2596
|
super("pricing", http, baseUrl);
|
|
2605
2597
|
const boundExecuteRequest = (config, params, pathParams) => {
|
|
2606
|
-
|
|
2607
|
-
return this.executeRequest(config, params, pathParams);
|
|
2608
|
-
}
|
|
2609
|
-
if (params !== void 0 || config.paramsSchema !== void 0) {
|
|
2610
|
-
return this.executeRequest(config, params);
|
|
2611
|
-
}
|
|
2612
|
-
return this.executeRequest(config);
|
|
2598
|
+
return this.executeRequest(config, params, pathParams);
|
|
2613
2599
|
};
|
|
2614
2600
|
const proxy = createServiceProxy("pricing", boundExecuteRequest, endpoints3);
|
|
2615
2601
|
const dataProxy = createDataProxy(proxy);
|
|
@@ -3524,13 +3510,7 @@ var VMIClient = class extends BaseServiceClient {
|
|
|
3524
3510
|
constructor(http, baseUrl = "https://vmi.augur-api.com") {
|
|
3525
3511
|
super("vmi", http, baseUrl);
|
|
3526
3512
|
const boundExecuteRequest = (config, params, pathParams) => {
|
|
3527
|
-
|
|
3528
|
-
return this.executeRequest(config, params, pathParams);
|
|
3529
|
-
}
|
|
3530
|
-
if (params !== void 0 || config.paramsSchema !== void 0) {
|
|
3531
|
-
return this.executeRequest(config, params);
|
|
3532
|
-
}
|
|
3533
|
-
return this.executeRequest(config);
|
|
3513
|
+
return this.executeRequest(config, params, pathParams);
|
|
3534
3514
|
};
|
|
3535
3515
|
const proxy = createServiceProxy("vmi", boundExecuteRequest, endpoints4);
|
|
3536
3516
|
const dataProxy = createDataProxy(proxy);
|
|
@@ -3551,6 +3531,9 @@ var VMIClient = class extends BaseServiceClient {
|
|
|
3551
3531
|
this.healthCheckData = createHealthCheckDataResource4(this.healthCheck);
|
|
3552
3532
|
this.pingData = createPingDataResource2(this.ping);
|
|
3553
3533
|
}
|
|
3534
|
+
getServiceDescription() {
|
|
3535
|
+
return "Vendor-managed inventory for distributor profiles, warehouse stock levels, restocking, and usage tracking";
|
|
3536
|
+
}
|
|
3554
3537
|
};
|
|
3555
3538
|
|
|
3556
3539
|
// src/services/open-search/generated/schemas.ts
|
|
@@ -3940,13 +3923,7 @@ var OpenSearchClient = class extends BaseServiceClient {
|
|
|
3940
3923
|
constructor(http, baseUrl = "https://open-search.augur-api.com") {
|
|
3941
3924
|
super("open-search", http, baseUrl);
|
|
3942
3925
|
const boundExecuteRequest = (config, params, pathParams) => {
|
|
3943
|
-
|
|
3944
|
-
return this.executeRequest(config, params, pathParams);
|
|
3945
|
-
}
|
|
3946
|
-
if (params !== void 0 || config.paramsSchema !== void 0) {
|
|
3947
|
-
return this.executeRequest(config, params);
|
|
3948
|
-
}
|
|
3949
|
-
return this.executeRequest(config);
|
|
3926
|
+
return this.executeRequest(config, params, pathParams);
|
|
3950
3927
|
};
|
|
3951
3928
|
const proxy = createServiceProxy(
|
|
3952
3929
|
"open-search",
|
|
@@ -3998,6 +3975,17 @@ var AttributesListParamsSchema = v11.looseObject({
|
|
|
3998
3975
|
q: v11.optional(v11.string()),
|
|
3999
3976
|
statusCd: v11.optional(v11.pipe(v11.unknown(), v11.transform(Number)))
|
|
4000
3977
|
});
|
|
3978
|
+
var AttributesItemsListParamsSchema = v11.looseObject({
|
|
3979
|
+
...EdgeCacheParamsSchema.entries,
|
|
3980
|
+
attributeValueUid: v11.optional(v11.pipe(v11.unknown(), v11.transform(Number))),
|
|
3981
|
+
excludeValues: v11.optional(v11.string()),
|
|
3982
|
+
includeValues: v11.optional(v11.string()),
|
|
3983
|
+
limit: v11.optional(v11.pipe(v11.unknown(), v11.transform(Number))),
|
|
3984
|
+
offset: v11.optional(v11.pipe(v11.unknown(), v11.transform(Number))),
|
|
3985
|
+
orderBy: v11.optional(v11.string()),
|
|
3986
|
+
q: v11.optional(v11.string()),
|
|
3987
|
+
statusCd: v11.optional(v11.pipe(v11.unknown(), v11.transform(Number)))
|
|
3988
|
+
});
|
|
4001
3989
|
var AttributesValuesListParamsSchema = v11.looseObject({
|
|
4002
3990
|
...EdgeCacheParamsSchema.entries,
|
|
4003
3991
|
limit: v11.optional(v11.pipe(v11.unknown(), v11.transform(Number))),
|
|
@@ -4320,6 +4308,21 @@ var AttributesDataSchema = v11.looseObject({
|
|
|
4320
4308
|
statusCd: v11.optional(v11.number()),
|
|
4321
4309
|
typeCd: v11.optional(v11.number())
|
|
4322
4310
|
});
|
|
4311
|
+
var AttributesItemsDataSchema = v11.looseObject({
|
|
4312
|
+
itemAttributeValueUid: v11.optional(v11.number()),
|
|
4313
|
+
invMastUid: v11.optional(v11.number()),
|
|
4314
|
+
attributeUid: v11.optional(v11.number()),
|
|
4315
|
+
attributeValue: v11.optional(v11.nullable(v11.string())),
|
|
4316
|
+
dateCreated: v11.optional(v11.string()),
|
|
4317
|
+
createdBy: v11.optional(v11.string()),
|
|
4318
|
+
dateLastModified: v11.optional(v11.string()),
|
|
4319
|
+
lastMaintainedBy: v11.optional(v11.string()),
|
|
4320
|
+
updateCd: v11.optional(v11.number()),
|
|
4321
|
+
processCd: v11.optional(v11.number()),
|
|
4322
|
+
statusCd: v11.optional(v11.number()),
|
|
4323
|
+
attributeValueUid: v11.optional(v11.number()),
|
|
4324
|
+
onlineCd: v11.optional(v11.number())
|
|
4325
|
+
});
|
|
4323
4326
|
var AttributesValuesDataSchema = v11.looseObject({
|
|
4324
4327
|
attributeValueUid: v11.optional(v11.number()),
|
|
4325
4328
|
attributeUid: v11.optional(v11.number()),
|
|
@@ -4412,21 +4415,6 @@ var InvLocDataSchema = v11.looseObject({
|
|
|
4412
4415
|
purchaseDiscountGroup: v11.optional(v11.nullable(v11.string())),
|
|
4413
4416
|
salesDiscountGroup: v11.optional(v11.nullable(v11.string()))
|
|
4414
4417
|
});
|
|
4415
|
-
var InvMastAttributesDataSchema = v11.looseObject({
|
|
4416
|
-
itemAttributeValueUid: v11.optional(v11.number()),
|
|
4417
|
-
invMastUid: v11.optional(v11.number()),
|
|
4418
|
-
attributeUid: v11.optional(v11.number()),
|
|
4419
|
-
attributeValue: v11.optional(v11.nullable(v11.string())),
|
|
4420
|
-
dateCreated: v11.optional(v11.string()),
|
|
4421
|
-
createdBy: v11.optional(v11.string()),
|
|
4422
|
-
dateLastModified: v11.optional(v11.string()),
|
|
4423
|
-
lastMaintainedBy: v11.optional(v11.string()),
|
|
4424
|
-
updateCd: v11.optional(v11.number()),
|
|
4425
|
-
processCd: v11.optional(v11.number()),
|
|
4426
|
-
statusCd: v11.optional(v11.number()),
|
|
4427
|
-
attributeValueUid: v11.optional(v11.number()),
|
|
4428
|
-
onlineCd: v11.optional(v11.number())
|
|
4429
|
-
});
|
|
4430
4418
|
var InvMastFaqDataSchema = v11.looseObject({
|
|
4431
4419
|
invMastFaqUid: v11.optional(v11.number()),
|
|
4432
4420
|
invMastUid: v11.optional(v11.number()),
|
|
@@ -4660,6 +4648,27 @@ var endpoints6 = [
|
|
|
4660
4648
|
responseSchema: PassthroughDataSchema6,
|
|
4661
4649
|
responseType: "passthrough"
|
|
4662
4650
|
},
|
|
4651
|
+
{
|
|
4652
|
+
method: "GET",
|
|
4653
|
+
path: "/attributes/{attributeUid}/items",
|
|
4654
|
+
chain: "attributes.items",
|
|
4655
|
+
action: "list",
|
|
4656
|
+
aliases: [],
|
|
4657
|
+
pathParams: ["attributeUid"],
|
|
4658
|
+
queryParams: [
|
|
4659
|
+
"attributeValueUid",
|
|
4660
|
+
"excludeValues",
|
|
4661
|
+
"includeValues",
|
|
4662
|
+
"limit",
|
|
4663
|
+
"offset",
|
|
4664
|
+
"orderBy",
|
|
4665
|
+
"q",
|
|
4666
|
+
"statusCd"
|
|
4667
|
+
],
|
|
4668
|
+
edgeCache: true,
|
|
4669
|
+
responseSchema: AttributesItemsDataSchema,
|
|
4670
|
+
responseType: "array"
|
|
4671
|
+
},
|
|
4663
4672
|
{
|
|
4664
4673
|
method: "GET",
|
|
4665
4674
|
path: "/attributes/{attributeUid}/values",
|
|
@@ -5129,7 +5138,7 @@ var endpoints6 = [
|
|
|
5129
5138
|
pathParams: ["invMastUid"],
|
|
5130
5139
|
queryParams: [],
|
|
5131
5140
|
edgeCache: false,
|
|
5132
|
-
responseSchema:
|
|
5141
|
+
responseSchema: AttributesItemsDataSchema,
|
|
5133
5142
|
responseType: "object"
|
|
5134
5143
|
},
|
|
5135
5144
|
{
|
|
@@ -5153,7 +5162,7 @@ var endpoints6 = [
|
|
|
5153
5162
|
pathParams: ["invMastUid", "attributeUid"],
|
|
5154
5163
|
queryParams: [],
|
|
5155
5164
|
edgeCache: false,
|
|
5156
|
-
responseSchema:
|
|
5165
|
+
responseSchema: AttributesItemsDataSchema,
|
|
5157
5166
|
responseType: "object"
|
|
5158
5167
|
},
|
|
5159
5168
|
{
|
|
@@ -5165,7 +5174,7 @@ var endpoints6 = [
|
|
|
5165
5174
|
pathParams: ["invMastUid", "attributeUid", "attributeValueUid"],
|
|
5166
5175
|
queryParams: [],
|
|
5167
5176
|
edgeCache: false,
|
|
5168
|
-
responseSchema:
|
|
5177
|
+
responseSchema: AttributesItemsDataSchema,
|
|
5169
5178
|
responseType: "object"
|
|
5170
5179
|
},
|
|
5171
5180
|
{
|
|
@@ -5896,13 +5905,7 @@ var ItemsClient = class extends BaseServiceClient {
|
|
|
5896
5905
|
constructor(http, baseUrl = "https://items.augur-api.com") {
|
|
5897
5906
|
super("items", http, baseUrl);
|
|
5898
5907
|
const boundExecuteRequest = (config, params, pathParams) => {
|
|
5899
|
-
|
|
5900
|
-
return this.executeRequest(config, params, pathParams);
|
|
5901
|
-
}
|
|
5902
|
-
if (params !== void 0 || config.paramsSchema !== void 0) {
|
|
5903
|
-
return this.executeRequest(config, params);
|
|
5904
|
-
}
|
|
5905
|
-
return this.executeRequest(config);
|
|
5908
|
+
return this.executeRequest(config, params, pathParams);
|
|
5906
5909
|
};
|
|
5907
5910
|
const proxy = createServiceProxy("items", boundExecuteRequest, endpoints6);
|
|
5908
5911
|
const dataProxy = createDataProxy(proxy);
|
|
@@ -6368,13 +6371,7 @@ var LegacyClient = class extends BaseServiceClient {
|
|
|
6368
6371
|
constructor(http, baseUrl = "https://legacy.augur-api.com") {
|
|
6369
6372
|
super("legacy", http, baseUrl);
|
|
6370
6373
|
const boundExecuteRequest = (config, params, pathParams) => {
|
|
6371
|
-
|
|
6372
|
-
return this.executeRequest(config, params, pathParams);
|
|
6373
|
-
}
|
|
6374
|
-
if (params !== void 0 || config.paramsSchema !== void 0) {
|
|
6375
|
-
return this.executeRequest(config, params);
|
|
6376
|
-
}
|
|
6377
|
-
return this.executeRequest(config);
|
|
6374
|
+
return this.executeRequest(config, params, pathParams);
|
|
6378
6375
|
};
|
|
6379
6376
|
const proxy = createServiceProxy("legacy", boundExecuteRequest, endpoints7);
|
|
6380
6377
|
const dataProxy = createDataProxy(proxy);
|
|
@@ -7012,13 +7009,7 @@ var NexusClient = class extends BaseServiceClient {
|
|
|
7012
7009
|
constructor(http, baseUrl = "https://nexus.augur-api.com") {
|
|
7013
7010
|
super("nexus", http, baseUrl);
|
|
7014
7011
|
const boundExecuteRequest = (config, params, pathParams) => {
|
|
7015
|
-
|
|
7016
|
-
return this.executeRequest(config, params, pathParams);
|
|
7017
|
-
}
|
|
7018
|
-
if (params !== void 0 || config.paramsSchema !== void 0) {
|
|
7019
|
-
return this.executeRequest(config, params);
|
|
7020
|
-
}
|
|
7021
|
-
return this.executeRequest(config);
|
|
7012
|
+
return this.executeRequest(config, params, pathParams);
|
|
7022
7013
|
};
|
|
7023
7014
|
const proxy = createServiceProxy("nexus", boundExecuteRequest, endpoints8);
|
|
7024
7015
|
const dataProxy = createDataProxy(proxy);
|
|
@@ -7039,6 +7030,9 @@ var NexusClient = class extends BaseServiceClient {
|
|
|
7039
7030
|
this.healthCheckData = createHealthCheckDataResource8(this.healthCheck);
|
|
7040
7031
|
this.pingData = createPingDataResource5(this.ping);
|
|
7041
7032
|
}
|
|
7033
|
+
getServiceDescription() {
|
|
7034
|
+
return "Warehouse operations for bin transfers, receiving, and inter-location inventory movements from P21";
|
|
7035
|
+
}
|
|
7042
7036
|
};
|
|
7043
7037
|
|
|
7044
7038
|
// src/services/agr-site/generated/schemas.ts
|
|
@@ -7812,13 +7806,7 @@ var AgrSiteClient = class extends BaseServiceClient {
|
|
|
7812
7806
|
constructor(http, baseUrl = "https://agr-site.augur-api.com") {
|
|
7813
7807
|
super("agr-site", http, baseUrl);
|
|
7814
7808
|
const boundExecuteRequest = (config, params, pathParams) => {
|
|
7815
|
-
|
|
7816
|
-
return this.executeRequest(config, params, pathParams);
|
|
7817
|
-
}
|
|
7818
|
-
if (params !== void 0 || config.paramsSchema !== void 0) {
|
|
7819
|
-
return this.executeRequest(config, params);
|
|
7820
|
-
}
|
|
7821
|
-
return this.executeRequest(config);
|
|
7809
|
+
return this.executeRequest(config, params, pathParams);
|
|
7822
7810
|
};
|
|
7823
7811
|
const proxy = createServiceProxy("agr-site", boundExecuteRequest, endpoints9);
|
|
7824
7812
|
const dataProxy = createDataProxy(proxy);
|
|
@@ -7883,6 +7871,7 @@ var CustomerAddressListParamsSchema = v17.looseObject({
|
|
|
7883
7871
|
});
|
|
7884
7872
|
var CustomerAddressesListParamsSchema = v17.looseObject({
|
|
7885
7873
|
...EdgeCacheParamsSchema.entries,
|
|
7874
|
+
emailAddress: v17.optional(v17.string()),
|
|
7886
7875
|
limit: v17.optional(v17.pipe(v17.unknown(), v17.transform(Number))),
|
|
7887
7876
|
offset: v17.optional(v17.pipe(v17.unknown(), v17.transform(Number))),
|
|
7888
7877
|
orderBy: v17.optional(v17.string()),
|
|
@@ -7909,6 +7898,9 @@ var CustomerOrdersListParamsSchema = v17.looseObject({
|
|
|
7909
7898
|
...EdgeCacheParamsSchema.entries,
|
|
7910
7899
|
cancelFlag: v17.optional(v17.string()),
|
|
7911
7900
|
contactId: v17.optional(v17.string()),
|
|
7901
|
+
createdFrom: v17.optional(v17.string()),
|
|
7902
|
+
createdOn: v17.optional(v17.string()),
|
|
7903
|
+
createdTo: v17.optional(v17.string()),
|
|
7912
7904
|
deleteFlag: v17.optional(v17.string()),
|
|
7913
7905
|
fullDocument: v17.optional(v17.string()),
|
|
7914
7906
|
limit: v17.optional(v17.pipe(v17.unknown(), v17.transform(Number))),
|
|
@@ -7924,6 +7916,18 @@ var CustomerPurchasedItemsListParamsSchema = v17.looseObject({
|
|
|
7924
7916
|
});
|
|
7925
7917
|
var CustomerQuotesListParamsSchema = v17.looseObject({
|
|
7926
7918
|
...EdgeCacheParamsSchema.entries,
|
|
7919
|
+
createdFrom: v17.optional(v17.string()),
|
|
7920
|
+
createdOn: v17.optional(v17.string()),
|
|
7921
|
+
createdTo: v17.optional(v17.string()),
|
|
7922
|
+
limit: v17.optional(v17.pipe(v17.unknown(), v17.transform(Number))),
|
|
7923
|
+
offset: v17.optional(v17.pipe(v17.unknown(), v17.transform(Number))),
|
|
7924
|
+
orderBy: v17.optional(v17.string())
|
|
7925
|
+
});
|
|
7926
|
+
var CustomerRmasListParamsSchema = v17.looseObject({
|
|
7927
|
+
...EdgeCacheParamsSchema.entries,
|
|
7928
|
+
createdFrom: v17.optional(v17.string()),
|
|
7929
|
+
createdOn: v17.optional(v17.string()),
|
|
7930
|
+
createdTo: v17.optional(v17.string()),
|
|
7927
7931
|
limit: v17.optional(v17.pipe(v17.unknown(), v17.transform(Number))),
|
|
7928
7932
|
offset: v17.optional(v17.pipe(v17.unknown(), v17.transform(Number))),
|
|
7929
7933
|
orderBy: v17.optional(v17.string())
|
|
@@ -7955,7 +7959,11 @@ var CustomerAddressesDataSchema = v17.looseObject({
|
|
|
7955
7959
|
statusCd: v17.optional(v17.number()),
|
|
7956
7960
|
processCd: v17.optional(v17.number()),
|
|
7957
7961
|
dateCreated: v17.optional(v17.string()),
|
|
7958
|
-
dateLastModified: v17.optional(v17.string())
|
|
7962
|
+
dateLastModified: v17.optional(v17.string()),
|
|
7963
|
+
emailAddress: v17.optional(v17.nullable(v17.string())),
|
|
7964
|
+
name: v17.optional(v17.nullable(v17.string())),
|
|
7965
|
+
phoneNumberMain: v17.optional(v17.nullable(v17.string())),
|
|
7966
|
+
phoneNumberMobile: v17.optional(v17.nullable(v17.string()))
|
|
7959
7967
|
});
|
|
7960
7968
|
var CustomerTagsDataSchema = v17.looseObject({
|
|
7961
7969
|
customerTagsUid: v17.optional(v17.number()),
|
|
@@ -8074,7 +8082,7 @@ var endpoints10 = [
|
|
|
8074
8082
|
action: "list",
|
|
8075
8083
|
aliases: [],
|
|
8076
8084
|
pathParams: ["customerId"],
|
|
8077
|
-
queryParams: ["limit", "offset", "orderBy", "statusCd"],
|
|
8085
|
+
queryParams: ["emailAddress", "limit", "offset", "orderBy", "statusCd"],
|
|
8078
8086
|
edgeCache: true,
|
|
8079
8087
|
responseSchema: CustomerAddressesDataSchema,
|
|
8080
8088
|
responseType: "array"
|
|
@@ -8206,6 +8214,9 @@ var endpoints10 = [
|
|
|
8206
8214
|
queryParams: [
|
|
8207
8215
|
"cancelFlag",
|
|
8208
8216
|
"contactId",
|
|
8217
|
+
"createdFrom",
|
|
8218
|
+
"createdOn",
|
|
8219
|
+
"createdTo",
|
|
8209
8220
|
"deleteFlag",
|
|
8210
8221
|
"fullDocument",
|
|
8211
8222
|
"limit",
|
|
@@ -8248,7 +8259,7 @@ var endpoints10 = [
|
|
|
8248
8259
|
action: "list",
|
|
8249
8260
|
aliases: [],
|
|
8250
8261
|
pathParams: ["customerId"],
|
|
8251
|
-
queryParams: ["limit", "offset", "orderBy"],
|
|
8262
|
+
queryParams: ["createdFrom", "createdOn", "createdTo", "limit", "offset", "orderBy"],
|
|
8252
8263
|
edgeCache: true,
|
|
8253
8264
|
responseSchema: PassthroughDataSchema10,
|
|
8254
8265
|
responseType: "passthrough"
|
|
@@ -8265,6 +8276,30 @@ var endpoints10 = [
|
|
|
8265
8276
|
responseSchema: PassthroughDataSchema10,
|
|
8266
8277
|
responseType: "passthrough"
|
|
8267
8278
|
},
|
|
8279
|
+
{
|
|
8280
|
+
method: "GET",
|
|
8281
|
+
path: "/customer/{customerId}/rmas",
|
|
8282
|
+
chain: "customer.rmas",
|
|
8283
|
+
action: "list",
|
|
8284
|
+
aliases: [],
|
|
8285
|
+
pathParams: ["customerId"],
|
|
8286
|
+
queryParams: ["createdFrom", "createdOn", "createdTo", "limit", "offset", "orderBy"],
|
|
8287
|
+
edgeCache: true,
|
|
8288
|
+
responseSchema: PassthroughDataSchema10,
|
|
8289
|
+
responseType: "passthrough"
|
|
8290
|
+
},
|
|
8291
|
+
{
|
|
8292
|
+
method: "GET",
|
|
8293
|
+
path: "/customer/{customerId}/rmas/{rmaNo}",
|
|
8294
|
+
chain: "customer.rmas",
|
|
8295
|
+
action: "get",
|
|
8296
|
+
aliases: [],
|
|
8297
|
+
pathParams: ["customerId", "rmaNo"],
|
|
8298
|
+
queryParams: [],
|
|
8299
|
+
edgeCache: true,
|
|
8300
|
+
responseSchema: PassthroughDataSchema10,
|
|
8301
|
+
responseType: "passthrough"
|
|
8302
|
+
},
|
|
8268
8303
|
{
|
|
8269
8304
|
method: "GET",
|
|
8270
8305
|
path: "/customer/{customerId}/ship-to",
|
|
@@ -8412,13 +8447,7 @@ var CustomersClient = class extends BaseServiceClient {
|
|
|
8412
8447
|
constructor(http, baseUrl = "https://customers.augur-api.com") {
|
|
8413
8448
|
super("customers", http, baseUrl);
|
|
8414
8449
|
const boundExecuteRequest = (config, params, pathParams) => {
|
|
8415
|
-
|
|
8416
|
-
return this.executeRequest(config, params, pathParams);
|
|
8417
|
-
}
|
|
8418
|
-
if (params !== void 0 || config.paramsSchema !== void 0) {
|
|
8419
|
-
return this.executeRequest(config, params);
|
|
8420
|
-
}
|
|
8421
|
-
return this.executeRequest(config);
|
|
8450
|
+
return this.executeRequest(config, params, pathParams);
|
|
8422
8451
|
};
|
|
8423
8452
|
const proxy = createServiceProxy(
|
|
8424
8453
|
"customers",
|
|
@@ -8758,13 +8787,7 @@ var OrdersClient = class extends BaseServiceClient {
|
|
|
8758
8787
|
constructor(http, baseUrl = "https://orders.augur-api.com") {
|
|
8759
8788
|
super("orders", http, baseUrl);
|
|
8760
8789
|
const boundExecuteRequest = (config, params, pathParams) => {
|
|
8761
|
-
|
|
8762
|
-
return this.executeRequest(config, params, pathParams);
|
|
8763
|
-
}
|
|
8764
|
-
if (params !== void 0 || config.paramsSchema !== void 0) {
|
|
8765
|
-
return this.executeRequest(config, params);
|
|
8766
|
-
}
|
|
8767
|
-
return this.executeRequest(config);
|
|
8790
|
+
return this.executeRequest(config, params, pathParams);
|
|
8768
8791
|
};
|
|
8769
8792
|
const proxy = createServiceProxy("orders", boundExecuteRequest, endpoints11);
|
|
8770
8793
|
const dataProxy = createDataProxy(proxy);
|
|
@@ -9019,13 +9042,7 @@ var P21PimClient = class extends BaseServiceClient {
|
|
|
9019
9042
|
constructor(http, baseUrl = "https://p21-pim.augur-api.com") {
|
|
9020
9043
|
super("p21-pim", http, baseUrl);
|
|
9021
9044
|
const boundExecuteRequest = (config, params, pathParams) => {
|
|
9022
|
-
|
|
9023
|
-
return this.executeRequest(config, params, pathParams);
|
|
9024
|
-
}
|
|
9025
|
-
if (params !== void 0 || config.paramsSchema !== void 0) {
|
|
9026
|
-
return this.executeRequest(config, params);
|
|
9027
|
-
}
|
|
9028
|
-
return this.executeRequest(config);
|
|
9045
|
+
return this.executeRequest(config, params, pathParams);
|
|
9029
9046
|
};
|
|
9030
9047
|
const proxy = createServiceProxy("p21-pim", boundExecuteRequest, endpoints12);
|
|
9031
9048
|
const dataProxy = createDataProxy(proxy);
|
|
@@ -9379,13 +9396,7 @@ var PaymentsClient = class extends BaseServiceClient {
|
|
|
9379
9396
|
constructor(http, baseUrl = "https://payments.augur-api.com") {
|
|
9380
9397
|
super("payments", http, baseUrl);
|
|
9381
9398
|
const boundExecuteRequest = (config, params, pathParams) => {
|
|
9382
|
-
|
|
9383
|
-
return this.executeRequest(config, params, pathParams);
|
|
9384
|
-
}
|
|
9385
|
-
if (params !== void 0 || config.paramsSchema !== void 0) {
|
|
9386
|
-
return this.executeRequest(config, params);
|
|
9387
|
-
}
|
|
9388
|
-
return this.executeRequest(config);
|
|
9399
|
+
return this.executeRequest(config, params, pathParams);
|
|
9389
9400
|
};
|
|
9390
9401
|
const proxy = createServiceProxy(
|
|
9391
9402
|
"payments",
|
|
@@ -9406,6 +9417,9 @@ var PaymentsClient = class extends BaseServiceClient {
|
|
|
9406
9417
|
this.healthCheckData = createHealthCheckDataResource13(this.healthCheck);
|
|
9407
9418
|
this.pingData = createPingDataResource7(this.ping);
|
|
9408
9419
|
}
|
|
9420
|
+
getServiceDescription() {
|
|
9421
|
+
return "Unified payment processing gateway supporting Moneris, PayTrace, and Element card transactions";
|
|
9422
|
+
}
|
|
9409
9423
|
};
|
|
9410
9424
|
|
|
9411
9425
|
// src/services/agr-info/generated/schemas.ts
|
|
@@ -9758,13 +9772,7 @@ var AgrInfoClient = class extends BaseServiceClient {
|
|
|
9758
9772
|
constructor(http, baseUrl = "https://agr-info.augur-api.com") {
|
|
9759
9773
|
super("agr-info", http, baseUrl);
|
|
9760
9774
|
const boundExecuteRequest = (config, params, pathParams) => {
|
|
9761
|
-
|
|
9762
|
-
return this.executeRequest(config, params, pathParams);
|
|
9763
|
-
}
|
|
9764
|
-
if (params !== void 0 || config.paramsSchema !== void 0) {
|
|
9765
|
-
return this.executeRequest(config, params);
|
|
9766
|
-
}
|
|
9767
|
-
return this.executeRequest(config);
|
|
9775
|
+
return this.executeRequest(config, params, pathParams);
|
|
9768
9776
|
};
|
|
9769
9777
|
const proxy = createServiceProxy("agr-info", boundExecuteRequest, endpoints14);
|
|
9770
9778
|
const dataProxy = createDataProxy(proxy);
|
|
@@ -9792,6 +9800,291 @@ var AgrInfoClient = class extends BaseServiceClient {
|
|
|
9792
9800
|
}
|
|
9793
9801
|
};
|
|
9794
9802
|
|
|
9803
|
+
// src/services/agr-int/generated/schemas.ts
|
|
9804
|
+
var v22 = __toESM(require("valibot"));
|
|
9805
|
+
var RolesListParamsSchema = v22.looseObject({
|
|
9806
|
+
...EdgeCacheParamsSchema.entries,
|
|
9807
|
+
limit: v22.optional(v22.pipe(v22.unknown(), v22.transform(Number))),
|
|
9808
|
+
offset: v22.optional(v22.pipe(v22.unknown(), v22.transform(Number))),
|
|
9809
|
+
orderBy: v22.optional(v22.string()),
|
|
9810
|
+
roleId: v22.optional(v22.string()),
|
|
9811
|
+
roleName: v22.optional(v22.string()),
|
|
9812
|
+
statusCd: v22.optional(v22.pipe(v22.unknown(), v22.transform(Number))),
|
|
9813
|
+
systemFlag: v22.optional(v22.string())
|
|
9814
|
+
});
|
|
9815
|
+
var UsersListParamsSchema = v22.looseObject({
|
|
9816
|
+
...EdgeCacheParamsSchema.entries,
|
|
9817
|
+
email: v22.optional(v22.string()),
|
|
9818
|
+
limit: v22.optional(v22.pipe(v22.unknown(), v22.transform(Number))),
|
|
9819
|
+
offset: v22.optional(v22.pipe(v22.unknown(), v22.transform(Number))),
|
|
9820
|
+
orderBy: v22.optional(v22.string()),
|
|
9821
|
+
phoneNumber: v22.optional(v22.string()),
|
|
9822
|
+
statusCd: v22.optional(v22.pipe(v22.unknown(), v22.transform(Number))),
|
|
9823
|
+
username: v22.optional(v22.string())
|
|
9824
|
+
});
|
|
9825
|
+
var UsersRolesListParamsSchema = v22.looseObject({
|
|
9826
|
+
...EdgeCacheParamsSchema.entries,
|
|
9827
|
+
limit: v22.optional(v22.pipe(v22.unknown(), v22.transform(Number))),
|
|
9828
|
+
offset: v22.optional(v22.pipe(v22.unknown(), v22.transform(Number))),
|
|
9829
|
+
orderBy: v22.optional(v22.string()),
|
|
9830
|
+
statusCd: v22.optional(v22.pipe(v22.unknown(), v22.transform(Number)))
|
|
9831
|
+
});
|
|
9832
|
+
var RolesDataSchema = v22.looseObject({
|
|
9833
|
+
rolesUid: v22.optional(v22.number()),
|
|
9834
|
+
roleId: v22.optional(v22.string()),
|
|
9835
|
+
roleName: v22.optional(v22.string()),
|
|
9836
|
+
description: v22.optional(v22.nullable(v22.string())),
|
|
9837
|
+
systemFlag: v22.optional(v22.string()),
|
|
9838
|
+
dateCreated: v22.optional(v22.string()),
|
|
9839
|
+
dateLastModified: v22.optional(v22.string()),
|
|
9840
|
+
updateCd: v22.optional(v22.number()),
|
|
9841
|
+
statusCd: v22.optional(v22.number()),
|
|
9842
|
+
processCd: v22.optional(v22.number())
|
|
9843
|
+
});
|
|
9844
|
+
var UsersDataSchema = v22.looseObject({
|
|
9845
|
+
usersUid: v22.optional(v22.number()),
|
|
9846
|
+
username: v22.optional(v22.string()),
|
|
9847
|
+
password: v22.optional(v22.string()),
|
|
9848
|
+
name: v22.optional(v22.nullable(v22.string())),
|
|
9849
|
+
email: v22.optional(v22.string()),
|
|
9850
|
+
phoneNumber: v22.optional(v22.nullable(v22.string())),
|
|
9851
|
+
dateCreated: v22.optional(v22.string()),
|
|
9852
|
+
dateLastModified: v22.optional(v22.string()),
|
|
9853
|
+
updateCd: v22.optional(v22.number()),
|
|
9854
|
+
statusCd: v22.optional(v22.number()),
|
|
9855
|
+
processCd: v22.optional(v22.number())
|
|
9856
|
+
});
|
|
9857
|
+
var UsersVerifyDataSchema = v22.looseObject({
|
|
9858
|
+
usersUid: v22.optional(v22.number()),
|
|
9859
|
+
username: v22.optional(v22.string())
|
|
9860
|
+
});
|
|
9861
|
+
var UsersRolesDataSchema = v22.looseObject({
|
|
9862
|
+
usersXRolesUid: v22.optional(v22.number()),
|
|
9863
|
+
usersUid: v22.optional(v22.number()),
|
|
9864
|
+
rolesUid: v22.optional(v22.number()),
|
|
9865
|
+
dateCreated: v22.optional(v22.string()),
|
|
9866
|
+
dateLastModified: v22.optional(v22.string()),
|
|
9867
|
+
updateCd: v22.optional(v22.number()),
|
|
9868
|
+
statusCd: v22.optional(v22.number()),
|
|
9869
|
+
processCd: v22.optional(v22.number())
|
|
9870
|
+
});
|
|
9871
|
+
var PassthroughDataSchema15 = v22.record(v22.string(), v22.unknown());
|
|
9872
|
+
|
|
9873
|
+
// src/services/agr-int/generated/endpoints.ts
|
|
9874
|
+
var endpoints15 = [
|
|
9875
|
+
{
|
|
9876
|
+
method: "GET",
|
|
9877
|
+
path: "/roles",
|
|
9878
|
+
chain: "roles",
|
|
9879
|
+
action: "list",
|
|
9880
|
+
aliases: [],
|
|
9881
|
+
pathParams: [],
|
|
9882
|
+
queryParams: ["limit", "offset", "orderBy", "roleId", "roleName", "statusCd", "systemFlag"],
|
|
9883
|
+
edgeCache: true,
|
|
9884
|
+
responseSchema: RolesDataSchema,
|
|
9885
|
+
responseType: "array"
|
|
9886
|
+
},
|
|
9887
|
+
{
|
|
9888
|
+
method: "POST",
|
|
9889
|
+
path: "/roles",
|
|
9890
|
+
chain: "roles",
|
|
9891
|
+
action: "create",
|
|
9892
|
+
aliases: [],
|
|
9893
|
+
pathParams: [],
|
|
9894
|
+
queryParams: [],
|
|
9895
|
+
edgeCache: false,
|
|
9896
|
+
responseSchema: RolesDataSchema,
|
|
9897
|
+
responseType: "object"
|
|
9898
|
+
},
|
|
9899
|
+
{
|
|
9900
|
+
method: "GET",
|
|
9901
|
+
path: "/roles/{rolesUid}",
|
|
9902
|
+
chain: "roles",
|
|
9903
|
+
action: "get",
|
|
9904
|
+
aliases: [],
|
|
9905
|
+
pathParams: ["rolesUid"],
|
|
9906
|
+
queryParams: [],
|
|
9907
|
+
edgeCache: true,
|
|
9908
|
+
responseSchema: RolesDataSchema,
|
|
9909
|
+
responseType: "object"
|
|
9910
|
+
},
|
|
9911
|
+
{
|
|
9912
|
+
method: "PUT",
|
|
9913
|
+
path: "/roles/{rolesUid}",
|
|
9914
|
+
chain: "roles",
|
|
9915
|
+
action: "update",
|
|
9916
|
+
aliases: [],
|
|
9917
|
+
pathParams: ["rolesUid"],
|
|
9918
|
+
queryParams: [],
|
|
9919
|
+
edgeCache: false,
|
|
9920
|
+
responseSchema: RolesDataSchema,
|
|
9921
|
+
responseType: "object"
|
|
9922
|
+
},
|
|
9923
|
+
{
|
|
9924
|
+
method: "DELETE",
|
|
9925
|
+
path: "/roles/{rolesUid}",
|
|
9926
|
+
chain: "roles",
|
|
9927
|
+
action: "delete",
|
|
9928
|
+
aliases: [],
|
|
9929
|
+
pathParams: ["rolesUid"],
|
|
9930
|
+
queryParams: [],
|
|
9931
|
+
edgeCache: false,
|
|
9932
|
+
responseSchema: RolesDataSchema,
|
|
9933
|
+
responseType: "object"
|
|
9934
|
+
},
|
|
9935
|
+
{
|
|
9936
|
+
method: "GET",
|
|
9937
|
+
path: "/users",
|
|
9938
|
+
chain: "users",
|
|
9939
|
+
action: "list",
|
|
9940
|
+
aliases: [],
|
|
9941
|
+
pathParams: [],
|
|
9942
|
+
queryParams: ["email", "limit", "offset", "orderBy", "phoneNumber", "statusCd", "username"],
|
|
9943
|
+
edgeCache: true,
|
|
9944
|
+
responseSchema: UsersDataSchema,
|
|
9945
|
+
responseType: "array"
|
|
9946
|
+
},
|
|
9947
|
+
{
|
|
9948
|
+
method: "POST",
|
|
9949
|
+
path: "/users",
|
|
9950
|
+
chain: "users",
|
|
9951
|
+
action: "create",
|
|
9952
|
+
aliases: [],
|
|
9953
|
+
pathParams: [],
|
|
9954
|
+
queryParams: [],
|
|
9955
|
+
edgeCache: false,
|
|
9956
|
+
responseSchema: UsersDataSchema,
|
|
9957
|
+
responseType: "object"
|
|
9958
|
+
},
|
|
9959
|
+
{
|
|
9960
|
+
method: "POST",
|
|
9961
|
+
path: "/users/verify",
|
|
9962
|
+
chain: "users.verify",
|
|
9963
|
+
action: "create",
|
|
9964
|
+
aliases: [],
|
|
9965
|
+
pathParams: [],
|
|
9966
|
+
queryParams: [],
|
|
9967
|
+
edgeCache: false,
|
|
9968
|
+
responseSchema: UsersVerifyDataSchema,
|
|
9969
|
+
responseType: "object"
|
|
9970
|
+
},
|
|
9971
|
+
{
|
|
9972
|
+
method: "GET",
|
|
9973
|
+
path: "/users/{usersUid}",
|
|
9974
|
+
chain: "users",
|
|
9975
|
+
action: "get",
|
|
9976
|
+
aliases: [],
|
|
9977
|
+
pathParams: ["usersUid"],
|
|
9978
|
+
queryParams: [],
|
|
9979
|
+
edgeCache: true,
|
|
9980
|
+
responseSchema: UsersDataSchema,
|
|
9981
|
+
responseType: "object"
|
|
9982
|
+
},
|
|
9983
|
+
{
|
|
9984
|
+
method: "PUT",
|
|
9985
|
+
path: "/users/{usersUid}",
|
|
9986
|
+
chain: "users",
|
|
9987
|
+
action: "update",
|
|
9988
|
+
aliases: [],
|
|
9989
|
+
pathParams: ["usersUid"],
|
|
9990
|
+
queryParams: [],
|
|
9991
|
+
edgeCache: false,
|
|
9992
|
+
responseSchema: UsersDataSchema,
|
|
9993
|
+
responseType: "object"
|
|
9994
|
+
},
|
|
9995
|
+
{
|
|
9996
|
+
method: "DELETE",
|
|
9997
|
+
path: "/users/{usersUid}",
|
|
9998
|
+
chain: "users",
|
|
9999
|
+
action: "delete",
|
|
10000
|
+
aliases: [],
|
|
10001
|
+
pathParams: ["usersUid"],
|
|
10002
|
+
queryParams: [],
|
|
10003
|
+
edgeCache: false,
|
|
10004
|
+
responseSchema: UsersDataSchema,
|
|
10005
|
+
responseType: "object"
|
|
10006
|
+
},
|
|
10007
|
+
{
|
|
10008
|
+
method: "GET",
|
|
10009
|
+
path: "/users/{usersUid}/roles",
|
|
10010
|
+
chain: "users.roles",
|
|
10011
|
+
action: "list",
|
|
10012
|
+
aliases: [],
|
|
10013
|
+
pathParams: ["usersUid"],
|
|
10014
|
+
queryParams: ["limit", "offset", "orderBy", "statusCd"],
|
|
10015
|
+
edgeCache: true,
|
|
10016
|
+
responseSchema: UsersRolesDataSchema,
|
|
10017
|
+
responseType: "array"
|
|
10018
|
+
},
|
|
10019
|
+
{
|
|
10020
|
+
method: "POST",
|
|
10021
|
+
path: "/users/{usersUid}/roles",
|
|
10022
|
+
chain: "users.roles",
|
|
10023
|
+
action: "create",
|
|
10024
|
+
aliases: [],
|
|
10025
|
+
pathParams: ["usersUid"],
|
|
10026
|
+
queryParams: [],
|
|
10027
|
+
edgeCache: false,
|
|
10028
|
+
responseSchema: UsersRolesDataSchema,
|
|
10029
|
+
responseType: "object"
|
|
10030
|
+
},
|
|
10031
|
+
{
|
|
10032
|
+
method: "GET",
|
|
10033
|
+
path: "/users/{usersUid}/roles/{usersXRolesUid}",
|
|
10034
|
+
chain: "users.roles",
|
|
10035
|
+
action: "get",
|
|
10036
|
+
aliases: [],
|
|
10037
|
+
pathParams: ["usersUid", "usersXRolesUid"],
|
|
10038
|
+
queryParams: [],
|
|
10039
|
+
edgeCache: true,
|
|
10040
|
+
responseSchema: UsersRolesDataSchema,
|
|
10041
|
+
responseType: "object"
|
|
10042
|
+
},
|
|
10043
|
+
{
|
|
10044
|
+
method: "PUT",
|
|
10045
|
+
path: "/users/{usersUid}/roles/{usersXRolesUid}",
|
|
10046
|
+
chain: "users.roles",
|
|
10047
|
+
action: "update",
|
|
10048
|
+
aliases: [],
|
|
10049
|
+
pathParams: ["usersUid", "usersXRolesUid"],
|
|
10050
|
+
queryParams: [],
|
|
10051
|
+
edgeCache: false,
|
|
10052
|
+
responseSchema: UsersRolesDataSchema,
|
|
10053
|
+
responseType: "object"
|
|
10054
|
+
},
|
|
10055
|
+
{
|
|
10056
|
+
method: "DELETE",
|
|
10057
|
+
path: "/users/{usersUid}/roles/{usersXRolesUid}",
|
|
10058
|
+
chain: "users.roles",
|
|
10059
|
+
action: "delete",
|
|
10060
|
+
aliases: [],
|
|
10061
|
+
pathParams: ["usersUid", "usersXRolesUid"],
|
|
10062
|
+
queryParams: [],
|
|
10063
|
+
edgeCache: false,
|
|
10064
|
+
responseSchema: UsersRolesDataSchema,
|
|
10065
|
+
responseType: "object"
|
|
10066
|
+
}
|
|
10067
|
+
];
|
|
10068
|
+
|
|
10069
|
+
// src/services/agr-int/client.ts
|
|
10070
|
+
var AgrIntClient = class extends BaseServiceClient {
|
|
10071
|
+
constructor(http, baseUrl = "https://agr-int.augur-api.com") {
|
|
10072
|
+
super("agr-int", http, baseUrl);
|
|
10073
|
+
const boundExecuteRequest = (config, params, pathParams) => {
|
|
10074
|
+
return this.executeRequest(config, params, pathParams);
|
|
10075
|
+
};
|
|
10076
|
+
const proxy = createServiceProxy("agr-int", boundExecuteRequest, endpoints15);
|
|
10077
|
+
const dataProxy = createDataProxy(proxy);
|
|
10078
|
+
this.roles = proxy.roles;
|
|
10079
|
+
this.users = proxy.users;
|
|
10080
|
+
this.rolesData = dataProxy.roles;
|
|
10081
|
+
this.usersData = dataProxy.users;
|
|
10082
|
+
}
|
|
10083
|
+
getServiceDescription() {
|
|
10084
|
+
return "agr_int";
|
|
10085
|
+
}
|
|
10086
|
+
};
|
|
10087
|
+
|
|
9795
10088
|
// src/services/agr-work/resources/health-check.ts
|
|
9796
10089
|
function createHealthCheckResource15(executeRequest) {
|
|
9797
10090
|
return {
|
|
@@ -9951,13 +10244,7 @@ var AgrWorkClient = class extends BaseServiceClient {
|
|
|
9951
10244
|
constructor(http, baseUrl = "https://agr-work.augur-api.com") {
|
|
9952
10245
|
super("agr-work", http, baseUrl);
|
|
9953
10246
|
const boundExecuteRequest = (config, params, pathParams) => {
|
|
9954
|
-
|
|
9955
|
-
return this.executeRequest(config, params, pathParams);
|
|
9956
|
-
}
|
|
9957
|
-
if (params !== void 0 || config.paramsSchema !== void 0) {
|
|
9958
|
-
return this.executeRequest(config, params);
|
|
9959
|
-
}
|
|
9960
|
-
return this.executeRequest(config);
|
|
10247
|
+
return this.executeRequest(config, params, pathParams);
|
|
9961
10248
|
};
|
|
9962
10249
|
this.healthCheck = createHealthCheckResource15(boundExecuteRequest);
|
|
9963
10250
|
this.ping = createPingResource9(boundExecuteRequest);
|
|
@@ -9967,11 +10254,11 @@ var AgrWorkClient = class extends BaseServiceClient {
|
|
|
9967
10254
|
};
|
|
9968
10255
|
|
|
9969
10256
|
// src/services/avalara/generated/schemas.ts
|
|
9970
|
-
var
|
|
9971
|
-
var
|
|
10257
|
+
var v23 = __toESM(require("valibot"));
|
|
10258
|
+
var PassthroughDataSchema16 = v23.record(v23.string(), v23.unknown());
|
|
9972
10259
|
|
|
9973
10260
|
// src/services/avalara/generated/endpoints.ts
|
|
9974
|
-
var
|
|
10261
|
+
var endpoints16 = [
|
|
9975
10262
|
{
|
|
9976
10263
|
method: "POST",
|
|
9977
10264
|
path: "/rates",
|
|
@@ -9981,7 +10268,7 @@ var endpoints15 = [
|
|
|
9981
10268
|
pathParams: [],
|
|
9982
10269
|
queryParams: [],
|
|
9983
10270
|
edgeCache: false,
|
|
9984
|
-
responseSchema:
|
|
10271
|
+
responseSchema: PassthroughDataSchema16,
|
|
9985
10272
|
responseType: "passthrough"
|
|
9986
10273
|
}
|
|
9987
10274
|
];
|
|
@@ -10052,15 +10339,9 @@ var AvalaraClient = class extends BaseServiceClient {
|
|
|
10052
10339
|
constructor(http, baseUrl = "https://avalara.augur-api.com") {
|
|
10053
10340
|
super("avalara", http, baseUrl);
|
|
10054
10341
|
const boundExecuteRequest = (config, params, pathParams) => {
|
|
10055
|
-
|
|
10056
|
-
return this.executeRequest(config, params, pathParams);
|
|
10057
|
-
}
|
|
10058
|
-
if (params !== void 0 || config.paramsSchema !== void 0) {
|
|
10059
|
-
return this.executeRequest(config, params);
|
|
10060
|
-
}
|
|
10061
|
-
return this.executeRequest(config);
|
|
10342
|
+
return this.executeRequest(config, params, pathParams);
|
|
10062
10343
|
};
|
|
10063
|
-
const proxy = createServiceProxy("avalara", boundExecuteRequest,
|
|
10344
|
+
const proxy = createServiceProxy("avalara", boundExecuteRequest, endpoints16);
|
|
10064
10345
|
const dataProxy = createDataProxy(proxy);
|
|
10065
10346
|
this.rates = proxy.rates;
|
|
10066
10347
|
this.ratesData = dataProxy.rates;
|
|
@@ -10070,11 +10351,11 @@ var AvalaraClient = class extends BaseServiceClient {
|
|
|
10070
10351
|
};
|
|
10071
10352
|
|
|
10072
10353
|
// src/services/brand-folder/generated/schemas.ts
|
|
10073
|
-
var
|
|
10074
|
-
var
|
|
10354
|
+
var v24 = __toESM(require("valibot"));
|
|
10355
|
+
var PassthroughDataSchema17 = v24.record(v24.string(), v24.unknown());
|
|
10075
10356
|
|
|
10076
10357
|
// src/services/brand-folder/generated/endpoints.ts
|
|
10077
|
-
var
|
|
10358
|
+
var endpoints17 = [
|
|
10078
10359
|
{
|
|
10079
10360
|
method: "POST",
|
|
10080
10361
|
path: "/categories/focus",
|
|
@@ -10084,7 +10365,7 @@ var endpoints16 = [
|
|
|
10084
10365
|
pathParams: [],
|
|
10085
10366
|
queryParams: [],
|
|
10086
10367
|
edgeCache: false,
|
|
10087
|
-
responseSchema:
|
|
10368
|
+
responseSchema: PassthroughDataSchema17,
|
|
10088
10369
|
responseType: "passthrough"
|
|
10089
10370
|
}
|
|
10090
10371
|
];
|
|
@@ -10155,18 +10436,12 @@ var BrandFolderClient = class extends BaseServiceClient {
|
|
|
10155
10436
|
constructor(http, baseUrl = "https://brand-folder.augur-api.com") {
|
|
10156
10437
|
super("brand-folder", http, baseUrl);
|
|
10157
10438
|
const boundExecuteRequest = (config, params, pathParams) => {
|
|
10158
|
-
|
|
10159
|
-
return this.executeRequest(config, params, pathParams);
|
|
10160
|
-
}
|
|
10161
|
-
if (params !== void 0 || config.paramsSchema !== void 0) {
|
|
10162
|
-
return this.executeRequest(config, params);
|
|
10163
|
-
}
|
|
10164
|
-
return this.executeRequest(config);
|
|
10439
|
+
return this.executeRequest(config, params, pathParams);
|
|
10165
10440
|
};
|
|
10166
10441
|
const proxy = createServiceProxy(
|
|
10167
10442
|
"brand-folder",
|
|
10168
10443
|
boundExecuteRequest,
|
|
10169
|
-
|
|
10444
|
+
endpoints17
|
|
10170
10445
|
);
|
|
10171
10446
|
const dataProxy = createDataProxy(proxy);
|
|
10172
10447
|
this.categories = proxy.categories;
|
|
@@ -10180,15 +10455,15 @@ var BrandFolderClient = class extends BaseServiceClient {
|
|
|
10180
10455
|
};
|
|
10181
10456
|
|
|
10182
10457
|
// src/services/gregorovich/generated/schemas.ts
|
|
10183
|
-
var
|
|
10184
|
-
var ChatGptAskGetParamsSchema =
|
|
10458
|
+
var v25 = __toESM(require("valibot"));
|
|
10459
|
+
var ChatGptAskGetParamsSchema = v25.looseObject({
|
|
10185
10460
|
...EdgeCacheParamsSchema.entries,
|
|
10186
|
-
question:
|
|
10461
|
+
question: v25.string()
|
|
10187
10462
|
});
|
|
10188
|
-
var
|
|
10463
|
+
var PassthroughDataSchema18 = v25.record(v25.string(), v25.unknown());
|
|
10189
10464
|
|
|
10190
10465
|
// src/services/gregorovich/generated/endpoints.ts
|
|
10191
|
-
var
|
|
10466
|
+
var endpoints18 = [
|
|
10192
10467
|
{
|
|
10193
10468
|
method: "GET",
|
|
10194
10469
|
path: "/chat-gpt/ask",
|
|
@@ -10198,7 +10473,7 @@ var endpoints17 = [
|
|
|
10198
10473
|
pathParams: [],
|
|
10199
10474
|
queryParams: ["question"],
|
|
10200
10475
|
edgeCache: true,
|
|
10201
|
-
responseSchema:
|
|
10476
|
+
responseSchema: PassthroughDataSchema18,
|
|
10202
10477
|
responseType: "passthrough"
|
|
10203
10478
|
},
|
|
10204
10479
|
{
|
|
@@ -10210,7 +10485,7 @@ var endpoints17 = [
|
|
|
10210
10485
|
pathParams: [],
|
|
10211
10486
|
queryParams: [],
|
|
10212
10487
|
edgeCache: true,
|
|
10213
|
-
responseSchema:
|
|
10488
|
+
responseSchema: PassthroughDataSchema18,
|
|
10214
10489
|
responseType: "passthrough"
|
|
10215
10490
|
},
|
|
10216
10491
|
{
|
|
@@ -10222,7 +10497,7 @@ var endpoints17 = [
|
|
|
10222
10497
|
pathParams: [],
|
|
10223
10498
|
queryParams: [],
|
|
10224
10499
|
edgeCache: false,
|
|
10225
|
-
responseSchema:
|
|
10500
|
+
responseSchema: PassthroughDataSchema18,
|
|
10226
10501
|
responseType: "passthrough"
|
|
10227
10502
|
}
|
|
10228
10503
|
];
|
|
@@ -10293,18 +10568,12 @@ var GregorovichClient = class extends BaseServiceClient {
|
|
|
10293
10568
|
constructor(http, baseUrl = "https://gregorovich.augur-api.com") {
|
|
10294
10569
|
super("gregorovich", http, baseUrl);
|
|
10295
10570
|
const boundExecuteRequest = (config, params, pathParams) => {
|
|
10296
|
-
|
|
10297
|
-
return this.executeRequest(config, params, pathParams);
|
|
10298
|
-
}
|
|
10299
|
-
if (params !== void 0 || config.paramsSchema !== void 0) {
|
|
10300
|
-
return this.executeRequest(config, params);
|
|
10301
|
-
}
|
|
10302
|
-
return this.executeRequest(config);
|
|
10571
|
+
return this.executeRequest(config, params, pathParams);
|
|
10303
10572
|
};
|
|
10304
10573
|
const proxy = createServiceProxy(
|
|
10305
10574
|
"gregorovich",
|
|
10306
10575
|
boundExecuteRequest,
|
|
10307
|
-
|
|
10576
|
+
endpoints18
|
|
10308
10577
|
);
|
|
10309
10578
|
const dataProxy = createDataProxy(proxy);
|
|
10310
10579
|
this.chatGpt = proxy.chatGpt;
|
|
@@ -10319,139 +10588,139 @@ var GregorovichClient = class extends BaseServiceClient {
|
|
|
10319
10588
|
};
|
|
10320
10589
|
|
|
10321
10590
|
// src/services/logistics/generated/schemas.ts
|
|
10322
|
-
var
|
|
10323
|
-
var FedexRatesListParamsSchema =
|
|
10324
|
-
...EdgeCacheParamsSchema.entries,
|
|
10325
|
-
fromAddress1:
|
|
10326
|
-
fromCity:
|
|
10327
|
-
fromCountryCode:
|
|
10328
|
-
fromPostalCode:
|
|
10329
|
-
fromStateProvinceCode:
|
|
10330
|
-
toAddress1:
|
|
10331
|
-
toCity:
|
|
10332
|
-
toCountryCode:
|
|
10333
|
-
toPostalCode:
|
|
10334
|
-
toResidential:
|
|
10335
|
-
toStateProvinceCode:
|
|
10336
|
-
weight:
|
|
10337
|
-
});
|
|
10338
|
-
var RtsBrandsListParamsSchema =
|
|
10339
|
-
...EdgeCacheParamsSchema.entries,
|
|
10340
|
-
search:
|
|
10341
|
-
});
|
|
10342
|
-
var RtsBrandsBrandIdMachinesListParamsSchema =
|
|
10343
|
-
...EdgeCacheParamsSchema.entries,
|
|
10344
|
-
search:
|
|
10345
|
-
});
|
|
10346
|
-
var RtsSearchMachinesListParamsSchema =
|
|
10347
|
-
...EdgeCacheParamsSchema.entries,
|
|
10348
|
-
q:
|
|
10349
|
-
});
|
|
10350
|
-
var RtsTracksListParamsSchema =
|
|
10351
|
-
...EdgeCacheParamsSchema.entries,
|
|
10352
|
-
search:
|
|
10353
|
-
trackClass:
|
|
10354
|
-
});
|
|
10355
|
-
var ShipviaRatesListParamsSchema =
|
|
10356
|
-
...EdgeCacheParamsSchema.entries,
|
|
10357
|
-
carriers:
|
|
10358
|
-
dimensionUnit:
|
|
10359
|
-
fromCity:
|
|
10360
|
-
fromCountry:
|
|
10361
|
-
fromPostalCode:
|
|
10362
|
-
fromState:
|
|
10363
|
-
locationId:
|
|
10364
|
-
packageHeight:
|
|
10365
|
-
packageLength:
|
|
10366
|
-
packageWidth:
|
|
10367
|
-
residential:
|
|
10368
|
-
serviceType:
|
|
10369
|
-
toCity:
|
|
10370
|
-
toCountry:
|
|
10371
|
-
toPostalCode:
|
|
10372
|
-
toState:
|
|
10373
|
-
totalWeight:
|
|
10374
|
-
weightUnit:
|
|
10375
|
-
});
|
|
10376
|
-
var ShipviaRatesLtlListParamsSchema =
|
|
10377
|
-
...EdgeCacheParamsSchema.entries,
|
|
10378
|
-
carriers:
|
|
10379
|
-
commodityClass:
|
|
10380
|
-
commodityDescription:
|
|
10381
|
-
deliveryInstructions:
|
|
10382
|
-
dimensionUnit:
|
|
10383
|
-
fromCity:
|
|
10384
|
-
fromCountry:
|
|
10385
|
-
fromPostalCode:
|
|
10386
|
-
fromState:
|
|
10387
|
-
isHazMat:
|
|
10388
|
-
locationId:
|
|
10389
|
-
packageHeight:
|
|
10390
|
-
packageLength:
|
|
10391
|
-
packageWidth:
|
|
10392
|
-
packagingType:
|
|
10393
|
-
pickupInstructions:
|
|
10394
|
-
quantity:
|
|
10395
|
-
toCity:
|
|
10396
|
-
toCountry:
|
|
10397
|
-
toPostalCode:
|
|
10398
|
-
toState:
|
|
10399
|
-
totalWeight:
|
|
10400
|
-
weightUnit:
|
|
10401
|
-
});
|
|
10402
|
-
var SpeedshipFreightListParamsSchema =
|
|
10403
|
-
...EdgeCacheParamsSchema.entries,
|
|
10404
|
-
deliveryInstructions:
|
|
10405
|
-
dimensionUnit:
|
|
10406
|
-
fromAddressLine:
|
|
10407
|
-
fromCity:
|
|
10408
|
-
fromCompanyName:
|
|
10409
|
-
fromCountryCode:
|
|
10410
|
-
fromFirstName:
|
|
10411
|
-
fromLastName:
|
|
10412
|
-
fromPhone:
|
|
10413
|
-
fromPostalCode:
|
|
10414
|
-
fromState:
|
|
10415
|
-
handlingCharge:
|
|
10416
|
-
handlingChargeUnit:
|
|
10417
|
-
international:
|
|
10418
|
-
packageHeight:
|
|
10419
|
-
packageLength:
|
|
10420
|
-
packageWidth:
|
|
10421
|
-
pickupInstructions:
|
|
10422
|
-
productType:
|
|
10423
|
-
quantity:
|
|
10424
|
-
responseFormat:
|
|
10425
|
-
toAddressLine:
|
|
10426
|
-
toCity:
|
|
10427
|
-
toCompanyName:
|
|
10428
|
-
toCountryCode:
|
|
10429
|
-
toFirstName:
|
|
10430
|
-
toLastName:
|
|
10431
|
-
toPhone:
|
|
10432
|
-
toPostalCode:
|
|
10433
|
-
toRegion:
|
|
10434
|
-
totalWeight:
|
|
10435
|
-
weightUnit:
|
|
10436
|
-
});
|
|
10437
|
-
var UPSRatesListParamsSchema =
|
|
10438
|
-
...EdgeCacheParamsSchema.entries,
|
|
10439
|
-
fromAddress1:
|
|
10440
|
-
fromCity:
|
|
10441
|
-
fromCountryCode:
|
|
10442
|
-
fromPostalCode:
|
|
10443
|
-
fromStateProvinceCode:
|
|
10444
|
-
toAddress1:
|
|
10445
|
-
toCity:
|
|
10446
|
-
toCountryCode:
|
|
10447
|
-
toPostalCode:
|
|
10448
|
-
toStateProvinceCode:
|
|
10449
|
-
weight:
|
|
10591
|
+
var v26 = __toESM(require("valibot"));
|
|
10592
|
+
var FedexRatesListParamsSchema = v26.looseObject({
|
|
10593
|
+
...EdgeCacheParamsSchema.entries,
|
|
10594
|
+
fromAddress1: v26.string(),
|
|
10595
|
+
fromCity: v26.string(),
|
|
10596
|
+
fromCountryCode: v26.optional(v26.string()),
|
|
10597
|
+
fromPostalCode: v26.string(),
|
|
10598
|
+
fromStateProvinceCode: v26.string(),
|
|
10599
|
+
toAddress1: v26.string(),
|
|
10600
|
+
toCity: v26.string(),
|
|
10601
|
+
toCountryCode: v26.optional(v26.string()),
|
|
10602
|
+
toPostalCode: v26.string(),
|
|
10603
|
+
toResidential: v26.optional(v26.boolean()),
|
|
10604
|
+
toStateProvinceCode: v26.string(),
|
|
10605
|
+
weight: v26.pipe(v26.unknown(), v26.transform(Number))
|
|
10606
|
+
});
|
|
10607
|
+
var RtsBrandsListParamsSchema = v26.looseObject({
|
|
10608
|
+
...EdgeCacheParamsSchema.entries,
|
|
10609
|
+
search: v26.optional(v26.string())
|
|
10610
|
+
});
|
|
10611
|
+
var RtsBrandsBrandIdMachinesListParamsSchema = v26.looseObject({
|
|
10612
|
+
...EdgeCacheParamsSchema.entries,
|
|
10613
|
+
search: v26.optional(v26.string())
|
|
10614
|
+
});
|
|
10615
|
+
var RtsSearchMachinesListParamsSchema = v26.looseObject({
|
|
10616
|
+
...EdgeCacheParamsSchema.entries,
|
|
10617
|
+
q: v26.string()
|
|
10618
|
+
});
|
|
10619
|
+
var RtsTracksListParamsSchema = v26.looseObject({
|
|
10620
|
+
...EdgeCacheParamsSchema.entries,
|
|
10621
|
+
search: v26.optional(v26.string()),
|
|
10622
|
+
trackClass: v26.optional(v26.string())
|
|
10623
|
+
});
|
|
10624
|
+
var ShipviaRatesListParamsSchema = v26.looseObject({
|
|
10625
|
+
...EdgeCacheParamsSchema.entries,
|
|
10626
|
+
carriers: v26.optional(v26.string()),
|
|
10627
|
+
dimensionUnit: v26.optional(v26.string()),
|
|
10628
|
+
fromCity: v26.optional(v26.string()),
|
|
10629
|
+
fromCountry: v26.optional(v26.string()),
|
|
10630
|
+
fromPostalCode: v26.string(),
|
|
10631
|
+
fromState: v26.optional(v26.string()),
|
|
10632
|
+
locationId: v26.pipe(v26.unknown(), v26.transform(Number)),
|
|
10633
|
+
packageHeight: v26.optional(v26.pipe(v26.unknown(), v26.transform(Number))),
|
|
10634
|
+
packageLength: v26.optional(v26.pipe(v26.unknown(), v26.transform(Number))),
|
|
10635
|
+
packageWidth: v26.optional(v26.pipe(v26.unknown(), v26.transform(Number))),
|
|
10636
|
+
residential: v26.optional(v26.boolean()),
|
|
10637
|
+
serviceType: v26.optional(v26.string()),
|
|
10638
|
+
toCity: v26.optional(v26.string()),
|
|
10639
|
+
toCountry: v26.optional(v26.string()),
|
|
10640
|
+
toPostalCode: v26.string(),
|
|
10641
|
+
toState: v26.optional(v26.string()),
|
|
10642
|
+
totalWeight: v26.pipe(v26.unknown(), v26.transform(Number)),
|
|
10643
|
+
weightUnit: v26.string()
|
|
10644
|
+
});
|
|
10645
|
+
var ShipviaRatesLtlListParamsSchema = v26.looseObject({
|
|
10646
|
+
...EdgeCacheParamsSchema.entries,
|
|
10647
|
+
carriers: v26.optional(v26.string()),
|
|
10648
|
+
commodityClass: v26.string(),
|
|
10649
|
+
commodityDescription: v26.string(),
|
|
10650
|
+
deliveryInstructions: v26.optional(v26.string()),
|
|
10651
|
+
dimensionUnit: v26.optional(v26.string()),
|
|
10652
|
+
fromCity: v26.optional(v26.string()),
|
|
10653
|
+
fromCountry: v26.optional(v26.string()),
|
|
10654
|
+
fromPostalCode: v26.string(),
|
|
10655
|
+
fromState: v26.optional(v26.string()),
|
|
10656
|
+
isHazMat: v26.optional(v26.boolean()),
|
|
10657
|
+
locationId: v26.pipe(v26.unknown(), v26.transform(Number)),
|
|
10658
|
+
packageHeight: v26.optional(v26.pipe(v26.unknown(), v26.transform(Number))),
|
|
10659
|
+
packageLength: v26.optional(v26.pipe(v26.unknown(), v26.transform(Number))),
|
|
10660
|
+
packageWidth: v26.optional(v26.pipe(v26.unknown(), v26.transform(Number))),
|
|
10661
|
+
packagingType: v26.string(),
|
|
10662
|
+
pickupInstructions: v26.optional(v26.string()),
|
|
10663
|
+
quantity: v26.optional(v26.pipe(v26.unknown(), v26.transform(Number))),
|
|
10664
|
+
toCity: v26.optional(v26.string()),
|
|
10665
|
+
toCountry: v26.optional(v26.string()),
|
|
10666
|
+
toPostalCode: v26.string(),
|
|
10667
|
+
toState: v26.optional(v26.string()),
|
|
10668
|
+
totalWeight: v26.pipe(v26.unknown(), v26.transform(Number)),
|
|
10669
|
+
weightUnit: v26.string()
|
|
10670
|
+
});
|
|
10671
|
+
var SpeedshipFreightListParamsSchema = v26.looseObject({
|
|
10672
|
+
...EdgeCacheParamsSchema.entries,
|
|
10673
|
+
deliveryInstructions: v26.optional(v26.string()),
|
|
10674
|
+
dimensionUnit: v26.string(),
|
|
10675
|
+
fromAddressLine: v26.string(),
|
|
10676
|
+
fromCity: v26.string(),
|
|
10677
|
+
fromCompanyName: v26.string(),
|
|
10678
|
+
fromCountryCode: v26.string(),
|
|
10679
|
+
fromFirstName: v26.string(),
|
|
10680
|
+
fromLastName: v26.string(),
|
|
10681
|
+
fromPhone: v26.string(),
|
|
10682
|
+
fromPostalCode: v26.string(),
|
|
10683
|
+
fromState: v26.string(),
|
|
10684
|
+
handlingCharge: v26.optional(v26.pipe(v26.unknown(), v26.transform(Number))),
|
|
10685
|
+
handlingChargeUnit: v26.optional(v26.string()),
|
|
10686
|
+
international: v26.optional(v26.boolean()),
|
|
10687
|
+
packageHeight: v26.optional(v26.pipe(v26.unknown(), v26.transform(Number))),
|
|
10688
|
+
packageLength: v26.pipe(v26.unknown(), v26.transform(Number)),
|
|
10689
|
+
packageWidth: v26.pipe(v26.unknown(), v26.transform(Number)),
|
|
10690
|
+
pickupInstructions: v26.optional(v26.string()),
|
|
10691
|
+
productType: v26.string(),
|
|
10692
|
+
quantity: v26.pipe(v26.unknown(), v26.transform(Number)),
|
|
10693
|
+
responseFormat: v26.string(),
|
|
10694
|
+
toAddressLine: v26.string(),
|
|
10695
|
+
toCity: v26.string(),
|
|
10696
|
+
toCompanyName: v26.string(),
|
|
10697
|
+
toCountryCode: v26.string(),
|
|
10698
|
+
toFirstName: v26.string(),
|
|
10699
|
+
toLastName: v26.string(),
|
|
10700
|
+
toPhone: v26.string(),
|
|
10701
|
+
toPostalCode: v26.string(),
|
|
10702
|
+
toRegion: v26.string(),
|
|
10703
|
+
totalWeight: v26.pipe(v26.unknown(), v26.transform(Number)),
|
|
10704
|
+
weightUnit: v26.string()
|
|
10705
|
+
});
|
|
10706
|
+
var UPSRatesListParamsSchema = v26.looseObject({
|
|
10707
|
+
...EdgeCacheParamsSchema.entries,
|
|
10708
|
+
fromAddress1: v26.string(),
|
|
10709
|
+
fromCity: v26.string(),
|
|
10710
|
+
fromCountryCode: v26.optional(v26.string()),
|
|
10711
|
+
fromPostalCode: v26.string(),
|
|
10712
|
+
fromStateProvinceCode: v26.string(),
|
|
10713
|
+
toAddress1: v26.string(),
|
|
10714
|
+
toCity: v26.string(),
|
|
10715
|
+
toCountryCode: v26.optional(v26.string()),
|
|
10716
|
+
toPostalCode: v26.string(),
|
|
10717
|
+
toStateProvinceCode: v26.string(),
|
|
10718
|
+
weight: v26.pipe(v26.unknown(), v26.transform(Number))
|
|
10450
10719
|
});
|
|
10451
|
-
var
|
|
10720
|
+
var PassthroughDataSchema19 = v26.record(v26.string(), v26.unknown());
|
|
10452
10721
|
|
|
10453
10722
|
// src/services/logistics/generated/endpoints.ts
|
|
10454
|
-
var
|
|
10723
|
+
var endpoints19 = [
|
|
10455
10724
|
{
|
|
10456
10725
|
method: "GET",
|
|
10457
10726
|
path: "/fedex/rates",
|
|
@@ -10474,7 +10743,7 @@ var endpoints18 = [
|
|
|
10474
10743
|
"weight"
|
|
10475
10744
|
],
|
|
10476
10745
|
edgeCache: true,
|
|
10477
|
-
responseSchema:
|
|
10746
|
+
responseSchema: PassthroughDataSchema19,
|
|
10478
10747
|
responseType: "passthrough"
|
|
10479
10748
|
},
|
|
10480
10749
|
{
|
|
@@ -10486,7 +10755,7 @@ var endpoints18 = [
|
|
|
10486
10755
|
pathParams: [],
|
|
10487
10756
|
queryParams: ["search"],
|
|
10488
10757
|
edgeCache: true,
|
|
10489
|
-
responseSchema:
|
|
10758
|
+
responseSchema: PassthroughDataSchema19,
|
|
10490
10759
|
responseType: "passthrough"
|
|
10491
10760
|
},
|
|
10492
10761
|
{
|
|
@@ -10498,7 +10767,7 @@ var endpoints18 = [
|
|
|
10498
10767
|
pathParams: ["brandId"],
|
|
10499
10768
|
queryParams: ["search"],
|
|
10500
10769
|
edgeCache: true,
|
|
10501
|
-
responseSchema:
|
|
10770
|
+
responseSchema: PassthroughDataSchema19,
|
|
10502
10771
|
responseType: "passthrough"
|
|
10503
10772
|
},
|
|
10504
10773
|
{
|
|
@@ -10510,7 +10779,7 @@ var endpoints18 = [
|
|
|
10510
10779
|
pathParams: ["machineId"],
|
|
10511
10780
|
queryParams: [],
|
|
10512
10781
|
edgeCache: true,
|
|
10513
|
-
responseSchema:
|
|
10782
|
+
responseSchema: PassthroughDataSchema19,
|
|
10514
10783
|
responseType: "passthrough"
|
|
10515
10784
|
},
|
|
10516
10785
|
{
|
|
@@ -10522,7 +10791,7 @@ var endpoints18 = [
|
|
|
10522
10791
|
pathParams: [],
|
|
10523
10792
|
queryParams: ["q"],
|
|
10524
10793
|
edgeCache: true,
|
|
10525
|
-
responseSchema:
|
|
10794
|
+
responseSchema: PassthroughDataSchema19,
|
|
10526
10795
|
responseType: "passthrough"
|
|
10527
10796
|
},
|
|
10528
10797
|
{
|
|
@@ -10534,7 +10803,7 @@ var endpoints18 = [
|
|
|
10534
10803
|
pathParams: ["trackId"],
|
|
10535
10804
|
queryParams: [],
|
|
10536
10805
|
edgeCache: true,
|
|
10537
|
-
responseSchema:
|
|
10806
|
+
responseSchema: PassthroughDataSchema19,
|
|
10538
10807
|
responseType: "passthrough"
|
|
10539
10808
|
},
|
|
10540
10809
|
{
|
|
@@ -10546,7 +10815,7 @@ var endpoints18 = [
|
|
|
10546
10815
|
pathParams: [],
|
|
10547
10816
|
queryParams: ["search", "trackClass"],
|
|
10548
10817
|
edgeCache: true,
|
|
10549
|
-
responseSchema:
|
|
10818
|
+
responseSchema: PassthroughDataSchema19,
|
|
10550
10819
|
responseType: "passthrough"
|
|
10551
10820
|
},
|
|
10552
10821
|
{
|
|
@@ -10577,7 +10846,7 @@ var endpoints18 = [
|
|
|
10577
10846
|
"weightUnit"
|
|
10578
10847
|
],
|
|
10579
10848
|
edgeCache: true,
|
|
10580
|
-
responseSchema:
|
|
10849
|
+
responseSchema: PassthroughDataSchema19,
|
|
10581
10850
|
responseType: "passthrough"
|
|
10582
10851
|
},
|
|
10583
10852
|
{
|
|
@@ -10613,7 +10882,7 @@ var endpoints18 = [
|
|
|
10613
10882
|
"weightUnit"
|
|
10614
10883
|
],
|
|
10615
10884
|
edgeCache: true,
|
|
10616
|
-
responseSchema:
|
|
10885
|
+
responseSchema: PassthroughDataSchema19,
|
|
10617
10886
|
responseType: "passthrough"
|
|
10618
10887
|
},
|
|
10619
10888
|
{
|
|
@@ -10658,7 +10927,7 @@ var endpoints18 = [
|
|
|
10658
10927
|
"weightUnit"
|
|
10659
10928
|
],
|
|
10660
10929
|
edgeCache: true,
|
|
10661
|
-
responseSchema:
|
|
10930
|
+
responseSchema: PassthroughDataSchema19,
|
|
10662
10931
|
responseType: "passthrough"
|
|
10663
10932
|
},
|
|
10664
10933
|
{
|
|
@@ -10682,7 +10951,7 @@ var endpoints18 = [
|
|
|
10682
10951
|
"weight"
|
|
10683
10952
|
],
|
|
10684
10953
|
edgeCache: true,
|
|
10685
|
-
responseSchema:
|
|
10954
|
+
responseSchema: PassthroughDataSchema19,
|
|
10686
10955
|
responseType: "passthrough"
|
|
10687
10956
|
}
|
|
10688
10957
|
];
|
|
@@ -10820,18 +11089,12 @@ var LogisticsClient = class extends BaseServiceClient {
|
|
|
10820
11089
|
constructor(http, baseUrl = "https://logistics.augur-api.com") {
|
|
10821
11090
|
super("logistics", http, baseUrl);
|
|
10822
11091
|
const boundExecuteRequest = (config, params, pathParams) => {
|
|
10823
|
-
|
|
10824
|
-
return this.executeRequest(config, params, pathParams);
|
|
10825
|
-
}
|
|
10826
|
-
if (params !== void 0 || config.paramsSchema !== void 0) {
|
|
10827
|
-
return this.executeRequest(config, params);
|
|
10828
|
-
}
|
|
10829
|
-
return this.executeRequest(config);
|
|
11092
|
+
return this.executeRequest(config, params, pathParams);
|
|
10830
11093
|
};
|
|
10831
11094
|
const proxy = createServiceProxy(
|
|
10832
11095
|
"logistics",
|
|
10833
11096
|
boundExecuteRequest,
|
|
10834
|
-
|
|
11097
|
+
endpoints19
|
|
10835
11098
|
);
|
|
10836
11099
|
const dataProxy = createDataProxy(proxy);
|
|
10837
11100
|
this.fedex = proxy.fedex;
|
|
@@ -10855,51 +11118,51 @@ var LogisticsClient = class extends BaseServiceClient {
|
|
|
10855
11118
|
};
|
|
10856
11119
|
|
|
10857
11120
|
// src/services/p21-apis/generated/schemas.ts
|
|
10858
|
-
var
|
|
10859
|
-
var TransCategoryGetParamsSchema =
|
|
11121
|
+
var v27 = __toESM(require("valibot"));
|
|
11122
|
+
var TransCategoryGetParamsSchema = v27.looseObject({
|
|
10860
11123
|
...EdgeCacheParamsSchema.entries,
|
|
10861
|
-
category_id:
|
|
11124
|
+
category_id: v27.optional(v27.string())
|
|
10862
11125
|
});
|
|
10863
|
-
var TransCategoryUpdateParamsSchema =
|
|
10864
|
-
category_id:
|
|
11126
|
+
var TransCategoryUpdateParamsSchema = v27.looseObject({
|
|
11127
|
+
category_id: v27.optional(v27.string())
|
|
10865
11128
|
});
|
|
10866
|
-
var TransCategoryDeleteParamsSchema =
|
|
10867
|
-
category_id:
|
|
11129
|
+
var TransCategoryDeleteParamsSchema = v27.looseObject({
|
|
11130
|
+
category_id: v27.optional(v27.string())
|
|
10868
11131
|
});
|
|
10869
|
-
var TransCompanyGetParamsSchema =
|
|
11132
|
+
var TransCompanyGetParamsSchema = v27.looseObject({
|
|
10870
11133
|
...EdgeCacheParamsSchema.entries,
|
|
10871
|
-
company_id:
|
|
11134
|
+
company_id: v27.optional(v27.string())
|
|
10872
11135
|
});
|
|
10873
|
-
var TransCompanyUpdateParamsSchema =
|
|
10874
|
-
company_id:
|
|
11136
|
+
var TransCompanyUpdateParamsSchema = v27.looseObject({
|
|
11137
|
+
company_id: v27.optional(v27.string())
|
|
10875
11138
|
});
|
|
10876
|
-
var TransCompanyDeleteParamsSchema =
|
|
10877
|
-
company_id:
|
|
11139
|
+
var TransCompanyDeleteParamsSchema = v27.looseObject({
|
|
11140
|
+
company_id: v27.optional(v27.string())
|
|
10878
11141
|
});
|
|
10879
|
-
var TransUserGetParamsSchema =
|
|
11142
|
+
var TransUserGetParamsSchema = v27.looseObject({
|
|
10880
11143
|
...EdgeCacheParamsSchema.entries,
|
|
10881
|
-
user_id:
|
|
11144
|
+
user_id: v27.optional(v27.string())
|
|
10882
11145
|
});
|
|
10883
|
-
var TransUserUpdateParamsSchema =
|
|
10884
|
-
user_id:
|
|
11146
|
+
var TransUserUpdateParamsSchema = v27.looseObject({
|
|
11147
|
+
user_id: v27.optional(v27.string())
|
|
10885
11148
|
});
|
|
10886
|
-
var TransUserDeleteParamsSchema =
|
|
10887
|
-
user_id:
|
|
11149
|
+
var TransUserDeleteParamsSchema = v27.looseObject({
|
|
11150
|
+
user_id: v27.optional(v27.string())
|
|
10888
11151
|
});
|
|
10889
|
-
var TransWebDisplayTypeGetParamsSchema =
|
|
11152
|
+
var TransWebDisplayTypeGetParamsSchema = v27.looseObject({
|
|
10890
11153
|
...EdgeCacheParamsSchema.entries,
|
|
10891
|
-
web_display_type_id:
|
|
11154
|
+
web_display_type_id: v27.optional(v27.string())
|
|
10892
11155
|
});
|
|
10893
|
-
var TransWebDisplayTypeUpdateParamsSchema =
|
|
10894
|
-
web_display_type_id:
|
|
11156
|
+
var TransWebDisplayTypeUpdateParamsSchema = v27.looseObject({
|
|
11157
|
+
web_display_type_id: v27.optional(v27.string())
|
|
10895
11158
|
});
|
|
10896
|
-
var TransWebDisplayTypeDeleteParamsSchema =
|
|
10897
|
-
web_display_type_id:
|
|
11159
|
+
var TransWebDisplayTypeDeleteParamsSchema = v27.looseObject({
|
|
11160
|
+
web_display_type_id: v27.optional(v27.string())
|
|
10898
11161
|
});
|
|
10899
|
-
var
|
|
11162
|
+
var PassthroughDataSchema20 = v27.record(v27.string(), v27.unknown());
|
|
10900
11163
|
|
|
10901
11164
|
// src/services/p21-apis/generated/endpoints.ts
|
|
10902
|
-
var
|
|
11165
|
+
var endpoints20 = [
|
|
10903
11166
|
{
|
|
10904
11167
|
method: "GET",
|
|
10905
11168
|
path: "/entity-contacts/refresh",
|
|
@@ -10909,7 +11172,7 @@ var endpoints19 = [
|
|
|
10909
11172
|
pathParams: [],
|
|
10910
11173
|
queryParams: [],
|
|
10911
11174
|
edgeCache: true,
|
|
10912
|
-
responseSchema:
|
|
11175
|
+
responseSchema: PassthroughDataSchema20,
|
|
10913
11176
|
responseType: "passthrough"
|
|
10914
11177
|
},
|
|
10915
11178
|
{
|
|
@@ -10921,7 +11184,7 @@ var endpoints19 = [
|
|
|
10921
11184
|
pathParams: [],
|
|
10922
11185
|
queryParams: [],
|
|
10923
11186
|
edgeCache: true,
|
|
10924
|
-
responseSchema:
|
|
11187
|
+
responseSchema: PassthroughDataSchema20,
|
|
10925
11188
|
responseType: "passthrough"
|
|
10926
11189
|
},
|
|
10927
11190
|
{
|
|
@@ -10933,7 +11196,7 @@ var endpoints19 = [
|
|
|
10933
11196
|
pathParams: [],
|
|
10934
11197
|
queryParams: [],
|
|
10935
11198
|
edgeCache: false,
|
|
10936
|
-
responseSchema:
|
|
11199
|
+
responseSchema: PassthroughDataSchema20,
|
|
10937
11200
|
responseType: "passthrough"
|
|
10938
11201
|
},
|
|
10939
11202
|
{
|
|
@@ -10945,7 +11208,7 @@ var endpoints19 = [
|
|
|
10945
11208
|
pathParams: ["categoryUid"],
|
|
10946
11209
|
queryParams: ["category_id"],
|
|
10947
11210
|
edgeCache: true,
|
|
10948
|
-
responseSchema:
|
|
11211
|
+
responseSchema: PassthroughDataSchema20,
|
|
10949
11212
|
responseType: "passthrough"
|
|
10950
11213
|
},
|
|
10951
11214
|
{
|
|
@@ -10957,7 +11220,7 @@ var endpoints19 = [
|
|
|
10957
11220
|
pathParams: ["categoryUid"],
|
|
10958
11221
|
queryParams: ["category_id"],
|
|
10959
11222
|
edgeCache: false,
|
|
10960
|
-
responseSchema:
|
|
11223
|
+
responseSchema: PassthroughDataSchema20,
|
|
10961
11224
|
responseType: "passthrough"
|
|
10962
11225
|
},
|
|
10963
11226
|
{
|
|
@@ -10969,7 +11232,7 @@ var endpoints19 = [
|
|
|
10969
11232
|
pathParams: ["categoryUid"],
|
|
10970
11233
|
queryParams: ["category_id"],
|
|
10971
11234
|
edgeCache: false,
|
|
10972
|
-
responseSchema:
|
|
11235
|
+
responseSchema: PassthroughDataSchema20,
|
|
10973
11236
|
responseType: "passthrough"
|
|
10974
11237
|
},
|
|
10975
11238
|
{
|
|
@@ -10981,7 +11244,7 @@ var endpoints19 = [
|
|
|
10981
11244
|
pathParams: [],
|
|
10982
11245
|
queryParams: [],
|
|
10983
11246
|
edgeCache: false,
|
|
10984
|
-
responseSchema:
|
|
11247
|
+
responseSchema: PassthroughDataSchema20,
|
|
10985
11248
|
responseType: "passthrough"
|
|
10986
11249
|
},
|
|
10987
11250
|
{
|
|
@@ -10993,7 +11256,7 @@ var endpoints19 = [
|
|
|
10993
11256
|
pathParams: ["companyUid"],
|
|
10994
11257
|
queryParams: ["company_id"],
|
|
10995
11258
|
edgeCache: true,
|
|
10996
|
-
responseSchema:
|
|
11259
|
+
responseSchema: PassthroughDataSchema20,
|
|
10997
11260
|
responseType: "passthrough"
|
|
10998
11261
|
},
|
|
10999
11262
|
{
|
|
@@ -11005,7 +11268,7 @@ var endpoints19 = [
|
|
|
11005
11268
|
pathParams: ["companyUid"],
|
|
11006
11269
|
queryParams: ["company_id"],
|
|
11007
11270
|
edgeCache: false,
|
|
11008
|
-
responseSchema:
|
|
11271
|
+
responseSchema: PassthroughDataSchema20,
|
|
11009
11272
|
responseType: "passthrough"
|
|
11010
11273
|
},
|
|
11011
11274
|
{
|
|
@@ -11017,7 +11280,7 @@ var endpoints19 = [
|
|
|
11017
11280
|
pathParams: ["companyUid"],
|
|
11018
11281
|
queryParams: ["company_id"],
|
|
11019
11282
|
edgeCache: false,
|
|
11020
|
-
responseSchema:
|
|
11283
|
+
responseSchema: PassthroughDataSchema20,
|
|
11021
11284
|
responseType: "passthrough"
|
|
11022
11285
|
},
|
|
11023
11286
|
{
|
|
@@ -11029,7 +11292,7 @@ var endpoints19 = [
|
|
|
11029
11292
|
pathParams: ["poNo"],
|
|
11030
11293
|
queryParams: [],
|
|
11031
11294
|
edgeCache: true,
|
|
11032
|
-
responseSchema:
|
|
11295
|
+
responseSchema: PassthroughDataSchema20,
|
|
11033
11296
|
responseType: "passthrough"
|
|
11034
11297
|
},
|
|
11035
11298
|
{
|
|
@@ -11041,7 +11304,7 @@ var endpoints19 = [
|
|
|
11041
11304
|
pathParams: ["poNo"],
|
|
11042
11305
|
queryParams: [],
|
|
11043
11306
|
edgeCache: false,
|
|
11044
|
-
responseSchema:
|
|
11307
|
+
responseSchema: PassthroughDataSchema20,
|
|
11045
11308
|
responseType: "passthrough"
|
|
11046
11309
|
},
|
|
11047
11310
|
{
|
|
@@ -11053,7 +11316,7 @@ var endpoints19 = [
|
|
|
11053
11316
|
pathParams: [],
|
|
11054
11317
|
queryParams: [],
|
|
11055
11318
|
edgeCache: false,
|
|
11056
|
-
responseSchema:
|
|
11319
|
+
responseSchema: PassthroughDataSchema20,
|
|
11057
11320
|
responseType: "passthrough"
|
|
11058
11321
|
},
|
|
11059
11322
|
{
|
|
@@ -11065,7 +11328,7 @@ var endpoints19 = [
|
|
|
11065
11328
|
pathParams: ["usersUid"],
|
|
11066
11329
|
queryParams: ["user_id"],
|
|
11067
11330
|
edgeCache: true,
|
|
11068
|
-
responseSchema:
|
|
11331
|
+
responseSchema: PassthroughDataSchema20,
|
|
11069
11332
|
responseType: "passthrough"
|
|
11070
11333
|
},
|
|
11071
11334
|
{
|
|
@@ -11077,7 +11340,7 @@ var endpoints19 = [
|
|
|
11077
11340
|
pathParams: ["usersUid"],
|
|
11078
11341
|
queryParams: ["user_id"],
|
|
11079
11342
|
edgeCache: false,
|
|
11080
|
-
responseSchema:
|
|
11343
|
+
responseSchema: PassthroughDataSchema20,
|
|
11081
11344
|
responseType: "passthrough"
|
|
11082
11345
|
},
|
|
11083
11346
|
{
|
|
@@ -11089,7 +11352,7 @@ var endpoints19 = [
|
|
|
11089
11352
|
pathParams: ["usersUid"],
|
|
11090
11353
|
queryParams: ["user_id"],
|
|
11091
11354
|
edgeCache: false,
|
|
11092
|
-
responseSchema:
|
|
11355
|
+
responseSchema: PassthroughDataSchema20,
|
|
11093
11356
|
responseType: "passthrough"
|
|
11094
11357
|
},
|
|
11095
11358
|
{
|
|
@@ -11101,7 +11364,7 @@ var endpoints19 = [
|
|
|
11101
11364
|
pathParams: [],
|
|
11102
11365
|
queryParams: [],
|
|
11103
11366
|
edgeCache: false,
|
|
11104
|
-
responseSchema:
|
|
11367
|
+
responseSchema: PassthroughDataSchema20,
|
|
11105
11368
|
responseType: "passthrough"
|
|
11106
11369
|
},
|
|
11107
11370
|
{
|
|
@@ -11113,7 +11376,7 @@ var endpoints19 = [
|
|
|
11113
11376
|
pathParams: [],
|
|
11114
11377
|
queryParams: [],
|
|
11115
11378
|
edgeCache: true,
|
|
11116
|
-
responseSchema:
|
|
11379
|
+
responseSchema: PassthroughDataSchema20,
|
|
11117
11380
|
responseType: "passthrough"
|
|
11118
11381
|
},
|
|
11119
11382
|
{
|
|
@@ -11125,7 +11388,7 @@ var endpoints19 = [
|
|
|
11125
11388
|
pathParams: [],
|
|
11126
11389
|
queryParams: [],
|
|
11127
11390
|
edgeCache: true,
|
|
11128
|
-
responseSchema:
|
|
11391
|
+
responseSchema: PassthroughDataSchema20,
|
|
11129
11392
|
responseType: "passthrough"
|
|
11130
11393
|
},
|
|
11131
11394
|
{
|
|
@@ -11137,7 +11400,7 @@ var endpoints19 = [
|
|
|
11137
11400
|
pathParams: ["webDisplayTypeUid"],
|
|
11138
11401
|
queryParams: ["web_display_type_id"],
|
|
11139
11402
|
edgeCache: true,
|
|
11140
|
-
responseSchema:
|
|
11403
|
+
responseSchema: PassthroughDataSchema20,
|
|
11141
11404
|
responseType: "passthrough"
|
|
11142
11405
|
},
|
|
11143
11406
|
{
|
|
@@ -11149,7 +11412,7 @@ var endpoints19 = [
|
|
|
11149
11412
|
pathParams: ["webDisplayTypeUid"],
|
|
11150
11413
|
queryParams: ["web_display_type_id"],
|
|
11151
11414
|
edgeCache: false,
|
|
11152
|
-
responseSchema:
|
|
11415
|
+
responseSchema: PassthroughDataSchema20,
|
|
11153
11416
|
responseType: "passthrough"
|
|
11154
11417
|
},
|
|
11155
11418
|
{
|
|
@@ -11161,7 +11424,7 @@ var endpoints19 = [
|
|
|
11161
11424
|
pathParams: ["webDisplayTypeUid"],
|
|
11162
11425
|
queryParams: ["web_display_type_id"],
|
|
11163
11426
|
edgeCache: false,
|
|
11164
|
-
responseSchema:
|
|
11427
|
+
responseSchema: PassthroughDataSchema20,
|
|
11165
11428
|
responseType: "passthrough"
|
|
11166
11429
|
}
|
|
11167
11430
|
];
|
|
@@ -11218,15 +11481,9 @@ var P21ApisClient = class extends BaseServiceClient {
|
|
|
11218
11481
|
constructor(http, baseUrl = "https://p21-apis.augur-api.com") {
|
|
11219
11482
|
super("p21-apis", http, baseUrl);
|
|
11220
11483
|
const boundExecuteRequest = (config, params, pathParams) => {
|
|
11221
|
-
|
|
11222
|
-
return this.executeRequest(config, params, pathParams);
|
|
11223
|
-
}
|
|
11224
|
-
if (params !== void 0 || config.paramsSchema !== void 0) {
|
|
11225
|
-
return this.executeRequest(config, params);
|
|
11226
|
-
}
|
|
11227
|
-
return this.executeRequest(config);
|
|
11484
|
+
return this.executeRequest(config, params, pathParams);
|
|
11228
11485
|
};
|
|
11229
|
-
const proxy = createServiceProxy("p21-apis", boundExecuteRequest,
|
|
11486
|
+
const proxy = createServiceProxy("p21-apis", boundExecuteRequest, endpoints20);
|
|
11230
11487
|
const dataProxy = createDataProxy(proxy);
|
|
11231
11488
|
this.entityContacts = proxy.entityContacts;
|
|
11232
11489
|
this.entityCustomers = proxy.entityCustomers;
|
|
@@ -11245,153 +11502,156 @@ var P21ApisClient = class extends BaseServiceClient {
|
|
|
11245
11502
|
this.healthCheck = createHealthCheckResource20(boundExecuteRequest);
|
|
11246
11503
|
this.healthCheckData = createHealthCheckDataResource20(this.healthCheck);
|
|
11247
11504
|
}
|
|
11505
|
+
getServiceDescription() {
|
|
11506
|
+
return "Prophet 21 REST API abstraction for normalized CRUD operations on ERP entities";
|
|
11507
|
+
}
|
|
11248
11508
|
};
|
|
11249
11509
|
|
|
11250
11510
|
// src/services/p21-core/generated/schemas.ts
|
|
11251
|
-
var
|
|
11252
|
-
var AddressListParamsSchema =
|
|
11253
|
-
...EdgeCacheParamsSchema.entries,
|
|
11254
|
-
carrierFlag:
|
|
11255
|
-
defaultCd:
|
|
11256
|
-
enabledCd:
|
|
11257
|
-
limit:
|
|
11258
|
-
offset:
|
|
11259
|
-
statusCd:
|
|
11260
|
-
});
|
|
11261
|
-
var AddressCorpAddressListParamsSchema =
|
|
11262
|
-
...EdgeCacheParamsSchema.entries,
|
|
11263
|
-
limit:
|
|
11264
|
-
offset:
|
|
11265
|
-
q:
|
|
11266
|
-
});
|
|
11267
|
-
var AddressEnableGetParamsSchema =
|
|
11268
|
-
...EdgeCacheParamsSchema.entries,
|
|
11269
|
-
enabledCd:
|
|
11270
|
-
});
|
|
11271
|
-
var CashDrawerListParamsSchema =
|
|
11272
|
-
...EdgeCacheParamsSchema.entries,
|
|
11273
|
-
companyId:
|
|
11274
|
-
drawerOpen:
|
|
11275
|
-
limit:
|
|
11276
|
-
offset:
|
|
11277
|
-
orderBy:
|
|
11278
|
-
q:
|
|
11279
|
-
statusCd:
|
|
11280
|
-
});
|
|
11281
|
-
var CodeP21ListParamsSchema =
|
|
11282
|
-
...EdgeCacheParamsSchema.entries,
|
|
11283
|
-
codeNoList:
|
|
11284
|
-
limit:
|
|
11285
|
-
offset:
|
|
11286
|
-
q:
|
|
11287
|
-
});
|
|
11288
|
-
var CompanyListParamsSchema =
|
|
11289
|
-
...EdgeCacheParamsSchema.entries,
|
|
11290
|
-
companyId:
|
|
11291
|
-
limit:
|
|
11292
|
-
offset:
|
|
11293
|
-
orderBy:
|
|
11294
|
-
q:
|
|
11295
|
-
});
|
|
11296
|
-
var CompanyGetParamsSchema =
|
|
11297
|
-
...EdgeCacheParamsSchema.entries,
|
|
11298
|
-
companyId:
|
|
11299
|
-
});
|
|
11300
|
-
var LocationListParamsSchema =
|
|
11301
|
-
...EdgeCacheParamsSchema.entries,
|
|
11302
|
-
deleteFlag:
|
|
11303
|
-
includeAddress:
|
|
11304
|
-
limit:
|
|
11305
|
-
offset:
|
|
11306
|
-
orderBy:
|
|
11307
|
-
q:
|
|
11308
|
-
});
|
|
11309
|
-
var LocationGetParamsSchema =
|
|
11310
|
-
...EdgeCacheParamsSchema.entries,
|
|
11311
|
-
includeAddress:
|
|
11312
|
-
});
|
|
11313
|
-
var PaymentTypesListParamsSchema =
|
|
11314
|
-
...EdgeCacheParamsSchema.entries,
|
|
11315
|
-
limit:
|
|
11316
|
-
offset:
|
|
11317
|
-
});
|
|
11318
|
-
var CashDrawerDataSchema =
|
|
11319
|
-
cashDrawerId:
|
|
11320
|
-
companyId:
|
|
11321
|
-
cashDrawerDescription:
|
|
11322
|
-
currentSequenceNo:
|
|
11323
|
-
openingBalance:
|
|
11324
|
-
withdrawals:
|
|
11325
|
-
deposits:
|
|
11326
|
-
currentBalance:
|
|
11327
|
-
drawerOpen:
|
|
11328
|
-
bankNo:
|
|
11329
|
-
cashOnHandAccountNumber:
|
|
11330
|
-
deleteFlag:
|
|
11331
|
-
dateCreated:
|
|
11332
|
-
dateLastModified:
|
|
11333
|
-
lastMaintainedBy:
|
|
11334
|
-
cashCardLoad:
|
|
11335
|
-
cashDrawerUid:
|
|
11336
|
-
locIdForBranchConflict:
|
|
11337
|
-
defaultCloseBranchId:
|
|
11338
|
-
updateCd:
|
|
11339
|
-
statusCd:
|
|
11340
|
-
processCd:
|
|
11341
|
-
});
|
|
11342
|
-
var CodeP21DataSchema =
|
|
11343
|
-
codeUid:
|
|
11344
|
-
codeNo:
|
|
11345
|
-
languageId:
|
|
11346
|
-
codeDescription:
|
|
11347
|
-
rowStatusFlag:
|
|
11348
|
-
dateCreated:
|
|
11349
|
-
dateLastModified:
|
|
11350
|
-
lastMaintainedBy:
|
|
11351
|
-
codeSubDescription:
|
|
11352
|
-
updateCd:
|
|
11353
|
-
});
|
|
11354
|
-
var CompanyDataSchema =
|
|
11355
|
-
companyUid:
|
|
11356
|
-
companyId:
|
|
11357
|
-
companyName:
|
|
11358
|
-
dateCreated:
|
|
11359
|
-
dateLastModified:
|
|
11360
|
-
deleteFlag:
|
|
11361
|
-
updateCd:
|
|
11362
|
-
lastMaintainedBy:
|
|
11363
|
-
addressId:
|
|
11364
|
-
defaultSalesLocationId:
|
|
11365
|
-
freightCodeUid:
|
|
11366
|
-
upsAccountNo:
|
|
11367
|
-
defaultSourcePriceCd:
|
|
11368
|
-
defaultMultiplier:
|
|
11369
|
-
});
|
|
11370
|
-
var LocationDataSchema =
|
|
11371
|
-
locationId:
|
|
11372
|
-
companyId:
|
|
11373
|
-
defaultBranchId:
|
|
11374
|
-
deleteFlag:
|
|
11375
|
-
dateCreated:
|
|
11376
|
-
dateLastModified:
|
|
11377
|
-
lastMaintainedBy:
|
|
11378
|
-
locationName:
|
|
11379
|
-
lotBinIntegration:
|
|
11380
|
-
fedexLocAcctNo:
|
|
11381
|
-
fedexMeterNo:
|
|
11382
|
-
upsAccountNo:
|
|
11383
|
-
upsPickupTypeCd:
|
|
11384
|
-
upsCustomerTypeCd:
|
|
11385
|
-
upsOltAccessKey:
|
|
11386
|
-
upsOltPassword:
|
|
11387
|
-
upsOltUserId:
|
|
11388
|
-
distributionCenter:
|
|
11389
|
-
updateCd:
|
|
11390
|
-
});
|
|
11391
|
-
var
|
|
11511
|
+
var v28 = __toESM(require("valibot"));
|
|
11512
|
+
var AddressListParamsSchema = v28.looseObject({
|
|
11513
|
+
...EdgeCacheParamsSchema.entries,
|
|
11514
|
+
carrierFlag: v28.optional(v28.string()),
|
|
11515
|
+
defaultCd: v28.optional(v28.pipe(v28.unknown(), v28.transform(Number))),
|
|
11516
|
+
enabledCd: v28.optional(v28.pipe(v28.unknown(), v28.transform(Number))),
|
|
11517
|
+
limit: v28.optional(v28.pipe(v28.unknown(), v28.transform(Number))),
|
|
11518
|
+
offset: v28.optional(v28.pipe(v28.unknown(), v28.transform(Number))),
|
|
11519
|
+
statusCd: v28.optional(v28.pipe(v28.unknown(), v28.transform(Number)))
|
|
11520
|
+
});
|
|
11521
|
+
var AddressCorpAddressListParamsSchema = v28.looseObject({
|
|
11522
|
+
...EdgeCacheParamsSchema.entries,
|
|
11523
|
+
limit: v28.optional(v28.pipe(v28.unknown(), v28.transform(Number))),
|
|
11524
|
+
offset: v28.optional(v28.pipe(v28.unknown(), v28.transform(Number))),
|
|
11525
|
+
q: v28.optional(v28.string())
|
|
11526
|
+
});
|
|
11527
|
+
var AddressEnableGetParamsSchema = v28.looseObject({
|
|
11528
|
+
...EdgeCacheParamsSchema.entries,
|
|
11529
|
+
enabledCd: v28.optional(v28.pipe(v28.unknown(), v28.transform(Number)))
|
|
11530
|
+
});
|
|
11531
|
+
var CashDrawerListParamsSchema = v28.looseObject({
|
|
11532
|
+
...EdgeCacheParamsSchema.entries,
|
|
11533
|
+
companyId: v28.optional(v28.string()),
|
|
11534
|
+
drawerOpen: v28.optional(v28.string()),
|
|
11535
|
+
limit: v28.optional(v28.pipe(v28.unknown(), v28.transform(Number))),
|
|
11536
|
+
offset: v28.optional(v28.pipe(v28.unknown(), v28.transform(Number))),
|
|
11537
|
+
orderBy: v28.optional(v28.string()),
|
|
11538
|
+
q: v28.optional(v28.string()),
|
|
11539
|
+
statusCd: v28.optional(v28.pipe(v28.unknown(), v28.transform(Number)))
|
|
11540
|
+
});
|
|
11541
|
+
var CodeP21ListParamsSchema = v28.looseObject({
|
|
11542
|
+
...EdgeCacheParamsSchema.entries,
|
|
11543
|
+
codeNoList: v28.optional(v28.string()),
|
|
11544
|
+
limit: v28.optional(v28.pipe(v28.unknown(), v28.transform(Number))),
|
|
11545
|
+
offset: v28.optional(v28.pipe(v28.unknown(), v28.transform(Number))),
|
|
11546
|
+
q: v28.string()
|
|
11547
|
+
});
|
|
11548
|
+
var CompanyListParamsSchema = v28.looseObject({
|
|
11549
|
+
...EdgeCacheParamsSchema.entries,
|
|
11550
|
+
companyId: v28.optional(v28.string()),
|
|
11551
|
+
limit: v28.optional(v28.pipe(v28.unknown(), v28.transform(Number))),
|
|
11552
|
+
offset: v28.optional(v28.pipe(v28.unknown(), v28.transform(Number))),
|
|
11553
|
+
orderBy: v28.optional(v28.string()),
|
|
11554
|
+
q: v28.optional(v28.string())
|
|
11555
|
+
});
|
|
11556
|
+
var CompanyGetParamsSchema = v28.looseObject({
|
|
11557
|
+
...EdgeCacheParamsSchema.entries,
|
|
11558
|
+
companyId: v28.optional(v28.string())
|
|
11559
|
+
});
|
|
11560
|
+
var LocationListParamsSchema = v28.looseObject({
|
|
11561
|
+
...EdgeCacheParamsSchema.entries,
|
|
11562
|
+
deleteFlag: v28.optional(v28.string()),
|
|
11563
|
+
includeAddress: v28.optional(v28.string()),
|
|
11564
|
+
limit: v28.optional(v28.pipe(v28.unknown(), v28.transform(Number))),
|
|
11565
|
+
offset: v28.optional(v28.pipe(v28.unknown(), v28.transform(Number))),
|
|
11566
|
+
orderBy: v28.optional(v28.string()),
|
|
11567
|
+
q: v28.optional(v28.string())
|
|
11568
|
+
});
|
|
11569
|
+
var LocationGetParamsSchema = v28.looseObject({
|
|
11570
|
+
...EdgeCacheParamsSchema.entries,
|
|
11571
|
+
includeAddress: v28.optional(v28.string())
|
|
11572
|
+
});
|
|
11573
|
+
var PaymentTypesListParamsSchema = v28.looseObject({
|
|
11574
|
+
...EdgeCacheParamsSchema.entries,
|
|
11575
|
+
limit: v28.optional(v28.pipe(v28.unknown(), v28.transform(Number))),
|
|
11576
|
+
offset: v28.optional(v28.pipe(v28.unknown(), v28.transform(Number)))
|
|
11577
|
+
});
|
|
11578
|
+
var CashDrawerDataSchema = v28.looseObject({
|
|
11579
|
+
cashDrawerId: v28.optional(v28.string()),
|
|
11580
|
+
companyId: v28.optional(v28.string()),
|
|
11581
|
+
cashDrawerDescription: v28.optional(v28.string()),
|
|
11582
|
+
currentSequenceNo: v28.optional(v28.number()),
|
|
11583
|
+
openingBalance: v28.optional(v28.nullable(v28.number())),
|
|
11584
|
+
withdrawals: v28.optional(v28.nullable(v28.number())),
|
|
11585
|
+
deposits: v28.optional(v28.nullable(v28.number())),
|
|
11586
|
+
currentBalance: v28.optional(v28.number()),
|
|
11587
|
+
drawerOpen: v28.optional(v28.string()),
|
|
11588
|
+
bankNo: v28.optional(v28.nullable(v28.number())),
|
|
11589
|
+
cashOnHandAccountNumber: v28.optional(v28.string()),
|
|
11590
|
+
deleteFlag: v28.optional(v28.string()),
|
|
11591
|
+
dateCreated: v28.optional(v28.string()),
|
|
11592
|
+
dateLastModified: v28.optional(v28.string()),
|
|
11593
|
+
lastMaintainedBy: v28.optional(v28.string()),
|
|
11594
|
+
cashCardLoad: v28.optional(v28.nullable(v28.number())),
|
|
11595
|
+
cashDrawerUid: v28.optional(v28.number()),
|
|
11596
|
+
locIdForBranchConflict: v28.optional(v28.nullable(v28.number())),
|
|
11597
|
+
defaultCloseBranchId: v28.optional(v28.nullable(v28.string())),
|
|
11598
|
+
updateCd: v28.optional(v28.number()),
|
|
11599
|
+
statusCd: v28.optional(v28.number()),
|
|
11600
|
+
processCd: v28.optional(v28.number())
|
|
11601
|
+
});
|
|
11602
|
+
var CodeP21DataSchema = v28.looseObject({
|
|
11603
|
+
codeUid: v28.optional(v28.number()),
|
|
11604
|
+
codeNo: v28.optional(v28.number()),
|
|
11605
|
+
languageId: v28.optional(v28.string()),
|
|
11606
|
+
codeDescription: v28.optional(v28.string()),
|
|
11607
|
+
rowStatusFlag: v28.optional(v28.string()),
|
|
11608
|
+
dateCreated: v28.optional(v28.string()),
|
|
11609
|
+
dateLastModified: v28.optional(v28.string()),
|
|
11610
|
+
lastMaintainedBy: v28.optional(v28.string()),
|
|
11611
|
+
codeSubDescription: v28.optional(v28.nullable(v28.string())),
|
|
11612
|
+
updateCd: v28.optional(v28.number())
|
|
11613
|
+
});
|
|
11614
|
+
var CompanyDataSchema = v28.looseObject({
|
|
11615
|
+
companyUid: v28.optional(v28.number()),
|
|
11616
|
+
companyId: v28.optional(v28.string()),
|
|
11617
|
+
companyName: v28.optional(v28.nullable(v28.string())),
|
|
11618
|
+
dateCreated: v28.optional(v28.string()),
|
|
11619
|
+
dateLastModified: v28.optional(v28.string()),
|
|
11620
|
+
deleteFlag: v28.optional(v28.string()),
|
|
11621
|
+
updateCd: v28.optional(v28.number()),
|
|
11622
|
+
lastMaintainedBy: v28.optional(v28.string()),
|
|
11623
|
+
addressId: v28.optional(v28.nullable(v28.number())),
|
|
11624
|
+
defaultSalesLocationId: v28.optional(v28.nullable(v28.number())),
|
|
11625
|
+
freightCodeUid: v28.optional(v28.nullable(v28.number())),
|
|
11626
|
+
upsAccountNo: v28.optional(v28.nullable(v28.string())),
|
|
11627
|
+
defaultSourcePriceCd: v28.optional(v28.nullable(v28.number())),
|
|
11628
|
+
defaultMultiplier: v28.optional(v28.nullable(v28.number()))
|
|
11629
|
+
});
|
|
11630
|
+
var LocationDataSchema = v28.looseObject({
|
|
11631
|
+
locationId: v28.optional(v28.number()),
|
|
11632
|
+
companyId: v28.optional(v28.string()),
|
|
11633
|
+
defaultBranchId: v28.optional(v28.nullable(v28.string())),
|
|
11634
|
+
deleteFlag: v28.optional(v28.string()),
|
|
11635
|
+
dateCreated: v28.optional(v28.string()),
|
|
11636
|
+
dateLastModified: v28.optional(v28.string()),
|
|
11637
|
+
lastMaintainedBy: v28.optional(v28.string()),
|
|
11638
|
+
locationName: v28.optional(v28.nullable(v28.string())),
|
|
11639
|
+
lotBinIntegration: v28.optional(v28.nullable(v28.string())),
|
|
11640
|
+
fedexLocAcctNo: v28.optional(v28.nullable(v28.string())),
|
|
11641
|
+
fedexMeterNo: v28.optional(v28.nullable(v28.string())),
|
|
11642
|
+
upsAccountNo: v28.optional(v28.nullable(v28.string())),
|
|
11643
|
+
upsPickupTypeCd: v28.optional(v28.nullable(v28.number())),
|
|
11644
|
+
upsCustomerTypeCd: v28.optional(v28.nullable(v28.number())),
|
|
11645
|
+
upsOltAccessKey: v28.optional(v28.nullable(v28.string())),
|
|
11646
|
+
upsOltPassword: v28.optional(v28.nullable(v28.string())),
|
|
11647
|
+
upsOltUserId: v28.optional(v28.nullable(v28.string())),
|
|
11648
|
+
distributionCenter: v28.optional(v28.string()),
|
|
11649
|
+
updateCd: v28.optional(v28.number())
|
|
11650
|
+
});
|
|
11651
|
+
var PassthroughDataSchema21 = v28.record(v28.string(), v28.unknown());
|
|
11392
11652
|
|
|
11393
11653
|
// src/services/p21-core/generated/endpoints.ts
|
|
11394
|
-
var
|
|
11654
|
+
var endpoints21 = [
|
|
11395
11655
|
{
|
|
11396
11656
|
method: "GET",
|
|
11397
11657
|
path: "/address",
|
|
@@ -11401,7 +11661,7 @@ var endpoints20 = [
|
|
|
11401
11661
|
pathParams: [],
|
|
11402
11662
|
queryParams: ["carrierFlag", "defaultCd", "enabledCd", "limit", "offset", "statusCd"],
|
|
11403
11663
|
edgeCache: true,
|
|
11404
|
-
responseSchema:
|
|
11664
|
+
responseSchema: PassthroughDataSchema21,
|
|
11405
11665
|
responseType: "passthrough"
|
|
11406
11666
|
},
|
|
11407
11667
|
{
|
|
@@ -11413,7 +11673,7 @@ var endpoints20 = [
|
|
|
11413
11673
|
pathParams: [],
|
|
11414
11674
|
queryParams: [],
|
|
11415
11675
|
edgeCache: true,
|
|
11416
|
-
responseSchema:
|
|
11676
|
+
responseSchema: PassthroughDataSchema21,
|
|
11417
11677
|
responseType: "passthrough"
|
|
11418
11678
|
},
|
|
11419
11679
|
{
|
|
@@ -11425,7 +11685,7 @@ var endpoints20 = [
|
|
|
11425
11685
|
pathParams: ["id"],
|
|
11426
11686
|
queryParams: [],
|
|
11427
11687
|
edgeCache: true,
|
|
11428
|
-
responseSchema:
|
|
11688
|
+
responseSchema: PassthroughDataSchema21,
|
|
11429
11689
|
responseType: "passthrough"
|
|
11430
11690
|
},
|
|
11431
11691
|
{
|
|
@@ -11437,7 +11697,7 @@ var endpoints20 = [
|
|
|
11437
11697
|
pathParams: ["id"],
|
|
11438
11698
|
queryParams: ["limit", "offset", "q"],
|
|
11439
11699
|
edgeCache: true,
|
|
11440
|
-
responseSchema:
|
|
11700
|
+
responseSchema: PassthroughDataSchema21,
|
|
11441
11701
|
responseType: "passthrough"
|
|
11442
11702
|
},
|
|
11443
11703
|
{
|
|
@@ -11449,7 +11709,7 @@ var endpoints20 = [
|
|
|
11449
11709
|
pathParams: ["id"],
|
|
11450
11710
|
queryParams: [],
|
|
11451
11711
|
edgeCache: true,
|
|
11452
|
-
responseSchema:
|
|
11712
|
+
responseSchema: PassthroughDataSchema21,
|
|
11453
11713
|
responseType: "passthrough"
|
|
11454
11714
|
},
|
|
11455
11715
|
{
|
|
@@ -11461,7 +11721,7 @@ var endpoints20 = [
|
|
|
11461
11721
|
pathParams: ["id"],
|
|
11462
11722
|
queryParams: ["enabledCd"],
|
|
11463
11723
|
edgeCache: true,
|
|
11464
|
-
responseSchema:
|
|
11724
|
+
responseSchema: PassthroughDataSchema21,
|
|
11465
11725
|
responseType: "passthrough"
|
|
11466
11726
|
},
|
|
11467
11727
|
{
|
|
@@ -11557,14 +11817,14 @@ var endpoints20 = [
|
|
|
11557
11817
|
pathParams: [],
|
|
11558
11818
|
queryParams: ["limit", "offset"],
|
|
11559
11819
|
edgeCache: true,
|
|
11560
|
-
responseSchema:
|
|
11820
|
+
responseSchema: PassthroughDataSchema21,
|
|
11561
11821
|
responseType: "passthrough"
|
|
11562
11822
|
}
|
|
11563
11823
|
];
|
|
11564
11824
|
|
|
11565
11825
|
// src/services/p21-core/resources/health-check.ts
|
|
11566
|
-
var
|
|
11567
|
-
var UnknownResponseSchema = BaseResponseSchema(
|
|
11826
|
+
var v29 = __toESM(require("valibot"));
|
|
11827
|
+
var UnknownResponseSchema = BaseResponseSchema(v29.unknown());
|
|
11568
11828
|
function createHealthCheckResource21(executeRequest) {
|
|
11569
11829
|
return {
|
|
11570
11830
|
/**
|
|
@@ -11625,15 +11885,9 @@ var P21CoreClient = class extends BaseServiceClient {
|
|
|
11625
11885
|
constructor(http, baseUrl = "https://p21-core.augur-api.com") {
|
|
11626
11886
|
super("p21-core", http, baseUrl);
|
|
11627
11887
|
const boundExecuteRequest = (config, params, pathParams) => {
|
|
11628
|
-
|
|
11629
|
-
return this.executeRequest(config, params, pathParams);
|
|
11630
|
-
}
|
|
11631
|
-
if (params !== void 0 || config.paramsSchema !== void 0) {
|
|
11632
|
-
return this.executeRequest(config, params);
|
|
11633
|
-
}
|
|
11634
|
-
return this.executeRequest(config);
|
|
11888
|
+
return this.executeRequest(config, params, pathParams);
|
|
11635
11889
|
};
|
|
11636
|
-
const proxy = createServiceProxy("p21-core", boundExecuteRequest,
|
|
11890
|
+
const proxy = createServiceProxy("p21-core", boundExecuteRequest, endpoints21);
|
|
11637
11891
|
const dataProxy = createDataProxy(proxy);
|
|
11638
11892
|
this.address = proxy.address;
|
|
11639
11893
|
this.cashDrawer = proxy.cashDrawer;
|
|
@@ -11658,84 +11912,84 @@ var P21CoreClient = class extends BaseServiceClient {
|
|
|
11658
11912
|
};
|
|
11659
11913
|
|
|
11660
11914
|
// src/services/p21-sism/generated/schemas.ts
|
|
11661
|
-
var
|
|
11662
|
-
var ImportListParamsSchema =
|
|
11663
|
-
...EdgeCacheParamsSchema.entries,
|
|
11664
|
-
createdFrom:
|
|
11665
|
-
createdOn:
|
|
11666
|
-
createdTo:
|
|
11667
|
-
excludeState:
|
|
11668
|
-
importState:
|
|
11669
|
-
limit:
|
|
11670
|
-
offset:
|
|
11671
|
-
orderBy:
|
|
11672
|
-
q:
|
|
11673
|
-
referenceNo:
|
|
11674
|
-
sourceId:
|
|
11675
|
-
sourceName:
|
|
11676
|
-
});
|
|
11677
|
-
var ImportDailySummaryListParamsSchema =
|
|
11678
|
-
...EdgeCacheParamsSchema.entries,
|
|
11679
|
-
days:
|
|
11680
|
-
});
|
|
11681
|
-
var ImportRecentListParamsSchema =
|
|
11682
|
-
...EdgeCacheParamsSchema.entries,
|
|
11683
|
-
createdFrom:
|
|
11684
|
-
createdOn:
|
|
11685
|
-
createdTo:
|
|
11686
|
-
excludeState:
|
|
11687
|
-
hours:
|
|
11688
|
-
importState:
|
|
11689
|
-
limit:
|
|
11690
|
-
sourceId:
|
|
11691
|
-
sourceName:
|
|
11692
|
-
});
|
|
11693
|
-
var ImportStuckListParamsSchema =
|
|
11694
|
-
...EdgeCacheParamsSchema.entries,
|
|
11695
|
-
hours:
|
|
11696
|
-
limit:
|
|
11697
|
-
});
|
|
11698
|
-
var ImportDailySummaryDataSchema =
|
|
11699
|
-
date:
|
|
11700
|
-
total:
|
|
11701
|
-
initial:
|
|
11702
|
-
processing:
|
|
11703
|
-
processingCoupon:
|
|
11704
|
-
processCoupon:
|
|
11705
|
-
validate:
|
|
11706
|
-
validating:
|
|
11707
|
-
validated:
|
|
11708
|
-
processed:
|
|
11709
|
-
hold:
|
|
11710
|
-
delivering:
|
|
11711
|
-
delivered:
|
|
11712
|
-
importing:
|
|
11713
|
-
imported:
|
|
11714
|
-
redelivered:
|
|
11715
|
-
invalid:
|
|
11716
|
-
failed:
|
|
11717
|
-
error:
|
|
11718
|
-
cancelled:
|
|
11719
|
-
stopped:
|
|
11720
|
-
skipped:
|
|
11721
|
-
});
|
|
11722
|
-
var ImportDataSchema =
|
|
11723
|
-
importUid:
|
|
11724
|
-
scheduledImportMasterUid:
|
|
11725
|
-
dateCreated:
|
|
11726
|
-
dateLastModified:
|
|
11727
|
-
sourceName:
|
|
11728
|
-
sourceId:
|
|
11729
|
-
importState:
|
|
11730
|
-
jsonData:
|
|
11731
|
-
importStatusCd:
|
|
11732
|
-
importResults:
|
|
11733
|
-
referenceNo:
|
|
11734
|
-
});
|
|
11735
|
-
var
|
|
11915
|
+
var v30 = __toESM(require("valibot"));
|
|
11916
|
+
var ImportListParamsSchema = v30.looseObject({
|
|
11917
|
+
...EdgeCacheParamsSchema.entries,
|
|
11918
|
+
createdFrom: v30.optional(v30.string()),
|
|
11919
|
+
createdOn: v30.optional(v30.string()),
|
|
11920
|
+
createdTo: v30.optional(v30.string()),
|
|
11921
|
+
excludeState: v30.optional(v30.string()),
|
|
11922
|
+
importState: v30.optional(v30.string()),
|
|
11923
|
+
limit: v30.optional(v30.pipe(v30.unknown(), v30.transform(Number))),
|
|
11924
|
+
offset: v30.optional(v30.pipe(v30.unknown(), v30.transform(Number))),
|
|
11925
|
+
orderBy: v30.optional(v30.string()),
|
|
11926
|
+
q: v30.optional(v30.string()),
|
|
11927
|
+
referenceNo: v30.optional(v30.string()),
|
|
11928
|
+
sourceId: v30.optional(v30.pipe(v30.unknown(), v30.transform(Number))),
|
|
11929
|
+
sourceName: v30.optional(v30.string())
|
|
11930
|
+
});
|
|
11931
|
+
var ImportDailySummaryListParamsSchema = v30.looseObject({
|
|
11932
|
+
...EdgeCacheParamsSchema.entries,
|
|
11933
|
+
days: v30.optional(v30.pipe(v30.unknown(), v30.transform(Number)))
|
|
11934
|
+
});
|
|
11935
|
+
var ImportRecentListParamsSchema = v30.looseObject({
|
|
11936
|
+
...EdgeCacheParamsSchema.entries,
|
|
11937
|
+
createdFrom: v30.optional(v30.string()),
|
|
11938
|
+
createdOn: v30.optional(v30.string()),
|
|
11939
|
+
createdTo: v30.optional(v30.string()),
|
|
11940
|
+
excludeState: v30.optional(v30.string()),
|
|
11941
|
+
hours: v30.optional(v30.pipe(v30.unknown(), v30.transform(Number))),
|
|
11942
|
+
importState: v30.optional(v30.string()),
|
|
11943
|
+
limit: v30.optional(v30.pipe(v30.unknown(), v30.transform(Number))),
|
|
11944
|
+
sourceId: v30.optional(v30.pipe(v30.unknown(), v30.transform(Number))),
|
|
11945
|
+
sourceName: v30.optional(v30.string())
|
|
11946
|
+
});
|
|
11947
|
+
var ImportStuckListParamsSchema = v30.looseObject({
|
|
11948
|
+
...EdgeCacheParamsSchema.entries,
|
|
11949
|
+
hours: v30.optional(v30.pipe(v30.unknown(), v30.transform(Number))),
|
|
11950
|
+
limit: v30.optional(v30.pipe(v30.unknown(), v30.transform(Number)))
|
|
11951
|
+
});
|
|
11952
|
+
var ImportDailySummaryDataSchema = v30.looseObject({
|
|
11953
|
+
date: v30.optional(v30.string()),
|
|
11954
|
+
total: v30.optional(v30.number()),
|
|
11955
|
+
initial: v30.optional(v30.number()),
|
|
11956
|
+
processing: v30.optional(v30.number()),
|
|
11957
|
+
processingCoupon: v30.optional(v30.number()),
|
|
11958
|
+
processCoupon: v30.optional(v30.number()),
|
|
11959
|
+
validate: v30.optional(v30.number()),
|
|
11960
|
+
validating: v30.optional(v30.number()),
|
|
11961
|
+
validated: v30.optional(v30.number()),
|
|
11962
|
+
processed: v30.optional(v30.number()),
|
|
11963
|
+
hold: v30.optional(v30.number()),
|
|
11964
|
+
delivering: v30.optional(v30.number()),
|
|
11965
|
+
delivered: v30.optional(v30.number()),
|
|
11966
|
+
importing: v30.optional(v30.number()),
|
|
11967
|
+
imported: v30.optional(v30.number()),
|
|
11968
|
+
redelivered: v30.optional(v30.number()),
|
|
11969
|
+
invalid: v30.optional(v30.number()),
|
|
11970
|
+
failed: v30.optional(v30.number()),
|
|
11971
|
+
error: v30.optional(v30.number()),
|
|
11972
|
+
cancelled: v30.optional(v30.number()),
|
|
11973
|
+
stopped: v30.optional(v30.number()),
|
|
11974
|
+
skipped: v30.optional(v30.number())
|
|
11975
|
+
});
|
|
11976
|
+
var ImportDataSchema = v30.looseObject({
|
|
11977
|
+
importUid: v30.optional(v30.number()),
|
|
11978
|
+
scheduledImportMasterUid: v30.optional(v30.number()),
|
|
11979
|
+
dateCreated: v30.optional(v30.string()),
|
|
11980
|
+
dateLastModified: v30.optional(v30.string()),
|
|
11981
|
+
sourceName: v30.optional(v30.nullable(v30.string())),
|
|
11982
|
+
sourceId: v30.optional(v30.number()),
|
|
11983
|
+
importState: v30.optional(v30.string()),
|
|
11984
|
+
jsonData: v30.optional(v30.nullable(v30.string())),
|
|
11985
|
+
importStatusCd: v30.optional(v30.number()),
|
|
11986
|
+
importResults: v30.optional(v30.nullable(v30.string())),
|
|
11987
|
+
referenceNo: v30.optional(v30.nullable(v30.string()))
|
|
11988
|
+
});
|
|
11989
|
+
var PassthroughDataSchema22 = v30.record(v30.string(), v30.unknown());
|
|
11736
11990
|
|
|
11737
11991
|
// src/services/p21-sism/generated/endpoints.ts
|
|
11738
|
-
var
|
|
11992
|
+
var endpoints22 = [
|
|
11739
11993
|
{
|
|
11740
11994
|
method: "GET",
|
|
11741
11995
|
path: "/import",
|
|
@@ -11758,7 +12012,7 @@ var endpoints21 = [
|
|
|
11758
12012
|
"sourceName"
|
|
11759
12013
|
],
|
|
11760
12014
|
edgeCache: true,
|
|
11761
|
-
responseSchema:
|
|
12015
|
+
responseSchema: PassthroughDataSchema22,
|
|
11762
12016
|
responseType: "passthrough"
|
|
11763
12017
|
},
|
|
11764
12018
|
{
|
|
@@ -11792,7 +12046,7 @@ var endpoints21 = [
|
|
|
11792
12046
|
"sourceName"
|
|
11793
12047
|
],
|
|
11794
12048
|
edgeCache: true,
|
|
11795
|
-
responseSchema:
|
|
12049
|
+
responseSchema: PassthroughDataSchema22,
|
|
11796
12050
|
responseType: "passthrough"
|
|
11797
12051
|
},
|
|
11798
12052
|
{
|
|
@@ -11804,7 +12058,7 @@ var endpoints21 = [
|
|
|
11804
12058
|
pathParams: [],
|
|
11805
12059
|
queryParams: ["hours", "limit"],
|
|
11806
12060
|
edgeCache: true,
|
|
11807
|
-
responseSchema:
|
|
12061
|
+
responseSchema: PassthroughDataSchema22,
|
|
11808
12062
|
responseType: "passthrough"
|
|
11809
12063
|
},
|
|
11810
12064
|
{
|
|
@@ -11852,7 +12106,7 @@ var endpoints21 = [
|
|
|
11852
12106
|
pathParams: ["importUid"],
|
|
11853
12107
|
queryParams: [],
|
|
11854
12108
|
edgeCache: true,
|
|
11855
|
-
responseSchema:
|
|
12109
|
+
responseSchema: PassthroughDataSchema22,
|
|
11856
12110
|
responseType: "passthrough"
|
|
11857
12111
|
},
|
|
11858
12112
|
{
|
|
@@ -11864,7 +12118,7 @@ var endpoints21 = [
|
|
|
11864
12118
|
pathParams: ["importUid"],
|
|
11865
12119
|
queryParams: [],
|
|
11866
12120
|
edgeCache: false,
|
|
11867
|
-
responseSchema:
|
|
12121
|
+
responseSchema: PassthroughDataSchema22,
|
|
11868
12122
|
responseType: "passthrough"
|
|
11869
12123
|
},
|
|
11870
12124
|
{
|
|
@@ -11876,7 +12130,7 @@ var endpoints21 = [
|
|
|
11876
12130
|
pathParams: ["importUid"],
|
|
11877
12131
|
queryParams: [],
|
|
11878
12132
|
edgeCache: true,
|
|
11879
|
-
responseSchema:
|
|
12133
|
+
responseSchema: PassthroughDataSchema22,
|
|
11880
12134
|
responseType: "passthrough"
|
|
11881
12135
|
},
|
|
11882
12136
|
{
|
|
@@ -11888,7 +12142,7 @@ var endpoints21 = [
|
|
|
11888
12142
|
pathParams: ["importUid"],
|
|
11889
12143
|
queryParams: [],
|
|
11890
12144
|
edgeCache: false,
|
|
11891
|
-
responseSchema:
|
|
12145
|
+
responseSchema: PassthroughDataSchema22,
|
|
11892
12146
|
responseType: "passthrough"
|
|
11893
12147
|
},
|
|
11894
12148
|
{
|
|
@@ -11900,7 +12154,7 @@ var endpoints21 = [
|
|
|
11900
12154
|
pathParams: ["importUid"],
|
|
11901
12155
|
queryParams: [],
|
|
11902
12156
|
edgeCache: true,
|
|
11903
|
-
responseSchema:
|
|
12157
|
+
responseSchema: PassthroughDataSchema22,
|
|
11904
12158
|
responseType: "passthrough"
|
|
11905
12159
|
},
|
|
11906
12160
|
{
|
|
@@ -11912,7 +12166,7 @@ var endpoints21 = [
|
|
|
11912
12166
|
pathParams: ["scheduledImportMasterUid"],
|
|
11913
12167
|
queryParams: [],
|
|
11914
12168
|
edgeCache: false,
|
|
11915
|
-
responseSchema:
|
|
12169
|
+
responseSchema: PassthroughDataSchema22,
|
|
11916
12170
|
responseType: "passthrough"
|
|
11917
12171
|
}
|
|
11918
12172
|
];
|
|
@@ -11963,15 +12217,9 @@ var P21SismClient = class extends BaseServiceClient {
|
|
|
11963
12217
|
constructor(http, baseUrl = "https://p21-sism.augur-api.com") {
|
|
11964
12218
|
super("p21-sism", http, baseUrl);
|
|
11965
12219
|
const boundExecuteRequest = (config, params, pathParams) => {
|
|
11966
|
-
|
|
11967
|
-
return this.executeRequest(config, params, pathParams);
|
|
11968
|
-
}
|
|
11969
|
-
if (params !== void 0 || config.paramsSchema !== void 0) {
|
|
11970
|
-
return this.executeRequest(config, params);
|
|
11971
|
-
}
|
|
11972
|
-
return this.executeRequest(config);
|
|
12220
|
+
return this.executeRequest(config, params, pathParams);
|
|
11973
12221
|
};
|
|
11974
|
-
const proxy = createServiceProxy("p21-sism", boundExecuteRequest,
|
|
12222
|
+
const proxy = createServiceProxy("p21-sism", boundExecuteRequest, endpoints22);
|
|
11975
12223
|
const dataProxy = createDataProxy(proxy);
|
|
11976
12224
|
this.import = proxy.import;
|
|
11977
12225
|
this.scheduledImportMaster = proxy.scheduledImportMaster;
|
|
@@ -11986,11 +12234,11 @@ var P21SismClient = class extends BaseServiceClient {
|
|
|
11986
12234
|
};
|
|
11987
12235
|
|
|
11988
12236
|
// src/services/shipping/generated/schemas.ts
|
|
11989
|
-
var
|
|
11990
|
-
var
|
|
12237
|
+
var v31 = __toESM(require("valibot"));
|
|
12238
|
+
var PassthroughDataSchema23 = v31.record(v31.string(), v31.unknown());
|
|
11991
12239
|
|
|
11992
12240
|
// src/services/shipping/generated/endpoints.ts
|
|
11993
|
-
var
|
|
12241
|
+
var endpoints23 = [
|
|
11994
12242
|
{
|
|
11995
12243
|
method: "POST",
|
|
11996
12244
|
path: "/rates",
|
|
@@ -12000,7 +12248,7 @@ var endpoints22 = [
|
|
|
12000
12248
|
pathParams: [],
|
|
12001
12249
|
queryParams: [],
|
|
12002
12250
|
edgeCache: false,
|
|
12003
|
-
responseSchema:
|
|
12251
|
+
responseSchema: PassthroughDataSchema23,
|
|
12004
12252
|
responseType: "passthrough"
|
|
12005
12253
|
}
|
|
12006
12254
|
];
|
|
@@ -12075,18 +12323,12 @@ var ShippingClient = class extends BaseServiceClient {
|
|
|
12075
12323
|
constructor(http, baseUrl = "https://shipping.augur-api.com") {
|
|
12076
12324
|
super("shipping", http, baseUrl);
|
|
12077
12325
|
const boundExecuteRequest = (config, params, pathParams) => {
|
|
12078
|
-
|
|
12079
|
-
return this.executeRequest(config, params, pathParams);
|
|
12080
|
-
}
|
|
12081
|
-
if (params !== void 0 || config.paramsSchema !== void 0) {
|
|
12082
|
-
return this.executeRequest(config, params);
|
|
12083
|
-
}
|
|
12084
|
-
return this.executeRequest(config);
|
|
12326
|
+
return this.executeRequest(config, params, pathParams);
|
|
12085
12327
|
};
|
|
12086
12328
|
const proxy = createServiceProxy(
|
|
12087
12329
|
"shipping",
|
|
12088
12330
|
boundExecuteRequest,
|
|
12089
|
-
|
|
12331
|
+
endpoints23
|
|
12090
12332
|
);
|
|
12091
12333
|
const dataProxy = createDataProxy(proxy);
|
|
12092
12334
|
this.rates = proxy.rates;
|
|
@@ -12097,11 +12339,11 @@ var ShippingClient = class extends BaseServiceClient {
|
|
|
12097
12339
|
};
|
|
12098
12340
|
|
|
12099
12341
|
// src/services/slack/generated/schemas.ts
|
|
12100
|
-
var
|
|
12101
|
-
var
|
|
12342
|
+
var v32 = __toESM(require("valibot"));
|
|
12343
|
+
var PassthroughDataSchema24 = v32.record(v32.string(), v32.unknown());
|
|
12102
12344
|
|
|
12103
12345
|
// src/services/slack/generated/endpoints.ts
|
|
12104
|
-
var
|
|
12346
|
+
var endpoints24 = [
|
|
12105
12347
|
{
|
|
12106
12348
|
method: "POST",
|
|
12107
12349
|
path: "/web-hook",
|
|
@@ -12111,7 +12353,7 @@ var endpoints23 = [
|
|
|
12111
12353
|
pathParams: [],
|
|
12112
12354
|
queryParams: [],
|
|
12113
12355
|
edgeCache: false,
|
|
12114
|
-
responseSchema:
|
|
12356
|
+
responseSchema: PassthroughDataSchema24,
|
|
12115
12357
|
responseType: "passthrough"
|
|
12116
12358
|
},
|
|
12117
12359
|
{
|
|
@@ -12123,7 +12365,7 @@ var endpoints23 = [
|
|
|
12123
12365
|
pathParams: [],
|
|
12124
12366
|
queryParams: [],
|
|
12125
12367
|
edgeCache: true,
|
|
12126
|
-
responseSchema:
|
|
12368
|
+
responseSchema: PassthroughDataSchema24,
|
|
12127
12369
|
responseType: "passthrough"
|
|
12128
12370
|
}
|
|
12129
12371
|
];
|
|
@@ -12210,15 +12452,9 @@ var SlackClient = class extends BaseServiceClient {
|
|
|
12210
12452
|
constructor(http, baseUrl = "https://slack.augur-api.com") {
|
|
12211
12453
|
super("slack", http, baseUrl);
|
|
12212
12454
|
const boundExecuteRequest = (config, params, pathParams) => {
|
|
12213
|
-
|
|
12214
|
-
return this.executeRequest(config, params, pathParams);
|
|
12215
|
-
}
|
|
12216
|
-
if (params !== void 0 || config.paramsSchema !== void 0) {
|
|
12217
|
-
return this.executeRequest(config, params);
|
|
12218
|
-
}
|
|
12219
|
-
return this.executeRequest(config);
|
|
12455
|
+
return this.executeRequest(config, params, pathParams);
|
|
12220
12456
|
};
|
|
12221
|
-
const proxy = createServiceProxy("slack", boundExecuteRequest,
|
|
12457
|
+
const proxy = createServiceProxy("slack", boundExecuteRequest, endpoints24);
|
|
12222
12458
|
const dataProxy = createDataProxy(proxy);
|
|
12223
12459
|
this.webHook = proxy.webHook;
|
|
12224
12460
|
this.webHookData = dataProxy.webHook;
|
|
@@ -12228,19 +12464,19 @@ var SlackClient = class extends BaseServiceClient {
|
|
|
12228
12464
|
};
|
|
12229
12465
|
|
|
12230
12466
|
// src/services/smarty-streets/generated/schemas.ts
|
|
12231
|
-
var
|
|
12232
|
-
var UsLookupGetParamsSchema =
|
|
12467
|
+
var v33 = __toESM(require("valibot"));
|
|
12468
|
+
var UsLookupGetParamsSchema = v33.looseObject({
|
|
12233
12469
|
...EdgeCacheParamsSchema.entries,
|
|
12234
|
-
address1:
|
|
12235
|
-
address2:
|
|
12236
|
-
city:
|
|
12237
|
-
postalCode:
|
|
12238
|
-
state:
|
|
12470
|
+
address1: v33.string(),
|
|
12471
|
+
address2: v33.string(),
|
|
12472
|
+
city: v33.string(),
|
|
12473
|
+
postalCode: v33.string(),
|
|
12474
|
+
state: v33.string()
|
|
12239
12475
|
});
|
|
12240
|
-
var
|
|
12476
|
+
var PassthroughDataSchema25 = v33.record(v33.string(), v33.unknown());
|
|
12241
12477
|
|
|
12242
12478
|
// src/services/smarty-streets/generated/endpoints.ts
|
|
12243
|
-
var
|
|
12479
|
+
var endpoints25 = [
|
|
12244
12480
|
{
|
|
12245
12481
|
method: "GET",
|
|
12246
12482
|
path: "/us/lookup",
|
|
@@ -12250,7 +12486,7 @@ var endpoints24 = [
|
|
|
12250
12486
|
pathParams: [],
|
|
12251
12487
|
queryParams: ["address1", "address2", "city", "postalCode", "state"],
|
|
12252
12488
|
edgeCache: true,
|
|
12253
|
-
responseSchema:
|
|
12489
|
+
responseSchema: PassthroughDataSchema25,
|
|
12254
12490
|
responseType: "passthrough"
|
|
12255
12491
|
}
|
|
12256
12492
|
];
|
|
@@ -12416,18 +12652,12 @@ var SmartyStreetsClient = class extends BaseServiceClient {
|
|
|
12416
12652
|
constructor(http, baseUrl = "https://smarty-streets.augur-api.com") {
|
|
12417
12653
|
super("smarty-streets", http, baseUrl);
|
|
12418
12654
|
const boundExecuteRequest = (config, params, pathParams) => {
|
|
12419
|
-
|
|
12420
|
-
return this.executeRequest(config, params, pathParams);
|
|
12421
|
-
}
|
|
12422
|
-
if (params !== void 0 || config.paramsSchema !== void 0) {
|
|
12423
|
-
return this.executeRequest(config, params);
|
|
12424
|
-
}
|
|
12425
|
-
return this.executeRequest(config);
|
|
12655
|
+
return this.executeRequest(config, params, pathParams);
|
|
12426
12656
|
};
|
|
12427
12657
|
const proxy = createServiceProxy(
|
|
12428
12658
|
"smarty-streets",
|
|
12429
12659
|
boundExecuteRequest,
|
|
12430
|
-
|
|
12660
|
+
endpoints25
|
|
12431
12661
|
);
|
|
12432
12662
|
const dataProxy = createDataProxy(proxy);
|
|
12433
12663
|
this.us = proxy.us;
|
|
@@ -12440,30 +12670,30 @@ var SmartyStreetsClient = class extends BaseServiceClient {
|
|
|
12440
12670
|
};
|
|
12441
12671
|
|
|
12442
12672
|
// src/services/ups/generated/schemas.ts
|
|
12443
|
-
var
|
|
12444
|
-
var RatesShopListParamsSchema =
|
|
12445
|
-
...EdgeCacheParamsSchema.entries,
|
|
12446
|
-
cacheSiteId:
|
|
12447
|
-
fromAddress1:
|
|
12448
|
-
fromAddress2:
|
|
12449
|
-
fromAddress3:
|
|
12450
|
-
fromCity:
|
|
12451
|
-
fromCountryCode:
|
|
12452
|
-
fromPostalCode:
|
|
12453
|
-
fromStateProvinceCode:
|
|
12454
|
-
toAddress1:
|
|
12455
|
-
toAddress2:
|
|
12456
|
-
toAddress3:
|
|
12457
|
-
toCity:
|
|
12458
|
-
toCountryCode:
|
|
12459
|
-
toPostalCode:
|
|
12460
|
-
toStateProvinceCode:
|
|
12461
|
-
weight:
|
|
12462
|
-
});
|
|
12463
|
-
var
|
|
12673
|
+
var v34 = __toESM(require("valibot"));
|
|
12674
|
+
var RatesShopListParamsSchema = v34.looseObject({
|
|
12675
|
+
...EdgeCacheParamsSchema.entries,
|
|
12676
|
+
cacheSiteId: v34.optional(v34.string()),
|
|
12677
|
+
fromAddress1: v34.optional(v34.string()),
|
|
12678
|
+
fromAddress2: v34.optional(v34.string()),
|
|
12679
|
+
fromAddress3: v34.optional(v34.string()),
|
|
12680
|
+
fromCity: v34.optional(v34.string()),
|
|
12681
|
+
fromCountryCode: v34.optional(v34.string()),
|
|
12682
|
+
fromPostalCode: v34.optional(v34.string()),
|
|
12683
|
+
fromStateProvinceCode: v34.optional(v34.string()),
|
|
12684
|
+
toAddress1: v34.optional(v34.string()),
|
|
12685
|
+
toAddress2: v34.optional(v34.string()),
|
|
12686
|
+
toAddress3: v34.optional(v34.string()),
|
|
12687
|
+
toCity: v34.optional(v34.string()),
|
|
12688
|
+
toCountryCode: v34.optional(v34.string()),
|
|
12689
|
+
toPostalCode: v34.optional(v34.string()),
|
|
12690
|
+
toStateProvinceCode: v34.optional(v34.string()),
|
|
12691
|
+
weight: v34.optional(v34.pipe(v34.unknown(), v34.transform(Number)))
|
|
12692
|
+
});
|
|
12693
|
+
var PassthroughDataSchema26 = v34.record(v34.string(), v34.unknown());
|
|
12464
12694
|
|
|
12465
12695
|
// src/services/ups/generated/endpoints.ts
|
|
12466
|
-
var
|
|
12696
|
+
var endpoints26 = [
|
|
12467
12697
|
{
|
|
12468
12698
|
method: "GET",
|
|
12469
12699
|
path: "/rates-shop",
|
|
@@ -12490,15 +12720,15 @@ var endpoints25 = [
|
|
|
12490
12720
|
"weight"
|
|
12491
12721
|
],
|
|
12492
12722
|
edgeCache: true,
|
|
12493
|
-
responseSchema:
|
|
12723
|
+
responseSchema: PassthroughDataSchema26,
|
|
12494
12724
|
responseType: "passthrough"
|
|
12495
12725
|
}
|
|
12496
12726
|
];
|
|
12497
12727
|
|
|
12498
12728
|
// src/services/ups/resources/health-check.ts
|
|
12499
|
-
var
|
|
12500
|
-
var HealthCheckParamsSchema =
|
|
12501
|
-
"x-site-id":
|
|
12729
|
+
var v35 = __toESM(require("valibot"));
|
|
12730
|
+
var HealthCheckParamsSchema = v35.looseObject({
|
|
12731
|
+
"x-site-id": v35.string(),
|
|
12502
12732
|
...EdgeCacheParamsSchema.entries
|
|
12503
12733
|
});
|
|
12504
12734
|
function createHealthCheckResource26(executeRequest) {
|
|
@@ -12588,15 +12818,9 @@ var UPSClient = class extends BaseServiceClient {
|
|
|
12588
12818
|
constructor(http, baseUrl = "https://ups.augur-api.com") {
|
|
12589
12819
|
super("ups", http, baseUrl);
|
|
12590
12820
|
const boundExecuteRequest = (config, params, pathParams) => {
|
|
12591
|
-
|
|
12592
|
-
return this.executeRequest(config, params, pathParams);
|
|
12593
|
-
}
|
|
12594
|
-
if (params !== void 0 || config.paramsSchema !== void 0) {
|
|
12595
|
-
return this.executeRequest(config, params);
|
|
12596
|
-
}
|
|
12597
|
-
return this.executeRequest(config);
|
|
12821
|
+
return this.executeRequest(config, params, pathParams);
|
|
12598
12822
|
};
|
|
12599
|
-
const proxy = createServiceProxy("ups", boundExecuteRequest,
|
|
12823
|
+
const proxy = createServiceProxy("ups", boundExecuteRequest, endpoints26);
|
|
12600
12824
|
const dataProxy = createDataProxy(proxy);
|
|
12601
12825
|
this.ratesShop = proxy.ratesShop;
|
|
12602
12826
|
this.ratesShopData = dataProxy.ratesShop;
|
|
@@ -12606,354 +12830,354 @@ var UPSClient = class extends BaseServiceClient {
|
|
|
12606
12830
|
};
|
|
12607
12831
|
|
|
12608
12832
|
// src/services/basecamp2/generated/schemas.ts
|
|
12609
|
-
var
|
|
12610
|
-
var CommentsListParamsSchema =
|
|
12611
|
-
...EdgeCacheParamsSchema.entries,
|
|
12612
|
-
creator_id:
|
|
12613
|
-
limit:
|
|
12614
|
-
offset:
|
|
12615
|
-
order_by:
|
|
12616
|
-
todos_id:
|
|
12617
|
-
});
|
|
12618
|
-
var EventsListParamsSchema =
|
|
12619
|
-
...EdgeCacheParamsSchema.entries,
|
|
12620
|
-
event_type_cd:
|
|
12621
|
-
id:
|
|
12622
|
-
limit:
|
|
12623
|
-
offset:
|
|
12624
|
-
order_by:
|
|
12625
|
-
people_id:
|
|
12626
|
-
});
|
|
12627
|
-
var MetricsListParamsSchema =
|
|
12628
|
-
...EdgeCacheParamsSchema.entries,
|
|
12629
|
-
assigneeId:
|
|
12630
|
-
creatorId:
|
|
12631
|
-
hasComments:
|
|
12632
|
-
isStale:
|
|
12633
|
-
limit:
|
|
12634
|
-
needsResponse:
|
|
12635
|
-
offset:
|
|
12636
|
-
orderBy:
|
|
12637
|
-
projectsId:
|
|
12638
|
-
todosStatusCd:
|
|
12639
|
-
});
|
|
12640
|
-
var PeopleListParamsSchema =
|
|
12641
|
-
...EdgeCacheParamsSchema.entries,
|
|
12642
|
-
adminFlag:
|
|
12643
|
-
limit:
|
|
12644
|
-
offset:
|
|
12645
|
-
orderBy:
|
|
12646
|
-
q:
|
|
12647
|
-
trashedFlag:
|
|
12648
|
-
});
|
|
12649
|
-
var PeopleMetricsListParamsSchema =
|
|
12650
|
-
...EdgeCacheParamsSchema.entries,
|
|
12651
|
-
hasComments:
|
|
12652
|
-
isStale:
|
|
12653
|
-
limit:
|
|
12654
|
-
needsResponse:
|
|
12655
|
-
offset:
|
|
12656
|
-
orderBy:
|
|
12657
|
-
todosStatusCd:
|
|
12658
|
-
});
|
|
12659
|
-
var PeopleTodosListParamsSchema =
|
|
12660
|
-
...EdgeCacheParamsSchema.entries,
|
|
12661
|
-
completed_flag:
|
|
12662
|
-
due_at:
|
|
12663
|
-
limit:
|
|
12664
|
-
offset:
|
|
12665
|
-
order_by:
|
|
12666
|
-
projects_id:
|
|
12667
|
-
});
|
|
12668
|
-
var PeopleProjectsTodosListParamsSchema =
|
|
12669
|
-
...EdgeCacheParamsSchema.entries,
|
|
12670
|
-
completed_flag:
|
|
12671
|
-
limit:
|
|
12672
|
-
offset:
|
|
12673
|
-
order_by:
|
|
12674
|
-
});
|
|
12675
|
-
var ProjectsListParamsSchema =
|
|
12676
|
-
...EdgeCacheParamsSchema.entries,
|
|
12677
|
-
archived_flag:
|
|
12678
|
-
limit:
|
|
12679
|
-
offset:
|
|
12680
|
-
order_by:
|
|
12681
|
-
trashed_flag:
|
|
12682
|
-
});
|
|
12683
|
-
var ProjectsMetricsListParamsSchema =
|
|
12684
|
-
...EdgeCacheParamsSchema.entries,
|
|
12685
|
-
hasComments:
|
|
12686
|
-
isStale:
|
|
12687
|
-
limit:
|
|
12688
|
-
needsResponse:
|
|
12689
|
-
offset:
|
|
12690
|
-
orderBy:
|
|
12691
|
-
todosStatusCd:
|
|
12692
|
-
});
|
|
12693
|
-
var ProjectsTodolistsListParamsSchema =
|
|
12694
|
-
...EdgeCacheParamsSchema.entries,
|
|
12695
|
-
completed_flag:
|
|
12696
|
-
limit:
|
|
12697
|
-
offset:
|
|
12698
|
-
order_by:
|
|
12699
|
-
});
|
|
12700
|
-
var ProjectsTodosListParamsSchema =
|
|
12701
|
-
...EdgeCacheParamsSchema.entries,
|
|
12702
|
-
assignee_id:
|
|
12703
|
-
completed_flag:
|
|
12704
|
-
limit:
|
|
12705
|
-
offset:
|
|
12706
|
-
order_by:
|
|
12707
|
-
});
|
|
12708
|
-
var ProjectsTodolistsTodosListParamsSchema =
|
|
12709
|
-
...EdgeCacheParamsSchema.entries,
|
|
12710
|
-
assignee_id:
|
|
12711
|
-
completed_flag:
|
|
12712
|
-
limit:
|
|
12713
|
-
offset:
|
|
12714
|
-
order_by:
|
|
12715
|
-
});
|
|
12716
|
-
var TodolistsListParamsSchema =
|
|
12717
|
-
...EdgeCacheParamsSchema.entries,
|
|
12718
|
-
assignee_id:
|
|
12719
|
-
completed_flag:
|
|
12720
|
-
limit:
|
|
12721
|
-
offset:
|
|
12722
|
-
order_by:
|
|
12723
|
-
projects_id:
|
|
12724
|
-
});
|
|
12725
|
-
var TodosListParamsSchema =
|
|
12726
|
-
...EdgeCacheParamsSchema.entries,
|
|
12727
|
-
assignee_id:
|
|
12728
|
-
completed_flag:
|
|
12729
|
-
due_at:
|
|
12730
|
-
limit:
|
|
12731
|
-
offset:
|
|
12732
|
-
order_by:
|
|
12733
|
-
projects_id:
|
|
12734
|
-
todolist_id:
|
|
12735
|
-
});
|
|
12736
|
-
var TodosSummaryListParamsSchema =
|
|
12737
|
-
...EdgeCacheParamsSchema.entries,
|
|
12738
|
-
akasha_cd:
|
|
12739
|
-
limit:
|
|
12740
|
-
offset:
|
|
12741
|
-
process_cd:
|
|
12742
|
-
});
|
|
12743
|
-
var TodosCommentsListParamsSchema =
|
|
12744
|
-
...EdgeCacheParamsSchema.entries,
|
|
12745
|
-
limit:
|
|
12746
|
-
offset:
|
|
12747
|
-
order_by:
|
|
12748
|
-
});
|
|
12749
|
-
var TodosEventsListParamsSchema =
|
|
12750
|
-
...EdgeCacheParamsSchema.entries,
|
|
12751
|
-
event_type_cd:
|
|
12752
|
-
limit:
|
|
12753
|
-
offset:
|
|
12754
|
-
order_by:
|
|
12755
|
-
people_id:
|
|
12756
|
-
});
|
|
12757
|
-
var TodosSessionsListParamsSchema =
|
|
12758
|
-
...EdgeCacheParamsSchema.entries,
|
|
12759
|
-
limit:
|
|
12760
|
-
offset:
|
|
12761
|
-
order_by:
|
|
12762
|
-
session_status_cd:
|
|
12763
|
-
});
|
|
12764
|
-
var CommentsDataSchema =
|
|
12765
|
-
id:
|
|
12766
|
-
content:
|
|
12767
|
-
updatedAt:
|
|
12768
|
-
createdAt:
|
|
12769
|
-
creatorId:
|
|
12770
|
-
updateCd:
|
|
12771
|
-
statusCd:
|
|
12772
|
-
processCd:
|
|
12773
|
-
todosId:
|
|
12774
|
-
vector:
|
|
12775
|
-
vectorCd:
|
|
12776
|
-
vectorFlag:
|
|
12777
|
-
dateLastVector:
|
|
12778
|
-
location:
|
|
12779
|
-
contentLength:
|
|
12780
|
-
tokenCount:
|
|
12781
|
-
});
|
|
12782
|
-
var EventsDataSchema =
|
|
12783
|
-
id:
|
|
12784
|
-
eventNum:
|
|
12785
|
-
eventTypeCd:
|
|
12786
|
-
peopleId:
|
|
12787
|
-
eventAt:
|
|
12788
|
-
commentId:
|
|
12789
|
-
dateCreated:
|
|
12790
|
-
dateLastModified:
|
|
12791
|
-
updateCd:
|
|
12792
|
-
statusCd:
|
|
12793
|
-
processCd:
|
|
12794
|
-
todosSessionsUid:
|
|
12795
|
-
});
|
|
12796
|
-
var MetricsDataSchema =
|
|
12797
|
-
id:
|
|
12798
|
-
projectsId:
|
|
12799
|
-
todolistId:
|
|
12800
|
-
assigneeId:
|
|
12801
|
-
creatorId:
|
|
12802
|
-
todosContent:
|
|
12803
|
-
todosStatusCd:
|
|
12804
|
-
isStale:
|
|
12805
|
-
hasComments:
|
|
12806
|
-
needsResponse:
|
|
12807
|
-
createdAt:
|
|
12808
|
-
completedAt:
|
|
12809
|
-
lastActivityAt:
|
|
12810
|
-
firstCommentAt:
|
|
12811
|
-
lastCommentAt:
|
|
12812
|
-
daysOpen:
|
|
12813
|
-
daysSinceLastEvent:
|
|
12814
|
-
daysToFirstComment:
|
|
12815
|
-
cycleTimeDays:
|
|
12816
|
-
commentCount:
|
|
12817
|
-
activeDaysCount:
|
|
12818
|
-
activitySpanDays:
|
|
12819
|
-
avgDaysBetweenActivity:
|
|
12820
|
-
lastCommenterId:
|
|
12821
|
-
dateCreated:
|
|
12822
|
-
dateLastModified:
|
|
12823
|
-
updateCd:
|
|
12824
|
-
statusCd:
|
|
12825
|
-
processCd:
|
|
12826
|
-
});
|
|
12827
|
-
var PeopleDataSchema =
|
|
12828
|
-
id:
|
|
12829
|
-
identityId:
|
|
12830
|
-
name:
|
|
12831
|
-
emailAddress:
|
|
12832
|
-
adminFlag:
|
|
12833
|
-
trashedFlag:
|
|
12834
|
-
updatedAt:
|
|
12835
|
-
createdAt:
|
|
12836
|
-
url:
|
|
12837
|
-
appUrl:
|
|
12838
|
-
avatarUrl:
|
|
12839
|
-
fullsizeAvatarUrl:
|
|
12840
|
-
updateCd:
|
|
12841
|
-
statusCd:
|
|
12842
|
-
processCd:
|
|
12843
|
-
});
|
|
12844
|
-
var ProjectsDataSchema =
|
|
12845
|
-
id:
|
|
12846
|
-
name:
|
|
12847
|
-
description:
|
|
12848
|
-
updatedAt:
|
|
12849
|
-
createdAt:
|
|
12850
|
-
lastEventAt:
|
|
12851
|
-
url:
|
|
12852
|
-
appUrl:
|
|
12853
|
-
templateFlag:
|
|
12854
|
-
archivedFlag:
|
|
12855
|
-
starredFlag:
|
|
12856
|
-
trashedFlag:
|
|
12857
|
-
draftFlag:
|
|
12858
|
-
isClientProjectFlag:
|
|
12859
|
-
color:
|
|
12860
|
-
updateCd:
|
|
12861
|
-
statusCd:
|
|
12862
|
-
processCd:
|
|
12863
|
-
});
|
|
12864
|
-
var TodolistsDataSchema =
|
|
12865
|
-
id:
|
|
12866
|
-
name:
|
|
12867
|
-
description:
|
|
12868
|
-
updatedAt:
|
|
12869
|
-
createdAt:
|
|
12870
|
-
url:
|
|
12871
|
-
appUrl:
|
|
12872
|
-
completedFlag:
|
|
12873
|
-
privateFlag:
|
|
12874
|
-
trashedFlag:
|
|
12875
|
-
completedCount:
|
|
12876
|
-
remainingCount:
|
|
12877
|
-
creatorId:
|
|
12878
|
-
bucketId:
|
|
12879
|
-
updateCd:
|
|
12880
|
-
position:
|
|
12881
|
-
statusCd:
|
|
12882
|
-
processCd:
|
|
12883
|
-
projectsId:
|
|
12884
|
-
});
|
|
12885
|
-
var TodosDataSchema =
|
|
12886
|
-
id:
|
|
12887
|
-
todolistId:
|
|
12888
|
-
content:
|
|
12889
|
-
dueAt:
|
|
12890
|
-
dueOn:
|
|
12891
|
-
updatedAt:
|
|
12892
|
-
createdAt:
|
|
12893
|
-
completedAt:
|
|
12894
|
-
commentsCount:
|
|
12895
|
-
privateFlag:
|
|
12896
|
-
trashedFlag:
|
|
12897
|
-
creatorId:
|
|
12898
|
-
assigneeId:
|
|
12899
|
-
completedFlag:
|
|
12900
|
-
url:
|
|
12901
|
-
appUrl:
|
|
12902
|
-
updateCd:
|
|
12903
|
-
position:
|
|
12904
|
-
projectsId:
|
|
12905
|
-
detailJson:
|
|
12906
|
-
pullDetailCd:
|
|
12907
|
-
processCd:
|
|
12908
|
-
agrInfoCd:
|
|
12909
|
-
statusCd:
|
|
12910
|
-
lastCommentAt:
|
|
12911
|
-
vector:
|
|
12912
|
-
vectorCd:
|
|
12913
|
-
vectorFlag:
|
|
12914
|
-
dateLastVector:
|
|
12915
|
-
});
|
|
12916
|
-
var TodosSummaryDataSchema =
|
|
12917
|
-
id:
|
|
12918
|
-
summary:
|
|
12919
|
-
summaryTokens:
|
|
12920
|
-
context:
|
|
12921
|
-
contextTokens:
|
|
12922
|
-
modelName:
|
|
12923
|
-
vector:
|
|
12924
|
-
vectorCd:
|
|
12925
|
-
statusCd:
|
|
12926
|
-
processCd:
|
|
12927
|
-
updateCd:
|
|
12928
|
-
dateCreated:
|
|
12929
|
-
dateLastModified:
|
|
12930
|
-
akashaCd:
|
|
12931
|
-
complexityScore:
|
|
12932
|
-
complexityReason:
|
|
12933
|
-
estimatedMinutes:
|
|
12934
|
-
requiredServices:
|
|
12935
|
-
worthinessReason:
|
|
12936
|
-
});
|
|
12937
|
-
var TodosSessionsDataSchema =
|
|
12938
|
-
todosSessionsUid:
|
|
12939
|
-
todosId:
|
|
12940
|
-
sessionNum:
|
|
12941
|
-
sessionStatusCd:
|
|
12942
|
-
subject:
|
|
12943
|
-
problem:
|
|
12944
|
-
investigation:
|
|
12945
|
-
plan:
|
|
12946
|
-
outcome:
|
|
12947
|
-
dateCreated:
|
|
12948
|
-
dateLastModified:
|
|
12949
|
-
updateCd:
|
|
12950
|
-
statusCd:
|
|
12951
|
-
processCd:
|
|
12952
|
-
});
|
|
12953
|
-
var
|
|
12833
|
+
var v36 = __toESM(require("valibot"));
|
|
12834
|
+
var CommentsListParamsSchema = v36.looseObject({
|
|
12835
|
+
...EdgeCacheParamsSchema.entries,
|
|
12836
|
+
creator_id: v36.optional(v36.pipe(v36.unknown(), v36.transform(Number))),
|
|
12837
|
+
limit: v36.optional(v36.pipe(v36.unknown(), v36.transform(Number))),
|
|
12838
|
+
offset: v36.optional(v36.pipe(v36.unknown(), v36.transform(Number))),
|
|
12839
|
+
order_by: v36.optional(v36.string()),
|
|
12840
|
+
todos_id: v36.optional(v36.pipe(v36.unknown(), v36.transform(Number)))
|
|
12841
|
+
});
|
|
12842
|
+
var EventsListParamsSchema = v36.looseObject({
|
|
12843
|
+
...EdgeCacheParamsSchema.entries,
|
|
12844
|
+
event_type_cd: v36.optional(v36.pipe(v36.unknown(), v36.transform(Number))),
|
|
12845
|
+
id: v36.optional(v36.pipe(v36.unknown(), v36.transform(Number))),
|
|
12846
|
+
limit: v36.optional(v36.pipe(v36.unknown(), v36.transform(Number))),
|
|
12847
|
+
offset: v36.optional(v36.pipe(v36.unknown(), v36.transform(Number))),
|
|
12848
|
+
order_by: v36.optional(v36.string()),
|
|
12849
|
+
people_id: v36.optional(v36.pipe(v36.unknown(), v36.transform(Number)))
|
|
12850
|
+
});
|
|
12851
|
+
var MetricsListParamsSchema = v36.looseObject({
|
|
12852
|
+
...EdgeCacheParamsSchema.entries,
|
|
12853
|
+
assigneeId: v36.optional(v36.pipe(v36.unknown(), v36.transform(Number))),
|
|
12854
|
+
creatorId: v36.optional(v36.pipe(v36.unknown(), v36.transform(Number))),
|
|
12855
|
+
hasComments: v36.optional(v36.pipe(v36.unknown(), v36.transform(Number))),
|
|
12856
|
+
isStale: v36.optional(v36.pipe(v36.unknown(), v36.transform(Number))),
|
|
12857
|
+
limit: v36.optional(v36.pipe(v36.unknown(), v36.transform(Number))),
|
|
12858
|
+
needsResponse: v36.optional(v36.pipe(v36.unknown(), v36.transform(Number))),
|
|
12859
|
+
offset: v36.optional(v36.pipe(v36.unknown(), v36.transform(Number))),
|
|
12860
|
+
orderBy: v36.optional(v36.string()),
|
|
12861
|
+
projectsId: v36.optional(v36.pipe(v36.unknown(), v36.transform(Number))),
|
|
12862
|
+
todosStatusCd: v36.optional(v36.pipe(v36.unknown(), v36.transform(Number)))
|
|
12863
|
+
});
|
|
12864
|
+
var PeopleListParamsSchema = v36.looseObject({
|
|
12865
|
+
...EdgeCacheParamsSchema.entries,
|
|
12866
|
+
adminFlag: v36.optional(v36.string()),
|
|
12867
|
+
limit: v36.optional(v36.pipe(v36.unknown(), v36.transform(Number))),
|
|
12868
|
+
offset: v36.optional(v36.pipe(v36.unknown(), v36.transform(Number))),
|
|
12869
|
+
orderBy: v36.optional(v36.string()),
|
|
12870
|
+
q: v36.optional(v36.string()),
|
|
12871
|
+
trashedFlag: v36.optional(v36.string())
|
|
12872
|
+
});
|
|
12873
|
+
var PeopleMetricsListParamsSchema = v36.looseObject({
|
|
12874
|
+
...EdgeCacheParamsSchema.entries,
|
|
12875
|
+
hasComments: v36.optional(v36.pipe(v36.unknown(), v36.transform(Number))),
|
|
12876
|
+
isStale: v36.optional(v36.pipe(v36.unknown(), v36.transform(Number))),
|
|
12877
|
+
limit: v36.optional(v36.pipe(v36.unknown(), v36.transform(Number))),
|
|
12878
|
+
needsResponse: v36.optional(v36.pipe(v36.unknown(), v36.transform(Number))),
|
|
12879
|
+
offset: v36.optional(v36.pipe(v36.unknown(), v36.transform(Number))),
|
|
12880
|
+
orderBy: v36.optional(v36.string()),
|
|
12881
|
+
todosStatusCd: v36.optional(v36.pipe(v36.unknown(), v36.transform(Number)))
|
|
12882
|
+
});
|
|
12883
|
+
var PeopleTodosListParamsSchema = v36.looseObject({
|
|
12884
|
+
...EdgeCacheParamsSchema.entries,
|
|
12885
|
+
completed_flag: v36.optional(v36.string()),
|
|
12886
|
+
due_at: v36.optional(v36.string()),
|
|
12887
|
+
limit: v36.optional(v36.pipe(v36.unknown(), v36.transform(Number))),
|
|
12888
|
+
offset: v36.optional(v36.pipe(v36.unknown(), v36.transform(Number))),
|
|
12889
|
+
order_by: v36.optional(v36.string()),
|
|
12890
|
+
projects_id: v36.optional(v36.pipe(v36.unknown(), v36.transform(Number)))
|
|
12891
|
+
});
|
|
12892
|
+
var PeopleProjectsTodosListParamsSchema = v36.looseObject({
|
|
12893
|
+
...EdgeCacheParamsSchema.entries,
|
|
12894
|
+
completed_flag: v36.optional(v36.string()),
|
|
12895
|
+
limit: v36.optional(v36.pipe(v36.unknown(), v36.transform(Number))),
|
|
12896
|
+
offset: v36.optional(v36.pipe(v36.unknown(), v36.transform(Number))),
|
|
12897
|
+
order_by: v36.optional(v36.string())
|
|
12898
|
+
});
|
|
12899
|
+
var ProjectsListParamsSchema = v36.looseObject({
|
|
12900
|
+
...EdgeCacheParamsSchema.entries,
|
|
12901
|
+
archived_flag: v36.optional(v36.string()),
|
|
12902
|
+
limit: v36.optional(v36.pipe(v36.unknown(), v36.transform(Number))),
|
|
12903
|
+
offset: v36.optional(v36.pipe(v36.unknown(), v36.transform(Number))),
|
|
12904
|
+
order_by: v36.optional(v36.string()),
|
|
12905
|
+
trashed_flag: v36.optional(v36.string())
|
|
12906
|
+
});
|
|
12907
|
+
var ProjectsMetricsListParamsSchema = v36.looseObject({
|
|
12908
|
+
...EdgeCacheParamsSchema.entries,
|
|
12909
|
+
hasComments: v36.optional(v36.pipe(v36.unknown(), v36.transform(Number))),
|
|
12910
|
+
isStale: v36.optional(v36.pipe(v36.unknown(), v36.transform(Number))),
|
|
12911
|
+
limit: v36.optional(v36.pipe(v36.unknown(), v36.transform(Number))),
|
|
12912
|
+
needsResponse: v36.optional(v36.pipe(v36.unknown(), v36.transform(Number))),
|
|
12913
|
+
offset: v36.optional(v36.pipe(v36.unknown(), v36.transform(Number))),
|
|
12914
|
+
orderBy: v36.optional(v36.string()),
|
|
12915
|
+
todosStatusCd: v36.optional(v36.pipe(v36.unknown(), v36.transform(Number)))
|
|
12916
|
+
});
|
|
12917
|
+
var ProjectsTodolistsListParamsSchema = v36.looseObject({
|
|
12918
|
+
...EdgeCacheParamsSchema.entries,
|
|
12919
|
+
completed_flag: v36.optional(v36.string()),
|
|
12920
|
+
limit: v36.optional(v36.pipe(v36.unknown(), v36.transform(Number))),
|
|
12921
|
+
offset: v36.optional(v36.pipe(v36.unknown(), v36.transform(Number))),
|
|
12922
|
+
order_by: v36.optional(v36.string())
|
|
12923
|
+
});
|
|
12924
|
+
var ProjectsTodosListParamsSchema = v36.looseObject({
|
|
12925
|
+
...EdgeCacheParamsSchema.entries,
|
|
12926
|
+
assignee_id: v36.optional(v36.pipe(v36.unknown(), v36.transform(Number))),
|
|
12927
|
+
completed_flag: v36.optional(v36.string()),
|
|
12928
|
+
limit: v36.optional(v36.pipe(v36.unknown(), v36.transform(Number))),
|
|
12929
|
+
offset: v36.optional(v36.pipe(v36.unknown(), v36.transform(Number))),
|
|
12930
|
+
order_by: v36.optional(v36.string())
|
|
12931
|
+
});
|
|
12932
|
+
var ProjectsTodolistsTodosListParamsSchema = v36.looseObject({
|
|
12933
|
+
...EdgeCacheParamsSchema.entries,
|
|
12934
|
+
assignee_id: v36.optional(v36.pipe(v36.unknown(), v36.transform(Number))),
|
|
12935
|
+
completed_flag: v36.optional(v36.string()),
|
|
12936
|
+
limit: v36.optional(v36.pipe(v36.unknown(), v36.transform(Number))),
|
|
12937
|
+
offset: v36.optional(v36.pipe(v36.unknown(), v36.transform(Number))),
|
|
12938
|
+
order_by: v36.optional(v36.string())
|
|
12939
|
+
});
|
|
12940
|
+
var TodolistsListParamsSchema = v36.looseObject({
|
|
12941
|
+
...EdgeCacheParamsSchema.entries,
|
|
12942
|
+
assignee_id: v36.optional(v36.pipe(v36.unknown(), v36.transform(Number))),
|
|
12943
|
+
completed_flag: v36.optional(v36.string()),
|
|
12944
|
+
limit: v36.optional(v36.pipe(v36.unknown(), v36.transform(Number))),
|
|
12945
|
+
offset: v36.optional(v36.pipe(v36.unknown(), v36.transform(Number))),
|
|
12946
|
+
order_by: v36.optional(v36.string()),
|
|
12947
|
+
projects_id: v36.optional(v36.pipe(v36.unknown(), v36.transform(Number)))
|
|
12948
|
+
});
|
|
12949
|
+
var TodosListParamsSchema = v36.looseObject({
|
|
12950
|
+
...EdgeCacheParamsSchema.entries,
|
|
12951
|
+
assignee_id: v36.optional(v36.pipe(v36.unknown(), v36.transform(Number))),
|
|
12952
|
+
completed_flag: v36.optional(v36.string()),
|
|
12953
|
+
due_at: v36.optional(v36.string()),
|
|
12954
|
+
limit: v36.optional(v36.pipe(v36.unknown(), v36.transform(Number))),
|
|
12955
|
+
offset: v36.optional(v36.pipe(v36.unknown(), v36.transform(Number))),
|
|
12956
|
+
order_by: v36.optional(v36.string()),
|
|
12957
|
+
projects_id: v36.optional(v36.pipe(v36.unknown(), v36.transform(Number))),
|
|
12958
|
+
todolist_id: v36.optional(v36.pipe(v36.unknown(), v36.transform(Number)))
|
|
12959
|
+
});
|
|
12960
|
+
var TodosSummaryListParamsSchema = v36.looseObject({
|
|
12961
|
+
...EdgeCacheParamsSchema.entries,
|
|
12962
|
+
akasha_cd: v36.optional(v36.pipe(v36.unknown(), v36.transform(Number))),
|
|
12963
|
+
limit: v36.optional(v36.pipe(v36.unknown(), v36.transform(Number))),
|
|
12964
|
+
offset: v36.optional(v36.pipe(v36.unknown(), v36.transform(Number))),
|
|
12965
|
+
process_cd: v36.optional(v36.pipe(v36.unknown(), v36.transform(Number)))
|
|
12966
|
+
});
|
|
12967
|
+
var TodosCommentsListParamsSchema = v36.looseObject({
|
|
12968
|
+
...EdgeCacheParamsSchema.entries,
|
|
12969
|
+
limit: v36.optional(v36.pipe(v36.unknown(), v36.transform(Number))),
|
|
12970
|
+
offset: v36.optional(v36.pipe(v36.unknown(), v36.transform(Number))),
|
|
12971
|
+
order_by: v36.optional(v36.string())
|
|
12972
|
+
});
|
|
12973
|
+
var TodosEventsListParamsSchema = v36.looseObject({
|
|
12974
|
+
...EdgeCacheParamsSchema.entries,
|
|
12975
|
+
event_type_cd: v36.optional(v36.pipe(v36.unknown(), v36.transform(Number))),
|
|
12976
|
+
limit: v36.optional(v36.pipe(v36.unknown(), v36.transform(Number))),
|
|
12977
|
+
offset: v36.optional(v36.pipe(v36.unknown(), v36.transform(Number))),
|
|
12978
|
+
order_by: v36.optional(v36.string()),
|
|
12979
|
+
people_id: v36.optional(v36.pipe(v36.unknown(), v36.transform(Number)))
|
|
12980
|
+
});
|
|
12981
|
+
var TodosSessionsListParamsSchema = v36.looseObject({
|
|
12982
|
+
...EdgeCacheParamsSchema.entries,
|
|
12983
|
+
limit: v36.optional(v36.pipe(v36.unknown(), v36.transform(Number))),
|
|
12984
|
+
offset: v36.optional(v36.pipe(v36.unknown(), v36.transform(Number))),
|
|
12985
|
+
order_by: v36.optional(v36.string()),
|
|
12986
|
+
session_status_cd: v36.optional(v36.pipe(v36.unknown(), v36.transform(Number)))
|
|
12987
|
+
});
|
|
12988
|
+
var CommentsDataSchema = v36.looseObject({
|
|
12989
|
+
id: v36.optional(v36.number()),
|
|
12990
|
+
content: v36.optional(v36.string()),
|
|
12991
|
+
updatedAt: v36.optional(v36.string()),
|
|
12992
|
+
createdAt: v36.optional(v36.string()),
|
|
12993
|
+
creatorId: v36.optional(v36.nullable(v36.number())),
|
|
12994
|
+
updateCd: v36.optional(v36.number()),
|
|
12995
|
+
statusCd: v36.optional(v36.number()),
|
|
12996
|
+
processCd: v36.optional(v36.number()),
|
|
12997
|
+
todosId: v36.optional(v36.nullable(v36.number())),
|
|
12998
|
+
vector: v36.optional(v36.nullable(v36.string())),
|
|
12999
|
+
vectorCd: v36.optional(v36.number()),
|
|
13000
|
+
vectorFlag: v36.optional(v36.string()),
|
|
13001
|
+
dateLastVector: v36.optional(v36.string()),
|
|
13002
|
+
location: v36.optional(v36.nullable(v36.string())),
|
|
13003
|
+
contentLength: v36.optional(v36.number()),
|
|
13004
|
+
tokenCount: v36.optional(v36.number())
|
|
13005
|
+
});
|
|
13006
|
+
var EventsDataSchema = v36.looseObject({
|
|
13007
|
+
id: v36.optional(v36.number()),
|
|
13008
|
+
eventNum: v36.optional(v36.number()),
|
|
13009
|
+
eventTypeCd: v36.optional(v36.number()),
|
|
13010
|
+
peopleId: v36.optional(v36.number()),
|
|
13011
|
+
eventAt: v36.optional(v36.string()),
|
|
13012
|
+
commentId: v36.optional(v36.nullable(v36.number())),
|
|
13013
|
+
dateCreated: v36.optional(v36.string()),
|
|
13014
|
+
dateLastModified: v36.optional(v36.string()),
|
|
13015
|
+
updateCd: v36.optional(v36.number()),
|
|
13016
|
+
statusCd: v36.optional(v36.number()),
|
|
13017
|
+
processCd: v36.optional(v36.number()),
|
|
13018
|
+
todosSessionsUid: v36.optional(v36.nullable(v36.number()))
|
|
13019
|
+
});
|
|
13020
|
+
var MetricsDataSchema = v36.looseObject({
|
|
13021
|
+
id: v36.optional(v36.number()),
|
|
13022
|
+
projectsId: v36.optional(v36.nullable(v36.number())),
|
|
13023
|
+
todolistId: v36.optional(v36.nullable(v36.number())),
|
|
13024
|
+
assigneeId: v36.optional(v36.nullable(v36.number())),
|
|
13025
|
+
creatorId: v36.optional(v36.number()),
|
|
13026
|
+
todosContent: v36.optional(v36.nullable(v36.string())),
|
|
13027
|
+
todosStatusCd: v36.optional(v36.number()),
|
|
13028
|
+
isStale: v36.optional(v36.number()),
|
|
13029
|
+
hasComments: v36.optional(v36.number()),
|
|
13030
|
+
needsResponse: v36.optional(v36.number()),
|
|
13031
|
+
createdAt: v36.optional(v36.string()),
|
|
13032
|
+
completedAt: v36.optional(v36.nullable(v36.string())),
|
|
13033
|
+
lastActivityAt: v36.optional(v36.string()),
|
|
13034
|
+
firstCommentAt: v36.optional(v36.nullable(v36.string())),
|
|
13035
|
+
lastCommentAt: v36.optional(v36.nullable(v36.string())),
|
|
13036
|
+
daysOpen: v36.optional(v36.nullable(v36.number())),
|
|
13037
|
+
daysSinceLastEvent: v36.optional(v36.nullable(v36.number())),
|
|
13038
|
+
daysToFirstComment: v36.optional(v36.nullable(v36.number())),
|
|
13039
|
+
cycleTimeDays: v36.optional(v36.nullable(v36.number())),
|
|
13040
|
+
commentCount: v36.optional(v36.number()),
|
|
13041
|
+
activeDaysCount: v36.optional(v36.number()),
|
|
13042
|
+
activitySpanDays: v36.optional(v36.nullable(v36.number())),
|
|
13043
|
+
avgDaysBetweenActivity: v36.optional(v36.nullable(v36.number())),
|
|
13044
|
+
lastCommenterId: v36.optional(v36.nullable(v36.number())),
|
|
13045
|
+
dateCreated: v36.optional(v36.string()),
|
|
13046
|
+
dateLastModified: v36.optional(v36.string()),
|
|
13047
|
+
updateCd: v36.optional(v36.number()),
|
|
13048
|
+
statusCd: v36.optional(v36.number()),
|
|
13049
|
+
processCd: v36.optional(v36.number())
|
|
13050
|
+
});
|
|
13051
|
+
var PeopleDataSchema = v36.looseObject({
|
|
13052
|
+
id: v36.optional(v36.number()),
|
|
13053
|
+
identityId: v36.optional(v36.nullable(v36.number())),
|
|
13054
|
+
name: v36.optional(v36.nullable(v36.string())),
|
|
13055
|
+
emailAddress: v36.optional(v36.nullable(v36.string())),
|
|
13056
|
+
adminFlag: v36.optional(v36.nullable(v36.string())),
|
|
13057
|
+
trashedFlag: v36.optional(v36.nullable(v36.string())),
|
|
13058
|
+
updatedAt: v36.optional(v36.string()),
|
|
13059
|
+
createdAt: v36.optional(v36.string()),
|
|
13060
|
+
url: v36.optional(v36.nullable(v36.string())),
|
|
13061
|
+
appUrl: v36.optional(v36.nullable(v36.string())),
|
|
13062
|
+
avatarUrl: v36.optional(v36.nullable(v36.string())),
|
|
13063
|
+
fullsizeAvatarUrl: v36.optional(v36.nullable(v36.string())),
|
|
13064
|
+
updateCd: v36.optional(v36.number()),
|
|
13065
|
+
statusCd: v36.optional(v36.number()),
|
|
13066
|
+
processCd: v36.optional(v36.number())
|
|
13067
|
+
});
|
|
13068
|
+
var ProjectsDataSchema = v36.looseObject({
|
|
13069
|
+
id: v36.optional(v36.number()),
|
|
13070
|
+
name: v36.optional(v36.nullable(v36.string())),
|
|
13071
|
+
description: v36.optional(v36.nullable(v36.string())),
|
|
13072
|
+
updatedAt: v36.optional(v36.string()),
|
|
13073
|
+
createdAt: v36.optional(v36.string()),
|
|
13074
|
+
lastEventAt: v36.optional(v36.string()),
|
|
13075
|
+
url: v36.optional(v36.nullable(v36.string())),
|
|
13076
|
+
appUrl: v36.optional(v36.nullable(v36.string())),
|
|
13077
|
+
templateFlag: v36.optional(v36.nullable(v36.string())),
|
|
13078
|
+
archivedFlag: v36.optional(v36.nullable(v36.string())),
|
|
13079
|
+
starredFlag: v36.optional(v36.nullable(v36.string())),
|
|
13080
|
+
trashedFlag: v36.optional(v36.nullable(v36.string())),
|
|
13081
|
+
draftFlag: v36.optional(v36.nullable(v36.string())),
|
|
13082
|
+
isClientProjectFlag: v36.optional(v36.nullable(v36.string())),
|
|
13083
|
+
color: v36.optional(v36.nullable(v36.string())),
|
|
13084
|
+
updateCd: v36.optional(v36.number()),
|
|
13085
|
+
statusCd: v36.optional(v36.number()),
|
|
13086
|
+
processCd: v36.optional(v36.number())
|
|
13087
|
+
});
|
|
13088
|
+
var TodolistsDataSchema = v36.looseObject({
|
|
13089
|
+
id: v36.optional(v36.number()),
|
|
13090
|
+
name: v36.optional(v36.nullable(v36.string())),
|
|
13091
|
+
description: v36.optional(v36.nullable(v36.string())),
|
|
13092
|
+
updatedAt: v36.optional(v36.string()),
|
|
13093
|
+
createdAt: v36.optional(v36.string()),
|
|
13094
|
+
url: v36.optional(v36.nullable(v36.string())),
|
|
13095
|
+
appUrl: v36.optional(v36.nullable(v36.string())),
|
|
13096
|
+
completedFlag: v36.optional(v36.nullable(v36.string())),
|
|
13097
|
+
privateFlag: v36.optional(v36.nullable(v36.string())),
|
|
13098
|
+
trashedFlag: v36.optional(v36.nullable(v36.string())),
|
|
13099
|
+
completedCount: v36.optional(v36.nullable(v36.number())),
|
|
13100
|
+
remainingCount: v36.optional(v36.nullable(v36.number())),
|
|
13101
|
+
creatorId: v36.optional(v36.nullable(v36.number())),
|
|
13102
|
+
bucketId: v36.optional(v36.nullable(v36.number())),
|
|
13103
|
+
updateCd: v36.optional(v36.number()),
|
|
13104
|
+
position: v36.optional(v36.number()),
|
|
13105
|
+
statusCd: v36.optional(v36.number()),
|
|
13106
|
+
processCd: v36.optional(v36.number()),
|
|
13107
|
+
projectsId: v36.optional(v36.number())
|
|
13108
|
+
});
|
|
13109
|
+
var TodosDataSchema = v36.looseObject({
|
|
13110
|
+
id: v36.optional(v36.number()),
|
|
13111
|
+
todolistId: v36.optional(v36.nullable(v36.number())),
|
|
13112
|
+
content: v36.optional(v36.nullable(v36.string())),
|
|
13113
|
+
dueAt: v36.optional(v36.nullable(v36.string())),
|
|
13114
|
+
dueOn: v36.optional(v36.nullable(v36.string())),
|
|
13115
|
+
updatedAt: v36.optional(v36.string()),
|
|
13116
|
+
createdAt: v36.optional(v36.string()),
|
|
13117
|
+
completedAt: v36.optional(v36.nullable(v36.string())),
|
|
13118
|
+
commentsCount: v36.optional(v36.nullable(v36.number())),
|
|
13119
|
+
privateFlag: v36.optional(v36.nullable(v36.string())),
|
|
13120
|
+
trashedFlag: v36.optional(v36.nullable(v36.string())),
|
|
13121
|
+
creatorId: v36.optional(v36.nullable(v36.number())),
|
|
13122
|
+
assigneeId: v36.optional(v36.nullable(v36.number())),
|
|
13123
|
+
completedFlag: v36.optional(v36.nullable(v36.string())),
|
|
13124
|
+
url: v36.optional(v36.nullable(v36.string())),
|
|
13125
|
+
appUrl: v36.optional(v36.nullable(v36.string())),
|
|
13126
|
+
updateCd: v36.optional(v36.number()),
|
|
13127
|
+
position: v36.optional(v36.number()),
|
|
13128
|
+
projectsId: v36.optional(v36.number()),
|
|
13129
|
+
detailJson: v36.optional(v36.nullable(v36.string())),
|
|
13130
|
+
pullDetailCd: v36.optional(v36.number()),
|
|
13131
|
+
processCd: v36.optional(v36.number()),
|
|
13132
|
+
agrInfoCd: v36.optional(v36.number()),
|
|
13133
|
+
statusCd: v36.optional(v36.number()),
|
|
13134
|
+
lastCommentAt: v36.optional(v36.string()),
|
|
13135
|
+
vector: v36.optional(v36.nullable(v36.string())),
|
|
13136
|
+
vectorCd: v36.optional(v36.number()),
|
|
13137
|
+
vectorFlag: v36.optional(v36.string()),
|
|
13138
|
+
dateLastVector: v36.optional(v36.string())
|
|
13139
|
+
});
|
|
13140
|
+
var TodosSummaryDataSchema = v36.looseObject({
|
|
13141
|
+
id: v36.optional(v36.number()),
|
|
13142
|
+
summary: v36.optional(v36.nullable(v36.string())),
|
|
13143
|
+
summaryTokens: v36.optional(v36.number()),
|
|
13144
|
+
context: v36.optional(v36.nullable(v36.string())),
|
|
13145
|
+
contextTokens: v36.optional(v36.number()),
|
|
13146
|
+
modelName: v36.optional(v36.nullable(v36.string())),
|
|
13147
|
+
vector: v36.optional(v36.nullable(v36.string())),
|
|
13148
|
+
vectorCd: v36.optional(v36.number()),
|
|
13149
|
+
statusCd: v36.optional(v36.number()),
|
|
13150
|
+
processCd: v36.optional(v36.number()),
|
|
13151
|
+
updateCd: v36.optional(v36.number()),
|
|
13152
|
+
dateCreated: v36.optional(v36.string()),
|
|
13153
|
+
dateLastModified: v36.optional(v36.string()),
|
|
13154
|
+
akashaCd: v36.optional(v36.number()),
|
|
13155
|
+
complexityScore: v36.optional(v36.nullable(v36.number())),
|
|
13156
|
+
complexityReason: v36.optional(v36.nullable(v36.string())),
|
|
13157
|
+
estimatedMinutes: v36.optional(v36.nullable(v36.number())),
|
|
13158
|
+
requiredServices: v36.optional(v36.nullable(v36.string())),
|
|
13159
|
+
worthinessReason: v36.optional(v36.nullable(v36.string()))
|
|
13160
|
+
});
|
|
13161
|
+
var TodosSessionsDataSchema = v36.looseObject({
|
|
13162
|
+
todosSessionsUid: v36.optional(v36.number()),
|
|
13163
|
+
todosId: v36.optional(v36.number()),
|
|
13164
|
+
sessionNum: v36.optional(v36.number()),
|
|
13165
|
+
sessionStatusCd: v36.optional(v36.number()),
|
|
13166
|
+
subject: v36.optional(v36.nullable(v36.string())),
|
|
13167
|
+
problem: v36.optional(v36.nullable(v36.string())),
|
|
13168
|
+
investigation: v36.optional(v36.nullable(v36.string())),
|
|
13169
|
+
plan: v36.optional(v36.nullable(v36.string())),
|
|
13170
|
+
outcome: v36.optional(v36.nullable(v36.string())),
|
|
13171
|
+
dateCreated: v36.optional(v36.string()),
|
|
13172
|
+
dateLastModified: v36.optional(v36.string()),
|
|
13173
|
+
updateCd: v36.optional(v36.number()),
|
|
13174
|
+
statusCd: v36.optional(v36.number()),
|
|
13175
|
+
processCd: v36.optional(v36.number())
|
|
13176
|
+
});
|
|
13177
|
+
var PassthroughDataSchema27 = v36.record(v36.string(), v36.unknown());
|
|
12954
13178
|
|
|
12955
13179
|
// src/services/basecamp2/generated/endpoints.ts
|
|
12956
|
-
var
|
|
13180
|
+
var endpoints27 = [
|
|
12957
13181
|
{
|
|
12958
13182
|
method: "GET",
|
|
12959
13183
|
path: "/comments",
|
|
@@ -13402,18 +13626,12 @@ var Basecamp2Client = class extends BaseServiceClient {
|
|
|
13402
13626
|
constructor(http, baseUrl = "https://basecamp2.augur-api.com") {
|
|
13403
13627
|
super("basecamp2", http, baseUrl);
|
|
13404
13628
|
const boundExecuteRequest = (config, params, pathParams) => {
|
|
13405
|
-
|
|
13406
|
-
return this.executeRequest(config, params, pathParams);
|
|
13407
|
-
}
|
|
13408
|
-
if (params !== void 0 || config.paramsSchema !== void 0) {
|
|
13409
|
-
return this.executeRequest(config, params);
|
|
13410
|
-
}
|
|
13411
|
-
return this.executeRequest(config);
|
|
13629
|
+
return this.executeRequest(config, params, pathParams);
|
|
13412
13630
|
};
|
|
13413
13631
|
const proxy = createServiceProxy(
|
|
13414
13632
|
"basecamp2",
|
|
13415
13633
|
boundExecuteRequest,
|
|
13416
|
-
|
|
13634
|
+
endpoints27
|
|
13417
13635
|
);
|
|
13418
13636
|
const dataProxy = createDataProxy(proxy);
|
|
13419
13637
|
this.comments = proxy.comments;
|
|
@@ -13435,6 +13653,9 @@ var Basecamp2Client = class extends BaseServiceClient {
|
|
|
13435
13653
|
this.healthCheck = createHealthCheckResource27(boundExecuteRequest);
|
|
13436
13654
|
this.healthCheckData = createHealthCheckDataResource27(this.healthCheck);
|
|
13437
13655
|
}
|
|
13656
|
+
getServiceDescription() {
|
|
13657
|
+
return "Basecamp project management integration syncing todos, projects, people, and conversation data with AI analytics";
|
|
13658
|
+
}
|
|
13438
13659
|
};
|
|
13439
13660
|
|
|
13440
13661
|
// src/client.ts
|
|
@@ -13629,6 +13850,16 @@ var AugurAPI = class _AugurAPI {
|
|
|
13629
13850
|
}
|
|
13630
13851
|
return this._agrInfo;
|
|
13631
13852
|
}
|
|
13853
|
+
/**
|
|
13854
|
+
* Access AGR Int (internal RBAC) service endpoints
|
|
13855
|
+
*/
|
|
13856
|
+
get agrInt() {
|
|
13857
|
+
if (!this._agrInt) {
|
|
13858
|
+
const httpClient = new HTTPClient("agr-int", this.config);
|
|
13859
|
+
this._agrInt = new AgrIntClient(httpClient);
|
|
13860
|
+
}
|
|
13861
|
+
return this._agrInt;
|
|
13862
|
+
}
|
|
13632
13863
|
/**
|
|
13633
13864
|
* Access AGR Work service endpoints
|
|
13634
13865
|
*/
|
|
@@ -13779,6 +14010,7 @@ var AugurAPI = class _AugurAPI {
|
|
|
13779
14010
|
this._p21Pim = void 0;
|
|
13780
14011
|
this._payments = void 0;
|
|
13781
14012
|
this._agrInfo = void 0;
|
|
14013
|
+
this._agrInt = void 0;
|
|
13782
14014
|
this._agrWork = void 0;
|
|
13783
14015
|
this._avalara = void 0;
|
|
13784
14016
|
this._brandFolder = void 0;
|
|
@@ -13813,6 +14045,7 @@ var AugurAPI = class _AugurAPI {
|
|
|
13813
14045
|
this._p21Pim = void 0;
|
|
13814
14046
|
this._payments = void 0;
|
|
13815
14047
|
this._agrInfo = void 0;
|
|
14048
|
+
this._agrInt = void 0;
|
|
13816
14049
|
this._agrWork = void 0;
|
|
13817
14050
|
this._avalara = void 0;
|
|
13818
14051
|
this._brandFolder = void 0;
|
|
@@ -13870,6 +14103,7 @@ var AugurAPI = class _AugurAPI {
|
|
|
13870
14103
|
{ name: "p21Pim", client: this.p21Pim },
|
|
13871
14104
|
{ name: "payments", client: this.payments },
|
|
13872
14105
|
{ name: "agrInfo", client: this.agrInfo },
|
|
14106
|
+
{ name: "agrInt", client: this.agrInt },
|
|
13873
14107
|
{ name: "agrWork", client: this.agrWork },
|
|
13874
14108
|
{ name: "avalara", client: this.avalara },
|
|
13875
14109
|
{ name: "brandFolder", client: this.brandFolder },
|
|
@@ -13964,11 +14198,11 @@ var AugurAPI = class _AugurAPI {
|
|
|
13964
14198
|
/**
|
|
13965
14199
|
* Search and score endpoints against search term
|
|
13966
14200
|
*/
|
|
13967
|
-
searchAndScoreEndpoints(
|
|
14201
|
+
searchAndScoreEndpoints(endpoints28, searchTerm, options) {
|
|
13968
14202
|
const { domain, minScore } = options;
|
|
13969
14203
|
const results = [];
|
|
13970
14204
|
const searchTermLower = searchTerm.toLowerCase();
|
|
13971
|
-
for (const endpoint of
|
|
14205
|
+
for (const endpoint of endpoints28) {
|
|
13972
14206
|
if (!this.isValidEndpoint(endpoint)) {
|
|
13973
14207
|
continue;
|
|
13974
14208
|
}
|
|
@@ -14322,10 +14556,11 @@ function createCrossSiteAuthenticator(augurInfoToken) {
|
|
|
14322
14556
|
}
|
|
14323
14557
|
|
|
14324
14558
|
// src/index.ts
|
|
14325
|
-
var VERSION = "2026.
|
|
14559
|
+
var VERSION = "2026.6.2";
|
|
14326
14560
|
// Annotate the CommonJS export names for ESM import in node:
|
|
14327
14561
|
0 && (module.exports = {
|
|
14328
14562
|
AgrInfoClient,
|
|
14563
|
+
AgrIntClient,
|
|
14329
14564
|
AgrSiteClient,
|
|
14330
14565
|
AgrWorkClient,
|
|
14331
14566
|
AugurAPI,
|