aws-sdk 2.1626.0 → 2.1628.0
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/README.md +1 -1
- package/apis/dynamodb-2011-12-05.min.json +3 -0
- package/apis/dynamodb-2012-08-10.min.json +3 -0
- package/apis/emr-serverless-2021-07-13.min.json +35 -13
- package/apis/iotfleetwise-2021-06-17.min.json +18 -10
- package/apis/managedblockchain-2018-09-24.min.json +3 -0
- package/apis/opsworks-2013-02-18.min.json +3 -0
- package/clients/dynamodb.d.ts +34 -34
- package/clients/emrserverless.d.ts +22 -0
- package/clients/iotfleetwise.d.ts +11 -1
- package/clients/managedblockchain.d.ts +4 -4
- package/clients/opsworks.d.ts +117 -117
- package/dist/aws-sdk-core-react-native.js +3 -2
- package/dist/aws-sdk-react-native.js +9 -8
- package/dist/aws-sdk.js +15 -5
- package/dist/aws-sdk.min.js +39 -39
- package/lib/core.js +1 -1
- package/lib/credentials/sso_credentials.js +1 -1
- package/lib/credentials/token_file_web_identity_credentials.d.ts +2 -2
- package/lib/dynamodb/document_client.d.ts +10 -10
- package/lib/metadata_service.d.ts +4 -0
- package/lib/metadata_service.js +1 -2
- package/lib/protocol/rest_json.js +2 -1
- package/package.json +1 -1
@@ -83,7 +83,7 @@ return /******/ (function(modules) { // webpackBootstrap
|
|
83
83
|
/**
|
84
84
|
* @constant
|
85
85
|
*/
|
86
|
-
VERSION: '2.
|
86
|
+
VERSION: '2.1628.0',
|
87
87
|
|
88
88
|
/**
|
89
89
|
* @api private
|
@@ -3594,6 +3594,7 @@ return /******/ (function(modules) { // webpackBootstrap
|
|
3594
3594
|
/* 27 */
|
3595
3595
|
/***/ (function(module, exports, __webpack_require__) {
|
3596
3596
|
|
3597
|
+
var AWS = __webpack_require__(1);
|
3597
3598
|
var util = __webpack_require__(2);
|
3598
3599
|
var Rest = __webpack_require__(26);
|
3599
3600
|
var Json = __webpack_require__(18);
|
@@ -3671,7 +3672,7 @@ return /******/ (function(modules) { // webpackBootstrap
|
|
3671
3672
|
var body = resp.httpResponse.body;
|
3672
3673
|
if (payloadMember.isEventStream) {
|
3673
3674
|
parser = new JsonParser();
|
3674
|
-
resp.data[payload] = util.createEventStream(
|
3675
|
+
resp.data[rules.payload] = util.createEventStream(
|
3675
3676
|
AWS.HttpClient.streamsApiVersion === 2 ? resp.httpResponse.stream : body,
|
3676
3677
|
parser,
|
3677
3678
|
payloadMember
|