@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.
@@ -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-12T02:26:15Z
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}/machines */
5279
+ interface RtsBrandsBrandIdMachinesListParams extends EdgeCacheParams {
5280
+ search?: string;
5281
+ }
5282
+ /** Params for GET /rts/machines/{machineId}/tracks */
5283
+ type RtsMachinesMachineIdTracksListParams = EdgeCacheParams;
5284
+ /** Params for GET /rts/search/machines */
5285
+ interface RtsSearchMachinesListParams extends EdgeCacheParams {
5286
+ q: string;
5287
+ }
5288
+ /** Params for GET /rts/track/{trackId} */
5289
+ type RtsTrackTrackIdListParams = 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
+ brandId: {
5401
+ machines: {
5402
+ list: (brandId: number, params?: RtsBrandsBrandIdMachinesListParams) => Promise<BaseResponse<Record<string, unknown>>>;
5403
+ };
5404
+ };
5405
+ };
5406
+ machines: {
5407
+ machineId: {
5408
+ tracks: {
5409
+ list: (machineId: number, params?: RtsMachinesMachineIdTracksListParams) => 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
+ trackId: {
5420
+ list: (trackId: number, params?: RtsTrackTrackIdListParams) => 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-12T02:26:15Z
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'];
@@ -5509,6 +5584,7 @@ declare class LogisticsClient extends BaseServiceClient {
5509
5584
  readonly ping: PingResource$2;
5510
5585
  readonly pingData: PingDataResource$2;
5511
5586
  constructor(http: HTTPClient, baseUrl?: string);
5587
+ protected getServiceDescription(): string;
5512
5588
  }
5513
5589
 
5514
5590
  /**
@@ -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-12T02:26:15Z
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}/machines */
5279
+ interface RtsBrandsBrandIdMachinesListParams extends EdgeCacheParams {
5280
+ search?: string;
5281
+ }
5282
+ /** Params for GET /rts/machines/{machineId}/tracks */
5283
+ type RtsMachinesMachineIdTracksListParams = EdgeCacheParams;
5284
+ /** Params for GET /rts/search/machines */
5285
+ interface RtsSearchMachinesListParams extends EdgeCacheParams {
5286
+ q: string;
5287
+ }
5288
+ /** Params for GET /rts/track/{trackId} */
5289
+ type RtsTrackTrackIdListParams = 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
+ brandId: {
5401
+ machines: {
5402
+ list: (brandId: number, params?: RtsBrandsBrandIdMachinesListParams) => Promise<BaseResponse<Record<string, unknown>>>;
5403
+ };
5404
+ };
5405
+ };
5406
+ machines: {
5407
+ machineId: {
5408
+ tracks: {
5409
+ list: (machineId: number, params?: RtsMachinesMachineIdTracksListParams) => 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
+ trackId: {
5420
+ list: (trackId: number, params?: RtsTrackTrackIdListParams) => 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-12T02:26:15Z
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'];
@@ -5509,6 +5584,7 @@ declare class LogisticsClient extends BaseServiceClient {
5509
5584
  readonly ping: PingResource$2;
5510
5585
  readonly pingData: PingDataResource$2;
5511
5586
  constructor(http: HTTPClient, baseUrl?: string);
5587
+ protected getServiceDescription(): string;
5512
5588
  }
5513
5589
 
5514
5590
  /**
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-BWdCuQ4m.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-BWdCuQ4m.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.3";
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-BWdCuQ4m.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-BWdCuQ4m.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.3";
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 RtsBrandsBrandIdMachinesListParamsSchema = 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,103 @@ 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: [
10199
+ "fromAddress1",
10200
+ "fromCity",
10201
+ "fromCountryCode",
10202
+ "fromPostalCode",
10203
+ "fromStateProvinceCode",
10204
+ "toAddress1",
10205
+ "toCity",
10206
+ "toCountryCode",
10207
+ "toPostalCode",
10208
+ "toResidential",
10209
+ "toStateProvinceCode",
10210
+ "weight"
10211
+ ],
10212
+ edgeCache: true,
10213
+ responseSchema: PassthroughDataSchema18,
10214
+ responseType: "passthrough"
10215
+ },
10216
+ {
10217
+ method: "GET",
10218
+ path: "/rts/brands",
10219
+ chain: "rts.brands",
10220
+ action: "list",
10221
+ aliases: [],
10222
+ pathParams: [],
10223
+ queryParams: ["search"],
10224
+ edgeCache: true,
10225
+ responseSchema: PassthroughDataSchema18,
10226
+ responseType: "passthrough"
10227
+ },
10228
+ {
10229
+ method: "GET",
10230
+ path: "/rts/brands/{brandId}/machines",
10231
+ chain: "rts.brands.brandId.machines",
10232
+ action: "list",
10233
+ aliases: [],
10234
+ pathParams: ["brandId"],
10235
+ queryParams: ["search"],
10236
+ edgeCache: true,
10237
+ responseSchema: PassthroughDataSchema18,
10238
+ responseType: "passthrough"
10239
+ },
10240
+ {
10241
+ method: "GET",
10242
+ path: "/rts/machines/{machineId}/tracks",
10243
+ chain: "rts.machines.machineId.tracks",
10244
+ action: "list",
10245
+ aliases: [],
10246
+ pathParams: ["machineId"],
10247
+ queryParams: [],
10248
+ edgeCache: true,
10249
+ responseSchema: PassthroughDataSchema18,
10250
+ responseType: "passthrough"
10251
+ },
10252
+ {
10253
+ method: "GET",
10254
+ path: "/rts/search/machines",
10255
+ chain: "rts.search.machines",
10256
+ action: "list",
10257
+ aliases: [],
10258
+ pathParams: [],
10259
+ queryParams: ["q"],
10260
+ edgeCache: true,
10261
+ responseSchema: PassthroughDataSchema18,
10262
+ responseType: "passthrough"
10263
+ },
10264
+ {
10265
+ method: "GET",
10266
+ path: "/rts/track/{trackId}",
10267
+ chain: "rts.track.trackId",
10268
+ action: "list",
10269
+ aliases: [],
10270
+ pathParams: ["trackId"],
10271
+ queryParams: [],
10272
+ edgeCache: true,
10273
+ responseSchema: PassthroughDataSchema18,
10274
+ responseType: "passthrough"
10275
+ },
10276
+ {
10277
+ method: "GET",
10278
+ path: "/rts/tracks",
10279
+ chain: "rts.tracks",
10280
+ action: "list",
10281
+ aliases: [],
10282
+ pathParams: [],
10283
+ queryParams: ["search", "trackClass"],
10284
+ edgeCache: true,
10285
+ responseSchema: PassthroughDataSchema18,
10286
+ responseType: "passthrough"
10287
+ },
10159
10288
  {
10160
10289
  method: "GET",
10161
10290
  path: "/shipvia/rates",
@@ -10441,9 +10570,13 @@ var LogisticsClient = class extends BaseServiceClient {
10441
10570
  endpoints18
10442
10571
  );
10443
10572
  const dataProxy = createDataProxy(proxy);
10573
+ this.fedex = proxy.fedex;
10574
+ this.rts = proxy.rts;
10444
10575
  this.shipvia = proxy.shipvia;
10445
10576
  this.speedship = proxy.speedship;
10446
10577
  this.ups = proxy.ups;
10578
+ this.fedexData = dataProxy.fedex;
10579
+ this.rtsData = dataProxy.rts;
10447
10580
  this.shipviaData = dataProxy.shipvia;
10448
10581
  this.speedshipData = dataProxy.speedship;
10449
10582
  this.upsData = dataProxy.ups;
@@ -10452,6 +10585,9 @@ var LogisticsClient = class extends BaseServiceClient {
10452
10585
  this.healthCheckData = createHealthCheckDataResource19(this.healthCheck);
10453
10586
  this.pingData = createPingDataResource9(this.ping);
10454
10587
  }
10588
+ getServiceDescription() {
10589
+ return "Multi-carrier shipping logistics for label generation, tracking, and delivery coordination";
10590
+ }
10455
10591
  };
10456
10592
 
10457
10593
  // src/services/p21-apis/generated/schemas.ts
@@ -13922,7 +14058,7 @@ function createCrossSiteAuthenticator(augurInfoToken) {
13922
14058
  }
13923
14059
 
13924
14060
  // src/index.ts
13925
- var VERSION = "2026.5.1";
14061
+ var VERSION = "2026.5.3";
13926
14062
  // Annotate the CommonJS export names for ESM import in node:
13927
14063
  0 && (module.exports = {
13928
14064
  AgrInfoClient,