cdk-common 2.0.277 → 2.0.279
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/lib/main.js +1 -1
- package/node_modules/@types/concat-stream/node_modules/@types/node/README.md +1 -1
- package/node_modules/@types/concat-stream/node_modules/@types/node/buffer.d.ts +17 -2
- package/node_modules/@types/concat-stream/node_modules/@types/node/dom-events.d.ts +126 -0
- package/node_modules/@types/concat-stream/node_modules/@types/node/events.d.ts +43 -6
- package/node_modules/@types/concat-stream/node_modules/@types/node/globals.d.ts +1 -1
- package/node_modules/@types/concat-stream/node_modules/@types/node/index.d.ts +1 -0
- package/node_modules/@types/concat-stream/node_modules/@types/node/package.json +2 -2
- package/node_modules/@types/concat-stream/node_modules/@types/node/perf_hooks.d.ts +15 -0
- package/node_modules/@types/concat-stream/node_modules/@types/node/stream/consumers.d.ts +2 -14
- package/node_modules/@types/concat-stream/node_modules/@types/node/stream.d.ts +1 -0
- package/node_modules/@types/concat-stream/node_modules/@types/node/ts4.8/test.d.ts +129 -5
- package/node_modules/@types/concat-stream/node_modules/@types/node/url.d.ts +6 -6
- package/node_modules/@types/concat-stream/node_modules/@types/node/util.d.ts +30 -0
- package/node_modules/@types/concat-stream/node_modules/@types/node/worker_threads.d.ts +43 -0
- package/node_modules/@types/form-data/node_modules/@types/node/README.md +1 -1
- package/node_modules/@types/form-data/node_modules/@types/node/buffer.d.ts +17 -2
- package/node_modules/@types/form-data/node_modules/@types/node/dom-events.d.ts +126 -0
- package/node_modules/@types/form-data/node_modules/@types/node/events.d.ts +43 -6
- package/node_modules/@types/form-data/node_modules/@types/node/globals.d.ts +1 -1
- package/node_modules/@types/form-data/node_modules/@types/node/index.d.ts +1 -0
- package/node_modules/@types/form-data/node_modules/@types/node/package.json +2 -2
- package/node_modules/@types/form-data/node_modules/@types/node/perf_hooks.d.ts +15 -0
- package/node_modules/@types/form-data/node_modules/@types/node/stream/consumers.d.ts +2 -14
- package/node_modules/@types/form-data/node_modules/@types/node/stream.d.ts +1 -0
- package/node_modules/@types/form-data/node_modules/@types/node/ts4.8/test.d.ts +129 -5
- package/node_modules/@types/form-data/node_modules/@types/node/url.d.ts +6 -6
- package/node_modules/@types/form-data/node_modules/@types/node/util.d.ts +30 -0
- package/node_modules/@types/form-data/node_modules/@types/node/worker_threads.d.ts +43 -0
- package/package.json +2 -2
|
@@ -1067,6 +1067,8 @@ declare module 'util' {
|
|
|
1067
1067
|
written: number;
|
|
1068
1068
|
}
|
|
1069
1069
|
export { types };
|
|
1070
|
+
|
|
1071
|
+
//// TextEncoder/Decoder
|
|
1070
1072
|
/**
|
|
1071
1073
|
* An implementation of the [WHATWG Encoding Standard](https://encoding.spec.whatwg.org/) `TextEncoder` API. All
|
|
1072
1074
|
* instances of `TextEncoder` only support UTF-8 encoding.
|
|
@@ -1106,6 +1108,34 @@ declare module 'util' {
|
|
|
1106
1108
|
encodeInto(src: string, dest: Uint8Array): EncodeIntoResult;
|
|
1107
1109
|
}
|
|
1108
1110
|
|
|
1111
|
+
import { TextDecoder as _TextDecoder, TextEncoder as _TextEncoder } from 'util';
|
|
1112
|
+
global {
|
|
1113
|
+
/**
|
|
1114
|
+
* `TextDecoder` class is a global reference for `require('util').TextDecoder`
|
|
1115
|
+
* https://nodejs.org/api/globals.html#textdecoder
|
|
1116
|
+
* @since v11.0.0
|
|
1117
|
+
*/
|
|
1118
|
+
var TextDecoder: typeof globalThis extends {
|
|
1119
|
+
onmessage: any;
|
|
1120
|
+
TextDecoder: infer TextDecoder;
|
|
1121
|
+
}
|
|
1122
|
+
? TextDecoder
|
|
1123
|
+
: typeof _TextDecoder;
|
|
1124
|
+
|
|
1125
|
+
/**
|
|
1126
|
+
* `TextEncoder` class is a global reference for `require('util').TextEncoder`
|
|
1127
|
+
* https://nodejs.org/api/globals.html#textencoder
|
|
1128
|
+
* @since v11.0.0
|
|
1129
|
+
*/
|
|
1130
|
+
var TextEncoder: typeof globalThis extends {
|
|
1131
|
+
onmessage: any;
|
|
1132
|
+
TextEncoder: infer TextEncoder;
|
|
1133
|
+
}
|
|
1134
|
+
? TextEncoder
|
|
1135
|
+
: typeof _TextEncoder;
|
|
1136
|
+
}
|
|
1137
|
+
|
|
1138
|
+
//// parseArgs
|
|
1109
1139
|
/**
|
|
1110
1140
|
* Provides a high-level API for command-line argument parsing. Takes a
|
|
1111
1141
|
* specification for the expected arguments and returns a structured object
|
|
@@ -640,6 +640,49 @@ declare module 'worker_threads' {
|
|
|
640
640
|
* for the `key` will be deleted.
|
|
641
641
|
*/
|
|
642
642
|
function setEnvironmentData(key: Serializable, value: Serializable): void;
|
|
643
|
+
|
|
644
|
+
import {
|
|
645
|
+
BroadcastChannel as _BroadcastChannel,
|
|
646
|
+
MessageChannel as _MessageChannel,
|
|
647
|
+
MessagePort as _MessagePort,
|
|
648
|
+
} from 'worker_threads';
|
|
649
|
+
global {
|
|
650
|
+
/**
|
|
651
|
+
* `BroadcastChannel` class is a global reference for `require('worker_threads').BroadcastChannel`
|
|
652
|
+
* https://nodejs.org/api/globals.html#broadcastchannel
|
|
653
|
+
* @since v18.0.0
|
|
654
|
+
*/
|
|
655
|
+
var BroadcastChannel: typeof globalThis extends {
|
|
656
|
+
onmessage: any;
|
|
657
|
+
BroadcastChannel: infer T;
|
|
658
|
+
}
|
|
659
|
+
? T
|
|
660
|
+
: typeof _BroadcastChannel;
|
|
661
|
+
|
|
662
|
+
/**
|
|
663
|
+
* `MessageChannel` class is a global reference for `require('worker_threads').MessageChannel`
|
|
664
|
+
* https://nodejs.org/api/globals.html#messagechannel
|
|
665
|
+
* @since v15.0.0
|
|
666
|
+
*/
|
|
667
|
+
var MessageChannel: typeof globalThis extends {
|
|
668
|
+
onmessage: any;
|
|
669
|
+
MessageChannel: infer T;
|
|
670
|
+
}
|
|
671
|
+
? T
|
|
672
|
+
: typeof _MessageChannel;
|
|
673
|
+
|
|
674
|
+
/**
|
|
675
|
+
* `MessagePort` class is a global reference for `require('worker_threads').MessagePort`
|
|
676
|
+
* https://nodejs.org/api/globals.html#messageport
|
|
677
|
+
* @since v15.0.0
|
|
678
|
+
*/
|
|
679
|
+
var MessagePort: typeof globalThis extends {
|
|
680
|
+
onmessage: any;
|
|
681
|
+
MessagePort: infer T;
|
|
682
|
+
}
|
|
683
|
+
? T
|
|
684
|
+
: typeof _MessagePort;
|
|
685
|
+
}
|
|
643
686
|
}
|
|
644
687
|
declare module 'node:worker_threads' {
|
|
645
688
|
export * from 'worker_threads';
|
package/package.json
CHANGED
|
@@ -55,7 +55,7 @@
|
|
|
55
55
|
"jsii-pacmak": "^1.69.0",
|
|
56
56
|
"json-schema": "^0.4.0",
|
|
57
57
|
"npm-check-updates": "^15",
|
|
58
|
-
"projen": "0.63.
|
|
58
|
+
"projen": "0.63.5",
|
|
59
59
|
"standard-version": "^9",
|
|
60
60
|
"ts-jest": "^27",
|
|
61
61
|
"typescript": "3.9.10"
|
|
@@ -83,7 +83,7 @@
|
|
|
83
83
|
],
|
|
84
84
|
"main": "lib/index.js",
|
|
85
85
|
"license": "Apache-2.0",
|
|
86
|
-
"version": "2.0.
|
|
86
|
+
"version": "2.0.279",
|
|
87
87
|
"jest": {
|
|
88
88
|
"testMatch": [
|
|
89
89
|
"<rootDir>/src/**/__tests__/**/*.ts?(x)",
|