aws-delivlib 15.0.1 → 15.0.3
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 +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 +18 -2
- 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/stream.d.ts +6 -0
- package/package.json +4 -4
@@ -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
@@ -225,12 +225,12 @@ declare module "module" {
|
|
225
225
|
* See [load hook](https://nodejs.org/docs/latest-v22.x/api/module.html#loadurl-context-nextload).
|
226
226
|
* @default undefined
|
227
227
|
*/
|
228
|
-
load?:
|
228
|
+
load?: LoadHookSync | undefined;
|
229
229
|
/**
|
230
230
|
* See [resolve hook](https://nodejs.org/docs/latest-v22.x/api/module.html#resolvespecifier-context-nextresolve).
|
231
231
|
* @default undefined
|
232
232
|
*/
|
233
|
-
resolve?:
|
233
|
+
resolve?: ResolveHookSync | undefined;
|
234
234
|
}
|
235
235
|
interface ModuleHooks {
|
236
236
|
/**
|
@@ -429,6 +429,14 @@ declare module "module" {
|
|
429
429
|
context?: Partial<ResolveHookContext>,
|
430
430
|
) => ResolveFnOutput | Promise<ResolveFnOutput>,
|
431
431
|
) => ResolveFnOutput | Promise<ResolveFnOutput>;
|
432
|
+
type ResolveHookSync = (
|
433
|
+
specifier: string,
|
434
|
+
context: ResolveHookContext,
|
435
|
+
nextResolve: (
|
436
|
+
specifier: string,
|
437
|
+
context?: Partial<ResolveHookContext>,
|
438
|
+
) => ResolveFnOutput,
|
439
|
+
) => ResolveFnOutput;
|
432
440
|
interface LoadHookContext {
|
433
441
|
/**
|
434
442
|
* Export conditions of the relevant `package.json`
|
@@ -468,6 +476,14 @@ declare module "module" {
|
|
468
476
|
context?: Partial<LoadHookContext>,
|
469
477
|
) => LoadFnOutput | Promise<LoadFnOutput>,
|
470
478
|
) => LoadFnOutput | Promise<LoadFnOutput>;
|
479
|
+
type LoadHookSync = (
|
480
|
+
url: string,
|
481
|
+
context: LoadHookContext,
|
482
|
+
nextLoad: (
|
483
|
+
url: string,
|
484
|
+
context?: Partial<LoadHookContext>,
|
485
|
+
) => LoadFnOutput,
|
486
|
+
) => LoadFnOutput;
|
471
487
|
/**
|
472
488
|
* `path` is the resolved path for the file for which a corresponding source map
|
473
489
|
* should be fetched.
|
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.24",
|
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": "6f7f89960f322a2c8f03b6e218fbe161037b484003d22ccf2cec6c358735b527",
|
224
224
|
"typeScriptVersion": "5.1"
|
225
225
|
}
|
package/lib/publishing/github/node_modules/@types/jsonwebtoken/node_modules/@types/node/stream.d.ts
CHANGED
@@ -737,6 +737,12 @@ declare module "stream" {
|
|
737
737
|
* @since v11.4.0
|
738
738
|
*/
|
739
739
|
readonly writable: boolean;
|
740
|
+
/**
|
741
|
+
* Returns whether the stream was destroyed or errored before emitting `'finish'`.
|
742
|
+
* @since v18.0.0, v16.17.0
|
743
|
+
* @experimental
|
744
|
+
*/
|
745
|
+
readonly writableAborted: boolean;
|
740
746
|
/**
|
741
747
|
* Is `true` after `writable.end()` has been called. This property
|
742
748
|
* does not indicate whether the data has been flushed, for this use `writable.writableFinished` instead.
|
package/package.json
CHANGED
@@ -53,11 +53,11 @@
|
|
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",
|
60
|
-
"esbuild": "^0.25.
|
60
|
+
"esbuild": "^0.25.5",
|
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.92.
|
71
|
+
"projen": "^0.92.8",
|
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": "15.0.
|
100
|
+
"version": "15.0.3",
|
101
101
|
"jest": {
|
102
102
|
"coverageProvider": "v8",
|
103
103
|
"testMatch": [
|