@simpleapps-com/augur-api 2026.5.6 → 2026.6.1
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/dist/{client-yZ3HRVgf.d.mts → client-R8LU4_qg.d.mts} +94 -48
- package/dist/{client-yZ3HRVgf.d.ts → client-R8LU4_qg.d.ts} +94 -48
- package/dist/index.d.mts +3 -3
- package/dist/index.d.ts +3 -3
- package/dist/index.js +146 -211
- package/dist/index.js.map +1 -1
- package/dist/index.mjs +146 -211
- 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
|
@@ -1874,13 +1874,7 @@ var JoomlaClient = class extends BaseServiceClient {
|
|
|
1874
1874
|
constructor(http, baseUrl = "https://joomla.augur-api.com") {
|
|
1875
1875
|
super("joomla", http, baseUrl);
|
|
1876
1876
|
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);
|
|
1877
|
+
return this.executeRequest(config, params, pathParams);
|
|
1884
1878
|
};
|
|
1885
1879
|
const proxy = createServiceProxy("joomla", boundExecuteRequest, endpoints);
|
|
1886
1880
|
const dataProxy = createDataProxy(proxy);
|
|
@@ -2151,13 +2145,7 @@ var CommerceClient = class extends BaseServiceClient {
|
|
|
2151
2145
|
constructor(http, baseUrl = "https://commerce.augur-api.com") {
|
|
2152
2146
|
super("commerce", http, baseUrl);
|
|
2153
2147
|
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);
|
|
2148
|
+
return this.executeRequest(config, params, pathParams);
|
|
2161
2149
|
};
|
|
2162
2150
|
const proxy = createServiceProxy(
|
|
2163
2151
|
"commerce",
|
|
@@ -2174,6 +2162,9 @@ var CommerceClient = class extends BaseServiceClient {
|
|
|
2174
2162
|
this.healthCheck = createHealthCheckResource2(boundExecuteRequest);
|
|
2175
2163
|
this.healthCheckData = createHealthCheckDataResource2(this.healthCheck);
|
|
2176
2164
|
}
|
|
2165
|
+
getServiceDescription() {
|
|
2166
|
+
return "Shopping cart and checkout engine managing cart state, checkout flow, and Prophet 21 order submission";
|
|
2167
|
+
}
|
|
2177
2168
|
};
|
|
2178
2169
|
|
|
2179
2170
|
// src/services/pricing/generated/schemas.ts
|
|
@@ -2603,13 +2594,7 @@ var PricingClient = class extends BaseServiceClient {
|
|
|
2603
2594
|
constructor(http, baseUrl = "https://pricing.augur-api.com") {
|
|
2604
2595
|
super("pricing", http, baseUrl);
|
|
2605
2596
|
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);
|
|
2597
|
+
return this.executeRequest(config, params, pathParams);
|
|
2613
2598
|
};
|
|
2614
2599
|
const proxy = createServiceProxy("pricing", boundExecuteRequest, endpoints3);
|
|
2615
2600
|
const dataProxy = createDataProxy(proxy);
|
|
@@ -3524,13 +3509,7 @@ var VMIClient = class extends BaseServiceClient {
|
|
|
3524
3509
|
constructor(http, baseUrl = "https://vmi.augur-api.com") {
|
|
3525
3510
|
super("vmi", http, baseUrl);
|
|
3526
3511
|
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);
|
|
3512
|
+
return this.executeRequest(config, params, pathParams);
|
|
3534
3513
|
};
|
|
3535
3514
|
const proxy = createServiceProxy("vmi", boundExecuteRequest, endpoints4);
|
|
3536
3515
|
const dataProxy = createDataProxy(proxy);
|
|
@@ -3551,6 +3530,9 @@ var VMIClient = class extends BaseServiceClient {
|
|
|
3551
3530
|
this.healthCheckData = createHealthCheckDataResource4(this.healthCheck);
|
|
3552
3531
|
this.pingData = createPingDataResource2(this.ping);
|
|
3553
3532
|
}
|
|
3533
|
+
getServiceDescription() {
|
|
3534
|
+
return "Vendor-managed inventory for distributor profiles, warehouse stock levels, restocking, and usage tracking";
|
|
3535
|
+
}
|
|
3554
3536
|
};
|
|
3555
3537
|
|
|
3556
3538
|
// src/services/open-search/generated/schemas.ts
|
|
@@ -3940,13 +3922,7 @@ var OpenSearchClient = class extends BaseServiceClient {
|
|
|
3940
3922
|
constructor(http, baseUrl = "https://open-search.augur-api.com") {
|
|
3941
3923
|
super("open-search", http, baseUrl);
|
|
3942
3924
|
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);
|
|
3925
|
+
return this.executeRequest(config, params, pathParams);
|
|
3950
3926
|
};
|
|
3951
3927
|
const proxy = createServiceProxy(
|
|
3952
3928
|
"open-search",
|
|
@@ -3998,6 +3974,17 @@ var AttributesListParamsSchema = v11.looseObject({
|
|
|
3998
3974
|
q: v11.optional(v11.string()),
|
|
3999
3975
|
statusCd: v11.optional(v11.pipe(v11.unknown(), v11.transform(Number)))
|
|
4000
3976
|
});
|
|
3977
|
+
var AttributesItemsListParamsSchema = v11.looseObject({
|
|
3978
|
+
...EdgeCacheParamsSchema.entries,
|
|
3979
|
+
attributeValueUid: v11.optional(v11.pipe(v11.unknown(), v11.transform(Number))),
|
|
3980
|
+
excludeValues: v11.optional(v11.string()),
|
|
3981
|
+
includeValues: v11.optional(v11.string()),
|
|
3982
|
+
limit: v11.optional(v11.pipe(v11.unknown(), v11.transform(Number))),
|
|
3983
|
+
offset: v11.optional(v11.pipe(v11.unknown(), v11.transform(Number))),
|
|
3984
|
+
orderBy: v11.optional(v11.string()),
|
|
3985
|
+
q: v11.optional(v11.string()),
|
|
3986
|
+
statusCd: v11.optional(v11.pipe(v11.unknown(), v11.transform(Number)))
|
|
3987
|
+
});
|
|
4001
3988
|
var AttributesValuesListParamsSchema = v11.looseObject({
|
|
4002
3989
|
...EdgeCacheParamsSchema.entries,
|
|
4003
3990
|
limit: v11.optional(v11.pipe(v11.unknown(), v11.transform(Number))),
|
|
@@ -4320,6 +4307,21 @@ var AttributesDataSchema = v11.looseObject({
|
|
|
4320
4307
|
statusCd: v11.optional(v11.number()),
|
|
4321
4308
|
typeCd: v11.optional(v11.number())
|
|
4322
4309
|
});
|
|
4310
|
+
var AttributesItemsDataSchema = v11.looseObject({
|
|
4311
|
+
itemAttributeValueUid: v11.optional(v11.number()),
|
|
4312
|
+
invMastUid: v11.optional(v11.number()),
|
|
4313
|
+
attributeUid: v11.optional(v11.number()),
|
|
4314
|
+
attributeValue: v11.optional(v11.nullable(v11.string())),
|
|
4315
|
+
dateCreated: v11.optional(v11.string()),
|
|
4316
|
+
createdBy: v11.optional(v11.string()),
|
|
4317
|
+
dateLastModified: v11.optional(v11.string()),
|
|
4318
|
+
lastMaintainedBy: v11.optional(v11.string()),
|
|
4319
|
+
updateCd: v11.optional(v11.number()),
|
|
4320
|
+
processCd: v11.optional(v11.number()),
|
|
4321
|
+
statusCd: v11.optional(v11.number()),
|
|
4322
|
+
attributeValueUid: v11.optional(v11.number()),
|
|
4323
|
+
onlineCd: v11.optional(v11.number())
|
|
4324
|
+
});
|
|
4323
4325
|
var AttributesValuesDataSchema = v11.looseObject({
|
|
4324
4326
|
attributeValueUid: v11.optional(v11.number()),
|
|
4325
4327
|
attributeUid: v11.optional(v11.number()),
|
|
@@ -4412,21 +4414,6 @@ var InvLocDataSchema = v11.looseObject({
|
|
|
4412
4414
|
purchaseDiscountGroup: v11.optional(v11.nullable(v11.string())),
|
|
4413
4415
|
salesDiscountGroup: v11.optional(v11.nullable(v11.string()))
|
|
4414
4416
|
});
|
|
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
4417
|
var InvMastFaqDataSchema = v11.looseObject({
|
|
4431
4418
|
invMastFaqUid: v11.optional(v11.number()),
|
|
4432
4419
|
invMastUid: v11.optional(v11.number()),
|
|
@@ -4660,6 +4647,27 @@ var endpoints6 = [
|
|
|
4660
4647
|
responseSchema: PassthroughDataSchema6,
|
|
4661
4648
|
responseType: "passthrough"
|
|
4662
4649
|
},
|
|
4650
|
+
{
|
|
4651
|
+
method: "GET",
|
|
4652
|
+
path: "/attributes/{attributeUid}/items",
|
|
4653
|
+
chain: "attributes.items",
|
|
4654
|
+
action: "list",
|
|
4655
|
+
aliases: [],
|
|
4656
|
+
pathParams: ["attributeUid"],
|
|
4657
|
+
queryParams: [
|
|
4658
|
+
"attributeValueUid",
|
|
4659
|
+
"excludeValues",
|
|
4660
|
+
"includeValues",
|
|
4661
|
+
"limit",
|
|
4662
|
+
"offset",
|
|
4663
|
+
"orderBy",
|
|
4664
|
+
"q",
|
|
4665
|
+
"statusCd"
|
|
4666
|
+
],
|
|
4667
|
+
edgeCache: true,
|
|
4668
|
+
responseSchema: AttributesItemsDataSchema,
|
|
4669
|
+
responseType: "array"
|
|
4670
|
+
},
|
|
4663
4671
|
{
|
|
4664
4672
|
method: "GET",
|
|
4665
4673
|
path: "/attributes/{attributeUid}/values",
|
|
@@ -5129,7 +5137,7 @@ var endpoints6 = [
|
|
|
5129
5137
|
pathParams: ["invMastUid"],
|
|
5130
5138
|
queryParams: [],
|
|
5131
5139
|
edgeCache: false,
|
|
5132
|
-
responseSchema:
|
|
5140
|
+
responseSchema: AttributesItemsDataSchema,
|
|
5133
5141
|
responseType: "object"
|
|
5134
5142
|
},
|
|
5135
5143
|
{
|
|
@@ -5153,7 +5161,7 @@ var endpoints6 = [
|
|
|
5153
5161
|
pathParams: ["invMastUid", "attributeUid"],
|
|
5154
5162
|
queryParams: [],
|
|
5155
5163
|
edgeCache: false,
|
|
5156
|
-
responseSchema:
|
|
5164
|
+
responseSchema: AttributesItemsDataSchema,
|
|
5157
5165
|
responseType: "object"
|
|
5158
5166
|
},
|
|
5159
5167
|
{
|
|
@@ -5165,7 +5173,7 @@ var endpoints6 = [
|
|
|
5165
5173
|
pathParams: ["invMastUid", "attributeUid", "attributeValueUid"],
|
|
5166
5174
|
queryParams: [],
|
|
5167
5175
|
edgeCache: false,
|
|
5168
|
-
responseSchema:
|
|
5176
|
+
responseSchema: AttributesItemsDataSchema,
|
|
5169
5177
|
responseType: "object"
|
|
5170
5178
|
},
|
|
5171
5179
|
{
|
|
@@ -5896,13 +5904,7 @@ var ItemsClient = class extends BaseServiceClient {
|
|
|
5896
5904
|
constructor(http, baseUrl = "https://items.augur-api.com") {
|
|
5897
5905
|
super("items", http, baseUrl);
|
|
5898
5906
|
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);
|
|
5907
|
+
return this.executeRequest(config, params, pathParams);
|
|
5906
5908
|
};
|
|
5907
5909
|
const proxy = createServiceProxy("items", boundExecuteRequest, endpoints6);
|
|
5908
5910
|
const dataProxy = createDataProxy(proxy);
|
|
@@ -6368,13 +6370,7 @@ var LegacyClient = class extends BaseServiceClient {
|
|
|
6368
6370
|
constructor(http, baseUrl = "https://legacy.augur-api.com") {
|
|
6369
6371
|
super("legacy", http, baseUrl);
|
|
6370
6372
|
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);
|
|
6373
|
+
return this.executeRequest(config, params, pathParams);
|
|
6378
6374
|
};
|
|
6379
6375
|
const proxy = createServiceProxy("legacy", boundExecuteRequest, endpoints7);
|
|
6380
6376
|
const dataProxy = createDataProxy(proxy);
|
|
@@ -7012,13 +7008,7 @@ var NexusClient = class extends BaseServiceClient {
|
|
|
7012
7008
|
constructor(http, baseUrl = "https://nexus.augur-api.com") {
|
|
7013
7009
|
super("nexus", http, baseUrl);
|
|
7014
7010
|
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);
|
|
7011
|
+
return this.executeRequest(config, params, pathParams);
|
|
7022
7012
|
};
|
|
7023
7013
|
const proxy = createServiceProxy("nexus", boundExecuteRequest, endpoints8);
|
|
7024
7014
|
const dataProxy = createDataProxy(proxy);
|
|
@@ -7039,6 +7029,9 @@ var NexusClient = class extends BaseServiceClient {
|
|
|
7039
7029
|
this.healthCheckData = createHealthCheckDataResource8(this.healthCheck);
|
|
7040
7030
|
this.pingData = createPingDataResource5(this.ping);
|
|
7041
7031
|
}
|
|
7032
|
+
getServiceDescription() {
|
|
7033
|
+
return "Warehouse operations for bin transfers, receiving, and inter-location inventory movements from P21";
|
|
7034
|
+
}
|
|
7042
7035
|
};
|
|
7043
7036
|
|
|
7044
7037
|
// src/services/agr-site/generated/schemas.ts
|
|
@@ -7812,13 +7805,7 @@ var AgrSiteClient = class extends BaseServiceClient {
|
|
|
7812
7805
|
constructor(http, baseUrl = "https://agr-site.augur-api.com") {
|
|
7813
7806
|
super("agr-site", http, baseUrl);
|
|
7814
7807
|
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);
|
|
7808
|
+
return this.executeRequest(config, params, pathParams);
|
|
7822
7809
|
};
|
|
7823
7810
|
const proxy = createServiceProxy("agr-site", boundExecuteRequest, endpoints9);
|
|
7824
7811
|
const dataProxy = createDataProxy(proxy);
|
|
@@ -7883,6 +7870,7 @@ var CustomerAddressListParamsSchema = v17.looseObject({
|
|
|
7883
7870
|
});
|
|
7884
7871
|
var CustomerAddressesListParamsSchema = v17.looseObject({
|
|
7885
7872
|
...EdgeCacheParamsSchema.entries,
|
|
7873
|
+
emailAddress: v17.optional(v17.string()),
|
|
7886
7874
|
limit: v17.optional(v17.pipe(v17.unknown(), v17.transform(Number))),
|
|
7887
7875
|
offset: v17.optional(v17.pipe(v17.unknown(), v17.transform(Number))),
|
|
7888
7876
|
orderBy: v17.optional(v17.string()),
|
|
@@ -7909,6 +7897,9 @@ var CustomerOrdersListParamsSchema = v17.looseObject({
|
|
|
7909
7897
|
...EdgeCacheParamsSchema.entries,
|
|
7910
7898
|
cancelFlag: v17.optional(v17.string()),
|
|
7911
7899
|
contactId: v17.optional(v17.string()),
|
|
7900
|
+
createdFrom: v17.optional(v17.string()),
|
|
7901
|
+
createdOn: v17.optional(v17.string()),
|
|
7902
|
+
createdTo: v17.optional(v17.string()),
|
|
7912
7903
|
deleteFlag: v17.optional(v17.string()),
|
|
7913
7904
|
fullDocument: v17.optional(v17.string()),
|
|
7914
7905
|
limit: v17.optional(v17.pipe(v17.unknown(), v17.transform(Number))),
|
|
@@ -7924,6 +7915,18 @@ var CustomerPurchasedItemsListParamsSchema = v17.looseObject({
|
|
|
7924
7915
|
});
|
|
7925
7916
|
var CustomerQuotesListParamsSchema = v17.looseObject({
|
|
7926
7917
|
...EdgeCacheParamsSchema.entries,
|
|
7918
|
+
createdFrom: v17.optional(v17.string()),
|
|
7919
|
+
createdOn: v17.optional(v17.string()),
|
|
7920
|
+
createdTo: v17.optional(v17.string()),
|
|
7921
|
+
limit: v17.optional(v17.pipe(v17.unknown(), v17.transform(Number))),
|
|
7922
|
+
offset: v17.optional(v17.pipe(v17.unknown(), v17.transform(Number))),
|
|
7923
|
+
orderBy: v17.optional(v17.string())
|
|
7924
|
+
});
|
|
7925
|
+
var CustomerRmasListParamsSchema = v17.looseObject({
|
|
7926
|
+
...EdgeCacheParamsSchema.entries,
|
|
7927
|
+
createdFrom: v17.optional(v17.string()),
|
|
7928
|
+
createdOn: v17.optional(v17.string()),
|
|
7929
|
+
createdTo: v17.optional(v17.string()),
|
|
7927
7930
|
limit: v17.optional(v17.pipe(v17.unknown(), v17.transform(Number))),
|
|
7928
7931
|
offset: v17.optional(v17.pipe(v17.unknown(), v17.transform(Number))),
|
|
7929
7932
|
orderBy: v17.optional(v17.string())
|
|
@@ -7955,7 +7958,11 @@ var CustomerAddressesDataSchema = v17.looseObject({
|
|
|
7955
7958
|
statusCd: v17.optional(v17.number()),
|
|
7956
7959
|
processCd: v17.optional(v17.number()),
|
|
7957
7960
|
dateCreated: v17.optional(v17.string()),
|
|
7958
|
-
dateLastModified: v17.optional(v17.string())
|
|
7961
|
+
dateLastModified: v17.optional(v17.string()),
|
|
7962
|
+
emailAddress: v17.optional(v17.nullable(v17.string())),
|
|
7963
|
+
name: v17.optional(v17.nullable(v17.string())),
|
|
7964
|
+
phoneNumberMain: v17.optional(v17.nullable(v17.string())),
|
|
7965
|
+
phoneNumberMobile: v17.optional(v17.nullable(v17.string()))
|
|
7959
7966
|
});
|
|
7960
7967
|
var CustomerTagsDataSchema = v17.looseObject({
|
|
7961
7968
|
customerTagsUid: v17.optional(v17.number()),
|
|
@@ -8074,7 +8081,7 @@ var endpoints10 = [
|
|
|
8074
8081
|
action: "list",
|
|
8075
8082
|
aliases: [],
|
|
8076
8083
|
pathParams: ["customerId"],
|
|
8077
|
-
queryParams: ["limit", "offset", "orderBy", "statusCd"],
|
|
8084
|
+
queryParams: ["emailAddress", "limit", "offset", "orderBy", "statusCd"],
|
|
8078
8085
|
edgeCache: true,
|
|
8079
8086
|
responseSchema: CustomerAddressesDataSchema,
|
|
8080
8087
|
responseType: "array"
|
|
@@ -8206,6 +8213,9 @@ var endpoints10 = [
|
|
|
8206
8213
|
queryParams: [
|
|
8207
8214
|
"cancelFlag",
|
|
8208
8215
|
"contactId",
|
|
8216
|
+
"createdFrom",
|
|
8217
|
+
"createdOn",
|
|
8218
|
+
"createdTo",
|
|
8209
8219
|
"deleteFlag",
|
|
8210
8220
|
"fullDocument",
|
|
8211
8221
|
"limit",
|
|
@@ -8248,7 +8258,7 @@ var endpoints10 = [
|
|
|
8248
8258
|
action: "list",
|
|
8249
8259
|
aliases: [],
|
|
8250
8260
|
pathParams: ["customerId"],
|
|
8251
|
-
queryParams: ["limit", "offset", "orderBy"],
|
|
8261
|
+
queryParams: ["createdFrom", "createdOn", "createdTo", "limit", "offset", "orderBy"],
|
|
8252
8262
|
edgeCache: true,
|
|
8253
8263
|
responseSchema: PassthroughDataSchema10,
|
|
8254
8264
|
responseType: "passthrough"
|
|
@@ -8265,6 +8275,30 @@ var endpoints10 = [
|
|
|
8265
8275
|
responseSchema: PassthroughDataSchema10,
|
|
8266
8276
|
responseType: "passthrough"
|
|
8267
8277
|
},
|
|
8278
|
+
{
|
|
8279
|
+
method: "GET",
|
|
8280
|
+
path: "/customer/{customerId}/rmas",
|
|
8281
|
+
chain: "customer.rmas",
|
|
8282
|
+
action: "list",
|
|
8283
|
+
aliases: [],
|
|
8284
|
+
pathParams: ["customerId"],
|
|
8285
|
+
queryParams: ["createdFrom", "createdOn", "createdTo", "limit", "offset", "orderBy"],
|
|
8286
|
+
edgeCache: true,
|
|
8287
|
+
responseSchema: PassthroughDataSchema10,
|
|
8288
|
+
responseType: "passthrough"
|
|
8289
|
+
},
|
|
8290
|
+
{
|
|
8291
|
+
method: "GET",
|
|
8292
|
+
path: "/customer/{customerId}/rmas/{rmaNo}",
|
|
8293
|
+
chain: "customer.rmas",
|
|
8294
|
+
action: "get",
|
|
8295
|
+
aliases: [],
|
|
8296
|
+
pathParams: ["customerId", "rmaNo"],
|
|
8297
|
+
queryParams: [],
|
|
8298
|
+
edgeCache: true,
|
|
8299
|
+
responseSchema: PassthroughDataSchema10,
|
|
8300
|
+
responseType: "passthrough"
|
|
8301
|
+
},
|
|
8268
8302
|
{
|
|
8269
8303
|
method: "GET",
|
|
8270
8304
|
path: "/customer/{customerId}/ship-to",
|
|
@@ -8412,13 +8446,7 @@ var CustomersClient = class extends BaseServiceClient {
|
|
|
8412
8446
|
constructor(http, baseUrl = "https://customers.augur-api.com") {
|
|
8413
8447
|
super("customers", http, baseUrl);
|
|
8414
8448
|
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);
|
|
8449
|
+
return this.executeRequest(config, params, pathParams);
|
|
8422
8450
|
};
|
|
8423
8451
|
const proxy = createServiceProxy(
|
|
8424
8452
|
"customers",
|
|
@@ -8758,13 +8786,7 @@ var OrdersClient = class extends BaseServiceClient {
|
|
|
8758
8786
|
constructor(http, baseUrl = "https://orders.augur-api.com") {
|
|
8759
8787
|
super("orders", http, baseUrl);
|
|
8760
8788
|
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);
|
|
8789
|
+
return this.executeRequest(config, params, pathParams);
|
|
8768
8790
|
};
|
|
8769
8791
|
const proxy = createServiceProxy("orders", boundExecuteRequest, endpoints11);
|
|
8770
8792
|
const dataProxy = createDataProxy(proxy);
|
|
@@ -9019,13 +9041,7 @@ var P21PimClient = class extends BaseServiceClient {
|
|
|
9019
9041
|
constructor(http, baseUrl = "https://p21-pim.augur-api.com") {
|
|
9020
9042
|
super("p21-pim", http, baseUrl);
|
|
9021
9043
|
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);
|
|
9044
|
+
return this.executeRequest(config, params, pathParams);
|
|
9029
9045
|
};
|
|
9030
9046
|
const proxy = createServiceProxy("p21-pim", boundExecuteRequest, endpoints12);
|
|
9031
9047
|
const dataProxy = createDataProxy(proxy);
|
|
@@ -9379,13 +9395,7 @@ var PaymentsClient = class extends BaseServiceClient {
|
|
|
9379
9395
|
constructor(http, baseUrl = "https://payments.augur-api.com") {
|
|
9380
9396
|
super("payments", http, baseUrl);
|
|
9381
9397
|
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);
|
|
9398
|
+
return this.executeRequest(config, params, pathParams);
|
|
9389
9399
|
};
|
|
9390
9400
|
const proxy = createServiceProxy(
|
|
9391
9401
|
"payments",
|
|
@@ -9406,6 +9416,9 @@ var PaymentsClient = class extends BaseServiceClient {
|
|
|
9406
9416
|
this.healthCheckData = createHealthCheckDataResource13(this.healthCheck);
|
|
9407
9417
|
this.pingData = createPingDataResource7(this.ping);
|
|
9408
9418
|
}
|
|
9419
|
+
getServiceDescription() {
|
|
9420
|
+
return "Unified payment processing gateway supporting Moneris, PayTrace, and Element card transactions";
|
|
9421
|
+
}
|
|
9409
9422
|
};
|
|
9410
9423
|
|
|
9411
9424
|
// src/services/agr-info/generated/schemas.ts
|
|
@@ -9758,13 +9771,7 @@ var AgrInfoClient = class extends BaseServiceClient {
|
|
|
9758
9771
|
constructor(http, baseUrl = "https://agr-info.augur-api.com") {
|
|
9759
9772
|
super("agr-info", http, baseUrl);
|
|
9760
9773
|
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);
|
|
9774
|
+
return this.executeRequest(config, params, pathParams);
|
|
9768
9775
|
};
|
|
9769
9776
|
const proxy = createServiceProxy("agr-info", boundExecuteRequest, endpoints14);
|
|
9770
9777
|
const dataProxy = createDataProxy(proxy);
|
|
@@ -9951,13 +9958,7 @@ var AgrWorkClient = class extends BaseServiceClient {
|
|
|
9951
9958
|
constructor(http, baseUrl = "https://agr-work.augur-api.com") {
|
|
9952
9959
|
super("agr-work", http, baseUrl);
|
|
9953
9960
|
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);
|
|
9961
|
+
return this.executeRequest(config, params, pathParams);
|
|
9961
9962
|
};
|
|
9962
9963
|
this.healthCheck = createHealthCheckResource15(boundExecuteRequest);
|
|
9963
9964
|
this.ping = createPingResource9(boundExecuteRequest);
|
|
@@ -10052,13 +10053,7 @@ var AvalaraClient = class extends BaseServiceClient {
|
|
|
10052
10053
|
constructor(http, baseUrl = "https://avalara.augur-api.com") {
|
|
10053
10054
|
super("avalara", http, baseUrl);
|
|
10054
10055
|
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);
|
|
10056
|
+
return this.executeRequest(config, params, pathParams);
|
|
10062
10057
|
};
|
|
10063
10058
|
const proxy = createServiceProxy("avalara", boundExecuteRequest, endpoints15);
|
|
10064
10059
|
const dataProxy = createDataProxy(proxy);
|
|
@@ -10155,13 +10150,7 @@ var BrandFolderClient = class extends BaseServiceClient {
|
|
|
10155
10150
|
constructor(http, baseUrl = "https://brand-folder.augur-api.com") {
|
|
10156
10151
|
super("brand-folder", http, baseUrl);
|
|
10157
10152
|
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);
|
|
10153
|
+
return this.executeRequest(config, params, pathParams);
|
|
10165
10154
|
};
|
|
10166
10155
|
const proxy = createServiceProxy(
|
|
10167
10156
|
"brand-folder",
|
|
@@ -10293,13 +10282,7 @@ var GregorovichClient = class extends BaseServiceClient {
|
|
|
10293
10282
|
constructor(http, baseUrl = "https://gregorovich.augur-api.com") {
|
|
10294
10283
|
super("gregorovich", http, baseUrl);
|
|
10295
10284
|
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);
|
|
10285
|
+
return this.executeRequest(config, params, pathParams);
|
|
10303
10286
|
};
|
|
10304
10287
|
const proxy = createServiceProxy(
|
|
10305
10288
|
"gregorovich",
|
|
@@ -10820,13 +10803,7 @@ var LogisticsClient = class extends BaseServiceClient {
|
|
|
10820
10803
|
constructor(http, baseUrl = "https://logistics.augur-api.com") {
|
|
10821
10804
|
super("logistics", http, baseUrl);
|
|
10822
10805
|
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);
|
|
10806
|
+
return this.executeRequest(config, params, pathParams);
|
|
10830
10807
|
};
|
|
10831
10808
|
const proxy = createServiceProxy(
|
|
10832
10809
|
"logistics",
|
|
@@ -11218,13 +11195,7 @@ var P21ApisClient = class extends BaseServiceClient {
|
|
|
11218
11195
|
constructor(http, baseUrl = "https://p21-apis.augur-api.com") {
|
|
11219
11196
|
super("p21-apis", http, baseUrl);
|
|
11220
11197
|
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);
|
|
11198
|
+
return this.executeRequest(config, params, pathParams);
|
|
11228
11199
|
};
|
|
11229
11200
|
const proxy = createServiceProxy("p21-apis", boundExecuteRequest, endpoints19);
|
|
11230
11201
|
const dataProxy = createDataProxy(proxy);
|
|
@@ -11245,6 +11216,9 @@ var P21ApisClient = class extends BaseServiceClient {
|
|
|
11245
11216
|
this.healthCheck = createHealthCheckResource20(boundExecuteRequest);
|
|
11246
11217
|
this.healthCheckData = createHealthCheckDataResource20(this.healthCheck);
|
|
11247
11218
|
}
|
|
11219
|
+
getServiceDescription() {
|
|
11220
|
+
return "Prophet 21 REST API abstraction for normalized CRUD operations on ERP entities";
|
|
11221
|
+
}
|
|
11248
11222
|
};
|
|
11249
11223
|
|
|
11250
11224
|
// src/services/p21-core/generated/schemas.ts
|
|
@@ -11625,13 +11599,7 @@ var P21CoreClient = class extends BaseServiceClient {
|
|
|
11625
11599
|
constructor(http, baseUrl = "https://p21-core.augur-api.com") {
|
|
11626
11600
|
super("p21-core", http, baseUrl);
|
|
11627
11601
|
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);
|
|
11602
|
+
return this.executeRequest(config, params, pathParams);
|
|
11635
11603
|
};
|
|
11636
11604
|
const proxy = createServiceProxy("p21-core", boundExecuteRequest, endpoints20);
|
|
11637
11605
|
const dataProxy = createDataProxy(proxy);
|
|
@@ -11963,13 +11931,7 @@ var P21SismClient = class extends BaseServiceClient {
|
|
|
11963
11931
|
constructor(http, baseUrl = "https://p21-sism.augur-api.com") {
|
|
11964
11932
|
super("p21-sism", http, baseUrl);
|
|
11965
11933
|
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);
|
|
11934
|
+
return this.executeRequest(config, params, pathParams);
|
|
11973
11935
|
};
|
|
11974
11936
|
const proxy = createServiceProxy("p21-sism", boundExecuteRequest, endpoints21);
|
|
11975
11937
|
const dataProxy = createDataProxy(proxy);
|
|
@@ -12075,13 +12037,7 @@ var ShippingClient = class extends BaseServiceClient {
|
|
|
12075
12037
|
constructor(http, baseUrl = "https://shipping.augur-api.com") {
|
|
12076
12038
|
super("shipping", http, baseUrl);
|
|
12077
12039
|
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);
|
|
12040
|
+
return this.executeRequest(config, params, pathParams);
|
|
12085
12041
|
};
|
|
12086
12042
|
const proxy = createServiceProxy(
|
|
12087
12043
|
"shipping",
|
|
@@ -12210,13 +12166,7 @@ var SlackClient = class extends BaseServiceClient {
|
|
|
12210
12166
|
constructor(http, baseUrl = "https://slack.augur-api.com") {
|
|
12211
12167
|
super("slack", http, baseUrl);
|
|
12212
12168
|
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);
|
|
12169
|
+
return this.executeRequest(config, params, pathParams);
|
|
12220
12170
|
};
|
|
12221
12171
|
const proxy = createServiceProxy("slack", boundExecuteRequest, endpoints23);
|
|
12222
12172
|
const dataProxy = createDataProxy(proxy);
|
|
@@ -12416,13 +12366,7 @@ var SmartyStreetsClient = class extends BaseServiceClient {
|
|
|
12416
12366
|
constructor(http, baseUrl = "https://smarty-streets.augur-api.com") {
|
|
12417
12367
|
super("smarty-streets", http, baseUrl);
|
|
12418
12368
|
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);
|
|
12369
|
+
return this.executeRequest(config, params, pathParams);
|
|
12426
12370
|
};
|
|
12427
12371
|
const proxy = createServiceProxy(
|
|
12428
12372
|
"smarty-streets",
|
|
@@ -12588,13 +12532,7 @@ var UPSClient = class extends BaseServiceClient {
|
|
|
12588
12532
|
constructor(http, baseUrl = "https://ups.augur-api.com") {
|
|
12589
12533
|
super("ups", http, baseUrl);
|
|
12590
12534
|
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);
|
|
12535
|
+
return this.executeRequest(config, params, pathParams);
|
|
12598
12536
|
};
|
|
12599
12537
|
const proxy = createServiceProxy("ups", boundExecuteRequest, endpoints25);
|
|
12600
12538
|
const dataProxy = createDataProxy(proxy);
|
|
@@ -13402,13 +13340,7 @@ var Basecamp2Client = class extends BaseServiceClient {
|
|
|
13402
13340
|
constructor(http, baseUrl = "https://basecamp2.augur-api.com") {
|
|
13403
13341
|
super("basecamp2", http, baseUrl);
|
|
13404
13342
|
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);
|
|
13343
|
+
return this.executeRequest(config, params, pathParams);
|
|
13412
13344
|
};
|
|
13413
13345
|
const proxy = createServiceProxy(
|
|
13414
13346
|
"basecamp2",
|
|
@@ -13435,6 +13367,9 @@ var Basecamp2Client = class extends BaseServiceClient {
|
|
|
13435
13367
|
this.healthCheck = createHealthCheckResource27(boundExecuteRequest);
|
|
13436
13368
|
this.healthCheckData = createHealthCheckDataResource27(this.healthCheck);
|
|
13437
13369
|
}
|
|
13370
|
+
getServiceDescription() {
|
|
13371
|
+
return "Basecamp project management integration syncing todos, projects, people, and conversation data with AI analytics";
|
|
13372
|
+
}
|
|
13438
13373
|
};
|
|
13439
13374
|
|
|
13440
13375
|
// src/client.ts
|
|
@@ -14322,7 +14257,7 @@ function createCrossSiteAuthenticator(augurInfoToken) {
|
|
|
14322
14257
|
}
|
|
14323
14258
|
|
|
14324
14259
|
// src/index.ts
|
|
14325
|
-
var VERSION = "2026.
|
|
14260
|
+
var VERSION = "2026.6.1";
|
|
14326
14261
|
// Annotate the CommonJS export names for ESM import in node:
|
|
14327
14262
|
0 && (module.exports = {
|
|
14328
14263
|
AgrInfoClient,
|