@aws-sdk/client-cognito-identity-provider 3.998.0 → 3.1000.0
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/README.md +21 -0
- package/dist-cjs/index.js +42 -0
- package/dist-cjs/models/errors.js +41 -15
- package/dist-cjs/schemas/schemas_0.js +96 -18
- package/dist-es/CognitoIdentityProvider.js +6 -0
- package/dist-es/commands/AddUserPoolClientSecretCommand.js +16 -0
- package/dist-es/commands/DeleteUserPoolClientSecretCommand.js +16 -0
- package/dist-es/commands/ListUserPoolClientSecretsCommand.js +16 -0
- package/dist-es/commands/index.js +3 -0
- package/dist-es/models/errors.js +36 -12
- package/dist-es/schemas/schemas_0.js +87 -9
- package/dist-types/CognitoIdentityProvider.d.ts +21 -0
- package/dist-types/CognitoIdentityProviderClient.d.ts +5 -2
- package/dist-types/commands/AddUserPoolClientSecretCommand.d.ts +102 -0
- package/dist-types/commands/CompleteWebAuthnRegistrationCommand.d.ts +3 -0
- package/dist-types/commands/CreateUserPoolClientCommand.d.ts +1 -0
- package/dist-types/commands/DeleteUserPoolClientSecretCommand.d.ts +93 -0
- package/dist-types/commands/DeleteWebAuthnCredentialCommand.d.ts +3 -0
- package/dist-types/commands/ListUserPoolClientSecretsCommand.d.ts +102 -0
- package/dist-types/commands/ListUsersCommand.d.ts +3 -0
- package/dist-types/commands/ListWebAuthnCredentialsCommand.d.ts +3 -0
- package/dist-types/commands/StartWebAuthnRegistrationCommand.d.ts +3 -0
- package/dist-types/commands/UpdateResourceServerCommand.d.ts +2 -1
- package/dist-types/commands/UpdateTermsCommand.d.ts +1 -1
- package/dist-types/commands/UpdateUserAttributesCommand.d.ts +1 -1
- package/dist-types/commands/UpdateUserPoolCommand.d.ts +2 -2
- package/dist-types/commands/index.d.ts +3 -0
- package/dist-types/models/errors.d.ts +37 -13
- package/dist-types/models/models_0.d.ts +313 -533
- package/dist-types/models/models_1.d.ts +313 -2
- package/dist-types/schemas/schemas_0.d.ts +12 -0
- package/dist-types/ts3.4/CognitoIdentityProvider.d.ts +51 -0
- package/dist-types/ts3.4/CognitoIdentityProviderClient.d.ts +18 -0
- package/dist-types/ts3.4/commands/AddUserPoolClientSecretCommand.d.ts +51 -0
- package/dist-types/ts3.4/commands/DeleteUserPoolClientSecretCommand.d.ts +51 -0
- package/dist-types/ts3.4/commands/ListUserPoolClientSecretsCommand.d.ts +51 -0
- package/dist-types/ts3.4/commands/UpdateResourceServerCommand.d.ts +2 -4
- package/dist-types/ts3.4/commands/UpdateTermsCommand.d.ts +1 -1
- package/dist-types/ts3.4/commands/UpdateUserAttributesCommand.d.ts +1 -1
- package/dist-types/ts3.4/commands/UpdateUserPoolCommand.d.ts +1 -1
- package/dist-types/ts3.4/commands/index.d.ts +3 -0
- package/dist-types/ts3.4/models/errors.d.ts +21 -7
- package/dist-types/ts3.4/models/models_0.d.ts +29 -46
- package/dist-types/ts3.4/models/models_1.d.ts +66 -0
- package/dist-types/ts3.4/schemas/schemas_0.d.ts +12 -0
- package/package.json +12 -12
|
@@ -0,0 +1,51 @@
|
|
|
1
|
+
import { Command as $Command } from "@smithy/smithy-client";
|
|
2
|
+
import { MetadataBearer as __MetadataBearer } from "@smithy/types";
|
|
3
|
+
import {
|
|
4
|
+
CognitoIdentityProviderClientResolvedConfig,
|
|
5
|
+
ServiceInputTypes,
|
|
6
|
+
ServiceOutputTypes,
|
|
7
|
+
} from "../CognitoIdentityProviderClient";
|
|
8
|
+
import {
|
|
9
|
+
ListUserPoolClientSecretsRequest,
|
|
10
|
+
ListUserPoolClientSecretsResponse,
|
|
11
|
+
} from "../models/models_0";
|
|
12
|
+
export { __MetadataBearer };
|
|
13
|
+
export { $Command };
|
|
14
|
+
export interface ListUserPoolClientSecretsCommandInput
|
|
15
|
+
extends ListUserPoolClientSecretsRequest {}
|
|
16
|
+
export interface ListUserPoolClientSecretsCommandOutput
|
|
17
|
+
extends ListUserPoolClientSecretsResponse,
|
|
18
|
+
__MetadataBearer {}
|
|
19
|
+
declare const ListUserPoolClientSecretsCommand_base: {
|
|
20
|
+
new (
|
|
21
|
+
input: ListUserPoolClientSecretsCommandInput
|
|
22
|
+
): import("@smithy/smithy-client").CommandImpl<
|
|
23
|
+
ListUserPoolClientSecretsCommandInput,
|
|
24
|
+
ListUserPoolClientSecretsCommandOutput,
|
|
25
|
+
CognitoIdentityProviderClientResolvedConfig,
|
|
26
|
+
ServiceInputTypes,
|
|
27
|
+
ServiceOutputTypes
|
|
28
|
+
>;
|
|
29
|
+
new (
|
|
30
|
+
input: ListUserPoolClientSecretsCommandInput
|
|
31
|
+
): import("@smithy/smithy-client").CommandImpl<
|
|
32
|
+
ListUserPoolClientSecretsCommandInput,
|
|
33
|
+
ListUserPoolClientSecretsCommandOutput,
|
|
34
|
+
CognitoIdentityProviderClientResolvedConfig,
|
|
35
|
+
ServiceInputTypes,
|
|
36
|
+
ServiceOutputTypes
|
|
37
|
+
>;
|
|
38
|
+
getEndpointParameterInstructions(): import("@smithy/middleware-endpoint").EndpointParameterInstructions;
|
|
39
|
+
};
|
|
40
|
+
export declare class ListUserPoolClientSecretsCommand extends ListUserPoolClientSecretsCommand_base {
|
|
41
|
+
protected static __types: {
|
|
42
|
+
api: {
|
|
43
|
+
input: ListUserPoolClientSecretsRequest;
|
|
44
|
+
output: ListUserPoolClientSecretsResponse;
|
|
45
|
+
};
|
|
46
|
+
sdk: {
|
|
47
|
+
input: ListUserPoolClientSecretsCommandInput;
|
|
48
|
+
output: ListUserPoolClientSecretsCommandOutput;
|
|
49
|
+
};
|
|
50
|
+
};
|
|
51
|
+
}
|
|
@@ -5,10 +5,8 @@ import {
|
|
|
5
5
|
ServiceInputTypes,
|
|
6
6
|
ServiceOutputTypes,
|
|
7
7
|
} from "../CognitoIdentityProviderClient";
|
|
8
|
-
import {
|
|
9
|
-
|
|
10
|
-
UpdateResourceServerResponse,
|
|
11
|
-
} from "../models/models_0";
|
|
8
|
+
import { UpdateResourceServerRequest } from "../models/models_0";
|
|
9
|
+
import { UpdateResourceServerResponse } from "../models/models_1";
|
|
12
10
|
export { __MetadataBearer };
|
|
13
11
|
export { $Command };
|
|
14
12
|
export interface UpdateResourceServerCommandInput
|
|
@@ -5,7 +5,7 @@ import {
|
|
|
5
5
|
ServiceInputTypes,
|
|
6
6
|
ServiceOutputTypes,
|
|
7
7
|
} from "../CognitoIdentityProviderClient";
|
|
8
|
-
import { UpdateTermsRequest, UpdateTermsResponse } from "../models/
|
|
8
|
+
import { UpdateTermsRequest, UpdateTermsResponse } from "../models/models_1";
|
|
9
9
|
export { __MetadataBearer };
|
|
10
10
|
export { $Command };
|
|
11
11
|
export interface UpdateTermsCommandInput extends UpdateTermsRequest {}
|
|
@@ -8,7 +8,7 @@ import {
|
|
|
8
8
|
import {
|
|
9
9
|
UpdateUserPoolRequest,
|
|
10
10
|
UpdateUserPoolResponse,
|
|
11
|
-
} from "../models/
|
|
11
|
+
} from "../models/models_1";
|
|
12
12
|
export { __MetadataBearer };
|
|
13
13
|
export { $Command };
|
|
14
14
|
export interface UpdateUserPoolCommandInput extends UpdateUserPoolRequest {}
|
|
@@ -1,4 +1,5 @@
|
|
|
1
1
|
export * from "./AddCustomAttributesCommand";
|
|
2
|
+
export * from "./AddUserPoolClientSecretCommand";
|
|
2
3
|
export * from "./AdminAddUserToGroupCommand";
|
|
3
4
|
export * from "./AdminConfirmSignUpCommand";
|
|
4
5
|
export * from "./AdminCreateUserCommand";
|
|
@@ -48,6 +49,7 @@ export * from "./DeleteTermsCommand";
|
|
|
48
49
|
export * from "./DeleteUserAttributesCommand";
|
|
49
50
|
export * from "./DeleteUserCommand";
|
|
50
51
|
export * from "./DeleteUserPoolClientCommand";
|
|
52
|
+
export * from "./DeleteUserPoolClientSecretCommand";
|
|
51
53
|
export * from "./DeleteUserPoolCommand";
|
|
52
54
|
export * from "./DeleteUserPoolDomainCommand";
|
|
53
55
|
export * from "./DeleteWebAuthnCredentialCommand";
|
|
@@ -84,6 +86,7 @@ export * from "./ListResourceServersCommand";
|
|
|
84
86
|
export * from "./ListTagsForResourceCommand";
|
|
85
87
|
export * from "./ListTermsCommand";
|
|
86
88
|
export * from "./ListUserImportJobsCommand";
|
|
89
|
+
export * from "./ListUserPoolClientSecretsCommand";
|
|
87
90
|
export * from "./ListUserPoolClientsCommand";
|
|
88
91
|
export * from "./ListUserPoolsCommand";
|
|
89
92
|
export * from "./ListUsersCommand";
|
|
@@ -1,5 +1,12 @@
|
|
|
1
1
|
import { ExceptionOptionType as __ExceptionOptionType } from "@smithy/smithy-client";
|
|
2
2
|
import { CognitoIdentityProviderServiceException as __BaseException } from "./CognitoIdentityProviderServiceException";
|
|
3
|
+
export declare class AccessDeniedException extends __BaseException {
|
|
4
|
+
readonly name: "AccessDeniedException";
|
|
5
|
+
readonly $fault: "client";
|
|
6
|
+
constructor(
|
|
7
|
+
opts: __ExceptionOptionType<AccessDeniedException, __BaseException>
|
|
8
|
+
);
|
|
9
|
+
}
|
|
3
10
|
export declare class InternalErrorException extends __BaseException {
|
|
4
11
|
readonly name: "InternalErrorException";
|
|
5
12
|
readonly $fault: "server";
|
|
@@ -43,6 +50,20 @@ export declare class UserImportInProgressException extends __BaseException {
|
|
|
43
50
|
opts: __ExceptionOptionType<UserImportInProgressException, __BaseException>
|
|
44
51
|
);
|
|
45
52
|
}
|
|
53
|
+
export declare class InternalServerException extends __BaseException {
|
|
54
|
+
readonly name: "InternalServerException";
|
|
55
|
+
readonly $fault: "server";
|
|
56
|
+
constructor(
|
|
57
|
+
opts: __ExceptionOptionType<InternalServerException, __BaseException>
|
|
58
|
+
);
|
|
59
|
+
}
|
|
60
|
+
export declare class LimitExceededException extends __BaseException {
|
|
61
|
+
readonly name: "LimitExceededException";
|
|
62
|
+
readonly $fault: "client";
|
|
63
|
+
constructor(
|
|
64
|
+
opts: __ExceptionOptionType<LimitExceededException, __BaseException>
|
|
65
|
+
);
|
|
66
|
+
}
|
|
46
67
|
export declare class UserNotFoundException extends __BaseException {
|
|
47
68
|
readonly name: "UserNotFoundException";
|
|
48
69
|
readonly $fault: "client";
|
|
@@ -57,13 +78,6 @@ export declare class InvalidLambdaResponseException extends __BaseException {
|
|
|
57
78
|
opts: __ExceptionOptionType<InvalidLambdaResponseException, __BaseException>
|
|
58
79
|
);
|
|
59
80
|
}
|
|
60
|
-
export declare class LimitExceededException extends __BaseException {
|
|
61
|
-
readonly name: "LimitExceededException";
|
|
62
|
-
readonly $fault: "client";
|
|
63
|
-
constructor(
|
|
64
|
-
opts: __ExceptionOptionType<LimitExceededException, __BaseException>
|
|
65
|
-
);
|
|
66
|
-
}
|
|
67
81
|
export declare class TooManyFailedAttemptsException extends __BaseException {
|
|
68
82
|
readonly name: "TooManyFailedAttemptsException";
|
|
69
83
|
readonly $fault: "client";
|
|
@@ -106,6 +106,19 @@ export interface AddCustomAttributesRequest {
|
|
|
106
106
|
CustomAttributes: SchemaAttributeType[] | undefined;
|
|
107
107
|
}
|
|
108
108
|
export interface AddCustomAttributesResponse {}
|
|
109
|
+
export interface AddUserPoolClientSecretRequest {
|
|
110
|
+
UserPoolId: string | undefined;
|
|
111
|
+
ClientId: string | undefined;
|
|
112
|
+
ClientSecret?: string | undefined;
|
|
113
|
+
}
|
|
114
|
+
export interface ClientSecretDescriptorType {
|
|
115
|
+
ClientSecretId?: string | undefined;
|
|
116
|
+
ClientSecretValue?: string | undefined;
|
|
117
|
+
ClientSecretCreateDate?: Date | undefined;
|
|
118
|
+
}
|
|
119
|
+
export interface AddUserPoolClientSecretResponse {
|
|
120
|
+
ClientSecretDescriptor?: ClientSecretDescriptorType | undefined;
|
|
121
|
+
}
|
|
109
122
|
export interface AdminAddUserToGroupRequest {
|
|
110
123
|
UserPoolId: string | undefined;
|
|
111
124
|
Username: string | undefined;
|
|
@@ -785,6 +798,7 @@ export interface CreateUserPoolClientRequest {
|
|
|
785
798
|
UserPoolId: string | undefined;
|
|
786
799
|
ClientName: string | undefined;
|
|
787
800
|
GenerateSecret?: boolean | undefined;
|
|
801
|
+
ClientSecret?: string | undefined;
|
|
788
802
|
RefreshTokenValidity?: number | undefined;
|
|
789
803
|
AccessTokenValidity?: number | undefined;
|
|
790
804
|
IdTokenValidity?: number | undefined;
|
|
@@ -885,6 +899,12 @@ export interface DeleteUserPoolClientRequest {
|
|
|
885
899
|
UserPoolId: string | undefined;
|
|
886
900
|
ClientId: string | undefined;
|
|
887
901
|
}
|
|
902
|
+
export interface DeleteUserPoolClientSecretRequest {
|
|
903
|
+
UserPoolId: string | undefined;
|
|
904
|
+
ClientId: string | undefined;
|
|
905
|
+
ClientSecretId: string | undefined;
|
|
906
|
+
}
|
|
907
|
+
export interface DeleteUserPoolClientSecretResponse {}
|
|
888
908
|
export interface DeleteUserPoolDomainRequest {
|
|
889
909
|
Domain: string | undefined;
|
|
890
910
|
UserPoolId: string | undefined;
|
|
@@ -1264,6 +1284,15 @@ export interface ListUserPoolClientsResponse {
|
|
|
1264
1284
|
UserPoolClients?: UserPoolClientDescription[] | undefined;
|
|
1265
1285
|
NextToken?: string | undefined;
|
|
1266
1286
|
}
|
|
1287
|
+
export interface ListUserPoolClientSecretsRequest {
|
|
1288
|
+
UserPoolId: string | undefined;
|
|
1289
|
+
ClientId: string | undefined;
|
|
1290
|
+
NextToken?: string | undefined;
|
|
1291
|
+
}
|
|
1292
|
+
export interface ListUserPoolClientSecretsResponse {
|
|
1293
|
+
ClientSecrets?: ClientSecretDescriptorType[] | undefined;
|
|
1294
|
+
NextToken?: string | undefined;
|
|
1295
|
+
}
|
|
1267
1296
|
export interface ListUserPoolsRequest {
|
|
1268
1297
|
NextToken?: string | undefined;
|
|
1269
1298
|
MaxResults: number | undefined;
|
|
@@ -1504,49 +1533,3 @@ export interface UpdateResourceServerRequest {
|
|
|
1504
1533
|
Name: string | undefined;
|
|
1505
1534
|
Scopes?: ResourceServerScopeType[] | undefined;
|
|
1506
1535
|
}
|
|
1507
|
-
export interface UpdateResourceServerResponse {
|
|
1508
|
-
ResourceServer: ResourceServerType | undefined;
|
|
1509
|
-
}
|
|
1510
|
-
export interface UpdateTermsRequest {
|
|
1511
|
-
TermsId: string | undefined;
|
|
1512
|
-
UserPoolId: string | undefined;
|
|
1513
|
-
TermsName?: string | undefined;
|
|
1514
|
-
TermsSource?: TermsSourceType | undefined;
|
|
1515
|
-
Enforcement?: TermsEnforcementType | undefined;
|
|
1516
|
-
Links?: Record<string, string> | undefined;
|
|
1517
|
-
}
|
|
1518
|
-
export interface UpdateTermsResponse {
|
|
1519
|
-
Terms?: TermsType | undefined;
|
|
1520
|
-
}
|
|
1521
|
-
export interface UpdateUserAttributesRequest {
|
|
1522
|
-
UserAttributes: AttributeType[] | undefined;
|
|
1523
|
-
AccessToken: string | undefined;
|
|
1524
|
-
ClientMetadata?: Record<string, string> | undefined;
|
|
1525
|
-
}
|
|
1526
|
-
export interface UpdateUserAttributesResponse {
|
|
1527
|
-
CodeDeliveryDetailsList?: CodeDeliveryDetailsType[] | undefined;
|
|
1528
|
-
}
|
|
1529
|
-
export interface UpdateUserPoolRequest {
|
|
1530
|
-
UserPoolId: string | undefined;
|
|
1531
|
-
Policies?: UserPoolPolicyType | undefined;
|
|
1532
|
-
DeletionProtection?: DeletionProtectionType | undefined;
|
|
1533
|
-
LambdaConfig?: LambdaConfigType | undefined;
|
|
1534
|
-
AutoVerifiedAttributes?: VerifiedAttributeType[] | undefined;
|
|
1535
|
-
SmsVerificationMessage?: string | undefined;
|
|
1536
|
-
EmailVerificationMessage?: string | undefined;
|
|
1537
|
-
EmailVerificationSubject?: string | undefined;
|
|
1538
|
-
VerificationMessageTemplate?: VerificationMessageTemplateType | undefined;
|
|
1539
|
-
SmsAuthenticationMessage?: string | undefined;
|
|
1540
|
-
UserAttributeUpdateSettings?: UserAttributeUpdateSettingsType | undefined;
|
|
1541
|
-
MfaConfiguration?: UserPoolMfaType | undefined;
|
|
1542
|
-
DeviceConfiguration?: DeviceConfigurationType | undefined;
|
|
1543
|
-
EmailConfiguration?: EmailConfigurationType | undefined;
|
|
1544
|
-
SmsConfiguration?: SmsConfigurationType | undefined;
|
|
1545
|
-
UserPoolTags?: Record<string, string> | undefined;
|
|
1546
|
-
AdminCreateUserConfig?: AdminCreateUserConfigType | undefined;
|
|
1547
|
-
UserPoolAddOns?: UserPoolAddOnsType | undefined;
|
|
1548
|
-
AccountRecoverySetting?: AccountRecoverySettingType | undefined;
|
|
1549
|
-
PoolName?: string | undefined;
|
|
1550
|
-
UserPoolTier?: UserPoolTierType | undefined;
|
|
1551
|
-
}
|
|
1552
|
-
export interface UpdateUserPoolResponse {}
|
|
@@ -1,16 +1,82 @@
|
|
|
1
1
|
import {
|
|
2
|
+
DeletionProtectionType,
|
|
2
3
|
ExplicitAuthFlowsType,
|
|
3
4
|
OAuthFlowType,
|
|
4
5
|
PreventUserExistenceErrorTypes,
|
|
6
|
+
TermsEnforcementType,
|
|
7
|
+
TermsSourceType,
|
|
8
|
+
UserPoolMfaType,
|
|
9
|
+
UserPoolTierType,
|
|
10
|
+
VerifiedAttributeType,
|
|
5
11
|
VerifySoftwareTokenResponseType,
|
|
6
12
|
} from "./enums";
|
|
7
13
|
import {
|
|
14
|
+
AccountRecoverySettingType,
|
|
15
|
+
AdminCreateUserConfigType,
|
|
8
16
|
AnalyticsConfigurationType,
|
|
9
17
|
CustomDomainConfigType,
|
|
18
|
+
DeviceConfigurationType,
|
|
19
|
+
EmailConfigurationType,
|
|
20
|
+
LambdaConfigType,
|
|
10
21
|
RefreshTokenRotationType,
|
|
22
|
+
ResourceServerType,
|
|
23
|
+
SmsConfigurationType,
|
|
24
|
+
TermsType,
|
|
11
25
|
TokenValidityUnitsType,
|
|
26
|
+
UserAttributeUpdateSettingsType,
|
|
27
|
+
UserPoolAddOnsType,
|
|
12
28
|
UserPoolClientType,
|
|
29
|
+
UserPoolPolicyType,
|
|
30
|
+
VerificationMessageTemplateType,
|
|
31
|
+
AttributeType,
|
|
32
|
+
CodeDeliveryDetailsType,
|
|
13
33
|
} from "./models_0";
|
|
34
|
+
export interface UpdateResourceServerResponse {
|
|
35
|
+
ResourceServer: ResourceServerType | undefined;
|
|
36
|
+
}
|
|
37
|
+
export interface UpdateTermsRequest {
|
|
38
|
+
TermsId: string | undefined;
|
|
39
|
+
UserPoolId: string | undefined;
|
|
40
|
+
TermsName?: string | undefined;
|
|
41
|
+
TermsSource?: TermsSourceType | undefined;
|
|
42
|
+
Enforcement?: TermsEnforcementType | undefined;
|
|
43
|
+
Links?: Record<string, string> | undefined;
|
|
44
|
+
}
|
|
45
|
+
export interface UpdateTermsResponse {
|
|
46
|
+
Terms?: TermsType | undefined;
|
|
47
|
+
}
|
|
48
|
+
export interface UpdateUserAttributesRequest {
|
|
49
|
+
UserAttributes: AttributeType[] | undefined;
|
|
50
|
+
AccessToken: string | undefined;
|
|
51
|
+
ClientMetadata?: Record<string, string> | undefined;
|
|
52
|
+
}
|
|
53
|
+
export interface UpdateUserAttributesResponse {
|
|
54
|
+
CodeDeliveryDetailsList?: CodeDeliveryDetailsType[] | undefined;
|
|
55
|
+
}
|
|
56
|
+
export interface UpdateUserPoolRequest {
|
|
57
|
+
UserPoolId: string | undefined;
|
|
58
|
+
Policies?: UserPoolPolicyType | undefined;
|
|
59
|
+
DeletionProtection?: DeletionProtectionType | undefined;
|
|
60
|
+
LambdaConfig?: LambdaConfigType | undefined;
|
|
61
|
+
AutoVerifiedAttributes?: VerifiedAttributeType[] | undefined;
|
|
62
|
+
SmsVerificationMessage?: string | undefined;
|
|
63
|
+
EmailVerificationMessage?: string | undefined;
|
|
64
|
+
EmailVerificationSubject?: string | undefined;
|
|
65
|
+
VerificationMessageTemplate?: VerificationMessageTemplateType | undefined;
|
|
66
|
+
SmsAuthenticationMessage?: string | undefined;
|
|
67
|
+
UserAttributeUpdateSettings?: UserAttributeUpdateSettingsType | undefined;
|
|
68
|
+
MfaConfiguration?: UserPoolMfaType | undefined;
|
|
69
|
+
DeviceConfiguration?: DeviceConfigurationType | undefined;
|
|
70
|
+
EmailConfiguration?: EmailConfigurationType | undefined;
|
|
71
|
+
SmsConfiguration?: SmsConfigurationType | undefined;
|
|
72
|
+
UserPoolTags?: Record<string, string> | undefined;
|
|
73
|
+
AdminCreateUserConfig?: AdminCreateUserConfigType | undefined;
|
|
74
|
+
UserPoolAddOns?: UserPoolAddOnsType | undefined;
|
|
75
|
+
AccountRecoverySetting?: AccountRecoverySettingType | undefined;
|
|
76
|
+
PoolName?: string | undefined;
|
|
77
|
+
UserPoolTier?: UserPoolTierType | undefined;
|
|
78
|
+
}
|
|
79
|
+
export interface UpdateUserPoolResponse {}
|
|
14
80
|
export interface UpdateUserPoolClientRequest {
|
|
15
81
|
UserPoolId: string | undefined;
|
|
16
82
|
ClientId: string | undefined;
|
|
@@ -5,6 +5,7 @@ import {
|
|
|
5
5
|
StaticStructureSchema,
|
|
6
6
|
} from "@smithy/types";
|
|
7
7
|
export declare var CognitoIdentityProviderServiceException$: StaticErrorSchema;
|
|
8
|
+
export declare var AccessDeniedException$: StaticErrorSchema;
|
|
8
9
|
export declare var AliasExistsException$: StaticErrorSchema;
|
|
9
10
|
export declare var CodeDeliveryFailureException$: StaticErrorSchema;
|
|
10
11
|
export declare var CodeMismatchException$: StaticErrorSchema;
|
|
@@ -17,6 +18,7 @@ export declare var FeatureUnavailableInTierException$: StaticErrorSchema;
|
|
|
17
18
|
export declare var ForbiddenException$: StaticErrorSchema;
|
|
18
19
|
export declare var GroupExistsException$: StaticErrorSchema;
|
|
19
20
|
export declare var InternalErrorException$: StaticErrorSchema;
|
|
21
|
+
export declare var InternalServerException$: StaticErrorSchema;
|
|
20
22
|
export declare var InvalidEmailRoleAccessPolicyException$: StaticErrorSchema;
|
|
21
23
|
export declare var InvalidLambdaResponseException$: StaticErrorSchema;
|
|
22
24
|
export declare var InvalidOAuthFlowException$: StaticErrorSchema;
|
|
@@ -67,6 +69,8 @@ export declare var AccountTakeoverActionType$: StaticStructureSchema;
|
|
|
67
69
|
export declare var AccountTakeoverRiskConfigurationType$: StaticStructureSchema;
|
|
68
70
|
export declare var AddCustomAttributesRequest$: StaticStructureSchema;
|
|
69
71
|
export declare var AddCustomAttributesResponse$: StaticStructureSchema;
|
|
72
|
+
export declare var AddUserPoolClientSecretRequest$: StaticStructureSchema;
|
|
73
|
+
export declare var AddUserPoolClientSecretResponse$: StaticStructureSchema;
|
|
70
74
|
export declare var AdminAddUserToGroupRequest$: StaticStructureSchema;
|
|
71
75
|
export declare var AdminConfirmSignUpRequest$: StaticStructureSchema;
|
|
72
76
|
export declare var AdminConfirmSignUpResponse$: StaticStructureSchema;
|
|
@@ -128,6 +132,7 @@ export declare var AuthEventType$: StaticStructureSchema;
|
|
|
128
132
|
export declare var ChallengeResponseType$: StaticStructureSchema;
|
|
129
133
|
export declare var ChangePasswordRequest$: StaticStructureSchema;
|
|
130
134
|
export declare var ChangePasswordResponse$: StaticStructureSchema;
|
|
135
|
+
export declare var ClientSecretDescriptorType$: StaticStructureSchema;
|
|
131
136
|
export declare var CloudWatchLogsConfigurationType$: StaticStructureSchema;
|
|
132
137
|
export declare var CodeDeliveryDetailsType$: StaticStructureSchema;
|
|
133
138
|
export declare var CompleteWebAuthnRegistrationRequest$: StaticStructureSchema;
|
|
@@ -170,6 +175,8 @@ export declare var DeleteTermsRequest$: StaticStructureSchema;
|
|
|
170
175
|
export declare var DeleteUserAttributesRequest$: StaticStructureSchema;
|
|
171
176
|
export declare var DeleteUserAttributesResponse$: StaticStructureSchema;
|
|
172
177
|
export declare var DeleteUserPoolClientRequest$: StaticStructureSchema;
|
|
178
|
+
export declare var DeleteUserPoolClientSecretRequest$: StaticStructureSchema;
|
|
179
|
+
export declare var DeleteUserPoolClientSecretResponse$: StaticStructureSchema;
|
|
173
180
|
export declare var DeleteUserPoolDomainRequest$: StaticStructureSchema;
|
|
174
181
|
export declare var DeleteUserPoolDomainResponse$: StaticStructureSchema;
|
|
175
182
|
export declare var DeleteUserPoolRequest$: StaticStructureSchema;
|
|
@@ -257,6 +264,8 @@ export declare var ListTermsRequest$: StaticStructureSchema;
|
|
|
257
264
|
export declare var ListTermsResponse$: StaticStructureSchema;
|
|
258
265
|
export declare var ListUserImportJobsRequest$: StaticStructureSchema;
|
|
259
266
|
export declare var ListUserImportJobsResponse$: StaticStructureSchema;
|
|
267
|
+
export declare var ListUserPoolClientSecretsRequest$: StaticStructureSchema;
|
|
268
|
+
export declare var ListUserPoolClientSecretsResponse$: StaticStructureSchema;
|
|
260
269
|
export declare var ListUserPoolClientsRequest$: StaticStructureSchema;
|
|
261
270
|
export declare var ListUserPoolClientsResponse$: StaticStructureSchema;
|
|
262
271
|
export declare var ListUserPoolsRequest$: StaticStructureSchema;
|
|
@@ -370,6 +379,7 @@ export declare var VerifyUserAttributeResponse$: StaticStructureSchema;
|
|
|
370
379
|
export declare var WebAuthnConfigurationType$: StaticStructureSchema;
|
|
371
380
|
export declare var WebAuthnCredentialDescription$: StaticStructureSchema;
|
|
372
381
|
export declare var AddCustomAttributes$: StaticOperationSchema;
|
|
382
|
+
export declare var AddUserPoolClientSecret$: StaticOperationSchema;
|
|
373
383
|
export declare var AdminAddUserToGroup$: StaticOperationSchema;
|
|
374
384
|
export declare var AdminConfirmSignUp$: StaticOperationSchema;
|
|
375
385
|
export declare var AdminCreateUser$: StaticOperationSchema;
|
|
@@ -420,6 +430,7 @@ export declare var DeleteUser$: StaticOperationSchema;
|
|
|
420
430
|
export declare var DeleteUserAttributes$: StaticOperationSchema;
|
|
421
431
|
export declare var DeleteUserPool$: StaticOperationSchema;
|
|
422
432
|
export declare var DeleteUserPoolClient$: StaticOperationSchema;
|
|
433
|
+
export declare var DeleteUserPoolClientSecret$: StaticOperationSchema;
|
|
423
434
|
export declare var DeleteUserPoolDomain$: StaticOperationSchema;
|
|
424
435
|
export declare var DeleteWebAuthnCredential$: StaticOperationSchema;
|
|
425
436
|
export declare var DescribeIdentityProvider$: StaticOperationSchema;
|
|
@@ -456,6 +467,7 @@ export declare var ListTagsForResource$: StaticOperationSchema;
|
|
|
456
467
|
export declare var ListTerms$: StaticOperationSchema;
|
|
457
468
|
export declare var ListUserImportJobs$: StaticOperationSchema;
|
|
458
469
|
export declare var ListUserPoolClients$: StaticOperationSchema;
|
|
470
|
+
export declare var ListUserPoolClientSecrets$: StaticOperationSchema;
|
|
459
471
|
export declare var ListUserPools$: StaticOperationSchema;
|
|
460
472
|
export declare var ListUsers$: StaticOperationSchema;
|
|
461
473
|
export declare var ListUsersInGroup$: StaticOperationSchema;
|
package/package.json
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@aws-sdk/client-cognito-identity-provider",
|
|
3
3
|
"description": "AWS SDK for JavaScript Cognito Identity Provider Client for Node.js, Browser and React Native",
|
|
4
|
-
"version": "3.
|
|
4
|
+
"version": "3.1000.0",
|
|
5
5
|
"scripts": {
|
|
6
6
|
"build": "concurrently 'yarn:build:types' 'yarn:build:es' && yarn build:cjs",
|
|
7
7
|
"build:cjs": "node ../../scripts/compilation/inline client-cognito-identity-provider",
|
|
@@ -21,17 +21,17 @@
|
|
|
21
21
|
"dependencies": {
|
|
22
22
|
"@aws-crypto/sha256-browser": "5.2.0",
|
|
23
23
|
"@aws-crypto/sha256-js": "5.2.0",
|
|
24
|
-
"@aws-sdk/core": "^3.973.
|
|
25
|
-
"@aws-sdk/credential-provider-node": "^3.972.
|
|
26
|
-
"@aws-sdk/middleware-host-header": "^3.972.
|
|
27
|
-
"@aws-sdk/middleware-logger": "^3.972.
|
|
28
|
-
"@aws-sdk/middleware-recursion-detection": "^3.972.
|
|
29
|
-
"@aws-sdk/middleware-user-agent": "^3.972.
|
|
30
|
-
"@aws-sdk/region-config-resolver": "^3.972.
|
|
31
|
-
"@aws-sdk/types": "^3.973.
|
|
32
|
-
"@aws-sdk/util-endpoints": "^3.996.
|
|
33
|
-
"@aws-sdk/util-user-agent-browser": "^3.972.
|
|
34
|
-
"@aws-sdk/util-user-agent-node": "^3.
|
|
24
|
+
"@aws-sdk/core": "^3.973.15",
|
|
25
|
+
"@aws-sdk/credential-provider-node": "^3.972.14",
|
|
26
|
+
"@aws-sdk/middleware-host-header": "^3.972.6",
|
|
27
|
+
"@aws-sdk/middleware-logger": "^3.972.6",
|
|
28
|
+
"@aws-sdk/middleware-recursion-detection": "^3.972.6",
|
|
29
|
+
"@aws-sdk/middleware-user-agent": "^3.972.15",
|
|
30
|
+
"@aws-sdk/region-config-resolver": "^3.972.6",
|
|
31
|
+
"@aws-sdk/types": "^3.973.4",
|
|
32
|
+
"@aws-sdk/util-endpoints": "^3.996.3",
|
|
33
|
+
"@aws-sdk/util-user-agent-browser": "^3.972.6",
|
|
34
|
+
"@aws-sdk/util-user-agent-node": "^3.973.0",
|
|
35
35
|
"@smithy/config-resolver": "^4.4.9",
|
|
36
36
|
"@smithy/core": "^3.23.6",
|
|
37
37
|
"@smithy/fetch-http-handler": "^5.3.11",
|