@simpleapps-com/augur-api 2026.7.1 → 2026.8.1
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/README.md +1 -1
- package/SKILL.md +2 -2
- package/dist/{client-CtkvL4em.d.mts → client-Dbn_tglP.d.mts} +380 -18
- package/dist/{client-CtkvL4em.d.ts → client-Dbn_tglP.d.ts} +380 -18
- package/dist/index.d.mts +3 -3
- package/dist/index.d.ts +3 -3
- package/dist/index.js +647 -13
- package/dist/index.js.map +1 -1
- package/dist/index.mjs +647 -13
- 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
|
@@ -4371,6 +4371,29 @@ var AttributeGroupsAttributesDataSchema = v11.looseObject({
|
|
|
4371
4371
|
statusCd: v11.optional(v11.number())
|
|
4372
4372
|
});
|
|
4373
4373
|
var AttributesDataSchema = v11.looseObject({
|
|
4374
|
+
attributeUid: v11.optional(v11.number()),
|
|
4375
|
+
attributeDesc: v11.optional(v11.nullable(v11.string())),
|
|
4376
|
+
extendedDesc: v11.optional(v11.nullable(v11.string())),
|
|
4377
|
+
attributeId: v11.optional(v11.string()),
|
|
4378
|
+
dataType: v11.optional(v11.number()),
|
|
4379
|
+
maxLength: v11.optional(v11.number()),
|
|
4380
|
+
noOfDecimal: v11.optional(v11.nullable(v11.number())),
|
|
4381
|
+
rowStatusFlag: v11.optional(v11.number()),
|
|
4382
|
+
validationRequiredFlag: v11.optional(v11.string()),
|
|
4383
|
+
dateCreated: v11.optional(v11.string()),
|
|
4384
|
+
createdBy: v11.optional(v11.string()),
|
|
4385
|
+
dateLastModified: v11.optional(v11.string()),
|
|
4386
|
+
lastMaintainedBy: v11.optional(v11.string()),
|
|
4387
|
+
cfdiAttributeType: v11.optional(v11.nullable(v11.number())),
|
|
4388
|
+
updateCd: v11.optional(v11.number()),
|
|
4389
|
+
processCd: v11.optional(v11.number()),
|
|
4390
|
+
statusCd: v11.optional(v11.number()),
|
|
4391
|
+
typeCd: v11.optional(v11.number()),
|
|
4392
|
+
activeValueCount: v11.optional(v11.number()),
|
|
4393
|
+
inactiveValueCount: v11.optional(v11.number()),
|
|
4394
|
+
deletedValueCount: v11.optional(v11.number())
|
|
4395
|
+
});
|
|
4396
|
+
var AttributesData2Schema = v11.looseObject({
|
|
4374
4397
|
attributeUid: v11.optional(v11.number()),
|
|
4375
4398
|
attributeDesc: v11.optional(v11.nullable(v11.string())),
|
|
4376
4399
|
extendedDesc: v11.optional(v11.nullable(v11.string())),
|
|
@@ -4406,7 +4429,8 @@ var AttributesItemsDataSchema = v11.looseObject({
|
|
|
4406
4429
|
onlineCd: v11.optional(v11.number()),
|
|
4407
4430
|
attributeDesc: v11.optional(v11.nullable(v11.string())),
|
|
4408
4431
|
attributeId: v11.optional(v11.string()),
|
|
4409
|
-
itemId: v11.optional(v11.string())
|
|
4432
|
+
itemId: v11.optional(v11.string()),
|
|
4433
|
+
itemDesc: v11.optional(v11.nullable(v11.string()))
|
|
4410
4434
|
});
|
|
4411
4435
|
var AttributesValuesDataSchema = v11.looseObject({
|
|
4412
4436
|
attributeValueUid: v11.optional(v11.number()),
|
|
@@ -4710,7 +4734,7 @@ var endpoints6 = [
|
|
|
4710
4734
|
pathParams: [],
|
|
4711
4735
|
queryParams: [],
|
|
4712
4736
|
edgeCache: false,
|
|
4713
|
-
responseSchema:
|
|
4737
|
+
responseSchema: AttributesData2Schema,
|
|
4714
4738
|
responseType: "object"
|
|
4715
4739
|
},
|
|
4716
4740
|
{
|
|
@@ -4734,7 +4758,7 @@ var endpoints6 = [
|
|
|
4734
4758
|
pathParams: ["attributeUid"],
|
|
4735
4759
|
queryParams: [],
|
|
4736
4760
|
edgeCache: false,
|
|
4737
|
-
responseSchema:
|
|
4761
|
+
responseSchema: AttributesData2Schema,
|
|
4738
4762
|
responseType: "object"
|
|
4739
4763
|
},
|
|
4740
4764
|
{
|
|
@@ -8049,6 +8073,14 @@ var CustomerAddressesListParamsSchema = v17.looseObject({
|
|
|
8049
8073
|
orderBy: v17.optional(v17.string()),
|
|
8050
8074
|
statusCd: v17.optional(v17.pipe(v17.unknown(), v17.transform(Number)))
|
|
8051
8075
|
});
|
|
8076
|
+
var CustomerAgingListParamsSchema = v17.looseObject({
|
|
8077
|
+
...EdgeCacheParamsSchema.entries,
|
|
8078
|
+
asOf: v17.optional(v17.string()),
|
|
8079
|
+
limit: v17.optional(v17.pipe(v17.unknown(), v17.transform(Number))),
|
|
8080
|
+
offset: v17.optional(v17.pipe(v17.unknown(), v17.transform(Number))),
|
|
8081
|
+
orderBy: v17.optional(v17.string()),
|
|
8082
|
+
shipToId: v17.optional(v17.pipe(v17.unknown(), v17.transform(Number)))
|
|
8083
|
+
});
|
|
8052
8084
|
var CustomerContactsListParamsSchema = v17.looseObject({
|
|
8053
8085
|
...EdgeCacheParamsSchema.entries,
|
|
8054
8086
|
limit: v17.optional(v17.pipe(v17.unknown(), v17.transform(Number))),
|
|
@@ -8108,6 +8140,18 @@ var CustomerRmasListParamsSchema = v17.looseObject({
|
|
|
8108
8140
|
offset: v17.optional(v17.pipe(v17.unknown(), v17.transform(Number))),
|
|
8109
8141
|
orderBy: v17.optional(v17.string())
|
|
8110
8142
|
});
|
|
8143
|
+
var CustomerSalesUsageListParamsSchema = v17.looseObject({
|
|
8144
|
+
...EdgeCacheParamsSchema.entries,
|
|
8145
|
+
invoicedFrom: v17.optional(v17.string()),
|
|
8146
|
+
invoicedTo: v17.optional(v17.string()),
|
|
8147
|
+
limit: v17.optional(v17.pipe(v17.unknown(), v17.transform(Number))),
|
|
8148
|
+
offset: v17.optional(v17.pipe(v17.unknown(), v17.transform(Number))),
|
|
8149
|
+
orderBy: v17.optional(v17.string()),
|
|
8150
|
+
q: v17.optional(v17.string()),
|
|
8151
|
+
shipToId: v17.optional(v17.pipe(v17.unknown(), v17.transform(Number))),
|
|
8152
|
+
supplierId: v17.optional(v17.pipe(v17.unknown(), v17.transform(Number))),
|
|
8153
|
+
totalBy: v17.optional(v17.string())
|
|
8154
|
+
});
|
|
8111
8155
|
var CustomerShipToListParamsSchema = v17.looseObject({
|
|
8112
8156
|
...EdgeCacheParamsSchema.entries,
|
|
8113
8157
|
limit: v17.optional(v17.pipe(v17.unknown(), v17.transform(Number))),
|
|
@@ -8141,6 +8185,26 @@ var CustomerAddressesDataSchema = v17.looseObject({
|
|
|
8141
8185
|
phoneNumberMain: v17.optional(v17.nullable(v17.string())),
|
|
8142
8186
|
phoneNumberMobile: v17.optional(v17.nullable(v17.string()))
|
|
8143
8187
|
});
|
|
8188
|
+
var CustomerAgingDataSchema = v17.looseObject({
|
|
8189
|
+
customerId: v17.optional(v17.string()),
|
|
8190
|
+
asOf: v17.optional(v17.string()),
|
|
8191
|
+
bucketKeys: v17.optional(v17.string()),
|
|
8192
|
+
invoiceCount: v17.optional(v17.number()),
|
|
8193
|
+
totalBalance: v17.optional(v17.number()),
|
|
8194
|
+
totals: v17.optional(v17.string()),
|
|
8195
|
+
data: v17.optional(v17.string())
|
|
8196
|
+
});
|
|
8197
|
+
var CustomerSalesUsageDataSchema = v17.looseObject({
|
|
8198
|
+
customerId: v17.optional(v17.string()),
|
|
8199
|
+
invoicedFrom: v17.optional(v17.string()),
|
|
8200
|
+
invoicedTo: v17.optional(v17.string()),
|
|
8201
|
+
totalBy: v17.optional(v17.string()),
|
|
8202
|
+
bucketKeys: v17.optional(v17.string()),
|
|
8203
|
+
invoiceCount: v17.optional(v17.number()),
|
|
8204
|
+
linesFolded: v17.optional(v17.number()),
|
|
8205
|
+
itemCount: v17.optional(v17.number()),
|
|
8206
|
+
data: v17.optional(v17.string())
|
|
8207
|
+
});
|
|
8144
8208
|
var CustomerTagsDataSchema = v17.looseObject({
|
|
8145
8209
|
customerTagsUid: v17.optional(v17.number()),
|
|
8146
8210
|
customerId: v17.optional(v17.number()),
|
|
@@ -8311,6 +8375,18 @@ var endpoints10 = [
|
|
|
8311
8375
|
responseSchema: CustomerAddressesDataSchema,
|
|
8312
8376
|
responseType: "object"
|
|
8313
8377
|
},
|
|
8378
|
+
{
|
|
8379
|
+
method: "GET",
|
|
8380
|
+
path: "/customer/{customerId}/aging",
|
|
8381
|
+
chain: "customer.aging",
|
|
8382
|
+
action: "list",
|
|
8383
|
+
aliases: [],
|
|
8384
|
+
pathParams: ["customerId"],
|
|
8385
|
+
queryParams: ["asOf", "limit", "offset", "orderBy", "shipToId"],
|
|
8386
|
+
edgeCache: true,
|
|
8387
|
+
responseSchema: CustomerAgingDataSchema,
|
|
8388
|
+
responseType: "object"
|
|
8389
|
+
},
|
|
8314
8390
|
{
|
|
8315
8391
|
method: "GET",
|
|
8316
8392
|
path: "/customer/{customerId}/contacts",
|
|
@@ -8487,6 +8563,28 @@ var endpoints10 = [
|
|
|
8487
8563
|
responseSchema: PassthroughDataSchema10,
|
|
8488
8564
|
responseType: "passthrough"
|
|
8489
8565
|
},
|
|
8566
|
+
{
|
|
8567
|
+
method: "GET",
|
|
8568
|
+
path: "/customer/{customerId}/sales-usage",
|
|
8569
|
+
chain: "customer.salesUsage",
|
|
8570
|
+
action: "list",
|
|
8571
|
+
aliases: [],
|
|
8572
|
+
pathParams: ["customerId"],
|
|
8573
|
+
queryParams: [
|
|
8574
|
+
"invoicedFrom",
|
|
8575
|
+
"invoicedTo",
|
|
8576
|
+
"limit",
|
|
8577
|
+
"offset",
|
|
8578
|
+
"orderBy",
|
|
8579
|
+
"q",
|
|
8580
|
+
"shipToId",
|
|
8581
|
+
"supplierId",
|
|
8582
|
+
"totalBy"
|
|
8583
|
+
],
|
|
8584
|
+
edgeCache: true,
|
|
8585
|
+
responseSchema: CustomerSalesUsageDataSchema,
|
|
8586
|
+
responseType: "object"
|
|
8587
|
+
},
|
|
8490
8588
|
{
|
|
8491
8589
|
method: "GET",
|
|
8492
8590
|
path: "/customer/{customerId}/ship-to",
|
|
@@ -8511,6 +8609,18 @@ var endpoints10 = [
|
|
|
8511
8609
|
responseSchema: PassthroughDataSchema10,
|
|
8512
8610
|
responseType: "passthrough"
|
|
8513
8611
|
},
|
|
8612
|
+
{
|
|
8613
|
+
method: "GET",
|
|
8614
|
+
path: "/customer/{customerId}/ship-to/{shipToId}/freight-codes",
|
|
8615
|
+
chain: "customer.shipTo.freightCodes",
|
|
8616
|
+
action: "list",
|
|
8617
|
+
aliases: [],
|
|
8618
|
+
pathParams: ["customerId", "shipToId"],
|
|
8619
|
+
queryParams: [],
|
|
8620
|
+
edgeCache: true,
|
|
8621
|
+
responseSchema: PassthroughDataSchema10,
|
|
8622
|
+
responseType: "passthrough"
|
|
8623
|
+
},
|
|
8514
8624
|
{
|
|
8515
8625
|
method: "GET",
|
|
8516
8626
|
path: "/customer/{customerId}/tags",
|
|
@@ -9004,6 +9114,23 @@ var InvMastExtListParamsSchema = v19.looseObject({
|
|
|
9004
9114
|
q: v19.optional(v19.string()),
|
|
9005
9115
|
statusCd: v19.optional(v19.pipe(v19.unknown(), v19.transform(Number)))
|
|
9006
9116
|
});
|
|
9117
|
+
var InvMastFilesListParamsSchema = v19.looseObject({
|
|
9118
|
+
...EdgeCacheParamsSchema.entries,
|
|
9119
|
+
invMastUid: v19.optional(v19.pipe(v19.unknown(), v19.transform(Number))),
|
|
9120
|
+
limit: v19.optional(v19.pipe(v19.unknown(), v19.transform(Number))),
|
|
9121
|
+
offset: v19.optional(v19.pipe(v19.unknown(), v19.transform(Number))),
|
|
9122
|
+
orderBy: v19.optional(v19.string()),
|
|
9123
|
+
statusCd: v19.optional(v19.pipe(v19.unknown(), v19.transform(Number)))
|
|
9124
|
+
});
|
|
9125
|
+
var InvMastTextListParamsSchema = v19.looseObject({
|
|
9126
|
+
...EdgeCacheParamsSchema.entries,
|
|
9127
|
+
invMastUid: v19.optional(v19.pipe(v19.unknown(), v19.transform(Number))),
|
|
9128
|
+
limit: v19.optional(v19.pipe(v19.unknown(), v19.transform(Number))),
|
|
9129
|
+
offset: v19.optional(v19.pipe(v19.unknown(), v19.transform(Number))),
|
|
9130
|
+
orderBy: v19.optional(v19.string()),
|
|
9131
|
+
statusCd: v19.optional(v19.pipe(v19.unknown(), v19.transform(Number))),
|
|
9132
|
+
webDisplayTypeUid: v19.optional(v19.pipe(v19.unknown(), v19.transform(Number)))
|
|
9133
|
+
});
|
|
9007
9134
|
var ItemsSuggestDisplayDescListParamsSchema = v19.looseObject({
|
|
9008
9135
|
...EdgeCacheParamsSchema.entries,
|
|
9009
9136
|
limit: v19.optional(v19.pipe(v19.unknown(), v19.transform(Number))),
|
|
@@ -9022,6 +9149,55 @@ var PodcastsListParamsSchema = v19.looseObject({
|
|
|
9022
9149
|
q: v19.optional(v19.string()),
|
|
9023
9150
|
statusCd: v19.optional(v19.pipe(v19.unknown(), v19.transform(Number)))
|
|
9024
9151
|
});
|
|
9152
|
+
var InvMastExtDataSchema = v19.looseObject({
|
|
9153
|
+
invMastExtUid: v19.optional(v19.number()),
|
|
9154
|
+
invMastUid: v19.optional(v19.number()),
|
|
9155
|
+
dateCreated: v19.optional(v19.string()),
|
|
9156
|
+
dateLastModified: v19.optional(v19.string()),
|
|
9157
|
+
updateCd: v19.optional(v19.number()),
|
|
9158
|
+
statusCd: v19.optional(v19.number()),
|
|
9159
|
+
processCd: v19.optional(v19.number()),
|
|
9160
|
+
upcOrEan: v19.optional(v19.nullable(v19.string())),
|
|
9161
|
+
upcOrEanId: v19.optional(v19.nullable(v19.string())),
|
|
9162
|
+
upcOrEanPrefix: v19.optional(v19.nullable(v19.string())),
|
|
9163
|
+
upcOrEanItem: v19.optional(v19.nullable(v19.string())),
|
|
9164
|
+
attributeGroupUid: v19.optional(v19.nullable(v19.number())),
|
|
9165
|
+
brandName: v19.optional(v19.nullable(v19.string())),
|
|
9166
|
+
manufacturerName: v19.optional(v19.nullable(v19.string())),
|
|
9167
|
+
partNumber: v19.optional(v19.nullable(v19.string())),
|
|
9168
|
+
metaTitle: v19.optional(v19.nullable(v19.string())),
|
|
9169
|
+
metaDescription: v19.optional(v19.nullable(v19.string())),
|
|
9170
|
+
metaKeywords: v19.optional(v19.nullable(v19.string()))
|
|
9171
|
+
});
|
|
9172
|
+
var InvMastFilesDataSchema = v19.looseObject({
|
|
9173
|
+
invMastFilesUid: v19.optional(v19.number()),
|
|
9174
|
+
invMastUid: v19.optional(v19.number()),
|
|
9175
|
+
fileName: v19.optional(v19.string()),
|
|
9176
|
+
filePath: v19.optional(v19.string()),
|
|
9177
|
+
linkArea: v19.optional(v19.number()),
|
|
9178
|
+
rowStatusFlag: v19.optional(v19.number()),
|
|
9179
|
+
sequenceNo: v19.optional(v19.number()),
|
|
9180
|
+
dateCreated: v19.optional(v19.string()),
|
|
9181
|
+
dateLastModified: v19.optional(v19.string()),
|
|
9182
|
+
updateCd: v19.optional(v19.number()),
|
|
9183
|
+
statusCd: v19.optional(v19.number()),
|
|
9184
|
+
processCd: v19.optional(v19.number()),
|
|
9185
|
+
fileDesc: v19.optional(v19.string())
|
|
9186
|
+
});
|
|
9187
|
+
var InvMastTextDataSchema = v19.looseObject({
|
|
9188
|
+
invMastTextUid: v19.optional(v19.number()),
|
|
9189
|
+
invMastUid: v19.optional(v19.number()),
|
|
9190
|
+
sequenceNo: v19.optional(v19.number()),
|
|
9191
|
+
textValue: v19.optional(v19.string()),
|
|
9192
|
+
displayOnWebFlag: v19.optional(v19.string()),
|
|
9193
|
+
webDisplayTypeUid: v19.optional(v19.number()),
|
|
9194
|
+
textTypeCd: v19.optional(v19.number()),
|
|
9195
|
+
dateCreated: v19.optional(v19.string()),
|
|
9196
|
+
dateLastModified: v19.optional(v19.string()),
|
|
9197
|
+
updateCd: v19.optional(v19.number()),
|
|
9198
|
+
statusCd: v19.optional(v19.number()),
|
|
9199
|
+
processCd: v19.optional(v19.number())
|
|
9200
|
+
});
|
|
9025
9201
|
var PodcastsDataSchema = v19.looseObject({
|
|
9026
9202
|
podcastsUid: v19.optional(v19.number()),
|
|
9027
9203
|
title: v19.optional(v19.nullable(v19.string())),
|
|
@@ -9046,8 +9222,8 @@ var endpoints12 = [
|
|
|
9046
9222
|
pathParams: [],
|
|
9047
9223
|
queryParams: ["invMastUid", "limit", "offset", "orderBy", "q", "statusCd"],
|
|
9048
9224
|
edgeCache: true,
|
|
9049
|
-
responseSchema:
|
|
9050
|
-
responseType: "
|
|
9225
|
+
responseSchema: InvMastExtDataSchema,
|
|
9226
|
+
responseType: "array"
|
|
9051
9227
|
},
|
|
9052
9228
|
{
|
|
9053
9229
|
method: "POST",
|
|
@@ -9058,8 +9234,8 @@ var endpoints12 = [
|
|
|
9058
9234
|
pathParams: [],
|
|
9059
9235
|
queryParams: [],
|
|
9060
9236
|
edgeCache: false,
|
|
9061
|
-
responseSchema:
|
|
9062
|
-
responseType: "
|
|
9237
|
+
responseSchema: InvMastExtDataSchema,
|
|
9238
|
+
responseType: "object"
|
|
9063
9239
|
},
|
|
9064
9240
|
{
|
|
9065
9241
|
method: "GET",
|
|
@@ -9070,8 +9246,8 @@ var endpoints12 = [
|
|
|
9070
9246
|
pathParams: ["invMastExtUid"],
|
|
9071
9247
|
queryParams: [],
|
|
9072
9248
|
edgeCache: true,
|
|
9073
|
-
responseSchema:
|
|
9074
|
-
responseType: "
|
|
9249
|
+
responseSchema: InvMastExtDataSchema,
|
|
9250
|
+
responseType: "object"
|
|
9075
9251
|
},
|
|
9076
9252
|
{
|
|
9077
9253
|
method: "PUT",
|
|
@@ -9082,8 +9258,8 @@ var endpoints12 = [
|
|
|
9082
9258
|
pathParams: ["invMastExtUid"],
|
|
9083
9259
|
queryParams: [],
|
|
9084
9260
|
edgeCache: false,
|
|
9085
|
-
responseSchema:
|
|
9086
|
-
responseType: "
|
|
9261
|
+
responseSchema: InvMastExtDataSchema,
|
|
9262
|
+
responseType: "object"
|
|
9087
9263
|
},
|
|
9088
9264
|
{
|
|
9089
9265
|
method: "DELETE",
|
|
@@ -9097,6 +9273,126 @@ var endpoints12 = [
|
|
|
9097
9273
|
responseSchema: PassthroughDataSchema12,
|
|
9098
9274
|
responseType: "passthrough"
|
|
9099
9275
|
},
|
|
9276
|
+
{
|
|
9277
|
+
method: "GET",
|
|
9278
|
+
path: "/inv-mast-files",
|
|
9279
|
+
chain: "invMastFiles",
|
|
9280
|
+
action: "list",
|
|
9281
|
+
aliases: [],
|
|
9282
|
+
pathParams: [],
|
|
9283
|
+
queryParams: ["invMastUid", "limit", "offset", "orderBy", "statusCd"],
|
|
9284
|
+
edgeCache: true,
|
|
9285
|
+
responseSchema: InvMastFilesDataSchema,
|
|
9286
|
+
responseType: "array"
|
|
9287
|
+
},
|
|
9288
|
+
{
|
|
9289
|
+
method: "POST",
|
|
9290
|
+
path: "/inv-mast-files",
|
|
9291
|
+
chain: "invMastFiles",
|
|
9292
|
+
action: "create",
|
|
9293
|
+
aliases: [],
|
|
9294
|
+
pathParams: [],
|
|
9295
|
+
queryParams: [],
|
|
9296
|
+
edgeCache: false,
|
|
9297
|
+
responseSchema: InvMastFilesDataSchema,
|
|
9298
|
+
responseType: "object"
|
|
9299
|
+
},
|
|
9300
|
+
{
|
|
9301
|
+
method: "GET",
|
|
9302
|
+
path: "/inv-mast-files/{invMastFilesUid}",
|
|
9303
|
+
chain: "invMastFiles",
|
|
9304
|
+
action: "get",
|
|
9305
|
+
aliases: [],
|
|
9306
|
+
pathParams: ["invMastFilesUid"],
|
|
9307
|
+
queryParams: [],
|
|
9308
|
+
edgeCache: true,
|
|
9309
|
+
responseSchema: InvMastFilesDataSchema,
|
|
9310
|
+
responseType: "object"
|
|
9311
|
+
},
|
|
9312
|
+
{
|
|
9313
|
+
method: "PUT",
|
|
9314
|
+
path: "/inv-mast-files/{invMastFilesUid}",
|
|
9315
|
+
chain: "invMastFiles",
|
|
9316
|
+
action: "update",
|
|
9317
|
+
aliases: [],
|
|
9318
|
+
pathParams: ["invMastFilesUid"],
|
|
9319
|
+
queryParams: [],
|
|
9320
|
+
edgeCache: false,
|
|
9321
|
+
responseSchema: InvMastFilesDataSchema,
|
|
9322
|
+
responseType: "object"
|
|
9323
|
+
},
|
|
9324
|
+
{
|
|
9325
|
+
method: "DELETE",
|
|
9326
|
+
path: "/inv-mast-files/{invMastFilesUid}",
|
|
9327
|
+
chain: "invMastFiles",
|
|
9328
|
+
action: "delete",
|
|
9329
|
+
aliases: [],
|
|
9330
|
+
pathParams: ["invMastFilesUid"],
|
|
9331
|
+
queryParams: [],
|
|
9332
|
+
edgeCache: false,
|
|
9333
|
+
responseSchema: PassthroughDataSchema12,
|
|
9334
|
+
responseType: "passthrough"
|
|
9335
|
+
},
|
|
9336
|
+
{
|
|
9337
|
+
method: "GET",
|
|
9338
|
+
path: "/inv-mast-text",
|
|
9339
|
+
chain: "invMastText",
|
|
9340
|
+
action: "list",
|
|
9341
|
+
aliases: [],
|
|
9342
|
+
pathParams: [],
|
|
9343
|
+
queryParams: ["invMastUid", "limit", "offset", "orderBy", "statusCd", "webDisplayTypeUid"],
|
|
9344
|
+
edgeCache: true,
|
|
9345
|
+
responseSchema: InvMastTextDataSchema,
|
|
9346
|
+
responseType: "array"
|
|
9347
|
+
},
|
|
9348
|
+
{
|
|
9349
|
+
method: "POST",
|
|
9350
|
+
path: "/inv-mast-text",
|
|
9351
|
+
chain: "invMastText",
|
|
9352
|
+
action: "create",
|
|
9353
|
+
aliases: [],
|
|
9354
|
+
pathParams: [],
|
|
9355
|
+
queryParams: [],
|
|
9356
|
+
edgeCache: false,
|
|
9357
|
+
responseSchema: InvMastTextDataSchema,
|
|
9358
|
+
responseType: "object"
|
|
9359
|
+
},
|
|
9360
|
+
{
|
|
9361
|
+
method: "GET",
|
|
9362
|
+
path: "/inv-mast-text/{invMastTextUid}",
|
|
9363
|
+
chain: "invMastText",
|
|
9364
|
+
action: "get",
|
|
9365
|
+
aliases: [],
|
|
9366
|
+
pathParams: ["invMastTextUid"],
|
|
9367
|
+
queryParams: [],
|
|
9368
|
+
edgeCache: true,
|
|
9369
|
+
responseSchema: InvMastTextDataSchema,
|
|
9370
|
+
responseType: "object"
|
|
9371
|
+
},
|
|
9372
|
+
{
|
|
9373
|
+
method: "PUT",
|
|
9374
|
+
path: "/inv-mast-text/{invMastTextUid}",
|
|
9375
|
+
chain: "invMastText",
|
|
9376
|
+
action: "update",
|
|
9377
|
+
aliases: [],
|
|
9378
|
+
pathParams: ["invMastTextUid"],
|
|
9379
|
+
queryParams: [],
|
|
9380
|
+
edgeCache: false,
|
|
9381
|
+
responseSchema: InvMastTextDataSchema,
|
|
9382
|
+
responseType: "object"
|
|
9383
|
+
},
|
|
9384
|
+
{
|
|
9385
|
+
method: "DELETE",
|
|
9386
|
+
path: "/inv-mast-text/{invMastTextUid}",
|
|
9387
|
+
chain: "invMastText",
|
|
9388
|
+
action: "delete",
|
|
9389
|
+
aliases: [],
|
|
9390
|
+
pathParams: ["invMastTextUid"],
|
|
9391
|
+
queryParams: [],
|
|
9392
|
+
edgeCache: false,
|
|
9393
|
+
responseSchema: PassthroughDataSchema12,
|
|
9394
|
+
responseType: "passthrough"
|
|
9395
|
+
},
|
|
9100
9396
|
{
|
|
9101
9397
|
method: "GET",
|
|
9102
9398
|
path: "/items/{invMastUid}/suggest-display-desc",
|
|
@@ -9234,9 +9530,13 @@ var P21PimClient = class extends BaseServiceClient {
|
|
|
9234
9530
|
const proxy = createServiceProxy("p21-pim", boundExecuteRequest, endpoints12);
|
|
9235
9531
|
const dataProxy = createDataProxy(proxy);
|
|
9236
9532
|
this.invMastExt = proxy.invMastExt;
|
|
9533
|
+
this.invMastFiles = proxy.invMastFiles;
|
|
9534
|
+
this.invMastText = proxy.invMastText;
|
|
9237
9535
|
this.items = proxy.items;
|
|
9238
9536
|
this.podcasts = proxy.podcasts;
|
|
9239
9537
|
this.invMastExtData = dataProxy.invMastExt;
|
|
9538
|
+
this.invMastFilesData = dataProxy.invMastFiles;
|
|
9539
|
+
this.invMastTextData = dataProxy.invMastText;
|
|
9240
9540
|
this.itemsData = dataProxy.items;
|
|
9241
9541
|
this.podcastsData = dataProxy.podcasts;
|
|
9242
9542
|
this.healthCheck = createHealthCheckResource12(boundExecuteRequest);
|
|
@@ -9264,6 +9564,62 @@ var MonerisPreAuthCompleteListParamsSchema = v20.looseObject({
|
|
|
9264
9564
|
testMode: v20.optional(v20.boolean()),
|
|
9265
9565
|
txnNumber: v20.string()
|
|
9266
9566
|
});
|
|
9567
|
+
var PaypalAuthorizationCaptureCreateParamsSchema = v20.looseObject({
|
|
9568
|
+
amount: v20.optional(v20.pipe(v20.unknown(), v20.transform(Number))),
|
|
9569
|
+
authorizationId: v20.string(),
|
|
9570
|
+
finalCapture: v20.optional(v20.boolean()),
|
|
9571
|
+
invoiceId: v20.optional(v20.string()),
|
|
9572
|
+
testMode: v20.optional(v20.boolean())
|
|
9573
|
+
});
|
|
9574
|
+
var PaypalAuthorizationVoidCreateParamsSchema = v20.looseObject({
|
|
9575
|
+
authorizationId: v20.string(),
|
|
9576
|
+
testMode: v20.optional(v20.boolean())
|
|
9577
|
+
});
|
|
9578
|
+
var PaypalCaptureRefundCreateParamsSchema = v20.looseObject({
|
|
9579
|
+
amount: v20.optional(v20.pipe(v20.unknown(), v20.transform(Number))),
|
|
9580
|
+
captureId: v20.string(),
|
|
9581
|
+
invoiceId: v20.optional(v20.string()),
|
|
9582
|
+
noteToPayer: v20.optional(v20.string()),
|
|
9583
|
+
testMode: v20.optional(v20.boolean())
|
|
9584
|
+
});
|
|
9585
|
+
var PaypalOrderCreateParamsSchema = v20.looseObject({
|
|
9586
|
+
amount: v20.pipe(v20.unknown(), v20.transform(Number)),
|
|
9587
|
+
cancelUrl: v20.optional(v20.string()),
|
|
9588
|
+
currencyCode: v20.optional(v20.string()),
|
|
9589
|
+
intent: v20.string(),
|
|
9590
|
+
invoiceId: v20.optional(v20.string()),
|
|
9591
|
+
returnUrl: v20.optional(v20.string()),
|
|
9592
|
+
testMode: v20.optional(v20.boolean())
|
|
9593
|
+
});
|
|
9594
|
+
var PaypalOrderReturnListParamsSchema = v20.looseObject({
|
|
9595
|
+
...EdgeCacheParamsSchema.entries,
|
|
9596
|
+
payerId: v20.optional(v20.string()),
|
|
9597
|
+
siteId: v20.string(),
|
|
9598
|
+
testMode: v20.optional(v20.boolean()),
|
|
9599
|
+
token: v20.string()
|
|
9600
|
+
});
|
|
9601
|
+
var PaypalOrderAuthorizeCreateParamsSchema = v20.looseObject({
|
|
9602
|
+
orderId: v20.string(),
|
|
9603
|
+
testMode: v20.optional(v20.boolean())
|
|
9604
|
+
});
|
|
9605
|
+
var PaypalOrderCaptureCreateParamsSchema = v20.looseObject({
|
|
9606
|
+
orderId: v20.string(),
|
|
9607
|
+
testMode: v20.optional(v20.boolean())
|
|
9608
|
+
});
|
|
9609
|
+
var PaypalOrderDetailsListParamsSchema = v20.looseObject({
|
|
9610
|
+
...EdgeCacheParamsSchema.entries,
|
|
9611
|
+
orderId: v20.string(),
|
|
9612
|
+
testMode: v20.optional(v20.boolean())
|
|
9613
|
+
});
|
|
9614
|
+
var PaypalRefundListParamsSchema = v20.looseObject({
|
|
9615
|
+
...EdgeCacheParamsSchema.entries,
|
|
9616
|
+
refundId: v20.string(),
|
|
9617
|
+
testMode: v20.optional(v20.boolean())
|
|
9618
|
+
});
|
|
9619
|
+
var PaypalWebhookCreateParamsSchema = v20.looseObject({
|
|
9620
|
+
siteId: v20.string(),
|
|
9621
|
+
testMode: v20.optional(v20.boolean())
|
|
9622
|
+
});
|
|
9267
9623
|
var PaytraceAuthorizationCreateParamsSchema = v20.looseObject({
|
|
9268
9624
|
amount: v20.pipe(v20.unknown(), v20.transform(Number)),
|
|
9269
9625
|
billingAddress: v20.optional(v20.string()),
|
|
@@ -9380,6 +9736,134 @@ var endpoints13 = [
|
|
|
9380
9736
|
responseSchema: PassthroughDataSchema13,
|
|
9381
9737
|
responseType: "passthrough"
|
|
9382
9738
|
},
|
|
9739
|
+
{
|
|
9740
|
+
method: "POST",
|
|
9741
|
+
path: "/paypal/authorization/capture",
|
|
9742
|
+
chain: "paypal.authorization.capture",
|
|
9743
|
+
action: "create",
|
|
9744
|
+
aliases: [],
|
|
9745
|
+
pathParams: [],
|
|
9746
|
+
queryParams: ["amount", "authorizationId", "finalCapture", "invoiceId", "testMode"],
|
|
9747
|
+
edgeCache: false,
|
|
9748
|
+
responseSchema: PassthroughDataSchema13,
|
|
9749
|
+
responseType: "passthrough"
|
|
9750
|
+
},
|
|
9751
|
+
{
|
|
9752
|
+
method: "POST",
|
|
9753
|
+
path: "/paypal/authorization/void",
|
|
9754
|
+
chain: "paypal.authorization.void",
|
|
9755
|
+
action: "create",
|
|
9756
|
+
aliases: [],
|
|
9757
|
+
pathParams: [],
|
|
9758
|
+
queryParams: ["authorizationId", "testMode"],
|
|
9759
|
+
edgeCache: false,
|
|
9760
|
+
responseSchema: PassthroughDataSchema13,
|
|
9761
|
+
responseType: "passthrough"
|
|
9762
|
+
},
|
|
9763
|
+
{
|
|
9764
|
+
method: "POST",
|
|
9765
|
+
path: "/paypal/capture/refund",
|
|
9766
|
+
chain: "paypal.capture.refund",
|
|
9767
|
+
action: "create",
|
|
9768
|
+
aliases: [],
|
|
9769
|
+
pathParams: [],
|
|
9770
|
+
queryParams: ["amount", "captureId", "invoiceId", "noteToPayer", "testMode"],
|
|
9771
|
+
edgeCache: false,
|
|
9772
|
+
responseSchema: PassthroughDataSchema13,
|
|
9773
|
+
responseType: "passthrough"
|
|
9774
|
+
},
|
|
9775
|
+
{
|
|
9776
|
+
method: "POST",
|
|
9777
|
+
path: "/paypal/order",
|
|
9778
|
+
chain: "paypal.order",
|
|
9779
|
+
action: "create",
|
|
9780
|
+
aliases: [],
|
|
9781
|
+
pathParams: [],
|
|
9782
|
+
queryParams: [
|
|
9783
|
+
"amount",
|
|
9784
|
+
"cancelUrl",
|
|
9785
|
+
"currencyCode",
|
|
9786
|
+
"intent",
|
|
9787
|
+
"invoiceId",
|
|
9788
|
+
"returnUrl",
|
|
9789
|
+
"testMode"
|
|
9790
|
+
],
|
|
9791
|
+
edgeCache: false,
|
|
9792
|
+
responseSchema: PassthroughDataSchema13,
|
|
9793
|
+
responseType: "passthrough"
|
|
9794
|
+
},
|
|
9795
|
+
{
|
|
9796
|
+
method: "GET",
|
|
9797
|
+
path: "/paypal/order-return",
|
|
9798
|
+
chain: "paypal.orderReturn",
|
|
9799
|
+
action: "list",
|
|
9800
|
+
aliases: [],
|
|
9801
|
+
pathParams: [],
|
|
9802
|
+
queryParams: ["payerId", "siteId", "testMode", "token"],
|
|
9803
|
+
edgeCache: true,
|
|
9804
|
+
responseSchema: PassthroughDataSchema13,
|
|
9805
|
+
responseType: "passthrough"
|
|
9806
|
+
},
|
|
9807
|
+
{
|
|
9808
|
+
method: "POST",
|
|
9809
|
+
path: "/paypal/order/authorize",
|
|
9810
|
+
chain: "paypal.order.authorize",
|
|
9811
|
+
action: "create",
|
|
9812
|
+
aliases: [],
|
|
9813
|
+
pathParams: [],
|
|
9814
|
+
queryParams: ["orderId", "testMode"],
|
|
9815
|
+
edgeCache: false,
|
|
9816
|
+
responseSchema: PassthroughDataSchema13,
|
|
9817
|
+
responseType: "passthrough"
|
|
9818
|
+
},
|
|
9819
|
+
{
|
|
9820
|
+
method: "POST",
|
|
9821
|
+
path: "/paypal/order/capture",
|
|
9822
|
+
chain: "paypal.order.capture",
|
|
9823
|
+
action: "create",
|
|
9824
|
+
aliases: [],
|
|
9825
|
+
pathParams: [],
|
|
9826
|
+
queryParams: ["orderId", "testMode"],
|
|
9827
|
+
edgeCache: false,
|
|
9828
|
+
responseSchema: PassthroughDataSchema13,
|
|
9829
|
+
responseType: "passthrough"
|
|
9830
|
+
},
|
|
9831
|
+
{
|
|
9832
|
+
method: "GET",
|
|
9833
|
+
path: "/paypal/order/details",
|
|
9834
|
+
chain: "paypal.order.details",
|
|
9835
|
+
action: "list",
|
|
9836
|
+
aliases: [],
|
|
9837
|
+
pathParams: [],
|
|
9838
|
+
queryParams: ["orderId", "testMode"],
|
|
9839
|
+
edgeCache: true,
|
|
9840
|
+
responseSchema: PassthroughDataSchema13,
|
|
9841
|
+
responseType: "passthrough"
|
|
9842
|
+
},
|
|
9843
|
+
{
|
|
9844
|
+
method: "GET",
|
|
9845
|
+
path: "/paypal/refund",
|
|
9846
|
+
chain: "paypal.refund",
|
|
9847
|
+
action: "list",
|
|
9848
|
+
aliases: [],
|
|
9849
|
+
pathParams: [],
|
|
9850
|
+
queryParams: ["refundId", "testMode"],
|
|
9851
|
+
edgeCache: true,
|
|
9852
|
+
responseSchema: PassthroughDataSchema13,
|
|
9853
|
+
responseType: "passthrough"
|
|
9854
|
+
},
|
|
9855
|
+
{
|
|
9856
|
+
method: "POST",
|
|
9857
|
+
path: "/paypal/webhook",
|
|
9858
|
+
chain: "paypal.webhook",
|
|
9859
|
+
action: "create",
|
|
9860
|
+
aliases: [],
|
|
9861
|
+
pathParams: [],
|
|
9862
|
+
queryParams: ["siteId", "testMode"],
|
|
9863
|
+
edgeCache: false,
|
|
9864
|
+
responseSchema: PassthroughDataSchema13,
|
|
9865
|
+
responseType: "passthrough"
|
|
9866
|
+
},
|
|
9383
9867
|
{
|
|
9384
9868
|
method: "POST",
|
|
9385
9869
|
path: "/paytrace/authorization",
|
|
@@ -9612,10 +10096,12 @@ var PaymentsClient = class extends BaseServiceClient {
|
|
|
9612
10096
|
const dataProxy = createDataProxy(proxy);
|
|
9613
10097
|
this.element = proxy.element;
|
|
9614
10098
|
this.moneris = proxy.moneris;
|
|
10099
|
+
this.paypal = proxy.paypal;
|
|
9615
10100
|
this.paytrace = proxy.paytrace;
|
|
9616
10101
|
this.unified = proxy.unified;
|
|
9617
10102
|
this.elementData = dataProxy.element;
|
|
9618
10103
|
this.monerisData = dataProxy.moneris;
|
|
10104
|
+
this.paypalData = dataProxy.paypal;
|
|
9619
10105
|
this.paytraceData = dataProxy.paytrace;
|
|
9620
10106
|
this.unifiedData = dataProxy.unified;
|
|
9621
10107
|
this.healthCheck = createHealthCheckResource13(boundExecuteRequest);
|
|
@@ -9624,7 +10110,7 @@ var PaymentsClient = class extends BaseServiceClient {
|
|
|
9624
10110
|
this.pingData = createPingDataResource7(this.ping);
|
|
9625
10111
|
}
|
|
9626
10112
|
getServiceDescription() {
|
|
9627
|
-
return "Unified payment processing gateway supporting Moneris, PayTrace, and Element card transactions";
|
|
10113
|
+
return "Unified payment processing gateway supporting Moneris, PayTrace, and Element card transactions and PayPal orders";
|
|
9628
10114
|
}
|
|
9629
10115
|
};
|
|
9630
10116
|
|
|
@@ -11312,6 +11798,19 @@ var RtsTracksListParamsSchema = v26.looseObject({
|
|
|
11312
11798
|
search: v26.optional(v26.string()),
|
|
11313
11799
|
trackClass: v26.optional(v26.string())
|
|
11314
11800
|
});
|
|
11801
|
+
var ShippingMethodsListParamsSchema = v26.looseObject({
|
|
11802
|
+
...EdgeCacheParamsSchema.entries,
|
|
11803
|
+
limit: v26.optional(v26.pipe(v26.unknown(), v26.transform(Number))),
|
|
11804
|
+
offset: v26.optional(v26.pipe(v26.unknown(), v26.transform(Number))),
|
|
11805
|
+
orderBy: v26.optional(v26.string()),
|
|
11806
|
+
shippingMethodsId: v26.optional(v26.pipe(v26.unknown(), v26.transform(Number))),
|
|
11807
|
+
shippingType: v26.optional(v26.string()),
|
|
11808
|
+
statusCd: v26.optional(v26.pipe(v26.unknown(), v26.transform(Number)))
|
|
11809
|
+
});
|
|
11810
|
+
var ShippingMethodsGetParamsSchema = v26.looseObject({
|
|
11811
|
+
...EdgeCacheParamsSchema.entries,
|
|
11812
|
+
shippingMethodsId: v26.optional(v26.pipe(v26.unknown(), v26.transform(Number)))
|
|
11813
|
+
});
|
|
11315
11814
|
var ShipviaRatesListParamsSchema = v26.looseObject({
|
|
11316
11815
|
...EdgeCacheParamsSchema.entries,
|
|
11317
11816
|
carriers: v26.optional(v26.string()),
|
|
@@ -11375,6 +11874,7 @@ var SpeedshipFreightListParamsSchema = v26.looseObject({
|
|
|
11375
11874
|
handlingCharge: v26.optional(v26.pipe(v26.unknown(), v26.transform(Number))),
|
|
11376
11875
|
handlingChargeUnit: v26.optional(v26.string()),
|
|
11377
11876
|
international: v26.optional(v26.boolean()),
|
|
11877
|
+
maxPalletWeight: v26.optional(v26.pipe(v26.unknown(), v26.transform(Number))),
|
|
11378
11878
|
packageHeight: v26.optional(v26.pipe(v26.unknown(), v26.transform(Number))),
|
|
11379
11879
|
packageLength: v26.pipe(v26.unknown(), v26.transform(Number)),
|
|
11380
11880
|
packageWidth: v26.pipe(v26.unknown(), v26.transform(Number)),
|
|
@@ -11401,6 +11901,7 @@ var UPSRatesListParamsSchema = v26.looseObject({
|
|
|
11401
11901
|
fromCountryCode: v26.optional(v26.string()),
|
|
11402
11902
|
fromPostalCode: v26.string(),
|
|
11403
11903
|
fromStateProvinceCode: v26.string(),
|
|
11904
|
+
maxPackageWeight: v26.optional(v26.pipe(v26.unknown(), v26.transform(Number))),
|
|
11404
11905
|
toAddress1: v26.string(),
|
|
11405
11906
|
toCity: v26.string(),
|
|
11406
11907
|
toCountryCode: v26.optional(v26.string()),
|
|
@@ -11509,6 +12010,54 @@ var endpoints19 = [
|
|
|
11509
12010
|
responseSchema: PassthroughDataSchema19,
|
|
11510
12011
|
responseType: "passthrough"
|
|
11511
12012
|
},
|
|
12013
|
+
{
|
|
12014
|
+
method: "GET",
|
|
12015
|
+
path: "/shipping-methods",
|
|
12016
|
+
chain: "shippingMethods",
|
|
12017
|
+
action: "list",
|
|
12018
|
+
aliases: [],
|
|
12019
|
+
pathParams: [],
|
|
12020
|
+
queryParams: ["limit", "offset", "orderBy", "shippingMethodsId", "shippingType", "statusCd"],
|
|
12021
|
+
edgeCache: true,
|
|
12022
|
+
responseSchema: PassthroughDataSchema19,
|
|
12023
|
+
responseType: "passthrough"
|
|
12024
|
+
},
|
|
12025
|
+
{
|
|
12026
|
+
method: "GET",
|
|
12027
|
+
path: "/shipping-methods/{shippingMethodsUid}",
|
|
12028
|
+
chain: "shippingMethods",
|
|
12029
|
+
action: "get",
|
|
12030
|
+
aliases: [],
|
|
12031
|
+
pathParams: ["shippingMethodsUid"],
|
|
12032
|
+
queryParams: ["shippingMethodsId"],
|
|
12033
|
+
edgeCache: true,
|
|
12034
|
+
responseSchema: PassthroughDataSchema19,
|
|
12035
|
+
responseType: "passthrough"
|
|
12036
|
+
},
|
|
12037
|
+
{
|
|
12038
|
+
method: "PUT",
|
|
12039
|
+
path: "/shipping-methods/{shippingMethodsUid}",
|
|
12040
|
+
chain: "shippingMethods",
|
|
12041
|
+
action: "update",
|
|
12042
|
+
aliases: [],
|
|
12043
|
+
pathParams: ["shippingMethodsUid"],
|
|
12044
|
+
queryParams: [],
|
|
12045
|
+
edgeCache: false,
|
|
12046
|
+
responseSchema: PassthroughDataSchema19,
|
|
12047
|
+
responseType: "passthrough"
|
|
12048
|
+
},
|
|
12049
|
+
{
|
|
12050
|
+
method: "DELETE",
|
|
12051
|
+
path: "/shipping-methods/{shippingMethodsUid}",
|
|
12052
|
+
chain: "shippingMethods",
|
|
12053
|
+
action: "delete",
|
|
12054
|
+
aliases: [],
|
|
12055
|
+
pathParams: ["shippingMethodsUid"],
|
|
12056
|
+
queryParams: [],
|
|
12057
|
+
edgeCache: false,
|
|
12058
|
+
responseSchema: PassthroughDataSchema19,
|
|
12059
|
+
responseType: "passthrough"
|
|
12060
|
+
},
|
|
11512
12061
|
{
|
|
11513
12062
|
method: "GET",
|
|
11514
12063
|
path: "/shipvia/rates",
|
|
@@ -11598,6 +12147,7 @@ var endpoints19 = [
|
|
|
11598
12147
|
"handlingCharge",
|
|
11599
12148
|
"handlingChargeUnit",
|
|
11600
12149
|
"international",
|
|
12150
|
+
"maxPalletWeight",
|
|
11601
12151
|
"packageHeight",
|
|
11602
12152
|
"packageLength",
|
|
11603
12153
|
"packageWidth",
|
|
@@ -11634,6 +12184,7 @@ var endpoints19 = [
|
|
|
11634
12184
|
"fromCountryCode",
|
|
11635
12185
|
"fromPostalCode",
|
|
11636
12186
|
"fromStateProvinceCode",
|
|
12187
|
+
"maxPackageWeight",
|
|
11637
12188
|
"toAddress1",
|
|
11638
12189
|
"toCity",
|
|
11639
12190
|
"toCountryCode",
|
|
@@ -11790,11 +12341,13 @@ var LogisticsClient = class extends BaseServiceClient {
|
|
|
11790
12341
|
const dataProxy = createDataProxy(proxy);
|
|
11791
12342
|
this.fedex = proxy.fedex;
|
|
11792
12343
|
this.rts = proxy.rts;
|
|
12344
|
+
this.shippingMethods = proxy.shippingMethods;
|
|
11793
12345
|
this.shipvia = proxy.shipvia;
|
|
11794
12346
|
this.speedship = proxy.speedship;
|
|
11795
12347
|
this.ups = proxy.ups;
|
|
11796
12348
|
this.fedexData = dataProxy.fedex;
|
|
11797
12349
|
this.rtsData = dataProxy.rts;
|
|
12350
|
+
this.shippingMethodsData = dataProxy.shippingMethods;
|
|
11798
12351
|
this.shipviaData = dataProxy.shipvia;
|
|
11799
12352
|
this.speedshipData = dataProxy.speedship;
|
|
11800
12353
|
this.upsData = dataProxy.ups;
|
|
@@ -12251,6 +12804,19 @@ var CompanyGetParamsSchema = v28.looseObject({
|
|
|
12251
12804
|
...EdgeCacheParamsSchema.entries,
|
|
12252
12805
|
companyId: v28.optional(v28.string())
|
|
12253
12806
|
});
|
|
12807
|
+
var FreightCodeListParamsSchema = v28.looseObject({
|
|
12808
|
+
...EdgeCacheParamsSchema.entries,
|
|
12809
|
+
companyId: v28.optional(v28.string()),
|
|
12810
|
+
freightCodeId: v28.optional(v28.string()),
|
|
12811
|
+
limit: v28.optional(v28.pipe(v28.unknown(), v28.transform(Number))),
|
|
12812
|
+
offset: v28.optional(v28.pipe(v28.unknown(), v28.transform(Number))),
|
|
12813
|
+
orderBy: v28.optional(v28.string()),
|
|
12814
|
+
statusCd: v28.optional(v28.pipe(v28.unknown(), v28.transform(Number)))
|
|
12815
|
+
});
|
|
12816
|
+
var FreightCodeGetParamsSchema = v28.looseObject({
|
|
12817
|
+
...EdgeCacheParamsSchema.entries,
|
|
12818
|
+
freightCodeId: v28.optional(v28.string())
|
|
12819
|
+
});
|
|
12254
12820
|
var LocationListParamsSchema = v28.looseObject({
|
|
12255
12821
|
...EdgeCacheParamsSchema.entries,
|
|
12256
12822
|
deleteFlag: v28.optional(v28.string()),
|
|
@@ -12322,6 +12888,48 @@ var CompanyDataSchema = v28.looseObject({
|
|
|
12322
12888
|
defaultSourcePriceCd: v28.optional(v28.nullable(v28.number())),
|
|
12323
12889
|
defaultMultiplier: v28.optional(v28.nullable(v28.number()))
|
|
12324
12890
|
});
|
|
12891
|
+
var FreightCodeDataSchema = v28.looseObject({
|
|
12892
|
+
freightCodeUid: v28.optional(v28.number()),
|
|
12893
|
+
companyId: v28.optional(v28.string()),
|
|
12894
|
+
freightCd: v28.optional(v28.string()),
|
|
12895
|
+
freightDesc: v28.optional(v28.string()),
|
|
12896
|
+
incomingFreight: v28.optional(v28.string()),
|
|
12897
|
+
outgoingFreight: v28.optional(v28.string()),
|
|
12898
|
+
incomingReduceCommission: v28.optional(v28.string()),
|
|
12899
|
+
outgoingIncreaseCommission: v28.optional(v28.string()),
|
|
12900
|
+
prorateMethodCodeNo: v28.optional(v28.number()),
|
|
12901
|
+
taxGroupId: v28.optional(v28.nullable(v28.string())),
|
|
12902
|
+
revenueAccountNo: v28.optional(v28.string()),
|
|
12903
|
+
rowStatus: v28.optional(v28.number()),
|
|
12904
|
+
dateCreated: v28.optional(v28.nullable(v28.string())),
|
|
12905
|
+
dateLastModified: v28.optional(v28.nullable(v28.string())),
|
|
12906
|
+
lastMaintainedBy: v28.optional(v28.string()),
|
|
12907
|
+
freeFreightBasisCd: v28.optional(v28.nullable(v28.number())),
|
|
12908
|
+
freeInFreightMin: v28.optional(v28.nullable(v28.number())),
|
|
12909
|
+
freeOutFreightMin: v28.optional(v28.nullable(v28.number())),
|
|
12910
|
+
directShipFreeFreightFlag: v28.optional(v28.nullable(v28.string())),
|
|
12911
|
+
freeInFreightMinWeb: v28.optional(v28.nullable(v28.number())),
|
|
12912
|
+
freeOutFreightMinWeb: v28.optional(v28.nullable(v28.number())),
|
|
12913
|
+
handlingChargeOptionCd: v28.optional(v28.nullable(v28.number())),
|
|
12914
|
+
externalTaxProductCodeIn: v28.optional(v28.nullable(v28.string())),
|
|
12915
|
+
externalTaxProductCodeOut: v28.optional(v28.nullable(v28.string())),
|
|
12916
|
+
incomingIncreaseCommission: v28.optional(v28.nullable(v28.string())),
|
|
12917
|
+
paySpecialFlag: v28.optional(v28.nullable(v28.string())),
|
|
12918
|
+
skipFirstShipmentFlag: v28.optional(v28.nullable(v28.string())),
|
|
12919
|
+
excludeFromSalesMasterInquiry: v28.optional(v28.string()),
|
|
12920
|
+
deductibleFlag: v28.optional(v28.nullable(v28.string())),
|
|
12921
|
+
freeColdFreight: v28.optional(v28.string()),
|
|
12922
|
+
freeHazmatFreight: v28.optional(v28.string()),
|
|
12923
|
+
freeExpressFreight: v28.optional(v28.string()),
|
|
12924
|
+
freeBulkFreight: v28.optional(v28.string()),
|
|
12925
|
+
fedexPaymentMethod: v28.optional(v28.nullable(v28.number())),
|
|
12926
|
+
excludeDiscountedFreight: v28.optional(v28.string()),
|
|
12927
|
+
freeFreightDefaultFlag: v28.optional(v28.nullable(v28.string())),
|
|
12928
|
+
outgoingAdjustCommissionByProfitFlag: v28.optional(v28.nullable(v28.string())),
|
|
12929
|
+
updateCd: v28.optional(v28.number()),
|
|
12930
|
+
statusCd: v28.optional(v28.number()),
|
|
12931
|
+
processCd: v28.optional(v28.number())
|
|
12932
|
+
});
|
|
12325
12933
|
var LocationDataSchema = v28.looseObject({
|
|
12326
12934
|
locationId: v28.optional(v28.number()),
|
|
12327
12935
|
companyId: v28.optional(v28.string()),
|
|
@@ -12499,6 +13107,30 @@ var endpoints21 = [
|
|
|
12499
13107
|
responseSchema: CompanyDataSchema,
|
|
12500
13108
|
responseType: "object"
|
|
12501
13109
|
},
|
|
13110
|
+
{
|
|
13111
|
+
method: "GET",
|
|
13112
|
+
path: "/freight-code",
|
|
13113
|
+
chain: "freightCode",
|
|
13114
|
+
action: "list",
|
|
13115
|
+
aliases: [],
|
|
13116
|
+
pathParams: [],
|
|
13117
|
+
queryParams: ["companyId", "freightCodeId", "limit", "offset", "orderBy", "statusCd"],
|
|
13118
|
+
edgeCache: true,
|
|
13119
|
+
responseSchema: FreightCodeDataSchema,
|
|
13120
|
+
responseType: "array"
|
|
13121
|
+
},
|
|
13122
|
+
{
|
|
13123
|
+
method: "GET",
|
|
13124
|
+
path: "/freight-code/{freightCodeUid}",
|
|
13125
|
+
chain: "freightCode",
|
|
13126
|
+
action: "get",
|
|
13127
|
+
aliases: [],
|
|
13128
|
+
pathParams: ["freightCodeUid"],
|
|
13129
|
+
queryParams: ["freightCodeId"],
|
|
13130
|
+
edgeCache: true,
|
|
13131
|
+
responseSchema: FreightCodeDataSchema,
|
|
13132
|
+
responseType: "object"
|
|
13133
|
+
},
|
|
12502
13134
|
{
|
|
12503
13135
|
method: "GET",
|
|
12504
13136
|
path: "/location",
|
|
@@ -12608,12 +13240,14 @@ var P21CoreClient = class extends BaseServiceClient {
|
|
|
12608
13240
|
this.cashDrawer = proxy.cashDrawer;
|
|
12609
13241
|
this.codeP21 = proxy.codeP21;
|
|
12610
13242
|
this.company = proxy.company;
|
|
13243
|
+
this.freightCode = proxy.freightCode;
|
|
12611
13244
|
this.location = proxy.location;
|
|
12612
13245
|
this.paymentTypes = proxy.paymentTypes;
|
|
12613
13246
|
this.addressData = dataProxy.address;
|
|
12614
13247
|
this.cashDrawerData = dataProxy.cashDrawer;
|
|
12615
13248
|
this.codeP21Data = dataProxy.codeP21;
|
|
12616
13249
|
this.companyData = dataProxy.company;
|
|
13250
|
+
this.freightCodeData = dataProxy.freightCode;
|
|
12617
13251
|
this.locationData = dataProxy.location;
|
|
12618
13252
|
this.paymentTypesData = dataProxy.paymentTypes;
|
|
12619
13253
|
this.healthCheck = createHealthCheckResource21(boundExecuteRequest);
|
|
@@ -15271,7 +15905,7 @@ function createCrossSiteAuthenticator(augurInfoToken) {
|
|
|
15271
15905
|
}
|
|
15272
15906
|
|
|
15273
15907
|
// src/index.ts
|
|
15274
|
-
var VERSION = "2026.
|
|
15908
|
+
var VERSION = "2026.8.1";
|
|
15275
15909
|
export {
|
|
15276
15910
|
AgrInfoClient,
|
|
15277
15911
|
AgrIntClient,
|