@aws-sdk/client-location 3.276.0 → 3.279.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/Location.js +75 -0
  2. package/dist-cjs/commands/CreateKeyCommand.js +46 -0
  3. package/dist-cjs/commands/DeleteKeyCommand.js +46 -0
  4. package/dist-cjs/commands/DescribeKeyCommand.js +46 -0
  5. package/dist-cjs/commands/ListKeysCommand.js +46 -0
  6. package/dist-cjs/commands/UpdateKeyCommand.js +46 -0
  7. package/dist-cjs/commands/index.js +5 -0
  8. package/dist-cjs/endpoint/ruleset.js +3 -3
  9. package/dist-cjs/models/models_0.js +80 -22
  10. package/dist-cjs/pagination/ListKeysPaginator.js +36 -0
  11. package/dist-cjs/pagination/index.js +1 -0
  12. package/dist-cjs/protocols/Aws_restJson1.js +544 -3
  13. package/dist-es/Location.js +75 -0
  14. package/dist-es/commands/CreateKeyCommand.js +42 -0
  15. package/dist-es/commands/DeleteKeyCommand.js +42 -0
  16. package/dist-es/commands/DescribeKeyCommand.js +42 -0
  17. package/dist-es/commands/ListKeysCommand.js +42 -0
  18. package/dist-es/commands/UpdateKeyCommand.js +42 -0
  19. package/dist-es/commands/index.js +5 -0
  20. package/dist-es/endpoint/ruleset.js +3 -3
  21. package/dist-es/models/models_0.js +60 -15
  22. package/dist-es/pagination/ListKeysPaginator.js +32 -0
  23. package/dist-es/pagination/index.js +1 -0
  24. package/dist-es/protocols/Aws_restJson1.js +531 -0
  25. package/dist-types/Location.d.ts +82 -24
  26. package/dist-types/LocationClient.d.ts +7 -2
  27. package/dist-types/commands/CreateKeyCommand.d.ts +44 -0
  28. package/dist-types/commands/CreateMapCommand.d.ts +2 -2
  29. package/dist-types/commands/CreatePlaceIndexCommand.d.ts +2 -2
  30. package/dist-types/commands/CreateRouteCalculatorCommand.d.ts +2 -2
  31. package/dist-types/commands/CreateTrackerCommand.d.ts +1 -1
  32. package/dist-types/commands/DeleteGeofenceCollectionCommand.d.ts +1 -1
  33. package/dist-types/commands/DeleteKeyCommand.d.ts +38 -0
  34. package/dist-types/commands/DeleteMapCommand.d.ts +1 -1
  35. package/dist-types/commands/DeletePlaceIndexCommand.d.ts +1 -1
  36. package/dist-types/commands/DeleteRouteCalculatorCommand.d.ts +1 -1
  37. package/dist-types/commands/DeleteTrackerCommand.d.ts +1 -1
  38. package/dist-types/commands/DescribeKeyCommand.d.ts +42 -0
  39. package/dist-types/commands/GetPlaceCommand.d.ts +2 -2
  40. package/dist-types/commands/ListGeofenceCollectionsCommand.d.ts +1 -1
  41. package/dist-types/commands/ListKeysCommand.d.ts +42 -0
  42. package/dist-types/commands/ListMapsCommand.d.ts +1 -1
  43. package/dist-types/commands/ListPlaceIndexesCommand.d.ts +1 -1
  44. package/dist-types/commands/ListRouteCalculatorsCommand.d.ts +1 -1
  45. package/dist-types/commands/ListTrackersCommand.d.ts +1 -1
  46. package/dist-types/commands/TagResourceCommand.d.ts +5 -5
  47. package/dist-types/commands/UpdateKeyCommand.d.ts +42 -0
  48. package/dist-types/commands/index.d.ts +5 -0
  49. package/dist-types/endpoint/EndpointParameters.d.ts +1 -1
  50. package/dist-types/models/models_0.d.ts +548 -67
  51. package/dist-types/pagination/ListKeysPaginator.d.ts +4 -0
  52. package/dist-types/pagination/index.d.ts +1 -0
  53. package/dist-types/protocols/Aws_restJson1.d.ts +15 -0
  54. package/dist-types/ts3.4/Location.d.ts +85 -0
  55. package/dist-types/ts3.4/LocationClient.d.ts +30 -0
  56. package/dist-types/ts3.4/commands/CreateKeyCommand.d.ts +34 -0
  57. package/dist-types/ts3.4/commands/DeleteKeyCommand.d.ts +34 -0
  58. package/dist-types/ts3.4/commands/DescribeKeyCommand.d.ts +34 -0
  59. package/dist-types/ts3.4/commands/ListKeysCommand.d.ts +34 -0
  60. package/dist-types/ts3.4/commands/UpdateKeyCommand.d.ts +34 -0
  61. package/dist-types/ts3.4/commands/index.d.ts +5 -0
  62. package/dist-types/ts3.4/endpoint/EndpointParameters.d.ts +1 -1
  63. package/dist-types/ts3.4/models/models_0.d.ts +131 -15
  64. package/dist-types/ts3.4/pagination/ListKeysPaginator.d.ts +11 -0
  65. package/dist-types/ts3.4/pagination/index.d.ts +1 -0
  66. package/dist-types/ts3.4/protocols/Aws_restJson1.d.ts +60 -0
  67. package/package.json +7 -7
