@motis-project/motis-client 2.1.2 → 2.7.2
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/README.md +3 -1
- package/dist/{chunk-IHFNO6R3.js → chunk-FDF4H3WD.js} +11 -4
- package/dist/{chunk-7PIP6KRC.js → chunk-UREEG3GO.js} +558 -42
- package/dist/index.d.ts +3 -3
- package/dist/index.js +26 -2
- package/dist/schemas.gen.d.ts +483 -11
- package/dist/schemas.gen.js +23 -1
- package/dist/services.gen.d.ts +32 -12
- package/dist/services.gen.js +3 -1
- package/dist/types.gen.d.ts +597 -57
- package/package.json +3 -3
- package/dist/chunk-CAW6R2LI.js +0 -1285
- package/dist/chunk-IYBFZNEH.js +0 -1224
- package/dist/chunk-QM2K42W7.js +0 -91
- package/dist/chunk-RM52T2X5.js +0 -1154
- package/dist/chunk-VOTN5CAZ.js +0 -91
- package/dist/chunk-ZBHU6VX2.js +0 -1291
package/dist/index.d.ts
CHANGED
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
export { AlertCauseSchema, AlertEffectSchema, AlertSchema, AlertSeverityLevelSchema, AreaSchema, DirectionSchema, DurationSchema, ElevationCostsSchema, EncodedPolylineSchema, FareMediaSchema, FareMediaTypeSchema, FareProductSchema, FareTransferRuleSchema, FareTransferSchema, ItinerarySchema, LegSchema, LocationTypeSchema, MatchSchema, ModeSchema, PedestrianProfileSchema, PickupDropoffTypeSchema, PlaceSchema, ReachablePlaceSchema, ReachableSchema, RentalFormFactorSchema, RentalPropulsionTypeSchema, RentalReturnConstraintSchema, RentalSchema, RiderCategorySchema, StepInstructionSchema, StopTimeSchema, TimeRangeSchema, TokenSchema, TransferSchema, TripInfoSchema, TripSegmentSchema, VertexTypeSchema } from './schemas.gen.js';
|
|
2
|
-
export { client, geocode, initial, levels, oneToAll, oneToMany, plan, reverseGeocode, stops, stoptimes, transfers, trip, trips } from './services.gen.js';
|
|
3
|
-
export { Alert, AlertCause, AlertEffect, AlertSeverityLevel, Area, Direction, Duration, ElevationCosts, EncodedPolyline, FareMedia, FareMediaType, FareProduct, FareTransfer, FareTransferRule, GeocodeData, GeocodeError, GeocodeResponse, InitialError, InitialResponse, Itinerary, Leg, LevelsData, LevelsError, LevelsResponse, LocationType, Match, Mode, OneToAllData, OneToAllError, OneToAllResponse, OneToManyData, OneToManyError, OneToManyResponse, PedestrianProfile, PickupDropoffType, Place, PlanData, PlanError, PlanResponse, Reachable, ReachablePlace, Rental, RentalFormFactor, RentalPropulsionType, RentalReturnConstraint, ReverseGeocodeData, ReverseGeocodeError, ReverseGeocodeResponse, RiderCategory, StepInstruction, StopTime, StopsData, StopsError, StopsResponse, StoptimesData, StoptimesError, StoptimesResponse, TimeRange, Token, Transfer, TransfersData, TransfersError, TransfersResponse, TripData, TripError, TripInfo, TripResponse, TripSegment, TripsData, TripsError, TripsResponse, VertexType } from './types.gen.js';
|
|
1
|
+
export { AlertCauseSchema, AlertEffectSchema, AlertSchema, AlertSeverityLevelSchema, AreaSchema, CyclingSpeedSchema, DirectionSchema, DurationSchema, ElevationCostsSchema, EncodedPolylineSchema, ErrorSchema, FareMediaSchema, FareMediaTypeSchema, FareProductSchema, FareTransferRuleSchema, FareTransferSchema, ItinerarySchema, LegSchema, LocationTypeSchema, MatchSchema, ModeSchema, MultiPolygonSchema, PedestrianProfileSchema, PedestrianSpeedSchema, PickupDropoffTypeSchema, PlaceSchema, ReachablePlaceSchema, ReachableSchema, RentalFormFactorSchema, RentalPropulsionTypeSchema, RentalProviderGroupSchema, RentalProviderSchema, RentalReturnConstraintSchema, RentalSchema, RentalStationSchema, RentalVehicleSchema, RentalVehicleTypeSchema, RentalZoneRestrictionsSchema, RentalZoneSchema, RiderCategorySchema, StepInstructionSchema, StopTimeSchema, TimeRangeSchema, TokenSchema, TransferSchema, TripInfoSchema, TripSegmentSchema, VertexTypeSchema } from './schemas.gen.js';
|
|
2
|
+
export { client, geocode, initial, levels, oneToAll, oneToMany, plan, rentals, reverseGeocode, stops, stoptimes, transfers, trip, trips } from './services.gen.js';
|
|
3
|
+
export { Alert, AlertCause, AlertEffect, AlertSeverityLevel, Area, CyclingSpeed, Direction, Duration, ElevationCosts, EncodedPolyline, Error, FareMedia, FareMediaType, FareProduct, FareTransfer, FareTransferRule, GeocodeData, GeocodeError, GeocodeResponse, InitialError, InitialResponse, Itinerary, Leg, LevelsData, LevelsError, LevelsResponse, LocationType, Match, Mode, MultiPolygon, OneToAllData, OneToAllError, OneToAllResponse, OneToManyData, OneToManyError, OneToManyResponse, PedestrianProfile, PedestrianSpeed, PickupDropoffType, Place, PlanData, PlanError, PlanResponse, Reachable, ReachablePlace, Rental, RentalFormFactor, RentalPropulsionType, RentalProvider, RentalProviderGroup, RentalReturnConstraint, RentalStation, RentalVehicle, RentalVehicleType, RentalZone, RentalZoneRestrictions, RentalsData, RentalsError, RentalsResponse, ReverseGeocodeData, ReverseGeocodeError, ReverseGeocodeResponse, RiderCategory, StepInstruction, StopTime, StopsData, StopsError, StopsResponse, StoptimesData, StoptimesError, StoptimesResponse, TimeRange, Token, Transfer, TransfersData, TransfersError, TransfersResponse, TripData, TripError, TripInfo, TripResponse, TripSegment, TripsData, TripsError, TripsResponse, VertexType } from './types.gen.js';
|
|
4
4
|
import '@hey-api/client-fetch';
|
package/dist/index.js
CHANGED
|
@@ -4,10 +4,12 @@ import {
|
|
|
4
4
|
AlertSchema,
|
|
5
5
|
AlertSeverityLevelSchema,
|
|
6
6
|
AreaSchema,
|
|
7
|
+
CyclingSpeedSchema,
|
|
7
8
|
DirectionSchema,
|
|
8
9
|
DurationSchema,
|
|
9
10
|
ElevationCostsSchema,
|
|
10
11
|
EncodedPolylineSchema,
|
|
12
|
+
ErrorSchema,
|
|
11
13
|
FareMediaSchema,
|
|
12
14
|
FareMediaTypeSchema,
|
|
13
15
|
FareProductSchema,
|
|
@@ -18,15 +20,24 @@ import {
|
|
|
18
20
|
LocationTypeSchema,
|
|
19
21
|
MatchSchema,
|
|
20
22
|
ModeSchema,
|
|
23
|
+
MultiPolygonSchema,
|
|
21
24
|
PedestrianProfileSchema,
|
|
25
|
+
PedestrianSpeedSchema,
|
|
22
26
|
PickupDropoffTypeSchema,
|
|
23
27
|
PlaceSchema,
|
|
24
28
|
ReachablePlaceSchema,
|
|
25
29
|
ReachableSchema,
|
|
26
30
|
RentalFormFactorSchema,
|
|
27
31
|
RentalPropulsionTypeSchema,
|
|
32
|
+
RentalProviderGroupSchema,
|
|
33
|
+
RentalProviderSchema,
|
|
28
34
|
RentalReturnConstraintSchema,
|
|
29
35
|
RentalSchema,
|
|
36
|
+
RentalStationSchema,
|
|
37
|
+
RentalVehicleSchema,
|
|
38
|
+
RentalVehicleTypeSchema,
|
|
39
|
+
RentalZoneRestrictionsSchema,
|
|
40
|
+
RentalZoneSchema,
|
|
30
41
|
RiderCategorySchema,
|
|
31
42
|
StepInstructionSchema,
|
|
32
43
|
StopTimeSchema,
|
|
@@ -36,7 +47,7 @@ import {
|
|
|
36
47
|
TripInfoSchema,
|
|
37
48
|
TripSegmentSchema,
|
|
38
49
|
VertexTypeSchema
|
|
39
|
-
} from "./chunk-
|
|
50
|
+
} from "./chunk-UREEG3GO.js";
|
|
40
51
|
import {
|
|
41
52
|
client,
|
|
42
53
|
geocode,
|
|
@@ -45,13 +56,14 @@ import {
|
|
|
45
56
|
oneToAll,
|
|
46
57
|
oneToMany,
|
|
47
58
|
plan,
|
|
59
|
+
rentals,
|
|
48
60
|
reverseGeocode,
|
|
49
61
|
stops,
|
|
50
62
|
stoptimes,
|
|
51
63
|
transfers,
|
|
52
64
|
trip,
|
|
53
65
|
trips
|
|
54
|
-
} from "./chunk-
|
|
66
|
+
} from "./chunk-FDF4H3WD.js";
|
|
55
67
|
import "./chunk-6DML7NNP.js";
|
|
56
68
|
export {
|
|
57
69
|
AlertCauseSchema,
|
|
@@ -59,10 +71,12 @@ export {
|
|
|
59
71
|
AlertSchema,
|
|
60
72
|
AlertSeverityLevelSchema,
|
|
61
73
|
AreaSchema,
|
|
74
|
+
CyclingSpeedSchema,
|
|
62
75
|
DirectionSchema,
|
|
63
76
|
DurationSchema,
|
|
64
77
|
ElevationCostsSchema,
|
|
65
78
|
EncodedPolylineSchema,
|
|
79
|
+
ErrorSchema,
|
|
66
80
|
FareMediaSchema,
|
|
67
81
|
FareMediaTypeSchema,
|
|
68
82
|
FareProductSchema,
|
|
@@ -73,15 +87,24 @@ export {
|
|
|
73
87
|
LocationTypeSchema,
|
|
74
88
|
MatchSchema,
|
|
75
89
|
ModeSchema,
|
|
90
|
+
MultiPolygonSchema,
|
|
76
91
|
PedestrianProfileSchema,
|
|
92
|
+
PedestrianSpeedSchema,
|
|
77
93
|
PickupDropoffTypeSchema,
|
|
78
94
|
PlaceSchema,
|
|
79
95
|
ReachablePlaceSchema,
|
|
80
96
|
ReachableSchema,
|
|
81
97
|
RentalFormFactorSchema,
|
|
82
98
|
RentalPropulsionTypeSchema,
|
|
99
|
+
RentalProviderGroupSchema,
|
|
100
|
+
RentalProviderSchema,
|
|
83
101
|
RentalReturnConstraintSchema,
|
|
84
102
|
RentalSchema,
|
|
103
|
+
RentalStationSchema,
|
|
104
|
+
RentalVehicleSchema,
|
|
105
|
+
RentalVehicleTypeSchema,
|
|
106
|
+
RentalZoneRestrictionsSchema,
|
|
107
|
+
RentalZoneSchema,
|
|
85
108
|
RiderCategorySchema,
|
|
86
109
|
StepInstructionSchema,
|
|
87
110
|
StopTimeSchema,
|
|
@@ -98,6 +121,7 @@ export {
|
|
|
98
121
|
oneToAll,
|
|
99
122
|
oneToMany,
|
|
100
123
|
plan,
|
|
124
|
+
rentals,
|
|
101
125
|
reverseGeocode,
|
|
102
126
|
stops,
|
|
103
127
|
stoptimes,
|