@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.
Files changed (51) hide show
  1. package/dist-cjs/index.js +370 -36
  2. package/dist-es/commands/BatchEvaluateGeofencesCommand.js +2 -2
  3. package/dist-es/commands/BatchPutGeofenceCommand.js +2 -2
  4. package/dist-es/commands/BatchUpdateDevicePositionCommand.js +2 -2
  5. package/dist-es/commands/CreateGeofenceCollectionCommand.js +2 -1
  6. package/dist-es/commands/CreateKeyCommand.js +2 -2
  7. package/dist-es/commands/CreateMapCommand.js +2 -1
  8. package/dist-es/commands/CreatePlaceIndexCommand.js +2 -1
  9. package/dist-es/commands/CreateRouteCalculatorCommand.js +2 -1
  10. package/dist-es/commands/CreateTrackerCommand.js +2 -1
  11. package/dist-es/commands/DescribeGeofenceCollectionCommand.js +2 -1
  12. package/dist-es/commands/DescribeMapCommand.js +2 -1
  13. package/dist-es/commands/DescribePlaceIndexCommand.js +2 -1
  14. package/dist-es/commands/DescribeRouteCalculatorCommand.js +2 -1
  15. package/dist-es/commands/DescribeTrackerCommand.js +2 -1
  16. package/dist-es/commands/GetDevicePositionHistoryCommand.js +2 -2
  17. package/dist-es/commands/ListGeofenceCollectionsCommand.js +2 -1
  18. package/dist-es/commands/ListKeysCommand.js +2 -1
  19. package/dist-es/commands/ListMapsCommand.js +2 -1
  20. package/dist-es/commands/ListPlaceIndexesCommand.js +2 -1
  21. package/dist-es/commands/ListRouteCalculatorsCommand.js +2 -1
  22. package/dist-es/commands/ListTrackersCommand.js +2 -1
  23. package/dist-es/commands/PutGeofenceCommand.js +2 -2
  24. package/dist-es/commands/UpdateGeofenceCollectionCommand.js +2 -1
  25. package/dist-es/commands/UpdateKeyCommand.js +2 -1
  26. package/dist-es/commands/UpdateMapCommand.js +2 -1
  27. package/dist-es/commands/UpdatePlaceIndexCommand.js +2 -1
  28. package/dist-es/commands/UpdateRouteCalculatorCommand.js +2 -1
  29. package/dist-es/commands/UpdateTrackerCommand.js +2 -1
  30. package/dist-es/models/models_0.js +233 -0
  31. package/dist-es/protocols/Aws_restJson1.js +17 -0
  32. package/dist-types/commands/AssociateTrackerConsumerCommand.d.ts +1 -1
  33. package/dist-types/commands/BatchEvaluateGeofencesCommand.d.ts +2 -1
  34. package/dist-types/commands/BatchPutGeofenceCommand.d.ts +9 -1
  35. package/dist-types/commands/CalculateRouteCommand.d.ts +3 -3
  36. package/dist-types/commands/CalculateRouteMatrixCommand.d.ts +3 -3
  37. package/dist-types/commands/CreateGeofenceCollectionCommand.d.ts +1 -1
  38. package/dist-types/commands/CreateKeyCommand.d.ts +2 -2
  39. package/dist-types/commands/CreateMapCommand.d.ts +1 -1
  40. package/dist-types/commands/CreatePlaceIndexCommand.d.ts +1 -1
  41. package/dist-types/commands/CreateRouteCalculatorCommand.d.ts +1 -1
  42. package/dist-types/commands/CreateTrackerCommand.d.ts +1 -1
  43. package/dist-types/commands/ForecastGeofenceEventsCommand.d.ts +17 -6
  44. package/dist-types/commands/GetGeofenceCommand.d.ts +9 -1
  45. package/dist-types/commands/GetPlaceCommand.d.ts +6 -0
  46. package/dist-types/commands/ListGeofencesCommand.d.ts +7 -0
  47. package/dist-types/commands/PutGeofenceCommand.d.ts +7 -0
  48. package/dist-types/commands/VerifyDevicePositionCommand.d.ts +5 -0
  49. package/dist-types/models/models_0.d.ts +481 -136
  50. package/dist-types/ts3.4/models/models_0.d.ts +133 -0
  51. 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 was created.</p>
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&amp;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