cdk-comprehend-s3olap 2.0.8 → 2.0.9

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.
Files changed (28) hide show
  1. package/.jsii +4 -4
  2. package/lib/cdk-comprehend-s3olap.js +2 -2
  3. package/lib/comprehend-lambdas.js +2 -2
  4. package/lib/iam-roles.js +4 -4
  5. package/node_modules/aws-sdk/CHANGELOG.md +7 -1
  6. package/node_modules/aws-sdk/README.md +1 -1
  7. package/node_modules/aws-sdk/apis/finspace-data-2020-07-13.min.json +278 -73
  8. package/node_modules/aws-sdk/apis/guardduty-2017-11-28.min.json +325 -98
  9. package/node_modules/aws-sdk/apis/servicecatalog-appregistry-2020-06-24.min.json +45 -0
  10. package/node_modules/aws-sdk/apis/servicecatalog-appregistry-2020-06-24.paginators.json +6 -0
  11. package/node_modules/aws-sdk/clients/finspacedata.d.ts +201 -4
  12. package/node_modules/aws-sdk/clients/guardduty.d.ts +186 -4
  13. package/node_modules/aws-sdk/clients/servicecatalogappregistry.d.ts +49 -2
  14. package/node_modules/aws-sdk/clients/workspaces.d.ts +10 -10
  15. package/node_modules/aws-sdk/dist/aws-sdk-core-react-native.js +1 -1
  16. package/node_modules/aws-sdk/dist/aws-sdk-react-native.js +5 -5
  17. package/node_modules/aws-sdk/dist/aws-sdk.js +3 -3
  18. package/node_modules/aws-sdk/dist/aws-sdk.min.js +2 -2
  19. package/node_modules/aws-sdk/lib/core.js +1 -1
  20. package/node_modules/aws-sdk/package.json +1 -1
  21. package/node_modules/esbuild/bin/esbuild +1 -0
  22. package/node_modules/esbuild/install.js +5 -4
  23. package/node_modules/esbuild/lib/main.d.ts +1 -1
  24. package/node_modules/esbuild/lib/main.js +8 -7
  25. package/node_modules/esbuild/package.json +21 -21
  26. package/node_modules/esbuild-linux-64/bin/esbuild +0 -0
  27. package/node_modules/esbuild-linux-64/package.json +1 -1
  28. package/package.json +7 -7
