@aws-sdk/client-location 3.916.0 → 3.917.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 (67) hide show
  1. package/dist-cjs/endpoint/ruleset.js +1 -1
  2. package/dist-cjs/index.js +96 -0
  3. package/dist-es/endpoint/ruleset.js +1 -1
  4. package/dist-es/models/models_0.js +89 -0
  5. package/dist-types/commands/AssociateTrackerConsumerCommand.d.ts +3 -11
  6. package/dist-types/commands/BatchDeleteDevicePositionHistoryCommand.d.ts +1 -2
  7. package/dist-types/commands/BatchDeleteGeofenceCommand.d.ts +2 -6
  8. package/dist-types/commands/BatchEvaluateGeofencesCommand.d.ts +2 -32
  9. package/dist-types/commands/BatchGetDevicePositionCommand.d.ts +1 -2
  10. package/dist-types/commands/BatchPutGeofenceCommand.d.ts +2 -5
  11. package/dist-types/commands/BatchUpdateDevicePositionCommand.d.ts +2 -25
  12. package/dist-types/commands/CalculateRouteCommand.d.ts +2 -36
  13. package/dist-types/commands/CalculateRouteMatrixCommand.d.ts +2 -44
  14. package/dist-types/commands/CreateGeofenceCollectionCommand.d.ts +2 -4
  15. package/dist-types/commands/CreateKeyCommand.d.ts +14 -9
  16. package/dist-types/commands/CreateMapCommand.d.ts +3 -12
  17. package/dist-types/commands/CreatePlaceIndexCommand.d.ts +3 -15
  18. package/dist-types/commands/CreateRouteCalculatorCommand.d.ts +3 -14
  19. package/dist-types/commands/CreateTrackerCommand.d.ts +3 -6
  20. package/dist-types/commands/DeleteGeofenceCollectionCommand.d.ts +2 -7
  21. package/dist-types/commands/DeleteKeyCommand.d.ts +2 -4
  22. package/dist-types/commands/DeleteMapCommand.d.ts +2 -7
  23. package/dist-types/commands/DeletePlaceIndexCommand.d.ts +2 -6
  24. package/dist-types/commands/DeleteRouteCalculatorCommand.d.ts +2 -6
  25. package/dist-types/commands/DeleteTrackerCommand.d.ts +2 -8
  26. package/dist-types/commands/DescribeGeofenceCollectionCommand.d.ts +1 -2
  27. package/dist-types/commands/DescribeKeyCommand.d.ts +13 -3
  28. package/dist-types/commands/DescribeMapCommand.d.ts +2 -3
  29. package/dist-types/commands/DescribePlaceIndexCommand.d.ts +2 -3
  30. package/dist-types/commands/DescribeRouteCalculatorCommand.d.ts +2 -3
  31. package/dist-types/commands/DescribeTrackerCommand.d.ts +1 -2
  32. package/dist-types/commands/DisassociateTrackerConsumerCommand.d.ts +2 -7
  33. package/dist-types/commands/ForecastGeofenceEventsCommand.d.ts +2 -22
  34. package/dist-types/commands/GetDevicePositionCommand.d.ts +2 -6
  35. package/dist-types/commands/GetDevicePositionHistoryCommand.d.ts +2 -7
  36. package/dist-types/commands/GetGeofenceCommand.d.ts +2 -7
  37. package/dist-types/commands/GetMapGlyphsCommand.d.ts +2 -3
  38. package/dist-types/commands/GetMapSpritesCommand.d.ts +2 -5
  39. package/dist-types/commands/GetMapStyleDescriptorCommand.d.ts +2 -6
  40. package/dist-types/commands/GetMapTileCommand.d.ts +2 -8
  41. package/dist-types/commands/GetPlaceCommand.d.ts +2 -25
  42. package/dist-types/commands/ListDevicePositionsCommand.d.ts +1 -2
  43. package/dist-types/commands/ListGeofenceCollectionsCommand.d.ts +1 -2
  44. package/dist-types/commands/ListGeofencesCommand.d.ts +1 -2
  45. package/dist-types/commands/ListKeysCommand.d.ts +13 -3
  46. package/dist-types/commands/ListMapsCommand.d.ts +2 -3
  47. package/dist-types/commands/ListPlaceIndexesCommand.d.ts +2 -3
  48. package/dist-types/commands/ListRouteCalculatorsCommand.d.ts +2 -3
  49. package/dist-types/commands/ListTagsForResourceCommand.d.ts +1 -2
  50. package/dist-types/commands/ListTrackerConsumersCommand.d.ts +1 -2
  51. package/dist-types/commands/ListTrackersCommand.d.ts +1 -2
  52. package/dist-types/commands/PutGeofenceCommand.d.ts +2 -4
  53. package/dist-types/commands/SearchPlaceIndexForPositionCommand.d.ts +2 -4
  54. package/dist-types/commands/SearchPlaceIndexForSuggestionsCommand.d.ts +2 -14
  55. package/dist-types/commands/SearchPlaceIndexForTextCommand.d.ts +2 -12
  56. package/dist-types/commands/TagResourceCommand.d.ts +2 -13
  57. package/dist-types/commands/UntagResourceCommand.d.ts +1 -2
  58. package/dist-types/commands/UpdateGeofenceCollectionCommand.d.ts +1 -2
  59. package/dist-types/commands/UpdateKeyCommand.d.ts +12 -2
  60. package/dist-types/commands/UpdateMapCommand.d.ts +2 -3
  61. package/dist-types/commands/UpdatePlaceIndexCommand.d.ts +2 -3
  62. package/dist-types/commands/UpdateRouteCalculatorCommand.d.ts +2 -3
  63. package/dist-types/commands/UpdateTrackerCommand.d.ts +1 -2
  64. package/dist-types/commands/VerifyDevicePositionCommand.d.ts +2 -8
  65. package/dist-types/models/models_0.d.ts +444 -2825
  66. package/dist-types/ts3.4/models/models_0.d.ts +26 -0
  67. package/package.json +2 -2
