@simpleapps-com/augur-api 2026.5.1 → 2026.5.3

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
@@ -9981,6 +9981,38 @@ var GregorovichClient = class extends BaseServiceClient {
9981
9981
 
9982
9982
  // src/services/logistics/generated/schemas.ts
9983
9983
  import * as v25 from "valibot";
9984
+ var FedexRatesListParamsSchema = v25.looseObject({
9985
+ ...EdgeCacheParamsSchema.entries,
9986
+ fromAddress1: v25.string(),
9987
+ fromCity: v25.string(),
9988
+ fromCountryCode: v25.optional(v25.string()),
9989
+ fromPostalCode: v25.string(),
9990
+ fromStateProvinceCode: v25.string(),
9991
+ toAddress1: v25.string(),
9992
+ toCity: v25.string(),
9993
+ toCountryCode: v25.optional(v25.string()),
9994
+ toPostalCode: v25.string(),
9995
+ toResidential: v25.optional(v25.boolean()),
9996
+ toStateProvinceCode: v25.string(),
9997
+ weight: v25.pipe(v25.unknown(), v25.transform(Number))
9998
+ });
9999
+ var RtsBrandsListParamsSchema = v25.looseObject({
10000
+ ...EdgeCacheParamsSchema.entries,
10001
+ search: v25.optional(v25.string())
10002
+ });
10003
+ var RtsBrandsBrandIdMachinesListParamsSchema = v25.looseObject({
10004
+ ...EdgeCacheParamsSchema.entries,
10005
+ search: v25.optional(v25.string())
10006
+ });
10007
+ var RtsSearchMachinesListParamsSchema = v25.looseObject({
10008
+ ...EdgeCacheParamsSchema.entries,
10009
+ q: v25.string()
10010
+ });
10011
+ var RtsTracksListParamsSchema = v25.looseObject({
10012
+ ...EdgeCacheParamsSchema.entries,
10013
+ search: v25.optional(v25.string()),
10014
+ trackClass: v25.optional(v25.string())
10015
+ });
9984
10016
  var ShipviaRatesListParamsSchema = v25.looseObject({
9985
10017
  ...EdgeCacheParamsSchema.entries,
9986
10018
  carriers: v25.optional(v25.string()),
@@ -10081,6 +10113,103 @@ var PassthroughDataSchema18 = v25.record(v25.string(), v25.unknown());
10081
10113
 
10082
10114
  // src/services/logistics/generated/endpoints.ts
10083
10115
  var endpoints18 = [
10116
+ {
10117
+ method: "GET",
10118
+ path: "/fedex/rates",
10119
+ chain: "fedex.rates",
10120
+ action: "list",
10121
+ aliases: [],
10122
+ pathParams: [],
10123
+ queryParams: [
10124
+ "fromAddress1",
10125
+ "fromCity",
10126
+ "fromCountryCode",
10127
+ "fromPostalCode",
10128
+ "fromStateProvinceCode",
10129
+ "toAddress1",
10130
+ "toCity",
10131
+ "toCountryCode",
10132
+ "toPostalCode",
10133
+ "toResidential",
10134
+ "toStateProvinceCode",
10135
+ "weight"
10136
+ ],
10137
+ edgeCache: true,
10138
+ responseSchema: PassthroughDataSchema18,
10139
+ responseType: "passthrough"
10140
+ },
10141
+ {
10142
+ method: "GET",
10143
+ path: "/rts/brands",
10144
+ chain: "rts.brands",
10145
+ action: "list",
10146
+ aliases: [],
10147
+ pathParams: [],
10148
+ queryParams: ["search"],
10149
+ edgeCache: true,
10150
+ responseSchema: PassthroughDataSchema18,
10151
+ responseType: "passthrough"
10152
+ },
10153
+ {
10154
+ method: "GET",
10155
+ path: "/rts/brands/{brandId}/machines",
10156
+ chain: "rts.brands.brandId.machines",
10157
+ action: "list",
10158
+ aliases: [],
10159
+ pathParams: ["brandId"],
10160
+ queryParams: ["search"],
10161
+ edgeCache: true,
10162
+ responseSchema: PassthroughDataSchema18,
10163
+ responseType: "passthrough"
10164
+ },
10165
+ {
10166
+ method: "GET",
10167
+ path: "/rts/machines/{machineId}/tracks",
10168
+ chain: "rts.machines.machineId.tracks",
10169
+ action: "list",
10170
+ aliases: [],
10171
+ pathParams: ["machineId"],
10172
+ queryParams: [],
10173
+ edgeCache: true,
10174
+ responseSchema: PassthroughDataSchema18,
10175
+ responseType: "passthrough"
10176
+ },
10177
+ {
10178
+ method: "GET",
10179
+ path: "/rts/search/machines",
10180
+ chain: "rts.search.machines",
10181
+ action: "list",
10182
+ aliases: [],
10183
+ pathParams: [],
10184
+ queryParams: ["q"],
10185
+ edgeCache: true,
10186
+ responseSchema: PassthroughDataSchema18,
10187
+ responseType: "passthrough"
10188
+ },
10189
+ {
10190
+ method: "GET",
10191
+ path: "/rts/track/{trackId}",
10192
+ chain: "rts.track.trackId",
10193
+ action: "list",
10194
+ aliases: [],
10195
+ pathParams: ["trackId"],
10196
+ queryParams: [],
10197
+ edgeCache: true,
10198
+ responseSchema: PassthroughDataSchema18,
10199
+ responseType: "passthrough"
10200
+ },
10201
+ {
10202
+ method: "GET",
10203
+ path: "/rts/tracks",
10204
+ chain: "rts.tracks",
10205
+ action: "list",
10206
+ aliases: [],
10207
+ pathParams: [],
10208
+ queryParams: ["search", "trackClass"],
10209
+ edgeCache: true,
10210
+ responseSchema: PassthroughDataSchema18,
10211
+ responseType: "passthrough"
10212
+ },
10084
10213
  {
10085
10214
  method: "GET",
10086
10215
  path: "/shipvia/rates",
@@ -10366,9 +10495,13 @@ var LogisticsClient = class extends BaseServiceClient {
10366
10495
  endpoints18
10367
10496
  );
10368
10497
  const dataProxy = createDataProxy(proxy);
10498
+ this.fedex = proxy.fedex;
10499
+ this.rts = proxy.rts;
10369
10500
  this.shipvia = proxy.shipvia;
10370
10501
  this.speedship = proxy.speedship;
10371
10502
  this.ups = proxy.ups;
10503
+ this.fedexData = dataProxy.fedex;
10504
+ this.rtsData = dataProxy.rts;
10372
10505
  this.shipviaData = dataProxy.shipvia;
10373
10506
  this.speedshipData = dataProxy.speedship;
10374
10507
  this.upsData = dataProxy.ups;
@@ -10377,6 +10510,9 @@ var LogisticsClient = class extends BaseServiceClient {
10377
10510
  this.healthCheckData = createHealthCheckDataResource19(this.healthCheck);
10378
10511
  this.pingData = createPingDataResource9(this.ping);
10379
10512
  }
10513
+ getServiceDescription() {
10514
+ return "Multi-carrier shipping logistics for label generation, tracking, and delivery coordination";
10515
+ }
10380
10516
  };
10381
10517
 
10382
10518
  // src/services/p21-apis/generated/schemas.ts
@@ -13847,7 +13983,7 @@ function createCrossSiteAuthenticator(augurInfoToken) {
13847
13983
  }
13848
13984
 
13849
13985
  // src/index.ts
13850
- var VERSION = "2026.5.1";
13986
+ var VERSION = "2026.5.3";
13851
13987
  export {
13852
13988
  AgrInfoClient,
13853
13989
  AgrSiteClient,