ojp-shared-types 0.0.20 → 0.0.21

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/index.d.ts CHANGED
@@ -1,6 +1,6 @@
1
- declare const VERSION = "0.0.20";
1
+ declare const VERSION = "0.0.21";
2
2
 
3
- interface components$f {
3
+ interface components$h {
4
4
  schemas: {
5
5
  /** @enum {string} */
6
6
  PersonalModesEnumeration: "foot" | "bicycle" | "car" | "motorcycle" | "truck" | "scooter" | "other";
@@ -80,11 +80,16 @@ interface components$f {
80
80
  ServiceRequestContext: {
81
81
  language?: string;
82
82
  };
83
- PointOfInterestCategory: {
84
- osmTag?: {
83
+ OsmTagStructure: {
84
+ tag: string;
85
+ value: string;
86
+ };
87
+ PointOfInterestCategoryStructure: {
88
+ osmTag: {
85
89
  tag: string;
86
90
  value: string;
87
- };
91
+ }[];
92
+ pointOfInterestClassification: string[];
88
93
  };
89
94
  StopPoint: {
90
95
  stopPointRef: string;
@@ -111,17 +116,32 @@ interface components$f {
111
116
  text: string;
112
117
  };
113
118
  };
119
+ CategoryKeyValueType: {
120
+ key: string;
121
+ value: string;
122
+ };
114
123
  PointOfInterest: {
115
124
  publicCode: string;
116
125
  name: {
117
126
  text: string;
118
127
  };
119
128
  pointOfInterestCategory: {
120
- osmTag?: {
129
+ osmTag: {
121
130
  tag: string;
122
131
  value: string;
123
- };
132
+ }[];
133
+ pointOfInterestClassification: string[];
124
134
  }[];
135
+ privateCode?: {
136
+ system: string;
137
+ value: string;
138
+ };
139
+ pOIAdditionalInformation?: {
140
+ pOIAdditionalInformation: {
141
+ key: string;
142
+ value: string;
143
+ }[];
144
+ };
125
145
  topographicPlaceRef?: string;
126
146
  };
127
147
  Address: {
@@ -131,9 +151,9 @@ interface components$f {
131
151
  };
132
152
  postCode?: string;
133
153
  topographicPlaceName?: string;
134
- TopographicPlaceRef?: string;
135
- Street?: string;
136
- HouseNumber?: string;
154
+ topographicPlaceRef?: string;
155
+ street?: string;
156
+ houseNumber?: string;
137
157
  };
138
158
  ModeStructure: {
139
159
  /** @enum {string} */
@@ -186,11 +206,22 @@ interface components$f {
186
206
  text: string;
187
207
  };
188
208
  pointOfInterestCategory: {
189
- osmTag?: {
209
+ osmTag: {
190
210
  tag: string;
191
211
  value: string;
192
- };
212
+ }[];
213
+ pointOfInterestClassification: string[];
193
214
  }[];
215
+ privateCode?: {
216
+ system: string;
217
+ value: string;
218
+ };
219
+ pOIAdditionalInformation?: {
220
+ pOIAdditionalInformation: {
221
+ key: string;
222
+ value: string;
223
+ }[];
224
+ };
194
225
  topographicPlaceRef?: string;
195
226
  };
196
227
  address?: {
@@ -200,9 +231,9 @@ interface components$f {
200
231
  };
201
232
  postCode?: string;
202
233
  topographicPlaceName?: string;
203
- TopographicPlaceRef?: string;
204
- Street?: string;
205
- HouseNumber?: string;
234
+ topographicPlaceRef?: string;
235
+ street?: string;
236
+ houseNumber?: string;
206
237
  };
207
238
  name: {
208
239
  text: string;
@@ -538,11 +569,22 @@ interface components$f {
538
569
  text: string;
539
570
  };
540
571
  pointOfInterestCategory: {
541
- osmTag?: {
572
+ osmTag: {
542
573
  tag: string;
543
574
  value: string;
544
- };
575
+ }[];
576
+ pointOfInterestClassification: string[];
545
577
  }[];
578
+ privateCode?: {
579
+ system: string;
580
+ value: string;
581
+ };
582
+ pOIAdditionalInformation?: {
583
+ pOIAdditionalInformation: {
584
+ key: string;
585
+ value: string;
586
+ }[];
587
+ };
546
588
  topographicPlaceRef?: string;
547
589
  };
548
590
  address?: {
@@ -552,9 +594,9 @@ interface components$f {
552
594
  };
553
595
  postCode?: string;
554
596
  topographicPlaceName?: string;
555
- TopographicPlaceRef?: string;
556
- Street?: string;
557
- HouseNumber?: string;
597
+ topographicPlaceRef?: string;
598
+ street?: string;
599
+ houseNumber?: string;
558
600
  };
559
601
  name: {
560
602
  text: string;
@@ -720,7 +762,8 @@ interface components$f {
720
762
  };
721
763
  ModeFilterStructure: {
722
764
  exclude?: boolean;
723
- ptMode?: ("air" | "bus" | "coach" | "trolleyBus" | "metro" | "rail" | "tram" | "water" | "ferry" | "cableway" | "funicular" | "lift" | "telecabin" | "other" | "unknown")[];
765
+ ptMode: ("air" | "bus" | "coach" | "trolleyBus" | "metro" | "rail" | "tram" | "water" | "ferry" | "cableway" | "funicular" | "lift" | "telecabin" | "other" | "unknown")[];
766
+ personalMode: ("foot" | "bicycle" | "car" | "motorcycle" | "truck" | "scooter" | "other")[];
724
767
  airSubmode?: string;
725
768
  busSubmode?: string;
726
769
  coachSubmode?: string;
@@ -757,6 +800,18 @@ interface components$f {
757
800
  vehicleRef: string[];
758
801
  trainNumber: string[];
759
802
  };
803
+ GeoRestrictionsStructure: {
804
+ rectangle: {
805
+ upperLeft: {
806
+ longitude: number;
807
+ latitude: number;
808
+ };
809
+ lowerRight: {
810
+ longitude: number;
811
+ latitude: number;
812
+ };
813
+ };
814
+ };
760
815
  };
761
816
  responses: never;
762
817
  parameters: never;
@@ -765,7 +820,7 @@ interface components$f {
765
820
  pathItems: never;
766
821
  }
767
822
 
768
- interface components$e {
823
+ interface components$g {
769
824
  schemas: {
770
825
  DatedJourney: {
771
826
  conventionalModeOfOperation?: string;
@@ -821,6 +876,94 @@ interface components$e {
821
876
  cancelled?: boolean;
822
877
  deviation?: boolean;
823
878
  };
879
+ Location: {
880
+ stopPoint?: {
881
+ stopPointRef: string;
882
+ stopPointName: {
883
+ text: string;
884
+ };
885
+ parentRef?: string;
886
+ plannedQuay?: {
887
+ text: string;
888
+ };
889
+ estimatedQuay?: {
890
+ text: string;
891
+ };
892
+ };
893
+ stopPlace?: {
894
+ stopPlaceRef?: string;
895
+ stopPlaceName?: {
896
+ text: string;
897
+ };
898
+ };
899
+ topographicPlace?: {
900
+ topographicPlaceCode: string;
901
+ topographicPlaceName: {
902
+ text: string;
903
+ };
904
+ };
905
+ pointOfInterest?: {
906
+ publicCode: string;
907
+ name: {
908
+ text: string;
909
+ };
910
+ pointOfInterestCategory: {
911
+ osmTag: {
912
+ tag: string;
913
+ value: string;
914
+ }[];
915
+ pointOfInterestClassification: string[];
916
+ }[];
917
+ privateCode?: {
918
+ system: string;
919
+ value: string;
920
+ };
921
+ pOIAdditionalInformation?: {
922
+ pOIAdditionalInformation: {
923
+ key: string;
924
+ value: string;
925
+ }[];
926
+ };
927
+ topographicPlaceRef?: string;
928
+ };
929
+ address?: {
930
+ publicCode: string;
931
+ name: {
932
+ text: string;
933
+ };
934
+ postCode?: string;
935
+ topographicPlaceName?: string;
936
+ topographicPlaceRef?: string;
937
+ street?: string;
938
+ houseNumber?: string;
939
+ };
940
+ locationName: {
941
+ text: string;
942
+ };
943
+ geoPosition: {
944
+ longitude: number;
945
+ latitude: number;
946
+ };
947
+ mode: {
948
+ /** @enum {string} */
949
+ ptMode: "air" | "bus" | "coach" | "trolleyBus" | "metro" | "rail" | "tram" | "water" | "ferry" | "cableway" | "funicular" | "lift" | "telecabin" | "other" | "unknown";
950
+ airSubmode?: string;
951
+ busSubmode?: string;
952
+ coachSubmode?: string;
953
+ funicularSubmode?: string;
954
+ metroSubmode?: string;
955
+ tramSubmode?: string;
956
+ telecabinSubmode?: string;
957
+ railSubmode?: string;
958
+ waterSubmode?: string;
959
+ name?: {
960
+ text: string;
961
+ };
962
+ shortName?: {
963
+ text: string;
964
+ };
965
+ }[];
966
+ };
824
967
  };
825
968
  responses: never;
826
969
  parameters: never;
@@ -829,7 +972,7 @@ interface components$e {
829
972
  pathItems: never;
830
973
  }
831
974
 
832
- interface components$d {
975
+ interface components$f {
833
976
  schemas: {
834
977
  TimedLeg: {
835
978
  legBoard: {
@@ -1837,7 +1980,464 @@ interface components$d {
1837
1980
  }[];
1838
1981
  };
1839
1982
  };
1840
- }[];
1983
+ }[];
1984
+ };
1985
+ };
1986
+ responses: never;
1987
+ parameters: never;
1988
+ requestBodies: never;
1989
+ headers: never;
1990
+ pathItems: never;
1991
+ }
1992
+
1993
+ interface components$e {
1994
+ schemas: {
1995
+ PlaceParam: {
1996
+ type: ("stop" | "address" | "poi" | "location" | "topographicPlace")[];
1997
+ numberOfResults?: number;
1998
+ modes?: {
1999
+ exclude?: boolean;
2000
+ ptMode: ("air" | "bus" | "coach" | "trolleyBus" | "metro" | "rail" | "tram" | "water" | "ferry" | "cableway" | "funicular" | "lift" | "telecabin" | "other" | "unknown")[];
2001
+ personalMode: ("foot" | "bicycle" | "car" | "motorcycle" | "truck" | "scooter" | "other")[];
2002
+ airSubmode?: string;
2003
+ busSubmode?: string;
2004
+ coachSubmode?: string;
2005
+ funicularSubmode?: string;
2006
+ metroSubmode?: string;
2007
+ tramSubmode?: string;
2008
+ telecabinSubmode?: string;
2009
+ railSubmode?: string;
2010
+ waterSubmode?: string;
2011
+ };
2012
+ includePtModes?: boolean;
2013
+ };
2014
+ InitialInput: {
2015
+ name?: string;
2016
+ geoRestriction?: {
2017
+ rectangle: {
2018
+ upperLeft: {
2019
+ longitude: number;
2020
+ latitude: number;
2021
+ };
2022
+ lowerRight: {
2023
+ longitude: number;
2024
+ latitude: number;
2025
+ };
2026
+ };
2027
+ };
2028
+ };
2029
+ OJPLocationInformationRequest: {
2030
+ requestTimestamp: string;
2031
+ initialInput?: {
2032
+ name?: string;
2033
+ geoRestriction?: {
2034
+ rectangle: {
2035
+ upperLeft: {
2036
+ longitude: number;
2037
+ latitude: number;
2038
+ };
2039
+ lowerRight: {
2040
+ longitude: number;
2041
+ latitude: number;
2042
+ };
2043
+ };
2044
+ };
2045
+ };
2046
+ placeRef?: {
2047
+ stopPointRef?: string;
2048
+ stopPlaceRef?: string;
2049
+ geoPosition?: {
2050
+ longitude: number;
2051
+ latitude: number;
2052
+ };
2053
+ name: {
2054
+ text: string;
2055
+ };
2056
+ };
2057
+ restrictions?: {
2058
+ type: ("stop" | "address" | "poi" | "location" | "topographicPlace")[];
2059
+ numberOfResults?: number;
2060
+ modes?: {
2061
+ exclude?: boolean;
2062
+ ptMode: ("air" | "bus" | "coach" | "trolleyBus" | "metro" | "rail" | "tram" | "water" | "ferry" | "cableway" | "funicular" | "lift" | "telecabin" | "other" | "unknown")[];
2063
+ personalMode: ("foot" | "bicycle" | "car" | "motorcycle" | "truck" | "scooter" | "other")[];
2064
+ airSubmode?: string;
2065
+ busSubmode?: string;
2066
+ coachSubmode?: string;
2067
+ funicularSubmode?: string;
2068
+ metroSubmode?: string;
2069
+ tramSubmode?: string;
2070
+ telecabinSubmode?: string;
2071
+ railSubmode?: string;
2072
+ waterSubmode?: string;
2073
+ };
2074
+ includePtModes?: boolean;
2075
+ };
2076
+ };
2077
+ OJP: {
2078
+ OJPRequest: {
2079
+ serviceRequest: {
2080
+ serviceRequestContext?: {
2081
+ language?: string;
2082
+ };
2083
+ requestTimestamp: string;
2084
+ requestorRef: string;
2085
+ OJPLocationInformationRequest: {
2086
+ requestTimestamp: string;
2087
+ initialInput?: {
2088
+ name?: string;
2089
+ geoRestriction?: {
2090
+ rectangle: {
2091
+ upperLeft: {
2092
+ longitude: number;
2093
+ latitude: number;
2094
+ };
2095
+ lowerRight: {
2096
+ longitude: number;
2097
+ latitude: number;
2098
+ };
2099
+ };
2100
+ };
2101
+ };
2102
+ placeRef?: {
2103
+ stopPointRef?: string;
2104
+ stopPlaceRef?: string;
2105
+ geoPosition?: {
2106
+ longitude: number;
2107
+ latitude: number;
2108
+ };
2109
+ name: {
2110
+ text: string;
2111
+ };
2112
+ };
2113
+ restrictions?: {
2114
+ type: ("stop" | "address" | "poi" | "location" | "topographicPlace")[];
2115
+ numberOfResults?: number;
2116
+ modes?: {
2117
+ exclude?: boolean;
2118
+ ptMode: ("air" | "bus" | "coach" | "trolleyBus" | "metro" | "rail" | "tram" | "water" | "ferry" | "cableway" | "funicular" | "lift" | "telecabin" | "other" | "unknown")[];
2119
+ personalMode: ("foot" | "bicycle" | "car" | "motorcycle" | "truck" | "scooter" | "other")[];
2120
+ airSubmode?: string;
2121
+ busSubmode?: string;
2122
+ coachSubmode?: string;
2123
+ funicularSubmode?: string;
2124
+ metroSubmode?: string;
2125
+ tramSubmode?: string;
2126
+ telecabinSubmode?: string;
2127
+ railSubmode?: string;
2128
+ waterSubmode?: string;
2129
+ };
2130
+ includePtModes?: boolean;
2131
+ };
2132
+ };
2133
+ };
2134
+ };
2135
+ };
2136
+ };
2137
+ responses: never;
2138
+ parameters: never;
2139
+ requestBodies: never;
2140
+ headers: never;
2141
+ pathItems: never;
2142
+ }
2143
+
2144
+ interface components$d {
2145
+ schemas: {
2146
+ PlaceResult: {
2147
+ place: {
2148
+ stopPoint?: {
2149
+ stopPointRef: string;
2150
+ stopPointName: {
2151
+ text: string;
2152
+ };
2153
+ parentRef?: string;
2154
+ plannedQuay?: {
2155
+ text: string;
2156
+ };
2157
+ estimatedQuay?: {
2158
+ text: string;
2159
+ };
2160
+ };
2161
+ stopPlace?: {
2162
+ stopPlaceRef?: string;
2163
+ stopPlaceName?: {
2164
+ text: string;
2165
+ };
2166
+ };
2167
+ topographicPlace?: {
2168
+ topographicPlaceCode: string;
2169
+ topographicPlaceName: {
2170
+ text: string;
2171
+ };
2172
+ };
2173
+ pointOfInterest?: {
2174
+ publicCode: string;
2175
+ name: {
2176
+ text: string;
2177
+ };
2178
+ pointOfInterestCategory: {
2179
+ osmTag: {
2180
+ tag: string;
2181
+ value: string;
2182
+ }[];
2183
+ pointOfInterestClassification: string[];
2184
+ }[];
2185
+ privateCode?: {
2186
+ system: string;
2187
+ value: string;
2188
+ };
2189
+ pOIAdditionalInformation?: {
2190
+ pOIAdditionalInformation: {
2191
+ key: string;
2192
+ value: string;
2193
+ }[];
2194
+ };
2195
+ topographicPlaceRef?: string;
2196
+ };
2197
+ address?: {
2198
+ publicCode: string;
2199
+ name: {
2200
+ text: string;
2201
+ };
2202
+ postCode?: string;
2203
+ topographicPlaceName?: string;
2204
+ topographicPlaceRef?: string;
2205
+ street?: string;
2206
+ houseNumber?: string;
2207
+ };
2208
+ name: {
2209
+ text: string;
2210
+ };
2211
+ geoPosition: {
2212
+ longitude: number;
2213
+ latitude: number;
2214
+ };
2215
+ mode: {
2216
+ /** @enum {string} */
2217
+ ptMode: "air" | "bus" | "coach" | "trolleyBus" | "metro" | "rail" | "tram" | "water" | "ferry" | "cableway" | "funicular" | "lift" | "telecabin" | "other" | "unknown";
2218
+ airSubmode?: string;
2219
+ busSubmode?: string;
2220
+ coachSubmode?: string;
2221
+ funicularSubmode?: string;
2222
+ metroSubmode?: string;
2223
+ tramSubmode?: string;
2224
+ telecabinSubmode?: string;
2225
+ railSubmode?: string;
2226
+ waterSubmode?: string;
2227
+ name?: {
2228
+ text: string;
2229
+ };
2230
+ shortName?: {
2231
+ text: string;
2232
+ };
2233
+ }[];
2234
+ };
2235
+ complete: boolean;
2236
+ probability?: number;
2237
+ };
2238
+ OJPLocationInformationDelivery: {
2239
+ responseTimestamp: string;
2240
+ requestMessageRef?: string;
2241
+ defaultLanguage?: string;
2242
+ calcTime?: string;
2243
+ placeResult: {
2244
+ place: {
2245
+ stopPoint?: {
2246
+ stopPointRef: string;
2247
+ stopPointName: {
2248
+ text: string;
2249
+ };
2250
+ parentRef?: string;
2251
+ plannedQuay?: {
2252
+ text: string;
2253
+ };
2254
+ estimatedQuay?: {
2255
+ text: string;
2256
+ };
2257
+ };
2258
+ stopPlace?: {
2259
+ stopPlaceRef?: string;
2260
+ stopPlaceName?: {
2261
+ text: string;
2262
+ };
2263
+ };
2264
+ topographicPlace?: {
2265
+ topographicPlaceCode: string;
2266
+ topographicPlaceName: {
2267
+ text: string;
2268
+ };
2269
+ };
2270
+ pointOfInterest?: {
2271
+ publicCode: string;
2272
+ name: {
2273
+ text: string;
2274
+ };
2275
+ pointOfInterestCategory: {
2276
+ osmTag: {
2277
+ tag: string;
2278
+ value: string;
2279
+ }[];
2280
+ pointOfInterestClassification: string[];
2281
+ }[];
2282
+ privateCode?: {
2283
+ system: string;
2284
+ value: string;
2285
+ };
2286
+ pOIAdditionalInformation?: {
2287
+ pOIAdditionalInformation: {
2288
+ key: string;
2289
+ value: string;
2290
+ }[];
2291
+ };
2292
+ topographicPlaceRef?: string;
2293
+ };
2294
+ address?: {
2295
+ publicCode: string;
2296
+ name: {
2297
+ text: string;
2298
+ };
2299
+ postCode?: string;
2300
+ topographicPlaceName?: string;
2301
+ topographicPlaceRef?: string;
2302
+ street?: string;
2303
+ houseNumber?: string;
2304
+ };
2305
+ name: {
2306
+ text: string;
2307
+ };
2308
+ geoPosition: {
2309
+ longitude: number;
2310
+ latitude: number;
2311
+ };
2312
+ mode: {
2313
+ /** @enum {string} */
2314
+ ptMode: "air" | "bus" | "coach" | "trolleyBus" | "metro" | "rail" | "tram" | "water" | "ferry" | "cableway" | "funicular" | "lift" | "telecabin" | "other" | "unknown";
2315
+ airSubmode?: string;
2316
+ busSubmode?: string;
2317
+ coachSubmode?: string;
2318
+ funicularSubmode?: string;
2319
+ metroSubmode?: string;
2320
+ tramSubmode?: string;
2321
+ telecabinSubmode?: string;
2322
+ railSubmode?: string;
2323
+ waterSubmode?: string;
2324
+ name?: {
2325
+ text: string;
2326
+ };
2327
+ shortName?: {
2328
+ text: string;
2329
+ };
2330
+ }[];
2331
+ };
2332
+ complete: boolean;
2333
+ probability?: number;
2334
+ }[];
2335
+ };
2336
+ OJP: {
2337
+ OJPResponse: {
2338
+ serviceDelivery: {
2339
+ responseTimestamp: string;
2340
+ producerRef: string;
2341
+ OJPLocationInformationDelivery: {
2342
+ responseTimestamp: string;
2343
+ requestMessageRef?: string;
2344
+ defaultLanguage?: string;
2345
+ calcTime?: string;
2346
+ placeResult: {
2347
+ place: {
2348
+ stopPoint?: {
2349
+ stopPointRef: string;
2350
+ stopPointName: {
2351
+ text: string;
2352
+ };
2353
+ parentRef?: string;
2354
+ plannedQuay?: {
2355
+ text: string;
2356
+ };
2357
+ estimatedQuay?: {
2358
+ text: string;
2359
+ };
2360
+ };
2361
+ stopPlace?: {
2362
+ stopPlaceRef?: string;
2363
+ stopPlaceName?: {
2364
+ text: string;
2365
+ };
2366
+ };
2367
+ topographicPlace?: {
2368
+ topographicPlaceCode: string;
2369
+ topographicPlaceName: {
2370
+ text: string;
2371
+ };
2372
+ };
2373
+ pointOfInterest?: {
2374
+ publicCode: string;
2375
+ name: {
2376
+ text: string;
2377
+ };
2378
+ pointOfInterestCategory: {
2379
+ osmTag: {
2380
+ tag: string;
2381
+ value: string;
2382
+ }[];
2383
+ pointOfInterestClassification: string[];
2384
+ }[];
2385
+ privateCode?: {
2386
+ system: string;
2387
+ value: string;
2388
+ };
2389
+ pOIAdditionalInformation?: {
2390
+ pOIAdditionalInformation: {
2391
+ key: string;
2392
+ value: string;
2393
+ }[];
2394
+ };
2395
+ topographicPlaceRef?: string;
2396
+ };
2397
+ address?: {
2398
+ publicCode: string;
2399
+ name: {
2400
+ text: string;
2401
+ };
2402
+ postCode?: string;
2403
+ topographicPlaceName?: string;
2404
+ topographicPlaceRef?: string;
2405
+ street?: string;
2406
+ houseNumber?: string;
2407
+ };
2408
+ name: {
2409
+ text: string;
2410
+ };
2411
+ geoPosition: {
2412
+ longitude: number;
2413
+ latitude: number;
2414
+ };
2415
+ mode: {
2416
+ /** @enum {string} */
2417
+ ptMode: "air" | "bus" | "coach" | "trolleyBus" | "metro" | "rail" | "tram" | "water" | "ferry" | "cableway" | "funicular" | "lift" | "telecabin" | "other" | "unknown";
2418
+ airSubmode?: string;
2419
+ busSubmode?: string;
2420
+ coachSubmode?: string;
2421
+ funicularSubmode?: string;
2422
+ metroSubmode?: string;
2423
+ tramSubmode?: string;
2424
+ telecabinSubmode?: string;
2425
+ railSubmode?: string;
2426
+ waterSubmode?: string;
2427
+ name?: {
2428
+ text: string;
2429
+ };
2430
+ shortName?: {
2431
+ text: string;
2432
+ };
2433
+ }[];
2434
+ };
2435
+ complete: boolean;
2436
+ probability?: number;
2437
+ }[];
2438
+ };
2439
+ };
2440
+ };
1841
2441
  };
1842
2442
  };
1843
2443
  responses: never;
@@ -1854,7 +2454,8 @@ interface components$c {
1854
2454
  numberOfResults?: number;
1855
2455
  modes?: {
1856
2456
  exclude?: boolean;
1857
- ptMode?: ("air" | "bus" | "coach" | "trolleyBus" | "metro" | "rail" | "tram" | "water" | "ferry" | "cableway" | "funicular" | "lift" | "telecabin" | "other" | "unknown")[];
2457
+ ptMode: ("air" | "bus" | "coach" | "trolleyBus" | "metro" | "rail" | "tram" | "water" | "ferry" | "cableway" | "funicular" | "lift" | "telecabin" | "other" | "unknown")[];
2458
+ personalMode: ("foot" | "bicycle" | "car" | "motorcycle" | "truck" | "scooter" | "other")[];
1858
2459
  airSubmode?: string;
1859
2460
  busSubmode?: string;
1860
2461
  coachSubmode?: string;
@@ -1868,7 +2469,7 @@ interface components$c {
1868
2469
  includePtModes?: boolean;
1869
2470
  };
1870
2471
  InitialInput: {
1871
- name?: string;
2472
+ locationName?: string;
1872
2473
  geoRestriction?: {
1873
2474
  rectangle: {
1874
2475
  upperLeft: {
@@ -1885,7 +2486,7 @@ interface components$c {
1885
2486
  OJPLocationInformationRequest: {
1886
2487
  requestTimestamp: string;
1887
2488
  initialInput?: {
1888
- name?: string;
2489
+ locationName?: string;
1889
2490
  geoRestriction?: {
1890
2491
  rectangle: {
1891
2492
  upperLeft: {
@@ -1915,7 +2516,8 @@ interface components$c {
1915
2516
  numberOfResults?: number;
1916
2517
  modes?: {
1917
2518
  exclude?: boolean;
1918
- ptMode?: ("air" | "bus" | "coach" | "trolleyBus" | "metro" | "rail" | "tram" | "water" | "ferry" | "cableway" | "funicular" | "lift" | "telecabin" | "other" | "unknown")[];
2519
+ ptMode: ("air" | "bus" | "coach" | "trolleyBus" | "metro" | "rail" | "tram" | "water" | "ferry" | "cableway" | "funicular" | "lift" | "telecabin" | "other" | "unknown")[];
2520
+ personalMode: ("foot" | "bicycle" | "car" | "motorcycle" | "truck" | "scooter" | "other")[];
1919
2521
  airSubmode?: string;
1920
2522
  busSubmode?: string;
1921
2523
  coachSubmode?: string;
@@ -1940,7 +2542,7 @@ interface components$c {
1940
2542
  OJPLocationInformationRequest: {
1941
2543
  requestTimestamp: string;
1942
2544
  initialInput?: {
1943
- name?: string;
2545
+ locationName?: string;
1944
2546
  geoRestriction?: {
1945
2547
  rectangle: {
1946
2548
  upperLeft: {
@@ -1970,7 +2572,8 @@ interface components$c {
1970
2572
  numberOfResults?: number;
1971
2573
  modes?: {
1972
2574
  exclude?: boolean;
1973
- ptMode?: ("air" | "bus" | "coach" | "trolleyBus" | "metro" | "rail" | "tram" | "water" | "ferry" | "cableway" | "funicular" | "lift" | "telecabin" | "other" | "unknown")[];
2575
+ ptMode: ("air" | "bus" | "coach" | "trolleyBus" | "metro" | "rail" | "tram" | "water" | "ferry" | "cableway" | "funicular" | "lift" | "telecabin" | "other" | "unknown")[];
2576
+ personalMode: ("foot" | "bicycle" | "car" | "motorcycle" | "truck" | "scooter" | "other")[];
1974
2577
  airSubmode?: string;
1975
2578
  busSubmode?: string;
1976
2579
  coachSubmode?: string;
@@ -1997,8 +2600,8 @@ interface components$c {
1997
2600
 
1998
2601
  interface components$b {
1999
2602
  schemas: {
2000
- PlaceResult: {
2001
- place: {
2603
+ LocationResult: {
2604
+ location: {
2002
2605
  stopPoint?: {
2003
2606
  stopPointRef: string;
2004
2607
  stopPointName: {
@@ -2030,11 +2633,22 @@ interface components$b {
2030
2633
  text: string;
2031
2634
  };
2032
2635
  pointOfInterestCategory: {
2033
- osmTag?: {
2636
+ osmTag: {
2034
2637
  tag: string;
2035
2638
  value: string;
2036
- };
2639
+ }[];
2640
+ pointOfInterestClassification: string[];
2037
2641
  }[];
2642
+ privateCode?: {
2643
+ system: string;
2644
+ value: string;
2645
+ };
2646
+ pOIAdditionalInformation?: {
2647
+ pOIAdditionalInformation: {
2648
+ key: string;
2649
+ value: string;
2650
+ }[];
2651
+ };
2038
2652
  topographicPlaceRef?: string;
2039
2653
  };
2040
2654
  address?: {
@@ -2044,11 +2658,11 @@ interface components$b {
2044
2658
  };
2045
2659
  postCode?: string;
2046
2660
  topographicPlaceName?: string;
2047
- TopographicPlaceRef?: string;
2048
- Street?: string;
2049
- HouseNumber?: string;
2661
+ topographicPlaceRef?: string;
2662
+ street?: string;
2663
+ houseNumber?: string;
2050
2664
  };
2051
- name: {
2665
+ locationName: {
2052
2666
  text: string;
2053
2667
  };
2054
2668
  geoPosition: {
@@ -2083,8 +2697,8 @@ interface components$b {
2083
2697
  requestMessageRef?: string;
2084
2698
  defaultLanguage?: string;
2085
2699
  calcTime?: string;
2086
- placeResult: {
2087
- place: {
2700
+ location: {
2701
+ location: {
2088
2702
  stopPoint?: {
2089
2703
  stopPointRef: string;
2090
2704
  stopPointName: {
@@ -2116,11 +2730,22 @@ interface components$b {
2116
2730
  text: string;
2117
2731
  };
2118
2732
  pointOfInterestCategory: {
2119
- osmTag?: {
2733
+ osmTag: {
2120
2734
  tag: string;
2121
2735
  value: string;
2122
- };
2736
+ }[];
2737
+ pointOfInterestClassification: string[];
2123
2738
  }[];
2739
+ privateCode?: {
2740
+ system: string;
2741
+ value: string;
2742
+ };
2743
+ pOIAdditionalInformation?: {
2744
+ pOIAdditionalInformation: {
2745
+ key: string;
2746
+ value: string;
2747
+ }[];
2748
+ };
2124
2749
  topographicPlaceRef?: string;
2125
2750
  };
2126
2751
  address?: {
@@ -2130,11 +2755,11 @@ interface components$b {
2130
2755
  };
2131
2756
  postCode?: string;
2132
2757
  topographicPlaceName?: string;
2133
- TopographicPlaceRef?: string;
2134
- Street?: string;
2135
- HouseNumber?: string;
2758
+ topographicPlaceRef?: string;
2759
+ street?: string;
2760
+ houseNumber?: string;
2136
2761
  };
2137
- name: {
2762
+ locationName: {
2138
2763
  text: string;
2139
2764
  };
2140
2765
  geoPosition: {
@@ -2175,8 +2800,8 @@ interface components$b {
2175
2800
  requestMessageRef?: string;
2176
2801
  defaultLanguage?: string;
2177
2802
  calcTime?: string;
2178
- placeResult: {
2179
- place: {
2803
+ location: {
2804
+ location: {
2180
2805
  stopPoint?: {
2181
2806
  stopPointRef: string;
2182
2807
  stopPointName: {
@@ -2208,11 +2833,22 @@ interface components$b {
2208
2833
  text: string;
2209
2834
  };
2210
2835
  pointOfInterestCategory: {
2211
- osmTag?: {
2836
+ osmTag: {
2212
2837
  tag: string;
2213
2838
  value: string;
2214
- };
2839
+ }[];
2840
+ pointOfInterestClassification: string[];
2215
2841
  }[];
2842
+ privateCode?: {
2843
+ system: string;
2844
+ value: string;
2845
+ };
2846
+ pOIAdditionalInformation?: {
2847
+ pOIAdditionalInformation: {
2848
+ key: string;
2849
+ value: string;
2850
+ }[];
2851
+ };
2216
2852
  topographicPlaceRef?: string;
2217
2853
  };
2218
2854
  address?: {
@@ -2222,11 +2858,11 @@ interface components$b {
2222
2858
  };
2223
2859
  postCode?: string;
2224
2860
  topographicPlaceName?: string;
2225
- TopographicPlaceRef?: string;
2226
- Street?: string;
2227
- HouseNumber?: string;
2861
+ topographicPlaceRef?: string;
2862
+ street?: string;
2863
+ houseNumber?: string;
2228
2864
  };
2229
- name: {
2865
+ locationName: {
2230
2866
  text: string;
2231
2867
  };
2232
2868
  geoPosition: {
@@ -2978,11 +3614,22 @@ interface components$9 {
2978
3614
  text: string;
2979
3615
  };
2980
3616
  pointOfInterestCategory: {
2981
- osmTag?: {
3617
+ osmTag: {
2982
3618
  tag: string;
2983
3619
  value: string;
2984
- };
3620
+ }[];
3621
+ pointOfInterestClassification: string[];
2985
3622
  }[];
3623
+ privateCode?: {
3624
+ system: string;
3625
+ value: string;
3626
+ };
3627
+ pOIAdditionalInformation?: {
3628
+ pOIAdditionalInformation: {
3629
+ key: string;
3630
+ value: string;
3631
+ }[];
3632
+ };
2986
3633
  topographicPlaceRef?: string;
2987
3634
  };
2988
3635
  address?: {
@@ -2992,9 +3639,9 @@ interface components$9 {
2992
3639
  };
2993
3640
  postCode?: string;
2994
3641
  topographicPlaceName?: string;
2995
- TopographicPlaceRef?: string;
2996
- Street?: string;
2997
- HouseNumber?: string;
3642
+ topographicPlaceRef?: string;
3643
+ street?: string;
3644
+ houseNumber?: string;
2998
3645
  };
2999
3646
  name: {
3000
3647
  text: string;
@@ -3310,11 +3957,22 @@ interface components$9 {
3310
3957
  text: string;
3311
3958
  };
3312
3959
  pointOfInterestCategory: {
3313
- osmTag?: {
3960
+ osmTag: {
3314
3961
  tag: string;
3315
3962
  value: string;
3316
- };
3963
+ }[];
3964
+ pointOfInterestClassification: string[];
3317
3965
  }[];
3966
+ privateCode?: {
3967
+ system: string;
3968
+ value: string;
3969
+ };
3970
+ pOIAdditionalInformation?: {
3971
+ pOIAdditionalInformation: {
3972
+ key: string;
3973
+ value: string;
3974
+ }[];
3975
+ };
3318
3976
  topographicPlaceRef?: string;
3319
3977
  };
3320
3978
  address?: {
@@ -3324,9 +3982,9 @@ interface components$9 {
3324
3982
  };
3325
3983
  postCode?: string;
3326
3984
  topographicPlaceName?: string;
3327
- TopographicPlaceRef?: string;
3328
- Street?: string;
3329
- HouseNumber?: string;
3985
+ topographicPlaceRef?: string;
3986
+ street?: string;
3987
+ houseNumber?: string;
3330
3988
  };
3331
3989
  name: {
3332
3990
  text: string;
@@ -3869,11 +4527,22 @@ interface components$7 {
3869
4527
  text: string;
3870
4528
  };
3871
4529
  pointOfInterestCategory: {
3872
- osmTag?: {
4530
+ osmTag: {
3873
4531
  tag: string;
3874
4532
  value: string;
3875
- };
4533
+ }[];
4534
+ pointOfInterestClassification: string[];
3876
4535
  }[];
4536
+ privateCode?: {
4537
+ system: string;
4538
+ value: string;
4539
+ };
4540
+ pOIAdditionalInformation?: {
4541
+ pOIAdditionalInformation: {
4542
+ key: string;
4543
+ value: string;
4544
+ }[];
4545
+ };
3877
4546
  topographicPlaceRef?: string;
3878
4547
  };
3879
4548
  address?: {
@@ -3883,9 +4552,9 @@ interface components$7 {
3883
4552
  };
3884
4553
  postCode?: string;
3885
4554
  topographicPlaceName?: string;
3886
- TopographicPlaceRef?: string;
3887
- Street?: string;
3888
- HouseNumber?: string;
4555
+ topographicPlaceRef?: string;
4556
+ street?: string;
4557
+ houseNumber?: string;
3889
4558
  };
3890
4559
  name: {
3891
4560
  text: string;
@@ -4187,11 +4856,22 @@ interface components$7 {
4187
4856
  text: string;
4188
4857
  };
4189
4858
  pointOfInterestCategory: {
4190
- osmTag?: {
4859
+ osmTag: {
4191
4860
  tag: string;
4192
4861
  value: string;
4193
- };
4862
+ }[];
4863
+ pointOfInterestClassification: string[];
4194
4864
  }[];
4865
+ privateCode?: {
4866
+ system: string;
4867
+ value: string;
4868
+ };
4869
+ pOIAdditionalInformation?: {
4870
+ pOIAdditionalInformation: {
4871
+ key: string;
4872
+ value: string;
4873
+ }[];
4874
+ };
4195
4875
  topographicPlaceRef?: string;
4196
4876
  };
4197
4877
  address?: {
@@ -4201,9 +4881,9 @@ interface components$7 {
4201
4881
  };
4202
4882
  postCode?: string;
4203
4883
  topographicPlaceName?: string;
4204
- TopographicPlaceRef?: string;
4205
- Street?: string;
4206
- HouseNumber?: string;
4884
+ topographicPlaceRef?: string;
4885
+ street?: string;
4886
+ houseNumber?: string;
4207
4887
  };
4208
4888
  name: {
4209
4889
  text: string;
@@ -4474,6 +5154,157 @@ interface components$7 {
4474
5154
 
4475
5155
  interface components$6 {
4476
5156
  schemas: {
5157
+ ResponseContextStructure: {
5158
+ places?: {
5159
+ location: {
5160
+ stopPoint?: {
5161
+ stopPointRef: string;
5162
+ stopPointName: {
5163
+ text: string;
5164
+ };
5165
+ parentRef?: string;
5166
+ plannedQuay?: {
5167
+ text: string;
5168
+ };
5169
+ estimatedQuay?: {
5170
+ text: string;
5171
+ };
5172
+ };
5173
+ stopPlace?: {
5174
+ stopPlaceRef?: string;
5175
+ stopPlaceName?: {
5176
+ text: string;
5177
+ };
5178
+ };
5179
+ topographicPlace?: {
5180
+ topographicPlaceCode: string;
5181
+ topographicPlaceName: {
5182
+ text: string;
5183
+ };
5184
+ };
5185
+ pointOfInterest?: {
5186
+ publicCode: string;
5187
+ name: {
5188
+ text: string;
5189
+ };
5190
+ pointOfInterestCategory: {
5191
+ osmTag: {
5192
+ tag: string;
5193
+ value: string;
5194
+ }[];
5195
+ pointOfInterestClassification: string[];
5196
+ }[];
5197
+ privateCode?: {
5198
+ system: string;
5199
+ value: string;
5200
+ };
5201
+ pOIAdditionalInformation?: {
5202
+ pOIAdditionalInformation: {
5203
+ key: string;
5204
+ value: string;
5205
+ }[];
5206
+ };
5207
+ topographicPlaceRef?: string;
5208
+ };
5209
+ address?: {
5210
+ publicCode: string;
5211
+ name: {
5212
+ text: string;
5213
+ };
5214
+ postCode?: string;
5215
+ topographicPlaceName?: string;
5216
+ topographicPlaceRef?: string;
5217
+ street?: string;
5218
+ houseNumber?: string;
5219
+ };
5220
+ locationName: {
5221
+ text: string;
5222
+ };
5223
+ geoPosition: {
5224
+ longitude: number;
5225
+ latitude: number;
5226
+ };
5227
+ mode: {
5228
+ /** @enum {string} */
5229
+ ptMode: "air" | "bus" | "coach" | "trolleyBus" | "metro" | "rail" | "tram" | "water" | "ferry" | "cableway" | "funicular" | "lift" | "telecabin" | "other" | "unknown";
5230
+ airSubmode?: string;
5231
+ busSubmode?: string;
5232
+ coachSubmode?: string;
5233
+ funicularSubmode?: string;
5234
+ metroSubmode?: string;
5235
+ tramSubmode?: string;
5236
+ telecabinSubmode?: string;
5237
+ railSubmode?: string;
5238
+ waterSubmode?: string;
5239
+ name?: {
5240
+ text: string;
5241
+ };
5242
+ shortName?: {
5243
+ text: string;
5244
+ };
5245
+ }[];
5246
+ }[];
5247
+ };
5248
+ situations?: {
5249
+ ptSituation: {
5250
+ creationTime: string;
5251
+ participantRef?: string;
5252
+ situationNumber: string;
5253
+ version?: number;
5254
+ source: {
5255
+ /** @enum {string} */
5256
+ sourceType: "directReport" | "email" | "phone" | "fax" | "post" | "feed" | "radio" | "tv" | "web" | "pager" | "text" | "other";
5257
+ };
5258
+ validityPeriod: {
5259
+ startTime: string;
5260
+ endTime?: string;
5261
+ }[];
5262
+ alertCause: string;
5263
+ priority?: string;
5264
+ scopeType?: string;
5265
+ publishingActions?: {
5266
+ publishingAction: {
5267
+ publishAtScope: {
5268
+ scopeType: string;
5269
+ };
5270
+ passengerInformationAction: {
5271
+ actionRef: string;
5272
+ recordedAtTime: string;
5273
+ /** @enum {string} */
5274
+ perspective: "general" | "stopPoint" | "vehicleJourney";
5275
+ textualContent: {
5276
+ summaryContent: {
5277
+ summaryText: string;
5278
+ };
5279
+ reasonContent?: {
5280
+ reasonText: string;
5281
+ };
5282
+ descriptionContent: {
5283
+ descriptionText: string;
5284
+ }[];
5285
+ consequenceContent: {
5286
+ consequenceText: string;
5287
+ }[];
5288
+ recommendationContent: {
5289
+ recommendationText: string;
5290
+ }[];
5291
+ durationContent?: {
5292
+ durationText: string;
5293
+ };
5294
+ remarkContent: {
5295
+ remark: string;
5296
+ }[];
5297
+ infoLink: {
5298
+ uri: string;
5299
+ label?: string[];
5300
+ }[];
5301
+ }[];
5302
+ }[];
5303
+ }[];
5304
+ };
5305
+ }[];
5306
+ };
5307
+ };
4477
5308
  TripInfoResultStructure: {
4478
5309
  previousCall: {
4479
5310
  stopPointRef: string;
@@ -4653,7 +5484,7 @@ interface components$6 {
4653
5484
  calcTime?: string;
4654
5485
  tripInfoResponseContext?: {
4655
5486
  places?: {
4656
- place: {
5487
+ location: {
4657
5488
  stopPoint?: {
4658
5489
  stopPointRef: string;
4659
5490
  stopPointName: {
@@ -4685,11 +5516,22 @@ interface components$6 {
4685
5516
  text: string;
4686
5517
  };
4687
5518
  pointOfInterestCategory: {
4688
- osmTag?: {
5519
+ osmTag: {
4689
5520
  tag: string;
4690
5521
  value: string;
4691
- };
5522
+ }[];
5523
+ pointOfInterestClassification: string[];
4692
5524
  }[];
5525
+ privateCode?: {
5526
+ system: string;
5527
+ value: string;
5528
+ };
5529
+ pOIAdditionalInformation?: {
5530
+ pOIAdditionalInformation: {
5531
+ key: string;
5532
+ value: string;
5533
+ }[];
5534
+ };
4693
5535
  topographicPlaceRef?: string;
4694
5536
  };
4695
5537
  address?: {
@@ -4699,11 +5541,11 @@ interface components$6 {
4699
5541
  };
4700
5542
  postCode?: string;
4701
5543
  topographicPlaceName?: string;
4702
- TopographicPlaceRef?: string;
4703
- Street?: string;
4704
- HouseNumber?: string;
5544
+ topographicPlaceRef?: string;
5545
+ street?: string;
5546
+ houseNumber?: string;
4705
5547
  };
4706
- name: {
5548
+ locationName: {
4707
5549
  text: string;
4708
5550
  };
4709
5551
  geoPosition: {
@@ -4976,7 +5818,7 @@ interface components$6 {
4976
5818
  calcTime?: string;
4977
5819
  tripInfoResponseContext?: {
4978
5820
  places?: {
4979
- place: {
5821
+ location: {
4980
5822
  stopPoint?: {
4981
5823
  stopPointRef: string;
4982
5824
  stopPointName: {
@@ -5008,11 +5850,22 @@ interface components$6 {
5008
5850
  text: string;
5009
5851
  };
5010
5852
  pointOfInterestCategory: {
5011
- osmTag?: {
5853
+ osmTag: {
5012
5854
  tag: string;
5013
5855
  value: string;
5014
- };
5856
+ }[];
5857
+ pointOfInterestClassification: string[];
5015
5858
  }[];
5859
+ privateCode?: {
5860
+ system: string;
5861
+ value: string;
5862
+ };
5863
+ pOIAdditionalInformation?: {
5864
+ pOIAdditionalInformation: {
5865
+ key: string;
5866
+ value: string;
5867
+ }[];
5868
+ };
5016
5869
  topographicPlaceRef?: string;
5017
5870
  };
5018
5871
  address?: {
@@ -5022,11 +5875,11 @@ interface components$6 {
5022
5875
  };
5023
5876
  postCode?: string;
5024
5877
  topographicPlaceName?: string;
5025
- TopographicPlaceRef?: string;
5026
- Street?: string;
5027
- HouseNumber?: string;
5878
+ topographicPlaceRef?: string;
5879
+ street?: string;
5880
+ houseNumber?: string;
5028
5881
  };
5029
- name: {
5882
+ locationName: {
5030
5883
  text: string;
5031
5884
  };
5032
5885
  geoPosition: {
@@ -5303,7 +6156,8 @@ interface components$5 {
5303
6156
  TripParam: {
5304
6157
  modeAndModeOfOperationFilter?: {
5305
6158
  exclude?: boolean;
5306
- ptMode?: ("air" | "bus" | "coach" | "trolleyBus" | "metro" | "rail" | "tram" | "water" | "ferry" | "cableway" | "funicular" | "lift" | "telecabin" | "other" | "unknown")[];
6159
+ ptMode: ("air" | "bus" | "coach" | "trolleyBus" | "metro" | "rail" | "tram" | "water" | "ferry" | "cableway" | "funicular" | "lift" | "telecabin" | "other" | "unknown")[];
6160
+ personalMode: ("foot" | "bicycle" | "car" | "motorcycle" | "truck" | "scooter" | "other")[];
5307
6161
  airSubmode?: string;
5308
6162
  busSubmode?: string;
5309
6163
  coachSubmode?: string;
@@ -5427,7 +6281,8 @@ interface components$5 {
5427
6281
  params?: {
5428
6282
  modeAndModeOfOperationFilter?: {
5429
6283
  exclude?: boolean;
5430
- ptMode?: ("air" | "bus" | "coach" | "trolleyBus" | "metro" | "rail" | "tram" | "water" | "ferry" | "cableway" | "funicular" | "lift" | "telecabin" | "other" | "unknown")[];
6284
+ ptMode: ("air" | "bus" | "coach" | "trolleyBus" | "metro" | "rail" | "tram" | "water" | "ferry" | "cableway" | "funicular" | "lift" | "telecabin" | "other" | "unknown")[];
6285
+ personalMode: ("foot" | "bicycle" | "car" | "motorcycle" | "truck" | "scooter" | "other")[];
5431
6286
  airSubmode?: string;
5432
6287
  busSubmode?: string;
5433
6288
  coachSubmode?: string;
@@ -5546,7 +6401,8 @@ interface components$5 {
5546
6401
  params?: {
5547
6402
  modeAndModeOfOperationFilter?: {
5548
6403
  exclude?: boolean;
5549
- ptMode?: ("air" | "bus" | "coach" | "trolleyBus" | "metro" | "rail" | "tram" | "water" | "ferry" | "cableway" | "funicular" | "lift" | "telecabin" | "other" | "unknown")[];
6404
+ ptMode: ("air" | "bus" | "coach" | "trolleyBus" | "metro" | "rail" | "tram" | "water" | "ferry" | "cableway" | "funicular" | "lift" | "telecabin" | "other" | "unknown")[];
6405
+ personalMode: ("foot" | "bicycle" | "car" | "motorcycle" | "truck" | "scooter" | "other")[];
5550
6406
  airSubmode?: string;
5551
6407
  busSubmode?: string;
5552
6408
  coachSubmode?: string;
@@ -7430,11 +8286,22 @@ interface components$4 {
7430
8286
  text: string;
7431
8287
  };
7432
8288
  pointOfInterestCategory: {
7433
- osmTag?: {
8289
+ osmTag: {
7434
8290
  tag: string;
7435
8291
  value: string;
7436
- };
8292
+ }[];
8293
+ pointOfInterestClassification: string[];
7437
8294
  }[];
8295
+ privateCode?: {
8296
+ system: string;
8297
+ value: string;
8298
+ };
8299
+ pOIAdditionalInformation?: {
8300
+ pOIAdditionalInformation: {
8301
+ key: string;
8302
+ value: string;
8303
+ }[];
8304
+ };
7438
8305
  topographicPlaceRef?: string;
7439
8306
  };
7440
8307
  address?: {
@@ -7444,9 +8311,9 @@ interface components$4 {
7444
8311
  };
7445
8312
  postCode?: string;
7446
8313
  topographicPlaceName?: string;
7447
- TopographicPlaceRef?: string;
7448
- Street?: string;
7449
- HouseNumber?: string;
8314
+ topographicPlaceRef?: string;
8315
+ street?: string;
8316
+ houseNumber?: string;
7450
8317
  };
7451
8318
  name: {
7452
8319
  text: string;
@@ -7990,11 +8857,22 @@ interface components$4 {
7990
8857
  text: string;
7991
8858
  };
7992
8859
  pointOfInterestCategory: {
7993
- osmTag?: {
8860
+ osmTag: {
7994
8861
  tag: string;
7995
8862
  value: string;
7996
- };
8863
+ }[];
8864
+ pointOfInterestClassification: string[];
7997
8865
  }[];
8866
+ privateCode?: {
8867
+ system: string;
8868
+ value: string;
8869
+ };
8870
+ pOIAdditionalInformation?: {
8871
+ pOIAdditionalInformation: {
8872
+ key: string;
8873
+ value: string;
8874
+ }[];
8875
+ };
7998
8876
  topographicPlaceRef?: string;
7999
8877
  };
8000
8878
  address?: {
@@ -8004,9 +8882,9 @@ interface components$4 {
8004
8882
  };
8005
8883
  postCode?: string;
8006
8884
  topographicPlaceName?: string;
8007
- TopographicPlaceRef?: string;
8008
- Street?: string;
8009
- HouseNumber?: string;
8885
+ topographicPlaceRef?: string;
8886
+ street?: string;
8887
+ houseNumber?: string;
8010
8888
  };
8011
8889
  name: {
8012
8890
  text: string;
@@ -12090,32 +12968,34 @@ interface components {
12090
12968
  pathItems: never;
12091
12969
  }
12092
12970
 
12093
- type OJPv1_DatedJourneySchema = components$e['schemas']['DatedJourney'];
12094
- type OJPv1_TimedLegSchema = components$d['schemas']['TimedLeg'];
12095
- type OJPv1_TripLegSchema = components$d['schemas']['TripLeg'];
12096
- type OJPv1_TripSchema = components$d['schemas']['Trip'];
12097
- type UseRealtimeDataEnum = components$f["schemas"]["UseRealtimeDataEnum"];
12098
- type VehicleModesOfTransportEnum = components$f["schemas"]["VehicleModesOfTransportEnum"];
12099
- type PlaceTypeEnum = components$f["schemas"]["PlaceTypeEnum"];
12100
- type GeoPositionSchema = components$f["schemas"]["GeoPosition"];
12101
- type PlaceRefSchema = components$f["schemas"]["PlaceRef"];
12102
- type InternationalTextSchema = components$f["schemas"]["InternationalText"];
12103
- type DatedJourneySchema = components$f["schemas"]["DatedJourney"];
12104
- type CallAtStopSchema = components$f["schemas"]["CallAtStop"];
12105
- type PlaceContextSchema = components$f["schemas"]["PlaceContext"];
12106
- type PlaceSchema = components$f['schemas']['Place'];
12107
- type StopPointSchema = components$f['schemas']['StopPoint'];
12108
- type StopPlaceSchema = components$f['schemas']['StopPlace'];
12109
- type TopographicPlaceSchema = components$f['schemas']['TopographicPlace'];
12110
- type PointOfInterestSchema = components$f['schemas']['PointOfInterest'];
12111
- type AddressSchema = components$f['schemas']['Address'];
12112
- type ModeStructureSchema = components$f['schemas']['ModeStructure'];
12113
- type ProductCategorySchema = components$f['schemas']['ProductCategory'];
12114
- type GeneralAttributeSchema = components$f['schemas']['GeneralAttribute'];
12115
- type ModeFilterSchema = components$f["schemas"]['ModeFilterStructure'];
12116
- type TrackSectionSchema = components$f['schemas']['TrackSectionStructure'];
12117
- type ResponseContextSchema = components$f['schemas']['ResponseContextStructure'];
12118
- type IndividualTransportOptionSchema = components$f['schemas']['IndividualTransportOptionStructure'];
12971
+ type OJPv1_DatedJourneySchema = components$g['schemas']['DatedJourney'];
12972
+ type OJPv1_TimedLegSchema = components$f['schemas']['TimedLeg'];
12973
+ type OJPv1_TripLegSchema = components$f['schemas']['TripLeg'];
12974
+ type OJPv1_TripSchema = components$f['schemas']['Trip'];
12975
+ type UseRealtimeDataEnum = components$h["schemas"]["UseRealtimeDataEnum"];
12976
+ type PersonalModesEnum = components$h["schemas"]['PersonalModesEnumeration'];
12977
+ type VehicleModesOfTransportEnum = components$h["schemas"]["VehicleModesOfTransportEnum"];
12978
+ type PlaceTypeEnum = components$h["schemas"]["PlaceTypeEnum"];
12979
+ type GeoPositionSchema = components$h["schemas"]["GeoPosition"];
12980
+ type PlaceRefSchema = components$h["schemas"]["PlaceRef"];
12981
+ type InternationalTextSchema = components$h["schemas"]["InternationalText"];
12982
+ type DatedJourneySchema = components$h["schemas"]["DatedJourney"];
12983
+ type CallAtStopSchema = components$h["schemas"]["CallAtStop"];
12984
+ type PlaceContextSchema = components$h["schemas"]["PlaceContext"];
12985
+ type PlaceSchema = components$h['schemas']['Place'];
12986
+ type StopPointSchema = components$h['schemas']['StopPoint'];
12987
+ type StopPlaceSchema = components$h['schemas']['StopPlace'];
12988
+ type TopographicPlaceSchema = components$h['schemas']['TopographicPlace'];
12989
+ type PointOfInterestSchema = components$h['schemas']['PointOfInterest'];
12990
+ type AddressSchema = components$h['schemas']['Address'];
12991
+ type GeoRestrictionsSchema = components$h['schemas']['GeoRestrictionsStructure'];
12992
+ type ModeStructureSchema = components$h['schemas']['ModeStructure'];
12993
+ type ProductCategorySchema = components$h['schemas']['ProductCategory'];
12994
+ type GeneralAttributeSchema = components$h['schemas']['GeneralAttribute'];
12995
+ type ModeFilterSchema = components$h["schemas"]['ModeFilterStructure'];
12996
+ type TrackSectionSchema = components$h['schemas']['TrackSectionStructure'];
12997
+ type ResponseContextSchema = components$h['schemas']['ResponseContextStructure'];
12998
+ type IndividualTransportOptionSchema = components$h['schemas']['IndividualTransportOptionStructure'];
12119
12999
  type TripRequestOJP = components$5["schemas"]["OJP"];
12120
13000
  type TripParamsSchema = components$5["schemas"]["TripParam"];
12121
13001
  type TripRequestSchema = components$5["schemas"]["OJPTripRequest"];
@@ -12128,13 +13008,13 @@ type TransferLegSchema = components$4["schemas"]["TransferLeg"];
12128
13008
  type ContinuousLegSchema = components$4["schemas"]["ContinuousLeg"];
12129
13009
  type TripRequestResponseOJP = components$4['schemas']['OJP'];
12130
13010
  type TripDeliverySchema = components$4['schemas']['OJPTripDelivery'];
12131
- type InitialInputSchema = components$c['schemas']['InitialInput'];
12132
- type LIR_RequestParamsSchema = components$c['schemas']['PlaceParam'];
12133
- type LocationInformationRequestOJP = components$c['schemas']['OJP'];
12134
- type LocationInformationRequestSchema = components$c['schemas']['OJPLocationInformationRequest'];
12135
- type PlaceResultSchema = components$b['schemas']['PlaceResult'];
12136
- type LocationInformationRequestResponseOJP = components$b['schemas']['OJP'];
12137
- type LocationInformationDeliverySchema = components$b['schemas']['OJPLocationInformationDelivery'];
13011
+ type InitialInputSchema = components$e['schemas']['InitialInput'];
13012
+ type LIR_RequestParamsSchema = components$e['schemas']['PlaceParam'];
13013
+ type LocationInformationRequestOJP = components$e['schemas']['OJP'];
13014
+ type LocationInformationRequestSchema = components$e['schemas']['OJPLocationInformationRequest'];
13015
+ type PlaceResultSchema = components$d['schemas']['PlaceResult'];
13016
+ type LocationInformationRequestResponseOJP = components$d['schemas']['OJP'];
13017
+ type LocationInformationDeliverySchema = components$d['schemas']['OJPLocationInformationDelivery'];
12138
13018
  type StopEventRequestSchema = components$a['schemas']['OJPStopEventRequest'];
12139
13019
  type SER_RequestLocationSchema = components$a['schemas']['PlaceContext'];
12140
13020
  type SER_RequestParamsSchema = components$a['schemas']['StopEventParam'];
@@ -12164,6 +13044,11 @@ type TripInfoResultStructureSchema = components$7['schemas']['TripInfoResultStru
12164
13044
  type OJPv1_TripInfoResponseOJP = components$6['schemas']['OJP'];
12165
13045
  type OJPv1_TripInfoDeliverySchema = components$6['schemas']['OJPTripInfoDelivery'];
12166
13046
  type OJPv1_TripInfoResultStructureSchema = components$6['schemas']['TripInfoResultStructure'];
13047
+ type OJPv1_LocationInformationRequestOJP = components$c['schemas']['OJP'];
13048
+ type OJPv1_LocationInformationRequestSchema = components$c['schemas']['OJPLocationInformationRequest'];
13049
+ type OJPv1_InitialInputSchema = components$c['schemas']['InitialInput'];
13050
+ type OJPv1_LocationInformationRequestResponseOJP = components$b['schemas']['OJP'];
13051
+ type OJPv1_LocationInformationDeliverySchema = components$b['schemas']['OJPLocationInformationDelivery'];
12167
13052
 
12168
13053
  declare const OpenAPI_Dependencies: {
12169
13054
  readonly MapNS_Tags: Record<string, string>;
@@ -12172,4 +13057,4 @@ declare const OpenAPI_Dependencies: {
12172
13057
  readonly MapStringValues: Record<string, boolean>;
12173
13058
  };
12174
13059
 
12175
- export { type AddressSchema, type CallAtStopSchema, type ContinuousLegSchema, type DatedJourneySchema, type FareDeliverySchema, type FareRequestOJP, type FareRequestParamsSchema, type FareRequestSchema, type FareRequestsSchema, type FareResponseOJP, type FareResultSchema, type GeneralAttributeSchema, type GeoPositionSchema, type IndividualTransportOptionSchema, type InitialInputSchema, type InternationalTextSchema, type LIR_RequestParamsSchema, type LegSchema, type LocationInformationDeliverySchema, type LocationInformationRequestOJP, type LocationInformationRequestResponseOJP, type LocationInformationRequestSchema, type ModeFilterSchema, type ModeStructureSchema, type OJPv1_DatedJourneySchema, type OJPv1_TimedLegSchema, type OJPv1_TripInfoDeliverySchema, type OJPv1_TripInfoResponseOJP, type OJPv1_TripInfoResultStructureSchema, type OJPv1_TripLegSchema, type OJPv1_TripSchema, OpenAPI_Dependencies, type PlaceContextSchema, type PlaceRefSchema, type PlaceResultSchema, type PlaceSchema, type PlaceTypeEnum, type PointOfInterestSchema, type ProductCategorySchema, type ResponseContextSchema, type SER_RequestLocationSchema, type SER_RequestOJP, type SER_RequestParamsSchema, type StopEventDeliverySchema, type StopEventRequestResponseOJP, type StopEventRequestSchema, type StopEventResultSchema, type StopEventSchema, type StopPlaceSchema, type StopPointSchema, type TIR_RequestOJP, type TIR_RequestParamsSchema, type TIR_RequestSchema, type TRR_DeliverySchema, type TRR_RequestOJP, type TRR_RequestParamsSchema, type TRR_RequestSchema, type TRR_ResponseOJP, type TimedLegSchema, type TopographicPlaceSchema, type TrackSectionSchema, type TransferLegSchema, type TripDeliverySchema, type TripInfoDeliverySchema, type TripInfoResponseOJP, type TripInfoResultStructureSchema, type TripParamsSchema, type TripRequestOJP, type TripRequestResponseOJP, type TripRequestSchema, type TripResultSchema, type TripSchema, type UseRealtimeDataEnum, VERSION, type VehicleModesOfTransportEnum, type ViaPointSchema };
13060
+ export { type AddressSchema, type CallAtStopSchema, type ContinuousLegSchema, type DatedJourneySchema, type FareDeliverySchema, type FareRequestOJP, type FareRequestParamsSchema, type FareRequestSchema, type FareRequestsSchema, type FareResponseOJP, type FareResultSchema, type GeneralAttributeSchema, type GeoPositionSchema, type GeoRestrictionsSchema, type IndividualTransportOptionSchema, type InitialInputSchema, type InternationalTextSchema, type LIR_RequestParamsSchema, type LegSchema, type LocationInformationDeliverySchema, type LocationInformationRequestOJP, type LocationInformationRequestResponseOJP, type LocationInformationRequestSchema, type ModeFilterSchema, type ModeStructureSchema, type OJPv1_DatedJourneySchema, type OJPv1_InitialInputSchema, type OJPv1_LocationInformationDeliverySchema, type OJPv1_LocationInformationRequestOJP, type OJPv1_LocationInformationRequestResponseOJP, type OJPv1_LocationInformationRequestSchema, type OJPv1_TimedLegSchema, type OJPv1_TripInfoDeliverySchema, type OJPv1_TripInfoResponseOJP, type OJPv1_TripInfoResultStructureSchema, type OJPv1_TripLegSchema, type OJPv1_TripSchema, OpenAPI_Dependencies, type PersonalModesEnum, type PlaceContextSchema, type PlaceRefSchema, type PlaceResultSchema, type PlaceSchema, type PlaceTypeEnum, type PointOfInterestSchema, type ProductCategorySchema, type ResponseContextSchema, type SER_RequestLocationSchema, type SER_RequestOJP, type SER_RequestParamsSchema, type StopEventDeliverySchema, type StopEventRequestResponseOJP, type StopEventRequestSchema, type StopEventResultSchema, type StopEventSchema, type StopPlaceSchema, type StopPointSchema, type TIR_RequestOJP, type TIR_RequestParamsSchema, type TIR_RequestSchema, type TRR_DeliverySchema, type TRR_RequestOJP, type TRR_RequestParamsSchema, type TRR_RequestSchema, type TRR_ResponseOJP, type TimedLegSchema, type TopographicPlaceSchema, type TrackSectionSchema, type TransferLegSchema, type TripDeliverySchema, type TripInfoDeliverySchema, type TripInfoResponseOJP, type TripInfoResultStructureSchema, type TripParamsSchema, type TripRequestOJP, type TripRequestResponseOJP, type TripRequestSchema, type TripResultSchema, type TripSchema, type UseRealtimeDataEnum, VERSION, type VehicleModesOfTransportEnum, type ViaPointSchema };