@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/{client-pm1Lbe9X.d.mts → client-C72Z8ANN.d.mts} +79 -18
- package/dist/{client-pm1Lbe9X.d.ts → client-C72Z8ANN.d.ts} +79 -18
- package/dist/index.d.mts +3 -3
- package/dist/index.d.ts +3 -3
- package/dist/index.js +283 -19
- package/dist/index.js.map +1 -1
- package/dist/index.mjs +283 -19
- 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
|
@@ -3846,7 +3846,7 @@ declare class AgrSiteClient extends BaseServiceClient {
|
|
|
3846
3846
|
/**
|
|
3847
3847
|
* Generated types for customers service
|
|
3848
3848
|
* Source: shared/specs/customers.json
|
|
3849
|
-
* Generated: 2026-05-
|
|
3849
|
+
* Generated: 2026-05-14T16:15:59Z
|
|
3850
3850
|
*
|
|
3851
3851
|
* DO NOT EDIT — regenerate with: python shared/scripts/generate-ts.py
|
|
3852
3852
|
*/
|
|
@@ -3886,6 +3886,15 @@ interface CustomerAddressListParams extends EdgeCacheParams {
|
|
|
3886
3886
|
offset?: number;
|
|
3887
3887
|
q: string;
|
|
3888
3888
|
}
|
|
3889
|
+
/** Params for GET /customer/{customerId}/addresses */
|
|
3890
|
+
interface CustomerAddressesListParams extends EdgeCacheParams {
|
|
3891
|
+
limit?: number;
|
|
3892
|
+
offset?: number;
|
|
3893
|
+
orderBy?: string;
|
|
3894
|
+
statusCd?: number;
|
|
3895
|
+
}
|
|
3896
|
+
/** Params for GET /customer/{customerId}/addresses/{customerAddressUid} */
|
|
3897
|
+
type CustomerAddressesGetParams = EdgeCacheParams;
|
|
3889
3898
|
/** Params for GET /customer/{customerId}/contacts */
|
|
3890
3899
|
interface CustomerContactsListParams extends EdgeCacheParams {
|
|
3891
3900
|
limit?: number;
|
|
@@ -3896,6 +3905,9 @@ interface CustomerContactsListParams extends EdgeCacheParams {
|
|
|
3896
3905
|
type CustomerDocListParams = EdgeCacheParams;
|
|
3897
3906
|
/** Params for GET /customer/{customerId}/invoices */
|
|
3898
3907
|
interface CustomerInvoicesListParams extends EdgeCacheParams {
|
|
3908
|
+
createdFrom?: string;
|
|
3909
|
+
createdOn?: string;
|
|
3910
|
+
createdTo?: string;
|
|
3899
3911
|
limit?: number;
|
|
3900
3912
|
offset?: number;
|
|
3901
3913
|
paidInFull?: string;
|
|
@@ -3938,11 +3950,48 @@ interface CustomerShipToListParams extends EdgeCacheParams {
|
|
|
3938
3950
|
orderBy?: string;
|
|
3939
3951
|
}
|
|
3940
3952
|
/** Params for GET /customer/{customerId}/tags */
|
|
3941
|
-
|
|
3953
|
+
interface CustomerTagsListParams extends EdgeCacheParams {
|
|
3954
|
+
limit?: number;
|
|
3955
|
+
offset?: number;
|
|
3956
|
+
orderBy?: string;
|
|
3957
|
+
statusCd?: number;
|
|
3958
|
+
}
|
|
3959
|
+
/** Params for GET /customer/{customerId}/tags/{customerTagsUid} */
|
|
3960
|
+
type CustomerTagsGetParams = EdgeCacheParams;
|
|
3942
3961
|
/** Params for GET /oe-contacts-customer/refresh */
|
|
3943
3962
|
type OeContactsCustomerRefreshGetParams = EdgeCacheParams;
|
|
3944
3963
|
/** Params for GET /ship-to/refresh */
|
|
3945
3964
|
type ShipToRefreshGetParams = EdgeCacheParams;
|
|
3965
|
+
/** Response data — fields are MINIMUM, extra fields pass through */
|
|
3966
|
+
interface CustomerAddressesData {
|
|
3967
|
+
customerAddressUid?: number;
|
|
3968
|
+
customerId?: number;
|
|
3969
|
+
address1?: string | null;
|
|
3970
|
+
address2?: string | null;
|
|
3971
|
+
address3?: string | null;
|
|
3972
|
+
city?: string | null;
|
|
3973
|
+
state?: string | null;
|
|
3974
|
+
postalCode?: string | null;
|
|
3975
|
+
country?: string | null;
|
|
3976
|
+
updateCd?: number;
|
|
3977
|
+
statusCd?: number;
|
|
3978
|
+
processCd?: number;
|
|
3979
|
+
dateCreated?: string;
|
|
3980
|
+
dateLastModified?: string;
|
|
3981
|
+
[key: string]: unknown;
|
|
3982
|
+
}
|
|
3983
|
+
/** Response data — fields are MINIMUM, extra fields pass through */
|
|
3984
|
+
interface CustomerTagsData {
|
|
3985
|
+
customerTagsUid?: number;
|
|
3986
|
+
customerId?: number;
|
|
3987
|
+
tag?: string | null;
|
|
3988
|
+
updateCd?: number;
|
|
3989
|
+
statusCd?: number;
|
|
3990
|
+
processCd?: number;
|
|
3991
|
+
dateCreated?: string;
|
|
3992
|
+
dateLastModified?: string;
|
|
3993
|
+
[key: string]: unknown;
|
|
3994
|
+
}
|
|
3946
3995
|
interface CustomersClientSpec {
|
|
3947
3996
|
contacts: {
|
|
3948
3997
|
customers: {
|
|
@@ -3967,6 +4016,13 @@ interface CustomersClientSpec {
|
|
|
3967
4016
|
address: {
|
|
3968
4017
|
list: (customerId: number, params?: CustomerAddressListParams) => Promise<BaseResponse<Record<string, unknown>>>;
|
|
3969
4018
|
};
|
|
4019
|
+
addresses: {
|
|
4020
|
+
list: (customerId: number, params?: CustomerAddressesListParams) => Promise<BaseResponse<CustomerAddressesData[]>>;
|
|
4021
|
+
create: (customerId: number, data: Record<string, unknown>) => Promise<BaseResponse<CustomerAddressesData>>;
|
|
4022
|
+
get: (customerId: number, customerAddressUid: number, params?: CustomerAddressesGetParams) => Promise<BaseResponse<CustomerAddressesData>>;
|
|
4023
|
+
update: (customerId: number, customerAddressUid: number, data: Record<string, unknown>) => Promise<BaseResponse<CustomerAddressesData>>;
|
|
4024
|
+
delete: (customerId: number, customerAddressUid: number) => Promise<BaseResponse<CustomerAddressesData>>;
|
|
4025
|
+
};
|
|
3970
4026
|
contacts: {
|
|
3971
4027
|
list: (customerId: number, params?: CustomerContactsListParams) => Promise<BaseResponse<Record<string, unknown>>>;
|
|
3972
4028
|
create: (customerId: number, data: Record<string, unknown>) => Promise<BaseResponse<Record<string, unknown>>>;
|
|
@@ -3998,7 +4054,11 @@ interface CustomersClientSpec {
|
|
|
3998
4054
|
create: (customerId: number, data: Record<string, unknown>) => Promise<BaseResponse<Record<string, unknown>>>;
|
|
3999
4055
|
};
|
|
4000
4056
|
tags: {
|
|
4001
|
-
list: (customerId: number, params?: CustomerTagsListParams) => Promise<BaseResponse<
|
|
4057
|
+
list: (customerId: number, params?: CustomerTagsListParams) => Promise<BaseResponse<CustomerTagsData[]>>;
|
|
4058
|
+
create: (customerId: number, data: Record<string, unknown>) => Promise<BaseResponse<CustomerTagsData>>;
|
|
4059
|
+
get: (customerId: number, customerTagsUid: number, params?: CustomerTagsGetParams) => Promise<BaseResponse<CustomerTagsData>>;
|
|
4060
|
+
update: (customerId: number, customerTagsUid: number, data: Record<string, unknown>) => Promise<BaseResponse<CustomerTagsData>>;
|
|
4061
|
+
delete: (customerId: number, customerTagsUid: number) => Promise<BaseResponse<CustomerTagsData>>;
|
|
4002
4062
|
};
|
|
4003
4063
|
};
|
|
4004
4064
|
oeContactsCustomer: {
|
|
@@ -4042,7 +4102,7 @@ type HealthCheckDataResource$h = ReturnType<typeof createHealthCheckDataResource
|
|
|
4042
4102
|
/**
|
|
4043
4103
|
* Generated client for customers service
|
|
4044
4104
|
* Source: shared/specs/customers.json
|
|
4045
|
-
* Generated: 2026-05-
|
|
4105
|
+
* Generated: 2026-05-14T16:15:59Z
|
|
4046
4106
|
*
|
|
4047
4107
|
* DO NOT EDIT — regenerate with: python shared/scripts/generate-ts.py
|
|
4048
4108
|
*/
|
|
@@ -5251,7 +5311,7 @@ declare class GregorovichClient extends BaseServiceClient {
|
|
|
5251
5311
|
/**
|
|
5252
5312
|
* Generated types for logistics service
|
|
5253
5313
|
* Source: shared/specs/logistics.json
|
|
5254
|
-
* Generated: 2026-05-
|
|
5314
|
+
* Generated: 2026-05-12T02:26:15Z
|
|
5255
5315
|
*
|
|
5256
5316
|
* DO NOT EDIT — regenerate with: python shared/scripts/generate-ts.py
|
|
5257
5317
|
*/
|
|
@@ -5275,18 +5335,18 @@ interface FedexRatesListParams extends EdgeCacheParams {
|
|
|
5275
5335
|
interface RtsBrandsListParams extends EdgeCacheParams {
|
|
5276
5336
|
search?: string;
|
|
5277
5337
|
}
|
|
5278
|
-
/** Params for GET /rts/brands
|
|
5279
|
-
interface
|
|
5338
|
+
/** Params for GET /rts/brands/{brandId}/machines */
|
|
5339
|
+
interface RtsBrandsBrandIdMachinesListParams extends EdgeCacheParams {
|
|
5280
5340
|
search?: string;
|
|
5281
5341
|
}
|
|
5282
|
-
/** Params for GET /rts/machines
|
|
5283
|
-
type
|
|
5342
|
+
/** Params for GET /rts/machines/{machineId}/tracks */
|
|
5343
|
+
type RtsMachinesMachineIdTracksListParams = EdgeCacheParams;
|
|
5284
5344
|
/** Params for GET /rts/search/machines */
|
|
5285
5345
|
interface RtsSearchMachinesListParams extends EdgeCacheParams {
|
|
5286
5346
|
q: string;
|
|
5287
5347
|
}
|
|
5288
|
-
/** Params for GET /rts/track
|
|
5289
|
-
type
|
|
5348
|
+
/** Params for GET /rts/track/{trackId} */
|
|
5349
|
+
type RtsTrackTrackIdListParams = EdgeCacheParams;
|
|
5290
5350
|
/** Params for GET /rts/tracks */
|
|
5291
5351
|
interface RtsTracksListParams extends EdgeCacheParams {
|
|
5292
5352
|
search?: string;
|
|
@@ -5397,16 +5457,16 @@ interface LogisticsClientSpec {
|
|
|
5397
5457
|
rts: {
|
|
5398
5458
|
brands: {
|
|
5399
5459
|
list: (params?: RtsBrandsListParams) => Promise<BaseResponse<Record<string, unknown>>>;
|
|
5400
|
-
|
|
5460
|
+
brandId: {
|
|
5401
5461
|
machines: {
|
|
5402
|
-
list: (params?:
|
|
5462
|
+
list: (brandId: number, params?: RtsBrandsBrandIdMachinesListParams) => Promise<BaseResponse<Record<string, unknown>>>;
|
|
5403
5463
|
};
|
|
5404
5464
|
};
|
|
5405
5465
|
};
|
|
5406
5466
|
machines: {
|
|
5407
|
-
|
|
5467
|
+
machineId: {
|
|
5408
5468
|
tracks: {
|
|
5409
|
-
list: (params?:
|
|
5469
|
+
list: (machineId: number, params?: RtsMachinesMachineIdTracksListParams) => Promise<BaseResponse<Record<string, unknown>>>;
|
|
5410
5470
|
};
|
|
5411
5471
|
};
|
|
5412
5472
|
};
|
|
@@ -5416,8 +5476,8 @@ interface LogisticsClientSpec {
|
|
|
5416
5476
|
};
|
|
5417
5477
|
};
|
|
5418
5478
|
track: {
|
|
5419
|
-
|
|
5420
|
-
list: (params?:
|
|
5479
|
+
trackId: {
|
|
5480
|
+
list: (trackId: number, params?: RtsTrackTrackIdListParams) => Promise<BaseResponse<Record<string, unknown>>>;
|
|
5421
5481
|
};
|
|
5422
5482
|
};
|
|
5423
5483
|
tracks: {
|
|
@@ -5563,7 +5623,7 @@ type PingDataResource$2 = ReturnType<typeof createPingDataResource$2>;
|
|
|
5563
5623
|
/**
|
|
5564
5624
|
* Generated client for logistics service
|
|
5565
5625
|
* Source: shared/specs/logistics.json
|
|
5566
|
-
* Generated: 2026-05-
|
|
5626
|
+
* Generated: 2026-05-12T02:26:15Z
|
|
5567
5627
|
*
|
|
5568
5628
|
* DO NOT EDIT — regenerate with: python shared/scripts/generate-ts.py
|
|
5569
5629
|
*/
|
|
@@ -5584,6 +5644,7 @@ declare class LogisticsClient extends BaseServiceClient {
|
|
|
5584
5644
|
readonly ping: PingResource$2;
|
|
5585
5645
|
readonly pingData: PingDataResource$2;
|
|
5586
5646
|
constructor(http: HTTPClient, baseUrl?: string);
|
|
5647
|
+
protected getServiceDescription(): string;
|
|
5587
5648
|
}
|
|
5588
5649
|
|
|
5589
5650
|
/**
|
|
@@ -3846,7 +3846,7 @@ declare class AgrSiteClient extends BaseServiceClient {
|
|
|
3846
3846
|
/**
|
|
3847
3847
|
* Generated types for customers service
|
|
3848
3848
|
* Source: shared/specs/customers.json
|
|
3849
|
-
* Generated: 2026-05-
|
|
3849
|
+
* Generated: 2026-05-14T16:15:59Z
|
|
3850
3850
|
*
|
|
3851
3851
|
* DO NOT EDIT — regenerate with: python shared/scripts/generate-ts.py
|
|
3852
3852
|
*/
|
|
@@ -3886,6 +3886,15 @@ interface CustomerAddressListParams extends EdgeCacheParams {
|
|
|
3886
3886
|
offset?: number;
|
|
3887
3887
|
q: string;
|
|
3888
3888
|
}
|
|
3889
|
+
/** Params for GET /customer/{customerId}/addresses */
|
|
3890
|
+
interface CustomerAddressesListParams extends EdgeCacheParams {
|
|
3891
|
+
limit?: number;
|
|
3892
|
+
offset?: number;
|
|
3893
|
+
orderBy?: string;
|
|
3894
|
+
statusCd?: number;
|
|
3895
|
+
}
|
|
3896
|
+
/** Params for GET /customer/{customerId}/addresses/{customerAddressUid} */
|
|
3897
|
+
type CustomerAddressesGetParams = EdgeCacheParams;
|
|
3889
3898
|
/** Params for GET /customer/{customerId}/contacts */
|
|
3890
3899
|
interface CustomerContactsListParams extends EdgeCacheParams {
|
|
3891
3900
|
limit?: number;
|
|
@@ -3896,6 +3905,9 @@ interface CustomerContactsListParams extends EdgeCacheParams {
|
|
|
3896
3905
|
type CustomerDocListParams = EdgeCacheParams;
|
|
3897
3906
|
/** Params for GET /customer/{customerId}/invoices */
|
|
3898
3907
|
interface CustomerInvoicesListParams extends EdgeCacheParams {
|
|
3908
|
+
createdFrom?: string;
|
|
3909
|
+
createdOn?: string;
|
|
3910
|
+
createdTo?: string;
|
|
3899
3911
|
limit?: number;
|
|
3900
3912
|
offset?: number;
|
|
3901
3913
|
paidInFull?: string;
|
|
@@ -3938,11 +3950,48 @@ interface CustomerShipToListParams extends EdgeCacheParams {
|
|
|
3938
3950
|
orderBy?: string;
|
|
3939
3951
|
}
|
|
3940
3952
|
/** Params for GET /customer/{customerId}/tags */
|
|
3941
|
-
|
|
3953
|
+
interface CustomerTagsListParams extends EdgeCacheParams {
|
|
3954
|
+
limit?: number;
|
|
3955
|
+
offset?: number;
|
|
3956
|
+
orderBy?: string;
|
|
3957
|
+
statusCd?: number;
|
|
3958
|
+
}
|
|
3959
|
+
/** Params for GET /customer/{customerId}/tags/{customerTagsUid} */
|
|
3960
|
+
type CustomerTagsGetParams = EdgeCacheParams;
|
|
3942
3961
|
/** Params for GET /oe-contacts-customer/refresh */
|
|
3943
3962
|
type OeContactsCustomerRefreshGetParams = EdgeCacheParams;
|
|
3944
3963
|
/** Params for GET /ship-to/refresh */
|
|
3945
3964
|
type ShipToRefreshGetParams = EdgeCacheParams;
|
|
3965
|
+
/** Response data — fields are MINIMUM, extra fields pass through */
|
|
3966
|
+
interface CustomerAddressesData {
|
|
3967
|
+
customerAddressUid?: number;
|
|
3968
|
+
customerId?: number;
|
|
3969
|
+
address1?: string | null;
|
|
3970
|
+
address2?: string | null;
|
|
3971
|
+
address3?: string | null;
|
|
3972
|
+
city?: string | null;
|
|
3973
|
+
state?: string | null;
|
|
3974
|
+
postalCode?: string | null;
|
|
3975
|
+
country?: string | null;
|
|
3976
|
+
updateCd?: number;
|
|
3977
|
+
statusCd?: number;
|
|
3978
|
+
processCd?: number;
|
|
3979
|
+
dateCreated?: string;
|
|
3980
|
+
dateLastModified?: string;
|
|
3981
|
+
[key: string]: unknown;
|
|
3982
|
+
}
|
|
3983
|
+
/** Response data — fields are MINIMUM, extra fields pass through */
|
|
3984
|
+
interface CustomerTagsData {
|
|
3985
|
+
customerTagsUid?: number;
|
|
3986
|
+
customerId?: number;
|
|
3987
|
+
tag?: string | null;
|
|
3988
|
+
updateCd?: number;
|
|
3989
|
+
statusCd?: number;
|
|
3990
|
+
processCd?: number;
|
|
3991
|
+
dateCreated?: string;
|
|
3992
|
+
dateLastModified?: string;
|
|
3993
|
+
[key: string]: unknown;
|
|
3994
|
+
}
|
|
3946
3995
|
interface CustomersClientSpec {
|
|
3947
3996
|
contacts: {
|
|
3948
3997
|
customers: {
|
|
@@ -3967,6 +4016,13 @@ interface CustomersClientSpec {
|
|
|
3967
4016
|
address: {
|
|
3968
4017
|
list: (customerId: number, params?: CustomerAddressListParams) => Promise<BaseResponse<Record<string, unknown>>>;
|
|
3969
4018
|
};
|
|
4019
|
+
addresses: {
|
|
4020
|
+
list: (customerId: number, params?: CustomerAddressesListParams) => Promise<BaseResponse<CustomerAddressesData[]>>;
|
|
4021
|
+
create: (customerId: number, data: Record<string, unknown>) => Promise<BaseResponse<CustomerAddressesData>>;
|
|
4022
|
+
get: (customerId: number, customerAddressUid: number, params?: CustomerAddressesGetParams) => Promise<BaseResponse<CustomerAddressesData>>;
|
|
4023
|
+
update: (customerId: number, customerAddressUid: number, data: Record<string, unknown>) => Promise<BaseResponse<CustomerAddressesData>>;
|
|
4024
|
+
delete: (customerId: number, customerAddressUid: number) => Promise<BaseResponse<CustomerAddressesData>>;
|
|
4025
|
+
};
|
|
3970
4026
|
contacts: {
|
|
3971
4027
|
list: (customerId: number, params?: CustomerContactsListParams) => Promise<BaseResponse<Record<string, unknown>>>;
|
|
3972
4028
|
create: (customerId: number, data: Record<string, unknown>) => Promise<BaseResponse<Record<string, unknown>>>;
|
|
@@ -3998,7 +4054,11 @@ interface CustomersClientSpec {
|
|
|
3998
4054
|
create: (customerId: number, data: Record<string, unknown>) => Promise<BaseResponse<Record<string, unknown>>>;
|
|
3999
4055
|
};
|
|
4000
4056
|
tags: {
|
|
4001
|
-
list: (customerId: number, params?: CustomerTagsListParams) => Promise<BaseResponse<
|
|
4057
|
+
list: (customerId: number, params?: CustomerTagsListParams) => Promise<BaseResponse<CustomerTagsData[]>>;
|
|
4058
|
+
create: (customerId: number, data: Record<string, unknown>) => Promise<BaseResponse<CustomerTagsData>>;
|
|
4059
|
+
get: (customerId: number, customerTagsUid: number, params?: CustomerTagsGetParams) => Promise<BaseResponse<CustomerTagsData>>;
|
|
4060
|
+
update: (customerId: number, customerTagsUid: number, data: Record<string, unknown>) => Promise<BaseResponse<CustomerTagsData>>;
|
|
4061
|
+
delete: (customerId: number, customerTagsUid: number) => Promise<BaseResponse<CustomerTagsData>>;
|
|
4002
4062
|
};
|
|
4003
4063
|
};
|
|
4004
4064
|
oeContactsCustomer: {
|
|
@@ -4042,7 +4102,7 @@ type HealthCheckDataResource$h = ReturnType<typeof createHealthCheckDataResource
|
|
|
4042
4102
|
/**
|
|
4043
4103
|
* Generated client for customers service
|
|
4044
4104
|
* Source: shared/specs/customers.json
|
|
4045
|
-
* Generated: 2026-05-
|
|
4105
|
+
* Generated: 2026-05-14T16:15:59Z
|
|
4046
4106
|
*
|
|
4047
4107
|
* DO NOT EDIT — regenerate with: python shared/scripts/generate-ts.py
|
|
4048
4108
|
*/
|
|
@@ -5251,7 +5311,7 @@ declare class GregorovichClient extends BaseServiceClient {
|
|
|
5251
5311
|
/**
|
|
5252
5312
|
* Generated types for logistics service
|
|
5253
5313
|
* Source: shared/specs/logistics.json
|
|
5254
|
-
* Generated: 2026-05-
|
|
5314
|
+
* Generated: 2026-05-12T02:26:15Z
|
|
5255
5315
|
*
|
|
5256
5316
|
* DO NOT EDIT — regenerate with: python shared/scripts/generate-ts.py
|
|
5257
5317
|
*/
|
|
@@ -5275,18 +5335,18 @@ interface FedexRatesListParams extends EdgeCacheParams {
|
|
|
5275
5335
|
interface RtsBrandsListParams extends EdgeCacheParams {
|
|
5276
5336
|
search?: string;
|
|
5277
5337
|
}
|
|
5278
|
-
/** Params for GET /rts/brands
|
|
5279
|
-
interface
|
|
5338
|
+
/** Params for GET /rts/brands/{brandId}/machines */
|
|
5339
|
+
interface RtsBrandsBrandIdMachinesListParams extends EdgeCacheParams {
|
|
5280
5340
|
search?: string;
|
|
5281
5341
|
}
|
|
5282
|
-
/** Params for GET /rts/machines
|
|
5283
|
-
type
|
|
5342
|
+
/** Params for GET /rts/machines/{machineId}/tracks */
|
|
5343
|
+
type RtsMachinesMachineIdTracksListParams = EdgeCacheParams;
|
|
5284
5344
|
/** Params for GET /rts/search/machines */
|
|
5285
5345
|
interface RtsSearchMachinesListParams extends EdgeCacheParams {
|
|
5286
5346
|
q: string;
|
|
5287
5347
|
}
|
|
5288
|
-
/** Params for GET /rts/track
|
|
5289
|
-
type
|
|
5348
|
+
/** Params for GET /rts/track/{trackId} */
|
|
5349
|
+
type RtsTrackTrackIdListParams = EdgeCacheParams;
|
|
5290
5350
|
/** Params for GET /rts/tracks */
|
|
5291
5351
|
interface RtsTracksListParams extends EdgeCacheParams {
|
|
5292
5352
|
search?: string;
|
|
@@ -5397,16 +5457,16 @@ interface LogisticsClientSpec {
|
|
|
5397
5457
|
rts: {
|
|
5398
5458
|
brands: {
|
|
5399
5459
|
list: (params?: RtsBrandsListParams) => Promise<BaseResponse<Record<string, unknown>>>;
|
|
5400
|
-
|
|
5460
|
+
brandId: {
|
|
5401
5461
|
machines: {
|
|
5402
|
-
list: (params?:
|
|
5462
|
+
list: (brandId: number, params?: RtsBrandsBrandIdMachinesListParams) => Promise<BaseResponse<Record<string, unknown>>>;
|
|
5403
5463
|
};
|
|
5404
5464
|
};
|
|
5405
5465
|
};
|
|
5406
5466
|
machines: {
|
|
5407
|
-
|
|
5467
|
+
machineId: {
|
|
5408
5468
|
tracks: {
|
|
5409
|
-
list: (params?:
|
|
5469
|
+
list: (machineId: number, params?: RtsMachinesMachineIdTracksListParams) => Promise<BaseResponse<Record<string, unknown>>>;
|
|
5410
5470
|
};
|
|
5411
5471
|
};
|
|
5412
5472
|
};
|
|
@@ -5416,8 +5476,8 @@ interface LogisticsClientSpec {
|
|
|
5416
5476
|
};
|
|
5417
5477
|
};
|
|
5418
5478
|
track: {
|
|
5419
|
-
|
|
5420
|
-
list: (params?:
|
|
5479
|
+
trackId: {
|
|
5480
|
+
list: (trackId: number, params?: RtsTrackTrackIdListParams) => Promise<BaseResponse<Record<string, unknown>>>;
|
|
5421
5481
|
};
|
|
5422
5482
|
};
|
|
5423
5483
|
tracks: {
|
|
@@ -5563,7 +5623,7 @@ type PingDataResource$2 = ReturnType<typeof createPingDataResource$2>;
|
|
|
5563
5623
|
/**
|
|
5564
5624
|
* Generated client for logistics service
|
|
5565
5625
|
* Source: shared/specs/logistics.json
|
|
5566
|
-
* Generated: 2026-05-
|
|
5626
|
+
* Generated: 2026-05-12T02:26:15Z
|
|
5567
5627
|
*
|
|
5568
5628
|
* DO NOT EDIT — regenerate with: python shared/scripts/generate-ts.py
|
|
5569
5629
|
*/
|
|
@@ -5584,6 +5644,7 @@ declare class LogisticsClient extends BaseServiceClient {
|
|
|
5584
5644
|
readonly ping: PingResource$2;
|
|
5585
5645
|
readonly pingData: PingDataResource$2;
|
|
5586
5646
|
constructor(http: HTTPClient, baseUrl?: string);
|
|
5647
|
+
protected getServiceDescription(): string;
|
|
5587
5648
|
}
|
|
5588
5649
|
|
|
5589
5650
|
/**
|
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-C72Z8ANN.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-C72Z8ANN.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.4";
|
|
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-C72Z8ANN.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-C72Z8ANN.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.4";
|
|
177
177
|
|
|
178
178
|
export { AugurAPI, type AugurAPIError, AugurError, AuthenticationError, type CrossSiteAuthParams, type CrossSiteAuthResult, NotFoundError, RateLimitError, VERSION, ValidationError, authenticateUserForSite, createCrossSiteAuthenticator };
|