aws-delivlib 14.15.2 → 14.15.4
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 +114 -349
- package/lib/publishing/github/node_modules/.yarn-integrity +3 -2
- package/lib/publishing/github/node_modules/@types/jsonwebtoken/README.md +2 -2
- package/lib/publishing/github/node_modules/@types/jsonwebtoken/index.d.ts +3 -4
- 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/dgram.d.ts +6 -6
- package/lib/publishing/github/node_modules/@types/jsonwebtoken/node_modules/@types/node/fs.d.ts +45 -95
- package/lib/publishing/github/node_modules/@types/jsonwebtoken/node_modules/@types/node/globals.d.ts +0 -57
- package/lib/publishing/github/node_modules/@types/jsonwebtoken/node_modules/@types/node/module.d.ts +445 -233
- package/lib/publishing/github/node_modules/@types/jsonwebtoken/node_modules/@types/node/package.json +2 -2
- package/lib/publishing/github/node_modules/@types/jsonwebtoken/package.json +5 -3
- package/lib/publishing/github/node_modules/@types/ms/LICENSE +21 -0
- package/lib/publishing/github/node_modules/@types/ms/README.md +82 -0
- package/lib/publishing/github/node_modules/@types/ms/index.d.ts +63 -0
- package/lib/publishing/github/node_modules/@types/ms/package.json +26 -0
- package/package.json +6 -6
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.10.
|
|
3
|
+
"version": "22.10.10",
|
|
4
4
|
"description": "TypeScript definitions for node",
|
|
5
5
|
"homepage": "https://github.com/DefinitelyTyped/DefinitelyTyped/tree/master/types/node",
|
|
6
6
|
"license": "MIT",
|
|
@@ -215,6 +215,6 @@
|
|
|
215
215
|
"undici-types": "~6.20.0"
|
|
216
216
|
},
|
|
217
217
|
"peerDependencies": {},
|
|
218
|
-
"typesPublisherContentHash": "
|
|
218
|
+
"typesPublisherContentHash": "473650c3cc1206a93e36487b99568f65b48fd9822931e9690fa0c31e93106b22",
|
|
219
219
|
"typeScriptVersion": "5.0"
|
|
220
220
|
}
|
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@types/jsonwebtoken",
|
|
3
|
-
"version": "9.0.
|
|
3
|
+
"version": "9.0.8",
|
|
4
4
|
"description": "TypeScript definitions for jsonwebtoken",
|
|
5
5
|
"homepage": "https://github.com/DefinitelyTyped/DefinitelyTyped/tree/master/types/jsonwebtoken",
|
|
6
6
|
"license": "MIT",
|
|
@@ -75,8 +75,10 @@
|
|
|
75
75
|
},
|
|
76
76
|
"scripts": {},
|
|
77
77
|
"dependencies": {
|
|
78
|
+
"@types/ms": "*",
|
|
78
79
|
"@types/node": "*"
|
|
79
80
|
},
|
|
80
|
-
"
|
|
81
|
-
"
|
|
81
|
+
"peerDependencies": {},
|
|
82
|
+
"typesPublisherContentHash": "9cb3f377ff85102b88de21c56a894e35633e74cb51f4cbb7cd9c8aed600ad823",
|
|
83
|
+
"typeScriptVersion": "5.0"
|
|
82
84
|
}
|
|
@@ -0,0 +1,21 @@
|
|
|
1
|
+
MIT License
|
|
2
|
+
|
|
3
|
+
Copyright (c) Microsoft Corporation.
|
|
4
|
+
|
|
5
|
+
Permission is hereby granted, free of charge, to any person obtaining a copy
|
|
6
|
+
of this software and associated documentation files (the "Software"), to deal
|
|
7
|
+
in the Software without restriction, including without limitation the rights
|
|
8
|
+
to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
|
|
9
|
+
copies of the Software, and to permit persons to whom the Software is
|
|
10
|
+
furnished to do so, subject to the following conditions:
|
|
11
|
+
|
|
12
|
+
The above copyright notice and this permission notice shall be included in all
|
|
13
|
+
copies or substantial portions of the Software.
|
|
14
|
+
|
|
15
|
+
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
|
|
16
|
+
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
|
|
17
|
+
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
|
|
18
|
+
AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
|
|
19
|
+
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
|
|
20
|
+
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
|
|
21
|
+
SOFTWARE
|
|
@@ -0,0 +1,82 @@
|
|
|
1
|
+
# Installation
|
|
2
|
+
> `npm install --save @types/ms`
|
|
3
|
+
|
|
4
|
+
# Summary
|
|
5
|
+
This package contains type definitions for ms (https://github.com/vercel/ms).
|
|
6
|
+
|
|
7
|
+
# Details
|
|
8
|
+
Files were exported from https://github.com/DefinitelyTyped/DefinitelyTyped/tree/master/types/ms.
|
|
9
|
+
## [index.d.ts](https://github.com/DefinitelyTyped/DefinitelyTyped/tree/master/types/ms/index.d.ts)
|
|
10
|
+
````ts
|
|
11
|
+
/**
|
|
12
|
+
* Short/Long format for `value`.
|
|
13
|
+
*
|
|
14
|
+
* @param {Number} value
|
|
15
|
+
* @param {{long: boolean}} options
|
|
16
|
+
* @return {String}
|
|
17
|
+
*/
|
|
18
|
+
declare function ms(value: number, options?: { long: boolean }): string;
|
|
19
|
+
|
|
20
|
+
/**
|
|
21
|
+
* Parse the given `value` and return milliseconds.
|
|
22
|
+
*
|
|
23
|
+
* @param {ms.StringValue} value
|
|
24
|
+
* @return {Number}
|
|
25
|
+
*/
|
|
26
|
+
declare function ms(value: ms.StringValue): number;
|
|
27
|
+
|
|
28
|
+
declare namespace ms {
|
|
29
|
+
// Unit, UnitAnyCase, and StringValue are backported from ms@3
|
|
30
|
+
// https://github.com/vercel/ms/blob/8b5923d1d86c84a9f6aba8022d416dcf2361aa8d/src/index.ts
|
|
31
|
+
|
|
32
|
+
type Unit =
|
|
33
|
+
| "Years"
|
|
34
|
+
| "Year"
|
|
35
|
+
| "Yrs"
|
|
36
|
+
| "Yr"
|
|
37
|
+
| "Y"
|
|
38
|
+
| "Weeks"
|
|
39
|
+
| "Week"
|
|
40
|
+
| "W"
|
|
41
|
+
| "Days"
|
|
42
|
+
| "Day"
|
|
43
|
+
| "D"
|
|
44
|
+
| "Hours"
|
|
45
|
+
| "Hour"
|
|
46
|
+
| "Hrs"
|
|
47
|
+
| "Hr"
|
|
48
|
+
| "H"
|
|
49
|
+
| "Minutes"
|
|
50
|
+
| "Minute"
|
|
51
|
+
| "Mins"
|
|
52
|
+
| "Min"
|
|
53
|
+
| "M"
|
|
54
|
+
| "Seconds"
|
|
55
|
+
| "Second"
|
|
56
|
+
| "Secs"
|
|
57
|
+
| "Sec"
|
|
58
|
+
| "s"
|
|
59
|
+
| "Milliseconds"
|
|
60
|
+
| "Millisecond"
|
|
61
|
+
| "Msecs"
|
|
62
|
+
| "Msec"
|
|
63
|
+
| "Ms";
|
|
64
|
+
|
|
65
|
+
type UnitAnyCase = Unit | Uppercase<Unit> | Lowercase<Unit>;
|
|
66
|
+
|
|
67
|
+
type StringValue =
|
|
68
|
+
| `${number}`
|
|
69
|
+
| `${number}${UnitAnyCase}`
|
|
70
|
+
| `${number} ${UnitAnyCase}`;
|
|
71
|
+
}
|
|
72
|
+
|
|
73
|
+
export = ms;
|
|
74
|
+
|
|
75
|
+
````
|
|
76
|
+
|
|
77
|
+
### Additional Details
|
|
78
|
+
* Last updated: Thu, 16 Jan 2025 21:02:45 GMT
|
|
79
|
+
* Dependencies: none
|
|
80
|
+
|
|
81
|
+
# Credits
|
|
82
|
+
These definitions were written by [Zhiyuan Wang](https://github.com/danny8002).
|
|
@@ -0,0 +1,63 @@
|
|
|
1
|
+
/**
|
|
2
|
+
* Short/Long format for `value`.
|
|
3
|
+
*
|
|
4
|
+
* @param {Number} value
|
|
5
|
+
* @param {{long: boolean}} options
|
|
6
|
+
* @return {String}
|
|
7
|
+
*/
|
|
8
|
+
declare function ms(value: number, options?: { long: boolean }): string;
|
|
9
|
+
|
|
10
|
+
/**
|
|
11
|
+
* Parse the given `value` and return milliseconds.
|
|
12
|
+
*
|
|
13
|
+
* @param {ms.StringValue} value
|
|
14
|
+
* @return {Number}
|
|
15
|
+
*/
|
|
16
|
+
declare function ms(value: ms.StringValue): number;
|
|
17
|
+
|
|
18
|
+
declare namespace ms {
|
|
19
|
+
// Unit, UnitAnyCase, and StringValue are backported from ms@3
|
|
20
|
+
// https://github.com/vercel/ms/blob/8b5923d1d86c84a9f6aba8022d416dcf2361aa8d/src/index.ts
|
|
21
|
+
|
|
22
|
+
type Unit =
|
|
23
|
+
| "Years"
|
|
24
|
+
| "Year"
|
|
25
|
+
| "Yrs"
|
|
26
|
+
| "Yr"
|
|
27
|
+
| "Y"
|
|
28
|
+
| "Weeks"
|
|
29
|
+
| "Week"
|
|
30
|
+
| "W"
|
|
31
|
+
| "Days"
|
|
32
|
+
| "Day"
|
|
33
|
+
| "D"
|
|
34
|
+
| "Hours"
|
|
35
|
+
| "Hour"
|
|
36
|
+
| "Hrs"
|
|
37
|
+
| "Hr"
|
|
38
|
+
| "H"
|
|
39
|
+
| "Minutes"
|
|
40
|
+
| "Minute"
|
|
41
|
+
| "Mins"
|
|
42
|
+
| "Min"
|
|
43
|
+
| "M"
|
|
44
|
+
| "Seconds"
|
|
45
|
+
| "Second"
|
|
46
|
+
| "Secs"
|
|
47
|
+
| "Sec"
|
|
48
|
+
| "s"
|
|
49
|
+
| "Milliseconds"
|
|
50
|
+
| "Millisecond"
|
|
51
|
+
| "Msecs"
|
|
52
|
+
| "Msec"
|
|
53
|
+
| "Ms";
|
|
54
|
+
|
|
55
|
+
type UnitAnyCase = Unit | Uppercase<Unit> | Lowercase<Unit>;
|
|
56
|
+
|
|
57
|
+
type StringValue =
|
|
58
|
+
| `${number}`
|
|
59
|
+
| `${number}${UnitAnyCase}`
|
|
60
|
+
| `${number} ${UnitAnyCase}`;
|
|
61
|
+
}
|
|
62
|
+
|
|
63
|
+
export = ms;
|
|
@@ -0,0 +1,26 @@
|
|
|
1
|
+
{
|
|
2
|
+
"name": "@types/ms",
|
|
3
|
+
"version": "2.1.0",
|
|
4
|
+
"description": "TypeScript definitions for ms",
|
|
5
|
+
"homepage": "https://github.com/DefinitelyTyped/DefinitelyTyped/tree/master/types/ms",
|
|
6
|
+
"license": "MIT",
|
|
7
|
+
"contributors": [
|
|
8
|
+
{
|
|
9
|
+
"name": "Zhiyuan Wang",
|
|
10
|
+
"githubUsername": "danny8002",
|
|
11
|
+
"url": "https://github.com/danny8002"
|
|
12
|
+
}
|
|
13
|
+
],
|
|
14
|
+
"main": "",
|
|
15
|
+
"types": "index.d.ts",
|
|
16
|
+
"repository": {
|
|
17
|
+
"type": "git",
|
|
18
|
+
"url": "https://github.com/DefinitelyTyped/DefinitelyTyped.git",
|
|
19
|
+
"directory": "types/ms"
|
|
20
|
+
},
|
|
21
|
+
"scripts": {},
|
|
22
|
+
"dependencies": {},
|
|
23
|
+
"peerDependencies": {},
|
|
24
|
+
"typesPublisherContentHash": "2c8651ce1714fdc6bcbc0f262c93a790f1d127fb1c2dc8edbb583decef56fd39",
|
|
25
|
+
"typeScriptVersion": "5.0"
|
|
26
|
+
}
|
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.734.0",
|
|
41
|
+
"@aws-sdk/client-codepipeline": "^3.734.0",
|
|
42
|
+
"@aws-sdk/client-s3": "^3.735.0",
|
|
43
|
+
"@aws-sdk/client-secrets-manager": "^3.734.0",
|
|
44
|
+
"@aws-sdk/client-ssm": "^3.735.0",
|
|
45
45
|
"@stylistic/eslint-plugin": "^2",
|
|
46
46
|
"@types/adm-zip": "^0.5.7",
|
|
47
47
|
"@types/aws-lambda": "^8.10.147",
|
|
@@ -97,7 +97,7 @@
|
|
|
97
97
|
"publishConfig": {
|
|
98
98
|
"access": "public"
|
|
99
99
|
},
|
|
100
|
-
"version": "14.15.
|
|
100
|
+
"version": "14.15.4",
|
|
101
101
|
"jest": {
|
|
102
102
|
"coverageProvider": "v8",
|
|
103
103
|
"testMatch": [
|