cdk-ecr-deployment 3.0.77 → 3.0.79
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 +2 -2
- package/.jsii.tabl.json +1 -1
- 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/dns.d.ts +2 -1
- package/node_modules/@types/cacheable-request/node_modules/@types/node/fs/promises.d.ts +1 -12
- package/node_modules/@types/cacheable-request/node_modules/@types/node/fs.d.ts +4 -32
- package/node_modules/@types/cacheable-request/node_modules/@types/node/globals.d.ts +5 -0
- package/node_modules/@types/cacheable-request/node_modules/@types/node/package.json +3 -3
- package/node_modules/@types/cacheable-request/node_modules/@types/node/test.d.ts +102 -89
- package/node_modules/@types/cacheable-request/node_modules/@types/node/url.d.ts +18 -1
- package/node_modules/@types/cacheable-request/node_modules/undici-types/dispatcher.d.ts +1 -1
- package/node_modules/@types/cacheable-request/node_modules/undici-types/fetch.d.ts +1 -1
- package/node_modules/@types/cacheable-request/node_modules/undici-types/package.json +1 -1
- package/node_modules/@types/keyv/node_modules/@types/node/README.md +1 -1
- package/node_modules/@types/keyv/node_modules/@types/node/dns.d.ts +2 -1
- package/node_modules/@types/keyv/node_modules/@types/node/fs/promises.d.ts +1 -12
- package/node_modules/@types/keyv/node_modules/@types/node/fs.d.ts +4 -32
- package/node_modules/@types/keyv/node_modules/@types/node/globals.d.ts +5 -0
- package/node_modules/@types/keyv/node_modules/@types/node/package.json +3 -3
- package/node_modules/@types/keyv/node_modules/@types/node/test.d.ts +102 -89
- package/node_modules/@types/keyv/node_modules/@types/node/url.d.ts +18 -1
- package/node_modules/@types/keyv/node_modules/undici-types/dispatcher.d.ts +1 -1
- package/node_modules/@types/keyv/node_modules/undici-types/fetch.d.ts +1 -1
- package/node_modules/@types/keyv/node_modules/undici-types/package.json +1 -1
- package/node_modules/@types/responselike/node_modules/@types/node/README.md +1 -1
- package/node_modules/@types/responselike/node_modules/@types/node/dns.d.ts +2 -1
- package/node_modules/@types/responselike/node_modules/@types/node/fs/promises.d.ts +1 -12
- package/node_modules/@types/responselike/node_modules/@types/node/fs.d.ts +4 -32
- package/node_modules/@types/responselike/node_modules/@types/node/globals.d.ts +5 -0
- package/node_modules/@types/responselike/node_modules/@types/node/package.json +3 -3
- package/node_modules/@types/responselike/node_modules/@types/node/test.d.ts +102 -89
- package/node_modules/@types/responselike/node_modules/@types/node/url.d.ts +18 -1
- package/node_modules/@types/responselike/node_modules/undici-types/dispatcher.d.ts +1 -1
- package/node_modules/@types/responselike/node_modules/undici-types/fetch.d.ts +1 -1
- package/node_modules/@types/responselike/node_modules/undici-types/package.json +1 -1
- package/package.json +3 -3
|
@@ -21,8 +21,6 @@ declare module "fs/promises" {
|
|
|
21
21
|
Dir,
|
|
22
22
|
Dirent,
|
|
23
23
|
GlobOptions,
|
|
24
|
-
GlobOptionsWithFileTypes,
|
|
25
|
-
GlobOptionsWithoutFileTypes,
|
|
26
24
|
MakeDirectoryOptions,
|
|
27
25
|
Mode,
|
|
28
26
|
ObjectEncodingOptions,
|
|
@@ -1245,16 +1243,7 @@ declare module "fs/promises" {
|
|
|
1245
1243
|
/**
|
|
1246
1244
|
* Retrieves the files matching the specified pattern.
|
|
1247
1245
|
*/
|
|
1248
|
-
function glob(pattern: string | string[]): AsyncIterableIterator<string>;
|
|
1249
|
-
/**
|
|
1250
|
-
* Retrieves the files matching the specified pattern.
|
|
1251
|
-
*/
|
|
1252
|
-
function glob<Options extends GlobOptions>(
|
|
1253
|
-
pattern: string | string[],
|
|
1254
|
-
opt: Options,
|
|
1255
|
-
): Options extends GlobOptionsWithFileTypes ? AsyncIterableIterator<Dirent>
|
|
1256
|
-
: Options extends GlobOptionsWithoutFileTypes ? AsyncIterableIterator<string>
|
|
1257
|
-
: AsyncIterableIterator<Dirent> | AsyncIterableIterator<string>;
|
|
1246
|
+
function glob(pattern: string | string[], options?: GlobOptions): AsyncIterableIterator<string>;
|
|
1258
1247
|
}
|
|
1259
1248
|
declare module "node:fs/promises" {
|
|
1260
1249
|
export * from "fs/promises";
|
|
@@ -4324,17 +4324,6 @@ declare module "fs" {
|
|
|
4324
4324
|
* Function to filter out files/directories. Return true to exclude the item, false to include it.
|
|
4325
4325
|
*/
|
|
4326
4326
|
exclude?: ((fileName: string) => boolean) | undefined;
|
|
4327
|
-
/**
|
|
4328
|
-
* `true` if the glob should return paths as `Dirent`s, `false` otherwise.
|
|
4329
|
-
* @default false
|
|
4330
|
-
*/
|
|
4331
|
-
withFileTypes?: boolean | undefined;
|
|
4332
|
-
}
|
|
4333
|
-
export interface GlobOptionsWithFileTypes extends GlobOptions {
|
|
4334
|
-
withFileTypes: true;
|
|
4335
|
-
}
|
|
4336
|
-
export interface GlobOptionsWithoutFileTypes extends GlobOptions {
|
|
4337
|
-
withFileTypes?: false | undefined;
|
|
4338
4327
|
}
|
|
4339
4328
|
/**
|
|
4340
4329
|
* Retrieves the files matching the specified pattern.
|
|
@@ -4343,32 +4332,15 @@ declare module "fs" {
|
|
|
4343
4332
|
pattern: string | string[],
|
|
4344
4333
|
callback: (err: NodeJS.ErrnoException | null, matches: string[]) => void,
|
|
4345
4334
|
): void;
|
|
4346
|
-
|
|
4347
|
-
* Retrieves the files matching the specified pattern.
|
|
4348
|
-
*/
|
|
4349
|
-
export function glob<Options extends GlobOptions>(
|
|
4335
|
+
export function glob(
|
|
4350
4336
|
pattern: string | string[],
|
|
4351
|
-
options:
|
|
4352
|
-
callback: (
|
|
4353
|
-
err: NodeJS.ErrnoException | null,
|
|
4354
|
-
matches: Options extends GlobOptionsWithFileTypes ? Dirent[]
|
|
4355
|
-
: Options extends GlobOptionsWithoutFileTypes ? string[]
|
|
4356
|
-
: Dirent[] | string[],
|
|
4357
|
-
) => void,
|
|
4337
|
+
options: GlobOptions,
|
|
4338
|
+
callback: (err: NodeJS.ErrnoException | null, matches: string[]) => void,
|
|
4358
4339
|
): void;
|
|
4359
4340
|
/**
|
|
4360
4341
|
* Retrieves the files matching the specified pattern.
|
|
4361
4342
|
*/
|
|
4362
|
-
export function globSync(pattern: string | string[]): string[];
|
|
4363
|
-
/**
|
|
4364
|
-
* Retrieves the files matching the specified pattern.
|
|
4365
|
-
*/
|
|
4366
|
-
export function globSync<Options extends GlobOptions>(
|
|
4367
|
-
pattern: string | string[],
|
|
4368
|
-
options: Options,
|
|
4369
|
-
): Options extends GlobOptionsWithFileTypes ? Dirent[]
|
|
4370
|
-
: Options extends GlobOptionsWithoutFileTypes ? string[]
|
|
4371
|
-
: Dirent[] | string[];
|
|
4343
|
+
export function globSync(pattern: string | string[], options?: GlobOptions): string[];
|
|
4372
4344
|
}
|
|
4373
4345
|
declare module "node:fs" {
|
|
4374
4346
|
export * from "fs";
|
|
@@ -12,6 +12,7 @@ type _RequestInit = typeof globalThis extends { onmessage: any } ? {}
|
|
|
12
12
|
type _ResponseInit = typeof globalThis extends { onmessage: any } ? {}
|
|
13
13
|
: import("undici-types").ResponseInit;
|
|
14
14
|
type _File = typeof globalThis extends { onmessage: any } ? {} : import("node:buffer").File;
|
|
15
|
+
type _WebSocket = typeof globalThis extends { onmessage: any } ? {} : import("undici-types").WebSocket;
|
|
15
16
|
// #endregion Fetch and friends
|
|
16
17
|
|
|
17
18
|
declare global {
|
|
@@ -409,4 +410,8 @@ declare global {
|
|
|
409
410
|
File: infer T;
|
|
410
411
|
} ? T
|
|
411
412
|
: typeof import("node:buffer").File;
|
|
413
|
+
|
|
414
|
+
interface WebSocket extends _WebSocket {}
|
|
415
|
+
var WebSocket: typeof globalThis extends { onmessage: any; WebSocket: infer T } ? T
|
|
416
|
+
: typeof import("undici-types").WebSocket;
|
|
412
417
|
}
|
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@types/node",
|
|
3
|
-
"version": "22.
|
|
3
|
+
"version": "22.1.0",
|
|
4
4
|
"description": "TypeScript definitions for node",
|
|
5
5
|
"homepage": "https://github.com/DefinitelyTyped/DefinitelyTyped/tree/master/types/node",
|
|
6
6
|
"license": "MIT",
|
|
@@ -210,8 +210,8 @@
|
|
|
210
210
|
},
|
|
211
211
|
"scripts": {},
|
|
212
212
|
"dependencies": {
|
|
213
|
-
"undici-types": "~6.
|
|
213
|
+
"undici-types": "~6.13.0"
|
|
214
214
|
},
|
|
215
|
-
"typesPublisherContentHash": "
|
|
215
|
+
"typesPublisherContentHash": "a016324027de394c0877c1d44c03999bacaa45ed9b7249649d03dd6b9bfe4e5b",
|
|
216
216
|
"typeScriptVersion": "4.8"
|
|
217
217
|
}
|