aws-delivlib 15.0.46 → 15.0.47
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/lib/custom-resource-handlers/src/certificate-signing-request.tsbuildinfo +1 -1
- package/lib/custom-resource-handlers/src/pgp-secret.tsbuildinfo +1 -1
- package/lib/custom-resource-handlers/src/private-key.tsbuildinfo +1 -1
- package/lib/publishing/github/node_modules/.yarn-integrity +2 -2
- package/lib/publishing/github/node_modules/@types/aws-lambda/README.md +1 -1
- package/lib/publishing/github/node_modules/@types/aws-lambda/handler.d.ts +1 -0
- package/lib/publishing/github/node_modules/@types/aws-lambda/package.json +2 -2
- package/lib/publishing/github/node_modules/@types/aws-lambda/trigger/cognito-user-pool-trigger/index.d.ts +2 -0
- package/lib/publishing/github/node_modules/@types/aws-lambda/trigger/cognito-user-pool-trigger/pre-token-generation-v3.d.ts +50 -0
- package/lib/publishing/github/node_modules/@types/jsonwebtoken/node_modules/@types/node/README.md +1 -1
- package/lib/publishing/github/node_modules/@types/jsonwebtoken/node_modules/@types/node/http.d.ts +1 -1
- package/lib/publishing/github/node_modules/@types/jsonwebtoken/node_modules/@types/node/package.json +2 -2
- package/package.json +3 -3
@@ -0,0 +1,50 @@
|
|
1
|
+
import { Handler } from "../../handler";
|
2
|
+
import { BaseTriggerEvent, StringMap } from "./_common";
|
3
|
+
|
4
|
+
export interface GroupOverrideDetailsV3 {
|
5
|
+
groupsToOverride?: string[];
|
6
|
+
iamRolesToOverride?: string[];
|
7
|
+
preferredRole?: string;
|
8
|
+
}
|
9
|
+
|
10
|
+
export interface IdTokenGenerationV3 {
|
11
|
+
claimsToAddOrOverride?: StringMap;
|
12
|
+
claimsToSuppress?: string[];
|
13
|
+
}
|
14
|
+
|
15
|
+
export interface AccessTokenGenerationV3 {
|
16
|
+
claimsToAddOrOverride?: StringMap;
|
17
|
+
claimsToSuppress?: string[];
|
18
|
+
scopesToAdd?: string[];
|
19
|
+
scopesToSuppress?: string[];
|
20
|
+
}
|
21
|
+
|
22
|
+
export interface ClaimsAndScopeOverrideDetailsV3 {
|
23
|
+
idTokenGeneration?: IdTokenGenerationV3;
|
24
|
+
accessTokenGeneration?: AccessTokenGenerationV3;
|
25
|
+
groupOverrideDetails?: GroupOverrideDetailsV3;
|
26
|
+
}
|
27
|
+
|
28
|
+
/**
|
29
|
+
* @see https://docs.aws.amazon.com/cognito/latest/developerguide/user-pool-lambda-pre-token-generation.html
|
30
|
+
*/
|
31
|
+
export interface BasePreTokenGenerationV3TriggerEvent<T extends string> extends BaseTriggerEvent<T> {
|
32
|
+
version: "3";
|
33
|
+
request: {
|
34
|
+
userAttributes: StringMap;
|
35
|
+
groupConfiguration: GroupOverrideDetailsV3;
|
36
|
+
scopes?: string[];
|
37
|
+
clientMetadata?: StringMap;
|
38
|
+
};
|
39
|
+
response: {
|
40
|
+
claimsAndScopeOverrideDetails: ClaimsAndScopeOverrideDetailsV3;
|
41
|
+
};
|
42
|
+
}
|
43
|
+
|
44
|
+
export type PreTokenGenerationClientCredentialsV3TriggerEvent = BasePreTokenGenerationV3TriggerEvent<
|
45
|
+
"TokenGeneration_ClientCredentials"
|
46
|
+
>;
|
47
|
+
|
48
|
+
export type PreTokenGenerationV3TriggerEvent = PreTokenGenerationClientCredentialsV3TriggerEvent;
|
49
|
+
|
50
|
+
export type PreTokenGenerationV3TriggerHandler = Handler<PreTokenGenerationV3TriggerEvent>;
|
package/lib/publishing/github/node_modules/@types/jsonwebtoken/node_modules/@types/node/README.md
CHANGED
@@ -8,7 +8,7 @@ This package contains type definitions for node (https://nodejs.org/).
|
|
8
8
|
Files were exported from https://github.com/DefinitelyTyped/DefinitelyTyped/tree/master/types/node.
|
9
9
|
|
10
10
|
### Additional Details
|
11
|
-
* Last updated:
|
11
|
+
* Last updated: Sat, 19 Jul 2025 00:47:11 GMT
|
12
12
|
* Dependencies: [undici-types](https://npmjs.com/package/undici-types)
|
13
13
|
|
14
14
|
# Credits
|
package/lib/publishing/github/node_modules/@types/jsonwebtoken/node_modules/@types/node/package.json
CHANGED
@@ -1,6 +1,6 @@
|
|
1
1
|
{
|
2
2
|
"name": "@types/node",
|
3
|
-
"version": "24.0.
|
3
|
+
"version": "24.0.15",
|
4
4
|
"description": "TypeScript definitions for node",
|
5
5
|
"homepage": "https://github.com/DefinitelyTyped/DefinitelyTyped/tree/master/types/node",
|
6
6
|
"license": "MIT",
|
@@ -155,6 +155,6 @@
|
|
155
155
|
"undici-types": "~7.8.0"
|
156
156
|
},
|
157
157
|
"peerDependencies": {},
|
158
|
-
"typesPublisherContentHash": "
|
158
|
+
"typesPublisherContentHash": "6a5ec8f1b1a98e8c7a437e76633d6cf07a9a74d62ff723d701c1a5db2fc8ff18",
|
159
159
|
"typeScriptVersion": "5.1"
|
160
160
|
}
|
package/package.json
CHANGED
@@ -44,7 +44,7 @@
|
|
44
44
|
"@aws-sdk/client-ssm": "^3.849.0",
|
45
45
|
"@stylistic/eslint-plugin": "^2",
|
46
46
|
"@types/adm-zip": "^0.5.7",
|
47
|
-
"@types/aws-lambda": "^8.10.
|
47
|
+
"@types/aws-lambda": "^8.10.152",
|
48
48
|
"@types/follow-redirects": "^1.14.4",
|
49
49
|
"@types/fs-extra": "^9.0.13",
|
50
50
|
"@types/jest": "^29.5.14",
|
@@ -57,7 +57,7 @@
|
|
57
57
|
"aws-cdk-lib": "2.187.0",
|
58
58
|
"commit-and-tag-version": "^12",
|
59
59
|
"constructs": "10.1.31",
|
60
|
-
"esbuild": "^0.25.
|
60
|
+
"esbuild": "^0.25.8",
|
61
61
|
"eslint": "^9",
|
62
62
|
"eslint-import-resolver-typescript": "^2.7.1",
|
63
63
|
"eslint-plugin-import": "^2.32.0",
|
@@ -97,7 +97,7 @@
|
|
97
97
|
"publishConfig": {
|
98
98
|
"access": "public"
|
99
99
|
},
|
100
|
-
"version": "15.0.
|
100
|
+
"version": "15.0.47",
|
101
101
|
"jest": {
|
102
102
|
"coverageProvider": "v8",
|
103
103
|
"testMatch": [
|