aws-sdk 2.1374.0 → 2.1376.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 +13 -2
- package/README.md +1 -1
- package/apis/application-autoscaling-2016-02-06.examples.json +3 -0
- package/apis/elasticmapreduce-2009-03-31.min.json +85 -37
- package/apis/glue-2017-03-31.min.json +410 -314
- package/apis/rds-2014-10-31.min.json +9 -3
- package/apis/sagemaker-2017-07-24.min.json +674 -660
- package/apis/swf-2012-01-25.min.json +3 -0
- package/clients/applicationautoscaling.d.ts +35 -35
- package/clients/emr.d.ts +228 -136
- package/clients/glue.d.ts +168 -0
- package/clients/rds.d.ts +26 -10
- package/clients/sagemaker.d.ts +22 -3
- package/clients/swf.d.ts +26 -21
- package/dist/aws-sdk-core-react-native.js +1 -1
- package/dist/aws-sdk-react-native.js +6 -6
- package/dist/aws-sdk.js +97 -43
- package/dist/aws-sdk.min.js +55 -55
- package/lib/core.js +1 -1
- package/package.json +1 -1
- package/scripts/lib/ts-generator.js +1 -5
    
        package/lib/core.js
    CHANGED
    
    
    
        package/package.json
    CHANGED
    
    
| @@ -305,7 +305,7 @@ TSGenerator.prototype.generateTypingsFromShape = function generateTypingsFromSha | |
| 305 305 | 
             
                        // each member is an individual event type, so each must be optional
         | 
| 306 306 | 
             
                        return member + '?:' + shape.members[member].shape;
         | 
| 307 307 | 
             
                    });
         | 
| 308 | 
            -
                    return code += tabs(tabCount) + 'export type ' + shapeKey + ' = EventStream<{' + events.join(',') + '}>;\n'; | 
| 308 | 
            +
                    return code += tabs(tabCount) + 'export type ' + shapeKey + ' = EventStream<{' + events.join(',') + '}>;\n';
         | 
| 309 309 | 
             
                }
         | 
| 310 310 | 
             
                if (type === 'structure') {
         | 
| 311 311 | 
             
                    if (shape.isDocument) {
         | 
| @@ -614,10 +614,6 @@ TSGenerator.prototype.processServiceModel = function processServiceModel(service | |
| 614 614 | 
             
                });
         | 
| 615 615 | 
             
                shapeKeys.forEach(function (shapeKey) {
         | 
| 616 616 | 
             
                    var modelShape = modelShapes[shapeKey];
         | 
| 617 | 
            -
                    // ignore exceptions
         | 
| 618 | 
            -
                    if (modelShape.exception) {
         | 
| 619 | 
            -
                        return;
         | 
| 620 | 
            -
                    }
         | 
| 621 617 | 
             
                    code += self.generateTypingsFromShape(model, shapeKey, modelShape, 1, customClassNames);
         | 
| 622 618 | 
             
                });
         | 
| 623 619 | 
             
                //add extra dependencies like 'streaming'
         |