@simpleapps-com/augur-api 2026.5.2 → 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/{client-pm1Lbe9X.d.mts → client-BWdCuQ4m.d.mts} +15 -14
- package/dist/{client-pm1Lbe9X.d.ts → client-BWdCuQ4m.d.ts} +15 -14
- package/dist/index.d.mts +3 -3
- package/dist/index.d.ts +3 -3
- package/dist/index.js +120 -16
- package/dist/index.js.map +1 -1
- package/dist/index.mjs +120 -16
- package/dist/index.mjs.map +1 -1
- package/dist/testing.d.mts +1 -1
- package/dist/testing.d.ts +1 -1
- package/package.json +1 -1
|
@@ -5251,7 +5251,7 @@ declare class GregorovichClient extends BaseServiceClient {
|
|
|
5251
5251
|
/**
|
|
5252
5252
|
* Generated types for logistics service
|
|
5253
5253
|
* Source: shared/specs/logistics.json
|
|
5254
|
-
* Generated: 2026-05-
|
|
5254
|
+
* Generated: 2026-05-12T02:26:15Z
|
|
5255
5255
|
*
|
|
5256
5256
|
* DO NOT EDIT — regenerate with: python shared/scripts/generate-ts.py
|
|
5257
5257
|
*/
|
|
@@ -5275,18 +5275,18 @@ interface FedexRatesListParams extends EdgeCacheParams {
|
|
|
5275
5275
|
interface RtsBrandsListParams extends EdgeCacheParams {
|
|
5276
5276
|
search?: string;
|
|
5277
5277
|
}
|
|
5278
|
-
/** Params for GET /rts/brands
|
|
5279
|
-
interface
|
|
5278
|
+
/** Params for GET /rts/brands/{brandId}/machines */
|
|
5279
|
+
interface RtsBrandsBrandIdMachinesListParams extends EdgeCacheParams {
|
|
5280
5280
|
search?: string;
|
|
5281
5281
|
}
|
|
5282
|
-
/** Params for GET /rts/machines
|
|
5283
|
-
type
|
|
5282
|
+
/** Params for GET /rts/machines/{machineId}/tracks */
|
|
5283
|
+
type RtsMachinesMachineIdTracksListParams = EdgeCacheParams;
|
|
5284
5284
|
/** Params for GET /rts/search/machines */
|
|
5285
5285
|
interface RtsSearchMachinesListParams extends EdgeCacheParams {
|
|
5286
5286
|
q: string;
|
|
5287
5287
|
}
|
|
5288
|
-
/** Params for GET /rts/track
|
|
5289
|
-
type
|
|
5288
|
+
/** Params for GET /rts/track/{trackId} */
|
|
5289
|
+
type RtsTrackTrackIdListParams = EdgeCacheParams;
|
|
5290
5290
|
/** Params for GET /rts/tracks */
|
|
5291
5291
|
interface RtsTracksListParams extends EdgeCacheParams {
|
|
5292
5292
|
search?: string;
|
|
@@ -5397,16 +5397,16 @@ interface LogisticsClientSpec {
|
|
|
5397
5397
|
rts: {
|
|
5398
5398
|
brands: {
|
|
5399
5399
|
list: (params?: RtsBrandsListParams) => Promise<BaseResponse<Record<string, unknown>>>;
|
|
5400
|
-
|
|
5400
|
+
brandId: {
|
|
5401
5401
|
machines: {
|
|
5402
|
-
list: (params?:
|
|
5402
|
+
list: (brandId: number, params?: RtsBrandsBrandIdMachinesListParams) => Promise<BaseResponse<Record<string, unknown>>>;
|
|
5403
5403
|
};
|
|
5404
5404
|
};
|
|
5405
5405
|
};
|
|
5406
5406
|
machines: {
|
|
5407
|
-
|
|
5407
|
+
machineId: {
|
|
5408
5408
|
tracks: {
|
|
5409
|
-
list: (params?:
|
|
5409
|
+
list: (machineId: number, params?: RtsMachinesMachineIdTracksListParams) => Promise<BaseResponse<Record<string, unknown>>>;
|
|
5410
5410
|
};
|
|
5411
5411
|
};
|
|
5412
5412
|
};
|
|
@@ -5416,8 +5416,8 @@ interface LogisticsClientSpec {
|
|
|
5416
5416
|
};
|
|
5417
5417
|
};
|
|
5418
5418
|
track: {
|
|
5419
|
-
|
|
5420
|
-
list: (params?:
|
|
5419
|
+
trackId: {
|
|
5420
|
+
list: (trackId: number, params?: RtsTrackTrackIdListParams) => Promise<BaseResponse<Record<string, unknown>>>;
|
|
5421
5421
|
};
|
|
5422
5422
|
};
|
|
5423
5423
|
tracks: {
|
|
@@ -5563,7 +5563,7 @@ type PingDataResource$2 = ReturnType<typeof createPingDataResource$2>;
|
|
|
5563
5563
|
/**
|
|
5564
5564
|
* Generated client for logistics service
|
|
5565
5565
|
* Source: shared/specs/logistics.json
|
|
5566
|
-
* Generated: 2026-05-
|
|
5566
|
+
* Generated: 2026-05-12T02:26:15Z
|
|
5567
5567
|
*
|
|
5568
5568
|
* DO NOT EDIT — regenerate with: python shared/scripts/generate-ts.py
|
|
5569
5569
|
*/
|
|
@@ -5584,6 +5584,7 @@ declare class LogisticsClient extends BaseServiceClient {
|
|
|
5584
5584
|
readonly ping: PingResource$2;
|
|
5585
5585
|
readonly pingData: PingDataResource$2;
|
|
5586
5586
|
constructor(http: HTTPClient, baseUrl?: string);
|
|
5587
|
+
protected getServiceDescription(): string;
|
|
5587
5588
|
}
|
|
5588
5589
|
|
|
5589
5590
|
/**
|
|
@@ -5251,7 +5251,7 @@ declare class GregorovichClient extends BaseServiceClient {
|
|
|
5251
5251
|
/**
|
|
5252
5252
|
* Generated types for logistics service
|
|
5253
5253
|
* Source: shared/specs/logistics.json
|
|
5254
|
-
* Generated: 2026-05-
|
|
5254
|
+
* Generated: 2026-05-12T02:26:15Z
|
|
5255
5255
|
*
|
|
5256
5256
|
* DO NOT EDIT — regenerate with: python shared/scripts/generate-ts.py
|
|
5257
5257
|
*/
|
|
@@ -5275,18 +5275,18 @@ interface FedexRatesListParams extends EdgeCacheParams {
|
|
|
5275
5275
|
interface RtsBrandsListParams extends EdgeCacheParams {
|
|
5276
5276
|
search?: string;
|
|
5277
5277
|
}
|
|
5278
|
-
/** Params for GET /rts/brands
|
|
5279
|
-
interface
|
|
5278
|
+
/** Params for GET /rts/brands/{brandId}/machines */
|
|
5279
|
+
interface RtsBrandsBrandIdMachinesListParams extends EdgeCacheParams {
|
|
5280
5280
|
search?: string;
|
|
5281
5281
|
}
|
|
5282
|
-
/** Params for GET /rts/machines
|
|
5283
|
-
type
|
|
5282
|
+
/** Params for GET /rts/machines/{machineId}/tracks */
|
|
5283
|
+
type RtsMachinesMachineIdTracksListParams = EdgeCacheParams;
|
|
5284
5284
|
/** Params for GET /rts/search/machines */
|
|
5285
5285
|
interface RtsSearchMachinesListParams extends EdgeCacheParams {
|
|
5286
5286
|
q: string;
|
|
5287
5287
|
}
|
|
5288
|
-
/** Params for GET /rts/track
|
|
5289
|
-
type
|
|
5288
|
+
/** Params for GET /rts/track/{trackId} */
|
|
5289
|
+
type RtsTrackTrackIdListParams = EdgeCacheParams;
|
|
5290
5290
|
/** Params for GET /rts/tracks */
|
|
5291
5291
|
interface RtsTracksListParams extends EdgeCacheParams {
|
|
5292
5292
|
search?: string;
|
|
@@ -5397,16 +5397,16 @@ interface LogisticsClientSpec {
|
|
|
5397
5397
|
rts: {
|
|
5398
5398
|
brands: {
|
|
5399
5399
|
list: (params?: RtsBrandsListParams) => Promise<BaseResponse<Record<string, unknown>>>;
|
|
5400
|
-
|
|
5400
|
+
brandId: {
|
|
5401
5401
|
machines: {
|
|
5402
|
-
list: (params?:
|
|
5402
|
+
list: (brandId: number, params?: RtsBrandsBrandIdMachinesListParams) => Promise<BaseResponse<Record<string, unknown>>>;
|
|
5403
5403
|
};
|
|
5404
5404
|
};
|
|
5405
5405
|
};
|
|
5406
5406
|
machines: {
|
|
5407
|
-
|
|
5407
|
+
machineId: {
|
|
5408
5408
|
tracks: {
|
|
5409
|
-
list: (params?:
|
|
5409
|
+
list: (machineId: number, params?: RtsMachinesMachineIdTracksListParams) => Promise<BaseResponse<Record<string, unknown>>>;
|
|
5410
5410
|
};
|
|
5411
5411
|
};
|
|
5412
5412
|
};
|
|
@@ -5416,8 +5416,8 @@ interface LogisticsClientSpec {
|
|
|
5416
5416
|
};
|
|
5417
5417
|
};
|
|
5418
5418
|
track: {
|
|
5419
|
-
|
|
5420
|
-
list: (params?:
|
|
5419
|
+
trackId: {
|
|
5420
|
+
list: (trackId: number, params?: RtsTrackTrackIdListParams) => Promise<BaseResponse<Record<string, unknown>>>;
|
|
5421
5421
|
};
|
|
5422
5422
|
};
|
|
5423
5423
|
tracks: {
|
|
@@ -5563,7 +5563,7 @@ type PingDataResource$2 = ReturnType<typeof createPingDataResource$2>;
|
|
|
5563
5563
|
/**
|
|
5564
5564
|
* Generated client for logistics service
|
|
5565
5565
|
* Source: shared/specs/logistics.json
|
|
5566
|
-
* Generated: 2026-05-
|
|
5566
|
+
* Generated: 2026-05-12T02:26:15Z
|
|
5567
5567
|
*
|
|
5568
5568
|
* DO NOT EDIT — regenerate with: python shared/scripts/generate-ts.py
|
|
5569
5569
|
*/
|
|
@@ -5584,6 +5584,7 @@ declare class LogisticsClient extends BaseServiceClient {
|
|
|
5584
5584
|
readonly ping: PingResource$2;
|
|
5585
5585
|
readonly pingData: PingDataResource$2;
|
|
5586
5586
|
constructor(http: HTTPClient, baseUrl?: string);
|
|
5587
|
+
protected getServiceDescription(): string;
|
|
5587
5588
|
}
|
|
5588
5589
|
|
|
5589
5590
|
/**
|
package/dist/index.d.mts
CHANGED
|
@@ -1,5 +1,5 @@
|
|
|
1
|
-
import { A as AugurAPI } from './client-
|
|
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-
|
|
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.
|
|
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-
|
|
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-
|
|
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.
|
|
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
|
@@ -10075,7 +10075,7 @@ var RtsBrandsListParamsSchema = v25.looseObject({
|
|
|
10075
10075
|
...EdgeCacheParamsSchema.entries,
|
|
10076
10076
|
search: v25.optional(v25.string())
|
|
10077
10077
|
});
|
|
10078
|
-
var
|
|
10078
|
+
var RtsBrandsBrandIdMachinesListParamsSchema = v25.looseObject({
|
|
10079
10079
|
...EdgeCacheParamsSchema.entries,
|
|
10080
10080
|
search: v25.optional(v25.string())
|
|
10081
10081
|
});
|
|
@@ -10195,7 +10195,20 @@ var endpoints18 = [
|
|
|
10195
10195
|
action: "list",
|
|
10196
10196
|
aliases: [],
|
|
10197
10197
|
pathParams: [],
|
|
10198
|
-
queryParams: [
|
|
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
|
+
],
|
|
10199
10212
|
edgeCache: true,
|
|
10200
10213
|
responseSchema: PassthroughDataSchema18,
|
|
10201
10214
|
responseType: "passthrough"
|
|
@@ -10214,11 +10227,11 @@ var endpoints18 = [
|
|
|
10214
10227
|
},
|
|
10215
10228
|
{
|
|
10216
10229
|
method: "GET",
|
|
10217
|
-
path: "/rts/brands
|
|
10218
|
-
chain: "rts.brands
|
|
10230
|
+
path: "/rts/brands/{brandId}/machines",
|
|
10231
|
+
chain: "rts.brands.brandId.machines",
|
|
10219
10232
|
action: "list",
|
|
10220
10233
|
aliases: [],
|
|
10221
|
-
pathParams: [],
|
|
10234
|
+
pathParams: ["brandId"],
|
|
10222
10235
|
queryParams: ["search"],
|
|
10223
10236
|
edgeCache: true,
|
|
10224
10237
|
responseSchema: PassthroughDataSchema18,
|
|
@@ -10226,11 +10239,11 @@ var endpoints18 = [
|
|
|
10226
10239
|
},
|
|
10227
10240
|
{
|
|
10228
10241
|
method: "GET",
|
|
10229
|
-
path: "/rts/machines
|
|
10230
|
-
chain: "rts.machines
|
|
10242
|
+
path: "/rts/machines/{machineId}/tracks",
|
|
10243
|
+
chain: "rts.machines.machineId.tracks",
|
|
10231
10244
|
action: "list",
|
|
10232
10245
|
aliases: [],
|
|
10233
|
-
pathParams: [],
|
|
10246
|
+
pathParams: ["machineId"],
|
|
10234
10247
|
queryParams: [],
|
|
10235
10248
|
edgeCache: true,
|
|
10236
10249
|
responseSchema: PassthroughDataSchema18,
|
|
@@ -10250,11 +10263,11 @@ var endpoints18 = [
|
|
|
10250
10263
|
},
|
|
10251
10264
|
{
|
|
10252
10265
|
method: "GET",
|
|
10253
|
-
path: "/rts/track
|
|
10254
|
-
chain: "rts.track
|
|
10266
|
+
path: "/rts/track/{trackId}",
|
|
10267
|
+
chain: "rts.track.trackId",
|
|
10255
10268
|
action: "list",
|
|
10256
10269
|
aliases: [],
|
|
10257
|
-
pathParams: [],
|
|
10270
|
+
pathParams: ["trackId"],
|
|
10258
10271
|
queryParams: [],
|
|
10259
10272
|
edgeCache: true,
|
|
10260
10273
|
responseSchema: PassthroughDataSchema18,
|
|
@@ -10279,7 +10292,26 @@ var endpoints18 = [
|
|
|
10279
10292
|
action: "list",
|
|
10280
10293
|
aliases: [],
|
|
10281
10294
|
pathParams: [],
|
|
10282
|
-
queryParams: [
|
|
10295
|
+
queryParams: [
|
|
10296
|
+
"carriers",
|
|
10297
|
+
"dimensionUnit",
|
|
10298
|
+
"fromCity",
|
|
10299
|
+
"fromCountry",
|
|
10300
|
+
"fromPostalCode",
|
|
10301
|
+
"fromState",
|
|
10302
|
+
"locationId",
|
|
10303
|
+
"packageHeight",
|
|
10304
|
+
"packageLength",
|
|
10305
|
+
"packageWidth",
|
|
10306
|
+
"residential",
|
|
10307
|
+
"serviceType",
|
|
10308
|
+
"toCity",
|
|
10309
|
+
"toCountry",
|
|
10310
|
+
"toPostalCode",
|
|
10311
|
+
"toState",
|
|
10312
|
+
"totalWeight",
|
|
10313
|
+
"weightUnit"
|
|
10314
|
+
],
|
|
10283
10315
|
edgeCache: true,
|
|
10284
10316
|
responseSchema: PassthroughDataSchema18,
|
|
10285
10317
|
responseType: "passthrough"
|
|
@@ -10291,7 +10323,31 @@ var endpoints18 = [
|
|
|
10291
10323
|
action: "list",
|
|
10292
10324
|
aliases: [],
|
|
10293
10325
|
pathParams: [],
|
|
10294
|
-
queryParams: [
|
|
10326
|
+
queryParams: [
|
|
10327
|
+
"carriers",
|
|
10328
|
+
"commodityClass",
|
|
10329
|
+
"commodityDescription",
|
|
10330
|
+
"deliveryInstructions",
|
|
10331
|
+
"dimensionUnit",
|
|
10332
|
+
"fromCity",
|
|
10333
|
+
"fromCountry",
|
|
10334
|
+
"fromPostalCode",
|
|
10335
|
+
"fromState",
|
|
10336
|
+
"isHazMat",
|
|
10337
|
+
"locationId",
|
|
10338
|
+
"packageHeight",
|
|
10339
|
+
"packageLength",
|
|
10340
|
+
"packageWidth",
|
|
10341
|
+
"packagingType",
|
|
10342
|
+
"pickupInstructions",
|
|
10343
|
+
"quantity",
|
|
10344
|
+
"toCity",
|
|
10345
|
+
"toCountry",
|
|
10346
|
+
"toPostalCode",
|
|
10347
|
+
"toState",
|
|
10348
|
+
"totalWeight",
|
|
10349
|
+
"weightUnit"
|
|
10350
|
+
],
|
|
10295
10351
|
edgeCache: true,
|
|
10296
10352
|
responseSchema: PassthroughDataSchema18,
|
|
10297
10353
|
responseType: "passthrough"
|
|
@@ -10303,7 +10359,40 @@ var endpoints18 = [
|
|
|
10303
10359
|
action: "list",
|
|
10304
10360
|
aliases: [],
|
|
10305
10361
|
pathParams: [],
|
|
10306
|
-
queryParams: [
|
|
10362
|
+
queryParams: [
|
|
10363
|
+
"deliveryInstructions",
|
|
10364
|
+
"dimensionUnit",
|
|
10365
|
+
"fromAddressLine",
|
|
10366
|
+
"fromCity",
|
|
10367
|
+
"fromCompanyName",
|
|
10368
|
+
"fromCountryCode",
|
|
10369
|
+
"fromFirstName",
|
|
10370
|
+
"fromLastName",
|
|
10371
|
+
"fromPhone",
|
|
10372
|
+
"fromPostalCode",
|
|
10373
|
+
"fromState",
|
|
10374
|
+
"handlingCharge",
|
|
10375
|
+
"handlingChargeUnit",
|
|
10376
|
+
"international",
|
|
10377
|
+
"packageHeight",
|
|
10378
|
+
"packageLength",
|
|
10379
|
+
"packageWidth",
|
|
10380
|
+
"pickupInstructions",
|
|
10381
|
+
"productType",
|
|
10382
|
+
"quantity",
|
|
10383
|
+
"responseFormat",
|
|
10384
|
+
"toAddressLine",
|
|
10385
|
+
"toCity",
|
|
10386
|
+
"toCompanyName",
|
|
10387
|
+
"toCountryCode",
|
|
10388
|
+
"toFirstName",
|
|
10389
|
+
"toLastName",
|
|
10390
|
+
"toPhone",
|
|
10391
|
+
"toPostalCode",
|
|
10392
|
+
"toRegion",
|
|
10393
|
+
"totalWeight",
|
|
10394
|
+
"weightUnit"
|
|
10395
|
+
],
|
|
10307
10396
|
edgeCache: true,
|
|
10308
10397
|
responseSchema: PassthroughDataSchema18,
|
|
10309
10398
|
responseType: "passthrough"
|
|
@@ -10315,7 +10404,19 @@ var endpoints18 = [
|
|
|
10315
10404
|
action: "list",
|
|
10316
10405
|
aliases: [],
|
|
10317
10406
|
pathParams: [],
|
|
10318
|
-
queryParams: [
|
|
10407
|
+
queryParams: [
|
|
10408
|
+
"fromAddress1",
|
|
10409
|
+
"fromCity",
|
|
10410
|
+
"fromCountryCode",
|
|
10411
|
+
"fromPostalCode",
|
|
10412
|
+
"fromStateProvinceCode",
|
|
10413
|
+
"toAddress1",
|
|
10414
|
+
"toCity",
|
|
10415
|
+
"toCountryCode",
|
|
10416
|
+
"toPostalCode",
|
|
10417
|
+
"toStateProvinceCode",
|
|
10418
|
+
"weight"
|
|
10419
|
+
],
|
|
10319
10420
|
edgeCache: true,
|
|
10320
10421
|
responseSchema: PassthroughDataSchema18,
|
|
10321
10422
|
responseType: "passthrough"
|
|
@@ -10484,6 +10585,9 @@ var LogisticsClient = class extends BaseServiceClient {
|
|
|
10484
10585
|
this.healthCheckData = createHealthCheckDataResource19(this.healthCheck);
|
|
10485
10586
|
this.pingData = createPingDataResource9(this.ping);
|
|
10486
10587
|
}
|
|
10588
|
+
getServiceDescription() {
|
|
10589
|
+
return "Multi-carrier shipping logistics for label generation, tracking, and delivery coordination";
|
|
10590
|
+
}
|
|
10487
10591
|
};
|
|
10488
10592
|
|
|
10489
10593
|
// src/services/p21-apis/generated/schemas.ts
|
|
@@ -13954,7 +14058,7 @@ function createCrossSiteAuthenticator(augurInfoToken) {
|
|
|
13954
14058
|
}
|
|
13955
14059
|
|
|
13956
14060
|
// src/index.ts
|
|
13957
|
-
var VERSION = "2026.5.
|
|
14061
|
+
var VERSION = "2026.5.3";
|
|
13958
14062
|
// Annotate the CommonJS export names for ESM import in node:
|
|
13959
14063
|
0 && (module.exports = {
|
|
13960
14064
|
AgrInfoClient,
|