cdk-comprehend-s3olap 2.0.237 → 2.0.239
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 +4 -4
- package/lib/cdk-comprehend-s3olap.js +2 -2
- package/lib/comprehend-lambdas.js +2 -2
- package/lib/iam-roles.js +4 -4
- package/node_modules/@esbuild/linux-x64/bin/esbuild +0 -0
- package/node_modules/@esbuild/linux-x64/package.json +1 -1
- package/node_modules/aws-sdk/CHANGELOG.md +12 -1
- package/node_modules/aws-sdk/README.md +1 -1
- package/node_modules/aws-sdk/apis/backup-2018-11-15.min.json +178 -67
- package/node_modules/aws-sdk/apis/backup-2018-11-15.paginators.json +6 -0
- package/node_modules/aws-sdk/apis/elasticache-2015-02-02.min.json +37 -10
- package/node_modules/aws-sdk/apis/kinesis-video-archived-media-2017-09-30.min.json +0 -1
- package/node_modules/aws-sdk/apis/rekognition-2016-06-27.examples.json +501 -1
- package/node_modules/aws-sdk/clients/backup.d.ts +121 -7
- package/node_modules/aws-sdk/clients/elasticache.d.ts +22 -1
- package/node_modules/aws-sdk/clients/ivsrealtime.d.ts +2 -2
- package/node_modules/aws-sdk/clients/kinesisvideo.d.ts +2 -2
- package/node_modules/aws-sdk/clients/kinesisvideoarchivedmedia.d.ts +16 -16
- package/node_modules/aws-sdk/clients/rekognition.d.ts +19 -19
- package/node_modules/aws-sdk/clients/servicecatalog.d.ts +16 -16
- package/node_modules/aws-sdk/dist/aws-sdk-core-react-native.js +1 -1
- package/node_modules/aws-sdk/dist/aws-sdk-react-native.js +5 -5
- package/node_modules/aws-sdk/dist/aws-sdk.js +40 -14
- package/node_modules/aws-sdk/dist/aws-sdk.min.js +59 -59
- package/node_modules/aws-sdk/lib/core.js +1 -1
- package/node_modules/aws-sdk/package.json +1 -1
- package/node_modules/esbuild/bin/esbuild +1 -1
- package/node_modules/esbuild/lib/main.d.ts +21 -18
- package/node_modules/esbuild/lib/main.js +10 -9
- package/node_modules/esbuild/package.json +23 -23
- package/package.json +6 -6
@@ -199,7 +199,7 @@ for your current platform.`);
|
|
199
199
|
"node_modules",
|
200
200
|
".cache",
|
201
201
|
"esbuild",
|
202
|
-
`pnpapi-${pkg.replace("/", "-")}-${"0.
|
202
|
+
`pnpapi-${pkg.replace("/", "-")}-${"0.19.0"}-${path.basename(subpath)}`
|
203
203
|
);
|
204
204
|
if (!fs.existsSync(binTargetPath)) {
|
205
205
|
fs.mkdirSync(path.dirname(binTargetPath), { recursive: true });
|
@@ -85,23 +85,25 @@ interface CommonOptions {
|
|
85
85
|
logOverride?: Record<string, LogLevel>
|
86
86
|
|
87
87
|
/** Documentation: https://esbuild.github.io/api/#tsconfig-raw */
|
88
|
-
tsconfigRaw?: string |
|
89
|
-
|
90
|
-
|
91
|
-
|
92
|
-
|
93
|
-
|
94
|
-
|
95
|
-
|
96
|
-
|
97
|
-
|
98
|
-
|
99
|
-
|
100
|
-
|
101
|
-
|
102
|
-
|
103
|
-
|
104
|
-
|
88
|
+
tsconfigRaw?: string | TsconfigRaw
|
89
|
+
}
|
90
|
+
|
91
|
+
export interface TsconfigRaw {
|
92
|
+
compilerOptions?: {
|
93
|
+
alwaysStrict?: boolean
|
94
|
+
baseUrl?: boolean
|
95
|
+
experimentalDecorators?: boolean
|
96
|
+
importsNotUsedAsValues?: 'remove' | 'preserve' | 'error'
|
97
|
+
jsx?: 'preserve' | 'react-native' | 'react' | 'react-jsx' | 'react-jsxdev'
|
98
|
+
jsxFactory?: string
|
99
|
+
jsxFragmentFactory?: string
|
100
|
+
jsxImportSource?: string
|
101
|
+
paths?: Record<string, string[]>
|
102
|
+
preserveValueImports?: boolean
|
103
|
+
strict?: boolean
|
104
|
+
target?: string
|
105
|
+
useDefineForClassFields?: boolean
|
106
|
+
verbatimModuleSyntax?: boolean
|
105
107
|
}
|
106
108
|
}
|
107
109
|
|
@@ -209,8 +211,8 @@ export interface Location {
|
|
209
211
|
|
210
212
|
export interface OutputFile {
|
211
213
|
path: string
|
212
|
-
/** "text" as bytes */
|
213
214
|
contents: Uint8Array
|
215
|
+
hash: string
|
214
216
|
/** "contents" as text (changes automatically with "contents") */
|
215
217
|
readonly text: string
|
216
218
|
}
|
@@ -390,6 +392,7 @@ export type ImportKind =
|
|
390
392
|
|
391
393
|
// CSS
|
392
394
|
| 'import-rule'
|
395
|
+
| 'composes-from'
|
393
396
|
| 'url-token'
|
394
397
|
|
395
398
|
/** Documentation: https://esbuild.github.io/plugins/#on-resolve-results */
|
@@ -745,8 +745,8 @@ function createChannel(streamIn) {
|
|
745
745
|
if (isFirstPacket) {
|
746
746
|
isFirstPacket = false;
|
747
747
|
let binaryVersion = String.fromCharCode(...bytes);
|
748
|
-
if (binaryVersion !== "0.
|
749
|
-
throw new Error(`Cannot start service: Host version "${"0.
|
748
|
+
if (binaryVersion !== "0.19.0") {
|
749
|
+
throw new Error(`Cannot start service: Host version "${"0.19.0"}" does not match binary version ${quote(binaryVersion)}`);
|
750
750
|
}
|
751
751
|
return;
|
752
752
|
}
|
@@ -1726,11 +1726,12 @@ function sanitizeStringArray(values, property) {
|
|
1726
1726
|
}
|
1727
1727
|
return result;
|
1728
1728
|
}
|
1729
|
-
function convertOutputFiles({ path: path3, contents }) {
|
1729
|
+
function convertOutputFiles({ path: path3, contents, hash }) {
|
1730
1730
|
let text = null;
|
1731
1731
|
return {
|
1732
1732
|
path: path3,
|
1733
1733
|
contents,
|
1734
|
+
hash,
|
1734
1735
|
get text() {
|
1735
1736
|
const binary = this.contents;
|
1736
1737
|
if (text === null || binary !== contents) {
|
@@ -1918,7 +1919,7 @@ for your current platform.`);
|
|
1918
1919
|
"node_modules",
|
1919
1920
|
".cache",
|
1920
1921
|
"esbuild",
|
1921
|
-
`pnpapi-${pkg.replace("/", "-")}-${"0.
|
1922
|
+
`pnpapi-${pkg.replace("/", "-")}-${"0.19.0"}-${path.basename(subpath)}`
|
1922
1923
|
);
|
1923
1924
|
if (!fs.existsSync(binTargetPath)) {
|
1924
1925
|
fs.mkdirSync(path.dirname(binTargetPath), { recursive: true });
|
@@ -1953,7 +1954,7 @@ if (process.env.ESBUILD_WORKER_THREADS !== "0") {
|
|
1953
1954
|
}
|
1954
1955
|
}
|
1955
1956
|
var _a;
|
1956
|
-
var isInternalWorkerThread = ((_a = worker_threads == null ? void 0 : worker_threads.workerData) == null ? void 0 : _a.esbuildVersion) === "0.
|
1957
|
+
var isInternalWorkerThread = ((_a = worker_threads == null ? void 0 : worker_threads.workerData) == null ? void 0 : _a.esbuildVersion) === "0.19.0";
|
1957
1958
|
var esbuildCommandAndArgs = () => {
|
1958
1959
|
if ((!ESBUILD_BINARY_PATH || false) && (path2.basename(__filename) !== "main.js" || path2.basename(__dirname) !== "lib")) {
|
1959
1960
|
throw new Error(
|
@@ -2020,7 +2021,7 @@ var fsAsync = {
|
|
2020
2021
|
}
|
2021
2022
|
}
|
2022
2023
|
};
|
2023
|
-
var version = "0.
|
2024
|
+
var version = "0.19.0";
|
2024
2025
|
var build = (options) => ensureServiceIsRunning().build(options);
|
2025
2026
|
var context = (buildOptions) => ensureServiceIsRunning().context(buildOptions);
|
2026
2027
|
var transform = (input, options) => ensureServiceIsRunning().transform(input, options);
|
@@ -2130,7 +2131,7 @@ var ensureServiceIsRunning = () => {
|
|
2130
2131
|
if (longLivedService)
|
2131
2132
|
return longLivedService;
|
2132
2133
|
let [command, args] = esbuildCommandAndArgs();
|
2133
|
-
let child = child_process.spawn(command, args.concat(`--service=${"0.
|
2134
|
+
let child = child_process.spawn(command, args.concat(`--service=${"0.19.0"}`, "--ping"), {
|
2134
2135
|
windowsHide: true,
|
2135
2136
|
stdio: ["pipe", "pipe", "inherit"],
|
2136
2137
|
cwd: defaultWD
|
@@ -2230,7 +2231,7 @@ var runServiceSync = (callback) => {
|
|
2230
2231
|
esbuild: node_exports
|
2231
2232
|
});
|
2232
2233
|
callback(service);
|
2233
|
-
let stdout = child_process.execFileSync(command, args.concat(`--service=${"0.
|
2234
|
+
let stdout = child_process.execFileSync(command, args.concat(`--service=${"0.19.0"}`), {
|
2234
2235
|
cwd: defaultWD,
|
2235
2236
|
windowsHide: true,
|
2236
2237
|
input: stdin,
|
@@ -2250,7 +2251,7 @@ var workerThreadService = null;
|
|
2250
2251
|
var startWorkerThreadService = (worker_threads2) => {
|
2251
2252
|
let { port1: mainPort, port2: workerPort } = new worker_threads2.MessageChannel();
|
2252
2253
|
let worker = new worker_threads2.Worker(__filename, {
|
2253
|
-
workerData: { workerPort, defaultWD, esbuildVersion: "0.
|
2254
|
+
workerData: { workerPort, defaultWD, esbuildVersion: "0.19.0" },
|
2254
2255
|
transferList: [workerPort],
|
2255
2256
|
// From node's documentation: https://nodejs.org/api/worker_threads.html
|
2256
2257
|
//
|
@@ -1,6 +1,6 @@
|
|
1
1
|
{
|
2
2
|
"name": "esbuild",
|
3
|
-
"version": "0.
|
3
|
+
"version": "0.19.0",
|
4
4
|
"description": "An extremely fast JavaScript and CSS bundler and minifier.",
|
5
5
|
"repository": "https://github.com/evanw/esbuild",
|
6
6
|
"scripts": {
|
@@ -15,28 +15,28 @@
|
|
15
15
|
"esbuild": "bin/esbuild"
|
16
16
|
},
|
17
17
|
"optionalDependencies": {
|
18
|
-
"@esbuild/android-arm": "0.
|
19
|
-
"@esbuild/android-arm64": "0.
|
20
|
-
"@esbuild/android-x64": "0.
|
21
|
-
"@esbuild/darwin-arm64": "0.
|
22
|
-
"@esbuild/darwin-x64": "0.
|
23
|
-
"@esbuild/freebsd-arm64": "0.
|
24
|
-
"@esbuild/freebsd-x64": "0.
|
25
|
-
"@esbuild/linux-arm": "0.
|
26
|
-
"@esbuild/linux-arm64": "0.
|
27
|
-
"@esbuild/linux-ia32": "0.
|
28
|
-
"@esbuild/linux-loong64": "0.
|
29
|
-
"@esbuild/linux-mips64el": "0.
|
30
|
-
"@esbuild/linux-ppc64": "0.
|
31
|
-
"@esbuild/linux-riscv64": "0.
|
32
|
-
"@esbuild/linux-s390x": "0.
|
33
|
-
"@esbuild/linux-x64": "0.
|
34
|
-
"@esbuild/netbsd-x64": "0.
|
35
|
-
"@esbuild/openbsd-x64": "0.
|
36
|
-
"@esbuild/sunos-x64": "0.
|
37
|
-
"@esbuild/win32-arm64": "0.
|
38
|
-
"@esbuild/win32-ia32": "0.
|
39
|
-
"@esbuild/win32-x64": "0.
|
18
|
+
"@esbuild/android-arm": "0.19.0",
|
19
|
+
"@esbuild/android-arm64": "0.19.0",
|
20
|
+
"@esbuild/android-x64": "0.19.0",
|
21
|
+
"@esbuild/darwin-arm64": "0.19.0",
|
22
|
+
"@esbuild/darwin-x64": "0.19.0",
|
23
|
+
"@esbuild/freebsd-arm64": "0.19.0",
|
24
|
+
"@esbuild/freebsd-x64": "0.19.0",
|
25
|
+
"@esbuild/linux-arm": "0.19.0",
|
26
|
+
"@esbuild/linux-arm64": "0.19.0",
|
27
|
+
"@esbuild/linux-ia32": "0.19.0",
|
28
|
+
"@esbuild/linux-loong64": "0.19.0",
|
29
|
+
"@esbuild/linux-mips64el": "0.19.0",
|
30
|
+
"@esbuild/linux-ppc64": "0.19.0",
|
31
|
+
"@esbuild/linux-riscv64": "0.19.0",
|
32
|
+
"@esbuild/linux-s390x": "0.19.0",
|
33
|
+
"@esbuild/linux-x64": "0.19.0",
|
34
|
+
"@esbuild/netbsd-x64": "0.19.0",
|
35
|
+
"@esbuild/openbsd-x64": "0.19.0",
|
36
|
+
"@esbuild/sunos-x64": "0.19.0",
|
37
|
+
"@esbuild/win32-arm64": "0.19.0",
|
38
|
+
"@esbuild/win32-ia32": "0.19.0",
|
39
|
+
"@esbuild/win32-x64": "0.19.0"
|
40
40
|
},
|
41
41
|
"license": "MIT"
|
42
42
|
}
|
package/package.json
CHANGED
@@ -45,9 +45,9 @@
|
|
45
45
|
"@typescript-eslint/parser": "^5",
|
46
46
|
"aws-cdk-lib": "^2.90.0",
|
47
47
|
"constructs": "^10.0.5",
|
48
|
-
"esbuild": "^0.
|
48
|
+
"esbuild": "^0.19.0",
|
49
49
|
"eslint": "^8",
|
50
|
-
"eslint-import-resolver-node": "^0.3.
|
50
|
+
"eslint-import-resolver-node": "^0.3.9",
|
51
51
|
"eslint-import-resolver-typescript": "^2.7.1",
|
52
52
|
"eslint-plugin-import": "^2.28.0",
|
53
53
|
"jest": "^27",
|
@@ -58,7 +58,7 @@
|
|
58
58
|
"jsii-pacmak": "^1.86.1",
|
59
59
|
"jsii-rosetta": "1.x",
|
60
60
|
"npm-check-updates": "^16",
|
61
|
-
"projen": "^0.72.
|
61
|
+
"projen": "^0.72.6",
|
62
62
|
"standard-version": "^9",
|
63
63
|
"ts-jest": "^27",
|
64
64
|
"typescript": "^4.9.5"
|
@@ -69,9 +69,9 @@
|
|
69
69
|
},
|
70
70
|
"dependencies": {
|
71
71
|
"aws-cdk-lib": "^2.90.0",
|
72
|
-
"aws-sdk": "^2.
|
72
|
+
"aws-sdk": "^2.1432.0",
|
73
73
|
"constructs": "^10.0.5",
|
74
|
-
"esbuild": "^0.
|
74
|
+
"esbuild": "^0.19.0"
|
75
75
|
},
|
76
76
|
"bundledDependencies": [
|
77
77
|
"aws-sdk",
|
@@ -96,7 +96,7 @@
|
|
96
96
|
],
|
97
97
|
"main": "lib/index.js",
|
98
98
|
"license": "Apache-2.0",
|
99
|
-
"version": "2.0.
|
99
|
+
"version": "2.0.239",
|
100
100
|
"jest": {
|
101
101
|
"testMatch": [
|
102
102
|
"<rootDir>/src/**/__tests__/**/*.ts?(x)",
|