cdk-comprehend-s3olap 2.0.93 → 2.0.95

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 (36) 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 +12 -1
  6. package/node_modules/aws-sdk/README.md +1 -1
  7. package/node_modules/aws-sdk/apis/customer-profiles-2020-08-15.min.json +12 -3
  8. package/node_modules/aws-sdk/apis/drs-2020-02-26.min.json +45 -45
  9. package/node_modules/aws-sdk/apis/ec2-2016-11-15.min.json +273 -234
  10. package/node_modules/aws-sdk/apis/eks-2017-11-01.min.json +90 -45
  11. package/node_modules/aws-sdk/apis/evidently-2021-02-01.min.json +41 -15
  12. package/node_modules/aws-sdk/apis/transfer-2018-11-05.min.json +174 -20
  13. package/node_modules/aws-sdk/clients/customerprofiles.d.ts +22 -10
  14. package/node_modules/aws-sdk/clients/drs.d.ts +3 -2
  15. package/node_modules/aws-sdk/clients/ec2.d.ts +54 -4
  16. package/node_modules/aws-sdk/clients/eks.d.ts +67 -9
  17. package/node_modules/aws-sdk/clients/evidently.d.ts +42 -5
  18. package/node_modules/aws-sdk/clients/kendra.d.ts +8 -8
  19. package/node_modules/aws-sdk/clients/transfer.d.ts +206 -0
  20. package/node_modules/aws-sdk/dist/aws-sdk-core-react-native.js +15 -7
  21. package/node_modules/aws-sdk/dist/aws-sdk-react-native.js +35 -19
  22. package/node_modules/aws-sdk/dist/aws-sdk.js +276 -237
  23. package/node_modules/aws-sdk/dist/aws-sdk.min.js +67 -67
  24. package/node_modules/aws-sdk/lib/core.js +1 -1
  25. package/node_modules/aws-sdk/package.json +1 -1
  26. package/node_modules/get-intrinsic/CHANGELOG.md +7 -0
  27. package/node_modules/get-intrinsic/index.js +1 -1
  28. package/node_modules/get-intrinsic/package.json +7 -4
  29. package/node_modules/is-callable/.eslintrc +0 -11
  30. package/node_modules/is-callable/CHANGELOG.md +25 -0
  31. package/node_modules/is-callable/index.js +13 -5
  32. package/node_modules/is-callable/package.json +27 -13
  33. package/node_modules/is-callable/test/index.js +26 -5
  34. package/package.json +4 -4
  35. package/node_modules/is-callable/.eslintignore +0 -1
  36. package/node_modules/is-callable/.istanbul.yml +0 -47
@@ -83,7 +83,7 @@ return /******/ (function(modules) { // webpackBootstrap
83
83
  /**
84
84
  * @constant
85
85
  */
86
- VERSION: '2.1213.0',
86
+ VERSION: '2.1215.0',
87
87
 
88
88
  /**
89
89
  * @api private
@@ -9640,7 +9640,7 @@ return /******/ (function(modules) { // webpackBootstrap
9640
9640
  throw new $TypeError('"allowMissing" argument must be a boolean');
9641
9641
  }
9642
9642
 
9643
- if ($exec(/^%?[^%]*%?$/g, name) === null) {
9643
+ if ($exec(/^%?[^%]*%?$/, name) === null) {
9644
9644
  throw new $SyntaxError('`%` may not be present anywhere but at the beginning and end of the intrinsic name');
9645
9645
  }
9646
9646
  var parts = stringToPath(name);
@@ -10094,12 +10094,20 @@ return /******/ (function(modules) { // webpackBootstrap
10094
10094
  var fnClass = '[object Function]';
10095
10095
  var genClass = '[object GeneratorFunction]';
10096
10096
  var hasToStringTag = typeof Symbol === 'function' && !!Symbol.toStringTag; // better: use `has-tostringtag`
10097
- /* globals document: false */
10098
- var documentDotAll = typeof document === 'object' && typeof document.all === 'undefined' && document.all !== undefined ? document.all : {};
10097
+ var isDDA = typeof document === 'object' ? function isDocumentDotAll(value) {
10098
+ /* globals document: false */
10099
+ // in IE 8, typeof document.all is "object"
10100
+ if (typeof value === 'undefined' || typeof value === 'object') {
10101
+ try {
10102
+ return value('') === null;
10103
+ } catch (e) { /**/ }
10104
+ }
10105
+ return false;
10106
+ } : function () { return false; };
10099
10107
 
10100
10108
  module.exports = reflectApply
10101
10109
  ? function isCallable(value) {
10102
- if (value === documentDotAll) { return true; }
10110
+ if (isDDA(value)) { return true; }
10103
10111
  if (!value) { return false; }
10104
10112
  if (typeof value !== 'function' && typeof value !== 'object') { return false; }
10105
10113
  if (typeof value === 'function' && !value.prototype) { return true; }
@@ -10111,14 +10119,14 @@ return /******/ (function(modules) { // webpackBootstrap
10111
10119
  return !isES6ClassFn(value);
10112
10120
  }
10113
10121
  : function isCallable(value) {
10114
- if (value === documentDotAll) { return true; }
10122
+ if (isDDA(value)) { return true; }
10115
10123
  if (!value) { return false; }
10116
10124
  if (typeof value !== 'function' && typeof value !== 'object') { return false; }
10117
10125
  if (typeof value === 'function' && !value.prototype) { return true; }
10118
10126
  if (hasToStringTag) { return tryFunctionObject(value); }
10119
10127
  if (isES6ClassFn(value)) { return false; }
10120
10128
  var strClass = toStr.call(value);
10121
- return strClass === fnClass || strClass === genClass;
10129
+ return strClass === fnClass || strClass === genClass || tryFunctionObject(value);
10122
10130
  };
10123
10131
 
10124
10132