@simpleapps-com/augur-api 2026.5.1 → 2026.5.2

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.
@@ -5251,11 +5251,47 @@ declare class GregorovichClient extends BaseServiceClient {
5251
5251
  /**
5252
5252
  * Generated types for logistics service
5253
5253
  * Source: shared/specs/logistics.json
5254
- * Generated: 2026-04-27T16:13:32Z
5254
+ * Generated: 2026-05-11T16:40:49Z
5255
5255
  *
5256
5256
  * DO NOT EDIT — regenerate with: python shared/scripts/generate-ts.py
5257
5257
  */
5258
5258
 
5259
+ /** Params for GET /fedex/rates */
5260
+ interface FedexRatesListParams extends EdgeCacheParams {
5261
+ fromAddress1: string;
5262
+ fromCity: string;
5263
+ fromCountryCode?: string;
5264
+ fromPostalCode: string;
5265
+ fromStateProvinceCode: string;
5266
+ toAddress1: string;
5267
+ toCity: string;
5268
+ toCountryCode?: string;
5269
+ toPostalCode: string;
5270
+ toResidential?: boolean;
5271
+ toStateProvinceCode: string;
5272
+ weight: number;
5273
+ }
5274
+ /** Params for GET /rts/brands */
5275
+ interface RtsBrandsListParams extends EdgeCacheParams {
5276
+ search?: string;
5277
+ }
5278
+ /** Params for GET /rts/brands/<brandId:\d+>/machines */
5279
+ interface RtsBrandsMachinesListParams extends EdgeCacheParams {
5280
+ search?: string;
5281
+ }
5282
+ /** Params for GET /rts/machines/<machineId:\d+>/tracks */
5283
+ type RtsMachinesTracksListParams = EdgeCacheParams;
5284
+ /** Params for GET /rts/search/machines */
5285
+ interface RtsSearchMachinesListParams extends EdgeCacheParams {
5286
+ q: string;
5287
+ }
5288
+ /** Params for GET /rts/track/<trackId:\d+> */
5289
+ type RtsTrackListParams = EdgeCacheParams;
5290
+ /** Params for GET /rts/tracks */
5291
+ interface RtsTracksListParams extends EdgeCacheParams {
5292
+ search?: string;
5293
+ trackClass?: string;
5294
+ }
5259
5295
  /** Params for GET /shipvia/rates */
5260
5296
  interface ShipviaRatesListParams extends EdgeCacheParams {
5261
5297
  carriers?: string;
@@ -5353,6 +5389,41 @@ interface UPSRatesListParams extends EdgeCacheParams {
5353
5389
  weight: number;
5354
5390
  }
5355
5391
  interface LogisticsClientSpec {
5392
+ fedex: {
5393
+ rates: {
5394
+ list: (params?: FedexRatesListParams) => Promise<BaseResponse<Record<string, unknown>>>;
5395
+ };
5396
+ };
5397
+ rts: {
5398
+ brands: {
5399
+ list: (params?: RtsBrandsListParams) => Promise<BaseResponse<Record<string, unknown>>>;
5400
+ withBrandId: {
5401
+ machines: {
5402
+ list: (params?: RtsBrandsMachinesListParams) => Promise<BaseResponse<Record<string, unknown>>>;
5403
+ };
5404
+ };
5405
+ };
5406
+ machines: {
5407
+ withMachineId: {
5408
+ tracks: {
5409
+ list: (params?: RtsMachinesTracksListParams) => Promise<BaseResponse<Record<string, unknown>>>;
5410
+ };
5411
+ };
5412
+ };
5413
+ search: {
5414
+ machines: {
5415
+ list: (params?: RtsSearchMachinesListParams) => Promise<BaseResponse<Record<string, unknown>>>;
5416
+ };
5417
+ };
5418
+ track: {
5419
+ withTrackId: {
5420
+ list: (params?: RtsTrackListParams) => Promise<BaseResponse<Record<string, unknown>>>;
5421
+ };
5422
+ };
5423
+ tracks: {
5424
+ list: (params?: RtsTracksListParams) => Promise<BaseResponse<Record<string, unknown>>>;
5425
+ };
5426
+ };
5356
5427
  shipvia: {
5357
5428
  rates: {
5358
5429
  list: (params?: ShipviaRatesListParams) => Promise<BaseResponse<Record<string, unknown>>>;
@@ -5492,15 +5563,19 @@ type PingDataResource$2 = ReturnType<typeof createPingDataResource$2>;
5492
5563
  /**
5493
5564
  * Generated client for logistics service
5494
5565
  * Source: shared/specs/logistics.json
5495
- * Generated: 2026-04-27T16:13:32Z
5566
+ * Generated: 2026-05-11T16:40:49Z
5496
5567
  *
5497
5568
  * DO NOT EDIT — regenerate with: python shared/scripts/generate-ts.py
5498
5569
  */
5499
5570
 
5500
5571
  declare class LogisticsClient extends BaseServiceClient {
5572
+ readonly fedex: LogisticsClientSpec['fedex'];
5573
+ readonly rts: LogisticsClientSpec['rts'];
5501
5574
  readonly shipvia: LogisticsClientSpec['shipvia'];
5502
5575
  readonly speedship: LogisticsClientSpec['speedship'];
5503
5576
  readonly ups: LogisticsClientSpec['ups'];
5577
+ readonly fedexData: LogisticsClientSpec['fedex'];
5578
+ readonly rtsData: LogisticsClientSpec['rts'];
5504
5579
  readonly shipviaData: LogisticsClientSpec['shipvia'];
5505
5580
  readonly speedshipData: LogisticsClientSpec['speedship'];
5506
5581
  readonly upsData: LogisticsClientSpec['ups'];
@@ -5251,11 +5251,47 @@ declare class GregorovichClient extends BaseServiceClient {
5251
5251
  /**
5252
5252
  * Generated types for logistics service
5253
5253
  * Source: shared/specs/logistics.json
5254
- * Generated: 2026-04-27T16:13:32Z
5254
+ * Generated: 2026-05-11T16:40:49Z
5255
5255
  *
5256
5256
  * DO NOT EDIT — regenerate with: python shared/scripts/generate-ts.py
5257
5257
  */
5258
5258
 
5259
+ /** Params for GET /fedex/rates */
5260
+ interface FedexRatesListParams extends EdgeCacheParams {
5261
+ fromAddress1: string;
5262
+ fromCity: string;
5263
+ fromCountryCode?: string;
5264
+ fromPostalCode: string;
5265
+ fromStateProvinceCode: string;
5266
+ toAddress1: string;
5267
+ toCity: string;
5268
+ toCountryCode?: string;
5269
+ toPostalCode: string;
5270
+ toResidential?: boolean;
5271
+ toStateProvinceCode: string;
5272
+ weight: number;
5273
+ }
5274
+ /** Params for GET /rts/brands */
5275
+ interface RtsBrandsListParams extends EdgeCacheParams {
5276
+ search?: string;
5277
+ }
5278
+ /** Params for GET /rts/brands/<brandId:\d+>/machines */
5279
+ interface RtsBrandsMachinesListParams extends EdgeCacheParams {
5280
+ search?: string;
5281
+ }
5282
+ /** Params for GET /rts/machines/<machineId:\d+>/tracks */
5283
+ type RtsMachinesTracksListParams = EdgeCacheParams;
5284
+ /** Params for GET /rts/search/machines */
5285
+ interface RtsSearchMachinesListParams extends EdgeCacheParams {
5286
+ q: string;
5287
+ }
5288
+ /** Params for GET /rts/track/<trackId:\d+> */
5289
+ type RtsTrackListParams = EdgeCacheParams;
5290
+ /** Params for GET /rts/tracks */
5291
+ interface RtsTracksListParams extends EdgeCacheParams {
5292
+ search?: string;
5293
+ trackClass?: string;
5294
+ }
5259
5295
  /** Params for GET /shipvia/rates */
5260
5296
  interface ShipviaRatesListParams extends EdgeCacheParams {
5261
5297
  carriers?: string;
@@ -5353,6 +5389,41 @@ interface UPSRatesListParams extends EdgeCacheParams {
5353
5389
  weight: number;
5354
5390
  }
5355
5391
  interface LogisticsClientSpec {
5392
+ fedex: {
5393
+ rates: {
5394
+ list: (params?: FedexRatesListParams) => Promise<BaseResponse<Record<string, unknown>>>;
5395
+ };
5396
+ };
5397
+ rts: {
5398
+ brands: {
5399
+ list: (params?: RtsBrandsListParams) => Promise<BaseResponse<Record<string, unknown>>>;
5400
+ withBrandId: {
5401
+ machines: {
5402
+ list: (params?: RtsBrandsMachinesListParams) => Promise<BaseResponse<Record<string, unknown>>>;
5403
+ };
5404
+ };
5405
+ };
5406
+ machines: {
5407
+ withMachineId: {
5408
+ tracks: {
5409
+ list: (params?: RtsMachinesTracksListParams) => Promise<BaseResponse<Record<string, unknown>>>;
5410
+ };
5411
+ };
5412
+ };
5413
+ search: {
5414
+ machines: {
5415
+ list: (params?: RtsSearchMachinesListParams) => Promise<BaseResponse<Record<string, unknown>>>;
5416
+ };
5417
+ };
5418
+ track: {
5419
+ withTrackId: {
5420
+ list: (params?: RtsTrackListParams) => Promise<BaseResponse<Record<string, unknown>>>;
5421
+ };
5422
+ };
5423
+ tracks: {
5424
+ list: (params?: RtsTracksListParams) => Promise<BaseResponse<Record<string, unknown>>>;
5425
+ };
5426
+ };
5356
5427
  shipvia: {
5357
5428
  rates: {
5358
5429
  list: (params?: ShipviaRatesListParams) => Promise<BaseResponse<Record<string, unknown>>>;
@@ -5492,15 +5563,19 @@ type PingDataResource$2 = ReturnType<typeof createPingDataResource$2>;
5492
5563
  /**
5493
5564
  * Generated client for logistics service
5494
5565
  * Source: shared/specs/logistics.json
5495
- * Generated: 2026-04-27T16:13:32Z
5566
+ * Generated: 2026-05-11T16:40:49Z
5496
5567
  *
5497
5568
  * DO NOT EDIT — regenerate with: python shared/scripts/generate-ts.py
5498
5569
  */
5499
5570
 
5500
5571
  declare class LogisticsClient extends BaseServiceClient {
5572
+ readonly fedex: LogisticsClientSpec['fedex'];
5573
+ readonly rts: LogisticsClientSpec['rts'];
5501
5574
  readonly shipvia: LogisticsClientSpec['shipvia'];
5502
5575
  readonly speedship: LogisticsClientSpec['speedship'];
5503
5576
  readonly ups: LogisticsClientSpec['ups'];
5577
+ readonly fedexData: LogisticsClientSpec['fedex'];
5578
+ readonly rtsData: LogisticsClientSpec['rts'];
5504
5579
  readonly shipviaData: LogisticsClientSpec['shipvia'];
5505
5580
  readonly speedshipData: LogisticsClientSpec['speedship'];
5506
5581
  readonly upsData: LogisticsClientSpec['ups'];
package/dist/index.d.mts CHANGED
@@ -1,5 +1,5 @@
1
- import { A as AugurAPI } from './client-NpWuyWjM.mjs';
2
- export { a as AgrInfoClient, b as AgrSiteClient, c as AgrWorkClient, d as AugurAPIConfig, e as AugurContext, f as AugurRequestConfig, g as AugurRequestError, h as AugurResponse, i as AvalaraClient, B as BaseResponse, j as BaseResponseSchema, k as Basecamp2Client, l as BrandFolderClient, C as CommerceClient, m as ContextCreationError, n as CustomersClient, D as DiscoveryEndpoint, E as EndpointSearchResult, G as GregorovichClient, H as HealthCheckData, o as HealthCheckDataSchema, I as ItemsClient, J as JoomlaClient, L as LegacyClient, p as LogisticsClient, N as NexusClient, O as OpenSearchClient, q as OrdersClient, P as P21ApisClient, r as P21CoreClient, s as P21PimClient, t as P21SismClient, u as PaginationParamsSchema, v as PaymentsClient, w as PricingClient, R as RequestConfig, S as ServiceMap, x as ShippingClient, y as SlackClient, z as SmartyStreetsClient, U as UPSClient, V as VMIClient } from './client-NpWuyWjM.mjs';
1
+ import { A as AugurAPI } from './client-pm1Lbe9X.mjs';
2
+ export { a as AgrInfoClient, b as AgrSiteClient, c as AgrWorkClient, d as AugurAPIConfig, e as AugurContext, f as AugurRequestConfig, g as AugurRequestError, h as AugurResponse, i as AvalaraClient, B as BaseResponse, j as BaseResponseSchema, k as Basecamp2Client, l as BrandFolderClient, C as CommerceClient, m as ContextCreationError, n as CustomersClient, D as DiscoveryEndpoint, E as EndpointSearchResult, G as GregorovichClient, H as HealthCheckData, o as HealthCheckDataSchema, I as ItemsClient, J as JoomlaClient, L as LegacyClient, p as LogisticsClient, N as NexusClient, O as OpenSearchClient, q as OrdersClient, P as P21ApisClient, r as P21CoreClient, s as P21PimClient, t as P21SismClient, u as PaginationParamsSchema, v as PaymentsClient, w as PricingClient, R as RequestConfig, S as ServiceMap, x as ShippingClient, y as SlackClient, z as SmartyStreetsClient, U as UPSClient, V as VMIClient } from './client-pm1Lbe9X.mjs';
3
3
  import 'valibot';
4
4
 
5
5
  /**
@@ -173,6 +173,6 @@ declare class RateLimitError extends AugurError {
173
173
  });
174
174
  }
175
175
 
176
- declare const VERSION = "2026.5.1";
176
+ declare const VERSION = "2026.5.2";
177
177
 
178
178
  export { AugurAPI, type AugurAPIError, AugurError, AuthenticationError, type CrossSiteAuthParams, type CrossSiteAuthResult, NotFoundError, RateLimitError, VERSION, ValidationError, authenticateUserForSite, createCrossSiteAuthenticator };
package/dist/index.d.ts CHANGED
@@ -1,5 +1,5 @@
1
- import { A as AugurAPI } from './client-NpWuyWjM.js';
2
- export { a as AgrInfoClient, b as AgrSiteClient, c as AgrWorkClient, d as AugurAPIConfig, e as AugurContext, f as AugurRequestConfig, g as AugurRequestError, h as AugurResponse, i as AvalaraClient, B as BaseResponse, j as BaseResponseSchema, k as Basecamp2Client, l as BrandFolderClient, C as CommerceClient, m as ContextCreationError, n as CustomersClient, D as DiscoveryEndpoint, E as EndpointSearchResult, G as GregorovichClient, H as HealthCheckData, o as HealthCheckDataSchema, I as ItemsClient, J as JoomlaClient, L as LegacyClient, p as LogisticsClient, N as NexusClient, O as OpenSearchClient, q as OrdersClient, P as P21ApisClient, r as P21CoreClient, s as P21PimClient, t as P21SismClient, u as PaginationParamsSchema, v as PaymentsClient, w as PricingClient, R as RequestConfig, S as ServiceMap, x as ShippingClient, y as SlackClient, z as SmartyStreetsClient, U as UPSClient, V as VMIClient } from './client-NpWuyWjM.js';
1
+ import { A as AugurAPI } from './client-pm1Lbe9X.js';
2
+ export { a as AgrInfoClient, b as AgrSiteClient, c as AgrWorkClient, d as AugurAPIConfig, e as AugurContext, f as AugurRequestConfig, g as AugurRequestError, h as AugurResponse, i as AvalaraClient, B as BaseResponse, j as BaseResponseSchema, k as Basecamp2Client, l as BrandFolderClient, C as CommerceClient, m as ContextCreationError, n as CustomersClient, D as DiscoveryEndpoint, E as EndpointSearchResult, G as GregorovichClient, H as HealthCheckData, o as HealthCheckDataSchema, I as ItemsClient, J as JoomlaClient, L as LegacyClient, p as LogisticsClient, N as NexusClient, O as OpenSearchClient, q as OrdersClient, P as P21ApisClient, r as P21CoreClient, s as P21PimClient, t as P21SismClient, u as PaginationParamsSchema, v as PaymentsClient, w as PricingClient, R as RequestConfig, S as ServiceMap, x as ShippingClient, y as SlackClient, z as SmartyStreetsClient, U as UPSClient, V as VMIClient } from './client-pm1Lbe9X.js';
3
3
  import 'valibot';
4
4
 
5
5
  /**
@@ -173,6 +173,6 @@ declare class RateLimitError extends AugurError {
173
173
  });
174
174
  }
175
175
 
176
- declare const VERSION = "2026.5.1";
176
+ declare const VERSION = "2026.5.2";
177
177
 
178
178
  export { AugurAPI, type AugurAPIError, AugurError, AuthenticationError, type CrossSiteAuthParams, type CrossSiteAuthResult, NotFoundError, RateLimitError, VERSION, ValidationError, authenticateUserForSite, createCrossSiteAuthenticator };
package/dist/index.js CHANGED
@@ -10056,6 +10056,38 @@ var GregorovichClient = class extends BaseServiceClient {
10056
10056
 
10057
10057
  // src/services/logistics/generated/schemas.ts
10058
10058
  var v25 = __toESM(require("valibot"));
10059
+ var FedexRatesListParamsSchema = v25.looseObject({
10060
+ ...EdgeCacheParamsSchema.entries,
10061
+ fromAddress1: v25.string(),
10062
+ fromCity: v25.string(),
10063
+ fromCountryCode: v25.optional(v25.string()),
10064
+ fromPostalCode: v25.string(),
10065
+ fromStateProvinceCode: v25.string(),
10066
+ toAddress1: v25.string(),
10067
+ toCity: v25.string(),
10068
+ toCountryCode: v25.optional(v25.string()),
10069
+ toPostalCode: v25.string(),
10070
+ toResidential: v25.optional(v25.boolean()),
10071
+ toStateProvinceCode: v25.string(),
10072
+ weight: v25.pipe(v25.unknown(), v25.transform(Number))
10073
+ });
10074
+ var RtsBrandsListParamsSchema = v25.looseObject({
10075
+ ...EdgeCacheParamsSchema.entries,
10076
+ search: v25.optional(v25.string())
10077
+ });
10078
+ var RtsBrandsMachinesListParamsSchema = v25.looseObject({
10079
+ ...EdgeCacheParamsSchema.entries,
10080
+ search: v25.optional(v25.string())
10081
+ });
10082
+ var RtsSearchMachinesListParamsSchema = v25.looseObject({
10083
+ ...EdgeCacheParamsSchema.entries,
10084
+ q: v25.string()
10085
+ });
10086
+ var RtsTracksListParamsSchema = v25.looseObject({
10087
+ ...EdgeCacheParamsSchema.entries,
10088
+ search: v25.optional(v25.string()),
10089
+ trackClass: v25.optional(v25.string())
10090
+ });
10059
10091
  var ShipviaRatesListParamsSchema = v25.looseObject({
10060
10092
  ...EdgeCacheParamsSchema.entries,
10061
10093
  carriers: v25.optional(v25.string()),
@@ -10156,6 +10188,90 @@ var PassthroughDataSchema18 = v25.record(v25.string(), v25.unknown());
10156
10188
 
10157
10189
  // src/services/logistics/generated/endpoints.ts
10158
10190
  var endpoints18 = [
10191
+ {
10192
+ method: "GET",
10193
+ path: "/fedex/rates",
10194
+ chain: "fedex.rates",
10195
+ action: "list",
10196
+ aliases: [],
10197
+ pathParams: [],
10198
+ queryParams: ["fromAddress1", "fromCity", "fromCountryCode", "fromPostalCode", "fromStateProvinceCode", "toAddress1", "toCity", "toCountryCode", "toPostalCode", "toResidential", "toStateProvinceCode", "weight"],
10199
+ edgeCache: true,
10200
+ responseSchema: PassthroughDataSchema18,
10201
+ responseType: "passthrough"
10202
+ },
10203
+ {
10204
+ method: "GET",
10205
+ path: "/rts/brands",
10206
+ chain: "rts.brands",
10207
+ action: "list",
10208
+ aliases: [],
10209
+ pathParams: [],
10210
+ queryParams: ["search"],
10211
+ edgeCache: true,
10212
+ responseSchema: PassthroughDataSchema18,
10213
+ responseType: "passthrough"
10214
+ },
10215
+ {
10216
+ method: "GET",
10217
+ path: "/rts/brands/<brandId:d+>/machines",
10218
+ chain: "rts.brands.<brandId:d+>.machines",
10219
+ action: "list",
10220
+ aliases: [],
10221
+ pathParams: [],
10222
+ queryParams: ["search"],
10223
+ edgeCache: true,
10224
+ responseSchema: PassthroughDataSchema18,
10225
+ responseType: "passthrough"
10226
+ },
10227
+ {
10228
+ method: "GET",
10229
+ path: "/rts/machines/<machineId:d+>/tracks",
10230
+ chain: "rts.machines.<machineId:d+>.tracks",
10231
+ action: "list",
10232
+ aliases: [],
10233
+ pathParams: [],
10234
+ queryParams: [],
10235
+ edgeCache: true,
10236
+ responseSchema: PassthroughDataSchema18,
10237
+ responseType: "passthrough"
10238
+ },
10239
+ {
10240
+ method: "GET",
10241
+ path: "/rts/search/machines",
10242
+ chain: "rts.search.machines",
10243
+ action: "list",
10244
+ aliases: [],
10245
+ pathParams: [],
10246
+ queryParams: ["q"],
10247
+ edgeCache: true,
10248
+ responseSchema: PassthroughDataSchema18,
10249
+ responseType: "passthrough"
10250
+ },
10251
+ {
10252
+ method: "GET",
10253
+ path: "/rts/track/<trackId:d+>",
10254
+ chain: "rts.track.<trackId:d+>",
10255
+ action: "list",
10256
+ aliases: [],
10257
+ pathParams: [],
10258
+ queryParams: [],
10259
+ edgeCache: true,
10260
+ responseSchema: PassthroughDataSchema18,
10261
+ responseType: "passthrough"
10262
+ },
10263
+ {
10264
+ method: "GET",
10265
+ path: "/rts/tracks",
10266
+ chain: "rts.tracks",
10267
+ action: "list",
10268
+ aliases: [],
10269
+ pathParams: [],
10270
+ queryParams: ["search", "trackClass"],
10271
+ edgeCache: true,
10272
+ responseSchema: PassthroughDataSchema18,
10273
+ responseType: "passthrough"
10274
+ },
10159
10275
  {
10160
10276
  method: "GET",
10161
10277
  path: "/shipvia/rates",
@@ -10163,26 +10279,7 @@ var endpoints18 = [
10163
10279
  action: "list",
10164
10280
  aliases: [],
10165
10281
  pathParams: [],
10166
- queryParams: [
10167
- "carriers",
10168
- "dimensionUnit",
10169
- "fromCity",
10170
- "fromCountry",
10171
- "fromPostalCode",
10172
- "fromState",
10173
- "locationId",
10174
- "packageHeight",
10175
- "packageLength",
10176
- "packageWidth",
10177
- "residential",
10178
- "serviceType",
10179
- "toCity",
10180
- "toCountry",
10181
- "toPostalCode",
10182
- "toState",
10183
- "totalWeight",
10184
- "weightUnit"
10185
- ],
10282
+ queryParams: ["carriers", "dimensionUnit", "fromCity", "fromCountry", "fromPostalCode", "fromState", "locationId", "packageHeight", "packageLength", "packageWidth", "residential", "serviceType", "toCity", "toCountry", "toPostalCode", "toState", "totalWeight", "weightUnit"],
10186
10283
  edgeCache: true,
10187
10284
  responseSchema: PassthroughDataSchema18,
10188
10285
  responseType: "passthrough"
@@ -10194,31 +10291,7 @@ var endpoints18 = [
10194
10291
  action: "list",
10195
10292
  aliases: [],
10196
10293
  pathParams: [],
10197
- queryParams: [
10198
- "carriers",
10199
- "commodityClass",
10200
- "commodityDescription",
10201
- "deliveryInstructions",
10202
- "dimensionUnit",
10203
- "fromCity",
10204
- "fromCountry",
10205
- "fromPostalCode",
10206
- "fromState",
10207
- "isHazMat",
10208
- "locationId",
10209
- "packageHeight",
10210
- "packageLength",
10211
- "packageWidth",
10212
- "packagingType",
10213
- "pickupInstructions",
10214
- "quantity",
10215
- "toCity",
10216
- "toCountry",
10217
- "toPostalCode",
10218
- "toState",
10219
- "totalWeight",
10220
- "weightUnit"
10221
- ],
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"],
10222
10295
  edgeCache: true,
10223
10296
  responseSchema: PassthroughDataSchema18,
10224
10297
  responseType: "passthrough"
@@ -10230,40 +10303,7 @@ var endpoints18 = [
10230
10303
  action: "list",
10231
10304
  aliases: [],
10232
10305
  pathParams: [],
10233
- queryParams: [
10234
- "deliveryInstructions",
10235
- "dimensionUnit",
10236
- "fromAddressLine",
10237
- "fromCity",
10238
- "fromCompanyName",
10239
- "fromCountryCode",
10240
- "fromFirstName",
10241
- "fromLastName",
10242
- "fromPhone",
10243
- "fromPostalCode",
10244
- "fromState",
10245
- "handlingCharge",
10246
- "handlingChargeUnit",
10247
- "international",
10248
- "packageHeight",
10249
- "packageLength",
10250
- "packageWidth",
10251
- "pickupInstructions",
10252
- "productType",
10253
- "quantity",
10254
- "responseFormat",
10255
- "toAddressLine",
10256
- "toCity",
10257
- "toCompanyName",
10258
- "toCountryCode",
10259
- "toFirstName",
10260
- "toLastName",
10261
- "toPhone",
10262
- "toPostalCode",
10263
- "toRegion",
10264
- "totalWeight",
10265
- "weightUnit"
10266
- ],
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"],
10267
10307
  edgeCache: true,
10268
10308
  responseSchema: PassthroughDataSchema18,
10269
10309
  responseType: "passthrough"
@@ -10275,19 +10315,7 @@ var endpoints18 = [
10275
10315
  action: "list",
10276
10316
  aliases: [],
10277
10317
  pathParams: [],
10278
- queryParams: [
10279
- "fromAddress1",
10280
- "fromCity",
10281
- "fromCountryCode",
10282
- "fromPostalCode",
10283
- "fromStateProvinceCode",
10284
- "toAddress1",
10285
- "toCity",
10286
- "toCountryCode",
10287
- "toPostalCode",
10288
- "toStateProvinceCode",
10289
- "weight"
10290
- ],
10318
+ queryParams: ["fromAddress1", "fromCity", "fromCountryCode", "fromPostalCode", "fromStateProvinceCode", "toAddress1", "toCity", "toCountryCode", "toPostalCode", "toStateProvinceCode", "weight"],
10291
10319
  edgeCache: true,
10292
10320
  responseSchema: PassthroughDataSchema18,
10293
10321
  responseType: "passthrough"
@@ -10441,9 +10469,13 @@ var LogisticsClient = class extends BaseServiceClient {
10441
10469
  endpoints18
10442
10470
  );
10443
10471
  const dataProxy = createDataProxy(proxy);
10472
+ this.fedex = proxy.fedex;
10473
+ this.rts = proxy.rts;
10444
10474
  this.shipvia = proxy.shipvia;
10445
10475
  this.speedship = proxy.speedship;
10446
10476
  this.ups = proxy.ups;
10477
+ this.fedexData = dataProxy.fedex;
10478
+ this.rtsData = dataProxy.rts;
10447
10479
  this.shipviaData = dataProxy.shipvia;
10448
10480
  this.speedshipData = dataProxy.speedship;
10449
10481
  this.upsData = dataProxy.ups;
@@ -13922,7 +13954,7 @@ function createCrossSiteAuthenticator(augurInfoToken) {
13922
13954
  }
13923
13955
 
13924
13956
  // src/index.ts
13925
- var VERSION = "2026.5.1";
13957
+ var VERSION = "2026.5.2";
13926
13958
  // Annotate the CommonJS export names for ESM import in node:
13927
13959
  0 && (module.exports = {
13928
13960
  AgrInfoClient,