@aws-sdk/client-location 3.141.0 → 3.146.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 +30 -0
- package/README.md +1 -1
- package/dist-cjs/models/models_0.js +10 -4
- package/dist-cjs/protocols/Aws_restJson1.js +635 -1430
- package/dist-es/models/models_0.js +2 -1
- package/dist-es/protocols/Aws_restJson1.js +831 -1472
- package/dist-types/Location.d.ts +5 -1
- package/dist-types/LocationClient.d.ts +1 -1
- package/dist-types/commands/CalculateRouteCommand.d.ts +4 -0
- package/dist-types/models/models_0.d.ts +60 -9
- package/dist-types/ts3.4/models/models_0.d.ts +11 -0
- package/package.json +11 -6
|
@@ -119,7 +119,8 @@ export var BatchGetDevicePositionErrorFilterSensitiveLog = function (obj) { retu
|
|
|
119
119
|
export var BatchGetDevicePositionResponseFilterSensitiveLog = function (obj) { return (__assign(__assign({}, obj), (obj.DevicePositions && {
|
|
120
120
|
DevicePositions: obj.DevicePositions.map(function (item) { return DevicePositionFilterSensitiveLog(item); }),
|
|
121
121
|
}))); };
|
|
122
|
-
export var
|
|
122
|
+
export var CircleFilterSensitiveLog = function (obj) { return (__assign(__assign({}, obj), (obj.Center && { Center: SENSITIVE_STRING }))); };
|
|
123
|
+
export var GeofenceGeometryFilterSensitiveLog = function (obj) { return (__assign(__assign(__assign({}, obj), (obj.Polygon && { Polygon: obj.Polygon.map(function (item) { return SENSITIVE_STRING; }) })), (obj.Circle && { Circle: SENSITIVE_STRING }))); };
|
|
123
124
|
export var BatchPutGeofenceRequestEntryFilterSensitiveLog = function (obj) { return (__assign(__assign({}, obj), (obj.Geometry && { Geometry: GeofenceGeometryFilterSensitiveLog(obj.Geometry) }))); };
|
|
124
125
|
export var BatchPutGeofenceRequestFilterSensitiveLog = function (obj) { return (__assign(__assign({}, obj), (obj.Entries && { Entries: obj.Entries.map(function (item) { return BatchPutGeofenceRequestEntryFilterSensitiveLog(item); }) }))); };
|
|
125
126
|
export var BatchPutGeofenceErrorFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|