cdk-comprehend-s3olap 2.0.140 → 2.0.142

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.
@@ -20,7 +20,7 @@ AWS.util.update(AWS, {
20
20
  /**
21
21
  * @constant
22
22
  */
23
- VERSION: '2.1368.0',
23
+ VERSION: '2.1369.0',
24
24
 
25
25
  /**
26
26
  * @api private
@@ -12,6 +12,15 @@ function buildRequest(req) {
12
12
  var builder = new JsonBuilder();
13
13
 
14
14
  if (version === 1) version = '1.0';
15
+
16
+ if (api.awsQueryCompatible) {
17
+ if (!httpRequest.params) {
18
+ httpRequest.params = {};
19
+ }
20
+ // because Query protocol does this.
21
+ Object.assign(httpRequest.params, req.params);
22
+ }
23
+
15
24
  httpRequest.body = builder.build(req.params || {}, input);
16
25
  httpRequest.headers['Content-Type'] = 'application/x-amz-json-' + version;
17
26
  httpRequest.headers['X-Amz-Target'] = target;
@@ -5,7 +5,7 @@ AWS.util.update(AWS.SQS.prototype, {
5
5
  * @api private
6
6
  */
7
7
  setupRequestListeners: function setupRequestListeners(request) {
8
- request.addListener('build', this.buildEndpoint.bind(this));
8
+ request.addListener('build', this.buildEndpoint);
9
9
 
10
10
  if (request.service.config.computeChecksums) {
11
11
  if (request.operation === 'sendMessage') {
@@ -118,8 +118,7 @@ AWS.util.update(AWS.SQS.prototype, {
118
118
  * @api private
119
119
  */
120
120
  buildEndpoint: function buildEndpoint(request) {
121
- var params = request.httpRequest.params || this.config.params;
122
- var url = params.QueueUrl;
121
+ var url = request.httpRequest.params.QueueUrl;
123
122
  if (url) {
124
123
  request.httpRequest.endpoint = new AWS.Endpoint(url);
125
124
 
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "name": "aws-sdk",
3
3
  "description": "AWS SDK for JavaScript",
4
- "version": "2.1368.0",
4
+ "version": "2.1369.0",
5
5
  "author": {
6
6
  "name": "Amazon Web Services",
7
7
  "email": "",
package/package.json CHANGED
@@ -57,7 +57,7 @@
57
57
  "jsii-docgen": "^1.8.110",
58
58
  "jsii-pacmak": "^1.80.0",
59
59
  "npm-check-updates": "^16",
60
- "projen": "^0.71.32",
60
+ "projen": "^0.71.34",
61
61
  "standard-version": "^9",
62
62
  "ts-jest": "^27",
63
63
  "typescript": "^4.9.5"
@@ -68,7 +68,7 @@
68
68
  },
69
69
  "dependencies": {
70
70
  "aws-cdk-lib": "^2.77.0",
71
- "aws-sdk": "^2.1368.0",
71
+ "aws-sdk": "^2.1369.0",
72
72
  "constructs": "^10.0.5",
73
73
  "esbuild": "^0.17.18"
74
74
  },
@@ -95,7 +95,7 @@
95
95
  ],
96
96
  "main": "lib/index.js",
97
97
  "license": "Apache-2.0",
98
- "version": "2.0.140",
98
+ "version": "2.0.142",
99
99
  "jest": {
100
100
  "testMatch": [
101
101
  "<rootDir>/src/**/__tests__/**/*.ts?(x)",