@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.
@@ -0,0 +1,1045 @@
1
+ /**
2
+ * @public
3
+ * @enum
4
+ */
5
+ export declare const IsolineZoneCategory: {
6
+ readonly CONGESTION_PRICING: "CongestionPricing";
7
+ readonly ENVIRONMENTAL: "Environmental";
8
+ readonly VIGNETTE: "Vignette";
9
+ };
10
+ /**
11
+ * @public
12
+ */
13
+ export type IsolineZoneCategory = (typeof IsolineZoneCategory)[keyof typeof IsolineZoneCategory];
14
+ /**
15
+ * @public
16
+ * @enum
17
+ */
18
+ export declare const MatchingStrategy: {
19
+ readonly MATCH_ANY: "MatchAny";
20
+ readonly MATCH_MOST_SIGNIFICANT_ROAD: "MatchMostSignificantRoad";
21
+ };
22
+ /**
23
+ * @public
24
+ */
25
+ export type MatchingStrategy = (typeof MatchingStrategy)[keyof typeof MatchingStrategy];
26
+ /**
27
+ * @public
28
+ * @enum
29
+ */
30
+ export declare const SideOfStreetMatchingStrategy: {
31
+ readonly ANY_STREET: "AnyStreet";
32
+ readonly DIVIDED_STREET_ONLY: "DividedStreetOnly";
33
+ };
34
+ /**
35
+ * @public
36
+ */
37
+ export type SideOfStreetMatchingStrategy = (typeof SideOfStreetMatchingStrategy)[keyof typeof SideOfStreetMatchingStrategy];
38
+ /**
39
+ * @public
40
+ * @enum
41
+ */
42
+ export declare const GeometryFormat: {
43
+ readonly FLEXIBLE_POLYLINE: "FlexiblePolyline";
44
+ readonly SIMPLE: "Simple";
45
+ };
46
+ /**
47
+ * @public
48
+ */
49
+ export type GeometryFormat = (typeof GeometryFormat)[keyof typeof GeometryFormat];
50
+ /**
51
+ * @public
52
+ * @enum
53
+ */
54
+ export declare const IsolineOptimizationObjective: {
55
+ readonly ACCURATE_CALCULATION: "AccurateCalculation";
56
+ readonly BALANCED_CALCULATION: "BalancedCalculation";
57
+ readonly FAST_CALCULATION: "FastCalculation";
58
+ };
59
+ /**
60
+ * @public
61
+ */
62
+ export type IsolineOptimizationObjective = (typeof IsolineOptimizationObjective)[keyof typeof IsolineOptimizationObjective];
63
+ /**
64
+ * @public
65
+ * @enum
66
+ */
67
+ export declare const RoutingObjective: {
68
+ readonly FASTEST_ROUTE: "FastestRoute";
69
+ readonly SHORTEST_ROUTE: "ShortestRoute";
70
+ };
71
+ /**
72
+ * @public
73
+ */
74
+ export type RoutingObjective = (typeof RoutingObjective)[keyof typeof RoutingObjective];
75
+ /**
76
+ * @public
77
+ * @enum
78
+ */
79
+ export declare const TrafficUsage: {
80
+ readonly IGNORE_TRAFFIC_DATA: "IgnoreTrafficData";
81
+ readonly USE_TRAFFIC_DATA: "UseTrafficData";
82
+ };
83
+ /**
84
+ * @public
85
+ */
86
+ export type TrafficUsage = (typeof TrafficUsage)[keyof typeof TrafficUsage];
87
+ /**
88
+ * @public
89
+ * @enum
90
+ */
91
+ export declare const IsolineTravelMode: {
92
+ readonly CAR: "Car";
93
+ readonly PEDESTRIAN: "Pedestrian";
94
+ readonly SCOOTER: "Scooter";
95
+ readonly TRUCK: "Truck";
96
+ };
97
+ /**
98
+ * @public
99
+ */
100
+ export type IsolineTravelMode = (typeof IsolineTravelMode)[keyof typeof IsolineTravelMode];
101
+ /**
102
+ * @public
103
+ * @enum
104
+ */
105
+ export declare const IsolineEngineType: {
106
+ readonly ELECTRIC: "Electric";
107
+ readonly INTERNAL_COMBUSTION: "InternalCombustion";
108
+ readonly PLUGIN_HYBRID: "PluginHybrid";
109
+ };
110
+ /**
111
+ * @public
112
+ */
113
+ export type IsolineEngineType = (typeof IsolineEngineType)[keyof typeof IsolineEngineType];
114
+ /**
115
+ * @public
116
+ * @enum
117
+ */
118
+ export declare const IsolineHazardousCargoType: {
119
+ readonly COMBUSTIBLE: "Combustible";
120
+ readonly CORROSIVE: "Corrosive";
121
+ readonly EXPLOSIVE: "Explosive";
122
+ readonly FLAMMABLE: "Flammable";
123
+ readonly GAS: "Gas";
124
+ readonly HARMFUL_TO_WATER: "HarmfulToWater";
125
+ readonly ORGANIC: "Organic";
126
+ readonly OTHER: "Other";
127
+ readonly POISON: "Poison";
128
+ readonly POISONOUS_INHALATION: "PoisonousInhalation";
129
+ readonly RADIOACTIVE: "Radioactive";
130
+ };
131
+ /**
132
+ * @public
133
+ */
134
+ export type IsolineHazardousCargoType = (typeof IsolineHazardousCargoType)[keyof typeof IsolineHazardousCargoType];
135
+ /**
136
+ * @public
137
+ * @enum
138
+ */
139
+ export declare const IsolineTruckType: {
140
+ readonly LIGHT_TRUCK: "LightTruck";
141
+ readonly STRAIGHT_TRUCK: "StraightTruck";
142
+ readonly TRACTOR: "Tractor";
143
+ };
144
+ /**
145
+ * @public
146
+ */
147
+ export type IsolineTruckType = (typeof IsolineTruckType)[keyof typeof IsolineTruckType];
148
+ /**
149
+ * @public
150
+ * @enum
151
+ */
152
+ export declare const ValidationExceptionReason: {
153
+ /**
154
+ * The input cannot be parsed. For example a required JSON document, ARN identifier,
155
+ * date value, or numeric field cannot be parsed.
156
+ *
157
+ */
158
+ readonly CANNOT_PARSE: "CannotParse";
159
+ /**
160
+ * The input is present and parsable, but it is otherwise invalid. For example, a
161
+ * required numeric argument is outside the allowed range.
162
+ *
163
+ */
164
+ readonly FIELD_VALIDATION_FAILED: "FieldValidationFailed";
165
+ /**
166
+ * The required input is missing.
167
+ */
168
+ readonly MISSING: "Missing";
169
+ /**
170
+ * The input is invalid but no more specific reason is applicable.
171
+ */
172
+ readonly OTHER: "Other";
173
+ /**
174
+ * No such field is supported.
175
+ */
176
+ readonly UNKNOWN_FIELD: "UnknownField";
177
+ /**
178
+ * No such operation is supported.
179
+ */
180
+ readonly UNKNOWN_OPERATION: "UnknownOperation";
181
+ };
182
+ /**
183
+ * @public
184
+ */
185
+ export type ValidationExceptionReason = (typeof ValidationExceptionReason)[keyof typeof ValidationExceptionReason];
186
+ /**
187
+ * @public
188
+ * @enum
189
+ */
190
+ export declare const RouteMatrixZoneCategory: {
191
+ readonly CONGESTION_PRICING: "CongestionPricing";
192
+ readonly ENVIRONMENTAL: "Environmental";
193
+ readonly VIGNETTE: "Vignette";
194
+ };
195
+ /**
196
+ * @public
197
+ */
198
+ export type RouteMatrixZoneCategory = (typeof RouteMatrixZoneCategory)[keyof typeof RouteMatrixZoneCategory];
199
+ /**
200
+ * @public
201
+ * @enum
202
+ */
203
+ export declare const RouteMatrixTravelMode: {
204
+ readonly CAR: "Car";
205
+ readonly PEDESTRIAN: "Pedestrian";
206
+ readonly SCOOTER: "Scooter";
207
+ readonly TRUCK: "Truck";
208
+ };
209
+ /**
210
+ * @public
211
+ */
212
+ export type RouteMatrixTravelMode = (typeof RouteMatrixTravelMode)[keyof typeof RouteMatrixTravelMode];
213
+ /**
214
+ * @public
215
+ * @enum
216
+ */
217
+ export declare const RouteMatrixHazardousCargoType: {
218
+ readonly COMBUSTIBLE: "Combustible";
219
+ readonly CORROSIVE: "Corrosive";
220
+ readonly EXPLOSIVE: "Explosive";
221
+ readonly FLAMMABLE: "Flammable";
222
+ readonly GAS: "Gas";
223
+ readonly HARMFUL_TO_WATER: "HarmfulToWater";
224
+ readonly ORGANIC: "Organic";
225
+ readonly OTHER: "Other";
226
+ readonly POISON: "Poison";
227
+ readonly POISONOUS_INHALATION: "PoisonousInhalation";
228
+ readonly RADIOACTIVE: "Radioactive";
229
+ };
230
+ /**
231
+ * @public
232
+ */
233
+ export type RouteMatrixHazardousCargoType = (typeof RouteMatrixHazardousCargoType)[keyof typeof RouteMatrixHazardousCargoType];
234
+ /**
235
+ * @public
236
+ * @enum
237
+ */
238
+ export declare const RouteMatrixTruckType: {
239
+ readonly LIGHT_TRUCK: "LightTruck";
240
+ readonly STRAIGHT_TRUCK: "StraightTruck";
241
+ readonly TRACTOR: "Tractor";
242
+ };
243
+ /**
244
+ * @public
245
+ */
246
+ export type RouteMatrixTruckType = (typeof RouteMatrixTruckType)[keyof typeof RouteMatrixTruckType];
247
+ /**
248
+ * @public
249
+ * @enum
250
+ */
251
+ export declare const RouteMatrixErrorCode: {
252
+ readonly NO_MATCH: "NoMatch";
253
+ readonly NO_MATCH_DESTINATION: "NoMatchDestination";
254
+ readonly NO_MATCH_ORIGIN: "NoMatchOrigin";
255
+ readonly NO_ROUTE: "NoRoute";
256
+ readonly OTHER: "Other";
257
+ readonly OUT_OF_BOUNDS: "OutOfBounds";
258
+ readonly OUT_OF_BOUNDS_DESTINATION: "OutOfBoundsDestination";
259
+ readonly OUT_OF_BOUNDS_ORIGIN: "OutOfBoundsOrigin";
260
+ readonly VIOLATION: "Violation";
261
+ };
262
+ /**
263
+ * @public
264
+ */
265
+ export type RouteMatrixErrorCode = (typeof RouteMatrixErrorCode)[keyof typeof RouteMatrixErrorCode];
266
+ /**
267
+ * @public
268
+ * @enum
269
+ */
270
+ export declare const RouteZoneCategory: {
271
+ readonly CONGESTION_PRICING: "CongestionPricing";
272
+ readonly ENVIRONMENTAL: "Environmental";
273
+ readonly VIGNETTE: "Vignette";
274
+ };
275
+ /**
276
+ * @public
277
+ */
278
+ export type RouteZoneCategory = (typeof RouteZoneCategory)[keyof typeof RouteZoneCategory];
279
+ /**
280
+ * @public
281
+ * @enum
282
+ */
283
+ export declare const MeasurementSystem: {
284
+ readonly IMPERIAL: "Imperial";
285
+ readonly METRIC: "Metric";
286
+ };
287
+ /**
288
+ * @public
289
+ */
290
+ export type MeasurementSystem = (typeof MeasurementSystem)[keyof typeof MeasurementSystem];
291
+ /**
292
+ * @public
293
+ * @enum
294
+ */
295
+ export declare const RouteLegAdditionalFeature: {
296
+ readonly ELEVATION: "Elevation";
297
+ readonly INCIDENTS: "Incidents";
298
+ readonly PASS_THROUGH_WAYPOINTS: "PassThroughWaypoints";
299
+ readonly SUMMARY: "Summary";
300
+ readonly TOLLS: "Tolls";
301
+ readonly TRAVEL_STEP_INSTRUCTIONS: "TravelStepInstructions";
302
+ readonly TRUCK_ROAD_TYPES: "TruckRoadTypes";
303
+ readonly TYPICAL_DURATION: "TypicalDuration";
304
+ readonly ZONES: "Zones";
305
+ };
306
+ /**
307
+ * @public
308
+ */
309
+ export type RouteLegAdditionalFeature = (typeof RouteLegAdditionalFeature)[keyof typeof RouteLegAdditionalFeature];
310
+ /**
311
+ * @public
312
+ * @enum
313
+ */
314
+ export declare const RouteSpanAdditionalFeature: {
315
+ readonly BEST_CASE_DURATION: "BestCaseDuration";
316
+ readonly CAR_ACCESS: "CarAccess";
317
+ readonly CONSUMPTION: "Consumption";
318
+ readonly COUNTRY: "Country";
319
+ readonly DISTANCE: "Distance";
320
+ readonly DURATION: "Duration";
321
+ readonly DYNAMIC_SPEED: "DynamicSpeed";
322
+ readonly FUNCTIONAL_CLASSIFICATION: "FunctionalClassification";
323
+ readonly GATES: "Gates";
324
+ readonly INCIDENTS: "Incidents";
325
+ readonly NAMES: "Names";
326
+ readonly NOTICES: "Notices";
327
+ readonly PEDESTRIAN_ACCESS: "PedestrianAccess";
328
+ readonly RAILWAY_CROSSINGS: "RailwayCrossings";
329
+ readonly REGION: "Region";
330
+ readonly ROAD_ATTRIBUTES: "RoadAttributes";
331
+ readonly ROUTE_NUMBERS: "RouteNumbers";
332
+ readonly SCOOTER_ACCESS: "ScooterAccess";
333
+ readonly SPEED_LIMIT: "SpeedLimit";
334
+ readonly TOLL_SYSTEMS: "TollSystems";
335
+ readonly TRUCK_ACCESS: "TruckAccess";
336
+ readonly TRUCK_ROAD_TYPES: "TruckRoadTypes";
337
+ readonly TYPICAL_DURATION: "TypicalDuration";
338
+ readonly ZONES: "Zones";
339
+ };
340
+ /**
341
+ * @public
342
+ */
343
+ export type RouteSpanAdditionalFeature = (typeof RouteSpanAdditionalFeature)[keyof typeof RouteSpanAdditionalFeature];
344
+ /**
345
+ * @public
346
+ * @enum
347
+ */
348
+ export declare const RouteTollVehicleCategory: {
349
+ readonly MINIBUS: "Minibus";
350
+ };
351
+ /**
352
+ * @public
353
+ */
354
+ export type RouteTollVehicleCategory = (typeof RouteTollVehicleCategory)[keyof typeof RouteTollVehicleCategory];
355
+ /**
356
+ * @public
357
+ * @enum
358
+ */
359
+ export declare const RouteTravelMode: {
360
+ readonly CAR: "Car";
361
+ readonly PEDESTRIAN: "Pedestrian";
362
+ readonly SCOOTER: "Scooter";
363
+ readonly TRUCK: "Truck";
364
+ };
365
+ /**
366
+ * @public
367
+ */
368
+ export type RouteTravelMode = (typeof RouteTravelMode)[keyof typeof RouteTravelMode];
369
+ /**
370
+ * @public
371
+ * @enum
372
+ */
373
+ export declare const RouteEngineType: {
374
+ readonly ELECTRIC: "Electric";
375
+ readonly INTERNAL_COMBUSTION: "InternalCombustion";
376
+ readonly PLUGIN_HYBRID: "PluginHybrid";
377
+ };
378
+ /**
379
+ * @public
380
+ */
381
+ export type RouteEngineType = (typeof RouteEngineType)[keyof typeof RouteEngineType];
382
+ /**
383
+ * @public
384
+ * @enum
385
+ */
386
+ export declare const RouteHazardousCargoType: {
387
+ readonly COMBUSTIBLE: "Combustible";
388
+ readonly CORROSIVE: "Corrosive";
389
+ readonly EXPLOSIVE: "Explosive";
390
+ readonly FLAMMABLE: "Flammable";
391
+ readonly GAS: "Gas";
392
+ readonly HARMFUL_TO_WATER: "HarmfulToWater";
393
+ readonly ORGANIC: "Organic";
394
+ readonly OTHER: "Other";
395
+ readonly POISON: "Poison";
396
+ readonly POISONOUS_INHALATION: "PoisonousInhalation";
397
+ readonly RADIOACTIVE: "Radioactive";
398
+ };
399
+ /**
400
+ * @public
401
+ */
402
+ export type RouteHazardousCargoType = (typeof RouteHazardousCargoType)[keyof typeof RouteHazardousCargoType];
403
+ /**
404
+ * @public
405
+ * @enum
406
+ */
407
+ export declare const RouteTruckType: {
408
+ readonly LIGHT_TRUCK: "LightTruck";
409
+ readonly STRAIGHT_TRUCK: "StraightTruck";
410
+ readonly TRACTOR: "Tractor";
411
+ };
412
+ /**
413
+ * @public
414
+ */
415
+ export type RouteTruckType = (typeof RouteTruckType)[keyof typeof RouteTruckType];
416
+ /**
417
+ * @public
418
+ * @enum
419
+ */
420
+ export declare const RouteTravelStepType: {
421
+ readonly DEFAULT: "Default";
422
+ readonly TURN_BY_TURN: "TurnByTurn";
423
+ };
424
+ /**
425
+ * @public
426
+ */
427
+ export type RouteTravelStepType = (typeof RouteTravelStepType)[keyof typeof RouteTravelStepType];
428
+ /**
429
+ * @public
430
+ * @enum
431
+ */
432
+ export declare const RouteResponseNoticeCode: {
433
+ readonly MAIN_LANGUAGE_NOT_FOUND: "MainLanguageNotFound";
434
+ readonly OTHER: "Other";
435
+ readonly TRAVEL_TIME_EXCEEDS_DRIVER_WORK_HOURS: "TravelTimeExceedsDriverWorkHours";
436
+ };
437
+ /**
438
+ * @public
439
+ */
440
+ export type RouteResponseNoticeCode = (typeof RouteResponseNoticeCode)[keyof typeof RouteResponseNoticeCode];
441
+ /**
442
+ * @public
443
+ * @enum
444
+ */
445
+ export declare const RouteNoticeImpact: {
446
+ readonly HIGH: "High";
447
+ readonly LOW: "Low";
448
+ };
449
+ /**
450
+ * @public
451
+ */
452
+ export type RouteNoticeImpact = (typeof RouteNoticeImpact)[keyof typeof RouteNoticeImpact];
453
+ /**
454
+ * @public
455
+ * @enum
456
+ */
457
+ export declare const RouteFerryAfterTravelStepType: {
458
+ readonly DEBOARD: "Deboard";
459
+ };
460
+ /**
461
+ * @public
462
+ */
463
+ export type RouteFerryAfterTravelStepType = (typeof RouteFerryAfterTravelStepType)[keyof typeof RouteFerryAfterTravelStepType];
464
+ /**
465
+ * @public
466
+ * @enum
467
+ */
468
+ export declare const RouteFerryBeforeTravelStepType: {
469
+ readonly BOARD: "Board";
470
+ };
471
+ /**
472
+ * @public
473
+ */
474
+ export type RouteFerryBeforeTravelStepType = (typeof RouteFerryBeforeTravelStepType)[keyof typeof RouteFerryBeforeTravelStepType];
475
+ /**
476
+ * @public
477
+ * @enum
478
+ */
479
+ export declare const RouteFerryNoticeCode: {
480
+ readonly ACCURATE_POLYLINE_UNAVAILABLE: "AccuratePolylineUnavailable";
481
+ readonly NO_SCHEDULE: "NoSchedule";
482
+ readonly OTHER: "Other";
483
+ readonly POTENTIAL_VIOLATED_VEHICLE_RESTRICTION_USAGE: "PotentialViolatedVehicleRestrictionUsage";
484
+ readonly SEASONAL_CLOSURE: "SeasonalClosure";
485
+ readonly VIOLATED_AVOID_FERRY: "ViolatedAvoidFerry";
486
+ readonly VIOLATED_AVOID_RAIL_FERRY: "ViolatedAvoidRailFerry";
487
+ };
488
+ /**
489
+ * @public
490
+ */
491
+ export type RouteFerryNoticeCode = (typeof RouteFerryNoticeCode)[keyof typeof RouteFerryNoticeCode];
492
+ /**
493
+ * @public
494
+ * @enum
495
+ */
496
+ export declare const RouteFerryTravelStepType: {
497
+ readonly ARRIVE: "Arrive";
498
+ readonly CONTINUE: "Continue";
499
+ readonly DEPART: "Depart";
500
+ };
501
+ /**
502
+ * @public
503
+ */
504
+ export type RouteFerryTravelStepType = (typeof RouteFerryTravelStepType)[keyof typeof RouteFerryTravelStepType];
505
+ /**
506
+ * @public
507
+ * @enum
508
+ */
509
+ export declare const RouteSideOfStreet: {
510
+ readonly LEFT: "Left";
511
+ readonly RIGHT: "Right";
512
+ };
513
+ /**
514
+ * @public
515
+ */
516
+ export type RouteSideOfStreet = (typeof RouteSideOfStreet)[keyof typeof RouteSideOfStreet];
517
+ /**
518
+ * @public
519
+ * @enum
520
+ */
521
+ export declare const RoutePedestrianNoticeCode: {
522
+ readonly ACCURATE_POLYLINE_UNAVAILABLE: "AccuratePolylineUnavailable";
523
+ readonly OTHER: "Other";
524
+ readonly VIOLATED_AVOID_DIRT_ROAD: "ViolatedAvoidDirtRoad";
525
+ readonly VIOLATED_AVOID_TUNNEL: "ViolatedAvoidTunnel";
526
+ readonly VIOLATED_PEDESTRIAN_OPTION: "ViolatedPedestrianOption";
527
+ };
528
+ /**
529
+ * @public
530
+ */
531
+ export type RoutePedestrianNoticeCode = (typeof RoutePedestrianNoticeCode)[keyof typeof RoutePedestrianNoticeCode];
532
+ /**
533
+ * @public
534
+ * @enum
535
+ */
536
+ export declare const RouteSpanPedestrianAccessAttribute: {
537
+ readonly ALLOWED: "Allowed";
538
+ readonly INDOORS: "Indoors";
539
+ readonly NO_THROUGH_TRAFFIC: "NoThroughTraffic";
540
+ readonly PARK: "Park";
541
+ readonly STAIRS: "Stairs";
542
+ readonly TOLL_ROAD: "TollRoad";
543
+ };
544
+ /**
545
+ * @public
546
+ */
547
+ export type RouteSpanPedestrianAccessAttribute = (typeof RouteSpanPedestrianAccessAttribute)[keyof typeof RouteSpanPedestrianAccessAttribute];
548
+ /**
549
+ * @public
550
+ * @enum
551
+ */
552
+ export declare const RouteSpanRoadAttribute: {
553
+ readonly BRIDGE: "Bridge";
554
+ readonly BUILT_UP_AREA: "BuiltUpArea";
555
+ readonly CONTROLLED_ACCESS_HIGHWAY: "ControlledAccessHighway";
556
+ readonly DIRT_ROAD: "DirtRoad";
557
+ readonly DIVIDED_ROAD: "DividedRoad";
558
+ readonly MOTORWAY: "Motorway";
559
+ readonly PRIVATE_ROAD: "PrivateRoad";
560
+ readonly RAMP: "Ramp";
561
+ readonly RIGHT_HAND_TRAFFIC: "RightHandTraffic";
562
+ readonly ROUNDABOUT: "Roundabout";
563
+ readonly TUNNEL: "Tunnel";
564
+ readonly UNDER_CONSTRUCTION: "UnderConstruction";
565
+ };
566
+ /**
567
+ * @public
568
+ */
569
+ export type RouteSpanRoadAttribute = (typeof RouteSpanRoadAttribute)[keyof typeof RouteSpanRoadAttribute];
570
+ /**
571
+ * @public
572
+ * @enum
573
+ */
574
+ export declare const RouteDirection: {
575
+ readonly EAST: "East";
576
+ readonly NORTH: "North";
577
+ readonly SOUTH: "South";
578
+ readonly WEST: "West";
579
+ };
580
+ /**
581
+ * @public
582
+ */
583
+ export type RouteDirection = (typeof RouteDirection)[keyof typeof RouteDirection];
584
+ /**
585
+ * @public
586
+ * @enum
587
+ */
588
+ export declare const RouteRoadType: {
589
+ readonly HIGHWAY: "Highway";
590
+ readonly RURAL: "Rural";
591
+ readonly URBAN: "Urban";
592
+ };
593
+ /**
594
+ * @public
595
+ */
596
+ export type RouteRoadType = (typeof RouteRoadType)[keyof typeof RouteRoadType];
597
+ /**
598
+ * @public
599
+ * @enum
600
+ */
601
+ export declare const RouteSteeringDirection: {
602
+ readonly LEFT: "Left";
603
+ readonly RIGHT: "Right";
604
+ readonly STRAIGHT: "Straight";
605
+ };
606
+ /**
607
+ * @public
608
+ */
609
+ export type RouteSteeringDirection = (typeof RouteSteeringDirection)[keyof typeof RouteSteeringDirection];
610
+ /**
611
+ * @public
612
+ * @enum
613
+ */
614
+ export declare const RouteTurnIntensity: {
615
+ readonly SHARP: "Sharp";
616
+ readonly SLIGHT: "Slight";
617
+ readonly TYPICAL: "Typical";
618
+ };
619
+ /**
620
+ * @public
621
+ */
622
+ export type RouteTurnIntensity = (typeof RouteTurnIntensity)[keyof typeof RouteTurnIntensity];
623
+ /**
624
+ * @public
625
+ * @enum
626
+ */
627
+ export declare const RoutePedestrianTravelStepType: {
628
+ readonly ARRIVE: "Arrive";
629
+ readonly CONTINUE: "Continue";
630
+ readonly DEPART: "Depart";
631
+ readonly EXIT: "Exit";
632
+ readonly KEEP: "Keep";
633
+ readonly RAMP: "Ramp";
634
+ readonly ROUNDABOUT_ENTER: "RoundaboutEnter";
635
+ readonly ROUNDABOUT_EXIT: "RoundaboutExit";
636
+ readonly ROUNDABOUT_PASS: "RoundaboutPass";
637
+ readonly TURN: "Turn";
638
+ readonly U_TURN: "UTurn";
639
+ };
640
+ /**
641
+ * @public
642
+ */
643
+ export type RoutePedestrianTravelStepType = (typeof RoutePedestrianTravelStepType)[keyof typeof RoutePedestrianTravelStepType];
644
+ /**
645
+ * @public
646
+ * @enum
647
+ */
648
+ export declare const RouteLegTravelMode: {
649
+ readonly CAR: "Car";
650
+ readonly CAR_SHUTTLE_TRAIN: "CarShuttleTrain";
651
+ readonly FERRY: "Ferry";
652
+ readonly PEDESTRIAN: "Pedestrian";
653
+ readonly SCOOTER: "Scooter";
654
+ readonly TRUCK: "Truck";
655
+ };
656
+ /**
657
+ * @public
658
+ */
659
+ export type RouteLegTravelMode = (typeof RouteLegTravelMode)[keyof typeof RouteLegTravelMode];
660
+ /**
661
+ * @public
662
+ * @enum
663
+ */
664
+ export declare const RouteLegType: {
665
+ readonly FERRY: "Ferry";
666
+ readonly PEDESTRIAN: "Pedestrian";
667
+ readonly VEHICLE: "Vehicle";
668
+ };
669
+ /**
670
+ * @public
671
+ */
672
+ export type RouteLegType = (typeof RouteLegType)[keyof typeof RouteLegType];
673
+ /**
674
+ * @public
675
+ * @enum
676
+ */
677
+ export declare const RouteVehicleIncidentSeverity: {
678
+ readonly CRITICAL: "Critical";
679
+ readonly HIGH: "High";
680
+ readonly LOW: "Low";
681
+ readonly MEDIUM: "Medium";
682
+ };
683
+ /**
684
+ * @public
685
+ */
686
+ export type RouteVehicleIncidentSeverity = (typeof RouteVehicleIncidentSeverity)[keyof typeof RouteVehicleIncidentSeverity];
687
+ /**
688
+ * @public
689
+ * @enum
690
+ */
691
+ export declare const RouteVehicleIncidentType: {
692
+ readonly ACCIDENT: "Accident";
693
+ readonly CONGESTION: "Congestion";
694
+ readonly CONSTRUCTION: "Construction";
695
+ readonly DISABLED_VEHICLE: "DisabledVehicle";
696
+ readonly LANE_RESTRICTION: "LaneRestriction";
697
+ readonly MASS_TRANSIT: "MassTransit";
698
+ readonly OTHER: "Other";
699
+ readonly PLANNED_EVENT: "PlannedEvent";
700
+ readonly ROAD_CLOSURE: "RoadClosure";
701
+ readonly ROAD_HAZARD: "RoadHazard";
702
+ readonly WEATHER: "Weather";
703
+ };
704
+ /**
705
+ * @public
706
+ */
707
+ export type RouteVehicleIncidentType = (typeof RouteVehicleIncidentType)[keyof typeof RouteVehicleIncidentType];
708
+ /**
709
+ * @public
710
+ * @enum
711
+ */
712
+ export declare const RouteVehicleNoticeCode: {
713
+ readonly ACCURATE_POLYLINE_UNAVAILABLE: "AccuratePolylineUnavailable";
714
+ readonly OTHER: "Other";
715
+ readonly POTENTIAL_VIOLATED_AVOID_TOLL_ROAD_USAGE: "PotentialViolatedAvoidTollRoadUsage";
716
+ readonly POTENTIAL_VIOLATED_CARPOOL_USAGE: "PotentialViolatedCarpoolUsage";
717
+ readonly POTENTIAL_VIOLATED_TURN_RESTRICTION_USAGE: "PotentialViolatedTurnRestrictionUsage";
718
+ readonly POTENTIAL_VIOLATED_VEHICLE_RESTRICTION_USAGE: "PotentialViolatedVehicleRestrictionUsage";
719
+ readonly POTENTIAL_VIOLATED_ZONE_RESTRICTION_USAGE: "PotentialViolatedZoneRestrictionUsage";
720
+ readonly SEASONAL_CLOSURE: "SeasonalClosure";
721
+ readonly TOLLS_DATA_TEMPORARILY_UNAVAILABLE: "TollsDataTemporarilyUnavailable";
722
+ readonly TOLLS_DATA_UNAVAILABLE: "TollsDataUnavailable";
723
+ readonly TOLL_TRANSPONDER: "TollTransponder";
724
+ readonly VIOLATED_AVOID_CONTROLLED_ACCESS_HIGHWAY: "ViolatedAvoidControlledAccessHighway";
725
+ readonly VIOLATED_AVOID_DIFFICULT_TURNS: "ViolatedAvoidDifficultTurns";
726
+ readonly VIOLATED_AVOID_DIRT_ROAD: "ViolatedAvoidDirtRoad";
727
+ readonly VIOLATED_AVOID_SEASONAL_CLOSURE: "ViolatedAvoidSeasonalClosure";
728
+ readonly VIOLATED_AVOID_TOLL_ROAD: "ViolatedAvoidTollRoad";
729
+ readonly VIOLATED_AVOID_TOLL_TRANSPONDER: "ViolatedAvoidTollTransponder";
730
+ readonly VIOLATED_AVOID_TRUCK_ROAD_TYPE: "ViolatedAvoidTruckRoadType";
731
+ readonly VIOLATED_AVOID_TUNNEL: "ViolatedAvoidTunnel";
732
+ readonly VIOLATED_AVOID_U_TURNS: "ViolatedAvoidUTurns";
733
+ readonly VIOLATED_BLOCKED_ROAD: "ViolatedBlockedRoad";
734
+ readonly VIOLATED_CARPOOL: "ViolatedCarpool";
735
+ readonly VIOLATED_EMERGENCY_GATE: "ViolatedEmergencyGate";
736
+ readonly VIOLATED_START_DIRECTION: "ViolatedStartDirection";
737
+ readonly VIOLATED_TURN_RESTRICTION: "ViolatedTurnRestriction";
738
+ readonly VIOLATED_VEHICLE_RESTRICTION: "ViolatedVehicleRestriction";
739
+ readonly VIOLATED_ZONE_RESTRICTION: "ViolatedZoneRestriction";
740
+ };
741
+ /**
742
+ * @public
743
+ */
744
+ export type RouteVehicleNoticeCode = (typeof RouteVehicleNoticeCode)[keyof typeof RouteVehicleNoticeCode];
745
+ /**
746
+ * @public
747
+ * @enum
748
+ */
749
+ export declare const RouteWeightConstraintType: {
750
+ readonly CURRENT: "Current";
751
+ readonly GROSS: "Gross";
752
+ readonly UNKNOWN: "Unknown";
753
+ };
754
+ /**
755
+ * @public
756
+ */
757
+ export type RouteWeightConstraintType = (typeof RouteWeightConstraintType)[keyof typeof RouteWeightConstraintType];
758
+ /**
759
+ * @public
760
+ * @enum
761
+ */
762
+ export declare const RouteSpanCarAccessAttribute: {
763
+ readonly ALLOWED: "Allowed";
764
+ readonly NO_THROUGH_TRAFFIC: "NoThroughTraffic";
765
+ readonly TOLL_ROAD: "TollRoad";
766
+ };
767
+ /**
768
+ * @public
769
+ */
770
+ export type RouteSpanCarAccessAttribute = (typeof RouteSpanCarAccessAttribute)[keyof typeof RouteSpanCarAccessAttribute];
771
+ /**
772
+ * @public
773
+ * @enum
774
+ */
775
+ export declare const RouteSpanGateAttribute: {
776
+ readonly EMERGENCY: "Emergency";
777
+ readonly KEY_ACCESS: "KeyAccess";
778
+ readonly PERMISSION_REQUIRED: "PermissionRequired";
779
+ };
780
+ /**
781
+ * @public
782
+ */
783
+ export type RouteSpanGateAttribute = (typeof RouteSpanGateAttribute)[keyof typeof RouteSpanGateAttribute];
784
+ /**
785
+ * @public
786
+ * @enum
787
+ */
788
+ export declare const RouteSpanRailwayCrossingAttribute: {
789
+ readonly PROTECTED: "Protected";
790
+ readonly UNPROTECTED: "Unprotected";
791
+ };
792
+ /**
793
+ * @public
794
+ */
795
+ export type RouteSpanRailwayCrossingAttribute = (typeof RouteSpanRailwayCrossingAttribute)[keyof typeof RouteSpanRailwayCrossingAttribute];
796
+ /**
797
+ * @public
798
+ * @enum
799
+ */
800
+ export declare const RouteSpanScooterAccessAttribute: {
801
+ readonly ALLOWED: "Allowed";
802
+ readonly NO_THROUGH_TRAFFIC: "NoThroughTraffic";
803
+ readonly TOLL_ROAD: "TollRoad";
804
+ };
805
+ /**
806
+ * @public
807
+ */
808
+ export type RouteSpanScooterAccessAttribute = (typeof RouteSpanScooterAccessAttribute)[keyof typeof RouteSpanScooterAccessAttribute];
809
+ /**
810
+ * @public
811
+ * @enum
812
+ */
813
+ export declare const RouteSpanTruckAccessAttribute: {
814
+ readonly ALLOWED: "Allowed";
815
+ readonly NO_THROUGH_TRAFFIC: "NoThroughTraffic";
816
+ readonly TOLL_ROAD: "TollRoad";
817
+ };
818
+ /**
819
+ * @public
820
+ */
821
+ export type RouteSpanTruckAccessAttribute = (typeof RouteSpanTruckAccessAttribute)[keyof typeof RouteSpanTruckAccessAttribute];
822
+ /**
823
+ * @public
824
+ * @enum
825
+ */
826
+ export declare const RouteTollPassValidityPeriodType: {
827
+ readonly ANNUAL: "Annual";
828
+ readonly DAYS: "Days";
829
+ readonly EXTENDED_ANNUAL: "ExtendedAnnual";
830
+ readonly MINUTES: "Minutes";
831
+ readonly MONTHS: "Months";
832
+ };
833
+ /**
834
+ * @public
835
+ */
836
+ export type RouteTollPassValidityPeriodType = (typeof RouteTollPassValidityPeriodType)[keyof typeof RouteTollPassValidityPeriodType];
837
+ /**
838
+ * @public
839
+ * @enum
840
+ */
841
+ export declare const RouteTollPaymentMethod: {
842
+ readonly BANK_CARD: "BankCard";
843
+ readonly CASH: "Cash";
844
+ readonly CASH_EXACT: "CashExact";
845
+ readonly CREDIT_CARD: "CreditCard";
846
+ readonly PASS_SUBSCRIPTION: "PassSubscription";
847
+ readonly TRANSPONDER: "Transponder";
848
+ readonly TRAVEL_CARD: "TravelCard";
849
+ readonly VIDEO_TOLL: "VideoToll";
850
+ };
851
+ /**
852
+ * @public
853
+ */
854
+ export type RouteTollPaymentMethod = (typeof RouteTollPaymentMethod)[keyof typeof RouteTollPaymentMethod];
855
+ /**
856
+ * @public
857
+ * @enum
858
+ */
859
+ export declare const RouteVehicleTravelStepType: {
860
+ readonly ARRIVE: "Arrive";
861
+ readonly CONTINUE: "Continue";
862
+ readonly CONTINUE_HIGHWAY: "ContinueHighway";
863
+ readonly DEPART: "Depart";
864
+ readonly ENTER_HIGHWAY: "EnterHighway";
865
+ readonly EXIT: "Exit";
866
+ readonly KEEP: "Keep";
867
+ readonly RAMP: "Ramp";
868
+ readonly ROUNDABOUT_ENTER: "RoundaboutEnter";
869
+ readonly ROUNDABOUT_EXIT: "RoundaboutExit";
870
+ readonly ROUNDABOUT_PASS: "RoundaboutPass";
871
+ readonly TURN: "Turn";
872
+ readonly U_TURN: "UTurn";
873
+ };
874
+ /**
875
+ * @public
876
+ */
877
+ export type RouteVehicleTravelStepType = (typeof RouteVehicleTravelStepType)[keyof typeof RouteVehicleTravelStepType];
878
+ /**
879
+ * @public
880
+ * @enum
881
+ */
882
+ export declare const DayOfWeek: {
883
+ readonly FRIDAY: "Friday";
884
+ readonly MONDAY: "Monday";
885
+ readonly SATURDAY: "Saturday";
886
+ readonly SUNDAY: "Sunday";
887
+ readonly THURSDAY: "Thursday";
888
+ readonly TUESDAY: "Tuesday";
889
+ readonly WEDNESDAY: "Wednesday";
890
+ };
891
+ /**
892
+ * @public
893
+ */
894
+ export type DayOfWeek = (typeof DayOfWeek)[keyof typeof DayOfWeek];
895
+ /**
896
+ * @public
897
+ * @enum
898
+ */
899
+ export declare const WaypointOptimizationClusteringAlgorithm: {
900
+ readonly DRIVING_DISTANCE: "DrivingDistance";
901
+ readonly TOPOLOGY_SEGMENT: "TopologySegment";
902
+ };
903
+ /**
904
+ * @public
905
+ */
906
+ export type WaypointOptimizationClusteringAlgorithm = (typeof WaypointOptimizationClusteringAlgorithm)[keyof typeof WaypointOptimizationClusteringAlgorithm];
907
+ /**
908
+ * @public
909
+ * @enum
910
+ */
911
+ export declare const WaypointOptimizationServiceTimeTreatment: {
912
+ readonly REST: "Rest";
913
+ readonly WORK: "Work";
914
+ };
915
+ /**
916
+ * @public
917
+ */
918
+ export type WaypointOptimizationServiceTimeTreatment = (typeof WaypointOptimizationServiceTimeTreatment)[keyof typeof WaypointOptimizationServiceTimeTreatment];
919
+ /**
920
+ * @public
921
+ * @enum
922
+ */
923
+ export declare const WaypointOptimizationSequencingObjective: {
924
+ readonly FASTEST_ROUTE: "FastestRoute";
925
+ readonly SHORTEST_ROUTE: "ShortestRoute";
926
+ };
927
+ /**
928
+ * @public
929
+ */
930
+ export type WaypointOptimizationSequencingObjective = (typeof WaypointOptimizationSequencingObjective)[keyof typeof WaypointOptimizationSequencingObjective];
931
+ /**
932
+ * @public
933
+ * @enum
934
+ */
935
+ export declare const WaypointOptimizationTravelMode: {
936
+ readonly CAR: "Car";
937
+ readonly PEDESTRIAN: "Pedestrian";
938
+ readonly SCOOTER: "Scooter";
939
+ readonly TRUCK: "Truck";
940
+ };
941
+ /**
942
+ * @public
943
+ */
944
+ export type WaypointOptimizationTravelMode = (typeof WaypointOptimizationTravelMode)[keyof typeof WaypointOptimizationTravelMode];
945
+ /**
946
+ * @public
947
+ * @enum
948
+ */
949
+ export declare const WaypointOptimizationHazardousCargoType: {
950
+ readonly COMBUSTIBLE: "Combustible";
951
+ readonly CORROSIVE: "Corrosive";
952
+ readonly EXPLOSIVE: "Explosive";
953
+ readonly FLAMMABLE: "Flammable";
954
+ readonly GAS: "Gas";
955
+ readonly HARMFUL_TO_WATER: "HarmfulToWater";
956
+ readonly ORGANIC: "Organic";
957
+ readonly OTHER: "Other";
958
+ readonly POISON: "Poison";
959
+ readonly POISONOUS_INHALATION: "PoisonousInhalation";
960
+ readonly RADIOACTIVE: "Radioactive";
961
+ };
962
+ /**
963
+ * @public
964
+ */
965
+ export type WaypointOptimizationHazardousCargoType = (typeof WaypointOptimizationHazardousCargoType)[keyof typeof WaypointOptimizationHazardousCargoType];
966
+ /**
967
+ * @public
968
+ * @enum
969
+ */
970
+ export declare const WaypointOptimizationTruckType: {
971
+ readonly STRAIGHT_TRUCK: "StraightTruck";
972
+ readonly TRACTOR: "Tractor";
973
+ };
974
+ /**
975
+ * @public
976
+ */
977
+ export type WaypointOptimizationTruckType = (typeof WaypointOptimizationTruckType)[keyof typeof WaypointOptimizationTruckType];
978
+ /**
979
+ * @public
980
+ * @enum
981
+ */
982
+ export declare const WaypointOptimizationConstraint: {
983
+ readonly ACCESS_HOURS: "AccessHours";
984
+ readonly APPOINTMENT_TIME: "AppointmentTime";
985
+ readonly BEFORE: "Before";
986
+ readonly HEADING: "Heading";
987
+ readonly SERVICE_DURATION: "ServiceDuration";
988
+ readonly SIDE_OF_STREET: "SideOfStreet";
989
+ };
990
+ /**
991
+ * @public
992
+ */
993
+ export type WaypointOptimizationConstraint = (typeof WaypointOptimizationConstraint)[keyof typeof WaypointOptimizationConstraint];
994
+ /**
995
+ * @public
996
+ * @enum
997
+ */
998
+ export declare const RoadSnapTravelMode: {
999
+ readonly CAR: "Car";
1000
+ readonly PEDESTRIAN: "Pedestrian";
1001
+ readonly SCOOTER: "Scooter";
1002
+ readonly TRUCK: "Truck";
1003
+ };
1004
+ /**
1005
+ * @public
1006
+ */
1007
+ export type RoadSnapTravelMode = (typeof RoadSnapTravelMode)[keyof typeof RoadSnapTravelMode];
1008
+ /**
1009
+ * @public
1010
+ * @enum
1011
+ */
1012
+ export declare const RoadSnapHazardousCargoType: {
1013
+ readonly COMBUSTIBLE: "Combustible";
1014
+ readonly CORROSIVE: "Corrosive";
1015
+ readonly EXPLOSIVE: "Explosive";
1016
+ readonly FLAMMABLE: "Flammable";
1017
+ readonly GAS: "Gas";
1018
+ readonly HARMFUL_TO_WATER: "HarmfulToWater";
1019
+ readonly ORGANIC: "Organic";
1020
+ readonly OTHER: "Other";
1021
+ readonly POISON: "Poison";
1022
+ readonly POISONOUS_INHALATION: "PoisonousInhalation";
1023
+ readonly RADIOACTIVE: "Radioactive";
1024
+ };
1025
+ /**
1026
+ * @public
1027
+ */
1028
+ export type RoadSnapHazardousCargoType = (typeof RoadSnapHazardousCargoType)[keyof typeof RoadSnapHazardousCargoType];
1029
+ /**
1030
+ * @public
1031
+ * @enum
1032
+ */
1033
+ export declare const RoadSnapNoticeCode: {
1034
+ readonly TRACE_POINTS_HEADING_IGNORED: "TracePointsHeadingIgnored";
1035
+ readonly TRACE_POINTS_IGNORED: "TracePointsIgnored";
1036
+ readonly TRACE_POINTS_MOVED_BY_LARGE_DISTANCE: "TracePointsMovedByLargeDistance";
1037
+ readonly TRACE_POINTS_NOT_MATCHED: "TracePointsNotMatched";
1038
+ readonly TRACE_POINTS_OUT_OF_SEQUENCE: "TracePointsOutOfSequence";
1039
+ readonly TRACE_POINTS_SPEED_ESTIMATED: "TracePointsSpeedEstimated";
1040
+ readonly TRACE_POINTS_SPEED_IGNORED: "TracePointsSpeedIgnored";
1041
+ };
1042
+ /**
1043
+ * @public
1044
+ */
1045
+ export type RoadSnapNoticeCode = (typeof RoadSnapNoticeCode)[keyof typeof RoadSnapNoticeCode];