cdk-comprehend-s3olap 2.0.11 → 2.0.14

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.
@@ -20,7 +20,7 @@ AWS.util.update(AWS, {
20
20
  /**
21
21
  * @constant
22
22
  */
23
- VERSION: '2.1157.0',
23
+ VERSION: '2.1158.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.1157.0",
4
+ "version": "2.1158.0",
5
5
  "author": {
6
6
  "name": "Amazon Web Services",
7
7
  "email": "",
@@ -1,27 +1,10 @@
1
1
  "use strict";
2
2
  var __create = Object.create;
3
3
  var __defProp = Object.defineProperty;
4
- var __defProps = Object.defineProperties;
5
4
  var __getOwnPropDesc = Object.getOwnPropertyDescriptor;
6
- var __getOwnPropDescs = Object.getOwnPropertyDescriptors;
7
5
  var __getOwnPropNames = Object.getOwnPropertyNames;
8
- var __getOwnPropSymbols = Object.getOwnPropertySymbols;
9
6
  var __getProtoOf = Object.getPrototypeOf;
10
7
  var __hasOwnProp = Object.prototype.hasOwnProperty;
11
- var __propIsEnum = Object.prototype.propertyIsEnumerable;
12
- var __defNormalProp = (obj, key, value) => key in obj ? __defProp(obj, key, { enumerable: true, configurable: true, writable: true, value }) : obj[key] = value;
13
- var __spreadValues = (a, b) => {
14
- for (var prop in b || (b = {}))
15
- if (__hasOwnProp.call(b, prop))
16
- __defNormalProp(a, prop, b[prop]);
17
- if (__getOwnPropSymbols)
18
- for (var prop of __getOwnPropSymbols(b)) {
19
- if (__propIsEnum.call(b, prop))
20
- __defNormalProp(a, prop, b[prop]);
21
- }
22
- return a;
23
- };
24
- var __spreadProps = (a, b) => __defProps(a, __getOwnPropDescs(b));
25
8
  var __copyProps = (to, from, except, desc) => {
26
9
  if (from && typeof from === "object" || typeof from === "function") {
27
10
  for (let key of __getOwnPropNames(from))
@@ -102,8 +85,8 @@ function validateBinaryVersion(...command) {
102
85
  const stdout = child_process.execFileSync(command.shift(), command, {
103
86
  stdio: "pipe"
104
87
  }).toString().trim();
105
- if (stdout !== "0.14.45") {
106
- throw new Error(`Expected ${JSON.stringify("0.14.45")} but got ${JSON.stringify(stdout)}`);
88
+ if (stdout !== "0.14.47") {
89
+ throw new Error(`Expected ${JSON.stringify("0.14.47")} but got ${JSON.stringify(stdout)}`);
107
90
  }
108
91
  }
109
92
  function isYarn() {
@@ -148,13 +131,13 @@ function extractFileFromTarGzip(buffer, subpath) {
148
131
  throw new Error(`Could not find ${JSON.stringify(subpath)} in archive`);
149
132
  }
150
133
  function installUsingNPM(pkg, subpath, binPath) {
151
- const env = __spreadProps(__spreadValues({}, process.env), { npm_config_global: void 0 });
134
+ const env = { ...process.env, npm_config_global: void 0 };
152
135
  const esbuildLibDir = path2.dirname(require.resolve("esbuild"));
153
136
  const installDir = path2.join(esbuildLibDir, "npm-install");
154
137
  fs2.mkdirSync(installDir);
155
138
  try {
156
139
  fs2.writeFileSync(path2.join(installDir, "package.json"), "{}");
157
- child_process.execSync(`npm install --loglevel=error --prefer-offline --no-audit --progress=false ${pkg}@${"0.14.45"}`, { cwd: installDir, stdio: "pipe", env });
140
+ child_process.execSync(`npm install --loglevel=error --prefer-offline --no-audit --progress=false ${pkg}@${"0.14.47"}`, { cwd: installDir, stdio: "pipe", env });
158
141
  const installedBinPath = path2.join(installDir, "node_modules", pkg, subpath);
159
142
  fs2.renameSync(installedBinPath, binPath);
160
143
  } finally {
@@ -203,7 +186,7 @@ function maybeOptimizePackage(binPath) {
203
186
  }
204
187
  }
205
188
  async function downloadDirectlyFromNPM(pkg, subpath, binPath) {
206
- const url = `https://registry.npmjs.org/${pkg}/-/${pkg}-${"0.14.45"}.tgz`;
189
+ const url = `https://registry.npmjs.org/${pkg}/-/${pkg}-${"0.14.47"}.tgz`;
207
190
  console.error(`[esbuild] Trying to download ${JSON.stringify(url)}`);
208
191
  try {
209
192
  fs2.writeFileSync(binPath, extractFileFromTarGzip(await fetch(url), subpath));
@@ -21,6 +21,8 @@ interface CommonOptions {
21
21
  globalName?: string;
22
22
  /** Documentation: https://esbuild.github.io/api/#target */
23
23
  target?: string | string[];
24
+ /** Documentation: https://esbuild.github.io/api/#supported */
25
+ supported?: Record<string, boolean>;
24
26
 
25
27
  /** Documentation: https://esbuild.github.io/api/#mangle-props */
26
28
  mangleProps?: RegExp;
@@ -1,27 +1,10 @@
1
1
  "use strict";
2
2
  var __create = Object.create;
3
3
  var __defProp = Object.defineProperty;
4
- var __defProps = Object.defineProperties;
5
4
  var __getOwnPropDesc = Object.getOwnPropertyDescriptor;
6
- var __getOwnPropDescs = Object.getOwnPropertyDescriptors;
7
5
  var __getOwnPropNames = Object.getOwnPropertyNames;
8
- var __getOwnPropSymbols = Object.getOwnPropertySymbols;
9
6
  var __getProtoOf = Object.getPrototypeOf;
10
7
  var __hasOwnProp = Object.prototype.hasOwnProperty;
11
- var __propIsEnum = Object.prototype.propertyIsEnumerable;
12
- var __defNormalProp = (obj, key, value) => key in obj ? __defProp(obj, key, { enumerable: true, configurable: true, writable: true, value }) : obj[key] = value;
13
- var __spreadValues = (a, b) => {
14
- for (var prop in b || (b = {}))
15
- if (__hasOwnProp.call(b, prop))
16
- __defNormalProp(a, prop, b[prop]);
17
- if (__getOwnPropSymbols)
18
- for (var prop of __getOwnPropSymbols(b)) {
19
- if (__propIsEnum.call(b, prop))
20
- __defNormalProp(a, prop, b[prop]);
21
- }
22
- return a;
23
- };
24
- var __spreadProps = (a, b) => __defProps(a, __getOwnPropDescs(b));
25
8
  var __export = (target, all) => {
26
9
  for (var name in all)
27
10
  __defProp(target, name, { get: all[name], enumerable: true });
@@ -320,6 +303,7 @@ function pushCommonFlags(flags, options, keys) {
320
303
  let jsxFragment = getFlag(options, keys, "jsxFragment", mustBeString);
321
304
  let define = getFlag(options, keys, "define", mustBeObject);
322
305
  let logOverride = getFlag(options, keys, "logOverride", mustBeObject);
306
+ let supported = getFlag(options, keys, "supported", mustBeObject);
323
307
  let pure = getFlag(options, keys, "pure", mustBeArray);
324
308
  let keepNames = getFlag(options, keys, "keepNames", mustBeBoolean);
325
309
  if (legalComments)
@@ -381,6 +365,13 @@ function pushCommonFlags(flags, options, keys) {
381
365
  flags.push(`--log-override:${key}=${logOverride[key]}`);
382
366
  }
383
367
  }
368
+ if (supported) {
369
+ for (let key in supported) {
370
+ if (key.indexOf("=") >= 0)
371
+ throw new Error(`Invalid supported: ${key}`);
372
+ flags.push(`--supported:${key}=${supported[key]}`);
373
+ }
374
+ }
384
375
  if (pure)
385
376
  for (let fn of pure)
386
377
  flags.push(`--pure:${fn}`);
@@ -755,8 +746,8 @@ function createChannel(streamIn) {
755
746
  if (isFirstPacket) {
756
747
  isFirstPacket = false;
757
748
  let binaryVersion = String.fromCharCode(...bytes);
758
- if (binaryVersion !== "0.14.45") {
759
- throw new Error(`Cannot start service: Host version "${"0.14.45"}" does not match binary version ${JSON.stringify(binaryVersion)}`);
749
+ if (binaryVersion !== "0.14.47") {
750
+ throw new Error(`Cannot start service: Host version "${"0.14.47"}" does not match binary version ${JSON.stringify(binaryVersion)}`);
760
751
  }
761
752
  return;
762
753
  }
@@ -1148,14 +1139,15 @@ function createChannel(streamIn) {
1148
1139
  handleError(result.error, result.pluginName);
1149
1140
  } else {
1150
1141
  try {
1151
- buildOrServeContinue(__spreadProps(__spreadValues({}, args), {
1142
+ buildOrServeContinue({
1143
+ ...args,
1152
1144
  key,
1153
1145
  details,
1154
1146
  logPluginError,
1155
1147
  requestPlugins: result.requestPlugins,
1156
1148
  runOnEndCallbacks: result.runOnEndCallbacks,
1157
1149
  pluginRefs: result.pluginRefs
1158
- }));
1150
+ });
1159
1151
  } catch (e) {
1160
1152
  handleError(e, "");
1161
1153
  }
@@ -1163,14 +1155,15 @@ function createChannel(streamIn) {
1163
1155
  }, (e) => handleError(e, ""));
1164
1156
  } else {
1165
1157
  try {
1166
- buildOrServeContinue(__spreadProps(__spreadValues({}, args), {
1158
+ buildOrServeContinue({
1159
+ ...args,
1167
1160
  key,
1168
1161
  details,
1169
1162
  logPluginError,
1170
1163
  requestPlugins: null,
1171
1164
  runOnEndCallbacks: (result, logPluginError2, done) => done(),
1172
1165
  pluginRefs: null
1173
- }));
1166
+ });
1174
1167
  } catch (e) {
1175
1168
  handleError(e, "");
1176
1169
  }
@@ -1870,7 +1863,7 @@ if (process.env.ESBUILD_WORKER_THREADS !== "0") {
1870
1863
  }
1871
1864
  }
1872
1865
  var _a;
1873
- var isInternalWorkerThread = ((_a = worker_threads == null ? void 0 : worker_threads.workerData) == null ? void 0 : _a.esbuildVersion) === "0.14.45";
1866
+ var isInternalWorkerThread = ((_a = worker_threads == null ? void 0 : worker_threads.workerData) == null ? void 0 : _a.esbuildVersion) === "0.14.47";
1874
1867
  var esbuildCommandAndArgs = () => {
1875
1868
  if ((!ESBUILD_BINARY_PATH || false) && (path2.basename(__filename) !== "main.js" || path2.basename(__dirname) !== "lib")) {
1876
1869
  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.
@@ -1934,7 +1927,7 @@ var fsAsync = {
1934
1927
  }
1935
1928
  }
1936
1929
  };
1937
- var version = "0.14.45";
1930
+ var version = "0.14.47";
1938
1931
  var build = (options) => ensureServiceIsRunning().build(options);
1939
1932
  var serve = (serveOptions, buildOptions) => ensureServiceIsRunning().serve(serveOptions, buildOptions);
1940
1933
  var transform = (input, options) => ensureServiceIsRunning().transform(input, options);
@@ -2045,7 +2038,7 @@ var ensureServiceIsRunning = () => {
2045
2038
  if (longLivedService)
2046
2039
  return longLivedService;
2047
2040
  let [command, args] = esbuildCommandAndArgs();
2048
- let child = child_process.spawn(command, args.concat(`--service=${"0.14.45"}`, "--ping"), {
2041
+ let child = child_process.spawn(command, args.concat(`--service=${"0.14.47"}`, "--ping"), {
2049
2042
  windowsHide: true,
2050
2043
  stdio: ["pipe", "pipe", "inherit"],
2051
2044
  cwd: defaultWD
@@ -2159,7 +2152,7 @@ var runServiceSync = (callback) => {
2159
2152
  esbuild: node_exports
2160
2153
  });
2161
2154
  callback(service);
2162
- let stdout = child_process.execFileSync(command, args.concat(`--service=${"0.14.45"}`), {
2155
+ let stdout = child_process.execFileSync(command, args.concat(`--service=${"0.14.47"}`), {
2163
2156
  cwd: defaultWD,
2164
2157
  windowsHide: true,
2165
2158
  input: stdin,
@@ -2175,7 +2168,7 @@ var workerThreadService = null;
2175
2168
  var startWorkerThreadService = (worker_threads2) => {
2176
2169
  let { port1: mainPort, port2: workerPort } = new worker_threads2.MessageChannel();
2177
2170
  let worker = new worker_threads2.Worker(__filename, {
2178
- workerData: { workerPort, defaultWD, esbuildVersion: "0.14.45" },
2171
+ workerData: { workerPort, defaultWD, esbuildVersion: "0.14.47" },
2179
2172
  transferList: [workerPort],
2180
2173
  execArgv: []
2181
2174
  });
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "esbuild",
3
- "version": "0.14.45",
3
+ "version": "0.14.47",
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.45",
19
- "esbuild-android-arm64": "0.14.45",
20
- "esbuild-darwin-64": "0.14.45",
21
- "esbuild-darwin-arm64": "0.14.45",
22
- "esbuild-freebsd-64": "0.14.45",
23
- "esbuild-freebsd-arm64": "0.14.45",
24
- "esbuild-linux-32": "0.14.45",
25
- "esbuild-linux-64": "0.14.45",
26
- "esbuild-linux-arm": "0.14.45",
27
- "esbuild-linux-arm64": "0.14.45",
28
- "esbuild-linux-mips64le": "0.14.45",
29
- "esbuild-linux-ppc64le": "0.14.45",
30
- "esbuild-linux-riscv64": "0.14.45",
31
- "esbuild-linux-s390x": "0.14.45",
32
- "esbuild-netbsd-64": "0.14.45",
33
- "esbuild-openbsd-64": "0.14.45",
34
- "esbuild-sunos-64": "0.14.45",
35
- "esbuild-windows-32": "0.14.45",
36
- "esbuild-windows-64": "0.14.45",
37
- "esbuild-windows-arm64": "0.14.45"
18
+ "esbuild-android-64": "0.14.47",
19
+ "esbuild-android-arm64": "0.14.47",
20
+ "esbuild-darwin-64": "0.14.47",
21
+ "esbuild-darwin-arm64": "0.14.47",
22
+ "esbuild-freebsd-64": "0.14.47",
23
+ "esbuild-freebsd-arm64": "0.14.47",
24
+ "esbuild-linux-32": "0.14.47",
25
+ "esbuild-linux-64": "0.14.47",
26
+ "esbuild-linux-arm": "0.14.47",
27
+ "esbuild-linux-arm64": "0.14.47",
28
+ "esbuild-linux-mips64le": "0.14.47",
29
+ "esbuild-linux-ppc64le": "0.14.47",
30
+ "esbuild-linux-riscv64": "0.14.47",
31
+ "esbuild-linux-s390x": "0.14.47",
32
+ "esbuild-netbsd-64": "0.14.47",
33
+ "esbuild-openbsd-64": "0.14.47",
34
+ "esbuild-sunos-64": "0.14.47",
35
+ "esbuild-windows-32": "0.14.47",
36
+ "esbuild-windows-64": "0.14.47",
37
+ "esbuild-windows-arm64": "0.14.47"
38
38
  },
39
39
  "license": "MIT"
40
40
  }
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "esbuild-linux-64",
3
- "version": "0.14.45",
3
+ "version": "0.14.47",
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
@@ -46,7 +46,7 @@
46
46
  "@typescript-eslint/parser": "^5",
47
47
  "aws-cdk-lib": "^2.28.1",
48
48
  "constructs": "^10.0.5",
49
- "esbuild": "^0.14.45",
49
+ "esbuild": "^0.14.47",
50
50
  "eslint": "^8",
51
51
  "eslint-import-resolver-node": "^0.3.6",
52
52
  "eslint-import-resolver-typescript": "^2.7.1",
@@ -70,9 +70,9 @@
70
70
  },
71
71
  "dependencies": {
72
72
  "aws-cdk-lib": "^2.28.1",
73
- "aws-sdk": "^2.1157.0",
73
+ "aws-sdk": "^2.1158.0",
74
74
  "constructs": "^10.0.5",
75
- "esbuild": "^0.14.45"
75
+ "esbuild": "^0.14.47"
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.11",
95
+ "version": "2.0.14",
96
96
  "jest": {
97
97
  "testMatch": [
98
98
  "<rootDir>/src/**/__tests__/**/*.ts?(x)",