@aws-sdk/client-geo-routes 3.936.0 → 3.939.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 +655 -100
- package/dist-es/index.js +1 -0
- package/dist-es/models/enums.js +487 -0
- package/dist-es/models/models_0.js +1 -487
- package/dist-types/index.d.ts +1 -0
- package/dist-types/models/enums.d.ts +1045 -0
- package/dist-types/models/errors.d.ts +2 -1
- package/dist-types/models/models_0.d.ts +1 -1045
- package/dist-types/ts3.4/index.d.ts +1 -0
- package/dist-types/ts3.4/models/enums.d.ts +617 -0
- package/dist-types/ts3.4/models/errors.d.ts +2 -4
- package/dist-types/ts3.4/models/models_0.d.ts +68 -617
- package/package.json +2 -2
|
@@ -1,3 +1,71 @@
|
|
|
1
|
+
import {
|
|
2
|
+
DayOfWeek,
|
|
3
|
+
GeometryFormat,
|
|
4
|
+
IsolineEngineType,
|
|
5
|
+
IsolineHazardousCargoType,
|
|
6
|
+
IsolineOptimizationObjective,
|
|
7
|
+
IsolineTravelMode,
|
|
8
|
+
IsolineTruckType,
|
|
9
|
+
IsolineZoneCategory,
|
|
10
|
+
MatchingStrategy,
|
|
11
|
+
MeasurementSystem,
|
|
12
|
+
RoadSnapHazardousCargoType,
|
|
13
|
+
RoadSnapNoticeCode,
|
|
14
|
+
RoadSnapTravelMode,
|
|
15
|
+
RouteDirection,
|
|
16
|
+
RouteEngineType,
|
|
17
|
+
RouteFerryAfterTravelStepType,
|
|
18
|
+
RouteFerryBeforeTravelStepType,
|
|
19
|
+
RouteFerryNoticeCode,
|
|
20
|
+
RouteFerryTravelStepType,
|
|
21
|
+
RouteHazardousCargoType,
|
|
22
|
+
RouteLegAdditionalFeature,
|
|
23
|
+
RouteLegTravelMode,
|
|
24
|
+
RouteLegType,
|
|
25
|
+
RouteMatrixErrorCode,
|
|
26
|
+
RouteMatrixHazardousCargoType,
|
|
27
|
+
RouteMatrixTravelMode,
|
|
28
|
+
RouteMatrixTruckType,
|
|
29
|
+
RouteMatrixZoneCategory,
|
|
30
|
+
RouteNoticeImpact,
|
|
31
|
+
RoutePedestrianNoticeCode,
|
|
32
|
+
RoutePedestrianTravelStepType,
|
|
33
|
+
RouteResponseNoticeCode,
|
|
34
|
+
RouteRoadType,
|
|
35
|
+
RouteSideOfStreet,
|
|
36
|
+
RouteSpanAdditionalFeature,
|
|
37
|
+
RouteSpanCarAccessAttribute,
|
|
38
|
+
RouteSpanGateAttribute,
|
|
39
|
+
RouteSpanPedestrianAccessAttribute,
|
|
40
|
+
RouteSpanRailwayCrossingAttribute,
|
|
41
|
+
RouteSpanRoadAttribute,
|
|
42
|
+
RouteSpanScooterAccessAttribute,
|
|
43
|
+
RouteSpanTruckAccessAttribute,
|
|
44
|
+
RouteSteeringDirection,
|
|
45
|
+
RouteTollPassValidityPeriodType,
|
|
46
|
+
RouteTollPaymentMethod,
|
|
47
|
+
RouteTollVehicleCategory,
|
|
48
|
+
RouteTravelMode,
|
|
49
|
+
RouteTravelStepType,
|
|
50
|
+
RouteTruckType,
|
|
51
|
+
RouteTurnIntensity,
|
|
52
|
+
RouteVehicleIncidentSeverity,
|
|
53
|
+
RouteVehicleIncidentType,
|
|
54
|
+
RouteVehicleNoticeCode,
|
|
55
|
+
RouteVehicleTravelStepType,
|
|
56
|
+
RouteWeightConstraintType,
|
|
57
|
+
RouteZoneCategory,
|
|
58
|
+
RoutingObjective,
|
|
59
|
+
SideOfStreetMatchingStrategy,
|
|
60
|
+
TrafficUsage,
|
|
61
|
+
WaypointOptimizationClusteringAlgorithm,
|
|
62
|
+
WaypointOptimizationConstraint,
|
|
63
|
+
WaypointOptimizationHazardousCargoType,
|
|
64
|
+
WaypointOptimizationSequencingObjective,
|
|
65
|
+
WaypointOptimizationServiceTimeTreatment,
|
|
66
|
+
WaypointOptimizationTravelMode,
|
|
67
|
+
WaypointOptimizationTruckType,
|
|
68
|
+
} from "./enums";
|
|
1
69
|
export interface IsolineAllowOptions {
|
|
2
70
|
Hot?: boolean | undefined;
|
|
3
71
|
Hov?: boolean | undefined;
|
|
@@ -21,13 +89,6 @@ export interface IsolineAvoidanceArea {
|
|
|
21
89
|
Except?: IsolineAvoidanceAreaGeometry[] | undefined;
|
|
22
90
|
Geometry: IsolineAvoidanceAreaGeometry | undefined;
|
|
23
91
|
}
|
|
24
|
-
export declare const IsolineZoneCategory: {
|
|
25
|
-
readonly CONGESTION_PRICING: "CongestionPricing";
|
|
26
|
-
readonly ENVIRONMENTAL: "Environmental";
|
|
27
|
-
readonly VIGNETTE: "Vignette";
|
|
28
|
-
};
|
|
29
|
-
export type IsolineZoneCategory =
|
|
30
|
-
(typeof IsolineZoneCategory)[keyof typeof IsolineZoneCategory];
|
|
31
92
|
export interface IsolineAvoidanceZoneCategory {
|
|
32
93
|
Category?: IsolineZoneCategory | undefined;
|
|
33
94
|
}
|
|
@@ -45,24 +106,12 @@ export interface IsolineAvoidanceOptions {
|
|
|
45
106
|
UTurns?: boolean | undefined;
|
|
46
107
|
ZoneCategories?: IsolineAvoidanceZoneCategory[] | undefined;
|
|
47
108
|
}
|
|
48
|
-
export declare const MatchingStrategy: {
|
|
49
|
-
readonly MATCH_ANY: "MatchAny";
|
|
50
|
-
readonly MATCH_MOST_SIGNIFICANT_ROAD: "MatchMostSignificantRoad";
|
|
51
|
-
};
|
|
52
|
-
export type MatchingStrategy =
|
|
53
|
-
(typeof MatchingStrategy)[keyof typeof MatchingStrategy];
|
|
54
109
|
export interface IsolineMatchingOptions {
|
|
55
110
|
NameHint?: string | undefined;
|
|
56
111
|
OnRoadThreshold?: number | undefined;
|
|
57
112
|
Radius?: number | undefined;
|
|
58
113
|
Strategy?: MatchingStrategy | undefined;
|
|
59
114
|
}
|
|
60
|
-
export declare const SideOfStreetMatchingStrategy: {
|
|
61
|
-
readonly ANY_STREET: "AnyStreet";
|
|
62
|
-
readonly DIVIDED_STREET_ONLY: "DividedStreetOnly";
|
|
63
|
-
};
|
|
64
|
-
export type SideOfStreetMatchingStrategy =
|
|
65
|
-
(typeof SideOfStreetMatchingStrategy)[keyof typeof SideOfStreetMatchingStrategy];
|
|
66
115
|
export interface IsolineSideOfStreetOptions {
|
|
67
116
|
Position: number[] | undefined;
|
|
68
117
|
UseWith?: SideOfStreetMatchingStrategy | undefined;
|
|
@@ -73,29 +122,10 @@ export interface IsolineDestinationOptions {
|
|
|
73
122
|
Matching?: IsolineMatchingOptions | undefined;
|
|
74
123
|
SideOfStreet?: IsolineSideOfStreetOptions | undefined;
|
|
75
124
|
}
|
|
76
|
-
export declare const GeometryFormat: {
|
|
77
|
-
readonly FLEXIBLE_POLYLINE: "FlexiblePolyline";
|
|
78
|
-
readonly SIMPLE: "Simple";
|
|
79
|
-
};
|
|
80
|
-
export type GeometryFormat =
|
|
81
|
-
(typeof GeometryFormat)[keyof typeof GeometryFormat];
|
|
82
125
|
export interface IsolineGranularityOptions {
|
|
83
126
|
MaxPoints?: number | undefined;
|
|
84
127
|
MaxResolution?: number | undefined;
|
|
85
128
|
}
|
|
86
|
-
export declare const IsolineOptimizationObjective: {
|
|
87
|
-
readonly ACCURATE_CALCULATION: "AccurateCalculation";
|
|
88
|
-
readonly BALANCED_CALCULATION: "BalancedCalculation";
|
|
89
|
-
readonly FAST_CALCULATION: "FastCalculation";
|
|
90
|
-
};
|
|
91
|
-
export type IsolineOptimizationObjective =
|
|
92
|
-
(typeof IsolineOptimizationObjective)[keyof typeof IsolineOptimizationObjective];
|
|
93
|
-
export declare const RoutingObjective: {
|
|
94
|
-
readonly FASTEST_ROUTE: "FastestRoute";
|
|
95
|
-
readonly SHORTEST_ROUTE: "ShortestRoute";
|
|
96
|
-
};
|
|
97
|
-
export type RoutingObjective =
|
|
98
|
-
(typeof RoutingObjective)[keyof typeof RoutingObjective];
|
|
99
129
|
export interface IsolineOriginOptions {
|
|
100
130
|
AvoidActionsForDistance?: number | undefined;
|
|
101
131
|
Heading?: number | undefined;
|
|
@@ -106,30 +136,10 @@ export interface IsolineThresholds {
|
|
|
106
136
|
Distance?: number[] | undefined;
|
|
107
137
|
Time?: number[] | undefined;
|
|
108
138
|
}
|
|
109
|
-
export declare const TrafficUsage: {
|
|
110
|
-
readonly IGNORE_TRAFFIC_DATA: "IgnoreTrafficData";
|
|
111
|
-
readonly USE_TRAFFIC_DATA: "UseTrafficData";
|
|
112
|
-
};
|
|
113
|
-
export type TrafficUsage = (typeof TrafficUsage)[keyof typeof TrafficUsage];
|
|
114
139
|
export interface IsolineTrafficOptions {
|
|
115
140
|
FlowEventThresholdOverride?: number | undefined;
|
|
116
141
|
Usage?: TrafficUsage | undefined;
|
|
117
142
|
}
|
|
118
|
-
export declare const IsolineTravelMode: {
|
|
119
|
-
readonly CAR: "Car";
|
|
120
|
-
readonly PEDESTRIAN: "Pedestrian";
|
|
121
|
-
readonly SCOOTER: "Scooter";
|
|
122
|
-
readonly TRUCK: "Truck";
|
|
123
|
-
};
|
|
124
|
-
export type IsolineTravelMode =
|
|
125
|
-
(typeof IsolineTravelMode)[keyof typeof IsolineTravelMode];
|
|
126
|
-
export declare const IsolineEngineType: {
|
|
127
|
-
readonly ELECTRIC: "Electric";
|
|
128
|
-
readonly INTERNAL_COMBUSTION: "InternalCombustion";
|
|
129
|
-
readonly PLUGIN_HYBRID: "PluginHybrid";
|
|
130
|
-
};
|
|
131
|
-
export type IsolineEngineType =
|
|
132
|
-
(typeof IsolineEngineType)[keyof typeof IsolineEngineType];
|
|
133
143
|
export interface IsolineVehicleLicensePlate {
|
|
134
144
|
LastCharacter?: string | undefined;
|
|
135
145
|
}
|
|
@@ -145,32 +155,10 @@ export interface IsolineScooterOptions {
|
|
|
145
155
|
MaxSpeed?: number | undefined;
|
|
146
156
|
Occupancy?: number | undefined;
|
|
147
157
|
}
|
|
148
|
-
export declare const IsolineHazardousCargoType: {
|
|
149
|
-
readonly COMBUSTIBLE: "Combustible";
|
|
150
|
-
readonly CORROSIVE: "Corrosive";
|
|
151
|
-
readonly EXPLOSIVE: "Explosive";
|
|
152
|
-
readonly FLAMMABLE: "Flammable";
|
|
153
|
-
readonly GAS: "Gas";
|
|
154
|
-
readonly HARMFUL_TO_WATER: "HarmfulToWater";
|
|
155
|
-
readonly ORGANIC: "Organic";
|
|
156
|
-
readonly OTHER: "Other";
|
|
157
|
-
readonly POISON: "Poison";
|
|
158
|
-
readonly POISONOUS_INHALATION: "PoisonousInhalation";
|
|
159
|
-
readonly RADIOACTIVE: "Radioactive";
|
|
160
|
-
};
|
|
161
|
-
export type IsolineHazardousCargoType =
|
|
162
|
-
(typeof IsolineHazardousCargoType)[keyof typeof IsolineHazardousCargoType];
|
|
163
158
|
export interface IsolineTrailerOptions {
|
|
164
159
|
AxleCount?: number | undefined;
|
|
165
160
|
TrailerCount?: number | undefined;
|
|
166
161
|
}
|
|
167
|
-
export declare const IsolineTruckType: {
|
|
168
|
-
readonly LIGHT_TRUCK: "LightTruck";
|
|
169
|
-
readonly STRAIGHT_TRUCK: "StraightTruck";
|
|
170
|
-
readonly TRACTOR: "Tractor";
|
|
171
|
-
};
|
|
172
|
-
export type IsolineTruckType =
|
|
173
|
-
(typeof IsolineTruckType)[keyof typeof IsolineTruckType];
|
|
174
162
|
export interface WeightPerAxleGroup {
|
|
175
163
|
Single?: number | undefined;
|
|
176
164
|
Tandem?: number | undefined;
|
|
@@ -256,16 +244,6 @@ export interface ValidationExceptionField {
|
|
|
256
244
|
Name: string | undefined;
|
|
257
245
|
Message: string | undefined;
|
|
258
246
|
}
|
|
259
|
-
export declare const ValidationExceptionReason: {
|
|
260
|
-
readonly CANNOT_PARSE: "CannotParse";
|
|
261
|
-
readonly FIELD_VALIDATION_FAILED: "FieldValidationFailed";
|
|
262
|
-
readonly MISSING: "Missing";
|
|
263
|
-
readonly OTHER: "Other";
|
|
264
|
-
readonly UNKNOWN_FIELD: "UnknownField";
|
|
265
|
-
readonly UNKNOWN_OPERATION: "UnknownOperation";
|
|
266
|
-
};
|
|
267
|
-
export type ValidationExceptionReason =
|
|
268
|
-
(typeof ValidationExceptionReason)[keyof typeof ValidationExceptionReason];
|
|
269
247
|
export interface RouteMatrixAllowOptions {
|
|
270
248
|
Hot?: boolean | undefined;
|
|
271
249
|
Hov?: boolean | undefined;
|
|
@@ -278,13 +256,6 @@ export interface RouteMatrixAvoidanceAreaGeometry {
|
|
|
278
256
|
export interface RouteMatrixAvoidanceArea {
|
|
279
257
|
Geometry: RouteMatrixAvoidanceAreaGeometry | undefined;
|
|
280
258
|
}
|
|
281
|
-
export declare const RouteMatrixZoneCategory: {
|
|
282
|
-
readonly CONGESTION_PRICING: "CongestionPricing";
|
|
283
|
-
readonly ENVIRONMENTAL: "Environmental";
|
|
284
|
-
readonly VIGNETTE: "Vignette";
|
|
285
|
-
};
|
|
286
|
-
export type RouteMatrixZoneCategory =
|
|
287
|
-
(typeof RouteMatrixZoneCategory)[keyof typeof RouteMatrixZoneCategory];
|
|
288
259
|
export interface RouteMatrixAvoidanceZoneCategory {
|
|
289
260
|
Category?: RouteMatrixZoneCategory | undefined;
|
|
290
261
|
}
|
|
@@ -356,14 +327,6 @@ export interface RouteMatrixTrafficOptions {
|
|
|
356
327
|
FlowEventThresholdOverride?: number | undefined;
|
|
357
328
|
Usage?: TrafficUsage | undefined;
|
|
358
329
|
}
|
|
359
|
-
export declare const RouteMatrixTravelMode: {
|
|
360
|
-
readonly CAR: "Car";
|
|
361
|
-
readonly PEDESTRIAN: "Pedestrian";
|
|
362
|
-
readonly SCOOTER: "Scooter";
|
|
363
|
-
readonly TRUCK: "Truck";
|
|
364
|
-
};
|
|
365
|
-
export type RouteMatrixTravelMode =
|
|
366
|
-
(typeof RouteMatrixTravelMode)[keyof typeof RouteMatrixTravelMode];
|
|
367
330
|
export interface RouteMatrixVehicleLicensePlate {
|
|
368
331
|
LastCharacter?: string | undefined;
|
|
369
332
|
}
|
|
@@ -377,31 +340,9 @@ export interface RouteMatrixScooterOptions {
|
|
|
377
340
|
MaxSpeed?: number | undefined;
|
|
378
341
|
Occupancy?: number | undefined;
|
|
379
342
|
}
|
|
380
|
-
export declare const RouteMatrixHazardousCargoType: {
|
|
381
|
-
readonly COMBUSTIBLE: "Combustible";
|
|
382
|
-
readonly CORROSIVE: "Corrosive";
|
|
383
|
-
readonly EXPLOSIVE: "Explosive";
|
|
384
|
-
readonly FLAMMABLE: "Flammable";
|
|
385
|
-
readonly GAS: "Gas";
|
|
386
|
-
readonly HARMFUL_TO_WATER: "HarmfulToWater";
|
|
387
|
-
readonly ORGANIC: "Organic";
|
|
388
|
-
readonly OTHER: "Other";
|
|
389
|
-
readonly POISON: "Poison";
|
|
390
|
-
readonly POISONOUS_INHALATION: "PoisonousInhalation";
|
|
391
|
-
readonly RADIOACTIVE: "Radioactive";
|
|
392
|
-
};
|
|
393
|
-
export type RouteMatrixHazardousCargoType =
|
|
394
|
-
(typeof RouteMatrixHazardousCargoType)[keyof typeof RouteMatrixHazardousCargoType];
|
|
395
343
|
export interface RouteMatrixTrailerOptions {
|
|
396
344
|
TrailerCount?: number | undefined;
|
|
397
345
|
}
|
|
398
|
-
export declare const RouteMatrixTruckType: {
|
|
399
|
-
readonly LIGHT_TRUCK: "LightTruck";
|
|
400
|
-
readonly STRAIGHT_TRUCK: "StraightTruck";
|
|
401
|
-
readonly TRACTOR: "Tractor";
|
|
402
|
-
};
|
|
403
|
-
export type RouteMatrixTruckType =
|
|
404
|
-
(typeof RouteMatrixTruckType)[keyof typeof RouteMatrixTruckType];
|
|
405
346
|
export interface RouteMatrixTruckOptions {
|
|
406
347
|
AxleCount?: number | undefined;
|
|
407
348
|
GrossWeight?: number | undefined;
|
|
@@ -440,19 +381,6 @@ export interface CalculateRouteMatrixRequest {
|
|
|
440
381
|
TravelMode?: RouteMatrixTravelMode | undefined;
|
|
441
382
|
TravelModeOptions?: RouteMatrixTravelModeOptions | undefined;
|
|
442
383
|
}
|
|
443
|
-
export declare const RouteMatrixErrorCode: {
|
|
444
|
-
readonly NO_MATCH: "NoMatch";
|
|
445
|
-
readonly NO_MATCH_DESTINATION: "NoMatchDestination";
|
|
446
|
-
readonly NO_MATCH_ORIGIN: "NoMatchOrigin";
|
|
447
|
-
readonly NO_ROUTE: "NoRoute";
|
|
448
|
-
readonly OTHER: "Other";
|
|
449
|
-
readonly OUT_OF_BOUNDS: "OutOfBounds";
|
|
450
|
-
readonly OUT_OF_BOUNDS_DESTINATION: "OutOfBoundsDestination";
|
|
451
|
-
readonly OUT_OF_BOUNDS_ORIGIN: "OutOfBoundsOrigin";
|
|
452
|
-
readonly VIOLATION: "Violation";
|
|
453
|
-
};
|
|
454
|
-
export type RouteMatrixErrorCode =
|
|
455
|
-
(typeof RouteMatrixErrorCode)[keyof typeof RouteMatrixErrorCode];
|
|
456
384
|
export interface RouteMatrixEntry {
|
|
457
385
|
Distance: number | undefined;
|
|
458
386
|
Duration: number | undefined;
|
|
@@ -479,13 +407,6 @@ export interface RouteAvoidanceArea {
|
|
|
479
407
|
Except?: RouteAvoidanceAreaGeometry[] | undefined;
|
|
480
408
|
Geometry: RouteAvoidanceAreaGeometry | undefined;
|
|
481
409
|
}
|
|
482
|
-
export declare const RouteZoneCategory: {
|
|
483
|
-
readonly CONGESTION_PRICING: "CongestionPricing";
|
|
484
|
-
readonly ENVIRONMENTAL: "Environmental";
|
|
485
|
-
readonly VIGNETTE: "Vignette";
|
|
486
|
-
};
|
|
487
|
-
export type RouteZoneCategory =
|
|
488
|
-
(typeof RouteZoneCategory)[keyof typeof RouteZoneCategory];
|
|
489
410
|
export interface RouteAvoidanceZoneCategory {
|
|
490
411
|
Category: RouteZoneCategory | undefined;
|
|
491
412
|
}
|
|
@@ -531,25 +452,6 @@ export interface RouteDriverOptions {
|
|
|
531
452
|
export interface RouteExclusionOptions {
|
|
532
453
|
Countries: string[] | undefined;
|
|
533
454
|
}
|
|
534
|
-
export declare const MeasurementSystem: {
|
|
535
|
-
readonly IMPERIAL: "Imperial";
|
|
536
|
-
readonly METRIC: "Metric";
|
|
537
|
-
};
|
|
538
|
-
export type MeasurementSystem =
|
|
539
|
-
(typeof MeasurementSystem)[keyof typeof MeasurementSystem];
|
|
540
|
-
export declare const RouteLegAdditionalFeature: {
|
|
541
|
-
readonly ELEVATION: "Elevation";
|
|
542
|
-
readonly INCIDENTS: "Incidents";
|
|
543
|
-
readonly PASS_THROUGH_WAYPOINTS: "PassThroughWaypoints";
|
|
544
|
-
readonly SUMMARY: "Summary";
|
|
545
|
-
readonly TOLLS: "Tolls";
|
|
546
|
-
readonly TRAVEL_STEP_INSTRUCTIONS: "TravelStepInstructions";
|
|
547
|
-
readonly TRUCK_ROAD_TYPES: "TruckRoadTypes";
|
|
548
|
-
readonly TYPICAL_DURATION: "TypicalDuration";
|
|
549
|
-
readonly ZONES: "Zones";
|
|
550
|
-
};
|
|
551
|
-
export type RouteLegAdditionalFeature =
|
|
552
|
-
(typeof RouteLegAdditionalFeature)[keyof typeof RouteLegAdditionalFeature];
|
|
553
455
|
export interface RouteOriginOptions {
|
|
554
456
|
AvoidActionsForDistance?: number | undefined;
|
|
555
457
|
AvoidUTurns?: boolean | undefined;
|
|
@@ -557,43 +459,10 @@ export interface RouteOriginOptions {
|
|
|
557
459
|
Matching?: RouteMatchingOptions | undefined;
|
|
558
460
|
SideOfStreet?: RouteSideOfStreetOptions | undefined;
|
|
559
461
|
}
|
|
560
|
-
export declare const RouteSpanAdditionalFeature: {
|
|
561
|
-
readonly BEST_CASE_DURATION: "BestCaseDuration";
|
|
562
|
-
readonly CAR_ACCESS: "CarAccess";
|
|
563
|
-
readonly CONSUMPTION: "Consumption";
|
|
564
|
-
readonly COUNTRY: "Country";
|
|
565
|
-
readonly DISTANCE: "Distance";
|
|
566
|
-
readonly DURATION: "Duration";
|
|
567
|
-
readonly DYNAMIC_SPEED: "DynamicSpeed";
|
|
568
|
-
readonly FUNCTIONAL_CLASSIFICATION: "FunctionalClassification";
|
|
569
|
-
readonly GATES: "Gates";
|
|
570
|
-
readonly INCIDENTS: "Incidents";
|
|
571
|
-
readonly NAMES: "Names";
|
|
572
|
-
readonly NOTICES: "Notices";
|
|
573
|
-
readonly PEDESTRIAN_ACCESS: "PedestrianAccess";
|
|
574
|
-
readonly RAILWAY_CROSSINGS: "RailwayCrossings";
|
|
575
|
-
readonly REGION: "Region";
|
|
576
|
-
readonly ROAD_ATTRIBUTES: "RoadAttributes";
|
|
577
|
-
readonly ROUTE_NUMBERS: "RouteNumbers";
|
|
578
|
-
readonly SCOOTER_ACCESS: "ScooterAccess";
|
|
579
|
-
readonly SPEED_LIMIT: "SpeedLimit";
|
|
580
|
-
readonly TOLL_SYSTEMS: "TollSystems";
|
|
581
|
-
readonly TRUCK_ACCESS: "TruckAccess";
|
|
582
|
-
readonly TRUCK_ROAD_TYPES: "TruckRoadTypes";
|
|
583
|
-
readonly TYPICAL_DURATION: "TypicalDuration";
|
|
584
|
-
readonly ZONES: "Zones";
|
|
585
|
-
};
|
|
586
|
-
export type RouteSpanAdditionalFeature =
|
|
587
|
-
(typeof RouteSpanAdditionalFeature)[keyof typeof RouteSpanAdditionalFeature];
|
|
588
462
|
export interface RouteEmissionType {
|
|
589
463
|
Co2EmissionClass?: string | undefined;
|
|
590
464
|
Type: string | undefined;
|
|
591
465
|
}
|
|
592
|
-
export declare const RouteTollVehicleCategory: {
|
|
593
|
-
readonly MINIBUS: "Minibus";
|
|
594
|
-
};
|
|
595
|
-
export type RouteTollVehicleCategory =
|
|
596
|
-
(typeof RouteTollVehicleCategory)[keyof typeof RouteTollVehicleCategory];
|
|
597
466
|
export interface RouteTollOptions {
|
|
598
467
|
AllTransponders?: boolean | undefined;
|
|
599
468
|
AllVignettes?: boolean | undefined;
|
|
@@ -605,21 +474,6 @@ export interface RouteTrafficOptions {
|
|
|
605
474
|
FlowEventThresholdOverride?: number | undefined;
|
|
606
475
|
Usage?: TrafficUsage | undefined;
|
|
607
476
|
}
|
|
608
|
-
export declare const RouteTravelMode: {
|
|
609
|
-
readonly CAR: "Car";
|
|
610
|
-
readonly PEDESTRIAN: "Pedestrian";
|
|
611
|
-
readonly SCOOTER: "Scooter";
|
|
612
|
-
readonly TRUCK: "Truck";
|
|
613
|
-
};
|
|
614
|
-
export type RouteTravelMode =
|
|
615
|
-
(typeof RouteTravelMode)[keyof typeof RouteTravelMode];
|
|
616
|
-
export declare const RouteEngineType: {
|
|
617
|
-
readonly ELECTRIC: "Electric";
|
|
618
|
-
readonly INTERNAL_COMBUSTION: "InternalCombustion";
|
|
619
|
-
readonly PLUGIN_HYBRID: "PluginHybrid";
|
|
620
|
-
};
|
|
621
|
-
export type RouteEngineType =
|
|
622
|
-
(typeof RouteEngineType)[keyof typeof RouteEngineType];
|
|
623
477
|
export interface RouteVehicleLicensePlate {
|
|
624
478
|
LastCharacter?: string | undefined;
|
|
625
479
|
}
|
|
@@ -638,32 +492,10 @@ export interface RouteScooterOptions {
|
|
|
638
492
|
MaxSpeed?: number | undefined;
|
|
639
493
|
Occupancy?: number | undefined;
|
|
640
494
|
}
|
|
641
|
-
export declare const RouteHazardousCargoType: {
|
|
642
|
-
readonly COMBUSTIBLE: "Combustible";
|
|
643
|
-
readonly CORROSIVE: "Corrosive";
|
|
644
|
-
readonly EXPLOSIVE: "Explosive";
|
|
645
|
-
readonly FLAMMABLE: "Flammable";
|
|
646
|
-
readonly GAS: "Gas";
|
|
647
|
-
readonly HARMFUL_TO_WATER: "HarmfulToWater";
|
|
648
|
-
readonly ORGANIC: "Organic";
|
|
649
|
-
readonly OTHER: "Other";
|
|
650
|
-
readonly POISON: "Poison";
|
|
651
|
-
readonly POISONOUS_INHALATION: "PoisonousInhalation";
|
|
652
|
-
readonly RADIOACTIVE: "Radioactive";
|
|
653
|
-
};
|
|
654
|
-
export type RouteHazardousCargoType =
|
|
655
|
-
(typeof RouteHazardousCargoType)[keyof typeof RouteHazardousCargoType];
|
|
656
495
|
export interface RouteTrailerOptions {
|
|
657
496
|
AxleCount?: number | undefined;
|
|
658
497
|
TrailerCount?: number | undefined;
|
|
659
498
|
}
|
|
660
|
-
export declare const RouteTruckType: {
|
|
661
|
-
readonly LIGHT_TRUCK: "LightTruck";
|
|
662
|
-
readonly STRAIGHT_TRUCK: "StraightTruck";
|
|
663
|
-
readonly TRACTOR: "Tractor";
|
|
664
|
-
};
|
|
665
|
-
export type RouteTruckType =
|
|
666
|
-
(typeof RouteTruckType)[keyof typeof RouteTruckType];
|
|
667
499
|
export interface RouteTruckOptions {
|
|
668
500
|
AxleCount?: number | undefined;
|
|
669
501
|
EngineType?: RouteEngineType | undefined;
|
|
@@ -691,12 +523,6 @@ export interface RouteTravelModeOptions {
|
|
|
691
523
|
Scooter?: RouteScooterOptions | undefined;
|
|
692
524
|
Truck?: RouteTruckOptions | undefined;
|
|
693
525
|
}
|
|
694
|
-
export declare const RouteTravelStepType: {
|
|
695
|
-
readonly DEFAULT: "Default";
|
|
696
|
-
readonly TURN_BY_TURN: "TurnByTurn";
|
|
697
|
-
};
|
|
698
|
-
export type RouteTravelStepType =
|
|
699
|
-
(typeof RouteTravelStepType)[keyof typeof RouteTravelStepType];
|
|
700
526
|
export interface RouteWaypoint {
|
|
701
527
|
AvoidActionsForDistance?: number | undefined;
|
|
702
528
|
AvoidUTurns?: boolean | undefined;
|
|
@@ -734,28 +560,10 @@ export interface CalculateRoutesRequest {
|
|
|
734
560
|
TravelStepType?: RouteTravelStepType | undefined;
|
|
735
561
|
Waypoints?: RouteWaypoint[] | undefined;
|
|
736
562
|
}
|
|
737
|
-
export declare const RouteResponseNoticeCode: {
|
|
738
|
-
readonly MAIN_LANGUAGE_NOT_FOUND: "MainLanguageNotFound";
|
|
739
|
-
readonly OTHER: "Other";
|
|
740
|
-
readonly TRAVEL_TIME_EXCEEDS_DRIVER_WORK_HOURS: "TravelTimeExceedsDriverWorkHours";
|
|
741
|
-
};
|
|
742
|
-
export type RouteResponseNoticeCode =
|
|
743
|
-
(typeof RouteResponseNoticeCode)[keyof typeof RouteResponseNoticeCode];
|
|
744
|
-
export declare const RouteNoticeImpact: {
|
|
745
|
-
readonly HIGH: "High";
|
|
746
|
-
readonly LOW: "Low";
|
|
747
|
-
};
|
|
748
|
-
export type RouteNoticeImpact =
|
|
749
|
-
(typeof RouteNoticeImpact)[keyof typeof RouteNoticeImpact];
|
|
750
563
|
export interface RouteResponseNotice {
|
|
751
564
|
Code: RouteResponseNoticeCode | undefined;
|
|
752
565
|
Impact?: RouteNoticeImpact | undefined;
|
|
753
566
|
}
|
|
754
|
-
export declare const RouteFerryAfterTravelStepType: {
|
|
755
|
-
readonly DEBOARD: "Deboard";
|
|
756
|
-
};
|
|
757
|
-
export type RouteFerryAfterTravelStepType =
|
|
758
|
-
(typeof RouteFerryAfterTravelStepType)[keyof typeof RouteFerryAfterTravelStepType];
|
|
759
567
|
export interface RouteFerryAfterTravelStep {
|
|
760
568
|
Duration: number | undefined;
|
|
761
569
|
Instruction?: string | undefined;
|
|
@@ -771,11 +579,6 @@ export interface RouteFerryArrival {
|
|
|
771
579
|
Place: RouteFerryPlace | undefined;
|
|
772
580
|
Time?: string | undefined;
|
|
773
581
|
}
|
|
774
|
-
export declare const RouteFerryBeforeTravelStepType: {
|
|
775
|
-
readonly BOARD: "Board";
|
|
776
|
-
};
|
|
777
|
-
export type RouteFerryBeforeTravelStepType =
|
|
778
|
-
(typeof RouteFerryBeforeTravelStepType)[keyof typeof RouteFerryBeforeTravelStepType];
|
|
779
582
|
export interface RouteFerryBeforeTravelStep {
|
|
780
583
|
Duration: number | undefined;
|
|
781
584
|
Instruction?: string | undefined;
|
|
@@ -785,17 +588,6 @@ export interface RouteFerryDeparture {
|
|
|
785
588
|
Place: RouteFerryPlace | undefined;
|
|
786
589
|
Time?: string | undefined;
|
|
787
590
|
}
|
|
788
|
-
export declare const RouteFerryNoticeCode: {
|
|
789
|
-
readonly ACCURATE_POLYLINE_UNAVAILABLE: "AccuratePolylineUnavailable";
|
|
790
|
-
readonly NO_SCHEDULE: "NoSchedule";
|
|
791
|
-
readonly OTHER: "Other";
|
|
792
|
-
readonly POTENTIAL_VIOLATED_VEHICLE_RESTRICTION_USAGE: "PotentialViolatedVehicleRestrictionUsage";
|
|
793
|
-
readonly SEASONAL_CLOSURE: "SeasonalClosure";
|
|
794
|
-
readonly VIOLATED_AVOID_FERRY: "ViolatedAvoidFerry";
|
|
795
|
-
readonly VIOLATED_AVOID_RAIL_FERRY: "ViolatedAvoidRailFerry";
|
|
796
|
-
};
|
|
797
|
-
export type RouteFerryNoticeCode =
|
|
798
|
-
(typeof RouteFerryNoticeCode)[keyof typeof RouteFerryNoticeCode];
|
|
799
591
|
export interface RouteFerryNotice {
|
|
800
592
|
Code: RouteFerryNoticeCode | undefined;
|
|
801
593
|
Impact?: RouteNoticeImpact | undefined;
|
|
@@ -832,13 +624,6 @@ export interface RouteFerrySummary {
|
|
|
832
624
|
Overview?: RouteFerryOverviewSummary | undefined;
|
|
833
625
|
TravelOnly?: RouteFerryTravelOnlySummary | undefined;
|
|
834
626
|
}
|
|
835
|
-
export declare const RouteFerryTravelStepType: {
|
|
836
|
-
readonly ARRIVE: "Arrive";
|
|
837
|
-
readonly CONTINUE: "Continue";
|
|
838
|
-
readonly DEPART: "Depart";
|
|
839
|
-
};
|
|
840
|
-
export type RouteFerryTravelStepType =
|
|
841
|
-
(typeof RouteFerryTravelStepType)[keyof typeof RouteFerryTravelStepType];
|
|
842
627
|
export interface RouteFerryTravelStep {
|
|
843
628
|
Distance?: number | undefined;
|
|
844
629
|
Duration: number | undefined;
|
|
@@ -862,12 +647,6 @@ export interface RouteLegGeometry {
|
|
|
862
647
|
LineString?: number[][] | undefined;
|
|
863
648
|
Polyline?: string | undefined;
|
|
864
649
|
}
|
|
865
|
-
export declare const RouteSideOfStreet: {
|
|
866
|
-
readonly LEFT: "Left";
|
|
867
|
-
readonly RIGHT: "Right";
|
|
868
|
-
};
|
|
869
|
-
export type RouteSideOfStreet =
|
|
870
|
-
(typeof RouteSideOfStreet)[keyof typeof RouteSideOfStreet];
|
|
871
650
|
export interface RoutePedestrianPlace {
|
|
872
651
|
Name?: string | undefined;
|
|
873
652
|
OriginalPosition?: number[] | undefined;
|
|
@@ -883,15 +662,6 @@ export interface RoutePedestrianDeparture {
|
|
|
883
662
|
Place: RoutePedestrianPlace | undefined;
|
|
884
663
|
Time?: string | undefined;
|
|
885
664
|
}
|
|
886
|
-
export declare const RoutePedestrianNoticeCode: {
|
|
887
|
-
readonly ACCURATE_POLYLINE_UNAVAILABLE: "AccuratePolylineUnavailable";
|
|
888
|
-
readonly OTHER: "Other";
|
|
889
|
-
readonly VIOLATED_AVOID_DIRT_ROAD: "ViolatedAvoidDirtRoad";
|
|
890
|
-
readonly VIOLATED_AVOID_TUNNEL: "ViolatedAvoidTunnel";
|
|
891
|
-
readonly VIOLATED_PEDESTRIAN_OPTION: "ViolatedPedestrianOption";
|
|
892
|
-
};
|
|
893
|
-
export type RoutePedestrianNoticeCode =
|
|
894
|
-
(typeof RoutePedestrianNoticeCode)[keyof typeof RoutePedestrianNoticeCode];
|
|
895
665
|
export interface RoutePedestrianNotice {
|
|
896
666
|
Code: RoutePedestrianNoticeCode | undefined;
|
|
897
667
|
Impact?: RouteNoticeImpact | undefined;
|
|
@@ -901,40 +671,6 @@ export interface RouteSpanDynamicSpeedDetails {
|
|
|
901
671
|
TurnDuration?: number | undefined;
|
|
902
672
|
TypicalSpeed?: number | undefined;
|
|
903
673
|
}
|
|
904
|
-
export declare const RouteSpanPedestrianAccessAttribute: {
|
|
905
|
-
readonly ALLOWED: "Allowed";
|
|
906
|
-
readonly INDOORS: "Indoors";
|
|
907
|
-
readonly NO_THROUGH_TRAFFIC: "NoThroughTraffic";
|
|
908
|
-
readonly PARK: "Park";
|
|
909
|
-
readonly STAIRS: "Stairs";
|
|
910
|
-
readonly TOLL_ROAD: "TollRoad";
|
|
911
|
-
};
|
|
912
|
-
export type RouteSpanPedestrianAccessAttribute =
|
|
913
|
-
(typeof RouteSpanPedestrianAccessAttribute)[keyof typeof RouteSpanPedestrianAccessAttribute];
|
|
914
|
-
export declare const RouteSpanRoadAttribute: {
|
|
915
|
-
readonly BRIDGE: "Bridge";
|
|
916
|
-
readonly BUILT_UP_AREA: "BuiltUpArea";
|
|
917
|
-
readonly CONTROLLED_ACCESS_HIGHWAY: "ControlledAccessHighway";
|
|
918
|
-
readonly DIRT_ROAD: "DirtRoad";
|
|
919
|
-
readonly DIVIDED_ROAD: "DividedRoad";
|
|
920
|
-
readonly MOTORWAY: "Motorway";
|
|
921
|
-
readonly PRIVATE_ROAD: "PrivateRoad";
|
|
922
|
-
readonly RAMP: "Ramp";
|
|
923
|
-
readonly RIGHT_HAND_TRAFFIC: "RightHandTraffic";
|
|
924
|
-
readonly ROUNDABOUT: "Roundabout";
|
|
925
|
-
readonly TUNNEL: "Tunnel";
|
|
926
|
-
readonly UNDER_CONSTRUCTION: "UnderConstruction";
|
|
927
|
-
};
|
|
928
|
-
export type RouteSpanRoadAttribute =
|
|
929
|
-
(typeof RouteSpanRoadAttribute)[keyof typeof RouteSpanRoadAttribute];
|
|
930
|
-
export declare const RouteDirection: {
|
|
931
|
-
readonly EAST: "East";
|
|
932
|
-
readonly NORTH: "North";
|
|
933
|
-
readonly SOUTH: "South";
|
|
934
|
-
readonly WEST: "West";
|
|
935
|
-
};
|
|
936
|
-
export type RouteDirection =
|
|
937
|
-
(typeof RouteDirection)[keyof typeof RouteDirection];
|
|
938
674
|
export interface RouteNumber {
|
|
939
675
|
Direction?: RouteDirection | undefined;
|
|
940
676
|
Language?: string | undefined;
|
|
@@ -975,32 +711,12 @@ export interface RoutePedestrianSummary {
|
|
|
975
711
|
export interface RouteContinueStepDetails {
|
|
976
712
|
Intersection: LocalizedString[] | undefined;
|
|
977
713
|
}
|
|
978
|
-
export declare const RouteRoadType: {
|
|
979
|
-
readonly HIGHWAY: "Highway";
|
|
980
|
-
readonly RURAL: "Rural";
|
|
981
|
-
readonly URBAN: "Urban";
|
|
982
|
-
};
|
|
983
|
-
export type RouteRoadType = (typeof RouteRoadType)[keyof typeof RouteRoadType];
|
|
984
714
|
export interface RouteRoad {
|
|
985
715
|
RoadName: LocalizedString[] | undefined;
|
|
986
716
|
RouteNumber: RouteNumber[] | undefined;
|
|
987
717
|
Towards: LocalizedString[] | undefined;
|
|
988
718
|
Type?: RouteRoadType | undefined;
|
|
989
719
|
}
|
|
990
|
-
export declare const RouteSteeringDirection: {
|
|
991
|
-
readonly LEFT: "Left";
|
|
992
|
-
readonly RIGHT: "Right";
|
|
993
|
-
readonly STRAIGHT: "Straight";
|
|
994
|
-
};
|
|
995
|
-
export type RouteSteeringDirection =
|
|
996
|
-
(typeof RouteSteeringDirection)[keyof typeof RouteSteeringDirection];
|
|
997
|
-
export declare const RouteTurnIntensity: {
|
|
998
|
-
readonly SHARP: "Sharp";
|
|
999
|
-
readonly SLIGHT: "Slight";
|
|
1000
|
-
readonly TYPICAL: "Typical";
|
|
1001
|
-
};
|
|
1002
|
-
export type RouteTurnIntensity =
|
|
1003
|
-
(typeof RouteTurnIntensity)[keyof typeof RouteTurnIntensity];
|
|
1004
720
|
export interface RouteKeepStepDetails {
|
|
1005
721
|
Intersection: LocalizedString[] | undefined;
|
|
1006
722
|
SteeringDirection?: RouteSteeringDirection | undefined;
|
|
@@ -1038,21 +754,6 @@ export interface RouteTurnStepDetails {
|
|
|
1038
754
|
TurnAngle?: number | undefined;
|
|
1039
755
|
TurnIntensity?: RouteTurnIntensity | undefined;
|
|
1040
756
|
}
|
|
1041
|
-
export declare const RoutePedestrianTravelStepType: {
|
|
1042
|
-
readonly ARRIVE: "Arrive";
|
|
1043
|
-
readonly CONTINUE: "Continue";
|
|
1044
|
-
readonly DEPART: "Depart";
|
|
1045
|
-
readonly EXIT: "Exit";
|
|
1046
|
-
readonly KEEP: "Keep";
|
|
1047
|
-
readonly RAMP: "Ramp";
|
|
1048
|
-
readonly ROUNDABOUT_ENTER: "RoundaboutEnter";
|
|
1049
|
-
readonly ROUNDABOUT_EXIT: "RoundaboutExit";
|
|
1050
|
-
readonly ROUNDABOUT_PASS: "RoundaboutPass";
|
|
1051
|
-
readonly TURN: "Turn";
|
|
1052
|
-
readonly U_TURN: "UTurn";
|
|
1053
|
-
};
|
|
1054
|
-
export type RoutePedestrianTravelStepType =
|
|
1055
|
-
(typeof RoutePedestrianTravelStepType)[keyof typeof RoutePedestrianTravelStepType];
|
|
1056
757
|
export interface RoutePedestrianTravelStep {
|
|
1057
758
|
ContinueStepDetails?: RouteContinueStepDetails | undefined;
|
|
1058
759
|
CurrentRoad?: RouteRoad | undefined;
|
|
@@ -1079,22 +780,6 @@ export interface RoutePedestrianLegDetails {
|
|
|
1079
780
|
Summary?: RoutePedestrianSummary | undefined;
|
|
1080
781
|
TravelSteps: RoutePedestrianTravelStep[] | undefined;
|
|
1081
782
|
}
|
|
1082
|
-
export declare const RouteLegTravelMode: {
|
|
1083
|
-
readonly CAR: "Car";
|
|
1084
|
-
readonly CAR_SHUTTLE_TRAIN: "CarShuttleTrain";
|
|
1085
|
-
readonly FERRY: "Ferry";
|
|
1086
|
-
readonly PEDESTRIAN: "Pedestrian";
|
|
1087
|
-
readonly SCOOTER: "Scooter";
|
|
1088
|
-
readonly TRUCK: "Truck";
|
|
1089
|
-
};
|
|
1090
|
-
export type RouteLegTravelMode =
|
|
1091
|
-
(typeof RouteLegTravelMode)[keyof typeof RouteLegTravelMode];
|
|
1092
|
-
export declare const RouteLegType: {
|
|
1093
|
-
readonly FERRY: "Ferry";
|
|
1094
|
-
readonly PEDESTRIAN: "Pedestrian";
|
|
1095
|
-
readonly VEHICLE: "Vehicle";
|
|
1096
|
-
};
|
|
1097
|
-
export type RouteLegType = (typeof RouteLegType)[keyof typeof RouteLegType];
|
|
1098
783
|
export interface RouteVehiclePlace {
|
|
1099
784
|
Name?: string | undefined;
|
|
1100
785
|
OriginalPosition?: number[] | undefined;
|
|
@@ -1110,29 +795,6 @@ export interface RouteVehicleDeparture {
|
|
|
1110
795
|
Place: RouteVehiclePlace | undefined;
|
|
1111
796
|
Time?: string | undefined;
|
|
1112
797
|
}
|
|
1113
|
-
export declare const RouteVehicleIncidentSeverity: {
|
|
1114
|
-
readonly CRITICAL: "Critical";
|
|
1115
|
-
readonly HIGH: "High";
|
|
1116
|
-
readonly LOW: "Low";
|
|
1117
|
-
readonly MEDIUM: "Medium";
|
|
1118
|
-
};
|
|
1119
|
-
export type RouteVehicleIncidentSeverity =
|
|
1120
|
-
(typeof RouteVehicleIncidentSeverity)[keyof typeof RouteVehicleIncidentSeverity];
|
|
1121
|
-
export declare const RouteVehicleIncidentType: {
|
|
1122
|
-
readonly ACCIDENT: "Accident";
|
|
1123
|
-
readonly CONGESTION: "Congestion";
|
|
1124
|
-
readonly CONSTRUCTION: "Construction";
|
|
1125
|
-
readonly DISABLED_VEHICLE: "DisabledVehicle";
|
|
1126
|
-
readonly LANE_RESTRICTION: "LaneRestriction";
|
|
1127
|
-
readonly MASS_TRANSIT: "MassTransit";
|
|
1128
|
-
readonly OTHER: "Other";
|
|
1129
|
-
readonly PLANNED_EVENT: "PlannedEvent";
|
|
1130
|
-
readonly ROAD_CLOSURE: "RoadClosure";
|
|
1131
|
-
readonly ROAD_HAZARD: "RoadHazard";
|
|
1132
|
-
readonly WEATHER: "Weather";
|
|
1133
|
-
};
|
|
1134
|
-
export type RouteVehicleIncidentType =
|
|
1135
|
-
(typeof RouteVehicleIncidentType)[keyof typeof RouteVehicleIncidentType];
|
|
1136
798
|
export interface RouteVehicleIncident {
|
|
1137
799
|
Description?: string | undefined;
|
|
1138
800
|
EndTime?: string | undefined;
|
|
@@ -1140,48 +802,10 @@ export interface RouteVehicleIncident {
|
|
|
1140
802
|
StartTime?: string | undefined;
|
|
1141
803
|
Type?: RouteVehicleIncidentType | undefined;
|
|
1142
804
|
}
|
|
1143
|
-
export declare const RouteVehicleNoticeCode: {
|
|
1144
|
-
readonly ACCURATE_POLYLINE_UNAVAILABLE: "AccuratePolylineUnavailable";
|
|
1145
|
-
readonly OTHER: "Other";
|
|
1146
|
-
readonly POTENTIAL_VIOLATED_AVOID_TOLL_ROAD_USAGE: "PotentialViolatedAvoidTollRoadUsage";
|
|
1147
|
-
readonly POTENTIAL_VIOLATED_CARPOOL_USAGE: "PotentialViolatedCarpoolUsage";
|
|
1148
|
-
readonly POTENTIAL_VIOLATED_TURN_RESTRICTION_USAGE: "PotentialViolatedTurnRestrictionUsage";
|
|
1149
|
-
readonly POTENTIAL_VIOLATED_VEHICLE_RESTRICTION_USAGE: "PotentialViolatedVehicleRestrictionUsage";
|
|
1150
|
-
readonly POTENTIAL_VIOLATED_ZONE_RESTRICTION_USAGE: "PotentialViolatedZoneRestrictionUsage";
|
|
1151
|
-
readonly SEASONAL_CLOSURE: "SeasonalClosure";
|
|
1152
|
-
readonly TOLLS_DATA_TEMPORARILY_UNAVAILABLE: "TollsDataTemporarilyUnavailable";
|
|
1153
|
-
readonly TOLLS_DATA_UNAVAILABLE: "TollsDataUnavailable";
|
|
1154
|
-
readonly TOLL_TRANSPONDER: "TollTransponder";
|
|
1155
|
-
readonly VIOLATED_AVOID_CONTROLLED_ACCESS_HIGHWAY: "ViolatedAvoidControlledAccessHighway";
|
|
1156
|
-
readonly VIOLATED_AVOID_DIFFICULT_TURNS: "ViolatedAvoidDifficultTurns";
|
|
1157
|
-
readonly VIOLATED_AVOID_DIRT_ROAD: "ViolatedAvoidDirtRoad";
|
|
1158
|
-
readonly VIOLATED_AVOID_SEASONAL_CLOSURE: "ViolatedAvoidSeasonalClosure";
|
|
1159
|
-
readonly VIOLATED_AVOID_TOLL_ROAD: "ViolatedAvoidTollRoad";
|
|
1160
|
-
readonly VIOLATED_AVOID_TOLL_TRANSPONDER: "ViolatedAvoidTollTransponder";
|
|
1161
|
-
readonly VIOLATED_AVOID_TRUCK_ROAD_TYPE: "ViolatedAvoidTruckRoadType";
|
|
1162
|
-
readonly VIOLATED_AVOID_TUNNEL: "ViolatedAvoidTunnel";
|
|
1163
|
-
readonly VIOLATED_AVOID_U_TURNS: "ViolatedAvoidUTurns";
|
|
1164
|
-
readonly VIOLATED_BLOCKED_ROAD: "ViolatedBlockedRoad";
|
|
1165
|
-
readonly VIOLATED_CARPOOL: "ViolatedCarpool";
|
|
1166
|
-
readonly VIOLATED_EMERGENCY_GATE: "ViolatedEmergencyGate";
|
|
1167
|
-
readonly VIOLATED_START_DIRECTION: "ViolatedStartDirection";
|
|
1168
|
-
readonly VIOLATED_TURN_RESTRICTION: "ViolatedTurnRestriction";
|
|
1169
|
-
readonly VIOLATED_VEHICLE_RESTRICTION: "ViolatedVehicleRestriction";
|
|
1170
|
-
readonly VIOLATED_ZONE_RESTRICTION: "ViolatedZoneRestriction";
|
|
1171
|
-
};
|
|
1172
|
-
export type RouteVehicleNoticeCode =
|
|
1173
|
-
(typeof RouteVehicleNoticeCode)[keyof typeof RouteVehicleNoticeCode];
|
|
1174
805
|
export interface RouteNoticeDetailRange {
|
|
1175
806
|
Min?: number | undefined;
|
|
1176
807
|
Max?: number | undefined;
|
|
1177
808
|
}
|
|
1178
|
-
export declare const RouteWeightConstraintType: {
|
|
1179
|
-
readonly CURRENT: "Current";
|
|
1180
|
-
readonly GROSS: "Gross";
|
|
1181
|
-
readonly UNKNOWN: "Unknown";
|
|
1182
|
-
};
|
|
1183
|
-
export type RouteWeightConstraintType =
|
|
1184
|
-
(typeof RouteWeightConstraintType)[keyof typeof RouteWeightConstraintType];
|
|
1185
809
|
export interface RouteWeightConstraint {
|
|
1186
810
|
Type: RouteWeightConstraintType | undefined;
|
|
1187
811
|
Value: number | undefined;
|
|
@@ -1216,40 +840,6 @@ export interface RouteVehicleNotice {
|
|
|
1216
840
|
Details: RouteVehicleNoticeDetail[] | undefined;
|
|
1217
841
|
Impact?: RouteNoticeImpact | undefined;
|
|
1218
842
|
}
|
|
1219
|
-
export declare const RouteSpanCarAccessAttribute: {
|
|
1220
|
-
readonly ALLOWED: "Allowed";
|
|
1221
|
-
readonly NO_THROUGH_TRAFFIC: "NoThroughTraffic";
|
|
1222
|
-
readonly TOLL_ROAD: "TollRoad";
|
|
1223
|
-
};
|
|
1224
|
-
export type RouteSpanCarAccessAttribute =
|
|
1225
|
-
(typeof RouteSpanCarAccessAttribute)[keyof typeof RouteSpanCarAccessAttribute];
|
|
1226
|
-
export declare const RouteSpanGateAttribute: {
|
|
1227
|
-
readonly EMERGENCY: "Emergency";
|
|
1228
|
-
readonly KEY_ACCESS: "KeyAccess";
|
|
1229
|
-
readonly PERMISSION_REQUIRED: "PermissionRequired";
|
|
1230
|
-
};
|
|
1231
|
-
export type RouteSpanGateAttribute =
|
|
1232
|
-
(typeof RouteSpanGateAttribute)[keyof typeof RouteSpanGateAttribute];
|
|
1233
|
-
export declare const RouteSpanRailwayCrossingAttribute: {
|
|
1234
|
-
readonly PROTECTED: "Protected";
|
|
1235
|
-
readonly UNPROTECTED: "Unprotected";
|
|
1236
|
-
};
|
|
1237
|
-
export type RouteSpanRailwayCrossingAttribute =
|
|
1238
|
-
(typeof RouteSpanRailwayCrossingAttribute)[keyof typeof RouteSpanRailwayCrossingAttribute];
|
|
1239
|
-
export declare const RouteSpanScooterAccessAttribute: {
|
|
1240
|
-
readonly ALLOWED: "Allowed";
|
|
1241
|
-
readonly NO_THROUGH_TRAFFIC: "NoThroughTraffic";
|
|
1242
|
-
readonly TOLL_ROAD: "TollRoad";
|
|
1243
|
-
};
|
|
1244
|
-
export type RouteSpanScooterAccessAttribute =
|
|
1245
|
-
(typeof RouteSpanScooterAccessAttribute)[keyof typeof RouteSpanScooterAccessAttribute];
|
|
1246
|
-
export declare const RouteSpanTruckAccessAttribute: {
|
|
1247
|
-
readonly ALLOWED: "Allowed";
|
|
1248
|
-
readonly NO_THROUGH_TRAFFIC: "NoThroughTraffic";
|
|
1249
|
-
readonly TOLL_ROAD: "TollRoad";
|
|
1250
|
-
};
|
|
1251
|
-
export type RouteSpanTruckAccessAttribute =
|
|
1252
|
-
(typeof RouteSpanTruckAccessAttribute)[keyof typeof RouteSpanTruckAccessAttribute];
|
|
1253
843
|
export interface RouteVehicleSpan {
|
|
1254
844
|
BestCaseDuration?: number | undefined;
|
|
1255
845
|
CarAccess?: RouteSpanCarAccessAttribute[] | undefined;
|
|
@@ -1306,15 +896,6 @@ export interface RouteTollPrice {
|
|
|
1306
896
|
RangeValue?: RouteTollPriceValueRange | undefined;
|
|
1307
897
|
Value: number | undefined;
|
|
1308
898
|
}
|
|
1309
|
-
export declare const RouteTollPassValidityPeriodType: {
|
|
1310
|
-
readonly ANNUAL: "Annual";
|
|
1311
|
-
readonly DAYS: "Days";
|
|
1312
|
-
readonly EXTENDED_ANNUAL: "ExtendedAnnual";
|
|
1313
|
-
readonly MINUTES: "Minutes";
|
|
1314
|
-
readonly MONTHS: "Months";
|
|
1315
|
-
};
|
|
1316
|
-
export type RouteTollPassValidityPeriodType =
|
|
1317
|
-
(typeof RouteTollPassValidityPeriodType)[keyof typeof RouteTollPassValidityPeriodType];
|
|
1318
899
|
export interface RouteTollPassValidityPeriod {
|
|
1319
900
|
Period: RouteTollPassValidityPeriodType | undefined;
|
|
1320
901
|
PeriodCount?: number | undefined;
|
|
@@ -1326,18 +907,6 @@ export interface RouteTollPass {
|
|
|
1326
907
|
TripCount?: number | undefined;
|
|
1327
908
|
ValidityPeriod?: RouteTollPassValidityPeriod | undefined;
|
|
1328
909
|
}
|
|
1329
|
-
export declare const RouteTollPaymentMethod: {
|
|
1330
|
-
readonly BANK_CARD: "BankCard";
|
|
1331
|
-
readonly CASH: "Cash";
|
|
1332
|
-
readonly CASH_EXACT: "CashExact";
|
|
1333
|
-
readonly CREDIT_CARD: "CreditCard";
|
|
1334
|
-
readonly PASS_SUBSCRIPTION: "PassSubscription";
|
|
1335
|
-
readonly TRANSPONDER: "Transponder";
|
|
1336
|
-
readonly TRAVEL_CARD: "TravelCard";
|
|
1337
|
-
readonly VIDEO_TOLL: "VideoToll";
|
|
1338
|
-
};
|
|
1339
|
-
export type RouteTollPaymentMethod =
|
|
1340
|
-
(typeof RouteTollPaymentMethod)[keyof typeof RouteTollPaymentMethod];
|
|
1341
910
|
export interface RouteTransponder {
|
|
1342
911
|
SystemName?: string | undefined;
|
|
1343
912
|
}
|
|
@@ -1385,23 +954,6 @@ export interface RouteRampStepDetails {
|
|
|
1385
954
|
TurnAngle?: number | undefined;
|
|
1386
955
|
TurnIntensity?: RouteTurnIntensity | undefined;
|
|
1387
956
|
}
|
|
1388
|
-
export declare const RouteVehicleTravelStepType: {
|
|
1389
|
-
readonly ARRIVE: "Arrive";
|
|
1390
|
-
readonly CONTINUE: "Continue";
|
|
1391
|
-
readonly CONTINUE_HIGHWAY: "ContinueHighway";
|
|
1392
|
-
readonly DEPART: "Depart";
|
|
1393
|
-
readonly ENTER_HIGHWAY: "EnterHighway";
|
|
1394
|
-
readonly EXIT: "Exit";
|
|
1395
|
-
readonly KEEP: "Keep";
|
|
1396
|
-
readonly RAMP: "Ramp";
|
|
1397
|
-
readonly ROUNDABOUT_ENTER: "RoundaboutEnter";
|
|
1398
|
-
readonly ROUNDABOUT_EXIT: "RoundaboutExit";
|
|
1399
|
-
readonly ROUNDABOUT_PASS: "RoundaboutPass";
|
|
1400
|
-
readonly TURN: "Turn";
|
|
1401
|
-
readonly U_TURN: "UTurn";
|
|
1402
|
-
};
|
|
1403
|
-
export type RouteVehicleTravelStepType =
|
|
1404
|
-
(typeof RouteVehicleTravelStepType)[keyof typeof RouteVehicleTravelStepType];
|
|
1405
957
|
export interface RouteUTurnStepDetails {
|
|
1406
958
|
Intersection: LocalizedString[] | undefined;
|
|
1407
959
|
SteeringDirection?: RouteSteeringDirection | undefined;
|
|
@@ -1487,16 +1039,6 @@ export interface CalculateRoutesResponse {
|
|
|
1487
1039
|
PricingBucket: string | undefined;
|
|
1488
1040
|
Routes: Route[] | undefined;
|
|
1489
1041
|
}
|
|
1490
|
-
export declare const DayOfWeek: {
|
|
1491
|
-
readonly FRIDAY: "Friday";
|
|
1492
|
-
readonly MONDAY: "Monday";
|
|
1493
|
-
readonly SATURDAY: "Saturday";
|
|
1494
|
-
readonly SUNDAY: "Sunday";
|
|
1495
|
-
readonly THURSDAY: "Thursday";
|
|
1496
|
-
readonly TUESDAY: "Tuesday";
|
|
1497
|
-
readonly WEDNESDAY: "Wednesday";
|
|
1498
|
-
};
|
|
1499
|
-
export type DayOfWeek = (typeof DayOfWeek)[keyof typeof DayOfWeek];
|
|
1500
1042
|
export interface WaypointOptimizationAvoidanceAreaGeometry {
|
|
1501
1043
|
BoundingBox?: number[] | undefined;
|
|
1502
1044
|
}
|
|
@@ -1513,12 +1055,6 @@ export interface WaypointOptimizationAvoidanceOptions {
|
|
|
1513
1055
|
Tunnels?: boolean | undefined;
|
|
1514
1056
|
UTurns?: boolean | undefined;
|
|
1515
1057
|
}
|
|
1516
|
-
export declare const WaypointOptimizationClusteringAlgorithm: {
|
|
1517
|
-
readonly DRIVING_DISTANCE: "DrivingDistance";
|
|
1518
|
-
readonly TOPOLOGY_SEGMENT: "TopologySegment";
|
|
1519
|
-
};
|
|
1520
|
-
export type WaypointOptimizationClusteringAlgorithm =
|
|
1521
|
-
(typeof WaypointOptimizationClusteringAlgorithm)[keyof typeof WaypointOptimizationClusteringAlgorithm];
|
|
1522
1058
|
export interface WaypointOptimizationDrivingDistanceOptions {
|
|
1523
1059
|
DrivingDistance: number | undefined;
|
|
1524
1060
|
}
|
|
@@ -1559,12 +1095,6 @@ export interface WaypointOptimizationRestCycles {
|
|
|
1559
1095
|
export interface WaypointOptimizationRestProfile {
|
|
1560
1096
|
Profile: string | undefined;
|
|
1561
1097
|
}
|
|
1562
|
-
export declare const WaypointOptimizationServiceTimeTreatment: {
|
|
1563
|
-
readonly REST: "Rest";
|
|
1564
|
-
readonly WORK: "Work";
|
|
1565
|
-
};
|
|
1566
|
-
export type WaypointOptimizationServiceTimeTreatment =
|
|
1567
|
-
(typeof WaypointOptimizationServiceTimeTreatment)[keyof typeof WaypointOptimizationServiceTimeTreatment];
|
|
1568
1098
|
export interface WaypointOptimizationDriverOptions {
|
|
1569
1099
|
RestCycles?: WaypointOptimizationRestCycles | undefined;
|
|
1570
1100
|
RestProfile?: WaypointOptimizationRestProfile | undefined;
|
|
@@ -1573,53 +1103,18 @@ export interface WaypointOptimizationDriverOptions {
|
|
|
1573
1103
|
export interface WaypointOptimizationExclusionOptions {
|
|
1574
1104
|
Countries: string[] | undefined;
|
|
1575
1105
|
}
|
|
1576
|
-
export declare const WaypointOptimizationSequencingObjective: {
|
|
1577
|
-
readonly FASTEST_ROUTE: "FastestRoute";
|
|
1578
|
-
readonly SHORTEST_ROUTE: "ShortestRoute";
|
|
1579
|
-
};
|
|
1580
|
-
export type WaypointOptimizationSequencingObjective =
|
|
1581
|
-
(typeof WaypointOptimizationSequencingObjective)[keyof typeof WaypointOptimizationSequencingObjective];
|
|
1582
1106
|
export interface WaypointOptimizationOriginOptions {
|
|
1583
1107
|
Id?: string | undefined;
|
|
1584
1108
|
}
|
|
1585
1109
|
export interface WaypointOptimizationTrafficOptions {
|
|
1586
1110
|
Usage?: TrafficUsage | undefined;
|
|
1587
1111
|
}
|
|
1588
|
-
export declare const WaypointOptimizationTravelMode: {
|
|
1589
|
-
readonly CAR: "Car";
|
|
1590
|
-
readonly PEDESTRIAN: "Pedestrian";
|
|
1591
|
-
readonly SCOOTER: "Scooter";
|
|
1592
|
-
readonly TRUCK: "Truck";
|
|
1593
|
-
};
|
|
1594
|
-
export type WaypointOptimizationTravelMode =
|
|
1595
|
-
(typeof WaypointOptimizationTravelMode)[keyof typeof WaypointOptimizationTravelMode];
|
|
1596
1112
|
export interface WaypointOptimizationPedestrianOptions {
|
|
1597
1113
|
Speed?: number | undefined;
|
|
1598
1114
|
}
|
|
1599
|
-
export declare const WaypointOptimizationHazardousCargoType: {
|
|
1600
|
-
readonly COMBUSTIBLE: "Combustible";
|
|
1601
|
-
readonly CORROSIVE: "Corrosive";
|
|
1602
|
-
readonly EXPLOSIVE: "Explosive";
|
|
1603
|
-
readonly FLAMMABLE: "Flammable";
|
|
1604
|
-
readonly GAS: "Gas";
|
|
1605
|
-
readonly HARMFUL_TO_WATER: "HarmfulToWater";
|
|
1606
|
-
readonly ORGANIC: "Organic";
|
|
1607
|
-
readonly OTHER: "Other";
|
|
1608
|
-
readonly POISON: "Poison";
|
|
1609
|
-
readonly POISONOUS_INHALATION: "PoisonousInhalation";
|
|
1610
|
-
readonly RADIOACTIVE: "Radioactive";
|
|
1611
|
-
};
|
|
1612
|
-
export type WaypointOptimizationHazardousCargoType =
|
|
1613
|
-
(typeof WaypointOptimizationHazardousCargoType)[keyof typeof WaypointOptimizationHazardousCargoType];
|
|
1614
1115
|
export interface WaypointOptimizationTrailerOptions {
|
|
1615
1116
|
TrailerCount?: number | undefined;
|
|
1616
1117
|
}
|
|
1617
|
-
export declare const WaypointOptimizationTruckType: {
|
|
1618
|
-
readonly STRAIGHT_TRUCK: "StraightTruck";
|
|
1619
|
-
readonly TRACTOR: "Tractor";
|
|
1620
|
-
};
|
|
1621
|
-
export type WaypointOptimizationTruckType =
|
|
1622
|
-
(typeof WaypointOptimizationTruckType)[keyof typeof WaypointOptimizationTruckType];
|
|
1623
1118
|
export interface WaypointOptimizationTruckOptions {
|
|
1624
1119
|
GrossWeight?: number | undefined;
|
|
1625
1120
|
HazardousCargos?: WaypointOptimizationHazardousCargoType[] | undefined;
|
|
@@ -1670,16 +1165,6 @@ export interface WaypointOptimizationConnection {
|
|
|
1670
1165
|
TravelDuration: number | undefined;
|
|
1671
1166
|
WaitDuration: number | undefined;
|
|
1672
1167
|
}
|
|
1673
|
-
export declare const WaypointOptimizationConstraint: {
|
|
1674
|
-
readonly ACCESS_HOURS: "AccessHours";
|
|
1675
|
-
readonly APPOINTMENT_TIME: "AppointmentTime";
|
|
1676
|
-
readonly BEFORE: "Before";
|
|
1677
|
-
readonly HEADING: "Heading";
|
|
1678
|
-
readonly SERVICE_DURATION: "ServiceDuration";
|
|
1679
|
-
readonly SIDE_OF_STREET: "SideOfStreet";
|
|
1680
|
-
};
|
|
1681
|
-
export type WaypointOptimizationConstraint =
|
|
1682
|
-
(typeof WaypointOptimizationConstraint)[keyof typeof WaypointOptimizationConstraint];
|
|
1683
1168
|
export interface WaypointOptimizationFailedConstraint {
|
|
1684
1169
|
Constraint?: WaypointOptimizationConstraint | undefined;
|
|
1685
1170
|
Reason?: string | undefined;
|
|
@@ -1717,29 +1202,6 @@ export interface RoadSnapTracePoint {
|
|
|
1717
1202
|
Speed?: number | undefined;
|
|
1718
1203
|
Timestamp?: string | undefined;
|
|
1719
1204
|
}
|
|
1720
|
-
export declare const RoadSnapTravelMode: {
|
|
1721
|
-
readonly CAR: "Car";
|
|
1722
|
-
readonly PEDESTRIAN: "Pedestrian";
|
|
1723
|
-
readonly SCOOTER: "Scooter";
|
|
1724
|
-
readonly TRUCK: "Truck";
|
|
1725
|
-
};
|
|
1726
|
-
export type RoadSnapTravelMode =
|
|
1727
|
-
(typeof RoadSnapTravelMode)[keyof typeof RoadSnapTravelMode];
|
|
1728
|
-
export declare const RoadSnapHazardousCargoType: {
|
|
1729
|
-
readonly COMBUSTIBLE: "Combustible";
|
|
1730
|
-
readonly CORROSIVE: "Corrosive";
|
|
1731
|
-
readonly EXPLOSIVE: "Explosive";
|
|
1732
|
-
readonly FLAMMABLE: "Flammable";
|
|
1733
|
-
readonly GAS: "Gas";
|
|
1734
|
-
readonly HARMFUL_TO_WATER: "HarmfulToWater";
|
|
1735
|
-
readonly ORGANIC: "Organic";
|
|
1736
|
-
readonly OTHER: "Other";
|
|
1737
|
-
readonly POISON: "Poison";
|
|
1738
|
-
readonly POISONOUS_INHALATION: "PoisonousInhalation";
|
|
1739
|
-
readonly RADIOACTIVE: "Radioactive";
|
|
1740
|
-
};
|
|
1741
|
-
export type RoadSnapHazardousCargoType =
|
|
1742
|
-
(typeof RoadSnapHazardousCargoType)[keyof typeof RoadSnapHazardousCargoType];
|
|
1743
1205
|
export interface RoadSnapTrailerOptions {
|
|
1744
1206
|
TrailerCount?: number | undefined;
|
|
1745
1207
|
}
|
|
@@ -1763,17 +1225,6 @@ export interface SnapToRoadsRequest {
|
|
|
1763
1225
|
TravelMode?: RoadSnapTravelMode | undefined;
|
|
1764
1226
|
TravelModeOptions?: RoadSnapTravelModeOptions | undefined;
|
|
1765
1227
|
}
|
|
1766
|
-
export declare const RoadSnapNoticeCode: {
|
|
1767
|
-
readonly TRACE_POINTS_HEADING_IGNORED: "TracePointsHeadingIgnored";
|
|
1768
|
-
readonly TRACE_POINTS_IGNORED: "TracePointsIgnored";
|
|
1769
|
-
readonly TRACE_POINTS_MOVED_BY_LARGE_DISTANCE: "TracePointsMovedByLargeDistance";
|
|
1770
|
-
readonly TRACE_POINTS_NOT_MATCHED: "TracePointsNotMatched";
|
|
1771
|
-
readonly TRACE_POINTS_OUT_OF_SEQUENCE: "TracePointsOutOfSequence";
|
|
1772
|
-
readonly TRACE_POINTS_SPEED_ESTIMATED: "TracePointsSpeedEstimated";
|
|
1773
|
-
readonly TRACE_POINTS_SPEED_IGNORED: "TracePointsSpeedIgnored";
|
|
1774
|
-
};
|
|
1775
|
-
export type RoadSnapNoticeCode =
|
|
1776
|
-
(typeof RoadSnapNoticeCode)[keyof typeof RoadSnapNoticeCode];
|
|
1777
1228
|
export interface RoadSnapNotice {
|
|
1778
1229
|
Code: RoadSnapNoticeCode | undefined;
|
|
1779
1230
|
Title: string | undefined;
|