cdk-ecr-deployment 3.0.99 → 3.0.101
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/.jsii +28 -2
- package/lib/index.js +3 -3
- package/node_modules/@types/cacheable-request/node_modules/@types/node/README.md +1 -1
- package/node_modules/@types/cacheable-request/node_modules/@types/node/http.d.ts +5 -5
- package/node_modules/@types/cacheable-request/node_modules/@types/node/http2.d.ts +77 -254
- package/node_modules/@types/cacheable-request/node_modules/@types/node/https.d.ts +14 -18
- package/node_modules/@types/cacheable-request/node_modules/@types/node/package.json +2 -2
- package/node_modules/@types/keyv/node_modules/@types/node/README.md +1 -1
- package/node_modules/@types/keyv/node_modules/@types/node/http.d.ts +5 -5
- package/node_modules/@types/keyv/node_modules/@types/node/http2.d.ts +77 -254
- package/node_modules/@types/keyv/node_modules/@types/node/https.d.ts +14 -18
- package/node_modules/@types/keyv/node_modules/@types/node/package.json +2 -2
- package/node_modules/@types/responselike/node_modules/@types/node/README.md +1 -1
- package/node_modules/@types/responselike/node_modules/@types/node/http.d.ts +5 -5
- package/node_modules/@types/responselike/node_modules/@types/node/http2.d.ts +77 -254
- package/node_modules/@types/responselike/node_modules/@types/node/https.d.ts +14 -18
- package/node_modules/@types/responselike/node_modules/@types/node/package.json +2 -2
- package/node_modules/pump/.github/FUNDING.yml +2 -0
- package/node_modules/pump/README.md +9 -0
- package/node_modules/pump/SECURITY.md +5 -0
- package/node_modules/pump/index.js +5 -1
- package/node_modules/pump/package.json +1 -1
- package/package.json +3 -3
|
@@ -10,9 +10,7 @@ declare module "https" {
|
|
|
10
10
|
import { URL } from "node:url";
|
|
11
11
|
type ServerOptions<
|
|
12
12
|
Request extends typeof http.IncomingMessage = typeof http.IncomingMessage,
|
|
13
|
-
Response extends typeof http.ServerResponse
|
|
14
|
-
InstanceType<Request>
|
|
15
|
-
>,
|
|
13
|
+
Response extends typeof http.ServerResponse = typeof http.ServerResponse,
|
|
16
14
|
> = tls.SecureContextOptions & tls.TlsOptions & http.ServerOptions<Request, Response>;
|
|
17
15
|
type RequestOptions =
|
|
18
16
|
& http.RequestOptions
|
|
@@ -36,9 +34,7 @@ declare module "https" {
|
|
|
36
34
|
}
|
|
37
35
|
interface Server<
|
|
38
36
|
Request extends typeof http.IncomingMessage = typeof http.IncomingMessage,
|
|
39
|
-
Response extends typeof http.ServerResponse
|
|
40
|
-
InstanceType<Request>
|
|
41
|
-
>,
|
|
37
|
+
Response extends typeof http.ServerResponse = typeof http.ServerResponse,
|
|
42
38
|
> extends http.Server<Request, Response> {}
|
|
43
39
|
/**
|
|
44
40
|
* See `http.Server` for more information.
|
|
@@ -46,9 +42,7 @@ declare module "https" {
|
|
|
46
42
|
*/
|
|
47
43
|
class Server<
|
|
48
44
|
Request extends typeof http.IncomingMessage = typeof http.IncomingMessage,
|
|
49
|
-
Response extends typeof http.ServerResponse
|
|
50
|
-
InstanceType<Request>
|
|
51
|
-
>,
|
|
45
|
+
Response extends typeof http.ServerResponse = typeof http.ServerResponse,
|
|
52
46
|
> extends tls.Server {
|
|
53
47
|
constructor(requestListener?: http.RequestListener<Request, Response>);
|
|
54
48
|
constructor(
|
|
@@ -125,19 +119,25 @@ declare module "https" {
|
|
|
125
119
|
emit(
|
|
126
120
|
event: "checkContinue",
|
|
127
121
|
req: InstanceType<Request>,
|
|
128
|
-
res: InstanceType<Response
|
|
122
|
+
res: InstanceType<Response> & {
|
|
123
|
+
req: InstanceType<Request>;
|
|
124
|
+
},
|
|
129
125
|
): boolean;
|
|
130
126
|
emit(
|
|
131
127
|
event: "checkExpectation",
|
|
132
128
|
req: InstanceType<Request>,
|
|
133
|
-
res: InstanceType<Response
|
|
129
|
+
res: InstanceType<Response> & {
|
|
130
|
+
req: InstanceType<Request>;
|
|
131
|
+
},
|
|
134
132
|
): boolean;
|
|
135
133
|
emit(event: "clientError", err: Error, socket: Duplex): boolean;
|
|
136
134
|
emit(event: "connect", req: InstanceType<Request>, socket: Duplex, head: Buffer): boolean;
|
|
137
135
|
emit(
|
|
138
136
|
event: "request",
|
|
139
137
|
req: InstanceType<Request>,
|
|
140
|
-
res: InstanceType<Response
|
|
138
|
+
res: InstanceType<Response> & {
|
|
139
|
+
req: InstanceType<Request>;
|
|
140
|
+
},
|
|
141
141
|
): boolean;
|
|
142
142
|
emit(event: "upgrade", req: InstanceType<Request>, socket: Duplex, head: Buffer): boolean;
|
|
143
143
|
on(event: string, listener: (...args: any[]) => void): this;
|
|
@@ -312,15 +312,11 @@ declare module "https" {
|
|
|
312
312
|
*/
|
|
313
313
|
function createServer<
|
|
314
314
|
Request extends typeof http.IncomingMessage = typeof http.IncomingMessage,
|
|
315
|
-
Response extends typeof http.ServerResponse
|
|
316
|
-
InstanceType<Request>
|
|
317
|
-
>,
|
|
315
|
+
Response extends typeof http.ServerResponse = typeof http.ServerResponse,
|
|
318
316
|
>(requestListener?: http.RequestListener<Request, Response>): Server<Request, Response>;
|
|
319
317
|
function createServer<
|
|
320
318
|
Request extends typeof http.IncomingMessage = typeof http.IncomingMessage,
|
|
321
|
-
Response extends typeof http.ServerResponse
|
|
322
|
-
InstanceType<Request>
|
|
323
|
-
>,
|
|
319
|
+
Response extends typeof http.ServerResponse = typeof http.ServerResponse,
|
|
324
320
|
>(
|
|
325
321
|
options: ServerOptions<Request, Response>,
|
|
326
322
|
requestListener?: http.RequestListener<Request, Response>,
|
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@types/node",
|
|
3
|
-
"version": "22.5.
|
|
3
|
+
"version": "22.5.4",
|
|
4
4
|
"description": "TypeScript definitions for node",
|
|
5
5
|
"homepage": "https://github.com/DefinitelyTyped/DefinitelyTyped/tree/master/types/node",
|
|
6
6
|
"license": "MIT",
|
|
@@ -212,6 +212,6 @@
|
|
|
212
212
|
"dependencies": {
|
|
213
213
|
"undici-types": "~6.19.2"
|
|
214
214
|
},
|
|
215
|
-
"typesPublisherContentHash": "
|
|
215
|
+
"typesPublisherContentHash": "6ee9a11eba834031423800320320aa873d6bf2b6f33603c13a2aa9d90b3803ee",
|
|
216
216
|
"typeScriptVersion": "4.8"
|
|
217
217
|
}
|
|
@@ -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: Wed, 04 Sep 2024
|
|
11
|
+
* Last updated: Wed, 04 Sep 2024 21:35:57 GMT
|
|
12
12
|
* Dependencies: [undici-types](https://npmjs.com/package/undici-types)
|
|
13
13
|
|
|
14
14
|
# Credits
|
|
@@ -231,7 +231,7 @@ declare module "http" {
|
|
|
231
231
|
}
|
|
232
232
|
interface ServerOptions<
|
|
233
233
|
Request extends typeof IncomingMessage = typeof IncomingMessage,
|
|
234
|
-
Response extends typeof ServerResponse
|
|
234
|
+
Response extends typeof ServerResponse = typeof ServerResponse,
|
|
235
235
|
> {
|
|
236
236
|
/**
|
|
237
237
|
* Specifies the `IncomingMessage` class to be used. Useful for extending the original `IncomingMessage`.
|
|
@@ -315,14 +315,14 @@ declare module "http" {
|
|
|
315
315
|
}
|
|
316
316
|
type RequestListener<
|
|
317
317
|
Request extends typeof IncomingMessage = typeof IncomingMessage,
|
|
318
|
-
Response extends typeof ServerResponse
|
|
318
|
+
Response extends typeof ServerResponse = typeof ServerResponse,
|
|
319
319
|
> = (req: InstanceType<Request>, res: InstanceType<Response> & { req: InstanceType<Request> }) => void;
|
|
320
320
|
/**
|
|
321
321
|
* @since v0.1.17
|
|
322
322
|
*/
|
|
323
323
|
class Server<
|
|
324
324
|
Request extends typeof IncomingMessage = typeof IncomingMessage,
|
|
325
|
-
Response extends typeof ServerResponse
|
|
325
|
+
Response extends typeof ServerResponse = typeof ServerResponse,
|
|
326
326
|
> extends NetServer {
|
|
327
327
|
constructor(requestListener?: RequestListener<Request, Response>);
|
|
328
328
|
constructor(options: ServerOptions<Request, Response>, requestListener?: RequestListener<Request, Response>);
|
|
@@ -1553,11 +1553,11 @@ declare module "http" {
|
|
|
1553
1553
|
*/
|
|
1554
1554
|
function createServer<
|
|
1555
1555
|
Request extends typeof IncomingMessage = typeof IncomingMessage,
|
|
1556
|
-
Response extends typeof ServerResponse
|
|
1556
|
+
Response extends typeof ServerResponse = typeof ServerResponse,
|
|
1557
1557
|
>(requestListener?: RequestListener<Request, Response>): Server<Request, Response>;
|
|
1558
1558
|
function createServer<
|
|
1559
1559
|
Request extends typeof IncomingMessage = typeof IncomingMessage,
|
|
1560
|
-
Response extends typeof ServerResponse
|
|
1560
|
+
Response extends typeof ServerResponse = typeof ServerResponse,
|
|
1561
1561
|
>(
|
|
1562
1562
|
options: ServerOptions<Request, Response>,
|
|
1563
1563
|
requestListener?: RequestListener<Request, Response>,
|