@simpleapps-com/augur-api 2026.5.6 → 2026.6.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.
- package/dist/{client-yZ3HRVgf.d.mts → client-rJXd07YM.d.mts} +236 -53
- package/dist/{client-yZ3HRVgf.d.ts → client-rJXd07YM.d.ts} +236 -53
- package/dist/index.d.mts +3 -3
- package/dist/index.d.ts +3 -3
- package/dist/index.js +1303 -1068
- package/dist/index.js.map +1 -1
- package/dist/index.mjs +1302 -1068
- 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
|
@@ -710,9 +710,9 @@ interface UsergroupsListParams extends EdgeCacheParams {
|
|
|
710
710
|
parentIdList?: string;
|
|
711
711
|
}
|
|
712
712
|
/** Params for GET /users */
|
|
713
|
-
type UsersListParams = EdgeCacheParams;
|
|
713
|
+
type UsersListParams$1 = EdgeCacheParams;
|
|
714
714
|
/** Params for GET /users/{id} */
|
|
715
|
-
type UsersGetParams = EdgeCacheParams;
|
|
715
|
+
type UsersGetParams$1 = EdgeCacheParams;
|
|
716
716
|
/** Params for GET /users/{id}/doc */
|
|
717
717
|
interface UsersDocListParams extends EdgeCacheParams {
|
|
718
718
|
includeShipTo?: string;
|
|
@@ -767,9 +767,9 @@ interface JoomlaClientSpec {
|
|
|
767
767
|
list: (params?: UsergroupsListParams) => Promise<BaseResponse<Record<string, unknown>>>;
|
|
768
768
|
};
|
|
769
769
|
users: {
|
|
770
|
-
list: (params?: UsersListParams) => Promise<BaseResponse<Record<string, unknown>>>;
|
|
770
|
+
list: (params?: UsersListParams$1) => Promise<BaseResponse<Record<string, unknown>>>;
|
|
771
771
|
create: (data: Record<string, unknown>) => Promise<BaseResponse<Record<string, unknown>>>;
|
|
772
|
-
get: (id: number, params?: UsersGetParams) => Promise<BaseResponse<Record<string, unknown>>>;
|
|
772
|
+
get: (id: number, params?: UsersGetParams$1) => Promise<BaseResponse<Record<string, unknown>>>;
|
|
773
773
|
update: (id: number, data: Record<string, unknown>) => Promise<BaseResponse<Record<string, unknown>>>;
|
|
774
774
|
delete: (id: number) => Promise<BaseResponse<Record<string, unknown>>>;
|
|
775
775
|
doc: {
|
|
@@ -827,7 +827,7 @@ type PingResource$b = ReturnType<typeof createPingResource$b>;
|
|
|
827
827
|
/**
|
|
828
828
|
* Generated client for joomla service
|
|
829
829
|
* Source: shared/specs/joomla.json
|
|
830
|
-
* Generated: 2026-
|
|
830
|
+
* Generated: 2026-05-14T19:11:07Z
|
|
831
831
|
*
|
|
832
832
|
* DO NOT EDIT — regenerate with: python shared/scripts/generate-ts.py
|
|
833
833
|
*/
|
|
@@ -961,7 +961,7 @@ type HealthCheckDataResource$p = ReturnType<typeof createHealthCheckDataResource
|
|
|
961
961
|
/**
|
|
962
962
|
* Generated client for commerce service
|
|
963
963
|
* Source: shared/specs/commerce.json
|
|
964
|
-
* Generated: 2026-
|
|
964
|
+
* Generated: 2026-05-14T19:11:02Z
|
|
965
965
|
*
|
|
966
966
|
* DO NOT EDIT — regenerate with: python shared/scripts/generate-ts.py
|
|
967
967
|
*/
|
|
@@ -976,6 +976,7 @@ declare class CommerceClient extends BaseServiceClient {
|
|
|
976
976
|
readonly healthCheck: HealthCheckResource$p;
|
|
977
977
|
readonly healthCheckData: HealthCheckDataResource$p;
|
|
978
978
|
constructor(http: HTTPClient, baseUrl?: string);
|
|
979
|
+
protected getServiceDescription(): string;
|
|
979
980
|
}
|
|
980
981
|
|
|
981
982
|
/**
|
|
@@ -1295,7 +1296,7 @@ type PingDataResource$a = ReturnType<typeof createPingDataResource$a>;
|
|
|
1295
1296
|
/**
|
|
1296
1297
|
* Generated client for pricing service
|
|
1297
1298
|
* Source: shared/specs/pricing.json
|
|
1298
|
-
* Generated: 2026-
|
|
1299
|
+
* Generated: 2026-05-14T19:11:19Z
|
|
1299
1300
|
*
|
|
1300
1301
|
* DO NOT EDIT — regenerate with: python shared/scripts/generate-ts.py
|
|
1301
1302
|
*/
|
|
@@ -1691,7 +1692,7 @@ type PingDataResource$9 = ReturnType<typeof createPingDataResource$9>;
|
|
|
1691
1692
|
/**
|
|
1692
1693
|
* Generated client for vmi service
|
|
1693
1694
|
* Source: shared/specs/vmi.json
|
|
1694
|
-
* Generated: 2026-
|
|
1695
|
+
* Generated: 2026-05-14T19:11:25Z
|
|
1695
1696
|
*
|
|
1696
1697
|
* DO NOT EDIT — regenerate with: python shared/scripts/generate-ts.py
|
|
1697
1698
|
*/
|
|
@@ -1714,6 +1715,7 @@ declare class VMIClient extends BaseServiceClient {
|
|
|
1714
1715
|
readonly ping: PingResource$9;
|
|
1715
1716
|
readonly pingData: PingDataResource$9;
|
|
1716
1717
|
constructor(http: HTTPClient, baseUrl?: string);
|
|
1718
|
+
protected getServiceDescription(): string;
|
|
1717
1719
|
}
|
|
1718
1720
|
|
|
1719
1721
|
/**
|
|
@@ -1934,7 +1936,7 @@ type HealthCheckDataResource$m = ReturnType<typeof createHealthCheckDataResource
|
|
|
1934
1936
|
/**
|
|
1935
1937
|
* Generated client for open-search service
|
|
1936
1938
|
* Source: shared/specs/open-search.json
|
|
1937
|
-
* Generated: 2026-05-
|
|
1939
|
+
* Generated: 2026-05-14T19:18:18Z
|
|
1938
1940
|
*
|
|
1939
1941
|
* DO NOT EDIT — regenerate with: python shared/scripts/generate-ts.py
|
|
1940
1942
|
*/
|
|
@@ -1959,7 +1961,7 @@ declare class OpenSearchClient extends BaseServiceClient {
|
|
|
1959
1961
|
/**
|
|
1960
1962
|
* Generated types for items service
|
|
1961
1963
|
* Source: shared/specs/items.json
|
|
1962
|
-
* Generated: 2026-
|
|
1964
|
+
* Generated: 2026-06-08T14:24:18Z
|
|
1963
1965
|
*
|
|
1964
1966
|
* DO NOT EDIT — regenerate with: python shared/scripts/generate-ts.py
|
|
1965
1967
|
*/
|
|
@@ -1994,6 +1996,17 @@ interface AttributesListParams extends EdgeCacheParams {
|
|
|
1994
1996
|
}
|
|
1995
1997
|
/** Params for GET /attributes/{attributeUid} */
|
|
1996
1998
|
type AttributesGetParams = EdgeCacheParams;
|
|
1999
|
+
/** Params for GET /attributes/{attributeUid}/items */
|
|
2000
|
+
interface AttributesItemsListParams extends EdgeCacheParams {
|
|
2001
|
+
attributeValueUid?: number;
|
|
2002
|
+
excludeValues?: string;
|
|
2003
|
+
includeValues?: string;
|
|
2004
|
+
limit?: number;
|
|
2005
|
+
offset?: number;
|
|
2006
|
+
orderBy?: string;
|
|
2007
|
+
q?: string;
|
|
2008
|
+
statusCd?: number;
|
|
2009
|
+
}
|
|
1997
2010
|
/** Params for GET /attributes/{attributeUid}/values */
|
|
1998
2011
|
interface AttributesValuesListParams extends EdgeCacheParams {
|
|
1999
2012
|
limit?: number;
|
|
@@ -2363,6 +2376,23 @@ interface AttributesData {
|
|
|
2363
2376
|
[key: string]: unknown;
|
|
2364
2377
|
}
|
|
2365
2378
|
/** Response data — fields are MINIMUM, extra fields pass through */
|
|
2379
|
+
interface AttributesItemsData {
|
|
2380
|
+
itemAttributeValueUid?: number;
|
|
2381
|
+
invMastUid?: number;
|
|
2382
|
+
attributeUid?: number;
|
|
2383
|
+
attributeValue?: string | null;
|
|
2384
|
+
dateCreated?: string;
|
|
2385
|
+
createdBy?: string;
|
|
2386
|
+
dateLastModified?: string;
|
|
2387
|
+
lastMaintainedBy?: string;
|
|
2388
|
+
updateCd?: number;
|
|
2389
|
+
processCd?: number;
|
|
2390
|
+
statusCd?: number;
|
|
2391
|
+
attributeValueUid?: number;
|
|
2392
|
+
onlineCd?: number;
|
|
2393
|
+
[key: string]: unknown;
|
|
2394
|
+
}
|
|
2395
|
+
/** Response data — fields are MINIMUM, extra fields pass through */
|
|
2366
2396
|
interface AttributesValuesData {
|
|
2367
2397
|
attributeValueUid?: number;
|
|
2368
2398
|
attributeUid?: number;
|
|
@@ -2463,23 +2493,6 @@ interface InvLocData {
|
|
|
2463
2493
|
[key: string]: unknown;
|
|
2464
2494
|
}
|
|
2465
2495
|
/** Response data — fields are MINIMUM, extra fields pass through */
|
|
2466
|
-
interface InvMastAttributesData {
|
|
2467
|
-
itemAttributeValueUid?: number;
|
|
2468
|
-
invMastUid?: number;
|
|
2469
|
-
attributeUid?: number;
|
|
2470
|
-
attributeValue?: string | null;
|
|
2471
|
-
dateCreated?: string;
|
|
2472
|
-
createdBy?: string;
|
|
2473
|
-
dateLastModified?: string;
|
|
2474
|
-
lastMaintainedBy?: string;
|
|
2475
|
-
updateCd?: number;
|
|
2476
|
-
processCd?: number;
|
|
2477
|
-
statusCd?: number;
|
|
2478
|
-
attributeValueUid?: number;
|
|
2479
|
-
onlineCd?: number;
|
|
2480
|
-
[key: string]: unknown;
|
|
2481
|
-
}
|
|
2482
|
-
/** Response data — fields are MINIMUM, extra fields pass through */
|
|
2483
2496
|
interface InvMastFaqData {
|
|
2484
2497
|
invMastFaqUid?: number;
|
|
2485
2498
|
invMastUid?: number;
|
|
@@ -2555,6 +2568,9 @@ interface ItemsClientSpec {
|
|
|
2555
2568
|
get: (attributeUid: number, params?: AttributesGetParams) => Promise<BaseResponse<AttributesData>>;
|
|
2556
2569
|
update: (attributeUid: number, data: Record<string, unknown>) => Promise<BaseResponse<AttributesData>>;
|
|
2557
2570
|
delete: (attributeUid: number) => Promise<BaseResponse<Record<string, unknown>>>;
|
|
2571
|
+
items: {
|
|
2572
|
+
list: (attributeUid: number, params?: AttributesItemsListParams) => Promise<BaseResponse<AttributesItemsData[]>>;
|
|
2573
|
+
};
|
|
2558
2574
|
values: {
|
|
2559
2575
|
list: (attributeUid: number, params?: AttributesValuesListParams) => Promise<BaseResponse<AttributesValuesData[]>>;
|
|
2560
2576
|
create: (attributeUid: number, data: Record<string, unknown>) => Promise<BaseResponse<AttributesValuesData>>;
|
|
@@ -2619,11 +2635,11 @@ interface ItemsClientSpec {
|
|
|
2619
2635
|
};
|
|
2620
2636
|
attributes: {
|
|
2621
2637
|
list: (invMastUid: number, params?: InvMastAttributesListParams) => Promise<BaseResponse<Record<string, unknown>>>;
|
|
2622
|
-
create: (invMastUid: number, data: Record<string, unknown>) => Promise<BaseResponse<
|
|
2638
|
+
create: (invMastUid: number, data: Record<string, unknown>) => Promise<BaseResponse<AttributesItemsData>>;
|
|
2623
2639
|
values: {
|
|
2624
2640
|
list: (invMastUid: number, attributeUid: number, params?: InvMastAttributesValuesListParams) => Promise<BaseResponse<Record<string, unknown>>>;
|
|
2625
|
-
create: (invMastUid: number, attributeUid: number, data: Record<string, unknown>) => Promise<BaseResponse<
|
|
2626
|
-
update: (invMastUid: number, attributeUid: number, attributeValueUid: number, data: Record<string, unknown>) => Promise<BaseResponse<
|
|
2641
|
+
create: (invMastUid: number, attributeUid: number, data: Record<string, unknown>) => Promise<BaseResponse<AttributesItemsData>>;
|
|
2642
|
+
update: (invMastUid: number, attributeUid: number, attributeValueUid: number, data: Record<string, unknown>) => Promise<BaseResponse<AttributesItemsData>>;
|
|
2627
2643
|
delete: (invMastUid: number, attributeUid: number, attributeValueUid: number) => Promise<BaseResponse<Record<string, unknown>>>;
|
|
2628
2644
|
};
|
|
2629
2645
|
};
|
|
@@ -2831,7 +2847,7 @@ type WhoamiDataResource$1 = ReturnType<typeof createWhoamiDataResource$1>;
|
|
|
2831
2847
|
/**
|
|
2832
2848
|
* Generated client for items service
|
|
2833
2849
|
* Source: shared/specs/items.json
|
|
2834
|
-
* Generated: 2026-
|
|
2850
|
+
* Generated: 2026-06-08T14:24:18Z
|
|
2835
2851
|
*
|
|
2836
2852
|
* DO NOT EDIT — regenerate with: python shared/scripts/generate-ts.py
|
|
2837
2853
|
*/
|
|
@@ -3089,7 +3105,7 @@ type HealthCheckDataResource$k = ReturnType<typeof createHealthCheckDataResource
|
|
|
3089
3105
|
/**
|
|
3090
3106
|
* Generated client for legacy service
|
|
3091
3107
|
* Source: shared/specs/legacy.json
|
|
3092
|
-
* Generated: 2026-05-
|
|
3108
|
+
* Generated: 2026-05-14T19:11:09Z
|
|
3093
3109
|
*
|
|
3094
3110
|
* DO NOT EDIT — regenerate with: python shared/scripts/generate-ts.py
|
|
3095
3111
|
*/
|
|
@@ -3386,7 +3402,7 @@ type PingDataResource$6 = ReturnType<typeof createPingDataResource$6>;
|
|
|
3386
3402
|
/**
|
|
3387
3403
|
* Generated client for nexus service
|
|
3388
3404
|
* Source: shared/specs/nexus.json
|
|
3389
|
-
* Generated: 2026-
|
|
3405
|
+
* Generated: 2026-05-14T19:11:11Z
|
|
3390
3406
|
*
|
|
3391
3407
|
* DO NOT EDIT — regenerate with: python shared/scripts/generate-ts.py
|
|
3392
3408
|
*/
|
|
@@ -3409,6 +3425,7 @@ declare class NexusClient extends BaseServiceClient {
|
|
|
3409
3425
|
readonly ping: PingResource$6;
|
|
3410
3426
|
readonly pingData: PingDataResource$6;
|
|
3411
3427
|
constructor(http: HTTPClient, baseUrl?: string);
|
|
3428
|
+
protected getServiceDescription(): string;
|
|
3412
3429
|
}
|
|
3413
3430
|
|
|
3414
3431
|
/**
|
|
@@ -3827,7 +3844,7 @@ type WhoamiDataResource = ReturnType<typeof createWhoamiDataResource>;
|
|
|
3827
3844
|
/**
|
|
3828
3845
|
* Generated client for agr-site service
|
|
3829
3846
|
* Source: shared/specs/agr-site.json
|
|
3830
|
-
* Generated: 2026-05-
|
|
3847
|
+
* Generated: 2026-05-14T19:10:57Z
|
|
3831
3848
|
*
|
|
3832
3849
|
* DO NOT EDIT — regenerate with: python shared/scripts/generate-ts.py
|
|
3833
3850
|
*/
|
|
@@ -3864,7 +3881,7 @@ declare class AgrSiteClient extends BaseServiceClient {
|
|
|
3864
3881
|
/**
|
|
3865
3882
|
* Generated types for customers service
|
|
3866
3883
|
* Source: shared/specs/customers.json
|
|
3867
|
-
* Generated: 2026-
|
|
3884
|
+
* Generated: 2026-06-08T16:58:52Z
|
|
3868
3885
|
*
|
|
3869
3886
|
* DO NOT EDIT — regenerate with: python shared/scripts/generate-ts.py
|
|
3870
3887
|
*/
|
|
@@ -3906,6 +3923,7 @@ interface CustomerAddressListParams extends EdgeCacheParams {
|
|
|
3906
3923
|
}
|
|
3907
3924
|
/** Params for GET /customer/{customerId}/addresses */
|
|
3908
3925
|
interface CustomerAddressesListParams extends EdgeCacheParams {
|
|
3926
|
+
emailAddress?: string;
|
|
3909
3927
|
limit?: number;
|
|
3910
3928
|
offset?: number;
|
|
3911
3929
|
orderBy?: string;
|
|
@@ -3938,6 +3956,9 @@ type CustomerInvoicesGetParams = EdgeCacheParams;
|
|
|
3938
3956
|
interface CustomerOrdersListParams extends EdgeCacheParams {
|
|
3939
3957
|
cancelFlag?: string;
|
|
3940
3958
|
contactId?: string;
|
|
3959
|
+
createdFrom?: string;
|
|
3960
|
+
createdOn?: string;
|
|
3961
|
+
createdTo?: string;
|
|
3941
3962
|
deleteFlag?: string;
|
|
3942
3963
|
fullDocument?: string;
|
|
3943
3964
|
limit?: number;
|
|
@@ -3955,12 +3976,26 @@ interface CustomerPurchasedItemsListParams extends EdgeCacheParams {
|
|
|
3955
3976
|
}
|
|
3956
3977
|
/** Params for GET /customer/{customerId}/quotes */
|
|
3957
3978
|
interface CustomerQuotesListParams extends EdgeCacheParams {
|
|
3979
|
+
createdFrom?: string;
|
|
3980
|
+
createdOn?: string;
|
|
3981
|
+
createdTo?: string;
|
|
3958
3982
|
limit?: number;
|
|
3959
3983
|
offset?: number;
|
|
3960
3984
|
orderBy?: string;
|
|
3961
3985
|
}
|
|
3962
3986
|
/** Params for GET /customer/{customerId}/quotes/{quoteNo} */
|
|
3963
3987
|
type CustomerQuotesGetParams = EdgeCacheParams;
|
|
3988
|
+
/** Params for GET /customer/{customerId}/rmas */
|
|
3989
|
+
interface CustomerRmasListParams extends EdgeCacheParams {
|
|
3990
|
+
createdFrom?: string;
|
|
3991
|
+
createdOn?: string;
|
|
3992
|
+
createdTo?: string;
|
|
3993
|
+
limit?: number;
|
|
3994
|
+
offset?: number;
|
|
3995
|
+
orderBy?: string;
|
|
3996
|
+
}
|
|
3997
|
+
/** Params for GET /customer/{customerId}/rmas/{rmaNo} */
|
|
3998
|
+
type CustomerRmasGetParams = EdgeCacheParams;
|
|
3964
3999
|
/** Params for GET /customer/{customerId}/ship-to */
|
|
3965
4000
|
interface CustomerShipToListParams extends EdgeCacheParams {
|
|
3966
4001
|
limit?: number;
|
|
@@ -3996,6 +4031,10 @@ interface CustomerAddressesData {
|
|
|
3996
4031
|
processCd?: number;
|
|
3997
4032
|
dateCreated?: string;
|
|
3998
4033
|
dateLastModified?: string;
|
|
4034
|
+
emailAddress?: string | null;
|
|
4035
|
+
name?: string | null;
|
|
4036
|
+
phoneNumberMain?: string | null;
|
|
4037
|
+
phoneNumberMobile?: string | null;
|
|
3999
4038
|
[key: string]: unknown;
|
|
4000
4039
|
}
|
|
4001
4040
|
/** Response data — fields are MINIMUM, extra fields pass through */
|
|
@@ -4067,6 +4106,10 @@ interface CustomersClientSpec {
|
|
|
4067
4106
|
list: (customerId: number, params?: CustomerQuotesListParams) => Promise<BaseResponse<Record<string, unknown>>>;
|
|
4068
4107
|
get: (customerId: number, quoteNo: number, params?: CustomerQuotesGetParams) => Promise<BaseResponse<Record<string, unknown>>>;
|
|
4069
4108
|
};
|
|
4109
|
+
rmas: {
|
|
4110
|
+
list: (customerId: number, params?: CustomerRmasListParams) => Promise<BaseResponse<Record<string, unknown>>>;
|
|
4111
|
+
get: (customerId: number, rmaNo: number, params?: CustomerRmasGetParams) => Promise<BaseResponse<Record<string, unknown>>>;
|
|
4112
|
+
};
|
|
4070
4113
|
shipTo: {
|
|
4071
4114
|
list: (customerId: number, params?: CustomerShipToListParams) => Promise<BaseResponse<Record<string, unknown>>>;
|
|
4072
4115
|
create: (customerId: number, data: Record<string, unknown>) => Promise<BaseResponse<Record<string, unknown>>>;
|
|
@@ -4120,7 +4163,7 @@ type HealthCheckDataResource$h = ReturnType<typeof createHealthCheckDataResource
|
|
|
4120
4163
|
/**
|
|
4121
4164
|
* Generated client for customers service
|
|
4122
4165
|
* Source: shared/specs/customers.json
|
|
4123
|
-
* Generated: 2026-
|
|
4166
|
+
* Generated: 2026-06-08T16:58:52Z
|
|
4124
4167
|
*
|
|
4125
4168
|
* DO NOT EDIT — regenerate with: python shared/scripts/generate-ts.py
|
|
4126
4169
|
*/
|
|
@@ -4507,7 +4550,7 @@ type HealthCheckDataResource$f = ReturnType<typeof createHealthCheckDataResource
|
|
|
4507
4550
|
/**
|
|
4508
4551
|
* Generated client for p21-pim service
|
|
4509
4552
|
* Source: shared/specs/p21-pim.json
|
|
4510
|
-
* Generated: 2026-
|
|
4553
|
+
* Generated: 2026-05-14T19:11:16Z
|
|
4511
4554
|
*
|
|
4512
4555
|
* DO NOT EDIT — regenerate with: python shared/scripts/generate-ts.py
|
|
4513
4556
|
*/
|
|
@@ -4695,7 +4738,7 @@ type PingDataResource$4 = ReturnType<typeof createPingDataResource$4>;
|
|
|
4695
4738
|
/**
|
|
4696
4739
|
* Generated client for payments service
|
|
4697
4740
|
* Source: shared/specs/payments.json
|
|
4698
|
-
* Generated: 2026-
|
|
4741
|
+
* Generated: 2026-05-14T19:11:18Z
|
|
4699
4742
|
*
|
|
4700
4743
|
* DO NOT EDIT — regenerate with: python shared/scripts/generate-ts.py
|
|
4701
4744
|
*/
|
|
@@ -4714,6 +4757,7 @@ declare class PaymentsClient extends BaseServiceClient {
|
|
|
4714
4757
|
readonly ping: PingResource$4;
|
|
4715
4758
|
readonly pingData: PingDataResource$4;
|
|
4716
4759
|
constructor(http: HTTPClient, baseUrl?: string);
|
|
4760
|
+
protected getServiceDescription(): string;
|
|
4717
4761
|
}
|
|
4718
4762
|
|
|
4719
4763
|
/**
|
|
@@ -4882,7 +4926,7 @@ type HealthCheckDataResource$d = ReturnType<typeof createHealthCheckDataResource
|
|
|
4882
4926
|
/**
|
|
4883
4927
|
* Generated client for agr-info service
|
|
4884
4928
|
* Source: shared/specs/agr-info.json
|
|
4885
|
-
* Generated: 2026-05-
|
|
4929
|
+
* Generated: 2026-05-14T19:10:56Z
|
|
4886
4930
|
*
|
|
4887
4931
|
* DO NOT EDIT — regenerate with: python shared/scripts/generate-ts.py
|
|
4888
4932
|
*/
|
|
@@ -4910,6 +4954,138 @@ declare class AgrInfoClient extends BaseServiceClient {
|
|
|
4910
4954
|
protected getServiceDescription(): string;
|
|
4911
4955
|
}
|
|
4912
4956
|
|
|
4957
|
+
/**
|
|
4958
|
+
* Generated types for agr-int service
|
|
4959
|
+
* Source: shared/specs/agr-int.json
|
|
4960
|
+
* Generated: 2026-06-08T20:59:12Z
|
|
4961
|
+
*
|
|
4962
|
+
* DO NOT EDIT — regenerate with: python shared/scripts/generate-ts.py
|
|
4963
|
+
*/
|
|
4964
|
+
|
|
4965
|
+
/** Params for GET /roles */
|
|
4966
|
+
interface RolesListParams extends EdgeCacheParams {
|
|
4967
|
+
limit?: number;
|
|
4968
|
+
offset?: number;
|
|
4969
|
+
orderBy?: string;
|
|
4970
|
+
roleId?: string;
|
|
4971
|
+
roleName?: string;
|
|
4972
|
+
statusCd?: number;
|
|
4973
|
+
systemFlag?: string;
|
|
4974
|
+
}
|
|
4975
|
+
/** Params for GET /roles/{rolesUid} */
|
|
4976
|
+
type RolesGetParams = EdgeCacheParams;
|
|
4977
|
+
/** Params for GET /users */
|
|
4978
|
+
interface UsersListParams extends EdgeCacheParams {
|
|
4979
|
+
email?: string;
|
|
4980
|
+
limit?: number;
|
|
4981
|
+
offset?: number;
|
|
4982
|
+
orderBy?: string;
|
|
4983
|
+
phoneNumber?: string;
|
|
4984
|
+
statusCd?: number;
|
|
4985
|
+
username?: string;
|
|
4986
|
+
}
|
|
4987
|
+
/** Params for GET /users/{usersUid} */
|
|
4988
|
+
type UsersGetParams = EdgeCacheParams;
|
|
4989
|
+
/** Params for GET /users/{usersUid}/roles */
|
|
4990
|
+
interface UsersRolesListParams extends EdgeCacheParams {
|
|
4991
|
+
limit?: number;
|
|
4992
|
+
offset?: number;
|
|
4993
|
+
orderBy?: string;
|
|
4994
|
+
statusCd?: number;
|
|
4995
|
+
}
|
|
4996
|
+
/** Params for GET /users/{usersUid}/roles/{usersXRolesUid} */
|
|
4997
|
+
type UsersRolesGetParams = EdgeCacheParams;
|
|
4998
|
+
/** Response data — fields are MINIMUM, extra fields pass through */
|
|
4999
|
+
interface RolesData {
|
|
5000
|
+
rolesUid?: number;
|
|
5001
|
+
roleId?: string;
|
|
5002
|
+
roleName?: string;
|
|
5003
|
+
description?: string | null;
|
|
5004
|
+
systemFlag?: string;
|
|
5005
|
+
dateCreated?: string;
|
|
5006
|
+
dateLastModified?: string;
|
|
5007
|
+
updateCd?: number;
|
|
5008
|
+
statusCd?: number;
|
|
5009
|
+
processCd?: number;
|
|
5010
|
+
[key: string]: unknown;
|
|
5011
|
+
}
|
|
5012
|
+
/** Response data — fields are MINIMUM, extra fields pass through */
|
|
5013
|
+
interface UsersData {
|
|
5014
|
+
usersUid?: number;
|
|
5015
|
+
username?: string;
|
|
5016
|
+
password?: string;
|
|
5017
|
+
name?: string | null;
|
|
5018
|
+
email?: string;
|
|
5019
|
+
phoneNumber?: string | null;
|
|
5020
|
+
dateCreated?: string;
|
|
5021
|
+
dateLastModified?: string;
|
|
5022
|
+
updateCd?: number;
|
|
5023
|
+
statusCd?: number;
|
|
5024
|
+
processCd?: number;
|
|
5025
|
+
[key: string]: unknown;
|
|
5026
|
+
}
|
|
5027
|
+
/** Response data — fields are MINIMUM, extra fields pass through */
|
|
5028
|
+
interface UsersVerifyData {
|
|
5029
|
+
usersUid?: number;
|
|
5030
|
+
username?: string;
|
|
5031
|
+
[key: string]: unknown;
|
|
5032
|
+
}
|
|
5033
|
+
/** Response data — fields are MINIMUM, extra fields pass through */
|
|
5034
|
+
interface UsersRolesData {
|
|
5035
|
+
usersXRolesUid?: number;
|
|
5036
|
+
usersUid?: number;
|
|
5037
|
+
rolesUid?: number;
|
|
5038
|
+
dateCreated?: string;
|
|
5039
|
+
dateLastModified?: string;
|
|
5040
|
+
updateCd?: number;
|
|
5041
|
+
statusCd?: number;
|
|
5042
|
+
processCd?: number;
|
|
5043
|
+
[key: string]: unknown;
|
|
5044
|
+
}
|
|
5045
|
+
interface AgrIntClientSpec {
|
|
5046
|
+
roles: {
|
|
5047
|
+
list: (params?: RolesListParams) => Promise<BaseResponse<RolesData[]>>;
|
|
5048
|
+
create: (data: Record<string, unknown>) => Promise<BaseResponse<RolesData>>;
|
|
5049
|
+
get: (rolesUid: number, params?: RolesGetParams) => Promise<BaseResponse<RolesData>>;
|
|
5050
|
+
update: (rolesUid: number, data: Record<string, unknown>) => Promise<BaseResponse<RolesData>>;
|
|
5051
|
+
delete: (rolesUid: number) => Promise<BaseResponse<RolesData>>;
|
|
5052
|
+
};
|
|
5053
|
+
users: {
|
|
5054
|
+
list: (params?: UsersListParams) => Promise<BaseResponse<UsersData[]>>;
|
|
5055
|
+
create: (data: Record<string, unknown>) => Promise<BaseResponse<UsersData>>;
|
|
5056
|
+
get: (usersUid: number, params?: UsersGetParams) => Promise<BaseResponse<UsersData>>;
|
|
5057
|
+
update: (usersUid: number, data: Record<string, unknown>) => Promise<BaseResponse<UsersData>>;
|
|
5058
|
+
delete: (usersUid: number) => Promise<BaseResponse<UsersData>>;
|
|
5059
|
+
roles: {
|
|
5060
|
+
list: (usersUid: number, params?: UsersRolesListParams) => Promise<BaseResponse<UsersRolesData[]>>;
|
|
5061
|
+
create: (usersUid: number, data: Record<string, unknown>) => Promise<BaseResponse<UsersRolesData>>;
|
|
5062
|
+
get: (usersUid: number, usersXRolesUid: number, params?: UsersRolesGetParams) => Promise<BaseResponse<UsersRolesData>>;
|
|
5063
|
+
update: (usersUid: number, usersXRolesUid: number, data: Record<string, unknown>) => Promise<BaseResponse<UsersRolesData>>;
|
|
5064
|
+
delete: (usersUid: number, usersXRolesUid: number) => Promise<BaseResponse<UsersRolesData>>;
|
|
5065
|
+
};
|
|
5066
|
+
verify: {
|
|
5067
|
+
create: (data: Record<string, unknown>) => Promise<BaseResponse<UsersVerifyData>>;
|
|
5068
|
+
};
|
|
5069
|
+
};
|
|
5070
|
+
}
|
|
5071
|
+
|
|
5072
|
+
/**
|
|
5073
|
+
* Generated client for agr-int service
|
|
5074
|
+
* Source: shared/specs/agr-int.json
|
|
5075
|
+
* Generated: 2026-06-08T20:59:12Z
|
|
5076
|
+
*
|
|
5077
|
+
* DO NOT EDIT — regenerate with: python shared/scripts/generate-ts.py
|
|
5078
|
+
*/
|
|
5079
|
+
|
|
5080
|
+
declare class AgrIntClient extends BaseServiceClient {
|
|
5081
|
+
readonly roles: AgrIntClientSpec['roles'];
|
|
5082
|
+
readonly users: AgrIntClientSpec['users'];
|
|
5083
|
+
readonly rolesData: AgrIntClientSpec['roles'];
|
|
5084
|
+
readonly usersData: AgrIntClientSpec['users'];
|
|
5085
|
+
constructor(http: HTTPClient, baseUrl?: string);
|
|
5086
|
+
protected getServiceDescription(): string;
|
|
5087
|
+
}
|
|
5088
|
+
|
|
4913
5089
|
type ExecuteRequest$e = AgrWorkClient['executeRequest'];
|
|
4914
5090
|
/**
|
|
4915
5091
|
* Creates the healthCheck resource methods
|
|
@@ -5035,7 +5211,7 @@ type PingDataResource$3 = ReturnType<typeof createPingDataResource$3>;
|
|
|
5035
5211
|
/**
|
|
5036
5212
|
* Generated client for agr-work service
|
|
5037
5213
|
* Source: shared/specs/agr-work.json
|
|
5038
|
-
* Generated: 2026-
|
|
5214
|
+
* Generated: 2026-05-14T19:10:58Z
|
|
5039
5215
|
*
|
|
5040
5216
|
* DO NOT EDIT — regenerate with: python shared/scripts/generate-ts.py
|
|
5041
5217
|
*/
|
|
@@ -5120,7 +5296,7 @@ type HealthCheckDataResource$b = ReturnType<typeof createHealthCheckDataResource
|
|
|
5120
5296
|
/**
|
|
5121
5297
|
* Generated client for avalara service
|
|
5122
5298
|
* Source: shared/specs/avalara.json
|
|
5123
|
-
* Generated: 2026-
|
|
5299
|
+
* Generated: 2026-05-14T19:10:59Z
|
|
5124
5300
|
*
|
|
5125
5301
|
* DO NOT EDIT — regenerate with: python shared/scripts/generate-ts.py
|
|
5126
5302
|
*/
|
|
@@ -5207,7 +5383,7 @@ type HealthCheckDataResource$a = ReturnType<typeof createHealthCheckDataResource
|
|
|
5207
5383
|
/**
|
|
5208
5384
|
* Generated client for brand-folder service
|
|
5209
5385
|
* Source: shared/specs/brand-folder.json
|
|
5210
|
-
* Generated: 2026-
|
|
5386
|
+
* Generated: 2026-05-14T19:11:02Z
|
|
5211
5387
|
*
|
|
5212
5388
|
* DO NOT EDIT — regenerate with: python shared/scripts/generate-ts.py
|
|
5213
5389
|
*/
|
|
@@ -5309,7 +5485,7 @@ type HealthCheckDataResource$9 = ReturnType<typeof createHealthCheckDataResource
|
|
|
5309
5485
|
/**
|
|
5310
5486
|
* Generated client for gregorovich service
|
|
5311
5487
|
* Source: shared/specs/gregorovich.json
|
|
5312
|
-
* Generated: 2026-
|
|
5488
|
+
* Generated: 2026-05-14T19:11:05Z
|
|
5313
5489
|
*
|
|
5314
5490
|
* DO NOT EDIT — regenerate with: python shared/scripts/generate-ts.py
|
|
5315
5491
|
*/
|
|
@@ -5641,7 +5817,7 @@ type PingDataResource$2 = ReturnType<typeof createPingDataResource$2>;
|
|
|
5641
5817
|
/**
|
|
5642
5818
|
* Generated client for logistics service
|
|
5643
5819
|
* Source: shared/specs/logistics.json
|
|
5644
|
-
* Generated: 2026-05-
|
|
5820
|
+
* Generated: 2026-05-14T19:18:10Z
|
|
5645
5821
|
*
|
|
5646
5822
|
* DO NOT EDIT — regenerate with: python shared/scripts/generate-ts.py
|
|
5647
5823
|
*/
|
|
@@ -5790,7 +5966,7 @@ type HealthCheckDataResource$7 = ReturnType<typeof createHealthCheckDataResource
|
|
|
5790
5966
|
/**
|
|
5791
5967
|
* Generated client for p21-apis service
|
|
5792
5968
|
* Source: shared/specs/p21-apis.json
|
|
5793
|
-
* Generated: 2026-
|
|
5969
|
+
* Generated: 2026-05-14T19:11:14Z
|
|
5794
5970
|
*
|
|
5795
5971
|
* DO NOT EDIT — regenerate with: python shared/scripts/generate-ts.py
|
|
5796
5972
|
*/
|
|
@@ -5813,6 +5989,7 @@ declare class P21ApisClient extends BaseServiceClient {
|
|
|
5813
5989
|
readonly healthCheck: HealthCheckResource$7;
|
|
5814
5990
|
readonly healthCheckData: HealthCheckDataResource$7;
|
|
5815
5991
|
constructor(http: HTTPClient, baseUrl?: string);
|
|
5992
|
+
protected getServiceDescription(): string;
|
|
5816
5993
|
}
|
|
5817
5994
|
|
|
5818
5995
|
/**
|
|
@@ -6068,7 +6245,7 @@ type PingDataResource$1 = ReturnType<typeof createPingDataResource$1>;
|
|
|
6068
6245
|
/**
|
|
6069
6246
|
* Generated client for p21-core service
|
|
6070
6247
|
* Source: shared/specs/p21-core.json
|
|
6071
|
-
* Generated: 2026-
|
|
6248
|
+
* Generated: 2026-05-14T19:11:15Z
|
|
6072
6249
|
*
|
|
6073
6250
|
* DO NOT EDIT — regenerate with: python shared/scripts/generate-ts.py
|
|
6074
6251
|
*/
|
|
@@ -6264,7 +6441,7 @@ type HealthCheckDataResource$5 = ReturnType<typeof createHealthCheckDataResource
|
|
|
6264
6441
|
/**
|
|
6265
6442
|
* Generated client for p21-sism service
|
|
6266
6443
|
* Source: shared/specs/p21-sism.json
|
|
6267
|
-
* Generated: 2026-
|
|
6444
|
+
* Generated: 2026-05-14T19:11:17Z
|
|
6268
6445
|
*
|
|
6269
6446
|
* DO NOT EDIT — regenerate with: python shared/scripts/generate-ts.py
|
|
6270
6447
|
*/
|
|
@@ -6358,7 +6535,7 @@ type HealthCheckDataResource$4 = ReturnType<typeof createHealthCheckDataResource
|
|
|
6358
6535
|
/**
|
|
6359
6536
|
* Generated client for shipping service
|
|
6360
6537
|
* Source: shared/specs/shipping.json
|
|
6361
|
-
* Generated: 2026-
|
|
6538
|
+
* Generated: 2026-05-14T19:11:21Z
|
|
6362
6539
|
*
|
|
6363
6540
|
* DO NOT EDIT — regenerate with: python shared/scripts/generate-ts.py
|
|
6364
6541
|
*/
|
|
@@ -6466,7 +6643,7 @@ type HealthCheckDataResource$3 = ReturnType<typeof createHealthCheckDataResource
|
|
|
6466
6643
|
/**
|
|
6467
6644
|
* Generated client for slack service
|
|
6468
6645
|
* Source: shared/specs/slack.json
|
|
6469
|
-
* Generated: 2026-
|
|
6646
|
+
* Generated: 2026-05-14T19:11:21Z
|
|
6470
6647
|
*
|
|
6471
6648
|
* DO NOT EDIT — regenerate with: python shared/scripts/generate-ts.py
|
|
6472
6649
|
*/
|
|
@@ -6653,7 +6830,7 @@ type PingDataResource = ReturnType<typeof createPingDataResource>;
|
|
|
6653
6830
|
/**
|
|
6654
6831
|
* Generated client for smarty-streets service
|
|
6655
6832
|
* Source: shared/specs/smarty-streets.json
|
|
6656
|
-
* Generated: 2026-
|
|
6833
|
+
* Generated: 2026-05-14T19:11:23Z
|
|
6657
6834
|
*
|
|
6658
6835
|
* DO NOT EDIT — regenerate with: python shared/scripts/generate-ts.py
|
|
6659
6836
|
*/
|
|
@@ -6788,7 +6965,7 @@ type HealthCheckDataResource$1 = ReturnType<typeof createHealthCheckDataResource
|
|
|
6788
6965
|
/**
|
|
6789
6966
|
* Generated client for ups service
|
|
6790
6967
|
* Source: shared/specs/ups.json
|
|
6791
|
-
* Generated: 2026-
|
|
6968
|
+
* Generated: 2026-05-14T19:11:24Z
|
|
6792
6969
|
*
|
|
6793
6970
|
* DO NOT EDIT — regenerate with: python shared/scripts/generate-ts.py
|
|
6794
6971
|
*/
|
|
@@ -7305,7 +7482,7 @@ type HealthCheckDataResource = ReturnType<typeof createHealthCheckDataResource>;
|
|
|
7305
7482
|
/**
|
|
7306
7483
|
* Generated client for basecamp2 service
|
|
7307
7484
|
* Source: shared/specs/basecamp2.json
|
|
7308
|
-
* Generated: 2026-
|
|
7485
|
+
* Generated: 2026-05-14T19:11:01Z
|
|
7309
7486
|
*
|
|
7310
7487
|
* DO NOT EDIT — regenerate with: python shared/scripts/generate-ts.py
|
|
7311
7488
|
*/
|
|
@@ -7330,6 +7507,7 @@ declare class Basecamp2Client extends BaseServiceClient {
|
|
|
7330
7507
|
readonly healthCheck: HealthCheckResource;
|
|
7331
7508
|
readonly healthCheckData: HealthCheckDataResource;
|
|
7332
7509
|
constructor(http: HTTPClient, baseUrl?: string);
|
|
7510
|
+
protected getServiceDescription(): string;
|
|
7333
7511
|
}
|
|
7334
7512
|
|
|
7335
7513
|
/**
|
|
@@ -7465,6 +7643,7 @@ declare class AugurAPI {
|
|
|
7465
7643
|
private _p21Pim?;
|
|
7466
7644
|
private _payments?;
|
|
7467
7645
|
private _agrInfo?;
|
|
7646
|
+
private _agrInt?;
|
|
7468
7647
|
private _agrWork?;
|
|
7469
7648
|
private _avalara?;
|
|
7470
7649
|
private _brandFolder?;
|
|
@@ -7561,6 +7740,10 @@ declare class AugurAPI {
|
|
|
7561
7740
|
* Access AGR Info service endpoints
|
|
7562
7741
|
*/
|
|
7563
7742
|
get agrInfo(): AgrInfoClient;
|
|
7743
|
+
/**
|
|
7744
|
+
* Access AGR Int (internal RBAC) service endpoints
|
|
7745
|
+
*/
|
|
7746
|
+
get agrInt(): AgrIntClient;
|
|
7564
7747
|
/**
|
|
7565
7748
|
* Access AGR Work service endpoints
|
|
7566
7749
|
*/
|
|
@@ -7775,4 +7958,4 @@ declare class AugurAPI {
|
|
|
7775
7958
|
private calculateMultiWordMatches;
|
|
7776
7959
|
}
|
|
7777
7960
|
|
|
7778
|
-
export { AugurAPI as A, type BaseResponse as B, CommerceClient as C, type DiscoveryEndpoint as D, type EndpointSearchResult as E, GregorovichClient as G, type HealthCheckData$1 as H, ItemsClient as I, JoomlaClient as J, LegacyClient as L, NexusClient as N, OpenSearchClient as O, P21ApisClient as P, type RequestConfig as R, type ServiceMap as S, UPSClient as U, VMIClient as V, AgrInfoClient as a,
|
|
7961
|
+
export { AugurAPI as A, type BaseResponse as B, CommerceClient as C, type DiscoveryEndpoint as D, type EndpointSearchResult as E, SmartyStreetsClient as F, GregorovichClient as G, type HealthCheckData$1 as H, ItemsClient as I, JoomlaClient as J, LegacyClient as L, NexusClient as N, OpenSearchClient as O, P21ApisClient as P, type RequestConfig as R, type ServiceMap as S, UPSClient as U, VMIClient as V, AgrInfoClient as a, AgrIntClient as b, AgrSiteClient as c, AgrWorkClient as d, type AugurAPIConfig as e, type AugurContext as f, type AugurRequestConfig as g, type AugurRequestError as h, type AugurResponse as i, AvalaraClient as j, BaseResponseSchema as k, Basecamp2Client as l, BrandFolderClient as m, ContextCreationError as n, CustomersClient as o, HealthCheckDataSchema as p, LogisticsClient as q, OrdersClient as r, P21CoreClient as s, P21PimClient as t, P21SismClient as u, PaginationParamsSchema as v, PaymentsClient as w, PricingClient as x, ShippingClient as y, SlackClient as z };
|
package/dist/index.d.mts
CHANGED
|
@@ -1,5 +1,5 @@
|
|
|
1
|
-
import { A as AugurAPI } from './client-
|
|
2
|
-
export { a as AgrInfoClient, b as
|
|
1
|
+
import { A as AugurAPI } from './client-rJXd07YM.mjs';
|
|
2
|
+
export { a as AgrInfoClient, b as AgrIntClient, c as AgrSiteClient, d as AgrWorkClient, e as AugurAPIConfig, f as AugurContext, g as AugurRequestConfig, h as AugurRequestError, i as AugurResponse, j as AvalaraClient, B as BaseResponse, k as BaseResponseSchema, l as Basecamp2Client, m as BrandFolderClient, C as CommerceClient, n as ContextCreationError, o as CustomersClient, D as DiscoveryEndpoint, E as EndpointSearchResult, G as GregorovichClient, H as HealthCheckData, p as HealthCheckDataSchema, I as ItemsClient, J as JoomlaClient, L as LegacyClient, q as LogisticsClient, N as NexusClient, O as OpenSearchClient, r as OrdersClient, P as P21ApisClient, s as P21CoreClient, t as P21PimClient, u as P21SismClient, v as PaginationParamsSchema, w as PaymentsClient, x as PricingClient, R as RequestConfig, S as ServiceMap, y as ShippingClient, z as SlackClient, F as SmartyStreetsClient, U as UPSClient, V as VMIClient } from './client-rJXd07YM.mjs';
|
|
3
3
|
import 'valibot';
|
|
4
4
|
|
|
5
5
|
/**
|
|
@@ -180,6 +180,6 @@ declare class InvalidArgumentError extends AugurError {
|
|
|
180
180
|
});
|
|
181
181
|
}
|
|
182
182
|
|
|
183
|
-
declare const VERSION = "2026.
|
|
183
|
+
declare const VERSION = "2026.6.2";
|
|
184
184
|
|
|
185
185
|
export { AugurAPI, type AugurAPIError, AugurError, AuthenticationError, type CrossSiteAuthParams, type CrossSiteAuthResult, InvalidArgumentError, 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
|
|
1
|
+
import { A as AugurAPI } from './client-rJXd07YM.js';
|
|
2
|
+
export { a as AgrInfoClient, b as AgrIntClient, c as AgrSiteClient, d as AgrWorkClient, e as AugurAPIConfig, f as AugurContext, g as AugurRequestConfig, h as AugurRequestError, i as AugurResponse, j as AvalaraClient, B as BaseResponse, k as BaseResponseSchema, l as Basecamp2Client, m as BrandFolderClient, C as CommerceClient, n as ContextCreationError, o as CustomersClient, D as DiscoveryEndpoint, E as EndpointSearchResult, G as GregorovichClient, H as HealthCheckData, p as HealthCheckDataSchema, I as ItemsClient, J as JoomlaClient, L as LegacyClient, q as LogisticsClient, N as NexusClient, O as OpenSearchClient, r as OrdersClient, P as P21ApisClient, s as P21CoreClient, t as P21PimClient, u as P21SismClient, v as PaginationParamsSchema, w as PaymentsClient, x as PricingClient, R as RequestConfig, S as ServiceMap, y as ShippingClient, z as SlackClient, F as SmartyStreetsClient, U as UPSClient, V as VMIClient } from './client-rJXd07YM.js';
|
|
3
3
|
import 'valibot';
|
|
4
4
|
|
|
5
5
|
/**
|
|
@@ -180,6 +180,6 @@ declare class InvalidArgumentError extends AugurError {
|
|
|
180
180
|
});
|
|
181
181
|
}
|
|
182
182
|
|
|
183
|
-
declare const VERSION = "2026.
|
|
183
|
+
declare const VERSION = "2026.6.2";
|
|
184
184
|
|
|
185
185
|
export { AugurAPI, type AugurAPIError, AugurError, AuthenticationError, type CrossSiteAuthParams, type CrossSiteAuthResult, InvalidArgumentError, NotFoundError, RateLimitError, VERSION, ValidationError, authenticateUserForSite, createCrossSiteAuthenticator };
|