aws-sdk 2.1382.0 → 2.1384.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/CHANGELOG.md +12 -1
- package/README.md +1 -1
- package/apis/appsync-2017-07-25.min.json +484 -131
- package/apis/connect-2017-08-08.min.json +6 -3
- package/apis/sagemaker-2017-07-24.min.json +156 -107
- package/apis/translate-2017-07-01.min.json +84 -17
- package/clients/appsync.d.ts +398 -2
- package/clients/connect.d.ts +1 -1
- package/clients/cur.d.ts +2 -2
- package/clients/sagemaker.d.ts +76 -4
- package/clients/translate.d.ts +69 -5
- package/dist/aws-sdk-core-react-native.js +1 -1
- package/dist/aws-sdk-react-native.js +5 -5
- package/dist/aws-sdk.js +93 -23
- package/dist/aws-sdk.min.js +20 -20
- package/lib/core.js +1 -1
- package/package.json +1 -1
    
        package/CHANGELOG.md
    CHANGED
    
    | @@ -1,7 +1,18 @@ | |
| 1 1 | 
             
            # Changelog for AWS SDK for JavaScript
         | 
| 2 | 
            -
            <!--LATEST=2. | 
| 2 | 
            +
            <!--LATEST=2.1384.0-->
         | 
| 3 3 | 
             
            <!--ENTRYINSERT-->
         | 
| 4 4 |  | 
| 5 | 
            +
            ## 2.1384.0
         | 
| 6 | 
            +
            * feature: AppSync: This release introduces AppSync Merged APIs, which provide the ability to compose multiple source APIs into a single federated/merged API.
         | 
| 7 | 
            +
            * feature: CUR: Add support for split cost allocation data on a report.
         | 
| 8 | 
            +
            * feature: Connect: Amazon Connect Evaluation Capabilities: validation improvements
         | 
| 9 | 
            +
            * feature: SageMaker: SageMaker now provides an instantaneous deployment recommendation through the DescribeModel API
         | 
| 10 | 
            +
             | 
| 11 | 
            +
            ## 2.1383.0
         | 
| 12 | 
            +
            * feature: FMS: Fixes issue that could cause calls to GetAdminScope and ListAdminAccountsForOrganization to return a 500 Internal Server error.
         | 
| 13 | 
            +
            * feature: SageMaker: Added ModelNameEquals, ModelPackageVersionArnEquals in request and ModelName, SamplePayloadUrl, ModelPackageVersionArn in response of ListInferenceRecommendationsJobs API. Added Invocation timestamps in response of DescribeInferenceRecommendationsJob API & ListInferenceRecommendationsJobSteps API.
         | 
| 14 | 
            +
            * feature: Translate: Added support for calling TranslateDocument API.
         | 
| 15 | 
            +
             | 
| 5 16 | 
             
            ## 2.1382.0
         | 
| 6 17 | 
             
            * feature: Backup: Added support for tags on restore.
         | 
| 7 18 | 
             
            * feature: QuickSight: Add support for Asset Bundle, Geospatial Heatmaps.
         | 
    
        package/README.md
    CHANGED
    
    | @@ -71,7 +71,7 @@ require('aws-sdk/lib/maintenance_mode_message').suppress = true; | |
| 71 71 | 
             
            To use the SDK in the browser, simply add the following script tag to your
         | 
| 72 72 | 
             
            HTML pages:
         | 
| 73 73 |  | 
| 74 | 
            -
                <script src="https://sdk.amazonaws.com/js/aws-sdk-2. | 
| 74 | 
            +
                <script src="https://sdk.amazonaws.com/js/aws-sdk-2.1384.0.min.js"></script>
         | 
| 75 75 |  | 
| 76 76 | 
             
            You can also build a custom browser SDK with your specified set of AWS services.
         | 
| 77 77 | 
             
            This can allow you to reduce the SDK's size, specify different API versions of
         |