aws-delivlib 14.15.95 → 14.15.97
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/package-integrity/handler/validate.bundle.js +80 -71
- 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/async_hooks.d.ts +64 -0
- package/lib/publishing/github/node_modules/@types/jsonwebtoken/node_modules/@types/node/buffer.buffer.d.ts +2 -0
- package/lib/publishing/github/node_modules/@types/jsonwebtoken/node_modules/@types/node/buffer.d.ts +2 -2
- package/lib/publishing/github/node_modules/@types/jsonwebtoken/node_modules/@types/node/cluster.d.ts +1 -1
- package/lib/publishing/github/node_modules/@types/jsonwebtoken/node_modules/@types/node/diagnostics_channel.d.ts +20 -1
- package/lib/publishing/github/node_modules/@types/jsonwebtoken/node_modules/@types/node/fs/promises.d.ts +5 -15
- package/lib/publishing/github/node_modules/@types/jsonwebtoken/node_modules/@types/node/fs.d.ts +51 -7
- package/lib/publishing/github/node_modules/@types/jsonwebtoken/node_modules/@types/node/globals.d.ts +140 -280
- package/lib/publishing/github/node_modules/@types/jsonwebtoken/node_modules/@types/node/http.d.ts +22 -1
- package/lib/publishing/github/node_modules/@types/jsonwebtoken/node_modules/@types/node/net.d.ts +12 -6
- package/lib/publishing/github/node_modules/@types/jsonwebtoken/node_modules/@types/node/package.json +2 -2
- package/lib/publishing/github/node_modules/@types/jsonwebtoken/node_modules/@types/node/querystring.d.ts +2 -3
- package/lib/publishing/github/node_modules/@types/jsonwebtoken/node_modules/@types/node/stream/web.d.ts +3 -3
- package/lib/publishing/github/node_modules/@types/jsonwebtoken/node_modules/@types/node/tls.d.ts +1 -1
- package/lib/publishing/github/node_modules/@types/jsonwebtoken/node_modules/@types/node/ts5.6/buffer.buffer.d.ts +2 -0
- package/lib/publishing/github/node_modules/@types/jsonwebtoken/node_modules/@types/node/util.d.ts +13 -0
- package/package.json +8 -8
@@ -448,6 +448,8 @@ declare module "buffer" {
|
|
448
448
|
*/
|
449
449
|
subarray(start?: number, end?: number): Buffer;
|
450
450
|
}
|
451
|
+
type NonSharedBuffer = Buffer;
|
452
|
+
type AllowSharedBuffer = Buffer;
|
451
453
|
}
|
452
454
|
/** @deprecated Use `Buffer.allocUnsafeSlow()` instead. */
|
453
455
|
var SlowBuffer: {
|
package/lib/publishing/github/node_modules/@types/jsonwebtoken/node_modules/@types/node/util.d.ts
CHANGED
@@ -1466,6 +1466,18 @@ declare module "util" {
|
|
1466
1466
|
| "reset"
|
1467
1467
|
| "strikethrough"
|
1468
1468
|
| "underline";
|
1469
|
+
export interface StyleTextOptions {
|
1470
|
+
/**
|
1471
|
+
* When true, `stream` is checked to see if it can handle colors.
|
1472
|
+
* @default true
|
1473
|
+
*/
|
1474
|
+
validateStream?: boolean | undefined;
|
1475
|
+
/**
|
1476
|
+
* A stream that will be validated if it can be colored.
|
1477
|
+
* @default process.stdout
|
1478
|
+
*/
|
1479
|
+
stream?: NodeJS.WritableStream | undefined;
|
1480
|
+
}
|
1469
1481
|
/**
|
1470
1482
|
* This function returns a formatted text considering the `format` passed
|
1471
1483
|
* for printing in a terminal. It is aware of the terminal's capabilities
|
@@ -1518,6 +1530,7 @@ declare module "util" {
|
|
1518
1530
|
| Modifiers
|
1519
1531
|
| Array<ForegroundColors | BackgroundColors | Modifiers>,
|
1520
1532
|
text: string,
|
1533
|
+
options?: StyleTextOptions,
|
1521
1534
|
): string;
|
1522
1535
|
/**
|
1523
1536
|
* An implementation of the [WHATWG Encoding Standard](https://encoding.spec.whatwg.org/) `TextDecoder` API.
|
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.804.0",
|
41
|
+
"@aws-sdk/client-codepipeline": "^3.804.0",
|
42
|
+
"@aws-sdk/client-s3": "^3.804.0",
|
43
|
+
"@aws-sdk/client-secrets-manager": "^3.804.0",
|
44
|
+
"@aws-sdk/client-ssm": "^3.804.0",
|
45
45
|
"@stylistic/eslint-plugin": "^2",
|
46
46
|
"@types/adm-zip": "^0.5.7",
|
47
47
|
"@types/aws-lambda": "^8.10.149",
|
@@ -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.4",
|
61
61
|
"eslint": "^9",
|
62
62
|
"eslint-import-resolver-typescript": "^2.7.1",
|
63
63
|
"eslint-plugin-import": "^2.31.0",
|
@@ -68,7 +68,7 @@
|
|
68
68
|
"JSONStream": "^1.3.5",
|
69
69
|
"minipass": "3.2.1",
|
70
70
|
"node-ical": "0.15.1",
|
71
|
-
"projen": "^0.91.
|
71
|
+
"projen": "^0.91.30",
|
72
72
|
"rrule": "^2.8.1",
|
73
73
|
"standard-version": "^9",
|
74
74
|
"tar": "^6.2.1",
|
@@ -97,7 +97,7 @@
|
|
97
97
|
"publishConfig": {
|
98
98
|
"access": "public"
|
99
99
|
},
|
100
|
-
"version": "14.15.
|
100
|
+
"version": "14.15.97",
|
101
101
|
"jest": {
|
102
102
|
"coverageProvider": "v8",
|
103
103
|
"testMatch": [
|