aws-delivlib 15.0.2 → 15.0.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 +4385 -3088
- 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/dom-events.d.ts +60 -85
- package/lib/publishing/github/node_modules/@types/jsonwebtoken/node_modules/@types/node/module.d.ts +1 -1
- 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/perf_hooks.d.ts +2 -2
- package/lib/publishing/github/node_modules/@types/jsonwebtoken/node_modules/@types/node/worker_threads.d.ts +1 -1
- package/package.json +3 -3
@@ -52,7 +52,7 @@
|
|
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.9.tgz#a4c3a446c0ebaaf467a58398382616f416345fb3",
|
54
54
|
"@types/ms@*": "https://registry.yarnpkg.com/@types/ms/-/ms-2.1.0.tgz#052aa67a48eccc4309d7f0191b7e41434b90bb78",
|
55
|
-
"@types/node@*": "https://registry.yarnpkg.com/@types/node/-/node-22.15.
|
55
|
+
"@types/node@*": "https://registry.yarnpkg.com/@types/node/-/node-22.15.26.tgz#01ea4427edeaf205cd18ebdb93db2708d5301f05",
|
56
56
|
"@types/node@^14": "https://registry.yarnpkg.com/@types/node/-/node-14.18.63.tgz#1788fa8da838dbb5f9ea994b834278205db6ca2b",
|
57
57
|
"aggregate-error@^3.1.0": "https://registry.yarnpkg.com/aggregate-error/-/aggregate-error-3.1.0.tgz#92670ff50f5359bdb7a3e0d40d0ec30c5737687a",
|
58
58
|
"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:
|
11
|
+
* Last updated: Thu, 29 May 2025 23:02:21 GMT
|
12
12
|
* Dependencies: [undici-types](https://npmjs.com/package/undici-types)
|
13
13
|
|
14
14
|
# Credits
|
@@ -1,77 +1,50 @@
|
|
1
|
-
|
1
|
+
// Make this a module
|
2
|
+
export {};
|
2
3
|
|
3
|
-
|
4
|
-
//
|
5
|
-
// from lib.dom.d.ts, then edited to reflect Node's documentation at
|
6
|
-
// https://nodejs.org/api/events.html#class-eventtarget.
|
7
|
-
// Please read that link to understand important implementation differences.
|
4
|
+
// Conditional type aliases, which are later merged into the global scope.
|
5
|
+
// Will either be empty if the relevant web library is already present, or the @types/node definition otherwise.
|
8
6
|
|
9
|
-
|
10
|
-
|
11
|
-
|
12
|
-
:
|
13
|
-
|
14
|
-
|
15
|
-
|
16
|
-
|
17
|
-
|
18
|
-
|
19
|
-
|
20
|
-
|
21
|
-
|
22
|
-
|
23
|
-
|
24
|
-
|
25
|
-
|
26
|
-
|
27
|
-
|
28
|
-
|
29
|
-
|
30
|
-
readonly isTrusted: boolean;
|
31
|
-
/** Sets the `defaultPrevented` property to `true` if `cancelable` is `true`. */
|
32
|
-
preventDefault(): void;
|
33
|
-
/** This is not used in Node.js and is provided purely for completeness. */
|
34
|
-
returnValue: boolean;
|
35
|
-
/** Alias for event.target. */
|
36
|
-
readonly srcElement: EventTarget | null;
|
37
|
-
/** Stops the invocation of event listeners after the current one completes. */
|
38
|
-
stopImmediatePropagation(): void;
|
39
|
-
/** This is not used in Node.js and is provided purely for completeness. */
|
40
|
-
stopPropagation(): void;
|
41
|
-
/** The `EventTarget` dispatching the event */
|
42
|
-
readonly target: EventTarget | null;
|
43
|
-
/** The millisecond timestamp when the Event object was created. */
|
44
|
-
readonly timeStamp: number;
|
45
|
-
/** Returns the type of event, e.g. "click", "hashchange", or "submit". */
|
46
|
-
readonly type: string;
|
47
|
-
};
|
7
|
+
type __Event = typeof globalThis extends { onmessage: any } ? {} : Event;
|
8
|
+
interface Event {
|
9
|
+
readonly bubbles: boolean;
|
10
|
+
cancelBubble: boolean;
|
11
|
+
readonly cancelable: boolean;
|
12
|
+
readonly composed: boolean;
|
13
|
+
composedPath(): [EventTarget?];
|
14
|
+
readonly currentTarget: EventTarget | null;
|
15
|
+
readonly defaultPrevented: boolean;
|
16
|
+
readonly eventPhase: 0 | 2;
|
17
|
+
initEvent(type: string, bubbles?: boolean, cancelable?: boolean): void;
|
18
|
+
readonly isTrusted: boolean;
|
19
|
+
preventDefault(): void;
|
20
|
+
readonly returnValue: boolean;
|
21
|
+
readonly srcElement: EventTarget | null;
|
22
|
+
stopImmediatePropagation(): void;
|
23
|
+
stopPropagation(): void;
|
24
|
+
readonly target: EventTarget | null;
|
25
|
+
readonly timeStamp: number;
|
26
|
+
readonly type: string;
|
27
|
+
}
|
48
28
|
|
49
|
-
|
50
|
-
|
51
|
-
:
|
52
|
-
|
53
|
-
|
54
|
-
|
55
|
-
|
56
|
-
|
57
|
-
|
58
|
-
|
59
|
-
|
60
|
-
|
61
|
-
|
62
|
-
|
63
|
-
|
64
|
-
|
65
|
-
|
66
|
-
|
67
|
-
|
68
|
-
/** Removes the event listener in target's event listener list with the same type, callback, and options. */
|
69
|
-
removeEventListener(
|
70
|
-
type: string,
|
71
|
-
listener: EventListener | EventListenerObject,
|
72
|
-
options?: EventListenerOptions | boolean,
|
73
|
-
): void;
|
74
|
-
};
|
29
|
+
type __CustomEvent<T = any> = typeof globalThis extends { onmessage: any } ? {} : CustomEvent<T>;
|
30
|
+
interface CustomEvent<T = any> extends Event {
|
31
|
+
readonly detail: T;
|
32
|
+
}
|
33
|
+
|
34
|
+
type __EventTarget = typeof globalThis extends { onmessage: any } ? {} : EventTarget;
|
35
|
+
interface EventTarget {
|
36
|
+
addEventListener(
|
37
|
+
type: string,
|
38
|
+
listener: EventListener | EventListenerObject,
|
39
|
+
options?: AddEventListenerOptions | boolean,
|
40
|
+
): void;
|
41
|
+
dispatchEvent(event: Event): boolean;
|
42
|
+
removeEventListener(
|
43
|
+
type: string,
|
44
|
+
listener: EventListener | EventListenerObject,
|
45
|
+
options?: EventListenerOptions | boolean,
|
46
|
+
): void;
|
47
|
+
}
|
75
48
|
|
76
49
|
interface EventInit {
|
77
50
|
bubbles?: boolean;
|
@@ -79,17 +52,17 @@ interface EventInit {
|
|
79
52
|
composed?: boolean;
|
80
53
|
}
|
81
54
|
|
55
|
+
interface CustomEventInit<T = any> extends EventInit {
|
56
|
+
detail?: T;
|
57
|
+
}
|
58
|
+
|
82
59
|
interface EventListenerOptions {
|
83
|
-
/** Not directly used by Node.js. Added for API completeness. Default: `false`. */
|
84
60
|
capture?: boolean;
|
85
61
|
}
|
86
62
|
|
87
63
|
interface AddEventListenerOptions extends EventListenerOptions {
|
88
|
-
/** When `true`, the listener is automatically removed when it is first invoked. Default: `false`. */
|
89
64
|
once?: boolean;
|
90
|
-
/** When `true`, serves as a hint that the listener will not call the `Event` object's `preventDefault()` method. Default: false. */
|
91
65
|
passive?: boolean;
|
92
|
-
/** The listener will be removed when the given AbortSignal object's `abort()` method is called. */
|
93
66
|
signal?: AbortSignal;
|
94
67
|
}
|
95
68
|
|
@@ -101,24 +74,26 @@ interface EventListenerObject {
|
|
101
74
|
handleEvent(object: Event): void;
|
102
75
|
}
|
103
76
|
|
104
|
-
|
77
|
+
// Merge conditional interfaces into global scope, and conditionally declare global constructors.
|
105
78
|
declare global {
|
106
|
-
/** An event which takes place in the DOM. */
|
107
79
|
interface Event extends __Event {}
|
108
80
|
var Event: typeof globalThis extends { onmessage: any; Event: infer T } ? T
|
109
81
|
: {
|
110
|
-
prototype:
|
111
|
-
new(type: string, eventInitDict?: EventInit):
|
82
|
+
prototype: Event;
|
83
|
+
new(type: string, eventInitDict?: EventInit): Event;
|
84
|
+
};
|
85
|
+
|
86
|
+
interface CustomEvent<T = any> extends __CustomEvent<T> {}
|
87
|
+
var CustomEvent: typeof globalThis extends { onmessage: any; CustomEvent: infer T } ? T
|
88
|
+
: {
|
89
|
+
prototype: CustomEvent;
|
90
|
+
new<T>(type: string, eventInitDict?: CustomEventInit<T>): CustomEvent<T>;
|
112
91
|
};
|
113
92
|
|
114
|
-
/**
|
115
|
-
* EventTarget is a DOM interface implemented by objects that can
|
116
|
-
* receive events and may have listeners for them.
|
117
|
-
*/
|
118
93
|
interface EventTarget extends __EventTarget {}
|
119
94
|
var EventTarget: typeof globalThis extends { onmessage: any; EventTarget: infer T } ? T
|
120
95
|
: {
|
121
|
-
prototype:
|
122
|
-
new():
|
96
|
+
prototype: EventTarget;
|
97
|
+
new(): EventTarget;
|
123
98
|
};
|
124
99
|
}
|
package/lib/publishing/github/node_modules/@types/jsonwebtoken/node_modules/@types/node/module.d.ts
CHANGED
@@ -452,7 +452,7 @@ declare module "module" {
|
|
452
452
|
importAttributes: ImportAttributes;
|
453
453
|
}
|
454
454
|
interface LoadFnOutput {
|
455
|
-
format:
|
455
|
+
format: string | null | undefined;
|
456
456
|
/**
|
457
457
|
* A signal that this hook intends to terminate the chain of `resolve` hooks.
|
458
458
|
* @default false
|
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.15.
|
3
|
+
"version": "22.15.26",
|
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.21.0"
|
221
221
|
},
|
222
222
|
"peerDependencies": {},
|
223
|
-
"typesPublisherContentHash": "
|
223
|
+
"typesPublisherContentHash": "396d40f2ce0ddd8afa08e7ce4e4629ae9b67d6c511d0f44b0d0e511763140857",
|
224
224
|
"typeScriptVersion": "5.1"
|
225
225
|
}
|
@@ -866,12 +866,12 @@ declare module "perf_hooks" {
|
|
866
866
|
* The minimum recordable value. Must be an integer value greater than 0.
|
867
867
|
* @default 1
|
868
868
|
*/
|
869
|
-
|
869
|
+
lowest?: number | bigint | undefined;
|
870
870
|
/**
|
871
871
|
* The maximum recordable value. Must be an integer value greater than min.
|
872
872
|
* @default Number.MAX_SAFE_INTEGER
|
873
873
|
*/
|
874
|
-
|
874
|
+
highest?: number | bigint | undefined;
|
875
875
|
/**
|
876
876
|
* The number of accuracy digits. Must be a number between 1 and 5.
|
877
877
|
* @default 3
|
@@ -701,7 +701,7 @@ declare module "worker_threads" {
|
|
701
701
|
* @param value Any arbitrary, cloneable JavaScript value that will be cloned and passed automatically to all new `Worker` instances. If `value` is passed as `undefined`, any previously set value
|
702
702
|
* for the `key` will be deleted.
|
703
703
|
*/
|
704
|
-
function setEnvironmentData(key: Serializable, value
|
704
|
+
function setEnvironmentData(key: Serializable, value?: Serializable): void;
|
705
705
|
|
706
706
|
import {
|
707
707
|
BroadcastChannel as _BroadcastChannel,
|
package/package.json
CHANGED
@@ -39,7 +39,7 @@
|
|
39
39
|
"devDependencies": {
|
40
40
|
"@aws-sdk/client-cloudwatch": "^3.817.0",
|
41
41
|
"@aws-sdk/client-codepipeline": "^3.817.0",
|
42
|
-
"@aws-sdk/client-s3": "^3.
|
42
|
+
"@aws-sdk/client-s3": "^3.820.0",
|
43
43
|
"@aws-sdk/client-secrets-manager": "^3.817.0",
|
44
44
|
"@aws-sdk/client-ssm": "^3.817.0",
|
45
45
|
"@stylistic/eslint-plugin": "^2",
|
@@ -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.
|
56
|
+
"aws-cdk": "2.1017.0",
|
57
57
|
"aws-cdk-lib": "2.187.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": "15.0.
|
100
|
+
"version": "15.0.4",
|
101
101
|
"jest": {
|
102
102
|
"coverageProvider": "v8",
|
103
103
|
"testMatch": [
|