cdk-comprehend-s3olap 2.0.83 → 2.0.86
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 +3 -3
- 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 +15 -1
- package/node_modules/aws-sdk/README.md +1 -1
- package/node_modules/aws-sdk/apis/controltower-2018-05-10.examples.json +5 -0
- package/node_modules/aws-sdk/apis/controltower-2018-05-10.min.json +148 -0
- package/node_modules/aws-sdk/apis/controltower-2018-05-10.paginators.json +10 -0
- package/node_modules/aws-sdk/apis/greengrassv2-2020-11-30.min.json +26 -19
- package/node_modules/aws-sdk/apis/identitystore-2020-06-15.min.json +732 -15
- package/node_modules/aws-sdk/apis/identitystore-2020-06-15.paginators.json +16 -2
- package/node_modules/aws-sdk/apis/iotthingsgraph-2018-09-06.min.json +105 -35
- package/node_modules/aws-sdk/apis/ivs-2020-07-14.min.json +25 -19
- package/node_modules/aws-sdk/apis/lookoutequipment-2020-12-15.min.json +282 -31
- package/node_modules/aws-sdk/apis/lookoutequipment-2020-12-15.paginators.json +10 -0
- package/node_modules/aws-sdk/apis/macie2-2020-01-01.min.json +390 -119
- package/node_modules/aws-sdk/apis/metadata.json +3 -0
- package/node_modules/aws-sdk/apis/rds-data-2018-08-01.min.json +132 -132
- package/node_modules/aws-sdk/apis/sagemaker-2017-07-24.min.json +483 -459
- 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/cloudfront.d.ts +7 -7
- package/node_modules/aws-sdk/clients/codegurureviewer.d.ts +134 -134
- package/node_modules/aws-sdk/clients/controltower.d.ts +169 -0
- package/node_modules/aws-sdk/clients/controltower.js +18 -0
- package/node_modules/aws-sdk/clients/greengrassv2.d.ts +22 -13
- package/node_modules/aws-sdk/clients/identitystore.d.ts +806 -22
- package/node_modules/aws-sdk/clients/iotthingsgraph.d.ts +2 -2
- package/node_modules/aws-sdk/clients/ivs.d.ts +9 -0
- package/node_modules/aws-sdk/clients/lookoutequipment.d.ts +399 -10
- package/node_modules/aws-sdk/clients/macie2.d.ts +289 -41
- package/node_modules/aws-sdk/clients/rdsdataservice.d.ts +130 -130
- package/node_modules/aws-sdk/clients/route53.d.ts +1 -1
- package/node_modules/aws-sdk/clients/sagemaker.d.ts +63 -17
- package/node_modules/aws-sdk/clients/sso.d.ts +19 -19
- package/node_modules/aws-sdk/clients/ssoadmin.d.ts +115 -115
- 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 +51 -14
- package/node_modules/aws-sdk/dist/aws-sdk.js +6 -3
- 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/es-abstract/2020/SameValueNonNumeric.js +1 -1
- package/node_modules/es-abstract/2021/SameValueNonNumeric.js +1 -1
- package/node_modules/es-abstract/2022/SameValueNonNumeric.js +1 -1
- package/node_modules/es-abstract/CHANGELOG.md +8 -0
- package/node_modules/es-abstract/package.json +9 -8
- package/package.json +5 -5
@@ -315,6 +315,7 @@ export abstract class ConfigurationServicePlaceholders {
|
|
315
315
|
backupstorage?: AWS.BackupStorage.Types.ClientConfiguration;
|
316
316
|
privatenetworks?: AWS.PrivateNetworks.Types.ClientConfiguration;
|
317
317
|
supportapp?: AWS.SupportApp.Types.ClientConfiguration;
|
318
|
+
controltower?: AWS.ControlTower.Types.ClientConfiguration;
|
318
319
|
}
|
319
320
|
export interface ConfigurationServiceApiVersions {
|
320
321
|
acm?: AWS.ACM.Types.apiVersion;
|
@@ -632,4 +633,5 @@ export interface ConfigurationServiceApiVersions {
|
|
632
633
|
backupstorage?: AWS.BackupStorage.Types.apiVersion;
|
633
634
|
privatenetworks?: AWS.PrivateNetworks.Types.apiVersion;
|
634
635
|
supportapp?: AWS.SupportApp.Types.apiVersion;
|
636
|
+
controltower?: AWS.ControlTower.Types.apiVersion;
|
635
637
|
}
|
@@ -11,7 +11,7 @@ var Type = require('./Type');
|
|
11
11
|
|
12
12
|
module.exports = function SameValueNonNumeric(x, y) {
|
13
13
|
var xType = Type(x);
|
14
|
-
if (xType === 'Number' || xType === '
|
14
|
+
if (xType === 'Number' || xType === 'BigInt') {
|
15
15
|
throw new $TypeError('Assertion failed: SameValueNonNumeric does not accept Number or BigInt values');
|
16
16
|
}
|
17
17
|
if (xType !== Type(y)) {
|
@@ -11,7 +11,7 @@ var Type = require('./Type');
|
|
11
11
|
|
12
12
|
module.exports = function SameValueNonNumeric(x, y) {
|
13
13
|
var xType = Type(x);
|
14
|
-
if (xType === 'Number' || xType === '
|
14
|
+
if (xType === 'Number' || xType === 'BigInt') {
|
15
15
|
throw new $TypeError('Assertion failed: SameValueNonNumeric does not accept Number or BigInt values');
|
16
16
|
}
|
17
17
|
if (xType !== Type(y)) {
|
@@ -11,7 +11,7 @@ var Type = require('./Type');
|
|
11
11
|
|
12
12
|
module.exports = function SameValueNonNumeric(x, y) {
|
13
13
|
var xType = Type(x);
|
14
|
-
if (xType === 'Number' || xType === '
|
14
|
+
if (xType === 'Number' || xType === 'BigInt') {
|
15
15
|
throw new $TypeError('Assertion failed: SameValueNonNumeric does not accept Number or BigInt values');
|
16
16
|
}
|
17
17
|
if (xType !== Type(y)) {
|
@@ -1,3 +1,11 @@
|
|
1
|
+
1.20.2 / 2022-09-01
|
2
|
+
=================
|
3
|
+
* [Fix] `ES2020+`: `SameValueNonNumeric`: properly throw on BigInt values
|
4
|
+
* [Deps] update `object.assign`, `get-intrinsic`, `object-inspect`
|
5
|
+
* [Dev Deps] update `array.prototype.indexof`, `diff`, `es-value-fixtures`, `tape`
|
6
|
+
* [meta] `spackle`: always mkdirp new files to be written
|
7
|
+
* [Tests] fix vscode auto-const from 8fc256d
|
8
|
+
|
1
9
|
1.20.1 / 2022-05-16
|
2
10
|
=================
|
3
11
|
* [Fix] `thisTimeValue`: use `getTime`, not `valueOf`, to get the time value
|
@@ -1,6 +1,6 @@
|
|
1
1
|
{
|
2
2
|
"name": "es-abstract",
|
3
|
-
"version": "1.20.
|
3
|
+
"version": "1.20.2",
|
4
4
|
"author": {
|
5
5
|
"name": "Jordan Harband",
|
6
6
|
"email": "ljharb@gmail.com",
|
@@ -56,7 +56,7 @@
|
|
56
56
|
"es-to-primitive": "^1.2.1",
|
57
57
|
"function-bind": "^1.1.1",
|
58
58
|
"function.prototype.name": "^1.1.5",
|
59
|
-
"get-intrinsic": "^1.1.
|
59
|
+
"get-intrinsic": "^1.1.2",
|
60
60
|
"get-symbol-description": "^1.0.0",
|
61
61
|
"has": "^1.0.3",
|
62
62
|
"has-property-descriptors": "^1.0.0",
|
@@ -68,9 +68,9 @@
|
|
68
68
|
"is-shared-array-buffer": "^1.0.2",
|
69
69
|
"is-string": "^1.0.7",
|
70
70
|
"is-weakref": "^1.0.2",
|
71
|
-
"object-inspect": "^1.12.
|
71
|
+
"object-inspect": "^1.12.2",
|
72
72
|
"object-keys": "^1.1.1",
|
73
|
-
"object.assign": "^4.1.
|
73
|
+
"object.assign": "^4.1.4",
|
74
74
|
"regexp.prototype.flags": "^1.4.3",
|
75
75
|
"string.prototype.trimend": "^1.0.5",
|
76
76
|
"string.prototype.trimstart": "^1.0.5",
|
@@ -79,13 +79,14 @@
|
|
79
79
|
"devDependencies": {
|
80
80
|
"@ljharb/eslint-config": "^21.0.0",
|
81
81
|
"array.prototype.filter": "^1.0.1",
|
82
|
-
"array.prototype.
|
82
|
+
"array.prototype.flatmap": "^1.3.0",
|
83
|
+
"array.prototype.indexof": "^1.0.4",
|
83
84
|
"aud": "^2.0.0",
|
84
85
|
"available-regexp-flags": "^1.0.0",
|
85
86
|
"cheerio": "=1.0.0-rc.3",
|
86
|
-
"diff": "^5.
|
87
|
+
"diff": "^5.1.0",
|
87
88
|
"eclint": "^2.8.1",
|
88
|
-
"es-value-fixtures": "^1.4.
|
89
|
+
"es-value-fixtures": "^1.4.2",
|
89
90
|
"eslint": "=8.8.0",
|
90
91
|
"for-each": "^0.3.3",
|
91
92
|
"functions-have-names": "^1.2.3",
|
@@ -102,7 +103,7 @@
|
|
102
103
|
"object.fromentries": "^2.0.5",
|
103
104
|
"safe-publish-latest": "^2.0.0",
|
104
105
|
"ses": "^0.10.4",
|
105
|
-
"tape": "^5.
|
106
|
+
"tape": "^5.6.0"
|
106
107
|
},
|
107
108
|
"testling": {
|
108
109
|
"files": "test/index.js",
|
package/package.json
CHANGED
@@ -44,7 +44,7 @@
|
|
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.40.0",
|
48
48
|
"constructs": "^10.0.5",
|
49
49
|
"esbuild": "^0.15.6",
|
50
50
|
"eslint": "^8",
|
@@ -59,7 +59,7 @@
|
|
59
59
|
"jsii-pacmak": "^1.66.0",
|
60
60
|
"json-schema": "^0.4.0",
|
61
61
|
"npm-check-updates": "^15",
|
62
|
-
"projen": "^0.61.
|
62
|
+
"projen": "^0.61.41",
|
63
63
|
"standard-version": "^9",
|
64
64
|
"ts-jest": "^27",
|
65
65
|
"typescript": "^4.8.2"
|
@@ -69,8 +69,8 @@
|
|
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.40.0",
|
73
|
+
"aws-sdk": "^2.1208.0",
|
74
74
|
"constructs": "^10.0.5",
|
75
75
|
"esbuild": "^0.15.6"
|
76
76
|
},
|
@@ -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.86",
|
96
96
|
"jest": {
|
97
97
|
"testMatch": [
|
98
98
|
"<rootDir>/src/**/__tests__/**/*.ts?(x)",
|