Skip to content

Commit 5745a49

Browse files
authored
feat: Expose More Public API Types (#1838)
1 parent 0b78d91 commit 5745a49

File tree

2 files changed

+20
-2
lines changed

2 files changed

+20
-2
lines changed

src/auth/baseexternalclient.ts

+6-1
Original file line numberDiff line numberDiff line change
@@ -186,7 +186,12 @@ export interface BaseExternalAccountClientOptions
186186
*/
187187
export interface IamGenerateAccessTokenResponse {
188188
accessToken: string;
189-
// ISO format used for expiration time: 2014-10-02T15:01:23.045123456Z
189+
/**
190+
* ISO format used for expiration time.
191+
*
192+
* @example
193+
* '2014-10-02T15:01:23.045123456Z'
194+
*/
190195
expireTime: string;
191196
}
192197

src/index.ts

+14-1
Original file line numberDiff line numberDiff line change
@@ -51,10 +51,19 @@ export {
5151
UserRefreshClient,
5252
UserRefreshClientOptions,
5353
} from './auth/refreshclient';
54-
export {AwsClient, AwsClientOptions} from './auth/awsclient';
54+
export {
55+
AwsClient,
56+
AwsClientOptions,
57+
AwsSecurityCredentialsSupplier,
58+
} from './auth/awsclient';
59+
export {
60+
AwsSecurityCredentials,
61+
AwsRequestSigner,
62+
} from './auth/awsrequestsigner';
5563
export {
5664
IdentityPoolClient,
5765
IdentityPoolClientOptions,
66+
SubjectTokenSupplier,
5867
} from './auth/identitypoolclient';
5968
export {
6069
ExternalAccountClient,
@@ -63,6 +72,9 @@ export {
6372
export {
6473
BaseExternalAccountClient,
6574
BaseExternalAccountClientOptions,
75+
SharedExternalAccountClientOptions,
76+
ExternalAccountSupplierContext,
77+
IamGenerateAccessTokenResponse,
6678
} from './auth/baseexternalclient';
6779
export {
6880
CredentialAccessBoundary,
@@ -71,6 +83,7 @@ export {
7183
export {
7284
PluggableAuthClient,
7385
PluggableAuthClientOptions,
86+
ExecutableError,
7487
} from './auth/pluggable-auth-client';
7588
export {PassThroughClient} from './auth/passthrough';
7689
export {DefaultTransporter} from './transporters';

0 commit comments

Comments
 (0)