cdk-comprehend-s3olap 2.0.82 → 2.0.85
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 +5 -5
- 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/aws-sdk/CHANGELOG.md +9 -1
- package/node_modules/aws-sdk/README.md +1 -1
- package/node_modules/aws-sdk/apis/greengrassv2-2020-11-30.min.json +26 -19
- package/node_modules/aws-sdk/apis/lookoutequipment-2020-12-15.min.json +282 -31
- package/node_modules/aws-sdk/apis/lookoutequipment-2020-12-15.paginators.json +10 -0
- package/node_modules/aws-sdk/apis/macie2-2020-01-01.min.json +390 -119
- package/node_modules/aws-sdk/apis/voice-id-2021-09-27.min.json +15 -2
- package/node_modules/aws-sdk/clients/fsx.d.ts +1 -1
- package/node_modules/aws-sdk/clients/greengrassv2.d.ts +22 -13
- package/node_modules/aws-sdk/clients/lookoutequipment.d.ts +399 -10
- package/node_modules/aws-sdk/clients/macie2.d.ts +289 -41
- package/node_modules/aws-sdk/clients/sso.d.ts +19 -19
- package/node_modules/aws-sdk/clients/ssoadmin.d.ts +115 -115
- package/node_modules/aws-sdk/clients/voiceid.d.ts +26 -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 +6 -6
- 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 +12 -6
- package/node_modules/esbuild/install.js +4 -4
- package/node_modules/esbuild/lib/main.js +19 -13
- package/node_modules/esbuild/package.json +22 -22
- package/node_modules/esbuild-linux-64/bin/esbuild +0 -0
- package/node_modules/esbuild-linux-64/package.json +1 -1
- package/package.json +10 -10
@@ -151,16 +151,22 @@ by esbuild to install the correct binary executable for your current platform.`)
|
|
151
151
|
throw e;
|
152
152
|
}
|
153
153
|
}
|
154
|
-
let
|
154
|
+
let pnpapi;
|
155
155
|
try {
|
156
|
-
require("pnpapi");
|
157
|
-
isYarnPnP = true;
|
156
|
+
pnpapi = require("pnpapi");
|
158
157
|
} catch (e) {
|
159
158
|
}
|
160
|
-
if (
|
161
|
-
const
|
162
|
-
const binTargetPath = path.join(
|
159
|
+
if (pnpapi) {
|
160
|
+
const root = pnpapi.getPackageInformation(pnpapi.topLevel).packageLocation;
|
161
|
+
const binTargetPath = path.join(
|
162
|
+
root,
|
163
|
+
"node_modules",
|
164
|
+
".cache",
|
165
|
+
"esbuild",
|
166
|
+
`pnpapi-${pkg}-${"0.15.6"}-${path.basename(subpath)}`
|
167
|
+
);
|
163
168
|
if (!fs.existsSync(binTargetPath)) {
|
169
|
+
fs.mkdirSync(path.dirname(binTargetPath), { recursive: true });
|
164
170
|
fs.copyFileSync(binPath2, binTargetPath);
|
165
171
|
fs.chmodSync(binTargetPath, 493);
|
166
172
|
}
|
@@ -89,8 +89,8 @@ function validateBinaryVersion(...command) {
|
|
89
89
|
const stdout = child_process.execFileSync(command.shift(), command, {
|
90
90
|
stdio: "pipe"
|
91
91
|
}).toString().trim();
|
92
|
-
if (stdout !== "0.15.
|
93
|
-
throw new Error(`Expected ${JSON.stringify("0.15.
|
92
|
+
if (stdout !== "0.15.6") {
|
93
|
+
throw new Error(`Expected ${JSON.stringify("0.15.6")} but got ${JSON.stringify(stdout)}`);
|
94
94
|
}
|
95
95
|
}
|
96
96
|
function isYarn() {
|
@@ -142,7 +142,7 @@ function installUsingNPM(pkg, subpath, binPath) {
|
|
142
142
|
try {
|
143
143
|
fs2.writeFileSync(path2.join(installDir, "package.json"), "{}");
|
144
144
|
child_process.execSync(
|
145
|
-
`npm install --loglevel=error --prefer-offline --no-audit --progress=false ${pkg}@${"0.15.
|
145
|
+
`npm install --loglevel=error --prefer-offline --no-audit --progress=false ${pkg}@${"0.15.6"}`,
|
146
146
|
{ cwd: installDir, stdio: "pipe", env }
|
147
147
|
);
|
148
148
|
const installedBinPath = path2.join(installDir, "node_modules", pkg, subpath);
|
@@ -193,7 +193,7 @@ function maybeOptimizePackage(binPath) {
|
|
193
193
|
}
|
194
194
|
}
|
195
195
|
async function downloadDirectlyFromNPM(pkg, subpath, binPath) {
|
196
|
-
const url = `https://registry.npmjs.org/${pkg}/-/${pkg}-${"0.15.
|
196
|
+
const url = `https://registry.npmjs.org/${pkg}/-/${pkg}-${"0.15.6"}.tgz`;
|
197
197
|
console.error(`[esbuild] Trying to download ${JSON.stringify(url)}`);
|
198
198
|
try {
|
199
199
|
fs2.writeFileSync(binPath, extractFileFromTarGzip(await fetch(url), subpath));
|
@@ -758,8 +758,8 @@ function createChannel(streamIn) {
|
|
758
758
|
if (isFirstPacket) {
|
759
759
|
isFirstPacket = false;
|
760
760
|
let binaryVersion = String.fromCharCode(...bytes);
|
761
|
-
if (binaryVersion !== "0.15.
|
762
|
-
throw new Error(`Cannot start service: Host version "${"0.15.
|
761
|
+
if (binaryVersion !== "0.15.6") {
|
762
|
+
throw new Error(`Cannot start service: Host version "${"0.15.6"}" does not match binary version ${JSON.stringify(binaryVersion)}`);
|
763
763
|
}
|
764
764
|
return;
|
765
765
|
}
|
@@ -1849,16 +1849,22 @@ by esbuild to install the correct binary executable for your current platform.`)
|
|
1849
1849
|
throw e;
|
1850
1850
|
}
|
1851
1851
|
}
|
1852
|
-
let
|
1852
|
+
let pnpapi;
|
1853
1853
|
try {
|
1854
|
-
require("pnpapi");
|
1855
|
-
isYarnPnP = true;
|
1854
|
+
pnpapi = require("pnpapi");
|
1856
1855
|
} catch (e) {
|
1857
1856
|
}
|
1858
|
-
if (
|
1859
|
-
const
|
1860
|
-
const binTargetPath = path.join(
|
1857
|
+
if (pnpapi) {
|
1858
|
+
const root = pnpapi.getPackageInformation(pnpapi.topLevel).packageLocation;
|
1859
|
+
const binTargetPath = path.join(
|
1860
|
+
root,
|
1861
|
+
"node_modules",
|
1862
|
+
".cache",
|
1863
|
+
"esbuild",
|
1864
|
+
`pnpapi-${pkg}-${"0.15.6"}-${path.basename(subpath)}`
|
1865
|
+
);
|
1861
1866
|
if (!fs.existsSync(binTargetPath)) {
|
1867
|
+
fs.mkdirSync(path.dirname(binTargetPath), { recursive: true });
|
1862
1868
|
fs.copyFileSync(binPath, binTargetPath);
|
1863
1869
|
fs.chmodSync(binTargetPath, 493);
|
1864
1870
|
}
|
@@ -1886,7 +1892,7 @@ if (process.env.ESBUILD_WORKER_THREADS !== "0") {
|
|
1886
1892
|
}
|
1887
1893
|
}
|
1888
1894
|
var _a;
|
1889
|
-
var isInternalWorkerThread = ((_a = worker_threads == null ? void 0 : worker_threads.workerData) == null ? void 0 : _a.esbuildVersion) === "0.15.
|
1895
|
+
var isInternalWorkerThread = ((_a = worker_threads == null ? void 0 : worker_threads.workerData) == null ? void 0 : _a.esbuildVersion) === "0.15.6";
|
1890
1896
|
var esbuildCommandAndArgs = () => {
|
1891
1897
|
if ((!ESBUILD_BINARY_PATH || false) && (path2.basename(__filename) !== "main.js" || path2.basename(__dirname) !== "lib")) {
|
1892
1898
|
throw new Error(
|
@@ -1952,7 +1958,7 @@ var fsAsync = {
|
|
1952
1958
|
}
|
1953
1959
|
}
|
1954
1960
|
};
|
1955
|
-
var version = "0.15.
|
1961
|
+
var version = "0.15.6";
|
1956
1962
|
var build = (options) => ensureServiceIsRunning().build(options);
|
1957
1963
|
var serve = (serveOptions, buildOptions) => ensureServiceIsRunning().serve(serveOptions, buildOptions);
|
1958
1964
|
var transform = (input, options) => ensureServiceIsRunning().transform(input, options);
|
@@ -2063,7 +2069,7 @@ var ensureServiceIsRunning = () => {
|
|
2063
2069
|
if (longLivedService)
|
2064
2070
|
return longLivedService;
|
2065
2071
|
let [command, args] = esbuildCommandAndArgs();
|
2066
|
-
let child = child_process.spawn(command, args.concat(`--service=${"0.15.
|
2072
|
+
let child = child_process.spawn(command, args.concat(`--service=${"0.15.6"}`, "--ping"), {
|
2067
2073
|
windowsHide: true,
|
2068
2074
|
stdio: ["pipe", "pipe", "inherit"],
|
2069
2075
|
cwd: defaultWD
|
@@ -2177,7 +2183,7 @@ var runServiceSync = (callback) => {
|
|
2177
2183
|
esbuild: node_exports
|
2178
2184
|
});
|
2179
2185
|
callback(service);
|
2180
|
-
let stdout = child_process.execFileSync(command, args.concat(`--service=${"0.15.
|
2186
|
+
let stdout = child_process.execFileSync(command, args.concat(`--service=${"0.15.6"}`), {
|
2181
2187
|
cwd: defaultWD,
|
2182
2188
|
windowsHide: true,
|
2183
2189
|
input: stdin,
|
@@ -2193,7 +2199,7 @@ var workerThreadService = null;
|
|
2193
2199
|
var startWorkerThreadService = (worker_threads2) => {
|
2194
2200
|
let { port1: mainPort, port2: workerPort } = new worker_threads2.MessageChannel();
|
2195
2201
|
let worker = new worker_threads2.Worker(__filename, {
|
2196
|
-
workerData: { workerPort, defaultWD, esbuildVersion: "0.15.
|
2202
|
+
workerData: { workerPort, defaultWD, esbuildVersion: "0.15.6" },
|
2197
2203
|
transferList: [workerPort],
|
2198
2204
|
execArgv: []
|
2199
2205
|
});
|
@@ -1,6 +1,6 @@
|
|
1
1
|
{
|
2
2
|
"name": "esbuild",
|
3
|
-
"version": "0.15.
|
3
|
+
"version": "0.15.6",
|
4
4
|
"description": "An extremely fast JavaScript and CSS bundler and minifier.",
|
5
5
|
"repository": "https://github.com/evanw/esbuild",
|
6
6
|
"scripts": {
|
@@ -15,27 +15,27 @@
|
|
15
15
|
"esbuild": "bin/esbuild"
|
16
16
|
},
|
17
17
|
"optionalDependencies": {
|
18
|
-
"@esbuild/linux-loong64": "0.15.
|
19
|
-
"esbuild-android-64": "0.15.
|
20
|
-
"esbuild-android-arm64": "0.15.
|
21
|
-
"esbuild-darwin-64": "0.15.
|
22
|
-
"esbuild-darwin-arm64": "0.15.
|
23
|
-
"esbuild-freebsd-64": "0.15.
|
24
|
-
"esbuild-freebsd-arm64": "0.15.
|
25
|
-
"esbuild-linux-32": "0.15.
|
26
|
-
"esbuild-linux-64": "0.15.
|
27
|
-
"esbuild-linux-arm": "0.15.
|
28
|
-
"esbuild-linux-arm64": "0.15.
|
29
|
-
"esbuild-linux-mips64le": "0.15.
|
30
|
-
"esbuild-linux-ppc64le": "0.15.
|
31
|
-
"esbuild-linux-riscv64": "0.15.
|
32
|
-
"esbuild-linux-s390x": "0.15.
|
33
|
-
"esbuild-netbsd-64": "0.15.
|
34
|
-
"esbuild-openbsd-64": "0.15.
|
35
|
-
"esbuild-sunos-64": "0.15.
|
36
|
-
"esbuild-windows-32": "0.15.
|
37
|
-
"esbuild-windows-64": "0.15.
|
38
|
-
"esbuild-windows-arm64": "0.15.
|
18
|
+
"@esbuild/linux-loong64": "0.15.6",
|
19
|
+
"esbuild-android-64": "0.15.6",
|
20
|
+
"esbuild-android-arm64": "0.15.6",
|
21
|
+
"esbuild-darwin-64": "0.15.6",
|
22
|
+
"esbuild-darwin-arm64": "0.15.6",
|
23
|
+
"esbuild-freebsd-64": "0.15.6",
|
24
|
+
"esbuild-freebsd-arm64": "0.15.6",
|
25
|
+
"esbuild-linux-32": "0.15.6",
|
26
|
+
"esbuild-linux-64": "0.15.6",
|
27
|
+
"esbuild-linux-arm": "0.15.6",
|
28
|
+
"esbuild-linux-arm64": "0.15.6",
|
29
|
+
"esbuild-linux-mips64le": "0.15.6",
|
30
|
+
"esbuild-linux-ppc64le": "0.15.6",
|
31
|
+
"esbuild-linux-riscv64": "0.15.6",
|
32
|
+
"esbuild-linux-s390x": "0.15.6",
|
33
|
+
"esbuild-netbsd-64": "0.15.6",
|
34
|
+
"esbuild-openbsd-64": "0.15.6",
|
35
|
+
"esbuild-sunos-64": "0.15.6",
|
36
|
+
"esbuild-windows-32": "0.15.6",
|
37
|
+
"esbuild-windows-64": "0.15.6",
|
38
|
+
"esbuild-windows-arm64": "0.15.6"
|
39
39
|
},
|
40
40
|
"license": "MIT"
|
41
41
|
}
|
Binary file
|
package/package.json
CHANGED
@@ -44,22 +44,22 @@
|
|
44
44
|
"@types/node": "^14",
|
45
45
|
"@typescript-eslint/eslint-plugin": "^5",
|
46
46
|
"@typescript-eslint/parser": "^5",
|
47
|
-
"aws-cdk-lib": "^2.
|
47
|
+
"aws-cdk-lib": "^2.40.0",
|
48
48
|
"constructs": "^10.0.5",
|
49
|
-
"esbuild": "^0.15.
|
49
|
+
"esbuild": "^0.15.6",
|
50
50
|
"eslint": "^8",
|
51
51
|
"eslint-import-resolver-node": "^0.3.6",
|
52
52
|
"eslint-import-resolver-typescript": "^2.7.1",
|
53
53
|
"eslint-plugin-import": "^2.26.0",
|
54
54
|
"jest": "^27",
|
55
55
|
"jest-junit": "^13",
|
56
|
-
"jsii": "^1.
|
57
|
-
"jsii-diff": "^1.
|
56
|
+
"jsii": "^1.66.0",
|
57
|
+
"jsii-diff": "^1.66.0",
|
58
58
|
"jsii-docgen": "^1.8.110",
|
59
|
-
"jsii-pacmak": "^1.
|
59
|
+
"jsii-pacmak": "^1.66.0",
|
60
60
|
"json-schema": "^0.4.0",
|
61
61
|
"npm-check-updates": "^15",
|
62
|
-
"projen": "^0.61.
|
62
|
+
"projen": "^0.61.38",
|
63
63
|
"standard-version": "^9",
|
64
64
|
"ts-jest": "^27",
|
65
65
|
"typescript": "^4.8.2"
|
@@ -69,10 +69,10 @@
|
|
69
69
|
"constructs": "^10.0.5"
|
70
70
|
},
|
71
71
|
"dependencies": {
|
72
|
-
"aws-cdk-lib": "^2.
|
73
|
-
"aws-sdk": "^2.
|
72
|
+
"aws-cdk-lib": "^2.40.0",
|
73
|
+
"aws-sdk": "^2.1206.0",
|
74
74
|
"constructs": "^10.0.5",
|
75
|
-
"esbuild": "^0.15.
|
75
|
+
"esbuild": "^0.15.6"
|
76
76
|
},
|
77
77
|
"bundledDependencies": [
|
78
78
|
"aws-sdk",
|
@@ -92,7 +92,7 @@
|
|
92
92
|
],
|
93
93
|
"main": "lib/index.js",
|
94
94
|
"license": "Apache-2.0",
|
95
|
-
"version": "2.0.
|
95
|
+
"version": "2.0.85",
|
96
96
|
"jest": {
|
97
97
|
"testMatch": [
|
98
98
|
"<rootDir>/src/**/__tests__/**/*.ts?(x)",
|