@simpleapps-com/augur-api 2026.4.7 → 2026.5.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-B3ppbNq9.d.mts → client-pm1Lbe9X.d.mts} +168 -16
- package/dist/{client-B3ppbNq9.d.ts → client-pm1Lbe9X.d.ts} +168 -16
- package/dist/index.d.mts +3 -3
- package/dist/index.d.ts +3 -3
- package/dist/index.js +323 -98
- package/dist/index.js.map +1 -1
- package/dist/index.mjs +323 -98
- package/dist/index.mjs.map +1 -1
- package/dist/testing.d.mts +1 -1
- package/dist/testing.d.ts +1 -1
- package/package.json +1 -1
package/dist/index.mjs
CHANGED
|
@@ -3471,6 +3471,12 @@ var ItemsListParamsSchema = v10.looseObject({
|
|
|
3471
3471
|
online: v10.optional(v10.string()),
|
|
3472
3472
|
statusCd: v10.optional(v10.pipe(v10.unknown(), v10.transform(Number)))
|
|
3473
3473
|
});
|
|
3474
|
+
var QueryStringRedirectListParamsSchema = v10.looseObject({
|
|
3475
|
+
...EdgeCacheParamsSchema.entries,
|
|
3476
|
+
limit: v10.optional(v10.pipe(v10.unknown(), v10.transform(Number))),
|
|
3477
|
+
offset: v10.optional(v10.pipe(v10.unknown(), v10.transform(Number))),
|
|
3478
|
+
orderBy: v10.optional(v10.string())
|
|
3479
|
+
});
|
|
3474
3480
|
var SuggestionsListParamsSchema = v10.looseObject({
|
|
3475
3481
|
...EdgeCacheParamsSchema.entries,
|
|
3476
3482
|
limit: v10.optional(v10.pipe(v10.unknown(), v10.transform(Number))),
|
|
@@ -3487,6 +3493,16 @@ var SuggestionsSuggestListParamsSchema = v10.looseObject({
|
|
|
3487
3493
|
offset: v10.optional(v10.pipe(v10.unknown(), v10.transform(Number))),
|
|
3488
3494
|
q: v10.optional(v10.string())
|
|
3489
3495
|
});
|
|
3496
|
+
var QueryStringRedirectDataSchema = v10.looseObject({
|
|
3497
|
+
queryStringRedirectUid: v10.optional(v10.number()),
|
|
3498
|
+
queryStringUid: v10.optional(v10.number()),
|
|
3499
|
+
queryStringRedirectLink: v10.optional(v10.string()),
|
|
3500
|
+
dateCreated: v10.optional(v10.string()),
|
|
3501
|
+
dateLastModified: v10.optional(v10.string()),
|
|
3502
|
+
updateCd: v10.optional(v10.number()),
|
|
3503
|
+
statusCd: v10.optional(v10.number()),
|
|
3504
|
+
processCd: v10.optional(v10.number())
|
|
3505
|
+
});
|
|
3490
3506
|
var SuggestionsDataSchema = v10.looseObject({
|
|
3491
3507
|
suggestionsUid: v10.optional(v10.number()),
|
|
3492
3508
|
queryStringUid: v10.optional(v10.number()),
|
|
@@ -3606,6 +3622,66 @@ var endpoints5 = [
|
|
|
3606
3622
|
responseSchema: PassthroughDataSchema5,
|
|
3607
3623
|
responseType: "passthrough"
|
|
3608
3624
|
},
|
|
3625
|
+
{
|
|
3626
|
+
method: "GET",
|
|
3627
|
+
path: "/query-string-redirect",
|
|
3628
|
+
chain: "queryStringRedirect",
|
|
3629
|
+
action: "list",
|
|
3630
|
+
aliases: [],
|
|
3631
|
+
pathParams: [],
|
|
3632
|
+
queryParams: ["limit", "offset", "orderBy"],
|
|
3633
|
+
edgeCache: true,
|
|
3634
|
+
responseSchema: QueryStringRedirectDataSchema,
|
|
3635
|
+
responseType: "array"
|
|
3636
|
+
},
|
|
3637
|
+
{
|
|
3638
|
+
method: "POST",
|
|
3639
|
+
path: "/query-string-redirect",
|
|
3640
|
+
chain: "queryStringRedirect",
|
|
3641
|
+
action: "create",
|
|
3642
|
+
aliases: [],
|
|
3643
|
+
pathParams: [],
|
|
3644
|
+
queryParams: [],
|
|
3645
|
+
edgeCache: false,
|
|
3646
|
+
responseSchema: QueryStringRedirectDataSchema,
|
|
3647
|
+
responseType: "object"
|
|
3648
|
+
},
|
|
3649
|
+
{
|
|
3650
|
+
method: "GET",
|
|
3651
|
+
path: "/query-string-redirect/{queryStringRedirectUid}",
|
|
3652
|
+
chain: "queryStringRedirect",
|
|
3653
|
+
action: "get",
|
|
3654
|
+
aliases: [],
|
|
3655
|
+
pathParams: ["queryStringRedirectUid"],
|
|
3656
|
+
queryParams: [],
|
|
3657
|
+
edgeCache: true,
|
|
3658
|
+
responseSchema: QueryStringRedirectDataSchema,
|
|
3659
|
+
responseType: "object"
|
|
3660
|
+
},
|
|
3661
|
+
{
|
|
3662
|
+
method: "PUT",
|
|
3663
|
+
path: "/query-string-redirect/{queryStringRedirectUid}",
|
|
3664
|
+
chain: "queryStringRedirect",
|
|
3665
|
+
action: "update",
|
|
3666
|
+
aliases: [],
|
|
3667
|
+
pathParams: ["queryStringRedirectUid"],
|
|
3668
|
+
queryParams: [],
|
|
3669
|
+
edgeCache: false,
|
|
3670
|
+
responseSchema: QueryStringRedirectDataSchema,
|
|
3671
|
+
responseType: "object"
|
|
3672
|
+
},
|
|
3673
|
+
{
|
|
3674
|
+
method: "DELETE",
|
|
3675
|
+
path: "/query-string-redirect/{queryStringRedirectUid}",
|
|
3676
|
+
chain: "queryStringRedirect",
|
|
3677
|
+
action: "delete",
|
|
3678
|
+
aliases: [],
|
|
3679
|
+
pathParams: ["queryStringRedirectUid"],
|
|
3680
|
+
queryParams: [],
|
|
3681
|
+
edgeCache: false,
|
|
3682
|
+
responseSchema: QueryStringRedirectDataSchema,
|
|
3683
|
+
responseType: "object"
|
|
3684
|
+
},
|
|
3609
3685
|
{
|
|
3610
3686
|
method: "GET",
|
|
3611
3687
|
path: "/suggestions",
|
|
@@ -3759,15 +3835,20 @@ var OpenSearchClient = class extends BaseServiceClient {
|
|
|
3759
3835
|
const dataProxy = createDataProxy(proxy);
|
|
3760
3836
|
this.itemSearch = proxy.itemSearch;
|
|
3761
3837
|
this.items = proxy.items;
|
|
3838
|
+
this.queryStringRedirect = proxy.queryStringRedirect;
|
|
3762
3839
|
this.suggestions = proxy.suggestions;
|
|
3763
3840
|
this.itemSearchData = dataProxy.itemSearch;
|
|
3764
3841
|
this.itemsData = dataProxy.items;
|
|
3842
|
+
this.queryStringRedirectData = dataProxy.queryStringRedirect;
|
|
3765
3843
|
this.suggestionsData = dataProxy.suggestions;
|
|
3766
3844
|
this.ping = createPingResource4(boundExecuteRequest);
|
|
3767
3845
|
this.healthCheck = createHealthCheckResource5(boundExecuteRequest);
|
|
3768
3846
|
this.pingData = createPingDataResource3(this.ping);
|
|
3769
3847
|
this.healthCheckData = createHealthCheckDataResource5(this.healthCheck);
|
|
3770
3848
|
}
|
|
3849
|
+
getServiceDescription() {
|
|
3850
|
+
return "Product search engine powered by OpenSearch with autocomplete, faceted filtering, and query analytics";
|
|
3851
|
+
}
|
|
3771
3852
|
};
|
|
3772
3853
|
|
|
3773
3854
|
// src/services/items/generated/schemas.ts
|
|
@@ -4047,6 +4128,7 @@ var VariantsListParamsSchema = v11.looseObject({
|
|
|
4047
4128
|
limit: v11.optional(v11.pipe(v11.unknown(), v11.transform(Number))),
|
|
4048
4129
|
offset: v11.optional(v11.pipe(v11.unknown(), v11.transform(Number))),
|
|
4049
4130
|
orderBy: v11.optional(v11.string()),
|
|
4131
|
+
q: v11.optional(v11.string()),
|
|
4050
4132
|
statusCd: v11.optional(v11.pipe(v11.unknown(), v11.transform(Number)))
|
|
4051
4133
|
});
|
|
4052
4134
|
var VariantsAttributesListParamsSchema = v11.looseObject({
|
|
@@ -5339,7 +5421,7 @@ var endpoints6 = [
|
|
|
5339
5421
|
action: "list",
|
|
5340
5422
|
aliases: [],
|
|
5341
5423
|
pathParams: [],
|
|
5342
|
-
queryParams: ["limit", "offset", "orderBy", "statusCd"],
|
|
5424
|
+
queryParams: ["limit", "offset", "orderBy", "q", "statusCd"],
|
|
5343
5425
|
edgeCache: true,
|
|
5344
5426
|
responseSchema: PassthroughDataSchema6,
|
|
5345
5427
|
responseType: "passthrough"
|
|
@@ -5699,12 +5781,23 @@ var LegacyStateListParamsSchema = v13.looseObject({
|
|
|
5699
5781
|
...EdgeCacheParamsSchema.entries,
|
|
5700
5782
|
limit: v13.optional(v13.pipe(v13.unknown(), v13.transform(Number))),
|
|
5701
5783
|
offset: v13.optional(v13.pipe(v13.unknown(), v13.transform(Number))),
|
|
5784
|
+
orderBy: v13.optional(v13.string()),
|
|
5702
5785
|
twoLetterCode: v13.optional(v13.string())
|
|
5703
5786
|
});
|
|
5704
5787
|
var LegacyStateGetParamsSchema = v13.looseObject({
|
|
5705
5788
|
...EdgeCacheParamsSchema.entries,
|
|
5706
5789
|
twoLetterCode: v13.optional(v13.string())
|
|
5707
5790
|
});
|
|
5791
|
+
var CustomersTagsDataSchema = v13.looseObject({
|
|
5792
|
+
customerTagsUid: v13.optional(v13.number()),
|
|
5793
|
+
customerId: v13.optional(v13.number()),
|
|
5794
|
+
tag: v13.optional(v13.nullable(v13.string())),
|
|
5795
|
+
updateCd: v13.optional(v13.number()),
|
|
5796
|
+
statusCd: v13.optional(v13.number()),
|
|
5797
|
+
processCd: v13.optional(v13.number()),
|
|
5798
|
+
dateCreated: v13.optional(v13.string()),
|
|
5799
|
+
dateLastModified: v13.optional(v13.string())
|
|
5800
|
+
});
|
|
5708
5801
|
var InvMastTagsDataSchema = v13.looseObject({
|
|
5709
5802
|
invMastTagsUid: v13.optional(v13.number()),
|
|
5710
5803
|
invMastUid: v13.optional(v13.number()),
|
|
@@ -5781,6 +5874,66 @@ var PassthroughDataSchema7 = v13.record(v13.string(), v13.unknown());
|
|
|
5781
5874
|
|
|
5782
5875
|
// src/services/legacy/generated/endpoints.ts
|
|
5783
5876
|
var endpoints7 = [
|
|
5877
|
+
{
|
|
5878
|
+
method: "GET",
|
|
5879
|
+
path: "/customers/{customerId}/tags",
|
|
5880
|
+
chain: "customers.tags",
|
|
5881
|
+
action: "list",
|
|
5882
|
+
aliases: [],
|
|
5883
|
+
pathParams: ["customerId"],
|
|
5884
|
+
queryParams: [],
|
|
5885
|
+
edgeCache: true,
|
|
5886
|
+
responseSchema: CustomersTagsDataSchema,
|
|
5887
|
+
responseType: "array"
|
|
5888
|
+
},
|
|
5889
|
+
{
|
|
5890
|
+
method: "POST",
|
|
5891
|
+
path: "/customers/{customerId}/tags",
|
|
5892
|
+
chain: "customers.tags",
|
|
5893
|
+
action: "create",
|
|
5894
|
+
aliases: [],
|
|
5895
|
+
pathParams: ["customerId"],
|
|
5896
|
+
queryParams: [],
|
|
5897
|
+
edgeCache: false,
|
|
5898
|
+
responseSchema: CustomersTagsDataSchema,
|
|
5899
|
+
responseType: "object"
|
|
5900
|
+
},
|
|
5901
|
+
{
|
|
5902
|
+
method: "GET",
|
|
5903
|
+
path: "/customers/{customerId}/tags/{customerTagsUid}",
|
|
5904
|
+
chain: "customers.tags",
|
|
5905
|
+
action: "get",
|
|
5906
|
+
aliases: [],
|
|
5907
|
+
pathParams: ["customerId", "customerTagsUid"],
|
|
5908
|
+
queryParams: [],
|
|
5909
|
+
edgeCache: true,
|
|
5910
|
+
responseSchema: CustomersTagsDataSchema,
|
|
5911
|
+
responseType: "object"
|
|
5912
|
+
},
|
|
5913
|
+
{
|
|
5914
|
+
method: "PUT",
|
|
5915
|
+
path: "/customers/{customerId}/tags/{customerTagsUid}",
|
|
5916
|
+
chain: "customers.tags",
|
|
5917
|
+
action: "update",
|
|
5918
|
+
aliases: [],
|
|
5919
|
+
pathParams: ["customerId", "customerTagsUid"],
|
|
5920
|
+
queryParams: [],
|
|
5921
|
+
edgeCache: false,
|
|
5922
|
+
responseSchema: CustomersTagsDataSchema,
|
|
5923
|
+
responseType: "object"
|
|
5924
|
+
},
|
|
5925
|
+
{
|
|
5926
|
+
method: "DELETE",
|
|
5927
|
+
path: "/customers/{customerId}/tags/{customerTagsUid}",
|
|
5928
|
+
chain: "customers.tags",
|
|
5929
|
+
action: "delete",
|
|
5930
|
+
aliases: [],
|
|
5931
|
+
pathParams: ["customerId", "customerTagsUid"],
|
|
5932
|
+
queryParams: [],
|
|
5933
|
+
edgeCache: false,
|
|
5934
|
+
responseSchema: PassthroughDataSchema7,
|
|
5935
|
+
responseType: "passthrough"
|
|
5936
|
+
},
|
|
5784
5937
|
{
|
|
5785
5938
|
method: "GET",
|
|
5786
5939
|
path: "/inv-mast/{invMastUid}/also-bought",
|
|
@@ -5932,7 +6085,7 @@ var endpoints7 = [
|
|
|
5932
6085
|
action: "list",
|
|
5933
6086
|
aliases: [],
|
|
5934
6087
|
pathParams: [],
|
|
5935
|
-
queryParams: ["limit", "offset", "twoLetterCode"],
|
|
6088
|
+
queryParams: ["limit", "offset", "orderBy", "twoLetterCode"],
|
|
5936
6089
|
edgeCache: true,
|
|
5937
6090
|
responseSchema: LegacyStateDataSchema,
|
|
5938
6091
|
responseType: "array"
|
|
@@ -6046,10 +6199,12 @@ var LegacyClient = class extends BaseServiceClient {
|
|
|
6046
6199
|
};
|
|
6047
6200
|
const proxy = createServiceProxy("legacy", boundExecuteRequest, endpoints7);
|
|
6048
6201
|
const dataProxy = createDataProxy(proxy);
|
|
6202
|
+
this.customers = proxy.customers;
|
|
6049
6203
|
this.invMast = proxy.invMast;
|
|
6050
6204
|
this.itemCategory = proxy.itemCategory;
|
|
6051
6205
|
this.legacy = proxy.legacy;
|
|
6052
6206
|
this.orders = proxy.orders;
|
|
6207
|
+
this.customersData = dataProxy.customers;
|
|
6053
6208
|
this.invMastData = dataProxy.invMast;
|
|
6054
6209
|
this.itemCategoryData = dataProxy.itemCategory;
|
|
6055
6210
|
this.legacyData = dataProxy.legacy;
|
|
@@ -7843,6 +7998,18 @@ var endpoints10 = [
|
|
|
7843
7998
|
responseSchema: PassthroughDataSchema10,
|
|
7844
7999
|
responseType: "passthrough"
|
|
7845
8000
|
},
|
|
8001
|
+
{
|
|
8002
|
+
method: "GET",
|
|
8003
|
+
path: "/customer/{customerId}/tags",
|
|
8004
|
+
chain: "customer.tags",
|
|
8005
|
+
action: "list",
|
|
8006
|
+
aliases: [],
|
|
8007
|
+
pathParams: ["customerId"],
|
|
8008
|
+
queryParams: [],
|
|
8009
|
+
edgeCache: true,
|
|
8010
|
+
responseSchema: PassthroughDataSchema10,
|
|
8011
|
+
responseType: "passthrough"
|
|
8012
|
+
},
|
|
7846
8013
|
{
|
|
7847
8014
|
method: "GET",
|
|
7848
8015
|
path: "/oe-contacts-customer/refresh",
|
|
@@ -7933,6 +8100,9 @@ var CustomersClient = class extends BaseServiceClient {
|
|
|
7933
8100
|
this.healthCheck = createHealthCheckResource10(boundExecuteRequest);
|
|
7934
8101
|
this.healthCheckData = createHealthCheckDataResource10(this.healthCheck);
|
|
7935
8102
|
}
|
|
8103
|
+
getServiceDescription() {
|
|
8104
|
+
return "Customer master data including contacts, shipping addresses, invoices, rewards, and P21 customer sync";
|
|
8105
|
+
}
|
|
7936
8106
|
};
|
|
7937
8107
|
|
|
7938
8108
|
// src/services/orders/generated/schemas.ts
|
|
@@ -8905,8 +9075,17 @@ var MicroservicesListParamsSchema = v21.looseObject({
|
|
|
8905
9075
|
...EdgeCacheParamsSchema.entries,
|
|
8906
9076
|
limit: v21.optional(v21.pipe(v21.unknown(), v21.transform(Number))),
|
|
8907
9077
|
offset: v21.optional(v21.pipe(v21.unknown(), v21.transform(Number))),
|
|
9078
|
+
orderBy: v21.optional(v21.string()),
|
|
8908
9079
|
statusCd: v21.optional(v21.pipe(v21.unknown(), v21.transform(Number)))
|
|
8909
9080
|
});
|
|
9081
|
+
var RubricsListParamsSchema = v21.looseObject({
|
|
9082
|
+
...EdgeCacheParamsSchema.entries,
|
|
9083
|
+
orderBy: v21.optional(v21.string())
|
|
9084
|
+
});
|
|
9085
|
+
var WorkflowsListParamsSchema = v21.looseObject({
|
|
9086
|
+
...EdgeCacheParamsSchema.entries,
|
|
9087
|
+
orderBy: v21.optional(v21.string())
|
|
9088
|
+
});
|
|
8910
9089
|
var MicroservicesDataSchema = v21.looseObject({
|
|
8911
9090
|
microservicesUid: v21.optional(v21.number()),
|
|
8912
9091
|
name: v21.optional(v21.nullable(v21.string())),
|
|
@@ -8988,7 +9167,7 @@ var endpoints14 = [
|
|
|
8988
9167
|
action: "list",
|
|
8989
9168
|
aliases: [],
|
|
8990
9169
|
pathParams: [],
|
|
8991
|
-
queryParams: ["limit", "offset", "statusCd"],
|
|
9170
|
+
queryParams: ["limit", "offset", "orderBy", "statusCd"],
|
|
8992
9171
|
edgeCache: true,
|
|
8993
9172
|
responseSchema: MicroservicesDataSchema,
|
|
8994
9173
|
responseType: "array"
|
|
@@ -9060,7 +9239,7 @@ var endpoints14 = [
|
|
|
9060
9239
|
action: "list",
|
|
9061
9240
|
aliases: [],
|
|
9062
9241
|
pathParams: [],
|
|
9063
|
-
queryParams: [],
|
|
9242
|
+
queryParams: ["orderBy"],
|
|
9064
9243
|
edgeCache: true,
|
|
9065
9244
|
responseSchema: RubricsDataSchema,
|
|
9066
9245
|
responseType: "array"
|
|
@@ -9113,6 +9292,18 @@ var endpoints14 = [
|
|
|
9113
9292
|
responseSchema: PassthroughDataSchema14,
|
|
9114
9293
|
responseType: "passthrough"
|
|
9115
9294
|
},
|
|
9295
|
+
{
|
|
9296
|
+
method: "POST",
|
|
9297
|
+
path: "/sites/validate",
|
|
9298
|
+
chain: "sites.validate",
|
|
9299
|
+
action: "create",
|
|
9300
|
+
aliases: [],
|
|
9301
|
+
pathParams: [],
|
|
9302
|
+
queryParams: [],
|
|
9303
|
+
edgeCache: false,
|
|
9304
|
+
responseSchema: PassthroughDataSchema14,
|
|
9305
|
+
responseType: "passthrough"
|
|
9306
|
+
},
|
|
9116
9307
|
{
|
|
9117
9308
|
method: "GET",
|
|
9118
9309
|
path: "/workflows",
|
|
@@ -9120,7 +9311,7 @@ var endpoints14 = [
|
|
|
9120
9311
|
action: "list",
|
|
9121
9312
|
aliases: [],
|
|
9122
9313
|
pathParams: [],
|
|
9123
|
-
queryParams: [],
|
|
9314
|
+
queryParams: ["orderBy"],
|
|
9124
9315
|
edgeCache: true,
|
|
9125
9316
|
responseSchema: WorkflowsDataSchema,
|
|
9126
9317
|
responseType: "array"
|
|
@@ -9244,6 +9435,7 @@ var AgrInfoClient = class extends BaseServiceClient {
|
|
|
9244
9435
|
this.microservices = proxy.microservices;
|
|
9245
9436
|
this.ollama = proxy.ollama;
|
|
9246
9437
|
this.rubrics = proxy.rubrics;
|
|
9438
|
+
this.sites = proxy.sites;
|
|
9247
9439
|
this.workflows = proxy.workflows;
|
|
9248
9440
|
this.akashaData = dataProxy.akasha;
|
|
9249
9441
|
this.contextData = dataProxy.context;
|
|
@@ -9251,6 +9443,7 @@ var AgrInfoClient = class extends BaseServiceClient {
|
|
|
9251
9443
|
this.microservicesData = dataProxy.microservices;
|
|
9252
9444
|
this.ollamaData = dataProxy.ollama;
|
|
9253
9445
|
this.rubricsData = dataProxy.rubrics;
|
|
9446
|
+
this.sitesData = dataProxy.sites;
|
|
9254
9447
|
this.workflowsData = dataProxy.workflows;
|
|
9255
9448
|
this.healthCheck = createHealthCheckResource14(boundExecuteRequest);
|
|
9256
9449
|
this.healthCheckData = createHealthCheckDataResource14(this.healthCheck);
|
|
@@ -9788,6 +9981,38 @@ var GregorovichClient = class extends BaseServiceClient {
|
|
|
9788
9981
|
|
|
9789
9982
|
// src/services/logistics/generated/schemas.ts
|
|
9790
9983
|
import * as v25 from "valibot";
|
|
9984
|
+
var FedexRatesListParamsSchema = v25.looseObject({
|
|
9985
|
+
...EdgeCacheParamsSchema.entries,
|
|
9986
|
+
fromAddress1: v25.string(),
|
|
9987
|
+
fromCity: v25.string(),
|
|
9988
|
+
fromCountryCode: v25.optional(v25.string()),
|
|
9989
|
+
fromPostalCode: v25.string(),
|
|
9990
|
+
fromStateProvinceCode: v25.string(),
|
|
9991
|
+
toAddress1: v25.string(),
|
|
9992
|
+
toCity: v25.string(),
|
|
9993
|
+
toCountryCode: v25.optional(v25.string()),
|
|
9994
|
+
toPostalCode: v25.string(),
|
|
9995
|
+
toResidential: v25.optional(v25.boolean()),
|
|
9996
|
+
toStateProvinceCode: v25.string(),
|
|
9997
|
+
weight: v25.pipe(v25.unknown(), v25.transform(Number))
|
|
9998
|
+
});
|
|
9999
|
+
var RtsBrandsListParamsSchema = v25.looseObject({
|
|
10000
|
+
...EdgeCacheParamsSchema.entries,
|
|
10001
|
+
search: v25.optional(v25.string())
|
|
10002
|
+
});
|
|
10003
|
+
var RtsBrandsMachinesListParamsSchema = v25.looseObject({
|
|
10004
|
+
...EdgeCacheParamsSchema.entries,
|
|
10005
|
+
search: v25.optional(v25.string())
|
|
10006
|
+
});
|
|
10007
|
+
var RtsSearchMachinesListParamsSchema = v25.looseObject({
|
|
10008
|
+
...EdgeCacheParamsSchema.entries,
|
|
10009
|
+
q: v25.string()
|
|
10010
|
+
});
|
|
10011
|
+
var RtsTracksListParamsSchema = v25.looseObject({
|
|
10012
|
+
...EdgeCacheParamsSchema.entries,
|
|
10013
|
+
search: v25.optional(v25.string()),
|
|
10014
|
+
trackClass: v25.optional(v25.string())
|
|
10015
|
+
});
|
|
9791
10016
|
var ShipviaRatesListParamsSchema = v25.looseObject({
|
|
9792
10017
|
...EdgeCacheParamsSchema.entries,
|
|
9793
10018
|
carriers: v25.optional(v25.string()),
|
|
@@ -9888,6 +10113,90 @@ var PassthroughDataSchema18 = v25.record(v25.string(), v25.unknown());
|
|
|
9888
10113
|
|
|
9889
10114
|
// src/services/logistics/generated/endpoints.ts
|
|
9890
10115
|
var endpoints18 = [
|
|
10116
|
+
{
|
|
10117
|
+
method: "GET",
|
|
10118
|
+
path: "/fedex/rates",
|
|
10119
|
+
chain: "fedex.rates",
|
|
10120
|
+
action: "list",
|
|
10121
|
+
aliases: [],
|
|
10122
|
+
pathParams: [],
|
|
10123
|
+
queryParams: ["fromAddress1", "fromCity", "fromCountryCode", "fromPostalCode", "fromStateProvinceCode", "toAddress1", "toCity", "toCountryCode", "toPostalCode", "toResidential", "toStateProvinceCode", "weight"],
|
|
10124
|
+
edgeCache: true,
|
|
10125
|
+
responseSchema: PassthroughDataSchema18,
|
|
10126
|
+
responseType: "passthrough"
|
|
10127
|
+
},
|
|
10128
|
+
{
|
|
10129
|
+
method: "GET",
|
|
10130
|
+
path: "/rts/brands",
|
|
10131
|
+
chain: "rts.brands",
|
|
10132
|
+
action: "list",
|
|
10133
|
+
aliases: [],
|
|
10134
|
+
pathParams: [],
|
|
10135
|
+
queryParams: ["search"],
|
|
10136
|
+
edgeCache: true,
|
|
10137
|
+
responseSchema: PassthroughDataSchema18,
|
|
10138
|
+
responseType: "passthrough"
|
|
10139
|
+
},
|
|
10140
|
+
{
|
|
10141
|
+
method: "GET",
|
|
10142
|
+
path: "/rts/brands/<brandId:d+>/machines",
|
|
10143
|
+
chain: "rts.brands.<brandId:d+>.machines",
|
|
10144
|
+
action: "list",
|
|
10145
|
+
aliases: [],
|
|
10146
|
+
pathParams: [],
|
|
10147
|
+
queryParams: ["search"],
|
|
10148
|
+
edgeCache: true,
|
|
10149
|
+
responseSchema: PassthroughDataSchema18,
|
|
10150
|
+
responseType: "passthrough"
|
|
10151
|
+
},
|
|
10152
|
+
{
|
|
10153
|
+
method: "GET",
|
|
10154
|
+
path: "/rts/machines/<machineId:d+>/tracks",
|
|
10155
|
+
chain: "rts.machines.<machineId:d+>.tracks",
|
|
10156
|
+
action: "list",
|
|
10157
|
+
aliases: [],
|
|
10158
|
+
pathParams: [],
|
|
10159
|
+
queryParams: [],
|
|
10160
|
+
edgeCache: true,
|
|
10161
|
+
responseSchema: PassthroughDataSchema18,
|
|
10162
|
+
responseType: "passthrough"
|
|
10163
|
+
},
|
|
10164
|
+
{
|
|
10165
|
+
method: "GET",
|
|
10166
|
+
path: "/rts/search/machines",
|
|
10167
|
+
chain: "rts.search.machines",
|
|
10168
|
+
action: "list",
|
|
10169
|
+
aliases: [],
|
|
10170
|
+
pathParams: [],
|
|
10171
|
+
queryParams: ["q"],
|
|
10172
|
+
edgeCache: true,
|
|
10173
|
+
responseSchema: PassthroughDataSchema18,
|
|
10174
|
+
responseType: "passthrough"
|
|
10175
|
+
},
|
|
10176
|
+
{
|
|
10177
|
+
method: "GET",
|
|
10178
|
+
path: "/rts/track/<trackId:d+>",
|
|
10179
|
+
chain: "rts.track.<trackId:d+>",
|
|
10180
|
+
action: "list",
|
|
10181
|
+
aliases: [],
|
|
10182
|
+
pathParams: [],
|
|
10183
|
+
queryParams: [],
|
|
10184
|
+
edgeCache: true,
|
|
10185
|
+
responseSchema: PassthroughDataSchema18,
|
|
10186
|
+
responseType: "passthrough"
|
|
10187
|
+
},
|
|
10188
|
+
{
|
|
10189
|
+
method: "GET",
|
|
10190
|
+
path: "/rts/tracks",
|
|
10191
|
+
chain: "rts.tracks",
|
|
10192
|
+
action: "list",
|
|
10193
|
+
aliases: [],
|
|
10194
|
+
pathParams: [],
|
|
10195
|
+
queryParams: ["search", "trackClass"],
|
|
10196
|
+
edgeCache: true,
|
|
10197
|
+
responseSchema: PassthroughDataSchema18,
|
|
10198
|
+
responseType: "passthrough"
|
|
10199
|
+
},
|
|
9891
10200
|
{
|
|
9892
10201
|
method: "GET",
|
|
9893
10202
|
path: "/shipvia/rates",
|
|
@@ -9895,26 +10204,7 @@ var endpoints18 = [
|
|
|
9895
10204
|
action: "list",
|
|
9896
10205
|
aliases: [],
|
|
9897
10206
|
pathParams: [],
|
|
9898
|
-
queryParams: [
|
|
9899
|
-
"carriers",
|
|
9900
|
-
"dimensionUnit",
|
|
9901
|
-
"fromCity",
|
|
9902
|
-
"fromCountry",
|
|
9903
|
-
"fromPostalCode",
|
|
9904
|
-
"fromState",
|
|
9905
|
-
"locationId",
|
|
9906
|
-
"packageHeight",
|
|
9907
|
-
"packageLength",
|
|
9908
|
-
"packageWidth",
|
|
9909
|
-
"residential",
|
|
9910
|
-
"serviceType",
|
|
9911
|
-
"toCity",
|
|
9912
|
-
"toCountry",
|
|
9913
|
-
"toPostalCode",
|
|
9914
|
-
"toState",
|
|
9915
|
-
"totalWeight",
|
|
9916
|
-
"weightUnit"
|
|
9917
|
-
],
|
|
10207
|
+
queryParams: ["carriers", "dimensionUnit", "fromCity", "fromCountry", "fromPostalCode", "fromState", "locationId", "packageHeight", "packageLength", "packageWidth", "residential", "serviceType", "toCity", "toCountry", "toPostalCode", "toState", "totalWeight", "weightUnit"],
|
|
9918
10208
|
edgeCache: true,
|
|
9919
10209
|
responseSchema: PassthroughDataSchema18,
|
|
9920
10210
|
responseType: "passthrough"
|
|
@@ -9926,31 +10216,7 @@ var endpoints18 = [
|
|
|
9926
10216
|
action: "list",
|
|
9927
10217
|
aliases: [],
|
|
9928
10218
|
pathParams: [],
|
|
9929
|
-
queryParams: [
|
|
9930
|
-
"carriers",
|
|
9931
|
-
"commodityClass",
|
|
9932
|
-
"commodityDescription",
|
|
9933
|
-
"deliveryInstructions",
|
|
9934
|
-
"dimensionUnit",
|
|
9935
|
-
"fromCity",
|
|
9936
|
-
"fromCountry",
|
|
9937
|
-
"fromPostalCode",
|
|
9938
|
-
"fromState",
|
|
9939
|
-
"isHazMat",
|
|
9940
|
-
"locationId",
|
|
9941
|
-
"packageHeight",
|
|
9942
|
-
"packageLength",
|
|
9943
|
-
"packageWidth",
|
|
9944
|
-
"packagingType",
|
|
9945
|
-
"pickupInstructions",
|
|
9946
|
-
"quantity",
|
|
9947
|
-
"toCity",
|
|
9948
|
-
"toCountry",
|
|
9949
|
-
"toPostalCode",
|
|
9950
|
-
"toState",
|
|
9951
|
-
"totalWeight",
|
|
9952
|
-
"weightUnit"
|
|
9953
|
-
],
|
|
10219
|
+
queryParams: ["carriers", "commodityClass", "commodityDescription", "deliveryInstructions", "dimensionUnit", "fromCity", "fromCountry", "fromPostalCode", "fromState", "isHazMat", "locationId", "packageHeight", "packageLength", "packageWidth", "packagingType", "pickupInstructions", "quantity", "toCity", "toCountry", "toPostalCode", "toState", "totalWeight", "weightUnit"],
|
|
9954
10220
|
edgeCache: true,
|
|
9955
10221
|
responseSchema: PassthroughDataSchema18,
|
|
9956
10222
|
responseType: "passthrough"
|
|
@@ -9962,40 +10228,7 @@ var endpoints18 = [
|
|
|
9962
10228
|
action: "list",
|
|
9963
10229
|
aliases: [],
|
|
9964
10230
|
pathParams: [],
|
|
9965
|
-
queryParams: [
|
|
9966
|
-
"deliveryInstructions",
|
|
9967
|
-
"dimensionUnit",
|
|
9968
|
-
"fromAddressLine",
|
|
9969
|
-
"fromCity",
|
|
9970
|
-
"fromCompanyName",
|
|
9971
|
-
"fromCountryCode",
|
|
9972
|
-
"fromFirstName",
|
|
9973
|
-
"fromLastName",
|
|
9974
|
-
"fromPhone",
|
|
9975
|
-
"fromPostalCode",
|
|
9976
|
-
"fromState",
|
|
9977
|
-
"handlingCharge",
|
|
9978
|
-
"handlingChargeUnit",
|
|
9979
|
-
"international",
|
|
9980
|
-
"packageHeight",
|
|
9981
|
-
"packageLength",
|
|
9982
|
-
"packageWidth",
|
|
9983
|
-
"pickupInstructions",
|
|
9984
|
-
"productType",
|
|
9985
|
-
"quantity",
|
|
9986
|
-
"responseFormat",
|
|
9987
|
-
"toAddressLine",
|
|
9988
|
-
"toCity",
|
|
9989
|
-
"toCompanyName",
|
|
9990
|
-
"toCountryCode",
|
|
9991
|
-
"toFirstName",
|
|
9992
|
-
"toLastName",
|
|
9993
|
-
"toPhone",
|
|
9994
|
-
"toPostalCode",
|
|
9995
|
-
"toRegion",
|
|
9996
|
-
"totalWeight",
|
|
9997
|
-
"weightUnit"
|
|
9998
|
-
],
|
|
10231
|
+
queryParams: ["deliveryInstructions", "dimensionUnit", "fromAddressLine", "fromCity", "fromCompanyName", "fromCountryCode", "fromFirstName", "fromLastName", "fromPhone", "fromPostalCode", "fromState", "handlingCharge", "handlingChargeUnit", "international", "packageHeight", "packageLength", "packageWidth", "pickupInstructions", "productType", "quantity", "responseFormat", "toAddressLine", "toCity", "toCompanyName", "toCountryCode", "toFirstName", "toLastName", "toPhone", "toPostalCode", "toRegion", "totalWeight", "weightUnit"],
|
|
9999
10232
|
edgeCache: true,
|
|
10000
10233
|
responseSchema: PassthroughDataSchema18,
|
|
10001
10234
|
responseType: "passthrough"
|
|
@@ -10007,19 +10240,7 @@ var endpoints18 = [
|
|
|
10007
10240
|
action: "list",
|
|
10008
10241
|
aliases: [],
|
|
10009
10242
|
pathParams: [],
|
|
10010
|
-
queryParams: [
|
|
10011
|
-
"fromAddress1",
|
|
10012
|
-
"fromCity",
|
|
10013
|
-
"fromCountryCode",
|
|
10014
|
-
"fromPostalCode",
|
|
10015
|
-
"fromStateProvinceCode",
|
|
10016
|
-
"toAddress1",
|
|
10017
|
-
"toCity",
|
|
10018
|
-
"toCountryCode",
|
|
10019
|
-
"toPostalCode",
|
|
10020
|
-
"toStateProvinceCode",
|
|
10021
|
-
"weight"
|
|
10022
|
-
],
|
|
10243
|
+
queryParams: ["fromAddress1", "fromCity", "fromCountryCode", "fromPostalCode", "fromStateProvinceCode", "toAddress1", "toCity", "toCountryCode", "toPostalCode", "toStateProvinceCode", "weight"],
|
|
10023
10244
|
edgeCache: true,
|
|
10024
10245
|
responseSchema: PassthroughDataSchema18,
|
|
10025
10246
|
responseType: "passthrough"
|
|
@@ -10173,9 +10394,13 @@ var LogisticsClient = class extends BaseServiceClient {
|
|
|
10173
10394
|
endpoints18
|
|
10174
10395
|
);
|
|
10175
10396
|
const dataProxy = createDataProxy(proxy);
|
|
10397
|
+
this.fedex = proxy.fedex;
|
|
10398
|
+
this.rts = proxy.rts;
|
|
10176
10399
|
this.shipvia = proxy.shipvia;
|
|
10177
10400
|
this.speedship = proxy.speedship;
|
|
10178
10401
|
this.ups = proxy.ups;
|
|
10402
|
+
this.fedexData = dataProxy.fedex;
|
|
10403
|
+
this.rtsData = dataProxy.rts;
|
|
10179
10404
|
this.shipviaData = dataProxy.shipvia;
|
|
10180
10405
|
this.speedshipData = dataProxy.speedship;
|
|
10181
10406
|
this.upsData = dataProxy.ups;
|
|
@@ -13654,7 +13879,7 @@ function createCrossSiteAuthenticator(augurInfoToken) {
|
|
|
13654
13879
|
}
|
|
13655
13880
|
|
|
13656
13881
|
// src/index.ts
|
|
13657
|
-
var VERSION = "2026.
|
|
13882
|
+
var VERSION = "2026.5.2";
|
|
13658
13883
|
export {
|
|
13659
13884
|
AgrInfoClient,
|
|
13660
13885
|
AgrSiteClient,
|