cdk-comprehend-s3olap 2.0.292 → 2.0.294

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 (41) hide show
  1. package/.jsii +3 -3
  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/aws-sdk/CHANGELOG.md +17 -1
  6. package/node_modules/aws-sdk/README.md +1 -1
  7. package/node_modules/aws-sdk/apis/bedrock-2023-04-20.min.json +430 -184
  8. package/node_modules/aws-sdk/apis/bedrock-2023-04-20.paginators.json +6 -0
  9. package/node_modules/aws-sdk/apis/bedrock-2023-04-20.waiters2.json +5 -0
  10. package/node_modules/aws-sdk/apis/bedrock-runtime-2023-09-30.min.json +11 -0
  11. package/node_modules/aws-sdk/apis/connect-2017-08-08.min.json +119 -97
  12. package/node_modules/aws-sdk/apis/location-2020-11-19.min.json +53 -30
  13. package/node_modules/aws-sdk/apis/mediaconvert-2017-08-29.min.json +219 -169
  14. package/node_modules/aws-sdk/apis/rds-2014-10-31.min.json +1 -0
  15. package/node_modules/aws-sdk/apis/sagemaker-2017-07-24.min.json +0 -1
  16. package/node_modules/aws-sdk/apis/wellarchitected-2020-03-31.min.json +801 -151
  17. package/node_modules/aws-sdk/apis/wellarchitected-2020-03-31.paginators.json +15 -0
  18. package/node_modules/aws-sdk/clients/bedrock.d.ts +428 -166
  19. package/node_modules/aws-sdk/clients/bedrock.js +1 -0
  20. package/node_modules/aws-sdk/clients/bedrockruntime.d.ts +8 -5
  21. package/node_modules/aws-sdk/clients/connect.d.ts +58 -21
  22. package/node_modules/aws-sdk/clients/ec2.d.ts +1 -1
  23. package/node_modules/aws-sdk/clients/location.d.ts +29 -2
  24. package/node_modules/aws-sdk/clients/managedblockchain.d.ts +3 -3
  25. package/node_modules/aws-sdk/clients/mediaconvert.d.ts +62 -9
  26. package/node_modules/aws-sdk/clients/oam.d.ts +3 -3
  27. package/node_modules/aws-sdk/clients/rds.d.ts +35 -31
  28. package/node_modules/aws-sdk/clients/sagemaker.d.ts +3 -3
  29. package/node_modules/aws-sdk/clients/sts.d.ts +2 -1
  30. package/node_modules/aws-sdk/clients/transfer.d.ts +21 -21
  31. package/node_modules/aws-sdk/clients/wellarchitected.d.ts +586 -16
  32. package/node_modules/aws-sdk/dist/aws-sdk-core-react-native.js +7 -4
  33. package/node_modules/aws-sdk/dist/aws-sdk-react-native.js +35 -22
  34. package/node_modules/aws-sdk/dist/aws-sdk.js +176 -130
  35. package/node_modules/aws-sdk/dist/aws-sdk.min.js +71 -71
  36. package/node_modules/aws-sdk/lib/core.js +1 -1
  37. package/node_modules/aws-sdk/package.json +1 -1
  38. package/node_modules/has/package.json +1 -4
  39. package/node_modules/has/src/index.js +5 -2
  40. package/node_modules/has/test/index.js +6 -0
  41. package/package.json +3 -3
@@ -20,7 +20,7 @@ AWS.util.update(AWS, {
20
20
  /**
21
21
  * @constant
22
22
  */
23
- VERSION: '2.1467.0',
23
+ VERSION: '2.1469.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.1467.0",
4
+ "version": "2.1469.0",
5
5
  "author": {
6
6
  "name": "Amazon Web Services",
7
7
  "email": "",
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "name": "has",
3
3
  "description": "Object.prototype.hasOwnProperty.call shortcut",
4
- "version": "1.0.3",
4
+ "version": "1.0.4",
5
5
  "homepage": "https://github.com/tarruda/has",
6
6
  "author": {
7
7
  "name": "Thiago de Arruda",
@@ -29,9 +29,6 @@
29
29
  }
30
30
  ],
31
31
  "main": "./src",
32
- "dependencies": {
33
- "function-bind": "^1.1.1"
34
- },
35
32
  "devDependencies": {
36
33
  "@ljharb/eslint-config": "^12.2.1",
37
34
  "eslint": "^4.19.1",
@@ -1,5 +1,8 @@
1
1
  'use strict';
2
2
 
3
- var bind = require('function-bind');
3
+ var hasOwnProperty = {}.hasOwnProperty;
4
+ var call = Function.prototype.call;
4
5
 
5
- module.exports = bind.call(Function.call, Object.prototype.hasOwnProperty);
6
+ module.exports = call.bind ? call.bind(hasOwnProperty) : function (O, P) {
7
+ return call.call(hasOwnProperty, O, P);
8
+ };
@@ -6,5 +6,11 @@ var has = require('../');
6
6
  test('has', function (t) {
7
7
  t.equal(has({}, 'hasOwnProperty'), false, 'object literal does not have own property "hasOwnProperty"');
8
8
  t.equal(has(Object.prototype, 'hasOwnProperty'), true, 'Object.prototype has own property "hasOwnProperty"');
9
+ t['throws'](function () {
10
+ has(null, 'throws');
11
+ }, TypeError, 'calling has on null throws TypeError');
12
+ t['throws'](function () {
13
+ has(void 0, 'throws');
14
+ }, TypeError, 'calling has on undefined throws TypeError');
9
15
  t.end();
10
16
  });
package/package.json CHANGED
@@ -58,7 +58,7 @@
58
58
  "jsii-pacmak": "^1.89.0",
59
59
  "jsii-rosetta": "1.x",
60
60
  "npm-check-updates": "^16",
61
- "projen": "^0.73.37",
61
+ "projen": "^0.73.39",
62
62
  "standard-version": "^9",
63
63
  "ts-jest": "^27",
64
64
  "typescript": "^4.9.5"
@@ -69,7 +69,7 @@
69
69
  },
70
70
  "dependencies": {
71
71
  "aws-cdk-lib": "^2.93.0",
72
- "aws-sdk": "^2.1467.0",
72
+ "aws-sdk": "^2.1469.0",
73
73
  "constructs": "^10.0.5",
74
74
  "esbuild": "^0.19.4"
75
75
  },
@@ -96,7 +96,7 @@
96
96
  ],
97
97
  "main": "lib/index.js",
98
98
  "license": "Apache-2.0",
99
- "version": "2.0.292",
99
+ "version": "2.0.294",
100
100
  "jest": {
101
101
  "testMatch": [
102
102
  "<rootDir>/src/**/__tests__/**/*.ts?(x)",