@simpleapps-com/augur-api 2026.6.1 → 2026.6.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.
@@ -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: {
@@ -4954,6 +4954,155 @@ declare class AgrInfoClient extends BaseServiceClient {
4954
4954
  protected getServiceDescription(): string;
4955
4955
  }
4956
4956
 
4957
+ /**
4958
+ * Generated types for agr-int service
4959
+ * Source: shared/specs/agr-int.json
4960
+ * Generated: 2026-06-09T02:39:25Z
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 UsersRotateData {
5029
+ usersUid?: number;
5030
+ username?: string;
5031
+ token?: string;
5032
+ [key: string]: unknown;
5033
+ }
5034
+ /** Response data — fields are MINIMUM, extra fields pass through */
5035
+ interface UsersValidateData {
5036
+ valid?: boolean;
5037
+ scope?: string;
5038
+ userId?: number;
5039
+ username?: string;
5040
+ email?: string;
5041
+ name?: string;
5042
+ [key: string]: unknown;
5043
+ }
5044
+ /** Response data — fields are MINIMUM, extra fields pass through */
5045
+ interface UsersRolesData {
5046
+ usersXRolesUid?: number;
5047
+ usersUid?: number;
5048
+ rolesUid?: number;
5049
+ dateCreated?: string;
5050
+ dateLastModified?: string;
5051
+ updateCd?: number;
5052
+ statusCd?: number;
5053
+ processCd?: number;
5054
+ [key: string]: unknown;
5055
+ }
5056
+ interface AgrIntClientSpec {
5057
+ roles: {
5058
+ list: (params?: RolesListParams) => Promise<BaseResponse<RolesData[]>>;
5059
+ create: (data: Record<string, unknown>) => Promise<BaseResponse<RolesData>>;
5060
+ get: (rolesUid: number, params?: RolesGetParams) => Promise<BaseResponse<RolesData>>;
5061
+ update: (rolesUid: number, data: Record<string, unknown>) => Promise<BaseResponse<RolesData>>;
5062
+ delete: (rolesUid: number) => Promise<BaseResponse<RolesData>>;
5063
+ };
5064
+ users: {
5065
+ list: (params?: UsersListParams) => Promise<BaseResponse<UsersData[]>>;
5066
+ create: (data: Record<string, unknown>) => Promise<BaseResponse<UsersData>>;
5067
+ get: (usersUid: number, params?: UsersGetParams) => Promise<BaseResponse<UsersData>>;
5068
+ update: (usersUid: number, data: Record<string, unknown>) => Promise<BaseResponse<UsersData>>;
5069
+ delete: (usersUid: number) => Promise<BaseResponse<UsersData>>;
5070
+ roles: {
5071
+ list: (usersUid: number, params?: UsersRolesListParams) => Promise<BaseResponse<UsersRolesData[]>>;
5072
+ create: (usersUid: number, data: Record<string, unknown>) => Promise<BaseResponse<UsersRolesData>>;
5073
+ get: (usersUid: number, usersXRolesUid: number, params?: UsersRolesGetParams) => Promise<BaseResponse<UsersRolesData>>;
5074
+ update: (usersUid: number, usersXRolesUid: number, data: Record<string, unknown>) => Promise<BaseResponse<UsersRolesData>>;
5075
+ delete: (usersUid: number, usersXRolesUid: number) => Promise<BaseResponse<UsersRolesData>>;
5076
+ };
5077
+ rotate: {
5078
+ create: (data: Record<string, unknown>) => Promise<BaseResponse<UsersRotateData>>;
5079
+ };
5080
+ validate: {
5081
+ create: (data: Record<string, unknown>) => Promise<BaseResponse<UsersValidateData>>;
5082
+ };
5083
+ verify: {
5084
+ create: (data: Record<string, unknown>) => Promise<BaseResponse<UsersRotateData>>;
5085
+ };
5086
+ };
5087
+ }
5088
+
5089
+ /**
5090
+ * Generated client for agr-int service
5091
+ * Source: shared/specs/agr-int.json
5092
+ * Generated: 2026-06-09T02:39:25Z
5093
+ *
5094
+ * DO NOT EDIT — regenerate with: python shared/scripts/generate-ts.py
5095
+ */
5096
+
5097
+ declare class AgrIntClient extends BaseServiceClient {
5098
+ readonly roles: AgrIntClientSpec['roles'];
5099
+ readonly users: AgrIntClientSpec['users'];
5100
+ readonly rolesData: AgrIntClientSpec['roles'];
5101
+ readonly usersData: AgrIntClientSpec['users'];
5102
+ constructor(http: HTTPClient, baseUrl?: string);
5103
+ protected getServiceDescription(): string;
5104
+ }
5105
+
4957
5106
  type ExecuteRequest$e = AgrWorkClient['executeRequest'];
4958
5107
  /**
4959
5108
  * Creates the healthCheck resource methods
@@ -7511,6 +7660,7 @@ declare class AugurAPI {
7511
7660
  private _p21Pim?;
7512
7661
  private _payments?;
7513
7662
  private _agrInfo?;
7663
+ private _agrInt?;
7514
7664
  private _agrWork?;
7515
7665
  private _avalara?;
7516
7666
  private _brandFolder?;
@@ -7607,6 +7757,10 @@ declare class AugurAPI {
7607
7757
  * Access AGR Info service endpoints
7608
7758
  */
7609
7759
  get agrInfo(): AgrInfoClient;
7760
+ /**
7761
+ * Access AGR Int (internal RBAC) service endpoints
7762
+ */
7763
+ get agrInt(): AgrIntClient;
7610
7764
  /**
7611
7765
  * Access AGR Work service endpoints
7612
7766
  */
@@ -7821,4 +7975,4 @@ declare class AugurAPI {
7821
7975
  private calculateMultiWordMatches;
7822
7976
  }
7823
7977
 
7824
- 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, AgrSiteClient as b, AgrWorkClient as c, type AugurAPIConfig as d, type AugurContext as e, type AugurRequestConfig as f, type AugurRequestError as g, type AugurResponse as h, AvalaraClient as i, BaseResponseSchema as j, Basecamp2Client as k, BrandFolderClient as l, ContextCreationError as m, CustomersClient as n, HealthCheckDataSchema as o, LogisticsClient as p, OrdersClient as q, P21CoreClient as r, P21PimClient as s, P21SismClient as t, PaginationParamsSchema as u, PaymentsClient as v, PricingClient as w, ShippingClient as x, SlackClient as y, SmartyStreetsClient as z };
7978
+ 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 };
@@ -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: {
@@ -4954,6 +4954,155 @@ declare class AgrInfoClient extends BaseServiceClient {
4954
4954
  protected getServiceDescription(): string;
4955
4955
  }
4956
4956
 
4957
+ /**
4958
+ * Generated types for agr-int service
4959
+ * Source: shared/specs/agr-int.json
4960
+ * Generated: 2026-06-09T02:39:25Z
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 UsersRotateData {
5029
+ usersUid?: number;
5030
+ username?: string;
5031
+ token?: string;
5032
+ [key: string]: unknown;
5033
+ }
5034
+ /** Response data — fields are MINIMUM, extra fields pass through */
5035
+ interface UsersValidateData {
5036
+ valid?: boolean;
5037
+ scope?: string;
5038
+ userId?: number;
5039
+ username?: string;
5040
+ email?: string;
5041
+ name?: string;
5042
+ [key: string]: unknown;
5043
+ }
5044
+ /** Response data — fields are MINIMUM, extra fields pass through */
5045
+ interface UsersRolesData {
5046
+ usersXRolesUid?: number;
5047
+ usersUid?: number;
5048
+ rolesUid?: number;
5049
+ dateCreated?: string;
5050
+ dateLastModified?: string;
5051
+ updateCd?: number;
5052
+ statusCd?: number;
5053
+ processCd?: number;
5054
+ [key: string]: unknown;
5055
+ }
5056
+ interface AgrIntClientSpec {
5057
+ roles: {
5058
+ list: (params?: RolesListParams) => Promise<BaseResponse<RolesData[]>>;
5059
+ create: (data: Record<string, unknown>) => Promise<BaseResponse<RolesData>>;
5060
+ get: (rolesUid: number, params?: RolesGetParams) => Promise<BaseResponse<RolesData>>;
5061
+ update: (rolesUid: number, data: Record<string, unknown>) => Promise<BaseResponse<RolesData>>;
5062
+ delete: (rolesUid: number) => Promise<BaseResponse<RolesData>>;
5063
+ };
5064
+ users: {
5065
+ list: (params?: UsersListParams) => Promise<BaseResponse<UsersData[]>>;
5066
+ create: (data: Record<string, unknown>) => Promise<BaseResponse<UsersData>>;
5067
+ get: (usersUid: number, params?: UsersGetParams) => Promise<BaseResponse<UsersData>>;
5068
+ update: (usersUid: number, data: Record<string, unknown>) => Promise<BaseResponse<UsersData>>;
5069
+ delete: (usersUid: number) => Promise<BaseResponse<UsersData>>;
5070
+ roles: {
5071
+ list: (usersUid: number, params?: UsersRolesListParams) => Promise<BaseResponse<UsersRolesData[]>>;
5072
+ create: (usersUid: number, data: Record<string, unknown>) => Promise<BaseResponse<UsersRolesData>>;
5073
+ get: (usersUid: number, usersXRolesUid: number, params?: UsersRolesGetParams) => Promise<BaseResponse<UsersRolesData>>;
5074
+ update: (usersUid: number, usersXRolesUid: number, data: Record<string, unknown>) => Promise<BaseResponse<UsersRolesData>>;
5075
+ delete: (usersUid: number, usersXRolesUid: number) => Promise<BaseResponse<UsersRolesData>>;
5076
+ };
5077
+ rotate: {
5078
+ create: (data: Record<string, unknown>) => Promise<BaseResponse<UsersRotateData>>;
5079
+ };
5080
+ validate: {
5081
+ create: (data: Record<string, unknown>) => Promise<BaseResponse<UsersValidateData>>;
5082
+ };
5083
+ verify: {
5084
+ create: (data: Record<string, unknown>) => Promise<BaseResponse<UsersRotateData>>;
5085
+ };
5086
+ };
5087
+ }
5088
+
5089
+ /**
5090
+ * Generated client for agr-int service
5091
+ * Source: shared/specs/agr-int.json
5092
+ * Generated: 2026-06-09T02:39:25Z
5093
+ *
5094
+ * DO NOT EDIT — regenerate with: python shared/scripts/generate-ts.py
5095
+ */
5096
+
5097
+ declare class AgrIntClient extends BaseServiceClient {
5098
+ readonly roles: AgrIntClientSpec['roles'];
5099
+ readonly users: AgrIntClientSpec['users'];
5100
+ readonly rolesData: AgrIntClientSpec['roles'];
5101
+ readonly usersData: AgrIntClientSpec['users'];
5102
+ constructor(http: HTTPClient, baseUrl?: string);
5103
+ protected getServiceDescription(): string;
5104
+ }
5105
+
4957
5106
  type ExecuteRequest$e = AgrWorkClient['executeRequest'];
4958
5107
  /**
4959
5108
  * Creates the healthCheck resource methods
@@ -7511,6 +7660,7 @@ declare class AugurAPI {
7511
7660
  private _p21Pim?;
7512
7661
  private _payments?;
7513
7662
  private _agrInfo?;
7663
+ private _agrInt?;
7514
7664
  private _agrWork?;
7515
7665
  private _avalara?;
7516
7666
  private _brandFolder?;
@@ -7607,6 +7757,10 @@ declare class AugurAPI {
7607
7757
  * Access AGR Info service endpoints
7608
7758
  */
7609
7759
  get agrInfo(): AgrInfoClient;
7760
+ /**
7761
+ * Access AGR Int (internal RBAC) service endpoints
7762
+ */
7763
+ get agrInt(): AgrIntClient;
7610
7764
  /**
7611
7765
  * Access AGR Work service endpoints
7612
7766
  */
@@ -7821,4 +7975,4 @@ declare class AugurAPI {
7821
7975
  private calculateMultiWordMatches;
7822
7976
  }
7823
7977
 
7824
- 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, AgrSiteClient as b, AgrWorkClient as c, type AugurAPIConfig as d, type AugurContext as e, type AugurRequestConfig as f, type AugurRequestError as g, type AugurResponse as h, AvalaraClient as i, BaseResponseSchema as j, Basecamp2Client as k, BrandFolderClient as l, ContextCreationError as m, CustomersClient as n, HealthCheckDataSchema as o, LogisticsClient as p, OrdersClient as q, P21CoreClient as r, P21PimClient as s, P21SismClient as t, PaginationParamsSchema as u, PaymentsClient as v, PricingClient as w, ShippingClient as x, SlackClient as y, SmartyStreetsClient as z };
7978
+ 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-R8LU4_qg.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-R8LU4_qg.mjs';
1
+ import { A as AugurAPI } from './client-Bkt57JO1.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-Bkt57JO1.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.6.1";
183
+ declare const VERSION = "2026.6.3";
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-R8LU4_qg.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-R8LU4_qg.js';
1
+ import { A as AugurAPI } from './client-Bkt57JO1.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-Bkt57JO1.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.6.1";
183
+ declare const VERSION = "2026.6.3";
184
184
 
185
185
  export { AugurAPI, type AugurAPIError, AugurError, AuthenticationError, type CrossSiteAuthParams, type CrossSiteAuthResult, InvalidArgumentError, NotFoundError, RateLimitError, VERSION, ValidationError, authenticateUserForSite, createCrossSiteAuthenticator };