cdk-comprehend-s3olap 2.0.185 → 2.0.186
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 +7 -1
- package/node_modules/aws-sdk/README.md +1 -1
- package/node_modules/aws-sdk/apis/account-2021-02-01.paginators.json +2 -1
- package/node_modules/aws-sdk/apis/connect-2017-08-08.min.json +75 -73
- package/node_modules/aws-sdk/apis/discovery-2015-11-01.min.json +48 -0
- package/node_modules/aws-sdk/apis/s3-2006-03-01.examples.json +137 -137
- package/node_modules/aws-sdk/apis/s3-2006-03-01.min.json +37 -5
- package/node_modules/aws-sdk/clients/connect.d.ts +13 -5
- package/node_modules/aws-sdk/clients/discovery.d.ts +133 -35
- package/node_modules/aws-sdk/clients/iam.d.ts +4 -4
- package/node_modules/aws-sdk/clients/s3.d.ts +67 -59
- 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 +115 -81
- package/node_modules/aws-sdk/dist/aws-sdk.min.js +37 -37
- 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.js +8 -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.4"}-${path.basename(subpath)}`
|
203
203
|
);
|
204
204
|
if (!fs.existsSync(binTargetPath)) {
|
205
205
|
fs.mkdirSync(path.dirname(binTargetPath), { recursive: true });
|
@@ -735,8 +735,8 @@ function createChannel(streamIn) {
|
|
735
735
|
if (isFirstPacket) {
|
736
736
|
isFirstPacket = false;
|
737
737
|
let binaryVersion = String.fromCharCode(...bytes);
|
738
|
-
if (binaryVersion !== "0.18.
|
739
|
-
throw new Error(`Cannot start service: Host version "${"0.18.
|
738
|
+
if (binaryVersion !== "0.18.4") {
|
739
|
+
throw new Error(`Cannot start service: Host version "${"0.18.4"}" does not match binary version ${quote(binaryVersion)}`);
|
740
740
|
}
|
741
741
|
return;
|
742
742
|
}
|
@@ -1905,7 +1905,7 @@ for your current platform.`);
|
|
1905
1905
|
"node_modules",
|
1906
1906
|
".cache",
|
1907
1907
|
"esbuild",
|
1908
|
-
`pnpapi-${pkg.replace("/", "-")}-${"0.18.
|
1908
|
+
`pnpapi-${pkg.replace("/", "-")}-${"0.18.4"}-${path.basename(subpath)}`
|
1909
1909
|
);
|
1910
1910
|
if (!fs.existsSync(binTargetPath)) {
|
1911
1911
|
fs.mkdirSync(path.dirname(binTargetPath), { recursive: true });
|
@@ -1940,7 +1940,7 @@ if (process.env.ESBUILD_WORKER_THREADS !== "0") {
|
|
1940
1940
|
}
|
1941
1941
|
}
|
1942
1942
|
var _a;
|
1943
|
-
var isInternalWorkerThread = ((_a = worker_threads == null ? void 0 : worker_threads.workerData) == null ? void 0 : _a.esbuildVersion) === "0.18.
|
1943
|
+
var isInternalWorkerThread = ((_a = worker_threads == null ? void 0 : worker_threads.workerData) == null ? void 0 : _a.esbuildVersion) === "0.18.4";
|
1944
1944
|
var esbuildCommandAndArgs = () => {
|
1945
1945
|
if ((!ESBUILD_BINARY_PATH || false) && (path2.basename(__filename) !== "main.js" || path2.basename(__dirname) !== "lib")) {
|
1946
1946
|
throw new Error(
|
@@ -2007,7 +2007,7 @@ var fsAsync = {
|
|
2007
2007
|
}
|
2008
2008
|
}
|
2009
2009
|
};
|
2010
|
-
var version = "0.18.
|
2010
|
+
var version = "0.18.4";
|
2011
2011
|
var build = (options) => ensureServiceIsRunning().build(options);
|
2012
2012
|
var context = (buildOptions) => ensureServiceIsRunning().context(buildOptions);
|
2013
2013
|
var transform = (input, options) => ensureServiceIsRunning().transform(input, options);
|
@@ -2117,7 +2117,7 @@ var ensureServiceIsRunning = () => {
|
|
2117
2117
|
if (longLivedService)
|
2118
2118
|
return longLivedService;
|
2119
2119
|
let [command, args] = esbuildCommandAndArgs();
|
2120
|
-
let child = child_process.spawn(command, args.concat(`--service=${"0.18.
|
2120
|
+
let child = child_process.spawn(command, args.concat(`--service=${"0.18.4"}`, "--ping"), {
|
2121
2121
|
windowsHide: true,
|
2122
2122
|
stdio: ["pipe", "pipe", "inherit"],
|
2123
2123
|
cwd: defaultWD
|
@@ -2217,7 +2217,7 @@ var runServiceSync = (callback) => {
|
|
2217
2217
|
esbuild: node_exports
|
2218
2218
|
});
|
2219
2219
|
callback(service);
|
2220
|
-
let stdout = child_process.execFileSync(command, args.concat(`--service=${"0.18.
|
2220
|
+
let stdout = child_process.execFileSync(command, args.concat(`--service=${"0.18.4"}`), {
|
2221
2221
|
cwd: defaultWD,
|
2222
2222
|
windowsHide: true,
|
2223
2223
|
input: stdin,
|
@@ -2237,7 +2237,7 @@ var workerThreadService = null;
|
|
2237
2237
|
var startWorkerThreadService = (worker_threads2) => {
|
2238
2238
|
let { port1: mainPort, port2: workerPort } = new worker_threads2.MessageChannel();
|
2239
2239
|
let worker = new worker_threads2.Worker(__filename, {
|
2240
|
-
workerData: { workerPort, defaultWD, esbuildVersion: "0.18.
|
2240
|
+
workerData: { workerPort, defaultWD, esbuildVersion: "0.18.4" },
|
2241
2241
|
transferList: [workerPort],
|
2242
2242
|
// From node's documentation: https://nodejs.org/api/worker_threads.html
|
2243
2243
|
//
|
@@ -1,6 +1,6 @@
|
|
1
1
|
{
|
2
2
|
"name": "esbuild",
|
3
|
-
"version": "0.18.
|
3
|
+
"version": "0.18.4",
|
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.4",
|
19
|
+
"@esbuild/android-arm64": "0.18.4",
|
20
|
+
"@esbuild/android-x64": "0.18.4",
|
21
|
+
"@esbuild/darwin-arm64": "0.18.4",
|
22
|
+
"@esbuild/darwin-x64": "0.18.4",
|
23
|
+
"@esbuild/freebsd-arm64": "0.18.4",
|
24
|
+
"@esbuild/freebsd-x64": "0.18.4",
|
25
|
+
"@esbuild/linux-arm": "0.18.4",
|
26
|
+
"@esbuild/linux-arm64": "0.18.4",
|
27
|
+
"@esbuild/linux-ia32": "0.18.4",
|
28
|
+
"@esbuild/linux-loong64": "0.18.4",
|
29
|
+
"@esbuild/linux-mips64el": "0.18.4",
|
30
|
+
"@esbuild/linux-ppc64": "0.18.4",
|
31
|
+
"@esbuild/linux-riscv64": "0.18.4",
|
32
|
+
"@esbuild/linux-s390x": "0.18.4",
|
33
|
+
"@esbuild/linux-x64": "0.18.4",
|
34
|
+
"@esbuild/netbsd-x64": "0.18.4",
|
35
|
+
"@esbuild/openbsd-x64": "0.18.4",
|
36
|
+
"@esbuild/sunos-x64": "0.18.4",
|
37
|
+
"@esbuild/win32-arm64": "0.18.4",
|
38
|
+
"@esbuild/win32-ia32": "0.18.4",
|
39
|
+
"@esbuild/win32-x64": "0.18.4"
|
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.84.0",
|
47
47
|
"constructs": "^10.0.5",
|
48
|
-
"esbuild": "^0.18.
|
48
|
+
"esbuild": "^0.18.4",
|
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.98",
|
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.84.0",
|
71
|
-
"aws-sdk": "^2.
|
71
|
+
"aws-sdk": "^2.1399.0",
|
72
72
|
"constructs": "^10.0.5",
|
73
|
-
"esbuild": "^0.18.
|
73
|
+
"esbuild": "^0.18.4"
|
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.186",
|
99
99
|
"jest": {
|
100
100
|
"testMatch": [
|
101
101
|
"<rootDir>/src/**/__tests__/**/*.ts?(x)",
|