@@ -20,7 +20,7 @@ AWS.util.update(AWS, {
20
20
  /**
21
21
  * @constant
22
22
  */
23
- VERSION: '2.1154.0',
23
+ VERSION: '2.1155.0',
24
24
 
25
25
  /**
26
26
  * @api private
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "name": "aws-sdk",
3
3
  "description": "AWS SDK for JavaScript",
4
- "version": "2.1154.0",
4
+ "version": "2.1155.0",
5
5
  "author": {
6
6
  "name": "Amazon Web Services",
7
7
  "email": "",
@@ -1,4 +1,5 @@
1
1
  #!/usr/bin/env node
2
+ "use strict";
2
3
  var __create = Object.create;
3
4
  var __defProp = Object.defineProperty;
4
5
  var __getOwnPropDesc = Object.getOwnPropertyDescriptor;
@@ -1,3 +1,4 @@
1
+ "use strict";
1
2
  var __create = Object.create;
2
3
  var __defProp = Object.defineProperty;
3
4
  var __defProps = Object.defineProperties;
@@ -101,8 +102,8 @@ function validateBinaryVersion(...command) {
101
102
  const stdout = child_process.execFileSync(command.shift(), command, {
102
103
  stdio: "pipe"
103
104
  }).toString().trim();
104
- if (stdout !== "0.14.43") {
105
- throw new Error(`Expected ${JSON.stringify("0.14.43")} but got ${JSON.stringify(stdout)}`);
105
+ if (stdout !== "0.14.44") {
106
+ throw new Error(`Expected ${JSON.stringify("0.14.44")} but got ${JSON.stringify(stdout)}`);
106
107
  }
107
108
  }
108
109
  function isYarn() {
@@ -153,7 +154,7 @@ function installUsingNPM(pkg, subpath, binPath) {
153
154
  fs2.mkdirSync(installDir);
154
155
  try {
155
156
  fs2.writeFileSync(path2.join(installDir, "package.json"), "{}");
156
- child_process.execSync(`npm install --loglevel=error --prefer-offline --no-audit --progress=false ${pkg}@${"0.14.43"}`, { cwd: installDir, stdio: "pipe", env });
157
+ child_process.execSync(`npm install --loglevel=error --prefer-offline --no-audit --progress=false ${pkg}@${"0.14.44"}`, { cwd: installDir, stdio: "pipe", env });
157
158
  const installedBinPath = path2.join(installDir, "node_modules", pkg, subpath);
158
159
  fs2.renameSync(installedBinPath, binPath);
159
160
  } finally {
@@ -202,7 +203,7 @@ function maybeOptimizePackage(binPath) {
202
203
  }
203
204
  }
204
205
  async function downloadDirectlyFromNPM(pkg, subpath, binPath) {
205
- const url = `https://registry.npmjs.org/${pkg}/-/${pkg}-${"0.14.43"}.tgz`;
206
+ const url = `https://registry.npmjs.org/${pkg}/-/${pkg}-${"0.14.44"}.tgz`;
206
207
  console.error(`[esbuild] Trying to download ${JSON.stringify(url)}`);
207
208
  try {
208
209
  fs2.writeFileSync(binPath, extractFileFromTarGzip(await fetch(url), subpath));
@@ -1,6 +1,6 @@
1
1
  export type Platform = 'browser' | 'node' | 'neutral';
2
2
  export type Format = 'iife' | 'cjs' | 'esm';
3
- export type Loader = 'js' | 'jsx' | 'ts' | 'tsx' | 'css' | 'json' | 'text' | 'base64' | 'file' | 'dataurl' | 'binary' | 'default';
3
+ export type Loader = 'js' | 'jsx' | 'ts' | 'tsx' | 'css' | 'json' | 'text' | 'base64' | 'file' | 'dataurl' | 'binary' | 'copy' | 'default';
4
4
  export type LogLevel = 'verbose' | 'debug' | 'info' | 'warning' | 'error' | 'silent';
5
5
  export type Charset = 'ascii' | 'utf8';
6
6
  export type Drop = 'console' | 'debugger';
@@ -1,3 +1,4 @@
1
+ "use strict";
1
2
  var __create = Object.create;
2
3
  var __defProp = Object.defineProperty;
3
4
  var __defProps = Object.defineProperties;
@@ -754,8 +755,8 @@ function createChannel(streamIn) {
754
755
  if (isFirstPacket) {
755
756
  isFirstPacket = false;
756
757
  let binaryVersion = String.fromCharCode(...bytes);
757
- if (binaryVersion !== "0.14.43") {
758
- throw new Error(`Cannot start service: Host version "${"0.14.43"}" does not match binary version ${JSON.stringify(binaryVersion)}`);
758
+ if (binaryVersion !== "0.14.44") {
759
+ throw new Error(`Cannot start service: Host version "${"0.14.44"}" does not match binary version ${JSON.stringify(binaryVersion)}`);
759
760
  }
760
761
  return;
761
762
  }
@@ -1867,7 +1868,7 @@ if (process.env.ESBUILD_WORKER_THREADS !== "0") {
1867
1868
  }
1868
1869
  }
1869
1870
  var _a;
1870
- var isInternalWorkerThread = ((_a = worker_threads == null ? void 0 : worker_threads.workerData) == null ? void 0 : _a.esbuildVersion) === "0.14.43";
1871
+ var isInternalWorkerThread = ((_a = worker_threads == null ? void 0 : worker_threads.workerData) == null ? void 0 : _a.esbuildVersion) === "0.14.44";
1871
1872
  var esbuildCommandAndArgs = () => {
1872
1873
  if ((!ESBUILD_BINARY_PATH || false) && (path2.basename(__filename) !== "main.js" || path2.basename(__dirname) !== "lib")) {
1873
1874
  throw new Error(`The esbuild JavaScript API cannot be bundled. Please mark the "esbuild" package as external so it's not included in the bundle.
@@ -1931,7 +1932,7 @@ var fsAsync = {
1931
1932
  }
1932
1933
  }
1933
1934
  };
1934
- var version = "0.14.43";
1935
+ var version = "0.14.44";
1935
1936
  var build = (options) => ensureServiceIsRunning().build(options);
1936
1937
  var serve = (serveOptions, buildOptions) => ensureServiceIsRunning().serve(serveOptions, buildOptions);
1937
1938
  var transform = (input, options) => ensureServiceIsRunning().transform(input, options);
@@ -2040,7 +2041,7 @@ var ensureServiceIsRunning = () => {
2040
2041
  if (longLivedService)
2041
2042
  return longLivedService;
2042
2043
  let [command, args] = esbuildCommandAndArgs();
2043
- let child = child_process.spawn(command, args.concat(`--service=${"0.14.43"}`, "--ping"), {
2044
+ let child = child_process.spawn(command, args.concat(`--service=${"0.14.44"}`, "--ping"), {
2044
2045
  windowsHide: true,
2045
2046
  stdio: ["pipe", "pipe", "inherit"],
2046
2047
  cwd: defaultWD
@@ -2154,7 +2155,7 @@ var runServiceSync = (callback) => {
2154
2155
  esbuild: node_exports
2155
2156
  });
2156
2157
  callback(service);
2157
- let stdout = child_process.execFileSync(command, args.concat(`--service=${"0.14.43"}`), {
2158
+ let stdout = child_process.execFileSync(command, args.concat(`--service=${"0.14.44"}`), {
2158
2159
  cwd: defaultWD,
2159
2160
  windowsHide: true,
2160
2161
  input: stdin,
@@ -2170,7 +2171,7 @@ var workerThreadService = null;
2170
2171
  var startWorkerThreadService = (worker_threads2) => {
2171
2172
  let { port1: mainPort, port2: workerPort } = new worker_threads2.MessageChannel();
2172
2173
  let worker = new worker_threads2.Worker(__filename, {
2173
- workerData: { workerPort, defaultWD, esbuildVersion: "0.14.43" },
2174
+ workerData: { workerPort, defaultWD, esbuildVersion: "0.14.44" },
2174
2175
  transferList: [workerPort],
2175
2176
  execArgv: []
2176
2177
  });
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "esbuild",
3
- "version": "0.14.43",
3
+ "version": "0.14.44",
4
4
  "description": "An extremely fast JavaScript and CSS bundler and minifier.",
5
5
  "repository": "https://github.com/evanw/esbuild",
6
6
  "scripts": {
@@ -15,26 +15,26 @@
15
15
  "esbuild": "bin/esbuild"
16
16
  },
17
17
  "optionalDependencies": {
18
- "esbuild-android-64": "0.14.43",
19
- "esbuild-android-arm64": "0.14.43",
20
- "esbuild-darwin-64": "0.14.43",
21
- "esbuild-darwin-arm64": "0.14.43",
22
- "esbuild-freebsd-64": "0.14.43",
23
- "esbuild-freebsd-arm64": "0.14.43",
24
- "esbuild-linux-32": "0.14.43",
25
- "esbuild-linux-64": "0.14.43",
26
- "esbuild-linux-arm": "0.14.43",
27
- "esbuild-linux-arm64": "0.14.43",
28
- "esbuild-linux-mips64le": "0.14.43",
29
- "esbuild-linux-ppc64le": "0.14.43",
30
- "esbuild-linux-riscv64": "0.14.43",
31
- "esbuild-linux-s390x": "0.14.43",
32
- "esbuild-netbsd-64": "0.14.43",
33
- "esbuild-openbsd-64": "0.14.43",
34
- "esbuild-sunos-64": "0.14.43",
35
- "esbuild-windows-32": "0.14.43",
36
- "esbuild-windows-64": "0.14.43",
37
- "esbuild-windows-arm64": "0.14.43"
18
+ "esbuild-android-64": "0.14.44",
19
+ "esbuild-android-arm64": "0.14.44",
20
+ "esbuild-darwin-64": "0.14.44",
21
+ "esbuild-darwin-arm64": "0.14.44",
22
+ "esbuild-freebsd-64": "0.14.44",
23
+ "esbuild-freebsd-arm64": "0.14.44",
24
+ "esbuild-linux-32": "0.14.44",
25
+ "esbuild-linux-64": "0.14.44",
26
+ "esbuild-linux-arm": "0.14.44",
27
+ "esbuild-linux-arm64": "0.14.44",
28
+ "esbuild-linux-mips64le": "0.14.44",
29
+ "esbuild-linux-ppc64le": "0.14.44",
30
+ "esbuild-linux-riscv64": "0.14.44",
31
+ "esbuild-linux-s390x": "0.14.44",
32
+ "esbuild-netbsd-64": "0.14.44",
33
+ "esbuild-openbsd-64": "0.14.44",
34
+ "esbuild-sunos-64": "0.14.44",
35
+ "esbuild-windows-32": "0.14.44",
36
+ "esbuild-windows-64": "0.14.44",
37
+ "esbuild-windows-arm64": "0.14.44"
38
38
  },
39
39
  "license": "MIT"
40
40
  }
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "esbuild-linux-64",
3
- "version": "0.14.43",
3
+ "version": "0.14.44",
4
4
  "description": "The Linux 64-bit binary for esbuild, a JavaScript bundler.",
5
5
  "repository": "https://github.com/evanw/esbuild",
6
6
  "license": "MIT",
package/package.json CHANGED
@@ -44,9 +44,9 @@
44
44
  "@types/node": "^14",
45
45
  "@typescript-eslint/eslint-plugin": "^5",
46
46
  "@typescript-eslint/parser": "^5",
47
- "aws-cdk-lib": "^2.28.0",
47
+ "aws-cdk-lib": "^2.28.1",
48
48
  "constructs": "^10.0.5",
49
- "esbuild": "^0.14.43",
49
+ "esbuild": "^0.14.44",
50
50
  "eslint": "^8",
51
51
  "eslint-import-resolver-node": "^0.3.6",
52
52
  "eslint-import-resolver-typescript": "^2.7.1",
@@ -59,7 +59,7 @@
59
59
  "jsii-pacmak": "^1.60.1",
60
60
  "json-schema": "^0.4.0",
61
61
  "npm-check-updates": "^12",
62
- "projen": "^0.58.13",
62
+ "projen": "^0.58.15",
63
63
  "standard-version": "^9",
64
64
  "ts-jest": "^27",
65
65
  "typescript": "^4.7.3"
@@ -69,10 +69,10 @@
69
69
  "constructs": "^10.0.5"
70
70
  },
71
71
  "dependencies": {
72
- "aws-cdk-lib": "^2.28.0",
73
- "aws-sdk": "^2.1154.0",
72
+ "aws-cdk-lib": "^2.28.1",
73
+ "aws-sdk": "^2.1155.0",
74
74
  "constructs": "^10.0.5",
75
- "esbuild": "^0.14.43"
75
+ "esbuild": "^0.14.44"
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.8",
95
+ "version": "2.0.9",
96
96
  "jest": {
97
97
  "testMatch": [
98
98
  "<rootDir>/src/**/__tests__/**/*.ts?(x)",