@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.mjs CHANGED
@@ -7702,6 +7702,13 @@ var CustomerAddressListParamsSchema = v17.looseObject({
7702
7702
  offset: v17.optional(v17.pipe(v17.unknown(), v17.transform(Number))),
7703
7703
  q: v17.string()
7704
7704
  });
7705
+ var CustomerAddressesListParamsSchema = v17.looseObject({
7706
+ ...EdgeCacheParamsSchema.entries,
7707
+ limit: v17.optional(v17.pipe(v17.unknown(), v17.transform(Number))),
7708
+ offset: v17.optional(v17.pipe(v17.unknown(), v17.transform(Number))),
7709
+ orderBy: v17.optional(v17.string()),
7710
+ statusCd: v17.optional(v17.pipe(v17.unknown(), v17.transform(Number)))
7711
+ });
7705
7712
  var CustomerContactsListParamsSchema = v17.looseObject({
7706
7713
  ...EdgeCacheParamsSchema.entries,
7707
7714
  limit: v17.optional(v17.pipe(v17.unknown(), v17.transform(Number))),
@@ -7710,6 +7717,9 @@ var CustomerContactsListParamsSchema = v17.looseObject({
7710
7717
  });
7711
7718
  var CustomerInvoicesListParamsSchema = v17.looseObject({
7712
7719
  ...EdgeCacheParamsSchema.entries,
7720
+ createdFrom: v17.optional(v17.string()),
7721
+ createdOn: v17.optional(v17.string()),
7722
+ createdTo: v17.optional(v17.string()),
7713
7723
  limit: v17.optional(v17.pipe(v17.unknown(), v17.transform(Number))),
7714
7724
  offset: v17.optional(v17.pipe(v17.unknown(), v17.transform(Number))),
7715
7725
  paidInFull: v17.optional(v17.string()),
@@ -7745,6 +7755,39 @@ var CustomerShipToListParamsSchema = v17.looseObject({
7745
7755
  offset: v17.optional(v17.pipe(v17.unknown(), v17.transform(Number))),
7746
7756
  orderBy: v17.optional(v17.string())
7747
7757
  });
7758
+ var CustomerTagsListParamsSchema = v17.looseObject({
7759
+ ...EdgeCacheParamsSchema.entries,
7760
+ limit: v17.optional(v17.pipe(v17.unknown(), v17.transform(Number))),
7761
+ offset: v17.optional(v17.pipe(v17.unknown(), v17.transform(Number))),
7762
+ orderBy: v17.optional(v17.string()),
7763
+ statusCd: v17.optional(v17.pipe(v17.unknown(), v17.transform(Number)))
7764
+ });
7765
+ var CustomerAddressesDataSchema = v17.looseObject({
7766
+ customerAddressUid: v17.optional(v17.number()),
7767
+ customerId: v17.optional(v17.number()),
7768
+ address1: v17.optional(v17.nullable(v17.string())),
7769
+ address2: v17.optional(v17.nullable(v17.string())),
7770
+ address3: v17.optional(v17.nullable(v17.string())),
7771
+ city: v17.optional(v17.nullable(v17.string())),
7772
+ state: v17.optional(v17.nullable(v17.string())),
7773
+ postalCode: v17.optional(v17.nullable(v17.string())),
7774
+ country: v17.optional(v17.nullable(v17.string())),
7775
+ updateCd: v17.optional(v17.number()),
7776
+ statusCd: v17.optional(v17.number()),
7777
+ processCd: v17.optional(v17.number()),
7778
+ dateCreated: v17.optional(v17.string()),
7779
+ dateLastModified: v17.optional(v17.string())
7780
+ });
7781
+ var CustomerTagsDataSchema = v17.looseObject({
7782
+ customerTagsUid: v17.optional(v17.number()),
7783
+ customerId: v17.optional(v17.number()),
7784
+ tag: v17.optional(v17.nullable(v17.string())),
7785
+ updateCd: v17.optional(v17.number()),
7786
+ statusCd: v17.optional(v17.number()),
7787
+ processCd: v17.optional(v17.number()),
7788
+ dateCreated: v17.optional(v17.string()),
7789
+ dateLastModified: v17.optional(v17.string())
7790
+ });
7748
7791
  var PassthroughDataSchema10 = v17.record(v17.string(), v17.unknown());
7749
7792
 
7750
7793
  // src/services/customers/generated/endpoints.ts
@@ -7845,6 +7888,66 @@ var endpoints10 = [
7845
7888
  responseSchema: PassthroughDataSchema10,
7846
7889
  responseType: "passthrough"
7847
7890
  },
7891
+ {
7892
+ method: "GET",
7893
+ path: "/customer/{customerId}/addresses",
7894
+ chain: "customer.addresses",
7895
+ action: "list",
7896
+ aliases: [],
7897
+ pathParams: ["customerId"],
7898
+ queryParams: ["limit", "offset", "orderBy", "statusCd"],
7899
+ edgeCache: true,
7900
+ responseSchema: CustomerAddressesDataSchema,
7901
+ responseType: "array"
7902
+ },
7903
+ {
7904
+ method: "POST",
7905
+ path: "/customer/{customerId}/addresses",
7906
+ chain: "customer.addresses",
7907
+ action: "create",
7908
+ aliases: [],
7909
+ pathParams: ["customerId"],
7910
+ queryParams: [],
7911
+ edgeCache: false,
7912
+ responseSchema: CustomerAddressesDataSchema,
7913
+ responseType: "object"
7914
+ },
7915
+ {
7916
+ method: "GET",
7917
+ path: "/customer/{customerId}/addresses/{customerAddressUid}",
7918
+ chain: "customer.addresses",
7919
+ action: "get",
7920
+ aliases: [],
7921
+ pathParams: ["customerId", "customerAddressUid"],
7922
+ queryParams: [],
7923
+ edgeCache: true,
7924
+ responseSchema: CustomerAddressesDataSchema,
7925
+ responseType: "object"
7926
+ },
7927
+ {
7928
+ method: "PUT",
7929
+ path: "/customer/{customerId}/addresses/{customerAddressUid}",
7930
+ chain: "customer.addresses",
7931
+ action: "update",
7932
+ aliases: [],
7933
+ pathParams: ["customerId", "customerAddressUid"],
7934
+ queryParams: [],
7935
+ edgeCache: false,
7936
+ responseSchema: CustomerAddressesDataSchema,
7937
+ responseType: "object"
7938
+ },
7939
+ {
7940
+ method: "DELETE",
7941
+ path: "/customer/{customerId}/addresses/{customerAddressUid}",
7942
+ chain: "customer.addresses",
7943
+ action: "delete",
7944
+ aliases: [],
7945
+ pathParams: ["customerId", "customerAddressUid"],
7946
+ queryParams: [],
7947
+ edgeCache: false,
7948
+ responseSchema: CustomerAddressesDataSchema,
7949
+ responseType: "object"
7950
+ },
7848
7951
  {
7849
7952
  method: "GET",
7850
7953
  path: "/customer/{customerId}/contacts",
@@ -7888,7 +7991,16 @@ var endpoints10 = [
7888
7991
  action: "list",
7889
7992
  aliases: [],
7890
7993
  pathParams: ["customerId"],
7891
- queryParams: ["limit", "offset", "paidInFull", "q", "shipToId"],
7994
+ queryParams: [
7995
+ "createdFrom",
7996
+ "createdOn",
7997
+ "createdTo",
7998
+ "limit",
7999
+ "offset",
8000
+ "paidInFull",
8001
+ "q",
8002
+ "shipToId"
8003
+ ],
7892
8004
  edgeCache: true,
7893
8005
  responseSchema: PassthroughDataSchema10,
7894
8006
  responseType: "passthrough"
@@ -8005,10 +8117,58 @@ var endpoints10 = [
8005
8117
  action: "list",
8006
8118
  aliases: [],
8007
8119
  pathParams: ["customerId"],
8120
+ queryParams: ["limit", "offset", "orderBy", "statusCd"],
8121
+ edgeCache: true,
8122
+ responseSchema: CustomerTagsDataSchema,
8123
+ responseType: "array"
8124
+ },
8125
+ {
8126
+ method: "POST",
8127
+ path: "/customer/{customerId}/tags",
8128
+ chain: "customer.tags",
8129
+ action: "create",
8130
+ aliases: [],
8131
+ pathParams: ["customerId"],
8132
+ queryParams: [],
8133
+ edgeCache: false,
8134
+ responseSchema: CustomerTagsDataSchema,
8135
+ responseType: "object"
8136
+ },
8137
+ {
8138
+ method: "GET",
8139
+ path: "/customer/{customerId}/tags/{customerTagsUid}",
8140
+ chain: "customer.tags",
8141
+ action: "get",
8142
+ aliases: [],
8143
+ pathParams: ["customerId", "customerTagsUid"],
8008
8144
  queryParams: [],
8009
8145
  edgeCache: true,
8010
- responseSchema: PassthroughDataSchema10,
8011
- responseType: "passthrough"
8146
+ responseSchema: CustomerTagsDataSchema,
8147
+ responseType: "object"
8148
+ },
8149
+ {
8150
+ method: "PUT",
8151
+ path: "/customer/{customerId}/tags/{customerTagsUid}",
8152
+ chain: "customer.tags",
8153
+ action: "update",
8154
+ aliases: [],
8155
+ pathParams: ["customerId", "customerTagsUid"],
8156
+ queryParams: [],
8157
+ edgeCache: false,
8158
+ responseSchema: CustomerTagsDataSchema,
8159
+ responseType: "object"
8160
+ },
8161
+ {
8162
+ method: "DELETE",
8163
+ path: "/customer/{customerId}/tags/{customerTagsUid}",
8164
+ chain: "customer.tags",
8165
+ action: "delete",
8166
+ aliases: [],
8167
+ pathParams: ["customerId", "customerTagsUid"],
8168
+ queryParams: [],
8169
+ edgeCache: false,
8170
+ responseSchema: CustomerTagsDataSchema,
8171
+ responseType: "object"
8012
8172
  },
8013
8173
  {
8014
8174
  method: "GET",
@@ -10000,7 +10160,7 @@ var RtsBrandsListParamsSchema = v25.looseObject({
10000
10160
  ...EdgeCacheParamsSchema.entries,
10001
10161
  search: v25.optional(v25.string())
10002
10162
  });
10003
- var RtsBrandsMachinesListParamsSchema = v25.looseObject({
10163
+ var RtsBrandsBrandIdMachinesListParamsSchema = v25.looseObject({
10004
10164
  ...EdgeCacheParamsSchema.entries,
10005
10165
  search: v25.optional(v25.string())
10006
10166
  });
@@ -10120,7 +10280,20 @@ var endpoints18 = [
10120
10280
  action: "list",
10121
10281
  aliases: [],
10122
10282
  pathParams: [],
10123
- queryParams: ["fromAddress1", "fromCity", "fromCountryCode", "fromPostalCode", "fromStateProvinceCode", "toAddress1", "toCity", "toCountryCode", "toPostalCode", "toResidential", "toStateProvinceCode", "weight"],
10283
+ queryParams: [
10284
+ "fromAddress1",
10285
+ "fromCity",
10286
+ "fromCountryCode",
10287
+ "fromPostalCode",
10288
+ "fromStateProvinceCode",
10289
+ "toAddress1",
10290
+ "toCity",
10291
+ "toCountryCode",
10292
+ "toPostalCode",
10293
+ "toResidential",
10294
+ "toStateProvinceCode",
10295
+ "weight"
10296
+ ],
10124
10297
  edgeCache: true,
10125
10298
  responseSchema: PassthroughDataSchema18,
10126
10299
  responseType: "passthrough"
@@ -10139,11 +10312,11 @@ var endpoints18 = [
10139
10312
  },
10140
10313
  {
10141
10314
  method: "GET",
10142
- path: "/rts/brands/<brandId:d+>/machines",
10143
- chain: "rts.brands.<brandId:d+>.machines",
10315
+ path: "/rts/brands/{brandId}/machines",
10316
+ chain: "rts.brands.brandId.machines",
10144
10317
  action: "list",
10145
10318
  aliases: [],
10146
- pathParams: [],
10319
+ pathParams: ["brandId"],
10147
10320
  queryParams: ["search"],
10148
10321
  edgeCache: true,
10149
10322
  responseSchema: PassthroughDataSchema18,
@@ -10151,11 +10324,11 @@ var endpoints18 = [
10151
10324
  },
10152
10325
  {
10153
10326
  method: "GET",
10154
- path: "/rts/machines/<machineId:d+>/tracks",
10155
- chain: "rts.machines.<machineId:d+>.tracks",
10327
+ path: "/rts/machines/{machineId}/tracks",
10328
+ chain: "rts.machines.machineId.tracks",
10156
10329
  action: "list",
10157
10330
  aliases: [],
10158
- pathParams: [],
10331
+ pathParams: ["machineId"],
10159
10332
  queryParams: [],
10160
10333
  edgeCache: true,
10161
10334
  responseSchema: PassthroughDataSchema18,
@@ -10175,11 +10348,11 @@ var endpoints18 = [
10175
10348
  },
10176
10349
  {
10177
10350
  method: "GET",
10178
- path: "/rts/track/<trackId:d+>",
10179
- chain: "rts.track.<trackId:d+>",
10351
+ path: "/rts/track/{trackId}",
10352
+ chain: "rts.track.trackId",
10180
10353
  action: "list",
10181
10354
  aliases: [],
10182
- pathParams: [],
10355
+ pathParams: ["trackId"],
10183
10356
  queryParams: [],
10184
10357
  edgeCache: true,
10185
10358
  responseSchema: PassthroughDataSchema18,
@@ -10204,7 +10377,26 @@ var endpoints18 = [
10204
10377
  action: "list",
10205
10378
  aliases: [],
10206
10379
  pathParams: [],
10207
- queryParams: ["carriers", "dimensionUnit", "fromCity", "fromCountry", "fromPostalCode", "fromState", "locationId", "packageHeight", "packageLength", "packageWidth", "residential", "serviceType", "toCity", "toCountry", "toPostalCode", "toState", "totalWeight", "weightUnit"],
10380
+ queryParams: [
10381
+ "carriers",
10382
+ "dimensionUnit",
10383
+ "fromCity",
10384
+ "fromCountry",
10385
+ "fromPostalCode",
10386
+ "fromState",
10387
+ "locationId",
10388
+ "packageHeight",
10389
+ "packageLength",
10390
+ "packageWidth",
10391
+ "residential",
10392
+ "serviceType",
10393
+ "toCity",
10394
+ "toCountry",
10395
+ "toPostalCode",
10396
+ "toState",
10397
+ "totalWeight",
10398
+ "weightUnit"
10399
+ ],
10208
10400
  edgeCache: true,
10209
10401
  responseSchema: PassthroughDataSchema18,
10210
10402
  responseType: "passthrough"
@@ -10216,7 +10408,31 @@ var endpoints18 = [
10216
10408
  action: "list",
10217
10409
  aliases: [],
10218
10410
  pathParams: [],
10219
- queryParams: ["carriers", "commodityClass", "commodityDescription", "deliveryInstructions", "dimensionUnit", "fromCity", "fromCountry", "fromPostalCode", "fromState", "isHazMat", "locationId", "packageHeight", "packageLength", "packageWidth", "packagingType", "pickupInstructions", "quantity", "toCity", "toCountry", "toPostalCode", "toState", "totalWeight", "weightUnit"],
10411
+ queryParams: [
10412
+ "carriers",
10413
+ "commodityClass",
10414
+ "commodityDescription",
10415
+ "deliveryInstructions",
10416
+ "dimensionUnit",
10417
+ "fromCity",
10418
+ "fromCountry",
10419
+ "fromPostalCode",
10420
+ "fromState",
10421
+ "isHazMat",
10422
+ "locationId",
10423
+ "packageHeight",
10424
+ "packageLength",
10425
+ "packageWidth",
10426
+ "packagingType",
10427
+ "pickupInstructions",
10428
+ "quantity",
10429
+ "toCity",
10430
+ "toCountry",
10431
+ "toPostalCode",
10432
+ "toState",
10433
+ "totalWeight",
10434
+ "weightUnit"
10435
+ ],
10220
10436
  edgeCache: true,
10221
10437
  responseSchema: PassthroughDataSchema18,
10222
10438
  responseType: "passthrough"
@@ -10228,7 +10444,40 @@ var endpoints18 = [
10228
10444
  action: "list",
10229
10445
  aliases: [],
10230
10446
  pathParams: [],
10231
- queryParams: ["deliveryInstructions", "dimensionUnit", "fromAddressLine", "fromCity", "fromCompanyName", "fromCountryCode", "fromFirstName", "fromLastName", "fromPhone", "fromPostalCode", "fromState", "handlingCharge", "handlingChargeUnit", "international", "packageHeight", "packageLength", "packageWidth", "pickupInstructions", "productType", "quantity", "responseFormat", "toAddressLine", "toCity", "toCompanyName", "toCountryCode", "toFirstName", "toLastName", "toPhone", "toPostalCode", "toRegion", "totalWeight", "weightUnit"],
10447
+ queryParams: [
10448
+ "deliveryInstructions",
10449
+ "dimensionUnit",
10450
+ "fromAddressLine",
10451
+ "fromCity",
10452
+ "fromCompanyName",
10453
+ "fromCountryCode",
10454
+ "fromFirstName",
10455
+ "fromLastName",
10456
+ "fromPhone",
10457
+ "fromPostalCode",
10458
+ "fromState",
10459
+ "handlingCharge",
10460
+ "handlingChargeUnit",
10461
+ "international",
10462
+ "packageHeight",
10463
+ "packageLength",
10464
+ "packageWidth",
10465
+ "pickupInstructions",
10466
+ "productType",
10467
+ "quantity",
10468
+ "responseFormat",
10469
+ "toAddressLine",
10470
+ "toCity",
10471
+ "toCompanyName",
10472
+ "toCountryCode",
10473
+ "toFirstName",
10474
+ "toLastName",
10475
+ "toPhone",
10476
+ "toPostalCode",
10477
+ "toRegion",
10478
+ "totalWeight",
10479
+ "weightUnit"
10480
+ ],
10232
10481
  edgeCache: true,
10233
10482
  responseSchema: PassthroughDataSchema18,
10234
10483
  responseType: "passthrough"
@@ -10240,7 +10489,19 @@ var endpoints18 = [
10240
10489
  action: "list",
10241
10490
  aliases: [],
10242
10491
  pathParams: [],
10243
- queryParams: ["fromAddress1", "fromCity", "fromCountryCode", "fromPostalCode", "fromStateProvinceCode", "toAddress1", "toCity", "toCountryCode", "toPostalCode", "toStateProvinceCode", "weight"],
10492
+ queryParams: [
10493
+ "fromAddress1",
10494
+ "fromCity",
10495
+ "fromCountryCode",
10496
+ "fromPostalCode",
10497
+ "fromStateProvinceCode",
10498
+ "toAddress1",
10499
+ "toCity",
10500
+ "toCountryCode",
10501
+ "toPostalCode",
10502
+ "toStateProvinceCode",
10503
+ "weight"
10504
+ ],
10244
10505
  edgeCache: true,
10245
10506
  responseSchema: PassthroughDataSchema18,
10246
10507
  responseType: "passthrough"
@@ -10409,6 +10670,9 @@ var LogisticsClient = class extends BaseServiceClient {
10409
10670
  this.healthCheckData = createHealthCheckDataResource19(this.healthCheck);
10410
10671
  this.pingData = createPingDataResource9(this.ping);
10411
10672
  }
10673
+ getServiceDescription() {
10674
+ return "Multi-carrier shipping logistics for label generation, tracking, and delivery coordination";
10675
+ }
10412
10676
  };
10413
10677
 
10414
10678
  // src/services/p21-apis/generated/schemas.ts
@@ -13879,7 +14143,7 @@ function createCrossSiteAuthenticator(augurInfoToken) {
13879
14143
  }
13880
14144
 
13881
14145
  // src/index.ts
13882
- var VERSION = "2026.5.2";
14146
+ var VERSION = "2026.5.4";
13883
14147
  export {
13884
14148
  AgrInfoClient,
13885
14149
  AgrSiteClient,