@simpleapps-com/augur-api 2026.5.2 → 2026.5.4

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
@@ -7777,6 +7777,13 @@ var CustomerAddressListParamsSchema = v17.looseObject({
7777
7777
  offset: v17.optional(v17.pipe(v17.unknown(), v17.transform(Number))),
7778
7778
  q: v17.string()
7779
7779
  });
7780
+ var CustomerAddressesListParamsSchema = v17.looseObject({
7781
+ ...EdgeCacheParamsSchema.entries,
7782
+ limit: v17.optional(v17.pipe(v17.unknown(), v17.transform(Number))),
7783
+ offset: v17.optional(v17.pipe(v17.unknown(), v17.transform(Number))),
7784
+ orderBy: v17.optional(v17.string()),
7785
+ statusCd: v17.optional(v17.pipe(v17.unknown(), v17.transform(Number)))
7786
+ });
7780
7787
  var CustomerContactsListParamsSchema = v17.looseObject({
7781
7788
  ...EdgeCacheParamsSchema.entries,
7782
7789
  limit: v17.optional(v17.pipe(v17.unknown(), v17.transform(Number))),
@@ -7785,6 +7792,9 @@ var CustomerContactsListParamsSchema = v17.looseObject({
7785
7792
  });
7786
7793
  var CustomerInvoicesListParamsSchema = v17.looseObject({
7787
7794
  ...EdgeCacheParamsSchema.entries,
7795
+ createdFrom: v17.optional(v17.string()),
7796
+ createdOn: v17.optional(v17.string()),
7797
+ createdTo: v17.optional(v17.string()),
7788
7798
  limit: v17.optional(v17.pipe(v17.unknown(), v17.transform(Number))),
7789
7799
  offset: v17.optional(v17.pipe(v17.unknown(), v17.transform(Number))),
7790
7800
  paidInFull: v17.optional(v17.string()),
@@ -7820,6 +7830,39 @@ var CustomerShipToListParamsSchema = v17.looseObject({
7820
7830
  offset: v17.optional(v17.pipe(v17.unknown(), v17.transform(Number))),
7821
7831
  orderBy: v17.optional(v17.string())
7822
7832
  });
7833
+ var CustomerTagsListParamsSchema = v17.looseObject({
7834
+ ...EdgeCacheParamsSchema.entries,
7835
+ limit: v17.optional(v17.pipe(v17.unknown(), v17.transform(Number))),
7836
+ offset: v17.optional(v17.pipe(v17.unknown(), v17.transform(Number))),
7837
+ orderBy: v17.optional(v17.string()),
7838
+ statusCd: v17.optional(v17.pipe(v17.unknown(), v17.transform(Number)))
7839
+ });
7840
+ var CustomerAddressesDataSchema = v17.looseObject({
7841
+ customerAddressUid: v17.optional(v17.number()),
7842
+ customerId: v17.optional(v17.number()),
7843
+ address1: v17.optional(v17.nullable(v17.string())),
7844
+ address2: v17.optional(v17.nullable(v17.string())),
7845
+ address3: v17.optional(v17.nullable(v17.string())),
7846
+ city: v17.optional(v17.nullable(v17.string())),
7847
+ state: v17.optional(v17.nullable(v17.string())),
7848
+ postalCode: v17.optional(v17.nullable(v17.string())),
7849
+ country: v17.optional(v17.nullable(v17.string())),
7850
+ updateCd: v17.optional(v17.number()),
7851
+ statusCd: v17.optional(v17.number()),
7852
+ processCd: v17.optional(v17.number()),
7853
+ dateCreated: v17.optional(v17.string()),
7854
+ dateLastModified: v17.optional(v17.string())
7855
+ });
7856
+ var CustomerTagsDataSchema = v17.looseObject({
7857
+ customerTagsUid: v17.optional(v17.number()),
7858
+ customerId: v17.optional(v17.number()),
7859
+ tag: v17.optional(v17.nullable(v17.string())),
7860
+ updateCd: v17.optional(v17.number()),
7861
+ statusCd: v17.optional(v17.number()),
7862
+ processCd: v17.optional(v17.number()),
7863
+ dateCreated: v17.optional(v17.string()),
7864
+ dateLastModified: v17.optional(v17.string())
7865
+ });
7823
7866
  var PassthroughDataSchema10 = v17.record(v17.string(), v17.unknown());
7824
7867
 
7825
7868
  // src/services/customers/generated/endpoints.ts
@@ -7920,6 +7963,66 @@ var endpoints10 = [
7920
7963
  responseSchema: PassthroughDataSchema10,
7921
7964
  responseType: "passthrough"
7922
7965
  },
7966
+ {
7967
+ method: "GET",
7968
+ path: "/customer/{customerId}/addresses",
7969
+ chain: "customer.addresses",
7970
+ action: "list",
7971
+ aliases: [],
7972
+ pathParams: ["customerId"],
7973
+ queryParams: ["limit", "offset", "orderBy", "statusCd"],
7974
+ edgeCache: true,
7975
+ responseSchema: CustomerAddressesDataSchema,
7976
+ responseType: "array"
7977
+ },
7978
+ {
7979
+ method: "POST",
7980
+ path: "/customer/{customerId}/addresses",
7981
+ chain: "customer.addresses",
7982
+ action: "create",
7983
+ aliases: [],
7984
+ pathParams: ["customerId"],
7985
+ queryParams: [],
7986
+ edgeCache: false,
7987
+ responseSchema: CustomerAddressesDataSchema,
7988
+ responseType: "object"
7989
+ },
7990
+ {
7991
+ method: "GET",
7992
+ path: "/customer/{customerId}/addresses/{customerAddressUid}",
7993
+ chain: "customer.addresses",
7994
+ action: "get",
7995
+ aliases: [],
7996
+ pathParams: ["customerId", "customerAddressUid"],
7997
+ queryParams: [],
7998
+ edgeCache: true,
7999
+ responseSchema: CustomerAddressesDataSchema,
8000
+ responseType: "object"
8001
+ },
8002
+ {
8003
+ method: "PUT",
8004
+ path: "/customer/{customerId}/addresses/{customerAddressUid}",
8005
+ chain: "customer.addresses",
8006
+ action: "update",
8007
+ aliases: [],
8008
+ pathParams: ["customerId", "customerAddressUid"],
8009
+ queryParams: [],
8010
+ edgeCache: false,
8011
+ responseSchema: CustomerAddressesDataSchema,
8012
+ responseType: "object"
8013
+ },
8014
+ {
8015
+ method: "DELETE",
8016
+ path: "/customer/{customerId}/addresses/{customerAddressUid}",
8017
+ chain: "customer.addresses",
8018
+ action: "delete",
8019
+ aliases: [],
8020
+ pathParams: ["customerId", "customerAddressUid"],
8021
+ queryParams: [],
8022
+ edgeCache: false,
8023
+ responseSchema: CustomerAddressesDataSchema,
8024
+ responseType: "object"
8025
+ },
7923
8026
  {
7924
8027
  method: "GET",
7925
8028
  path: "/customer/{customerId}/contacts",
@@ -7963,7 +8066,16 @@ var endpoints10 = [
7963
8066
  action: "list",
7964
8067
  aliases: [],
7965
8068
  pathParams: ["customerId"],
7966
- queryParams: ["limit", "offset", "paidInFull", "q", "shipToId"],
8069
+ queryParams: [
8070
+ "createdFrom",
8071
+ "createdOn",
8072
+ "createdTo",
8073
+ "limit",
8074
+ "offset",
8075
+ "paidInFull",
8076
+ "q",
8077
+ "shipToId"
8078
+ ],
7967
8079
  edgeCache: true,
7968
8080
  responseSchema: PassthroughDataSchema10,
7969
8081
  responseType: "passthrough"
@@ -8080,10 +8192,58 @@ var endpoints10 = [
8080
8192
  action: "list",
8081
8193
  aliases: [],
8082
8194
  pathParams: ["customerId"],
8195
+ queryParams: ["limit", "offset", "orderBy", "statusCd"],
8196
+ edgeCache: true,
8197
+ responseSchema: CustomerTagsDataSchema,
8198
+ responseType: "array"
8199
+ },
8200
+ {
8201
+ method: "POST",
8202
+ path: "/customer/{customerId}/tags",
8203
+ chain: "customer.tags",
8204
+ action: "create",
8205
+ aliases: [],
8206
+ pathParams: ["customerId"],
8207
+ queryParams: [],
8208
+ edgeCache: false,
8209
+ responseSchema: CustomerTagsDataSchema,
8210
+ responseType: "object"
8211
+ },
8212
+ {
8213
+ method: "GET",
8214
+ path: "/customer/{customerId}/tags/{customerTagsUid}",
8215
+ chain: "customer.tags",
8216
+ action: "get",
8217
+ aliases: [],
8218
+ pathParams: ["customerId", "customerTagsUid"],
8083
8219
  queryParams: [],
8084
8220
  edgeCache: true,
8085
- responseSchema: PassthroughDataSchema10,
8086
- responseType: "passthrough"
8221
+ responseSchema: CustomerTagsDataSchema,
8222
+ responseType: "object"
8223
+ },
8224
+ {
8225
+ method: "PUT",
8226
+ path: "/customer/{customerId}/tags/{customerTagsUid}",
8227
+ chain: "customer.tags",
8228
+ action: "update",
8229
+ aliases: [],
8230
+ pathParams: ["customerId", "customerTagsUid"],
8231
+ queryParams: [],
8232
+ edgeCache: false,
8233
+ responseSchema: CustomerTagsDataSchema,
8234
+ responseType: "object"
8235
+ },
8236
+ {
8237
+ method: "DELETE",
8238
+ path: "/customer/{customerId}/tags/{customerTagsUid}",
8239
+ chain: "customer.tags",
8240
+ action: "delete",
8241
+ aliases: [],
8242
+ pathParams: ["customerId", "customerTagsUid"],
8243
+ queryParams: [],
8244
+ edgeCache: false,
8245
+ responseSchema: CustomerTagsDataSchema,
8246
+ responseType: "object"
8087
8247
  },
8088
8248
  {
8089
8249
  method: "GET",
@@ -10075,7 +10235,7 @@ var RtsBrandsListParamsSchema = v25.looseObject({
10075
10235
  ...EdgeCacheParamsSchema.entries,
10076
10236
  search: v25.optional(v25.string())
10077
10237
  });
10078
- var RtsBrandsMachinesListParamsSchema = v25.looseObject({
10238
+ var RtsBrandsBrandIdMachinesListParamsSchema = v25.looseObject({
10079
10239
  ...EdgeCacheParamsSchema.entries,
10080
10240
  search: v25.optional(v25.string())
10081
10241
  });
@@ -10195,7 +10355,20 @@ var endpoints18 = [
10195
10355
  action: "list",
10196
10356
  aliases: [],
10197
10357
  pathParams: [],
10198
- queryParams: ["fromAddress1", "fromCity", "fromCountryCode", "fromPostalCode", "fromStateProvinceCode", "toAddress1", "toCity", "toCountryCode", "toPostalCode", "toResidential", "toStateProvinceCode", "weight"],
10358
+ queryParams: [
10359
+ "fromAddress1",
10360
+ "fromCity",
10361
+ "fromCountryCode",
10362
+ "fromPostalCode",
10363
+ "fromStateProvinceCode",
10364
+ "toAddress1",
10365
+ "toCity",
10366
+ "toCountryCode",
10367
+ "toPostalCode",
10368
+ "toResidential",
10369
+ "toStateProvinceCode",
10370
+ "weight"
10371
+ ],
10199
10372
  edgeCache: true,
10200
10373
  responseSchema: PassthroughDataSchema18,
10201
10374
  responseType: "passthrough"
@@ -10214,11 +10387,11 @@ var endpoints18 = [
10214
10387
  },
10215
10388
  {
10216
10389
  method: "GET",
10217
- path: "/rts/brands/<brandId:d+>/machines",
10218
- chain: "rts.brands.<brandId:d+>.machines",
10390
+ path: "/rts/brands/{brandId}/machines",
10391
+ chain: "rts.brands.brandId.machines",
10219
10392
  action: "list",
10220
10393
  aliases: [],
10221
- pathParams: [],
10394
+ pathParams: ["brandId"],
10222
10395
  queryParams: ["search"],
10223
10396
  edgeCache: true,
10224
10397
  responseSchema: PassthroughDataSchema18,
@@ -10226,11 +10399,11 @@ var endpoints18 = [
10226
10399
  },
10227
10400
  {
10228
10401
  method: "GET",
10229
- path: "/rts/machines/<machineId:d+>/tracks",
10230
- chain: "rts.machines.<machineId:d+>.tracks",
10402
+ path: "/rts/machines/{machineId}/tracks",
10403
+ chain: "rts.machines.machineId.tracks",
10231
10404
  action: "list",
10232
10405
  aliases: [],
10233
- pathParams: [],
10406
+ pathParams: ["machineId"],
10234
10407
  queryParams: [],
10235
10408
  edgeCache: true,
10236
10409
  responseSchema: PassthroughDataSchema18,
@@ -10250,11 +10423,11 @@ var endpoints18 = [
10250
10423
  },
10251
10424
  {
10252
10425
  method: "GET",
10253
- path: "/rts/track/<trackId:d+>",
10254
- chain: "rts.track.<trackId:d+>",
10426
+ path: "/rts/track/{trackId}",
10427
+ chain: "rts.track.trackId",
10255
10428
  action: "list",
10256
10429
  aliases: [],
10257
- pathParams: [],
10430
+ pathParams: ["trackId"],
10258
10431
  queryParams: [],
10259
10432
  edgeCache: true,
10260
10433
  responseSchema: PassthroughDataSchema18,
@@ -10279,7 +10452,26 @@ var endpoints18 = [
10279
10452
  action: "list",
10280
10453
  aliases: [],
10281
10454
  pathParams: [],
10282
- queryParams: ["carriers", "dimensionUnit", "fromCity", "fromCountry", "fromPostalCode", "fromState", "locationId", "packageHeight", "packageLength", "packageWidth", "residential", "serviceType", "toCity", "toCountry", "toPostalCode", "toState", "totalWeight", "weightUnit"],
10455
+ queryParams: [
10456
+ "carriers",
10457
+ "dimensionUnit",
10458
+ "fromCity",
10459
+ "fromCountry",
10460
+ "fromPostalCode",
10461
+ "fromState",
10462
+ "locationId",
10463
+ "packageHeight",
10464
+ "packageLength",
10465
+ "packageWidth",
10466
+ "residential",
10467
+ "serviceType",
10468
+ "toCity",
10469
+ "toCountry",
10470
+ "toPostalCode",
10471
+ "toState",
10472
+ "totalWeight",
10473
+ "weightUnit"
10474
+ ],
10283
10475
  edgeCache: true,
10284
10476
  responseSchema: PassthroughDataSchema18,
10285
10477
  responseType: "passthrough"
@@ -10291,7 +10483,31 @@ var endpoints18 = [
10291
10483
  action: "list",
10292
10484
  aliases: [],
10293
10485
  pathParams: [],
10294
- queryParams: ["carriers", "commodityClass", "commodityDescription", "deliveryInstructions", "dimensionUnit", "fromCity", "fromCountry", "fromPostalCode", "fromState", "isHazMat", "locationId", "packageHeight", "packageLength", "packageWidth", "packagingType", "pickupInstructions", "quantity", "toCity", "toCountry", "toPostalCode", "toState", "totalWeight", "weightUnit"],
10486
+ queryParams: [
10487
+ "carriers",
10488
+ "commodityClass",
10489
+ "commodityDescription",
10490
+ "deliveryInstructions",
10491
+ "dimensionUnit",
10492
+ "fromCity",
10493
+ "fromCountry",
10494
+ "fromPostalCode",
10495
+ "fromState",
10496
+ "isHazMat",
10497
+ "locationId",
10498
+ "packageHeight",
10499
+ "packageLength",
10500
+ "packageWidth",
10501
+ "packagingType",
10502
+ "pickupInstructions",
10503
+ "quantity",
10504
+ "toCity",
10505
+ "toCountry",
10506
+ "toPostalCode",
10507
+ "toState",
10508
+ "totalWeight",
10509
+ "weightUnit"
10510
+ ],
10295
10511
  edgeCache: true,
10296
10512
  responseSchema: PassthroughDataSchema18,
10297
10513
  responseType: "passthrough"
@@ -10303,7 +10519,40 @@ var endpoints18 = [
10303
10519
  action: "list",
10304
10520
  aliases: [],
10305
10521
  pathParams: [],
10306
- 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"],
10522
+ queryParams: [
10523
+ "deliveryInstructions",
10524
+ "dimensionUnit",
10525
+ "fromAddressLine",
10526
+ "fromCity",
10527
+ "fromCompanyName",
10528
+ "fromCountryCode",
10529
+ "fromFirstName",
10530
+ "fromLastName",
10531
+ "fromPhone",
10532
+ "fromPostalCode",
10533
+ "fromState",
10534
+ "handlingCharge",
10535
+ "handlingChargeUnit",
10536
+ "international",
10537
+ "packageHeight",
10538
+ "packageLength",
10539
+ "packageWidth",
10540
+ "pickupInstructions",
10541
+ "productType",
10542
+ "quantity",
10543
+ "responseFormat",
10544
+ "toAddressLine",
10545
+ "toCity",
10546
+ "toCompanyName",
10547
+ "toCountryCode",
10548
+ "toFirstName",
10549
+ "toLastName",
10550
+ "toPhone",
10551
+ "toPostalCode",
10552
+ "toRegion",
10553
+ "totalWeight",
10554
+ "weightUnit"
10555
+ ],
10307
10556
  edgeCache: true,
10308
10557
  responseSchema: PassthroughDataSchema18,
10309
10558
  responseType: "passthrough"
@@ -10315,7 +10564,19 @@ var endpoints18 = [
10315
10564
  action: "list",
10316
10565
  aliases: [],
10317
10566
  pathParams: [],
10318
- queryParams: ["fromAddress1", "fromCity", "fromCountryCode", "fromPostalCode", "fromStateProvinceCode", "toAddress1", "toCity", "toCountryCode", "toPostalCode", "toStateProvinceCode", "weight"],
10567
+ queryParams: [
10568
+ "fromAddress1",
10569
+ "fromCity",
10570
+ "fromCountryCode",
10571
+ "fromPostalCode",
10572
+ "fromStateProvinceCode",
10573
+ "toAddress1",
10574
+ "toCity",
10575
+ "toCountryCode",
10576
+ "toPostalCode",
10577
+ "toStateProvinceCode",
10578
+ "weight"
10579
+ ],
10319
10580
  edgeCache: true,
10320
10581
  responseSchema: PassthroughDataSchema18,
10321
10582
  responseType: "passthrough"
@@ -10484,6 +10745,9 @@ var LogisticsClient = class extends BaseServiceClient {
10484
10745
  this.healthCheckData = createHealthCheckDataResource19(this.healthCheck);
10485
10746
  this.pingData = createPingDataResource9(this.ping);
10486
10747
  }
10748
+ getServiceDescription() {
10749
+ return "Multi-carrier shipping logistics for label generation, tracking, and delivery coordination";
10750
+ }
10487
10751
  };
10488
10752
 
10489
10753
  // src/services/p21-apis/generated/schemas.ts
@@ -13954,7 +14218,7 @@ function createCrossSiteAuthenticator(augurInfoToken) {
13954
14218
  }
13955
14219
 
13956
14220
  // src/index.ts
13957
- var VERSION = "2026.5.2";
14221
+ var VERSION = "2026.5.4";
13958
14222
  // Annotate the CommonJS export names for ESM import in node:
13959
14223
  0 && (module.exports = {
13960
14224
  AgrInfoClient,