@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/dist/index.js CHANGED
@@ -4448,6 +4448,29 @@ var AttributeGroupsAttributesDataSchema = v11.looseObject({
4448
4448
  statusCd: v11.optional(v11.number())
4449
4449
  });
4450
4450
  var AttributesDataSchema = v11.looseObject({
4451
+ attributeUid: v11.optional(v11.number()),
4452
+ attributeDesc: v11.optional(v11.nullable(v11.string())),
4453
+ extendedDesc: v11.optional(v11.nullable(v11.string())),
4454
+ attributeId: v11.optional(v11.string()),
4455
+ dataType: v11.optional(v11.number()),
4456
+ maxLength: v11.optional(v11.number()),
4457
+ noOfDecimal: v11.optional(v11.nullable(v11.number())),
4458
+ rowStatusFlag: v11.optional(v11.number()),
4459
+ validationRequiredFlag: v11.optional(v11.string()),
4460
+ dateCreated: v11.optional(v11.string()),
4461
+ createdBy: v11.optional(v11.string()),
4462
+ dateLastModified: v11.optional(v11.string()),
4463
+ lastMaintainedBy: v11.optional(v11.string()),
4464
+ cfdiAttributeType: v11.optional(v11.nullable(v11.number())),
4465
+ updateCd: v11.optional(v11.number()),
4466
+ processCd: v11.optional(v11.number()),
4467
+ statusCd: v11.optional(v11.number()),
4468
+ typeCd: v11.optional(v11.number()),
4469
+ activeValueCount: v11.optional(v11.number()),
4470
+ inactiveValueCount: v11.optional(v11.number()),
4471
+ deletedValueCount: v11.optional(v11.number())
4472
+ });
4473
+ var AttributesData2Schema = v11.looseObject({
4451
4474
  attributeUid: v11.optional(v11.number()),
4452
4475
  attributeDesc: v11.optional(v11.nullable(v11.string())),
4453
4476
  extendedDesc: v11.optional(v11.nullable(v11.string())),
@@ -4483,7 +4506,8 @@ var AttributesItemsDataSchema = v11.looseObject({
4483
4506
  onlineCd: v11.optional(v11.number()),
4484
4507
  attributeDesc: v11.optional(v11.nullable(v11.string())),
4485
4508
  attributeId: v11.optional(v11.string()),
4486
- itemId: v11.optional(v11.string())
4509
+ itemId: v11.optional(v11.string()),
4510
+ itemDesc: v11.optional(v11.nullable(v11.string()))
4487
4511
  });
4488
4512
  var AttributesValuesDataSchema = v11.looseObject({
4489
4513
  attributeValueUid: v11.optional(v11.number()),
@@ -4787,7 +4811,7 @@ var endpoints6 = [
4787
4811
  pathParams: [],
4788
4812
  queryParams: [],
4789
4813
  edgeCache: false,
4790
- responseSchema: AttributesDataSchema,
4814
+ responseSchema: AttributesData2Schema,
4791
4815
  responseType: "object"
4792
4816
  },
4793
4817
  {
@@ -4811,7 +4835,7 @@ var endpoints6 = [
4811
4835
  pathParams: ["attributeUid"],
4812
4836
  queryParams: [],
4813
4837
  edgeCache: false,
4814
- responseSchema: AttributesDataSchema,
4838
+ responseSchema: AttributesData2Schema,
4815
4839
  responseType: "object"
4816
4840
  },
4817
4841
  {
@@ -8126,6 +8150,14 @@ var CustomerAddressesListParamsSchema = v17.looseObject({
8126
8150
  orderBy: v17.optional(v17.string()),
8127
8151
  statusCd: v17.optional(v17.pipe(v17.unknown(), v17.transform(Number)))
8128
8152
  });
8153
+ var CustomerAgingListParamsSchema = v17.looseObject({
8154
+ ...EdgeCacheParamsSchema.entries,
8155
+ asOf: v17.optional(v17.string()),
8156
+ limit: v17.optional(v17.pipe(v17.unknown(), v17.transform(Number))),
8157
+ offset: v17.optional(v17.pipe(v17.unknown(), v17.transform(Number))),
8158
+ orderBy: v17.optional(v17.string()),
8159
+ shipToId: v17.optional(v17.pipe(v17.unknown(), v17.transform(Number)))
8160
+ });
8129
8161
  var CustomerContactsListParamsSchema = v17.looseObject({
8130
8162
  ...EdgeCacheParamsSchema.entries,
8131
8163
  limit: v17.optional(v17.pipe(v17.unknown(), v17.transform(Number))),
@@ -8185,6 +8217,18 @@ var CustomerRmasListParamsSchema = v17.looseObject({
8185
8217
  offset: v17.optional(v17.pipe(v17.unknown(), v17.transform(Number))),
8186
8218
  orderBy: v17.optional(v17.string())
8187
8219
  });
8220
+ var CustomerSalesUsageListParamsSchema = v17.looseObject({
8221
+ ...EdgeCacheParamsSchema.entries,
8222
+ invoicedFrom: v17.optional(v17.string()),
8223
+ invoicedTo: v17.optional(v17.string()),
8224
+ limit: v17.optional(v17.pipe(v17.unknown(), v17.transform(Number))),
8225
+ offset: v17.optional(v17.pipe(v17.unknown(), v17.transform(Number))),
8226
+ orderBy: v17.optional(v17.string()),
8227
+ q: v17.optional(v17.string()),
8228
+ shipToId: v17.optional(v17.pipe(v17.unknown(), v17.transform(Number))),
8229
+ supplierId: v17.optional(v17.pipe(v17.unknown(), v17.transform(Number))),
8230
+ totalBy: v17.optional(v17.string())
8231
+ });
8188
8232
  var CustomerShipToListParamsSchema = v17.looseObject({
8189
8233
  ...EdgeCacheParamsSchema.entries,
8190
8234
  limit: v17.optional(v17.pipe(v17.unknown(), v17.transform(Number))),
@@ -8218,6 +8262,26 @@ var CustomerAddressesDataSchema = v17.looseObject({
8218
8262
  phoneNumberMain: v17.optional(v17.nullable(v17.string())),
8219
8263
  phoneNumberMobile: v17.optional(v17.nullable(v17.string()))
8220
8264
  });
8265
+ var CustomerAgingDataSchema = v17.looseObject({
8266
+ customerId: v17.optional(v17.string()),
8267
+ asOf: v17.optional(v17.string()),
8268
+ bucketKeys: v17.optional(v17.string()),
8269
+ invoiceCount: v17.optional(v17.number()),
8270
+ totalBalance: v17.optional(v17.number()),
8271
+ totals: v17.optional(v17.string()),
8272
+ data: v17.optional(v17.string())
8273
+ });
8274
+ var CustomerSalesUsageDataSchema = v17.looseObject({
8275
+ customerId: v17.optional(v17.string()),
8276
+ invoicedFrom: v17.optional(v17.string()),
8277
+ invoicedTo: v17.optional(v17.string()),
8278
+ totalBy: v17.optional(v17.string()),
8279
+ bucketKeys: v17.optional(v17.string()),
8280
+ invoiceCount: v17.optional(v17.number()),
8281
+ linesFolded: v17.optional(v17.number()),
8282
+ itemCount: v17.optional(v17.number()),
8283
+ data: v17.optional(v17.string())
8284
+ });
8221
8285
  var CustomerTagsDataSchema = v17.looseObject({
8222
8286
  customerTagsUid: v17.optional(v17.number()),
8223
8287
  customerId: v17.optional(v17.number()),
@@ -8388,6 +8452,18 @@ var endpoints10 = [
8388
8452
  responseSchema: CustomerAddressesDataSchema,
8389
8453
  responseType: "object"
8390
8454
  },
8455
+ {
8456
+ method: "GET",
8457
+ path: "/customer/{customerId}/aging",
8458
+ chain: "customer.aging",
8459
+ action: "list",
8460
+ aliases: [],
8461
+ pathParams: ["customerId"],
8462
+ queryParams: ["asOf", "limit", "offset", "orderBy", "shipToId"],
8463
+ edgeCache: true,
8464
+ responseSchema: CustomerAgingDataSchema,
8465
+ responseType: "object"
8466
+ },
8391
8467
  {
8392
8468
  method: "GET",
8393
8469
  path: "/customer/{customerId}/contacts",
@@ -8564,6 +8640,28 @@ var endpoints10 = [
8564
8640
  responseSchema: PassthroughDataSchema10,
8565
8641
  responseType: "passthrough"
8566
8642
  },
8643
+ {
8644
+ method: "GET",
8645
+ path: "/customer/{customerId}/sales-usage",
8646
+ chain: "customer.salesUsage",
8647
+ action: "list",
8648
+ aliases: [],
8649
+ pathParams: ["customerId"],
8650
+ queryParams: [
8651
+ "invoicedFrom",
8652
+ "invoicedTo",
8653
+ "limit",
8654
+ "offset",
8655
+ "orderBy",
8656
+ "q",
8657
+ "shipToId",
8658
+ "supplierId",
8659
+ "totalBy"
8660
+ ],
8661
+ edgeCache: true,
8662
+ responseSchema: CustomerSalesUsageDataSchema,
8663
+ responseType: "object"
8664
+ },
8567
8665
  {
8568
8666
  method: "GET",
8569
8667
  path: "/customer/{customerId}/ship-to",
@@ -8588,6 +8686,18 @@ var endpoints10 = [
8588
8686
  responseSchema: PassthroughDataSchema10,
8589
8687
  responseType: "passthrough"
8590
8688
  },
8689
+ {
8690
+ method: "GET",
8691
+ path: "/customer/{customerId}/ship-to/{shipToId}/freight-codes",
8692
+ chain: "customer.shipTo.freightCodes",
8693
+ action: "list",
8694
+ aliases: [],
8695
+ pathParams: ["customerId", "shipToId"],
8696
+ queryParams: [],
8697
+ edgeCache: true,
8698
+ responseSchema: PassthroughDataSchema10,
8699
+ responseType: "passthrough"
8700
+ },
8591
8701
  {
8592
8702
  method: "GET",
8593
8703
  path: "/customer/{customerId}/tags",
@@ -9081,6 +9191,23 @@ var InvMastExtListParamsSchema = v19.looseObject({
9081
9191
  q: v19.optional(v19.string()),
9082
9192
  statusCd: v19.optional(v19.pipe(v19.unknown(), v19.transform(Number)))
9083
9193
  });
9194
+ var InvMastFilesListParamsSchema = v19.looseObject({
9195
+ ...EdgeCacheParamsSchema.entries,
9196
+ invMastUid: v19.optional(v19.pipe(v19.unknown(), v19.transform(Number))),
9197
+ limit: v19.optional(v19.pipe(v19.unknown(), v19.transform(Number))),
9198
+ offset: v19.optional(v19.pipe(v19.unknown(), v19.transform(Number))),
9199
+ orderBy: v19.optional(v19.string()),
9200
+ statusCd: v19.optional(v19.pipe(v19.unknown(), v19.transform(Number)))
9201
+ });
9202
+ var InvMastTextListParamsSchema = v19.looseObject({
9203
+ ...EdgeCacheParamsSchema.entries,
9204
+ invMastUid: v19.optional(v19.pipe(v19.unknown(), v19.transform(Number))),
9205
+ limit: v19.optional(v19.pipe(v19.unknown(), v19.transform(Number))),
9206
+ offset: v19.optional(v19.pipe(v19.unknown(), v19.transform(Number))),
9207
+ orderBy: v19.optional(v19.string()),
9208
+ statusCd: v19.optional(v19.pipe(v19.unknown(), v19.transform(Number))),
9209
+ webDisplayTypeUid: v19.optional(v19.pipe(v19.unknown(), v19.transform(Number)))
9210
+ });
9084
9211
  var ItemsSuggestDisplayDescListParamsSchema = v19.looseObject({
9085
9212
  ...EdgeCacheParamsSchema.entries,
9086
9213
  limit: v19.optional(v19.pipe(v19.unknown(), v19.transform(Number))),
@@ -9099,6 +9226,55 @@ var PodcastsListParamsSchema = v19.looseObject({
9099
9226
  q: v19.optional(v19.string()),
9100
9227
  statusCd: v19.optional(v19.pipe(v19.unknown(), v19.transform(Number)))
9101
9228
  });
9229
+ var InvMastExtDataSchema = v19.looseObject({
9230
+ invMastExtUid: v19.optional(v19.number()),
9231
+ invMastUid: v19.optional(v19.number()),
9232
+ dateCreated: v19.optional(v19.string()),
9233
+ dateLastModified: v19.optional(v19.string()),
9234
+ updateCd: v19.optional(v19.number()),
9235
+ statusCd: v19.optional(v19.number()),
9236
+ processCd: v19.optional(v19.number()),
9237
+ upcOrEan: v19.optional(v19.nullable(v19.string())),
9238
+ upcOrEanId: v19.optional(v19.nullable(v19.string())),
9239
+ upcOrEanPrefix: v19.optional(v19.nullable(v19.string())),
9240
+ upcOrEanItem: v19.optional(v19.nullable(v19.string())),
9241
+ attributeGroupUid: v19.optional(v19.nullable(v19.number())),
9242
+ brandName: v19.optional(v19.nullable(v19.string())),
9243
+ manufacturerName: v19.optional(v19.nullable(v19.string())),
9244
+ partNumber: v19.optional(v19.nullable(v19.string())),
9245
+ metaTitle: v19.optional(v19.nullable(v19.string())),
9246
+ metaDescription: v19.optional(v19.nullable(v19.string())),
9247
+ metaKeywords: v19.optional(v19.nullable(v19.string()))
9248
+ });
9249
+ var InvMastFilesDataSchema = v19.looseObject({
9250
+ invMastFilesUid: v19.optional(v19.number()),
9251
+ invMastUid: v19.optional(v19.number()),
9252
+ fileName: v19.optional(v19.string()),
9253
+ filePath: v19.optional(v19.string()),
9254
+ linkArea: v19.optional(v19.number()),
9255
+ rowStatusFlag: v19.optional(v19.number()),
9256
+ sequenceNo: v19.optional(v19.number()),
9257
+ dateCreated: v19.optional(v19.string()),
9258
+ dateLastModified: v19.optional(v19.string()),
9259
+ updateCd: v19.optional(v19.number()),
9260
+ statusCd: v19.optional(v19.number()),
9261
+ processCd: v19.optional(v19.number()),
9262
+ fileDesc: v19.optional(v19.string())
9263
+ });
9264
+ var InvMastTextDataSchema = v19.looseObject({
9265
+ invMastTextUid: v19.optional(v19.number()),
9266
+ invMastUid: v19.optional(v19.number()),
9267
+ sequenceNo: v19.optional(v19.number()),
9268
+ textValue: v19.optional(v19.string()),
9269
+ displayOnWebFlag: v19.optional(v19.string()),
9270
+ webDisplayTypeUid: v19.optional(v19.number()),
9271
+ textTypeCd: v19.optional(v19.number()),
9272
+ dateCreated: v19.optional(v19.string()),
9273
+ dateLastModified: v19.optional(v19.string()),
9274
+ updateCd: v19.optional(v19.number()),
9275
+ statusCd: v19.optional(v19.number()),
9276
+ processCd: v19.optional(v19.number())
9277
+ });
9102
9278
  var PodcastsDataSchema = v19.looseObject({
9103
9279
  podcastsUid: v19.optional(v19.number()),
9104
9280
  title: v19.optional(v19.nullable(v19.string())),
@@ -9123,8 +9299,8 @@ var endpoints12 = [
9123
9299
  pathParams: [],
9124
9300
  queryParams: ["invMastUid", "limit", "offset", "orderBy", "q", "statusCd"],
9125
9301
  edgeCache: true,
9126
- responseSchema: PassthroughDataSchema12,
9127
- responseType: "passthrough"
9302
+ responseSchema: InvMastExtDataSchema,
9303
+ responseType: "array"
9128
9304
  },
9129
9305
  {
9130
9306
  method: "POST",
@@ -9135,8 +9311,8 @@ var endpoints12 = [
9135
9311
  pathParams: [],
9136
9312
  queryParams: [],
9137
9313
  edgeCache: false,
9138
- responseSchema: PassthroughDataSchema12,
9139
- responseType: "passthrough"
9314
+ responseSchema: InvMastExtDataSchema,
9315
+ responseType: "object"
9140
9316
  },
9141
9317
  {
9142
9318
  method: "GET",
@@ -9147,8 +9323,8 @@ var endpoints12 = [
9147
9323
  pathParams: ["invMastExtUid"],
9148
9324
  queryParams: [],
9149
9325
  edgeCache: true,
9150
- responseSchema: PassthroughDataSchema12,
9151
- responseType: "passthrough"
9326
+ responseSchema: InvMastExtDataSchema,
9327
+ responseType: "object"
9152
9328
  },
9153
9329
  {
9154
9330
  method: "PUT",
@@ -9159,8 +9335,8 @@ var endpoints12 = [
9159
9335
  pathParams: ["invMastExtUid"],
9160
9336
  queryParams: [],
9161
9337
  edgeCache: false,
9162
- responseSchema: PassthroughDataSchema12,
9163
- responseType: "passthrough"
9338
+ responseSchema: InvMastExtDataSchema,
9339
+ responseType: "object"
9164
9340
  },
9165
9341
  {
9166
9342
  method: "DELETE",
@@ -9174,6 +9350,126 @@ var endpoints12 = [
9174
9350
  responseSchema: PassthroughDataSchema12,
9175
9351
  responseType: "passthrough"
9176
9352
  },
9353
+ {
9354
+ method: "GET",
9355
+ path: "/inv-mast-files",
9356
+ chain: "invMastFiles",
9357
+ action: "list",
9358
+ aliases: [],
9359
+ pathParams: [],
9360
+ queryParams: ["invMastUid", "limit", "offset", "orderBy", "statusCd"],
9361
+ edgeCache: true,
9362
+ responseSchema: InvMastFilesDataSchema,
9363
+ responseType: "array"
9364
+ },
9365
+ {
9366
+ method: "POST",
9367
+ path: "/inv-mast-files",
9368
+ chain: "invMastFiles",
9369
+ action: "create",
9370
+ aliases: [],
9371
+ pathParams: [],
9372
+ queryParams: [],
9373
+ edgeCache: false,
9374
+ responseSchema: InvMastFilesDataSchema,
9375
+ responseType: "object"
9376
+ },
9377
+ {
9378
+ method: "GET",
9379
+ path: "/inv-mast-files/{invMastFilesUid}",
9380
+ chain: "invMastFiles",
9381
+ action: "get",
9382
+ aliases: [],
9383
+ pathParams: ["invMastFilesUid"],
9384
+ queryParams: [],
9385
+ edgeCache: true,
9386
+ responseSchema: InvMastFilesDataSchema,
9387
+ responseType: "object"
9388
+ },
9389
+ {
9390
+ method: "PUT",
9391
+ path: "/inv-mast-files/{invMastFilesUid}",
9392
+ chain: "invMastFiles",
9393
+ action: "update",
9394
+ aliases: [],
9395
+ pathParams: ["invMastFilesUid"],
9396
+ queryParams: [],
9397
+ edgeCache: false,
9398
+ responseSchema: InvMastFilesDataSchema,
9399
+ responseType: "object"
9400
+ },
9401
+ {
9402
+ method: "DELETE",
9403
+ path: "/inv-mast-files/{invMastFilesUid}",
9404
+ chain: "invMastFiles",
9405
+ action: "delete",
9406
+ aliases: [],
9407
+ pathParams: ["invMastFilesUid"],
9408
+ queryParams: [],
9409
+ edgeCache: false,
9410
+ responseSchema: PassthroughDataSchema12,
9411
+ responseType: "passthrough"
9412
+ },
9413
+ {
9414
+ method: "GET",
9415
+ path: "/inv-mast-text",
9416
+ chain: "invMastText",
9417
+ action: "list",
9418
+ aliases: [],
9419
+ pathParams: [],
9420
+ queryParams: ["invMastUid", "limit", "offset", "orderBy", "statusCd", "webDisplayTypeUid"],
9421
+ edgeCache: true,
9422
+ responseSchema: InvMastTextDataSchema,
9423
+ responseType: "array"
9424
+ },
9425
+ {
9426
+ method: "POST",
9427
+ path: "/inv-mast-text",
9428
+ chain: "invMastText",
9429
+ action: "create",
9430
+ aliases: [],
9431
+ pathParams: [],
9432
+ queryParams: [],
9433
+ edgeCache: false,
9434
+ responseSchema: InvMastTextDataSchema,
9435
+ responseType: "object"
9436
+ },
9437
+ {
9438
+ method: "GET",
9439
+ path: "/inv-mast-text/{invMastTextUid}",
9440
+ chain: "invMastText",
9441
+ action: "get",
9442
+ aliases: [],
9443
+ pathParams: ["invMastTextUid"],
9444
+ queryParams: [],
9445
+ edgeCache: true,
9446
+ responseSchema: InvMastTextDataSchema,
9447
+ responseType: "object"
9448
+ },
9449
+ {
9450
+ method: "PUT",
9451
+ path: "/inv-mast-text/{invMastTextUid}",
9452
+ chain: "invMastText",
9453
+ action: "update",
9454
+ aliases: [],
9455
+ pathParams: ["invMastTextUid"],
9456
+ queryParams: [],
9457
+ edgeCache: false,
9458
+ responseSchema: InvMastTextDataSchema,
9459
+ responseType: "object"
9460
+ },
9461
+ {
9462
+ method: "DELETE",
9463
+ path: "/inv-mast-text/{invMastTextUid}",
9464
+ chain: "invMastText",
9465
+ action: "delete",
9466
+ aliases: [],
9467
+ pathParams: ["invMastTextUid"],
9468
+ queryParams: [],
9469
+ edgeCache: false,
9470
+ responseSchema: PassthroughDataSchema12,
9471
+ responseType: "passthrough"
9472
+ },
9177
9473
  {
9178
9474
  method: "GET",
9179
9475
  path: "/items/{invMastUid}/suggest-display-desc",
@@ -9311,9 +9607,13 @@ var P21PimClient = class extends BaseServiceClient {
9311
9607
  const proxy = createServiceProxy("p21-pim", boundExecuteRequest, endpoints12);
9312
9608
  const dataProxy = createDataProxy(proxy);
9313
9609
  this.invMastExt = proxy.invMastExt;
9610
+ this.invMastFiles = proxy.invMastFiles;
9611
+ this.invMastText = proxy.invMastText;
9314
9612
  this.items = proxy.items;
9315
9613
  this.podcasts = proxy.podcasts;
9316
9614
  this.invMastExtData = dataProxy.invMastExt;
9615
+ this.invMastFilesData = dataProxy.invMastFiles;
9616
+ this.invMastTextData = dataProxy.invMastText;
9317
9617
  this.itemsData = dataProxy.items;
9318
9618
  this.podcastsData = dataProxy.podcasts;
9319
9619
  this.healthCheck = createHealthCheckResource12(boundExecuteRequest);
@@ -9341,6 +9641,62 @@ var MonerisPreAuthCompleteListParamsSchema = v20.looseObject({
9341
9641
  testMode: v20.optional(v20.boolean()),
9342
9642
  txnNumber: v20.string()
9343
9643
  });
9644
+ var PaypalAuthorizationCaptureCreateParamsSchema = v20.looseObject({
9645
+ amount: v20.optional(v20.pipe(v20.unknown(), v20.transform(Number))),
9646
+ authorizationId: v20.string(),
9647
+ finalCapture: v20.optional(v20.boolean()),
9648
+ invoiceId: v20.optional(v20.string()),
9649
+ testMode: v20.optional(v20.boolean())
9650
+ });
9651
+ var PaypalAuthorizationVoidCreateParamsSchema = v20.looseObject({
9652
+ authorizationId: v20.string(),
9653
+ testMode: v20.optional(v20.boolean())
9654
+ });
9655
+ var PaypalCaptureRefundCreateParamsSchema = v20.looseObject({
9656
+ amount: v20.optional(v20.pipe(v20.unknown(), v20.transform(Number))),
9657
+ captureId: v20.string(),
9658
+ invoiceId: v20.optional(v20.string()),
9659
+ noteToPayer: v20.optional(v20.string()),
9660
+ testMode: v20.optional(v20.boolean())
9661
+ });
9662
+ var PaypalOrderCreateParamsSchema = v20.looseObject({
9663
+ amount: v20.pipe(v20.unknown(), v20.transform(Number)),
9664
+ cancelUrl: v20.optional(v20.string()),
9665
+ currencyCode: v20.optional(v20.string()),
9666
+ intent: v20.string(),
9667
+ invoiceId: v20.optional(v20.string()),
9668
+ returnUrl: v20.optional(v20.string()),
9669
+ testMode: v20.optional(v20.boolean())
9670
+ });
9671
+ var PaypalOrderReturnListParamsSchema = v20.looseObject({
9672
+ ...EdgeCacheParamsSchema.entries,
9673
+ payerId: v20.optional(v20.string()),
9674
+ siteId: v20.string(),
9675
+ testMode: v20.optional(v20.boolean()),
9676
+ token: v20.string()
9677
+ });
9678
+ var PaypalOrderAuthorizeCreateParamsSchema = v20.looseObject({
9679
+ orderId: v20.string(),
9680
+ testMode: v20.optional(v20.boolean())
9681
+ });
9682
+ var PaypalOrderCaptureCreateParamsSchema = v20.looseObject({
9683
+ orderId: v20.string(),
9684
+ testMode: v20.optional(v20.boolean())
9685
+ });
9686
+ var PaypalOrderDetailsListParamsSchema = v20.looseObject({
9687
+ ...EdgeCacheParamsSchema.entries,
9688
+ orderId: v20.string(),
9689
+ testMode: v20.optional(v20.boolean())
9690
+ });
9691
+ var PaypalRefundListParamsSchema = v20.looseObject({
9692
+ ...EdgeCacheParamsSchema.entries,
9693
+ refundId: v20.string(),
9694
+ testMode: v20.optional(v20.boolean())
9695
+ });
9696
+ var PaypalWebhookCreateParamsSchema = v20.looseObject({
9697
+ siteId: v20.string(),
9698
+ testMode: v20.optional(v20.boolean())
9699
+ });
9344
9700
  var PaytraceAuthorizationCreateParamsSchema = v20.looseObject({
9345
9701
  amount: v20.pipe(v20.unknown(), v20.transform(Number)),
9346
9702
  billingAddress: v20.optional(v20.string()),
@@ -9457,6 +9813,134 @@ var endpoints13 = [
9457
9813
  responseSchema: PassthroughDataSchema13,
9458
9814
  responseType: "passthrough"
9459
9815
  },
9816
+ {
9817
+ method: "POST",
9818
+ path: "/paypal/authorization/capture",
9819
+ chain: "paypal.authorization.capture",
9820
+ action: "create",
9821
+ aliases: [],
9822
+ pathParams: [],
9823
+ queryParams: ["amount", "authorizationId", "finalCapture", "invoiceId", "testMode"],
9824
+ edgeCache: false,
9825
+ responseSchema: PassthroughDataSchema13,
9826
+ responseType: "passthrough"
9827
+ },
9828
+ {
9829
+ method: "POST",
9830
+ path: "/paypal/authorization/void",
9831
+ chain: "paypal.authorization.void",
9832
+ action: "create",
9833
+ aliases: [],
9834
+ pathParams: [],
9835
+ queryParams: ["authorizationId", "testMode"],
9836
+ edgeCache: false,
9837
+ responseSchema: PassthroughDataSchema13,
9838
+ responseType: "passthrough"
9839
+ },
9840
+ {
9841
+ method: "POST",
9842
+ path: "/paypal/capture/refund",
9843
+ chain: "paypal.capture.refund",
9844
+ action: "create",
9845
+ aliases: [],
9846
+ pathParams: [],
9847
+ queryParams: ["amount", "captureId", "invoiceId", "noteToPayer", "testMode"],
9848
+ edgeCache: false,
9849
+ responseSchema: PassthroughDataSchema13,
9850
+ responseType: "passthrough"
9851
+ },
9852
+ {
9853
+ method: "POST",
9854
+ path: "/paypal/order",
9855
+ chain: "paypal.order",
9856
+ action: "create",
9857
+ aliases: [],
9858
+ pathParams: [],
9859
+ queryParams: [
9860
+ "amount",
9861
+ "cancelUrl",
9862
+ "currencyCode",
9863
+ "intent",
9864
+ "invoiceId",
9865
+ "returnUrl",
9866
+ "testMode"
9867
+ ],
9868
+ edgeCache: false,
9869
+ responseSchema: PassthroughDataSchema13,
9870
+ responseType: "passthrough"
9871
+ },
9872
+ {
9873
+ method: "GET",
9874
+ path: "/paypal/order-return",
9875
+ chain: "paypal.orderReturn",
9876
+ action: "list",
9877
+ aliases: [],
9878
+ pathParams: [],
9879
+ queryParams: ["payerId", "siteId", "testMode", "token"],
9880
+ edgeCache: true,
9881
+ responseSchema: PassthroughDataSchema13,
9882
+ responseType: "passthrough"
9883
+ },
9884
+ {
9885
+ method: "POST",
9886
+ path: "/paypal/order/authorize",
9887
+ chain: "paypal.order.authorize",
9888
+ action: "create",
9889
+ aliases: [],
9890
+ pathParams: [],
9891
+ queryParams: ["orderId", "testMode"],
9892
+ edgeCache: false,
9893
+ responseSchema: PassthroughDataSchema13,
9894
+ responseType: "passthrough"
9895
+ },
9896
+ {
9897
+ method: "POST",
9898
+ path: "/paypal/order/capture",
9899
+ chain: "paypal.order.capture",
9900
+ action: "create",
9901
+ aliases: [],
9902
+ pathParams: [],
9903
+ queryParams: ["orderId", "testMode"],
9904
+ edgeCache: false,
9905
+ responseSchema: PassthroughDataSchema13,
9906
+ responseType: "passthrough"
9907
+ },
9908
+ {
9909
+ method: "GET",
9910
+ path: "/paypal/order/details",
9911
+ chain: "paypal.order.details",
9912
+ action: "list",
9913
+ aliases: [],
9914
+ pathParams: [],
9915
+ queryParams: ["orderId", "testMode"],
9916
+ edgeCache: true,
9917
+ responseSchema: PassthroughDataSchema13,
9918
+ responseType: "passthrough"
9919
+ },
9920
+ {
9921
+ method: "GET",
9922
+ path: "/paypal/refund",
9923
+ chain: "paypal.refund",
9924
+ action: "list",
9925
+ aliases: [],
9926
+ pathParams: [],
9927
+ queryParams: ["refundId", "testMode"],
9928
+ edgeCache: true,
9929
+ responseSchema: PassthroughDataSchema13,
9930
+ responseType: "passthrough"
9931
+ },
9932
+ {
9933
+ method: "POST",
9934
+ path: "/paypal/webhook",
9935
+ chain: "paypal.webhook",
9936
+ action: "create",
9937
+ aliases: [],
9938
+ pathParams: [],
9939
+ queryParams: ["siteId", "testMode"],
9940
+ edgeCache: false,
9941
+ responseSchema: PassthroughDataSchema13,
9942
+ responseType: "passthrough"
9943
+ },
9460
9944
  {
9461
9945
  method: "POST",
9462
9946
  path: "/paytrace/authorization",
@@ -9689,10 +10173,12 @@ var PaymentsClient = class extends BaseServiceClient {
9689
10173
  const dataProxy = createDataProxy(proxy);
9690
10174
  this.element = proxy.element;
9691
10175
  this.moneris = proxy.moneris;
10176
+ this.paypal = proxy.paypal;
9692
10177
  this.paytrace = proxy.paytrace;
9693
10178
  this.unified = proxy.unified;
9694
10179
  this.elementData = dataProxy.element;
9695
10180
  this.monerisData = dataProxy.moneris;
10181
+ this.paypalData = dataProxy.paypal;
9696
10182
  this.paytraceData = dataProxy.paytrace;
9697
10183
  this.unifiedData = dataProxy.unified;
9698
10184
  this.healthCheck = createHealthCheckResource13(boundExecuteRequest);
@@ -9701,7 +10187,7 @@ var PaymentsClient = class extends BaseServiceClient {
9701
10187
  this.pingData = createPingDataResource7(this.ping);
9702
10188
  }
9703
10189
  getServiceDescription() {
9704
- return "Unified payment processing gateway supporting Moneris, PayTrace, and Element card transactions";
10190
+ return "Unified payment processing gateway supporting Moneris, PayTrace, and Element card transactions and PayPal orders";
9705
10191
  }
9706
10192
  };
9707
10193
 
@@ -11389,6 +11875,19 @@ var RtsTracksListParamsSchema = v26.looseObject({
11389
11875
  search: v26.optional(v26.string()),
11390
11876
  trackClass: v26.optional(v26.string())
11391
11877
  });
11878
+ var ShippingMethodsListParamsSchema = v26.looseObject({
11879
+ ...EdgeCacheParamsSchema.entries,
11880
+ limit: v26.optional(v26.pipe(v26.unknown(), v26.transform(Number))),
11881
+ offset: v26.optional(v26.pipe(v26.unknown(), v26.transform(Number))),
11882
+ orderBy: v26.optional(v26.string()),
11883
+ shippingMethodsId: v26.optional(v26.pipe(v26.unknown(), v26.transform(Number))),
11884
+ shippingType: v26.optional(v26.string()),
11885
+ statusCd: v26.optional(v26.pipe(v26.unknown(), v26.transform(Number)))
11886
+ });
11887
+ var ShippingMethodsGetParamsSchema = v26.looseObject({
11888
+ ...EdgeCacheParamsSchema.entries,
11889
+ shippingMethodsId: v26.optional(v26.pipe(v26.unknown(), v26.transform(Number)))
11890
+ });
11392
11891
  var ShipviaRatesListParamsSchema = v26.looseObject({
11393
11892
  ...EdgeCacheParamsSchema.entries,
11394
11893
  carriers: v26.optional(v26.string()),
@@ -11452,6 +11951,7 @@ var SpeedshipFreightListParamsSchema = v26.looseObject({
11452
11951
  handlingCharge: v26.optional(v26.pipe(v26.unknown(), v26.transform(Number))),
11453
11952
  handlingChargeUnit: v26.optional(v26.string()),
11454
11953
  international: v26.optional(v26.boolean()),
11954
+ maxPalletWeight: v26.optional(v26.pipe(v26.unknown(), v26.transform(Number))),
11455
11955
  packageHeight: v26.optional(v26.pipe(v26.unknown(), v26.transform(Number))),
11456
11956
  packageLength: v26.pipe(v26.unknown(), v26.transform(Number)),
11457
11957
  packageWidth: v26.pipe(v26.unknown(), v26.transform(Number)),
@@ -11478,6 +11978,7 @@ var UPSRatesListParamsSchema = v26.looseObject({
11478
11978
  fromCountryCode: v26.optional(v26.string()),
11479
11979
  fromPostalCode: v26.string(),
11480
11980
  fromStateProvinceCode: v26.string(),
11981
+ maxPackageWeight: v26.optional(v26.pipe(v26.unknown(), v26.transform(Number))),
11481
11982
  toAddress1: v26.string(),
11482
11983
  toCity: v26.string(),
11483
11984
  toCountryCode: v26.optional(v26.string()),
@@ -11586,6 +12087,54 @@ var endpoints19 = [
11586
12087
  responseSchema: PassthroughDataSchema19,
11587
12088
  responseType: "passthrough"
11588
12089
  },
12090
+ {
12091
+ method: "GET",
12092
+ path: "/shipping-methods",
12093
+ chain: "shippingMethods",
12094
+ action: "list",
12095
+ aliases: [],
12096
+ pathParams: [],
12097
+ queryParams: ["limit", "offset", "orderBy", "shippingMethodsId", "shippingType", "statusCd"],
12098
+ edgeCache: true,
12099
+ responseSchema: PassthroughDataSchema19,
12100
+ responseType: "passthrough"
12101
+ },
12102
+ {
12103
+ method: "GET",
12104
+ path: "/shipping-methods/{shippingMethodsUid}",
12105
+ chain: "shippingMethods",
12106
+ action: "get",
12107
+ aliases: [],
12108
+ pathParams: ["shippingMethodsUid"],
12109
+ queryParams: ["shippingMethodsId"],
12110
+ edgeCache: true,
12111
+ responseSchema: PassthroughDataSchema19,
12112
+ responseType: "passthrough"
12113
+ },
12114
+ {
12115
+ method: "PUT",
12116
+ path: "/shipping-methods/{shippingMethodsUid}",
12117
+ chain: "shippingMethods",
12118
+ action: "update",
12119
+ aliases: [],
12120
+ pathParams: ["shippingMethodsUid"],
12121
+ queryParams: [],
12122
+ edgeCache: false,
12123
+ responseSchema: PassthroughDataSchema19,
12124
+ responseType: "passthrough"
12125
+ },
12126
+ {
12127
+ method: "DELETE",
12128
+ path: "/shipping-methods/{shippingMethodsUid}",
12129
+ chain: "shippingMethods",
12130
+ action: "delete",
12131
+ aliases: [],
12132
+ pathParams: ["shippingMethodsUid"],
12133
+ queryParams: [],
12134
+ edgeCache: false,
12135
+ responseSchema: PassthroughDataSchema19,
12136
+ responseType: "passthrough"
12137
+ },
11589
12138
  {
11590
12139
  method: "GET",
11591
12140
  path: "/shipvia/rates",
@@ -11675,6 +12224,7 @@ var endpoints19 = [
11675
12224
  "handlingCharge",
11676
12225
  "handlingChargeUnit",
11677
12226
  "international",
12227
+ "maxPalletWeight",
11678
12228
  "packageHeight",
11679
12229
  "packageLength",
11680
12230
  "packageWidth",
@@ -11711,6 +12261,7 @@ var endpoints19 = [
11711
12261
  "fromCountryCode",
11712
12262
  "fromPostalCode",
11713
12263
  "fromStateProvinceCode",
12264
+ "maxPackageWeight",
11714
12265
  "toAddress1",
11715
12266
  "toCity",
11716
12267
  "toCountryCode",
@@ -11867,11 +12418,13 @@ var LogisticsClient = class extends BaseServiceClient {
11867
12418
  const dataProxy = createDataProxy(proxy);
11868
12419
  this.fedex = proxy.fedex;
11869
12420
  this.rts = proxy.rts;
12421
+ this.shippingMethods = proxy.shippingMethods;
11870
12422
  this.shipvia = proxy.shipvia;
11871
12423
  this.speedship = proxy.speedship;
11872
12424
  this.ups = proxy.ups;
11873
12425
  this.fedexData = dataProxy.fedex;
11874
12426
  this.rtsData = dataProxy.rts;
12427
+ this.shippingMethodsData = dataProxy.shippingMethods;
11875
12428
  this.shipviaData = dataProxy.shipvia;
11876
12429
  this.speedshipData = dataProxy.speedship;
11877
12430
  this.upsData = dataProxy.ups;
@@ -12328,6 +12881,19 @@ var CompanyGetParamsSchema = v28.looseObject({
12328
12881
  ...EdgeCacheParamsSchema.entries,
12329
12882
  companyId: v28.optional(v28.string())
12330
12883
  });
12884
+ var FreightCodeListParamsSchema = v28.looseObject({
12885
+ ...EdgeCacheParamsSchema.entries,
12886
+ companyId: v28.optional(v28.string()),
12887
+ freightCodeId: v28.optional(v28.string()),
12888
+ limit: v28.optional(v28.pipe(v28.unknown(), v28.transform(Number))),
12889
+ offset: v28.optional(v28.pipe(v28.unknown(), v28.transform(Number))),
12890
+ orderBy: v28.optional(v28.string()),
12891
+ statusCd: v28.optional(v28.pipe(v28.unknown(), v28.transform(Number)))
12892
+ });
12893
+ var FreightCodeGetParamsSchema = v28.looseObject({
12894
+ ...EdgeCacheParamsSchema.entries,
12895
+ freightCodeId: v28.optional(v28.string())
12896
+ });
12331
12897
  var LocationListParamsSchema = v28.looseObject({
12332
12898
  ...EdgeCacheParamsSchema.entries,
12333
12899
  deleteFlag: v28.optional(v28.string()),
@@ -12399,6 +12965,48 @@ var CompanyDataSchema = v28.looseObject({
12399
12965
  defaultSourcePriceCd: v28.optional(v28.nullable(v28.number())),
12400
12966
  defaultMultiplier: v28.optional(v28.nullable(v28.number()))
12401
12967
  });
12968
+ var FreightCodeDataSchema = v28.looseObject({
12969
+ freightCodeUid: v28.optional(v28.number()),
12970
+ companyId: v28.optional(v28.string()),
12971
+ freightCd: v28.optional(v28.string()),
12972
+ freightDesc: v28.optional(v28.string()),
12973
+ incomingFreight: v28.optional(v28.string()),
12974
+ outgoingFreight: v28.optional(v28.string()),
12975
+ incomingReduceCommission: v28.optional(v28.string()),
12976
+ outgoingIncreaseCommission: v28.optional(v28.string()),
12977
+ prorateMethodCodeNo: v28.optional(v28.number()),
12978
+ taxGroupId: v28.optional(v28.nullable(v28.string())),
12979
+ revenueAccountNo: v28.optional(v28.string()),
12980
+ rowStatus: v28.optional(v28.number()),
12981
+ dateCreated: v28.optional(v28.nullable(v28.string())),
12982
+ dateLastModified: v28.optional(v28.nullable(v28.string())),
12983
+ lastMaintainedBy: v28.optional(v28.string()),
12984
+ freeFreightBasisCd: v28.optional(v28.nullable(v28.number())),
12985
+ freeInFreightMin: v28.optional(v28.nullable(v28.number())),
12986
+ freeOutFreightMin: v28.optional(v28.nullable(v28.number())),
12987
+ directShipFreeFreightFlag: v28.optional(v28.nullable(v28.string())),
12988
+ freeInFreightMinWeb: v28.optional(v28.nullable(v28.number())),
12989
+ freeOutFreightMinWeb: v28.optional(v28.nullable(v28.number())),
12990
+ handlingChargeOptionCd: v28.optional(v28.nullable(v28.number())),
12991
+ externalTaxProductCodeIn: v28.optional(v28.nullable(v28.string())),
12992
+ externalTaxProductCodeOut: v28.optional(v28.nullable(v28.string())),
12993
+ incomingIncreaseCommission: v28.optional(v28.nullable(v28.string())),
12994
+ paySpecialFlag: v28.optional(v28.nullable(v28.string())),
12995
+ skipFirstShipmentFlag: v28.optional(v28.nullable(v28.string())),
12996
+ excludeFromSalesMasterInquiry: v28.optional(v28.string()),
12997
+ deductibleFlag: v28.optional(v28.nullable(v28.string())),
12998
+ freeColdFreight: v28.optional(v28.string()),
12999
+ freeHazmatFreight: v28.optional(v28.string()),
13000
+ freeExpressFreight: v28.optional(v28.string()),
13001
+ freeBulkFreight: v28.optional(v28.string()),
13002
+ fedexPaymentMethod: v28.optional(v28.nullable(v28.number())),
13003
+ excludeDiscountedFreight: v28.optional(v28.string()),
13004
+ freeFreightDefaultFlag: v28.optional(v28.nullable(v28.string())),
13005
+ outgoingAdjustCommissionByProfitFlag: v28.optional(v28.nullable(v28.string())),
13006
+ updateCd: v28.optional(v28.number()),
13007
+ statusCd: v28.optional(v28.number()),
13008
+ processCd: v28.optional(v28.number())
13009
+ });
12402
13010
  var LocationDataSchema = v28.looseObject({
12403
13011
  locationId: v28.optional(v28.number()),
12404
13012
  companyId: v28.optional(v28.string()),
@@ -12576,6 +13184,30 @@ var endpoints21 = [
12576
13184
  responseSchema: CompanyDataSchema,
12577
13185
  responseType: "object"
12578
13186
  },
13187
+ {
13188
+ method: "GET",
13189
+ path: "/freight-code",
13190
+ chain: "freightCode",
13191
+ action: "list",
13192
+ aliases: [],
13193
+ pathParams: [],
13194
+ queryParams: ["companyId", "freightCodeId", "limit", "offset", "orderBy", "statusCd"],
13195
+ edgeCache: true,
13196
+ responseSchema: FreightCodeDataSchema,
13197
+ responseType: "array"
13198
+ },
13199
+ {
13200
+ method: "GET",
13201
+ path: "/freight-code/{freightCodeUid}",
13202
+ chain: "freightCode",
13203
+ action: "get",
13204
+ aliases: [],
13205
+ pathParams: ["freightCodeUid"],
13206
+ queryParams: ["freightCodeId"],
13207
+ edgeCache: true,
13208
+ responseSchema: FreightCodeDataSchema,
13209
+ responseType: "object"
13210
+ },
12579
13211
  {
12580
13212
  method: "GET",
12581
13213
  path: "/location",
@@ -12685,12 +13317,14 @@ var P21CoreClient = class extends BaseServiceClient {
12685
13317
  this.cashDrawer = proxy.cashDrawer;
12686
13318
  this.codeP21 = proxy.codeP21;
12687
13319
  this.company = proxy.company;
13320
+ this.freightCode = proxy.freightCode;
12688
13321
  this.location = proxy.location;
12689
13322
  this.paymentTypes = proxy.paymentTypes;
12690
13323
  this.addressData = dataProxy.address;
12691
13324
  this.cashDrawerData = dataProxy.cashDrawer;
12692
13325
  this.codeP21Data = dataProxy.codeP21;
12693
13326
  this.companyData = dataProxy.company;
13327
+ this.freightCodeData = dataProxy.freightCode;
12694
13328
  this.locationData = dataProxy.location;
12695
13329
  this.paymentTypesData = dataProxy.paymentTypes;
12696
13330
  this.healthCheck = createHealthCheckResource21(boundExecuteRequest);
@@ -15348,7 +15982,7 @@ function createCrossSiteAuthenticator(augurInfoToken) {
15348
15982
  }
15349
15983
 
15350
15984
  // src/index.ts
15351
- var VERSION = "2026.7.1";
15985
+ var VERSION = "2026.8.1";
15352
15986
  // Annotate the CommonJS export names for ESM import in node:
15353
15987
  0 && (module.exports = {
15354
15988
  AgrInfoClient,