cdk-comprehend-s3olap 2.0.184 → 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.
Files changed (33) 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/@esbuild/linux-x64/bin/esbuild +0 -0
  6. package/node_modules/@esbuild/linux-x64/package.json +1 -1
  7. package/node_modules/aws-sdk/CHANGELOG.md +11 -1
  8. package/node_modules/aws-sdk/README.md +1 -1
  9. package/node_modules/aws-sdk/apis/account-2021-02-01.paginators.json +2 -1
  10. package/node_modules/aws-sdk/apis/auditmanager-2017-07-25.min.json +128 -88
  11. package/node_modules/aws-sdk/apis/connect-2017-08-08.min.json +75 -73
  12. package/node_modules/aws-sdk/apis/discovery-2015-11-01.min.json +48 -0
  13. package/node_modules/aws-sdk/apis/location-2020-11-19.min.json +56 -8
  14. package/node_modules/aws-sdk/apis/s3-2006-03-01.examples.json +137 -137
  15. package/node_modules/aws-sdk/apis/s3-2006-03-01.min.json +37 -5
  16. package/node_modules/aws-sdk/clients/auditmanager.d.ts +105 -52
  17. package/node_modules/aws-sdk/clients/connect.d.ts +13 -5
  18. package/node_modules/aws-sdk/clients/discovery.d.ts +133 -35
  19. package/node_modules/aws-sdk/clients/efs.d.ts +5 -5
  20. package/node_modules/aws-sdk/clients/guardduty.d.ts +11 -11
  21. package/node_modules/aws-sdk/clients/iam.d.ts +4 -4
  22. package/node_modules/aws-sdk/clients/location.d.ts +60 -7
  23. package/node_modules/aws-sdk/clients/s3.d.ts +67 -59
  24. package/node_modules/aws-sdk/dist/aws-sdk-core-react-native.js +1 -1
  25. package/node_modules/aws-sdk/dist/aws-sdk-react-native.js +7 -7
  26. package/node_modules/aws-sdk/dist/aws-sdk.js +171 -89
  27. package/node_modules/aws-sdk/dist/aws-sdk.min.js +54 -54
  28. package/node_modules/aws-sdk/lib/core.js +1 -1
  29. package/node_modules/aws-sdk/package.json +1 -1
  30. package/node_modules/esbuild/bin/esbuild +1 -1
  31. package/node_modules/esbuild/lib/main.js +8 -8
  32. package/node_modules/esbuild/package.json +23 -23
  33. package/package.json +5 -5
@@ -20,7 +20,7 @@ AWS.util.update(AWS, {
20
20
  /**
21
21
  * @constant
22
22
  */
23
- VERSION: '2.1397.0',
23
+ VERSION: '2.1399.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.1397.0",
4
+ "version": "2.1399.0",
5
5
  "author": {
6
6
  "name": "Amazon Web Services",
7
7
  "email": "",
@@ -199,7 +199,7 @@ for your current platform.`);
199
199
  "node_modules",
200
200
  ".cache",
201
201
  "esbuild",
202
- `pnpapi-${pkg.replace("/", "-")}-${"0.18.2"}-${path.basename(subpath)}`
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.2") {
739
- throw new Error(`Cannot start service: Host version "${"0.18.2"}" does not match binary version ${quote(binaryVersion)}`);
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.2"}-${path.basename(subpath)}`
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.2";
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.2";
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.2"}`, "--ping"), {
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.2"}`), {
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.2" },
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.2",
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.2",
19
- "@esbuild/android-arm64": "0.18.2",
20
- "@esbuild/android-x64": "0.18.2",
21
- "@esbuild/darwin-arm64": "0.18.2",
22
- "@esbuild/darwin-x64": "0.18.2",
23
- "@esbuild/freebsd-arm64": "0.18.2",
24
- "@esbuild/freebsd-x64": "0.18.2",
25
- "@esbuild/linux-arm": "0.18.2",
26
- "@esbuild/linux-arm64": "0.18.2",
27
- "@esbuild/linux-ia32": "0.18.2",
28
- "@esbuild/linux-loong64": "0.18.2",
29
- "@esbuild/linux-mips64el": "0.18.2",
30
- "@esbuild/linux-ppc64": "0.18.2",
31
- "@esbuild/linux-riscv64": "0.18.2",
32
- "@esbuild/linux-s390x": "0.18.2",
33
- "@esbuild/linux-x64": "0.18.2",
34
- "@esbuild/netbsd-x64": "0.18.2",
35
- "@esbuild/openbsd-x64": "0.18.2",
36
- "@esbuild/sunos-x64": "0.18.2",
37
- "@esbuild/win32-arm64": "0.18.2",
38
- "@esbuild/win32-ia32": "0.18.2",
39
- "@esbuild/win32-x64": "0.18.2"
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.2",
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.96",
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.1397.0",
71
+ "aws-sdk": "^2.1399.0",
72
72
  "constructs": "^10.0.5",
73
- "esbuild": "^0.18.2"
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.184",
98
+ "version": "2.0.186",
99
99
  "jest": {
100
100
  "testMatch": [
101
101
  "<rootDir>/src/**/__tests__/**/*.ts?(x)",