cdk-comprehend-s3olap 2.0.61 → 2.0.64

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 (38) 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 +16 -1
  6. package/node_modules/aws-sdk/README.md +1 -1
  7. package/node_modules/aws-sdk/apis/dlm-2018-01-12.min.json +15 -9
  8. package/node_modules/aws-sdk/apis/ec2-2016-11-15.min.json +627 -623
  9. package/node_modules/aws-sdk/apis/glue-2017-03-31.min.json +306 -295
  10. package/node_modules/aws-sdk/apis/iotwireless-2020-11-22.min.json +128 -87
  11. package/node_modules/aws-sdk/apis/location-2020-11-19.min.json +60 -44
  12. package/node_modules/aws-sdk/apis/pinpoint-2016-12-01.min.json +274 -191
  13. package/node_modules/aws-sdk/apis/sagemaker-2017-07-24.min.json +501 -468
  14. package/node_modules/aws-sdk/apis/sagemaker-a2i-runtime-2019-11-07.min.json +12 -8
  15. package/node_modules/aws-sdk/clients/cloudwatch.d.ts +7 -7
  16. package/node_modules/aws-sdk/clients/dlm.d.ts +30 -25
  17. package/node_modules/aws-sdk/clients/ec2.d.ts +1 -0
  18. package/node_modules/aws-sdk/clients/glue.d.ts +31 -2
  19. package/node_modules/aws-sdk/clients/iotwireless.d.ts +45 -0
  20. package/node_modules/aws-sdk/clients/location.d.ts +27 -13
  21. package/node_modules/aws-sdk/clients/pinpoint.d.ts +96 -0
  22. package/node_modules/aws-sdk/clients/quicksight.d.ts +10 -10
  23. package/node_modules/aws-sdk/clients/sagemaker.d.ts +51 -5
  24. package/node_modules/aws-sdk/clients/sso.d.ts +19 -19
  25. package/node_modules/aws-sdk/clients/ssoadmin.d.ts +82 -82
  26. package/node_modules/aws-sdk/clients/ssooidc.d.ts +11 -11
  27. package/node_modules/aws-sdk/dist/aws-sdk-core-react-native.js +1 -1
  28. package/node_modules/aws-sdk/dist/aws-sdk-react-native.js +9 -9
  29. package/node_modules/aws-sdk/dist/aws-sdk.js +690 -670
  30. package/node_modules/aws-sdk/dist/aws-sdk.min.js +65 -65
  31. package/node_modules/aws-sdk/lib/core.js +1 -1
  32. package/node_modules/aws-sdk/package.json +1 -1
  33. package/node_modules/esbuild/install.js +4 -4
  34. package/node_modules/esbuild/lib/main.js +7 -7
  35. package/node_modules/esbuild/package.json +22 -22
  36. package/node_modules/esbuild-linux-64/bin/esbuild +0 -0
  37. package/node_modules/esbuild-linux-64/package.json +1 -1
  38. package/package.json +7 -7
