@aws-sdk/client-location 3.848.0 → 3.856.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/dist-cjs/index.js +370 -36
- package/dist-es/commands/BatchEvaluateGeofencesCommand.js +2 -2
- package/dist-es/commands/BatchPutGeofenceCommand.js +2 -2
- package/dist-es/commands/BatchUpdateDevicePositionCommand.js +2 -2
- package/dist-es/commands/CreateGeofenceCollectionCommand.js +2 -1
- package/dist-es/commands/CreateKeyCommand.js +2 -2
- package/dist-es/commands/CreateMapCommand.js +2 -1
- package/dist-es/commands/CreatePlaceIndexCommand.js +2 -1
- package/dist-es/commands/CreateRouteCalculatorCommand.js +2 -1
- package/dist-es/commands/CreateTrackerCommand.js +2 -1
- package/dist-es/commands/DescribeGeofenceCollectionCommand.js +2 -1
- package/dist-es/commands/DescribeMapCommand.js +2 -1
- package/dist-es/commands/DescribePlaceIndexCommand.js +2 -1
- package/dist-es/commands/DescribeRouteCalculatorCommand.js +2 -1
- package/dist-es/commands/DescribeTrackerCommand.js +2 -1
- package/dist-es/commands/GetDevicePositionHistoryCommand.js +2 -2
- package/dist-es/commands/ListGeofenceCollectionsCommand.js +2 -1
- package/dist-es/commands/ListKeysCommand.js +2 -1
- package/dist-es/commands/ListMapsCommand.js +2 -1
- package/dist-es/commands/ListPlaceIndexesCommand.js +2 -1
- package/dist-es/commands/ListRouteCalculatorsCommand.js +2 -1
- package/dist-es/commands/ListTrackersCommand.js +2 -1
- package/dist-es/commands/PutGeofenceCommand.js +2 -2
- package/dist-es/commands/UpdateGeofenceCollectionCommand.js +2 -1
- package/dist-es/commands/UpdateKeyCommand.js +2 -1
- package/dist-es/commands/UpdateMapCommand.js +2 -1
- package/dist-es/commands/UpdatePlaceIndexCommand.js +2 -1
- package/dist-es/commands/UpdateRouteCalculatorCommand.js +2 -1
- package/dist-es/commands/UpdateTrackerCommand.js +2 -1
- package/dist-es/models/models_0.js +233 -0
- package/dist-es/protocols/Aws_restJson1.js +17 -0
- package/dist-types/commands/AssociateTrackerConsumerCommand.d.ts +1 -1
- package/dist-types/commands/BatchEvaluateGeofencesCommand.d.ts +2 -1
- package/dist-types/commands/BatchPutGeofenceCommand.d.ts +9 -1
- package/dist-types/commands/CalculateRouteCommand.d.ts +3 -3
- package/dist-types/commands/CalculateRouteMatrixCommand.d.ts +3 -3
- package/dist-types/commands/CreateGeofenceCollectionCommand.d.ts +1 -1
- package/dist-types/commands/CreateKeyCommand.d.ts +2 -2
- package/dist-types/commands/CreateMapCommand.d.ts +1 -1
- package/dist-types/commands/CreatePlaceIndexCommand.d.ts +1 -1
- package/dist-types/commands/CreateRouteCalculatorCommand.d.ts +1 -1
- package/dist-types/commands/CreateTrackerCommand.d.ts +1 -1
- package/dist-types/commands/ForecastGeofenceEventsCommand.d.ts +17 -6
- package/dist-types/commands/GetGeofenceCommand.d.ts +9 -1
- package/dist-types/commands/GetPlaceCommand.d.ts +6 -0
- package/dist-types/commands/ListGeofencesCommand.d.ts +7 -0
- package/dist-types/commands/PutGeofenceCommand.d.ts +7 -0
- package/dist-types/commands/VerifyDevicePositionCommand.d.ts +5 -0
- package/dist-types/models/models_0.d.ts +481 -136
- package/dist-types/ts3.4/models/models_0.d.ts +133 -0
- package/package.json +5 -5
|
@@ -29,7 +29,8 @@ declare const GetGeofenceCommand_base: {
|
|
|
29
29
|
/**
|
|
30
30
|
* <p>Retrieves the geofence details from a geofence collection.</p>
|
|
31
31
|
* <note>
|
|
32
|
-
* <p>The returned geometry will always match the geometry format used when the geofence
|
|
32
|
+
* <p>The returned geometry will always match the geometry format used when the geofence
|
|
33
|
+
* was created.</p>
|
|
33
34
|
* </note>
|
|
34
35
|
* @example
|
|
35
36
|
* Use a bare-bones client and the command you need to make an API call.
|
|
@@ -60,6 +61,13 @@ declare const GetGeofenceCommand_base: {
|
|
|
60
61
|
* // Radius: Number("double"), // required
|
|
61
62
|
* // },
|
|
62
63
|
* // Geobuf: new Uint8Array(),
|
|
64
|
+
* // MultiPolygon: [ // MultiLinearRings
|
|
65
|
+
* // [
|
|
66
|
+
* // [
|
|
67
|
+
* // "<Position>",
|
|
68
|
+
* // ],
|
|
69
|
+
* // ],
|
|
70
|
+
* // ],
|
|
63
71
|
* // },
|
|
64
72
|
* // Status: "STRING_VALUE", // required
|
|
65
73
|
* // CreateTime: new Date("TIMESTAMP"), // required
|
|
@@ -44,6 +44,12 @@ declare const GetPlaceCommand_base: {
|
|
|
44
44
|
* </li>
|
|
45
45
|
* </ul>
|
|
46
46
|
* </note>
|
|
47
|
+
* <note>
|
|
48
|
+
* <p>If your Place index resource is configured with Grab as your geolocation
|
|
49
|
+
* provider and Storage as Intended use, the GetPlace operation is unavailable. For
|
|
50
|
+
* more information, see <a href="http://aws.amazon.com/service-terms">AWS service
|
|
51
|
+
* terms</a>.</p>
|
|
52
|
+
* </note>
|
|
47
53
|
* @example
|
|
48
54
|
* Use a bare-bones client and the command you need to make an API call.
|
|
49
55
|
* ```javascript
|
|
@@ -60,6 +60,13 @@ declare const ListGeofencesCommand_base: {
|
|
|
60
60
|
* // Radius: Number("double"), // required
|
|
61
61
|
* // },
|
|
62
62
|
* // Geobuf: new Uint8Array(),
|
|
63
|
+
* // MultiPolygon: [ // MultiLinearRings
|
|
64
|
+
* // [
|
|
65
|
+
* // [
|
|
66
|
+
* // "<Position>",
|
|
67
|
+
* // ],
|
|
68
|
+
* // ],
|
|
69
|
+
* // ],
|
|
63
70
|
* // },
|
|
64
71
|
* // Status: "STRING_VALUE", // required
|
|
65
72
|
* // CreateTime: new Date("TIMESTAMP"), // required
|
|
@@ -53,6 +53,13 @@ declare const PutGeofenceCommand_base: {
|
|
|
53
53
|
* Radius: Number("double"), // required
|
|
54
54
|
* },
|
|
55
55
|
* Geobuf: new Uint8Array(), // e.g. Buffer.from("") or new TextEncoder().encode("")
|
|
56
|
+
* MultiPolygon: [ // MultiLinearRings
|
|
57
|
+
* [
|
|
58
|
+
* [
|
|
59
|
+
* "<Position>",
|
|
60
|
+
* ],
|
|
61
|
+
* ],
|
|
62
|
+
* ],
|
|
56
63
|
* },
|
|
57
64
|
* GeofenceProperties: { // PropertyMap
|
|
58
65
|
* "<keys>": "STRING_VALUE",
|
|
@@ -28,6 +28,11 @@ declare const VerifyDevicePositionCommand_base: {
|
|
|
28
28
|
};
|
|
29
29
|
/**
|
|
30
30
|
* <p>Verifies the integrity of the device's position by determining if it was reported behind a proxy, and by comparing it to an inferred position estimated based on the device's state.</p>
|
|
31
|
+
* <note>
|
|
32
|
+
* <p>The Location Integrity SDK provides enhanced
|
|
33
|
+
* features related to device verification, and it is available for use by request.
|
|
34
|
+
* To get access to the SDK, contact <a href="https://aws.amazon.com/contact-us/sales-support/?pg=locationprice&cta=herobtn">Sales Support</a>.</p>
|
|
35
|
+
* </note>
|
|
31
36
|
* @example
|
|
32
37
|
* Use a bare-bones client and the command you need to make an API call.
|
|
33
38
|
* ```javascript
|