cdk-comprehend-s3olap 2.0.87 → 2.0.90
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 +23 -1
- package/node_modules/aws-sdk/README.md +1 -1
- package/node_modules/aws-sdk/apis/dataexchange-2017-07-25.examples.json +5 -0
- package/node_modules/aws-sdk/apis/dataexchange-2017-07-25.min.json +337 -335
- package/node_modules/aws-sdk/apis/dataexchange-2017-07-25.paginators.json +1 -1
- package/node_modules/aws-sdk/apis/dataexchange-2017-07-25.waiters2.json +5 -0
- package/node_modules/aws-sdk/apis/ec2-2016-11-15.min.json +4 -0
- package/node_modules/aws-sdk/apis/emr-containers-2020-10-01.min.json +34 -19
- package/node_modules/aws-sdk/apis/inspector2-2020-06-08.min.json +10 -2
- package/node_modules/aws-sdk/apis/iotsitewise-2019-12-02.min.json +2 -1
- package/node_modules/aws-sdk/apis/lookoutmetrics-2017-07-25.min.json +39 -11
- package/node_modules/aws-sdk/apis/medialive-2017-10-14.min.json +249 -213
- package/node_modules/aws-sdk/apis/sagemaker-2017-07-24.min.json +742 -687
- package/node_modules/aws-sdk/apis/sns-2010-03-31.min.json +42 -10
- package/node_modules/aws-sdk/apis/ssm-2014-11-06.min.json +3 -0
- package/node_modules/aws-sdk/clients/dataexchange.d.ts +13 -13
- package/node_modules/aws-sdk/clients/dataexchange.js +1 -0
- package/node_modules/aws-sdk/clients/ec2.d.ts +48 -40
- package/node_modules/aws-sdk/clients/eks.d.ts +7 -7
- package/node_modules/aws-sdk/clients/emrcontainers.d.ts +16 -1
- package/node_modules/aws-sdk/clients/fsx.d.ts +2 -2
- package/node_modules/aws-sdk/clients/identitystore.d.ts +34 -34
- package/node_modules/aws-sdk/clients/inspector2.d.ts +16 -2
- package/node_modules/aws-sdk/clients/iotsitewise.d.ts +12 -8
- package/node_modules/aws-sdk/clients/lookoutmetrics.d.ts +35 -0
- package/node_modules/aws-sdk/clients/medialive.d.ts +38 -0
- package/node_modules/aws-sdk/clients/route53.d.ts +2 -2
- package/node_modules/aws-sdk/clients/sagemaker.d.ts +73 -4
- package/node_modules/aws-sdk/clients/sns.d.ts +42 -0
- package/node_modules/aws-sdk/clients/ssm.d.ts +10 -6
- package/node_modules/aws-sdk/dist/aws-sdk-core-react-native.js +1 -1
- package/node_modules/aws-sdk/dist/aws-sdk-react-native.js +755 -748
- package/node_modules/aws-sdk/dist/aws-sdk.js +52 -13
- package/node_modules/aws-sdk/dist/aws-sdk.min.js +69 -69
- package/node_modules/aws-sdk/lib/core.js +1 -1
- package/node_modules/aws-sdk/lib/credentials/sso_credentials.d.ts +2 -0
- package/node_modules/aws-sdk/lib/credentials/sso_credentials.js +5 -1
- package/node_modules/aws-sdk/package.json +1 -1
- package/node_modules/esbuild/bin/esbuild +1 -1
- package/node_modules/esbuild/install.js +5 -5
- package/node_modules/esbuild/lib/main.js +14 -13
- package/node_modules/esbuild/package.json +22 -22
- package/node_modules/esbuild-linux-64/bin/esbuild +0 -0
- package/node_modules/esbuild-linux-64/package.json +1 -1
- package/package.json +11 -10
@@ -1,5 +1,6 @@
|
|
1
1
|
import {Credentials} from '../credentials';
|
2
2
|
import SSO = require('../../clients/sso');
|
3
|
+
import { HTTPOptions } from '../config-base';
|
3
4
|
export class SsoCredentials extends Credentials {
|
4
5
|
/**
|
5
6
|
* Creates a new SsoCredentials object.
|
@@ -8,6 +9,7 @@ export class SsoCredentials extends Credentials {
|
|
8
9
|
}
|
9
10
|
|
10
11
|
interface SsoCredentialsOptions {
|
12
|
+
httpOptions?: HTTPOptions,
|
11
13
|
profile?: string;
|
12
14
|
filename?: string;
|
13
15
|
ssoClient?: SSO;
|
@@ -60,6 +60,7 @@ AWS.SsoCredentials = AWS.util.inherit(AWS.Credentials, {
|
|
60
60
|
this.filename = options.filename;
|
61
61
|
this.profile = options.profile || process.env.AWS_PROFILE || AWS.util.defaultProfile;
|
62
62
|
this.service = options.ssoClient;
|
63
|
+
this.httpOptions = options.httpOptions || null;
|
63
64
|
this.get(options.callback || AWS.util.fn.noop);
|
64
65
|
},
|
65
66
|
|
@@ -130,7 +131,10 @@ AWS.SsoCredentials = AWS.util.inherit(AWS.Credentials, {
|
|
130
131
|
}
|
131
132
|
|
132
133
|
if (!self.service || self.service.config.region !== profile.sso_region) {
|
133
|
-
self.service = new AWS.SSO({
|
134
|
+
self.service = new AWS.SSO({
|
135
|
+
region: profile.sso_region,
|
136
|
+
httpOptions: this.httpOptions,
|
137
|
+
});
|
134
138
|
}
|
135
139
|
var request = {
|
136
140
|
accessToken: cacheContent.accessToken,
|
@@ -163,7 +163,7 @@ by esbuild to install the correct binary executable for your current platform.`)
|
|
163
163
|
"node_modules",
|
164
164
|
".cache",
|
165
165
|
"esbuild",
|
166
|
-
`pnpapi-${pkg}-${"0.15.
|
166
|
+
`pnpapi-${pkg}-${"0.15.7"}-${path.basename(subpath)}`
|
167
167
|
);
|
168
168
|
if (!fs.existsSync(binTargetPath)) {
|
169
169
|
fs.mkdirSync(path.dirname(binTargetPath), { recursive: true });
|
@@ -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.15.
|
93
|
-
throw new Error(`Expected ${JSON.stringify("0.15.
|
92
|
+
if (stdout !== "0.15.7") {
|
93
|
+
throw new Error(`Expected ${JSON.stringify("0.15.7")} 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.15.
|
145
|
+
`npm install --loglevel=error --prefer-offline --no-audit --progress=false ${pkg}@${"0.15.7"}`,
|
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.15.
|
196
|
+
const url = `https://registry.npmjs.org/${pkg}/-/${pkg}-${"0.15.7"}.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));
|
@@ -237,7 +237,7 @@ this. If that fails, you need to remove the "--no-optional" flag to use esbuild.
|
|
237
237
|
}
|
238
238
|
checkAndPreparePackage().then(() => {
|
239
239
|
if (isToPathJS) {
|
240
|
-
validateBinaryVersion(
|
240
|
+
validateBinaryVersion(process.execPath, toPath);
|
241
241
|
} else {
|
242
242
|
validateBinaryVersion(toPath);
|
243
243
|
}
|
@@ -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.15.
|
762
|
-
throw new Error(`Cannot start service: Host version "${"0.15.
|
761
|
+
if (binaryVersion !== "0.15.7") {
|
762
|
+
throw new Error(`Cannot start service: Host version "${"0.15.7"}" does not match binary version ${JSON.stringify(binaryVersion)}`);
|
763
763
|
}
|
764
764
|
return;
|
765
765
|
}
|
@@ -1861,7 +1861,7 @@ by esbuild to install the correct binary executable for your current platform.`)
|
|
1861
1861
|
"node_modules",
|
1862
1862
|
".cache",
|
1863
1863
|
"esbuild",
|
1864
|
-
`pnpapi-${pkg}-${"0.15.
|
1864
|
+
`pnpapi-${pkg}-${"0.15.7"}-${path.basename(subpath)}`
|
1865
1865
|
);
|
1866
1866
|
if (!fs.existsSync(binTargetPath)) {
|
1867
1867
|
fs.mkdirSync(path.dirname(binTargetPath), { recursive: true });
|
@@ -1892,7 +1892,7 @@ if (process.env.ESBUILD_WORKER_THREADS !== "0") {
|
|
1892
1892
|
}
|
1893
1893
|
}
|
1894
1894
|
var _a;
|
1895
|
-
var isInternalWorkerThread = ((_a = worker_threads == null ? void 0 : worker_threads.workerData) == null ? void 0 : _a.esbuildVersion) === "0.15.
|
1895
|
+
var isInternalWorkerThread = ((_a = worker_threads == null ? void 0 : worker_threads.workerData) == null ? void 0 : _a.esbuildVersion) === "0.15.7";
|
1896
1896
|
var esbuildCommandAndArgs = () => {
|
1897
1897
|
if ((!ESBUILD_BINARY_PATH || false) && (path2.basename(__filename) !== "main.js" || path2.basename(__dirname) !== "lib")) {
|
1898
1898
|
throw new Error(
|
@@ -1903,12 +1903,13 @@ More information: The file containing the code for esbuild's JavaScript API (${_
|
|
1903
1903
|
}
|
1904
1904
|
if (false) {
|
1905
1905
|
return ["node", [path2.join(__dirname, "..", "bin", "esbuild")]];
|
1906
|
-
}
|
1907
|
-
const { binPath, isWASM } = generateBinPath();
|
1908
|
-
if (isWASM) {
|
1909
|
-
return ["node", [binPath]];
|
1910
1906
|
} else {
|
1911
|
-
|
1907
|
+
const { binPath, isWASM } = generateBinPath();
|
1908
|
+
if (isWASM) {
|
1909
|
+
return ["node", [binPath]];
|
1910
|
+
} else {
|
1911
|
+
return [binPath, []];
|
1912
|
+
}
|
1912
1913
|
}
|
1913
1914
|
};
|
1914
1915
|
var isTTY = () => tty.isatty(2);
|
@@ -1958,7 +1959,7 @@ var fsAsync = {
|
|
1958
1959
|
}
|
1959
1960
|
}
|
1960
1961
|
};
|
1961
|
-
var version = "0.15.
|
1962
|
+
var version = "0.15.7";
|
1962
1963
|
var build = (options) => ensureServiceIsRunning().build(options);
|
1963
1964
|
var serve = (serveOptions, buildOptions) => ensureServiceIsRunning().serve(serveOptions, buildOptions);
|
1964
1965
|
var transform = (input, options) => ensureServiceIsRunning().transform(input, options);
|
@@ -2069,7 +2070,7 @@ var ensureServiceIsRunning = () => {
|
|
2069
2070
|
if (longLivedService)
|
2070
2071
|
return longLivedService;
|
2071
2072
|
let [command, args] = esbuildCommandAndArgs();
|
2072
|
-
let child = child_process.spawn(command, args.concat(`--service=${"0.15.
|
2073
|
+
let child = child_process.spawn(command, args.concat(`--service=${"0.15.7"}`, "--ping"), {
|
2073
2074
|
windowsHide: true,
|
2074
2075
|
stdio: ["pipe", "pipe", "inherit"],
|
2075
2076
|
cwd: defaultWD
|
@@ -2183,7 +2184,7 @@ var runServiceSync = (callback) => {
|
|
2183
2184
|
esbuild: node_exports
|
2184
2185
|
});
|
2185
2186
|
callback(service);
|
2186
|
-
let stdout = child_process.execFileSync(command, args.concat(`--service=${"0.15.
|
2187
|
+
let stdout = child_process.execFileSync(command, args.concat(`--service=${"0.15.7"}`), {
|
2187
2188
|
cwd: defaultWD,
|
2188
2189
|
windowsHide: true,
|
2189
2190
|
input: stdin,
|
@@ -2199,7 +2200,7 @@ var workerThreadService = null;
|
|
2199
2200
|
var startWorkerThreadService = (worker_threads2) => {
|
2200
2201
|
let { port1: mainPort, port2: workerPort } = new worker_threads2.MessageChannel();
|
2201
2202
|
let worker = new worker_threads2.Worker(__filename, {
|
2202
|
-
workerData: { workerPort, defaultWD, esbuildVersion: "0.15.
|
2203
|
+
workerData: { workerPort, defaultWD, esbuildVersion: "0.15.7" },
|
2203
2204
|
transferList: [workerPort],
|
2204
2205
|
execArgv: []
|
2205
2206
|
});
|
@@ -1,6 +1,6 @@
|
|
1
1
|
{
|
2
2
|
"name": "esbuild",
|
3
|
-
"version": "0.15.
|
3
|
+
"version": "0.15.7",
|
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.15.
|
19
|
-
"esbuild-android-64": "0.15.
|
20
|
-
"esbuild-android-arm64": "0.15.
|
21
|
-
"esbuild-darwin-64": "0.15.
|
22
|
-
"esbuild-darwin-arm64": "0.15.
|
23
|
-
"esbuild-freebsd-64": "0.15.
|
24
|
-
"esbuild-freebsd-arm64": "0.15.
|
25
|
-
"esbuild-linux-32": "0.15.
|
26
|
-
"esbuild-linux-64": "0.15.
|
27
|
-
"esbuild-linux-arm": "0.15.
|
28
|
-
"esbuild-linux-arm64": "0.15.
|
29
|
-
"esbuild-linux-mips64le": "0.15.
|
30
|
-
"esbuild-linux-ppc64le": "0.15.
|
31
|
-
"esbuild-linux-riscv64": "0.15.
|
32
|
-
"esbuild-linux-s390x": "0.15.
|
33
|
-
"esbuild-netbsd-64": "0.15.
|
34
|
-
"esbuild-openbsd-64": "0.15.
|
35
|
-
"esbuild-sunos-64": "0.15.
|
36
|
-
"esbuild-windows-32": "0.15.
|
37
|
-
"esbuild-windows-64": "0.15.
|
38
|
-
"esbuild-windows-arm64": "0.15.
|
18
|
+
"@esbuild/linux-loong64": "0.15.7",
|
19
|
+
"esbuild-android-64": "0.15.7",
|
20
|
+
"esbuild-android-arm64": "0.15.7",
|
21
|
+
"esbuild-darwin-64": "0.15.7",
|
22
|
+
"esbuild-darwin-arm64": "0.15.7",
|
23
|
+
"esbuild-freebsd-64": "0.15.7",
|
24
|
+
"esbuild-freebsd-arm64": "0.15.7",
|
25
|
+
"esbuild-linux-32": "0.15.7",
|
26
|
+
"esbuild-linux-64": "0.15.7",
|
27
|
+
"esbuild-linux-arm": "0.15.7",
|
28
|
+
"esbuild-linux-arm64": "0.15.7",
|
29
|
+
"esbuild-linux-mips64le": "0.15.7",
|
30
|
+
"esbuild-linux-ppc64le": "0.15.7",
|
31
|
+
"esbuild-linux-riscv64": "0.15.7",
|
32
|
+
"esbuild-linux-s390x": "0.15.7",
|
33
|
+
"esbuild-netbsd-64": "0.15.7",
|
34
|
+
"esbuild-openbsd-64": "0.15.7",
|
35
|
+
"esbuild-sunos-64": "0.15.7",
|
36
|
+
"esbuild-windows-32": "0.15.7",
|
37
|
+
"esbuild-windows-64": "0.15.7",
|
38
|
+
"esbuild-windows-arm64": "0.15.7"
|
39
39
|
},
|
40
40
|
"license": "MIT"
|
41
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.41.0",
|
48
48
|
"constructs": "^10.0.5",
|
49
|
-
"esbuild": "^0.15.
|
49
|
+
"esbuild": "^0.15.7",
|
50
50
|
"eslint": "^8",
|
51
51
|
"eslint-import-resolver-node": "^0.3.6",
|
52
52
|
"eslint-import-resolver-typescript": "^2.7.1",
|
@@ -59,20 +59,20 @@
|
|
59
59
|
"jsii-pacmak": "^1.67.0",
|
60
60
|
"json-schema": "^0.4.0",
|
61
61
|
"npm-check-updates": "^15",
|
62
|
-
"projen": "^0.61.
|
62
|
+
"projen": "^0.61.47",
|
63
63
|
"standard-version": "^9",
|
64
64
|
"ts-jest": "^27",
|
65
|
-
"typescript": "^4.8.
|
65
|
+
"typescript": "^4.8.3"
|
66
66
|
},
|
67
67
|
"peerDependencies": {
|
68
68
|
"aws-cdk-lib": "^2.27.0",
|
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.41.0",
|
73
|
+
"aws-sdk": "^2.1212.0",
|
74
74
|
"constructs": "^10.0.5",
|
75
|
-
"esbuild": "^0.15.
|
75
|
+
"esbuild": "^0.15.7"
|
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.90",
|
96
96
|
"jest": {
|
97
97
|
"testMatch": [
|
98
98
|
"<rootDir>/src/**/__tests__/**/*.ts?(x)",
|
@@ -163,8 +163,9 @@
|
|
163
163
|
}
|
164
164
|
},
|
165
165
|
"resolutions": {
|
166
|
-
"@types/
|
167
|
-
"got": "12.3.0"
|
166
|
+
"@types/responselike": "1.0.0",
|
167
|
+
"got": "12.3.0",
|
168
|
+
"@types/prettier": "2.6.0"
|
168
169
|
},
|
169
170
|
"//": "~~ Generated by projen. To modify, edit .projenrc.js and run \"npx projen\"."
|
170
171
|
}
|