@aws-sdk/client-location 3.51.0 → 3.54.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 +27 -0
- package/dist-cjs/index.js +3 -0
- package/dist-cjs/models/LocationServiceException.js +11 -0
- package/dist-cjs/models/models_0.js +107 -3
- package/dist-cjs/protocols/Aws_restJson1.js +571 -2146
- package/dist-es/index.js +1 -0
- package/dist-es/models/LocationServiceException.js +12 -0
- package/dist-es/models/models_0.js +97 -1
- package/dist-es/protocols/Aws_restJson1.js +1231 -2362
- package/dist-types/LocationClient.d.ts +2 -2
- package/dist-types/index.d.ts +1 -0
- package/dist-types/models/LocationServiceException.d.ts +10 -0
- package/dist-types/models/models_0.d.ts +51 -22
- package/dist-types/runtimeConfig.browser.d.ts +1 -1
- package/dist-types/runtimeConfig.d.ts +1 -1
- package/dist-types/runtimeConfig.native.d.ts +1 -1
- package/dist-types/ts3.4/LocationClient.d.ts +2 -2
- package/dist-types/ts3.4/index.d.ts +1 -0
- package/dist-types/ts3.4/models/LocationServiceException.d.ts +6 -0
- package/dist-types/ts3.4/models/models_0.d.ts +37 -22
- package/dist-types/ts3.4/runtimeConfig.browser.d.ts +1 -1
- package/dist-types/ts3.4/runtimeConfig.d.ts +1 -1
- package/dist-types/ts3.4/runtimeConfig.native.d.ts +1 -1
- package/package.json +33 -33
|
@@ -5,7 +5,7 @@ import { AwsAuthInputConfig, AwsAuthResolvedConfig } from "@aws-sdk/middleware-s
|
|
|
5
5
|
import { UserAgentInputConfig, UserAgentResolvedConfig } from "@aws-sdk/middleware-user-agent";
|
|
6
6
|
import { HttpHandler as __HttpHandler } from "@aws-sdk/protocol-http";
|
|
7
7
|
import { Client as __Client, DefaultsMode, SmithyConfiguration as __SmithyConfiguration, SmithyResolvedConfiguration as __SmithyResolvedConfiguration } from "@aws-sdk/smithy-client";
|
|
8
|
-
import { Credentials as __Credentials, Decoder as __Decoder, Encoder as __Encoder, HashConstructor as __HashConstructor, HttpHandlerOptions as __HttpHandlerOptions, Logger as __Logger, Provider as __Provider, Provider, RegionInfoProvider, StreamCollector as __StreamCollector, UrlParser as __UrlParser, UserAgent as __UserAgent } from "@aws-sdk/types";
|
|
8
|
+
import { BodyLengthCalculator as __BodyLengthCalculator, Credentials as __Credentials, Decoder as __Decoder, Encoder as __Encoder, HashConstructor as __HashConstructor, HttpHandlerOptions as __HttpHandlerOptions, Logger as __Logger, Provider as __Provider, Provider, RegionInfoProvider, StreamCollector as __StreamCollector, UrlParser as __UrlParser, UserAgent as __UserAgent } from "@aws-sdk/types";
|
|
9
9
|
import { AssociateTrackerConsumerCommandInput, AssociateTrackerConsumerCommandOutput } from "./commands/AssociateTrackerConsumerCommand";
|
|
10
10
|
import { BatchDeleteDevicePositionHistoryCommandInput, BatchDeleteDevicePositionHistoryCommandOutput } from "./commands/BatchDeleteDevicePositionHistoryCommand";
|
|
11
11
|
import { BatchDeleteGeofenceCommandInput, BatchDeleteGeofenceCommandOutput } from "./commands/BatchDeleteGeofenceCommand";
|
|
@@ -80,7 +80,7 @@ export interface ClientDefaults extends Partial<__SmithyResolvedConfiguration<__
|
|
|
80
80
|
* A function that can calculate the length of a request body.
|
|
81
81
|
* @internal
|
|
82
82
|
*/
|
|
83
|
-
bodyLengthChecker?:
|
|
83
|
+
bodyLengthChecker?: __BodyLengthCalculator;
|
|
84
84
|
/**
|
|
85
85
|
* A function that converts a stream into an array of bytes.
|
|
86
86
|
* @internal
|
package/dist-types/index.d.ts
CHANGED
|
@@ -0,0 +1,10 @@
|
|
|
1
|
+
import { ServiceException as __ServiceException, ServiceExceptionOptions as __ServiceExceptionOptions } from "@aws-sdk/smithy-client";
|
|
2
|
+
/**
|
|
3
|
+
* Base exception class for all service exceptions from Location service.
|
|
4
|
+
*/
|
|
5
|
+
export declare class LocationServiceException extends __ServiceException {
|
|
6
|
+
/**
|
|
7
|
+
* @internal
|
|
8
|
+
*/
|
|
9
|
+
constructor(options: __ServiceExceptionOptions);
|
|
10
|
+
}
|
|
@@ -1,12 +1,17 @@
|
|
|
1
|
-
import {
|
|
1
|
+
import { ExceptionOptionType as __ExceptionOptionType } from "@aws-sdk/smithy-client";
|
|
2
|
+
import { LocationServiceException as __BaseException } from "./LocationServiceException";
|
|
2
3
|
/**
|
|
3
4
|
* <p>The request was denied because of insufficient access or permissions. Check with an
|
|
4
5
|
* administrator to verify your permissions.</p>
|
|
5
6
|
*/
|
|
6
|
-
export
|
|
7
|
-
name: "AccessDeniedException";
|
|
8
|
-
$fault: "client";
|
|
7
|
+
export declare class AccessDeniedException extends __BaseException {
|
|
8
|
+
readonly name: "AccessDeniedException";
|
|
9
|
+
readonly $fault: "client";
|
|
9
10
|
Message: string | undefined;
|
|
11
|
+
/**
|
|
12
|
+
* @internal
|
|
13
|
+
*/
|
|
14
|
+
constructor(opts: __ExceptionOptionType<AccessDeniedException, __BaseException>);
|
|
10
15
|
}
|
|
11
16
|
export interface AssociateTrackerConsumerRequest {
|
|
12
17
|
/**
|
|
@@ -43,48 +48,68 @@ export declare namespace AssociateTrackerConsumerResponse {
|
|
|
43
48
|
/**
|
|
44
49
|
* <p>The request was unsuccessful because of a conflict.</p>
|
|
45
50
|
*/
|
|
46
|
-
export
|
|
47
|
-
name: "ConflictException";
|
|
48
|
-
$fault: "client";
|
|
51
|
+
export declare class ConflictException extends __BaseException {
|
|
52
|
+
readonly name: "ConflictException";
|
|
53
|
+
readonly $fault: "client";
|
|
49
54
|
Message: string | undefined;
|
|
55
|
+
/**
|
|
56
|
+
* @internal
|
|
57
|
+
*/
|
|
58
|
+
constructor(opts: __ExceptionOptionType<ConflictException, __BaseException>);
|
|
50
59
|
}
|
|
51
60
|
/**
|
|
52
61
|
* <p>The request has failed to process because of an unknown server error, exception, or failure.</p>
|
|
53
62
|
*/
|
|
54
|
-
export
|
|
55
|
-
name: "InternalServerException";
|
|
56
|
-
$fault: "server";
|
|
63
|
+
export declare class InternalServerException extends __BaseException {
|
|
64
|
+
readonly name: "InternalServerException";
|
|
65
|
+
readonly $fault: "server";
|
|
57
66
|
$retryable: {};
|
|
58
67
|
Message: string | undefined;
|
|
68
|
+
/**
|
|
69
|
+
* @internal
|
|
70
|
+
*/
|
|
71
|
+
constructor(opts: __ExceptionOptionType<InternalServerException, __BaseException>);
|
|
59
72
|
}
|
|
60
73
|
/**
|
|
61
74
|
* <p>The resource that you've entered was not found in your AWS account.</p>
|
|
62
75
|
*/
|
|
63
|
-
export
|
|
64
|
-
name: "ResourceNotFoundException";
|
|
65
|
-
$fault: "client";
|
|
76
|
+
export declare class ResourceNotFoundException extends __BaseException {
|
|
77
|
+
readonly name: "ResourceNotFoundException";
|
|
78
|
+
readonly $fault: "client";
|
|
66
79
|
Message: string | undefined;
|
|
80
|
+
/**
|
|
81
|
+
* @internal
|
|
82
|
+
*/
|
|
83
|
+
constructor(opts: __ExceptionOptionType<ResourceNotFoundException, __BaseException>);
|
|
67
84
|
}
|
|
68
85
|
/**
|
|
69
86
|
* <p>The operation was denied because the request would exceed the maximum <a href="https://docs.aws.amazon.com/location/latest/developerguide/location-quotas.html">quota</a>
|
|
70
87
|
* set for Amazon Location Service.</p>
|
|
71
88
|
*/
|
|
72
|
-
export
|
|
73
|
-
name: "ServiceQuotaExceededException";
|
|
74
|
-
$fault: "client";
|
|
89
|
+
export declare class ServiceQuotaExceededException extends __BaseException {
|
|
90
|
+
readonly name: "ServiceQuotaExceededException";
|
|
91
|
+
readonly $fault: "client";
|
|
75
92
|
/**
|
|
76
93
|
* <p>A message with the reason for the service quota exceeded exception error.</p>
|
|
77
94
|
*/
|
|
78
95
|
Message: string | undefined;
|
|
96
|
+
/**
|
|
97
|
+
* @internal
|
|
98
|
+
*/
|
|
99
|
+
constructor(opts: __ExceptionOptionType<ServiceQuotaExceededException, __BaseException>);
|
|
79
100
|
}
|
|
80
101
|
/**
|
|
81
102
|
* <p>The request was denied because of request throttling.</p>
|
|
82
103
|
*/
|
|
83
|
-
export
|
|
84
|
-
name: "ThrottlingException";
|
|
85
|
-
$fault: "client";
|
|
104
|
+
export declare class ThrottlingException extends __BaseException {
|
|
105
|
+
readonly name: "ThrottlingException";
|
|
106
|
+
readonly $fault: "client";
|
|
86
107
|
$retryable: {};
|
|
87
108
|
Message: string | undefined;
|
|
109
|
+
/**
|
|
110
|
+
* @internal
|
|
111
|
+
*/
|
|
112
|
+
constructor(opts: __ExceptionOptionType<ThrottlingException, __BaseException>);
|
|
88
113
|
}
|
|
89
114
|
/**
|
|
90
115
|
* <p>The input failed to meet the constraints specified by the AWS service in a specified
|
|
@@ -110,9 +135,9 @@ export declare type ValidationExceptionReason = "CannotParse" | "FieldValidation
|
|
|
110
135
|
/**
|
|
111
136
|
* <p>The input failed to meet the constraints specified by the AWS service. </p>
|
|
112
137
|
*/
|
|
113
|
-
export
|
|
114
|
-
name: "ValidationException";
|
|
115
|
-
$fault: "client";
|
|
138
|
+
export declare class ValidationException extends __BaseException {
|
|
139
|
+
readonly name: "ValidationException";
|
|
140
|
+
readonly $fault: "client";
|
|
116
141
|
Message: string | undefined;
|
|
117
142
|
/**
|
|
118
143
|
* <p>A message with the reason for the validation exception error.</p>
|
|
@@ -122,6 +147,10 @@ export interface ValidationException extends __SmithyException, $MetadataBearer
|
|
|
122
147
|
* <p>The field where the invalid entry was detected.</p>
|
|
123
148
|
*/
|
|
124
149
|
FieldList: ValidationExceptionField[] | undefined;
|
|
150
|
+
/**
|
|
151
|
+
* @internal
|
|
152
|
+
*/
|
|
153
|
+
constructor(opts: __ExceptionOptionType<ValidationException, __BaseException>);
|
|
125
154
|
}
|
|
126
155
|
export interface BatchDeleteDevicePositionHistoryRequest {
|
|
127
156
|
/**
|
|
@@ -8,7 +8,7 @@ export declare const getRuntimeConfig: (config: LocationClientConfig) => {
|
|
|
8
8
|
defaultsMode: import("@aws-sdk/types").Provider<import("@aws-sdk/smithy-client").ResolvedDefaultsMode>;
|
|
9
9
|
base64Decoder: import("@aws-sdk/types").Decoder;
|
|
10
10
|
base64Encoder: import("@aws-sdk/types").Encoder;
|
|
11
|
-
bodyLengthChecker: (
|
|
11
|
+
bodyLengthChecker: import("@aws-sdk/types").BodyLengthCalculator;
|
|
12
12
|
credentialDefaultProvider: (input: any) => import("@aws-sdk/types").Provider<import("@aws-sdk/types").Credentials>;
|
|
13
13
|
defaultUserAgentProvider: import("@aws-sdk/types").Provider<import("@aws-sdk/types").UserAgent>;
|
|
14
14
|
maxAttempts: number | import("@aws-sdk/types").Provider<number>;
|
|
@@ -8,7 +8,7 @@ export declare const getRuntimeConfig: (config: LocationClientConfig) => {
|
|
|
8
8
|
defaultsMode: import("@aws-sdk/types").Provider<import("@aws-sdk/smithy-client").ResolvedDefaultsMode>;
|
|
9
9
|
base64Decoder: import("@aws-sdk/types").Decoder;
|
|
10
10
|
base64Encoder: import("@aws-sdk/types").Encoder;
|
|
11
|
-
bodyLengthChecker: (
|
|
11
|
+
bodyLengthChecker: import("@aws-sdk/types").BodyLengthCalculator;
|
|
12
12
|
credentialDefaultProvider: (input: any) => import("@aws-sdk/types").Provider<import("@aws-sdk/types").Credentials>;
|
|
13
13
|
defaultUserAgentProvider: import("@aws-sdk/types").Provider<import("@aws-sdk/types").UserAgent>;
|
|
14
14
|
maxAttempts: number | import("@aws-sdk/types").Provider<number>;
|
|
@@ -8,7 +8,7 @@ export declare const getRuntimeConfig: (config: LocationClientConfig) => {
|
|
|
8
8
|
requestHandler: (import("@aws-sdk/types").RequestHandler<any, any, import("@aws-sdk/types").HttpHandlerOptions> & import("@aws-sdk/protocol-http").HttpHandler) | import("@aws-sdk/fetch-http-handler").FetchHttpHandler;
|
|
9
9
|
apiVersion: string;
|
|
10
10
|
urlParser: import("@aws-sdk/types").UrlParser;
|
|
11
|
-
bodyLengthChecker: (
|
|
11
|
+
bodyLengthChecker: import("@aws-sdk/types").BodyLengthCalculator;
|
|
12
12
|
streamCollector: import("@aws-sdk/types").StreamCollector;
|
|
13
13
|
base64Decoder: import("@aws-sdk/types").Decoder;
|
|
14
14
|
base64Encoder: import("@aws-sdk/types").Encoder;
|
|
@@ -5,7 +5,7 @@ import { AwsAuthInputConfig, AwsAuthResolvedConfig } from "@aws-sdk/middleware-s
|
|
|
5
5
|
import { UserAgentInputConfig, UserAgentResolvedConfig } from "@aws-sdk/middleware-user-agent";
|
|
6
6
|
import { HttpHandler as __HttpHandler } from "@aws-sdk/protocol-http";
|
|
7
7
|
import { Client as __Client, DefaultsMode, SmithyConfiguration as __SmithyConfiguration, SmithyResolvedConfiguration as __SmithyResolvedConfiguration } from "@aws-sdk/smithy-client";
|
|
8
|
-
import { Credentials as __Credentials, Decoder as __Decoder, Encoder as __Encoder, HashConstructor as __HashConstructor, HttpHandlerOptions as __HttpHandlerOptions, Logger as __Logger, Provider as __Provider, Provider, RegionInfoProvider, StreamCollector as __StreamCollector, UrlParser as __UrlParser, UserAgent as __UserAgent } from "@aws-sdk/types";
|
|
8
|
+
import { BodyLengthCalculator as __BodyLengthCalculator, Credentials as __Credentials, Decoder as __Decoder, Encoder as __Encoder, HashConstructor as __HashConstructor, HttpHandlerOptions as __HttpHandlerOptions, Logger as __Logger, Provider as __Provider, Provider, RegionInfoProvider, StreamCollector as __StreamCollector, UrlParser as __UrlParser, UserAgent as __UserAgent } from "@aws-sdk/types";
|
|
9
9
|
import { AssociateTrackerConsumerCommandInput, AssociateTrackerConsumerCommandOutput } from "./commands/AssociateTrackerConsumerCommand";
|
|
10
10
|
import { BatchDeleteDevicePositionHistoryCommandInput, BatchDeleteDevicePositionHistoryCommandOutput } from "./commands/BatchDeleteDevicePositionHistoryCommand";
|
|
11
11
|
import { BatchDeleteGeofenceCommandInput, BatchDeleteGeofenceCommandOutput } from "./commands/BatchDeleteGeofenceCommand";
|
|
@@ -68,7 +68,7 @@ export interface ClientDefaults extends Partial<__SmithyResolvedConfiguration<__
|
|
|
68
68
|
|
|
69
69
|
urlParser?: __UrlParser;
|
|
70
70
|
|
|
71
|
-
bodyLengthChecker?:
|
|
71
|
+
bodyLengthChecker?: __BodyLengthCalculator;
|
|
72
72
|
|
|
73
73
|
streamCollector?: __StreamCollector;
|
|
74
74
|
|
|
@@ -0,0 +1,6 @@
|
|
|
1
|
+
import { ServiceException as __ServiceException, ServiceExceptionOptions as __ServiceExceptionOptions } from "@aws-sdk/smithy-client";
|
|
2
|
+
|
|
3
|
+
export declare class LocationServiceException extends __ServiceException {
|
|
4
|
+
|
|
5
|
+
constructor(options: __ServiceExceptionOptions);
|
|
6
|
+
}
|
|
@@ -1,9 +1,12 @@
|
|
|
1
|
-
import {
|
|
1
|
+
import { ExceptionOptionType as __ExceptionOptionType } from "@aws-sdk/smithy-client";
|
|
2
|
+
import { LocationServiceException as __BaseException } from "./LocationServiceException";
|
|
2
3
|
|
|
3
|
-
export
|
|
4
|
-
name: "AccessDeniedException";
|
|
5
|
-
$fault: "client";
|
|
4
|
+
export declare class AccessDeniedException extends __BaseException {
|
|
5
|
+
readonly name: "AccessDeniedException";
|
|
6
|
+
readonly $fault: "client";
|
|
6
7
|
Message: string | undefined;
|
|
8
|
+
|
|
9
|
+
constructor(opts: __ExceptionOptionType<AccessDeniedException, __BaseException>);
|
|
7
10
|
}
|
|
8
11
|
export interface AssociateTrackerConsumerRequest {
|
|
9
12
|
|
|
@@ -22,37 +25,47 @@ export declare namespace AssociateTrackerConsumerResponse {
|
|
|
22
25
|
const filterSensitiveLog: (obj: AssociateTrackerConsumerResponse) => any;
|
|
23
26
|
}
|
|
24
27
|
|
|
25
|
-
export
|
|
26
|
-
name: "ConflictException";
|
|
27
|
-
$fault: "client";
|
|
28
|
+
export declare class ConflictException extends __BaseException {
|
|
29
|
+
readonly name: "ConflictException";
|
|
30
|
+
readonly $fault: "client";
|
|
28
31
|
Message: string | undefined;
|
|
32
|
+
|
|
33
|
+
constructor(opts: __ExceptionOptionType<ConflictException, __BaseException>);
|
|
29
34
|
}
|
|
30
35
|
|
|
31
|
-
export
|
|
32
|
-
name: "InternalServerException";
|
|
33
|
-
$fault: "server";
|
|
36
|
+
export declare class InternalServerException extends __BaseException {
|
|
37
|
+
readonly name: "InternalServerException";
|
|
38
|
+
readonly $fault: "server";
|
|
34
39
|
$retryable: {};
|
|
35
40
|
Message: string | undefined;
|
|
41
|
+
|
|
42
|
+
constructor(opts: __ExceptionOptionType<InternalServerException, __BaseException>);
|
|
36
43
|
}
|
|
37
44
|
|
|
38
|
-
export
|
|
39
|
-
name: "ResourceNotFoundException";
|
|
40
|
-
$fault: "client";
|
|
45
|
+
export declare class ResourceNotFoundException extends __BaseException {
|
|
46
|
+
readonly name: "ResourceNotFoundException";
|
|
47
|
+
readonly $fault: "client";
|
|
41
48
|
Message: string | undefined;
|
|
49
|
+
|
|
50
|
+
constructor(opts: __ExceptionOptionType<ResourceNotFoundException, __BaseException>);
|
|
42
51
|
}
|
|
43
52
|
|
|
44
|
-
export
|
|
45
|
-
name: "ServiceQuotaExceededException";
|
|
46
|
-
$fault: "client";
|
|
53
|
+
export declare class ServiceQuotaExceededException extends __BaseException {
|
|
54
|
+
readonly name: "ServiceQuotaExceededException";
|
|
55
|
+
readonly $fault: "client";
|
|
47
56
|
|
|
48
57
|
Message: string | undefined;
|
|
58
|
+
|
|
59
|
+
constructor(opts: __ExceptionOptionType<ServiceQuotaExceededException, __BaseException>);
|
|
49
60
|
}
|
|
50
61
|
|
|
51
|
-
export
|
|
52
|
-
name: "ThrottlingException";
|
|
53
|
-
$fault: "client";
|
|
62
|
+
export declare class ThrottlingException extends __BaseException {
|
|
63
|
+
readonly name: "ThrottlingException";
|
|
64
|
+
readonly $fault: "client";
|
|
54
65
|
$retryable: {};
|
|
55
66
|
Message: string | undefined;
|
|
67
|
+
|
|
68
|
+
constructor(opts: __ExceptionOptionType<ThrottlingException, __BaseException>);
|
|
56
69
|
}
|
|
57
70
|
|
|
58
71
|
export interface ValidationExceptionField {
|
|
@@ -67,14 +80,16 @@ export declare namespace ValidationExceptionField {
|
|
|
67
80
|
}
|
|
68
81
|
export declare type ValidationExceptionReason = "CannotParse" | "FieldValidationFailed" | "Missing" | "Other" | "UnknownOperation";
|
|
69
82
|
|
|
70
|
-
export
|
|
71
|
-
name: "ValidationException";
|
|
72
|
-
$fault: "client";
|
|
83
|
+
export declare class ValidationException extends __BaseException {
|
|
84
|
+
readonly name: "ValidationException";
|
|
85
|
+
readonly $fault: "client";
|
|
73
86
|
Message: string | undefined;
|
|
74
87
|
|
|
75
88
|
Reason: ValidationExceptionReason | string | undefined;
|
|
76
89
|
|
|
77
90
|
FieldList: ValidationExceptionField[] | undefined;
|
|
91
|
+
|
|
92
|
+
constructor(opts: __ExceptionOptionType<ValidationException, __BaseException>);
|
|
78
93
|
}
|
|
79
94
|
export interface BatchDeleteDevicePositionHistoryRequest {
|
|
80
95
|
|
|
@@ -6,7 +6,7 @@ export declare const getRuntimeConfig: (config: LocationClientConfig) => {
|
|
|
6
6
|
defaultsMode: import("@aws-sdk/types").Provider<import("@aws-sdk/smithy-client").ResolvedDefaultsMode>;
|
|
7
7
|
base64Decoder: import("@aws-sdk/types").Decoder;
|
|
8
8
|
base64Encoder: import("@aws-sdk/types").Encoder;
|
|
9
|
-
bodyLengthChecker: (
|
|
9
|
+
bodyLengthChecker: import("@aws-sdk/types").BodyLengthCalculator;
|
|
10
10
|
credentialDefaultProvider: (input: any) => import("@aws-sdk/types").Provider<import("@aws-sdk/types").Credentials>;
|
|
11
11
|
defaultUserAgentProvider: import("@aws-sdk/types").Provider<import("@aws-sdk/types").UserAgent>;
|
|
12
12
|
maxAttempts: number | import("@aws-sdk/types").Provider<number>;
|
|
@@ -6,7 +6,7 @@ export declare const getRuntimeConfig: (config: LocationClientConfig) => {
|
|
|
6
6
|
defaultsMode: import("@aws-sdk/types").Provider<import("@aws-sdk/smithy-client").ResolvedDefaultsMode>;
|
|
7
7
|
base64Decoder: import("@aws-sdk/types").Decoder;
|
|
8
8
|
base64Encoder: import("@aws-sdk/types").Encoder;
|
|
9
|
-
bodyLengthChecker: (
|
|
9
|
+
bodyLengthChecker: import("@aws-sdk/types").BodyLengthCalculator;
|
|
10
10
|
credentialDefaultProvider: (input: any) => import("@aws-sdk/types").Provider<import("@aws-sdk/types").Credentials>;
|
|
11
11
|
defaultUserAgentProvider: import("@aws-sdk/types").Provider<import("@aws-sdk/types").UserAgent>;
|
|
12
12
|
maxAttempts: number | import("@aws-sdk/types").Provider<number>;
|
|
@@ -6,7 +6,7 @@ export declare const getRuntimeConfig: (config: LocationClientConfig) => {
|
|
|
6
6
|
requestHandler: (import("@aws-sdk/types").RequestHandler<any, any, import("@aws-sdk/types").HttpHandlerOptions> & import("@aws-sdk/protocol-http").HttpHandler) | import("@aws-sdk/fetch-http-handler").FetchHttpHandler;
|
|
7
7
|
apiVersion: string;
|
|
8
8
|
urlParser: import("@aws-sdk/types").UrlParser;
|
|
9
|
-
bodyLengthChecker: (
|
|
9
|
+
bodyLengthChecker: import("@aws-sdk/types").BodyLengthCalculator;
|
|
10
10
|
streamCollector: import("@aws-sdk/types").StreamCollector;
|
|
11
11
|
base64Decoder: import("@aws-sdk/types").Decoder;
|
|
12
12
|
base64Encoder: import("@aws-sdk/types").Encoder;
|
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.
|
|
4
|
+
"version": "3.54.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",
|
|
@@ -9,7 +9,7 @@
|
|
|
9
9
|
"build:es": "tsc -p tsconfig.es.json",
|
|
10
10
|
"build:types": "tsc -p tsconfig.types.json",
|
|
11
11
|
"build:types:downlevel": "downlevel-dts dist-types dist-types/ts3.4",
|
|
12
|
-
"clean": "rimraf ./dist-*"
|
|
12
|
+
"clean": "rimraf ./dist-* && rimraf *.tsbuildinfo"
|
|
13
13
|
},
|
|
14
14
|
"main": "./dist-cjs/index.js",
|
|
15
15
|
"types": "./dist-types/index.d.ts",
|
|
@@ -18,40 +18,40 @@
|
|
|
18
18
|
"dependencies": {
|
|
19
19
|
"@aws-crypto/sha256-browser": "2.0.0",
|
|
20
20
|
"@aws-crypto/sha256-js": "2.0.0",
|
|
21
|
-
"@aws-sdk/client-sts": "3.
|
|
22
|
-
"@aws-sdk/config-resolver": "3.
|
|
23
|
-
"@aws-sdk/credential-provider-node": "3.
|
|
24
|
-
"@aws-sdk/fetch-http-handler": "3.
|
|
25
|
-
"@aws-sdk/hash-node": "3.
|
|
26
|
-
"@aws-sdk/invalid-dependency": "3.
|
|
27
|
-
"@aws-sdk/middleware-content-length": "3.
|
|
28
|
-
"@aws-sdk/middleware-host-header": "3.
|
|
29
|
-
"@aws-sdk/middleware-logger": "3.
|
|
30
|
-
"@aws-sdk/middleware-retry": "3.
|
|
31
|
-
"@aws-sdk/middleware-serde": "3.
|
|
32
|
-
"@aws-sdk/middleware-signing": "3.
|
|
33
|
-
"@aws-sdk/middleware-stack": "3.
|
|
34
|
-
"@aws-sdk/middleware-user-agent": "3.
|
|
35
|
-
"@aws-sdk/node-config-provider": "3.
|
|
36
|
-
"@aws-sdk/node-http-handler": "3.
|
|
37
|
-
"@aws-sdk/protocol-http": "3.
|
|
38
|
-
"@aws-sdk/smithy-client": "3.
|
|
39
|
-
"@aws-sdk/types": "3.
|
|
40
|
-
"@aws-sdk/url-parser": "3.
|
|
41
|
-
"@aws-sdk/util-base64-browser": "3.
|
|
42
|
-
"@aws-sdk/util-base64-node": "3.
|
|
43
|
-
"@aws-sdk/util-body-length-browser": "3.
|
|
44
|
-
"@aws-sdk/util-body-length-node": "3.
|
|
45
|
-
"@aws-sdk/util-defaults-mode-browser": "3.
|
|
46
|
-
"@aws-sdk/util-defaults-mode-node": "3.
|
|
47
|
-
"@aws-sdk/util-user-agent-browser": "3.
|
|
48
|
-
"@aws-sdk/util-user-agent-node": "3.
|
|
49
|
-
"@aws-sdk/util-utf8-browser": "3.
|
|
50
|
-
"@aws-sdk/util-utf8-node": "3.
|
|
21
|
+
"@aws-sdk/client-sts": "3.54.0",
|
|
22
|
+
"@aws-sdk/config-resolver": "3.54.0",
|
|
23
|
+
"@aws-sdk/credential-provider-node": "3.54.0",
|
|
24
|
+
"@aws-sdk/fetch-http-handler": "3.54.0",
|
|
25
|
+
"@aws-sdk/hash-node": "3.54.0",
|
|
26
|
+
"@aws-sdk/invalid-dependency": "3.54.0",
|
|
27
|
+
"@aws-sdk/middleware-content-length": "3.54.0",
|
|
28
|
+
"@aws-sdk/middleware-host-header": "3.54.0",
|
|
29
|
+
"@aws-sdk/middleware-logger": "3.54.0",
|
|
30
|
+
"@aws-sdk/middleware-retry": "3.54.0",
|
|
31
|
+
"@aws-sdk/middleware-serde": "3.54.0",
|
|
32
|
+
"@aws-sdk/middleware-signing": "3.54.0",
|
|
33
|
+
"@aws-sdk/middleware-stack": "3.54.0",
|
|
34
|
+
"@aws-sdk/middleware-user-agent": "3.54.0",
|
|
35
|
+
"@aws-sdk/node-config-provider": "3.54.0",
|
|
36
|
+
"@aws-sdk/node-http-handler": "3.54.0",
|
|
37
|
+
"@aws-sdk/protocol-http": "3.54.0",
|
|
38
|
+
"@aws-sdk/smithy-client": "3.54.0",
|
|
39
|
+
"@aws-sdk/types": "3.54.0",
|
|
40
|
+
"@aws-sdk/url-parser": "3.54.0",
|
|
41
|
+
"@aws-sdk/util-base64-browser": "3.52.0",
|
|
42
|
+
"@aws-sdk/util-base64-node": "3.52.0",
|
|
43
|
+
"@aws-sdk/util-body-length-browser": "3.54.0",
|
|
44
|
+
"@aws-sdk/util-body-length-node": "3.54.0",
|
|
45
|
+
"@aws-sdk/util-defaults-mode-browser": "3.54.0",
|
|
46
|
+
"@aws-sdk/util-defaults-mode-node": "3.54.0",
|
|
47
|
+
"@aws-sdk/util-user-agent-browser": "3.54.0",
|
|
48
|
+
"@aws-sdk/util-user-agent-node": "3.54.0",
|
|
49
|
+
"@aws-sdk/util-utf8-browser": "3.52.0",
|
|
50
|
+
"@aws-sdk/util-utf8-node": "3.52.0",
|
|
51
51
|
"tslib": "^2.3.0"
|
|
52
52
|
},
|
|
53
53
|
"devDependencies": {
|
|
54
|
-
"@aws-sdk/service-client-documentation-generator": "3.
|
|
54
|
+
"@aws-sdk/service-client-documentation-generator": "3.52.0",
|
|
55
55
|
"@tsconfig/recommended": "1.0.1",
|
|
56
56
|
"@types/node": "^12.7.5",
|
|
57
57
|
"concurrently": "7.0.0",
|