@@ -8,17 +8,35 @@ export declare class AccessDeniedException extends __BaseException {
8
8
  opts: __ExceptionOptionType<AccessDeniedException, __BaseException>
9
9
  );
10
10
  }
11
- export interface AssociateTrackerConsumerRequest {
12
- TrackerName: string | undefined;
13
- ConsumerArn: string | undefined;
11
+ export declare type Status = "Active" | "Expired";
12
+ export interface ApiKeyFilter {
13
+ KeyStatus?: Status | string;
14
14
  }
15
- export interface AssociateTrackerConsumerResponse {}
16
15
  export declare class ConflictException extends __BaseException {
17
16
  readonly name: "ConflictException";
18
17
  readonly $fault: "client";
19
18
  Message: string | undefined;
20
19
  constructor(opts: __ExceptionOptionType<ConflictException, __BaseException>);
21
20
  }
21
+ export interface ApiKeyRestrictions {
22
+ AllowActions: string[] | undefined;
23
+ AllowResources: string[] | undefined;
24
+ AllowReferers?: string[];
25
+ }
26
+ export interface CreateKeyRequest {
27
+ KeyName: string | undefined;
28
+ Restrictions: ApiKeyRestrictions | undefined;
29
+ Description?: string;
30
+ ExpireTime?: Date;
31
+ NoExpiry?: boolean;
32
+ Tags?: Record<string, string>;
33
+ }
34
+ export interface CreateKeyResponse {
35
+ Key: string | undefined;
36
+ KeyArn: string | undefined;
37
+ KeyName: string | undefined;
38
+ CreateTime: Date | undefined;
39
+ }
22
40
  export declare class InternalServerException extends __BaseException {
23
41
  readonly name: "InternalServerException";
24
42
  readonly $fault: "server";
@@ -28,14 +46,6 @@ export declare class InternalServerException extends __BaseException {
28
46
  opts: __ExceptionOptionType<InternalServerException, __BaseException>
29
47
  );
30
48
  }
31
- export declare class ResourceNotFoundException extends __BaseException {
32
- readonly name: "ResourceNotFoundException";
33
- readonly $fault: "client";
34
- Message: string | undefined;
35
- constructor(
36
- opts: __ExceptionOptionType<ResourceNotFoundException, __BaseException>
37
- );
38
- }
39
49
  export declare class ServiceQuotaExceededException extends __BaseException {
40
50
  readonly name: "ServiceQuotaExceededException";
41
51
  readonly $fault: "client";
@@ -73,6 +83,67 @@ export declare class ValidationException extends __BaseException {
73
83
  opts: __ExceptionOptionType<ValidationException, __BaseException>
74
84
  );
75
85
  }
86
+ export interface DeleteKeyRequest {
87
+ KeyName: string | undefined;
88
+ }
89
+ export interface DeleteKeyResponse {}
90
+ export declare class ResourceNotFoundException extends __BaseException {
91
+ readonly name: "ResourceNotFoundException";
92
+ readonly $fault: "client";
93
+ Message: string | undefined;
94
+ constructor(
95
+ opts: __ExceptionOptionType<ResourceNotFoundException, __BaseException>
96
+ );
97
+ }
98
+ export interface DescribeKeyRequest {
99
+ KeyName: string | undefined;
100
+ }
101
+ export interface DescribeKeyResponse {
102
+ Key: string | undefined;
103
+ KeyArn: string | undefined;
104
+ KeyName: string | undefined;
105
+ Restrictions: ApiKeyRestrictions | undefined;
106
+ CreateTime: Date | undefined;
107
+ ExpireTime: Date | undefined;
108
+ UpdateTime: Date | undefined;
109
+ Description?: string;
110
+ Tags?: Record<string, string>;
111
+ }
112
+ export interface ListKeysRequest {
113
+ MaxResults?: number;
114
+ NextToken?: string;
115
+ Filter?: ApiKeyFilter;
116
+ }
117
+ export interface ListKeysResponseEntry {
118
+ KeyName: string | undefined;
119
+ ExpireTime: Date | undefined;
120
+ Description?: string;
121
+ Restrictions: ApiKeyRestrictions | undefined;
122
+ CreateTime: Date | undefined;
123
+ UpdateTime: Date | undefined;
124
+ }
125
+ export interface ListKeysResponse {
126
+ Entries: ListKeysResponseEntry[] | undefined;
127
+ NextToken?: string;
128
+ }
129
+ export interface UpdateKeyRequest {
130
+ KeyName: string | undefined;
131
+ Description?: string;
132
+ ExpireTime?: Date;
133
+ NoExpiry?: boolean;
134
+ ForceUpdate?: boolean;
135
+ Restrictions?: ApiKeyRestrictions;
136
+ }
137
+ export interface UpdateKeyResponse {
138
+ KeyArn: string | undefined;
139
+ KeyName: string | undefined;
140
+ UpdateTime: Date | undefined;
141
+ }
142
+ export interface AssociateTrackerConsumerRequest {
143
+ TrackerName: string | undefined;
144
+ ConsumerArn: string | undefined;
145
+ }
146
+ export interface AssociateTrackerConsumerResponse {}
76
147
  export interface BatchDeleteDevicePositionHistoryRequest {
77
148
  TrackerName: string | undefined;
78
149
  DeviceIds: string[] | undefined;
@@ -581,35 +652,43 @@ export interface GetMapGlyphsRequest {
581
652
  MapName: string | undefined;
582
653
  FontStack: string | undefined;
583
654
  FontUnicodeRange: string | undefined;
655
+ Key?: string;
584
656
  }
585
657
  export interface GetMapGlyphsResponse {
586
658
  Blob?: Uint8Array;
587
659
  ContentType?: string;
660
+ CacheControl?: string;
588
661
  }
589
662
  export interface GetMapSpritesRequest {
590
663
  MapName: string | undefined;
591
664
  FileName: string | undefined;
665
+ Key?: string;
592
666
  }
593
667
  export interface GetMapSpritesResponse {
594
668
  Blob?: Uint8Array;
595
669
  ContentType?: string;
670
+ CacheControl?: string;
596
671
  }
597
672
  export interface GetMapStyleDescriptorRequest {
598
673
  MapName: string | undefined;
674
+ Key?: string;
599
675
  }
600
676
  export interface GetMapStyleDescriptorResponse {
601
677
  Blob?: Uint8Array;
602
678
  ContentType?: string;
679
+ CacheControl?: string;
603
680
  }
604
681
  export interface GetMapTileRequest {
605
682
  MapName: string | undefined;
606
683
  Z: string | undefined;
607
684
  X: string | undefined;
608
685
  Y: string | undefined;
686
+ Key?: string;
609
687
  }
610
688
  export interface GetMapTileResponse {
611
689
  Blob?: Uint8Array;
612
690
  ContentType?: string;
691
+ CacheControl?: string;
613
692
  }
614
693
  export interface GetPlaceRequest {
615
694
  IndexName: string | undefined;
@@ -850,15 +929,52 @@ export interface UpdateTrackerResponse {
850
929
  TrackerArn: string | undefined;
851
930
  UpdateTime: Date | undefined;
852
931
  }
932
+ export declare const ApiKeyFilterFilterSensitiveLog: (obj: ApiKeyFilter) => any;
933
+ export declare const ApiKeyRestrictionsFilterSensitiveLog: (
934
+ obj: ApiKeyRestrictions
935
+ ) => any;
936
+ export declare const CreateKeyRequestFilterSensitiveLog: (
937
+ obj: CreateKeyRequest
938
+ ) => any;
939
+ export declare const CreateKeyResponseFilterSensitiveLog: (
940
+ obj: CreateKeyResponse
941
+ ) => any;
942
+ export declare const ValidationExceptionFieldFilterSensitiveLog: (
943
+ obj: ValidationExceptionField
944
+ ) => any;
945
+ export declare const DeleteKeyRequestFilterSensitiveLog: (
946
+ obj: DeleteKeyRequest
947
+ ) => any;
948
+ export declare const DeleteKeyResponseFilterSensitiveLog: (
949
+ obj: DeleteKeyResponse
950
+ ) => any;
951
+ export declare const DescribeKeyRequestFilterSensitiveLog: (
952
+ obj: DescribeKeyRequest
953
+ ) => any;
954
+ export declare const DescribeKeyResponseFilterSensitiveLog: (
955
+ obj: DescribeKeyResponse
956
+ ) => any;
957
+ export declare const ListKeysRequestFilterSensitiveLog: (
958
+ obj: ListKeysRequest
959
+ ) => any;
960
+ export declare const ListKeysResponseEntryFilterSensitiveLog: (
961
+ obj: ListKeysResponseEntry
962
+ ) => any;
963
+ export declare const ListKeysResponseFilterSensitiveLog: (
964
+ obj: ListKeysResponse
965
+ ) => any;
966
+ export declare const UpdateKeyRequestFilterSensitiveLog: (
967
+ obj: UpdateKeyRequest
968
+ ) => any;
969
+ export declare const UpdateKeyResponseFilterSensitiveLog: (
970
+ obj: UpdateKeyResponse
971
+ ) => any;
853
972
  export declare const AssociateTrackerConsumerRequestFilterSensitiveLog: (
854
973
  obj: AssociateTrackerConsumerRequest
855
974
  ) => any;
856
975
  export declare const AssociateTrackerConsumerResponseFilterSensitiveLog: (
857
976
  obj: AssociateTrackerConsumerResponse
858
977
  ) => any;
859
- export declare const ValidationExceptionFieldFilterSensitiveLog: (
860
- obj: ValidationExceptionField
861
- ) => any;
862
978
  export declare const BatchDeleteDevicePositionHistoryRequestFilterSensitiveLog: (
863
979
  obj: BatchDeleteDevicePositionHistoryRequest
864
980
  ) => any;
@@ -0,0 +1,11 @@
1
+ import { Paginator } from "@aws-sdk/types";
2
+ import {
3
+ ListKeysCommandInput,
4
+ ListKeysCommandOutput,
5
+ } from "../commands/ListKeysCommand";
6
+ import { LocationPaginationConfiguration } from "./Interfaces";
7
+ export declare function paginateListKeys(
8
+ config: LocationPaginationConfiguration,
9
+ input: ListKeysCommandInput,
10
+ ...additionalArguments: any
11
+ ): Paginator<ListKeysCommandOutput>;
@@ -3,6 +3,7 @@ export * from "./Interfaces";
3
3
  export * from "./ListDevicePositionsPaginator";
4
4
  export * from "./ListGeofenceCollectionsPaginator";
5
5
  export * from "./ListGeofencesPaginator";
6
+ export * from "./ListKeysPaginator";
6
7
  export * from "./ListMapsPaginator";
7
8
  export * from "./ListPlaceIndexesPaginator";
8
9
  export * from "./ListRouteCalculatorsPaginator";
@@ -43,6 +43,10 @@ import {
43
43
  CreateGeofenceCollectionCommandInput,
44
44
  CreateGeofenceCollectionCommandOutput,
45
45
  } from "../commands/CreateGeofenceCollectionCommand";
46
+ import {
47
+ CreateKeyCommandInput,
48
+ CreateKeyCommandOutput,
49
+ } from "../commands/CreateKeyCommand";
46
50
  import {
47
51
  CreateMapCommandInput,
48
52
  CreateMapCommandOutput,
@@ -63,6 +67,10 @@ import {
63
67
  DeleteGeofenceCollectionCommandInput,
64
68
  DeleteGeofenceCollectionCommandOutput,
65
69
  } from "../commands/DeleteGeofenceCollectionCommand";
70
+ import {
71
+ DeleteKeyCommandInput,
72
+ DeleteKeyCommandOutput,
73
+ } from "../commands/DeleteKeyCommand";
66
74
  import {
67
75
  DeleteMapCommandInput,
68
76
  DeleteMapCommandOutput,
@@ -83,6 +91,10 @@ import {
83
91
  DescribeGeofenceCollectionCommandInput,
84
92
  DescribeGeofenceCollectionCommandOutput,
85
93
  } from "../commands/DescribeGeofenceCollectionCommand";
94
+ import {
95
+ DescribeKeyCommandInput,
96
+ DescribeKeyCommandOutput,
97
+ } from "../commands/DescribeKeyCommand";
86
98
  import {
87
99
  DescribeMapCommandInput,
88
100
  DescribeMapCommandOutput,
@@ -147,6 +159,10 @@ import {
147
159
  ListGeofencesCommandInput,
148
160
  ListGeofencesCommandOutput,
149
161
  } from "../commands/ListGeofencesCommand";
162
+ import {
163
+ ListKeysCommandInput,
164
+ ListKeysCommandOutput,
165
+ } from "../commands/ListKeysCommand";
150
166
  import {
151
167
  ListMapsCommandInput,
152
168
  ListMapsCommandOutput,
@@ -199,6 +215,10 @@ import {
199
215
  UpdateGeofenceCollectionCommandInput,
200
216
  UpdateGeofenceCollectionCommandOutput,
201
217
  } from "../commands/UpdateGeofenceCollectionCommand";
218
+ import {
219
+ UpdateKeyCommandInput,
220
+ UpdateKeyCommandOutput,
221
+ } from "../commands/UpdateKeyCommand";
202
222
  import {
203
223
  UpdateMapCommandInput,
204
224
  UpdateMapCommandOutput,
@@ -255,6 +275,10 @@ export declare const serializeAws_restJson1CreateGeofenceCollectionCommand: (
255
275
  input: CreateGeofenceCollectionCommandInput,
256
276
  context: __SerdeContext
257
277
  ) => Promise<__HttpRequest>;
278
+ export declare const serializeAws_restJson1CreateKeyCommand: (
279
+ input: CreateKeyCommandInput,
280
+ context: __SerdeContext
281
+ ) => Promise<__HttpRequest>;
258
282
  export declare const serializeAws_restJson1CreateMapCommand: (
259
283
  input: CreateMapCommandInput,
260
284
  context: __SerdeContext
@@ -275,6 +299,10 @@ export declare const serializeAws_restJson1DeleteGeofenceCollectionCommand: (
275
299
  input: DeleteGeofenceCollectionCommandInput,
276
300
  context: __SerdeContext
277
301
  ) => Promise<__HttpRequest>;
302
+ export declare const serializeAws_restJson1DeleteKeyCommand: (
303
+ input: DeleteKeyCommandInput,
304
+ context: __SerdeContext
305
+ ) => Promise<__HttpRequest>;
278
306
  export declare const serializeAws_restJson1DeleteMapCommand: (
279
307
  input: DeleteMapCommandInput,
280
308
  context: __SerdeContext
@@ -295,6 +323,10 @@ export declare const serializeAws_restJson1DescribeGeofenceCollectionCommand: (
295
323
  input: DescribeGeofenceCollectionCommandInput,
296
324
  context: __SerdeContext
297
325
  ) => Promise<__HttpRequest>;
326
+ export declare const serializeAws_restJson1DescribeKeyCommand: (
327
+ input: DescribeKeyCommandInput,
328
+ context: __SerdeContext
329
+ ) => Promise<__HttpRequest>;
298
330
  export declare const serializeAws_restJson1DescribeMapCommand: (
299
331
  input: DescribeMapCommandInput,
300
332
  context: __SerdeContext
@@ -359,6 +391,10 @@ export declare const serializeAws_restJson1ListGeofencesCommand: (
359
391
  input: ListGeofencesCommandInput,
360
392
  context: __SerdeContext
361
393
  ) => Promise<__HttpRequest>;
394
+ export declare const serializeAws_restJson1ListKeysCommand: (
395
+ input: ListKeysCommandInput,
396
+ context: __SerdeContext
397
+ ) => Promise<__HttpRequest>;
362
398
  export declare const serializeAws_restJson1ListMapsCommand: (
363
399
  input: ListMapsCommandInput,
364
400
  context: __SerdeContext
@@ -411,6 +447,10 @@ export declare const serializeAws_restJson1UpdateGeofenceCollectionCommand: (
411
447
  input: UpdateGeofenceCollectionCommandInput,
412
448
  context: __SerdeContext
413
449
  ) => Promise<__HttpRequest>;
450
+ export declare const serializeAws_restJson1UpdateKeyCommand: (
451
+ input: UpdateKeyCommandInput,
452
+ context: __SerdeContext
453
+ ) => Promise<__HttpRequest>;
414
454
  export declare const serializeAws_restJson1UpdateMapCommand: (
415
455
  input: UpdateMapCommandInput,
416
456
  context: __SerdeContext
@@ -467,6 +507,10 @@ export declare const deserializeAws_restJson1CreateGeofenceCollectionCommand: (
467
507
  output: __HttpResponse,
468
508
  context: __SerdeContext
469
509
  ) => Promise<CreateGeofenceCollectionCommandOutput>;
510
+ export declare const deserializeAws_restJson1CreateKeyCommand: (
511
+ output: __HttpResponse,
512
+ context: __SerdeContext
513
+ ) => Promise<CreateKeyCommandOutput>;
470
514
  export declare const deserializeAws_restJson1CreateMapCommand: (
471
515
  output: __HttpResponse,
472
516
  context: __SerdeContext
@@ -487,6 +531,10 @@ export declare const deserializeAws_restJson1DeleteGeofenceCollectionCommand: (
487
531
  output: __HttpResponse,
488
532
  context: __SerdeContext
489
533
  ) => Promise<DeleteGeofenceCollectionCommandOutput>;
534
+ export declare const deserializeAws_restJson1DeleteKeyCommand: (
535
+ output: __HttpResponse,
536
+ context: __SerdeContext
537
+ ) => Promise<DeleteKeyCommandOutput>;
490
538
  export declare const deserializeAws_restJson1DeleteMapCommand: (
491
539
  output: __HttpResponse,
492
540
  context: __SerdeContext
@@ -507,6 +555,10 @@ export declare const deserializeAws_restJson1DescribeGeofenceCollectionCommand:
507
555
  output: __HttpResponse,
508
556
  context: __SerdeContext
509
557
  ) => Promise<DescribeGeofenceCollectionCommandOutput>;
558
+ export declare const deserializeAws_restJson1DescribeKeyCommand: (
559
+ output: __HttpResponse,
560
+ context: __SerdeContext
561
+ ) => Promise<DescribeKeyCommandOutput>;
510
562
  export declare const deserializeAws_restJson1DescribeMapCommand: (
511
563
  output: __HttpResponse,
512
564
  context: __SerdeContext
@@ -571,6 +623,10 @@ export declare const deserializeAws_restJson1ListGeofencesCommand: (
571
623
  output: __HttpResponse,
572
624
  context: __SerdeContext
573
625
  ) => Promise<ListGeofencesCommandOutput>;
626
+ export declare const deserializeAws_restJson1ListKeysCommand: (
627
+ output: __HttpResponse,
628
+ context: __SerdeContext
629
+ ) => Promise<ListKeysCommandOutput>;
574
630
  export declare const deserializeAws_restJson1ListMapsCommand: (
575
631
  output: __HttpResponse,
576
632
  context: __SerdeContext
@@ -623,6 +679,10 @@ export declare const deserializeAws_restJson1UpdateGeofenceCollectionCommand: (
623
679
  output: __HttpResponse,
624
680
  context: __SerdeContext
625
681
  ) => Promise<UpdateGeofenceCollectionCommandOutput>;
682
+ export declare const deserializeAws_restJson1UpdateKeyCommand: (
683
+ output: __HttpResponse,
684
+ context: __SerdeContext
685
+ ) => Promise<UpdateKeyCommandOutput>;
626
686
  export declare const deserializeAws_restJson1UpdateMapCommand: (
627
687
  output: __HttpResponse,
628
688
  context: __SerdeContext
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.276.0",
4
+ "version": "3.279.0",
5
5
  "scripts": {
6
6
  "build": "concurrently 'yarn:build:cjs' 'yarn:build:es' 'yarn:build:types'",
7
7
  "build:cjs": "tsc -p tsconfig.cjs.json",
@@ -20,15 +20,15 @@
20
20
  "dependencies": {
21
21
  "@aws-crypto/sha256-browser": "3.0.0",
22
22
  "@aws-crypto/sha256-js": "3.0.0",
23
- "@aws-sdk/client-sts": "3.276.0",
23
+ "@aws-sdk/client-sts": "3.279.0",
24
24
  "@aws-sdk/config-resolver": "3.272.0",
25
- "@aws-sdk/credential-provider-node": "3.272.0",
25
+ "@aws-sdk/credential-provider-node": "3.279.0",
26
26
  "@aws-sdk/fetch-http-handler": "3.272.0",
27
27
  "@aws-sdk/hash-node": "3.272.0",
28
28
  "@aws-sdk/invalid-dependency": "3.272.0",
29
29
  "@aws-sdk/middleware-content-length": "3.272.0",
30
30
  "@aws-sdk/middleware-endpoint": "3.272.0",
31
- "@aws-sdk/middleware-host-header": "3.272.0",
31
+ "@aws-sdk/middleware-host-header": "3.278.0",
32
32
  "@aws-sdk/middleware-logger": "3.272.0",
33
33
  "@aws-sdk/middleware-recursion-detection": "3.272.0",
34
34
  "@aws-sdk/middleware-retry": "3.272.0",
@@ -39,14 +39,14 @@
39
39
  "@aws-sdk/node-config-provider": "3.272.0",
40
40
  "@aws-sdk/node-http-handler": "3.272.0",
41
41
  "@aws-sdk/protocol-http": "3.272.0",
42
- "@aws-sdk/smithy-client": "3.272.0",
42
+ "@aws-sdk/smithy-client": "3.279.0",
43
43
  "@aws-sdk/types": "3.272.0",
44
44
  "@aws-sdk/url-parser": "3.272.0",
45
45
  "@aws-sdk/util-base64": "3.208.0",
46
46
  "@aws-sdk/util-body-length-browser": "3.188.0",
47
47
  "@aws-sdk/util-body-length-node": "3.208.0",
48
- "@aws-sdk/util-defaults-mode-browser": "3.272.0",
49
- "@aws-sdk/util-defaults-mode-node": "3.272.0",
48
+ "@aws-sdk/util-defaults-mode-browser": "3.279.0",
49
+ "@aws-sdk/util-defaults-mode-node": "3.279.0",
50
50
  "@aws-sdk/util-endpoints": "3.272.0",
51
51
  "@aws-sdk/util-retry": "3.272.0",
52
52
  "@aws-sdk/util-user-agent-browser": "3.272.0",