cdk-comprehend-s3olap 2.0.192 → 2.0.194
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 +4 -1
- package/node_modules/aws-sdk/README.md +1 -1
- package/node_modules/aws-sdk/apis/devops-guru-2020-12-01.min.json +49 -33
- package/node_modules/aws-sdk/clients/devopsguru.d.ts +41 -3
- package/node_modules/aws-sdk/clients/fsx.d.ts +9 -3
- package/node_modules/aws-sdk/clients/rds.d.ts +289 -289
- package/node_modules/aws-sdk/clients/verifiedpermissions.d.ts +6 -6
- 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 +2 -2
- package/node_modules/aws-sdk/dist/aws-sdk.js +3 -3
- package/node_modules/aws-sdk/dist/aws-sdk.min.js +2 -2
- 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 +2 -0
- package/node_modules/esbuild/lib/main.js +11 -8
- package/node_modules/esbuild/package.json +23 -23
- package/package.json +5 -5
@@ -199,7 +199,7 @@ for your current platform.`);
|
|
199
199
|
"node_modules",
|
200
200
|
".cache",
|
201
201
|
"esbuild",
|
202
|
-
`pnpapi-${pkg.replace("/", "-")}-${"0.18.
|
202
|
+
`pnpapi-${pkg.replace("/", "-")}-${"0.18.7"}-${path.basename(subpath)}`
|
203
203
|
);
|
204
204
|
if (!fs.existsSync(binTargetPath)) {
|
205
205
|
fs.mkdirSync(path.dirname(binTargetPath), { recursive: true });
|
@@ -44,6 +44,8 @@ interface CommonOptions {
|
|
44
44
|
minifyIdentifiers?: boolean
|
45
45
|
/** Documentation: https://esbuild.github.io/api/#minify */
|
46
46
|
minifySyntax?: boolean
|
47
|
+
/** Documentation: https://esbuild.github.io/api/#line-limit */
|
48
|
+
lineLimit?: number
|
47
49
|
/** Documentation: https://esbuild.github.io/api/#charset */
|
48
50
|
charset?: Charset
|
49
51
|
/** Documentation: https://esbuild.github.io/api/#tree-shaking */
|
@@ -314,6 +314,7 @@ function pushCommonFlags(flags, options, keys) {
|
|
314
314
|
let minifySyntax = getFlag(options, keys, "minifySyntax", mustBeBoolean);
|
315
315
|
let minifyWhitespace = getFlag(options, keys, "minifyWhitespace", mustBeBoolean);
|
316
316
|
let minifyIdentifiers = getFlag(options, keys, "minifyIdentifiers", mustBeBoolean);
|
317
|
+
let lineLimit = getFlag(options, keys, "lineLimit", mustBeInteger);
|
317
318
|
let drop = getFlag(options, keys, "drop", mustBeArray);
|
318
319
|
let charset = getFlag(options, keys, "charset", mustBeString);
|
319
320
|
let treeShaking = getFlag(options, keys, "treeShaking", mustBeBoolean);
|
@@ -359,6 +360,8 @@ function pushCommonFlags(flags, options, keys) {
|
|
359
360
|
flags.push("--minify-whitespace");
|
360
361
|
if (minifyIdentifiers)
|
361
362
|
flags.push("--minify-identifiers");
|
363
|
+
if (lineLimit)
|
364
|
+
flags.push(`--line-limit=${lineLimit}`);
|
362
365
|
if (charset)
|
363
366
|
flags.push(`--charset=${charset}`);
|
364
367
|
if (treeShaking !== void 0)
|
@@ -735,8 +738,8 @@ function createChannel(streamIn) {
|
|
735
738
|
if (isFirstPacket) {
|
736
739
|
isFirstPacket = false;
|
737
740
|
let binaryVersion = String.fromCharCode(...bytes);
|
738
|
-
if (binaryVersion !== "0.18.
|
739
|
-
throw new Error(`Cannot start service: Host version "${"0.18.
|
741
|
+
if (binaryVersion !== "0.18.7") {
|
742
|
+
throw new Error(`Cannot start service: Host version "${"0.18.7"}" does not match binary version ${quote(binaryVersion)}`);
|
740
743
|
}
|
741
744
|
return;
|
742
745
|
}
|
@@ -1905,7 +1908,7 @@ for your current platform.`);
|
|
1905
1908
|
"node_modules",
|
1906
1909
|
".cache",
|
1907
1910
|
"esbuild",
|
1908
|
-
`pnpapi-${pkg.replace("/", "-")}-${"0.18.
|
1911
|
+
`pnpapi-${pkg.replace("/", "-")}-${"0.18.7"}-${path.basename(subpath)}`
|
1909
1912
|
);
|
1910
1913
|
if (!fs.existsSync(binTargetPath)) {
|
1911
1914
|
fs.mkdirSync(path.dirname(binTargetPath), { recursive: true });
|
@@ -1940,7 +1943,7 @@ if (process.env.ESBUILD_WORKER_THREADS !== "0") {
|
|
1940
1943
|
}
|
1941
1944
|
}
|
1942
1945
|
var _a;
|
1943
|
-
var isInternalWorkerThread = ((_a = worker_threads == null ? void 0 : worker_threads.workerData) == null ? void 0 : _a.esbuildVersion) === "0.18.
|
1946
|
+
var isInternalWorkerThread = ((_a = worker_threads == null ? void 0 : worker_threads.workerData) == null ? void 0 : _a.esbuildVersion) === "0.18.7";
|
1944
1947
|
var esbuildCommandAndArgs = () => {
|
1945
1948
|
if ((!ESBUILD_BINARY_PATH || false) && (path2.basename(__filename) !== "main.js" || path2.basename(__dirname) !== "lib")) {
|
1946
1949
|
throw new Error(
|
@@ -2007,7 +2010,7 @@ var fsAsync = {
|
|
2007
2010
|
}
|
2008
2011
|
}
|
2009
2012
|
};
|
2010
|
-
var version = "0.18.
|
2013
|
+
var version = "0.18.7";
|
2011
2014
|
var build = (options) => ensureServiceIsRunning().build(options);
|
2012
2015
|
var context = (buildOptions) => ensureServiceIsRunning().context(buildOptions);
|
2013
2016
|
var transform = (input, options) => ensureServiceIsRunning().transform(input, options);
|
@@ -2117,7 +2120,7 @@ var ensureServiceIsRunning = () => {
|
|
2117
2120
|
if (longLivedService)
|
2118
2121
|
return longLivedService;
|
2119
2122
|
let [command, args] = esbuildCommandAndArgs();
|
2120
|
-
let child = child_process.spawn(command, args.concat(`--service=${"0.18.
|
2123
|
+
let child = child_process.spawn(command, args.concat(`--service=${"0.18.7"}`, "--ping"), {
|
2121
2124
|
windowsHide: true,
|
2122
2125
|
stdio: ["pipe", "pipe", "inherit"],
|
2123
2126
|
cwd: defaultWD
|
@@ -2217,7 +2220,7 @@ var runServiceSync = (callback) => {
|
|
2217
2220
|
esbuild: node_exports
|
2218
2221
|
});
|
2219
2222
|
callback(service);
|
2220
|
-
let stdout = child_process.execFileSync(command, args.concat(`--service=${"0.18.
|
2223
|
+
let stdout = child_process.execFileSync(command, args.concat(`--service=${"0.18.7"}`), {
|
2221
2224
|
cwd: defaultWD,
|
2222
2225
|
windowsHide: true,
|
2223
2226
|
input: stdin,
|
@@ -2237,7 +2240,7 @@ var workerThreadService = null;
|
|
2237
2240
|
var startWorkerThreadService = (worker_threads2) => {
|
2238
2241
|
let { port1: mainPort, port2: workerPort } = new worker_threads2.MessageChannel();
|
2239
2242
|
let worker = new worker_threads2.Worker(__filename, {
|
2240
|
-
workerData: { workerPort, defaultWD, esbuildVersion: "0.18.
|
2243
|
+
workerData: { workerPort, defaultWD, esbuildVersion: "0.18.7" },
|
2241
2244
|
transferList: [workerPort],
|
2242
2245
|
// From node's documentation: https://nodejs.org/api/worker_threads.html
|
2243
2246
|
//
|
@@ -1,6 +1,6 @@
|
|
1
1
|
{
|
2
2
|
"name": "esbuild",
|
3
|
-
"version": "0.18.
|
3
|
+
"version": "0.18.7",
|
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.18.
|
19
|
-
"@esbuild/android-arm64": "0.18.
|
20
|
-
"@esbuild/android-x64": "0.18.
|
21
|
-
"@esbuild/darwin-arm64": "0.18.
|
22
|
-
"@esbuild/darwin-x64": "0.18.
|
23
|
-
"@esbuild/freebsd-arm64": "0.18.
|
24
|
-
"@esbuild/freebsd-x64": "0.18.
|
25
|
-
"@esbuild/linux-arm": "0.18.
|
26
|
-
"@esbuild/linux-arm64": "0.18.
|
27
|
-
"@esbuild/linux-ia32": "0.18.
|
28
|
-
"@esbuild/linux-loong64": "0.18.
|
29
|
-
"@esbuild/linux-mips64el": "0.18.
|
30
|
-
"@esbuild/linux-ppc64": "0.18.
|
31
|
-
"@esbuild/linux-riscv64": "0.18.
|
32
|
-
"@esbuild/linux-s390x": "0.18.
|
33
|
-
"@esbuild/linux-x64": "0.18.
|
34
|
-
"@esbuild/netbsd-x64": "0.18.
|
35
|
-
"@esbuild/openbsd-x64": "0.18.
|
36
|
-
"@esbuild/sunos-x64": "0.18.
|
37
|
-
"@esbuild/win32-arm64": "0.18.
|
38
|
-
"@esbuild/win32-ia32": "0.18.
|
39
|
-
"@esbuild/win32-x64": "0.18.
|
18
|
+
"@esbuild/android-arm": "0.18.7",
|
19
|
+
"@esbuild/android-arm64": "0.18.7",
|
20
|
+
"@esbuild/android-x64": "0.18.7",
|
21
|
+
"@esbuild/darwin-arm64": "0.18.7",
|
22
|
+
"@esbuild/darwin-x64": "0.18.7",
|
23
|
+
"@esbuild/freebsd-arm64": "0.18.7",
|
24
|
+
"@esbuild/freebsd-x64": "0.18.7",
|
25
|
+
"@esbuild/linux-arm": "0.18.7",
|
26
|
+
"@esbuild/linux-arm64": "0.18.7",
|
27
|
+
"@esbuild/linux-ia32": "0.18.7",
|
28
|
+
"@esbuild/linux-loong64": "0.18.7",
|
29
|
+
"@esbuild/linux-mips64el": "0.18.7",
|
30
|
+
"@esbuild/linux-ppc64": "0.18.7",
|
31
|
+
"@esbuild/linux-riscv64": "0.18.7",
|
32
|
+
"@esbuild/linux-s390x": "0.18.7",
|
33
|
+
"@esbuild/linux-x64": "0.18.7",
|
34
|
+
"@esbuild/netbsd-x64": "0.18.7",
|
35
|
+
"@esbuild/openbsd-x64": "0.18.7",
|
36
|
+
"@esbuild/sunos-x64": "0.18.7",
|
37
|
+
"@esbuild/win32-arm64": "0.18.7",
|
38
|
+
"@esbuild/win32-ia32": "0.18.7",
|
39
|
+
"@esbuild/win32-x64": "0.18.7"
|
40
40
|
},
|
41
41
|
"license": "MIT"
|
42
42
|
}
|
package/package.json
CHANGED
@@ -45,7 +45,7 @@
|
|
45
45
|
"@typescript-eslint/parser": "^5",
|
46
46
|
"aws-cdk-lib": "^2.85.0",
|
47
47
|
"constructs": "^10.0.5",
|
48
|
-
"esbuild": "^0.18.
|
48
|
+
"esbuild": "^0.18.7",
|
49
49
|
"eslint": "^8",
|
50
50
|
"eslint-import-resolver-node": "^0.3.7",
|
51
51
|
"eslint-import-resolver-typescript": "^2.7.1",
|
@@ -57,7 +57,7 @@
|
|
57
57
|
"jsii-docgen": "^1.8.110",
|
58
58
|
"jsii-pacmak": "^1.84.0",
|
59
59
|
"npm-check-updates": "^16",
|
60
|
-
"projen": "^0.71.
|
60
|
+
"projen": "^0.71.109",
|
61
61
|
"standard-version": "^9",
|
62
62
|
"ts-jest": "^27",
|
63
63
|
"typescript": "^4.9.5"
|
@@ -68,9 +68,9 @@
|
|
68
68
|
},
|
69
69
|
"dependencies": {
|
70
70
|
"aws-cdk-lib": "^2.85.0",
|
71
|
-
"aws-sdk": "^2.
|
71
|
+
"aws-sdk": "^2.1404.0",
|
72
72
|
"constructs": "^10.0.5",
|
73
|
-
"esbuild": "^0.18.
|
73
|
+
"esbuild": "^0.18.7"
|
74
74
|
},
|
75
75
|
"bundledDependencies": [
|
76
76
|
"aws-sdk",
|
@@ -95,7 +95,7 @@
|
|
95
95
|
],
|
96
96
|
"main": "lib/index.js",
|
97
97
|
"license": "Apache-2.0",
|
98
|
-
"version": "2.0.
|
98
|
+
"version": "2.0.194",
|
99
99
|
"jest": {
|
100
100
|
"testMatch": [
|
101
101
|
"<rootDir>/src/**/__tests__/**/*.ts?(x)",
|