@@ -20,7 +20,7 @@ AWS.util.update(AWS, {
20
20
  /**
21
21
  * @constant
22
22
  */
23
- VERSION: '2.1189.0',
23
+ VERSION: '2.1192.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.1189.0",
4
+ "version": "2.1192.0",
5
5
  "author": {
6
6
  "name": "Amazon Web Services",
7
7
  "email": "",
@@ -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.14.53") {
93
- throw new Error(`Expected ${JSON.stringify("0.14.53")} but got ${JSON.stringify(stdout)}`);
92
+ if (stdout !== "0.15.1") {
93
+ throw new Error(`Expected ${JSON.stringify("0.15.1")} 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.14.53"}`,
145
+ `npm install --loglevel=error --prefer-offline --no-audit --progress=false ${pkg}@${"0.15.1"}`,
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.14.53"}.tgz`;
196
+ const url = `https://registry.npmjs.org/${pkg}/-/${pkg}-${"0.15.1"}.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.14.53") {
762
- throw new Error(`Cannot start service: Host version "${"0.14.53"}" does not match binary version ${JSON.stringify(binaryVersion)}`);
761
+ if (binaryVersion !== "0.15.1") {
762
+ throw new Error(`Cannot start service: Host version "${"0.15.1"}" does not match binary version ${JSON.stringify(binaryVersion)}`);
763
763
  }
764
764
  return;
765
765
  }
@@ -1886,7 +1886,7 @@ if (process.env.ESBUILD_WORKER_THREADS !== "0") {
1886
1886
  }
1887
1887
  }
1888
1888
  var _a;
1889
- var isInternalWorkerThread = ((_a = worker_threads == null ? void 0 : worker_threads.workerData) == null ? void 0 : _a.esbuildVersion) === "0.14.53";
1889
+ var isInternalWorkerThread = ((_a = worker_threads == null ? void 0 : worker_threads.workerData) == null ? void 0 : _a.esbuildVersion) === "0.15.1";
1890
1890
  var esbuildCommandAndArgs = () => {
1891
1891
  if ((!ESBUILD_BINARY_PATH || false) && (path2.basename(__filename) !== "main.js" || path2.basename(__dirname) !== "lib")) {
1892
1892
  throw new Error(
@@ -1952,7 +1952,7 @@ var fsAsync = {
1952
1952
  }
1953
1953
  }
1954
1954
  };
1955
- var version = "0.14.53";
1955
+ var version = "0.15.1";
1956
1956
  var build = (options) => ensureServiceIsRunning().build(options);
1957
1957
  var serve = (serveOptions, buildOptions) => ensureServiceIsRunning().serve(serveOptions, buildOptions);
1958
1958
  var transform = (input, options) => ensureServiceIsRunning().transform(input, options);
@@ -2063,7 +2063,7 @@ var ensureServiceIsRunning = () => {
2063
2063
  if (longLivedService)
2064
2064
  return longLivedService;
2065
2065
  let [command, args] = esbuildCommandAndArgs();
2066
- let child = child_process.spawn(command, args.concat(`--service=${"0.14.53"}`, "--ping"), {
2066
+ let child = child_process.spawn(command, args.concat(`--service=${"0.15.1"}`, "--ping"), {
2067
2067
  windowsHide: true,
2068
2068
  stdio: ["pipe", "pipe", "inherit"],
2069
2069
  cwd: defaultWD
@@ -2177,7 +2177,7 @@ var runServiceSync = (callback) => {
2177
2177
  esbuild: node_exports
2178
2178
  });
2179
2179
  callback(service);
2180
- let stdout = child_process.execFileSync(command, args.concat(`--service=${"0.14.53"}`), {
2180
+ let stdout = child_process.execFileSync(command, args.concat(`--service=${"0.15.1"}`), {
2181
2181
  cwd: defaultWD,
2182
2182
  windowsHide: true,
2183
2183
  input: stdin,
@@ -2193,7 +2193,7 @@ var workerThreadService = null;
2193
2193
  var startWorkerThreadService = (worker_threads2) => {
2194
2194
  let { port1: mainPort, port2: workerPort } = new worker_threads2.MessageChannel();
2195
2195
  let worker = new worker_threads2.Worker(__filename, {
2196
- workerData: { workerPort, defaultWD, esbuildVersion: "0.14.53" },
2196
+ workerData: { workerPort, defaultWD, esbuildVersion: "0.15.1" },
2197
2197
  transferList: [workerPort],
2198
2198
  execArgv: []
2199
2199
  });
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "esbuild",
3
- "version": "0.14.53",
3
+ "version": "0.15.1",
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.14.53",
19
- "esbuild-android-64": "0.14.53",
20
- "esbuild-android-arm64": "0.14.53",
21
- "esbuild-darwin-64": "0.14.53",
22
- "esbuild-darwin-arm64": "0.14.53",
23
- "esbuild-freebsd-64": "0.14.53",
24
- "esbuild-freebsd-arm64": "0.14.53",
25
- "esbuild-linux-32": "0.14.53",
26
- "esbuild-linux-64": "0.14.53",
27
- "esbuild-linux-arm": "0.14.53",
28
- "esbuild-linux-arm64": "0.14.53",
29
- "esbuild-linux-mips64le": "0.14.53",
30
- "esbuild-linux-ppc64le": "0.14.53",
31
- "esbuild-linux-riscv64": "0.14.53",
32
- "esbuild-linux-s390x": "0.14.53",
33
- "esbuild-netbsd-64": "0.14.53",
34
- "esbuild-openbsd-64": "0.14.53",
35
- "esbuild-sunos-64": "0.14.53",
36
- "esbuild-windows-32": "0.14.53",
37
- "esbuild-windows-64": "0.14.53",
38
- "esbuild-windows-arm64": "0.14.53"
18
+ "@esbuild/linux-loong64": "0.15.1",
19
+ "esbuild-android-64": "0.15.1",
20
+ "esbuild-android-arm64": "0.15.1",
21
+ "esbuild-darwin-64": "0.15.1",
22
+ "esbuild-darwin-arm64": "0.15.1",
23
+ "esbuild-freebsd-64": "0.15.1",
24
+ "esbuild-freebsd-arm64": "0.15.1",
25
+ "esbuild-linux-32": "0.15.1",
26
+ "esbuild-linux-64": "0.15.1",
27
+ "esbuild-linux-arm": "0.15.1",
28
+ "esbuild-linux-arm64": "0.15.1",
29
+ "esbuild-linux-mips64le": "0.15.1",
30
+ "esbuild-linux-ppc64le": "0.15.1",
31
+ "esbuild-linux-riscv64": "0.15.1",
32
+ "esbuild-linux-s390x": "0.15.1",
33
+ "esbuild-netbsd-64": "0.15.1",
34
+ "esbuild-openbsd-64": "0.15.1",
35
+ "esbuild-sunos-64": "0.15.1",
36
+ "esbuild-windows-32": "0.15.1",
37
+ "esbuild-windows-64": "0.15.1",
38
+ "esbuild-windows-arm64": "0.15.1"
39
39
  },
40
40
  "license": "MIT"
41
41
  }
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "esbuild-linux-64",
3
- "version": "0.14.53",
3
+ "version": "0.15.1",
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.35.0",
47
+ "aws-cdk-lib": "^2.37.1",
48
48
  "constructs": "^10.0.5",
49
- "esbuild": "^0.14.53",
49
+ "esbuild": "^0.15.1",
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.63.2",
60
60
  "json-schema": "^0.4.0",
61
61
  "npm-check-updates": "^15",
62
- "projen": "^0.61.2",
62
+ "projen": "^0.61.7",
63
63
  "standard-version": "^9",
64
64
  "ts-jest": "^27",
65
65
  "typescript": "^4.7.4"
@@ -69,10 +69,10 @@
69
69
  "constructs": "^10.0.5"
70
70
  },
71
71
  "dependencies": {
72
- "aws-cdk-lib": "^2.35.0",
73
- "aws-sdk": "^2.1189.0",
72
+ "aws-cdk-lib": "^2.37.1",
73
+ "aws-sdk": "^2.1192.0",
74
74
  "constructs": "^10.0.5",
75
- "esbuild": "^0.14.53"
75
+ "esbuild": "^0.15.1"
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.61",
95
+ "version": "2.0.64",
96
96
  "jest": {
97
97
  "testMatch": [
98
98
  "<rootDir>/src/**/__tests__/**/*.ts?(x)",