aws-delivlib 14.13.29 → 14.13.31
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/package-integrity/handler/validate.bundle.js +136 -136
- package/lib/publishing/github/node_modules/.yarn-integrity +1 -1
- 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/fs.d.ts +13 -7
- package/lib/publishing/github/node_modules/@types/jsonwebtoken/node_modules/@types/node/package.json +3 -3
- package/package.json +7 -7
@@ -51,7 +51,7 @@
|
|
51
51
|
"@types/btoa-lite@^1.0.0": "https://registry.yarnpkg.com/@types/btoa-lite/-/btoa-lite-1.0.2.tgz#82bb6aab00abf7cff3ca2825abe010c0cd536ae5",
|
52
52
|
"@types/changelog-parser@^2.8.1": "https://registry.yarnpkg.com/@types/changelog-parser/-/changelog-parser-2.8.4.tgz#45d70417e742ac3bc6bef3786aa453e1f1d63ecc",
|
53
53
|
"@types/jsonwebtoken@^9.0.0": "https://registry.yarnpkg.com/@types/jsonwebtoken/-/jsonwebtoken-9.0.7.tgz#e49b96c2b29356ed462e9708fc73b833014727d2",
|
54
|
-
"@types/node@*": "https://registry.yarnpkg.com/@types/node/-/node-22.9.
|
54
|
+
"@types/node@*": "https://registry.yarnpkg.com/@types/node/-/node-22.9.1.tgz#bdf91c36e0e7ecfb7257b2d75bf1b206b308ca71",
|
55
55
|
"@types/node@^14": "https://registry.yarnpkg.com/@types/node/-/node-14.18.63.tgz#1788fa8da838dbb5f9ea994b834278205db6ca2b",
|
56
56
|
"aggregate-error@^3.1.0": "https://registry.yarnpkg.com/aggregate-error/-/aggregate-error-3.1.0.tgz#92670ff50f5359bdb7a3e0d40d0ec30c5737687a",
|
57
57
|
"before-after-hook@^2.2.0": "https://registry.yarnpkg.com/before-after-hook/-/before-after-hook-2.2.3.tgz#c51e809c81a4e354084422b9b26bad88249c517c",
|
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: Tue,
|
11
|
+
* Last updated: Tue, 19 Nov 2024 17:34:45 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/fs.d.ts
CHANGED
@@ -4314,29 +4314,35 @@ declare module "fs" {
|
|
4314
4314
|
*/
|
4315
4315
|
export function cpSync(source: string | URL, destination: string | URL, opts?: CopySyncOptions): void;
|
4316
4316
|
|
4317
|
-
|
4317
|
+
interface GlobOptionsBase {
|
4318
4318
|
/**
|
4319
4319
|
* Current working directory.
|
4320
4320
|
* @default process.cwd()
|
4321
4321
|
*/
|
4322
4322
|
cwd?: string | undefined;
|
4323
|
-
/**
|
4324
|
-
* Function to filter out files/directories. Return true to exclude the item, false to include it.
|
4325
|
-
*/
|
4326
|
-
exclude?: ((fileName: string) => boolean) | undefined;
|
4327
4323
|
/**
|
4328
4324
|
* `true` if the glob should return paths as `Dirent`s, `false` otherwise.
|
4329
4325
|
* @default false
|
4330
4326
|
* @since v22.2.0
|
4331
4327
|
*/
|
4332
4328
|
withFileTypes?: boolean | undefined;
|
4329
|
+
/**
|
4330
|
+
* Function to filter out files/directories. Return true to exclude the item, false to include it.
|
4331
|
+
*/
|
4332
|
+
exclude?: ((fileName: any) => boolean) | undefined;
|
4333
4333
|
}
|
4334
|
-
export interface GlobOptionsWithFileTypes extends
|
4334
|
+
export interface GlobOptionsWithFileTypes extends GlobOptionsBase {
|
4335
|
+
exclude?: ((fileName: Dirent) => boolean) | undefined;
|
4335
4336
|
withFileTypes: true;
|
4336
4337
|
}
|
4337
|
-
export interface GlobOptionsWithoutFileTypes extends
|
4338
|
+
export interface GlobOptionsWithoutFileTypes extends GlobOptionsBase {
|
4339
|
+
exclude?: ((fileName: string) => boolean) | undefined;
|
4338
4340
|
withFileTypes?: false | undefined;
|
4339
4341
|
}
|
4342
|
+
export interface GlobOptions extends GlobOptionsBase {
|
4343
|
+
exclude?: ((fileName: Dirent | string) => boolean) | undefined;
|
4344
|
+
}
|
4345
|
+
|
4340
4346
|
/**
|
4341
4347
|
* Retrieves the files matching the specified pattern.
|
4342
4348
|
*/
|
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": "22.9.
|
3
|
+
"version": "22.9.1",
|
4
4
|
"description": "TypeScript definitions for node",
|
5
5
|
"homepage": "https://github.com/DefinitelyTyped/DefinitelyTyped/tree/master/types/node",
|
6
6
|
"license": "MIT",
|
@@ -220,6 +220,6 @@
|
|
220
220
|
"undici-types": "~6.19.8"
|
221
221
|
},
|
222
222
|
"peerDependencies": {},
|
223
|
-
"typesPublisherContentHash": "
|
224
|
-
"typeScriptVersion": "4.
|
223
|
+
"typesPublisherContentHash": "8cdfe0993eefe6c2c47cdca25f2e469aebde173da438c2effa178b85614d5022",
|
224
|
+
"typeScriptVersion": "4.9"
|
225
225
|
}
|
package/package.json
CHANGED
@@ -37,11 +37,11 @@
|
|
37
37
|
"organization": false
|
38
38
|
},
|
39
39
|
"devDependencies": {
|
40
|
-
"@aws-sdk/client-cloudwatch": "^3.
|
41
|
-
"@aws-sdk/client-codepipeline": "^3.
|
42
|
-
"@aws-sdk/client-s3": "^3.
|
43
|
-
"@aws-sdk/client-secrets-manager": "^3.
|
44
|
-
"@aws-sdk/client-ssm": "^3.
|
40
|
+
"@aws-sdk/client-cloudwatch": "^3.696.0",
|
41
|
+
"@aws-sdk/client-codepipeline": "^3.696.0",
|
42
|
+
"@aws-sdk/client-s3": "^3.696.0",
|
43
|
+
"@aws-sdk/client-secrets-manager": "^3.696.0",
|
44
|
+
"@aws-sdk/client-ssm": "^3.696.0",
|
45
45
|
"@stylistic/eslint-plugin": "^2",
|
46
46
|
"@types/adm-zip": "^0.5.6",
|
47
47
|
"@types/aws-lambda": "^8.10.145",
|
@@ -53,7 +53,7 @@
|
|
53
53
|
"@typescript-eslint/eslint-plugin": "^8",
|
54
54
|
"@typescript-eslint/parser": "^8",
|
55
55
|
"adm-zip": "^0.5.16",
|
56
|
-
"aws-cdk": "2.167.
|
56
|
+
"aws-cdk": "2.167.2",
|
57
57
|
"aws-cdk-lib": "2.150.0",
|
58
58
|
"commit-and-tag-version": "^12",
|
59
59
|
"constructs": "10.1.31",
|
@@ -97,7 +97,7 @@
|
|
97
97
|
"publishConfig": {
|
98
98
|
"access": "public"
|
99
99
|
},
|
100
|
-
"version": "14.13.
|
100
|
+
"version": "14.13.31",
|
101
101
|
"jest": {
|
102
102
|
"coverageProvider": "v8",
|
103
103
|
"testMatch": [
|