@@ -8,6 +8,10 @@ export declare class AccessDeniedException extends __BaseException {
8
8
  opts: __ExceptionOptionType<AccessDeniedException, __BaseException>
9
9
  );
10
10
  }
11
+ export interface AndroidApp {
12
+ Package: string | undefined;
13
+ CertificateFingerprint: string | undefined;
14
+ }
11
15
  export type Status = "Active" | "Expired";
12
16
  export interface ApiKeyFilter {
13
17
  KeyStatus?: Status | undefined;
@@ -18,10 +22,15 @@ export declare class ConflictException extends __BaseException {
18
22
  Message: string | undefined;
19
23
  constructor(opts: __ExceptionOptionType<ConflictException, __BaseException>);
20
24
  }
25
+ export interface AppleApp {
26
+ BundleId: string | undefined;
27
+ }
21
28
  export interface ApiKeyRestrictions {
22
29
  AllowActions: string[] | undefined;
23
30
  AllowResources: string[] | undefined;
24
31
  AllowReferers?: string[] | undefined;
32
+ AllowAndroidApps?: AndroidApp[] | undefined;
33
+ AllowAppleApps?: AppleApp[] | undefined;
25
34
  }
26
35
  export interface CreateKeyRequest {
27
36
  KeyName: string | undefined;
@@ -1122,6 +1131,16 @@ export declare const BatchUpdateDevicePositionErrorFilterSensitiveLog: (
1122
1131
  export declare const BatchUpdateDevicePositionResponseFilterSensitiveLog: (
1123
1132
  obj: BatchUpdateDevicePositionResponse
1124
1133
  ) => any;
1134
+ export declare const CalculateRouteCarModeOptionsFilterSensitiveLog: (
1135
+ obj: CalculateRouteCarModeOptions
1136
+ ) => any;
1137
+ export declare const TruckDimensionsFilterSensitiveLog: (
1138
+ obj: TruckDimensions
1139
+ ) => any;
1140
+ export declare const TruckWeightFilterSensitiveLog: (obj: TruckWeight) => any;
1141
+ export declare const CalculateRouteTruckModeOptionsFilterSensitiveLog: (
1142
+ obj: CalculateRouteTruckModeOptions
1143
+ ) => any;
1125
1144
  export declare const CalculateRouteRequestFilterSensitiveLog: (
1126
1145
  obj: CalculateRouteRequest
1127
1146
  ) => any;
@@ -1137,6 +1156,9 @@ export declare const CalculateRouteResponseFilterSensitiveLog: (
1137
1156
  export declare const CalculateRouteMatrixRequestFilterSensitiveLog: (
1138
1157
  obj: CalculateRouteMatrixRequest
1139
1158
  ) => any;
1159
+ export declare const RouteMatrixEntryFilterSensitiveLog: (
1160
+ obj: RouteMatrixEntry
1161
+ ) => any;
1140
1162
  export declare const CalculateRouteMatrixResponseFilterSensitiveLog: (
1141
1163
  obj: CalculateRouteMatrixResponse
1142
1164
  ) => any;
@@ -1240,6 +1262,7 @@ export declare const GetPlaceRequestFilterSensitiveLog: (
1240
1262
  export declare const PlaceGeometryFilterSensitiveLog: (
1241
1263
  obj: PlaceGeometry
1242
1264
  ) => any;
1265
+ export declare const TimeZoneFilterSensitiveLog: (obj: TimeZone) => any;
1243
1266
  export declare const PlaceFilterSensitiveLog: (obj: Place) => any;
1244
1267
  export declare const GetPlaceResponseFilterSensitiveLog: (
1245
1268
  obj: GetPlaceResponse
@@ -1307,6 +1330,9 @@ export declare const SearchPlaceIndexForPositionResponseFilterSensitiveLog: (
1307
1330
  export declare const SearchPlaceIndexForSuggestionsRequestFilterSensitiveLog: (
1308
1331
  obj: SearchPlaceIndexForSuggestionsRequest
1309
1332
  ) => any;
1333
+ export declare const SearchForSuggestionsResultFilterSensitiveLog: (
1334
+ obj: SearchForSuggestionsResult
1335
+ ) => any;
1310
1336
  export declare const SearchPlaceIndexForSuggestionsSummaryFilterSensitiveLog: (
1311
1337
  obj: SearchPlaceIndexForSuggestionsSummary
1312
1338
  ) => any;
package/package.json CHANGED
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "name": "@aws-sdk/client-location",
3
3
  "description": "AWS SDK for JavaScript Location Client for Node.js, Browser and React Native",
4
- "version": "3.916.0",
4
+ "version": "3.917.0",
5
5
  "scripts": {
6
6
  "build": "concurrently 'yarn:build:cjs' 'yarn:build:es' 'yarn:build:types'",
7
7
  "build:cjs": "node ../../scripts/compilation/inline client-location",
@@ -21,7 +21,7 @@
21
21
  "@aws-crypto/sha256-browser": "5.2.0",
22
22
  "@aws-crypto/sha256-js": "5.2.0",
23
23
  "@aws-sdk/core": "3.916.0",
24
- "@aws-sdk/credential-provider-node": "3.916.0",
24
+ "@aws-sdk/credential-provider-node": "3.917.0",
25
25
  "@aws-sdk/middleware-host-header": "3.914.0",
26
26
  "@aws-sdk/middleware-logger": "3.914.0",
27
27
  "@aws-sdk/middleware-recursion-detection": "3.914.0",