ojp-shared-types 0.1.8 → 0.1.9
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 +1 -1
- package/dist/index.cjs +1 -1
- package/dist/index.d.cts +166 -1
- package/dist/index.d.ts +166 -1
- package/dist/index.js +1 -1
- package/package.json +1 -1
package/README.md
CHANGED
package/dist/index.cjs
CHANGED
package/dist/index.d.cts
CHANGED
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
declare const VERSION = "0.1.
|
|
1
|
+
declare const VERSION = "0.1.9";
|
|
2
2
|
|
|
3
3
|
interface components$k {
|
|
4
4
|
schemas: {
|
|
@@ -902,6 +902,21 @@ interface components$k {
|
|
|
902
902
|
personalModeOfOperation: "self" | "own" | "otherOwned" | "privateLift" | "lease";
|
|
903
903
|
/** @enum {string} */
|
|
904
904
|
personalMode: "foot" | "bicycle" | "car" | "motorcycle" | "truck" | "scooter" | "other";
|
|
905
|
+
mode?: {
|
|
906
|
+
exclude?: boolean;
|
|
907
|
+
ptMode: ("air" | "bus" | "coach" | "trolleyBus" | "metro" | "rail" | "tram" | "water" | "ferry" | "cableway" | "funicular" | "lift" | "telecabin" | "other" | "unknown")[];
|
|
908
|
+
personalMode: ("foot" | "bicycle" | "car" | "motorcycle" | "truck" | "scooter" | "other")[];
|
|
909
|
+
airSubmode?: string;
|
|
910
|
+
busSubmode?: string;
|
|
911
|
+
coachSubmode?: string;
|
|
912
|
+
funicularSubmode?: string;
|
|
913
|
+
metroSubmode?: string;
|
|
914
|
+
tramSubmode?: string;
|
|
915
|
+
telecabinSubmode?: string;
|
|
916
|
+
/** @enum {string} */
|
|
917
|
+
railSubmode?: "international" | "highSpeedRail" | "interregionalRail" | "railShuttle" | "local" | "vehicleTunnelTransportRailService";
|
|
918
|
+
waterSubmode?: string;
|
|
919
|
+
};
|
|
905
920
|
};
|
|
906
921
|
};
|
|
907
922
|
responses: never;
|
|
@@ -7367,6 +7382,21 @@ interface components$6 {
|
|
|
7367
7382
|
personalModeOfOperation: "self" | "own" | "otherOwned" | "privateLift" | "lease";
|
|
7368
7383
|
/** @enum {string} */
|
|
7369
7384
|
personalMode: "foot" | "bicycle" | "car" | "motorcycle" | "truck" | "scooter" | "other";
|
|
7385
|
+
mode?: {
|
|
7386
|
+
exclude?: boolean;
|
|
7387
|
+
ptMode: ("air" | "bus" | "coach" | "trolleyBus" | "metro" | "rail" | "tram" | "water" | "ferry" | "cableway" | "funicular" | "lift" | "telecabin" | "other" | "unknown")[];
|
|
7388
|
+
personalMode: ("foot" | "bicycle" | "car" | "motorcycle" | "truck" | "scooter" | "other")[];
|
|
7389
|
+
airSubmode?: string;
|
|
7390
|
+
busSubmode?: string;
|
|
7391
|
+
coachSubmode?: string;
|
|
7392
|
+
funicularSubmode?: string;
|
|
7393
|
+
metroSubmode?: string;
|
|
7394
|
+
tramSubmode?: string;
|
|
7395
|
+
telecabinSubmode?: string;
|
|
7396
|
+
/** @enum {string} */
|
|
7397
|
+
railSubmode?: "international" | "highSpeedRail" | "interregionalRail" | "railShuttle" | "local" | "vehicleTunnelTransportRailService";
|
|
7398
|
+
waterSubmode?: string;
|
|
7399
|
+
};
|
|
7370
7400
|
};
|
|
7371
7401
|
duration: string;
|
|
7372
7402
|
length?: number;
|
|
@@ -7763,6 +7793,21 @@ interface components$6 {
|
|
|
7763
7793
|
personalModeOfOperation: "self" | "own" | "otherOwned" | "privateLift" | "lease";
|
|
7764
7794
|
/** @enum {string} */
|
|
7765
7795
|
personalMode: "foot" | "bicycle" | "car" | "motorcycle" | "truck" | "scooter" | "other";
|
|
7796
|
+
mode?: {
|
|
7797
|
+
exclude?: boolean;
|
|
7798
|
+
ptMode: ("air" | "bus" | "coach" | "trolleyBus" | "metro" | "rail" | "tram" | "water" | "ferry" | "cableway" | "funicular" | "lift" | "telecabin" | "other" | "unknown")[];
|
|
7799
|
+
personalMode: ("foot" | "bicycle" | "car" | "motorcycle" | "truck" | "scooter" | "other")[];
|
|
7800
|
+
airSubmode?: string;
|
|
7801
|
+
busSubmode?: string;
|
|
7802
|
+
coachSubmode?: string;
|
|
7803
|
+
funicularSubmode?: string;
|
|
7804
|
+
metroSubmode?: string;
|
|
7805
|
+
tramSubmode?: string;
|
|
7806
|
+
telecabinSubmode?: string;
|
|
7807
|
+
/** @enum {string} */
|
|
7808
|
+
railSubmode?: "international" | "highSpeedRail" | "interregionalRail" | "railShuttle" | "local" | "vehicleTunnelTransportRailService";
|
|
7809
|
+
waterSubmode?: string;
|
|
7810
|
+
};
|
|
7766
7811
|
};
|
|
7767
7812
|
duration: string;
|
|
7768
7813
|
length?: number;
|
|
@@ -8172,6 +8217,21 @@ interface components$6 {
|
|
|
8172
8217
|
personalModeOfOperation: "self" | "own" | "otherOwned" | "privateLift" | "lease";
|
|
8173
8218
|
/** @enum {string} */
|
|
8174
8219
|
personalMode: "foot" | "bicycle" | "car" | "motorcycle" | "truck" | "scooter" | "other";
|
|
8220
|
+
mode?: {
|
|
8221
|
+
exclude?: boolean;
|
|
8222
|
+
ptMode: ("air" | "bus" | "coach" | "trolleyBus" | "metro" | "rail" | "tram" | "water" | "ferry" | "cableway" | "funicular" | "lift" | "telecabin" | "other" | "unknown")[];
|
|
8223
|
+
personalMode: ("foot" | "bicycle" | "car" | "motorcycle" | "truck" | "scooter" | "other")[];
|
|
8224
|
+
airSubmode?: string;
|
|
8225
|
+
busSubmode?: string;
|
|
8226
|
+
coachSubmode?: string;
|
|
8227
|
+
funicularSubmode?: string;
|
|
8228
|
+
metroSubmode?: string;
|
|
8229
|
+
tramSubmode?: string;
|
|
8230
|
+
telecabinSubmode?: string;
|
|
8231
|
+
/** @enum {string} */
|
|
8232
|
+
railSubmode?: "international" | "highSpeedRail" | "interregionalRail" | "railShuttle" | "local" | "vehicleTunnelTransportRailService";
|
|
8233
|
+
waterSubmode?: string;
|
|
8234
|
+
};
|
|
8175
8235
|
};
|
|
8176
8236
|
duration: string;
|
|
8177
8237
|
length?: number;
|
|
@@ -8589,6 +8649,21 @@ interface components$6 {
|
|
|
8589
8649
|
personalModeOfOperation: "self" | "own" | "otherOwned" | "privateLift" | "lease";
|
|
8590
8650
|
/** @enum {string} */
|
|
8591
8651
|
personalMode: "foot" | "bicycle" | "car" | "motorcycle" | "truck" | "scooter" | "other";
|
|
8652
|
+
mode?: {
|
|
8653
|
+
exclude?: boolean;
|
|
8654
|
+
ptMode: ("air" | "bus" | "coach" | "trolleyBus" | "metro" | "rail" | "tram" | "water" | "ferry" | "cableway" | "funicular" | "lift" | "telecabin" | "other" | "unknown")[];
|
|
8655
|
+
personalMode: ("foot" | "bicycle" | "car" | "motorcycle" | "truck" | "scooter" | "other")[];
|
|
8656
|
+
airSubmode?: string;
|
|
8657
|
+
busSubmode?: string;
|
|
8658
|
+
coachSubmode?: string;
|
|
8659
|
+
funicularSubmode?: string;
|
|
8660
|
+
metroSubmode?: string;
|
|
8661
|
+
tramSubmode?: string;
|
|
8662
|
+
telecabinSubmode?: string;
|
|
8663
|
+
/** @enum {string} */
|
|
8664
|
+
railSubmode?: "international" | "highSpeedRail" | "interregionalRail" | "railShuttle" | "local" | "vehicleTunnelTransportRailService";
|
|
8665
|
+
waterSubmode?: string;
|
|
8666
|
+
};
|
|
8592
8667
|
};
|
|
8593
8668
|
duration: string;
|
|
8594
8669
|
length?: number;
|
|
@@ -9172,6 +9247,21 @@ interface components$6 {
|
|
|
9172
9247
|
personalModeOfOperation: "self" | "own" | "otherOwned" | "privateLift" | "lease";
|
|
9173
9248
|
/** @enum {string} */
|
|
9174
9249
|
personalMode: "foot" | "bicycle" | "car" | "motorcycle" | "truck" | "scooter" | "other";
|
|
9250
|
+
mode?: {
|
|
9251
|
+
exclude?: boolean;
|
|
9252
|
+
ptMode: ("air" | "bus" | "coach" | "trolleyBus" | "metro" | "rail" | "tram" | "water" | "ferry" | "cableway" | "funicular" | "lift" | "telecabin" | "other" | "unknown")[];
|
|
9253
|
+
personalMode: ("foot" | "bicycle" | "car" | "motorcycle" | "truck" | "scooter" | "other")[];
|
|
9254
|
+
airSubmode?: string;
|
|
9255
|
+
busSubmode?: string;
|
|
9256
|
+
coachSubmode?: string;
|
|
9257
|
+
funicularSubmode?: string;
|
|
9258
|
+
metroSubmode?: string;
|
|
9259
|
+
tramSubmode?: string;
|
|
9260
|
+
telecabinSubmode?: string;
|
|
9261
|
+
/** @enum {string} */
|
|
9262
|
+
railSubmode?: "international" | "highSpeedRail" | "interregionalRail" | "railShuttle" | "local" | "vehicleTunnelTransportRailService";
|
|
9263
|
+
waterSubmode?: string;
|
|
9264
|
+
};
|
|
9175
9265
|
};
|
|
9176
9266
|
duration: string;
|
|
9177
9267
|
length?: number;
|
|
@@ -9761,6 +9851,21 @@ interface components$6 {
|
|
|
9761
9851
|
personalModeOfOperation: "self" | "own" | "otherOwned" | "privateLift" | "lease";
|
|
9762
9852
|
/** @enum {string} */
|
|
9763
9853
|
personalMode: "foot" | "bicycle" | "car" | "motorcycle" | "truck" | "scooter" | "other";
|
|
9854
|
+
mode?: {
|
|
9855
|
+
exclude?: boolean;
|
|
9856
|
+
ptMode: ("air" | "bus" | "coach" | "trolleyBus" | "metro" | "rail" | "tram" | "water" | "ferry" | "cableway" | "funicular" | "lift" | "telecabin" | "other" | "unknown")[];
|
|
9857
|
+
personalMode: ("foot" | "bicycle" | "car" | "motorcycle" | "truck" | "scooter" | "other")[];
|
|
9858
|
+
airSubmode?: string;
|
|
9859
|
+
busSubmode?: string;
|
|
9860
|
+
coachSubmode?: string;
|
|
9861
|
+
funicularSubmode?: string;
|
|
9862
|
+
metroSubmode?: string;
|
|
9863
|
+
tramSubmode?: string;
|
|
9864
|
+
telecabinSubmode?: string;
|
|
9865
|
+
/** @enum {string} */
|
|
9866
|
+
railSubmode?: "international" | "highSpeedRail" | "interregionalRail" | "railShuttle" | "local" | "vehicleTunnelTransportRailService";
|
|
9867
|
+
waterSubmode?: string;
|
|
9868
|
+
};
|
|
9764
9869
|
};
|
|
9765
9870
|
duration: string;
|
|
9766
9871
|
length?: number;
|
|
@@ -13246,6 +13351,21 @@ interface components$3 {
|
|
|
13246
13351
|
personalModeOfOperation: "self" | "own" | "otherOwned" | "privateLift" | "lease";
|
|
13247
13352
|
/** @enum {string} */
|
|
13248
13353
|
personalMode: "foot" | "bicycle" | "car" | "motorcycle" | "truck" | "scooter" | "other";
|
|
13354
|
+
mode?: {
|
|
13355
|
+
exclude?: boolean;
|
|
13356
|
+
ptMode: ("air" | "bus" | "coach" | "trolleyBus" | "metro" | "rail" | "tram" | "water" | "ferry" | "cableway" | "funicular" | "lift" | "telecabin" | "other" | "unknown")[];
|
|
13357
|
+
personalMode: ("foot" | "bicycle" | "car" | "motorcycle" | "truck" | "scooter" | "other")[];
|
|
13358
|
+
airSubmode?: string;
|
|
13359
|
+
busSubmode?: string;
|
|
13360
|
+
coachSubmode?: string;
|
|
13361
|
+
funicularSubmode?: string;
|
|
13362
|
+
metroSubmode?: string;
|
|
13363
|
+
tramSubmode?: string;
|
|
13364
|
+
telecabinSubmode?: string;
|
|
13365
|
+
/** @enum {string} */
|
|
13366
|
+
railSubmode?: "international" | "highSpeedRail" | "interregionalRail" | "railShuttle" | "local" | "vehicleTunnelTransportRailService";
|
|
13367
|
+
waterSubmode?: string;
|
|
13368
|
+
};
|
|
13249
13369
|
};
|
|
13250
13370
|
duration: string;
|
|
13251
13371
|
length?: number;
|
|
@@ -13684,6 +13804,21 @@ interface components$3 {
|
|
|
13684
13804
|
personalModeOfOperation: "self" | "own" | "otherOwned" | "privateLift" | "lease";
|
|
13685
13805
|
/** @enum {string} */
|
|
13686
13806
|
personalMode: "foot" | "bicycle" | "car" | "motorcycle" | "truck" | "scooter" | "other";
|
|
13807
|
+
mode?: {
|
|
13808
|
+
exclude?: boolean;
|
|
13809
|
+
ptMode: ("air" | "bus" | "coach" | "trolleyBus" | "metro" | "rail" | "tram" | "water" | "ferry" | "cableway" | "funicular" | "lift" | "telecabin" | "other" | "unknown")[];
|
|
13810
|
+
personalMode: ("foot" | "bicycle" | "car" | "motorcycle" | "truck" | "scooter" | "other")[];
|
|
13811
|
+
airSubmode?: string;
|
|
13812
|
+
busSubmode?: string;
|
|
13813
|
+
coachSubmode?: string;
|
|
13814
|
+
funicularSubmode?: string;
|
|
13815
|
+
metroSubmode?: string;
|
|
13816
|
+
tramSubmode?: string;
|
|
13817
|
+
telecabinSubmode?: string;
|
|
13818
|
+
/** @enum {string} */
|
|
13819
|
+
railSubmode?: "international" | "highSpeedRail" | "interregionalRail" | "railShuttle" | "local" | "vehicleTunnelTransportRailService";
|
|
13820
|
+
waterSubmode?: string;
|
|
13821
|
+
};
|
|
13687
13822
|
};
|
|
13688
13823
|
duration: string;
|
|
13689
13824
|
length?: number;
|
|
@@ -14281,6 +14416,21 @@ interface components$2 {
|
|
|
14281
14416
|
personalModeOfOperation: "self" | "own" | "otherOwned" | "privateLift" | "lease";
|
|
14282
14417
|
/** @enum {string} */
|
|
14283
14418
|
personalMode: "foot" | "bicycle" | "car" | "motorcycle" | "truck" | "scooter" | "other";
|
|
14419
|
+
mode?: {
|
|
14420
|
+
exclude?: boolean;
|
|
14421
|
+
ptMode: ("air" | "bus" | "coach" | "trolleyBus" | "metro" | "rail" | "tram" | "water" | "ferry" | "cableway" | "funicular" | "lift" | "telecabin" | "other" | "unknown")[];
|
|
14422
|
+
personalMode: ("foot" | "bicycle" | "car" | "motorcycle" | "truck" | "scooter" | "other")[];
|
|
14423
|
+
airSubmode?: string;
|
|
14424
|
+
busSubmode?: string;
|
|
14425
|
+
coachSubmode?: string;
|
|
14426
|
+
funicularSubmode?: string;
|
|
14427
|
+
metroSubmode?: string;
|
|
14428
|
+
tramSubmode?: string;
|
|
14429
|
+
telecabinSubmode?: string;
|
|
14430
|
+
/** @enum {string} */
|
|
14431
|
+
railSubmode?: "international" | "highSpeedRail" | "interregionalRail" | "railShuttle" | "local" | "vehicleTunnelTransportRailService";
|
|
14432
|
+
waterSubmode?: string;
|
|
14433
|
+
};
|
|
14284
14434
|
};
|
|
14285
14435
|
duration: string;
|
|
14286
14436
|
length?: number;
|
|
@@ -14870,6 +15020,21 @@ interface components$2 {
|
|
|
14870
15020
|
personalModeOfOperation: "self" | "own" | "otherOwned" | "privateLift" | "lease";
|
|
14871
15021
|
/** @enum {string} */
|
|
14872
15022
|
personalMode: "foot" | "bicycle" | "car" | "motorcycle" | "truck" | "scooter" | "other";
|
|
15023
|
+
mode?: {
|
|
15024
|
+
exclude?: boolean;
|
|
15025
|
+
ptMode: ("air" | "bus" | "coach" | "trolleyBus" | "metro" | "rail" | "tram" | "water" | "ferry" | "cableway" | "funicular" | "lift" | "telecabin" | "other" | "unknown")[];
|
|
15026
|
+
personalMode: ("foot" | "bicycle" | "car" | "motorcycle" | "truck" | "scooter" | "other")[];
|
|
15027
|
+
airSubmode?: string;
|
|
15028
|
+
busSubmode?: string;
|
|
15029
|
+
coachSubmode?: string;
|
|
15030
|
+
funicularSubmode?: string;
|
|
15031
|
+
metroSubmode?: string;
|
|
15032
|
+
tramSubmode?: string;
|
|
15033
|
+
telecabinSubmode?: string;
|
|
15034
|
+
/** @enum {string} */
|
|
15035
|
+
railSubmode?: "international" | "highSpeedRail" | "interregionalRail" | "railShuttle" | "local" | "vehicleTunnelTransportRailService";
|
|
15036
|
+
waterSubmode?: string;
|
|
15037
|
+
};
|
|
14873
15038
|
};
|
|
14874
15039
|
duration: string;
|
|
14875
15040
|
length?: number;
|
package/dist/index.d.ts
CHANGED
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
declare const VERSION = "0.1.
|
|
1
|
+
declare const VERSION = "0.1.9";
|
|
2
2
|
|
|
3
3
|
interface components$k {
|
|
4
4
|
schemas: {
|
|
@@ -902,6 +902,21 @@ interface components$k {
|
|
|
902
902
|
personalModeOfOperation: "self" | "own" | "otherOwned" | "privateLift" | "lease";
|
|
903
903
|
/** @enum {string} */
|
|
904
904
|
personalMode: "foot" | "bicycle" | "car" | "motorcycle" | "truck" | "scooter" | "other";
|
|
905
|
+
mode?: {
|
|
906
|
+
exclude?: boolean;
|
|
907
|
+
ptMode: ("air" | "bus" | "coach" | "trolleyBus" | "metro" | "rail" | "tram" | "water" | "ferry" | "cableway" | "funicular" | "lift" | "telecabin" | "other" | "unknown")[];
|
|
908
|
+
personalMode: ("foot" | "bicycle" | "car" | "motorcycle" | "truck" | "scooter" | "other")[];
|
|
909
|
+
airSubmode?: string;
|
|
910
|
+
busSubmode?: string;
|
|
911
|
+
coachSubmode?: string;
|
|
912
|
+
funicularSubmode?: string;
|
|
913
|
+
metroSubmode?: string;
|
|
914
|
+
tramSubmode?: string;
|
|
915
|
+
telecabinSubmode?: string;
|
|
916
|
+
/** @enum {string} */
|
|
917
|
+
railSubmode?: "international" | "highSpeedRail" | "interregionalRail" | "railShuttle" | "local" | "vehicleTunnelTransportRailService";
|
|
918
|
+
waterSubmode?: string;
|
|
919
|
+
};
|
|
905
920
|
};
|
|
906
921
|
};
|
|
907
922
|
responses: never;
|
|
@@ -7367,6 +7382,21 @@ interface components$6 {
|
|
|
7367
7382
|
personalModeOfOperation: "self" | "own" | "otherOwned" | "privateLift" | "lease";
|
|
7368
7383
|
/** @enum {string} */
|
|
7369
7384
|
personalMode: "foot" | "bicycle" | "car" | "motorcycle" | "truck" | "scooter" | "other";
|
|
7385
|
+
mode?: {
|
|
7386
|
+
exclude?: boolean;
|
|
7387
|
+
ptMode: ("air" | "bus" | "coach" | "trolleyBus" | "metro" | "rail" | "tram" | "water" | "ferry" | "cableway" | "funicular" | "lift" | "telecabin" | "other" | "unknown")[];
|
|
7388
|
+
personalMode: ("foot" | "bicycle" | "car" | "motorcycle" | "truck" | "scooter" | "other")[];
|
|
7389
|
+
airSubmode?: string;
|
|
7390
|
+
busSubmode?: string;
|
|
7391
|
+
coachSubmode?: string;
|
|
7392
|
+
funicularSubmode?: string;
|
|
7393
|
+
metroSubmode?: string;
|
|
7394
|
+
tramSubmode?: string;
|
|
7395
|
+
telecabinSubmode?: string;
|
|
7396
|
+
/** @enum {string} */
|
|
7397
|
+
railSubmode?: "international" | "highSpeedRail" | "interregionalRail" | "railShuttle" | "local" | "vehicleTunnelTransportRailService";
|
|
7398
|
+
waterSubmode?: string;
|
|
7399
|
+
};
|
|
7370
7400
|
};
|
|
7371
7401
|
duration: string;
|
|
7372
7402
|
length?: number;
|
|
@@ -7763,6 +7793,21 @@ interface components$6 {
|
|
|
7763
7793
|
personalModeOfOperation: "self" | "own" | "otherOwned" | "privateLift" | "lease";
|
|
7764
7794
|
/** @enum {string} */
|
|
7765
7795
|
personalMode: "foot" | "bicycle" | "car" | "motorcycle" | "truck" | "scooter" | "other";
|
|
7796
|
+
mode?: {
|
|
7797
|
+
exclude?: boolean;
|
|
7798
|
+
ptMode: ("air" | "bus" | "coach" | "trolleyBus" | "metro" | "rail" | "tram" | "water" | "ferry" | "cableway" | "funicular" | "lift" | "telecabin" | "other" | "unknown")[];
|
|
7799
|
+
personalMode: ("foot" | "bicycle" | "car" | "motorcycle" | "truck" | "scooter" | "other")[];
|
|
7800
|
+
airSubmode?: string;
|
|
7801
|
+
busSubmode?: string;
|
|
7802
|
+
coachSubmode?: string;
|
|
7803
|
+
funicularSubmode?: string;
|
|
7804
|
+
metroSubmode?: string;
|
|
7805
|
+
tramSubmode?: string;
|
|
7806
|
+
telecabinSubmode?: string;
|
|
7807
|
+
/** @enum {string} */
|
|
7808
|
+
railSubmode?: "international" | "highSpeedRail" | "interregionalRail" | "railShuttle" | "local" | "vehicleTunnelTransportRailService";
|
|
7809
|
+
waterSubmode?: string;
|
|
7810
|
+
};
|
|
7766
7811
|
};
|
|
7767
7812
|
duration: string;
|
|
7768
7813
|
length?: number;
|
|
@@ -8172,6 +8217,21 @@ interface components$6 {
|
|
|
8172
8217
|
personalModeOfOperation: "self" | "own" | "otherOwned" | "privateLift" | "lease";
|
|
8173
8218
|
/** @enum {string} */
|
|
8174
8219
|
personalMode: "foot" | "bicycle" | "car" | "motorcycle" | "truck" | "scooter" | "other";
|
|
8220
|
+
mode?: {
|
|
8221
|
+
exclude?: boolean;
|
|
8222
|
+
ptMode: ("air" | "bus" | "coach" | "trolleyBus" | "metro" | "rail" | "tram" | "water" | "ferry" | "cableway" | "funicular" | "lift" | "telecabin" | "other" | "unknown")[];
|
|
8223
|
+
personalMode: ("foot" | "bicycle" | "car" | "motorcycle" | "truck" | "scooter" | "other")[];
|
|
8224
|
+
airSubmode?: string;
|
|
8225
|
+
busSubmode?: string;
|
|
8226
|
+
coachSubmode?: string;
|
|
8227
|
+
funicularSubmode?: string;
|
|
8228
|
+
metroSubmode?: string;
|
|
8229
|
+
tramSubmode?: string;
|
|
8230
|
+
telecabinSubmode?: string;
|
|
8231
|
+
/** @enum {string} */
|
|
8232
|
+
railSubmode?: "international" | "highSpeedRail" | "interregionalRail" | "railShuttle" | "local" | "vehicleTunnelTransportRailService";
|
|
8233
|
+
waterSubmode?: string;
|
|
8234
|
+
};
|
|
8175
8235
|
};
|
|
8176
8236
|
duration: string;
|
|
8177
8237
|
length?: number;
|
|
@@ -8589,6 +8649,21 @@ interface components$6 {
|
|
|
8589
8649
|
personalModeOfOperation: "self" | "own" | "otherOwned" | "privateLift" | "lease";
|
|
8590
8650
|
/** @enum {string} */
|
|
8591
8651
|
personalMode: "foot" | "bicycle" | "car" | "motorcycle" | "truck" | "scooter" | "other";
|
|
8652
|
+
mode?: {
|
|
8653
|
+
exclude?: boolean;
|
|
8654
|
+
ptMode: ("air" | "bus" | "coach" | "trolleyBus" | "metro" | "rail" | "tram" | "water" | "ferry" | "cableway" | "funicular" | "lift" | "telecabin" | "other" | "unknown")[];
|
|
8655
|
+
personalMode: ("foot" | "bicycle" | "car" | "motorcycle" | "truck" | "scooter" | "other")[];
|
|
8656
|
+
airSubmode?: string;
|
|
8657
|
+
busSubmode?: string;
|
|
8658
|
+
coachSubmode?: string;
|
|
8659
|
+
funicularSubmode?: string;
|
|
8660
|
+
metroSubmode?: string;
|
|
8661
|
+
tramSubmode?: string;
|
|
8662
|
+
telecabinSubmode?: string;
|
|
8663
|
+
/** @enum {string} */
|
|
8664
|
+
railSubmode?: "international" | "highSpeedRail" | "interregionalRail" | "railShuttle" | "local" | "vehicleTunnelTransportRailService";
|
|
8665
|
+
waterSubmode?: string;
|
|
8666
|
+
};
|
|
8592
8667
|
};
|
|
8593
8668
|
duration: string;
|
|
8594
8669
|
length?: number;
|
|
@@ -9172,6 +9247,21 @@ interface components$6 {
|
|
|
9172
9247
|
personalModeOfOperation: "self" | "own" | "otherOwned" | "privateLift" | "lease";
|
|
9173
9248
|
/** @enum {string} */
|
|
9174
9249
|
personalMode: "foot" | "bicycle" | "car" | "motorcycle" | "truck" | "scooter" | "other";
|
|
9250
|
+
mode?: {
|
|
9251
|
+
exclude?: boolean;
|
|
9252
|
+
ptMode: ("air" | "bus" | "coach" | "trolleyBus" | "metro" | "rail" | "tram" | "water" | "ferry" | "cableway" | "funicular" | "lift" | "telecabin" | "other" | "unknown")[];
|
|
9253
|
+
personalMode: ("foot" | "bicycle" | "car" | "motorcycle" | "truck" | "scooter" | "other")[];
|
|
9254
|
+
airSubmode?: string;
|
|
9255
|
+
busSubmode?: string;
|
|
9256
|
+
coachSubmode?: string;
|
|
9257
|
+
funicularSubmode?: string;
|
|
9258
|
+
metroSubmode?: string;
|
|
9259
|
+
tramSubmode?: string;
|
|
9260
|
+
telecabinSubmode?: string;
|
|
9261
|
+
/** @enum {string} */
|
|
9262
|
+
railSubmode?: "international" | "highSpeedRail" | "interregionalRail" | "railShuttle" | "local" | "vehicleTunnelTransportRailService";
|
|
9263
|
+
waterSubmode?: string;
|
|
9264
|
+
};
|
|
9175
9265
|
};
|
|
9176
9266
|
duration: string;
|
|
9177
9267
|
length?: number;
|
|
@@ -9761,6 +9851,21 @@ interface components$6 {
|
|
|
9761
9851
|
personalModeOfOperation: "self" | "own" | "otherOwned" | "privateLift" | "lease";
|
|
9762
9852
|
/** @enum {string} */
|
|
9763
9853
|
personalMode: "foot" | "bicycle" | "car" | "motorcycle" | "truck" | "scooter" | "other";
|
|
9854
|
+
mode?: {
|
|
9855
|
+
exclude?: boolean;
|
|
9856
|
+
ptMode: ("air" | "bus" | "coach" | "trolleyBus" | "metro" | "rail" | "tram" | "water" | "ferry" | "cableway" | "funicular" | "lift" | "telecabin" | "other" | "unknown")[];
|
|
9857
|
+
personalMode: ("foot" | "bicycle" | "car" | "motorcycle" | "truck" | "scooter" | "other")[];
|
|
9858
|
+
airSubmode?: string;
|
|
9859
|
+
busSubmode?: string;
|
|
9860
|
+
coachSubmode?: string;
|
|
9861
|
+
funicularSubmode?: string;
|
|
9862
|
+
metroSubmode?: string;
|
|
9863
|
+
tramSubmode?: string;
|
|
9864
|
+
telecabinSubmode?: string;
|
|
9865
|
+
/** @enum {string} */
|
|
9866
|
+
railSubmode?: "international" | "highSpeedRail" | "interregionalRail" | "railShuttle" | "local" | "vehicleTunnelTransportRailService";
|
|
9867
|
+
waterSubmode?: string;
|
|
9868
|
+
};
|
|
9764
9869
|
};
|
|
9765
9870
|
duration: string;
|
|
9766
9871
|
length?: number;
|
|
@@ -13246,6 +13351,21 @@ interface components$3 {
|
|
|
13246
13351
|
personalModeOfOperation: "self" | "own" | "otherOwned" | "privateLift" | "lease";
|
|
13247
13352
|
/** @enum {string} */
|
|
13248
13353
|
personalMode: "foot" | "bicycle" | "car" | "motorcycle" | "truck" | "scooter" | "other";
|
|
13354
|
+
mode?: {
|
|
13355
|
+
exclude?: boolean;
|
|
13356
|
+
ptMode: ("air" | "bus" | "coach" | "trolleyBus" | "metro" | "rail" | "tram" | "water" | "ferry" | "cableway" | "funicular" | "lift" | "telecabin" | "other" | "unknown")[];
|
|
13357
|
+
personalMode: ("foot" | "bicycle" | "car" | "motorcycle" | "truck" | "scooter" | "other")[];
|
|
13358
|
+
airSubmode?: string;
|
|
13359
|
+
busSubmode?: string;
|
|
13360
|
+
coachSubmode?: string;
|
|
13361
|
+
funicularSubmode?: string;
|
|
13362
|
+
metroSubmode?: string;
|
|
13363
|
+
tramSubmode?: string;
|
|
13364
|
+
telecabinSubmode?: string;
|
|
13365
|
+
/** @enum {string} */
|
|
13366
|
+
railSubmode?: "international" | "highSpeedRail" | "interregionalRail" | "railShuttle" | "local" | "vehicleTunnelTransportRailService";
|
|
13367
|
+
waterSubmode?: string;
|
|
13368
|
+
};
|
|
13249
13369
|
};
|
|
13250
13370
|
duration: string;
|
|
13251
13371
|
length?: number;
|
|
@@ -13684,6 +13804,21 @@ interface components$3 {
|
|
|
13684
13804
|
personalModeOfOperation: "self" | "own" | "otherOwned" | "privateLift" | "lease";
|
|
13685
13805
|
/** @enum {string} */
|
|
13686
13806
|
personalMode: "foot" | "bicycle" | "car" | "motorcycle" | "truck" | "scooter" | "other";
|
|
13807
|
+
mode?: {
|
|
13808
|
+
exclude?: boolean;
|
|
13809
|
+
ptMode: ("air" | "bus" | "coach" | "trolleyBus" | "metro" | "rail" | "tram" | "water" | "ferry" | "cableway" | "funicular" | "lift" | "telecabin" | "other" | "unknown")[];
|
|
13810
|
+
personalMode: ("foot" | "bicycle" | "car" | "motorcycle" | "truck" | "scooter" | "other")[];
|
|
13811
|
+
airSubmode?: string;
|
|
13812
|
+
busSubmode?: string;
|
|
13813
|
+
coachSubmode?: string;
|
|
13814
|
+
funicularSubmode?: string;
|
|
13815
|
+
metroSubmode?: string;
|
|
13816
|
+
tramSubmode?: string;
|
|
13817
|
+
telecabinSubmode?: string;
|
|
13818
|
+
/** @enum {string} */
|
|
13819
|
+
railSubmode?: "international" | "highSpeedRail" | "interregionalRail" | "railShuttle" | "local" | "vehicleTunnelTransportRailService";
|
|
13820
|
+
waterSubmode?: string;
|
|
13821
|
+
};
|
|
13687
13822
|
};
|
|
13688
13823
|
duration: string;
|
|
13689
13824
|
length?: number;
|
|
@@ -14281,6 +14416,21 @@ interface components$2 {
|
|
|
14281
14416
|
personalModeOfOperation: "self" | "own" | "otherOwned" | "privateLift" | "lease";
|
|
14282
14417
|
/** @enum {string} */
|
|
14283
14418
|
personalMode: "foot" | "bicycle" | "car" | "motorcycle" | "truck" | "scooter" | "other";
|
|
14419
|
+
mode?: {
|
|
14420
|
+
exclude?: boolean;
|
|
14421
|
+
ptMode: ("air" | "bus" | "coach" | "trolleyBus" | "metro" | "rail" | "tram" | "water" | "ferry" | "cableway" | "funicular" | "lift" | "telecabin" | "other" | "unknown")[];
|
|
14422
|
+
personalMode: ("foot" | "bicycle" | "car" | "motorcycle" | "truck" | "scooter" | "other")[];
|
|
14423
|
+
airSubmode?: string;
|
|
14424
|
+
busSubmode?: string;
|
|
14425
|
+
coachSubmode?: string;
|
|
14426
|
+
funicularSubmode?: string;
|
|
14427
|
+
metroSubmode?: string;
|
|
14428
|
+
tramSubmode?: string;
|
|
14429
|
+
telecabinSubmode?: string;
|
|
14430
|
+
/** @enum {string} */
|
|
14431
|
+
railSubmode?: "international" | "highSpeedRail" | "interregionalRail" | "railShuttle" | "local" | "vehicleTunnelTransportRailService";
|
|
14432
|
+
waterSubmode?: string;
|
|
14433
|
+
};
|
|
14284
14434
|
};
|
|
14285
14435
|
duration: string;
|
|
14286
14436
|
length?: number;
|
|
@@ -14870,6 +15020,21 @@ interface components$2 {
|
|
|
14870
15020
|
personalModeOfOperation: "self" | "own" | "otherOwned" | "privateLift" | "lease";
|
|
14871
15021
|
/** @enum {string} */
|
|
14872
15022
|
personalMode: "foot" | "bicycle" | "car" | "motorcycle" | "truck" | "scooter" | "other";
|
|
15023
|
+
mode?: {
|
|
15024
|
+
exclude?: boolean;
|
|
15025
|
+
ptMode: ("air" | "bus" | "coach" | "trolleyBus" | "metro" | "rail" | "tram" | "water" | "ferry" | "cableway" | "funicular" | "lift" | "telecabin" | "other" | "unknown")[];
|
|
15026
|
+
personalMode: ("foot" | "bicycle" | "car" | "motorcycle" | "truck" | "scooter" | "other")[];
|
|
15027
|
+
airSubmode?: string;
|
|
15028
|
+
busSubmode?: string;
|
|
15029
|
+
coachSubmode?: string;
|
|
15030
|
+
funicularSubmode?: string;
|
|
15031
|
+
metroSubmode?: string;
|
|
15032
|
+
tramSubmode?: string;
|
|
15033
|
+
telecabinSubmode?: string;
|
|
15034
|
+
/** @enum {string} */
|
|
15035
|
+
railSubmode?: "international" | "highSpeedRail" | "interregionalRail" | "railShuttle" | "local" | "vehicleTunnelTransportRailService";
|
|
15036
|
+
waterSubmode?: string;
|
|
15037
|
+
};
|
|
14873
15038
|
};
|
|
14874
15039
|
duration: string;
|
|
14875
15040
|
length?: number;
|
package/dist/index.js
CHANGED