@simpleapps-com/augur-api 2026.6.1 → 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.
@@ -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,138 @@ 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-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
+
4957
5089
  type ExecuteRequest$e = AgrWorkClient['executeRequest'];
4958
5090
  /**
4959
5091
  * Creates the healthCheck resource methods
@@ -7511,6 +7643,7 @@ declare class AugurAPI {
7511
7643
  private _p21Pim?;
7512
7644
  private _payments?;
7513
7645
  private _agrInfo?;
7646
+ private _agrInt?;
7514
7647
  private _agrWork?;
7515
7648
  private _avalara?;
7516
7649
  private _brandFolder?;
@@ -7607,6 +7740,10 @@ declare class AugurAPI {
7607
7740
  * Access AGR Info service endpoints
7608
7741
  */
7609
7742
  get agrInfo(): AgrInfoClient;
7743
+ /**
7744
+ * Access AGR Int (internal RBAC) service endpoints
7745
+ */
7746
+ get agrInt(): AgrIntClient;
7610
7747
  /**
7611
7748
  * Access AGR Work service endpoints
7612
7749
  */
@@ -7821,4 +7958,4 @@ declare class AugurAPI {
7821
7958
  private calculateMultiWordMatches;
7822
7959
  }
7823
7960
 
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 };
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 };
@@ -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,138 @@ 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-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
+
4957
5089
  type ExecuteRequest$e = AgrWorkClient['executeRequest'];
4958
5090
  /**
4959
5091
  * Creates the healthCheck resource methods
@@ -7511,6 +7643,7 @@ declare class AugurAPI {
7511
7643
  private _p21Pim?;
7512
7644
  private _payments?;
7513
7645
  private _agrInfo?;
7646
+ private _agrInt?;
7514
7647
  private _agrWork?;
7515
7648
  private _avalara?;
7516
7649
  private _brandFolder?;
@@ -7607,6 +7740,10 @@ declare class AugurAPI {
7607
7740
  * Access AGR Info service endpoints
7608
7741
  */
7609
7742
  get agrInfo(): AgrInfoClient;
7743
+ /**
7744
+ * Access AGR Int (internal RBAC) service endpoints
7745
+ */
7746
+ get agrInt(): AgrIntClient;
7610
7747
  /**
7611
7748
  * Access AGR Work service endpoints
7612
7749
  */
@@ -7821,4 +7958,4 @@ declare class AugurAPI {
7821
7958
  private calculateMultiWordMatches;
7822
7959
  }
7823
7960
 
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 };
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-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-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.6.1";
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-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-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.6.1";
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 };