cdk-comprehend-s3olap 2.0.54 → 2.0.57
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/aws-sdk/CHANGELOG.md +12 -1
- package/node_modules/aws-sdk/README.md +1 -1
- package/node_modules/aws-sdk/apis/license-manager-user-subscriptions-2018-05-10.examples.json +5 -0
- package/node_modules/aws-sdk/apis/license-manager-user-subscriptions-2018-05-10.min.json +446 -0
- package/node_modules/aws-sdk/apis/license-manager-user-subscriptions-2018-05-10.paginators.json +28 -0
- package/node_modules/aws-sdk/apis/metadata.json +4 -0
- package/node_modules/aws-sdk/apis/personalize-2018-05-22.min.json +28 -25
- package/node_modules/aws-sdk/apis/workspaces-2015-04-08.min.json +51 -18
- package/node_modules/aws-sdk/clients/all.d.ts +1 -0
- package/node_modules/aws-sdk/clients/all.js +2 -1
- package/node_modules/aws-sdk/clients/cognitoidentityserviceprovider.d.ts +21 -21
- package/node_modules/aws-sdk/clients/configservice.d.ts +21 -21
- package/node_modules/aws-sdk/clients/licensemanagerusersubscriptions.d.ts +490 -0
- package/node_modules/aws-sdk/clients/licensemanagerusersubscriptions.js +18 -0
- package/node_modules/aws-sdk/clients/personalize.d.ts +15 -2
- package/node_modules/aws-sdk/clients/wafv2.d.ts +44 -44
- package/node_modules/aws-sdk/clients/workspaces.d.ts +46 -0
- package/node_modules/aws-sdk/dist/aws-sdk-core-react-native.js +2 -2
- package/node_modules/aws-sdk/dist/aws-sdk-react-native.js +43 -6
- package/node_modules/aws-sdk/dist/aws-sdk.js +35 -28
- package/node_modules/aws-sdk/dist/aws-sdk.min.js +33 -33
- package/node_modules/aws-sdk/lib/config_service_placeholders.d.ts +2 -0
- 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 -0
- package/node_modules/esbuild/install.js +5 -4
- package/node_modules/esbuild/lib/main.d.ts +2 -2
- package/node_modules/esbuild/lib/main.js +22 -15
- package/node_modules/esbuild/package.json +22 -21
- package/node_modules/esbuild-linux-64/bin/esbuild +0 -0
- package/node_modules/esbuild-linux-64/package.json +1 -1
- package/package.json +7 -7
@@ -311,6 +311,7 @@ export abstract class ConfigurationServicePlaceholders {
|
|
311
311
|
connectcampaigns?: AWS.ConnectCampaigns.Types.ClientConfiguration;
|
312
312
|
redshiftserverless?: AWS.RedshiftServerless.Types.ClientConfiguration;
|
313
313
|
rolesanywhere?: AWS.RolesAnywhere.Types.ClientConfiguration;
|
314
|
+
licensemanagerusersubscriptions?: AWS.LicenseManagerUserSubscriptions.Types.ClientConfiguration;
|
314
315
|
}
|
315
316
|
export interface ConfigurationServiceApiVersions {
|
316
317
|
acm?: AWS.ACM.Types.apiVersion;
|
@@ -624,4 +625,5 @@ export interface ConfigurationServiceApiVersions {
|
|
624
625
|
connectcampaigns?: AWS.ConnectCampaigns.Types.apiVersion;
|
625
626
|
redshiftserverless?: AWS.RedshiftServerless.Types.apiVersion;
|
626
627
|
rolesanywhere?: AWS.RolesAnywhere.Types.apiVersion;
|
628
|
+
licensemanagerusersubscriptions?: AWS.LicenseManagerUserSubscriptions.Types.apiVersion;
|
627
629
|
}
|
@@ -43,6 +43,7 @@ var knownUnixlikePackages = {
|
|
43
43
|
"linux riscv64 LE": "esbuild-linux-riscv64",
|
44
44
|
"linux s390x BE": "esbuild-linux-s390x",
|
45
45
|
"linux x64 LE": "esbuild-linux-64",
|
46
|
+
"linux loong64 LE": "@esbuild/linux-loong64",
|
46
47
|
"netbsd x64 LE": "esbuild-netbsd-64",
|
47
48
|
"openbsd x64 LE": "esbuild-openbsd-64",
|
48
49
|
"sunos x64 LE": "esbuild-sunos-64"
|
@@ -42,6 +42,7 @@ var knownUnixlikePackages = {
|
|
42
42
|
"linux riscv64 LE": "esbuild-linux-riscv64",
|
43
43
|
"linux s390x BE": "esbuild-linux-s390x",
|
44
44
|
"linux x64 LE": "esbuild-linux-64",
|
45
|
+
"linux loong64 LE": "@esbuild/linux-loong64",
|
45
46
|
"netbsd x64 LE": "esbuild-netbsd-64",
|
46
47
|
"openbsd x64 LE": "esbuild-openbsd-64",
|
47
48
|
"sunos x64 LE": "esbuild-sunos-64"
|
@@ -88,8 +89,8 @@ function validateBinaryVersion(...command) {
|
|
88
89
|
const stdout = child_process.execFileSync(command.shift(), command, {
|
89
90
|
stdio: "pipe"
|
90
91
|
}).toString().trim();
|
91
|
-
if (stdout !== "0.14.
|
92
|
-
throw new Error(`Expected ${JSON.stringify("0.14.
|
92
|
+
if (stdout !== "0.14.53") {
|
93
|
+
throw new Error(`Expected ${JSON.stringify("0.14.53")} but got ${JSON.stringify(stdout)}`);
|
93
94
|
}
|
94
95
|
}
|
95
96
|
function isYarn() {
|
@@ -141,7 +142,7 @@ function installUsingNPM(pkg, subpath, binPath) {
|
|
141
142
|
try {
|
142
143
|
fs2.writeFileSync(path2.join(installDir, "package.json"), "{}");
|
143
144
|
child_process.execSync(
|
144
|
-
`npm install --loglevel=error --prefer-offline --no-audit --progress=false ${pkg}@${"0.14.
|
145
|
+
`npm install --loglevel=error --prefer-offline --no-audit --progress=false ${pkg}@${"0.14.53"}`,
|
145
146
|
{ cwd: installDir, stdio: "pipe", env }
|
146
147
|
);
|
147
148
|
const installedBinPath = path2.join(installDir, "node_modules", pkg, subpath);
|
@@ -192,7 +193,7 @@ function maybeOptimizePackage(binPath) {
|
|
192
193
|
}
|
193
194
|
}
|
194
195
|
async function downloadDirectlyFromNPM(pkg, subpath, binPath) {
|
195
|
-
const url = `https://registry.npmjs.org/${pkg}/-/${pkg}-${"0.14.
|
196
|
+
const url = `https://registry.npmjs.org/${pkg}/-/${pkg}-${"0.14.53"}.tgz`;
|
196
197
|
console.error(`[esbuild] Trying to download ${JSON.stringify(url)}`);
|
197
198
|
try {
|
198
199
|
fs2.writeFileSync(binPath, extractFileFromTarGzip(await fetch(url), subpath));
|
@@ -147,7 +147,7 @@ export interface WatchMode {
|
|
147
147
|
}
|
148
148
|
|
149
149
|
export interface StdinOptions {
|
150
|
-
contents: string;
|
150
|
+
contents: string | Uint8Array;
|
151
151
|
resolveDir?: string;
|
152
152
|
sourcefile?: string;
|
153
153
|
loader?: Loader;
|
@@ -499,7 +499,7 @@ export declare function serve(serveOptions: ServeOptions, buildOptions: BuildOpt
|
|
499
499
|
*
|
500
500
|
* Documentation: https://esbuild.github.io/api/#transform-api
|
501
501
|
*/
|
502
|
-
export declare function transform(input: string, options?: TransformOptions): Promise<TransformResult>;
|
502
|
+
export declare function transform(input: string | Uint8Array, options?: TransformOptions): Promise<TransformResult>;
|
503
503
|
|
504
504
|
/**
|
505
505
|
* Converts log messages to formatted message strings suitable for printing in
|
@@ -549,7 +549,7 @@ function flagsForBuildOptions(callName, options, isTTY2, logLevelDefault, writeD
|
|
549
549
|
}
|
550
550
|
if (stdin) {
|
551
551
|
let stdinKeys = /* @__PURE__ */ Object.create(null);
|
552
|
-
let contents = getFlag(stdin, stdinKeys, "contents",
|
552
|
+
let contents = getFlag(stdin, stdinKeys, "contents", mustBeStringOrUint8Array);
|
553
553
|
let resolveDir = getFlag(stdin, stdinKeys, "resolveDir", mustBeString);
|
554
554
|
let sourcefile = getFlag(stdin, stdinKeys, "sourcefile", mustBeString);
|
555
555
|
let loader2 = getFlag(stdin, stdinKeys, "loader", mustBeString);
|
@@ -560,7 +560,10 @@ function flagsForBuildOptions(callName, options, isTTY2, logLevelDefault, writeD
|
|
560
560
|
flags.push(`--loader=${loader2}`);
|
561
561
|
if (resolveDir)
|
562
562
|
stdinResolveDir = resolveDir + "";
|
563
|
-
|
563
|
+
if (typeof contents === "string")
|
564
|
+
stdinContents = encodeUTF8(contents);
|
565
|
+
else if (contents instanceof Uint8Array)
|
566
|
+
stdinContents = contents;
|
564
567
|
}
|
565
568
|
let nodePaths = [];
|
566
569
|
if (nodePathsInput) {
|
@@ -755,8 +758,8 @@ function createChannel(streamIn) {
|
|
755
758
|
if (isFirstPacket) {
|
756
759
|
isFirstPacket = false;
|
757
760
|
let binaryVersion = String.fromCharCode(...bytes);
|
758
|
-
if (binaryVersion !== "0.14.
|
759
|
-
throw new Error(`Cannot start service: Host version "${"0.14.
|
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)}`);
|
760
763
|
}
|
761
764
|
return;
|
762
765
|
}
|
@@ -1378,8 +1381,8 @@ function createChannel(streamIn) {
|
|
1378
1381
|
const details = createObjectStash();
|
1379
1382
|
let start = (inputPath) => {
|
1380
1383
|
try {
|
1381
|
-
if (typeof input !== "string")
|
1382
|
-
throw new Error('The input to "transform" must be a string');
|
1384
|
+
if (typeof input !== "string" && !(input instanceof Uint8Array))
|
1385
|
+
throw new Error('The input to "transform" must be a string or a Uint8Array');
|
1383
1386
|
let {
|
1384
1387
|
flags,
|
1385
1388
|
mangleCache
|
@@ -1388,7 +1391,7 @@ function createChannel(streamIn) {
|
|
1388
1391
|
command: "transform",
|
1389
1392
|
flags,
|
1390
1393
|
inputFS: inputPath !== null,
|
1391
|
-
input: inputPath !== null ? inputPath : input
|
1394
|
+
input: inputPath !== null ? encodeUTF8(inputPath) : typeof input === "string" ? encodeUTF8(input) : input
|
1392
1395
|
};
|
1393
1396
|
if (mangleCache)
|
1394
1397
|
request.mangleCache = mangleCache;
|
@@ -1445,7 +1448,7 @@ function createChannel(streamIn) {
|
|
1445
1448
|
});
|
1446
1449
|
}
|
1447
1450
|
};
|
1448
|
-
if (typeof input === "string" && input.length > 1024 * 1024) {
|
1451
|
+
if ((typeof input === "string" || input instanceof Uint8Array) && input.length > 1024 * 1024) {
|
1449
1452
|
let next = start;
|
1450
1453
|
start = () => fs3.writeFile(input, next);
|
1451
1454
|
}
|
@@ -1704,8 +1707,11 @@ function convertOutputFiles({ path: path3, contents }) {
|
|
1704
1707
|
path: path3,
|
1705
1708
|
contents,
|
1706
1709
|
get text() {
|
1707
|
-
|
1708
|
-
|
1710
|
+
const binary = this.contents;
|
1711
|
+
if (text === null || binary !== contents) {
|
1712
|
+
contents = binary;
|
1713
|
+
text = decodeUTF8(binary);
|
1714
|
+
}
|
1709
1715
|
return text;
|
1710
1716
|
}
|
1711
1717
|
};
|
@@ -1735,6 +1741,7 @@ var knownUnixlikePackages = {
|
|
1735
1741
|
"linux riscv64 LE": "esbuild-linux-riscv64",
|
1736
1742
|
"linux s390x BE": "esbuild-linux-s390x",
|
1737
1743
|
"linux x64 LE": "esbuild-linux-64",
|
1744
|
+
"linux loong64 LE": "@esbuild/linux-loong64",
|
1738
1745
|
"netbsd x64 LE": "esbuild-netbsd-64",
|
1739
1746
|
"openbsd x64 LE": "esbuild-openbsd-64",
|
1740
1747
|
"sunos x64 LE": "esbuild-sunos-64"
|
@@ -1879,7 +1886,7 @@ if (process.env.ESBUILD_WORKER_THREADS !== "0") {
|
|
1879
1886
|
}
|
1880
1887
|
}
|
1881
1888
|
var _a;
|
1882
|
-
var isInternalWorkerThread = ((_a = worker_threads == null ? void 0 : worker_threads.workerData) == null ? void 0 : _a.esbuildVersion) === "0.14.
|
1889
|
+
var isInternalWorkerThread = ((_a = worker_threads == null ? void 0 : worker_threads.workerData) == null ? void 0 : _a.esbuildVersion) === "0.14.53";
|
1883
1890
|
var esbuildCommandAndArgs = () => {
|
1884
1891
|
if ((!ESBUILD_BINARY_PATH || false) && (path2.basename(__filename) !== "main.js" || path2.basename(__dirname) !== "lib")) {
|
1885
1892
|
throw new Error(
|
@@ -1945,7 +1952,7 @@ var fsAsync = {
|
|
1945
1952
|
}
|
1946
1953
|
}
|
1947
1954
|
};
|
1948
|
-
var version = "0.14.
|
1955
|
+
var version = "0.14.53";
|
1949
1956
|
var build = (options) => ensureServiceIsRunning().build(options);
|
1950
1957
|
var serve = (serveOptions, buildOptions) => ensureServiceIsRunning().serve(serveOptions, buildOptions);
|
1951
1958
|
var transform = (input, options) => ensureServiceIsRunning().transform(input, options);
|
@@ -2056,7 +2063,7 @@ var ensureServiceIsRunning = () => {
|
|
2056
2063
|
if (longLivedService)
|
2057
2064
|
return longLivedService;
|
2058
2065
|
let [command, args] = esbuildCommandAndArgs();
|
2059
|
-
let child = child_process.spawn(command, args.concat(`--service=${"0.14.
|
2066
|
+
let child = child_process.spawn(command, args.concat(`--service=${"0.14.53"}`, "--ping"), {
|
2060
2067
|
windowsHide: true,
|
2061
2068
|
stdio: ["pipe", "pipe", "inherit"],
|
2062
2069
|
cwd: defaultWD
|
@@ -2170,7 +2177,7 @@ var runServiceSync = (callback) => {
|
|
2170
2177
|
esbuild: node_exports
|
2171
2178
|
});
|
2172
2179
|
callback(service);
|
2173
|
-
let stdout = child_process.execFileSync(command, args.concat(`--service=${"0.14.
|
2180
|
+
let stdout = child_process.execFileSync(command, args.concat(`--service=${"0.14.53"}`), {
|
2174
2181
|
cwd: defaultWD,
|
2175
2182
|
windowsHide: true,
|
2176
2183
|
input: stdin,
|
@@ -2186,7 +2193,7 @@ var workerThreadService = null;
|
|
2186
2193
|
var startWorkerThreadService = (worker_threads2) => {
|
2187
2194
|
let { port1: mainPort, port2: workerPort } = new worker_threads2.MessageChannel();
|
2188
2195
|
let worker = new worker_threads2.Worker(__filename, {
|
2189
|
-
workerData: { workerPort, defaultWD, esbuildVersion: "0.14.
|
2196
|
+
workerData: { workerPort, defaultWD, esbuildVersion: "0.14.53" },
|
2190
2197
|
transferList: [workerPort],
|
2191
2198
|
execArgv: []
|
2192
2199
|
});
|
@@ -1,6 +1,6 @@
|
|
1
1
|
{
|
2
2
|
"name": "esbuild",
|
3
|
-
"version": "0.14.
|
3
|
+
"version": "0.14.53",
|
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,27 @@
|
|
15
15
|
"esbuild": "bin/esbuild"
|
16
16
|
},
|
17
17
|
"optionalDependencies": {
|
18
|
-
"esbuild-
|
19
|
-
"esbuild-android-
|
20
|
-
"esbuild-
|
21
|
-
"esbuild-darwin-
|
22
|
-
"esbuild-
|
23
|
-
"esbuild-freebsd-
|
24
|
-
"esbuild-
|
25
|
-
"esbuild-linux-
|
26
|
-
"esbuild-linux-
|
27
|
-
"esbuild-linux-
|
28
|
-
"esbuild-linux-
|
29
|
-
"esbuild-linux-
|
30
|
-
"esbuild-linux-
|
31
|
-
"esbuild-linux-
|
32
|
-
"esbuild-
|
33
|
-
"esbuild-
|
34
|
-
"esbuild-
|
35
|
-
"esbuild-
|
36
|
-
"esbuild-windows-
|
37
|
-
"esbuild-windows-
|
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"
|
38
39
|
},
|
39
40
|
"license": "MIT"
|
40
41
|
}
|
Binary file
|
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.
|
47
|
+
"aws-cdk-lib": "^2.35.0",
|
48
48
|
"constructs": "^10.0.5",
|
49
|
-
"esbuild": "^0.14.
|
49
|
+
"esbuild": "^0.14.53",
|
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.60.
|
62
|
+
"projen": "^0.60.15",
|
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.
|
73
|
-
"aws-sdk": "^2.
|
72
|
+
"aws-cdk-lib": "^2.35.0",
|
73
|
+
"aws-sdk": "^2.1188.0",
|
74
74
|
"constructs": "^10.0.5",
|
75
|
-
"esbuild": "^0.14.
|
75
|
+
"esbuild": "^0.14.53"
|
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.
|
95
|
+
"version": "2.0.57",
|
96
96
|
"jest": {
|
97
97
|
"testMatch": [
|
98
98
|
"<rootDir>/src/**/__tests__/**/*.ts?(x)",
|