@aws-sdk/client-geo-routes 3.1087.0 → 3.1089.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 +1 -1
- package/dist-types/ts3.4/GeoRoutes.d.ts +16 -19
- package/dist-types/ts3.4/GeoRoutesClient.d.ts +6 -18
- package/dist-types/ts3.4/auth/httpAuthExtensionConfiguration.d.ts +5 -12
- package/dist-types/ts3.4/auth/httpAuthSchemeProvider.d.ts +11 -15
- package/dist-types/ts3.4/commandBuilder.d.ts +7 -13
- package/dist-types/ts3.4/commands/CalculateIsolinesCommand.d.ts +5 -10
- package/dist-types/ts3.4/commands/CalculateRouteMatrixCommand.d.ts +5 -10
- package/dist-types/ts3.4/commands/CalculateRoutesCommand.d.ts +4 -9
- package/dist-types/ts3.4/commands/OptimizeWaypointsCommand.d.ts +5 -10
- package/dist-types/ts3.4/commands/SnapToRoadsCommand.d.ts +3 -5
- package/dist-types/ts3.4/endpoint/EndpointParameters.d.ts +1 -1
- package/dist-types/ts3.4/endpoint/endpointResolver.d.ts +1 -1
- package/dist-types/ts3.4/extensionConfiguration.d.ts +2 -1
- package/dist-types/ts3.4/models/enums.d.ts +30 -60
- package/dist-types/ts3.4/models/errors.d.ts +4 -12
- package/dist-types/ts3.4/models/models_0.d.ts +1 -3
- package/dist-types/ts3.4/runtimeConfig.browser.d.ts +9 -22
- package/dist-types/ts3.4/runtimeConfig.d.ts +8 -16
- package/dist-types/ts3.4/runtimeConfig.native.d.ts +9 -22
- package/dist-types/ts3.4/runtimeConfig.shared.d.ts +1 -1
- package/dist-types/ts3.4/runtimeExtensions.d.ts +1 -1
- package/dist-types/ts3.4/schemas/schemas_0.d.ts +1 -5
- package/package.json +38 -38
package/dist-cjs/index.js
CHANGED
|
@@ -15,76 +15,73 @@ import {
|
|
|
15
15
|
OptimizeWaypointsCommandInput,
|
|
16
16
|
OptimizeWaypointsCommandOutput,
|
|
17
17
|
} from "./commands/OptimizeWaypointsCommand";
|
|
18
|
-
import {
|
|
19
|
-
SnapToRoadsCommandInput,
|
|
20
|
-
SnapToRoadsCommandOutput,
|
|
21
|
-
} from "./commands/SnapToRoadsCommand";
|
|
18
|
+
import { SnapToRoadsCommandInput, SnapToRoadsCommandOutput } from "./commands/SnapToRoadsCommand";
|
|
22
19
|
import { GeoRoutesClient } from "./GeoRoutesClient";
|
|
23
20
|
export interface GeoRoutes {
|
|
24
21
|
calculateIsolines(
|
|
25
22
|
args: CalculateIsolinesCommandInput,
|
|
26
|
-
options?: __HttpHandlerOptions
|
|
23
|
+
options?: __HttpHandlerOptions,
|
|
27
24
|
): Promise<CalculateIsolinesCommandOutput>;
|
|
28
25
|
calculateIsolines(
|
|
29
26
|
args: CalculateIsolinesCommandInput,
|
|
30
|
-
cb: (err: any, data?: CalculateIsolinesCommandOutput) => void
|
|
27
|
+
cb: (err: any, data?: CalculateIsolinesCommandOutput) => void,
|
|
31
28
|
): void;
|
|
32
29
|
calculateIsolines(
|
|
33
30
|
args: CalculateIsolinesCommandInput,
|
|
34
31
|
options: __HttpHandlerOptions,
|
|
35
|
-
cb: (err: any, data?: CalculateIsolinesCommandOutput) => void
|
|
32
|
+
cb: (err: any, data?: CalculateIsolinesCommandOutput) => void,
|
|
36
33
|
): void;
|
|
37
34
|
calculateRouteMatrix(
|
|
38
35
|
args: CalculateRouteMatrixCommandInput,
|
|
39
|
-
options?: __HttpHandlerOptions
|
|
36
|
+
options?: __HttpHandlerOptions,
|
|
40
37
|
): Promise<CalculateRouteMatrixCommandOutput>;
|
|
41
38
|
calculateRouteMatrix(
|
|
42
39
|
args: CalculateRouteMatrixCommandInput,
|
|
43
|
-
cb: (err: any, data?: CalculateRouteMatrixCommandOutput) => void
|
|
40
|
+
cb: (err: any, data?: CalculateRouteMatrixCommandOutput) => void,
|
|
44
41
|
): void;
|
|
45
42
|
calculateRouteMatrix(
|
|
46
43
|
args: CalculateRouteMatrixCommandInput,
|
|
47
44
|
options: __HttpHandlerOptions,
|
|
48
|
-
cb: (err: any, data?: CalculateRouteMatrixCommandOutput) => void
|
|
45
|
+
cb: (err: any, data?: CalculateRouteMatrixCommandOutput) => void,
|
|
49
46
|
): void;
|
|
50
47
|
calculateRoutes(
|
|
51
48
|
args: CalculateRoutesCommandInput,
|
|
52
|
-
options?: __HttpHandlerOptions
|
|
49
|
+
options?: __HttpHandlerOptions,
|
|
53
50
|
): Promise<CalculateRoutesCommandOutput>;
|
|
54
51
|
calculateRoutes(
|
|
55
52
|
args: CalculateRoutesCommandInput,
|
|
56
|
-
cb: (err: any, data?: CalculateRoutesCommandOutput) => void
|
|
53
|
+
cb: (err: any, data?: CalculateRoutesCommandOutput) => void,
|
|
57
54
|
): void;
|
|
58
55
|
calculateRoutes(
|
|
59
56
|
args: CalculateRoutesCommandInput,
|
|
60
57
|
options: __HttpHandlerOptions,
|
|
61
|
-
cb: (err: any, data?: CalculateRoutesCommandOutput) => void
|
|
58
|
+
cb: (err: any, data?: CalculateRoutesCommandOutput) => void,
|
|
62
59
|
): void;
|
|
63
60
|
optimizeWaypoints(
|
|
64
61
|
args: OptimizeWaypointsCommandInput,
|
|
65
|
-
options?: __HttpHandlerOptions
|
|
62
|
+
options?: __HttpHandlerOptions,
|
|
66
63
|
): Promise<OptimizeWaypointsCommandOutput>;
|
|
67
64
|
optimizeWaypoints(
|
|
68
65
|
args: OptimizeWaypointsCommandInput,
|
|
69
|
-
cb: (err: any, data?: OptimizeWaypointsCommandOutput) => void
|
|
66
|
+
cb: (err: any, data?: OptimizeWaypointsCommandOutput) => void,
|
|
70
67
|
): void;
|
|
71
68
|
optimizeWaypoints(
|
|
72
69
|
args: OptimizeWaypointsCommandInput,
|
|
73
70
|
options: __HttpHandlerOptions,
|
|
74
|
-
cb: (err: any, data?: OptimizeWaypointsCommandOutput) => void
|
|
71
|
+
cb: (err: any, data?: OptimizeWaypointsCommandOutput) => void,
|
|
75
72
|
): void;
|
|
76
73
|
snapToRoads(
|
|
77
74
|
args: SnapToRoadsCommandInput,
|
|
78
|
-
options?: __HttpHandlerOptions
|
|
75
|
+
options?: __HttpHandlerOptions,
|
|
79
76
|
): Promise<SnapToRoadsCommandOutput>;
|
|
80
77
|
snapToRoads(
|
|
81
78
|
args: SnapToRoadsCommandInput,
|
|
82
|
-
cb: (err: any, data?: SnapToRoadsCommandOutput) => void
|
|
79
|
+
cb: (err: any, data?: SnapToRoadsCommandOutput) => void,
|
|
83
80
|
): void;
|
|
84
81
|
snapToRoads(
|
|
85
82
|
args: SnapToRoadsCommandInput,
|
|
86
83
|
options: __HttpHandlerOptions,
|
|
87
|
-
cb: (err: any, data?: SnapToRoadsCommandOutput) => void
|
|
84
|
+
cb: (err: any, data?: SnapToRoadsCommandOutput) => void,
|
|
88
85
|
): void;
|
|
89
86
|
}
|
|
90
87
|
export declare class GeoRoutes extends GeoRoutesClient implements GeoRoutes {}
|
|
@@ -11,10 +11,7 @@ import {
|
|
|
11
11
|
Client as __Client,
|
|
12
12
|
} from "@smithy/core/client";
|
|
13
13
|
import { RegionInputConfig, RegionResolvedConfig } from "@smithy/core/config";
|
|
14
|
-
import {
|
|
15
|
-
EndpointInputConfig,
|
|
16
|
-
EndpointResolvedConfig,
|
|
17
|
-
} from "@smithy/core/endpoints";
|
|
14
|
+
import { EndpointInputConfig, EndpointResolvedConfig } from "@smithy/core/endpoints";
|
|
18
15
|
import { HttpHandlerUserInput as __HttpHandlerUserInput } from "@smithy/core/protocols";
|
|
19
16
|
import { RetryInputConfig, RetryResolvedConfig } from "@smithy/core/retry";
|
|
20
17
|
import {
|
|
@@ -52,10 +49,7 @@ import {
|
|
|
52
49
|
OptimizeWaypointsCommandInput,
|
|
53
50
|
OptimizeWaypointsCommandOutput,
|
|
54
51
|
} from "./commands/OptimizeWaypointsCommand";
|
|
55
|
-
import {
|
|
56
|
-
SnapToRoadsCommandInput,
|
|
57
|
-
SnapToRoadsCommandOutput,
|
|
58
|
-
} from "./commands/SnapToRoadsCommand";
|
|
52
|
+
import { SnapToRoadsCommandInput, SnapToRoadsCommandOutput } from "./commands/SnapToRoadsCommand";
|
|
59
53
|
import {
|
|
60
54
|
ClientInputEndpointParameters,
|
|
61
55
|
ClientResolvedEndpointParameters,
|
|
@@ -75,8 +69,7 @@ export type ServiceOutputTypes =
|
|
|
75
69
|
| CalculateRoutesCommandOutput
|
|
76
70
|
| OptimizeWaypointsCommandOutput
|
|
77
71
|
| SnapToRoadsCommandOutput;
|
|
78
|
-
export interface ClientDefaults
|
|
79
|
-
extends Partial<__SmithyConfiguration<__HttpHandlerOptions>> {
|
|
72
|
+
export interface ClientDefaults extends Partial<__SmithyConfiguration<__HttpHandlerOptions>> {
|
|
80
73
|
requestHandler?: __HttpHandlerUserInput;
|
|
81
74
|
sha256?: __ChecksumConstructor | __HashConstructor;
|
|
82
75
|
urlParser?: __UrlParser;
|
|
@@ -101,9 +94,7 @@ export interface ClientDefaults
|
|
|
101
94
|
extensions?: RuntimeExtension[];
|
|
102
95
|
defaultsMode?: __DefaultsMode | __Provider<__DefaultsMode>;
|
|
103
96
|
}
|
|
104
|
-
export type GeoRoutesClientConfigType = Partial<
|
|
105
|
-
__SmithyConfiguration<__HttpHandlerOptions>
|
|
106
|
-
> &
|
|
97
|
+
export type GeoRoutesClientConfigType = Partial<__SmithyConfiguration<__HttpHandlerOptions>> &
|
|
107
98
|
ClientDefaults &
|
|
108
99
|
UserAgentInputConfig &
|
|
109
100
|
RetryInputConfig &
|
|
@@ -124,8 +115,7 @@ export type GeoRoutesClientResolvedConfigType =
|
|
|
124
115
|
EndpointResolvedConfig<EndpointParameters> &
|
|
125
116
|
HttpAuthSchemeResolvedConfig &
|
|
126
117
|
ClientResolvedEndpointParameters;
|
|
127
|
-
export interface GeoRoutesClientResolvedConfig
|
|
128
|
-
extends GeoRoutesClientResolvedConfigType {}
|
|
118
|
+
export interface GeoRoutesClientResolvedConfig extends GeoRoutesClientResolvedConfigType {}
|
|
129
119
|
export declare class GeoRoutesClient extends __Client<
|
|
130
120
|
__HttpHandlerOptions,
|
|
131
121
|
ServiceInputTypes,
|
|
@@ -133,8 +123,6 @@ export declare class GeoRoutesClient extends __Client<
|
|
|
133
123
|
GeoRoutesClientResolvedConfig
|
|
134
124
|
> {
|
|
135
125
|
readonly config: GeoRoutesClientResolvedConfig;
|
|
136
|
-
constructor(
|
|
137
|
-
...[configuration]: __CheckOptionalClientConfig<GeoRoutesClientConfig>
|
|
138
|
-
);
|
|
126
|
+
constructor(...[configuration]: __CheckOptionalClientConfig<GeoRoutesClientConfig>);
|
|
139
127
|
destroy(): void;
|
|
140
128
|
}
|
|
@@ -7,17 +7,10 @@ import { GeoRoutesHttpAuthSchemeProvider } from "./httpAuthSchemeProvider";
|
|
|
7
7
|
export interface HttpAuthExtensionConfiguration {
|
|
8
8
|
setHttpAuthScheme(httpAuthScheme: HttpAuthScheme): void;
|
|
9
9
|
httpAuthSchemes(): HttpAuthScheme[];
|
|
10
|
-
setHttpAuthSchemeProvider(
|
|
11
|
-
httpAuthSchemeProvider: GeoRoutesHttpAuthSchemeProvider
|
|
12
|
-
): void;
|
|
10
|
+
setHttpAuthSchemeProvider(httpAuthSchemeProvider: GeoRoutesHttpAuthSchemeProvider): void;
|
|
13
11
|
httpAuthSchemeProvider(): GeoRoutesHttpAuthSchemeProvider;
|
|
14
|
-
setCredentials(
|
|
15
|
-
|
|
16
|
-
): void;
|
|
17
|
-
credentials():
|
|
18
|
-
| AwsCredentialIdentity
|
|
19
|
-
| AwsCredentialIdentityProvider
|
|
20
|
-
| undefined;
|
|
12
|
+
setCredentials(credentials: AwsCredentialIdentity | AwsCredentialIdentityProvider): void;
|
|
13
|
+
credentials(): AwsCredentialIdentity | AwsCredentialIdentityProvider | undefined;
|
|
21
14
|
}
|
|
22
15
|
export type HttpAuthRuntimeConfig = Partial<{
|
|
23
16
|
httpAuthSchemes: HttpAuthScheme[];
|
|
@@ -25,8 +18,8 @@ export type HttpAuthRuntimeConfig = Partial<{
|
|
|
25
18
|
credentials: AwsCredentialIdentity | AwsCredentialIdentityProvider;
|
|
26
19
|
}>;
|
|
27
20
|
export declare const getHttpAuthExtensionConfiguration: (
|
|
28
|
-
runtimeConfig: HttpAuthRuntimeConfig
|
|
21
|
+
runtimeConfig: HttpAuthRuntimeConfig,
|
|
29
22
|
) => HttpAuthExtensionConfiguration;
|
|
30
23
|
export declare const resolveHttpAuthRuntimeConfig: (
|
|
31
|
-
config: HttpAuthExtensionConfiguration
|
|
24
|
+
config: HttpAuthExtensionConfiguration,
|
|
32
25
|
) => HttpAuthRuntimeConfig;
|
|
@@ -12,36 +12,32 @@ import {
|
|
|
12
12
|
Provider,
|
|
13
13
|
} from "@smithy/types";
|
|
14
14
|
import { GeoRoutesClientResolvedConfig } from "../GeoRoutesClient";
|
|
15
|
-
export interface GeoRoutesHttpAuthSchemeParameters
|
|
16
|
-
extends HttpAuthSchemeParameters {
|
|
15
|
+
export interface GeoRoutesHttpAuthSchemeParameters extends HttpAuthSchemeParameters {
|
|
17
16
|
region?: string;
|
|
18
17
|
}
|
|
19
|
-
export interface GeoRoutesHttpAuthSchemeParametersProvider
|
|
20
|
-
|
|
21
|
-
|
|
22
|
-
|
|
23
|
-
|
|
24
|
-
|
|
25
|
-
> {}
|
|
18
|
+
export interface GeoRoutesHttpAuthSchemeParametersProvider extends HttpAuthSchemeParametersProvider<
|
|
19
|
+
GeoRoutesClientResolvedConfig,
|
|
20
|
+
HandlerExecutionContext,
|
|
21
|
+
GeoRoutesHttpAuthSchemeParameters,
|
|
22
|
+
object
|
|
23
|
+
> {}
|
|
26
24
|
export declare const defaultGeoRoutesHttpAuthSchemeParametersProvider: (
|
|
27
25
|
config: GeoRoutesClientResolvedConfig,
|
|
28
26
|
context: HandlerExecutionContext,
|
|
29
|
-
input: object
|
|
27
|
+
input: object,
|
|
30
28
|
) => Promise<GeoRoutesHttpAuthSchemeParameters>;
|
|
31
|
-
export interface GeoRoutesHttpAuthSchemeProvider
|
|
32
|
-
extends HttpAuthSchemeProvider<GeoRoutesHttpAuthSchemeParameters> {}
|
|
29
|
+
export interface GeoRoutesHttpAuthSchemeProvider extends HttpAuthSchemeProvider<GeoRoutesHttpAuthSchemeParameters> {}
|
|
33
30
|
export declare const defaultGeoRoutesHttpAuthSchemeProvider: GeoRoutesHttpAuthSchemeProvider;
|
|
34
31
|
export interface HttpAuthSchemeInputConfig extends AwsSdkSigV4AuthInputConfig {
|
|
35
32
|
authSchemePreference?: string[] | Provider<string[]>;
|
|
36
33
|
httpAuthSchemes?: HttpAuthScheme[];
|
|
37
34
|
httpAuthSchemeProvider?: GeoRoutesHttpAuthSchemeProvider;
|
|
38
35
|
}
|
|
39
|
-
export interface HttpAuthSchemeResolvedConfig
|
|
40
|
-
extends AwsSdkSigV4AuthResolvedConfig {
|
|
36
|
+
export interface HttpAuthSchemeResolvedConfig extends AwsSdkSigV4AuthResolvedConfig {
|
|
41
37
|
readonly authSchemePreference: Provider<string[]>;
|
|
42
38
|
readonly httpAuthSchemes: HttpAuthScheme[];
|
|
43
39
|
readonly httpAuthSchemeProvider: GeoRoutesHttpAuthSchemeProvider;
|
|
44
40
|
}
|
|
45
41
|
export declare const resolveHttpAuthSchemeConfig: <T>(
|
|
46
|
-
config: T & HttpAuthSchemeInputConfig & AwsSdkSigV4PreviouslyResolved
|
|
42
|
+
config: T & HttpAuthSchemeInputConfig & AwsSdkSigV4PreviouslyResolved,
|
|
47
43
|
) => T & HttpAuthSchemeResolvedConfig;
|
|
@@ -4,22 +4,21 @@ import {
|
|
|
4
4
|
ServiceInputTypes,
|
|
5
5
|
ServiceOutputTypes,
|
|
6
6
|
} from "./GeoRoutesClient";
|
|
7
|
-
export declare const command: <
|
|
8
|
-
I extends ServiceInputTypes,
|
|
9
|
-
O extends ServiceOutputTypes
|
|
10
|
-
>(
|
|
7
|
+
export declare const command: <I extends ServiceInputTypes, O extends ServiceOutputTypes>(
|
|
11
8
|
added: EndpointParameterInstructions,
|
|
12
9
|
plugins: (
|
|
13
10
|
CommandCtor: any,
|
|
14
11
|
clientStack: any,
|
|
15
12
|
config: any,
|
|
16
|
-
options: any
|
|
13
|
+
options: any,
|
|
17
14
|
) => import("@smithy/types").Pluggable<any, any>[],
|
|
18
15
|
op: string,
|
|
19
16
|
$: import("@smithy/types").StaticOperationSchema,
|
|
20
|
-
smithyContext?: Record<string, unknown
|
|
17
|
+
smithyContext?: Record<string, unknown>,
|
|
21
18
|
) => {
|
|
22
|
-
new (
|
|
19
|
+
new (
|
|
20
|
+
input: I,
|
|
21
|
+
): import("@smithy/core/client").CommandImpl<
|
|
23
22
|
I,
|
|
24
23
|
O,
|
|
25
24
|
GeoRoutesClientResolvedConfig,
|
|
@@ -38,9 +37,4 @@ export declare const command: <
|
|
|
38
37
|
getEndpointParameterInstructions(): EndpointParameterInstructions;
|
|
39
38
|
};
|
|
40
39
|
export declare const _ep0: EndpointParameterInstructions;
|
|
41
|
-
export declare const _mw0: (
|
|
42
|
-
Command: any,
|
|
43
|
-
cs: any,
|
|
44
|
-
config: any,
|
|
45
|
-
o: any
|
|
46
|
-
) => never[];
|
|
40
|
+
export declare const _mw0: (Command: any, cs: any, config: any, o: any) => never[];
|
|
@@ -1,17 +1,12 @@
|
|
|
1
1
|
import { MetadataBearer as __MetadataBearer } from "@smithy/types";
|
|
2
|
-
import {
|
|
3
|
-
CalculateIsolinesRequest,
|
|
4
|
-
CalculateIsolinesResponse,
|
|
5
|
-
} from "../models/models_0";
|
|
2
|
+
import { CalculateIsolinesRequest, CalculateIsolinesResponse } from "../models/models_0";
|
|
6
3
|
export { __MetadataBearer };
|
|
7
|
-
export interface CalculateIsolinesCommandInput
|
|
8
|
-
extends CalculateIsolinesRequest {}
|
|
4
|
+
export interface CalculateIsolinesCommandInput extends CalculateIsolinesRequest {}
|
|
9
5
|
export interface CalculateIsolinesCommandOutput
|
|
10
|
-
extends CalculateIsolinesResponse,
|
|
11
|
-
__MetadataBearer {}
|
|
6
|
+
extends CalculateIsolinesResponse, __MetadataBearer {}
|
|
12
7
|
declare const CalculateIsolinesCommand_base: {
|
|
13
8
|
new (
|
|
14
|
-
input: CalculateIsolinesCommandInput
|
|
9
|
+
input: CalculateIsolinesCommandInput,
|
|
15
10
|
): import("@smithy/core/client").CommandImpl<
|
|
16
11
|
CalculateIsolinesCommandInput,
|
|
17
12
|
CalculateIsolinesCommandOutput,
|
|
@@ -20,7 +15,7 @@ declare const CalculateIsolinesCommand_base: {
|
|
|
20
15
|
import("..").ServiceOutputTypes
|
|
21
16
|
>;
|
|
22
17
|
new (
|
|
23
|
-
input: CalculateIsolinesCommandInput
|
|
18
|
+
input: CalculateIsolinesCommandInput,
|
|
24
19
|
): import("@smithy/core/client").CommandImpl<
|
|
25
20
|
CalculateIsolinesCommandInput,
|
|
26
21
|
CalculateIsolinesCommandOutput,
|
|
@@ -1,17 +1,12 @@
|
|
|
1
1
|
import { MetadataBearer as __MetadataBearer } from "@smithy/types";
|
|
2
|
-
import {
|
|
3
|
-
CalculateRouteMatrixRequest,
|
|
4
|
-
CalculateRouteMatrixResponse,
|
|
5
|
-
} from "../models/models_0";
|
|
2
|
+
import { CalculateRouteMatrixRequest, CalculateRouteMatrixResponse } from "../models/models_0";
|
|
6
3
|
export { __MetadataBearer };
|
|
7
|
-
export interface CalculateRouteMatrixCommandInput
|
|
8
|
-
extends CalculateRouteMatrixRequest {}
|
|
4
|
+
export interface CalculateRouteMatrixCommandInput extends CalculateRouteMatrixRequest {}
|
|
9
5
|
export interface CalculateRouteMatrixCommandOutput
|
|
10
|
-
extends CalculateRouteMatrixResponse,
|
|
11
|
-
__MetadataBearer {}
|
|
6
|
+
extends CalculateRouteMatrixResponse, __MetadataBearer {}
|
|
12
7
|
declare const CalculateRouteMatrixCommand_base: {
|
|
13
8
|
new (
|
|
14
|
-
input: CalculateRouteMatrixCommandInput
|
|
9
|
+
input: CalculateRouteMatrixCommandInput,
|
|
15
10
|
): import("@smithy/core/client").CommandImpl<
|
|
16
11
|
CalculateRouteMatrixCommandInput,
|
|
17
12
|
CalculateRouteMatrixCommandOutput,
|
|
@@ -20,7 +15,7 @@ declare const CalculateRouteMatrixCommand_base: {
|
|
|
20
15
|
import("..").ServiceOutputTypes
|
|
21
16
|
>;
|
|
22
17
|
new (
|
|
23
|
-
input: CalculateRouteMatrixCommandInput
|
|
18
|
+
input: CalculateRouteMatrixCommandInput,
|
|
24
19
|
): import("@smithy/core/client").CommandImpl<
|
|
25
20
|
CalculateRouteMatrixCommandInput,
|
|
26
21
|
CalculateRouteMatrixCommandOutput,
|
|
@@ -1,16 +1,11 @@
|
|
|
1
1
|
import { MetadataBearer as __MetadataBearer } from "@smithy/types";
|
|
2
|
-
import {
|
|
3
|
-
CalculateRoutesRequest,
|
|
4
|
-
CalculateRoutesResponse,
|
|
5
|
-
} from "../models/models_0";
|
|
2
|
+
import { CalculateRoutesRequest, CalculateRoutesResponse } from "../models/models_0";
|
|
6
3
|
export { __MetadataBearer };
|
|
7
4
|
export interface CalculateRoutesCommandInput extends CalculateRoutesRequest {}
|
|
8
|
-
export interface CalculateRoutesCommandOutput
|
|
9
|
-
extends CalculateRoutesResponse,
|
|
10
|
-
__MetadataBearer {}
|
|
5
|
+
export interface CalculateRoutesCommandOutput extends CalculateRoutesResponse, __MetadataBearer {}
|
|
11
6
|
declare const CalculateRoutesCommand_base: {
|
|
12
7
|
new (
|
|
13
|
-
input: CalculateRoutesCommandInput
|
|
8
|
+
input: CalculateRoutesCommandInput,
|
|
14
9
|
): import("@smithy/core/client").CommandImpl<
|
|
15
10
|
CalculateRoutesCommandInput,
|
|
16
11
|
CalculateRoutesCommandOutput,
|
|
@@ -19,7 +14,7 @@ declare const CalculateRoutesCommand_base: {
|
|
|
19
14
|
import("..").ServiceOutputTypes
|
|
20
15
|
>;
|
|
21
16
|
new (
|
|
22
|
-
input: CalculateRoutesCommandInput
|
|
17
|
+
input: CalculateRoutesCommandInput,
|
|
23
18
|
): import("@smithy/core/client").CommandImpl<
|
|
24
19
|
CalculateRoutesCommandInput,
|
|
25
20
|
CalculateRoutesCommandOutput,
|
|
@@ -1,17 +1,12 @@
|
|
|
1
1
|
import { MetadataBearer as __MetadataBearer } from "@smithy/types";
|
|
2
|
-
import {
|
|
3
|
-
OptimizeWaypointsRequest,
|
|
4
|
-
OptimizeWaypointsResponse,
|
|
5
|
-
} from "../models/models_0";
|
|
2
|
+
import { OptimizeWaypointsRequest, OptimizeWaypointsResponse } from "../models/models_0";
|
|
6
3
|
export { __MetadataBearer };
|
|
7
|
-
export interface OptimizeWaypointsCommandInput
|
|
8
|
-
extends OptimizeWaypointsRequest {}
|
|
4
|
+
export interface OptimizeWaypointsCommandInput extends OptimizeWaypointsRequest {}
|
|
9
5
|
export interface OptimizeWaypointsCommandOutput
|
|
10
|
-
extends OptimizeWaypointsResponse,
|
|
11
|
-
__MetadataBearer {}
|
|
6
|
+
extends OptimizeWaypointsResponse, __MetadataBearer {}
|
|
12
7
|
declare const OptimizeWaypointsCommand_base: {
|
|
13
8
|
new (
|
|
14
|
-
input: OptimizeWaypointsCommandInput
|
|
9
|
+
input: OptimizeWaypointsCommandInput,
|
|
15
10
|
): import("@smithy/core/client").CommandImpl<
|
|
16
11
|
OptimizeWaypointsCommandInput,
|
|
17
12
|
OptimizeWaypointsCommandOutput,
|
|
@@ -20,7 +15,7 @@ declare const OptimizeWaypointsCommand_base: {
|
|
|
20
15
|
import("..").ServiceOutputTypes
|
|
21
16
|
>;
|
|
22
17
|
new (
|
|
23
|
-
input: OptimizeWaypointsCommandInput
|
|
18
|
+
input: OptimizeWaypointsCommandInput,
|
|
24
19
|
): import("@smithy/core/client").CommandImpl<
|
|
25
20
|
OptimizeWaypointsCommandInput,
|
|
26
21
|
OptimizeWaypointsCommandOutput,
|
|
@@ -2,12 +2,10 @@ import { MetadataBearer as __MetadataBearer } from "@smithy/types";
|
|
|
2
2
|
import { SnapToRoadsRequest, SnapToRoadsResponse } from "../models/models_0";
|
|
3
3
|
export { __MetadataBearer };
|
|
4
4
|
export interface SnapToRoadsCommandInput extends SnapToRoadsRequest {}
|
|
5
|
-
export interface SnapToRoadsCommandOutput
|
|
6
|
-
extends SnapToRoadsResponse,
|
|
7
|
-
__MetadataBearer {}
|
|
5
|
+
export interface SnapToRoadsCommandOutput extends SnapToRoadsResponse, __MetadataBearer {}
|
|
8
6
|
declare const SnapToRoadsCommand_base: {
|
|
9
7
|
new (
|
|
10
|
-
input: SnapToRoadsCommandInput
|
|
8
|
+
input: SnapToRoadsCommandInput,
|
|
11
9
|
): import("@smithy/core/client").CommandImpl<
|
|
12
10
|
SnapToRoadsCommandInput,
|
|
13
11
|
SnapToRoadsCommandOutput,
|
|
@@ -16,7 +14,7 @@ declare const SnapToRoadsCommand_base: {
|
|
|
16
14
|
import("..").ServiceOutputTypes
|
|
17
15
|
>;
|
|
18
16
|
new (
|
|
19
|
-
input: SnapToRoadsCommandInput
|
|
17
|
+
input: SnapToRoadsCommandInput,
|
|
20
18
|
): import("@smithy/core/client").CommandImpl<
|
|
21
19
|
SnapToRoadsCommandInput,
|
|
22
20
|
SnapToRoadsCommandOutput,
|
|
@@ -23,7 +23,7 @@ export type ClientResolvedEndpointParameters = Pick<
|
|
|
23
23
|
defaultSigningName: string;
|
|
24
24
|
};
|
|
25
25
|
export declare const resolveClientEndpointParameters: <T>(
|
|
26
|
-
options: T & ClientInputEndpointParameters
|
|
26
|
+
options: T & ClientInputEndpointParameters,
|
|
27
27
|
) => T & ClientResolvedEndpointParameters;
|
|
28
28
|
export declare const commonParams: {
|
|
29
29
|
readonly UseFIPS: {
|
|
@@ -3,7 +3,8 @@ import { HttpHandlerExtensionConfiguration } from "@smithy/core/protocols";
|
|
|
3
3
|
import { DefaultExtensionConfiguration } from "@smithy/types";
|
|
4
4
|
import { HttpAuthExtensionConfiguration } from "./auth/httpAuthExtensionConfiguration";
|
|
5
5
|
export interface GeoRoutesExtensionConfiguration
|
|
6
|
-
extends
|
|
6
|
+
extends
|
|
7
|
+
HttpHandlerExtensionConfiguration,
|
|
7
8
|
DefaultExtensionConfiguration,
|
|
8
9
|
AwsRegionExtensionConfiguration,
|
|
9
10
|
HttpAuthExtensionConfiguration {}
|
|
@@ -3,14 +3,12 @@ export declare const IsolineZoneCategory: {
|
|
|
3
3
|
readonly ENVIRONMENTAL: "Environmental";
|
|
4
4
|
readonly VIGNETTE: "Vignette";
|
|
5
5
|
};
|
|
6
|
-
export type IsolineZoneCategory =
|
|
7
|
-
(typeof IsolineZoneCategory)[keyof typeof IsolineZoneCategory];
|
|
6
|
+
export type IsolineZoneCategory = (typeof IsolineZoneCategory)[keyof typeof IsolineZoneCategory];
|
|
8
7
|
export declare const MatchingStrategy: {
|
|
9
8
|
readonly MATCH_ANY: "MatchAny";
|
|
10
9
|
readonly MATCH_MOST_SIGNIFICANT_ROAD: "MatchMostSignificantRoad";
|
|
11
10
|
};
|
|
12
|
-
export type MatchingStrategy =
|
|
13
|
-
(typeof MatchingStrategy)[keyof typeof MatchingStrategy];
|
|
11
|
+
export type MatchingStrategy = (typeof MatchingStrategy)[keyof typeof MatchingStrategy];
|
|
14
12
|
export declare const SideOfStreetMatchingStrategy: {
|
|
15
13
|
readonly ANY_STREET: "AnyStreet";
|
|
16
14
|
readonly DIVIDED_STREET_ONLY: "DividedStreetOnly";
|
|
@@ -21,8 +19,7 @@ export declare const GeometryFormat: {
|
|
|
21
19
|
readonly FLEXIBLE_POLYLINE: "FlexiblePolyline";
|
|
22
20
|
readonly SIMPLE: "Simple";
|
|
23
21
|
};
|
|
24
|
-
export type GeometryFormat =
|
|
25
|
-
(typeof GeometryFormat)[keyof typeof GeometryFormat];
|
|
22
|
+
export type GeometryFormat = (typeof GeometryFormat)[keyof typeof GeometryFormat];
|
|
26
23
|
export declare const IsolineOptimizationObjective: {
|
|
27
24
|
readonly ACCURATE_CALCULATION: "AccurateCalculation";
|
|
28
25
|
readonly BALANCED_CALCULATION: "BalancedCalculation";
|
|
@@ -34,8 +31,7 @@ export declare const RoutingObjective: {
|
|
|
34
31
|
readonly FASTEST_ROUTE: "FastestRoute";
|
|
35
32
|
readonly SHORTEST_ROUTE: "ShortestRoute";
|
|
36
33
|
};
|
|
37
|
-
export type RoutingObjective =
|
|
38
|
-
(typeof RoutingObjective)[keyof typeof RoutingObjective];
|
|
34
|
+
export type RoutingObjective = (typeof RoutingObjective)[keyof typeof RoutingObjective];
|
|
39
35
|
export declare const TrafficUsage: {
|
|
40
36
|
readonly IGNORE_TRAFFIC_DATA: "IgnoreTrafficData";
|
|
41
37
|
readonly USE_TRAFFIC_DATA: "UseTrafficData";
|
|
@@ -47,15 +43,13 @@ export declare const IsolineTravelMode: {
|
|
|
47
43
|
readonly SCOOTER: "Scooter";
|
|
48
44
|
readonly TRUCK: "Truck";
|
|
49
45
|
};
|
|
50
|
-
export type IsolineTravelMode =
|
|
51
|
-
(typeof IsolineTravelMode)[keyof typeof IsolineTravelMode];
|
|
46
|
+
export type IsolineTravelMode = (typeof IsolineTravelMode)[keyof typeof IsolineTravelMode];
|
|
52
47
|
export declare const IsolineEngineType: {
|
|
53
48
|
readonly ELECTRIC: "Electric";
|
|
54
49
|
readonly INTERNAL_COMBUSTION: "InternalCombustion";
|
|
55
50
|
readonly PLUGIN_HYBRID: "PluginHybrid";
|
|
56
51
|
};
|
|
57
|
-
export type IsolineEngineType =
|
|
58
|
-
(typeof IsolineEngineType)[keyof typeof IsolineEngineType];
|
|
52
|
+
export type IsolineEngineType = (typeof IsolineEngineType)[keyof typeof IsolineEngineType];
|
|
59
53
|
export declare const IsolineHazardousCargoType: {
|
|
60
54
|
readonly COMBUSTIBLE: "Combustible";
|
|
61
55
|
readonly CORROSIVE: "Corrosive";
|
|
@@ -76,8 +70,7 @@ export declare const IsolineTruckType: {
|
|
|
76
70
|
readonly STRAIGHT_TRUCK: "StraightTruck";
|
|
77
71
|
readonly TRACTOR: "Tractor";
|
|
78
72
|
};
|
|
79
|
-
export type IsolineTruckType =
|
|
80
|
-
(typeof IsolineTruckType)[keyof typeof IsolineTruckType];
|
|
73
|
+
export type IsolineTruckType = (typeof IsolineTruckType)[keyof typeof IsolineTruckType];
|
|
81
74
|
export declare const ValidationExceptionReason: {
|
|
82
75
|
readonly CANNOT_PARSE: "CannotParse";
|
|
83
76
|
readonly FIELD_VALIDATION_FAILED: "FieldValidationFailed";
|
|
@@ -123,8 +116,7 @@ export declare const RouteMatrixTruckType: {
|
|
|
123
116
|
readonly STRAIGHT_TRUCK: "StraightTruck";
|
|
124
117
|
readonly TRACTOR: "Tractor";
|
|
125
118
|
};
|
|
126
|
-
export type RouteMatrixTruckType =
|
|
127
|
-
(typeof RouteMatrixTruckType)[keyof typeof RouteMatrixTruckType];
|
|
119
|
+
export type RouteMatrixTruckType = (typeof RouteMatrixTruckType)[keyof typeof RouteMatrixTruckType];
|
|
128
120
|
export declare const RouteMatrixErrorCode: {
|
|
129
121
|
readonly NO_MATCH: "NoMatch";
|
|
130
122
|
readonly NO_MATCH_DESTINATION: "NoMatchDestination";
|
|
@@ -136,21 +128,18 @@ export declare const RouteMatrixErrorCode: {
|
|
|
136
128
|
readonly OUT_OF_BOUNDS_ORIGIN: "OutOfBoundsOrigin";
|
|
137
129
|
readonly VIOLATION: "Violation";
|
|
138
130
|
};
|
|
139
|
-
export type RouteMatrixErrorCode =
|
|
140
|
-
(typeof RouteMatrixErrorCode)[keyof typeof RouteMatrixErrorCode];
|
|
131
|
+
export type RouteMatrixErrorCode = (typeof RouteMatrixErrorCode)[keyof typeof RouteMatrixErrorCode];
|
|
141
132
|
export declare const RouteZoneCategory: {
|
|
142
133
|
readonly CONGESTION_PRICING: "CongestionPricing";
|
|
143
134
|
readonly ENVIRONMENTAL: "Environmental";
|
|
144
135
|
readonly VIGNETTE: "Vignette";
|
|
145
136
|
};
|
|
146
|
-
export type RouteZoneCategory =
|
|
147
|
-
(typeof RouteZoneCategory)[keyof typeof RouteZoneCategory];
|
|
137
|
+
export type RouteZoneCategory = (typeof RouteZoneCategory)[keyof typeof RouteZoneCategory];
|
|
148
138
|
export declare const MeasurementSystem: {
|
|
149
139
|
readonly IMPERIAL: "Imperial";
|
|
150
140
|
readonly METRIC: "Metric";
|
|
151
141
|
};
|
|
152
|
-
export type MeasurementSystem =
|
|
153
|
-
(typeof MeasurementSystem)[keyof typeof MeasurementSystem];
|
|
142
|
+
export type MeasurementSystem = (typeof MeasurementSystem)[keyof typeof MeasurementSystem];
|
|
154
143
|
export declare const RouteLegAdditionalFeature: {
|
|
155
144
|
readonly BOOKINGS: "Bookings";
|
|
156
145
|
readonly ELEVATION: "Elevation";
|
|
@@ -208,15 +197,13 @@ export declare const RouteTravelMode: {
|
|
|
208
197
|
readonly TRANSIT: "Transit";
|
|
209
198
|
readonly TRUCK: "Truck";
|
|
210
199
|
};
|
|
211
|
-
export type RouteTravelMode =
|
|
212
|
-
(typeof RouteTravelMode)[keyof typeof RouteTravelMode];
|
|
200
|
+
export type RouteTravelMode = (typeof RouteTravelMode)[keyof typeof RouteTravelMode];
|
|
213
201
|
export declare const RouteEngineType: {
|
|
214
202
|
readonly ELECTRIC: "Electric";
|
|
215
203
|
readonly INTERNAL_COMBUSTION: "InternalCombustion";
|
|
216
204
|
readonly PLUGIN_HYBRID: "PluginHybrid";
|
|
217
205
|
};
|
|
218
|
-
export type RouteEngineType =
|
|
219
|
-
(typeof RouteEngineType)[keyof typeof RouteEngineType];
|
|
206
|
+
export type RouteEngineType = (typeof RouteEngineType)[keyof typeof RouteEngineType];
|
|
220
207
|
export declare const RouteAccessibilityAttribute: {
|
|
221
208
|
readonly WHEELCHAIR: "Wheelchair";
|
|
222
209
|
};
|
|
@@ -226,8 +213,7 @@ export declare const RouteRentalMode: {
|
|
|
226
213
|
readonly ALL: "All";
|
|
227
214
|
readonly CAR: "Car";
|
|
228
215
|
};
|
|
229
|
-
export type RouteRentalMode =
|
|
230
|
-
(typeof RouteRentalMode)[keyof typeof RouteRentalMode];
|
|
216
|
+
export type RouteRentalMode = (typeof RouteRentalMode)[keyof typeof RouteRentalMode];
|
|
231
217
|
export declare const RouteIntermodalEnabledLegs: {
|
|
232
218
|
readonly ENTIRE_ROUTE: "EntireRoute";
|
|
233
219
|
readonly FIRST_LEG: "FirstLeg";
|
|
@@ -259,14 +245,12 @@ export declare const RouteTransitMode: {
|
|
|
259
245
|
readonly REGIONAL_TRAIN: "RegionalTrain";
|
|
260
246
|
readonly SUBWAY: "Subway";
|
|
261
247
|
};
|
|
262
|
-
export type RouteTransitMode =
|
|
263
|
-
(typeof RouteTransitMode)[keyof typeof RouteTransitMode];
|
|
248
|
+
export type RouteTransitMode = (typeof RouteTransitMode)[keyof typeof RouteTransitMode];
|
|
264
249
|
export declare const RouteVehicleMode: {
|
|
265
250
|
readonly ALL: "All";
|
|
266
251
|
readonly CAR: "Car";
|
|
267
252
|
};
|
|
268
|
-
export type RouteVehicleMode =
|
|
269
|
-
(typeof RouteVehicleMode)[keyof typeof RouteVehicleMode];
|
|
253
|
+
export type RouteVehicleMode = (typeof RouteVehicleMode)[keyof typeof RouteVehicleMode];
|
|
270
254
|
export declare const RouteHazardousCargoType: {
|
|
271
255
|
readonly COMBUSTIBLE: "Combustible";
|
|
272
256
|
readonly CORROSIVE: "Corrosive";
|
|
@@ -287,14 +271,12 @@ export declare const RouteTruckType: {
|
|
|
287
271
|
readonly STRAIGHT_TRUCK: "StraightTruck";
|
|
288
272
|
readonly TRACTOR: "Tractor";
|
|
289
273
|
};
|
|
290
|
-
export type RouteTruckType =
|
|
291
|
-
(typeof RouteTruckType)[keyof typeof RouteTruckType];
|
|
274
|
+
export type RouteTruckType = (typeof RouteTruckType)[keyof typeof RouteTruckType];
|
|
292
275
|
export declare const RouteTravelStepType: {
|
|
293
276
|
readonly DEFAULT: "Default";
|
|
294
277
|
readonly TURN_BY_TURN: "TurnByTurn";
|
|
295
278
|
};
|
|
296
|
-
export type RouteTravelStepType =
|
|
297
|
-
(typeof RouteTravelStepType)[keyof typeof RouteTravelStepType];
|
|
279
|
+
export type RouteTravelStepType = (typeof RouteTravelStepType)[keyof typeof RouteTravelStepType];
|
|
298
280
|
export declare const RouteResponseNoticeCode: {
|
|
299
281
|
readonly MAIN_LANGUAGE_NOT_FOUND: "MainLanguageNotFound";
|
|
300
282
|
readonly NO_TRANSIT_STATIONS_FOUND: "NoTransitStationsFound";
|
|
@@ -309,8 +291,7 @@ export declare const RouteNoticeImpact: {
|
|
|
309
291
|
readonly HIGH: "High";
|
|
310
292
|
readonly LOW: "Low";
|
|
311
293
|
};
|
|
312
|
-
export type RouteNoticeImpact =
|
|
313
|
-
(typeof RouteNoticeImpact)[keyof typeof RouteNoticeImpact];
|
|
294
|
+
export type RouteNoticeImpact = (typeof RouteNoticeImpact)[keyof typeof RouteNoticeImpact];
|
|
314
295
|
export declare const RouteFerryAfterTravelStepType: {
|
|
315
296
|
readonly DEBOARD: "Deboard";
|
|
316
297
|
};
|
|
@@ -332,8 +313,7 @@ export declare const RouteFerryNoticeCode: {
|
|
|
332
313
|
readonly VIOLATED_AVOID_RAIL_FERRY: "ViolatedAvoidRailFerry";
|
|
333
314
|
readonly VIOLATED_VEHICLE_RESTRICTION: "ViolatedVehicleRestriction";
|
|
334
315
|
};
|
|
335
|
-
export type RouteFerryNoticeCode =
|
|
336
|
-
(typeof RouteFerryNoticeCode)[keyof typeof RouteFerryNoticeCode];
|
|
316
|
+
export type RouteFerryNoticeCode = (typeof RouteFerryNoticeCode)[keyof typeof RouteFerryNoticeCode];
|
|
337
317
|
export declare const RouteFerryTravelStepType: {
|
|
338
318
|
readonly ARRIVE: "Arrive";
|
|
339
319
|
readonly CONTINUE: "Continue";
|
|
@@ -358,8 +338,7 @@ export declare const RouteSideOfStreet: {
|
|
|
358
338
|
readonly LEFT: "Left";
|
|
359
339
|
readonly RIGHT: "Right";
|
|
360
340
|
};
|
|
361
|
-
export type RouteSideOfStreet =
|
|
362
|
-
(typeof RouteSideOfStreet)[keyof typeof RouteSideOfStreet];
|
|
341
|
+
export type RouteSideOfStreet = (typeof RouteSideOfStreet)[keyof typeof RouteSideOfStreet];
|
|
363
342
|
export declare const RoutePedestrianPlaceType: {
|
|
364
343
|
readonly ACCESS_POINT: "AccessPoint";
|
|
365
344
|
readonly DOCKING_STATION: "DockingStation";
|
|
@@ -410,8 +389,7 @@ export declare const RouteDirection: {
|
|
|
410
389
|
readonly SOUTH: "South";
|
|
411
390
|
readonly WEST: "West";
|
|
412
391
|
};
|
|
413
|
-
export type RouteDirection =
|
|
414
|
-
(typeof RouteDirection)[keyof typeof RouteDirection];
|
|
392
|
+
export type RouteDirection = (typeof RouteDirection)[keyof typeof RouteDirection];
|
|
415
393
|
export declare const RouteRoadType: {
|
|
416
394
|
readonly HIGHWAY: "Highway";
|
|
417
395
|
readonly RURAL: "Rural";
|
|
@@ -430,8 +408,7 @@ export declare const RouteTurnIntensity: {
|
|
|
430
408
|
readonly SLIGHT: "Slight";
|
|
431
409
|
readonly TYPICAL: "Typical";
|
|
432
410
|
};
|
|
433
|
-
export type RouteTurnIntensity =
|
|
434
|
-
(typeof RouteTurnIntensity)[keyof typeof RouteTurnIntensity];
|
|
411
|
+
export type RouteTurnIntensity = (typeof RouteTurnIntensity)[keyof typeof RouteTurnIntensity];
|
|
435
412
|
export declare const RoutePedestrianTravelStepType: {
|
|
436
413
|
readonly ARRIVE: "Arrive";
|
|
437
414
|
readonly CONTINUE: "Continue";
|
|
@@ -455,14 +432,12 @@ export declare const RouteRentalPlaceType: {
|
|
|
455
432
|
readonly PARKING_LOT: "ParkingLot";
|
|
456
433
|
readonly STATION: "Station";
|
|
457
434
|
};
|
|
458
|
-
export type RouteRentalPlaceType =
|
|
459
|
-
(typeof RouteRentalPlaceType)[keyof typeof RouteRentalPlaceType];
|
|
435
|
+
export type RouteRentalPlaceType = (typeof RouteRentalPlaceType)[keyof typeof RouteRentalPlaceType];
|
|
460
436
|
export declare const RouteAttributionType: {
|
|
461
437
|
readonly DISCLAIMER: "Disclaimer";
|
|
462
438
|
readonly TARIFF: "Tariff";
|
|
463
439
|
};
|
|
464
|
-
export type RouteAttributionType =
|
|
465
|
-
(typeof RouteAttributionType)[keyof typeof RouteAttributionType];
|
|
440
|
+
export type RouteAttributionType = (typeof RouteAttributionType)[keyof typeof RouteAttributionType];
|
|
466
441
|
export declare const RouteWebLinkDeviceType: {
|
|
467
442
|
readonly ANDROID: "Android";
|
|
468
443
|
readonly IOS: "Ios";
|
|
@@ -499,8 +474,7 @@ export declare const RouteTaxiPlaceType: {
|
|
|
499
474
|
readonly ACCESS_POINT: "AccessPoint";
|
|
500
475
|
readonly STATION: "Station";
|
|
501
476
|
};
|
|
502
|
-
export type RouteTaxiPlaceType =
|
|
503
|
-
(typeof RouteTaxiPlaceType)[keyof typeof RouteTaxiPlaceType];
|
|
477
|
+
export type RouteTaxiPlaceType = (typeof RouteTaxiPlaceType)[keyof typeof RouteTaxiPlaceType];
|
|
504
478
|
export declare const RouteTaxiBeforeTravelStepType: {
|
|
505
479
|
readonly WAIT: "Wait";
|
|
506
480
|
};
|
|
@@ -510,8 +484,7 @@ export declare const RouteTaxiNoticeCode: {
|
|
|
510
484
|
readonly ACCURATE_POLYLINE_UNAVAILABLE: "AccuratePolylineUnavailable";
|
|
511
485
|
readonly OTHER: "Other";
|
|
512
486
|
};
|
|
513
|
-
export type RouteTaxiNoticeCode =
|
|
514
|
-
(typeof RouteTaxiNoticeCode)[keyof typeof RouteTaxiNoticeCode];
|
|
487
|
+
export type RouteTaxiNoticeCode = (typeof RouteTaxiNoticeCode)[keyof typeof RouteTaxiNoticeCode];
|
|
515
488
|
export declare const RouteTaxiTravelStepType: {
|
|
516
489
|
readonly ARRIVE: "Arrive";
|
|
517
490
|
readonly CONTINUE: "Continue";
|
|
@@ -626,8 +599,7 @@ export declare const RouteLegTravelMode: {
|
|
|
626
599
|
readonly SUBWAY: "Subway";
|
|
627
600
|
readonly TRUCK: "Truck";
|
|
628
601
|
};
|
|
629
|
-
export type RouteLegTravelMode =
|
|
630
|
-
(typeof RouteLegTravelMode)[keyof typeof RouteLegTravelMode];
|
|
602
|
+
export type RouteLegTravelMode = (typeof RouteLegTravelMode)[keyof typeof RouteLegTravelMode];
|
|
631
603
|
export declare const RouteLegType: {
|
|
632
604
|
readonly FERRY: "Ferry";
|
|
633
605
|
readonly PEDESTRIAN: "Pedestrian";
|
|
@@ -857,8 +829,7 @@ export declare const RoadSnapTravelMode: {
|
|
|
857
829
|
readonly SCOOTER: "Scooter";
|
|
858
830
|
readonly TRUCK: "Truck";
|
|
859
831
|
};
|
|
860
|
-
export type RoadSnapTravelMode =
|
|
861
|
-
(typeof RoadSnapTravelMode)[keyof typeof RoadSnapTravelMode];
|
|
832
|
+
export type RoadSnapTravelMode = (typeof RoadSnapTravelMode)[keyof typeof RoadSnapTravelMode];
|
|
862
833
|
export declare const RoadSnapHazardousCargoType: {
|
|
863
834
|
readonly COMBUSTIBLE: "Combustible";
|
|
864
835
|
readonly CORROSIVE: "Corrosive";
|
|
@@ -883,5 +854,4 @@ export declare const RoadSnapNoticeCode: {
|
|
|
883
854
|
readonly TRACE_POINTS_SPEED_ESTIMATED: "TracePointsSpeedEstimated";
|
|
884
855
|
readonly TRACE_POINTS_SPEED_IGNORED: "TracePointsSpeedIgnored";
|
|
885
856
|
};
|
|
886
|
-
export type RoadSnapNoticeCode =
|
|
887
|
-
(typeof RoadSnapNoticeCode)[keyof typeof RoadSnapNoticeCode];
|
|
857
|
+
export type RoadSnapNoticeCode = (typeof RoadSnapNoticeCode)[keyof typeof RoadSnapNoticeCode];
|
|
@@ -6,27 +6,21 @@ export declare class AccessDeniedException extends __BaseException {
|
|
|
6
6
|
readonly name: "AccessDeniedException";
|
|
7
7
|
readonly $fault: "client";
|
|
8
8
|
Message: string | undefined;
|
|
9
|
-
constructor(
|
|
10
|
-
opts: __ExceptionOptionType<AccessDeniedException, __BaseException>
|
|
11
|
-
);
|
|
9
|
+
constructor(opts: __ExceptionOptionType<AccessDeniedException, __BaseException>);
|
|
12
10
|
}
|
|
13
11
|
export declare class InternalServerException extends __BaseException {
|
|
14
12
|
readonly name: "InternalServerException";
|
|
15
13
|
readonly $fault: "server";
|
|
16
14
|
$retryable: {};
|
|
17
15
|
Message: string | undefined;
|
|
18
|
-
constructor(
|
|
19
|
-
opts: __ExceptionOptionType<InternalServerException, __BaseException>
|
|
20
|
-
);
|
|
16
|
+
constructor(opts: __ExceptionOptionType<InternalServerException, __BaseException>);
|
|
21
17
|
}
|
|
22
18
|
export declare class ThrottlingException extends __BaseException {
|
|
23
19
|
readonly name: "ThrottlingException";
|
|
24
20
|
readonly $fault: "client";
|
|
25
21
|
$retryable: {};
|
|
26
22
|
Message: string | undefined;
|
|
27
|
-
constructor(
|
|
28
|
-
opts: __ExceptionOptionType<ThrottlingException, __BaseException>
|
|
29
|
-
);
|
|
23
|
+
constructor(opts: __ExceptionOptionType<ThrottlingException, __BaseException>);
|
|
30
24
|
}
|
|
31
25
|
export declare class ValidationException extends __BaseException {
|
|
32
26
|
readonly name: "ValidationException";
|
|
@@ -34,7 +28,5 @@ export declare class ValidationException extends __BaseException {
|
|
|
34
28
|
Message: string | undefined;
|
|
35
29
|
Reason: ValidationExceptionReason | undefined;
|
|
36
30
|
FieldList: ValidationExceptionField[] | undefined;
|
|
37
|
-
constructor(
|
|
38
|
-
opts: __ExceptionOptionType<ValidationException, __BaseException>
|
|
39
|
-
);
|
|
31
|
+
constructor(opts: __ExceptionOptionType<ValidationException, __BaseException>);
|
|
40
32
|
}
|
|
@@ -1466,9 +1466,7 @@ export interface WaypointOptimizationDrivingDistanceOptions {
|
|
|
1466
1466
|
}
|
|
1467
1467
|
export interface WaypointOptimizationClusteringOptions {
|
|
1468
1468
|
Algorithm: WaypointOptimizationClusteringAlgorithm | undefined;
|
|
1469
|
-
DrivingDistanceOptions?:
|
|
1470
|
-
| WaypointOptimizationDrivingDistanceOptions
|
|
1471
|
-
| undefined;
|
|
1469
|
+
DrivingDistanceOptions?: WaypointOptimizationDrivingDistanceOptions | undefined;
|
|
1472
1470
|
}
|
|
1473
1471
|
export interface WaypointOptimizationAccessHoursEntry {
|
|
1474
1472
|
DayOfWeek: DayOfWeek | undefined;
|
|
@@ -8,24 +8,16 @@ export declare const getRuntimeConfig: (config: GeoRoutesClientConfig) => {
|
|
|
8
8
|
bodyLengthChecker: import("@smithy/types").BodyLengthCalculator;
|
|
9
9
|
credentialDefaultProvider:
|
|
10
10
|
| ((input: any) => import("@smithy/types").AwsCredentialIdentityProvider)
|
|
11
|
-
| ((
|
|
12
|
-
_: unknown
|
|
13
|
-
) => () => Promise<import("@smithy/types").AwsCredentialIdentity>);
|
|
11
|
+
| ((_: unknown) => () => Promise<import("@smithy/types").AwsCredentialIdentity>);
|
|
14
12
|
defaultUserAgentProvider: (
|
|
15
|
-
config?: import("@aws-sdk/core/client").PreviouslyResolved
|
|
13
|
+
config?: import("@aws-sdk/core/client").PreviouslyResolved,
|
|
16
14
|
) => Promise<import("@smithy/types").UserAgent>;
|
|
17
15
|
maxAttempts: number | import("@smithy/types").Provider<number>;
|
|
18
16
|
region: string | import("@smithy/types").Provider<any>;
|
|
19
|
-
requestHandler:
|
|
20
|
-
| import("@smithy/core/protocols").HttpHandler<any>
|
|
21
|
-
| RequestHandler;
|
|
17
|
+
requestHandler: import("@smithy/core/protocols").HttpHandler<any> | RequestHandler;
|
|
22
18
|
retryMode: string | import("@smithy/types").Provider<string>;
|
|
23
19
|
streamCollector: (
|
|
24
|
-
stream:
|
|
25
|
-
| import("stream").Readable
|
|
26
|
-
| import("stream/web").ReadableStream
|
|
27
|
-
| ReadableStream
|
|
28
|
-
| Blob
|
|
20
|
+
stream: import("stream").Readable | import("stream/web").ReadableStream | ReadableStream | Blob,
|
|
29
21
|
) => Promise<Uint8Array>;
|
|
30
22
|
useDualstackEndpoint: (boolean | import("@smithy/types").Provider<boolean>) &
|
|
31
23
|
(boolean | import("@smithy/types").Provider<boolean | undefined>);
|
|
@@ -53,13 +45,8 @@ export declare const getRuntimeConfig: (config: GeoRoutesClientConfig) => {
|
|
|
53
45
|
logger: import("@smithy/types").Logger;
|
|
54
46
|
extensions: import("./runtimeExtensions").RuntimeExtension[];
|
|
55
47
|
customUserAgent?: string | import("@smithy/types").UserAgent;
|
|
56
|
-
userAgentAppId?:
|
|
57
|
-
|
|
58
|
-
| undefined
|
|
59
|
-
| import("@smithy/types").Provider<string | undefined>;
|
|
60
|
-
retryStrategy?:
|
|
61
|
-
| import("@smithy/types").RetryStrategy
|
|
62
|
-
| import("@smithy/types").RetryStrategyV2;
|
|
48
|
+
userAgentAppId?: string | undefined | import("@smithy/types").Provider<string | undefined>;
|
|
49
|
+
retryStrategy?: import("@smithy/types").RetryStrategy | import("@smithy/types").RetryStrategyV2;
|
|
63
50
|
endpoint?:
|
|
64
51
|
| ((
|
|
65
52
|
| string
|
|
@@ -81,7 +68,7 @@ export declare const getRuntimeConfig: (config: GeoRoutesClientConfig) => {
|
|
|
81
68
|
endpointParams: import("./endpoint/EndpointParameters").EndpointParameters,
|
|
82
69
|
context?: {
|
|
83
70
|
logger?: import("@smithy/types").Logger;
|
|
84
|
-
}
|
|
71
|
+
},
|
|
85
72
|
) => import("@smithy/types").EndpointV2;
|
|
86
73
|
tls?: boolean;
|
|
87
74
|
serviceConfiguredEndpoint?: never;
|
|
@@ -94,13 +81,13 @@ export declare const getRuntimeConfig: (config: GeoRoutesClientConfig) => {
|
|
|
94
81
|
signer?:
|
|
95
82
|
| import("@smithy/types").RequestSigner
|
|
96
83
|
| ((
|
|
97
|
-
authScheme?: import("@smithy/types").AuthScheme
|
|
84
|
+
authScheme?: import("@smithy/types").AuthScheme,
|
|
98
85
|
) => Promise<import("@smithy/types").RequestSigner>);
|
|
99
86
|
signingEscapePath?: boolean;
|
|
100
87
|
systemClockOffset?: number;
|
|
101
88
|
signingRegion?: string;
|
|
102
89
|
signerConstructor?: new (
|
|
103
90
|
options: import("@smithy/signature-v4").SignatureV4Init &
|
|
104
|
-
import("@smithy/signature-v4").SignatureV4CryptoInit
|
|
91
|
+
import("@smithy/signature-v4").SignatureV4CryptoInit,
|
|
105
92
|
) => import("@smithy/types").RequestSigner;
|
|
106
93
|
};
|
|
@@ -10,23 +10,17 @@ export declare const getRuntimeConfig: (config: GeoRoutesClientConfig) => {
|
|
|
10
10
|
credentialDefaultProvider:
|
|
11
11
|
| ((input: any) => import("@smithy/types").AwsCredentialIdentityProvider)
|
|
12
12
|
| ((
|
|
13
|
-
init?: import("@aws-sdk/credential-provider-node").DefaultProviderInit
|
|
13
|
+
init?: import("@aws-sdk/credential-provider-node").DefaultProviderInit,
|
|
14
14
|
) => import("@aws-sdk/credential-provider-node").MemoizedRuntimeConfigAwsCredentialIdentityProvider);
|
|
15
15
|
defaultUserAgentProvider: (
|
|
16
|
-
config?: import("@aws-sdk/core/client").PreviouslyResolved
|
|
16
|
+
config?: import("@aws-sdk/core/client").PreviouslyResolved,
|
|
17
17
|
) => Promise<import("@smithy/types").UserAgent>;
|
|
18
18
|
maxAttempts: number | import("@smithy/types").Provider<number>;
|
|
19
19
|
region: string | import("@smithy/types").Provider<string>;
|
|
20
|
-
requestHandler:
|
|
21
|
-
| RequestHandler
|
|
22
|
-
| import("@smithy/core/protocols").HttpHandler<any>;
|
|
20
|
+
requestHandler: RequestHandler | import("@smithy/core/protocols").HttpHandler<any>;
|
|
23
21
|
retryMode: string | import("@smithy/types").Provider<string>;
|
|
24
22
|
streamCollector: (
|
|
25
|
-
stream:
|
|
26
|
-
| import("stream").Readable
|
|
27
|
-
| import("stream/web").ReadableStream
|
|
28
|
-
| ReadableStream
|
|
29
|
-
| Blob
|
|
23
|
+
stream: import("stream").Readable | import("stream/web").ReadableStream | ReadableStream | Blob,
|
|
30
24
|
) => Promise<Uint8Array>;
|
|
31
25
|
useDualstackEndpoint: boolean | import("@smithy/types").Provider<boolean>;
|
|
32
26
|
useFipsEndpoint: boolean | import("@smithy/types").Provider<boolean>;
|
|
@@ -53,9 +47,7 @@ export declare const getRuntimeConfig: (config: GeoRoutesClientConfig) => {
|
|
|
53
47
|
logger: import("@smithy/types").Logger;
|
|
54
48
|
extensions: import("./runtimeExtensions").RuntimeExtension[];
|
|
55
49
|
customUserAgent?: string | import("@smithy/types").UserAgent;
|
|
56
|
-
retryStrategy?:
|
|
57
|
-
| import("@smithy/types").RetryStrategy
|
|
58
|
-
| import("@smithy/types").RetryStrategyV2;
|
|
50
|
+
retryStrategy?: import("@smithy/types").RetryStrategy | import("@smithy/types").RetryStrategyV2;
|
|
59
51
|
endpoint?:
|
|
60
52
|
| ((
|
|
61
53
|
| string
|
|
@@ -77,7 +69,7 @@ export declare const getRuntimeConfig: (config: GeoRoutesClientConfig) => {
|
|
|
77
69
|
endpointParams: import("./endpoint/EndpointParameters").EndpointParameters,
|
|
78
70
|
context?: {
|
|
79
71
|
logger?: import("@smithy/types").Logger;
|
|
80
|
-
}
|
|
72
|
+
},
|
|
81
73
|
) => import("@smithy/types").EndpointV2;
|
|
82
74
|
tls?: boolean;
|
|
83
75
|
serviceConfiguredEndpoint?: never;
|
|
@@ -89,13 +81,13 @@ export declare const getRuntimeConfig: (config: GeoRoutesClientConfig) => {
|
|
|
89
81
|
signer?:
|
|
90
82
|
| import("@smithy/types").RequestSigner
|
|
91
83
|
| ((
|
|
92
|
-
authScheme?: import("@smithy/types").AuthScheme
|
|
84
|
+
authScheme?: import("@smithy/types").AuthScheme,
|
|
93
85
|
) => Promise<import("@smithy/types").RequestSigner>);
|
|
94
86
|
signingEscapePath?: boolean;
|
|
95
87
|
systemClockOffset?: number;
|
|
96
88
|
signingRegion?: string;
|
|
97
89
|
signerConstructor?: new (
|
|
98
90
|
options: import("@smithy/signature-v4").SignatureV4Init &
|
|
99
|
-
import("@smithy/signature-v4").SignatureV4CryptoInit
|
|
91
|
+
import("@smithy/signature-v4").SignatureV4CryptoInit,
|
|
100
92
|
) => import("@smithy/types").RequestSigner;
|
|
101
93
|
};
|
|
@@ -21,11 +21,7 @@ export declare const getRuntimeConfig: (config: GeoRoutesClientConfig) => {
|
|
|
21
21
|
urlParser: import("@smithy/types").UrlParser;
|
|
22
22
|
bodyLengthChecker: import("@smithy/types").BodyLengthCalculator;
|
|
23
23
|
streamCollector: (
|
|
24
|
-
stream:
|
|
25
|
-
| import("stream").Readable
|
|
26
|
-
| import("stream/web").ReadableStream
|
|
27
|
-
| ReadableStream
|
|
28
|
-
| Blob
|
|
24
|
+
stream: import("stream").Readable | import("stream/web").ReadableStream | ReadableStream | Blob,
|
|
29
25
|
) => Promise<Uint8Array>;
|
|
30
26
|
base64Decoder: import("@smithy/types").Decoder;
|
|
31
27
|
base64Encoder: (_input: Uint8Array | string) => string;
|
|
@@ -40,30 +36,21 @@ export declare const getRuntimeConfig: (config: GeoRoutesClientConfig) => {
|
|
|
40
36
|
region: string | import("@smithy/types").Provider<any>;
|
|
41
37
|
profile?: string;
|
|
42
38
|
defaultUserAgentProvider: (
|
|
43
|
-
config?: import("@aws-sdk/core/client").PreviouslyResolved
|
|
39
|
+
config?: import("@aws-sdk/core/client").PreviouslyResolved,
|
|
44
40
|
) => Promise<import("@smithy/types").UserAgent>;
|
|
45
41
|
credentialDefaultProvider:
|
|
46
42
|
| ((input: any) => import("@smithy/types").AwsCredentialIdentityProvider)
|
|
47
|
-
| ((
|
|
48
|
-
_: unknown
|
|
49
|
-
) => () => Promise<import("@smithy/types").AwsCredentialIdentity>);
|
|
43
|
+
| ((_: unknown) => () => Promise<import("@smithy/types").AwsCredentialIdentity>);
|
|
50
44
|
maxAttempts: number | import("@smithy/types").Provider<number>;
|
|
51
45
|
retryMode: string | import("@smithy/types").Provider<string>;
|
|
52
46
|
logger: import("@smithy/types").Logger;
|
|
53
47
|
extensions: import("./runtimeExtensions").RuntimeExtension[];
|
|
54
48
|
defaultsMode:
|
|
55
49
|
| import("@smithy/core/client").DefaultsMode
|
|
56
|
-
| import("@smithy/types").Provider<
|
|
57
|
-
import("@smithy/core/client").DefaultsMode
|
|
58
|
-
>;
|
|
50
|
+
| import("@smithy/types").Provider<import("@smithy/core/client").DefaultsMode>;
|
|
59
51
|
customUserAgent?: string | import("@smithy/types").UserAgent;
|
|
60
|
-
userAgentAppId?:
|
|
61
|
-
|
|
62
|
-
| undefined
|
|
63
|
-
| import("@smithy/types").Provider<string | undefined>;
|
|
64
|
-
retryStrategy?:
|
|
65
|
-
| import("@smithy/types").RetryStrategy
|
|
66
|
-
| import("@smithy/types").RetryStrategyV2;
|
|
52
|
+
userAgentAppId?: string | undefined | import("@smithy/types").Provider<string | undefined>;
|
|
53
|
+
retryStrategy?: import("@smithy/types").RetryStrategy | import("@smithy/types").RetryStrategyV2;
|
|
67
54
|
endpoint?:
|
|
68
55
|
| ((
|
|
69
56
|
| string
|
|
@@ -85,7 +72,7 @@ export declare const getRuntimeConfig: (config: GeoRoutesClientConfig) => {
|
|
|
85
72
|
endpointParams: import("./endpoint/EndpointParameters").EndpointParameters,
|
|
86
73
|
context?: {
|
|
87
74
|
logger?: import("@smithy/types").Logger;
|
|
88
|
-
}
|
|
75
|
+
},
|
|
89
76
|
) => import("@smithy/types").EndpointV2;
|
|
90
77
|
tls?: boolean;
|
|
91
78
|
serviceConfiguredEndpoint?: never;
|
|
@@ -98,13 +85,13 @@ export declare const getRuntimeConfig: (config: GeoRoutesClientConfig) => {
|
|
|
98
85
|
signer?:
|
|
99
86
|
| import("@smithy/types").RequestSigner
|
|
100
87
|
| ((
|
|
101
|
-
authScheme?: import("@smithy/types").AuthScheme
|
|
88
|
+
authScheme?: import("@smithy/types").AuthScheme,
|
|
102
89
|
) => Promise<import("@smithy/types").RequestSigner>);
|
|
103
90
|
signingEscapePath?: boolean;
|
|
104
91
|
systemClockOffset?: number;
|
|
105
92
|
signingRegion?: string;
|
|
106
93
|
signerConstructor?: new (
|
|
107
94
|
options: import("@smithy/signature-v4").SignatureV4Init &
|
|
108
|
-
import("@smithy/signature-v4").SignatureV4CryptoInit
|
|
95
|
+
import("@smithy/signature-v4").SignatureV4CryptoInit,
|
|
109
96
|
) => import("@smithy/types").RequestSigner;
|
|
110
97
|
};
|
|
@@ -9,7 +9,7 @@ export declare const getRuntimeConfig: (config: GeoRoutesClientConfig) => {
|
|
|
9
9
|
endpointParams: import("./endpoint/EndpointParameters").EndpointParameters,
|
|
10
10
|
context?: {
|
|
11
11
|
logger?: import("@smithy/types").Logger;
|
|
12
|
-
}
|
|
12
|
+
},
|
|
13
13
|
) => import("@smithy/types").EndpointV2;
|
|
14
14
|
extensions: import("./runtimeExtensions").RuntimeExtension[];
|
|
15
15
|
httpAuthSchemeProvider: import("./auth/httpAuthSchemeProvider").GeoRoutesHttpAuthSchemeProvider;
|
|
@@ -1,9 +1,5 @@
|
|
|
1
1
|
import { TypeRegistry } from "@smithy/core/schema";
|
|
2
|
-
import {
|
|
3
|
-
StaticErrorSchema,
|
|
4
|
-
StaticOperationSchema,
|
|
5
|
-
StaticStructureSchema,
|
|
6
|
-
} from "@smithy/types";
|
|
2
|
+
import { StaticErrorSchema, StaticOperationSchema, StaticStructureSchema } from "@smithy/types";
|
|
7
3
|
export declare var GeoRoutesServiceException$: StaticErrorSchema;
|
|
8
4
|
export declare var AccessDeniedException$: StaticErrorSchema;
|
|
9
5
|
export declare var InternalServerException$: StaticErrorSchema;
|
package/package.json
CHANGED
|
@@ -1,7 +1,38 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@aws-sdk/client-geo-routes",
|
|
3
|
+
"version": "3.1089.0",
|
|
3
4
|
"description": "AWS SDK for JavaScript Geo Routes Client for Node.js, Browser and React Native",
|
|
4
|
-
"
|
|
5
|
+
"homepage": "https://github.com/aws/aws-sdk-js-v3/tree/main/clients/client-geo-routes",
|
|
6
|
+
"license": "Apache-2.0",
|
|
7
|
+
"author": {
|
|
8
|
+
"name": "AWS SDK for JavaScript Team",
|
|
9
|
+
"url": "https://aws.amazon.com/sdk-for-javascript/"
|
|
10
|
+
},
|
|
11
|
+
"repository": {
|
|
12
|
+
"type": "git",
|
|
13
|
+
"url": "https://github.com/aws/aws-sdk-js-v3.git",
|
|
14
|
+
"directory": "clients/client-geo-routes"
|
|
15
|
+
},
|
|
16
|
+
"files": [
|
|
17
|
+
"dist-*/**"
|
|
18
|
+
],
|
|
19
|
+
"sideEffects": false,
|
|
20
|
+
"main": "./dist-cjs/index.js",
|
|
21
|
+
"module": "./dist-es/index.js",
|
|
22
|
+
"browser": {
|
|
23
|
+
"./dist-es/runtimeConfig": "./dist-es/runtimeConfig.browser"
|
|
24
|
+
},
|
|
25
|
+
"types": "./dist-types/index.d.ts",
|
|
26
|
+
"typesVersions": {
|
|
27
|
+
"<4.5": {
|
|
28
|
+
"dist-types/*": [
|
|
29
|
+
"dist-types/ts3.4/*"
|
|
30
|
+
]
|
|
31
|
+
}
|
|
32
|
+
},
|
|
33
|
+
"react-native": {
|
|
34
|
+
"./dist-es/runtimeConfig": "./dist-es/runtimeConfig.native"
|
|
35
|
+
},
|
|
5
36
|
"scripts": {
|
|
6
37
|
"build": "concurrently 'yarn:build:types' 'yarn:build:es' && yarn build:cjs",
|
|
7
38
|
"build:cjs": "node ../../scripts/compilation/inline",
|
|
@@ -14,17 +45,13 @@
|
|
|
14
45
|
"generate:client": "node ../../scripts/generate-clients/single-service",
|
|
15
46
|
"test:index": "tsc --noEmit ./test/index-types.ts && node ./test/index-objects.spec.mjs"
|
|
16
47
|
},
|
|
17
|
-
"main": "./dist-cjs/index.js",
|
|
18
|
-
"types": "./dist-types/index.d.ts",
|
|
19
|
-
"module": "./dist-es/index.js",
|
|
20
|
-
"sideEffects": false,
|
|
21
48
|
"dependencies": {
|
|
22
|
-
"@aws-sdk/core": "^3.975.
|
|
23
|
-
"@aws-sdk/credential-provider-node": "^3.972.
|
|
24
|
-
"@aws-sdk/types": "^3.974.
|
|
25
|
-
"@smithy/core": "^3.29.
|
|
26
|
-
"@smithy/fetch-http-handler": "^5.6.
|
|
27
|
-
"@smithy/node-http-handler": "^4.9.
|
|
49
|
+
"@aws-sdk/core": "^3.975.3",
|
|
50
|
+
"@aws-sdk/credential-provider-node": "^3.972.70",
|
|
51
|
+
"@aws-sdk/types": "^3.974.2",
|
|
52
|
+
"@smithy/core": "^3.29.4",
|
|
53
|
+
"@smithy/fetch-http-handler": "^5.6.6",
|
|
54
|
+
"@smithy/node-http-handler": "^4.9.6",
|
|
28
55
|
"@smithy/types": "^4.16.1",
|
|
29
56
|
"tslib": "^2.6.2"
|
|
30
57
|
},
|
|
@@ -38,32 +65,5 @@
|
|
|
38
65
|
},
|
|
39
66
|
"engines": {
|
|
40
67
|
"node": ">=20.0.0"
|
|
41
|
-
},
|
|
42
|
-
"typesVersions": {
|
|
43
|
-
"<4.5": {
|
|
44
|
-
"dist-types/*": [
|
|
45
|
-
"dist-types/ts3.4/*"
|
|
46
|
-
]
|
|
47
|
-
}
|
|
48
|
-
},
|
|
49
|
-
"files": [
|
|
50
|
-
"dist-*/**"
|
|
51
|
-
],
|
|
52
|
-
"author": {
|
|
53
|
-
"name": "AWS SDK for JavaScript Team",
|
|
54
|
-
"url": "https://aws.amazon.com/sdk-for-javascript/"
|
|
55
|
-
},
|
|
56
|
-
"license": "Apache-2.0",
|
|
57
|
-
"browser": {
|
|
58
|
-
"./dist-es/runtimeConfig": "./dist-es/runtimeConfig.browser"
|
|
59
|
-
},
|
|
60
|
-
"react-native": {
|
|
61
|
-
"./dist-es/runtimeConfig": "./dist-es/runtimeConfig.native"
|
|
62
|
-
},
|
|
63
|
-
"homepage": "https://github.com/aws/aws-sdk-js-v3/tree/main/clients/client-geo-routes",
|
|
64
|
-
"repository": {
|
|
65
|
-
"type": "git",
|
|
66
|
-
"url": "https://github.com/aws/aws-sdk-js-v3.git",
|
|
67
|
-
"directory": "clients/client-geo-routes"
|
|
68
68
|
}
|
|
69
69
|
}
|