mirror of
https://github.com/chenasraf/DefinitelyTyped.git
synced 2026-05-18 01:49:01 +00:00
Removed attribute clientMetadata for unprovided triggers (#65606)
* Removed attribute clientMetadata for unprovided triggers * Updated aws-lambda index.d.ts authors
This commit is contained in:
committed by
GitHub
parent
1c5dffbb22
commit
534ef2abdb
1
types/aws-lambda/index.d.ts
vendored
1
types/aws-lambda/index.d.ts
vendored
@@ -41,6 +41,7 @@
|
||||
// James Lakin <https://github.com/jamesorlakin>
|
||||
// Ross Gerbasi <https://github.com/aphex>
|
||||
// Joey Kilpatrick <https://github.com/joeykilpatrick>
|
||||
// Luciano Manerich Junior <https://github.com/lmanerich>
|
||||
// Definitions: https://github.com/DefinitelyTyped/DefinitelyTyped
|
||||
// TypeScript Version: 3.0
|
||||
|
||||
|
||||
@@ -9,7 +9,6 @@ export interface CreateAuthChallengeTriggerEvent extends BaseTriggerEvent<'Creat
|
||||
userAttributes: StringMap;
|
||||
challengeName: string;
|
||||
session: Array<ChallengeResult | CustomChallengeResult>;
|
||||
clientMetadata?: StringMap | undefined;
|
||||
userNotFound?: boolean | undefined;
|
||||
};
|
||||
response: {
|
||||
|
||||
@@ -8,7 +8,6 @@ export interface DefineAuthChallengeTriggerEvent extends BaseTriggerEvent<'Defin
|
||||
request: {
|
||||
userAttributes: StringMap;
|
||||
session: Array<ChallengeResult | CustomChallengeResult>;
|
||||
clientMetadata?: StringMap | undefined;
|
||||
userNotFound?: boolean | undefined;
|
||||
};
|
||||
response: {
|
||||
|
||||
@@ -8,7 +8,6 @@ export interface PostAuthenticationTriggerEvent extends BaseTriggerEvent<'PostAu
|
||||
request: {
|
||||
userAttributes: StringMap;
|
||||
newDeviceUsed: boolean;
|
||||
clientMetadata?: StringMap | undefined;
|
||||
};
|
||||
}
|
||||
|
||||
|
||||
@@ -9,6 +9,7 @@ export interface PreAuthenticationTriggerEvent extends BaseTriggerEvent<'PreAuth
|
||||
userAttributes: StringMap;
|
||||
userNotFound?: boolean | undefined;
|
||||
validationData?: StringMap | undefined;
|
||||
clientMetadata?: StringMap | undefined;
|
||||
};
|
||||
}
|
||||
|
||||
|
||||
@@ -11,7 +11,6 @@ export interface BasePreTokenGenerationTriggerEvent<T extends string> extends Ba
|
||||
request: {
|
||||
userAttributes: StringMap;
|
||||
groupConfiguration: GroupOverrideDetails;
|
||||
clientMetadata?: StringMap | undefined;
|
||||
};
|
||||
response: {
|
||||
claimsOverrideDetails: {
|
||||
|
||||
@@ -9,7 +9,6 @@ export interface VerifyAuthChallengeResponseTriggerEvent extends BaseTriggerEven
|
||||
userAttributes: StringMap;
|
||||
privateChallengeParameters: StringMap;
|
||||
challengeAnswer: string;
|
||||
clientMetadata?: StringMap | undefined;
|
||||
userNotFound?: boolean | undefined;
|
||||
};
|
||||
response: {
|
||||
|
||||
Reference in New Issue
Block a user