ojp-shared-types 0.0.5 → 0.0.7
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 +12 -2
- package/dist/index.d.cts +1450 -94
- package/dist/index.d.ts +1450 -94
- package/dist/index.js +12 -2
- package/package.json +1 -1
package/dist/index.d.cts
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
|
-
declare const VERSION = "0.0.
|
|
1
|
+
declare const VERSION = "0.0.7";
|
|
2
2
|
|
|
3
|
-
interface components$
|
|
3
|
+
interface components$f {
|
|
4
4
|
schemas: {
|
|
5
5
|
/** @enum {string} */
|
|
6
6
|
VehicleModesOfTransportEnum: "air" | "bus" | "coach" | "trolleyBus" | "metro" | "rail" | "tram" | "water" | "ferry" | "cableway" | "funicular" | "lift" | "other" | "unknown";
|
|
@@ -8,6 +8,10 @@ interface components$e {
|
|
|
8
8
|
UseRealtimeDataEnum: "full" | "explanatory" | "none";
|
|
9
9
|
/** @enum {string} */
|
|
10
10
|
PlaceTypeEnum: "stop" | "address" | "poi" | "location" | "topographicPlace";
|
|
11
|
+
/** @enum {string} */
|
|
12
|
+
SituationSourceTypeEnum: "directReport" | "email" | "phone" | "fax" | "post" | "feed" | "radio" | "tv" | "web" | "pager" | "text" | "other";
|
|
13
|
+
/** @enum {string} */
|
|
14
|
+
PerspectiveEnum: "general" | "stopPoint" | "vehicleJourney";
|
|
11
15
|
InternationalText: {
|
|
12
16
|
text: string;
|
|
13
17
|
};
|
|
@@ -54,6 +58,7 @@ interface components$e {
|
|
|
54
58
|
stopPointName: {
|
|
55
59
|
text: string;
|
|
56
60
|
};
|
|
61
|
+
parentRef?: string;
|
|
57
62
|
plannedQuay?: {
|
|
58
63
|
text: string;
|
|
59
64
|
};
|
|
@@ -122,6 +127,7 @@ interface components$e {
|
|
|
122
127
|
stopPointName: {
|
|
123
128
|
text: string;
|
|
124
129
|
};
|
|
130
|
+
parentRef?: string;
|
|
125
131
|
plannedQuay?: {
|
|
126
132
|
text: string;
|
|
127
133
|
};
|
|
@@ -192,6 +198,161 @@ interface components$e {
|
|
|
192
198
|
};
|
|
193
199
|
}[];
|
|
194
200
|
};
|
|
201
|
+
TextualContentStructure: {
|
|
202
|
+
summaryContent: {
|
|
203
|
+
summaryText: string;
|
|
204
|
+
};
|
|
205
|
+
reasonContent?: {
|
|
206
|
+
reasonText: string;
|
|
207
|
+
};
|
|
208
|
+
descriptionContent: {
|
|
209
|
+
descriptionText: string;
|
|
210
|
+
}[];
|
|
211
|
+
consequenceContent: {
|
|
212
|
+
consequenceText: string;
|
|
213
|
+
}[];
|
|
214
|
+
recommendationContent: {
|
|
215
|
+
recommendationText: string;
|
|
216
|
+
}[];
|
|
217
|
+
durationContent?: {
|
|
218
|
+
durationText: string;
|
|
219
|
+
};
|
|
220
|
+
remarkContent: {
|
|
221
|
+
remark: string;
|
|
222
|
+
}[];
|
|
223
|
+
infoLink: {
|
|
224
|
+
uri: string;
|
|
225
|
+
label?: string[];
|
|
226
|
+
}[];
|
|
227
|
+
};
|
|
228
|
+
PassengerInformationActionStructure: {
|
|
229
|
+
actionRef: string;
|
|
230
|
+
recordedAtTime: string;
|
|
231
|
+
/** @enum {string} */
|
|
232
|
+
perspective: "general" | "stopPoint" | "vehicleJourney";
|
|
233
|
+
textualContent: {
|
|
234
|
+
summaryContent: {
|
|
235
|
+
summaryText: string;
|
|
236
|
+
};
|
|
237
|
+
reasonContent?: {
|
|
238
|
+
reasonText: string;
|
|
239
|
+
};
|
|
240
|
+
descriptionContent: {
|
|
241
|
+
descriptionText: string;
|
|
242
|
+
}[];
|
|
243
|
+
consequenceContent: {
|
|
244
|
+
consequenceText: string;
|
|
245
|
+
}[];
|
|
246
|
+
recommendationContent: {
|
|
247
|
+
recommendationText: string;
|
|
248
|
+
}[];
|
|
249
|
+
durationContent?: {
|
|
250
|
+
durationText: string;
|
|
251
|
+
};
|
|
252
|
+
remarkContent: {
|
|
253
|
+
remark: string;
|
|
254
|
+
}[];
|
|
255
|
+
infoLink: {
|
|
256
|
+
uri: string;
|
|
257
|
+
label?: string[];
|
|
258
|
+
}[];
|
|
259
|
+
}[];
|
|
260
|
+
};
|
|
261
|
+
ActionsStructure: {
|
|
262
|
+
publishAtScope: {
|
|
263
|
+
scopeType: string;
|
|
264
|
+
};
|
|
265
|
+
passengerInformationAction: {
|
|
266
|
+
actionRef: string;
|
|
267
|
+
recordedAtTime: string;
|
|
268
|
+
/** @enum {string} */
|
|
269
|
+
perspective: "general" | "stopPoint" | "vehicleJourney";
|
|
270
|
+
textualContent: {
|
|
271
|
+
summaryContent: {
|
|
272
|
+
summaryText: string;
|
|
273
|
+
};
|
|
274
|
+
reasonContent?: {
|
|
275
|
+
reasonText: string;
|
|
276
|
+
};
|
|
277
|
+
descriptionContent: {
|
|
278
|
+
descriptionText: string;
|
|
279
|
+
}[];
|
|
280
|
+
consequenceContent: {
|
|
281
|
+
consequenceText: string;
|
|
282
|
+
}[];
|
|
283
|
+
recommendationContent: {
|
|
284
|
+
recommendationText: string;
|
|
285
|
+
}[];
|
|
286
|
+
durationContent?: {
|
|
287
|
+
durationText: string;
|
|
288
|
+
};
|
|
289
|
+
remarkContent: {
|
|
290
|
+
remark: string;
|
|
291
|
+
}[];
|
|
292
|
+
infoLink: {
|
|
293
|
+
uri: string;
|
|
294
|
+
label?: string[];
|
|
295
|
+
}[];
|
|
296
|
+
}[];
|
|
297
|
+
}[];
|
|
298
|
+
};
|
|
299
|
+
PtSituationElementStructure: {
|
|
300
|
+
creationTime: string;
|
|
301
|
+
participantRef?: string;
|
|
302
|
+
situationNumber: string;
|
|
303
|
+
version?: number;
|
|
304
|
+
source: {
|
|
305
|
+
/** @enum {string} */
|
|
306
|
+
sourceType: "directReport" | "email" | "phone" | "fax" | "post" | "feed" | "radio" | "tv" | "web" | "pager" | "text" | "other";
|
|
307
|
+
};
|
|
308
|
+
validityPeriod: {
|
|
309
|
+
startTime: string;
|
|
310
|
+
endTime?: string;
|
|
311
|
+
}[];
|
|
312
|
+
alertCause: string;
|
|
313
|
+
priority?: string;
|
|
314
|
+
scopeType?: string;
|
|
315
|
+
publishingActions?: {
|
|
316
|
+
publishingAction: {
|
|
317
|
+
publishAtScope: {
|
|
318
|
+
scopeType: string;
|
|
319
|
+
};
|
|
320
|
+
passengerInformationAction: {
|
|
321
|
+
actionRef: string;
|
|
322
|
+
recordedAtTime: string;
|
|
323
|
+
/** @enum {string} */
|
|
324
|
+
perspective: "general" | "stopPoint" | "vehicleJourney";
|
|
325
|
+
textualContent: {
|
|
326
|
+
summaryContent: {
|
|
327
|
+
summaryText: string;
|
|
328
|
+
};
|
|
329
|
+
reasonContent?: {
|
|
330
|
+
reasonText: string;
|
|
331
|
+
};
|
|
332
|
+
descriptionContent: {
|
|
333
|
+
descriptionText: string;
|
|
334
|
+
}[];
|
|
335
|
+
consequenceContent: {
|
|
336
|
+
consequenceText: string;
|
|
337
|
+
}[];
|
|
338
|
+
recommendationContent: {
|
|
339
|
+
recommendationText: string;
|
|
340
|
+
}[];
|
|
341
|
+
durationContent?: {
|
|
342
|
+
durationText: string;
|
|
343
|
+
};
|
|
344
|
+
remarkContent: {
|
|
345
|
+
remark: string;
|
|
346
|
+
}[];
|
|
347
|
+
infoLink: {
|
|
348
|
+
uri: string;
|
|
349
|
+
label?: string[];
|
|
350
|
+
}[];
|
|
351
|
+
}[];
|
|
352
|
+
}[];
|
|
353
|
+
}[];
|
|
354
|
+
};
|
|
355
|
+
};
|
|
195
356
|
SharedServiceArrivalDeparture: {
|
|
196
357
|
timetabledTime: string;
|
|
197
358
|
estimatedTime?: string;
|
|
@@ -240,6 +401,10 @@ interface components$e {
|
|
|
240
401
|
};
|
|
241
402
|
code: string;
|
|
242
403
|
};
|
|
404
|
+
SituationFullRefStructure: {
|
|
405
|
+
participantRef: string;
|
|
406
|
+
situationNumber: string;
|
|
407
|
+
};
|
|
243
408
|
DatedJourney: {
|
|
244
409
|
conventionalModeOfOperation?: string;
|
|
245
410
|
operatingDayRef: string;
|
|
@@ -293,15 +458,22 @@ interface components$e {
|
|
|
293
458
|
unplanned?: boolean;
|
|
294
459
|
cancelled?: boolean;
|
|
295
460
|
deviation?: boolean;
|
|
461
|
+
situationFullRefs?: {
|
|
462
|
+
situationFullRef: {
|
|
463
|
+
participantRef: string;
|
|
464
|
+
situationNumber: string;
|
|
465
|
+
}[];
|
|
466
|
+
};
|
|
296
467
|
};
|
|
297
468
|
ResponseContextStructure: {
|
|
298
|
-
places
|
|
469
|
+
places?: {
|
|
299
470
|
place: {
|
|
300
471
|
stopPoint?: {
|
|
301
472
|
stopPointRef: string;
|
|
302
473
|
stopPointName: {
|
|
303
474
|
text: string;
|
|
304
475
|
};
|
|
476
|
+
parentRef?: string;
|
|
305
477
|
plannedQuay?: {
|
|
306
478
|
text: string;
|
|
307
479
|
};
|
|
@@ -373,6 +545,65 @@ interface components$e {
|
|
|
373
545
|
}[];
|
|
374
546
|
}[];
|
|
375
547
|
};
|
|
548
|
+
situations?: {
|
|
549
|
+
ptSituation: {
|
|
550
|
+
creationTime: string;
|
|
551
|
+
participantRef?: string;
|
|
552
|
+
situationNumber: string;
|
|
553
|
+
version?: number;
|
|
554
|
+
source: {
|
|
555
|
+
/** @enum {string} */
|
|
556
|
+
sourceType: "directReport" | "email" | "phone" | "fax" | "post" | "feed" | "radio" | "tv" | "web" | "pager" | "text" | "other";
|
|
557
|
+
};
|
|
558
|
+
validityPeriod: {
|
|
559
|
+
startTime: string;
|
|
560
|
+
endTime?: string;
|
|
561
|
+
}[];
|
|
562
|
+
alertCause: string;
|
|
563
|
+
priority?: string;
|
|
564
|
+
scopeType?: string;
|
|
565
|
+
publishingActions?: {
|
|
566
|
+
publishingAction: {
|
|
567
|
+
publishAtScope: {
|
|
568
|
+
scopeType: string;
|
|
569
|
+
};
|
|
570
|
+
passengerInformationAction: {
|
|
571
|
+
actionRef: string;
|
|
572
|
+
recordedAtTime: string;
|
|
573
|
+
/** @enum {string} */
|
|
574
|
+
perspective: "general" | "stopPoint" | "vehicleJourney";
|
|
575
|
+
textualContent: {
|
|
576
|
+
summaryContent: {
|
|
577
|
+
summaryText: string;
|
|
578
|
+
};
|
|
579
|
+
reasonContent?: {
|
|
580
|
+
reasonText: string;
|
|
581
|
+
};
|
|
582
|
+
descriptionContent: {
|
|
583
|
+
descriptionText: string;
|
|
584
|
+
}[];
|
|
585
|
+
consequenceContent: {
|
|
586
|
+
consequenceText: string;
|
|
587
|
+
}[];
|
|
588
|
+
recommendationContent: {
|
|
589
|
+
recommendationText: string;
|
|
590
|
+
}[];
|
|
591
|
+
durationContent?: {
|
|
592
|
+
durationText: string;
|
|
593
|
+
};
|
|
594
|
+
remarkContent: {
|
|
595
|
+
remark: string;
|
|
596
|
+
}[];
|
|
597
|
+
infoLink: {
|
|
598
|
+
uri: string;
|
|
599
|
+
label?: string[];
|
|
600
|
+
}[];
|
|
601
|
+
}[];
|
|
602
|
+
}[];
|
|
603
|
+
}[];
|
|
604
|
+
};
|
|
605
|
+
}[];
|
|
606
|
+
};
|
|
376
607
|
};
|
|
377
608
|
LinkProjection: {
|
|
378
609
|
position: {
|
|
@@ -418,7 +649,7 @@ interface components$e {
|
|
|
418
649
|
pathItems: never;
|
|
419
650
|
}
|
|
420
651
|
|
|
421
|
-
interface components$
|
|
652
|
+
interface components$e {
|
|
422
653
|
schemas: {
|
|
423
654
|
DatedJourney: {
|
|
424
655
|
conventionalModeOfOperation?: string;
|
|
@@ -482,7 +713,7 @@ interface components$d {
|
|
|
482
713
|
pathItems: never;
|
|
483
714
|
}
|
|
484
715
|
|
|
485
|
-
interface components$
|
|
716
|
+
interface components$d {
|
|
486
717
|
schemas: {
|
|
487
718
|
TimedLeg: {
|
|
488
719
|
legBoard: {
|
|
@@ -1179,7 +1410,7 @@ interface components$c {
|
|
|
1179
1410
|
pathItems: never;
|
|
1180
1411
|
}
|
|
1181
1412
|
|
|
1182
|
-
interface components$
|
|
1413
|
+
interface components$c {
|
|
1183
1414
|
schemas: {
|
|
1184
1415
|
PlaceParam: {
|
|
1185
1416
|
type: ("stop" | "address" | "poi" | "location" | "topographicPlace")[];
|
|
@@ -1288,7 +1519,7 @@ interface components$b {
|
|
|
1288
1519
|
pathItems: never;
|
|
1289
1520
|
}
|
|
1290
1521
|
|
|
1291
|
-
interface components$
|
|
1522
|
+
interface components$b {
|
|
1292
1523
|
schemas: {
|
|
1293
1524
|
PlaceResult: {
|
|
1294
1525
|
place: {
|
|
@@ -1297,6 +1528,7 @@ interface components$a {
|
|
|
1297
1528
|
stopPointName: {
|
|
1298
1529
|
text: string;
|
|
1299
1530
|
};
|
|
1531
|
+
parentRef?: string;
|
|
1300
1532
|
plannedQuay?: {
|
|
1301
1533
|
text: string;
|
|
1302
1534
|
};
|
|
@@ -1382,6 +1614,7 @@ interface components$a {
|
|
|
1382
1614
|
stopPointName: {
|
|
1383
1615
|
text: string;
|
|
1384
1616
|
};
|
|
1617
|
+
parentRef?: string;
|
|
1385
1618
|
plannedQuay?: {
|
|
1386
1619
|
text: string;
|
|
1387
1620
|
};
|
|
@@ -1473,6 +1706,7 @@ interface components$a {
|
|
|
1473
1706
|
stopPointName: {
|
|
1474
1707
|
text: string;
|
|
1475
1708
|
};
|
|
1709
|
+
parentRef?: string;
|
|
1476
1710
|
plannedQuay?: {
|
|
1477
1711
|
text: string;
|
|
1478
1712
|
};
|
|
@@ -1558,7 +1792,7 @@ interface components$a {
|
|
|
1558
1792
|
pathItems: never;
|
|
1559
1793
|
}
|
|
1560
1794
|
|
|
1561
|
-
interface components$
|
|
1795
|
+
interface components$a {
|
|
1562
1796
|
schemas: {
|
|
1563
1797
|
StopEventParam: {
|
|
1564
1798
|
includeAllRestrictedLines?: boolean;
|
|
@@ -1657,7 +1891,7 @@ interface components$9 {
|
|
|
1657
1891
|
pathItems: never;
|
|
1658
1892
|
}
|
|
1659
1893
|
|
|
1660
|
-
interface components$
|
|
1894
|
+
interface components$9 {
|
|
1661
1895
|
schemas: {
|
|
1662
1896
|
PointOfInterestCategory: {
|
|
1663
1897
|
osmTag?: {
|
|
@@ -2011,6 +2245,12 @@ interface components$8 {
|
|
|
2011
2245
|
unplanned?: boolean;
|
|
2012
2246
|
cancelled?: boolean;
|
|
2013
2247
|
deviation?: boolean;
|
|
2248
|
+
situationFullRefs?: {
|
|
2249
|
+
situationFullRef: {
|
|
2250
|
+
participantRef: string;
|
|
2251
|
+
situationNumber: string;
|
|
2252
|
+
}[];
|
|
2253
|
+
};
|
|
2014
2254
|
};
|
|
2015
2255
|
operatingDays?: {
|
|
2016
2256
|
from: string;
|
|
@@ -2167,6 +2407,12 @@ interface components$8 {
|
|
|
2167
2407
|
unplanned?: boolean;
|
|
2168
2408
|
cancelled?: boolean;
|
|
2169
2409
|
deviation?: boolean;
|
|
2410
|
+
situationFullRefs?: {
|
|
2411
|
+
situationFullRef: {
|
|
2412
|
+
participantRef: string;
|
|
2413
|
+
situationNumber: string;
|
|
2414
|
+
}[];
|
|
2415
|
+
};
|
|
2170
2416
|
};
|
|
2171
2417
|
operatingDays?: {
|
|
2172
2418
|
from: string;
|
|
@@ -2181,13 +2427,14 @@ interface components$8 {
|
|
|
2181
2427
|
defaultLanguage?: string;
|
|
2182
2428
|
calcTime?: string;
|
|
2183
2429
|
stopEventResponseContext?: {
|
|
2184
|
-
places
|
|
2430
|
+
places?: {
|
|
2185
2431
|
place: {
|
|
2186
2432
|
stopPoint?: {
|
|
2187
2433
|
stopPointRef: string;
|
|
2188
2434
|
stopPointName: {
|
|
2189
2435
|
text: string;
|
|
2190
2436
|
};
|
|
2437
|
+
parentRef?: string;
|
|
2191
2438
|
plannedQuay?: {
|
|
2192
2439
|
text: string;
|
|
2193
2440
|
};
|
|
@@ -2259,6 +2506,65 @@ interface components$8 {
|
|
|
2259
2506
|
}[];
|
|
2260
2507
|
}[];
|
|
2261
2508
|
};
|
|
2509
|
+
situations?: {
|
|
2510
|
+
ptSituation: {
|
|
2511
|
+
creationTime: string;
|
|
2512
|
+
participantRef?: string;
|
|
2513
|
+
situationNumber: string;
|
|
2514
|
+
version?: number;
|
|
2515
|
+
source: {
|
|
2516
|
+
/** @enum {string} */
|
|
2517
|
+
sourceType: "directReport" | "email" | "phone" | "fax" | "post" | "feed" | "radio" | "tv" | "web" | "pager" | "text" | "other";
|
|
2518
|
+
};
|
|
2519
|
+
validityPeriod: {
|
|
2520
|
+
startTime: string;
|
|
2521
|
+
endTime?: string;
|
|
2522
|
+
}[];
|
|
2523
|
+
alertCause: string;
|
|
2524
|
+
priority?: string;
|
|
2525
|
+
scopeType?: string;
|
|
2526
|
+
publishingActions?: {
|
|
2527
|
+
publishingAction: {
|
|
2528
|
+
publishAtScope: {
|
|
2529
|
+
scopeType: string;
|
|
2530
|
+
};
|
|
2531
|
+
passengerInformationAction: {
|
|
2532
|
+
actionRef: string;
|
|
2533
|
+
recordedAtTime: string;
|
|
2534
|
+
/** @enum {string} */
|
|
2535
|
+
perspective: "general" | "stopPoint" | "vehicleJourney";
|
|
2536
|
+
textualContent: {
|
|
2537
|
+
summaryContent: {
|
|
2538
|
+
summaryText: string;
|
|
2539
|
+
};
|
|
2540
|
+
reasonContent?: {
|
|
2541
|
+
reasonText: string;
|
|
2542
|
+
};
|
|
2543
|
+
descriptionContent: {
|
|
2544
|
+
descriptionText: string;
|
|
2545
|
+
}[];
|
|
2546
|
+
consequenceContent: {
|
|
2547
|
+
consequenceText: string;
|
|
2548
|
+
}[];
|
|
2549
|
+
recommendationContent: {
|
|
2550
|
+
recommendationText: string;
|
|
2551
|
+
}[];
|
|
2552
|
+
durationContent?: {
|
|
2553
|
+
durationText: string;
|
|
2554
|
+
};
|
|
2555
|
+
remarkContent: {
|
|
2556
|
+
remark: string;
|
|
2557
|
+
}[];
|
|
2558
|
+
infoLink: {
|
|
2559
|
+
uri: string;
|
|
2560
|
+
label?: string[];
|
|
2561
|
+
}[];
|
|
2562
|
+
}[];
|
|
2563
|
+
}[];
|
|
2564
|
+
}[];
|
|
2565
|
+
};
|
|
2566
|
+
}[];
|
|
2567
|
+
};
|
|
2262
2568
|
};
|
|
2263
2569
|
stopEventResult: {
|
|
2264
2570
|
id: string;
|
|
@@ -2409,6 +2715,12 @@ interface components$8 {
|
|
|
2409
2715
|
unplanned?: boolean;
|
|
2410
2716
|
cancelled?: boolean;
|
|
2411
2717
|
deviation?: boolean;
|
|
2718
|
+
situationFullRefs?: {
|
|
2719
|
+
situationFullRef: {
|
|
2720
|
+
participantRef: string;
|
|
2721
|
+
situationNumber: string;
|
|
2722
|
+
}[];
|
|
2723
|
+
};
|
|
2412
2724
|
};
|
|
2413
2725
|
operatingDays?: {
|
|
2414
2726
|
from: string;
|
|
@@ -2429,13 +2741,14 @@ interface components$8 {
|
|
|
2429
2741
|
defaultLanguage?: string;
|
|
2430
2742
|
calcTime?: string;
|
|
2431
2743
|
stopEventResponseContext?: {
|
|
2432
|
-
places
|
|
2744
|
+
places?: {
|
|
2433
2745
|
place: {
|
|
2434
2746
|
stopPoint?: {
|
|
2435
2747
|
stopPointRef: string;
|
|
2436
2748
|
stopPointName: {
|
|
2437
2749
|
text: string;
|
|
2438
2750
|
};
|
|
2751
|
+
parentRef?: string;
|
|
2439
2752
|
plannedQuay?: {
|
|
2440
2753
|
text: string;
|
|
2441
2754
|
};
|
|
@@ -2507,6 +2820,65 @@ interface components$8 {
|
|
|
2507
2820
|
}[];
|
|
2508
2821
|
}[];
|
|
2509
2822
|
};
|
|
2823
|
+
situations?: {
|
|
2824
|
+
ptSituation: {
|
|
2825
|
+
creationTime: string;
|
|
2826
|
+
participantRef?: string;
|
|
2827
|
+
situationNumber: string;
|
|
2828
|
+
version?: number;
|
|
2829
|
+
source: {
|
|
2830
|
+
/** @enum {string} */
|
|
2831
|
+
sourceType: "directReport" | "email" | "phone" | "fax" | "post" | "feed" | "radio" | "tv" | "web" | "pager" | "text" | "other";
|
|
2832
|
+
};
|
|
2833
|
+
validityPeriod: {
|
|
2834
|
+
startTime: string;
|
|
2835
|
+
endTime?: string;
|
|
2836
|
+
}[];
|
|
2837
|
+
alertCause: string;
|
|
2838
|
+
priority?: string;
|
|
2839
|
+
scopeType?: string;
|
|
2840
|
+
publishingActions?: {
|
|
2841
|
+
publishingAction: {
|
|
2842
|
+
publishAtScope: {
|
|
2843
|
+
scopeType: string;
|
|
2844
|
+
};
|
|
2845
|
+
passengerInformationAction: {
|
|
2846
|
+
actionRef: string;
|
|
2847
|
+
recordedAtTime: string;
|
|
2848
|
+
/** @enum {string} */
|
|
2849
|
+
perspective: "general" | "stopPoint" | "vehicleJourney";
|
|
2850
|
+
textualContent: {
|
|
2851
|
+
summaryContent: {
|
|
2852
|
+
summaryText: string;
|
|
2853
|
+
};
|
|
2854
|
+
reasonContent?: {
|
|
2855
|
+
reasonText: string;
|
|
2856
|
+
};
|
|
2857
|
+
descriptionContent: {
|
|
2858
|
+
descriptionText: string;
|
|
2859
|
+
}[];
|
|
2860
|
+
consequenceContent: {
|
|
2861
|
+
consequenceText: string;
|
|
2862
|
+
}[];
|
|
2863
|
+
recommendationContent: {
|
|
2864
|
+
recommendationText: string;
|
|
2865
|
+
}[];
|
|
2866
|
+
durationContent?: {
|
|
2867
|
+
durationText: string;
|
|
2868
|
+
};
|
|
2869
|
+
remarkContent: {
|
|
2870
|
+
remark: string;
|
|
2871
|
+
}[];
|
|
2872
|
+
infoLink: {
|
|
2873
|
+
uri: string;
|
|
2874
|
+
label?: string[];
|
|
2875
|
+
}[];
|
|
2876
|
+
}[];
|
|
2877
|
+
}[];
|
|
2878
|
+
}[];
|
|
2879
|
+
};
|
|
2880
|
+
}[];
|
|
2881
|
+
};
|
|
2510
2882
|
};
|
|
2511
2883
|
stopEventResult: {
|
|
2512
2884
|
id: string;
|
|
@@ -2657,6 +3029,12 @@ interface components$8 {
|
|
|
2657
3029
|
unplanned?: boolean;
|
|
2658
3030
|
cancelled?: boolean;
|
|
2659
3031
|
deviation?: boolean;
|
|
3032
|
+
situationFullRefs?: {
|
|
3033
|
+
situationFullRef: {
|
|
3034
|
+
participantRef: string;
|
|
3035
|
+
situationNumber: string;
|
|
3036
|
+
}[];
|
|
3037
|
+
};
|
|
2660
3038
|
};
|
|
2661
3039
|
operatingDays?: {
|
|
2662
3040
|
from: string;
|
|
@@ -2677,7 +3055,7 @@ interface components$8 {
|
|
|
2677
3055
|
pathItems: never;
|
|
2678
3056
|
}
|
|
2679
3057
|
|
|
2680
|
-
interface components$
|
|
3058
|
+
interface components$8 {
|
|
2681
3059
|
schemas: {
|
|
2682
3060
|
TripInfoParamStructure: {
|
|
2683
3061
|
includeCalls?: boolean;
|
|
@@ -2729,7 +3107,7 @@ interface components$7 {
|
|
|
2729
3107
|
pathItems: never;
|
|
2730
3108
|
}
|
|
2731
3109
|
|
|
2732
|
-
interface components$
|
|
3110
|
+
interface components$7 {
|
|
2733
3111
|
schemas: {
|
|
2734
3112
|
TripInfoResultStructure: {
|
|
2735
3113
|
previousCall: {
|
|
@@ -2843,6 +3221,12 @@ interface components$6 {
|
|
|
2843
3221
|
unplanned?: boolean;
|
|
2844
3222
|
cancelled?: boolean;
|
|
2845
3223
|
deviation?: boolean;
|
|
3224
|
+
situationFullRefs?: {
|
|
3225
|
+
situationFullRef: {
|
|
3226
|
+
participantRef: string;
|
|
3227
|
+
situationNumber: string;
|
|
3228
|
+
}[];
|
|
3229
|
+
};
|
|
2846
3230
|
};
|
|
2847
3231
|
journeyTrack?: {
|
|
2848
3232
|
trackSection: {
|
|
@@ -2883,13 +3267,14 @@ interface components$6 {
|
|
|
2883
3267
|
defaultLanguage?: string;
|
|
2884
3268
|
calcTime?: string;
|
|
2885
3269
|
tripInfoResponseContext?: {
|
|
2886
|
-
places
|
|
3270
|
+
places?: {
|
|
2887
3271
|
place: {
|
|
2888
3272
|
stopPoint?: {
|
|
2889
3273
|
stopPointRef: string;
|
|
2890
3274
|
stopPointName: {
|
|
2891
3275
|
text: string;
|
|
2892
3276
|
};
|
|
3277
|
+
parentRef?: string;
|
|
2893
3278
|
plannedQuay?: {
|
|
2894
3279
|
text: string;
|
|
2895
3280
|
};
|
|
@@ -2961,6 +3346,65 @@ interface components$6 {
|
|
|
2961
3346
|
}[];
|
|
2962
3347
|
}[];
|
|
2963
3348
|
};
|
|
3349
|
+
situations?: {
|
|
3350
|
+
ptSituation: {
|
|
3351
|
+
creationTime: string;
|
|
3352
|
+
participantRef?: string;
|
|
3353
|
+
situationNumber: string;
|
|
3354
|
+
version?: number;
|
|
3355
|
+
source: {
|
|
3356
|
+
/** @enum {string} */
|
|
3357
|
+
sourceType: "directReport" | "email" | "phone" | "fax" | "post" | "feed" | "radio" | "tv" | "web" | "pager" | "text" | "other";
|
|
3358
|
+
};
|
|
3359
|
+
validityPeriod: {
|
|
3360
|
+
startTime: string;
|
|
3361
|
+
endTime?: string;
|
|
3362
|
+
}[];
|
|
3363
|
+
alertCause: string;
|
|
3364
|
+
priority?: string;
|
|
3365
|
+
scopeType?: string;
|
|
3366
|
+
publishingActions?: {
|
|
3367
|
+
publishingAction: {
|
|
3368
|
+
publishAtScope: {
|
|
3369
|
+
scopeType: string;
|
|
3370
|
+
};
|
|
3371
|
+
passengerInformationAction: {
|
|
3372
|
+
actionRef: string;
|
|
3373
|
+
recordedAtTime: string;
|
|
3374
|
+
/** @enum {string} */
|
|
3375
|
+
perspective: "general" | "stopPoint" | "vehicleJourney";
|
|
3376
|
+
textualContent: {
|
|
3377
|
+
summaryContent: {
|
|
3378
|
+
summaryText: string;
|
|
3379
|
+
};
|
|
3380
|
+
reasonContent?: {
|
|
3381
|
+
reasonText: string;
|
|
3382
|
+
};
|
|
3383
|
+
descriptionContent: {
|
|
3384
|
+
descriptionText: string;
|
|
3385
|
+
}[];
|
|
3386
|
+
consequenceContent: {
|
|
3387
|
+
consequenceText: string;
|
|
3388
|
+
}[];
|
|
3389
|
+
recommendationContent: {
|
|
3390
|
+
recommendationText: string;
|
|
3391
|
+
}[];
|
|
3392
|
+
durationContent?: {
|
|
3393
|
+
durationText: string;
|
|
3394
|
+
};
|
|
3395
|
+
remarkContent: {
|
|
3396
|
+
remark: string;
|
|
3397
|
+
}[];
|
|
3398
|
+
infoLink: {
|
|
3399
|
+
uri: string;
|
|
3400
|
+
label?: string[];
|
|
3401
|
+
}[];
|
|
3402
|
+
}[];
|
|
3403
|
+
}[];
|
|
3404
|
+
}[];
|
|
3405
|
+
};
|
|
3406
|
+
}[];
|
|
3407
|
+
};
|
|
2964
3408
|
};
|
|
2965
3409
|
tripInfoResult: {
|
|
2966
3410
|
previousCall: {
|
|
@@ -3074,6 +3518,12 @@ interface components$6 {
|
|
|
3074
3518
|
unplanned?: boolean;
|
|
3075
3519
|
cancelled?: boolean;
|
|
3076
3520
|
deviation?: boolean;
|
|
3521
|
+
situationFullRefs?: {
|
|
3522
|
+
situationFullRef: {
|
|
3523
|
+
participantRef: string;
|
|
3524
|
+
situationNumber: string;
|
|
3525
|
+
}[];
|
|
3526
|
+
};
|
|
3077
3527
|
};
|
|
3078
3528
|
journeyTrack?: {
|
|
3079
3529
|
trackSection: {
|
|
@@ -3120,13 +3570,14 @@ interface components$6 {
|
|
|
3120
3570
|
defaultLanguage?: string;
|
|
3121
3571
|
calcTime?: string;
|
|
3122
3572
|
tripInfoResponseContext?: {
|
|
3123
|
-
places
|
|
3573
|
+
places?: {
|
|
3124
3574
|
place: {
|
|
3125
3575
|
stopPoint?: {
|
|
3126
3576
|
stopPointRef: string;
|
|
3127
3577
|
stopPointName: {
|
|
3128
3578
|
text: string;
|
|
3129
3579
|
};
|
|
3580
|
+
parentRef?: string;
|
|
3130
3581
|
plannedQuay?: {
|
|
3131
3582
|
text: string;
|
|
3132
3583
|
};
|
|
@@ -3198,6 +3649,65 @@ interface components$6 {
|
|
|
3198
3649
|
}[];
|
|
3199
3650
|
}[];
|
|
3200
3651
|
};
|
|
3652
|
+
situations?: {
|
|
3653
|
+
ptSituation: {
|
|
3654
|
+
creationTime: string;
|
|
3655
|
+
participantRef?: string;
|
|
3656
|
+
situationNumber: string;
|
|
3657
|
+
version?: number;
|
|
3658
|
+
source: {
|
|
3659
|
+
/** @enum {string} */
|
|
3660
|
+
sourceType: "directReport" | "email" | "phone" | "fax" | "post" | "feed" | "radio" | "tv" | "web" | "pager" | "text" | "other";
|
|
3661
|
+
};
|
|
3662
|
+
validityPeriod: {
|
|
3663
|
+
startTime: string;
|
|
3664
|
+
endTime?: string;
|
|
3665
|
+
}[];
|
|
3666
|
+
alertCause: string;
|
|
3667
|
+
priority?: string;
|
|
3668
|
+
scopeType?: string;
|
|
3669
|
+
publishingActions?: {
|
|
3670
|
+
publishingAction: {
|
|
3671
|
+
publishAtScope: {
|
|
3672
|
+
scopeType: string;
|
|
3673
|
+
};
|
|
3674
|
+
passengerInformationAction: {
|
|
3675
|
+
actionRef: string;
|
|
3676
|
+
recordedAtTime: string;
|
|
3677
|
+
/** @enum {string} */
|
|
3678
|
+
perspective: "general" | "stopPoint" | "vehicleJourney";
|
|
3679
|
+
textualContent: {
|
|
3680
|
+
summaryContent: {
|
|
3681
|
+
summaryText: string;
|
|
3682
|
+
};
|
|
3683
|
+
reasonContent?: {
|
|
3684
|
+
reasonText: string;
|
|
3685
|
+
};
|
|
3686
|
+
descriptionContent: {
|
|
3687
|
+
descriptionText: string;
|
|
3688
|
+
}[];
|
|
3689
|
+
consequenceContent: {
|
|
3690
|
+
consequenceText: string;
|
|
3691
|
+
}[];
|
|
3692
|
+
recommendationContent: {
|
|
3693
|
+
recommendationText: string;
|
|
3694
|
+
}[];
|
|
3695
|
+
durationContent?: {
|
|
3696
|
+
durationText: string;
|
|
3697
|
+
};
|
|
3698
|
+
remarkContent: {
|
|
3699
|
+
remark: string;
|
|
3700
|
+
}[];
|
|
3701
|
+
infoLink: {
|
|
3702
|
+
uri: string;
|
|
3703
|
+
label?: string[];
|
|
3704
|
+
}[];
|
|
3705
|
+
}[];
|
|
3706
|
+
}[];
|
|
3707
|
+
}[];
|
|
3708
|
+
};
|
|
3709
|
+
}[];
|
|
3710
|
+
};
|
|
3201
3711
|
};
|
|
3202
3712
|
tripInfoResult: {
|
|
3203
3713
|
previousCall: {
|
|
@@ -3311,6 +3821,12 @@ interface components$6 {
|
|
|
3311
3821
|
unplanned?: boolean;
|
|
3312
3822
|
cancelled?: boolean;
|
|
3313
3823
|
deviation?: boolean;
|
|
3824
|
+
situationFullRefs?: {
|
|
3825
|
+
situationFullRef: {
|
|
3826
|
+
participantRef: string;
|
|
3827
|
+
situationNumber: string;
|
|
3828
|
+
}[];
|
|
3829
|
+
};
|
|
3314
3830
|
};
|
|
3315
3831
|
journeyTrack?: {
|
|
3316
3832
|
trackSection: {
|
|
@@ -3357,7 +3873,7 @@ interface components$6 {
|
|
|
3357
3873
|
pathItems: never;
|
|
3358
3874
|
}
|
|
3359
3875
|
|
|
3360
|
-
interface components$
|
|
3876
|
+
interface components$6 {
|
|
3361
3877
|
schemas: {
|
|
3362
3878
|
TripInfoResultStructure: {
|
|
3363
3879
|
previousCall: {
|
|
@@ -3522,13 +4038,14 @@ interface components$5 {
|
|
|
3522
4038
|
defaultLanguage?: string;
|
|
3523
4039
|
calcTime?: string;
|
|
3524
4040
|
tripInfoResponseContext?: {
|
|
3525
|
-
places
|
|
4041
|
+
places?: {
|
|
3526
4042
|
place: {
|
|
3527
4043
|
stopPoint?: {
|
|
3528
4044
|
stopPointRef: string;
|
|
3529
4045
|
stopPointName: {
|
|
3530
4046
|
text: string;
|
|
3531
4047
|
};
|
|
4048
|
+
parentRef?: string;
|
|
3532
4049
|
plannedQuay?: {
|
|
3533
4050
|
text: string;
|
|
3534
4051
|
};
|
|
@@ -3600,6 +4117,65 @@ interface components$5 {
|
|
|
3600
4117
|
}[];
|
|
3601
4118
|
}[];
|
|
3602
4119
|
};
|
|
4120
|
+
situations?: {
|
|
4121
|
+
ptSituation: {
|
|
4122
|
+
creationTime: string;
|
|
4123
|
+
participantRef?: string;
|
|
4124
|
+
situationNumber: string;
|
|
4125
|
+
version?: number;
|
|
4126
|
+
source: {
|
|
4127
|
+
/** @enum {string} */
|
|
4128
|
+
sourceType: "directReport" | "email" | "phone" | "fax" | "post" | "feed" | "radio" | "tv" | "web" | "pager" | "text" | "other";
|
|
4129
|
+
};
|
|
4130
|
+
validityPeriod: {
|
|
4131
|
+
startTime: string;
|
|
4132
|
+
endTime?: string;
|
|
4133
|
+
}[];
|
|
4134
|
+
alertCause: string;
|
|
4135
|
+
priority?: string;
|
|
4136
|
+
scopeType?: string;
|
|
4137
|
+
publishingActions?: {
|
|
4138
|
+
publishingAction: {
|
|
4139
|
+
publishAtScope: {
|
|
4140
|
+
scopeType: string;
|
|
4141
|
+
};
|
|
4142
|
+
passengerInformationAction: {
|
|
4143
|
+
actionRef: string;
|
|
4144
|
+
recordedAtTime: string;
|
|
4145
|
+
/** @enum {string} */
|
|
4146
|
+
perspective: "general" | "stopPoint" | "vehicleJourney";
|
|
4147
|
+
textualContent: {
|
|
4148
|
+
summaryContent: {
|
|
4149
|
+
summaryText: string;
|
|
4150
|
+
};
|
|
4151
|
+
reasonContent?: {
|
|
4152
|
+
reasonText: string;
|
|
4153
|
+
};
|
|
4154
|
+
descriptionContent: {
|
|
4155
|
+
descriptionText: string;
|
|
4156
|
+
}[];
|
|
4157
|
+
consequenceContent: {
|
|
4158
|
+
consequenceText: string;
|
|
4159
|
+
}[];
|
|
4160
|
+
recommendationContent: {
|
|
4161
|
+
recommendationText: string;
|
|
4162
|
+
}[];
|
|
4163
|
+
durationContent?: {
|
|
4164
|
+
durationText: string;
|
|
4165
|
+
};
|
|
4166
|
+
remarkContent: {
|
|
4167
|
+
remark: string;
|
|
4168
|
+
}[];
|
|
4169
|
+
infoLink: {
|
|
4170
|
+
uri: string;
|
|
4171
|
+
label?: string[];
|
|
4172
|
+
}[];
|
|
4173
|
+
}[];
|
|
4174
|
+
}[];
|
|
4175
|
+
}[];
|
|
4176
|
+
};
|
|
4177
|
+
}[];
|
|
4178
|
+
};
|
|
3603
4179
|
};
|
|
3604
4180
|
tripInfoResult: {
|
|
3605
4181
|
previousCall: {
|
|
@@ -3770,13 +4346,14 @@ interface components$5 {
|
|
|
3770
4346
|
defaultLanguage?: string;
|
|
3771
4347
|
calcTime?: string;
|
|
3772
4348
|
tripInfoResponseContext?: {
|
|
3773
|
-
places
|
|
4349
|
+
places?: {
|
|
3774
4350
|
place: {
|
|
3775
4351
|
stopPoint?: {
|
|
3776
4352
|
stopPointRef: string;
|
|
3777
4353
|
stopPointName: {
|
|
3778
4354
|
text: string;
|
|
3779
4355
|
};
|
|
4356
|
+
parentRef?: string;
|
|
3780
4357
|
plannedQuay?: {
|
|
3781
4358
|
text: string;
|
|
3782
4359
|
};
|
|
@@ -3848,6 +4425,65 @@ interface components$5 {
|
|
|
3848
4425
|
}[];
|
|
3849
4426
|
}[];
|
|
3850
4427
|
};
|
|
4428
|
+
situations?: {
|
|
4429
|
+
ptSituation: {
|
|
4430
|
+
creationTime: string;
|
|
4431
|
+
participantRef?: string;
|
|
4432
|
+
situationNumber: string;
|
|
4433
|
+
version?: number;
|
|
4434
|
+
source: {
|
|
4435
|
+
/** @enum {string} */
|
|
4436
|
+
sourceType: "directReport" | "email" | "phone" | "fax" | "post" | "feed" | "radio" | "tv" | "web" | "pager" | "text" | "other";
|
|
4437
|
+
};
|
|
4438
|
+
validityPeriod: {
|
|
4439
|
+
startTime: string;
|
|
4440
|
+
endTime?: string;
|
|
4441
|
+
}[];
|
|
4442
|
+
alertCause: string;
|
|
4443
|
+
priority?: string;
|
|
4444
|
+
scopeType?: string;
|
|
4445
|
+
publishingActions?: {
|
|
4446
|
+
publishingAction: {
|
|
4447
|
+
publishAtScope: {
|
|
4448
|
+
scopeType: string;
|
|
4449
|
+
};
|
|
4450
|
+
passengerInformationAction: {
|
|
4451
|
+
actionRef: string;
|
|
4452
|
+
recordedAtTime: string;
|
|
4453
|
+
/** @enum {string} */
|
|
4454
|
+
perspective: "general" | "stopPoint" | "vehicleJourney";
|
|
4455
|
+
textualContent: {
|
|
4456
|
+
summaryContent: {
|
|
4457
|
+
summaryText: string;
|
|
4458
|
+
};
|
|
4459
|
+
reasonContent?: {
|
|
4460
|
+
reasonText: string;
|
|
4461
|
+
};
|
|
4462
|
+
descriptionContent: {
|
|
4463
|
+
descriptionText: string;
|
|
4464
|
+
}[];
|
|
4465
|
+
consequenceContent: {
|
|
4466
|
+
consequenceText: string;
|
|
4467
|
+
}[];
|
|
4468
|
+
recommendationContent: {
|
|
4469
|
+
recommendationText: string;
|
|
4470
|
+
}[];
|
|
4471
|
+
durationContent?: {
|
|
4472
|
+
durationText: string;
|
|
4473
|
+
};
|
|
4474
|
+
remarkContent: {
|
|
4475
|
+
remark: string;
|
|
4476
|
+
}[];
|
|
4477
|
+
infoLink: {
|
|
4478
|
+
uri: string;
|
|
4479
|
+
label?: string[];
|
|
4480
|
+
}[];
|
|
4481
|
+
}[];
|
|
4482
|
+
}[];
|
|
4483
|
+
}[];
|
|
4484
|
+
};
|
|
4485
|
+
}[];
|
|
4486
|
+
};
|
|
3851
4487
|
};
|
|
3852
4488
|
tripInfoResult: {
|
|
3853
4489
|
previousCall: {
|
|
@@ -4018,7 +4654,7 @@ interface components$5 {
|
|
|
4018
4654
|
pathItems: never;
|
|
4019
4655
|
}
|
|
4020
4656
|
|
|
4021
|
-
interface components$
|
|
4657
|
+
interface components$5 {
|
|
4022
4658
|
schemas: {
|
|
4023
4659
|
ModeAndModeOfOperationFilter: {
|
|
4024
4660
|
exclude?: boolean;
|
|
@@ -4041,7 +4677,7 @@ interface components$4 {
|
|
|
4041
4677
|
includeIntermediateStops?: boolean;
|
|
4042
4678
|
};
|
|
4043
4679
|
ViaPoint: {
|
|
4044
|
-
|
|
4680
|
+
viaPoint: {
|
|
4045
4681
|
stopPointRef?: string;
|
|
4046
4682
|
stopPlaceRef?: string;
|
|
4047
4683
|
geoPosition?: {
|
|
@@ -4052,7 +4688,7 @@ interface components$4 {
|
|
|
4052
4688
|
text: string;
|
|
4053
4689
|
};
|
|
4054
4690
|
};
|
|
4055
|
-
dwellTime?:
|
|
4691
|
+
dwellTime?: string;
|
|
4056
4692
|
};
|
|
4057
4693
|
OJPTripRequest: {
|
|
4058
4694
|
requestTimestamp: string;
|
|
@@ -4085,7 +4721,7 @@ interface components$4 {
|
|
|
4085
4721
|
depArrTime?: string;
|
|
4086
4722
|
};
|
|
4087
4723
|
via: {
|
|
4088
|
-
|
|
4724
|
+
viaPoint: {
|
|
4089
4725
|
stopPointRef?: string;
|
|
4090
4726
|
stopPlaceRef?: string;
|
|
4091
4727
|
geoPosition?: {
|
|
@@ -4096,7 +4732,7 @@ interface components$4 {
|
|
|
4096
4732
|
text: string;
|
|
4097
4733
|
};
|
|
4098
4734
|
};
|
|
4099
|
-
dwellTime?:
|
|
4735
|
+
dwellTime?: string;
|
|
4100
4736
|
}[];
|
|
4101
4737
|
params?: {
|
|
4102
4738
|
modeAndModeOfOperationFilter?: {
|
|
@@ -4154,7 +4790,7 @@ interface components$4 {
|
|
|
4154
4790
|
depArrTime?: string;
|
|
4155
4791
|
};
|
|
4156
4792
|
via: {
|
|
4157
|
-
|
|
4793
|
+
viaPoint: {
|
|
4158
4794
|
stopPointRef?: string;
|
|
4159
4795
|
stopPlaceRef?: string;
|
|
4160
4796
|
geoPosition?: {
|
|
@@ -4165,7 +4801,7 @@ interface components$4 {
|
|
|
4165
4801
|
text: string;
|
|
4166
4802
|
};
|
|
4167
4803
|
};
|
|
4168
|
-
dwellTime?:
|
|
4804
|
+
dwellTime?: string;
|
|
4169
4805
|
}[];
|
|
4170
4806
|
params?: {
|
|
4171
4807
|
modeAndModeOfOperationFilter?: {
|
|
@@ -4195,7 +4831,7 @@ interface components$4 {
|
|
|
4195
4831
|
pathItems: never;
|
|
4196
4832
|
}
|
|
4197
4833
|
|
|
4198
|
-
interface components$
|
|
4834
|
+
interface components$4 {
|
|
4199
4835
|
schemas: {
|
|
4200
4836
|
LegBoard: {
|
|
4201
4837
|
stopPointRef: string;
|
|
@@ -4429,6 +5065,12 @@ interface components$3 {
|
|
|
4429
5065
|
unplanned?: boolean;
|
|
4430
5066
|
cancelled?: boolean;
|
|
4431
5067
|
deviation?: boolean;
|
|
5068
|
+
situationFullRefs?: {
|
|
5069
|
+
situationFullRef: {
|
|
5070
|
+
participantRef: string;
|
|
5071
|
+
situationNumber: string;
|
|
5072
|
+
}[];
|
|
5073
|
+
};
|
|
4432
5074
|
};
|
|
4433
5075
|
legTrack?: {
|
|
4434
5076
|
trackSection: {
|
|
@@ -4663,6 +5305,12 @@ interface components$3 {
|
|
|
4663
5305
|
unplanned?: boolean;
|
|
4664
5306
|
cancelled?: boolean;
|
|
4665
5307
|
deviation?: boolean;
|
|
5308
|
+
situationFullRefs?: {
|
|
5309
|
+
situationFullRef: {
|
|
5310
|
+
participantRef: string;
|
|
5311
|
+
situationNumber: string;
|
|
5312
|
+
}[];
|
|
5313
|
+
};
|
|
4666
5314
|
};
|
|
4667
5315
|
legTrack?: {
|
|
4668
5316
|
trackSection: {
|
|
@@ -4906,6 +5554,12 @@ interface components$3 {
|
|
|
4906
5554
|
unplanned?: boolean;
|
|
4907
5555
|
cancelled?: boolean;
|
|
4908
5556
|
deviation?: boolean;
|
|
5557
|
+
situationFullRefs?: {
|
|
5558
|
+
situationFullRef: {
|
|
5559
|
+
participantRef: string;
|
|
5560
|
+
situationNumber: string;
|
|
5561
|
+
}[];
|
|
5562
|
+
};
|
|
4909
5563
|
};
|
|
4910
5564
|
legTrack?: {
|
|
4911
5565
|
trackSection: {
|
|
@@ -5157,6 +5811,12 @@ interface components$3 {
|
|
|
5157
5811
|
unplanned?: boolean;
|
|
5158
5812
|
cancelled?: boolean;
|
|
5159
5813
|
deviation?: boolean;
|
|
5814
|
+
situationFullRefs?: {
|
|
5815
|
+
situationFullRef: {
|
|
5816
|
+
participantRef: string;
|
|
5817
|
+
situationNumber: string;
|
|
5818
|
+
}[];
|
|
5819
|
+
};
|
|
5160
5820
|
};
|
|
5161
5821
|
legTrack?: {
|
|
5162
5822
|
trackSection: {
|
|
@@ -5261,13 +5921,14 @@ interface components$3 {
|
|
|
5261
5921
|
defaultLanguage?: string;
|
|
5262
5922
|
calcTime?: string;
|
|
5263
5923
|
tripResponseContext?: {
|
|
5264
|
-
places
|
|
5924
|
+
places?: {
|
|
5265
5925
|
place: {
|
|
5266
5926
|
stopPoint?: {
|
|
5267
5927
|
stopPointRef: string;
|
|
5268
5928
|
stopPointName: {
|
|
5269
5929
|
text: string;
|
|
5270
5930
|
};
|
|
5931
|
+
parentRef?: string;
|
|
5271
5932
|
plannedQuay?: {
|
|
5272
5933
|
text: string;
|
|
5273
5934
|
};
|
|
@@ -5339,6 +6000,65 @@ interface components$3 {
|
|
|
5339
6000
|
}[];
|
|
5340
6001
|
}[];
|
|
5341
6002
|
};
|
|
6003
|
+
situations?: {
|
|
6004
|
+
ptSituation: {
|
|
6005
|
+
creationTime: string;
|
|
6006
|
+
participantRef?: string;
|
|
6007
|
+
situationNumber: string;
|
|
6008
|
+
version?: number;
|
|
6009
|
+
source: {
|
|
6010
|
+
/** @enum {string} */
|
|
6011
|
+
sourceType: "directReport" | "email" | "phone" | "fax" | "post" | "feed" | "radio" | "tv" | "web" | "pager" | "text" | "other";
|
|
6012
|
+
};
|
|
6013
|
+
validityPeriod: {
|
|
6014
|
+
startTime: string;
|
|
6015
|
+
endTime?: string;
|
|
6016
|
+
}[];
|
|
6017
|
+
alertCause: string;
|
|
6018
|
+
priority?: string;
|
|
6019
|
+
scopeType?: string;
|
|
6020
|
+
publishingActions?: {
|
|
6021
|
+
publishingAction: {
|
|
6022
|
+
publishAtScope: {
|
|
6023
|
+
scopeType: string;
|
|
6024
|
+
};
|
|
6025
|
+
passengerInformationAction: {
|
|
6026
|
+
actionRef: string;
|
|
6027
|
+
recordedAtTime: string;
|
|
6028
|
+
/** @enum {string} */
|
|
6029
|
+
perspective: "general" | "stopPoint" | "vehicleJourney";
|
|
6030
|
+
textualContent: {
|
|
6031
|
+
summaryContent: {
|
|
6032
|
+
summaryText: string;
|
|
6033
|
+
};
|
|
6034
|
+
reasonContent?: {
|
|
6035
|
+
reasonText: string;
|
|
6036
|
+
};
|
|
6037
|
+
descriptionContent: {
|
|
6038
|
+
descriptionText: string;
|
|
6039
|
+
}[];
|
|
6040
|
+
consequenceContent: {
|
|
6041
|
+
consequenceText: string;
|
|
6042
|
+
}[];
|
|
6043
|
+
recommendationContent: {
|
|
6044
|
+
recommendationText: string;
|
|
6045
|
+
}[];
|
|
6046
|
+
durationContent?: {
|
|
6047
|
+
durationText: string;
|
|
6048
|
+
};
|
|
6049
|
+
remarkContent: {
|
|
6050
|
+
remark: string;
|
|
6051
|
+
}[];
|
|
6052
|
+
infoLink: {
|
|
6053
|
+
uri: string;
|
|
6054
|
+
label?: string[];
|
|
6055
|
+
}[];
|
|
6056
|
+
}[];
|
|
6057
|
+
}[];
|
|
6058
|
+
}[];
|
|
6059
|
+
};
|
|
6060
|
+
}[];
|
|
6061
|
+
};
|
|
5342
6062
|
};
|
|
5343
6063
|
tripResult: {
|
|
5344
6064
|
id: string;
|
|
@@ -5494,6 +6214,12 @@ interface components$3 {
|
|
|
5494
6214
|
unplanned?: boolean;
|
|
5495
6215
|
cancelled?: boolean;
|
|
5496
6216
|
deviation?: boolean;
|
|
6217
|
+
situationFullRefs?: {
|
|
6218
|
+
situationFullRef: {
|
|
6219
|
+
participantRef: string;
|
|
6220
|
+
situationNumber: string;
|
|
6221
|
+
}[];
|
|
6222
|
+
};
|
|
5497
6223
|
};
|
|
5498
6224
|
legTrack?: {
|
|
5499
6225
|
trackSection: {
|
|
@@ -5604,13 +6330,14 @@ interface components$3 {
|
|
|
5604
6330
|
defaultLanguage?: string;
|
|
5605
6331
|
calcTime?: string;
|
|
5606
6332
|
tripResponseContext?: {
|
|
5607
|
-
places
|
|
6333
|
+
places?: {
|
|
5608
6334
|
place: {
|
|
5609
6335
|
stopPoint?: {
|
|
5610
6336
|
stopPointRef: string;
|
|
5611
6337
|
stopPointName: {
|
|
5612
6338
|
text: string;
|
|
5613
6339
|
};
|
|
6340
|
+
parentRef?: string;
|
|
5614
6341
|
plannedQuay?: {
|
|
5615
6342
|
text: string;
|
|
5616
6343
|
};
|
|
@@ -5682,11 +6409,70 @@ interface components$3 {
|
|
|
5682
6409
|
}[];
|
|
5683
6410
|
}[];
|
|
5684
6411
|
};
|
|
5685
|
-
|
|
5686
|
-
|
|
5687
|
-
|
|
5688
|
-
|
|
5689
|
-
|
|
6412
|
+
situations?: {
|
|
6413
|
+
ptSituation: {
|
|
6414
|
+
creationTime: string;
|
|
6415
|
+
participantRef?: string;
|
|
6416
|
+
situationNumber: string;
|
|
6417
|
+
version?: number;
|
|
6418
|
+
source: {
|
|
6419
|
+
/** @enum {string} */
|
|
6420
|
+
sourceType: "directReport" | "email" | "phone" | "fax" | "post" | "feed" | "radio" | "tv" | "web" | "pager" | "text" | "other";
|
|
6421
|
+
};
|
|
6422
|
+
validityPeriod: {
|
|
6423
|
+
startTime: string;
|
|
6424
|
+
endTime?: string;
|
|
6425
|
+
}[];
|
|
6426
|
+
alertCause: string;
|
|
6427
|
+
priority?: string;
|
|
6428
|
+
scopeType?: string;
|
|
6429
|
+
publishingActions?: {
|
|
6430
|
+
publishingAction: {
|
|
6431
|
+
publishAtScope: {
|
|
6432
|
+
scopeType: string;
|
|
6433
|
+
};
|
|
6434
|
+
passengerInformationAction: {
|
|
6435
|
+
actionRef: string;
|
|
6436
|
+
recordedAtTime: string;
|
|
6437
|
+
/** @enum {string} */
|
|
6438
|
+
perspective: "general" | "stopPoint" | "vehicleJourney";
|
|
6439
|
+
textualContent: {
|
|
6440
|
+
summaryContent: {
|
|
6441
|
+
summaryText: string;
|
|
6442
|
+
};
|
|
6443
|
+
reasonContent?: {
|
|
6444
|
+
reasonText: string;
|
|
6445
|
+
};
|
|
6446
|
+
descriptionContent: {
|
|
6447
|
+
descriptionText: string;
|
|
6448
|
+
}[];
|
|
6449
|
+
consequenceContent: {
|
|
6450
|
+
consequenceText: string;
|
|
6451
|
+
}[];
|
|
6452
|
+
recommendationContent: {
|
|
6453
|
+
recommendationText: string;
|
|
6454
|
+
}[];
|
|
6455
|
+
durationContent?: {
|
|
6456
|
+
durationText: string;
|
|
6457
|
+
};
|
|
6458
|
+
remarkContent: {
|
|
6459
|
+
remark: string;
|
|
6460
|
+
}[];
|
|
6461
|
+
infoLink: {
|
|
6462
|
+
uri: string;
|
|
6463
|
+
label?: string[];
|
|
6464
|
+
}[];
|
|
6465
|
+
}[];
|
|
6466
|
+
}[];
|
|
6467
|
+
}[];
|
|
6468
|
+
};
|
|
6469
|
+
}[];
|
|
6470
|
+
};
|
|
6471
|
+
};
|
|
6472
|
+
tripResult: {
|
|
6473
|
+
id: string;
|
|
6474
|
+
trip: {
|
|
6475
|
+
id: string;
|
|
5690
6476
|
duration: string;
|
|
5691
6477
|
/** Format: date-time */
|
|
5692
6478
|
startTime: string;
|
|
@@ -5837,6 +6623,12 @@ interface components$3 {
|
|
|
5837
6623
|
unplanned?: boolean;
|
|
5838
6624
|
cancelled?: boolean;
|
|
5839
6625
|
deviation?: boolean;
|
|
6626
|
+
situationFullRefs?: {
|
|
6627
|
+
situationFullRef: {
|
|
6628
|
+
participantRef: string;
|
|
6629
|
+
situationNumber: string;
|
|
6630
|
+
}[];
|
|
6631
|
+
};
|
|
5840
6632
|
};
|
|
5841
6633
|
legTrack?: {
|
|
5842
6634
|
trackSection: {
|
|
@@ -5947,7 +6739,7 @@ interface components$3 {
|
|
|
5947
6739
|
pathItems: never;
|
|
5948
6740
|
}
|
|
5949
6741
|
|
|
5950
|
-
interface components$
|
|
6742
|
+
interface components$3 {
|
|
5951
6743
|
schemas: {
|
|
5952
6744
|
TripRefineParam: {
|
|
5953
6745
|
numberOfResults?: number;
|
|
@@ -6119,6 +6911,12 @@ interface components$2 {
|
|
|
6119
6911
|
unplanned?: boolean;
|
|
6120
6912
|
cancelled?: boolean;
|
|
6121
6913
|
deviation?: boolean;
|
|
6914
|
+
situationFullRefs?: {
|
|
6915
|
+
situationFullRef: {
|
|
6916
|
+
participantRef: string;
|
|
6917
|
+
situationNumber: string;
|
|
6918
|
+
}[];
|
|
6919
|
+
};
|
|
6122
6920
|
};
|
|
6123
6921
|
legTrack?: {
|
|
6124
6922
|
trackSection: {
|
|
@@ -6389,6 +7187,12 @@ interface components$2 {
|
|
|
6389
7187
|
unplanned?: boolean;
|
|
6390
7188
|
cancelled?: boolean;
|
|
6391
7189
|
deviation?: boolean;
|
|
7190
|
+
situationFullRefs?: {
|
|
7191
|
+
situationFullRef: {
|
|
7192
|
+
participantRef: string;
|
|
7193
|
+
situationNumber: string;
|
|
7194
|
+
}[];
|
|
7195
|
+
};
|
|
6392
7196
|
};
|
|
6393
7197
|
legTrack?: {
|
|
6394
7198
|
trackSection: {
|
|
@@ -6499,6 +7303,552 @@ interface components$2 {
|
|
|
6499
7303
|
pathItems: never;
|
|
6500
7304
|
}
|
|
6501
7305
|
|
|
7306
|
+
interface components$2 {
|
|
7307
|
+
schemas: {
|
|
7308
|
+
OJPTripRefineDelivery: {
|
|
7309
|
+
responseTimestamp: string;
|
|
7310
|
+
requestMessageRef?: string;
|
|
7311
|
+
defaultLanguage?: string;
|
|
7312
|
+
calcTime?: string;
|
|
7313
|
+
tripResult: {
|
|
7314
|
+
id: string;
|
|
7315
|
+
trip: {
|
|
7316
|
+
id: string;
|
|
7317
|
+
duration: string;
|
|
7318
|
+
/** Format: date-time */
|
|
7319
|
+
startTime: string;
|
|
7320
|
+
/** Format: date-time */
|
|
7321
|
+
endTime: string;
|
|
7322
|
+
transfers: number;
|
|
7323
|
+
leg: {
|
|
7324
|
+
id: string;
|
|
7325
|
+
duration?: string;
|
|
7326
|
+
timedLeg?: {
|
|
7327
|
+
legBoard: {
|
|
7328
|
+
stopPointRef: string;
|
|
7329
|
+
stopPointName: {
|
|
7330
|
+
text: string;
|
|
7331
|
+
};
|
|
7332
|
+
nameSuffix?: {
|
|
7333
|
+
text: string;
|
|
7334
|
+
};
|
|
7335
|
+
plannedQuay?: {
|
|
7336
|
+
text: string;
|
|
7337
|
+
};
|
|
7338
|
+
estimatedQuay?: {
|
|
7339
|
+
text: string;
|
|
7340
|
+
};
|
|
7341
|
+
serviceArrival?: {
|
|
7342
|
+
timetabledTime: string;
|
|
7343
|
+
estimatedTime?: string;
|
|
7344
|
+
};
|
|
7345
|
+
serviceDeparture: {
|
|
7346
|
+
timetabledTime: string;
|
|
7347
|
+
estimatedTime?: string;
|
|
7348
|
+
};
|
|
7349
|
+
order?: number;
|
|
7350
|
+
requestStop?: boolean;
|
|
7351
|
+
unplannedStop?: boolean;
|
|
7352
|
+
notServicedStop?: boolean;
|
|
7353
|
+
noBoardingAtStop?: boolean;
|
|
7354
|
+
noAlightingAtStop?: boolean;
|
|
7355
|
+
};
|
|
7356
|
+
legIntermediate: {
|
|
7357
|
+
stopPointRef: string;
|
|
7358
|
+
stopPointName: {
|
|
7359
|
+
text: string;
|
|
7360
|
+
};
|
|
7361
|
+
nameSuffix?: {
|
|
7362
|
+
text: string;
|
|
7363
|
+
};
|
|
7364
|
+
plannedQuay?: {
|
|
7365
|
+
text: string;
|
|
7366
|
+
};
|
|
7367
|
+
estimatedQuay?: {
|
|
7368
|
+
text: string;
|
|
7369
|
+
};
|
|
7370
|
+
serviceArrival: {
|
|
7371
|
+
timetabledTime: string;
|
|
7372
|
+
estimatedTime?: string;
|
|
7373
|
+
};
|
|
7374
|
+
serviceDeparture: {
|
|
7375
|
+
timetabledTime: string;
|
|
7376
|
+
estimatedTime?: string;
|
|
7377
|
+
};
|
|
7378
|
+
order?: number;
|
|
7379
|
+
requestStop?: boolean;
|
|
7380
|
+
unplannedStop?: boolean;
|
|
7381
|
+
notServicedStop?: boolean;
|
|
7382
|
+
noBoardingAtStop?: boolean;
|
|
7383
|
+
noAlightingAtStop?: boolean;
|
|
7384
|
+
}[];
|
|
7385
|
+
legAlight: {
|
|
7386
|
+
stopPointRef: string;
|
|
7387
|
+
stopPointName: {
|
|
7388
|
+
text: string;
|
|
7389
|
+
};
|
|
7390
|
+
nameSuffix?: {
|
|
7391
|
+
text: string;
|
|
7392
|
+
};
|
|
7393
|
+
plannedQuay?: {
|
|
7394
|
+
text: string;
|
|
7395
|
+
};
|
|
7396
|
+
estimatedQuay?: {
|
|
7397
|
+
text: string;
|
|
7398
|
+
};
|
|
7399
|
+
serviceArrival: {
|
|
7400
|
+
timetabledTime: string;
|
|
7401
|
+
estimatedTime?: string;
|
|
7402
|
+
};
|
|
7403
|
+
serviceDeparture?: {
|
|
7404
|
+
timetabledTime: string;
|
|
7405
|
+
estimatedTime?: string;
|
|
7406
|
+
};
|
|
7407
|
+
order?: number;
|
|
7408
|
+
requestStop?: boolean;
|
|
7409
|
+
unplannedStop?: boolean;
|
|
7410
|
+
notServicedStop?: boolean;
|
|
7411
|
+
noBoardingAtStop?: boolean;
|
|
7412
|
+
noAlightingAtStop?: boolean;
|
|
7413
|
+
};
|
|
7414
|
+
service: {
|
|
7415
|
+
conventionalModeOfOperation?: string;
|
|
7416
|
+
operatingDayRef: string;
|
|
7417
|
+
journeyRef: string;
|
|
7418
|
+
publicCode?: string;
|
|
7419
|
+
lineRef: string;
|
|
7420
|
+
directionRef?: string;
|
|
7421
|
+
mode: {
|
|
7422
|
+
/** @enum {string} */
|
|
7423
|
+
ptMode: "air" | "bus" | "coach" | "trolleyBus" | "metro" | "rail" | "tram" | "water" | "ferry" | "cableway" | "funicular" | "lift" | "other" | "unknown";
|
|
7424
|
+
airSubmode?: string;
|
|
7425
|
+
busSubmode?: string;
|
|
7426
|
+
coachSubmode?: string;
|
|
7427
|
+
funicularSubmode?: string;
|
|
7428
|
+
metroSubmode?: string;
|
|
7429
|
+
tramSubmode?: string;
|
|
7430
|
+
telecabinSubmode?: string;
|
|
7431
|
+
railSubmode?: string;
|
|
7432
|
+
waterSubmode?: string;
|
|
7433
|
+
name?: {
|
|
7434
|
+
text: string;
|
|
7435
|
+
};
|
|
7436
|
+
shortName?: {
|
|
7437
|
+
text: string;
|
|
7438
|
+
};
|
|
7439
|
+
};
|
|
7440
|
+
productCategory?: {
|
|
7441
|
+
name?: {
|
|
7442
|
+
text: string;
|
|
7443
|
+
};
|
|
7444
|
+
shortName?: {
|
|
7445
|
+
text: string;
|
|
7446
|
+
};
|
|
7447
|
+
productCategoryRef?: string;
|
|
7448
|
+
};
|
|
7449
|
+
publishedServiceName: {
|
|
7450
|
+
text: string;
|
|
7451
|
+
};
|
|
7452
|
+
trainNumber?: string;
|
|
7453
|
+
attribute: {
|
|
7454
|
+
userText: {
|
|
7455
|
+
text: string;
|
|
7456
|
+
};
|
|
7457
|
+
code: string;
|
|
7458
|
+
}[];
|
|
7459
|
+
operatorRef?: string;
|
|
7460
|
+
destinationStopPointRef?: string;
|
|
7461
|
+
destinationText?: {
|
|
7462
|
+
text: string;
|
|
7463
|
+
};
|
|
7464
|
+
unplanned?: boolean;
|
|
7465
|
+
cancelled?: boolean;
|
|
7466
|
+
deviation?: boolean;
|
|
7467
|
+
situationFullRefs?: {
|
|
7468
|
+
situationFullRef: {
|
|
7469
|
+
participantRef: string;
|
|
7470
|
+
situationNumber: string;
|
|
7471
|
+
}[];
|
|
7472
|
+
};
|
|
7473
|
+
};
|
|
7474
|
+
legTrack?: {
|
|
7475
|
+
trackSection: {
|
|
7476
|
+
trackSectionStart?: {
|
|
7477
|
+
stopPointRef?: string;
|
|
7478
|
+
stopPlaceRef?: string;
|
|
7479
|
+
geoPosition?: {
|
|
7480
|
+
longitude: number;
|
|
7481
|
+
latitude: number;
|
|
7482
|
+
};
|
|
7483
|
+
name: {
|
|
7484
|
+
text: string;
|
|
7485
|
+
};
|
|
7486
|
+
};
|
|
7487
|
+
trackSectionEnd?: {
|
|
7488
|
+
stopPointRef?: string;
|
|
7489
|
+
stopPlaceRef?: string;
|
|
7490
|
+
geoPosition?: {
|
|
7491
|
+
longitude: number;
|
|
7492
|
+
latitude: number;
|
|
7493
|
+
};
|
|
7494
|
+
name: {
|
|
7495
|
+
text: string;
|
|
7496
|
+
};
|
|
7497
|
+
};
|
|
7498
|
+
linkProjection?: {
|
|
7499
|
+
position: {
|
|
7500
|
+
longitude: number;
|
|
7501
|
+
latitude: number;
|
|
7502
|
+
}[];
|
|
7503
|
+
};
|
|
7504
|
+
}[];
|
|
7505
|
+
};
|
|
7506
|
+
};
|
|
7507
|
+
transferLeg?: {
|
|
7508
|
+
/** @enum {string} */
|
|
7509
|
+
transferType: "walk" | "remainInVehicle";
|
|
7510
|
+
legStart: {
|
|
7511
|
+
stopPointRef?: string;
|
|
7512
|
+
stopPlaceRef?: string;
|
|
7513
|
+
geoPosition?: {
|
|
7514
|
+
longitude: number;
|
|
7515
|
+
latitude: number;
|
|
7516
|
+
};
|
|
7517
|
+
name: {
|
|
7518
|
+
text: string;
|
|
7519
|
+
};
|
|
7520
|
+
};
|
|
7521
|
+
legEnd: {
|
|
7522
|
+
stopPointRef?: string;
|
|
7523
|
+
stopPlaceRef?: string;
|
|
7524
|
+
geoPosition?: {
|
|
7525
|
+
longitude: number;
|
|
7526
|
+
latitude: number;
|
|
7527
|
+
};
|
|
7528
|
+
name: {
|
|
7529
|
+
text: string;
|
|
7530
|
+
};
|
|
7531
|
+
};
|
|
7532
|
+
duration: string;
|
|
7533
|
+
};
|
|
7534
|
+
continuousLeg?: {
|
|
7535
|
+
legStart: {
|
|
7536
|
+
stopPointRef?: string;
|
|
7537
|
+
stopPlaceRef?: string;
|
|
7538
|
+
geoPosition?: {
|
|
7539
|
+
longitude: number;
|
|
7540
|
+
latitude: number;
|
|
7541
|
+
};
|
|
7542
|
+
name: {
|
|
7543
|
+
text: string;
|
|
7544
|
+
};
|
|
7545
|
+
};
|
|
7546
|
+
legEnd: {
|
|
7547
|
+
stopPointRef?: string;
|
|
7548
|
+
stopPlaceRef?: string;
|
|
7549
|
+
geoPosition?: {
|
|
7550
|
+
longitude: number;
|
|
7551
|
+
latitude: number;
|
|
7552
|
+
};
|
|
7553
|
+
name: {
|
|
7554
|
+
text: string;
|
|
7555
|
+
};
|
|
7556
|
+
};
|
|
7557
|
+
service: {
|
|
7558
|
+
personalModeOfOperation?: string;
|
|
7559
|
+
personalMode?: string;
|
|
7560
|
+
};
|
|
7561
|
+
duration: string;
|
|
7562
|
+
};
|
|
7563
|
+
}[];
|
|
7564
|
+
unplanned?: boolean;
|
|
7565
|
+
cancelled?: boolean;
|
|
7566
|
+
deviation?: boolean;
|
|
7567
|
+
delayed?: boolean;
|
|
7568
|
+
infeasible?: boolean;
|
|
7569
|
+
};
|
|
7570
|
+
}[];
|
|
7571
|
+
};
|
|
7572
|
+
OJP: {
|
|
7573
|
+
OJPResponse: {
|
|
7574
|
+
serviceDelivery: {
|
|
7575
|
+
responseTimestamp: string;
|
|
7576
|
+
producerRef: string;
|
|
7577
|
+
OJPTripRefineDelivery: {
|
|
7578
|
+
responseTimestamp: string;
|
|
7579
|
+
requestMessageRef?: string;
|
|
7580
|
+
defaultLanguage?: string;
|
|
7581
|
+
calcTime?: string;
|
|
7582
|
+
tripResult: {
|
|
7583
|
+
id: string;
|
|
7584
|
+
trip: {
|
|
7585
|
+
id: string;
|
|
7586
|
+
duration: string;
|
|
7587
|
+
/** Format: date-time */
|
|
7588
|
+
startTime: string;
|
|
7589
|
+
/** Format: date-time */
|
|
7590
|
+
endTime: string;
|
|
7591
|
+
transfers: number;
|
|
7592
|
+
leg: {
|
|
7593
|
+
id: string;
|
|
7594
|
+
duration?: string;
|
|
7595
|
+
timedLeg?: {
|
|
7596
|
+
legBoard: {
|
|
7597
|
+
stopPointRef: string;
|
|
7598
|
+
stopPointName: {
|
|
7599
|
+
text: string;
|
|
7600
|
+
};
|
|
7601
|
+
nameSuffix?: {
|
|
7602
|
+
text: string;
|
|
7603
|
+
};
|
|
7604
|
+
plannedQuay?: {
|
|
7605
|
+
text: string;
|
|
7606
|
+
};
|
|
7607
|
+
estimatedQuay?: {
|
|
7608
|
+
text: string;
|
|
7609
|
+
};
|
|
7610
|
+
serviceArrival?: {
|
|
7611
|
+
timetabledTime: string;
|
|
7612
|
+
estimatedTime?: string;
|
|
7613
|
+
};
|
|
7614
|
+
serviceDeparture: {
|
|
7615
|
+
timetabledTime: string;
|
|
7616
|
+
estimatedTime?: string;
|
|
7617
|
+
};
|
|
7618
|
+
order?: number;
|
|
7619
|
+
requestStop?: boolean;
|
|
7620
|
+
unplannedStop?: boolean;
|
|
7621
|
+
notServicedStop?: boolean;
|
|
7622
|
+
noBoardingAtStop?: boolean;
|
|
7623
|
+
noAlightingAtStop?: boolean;
|
|
7624
|
+
};
|
|
7625
|
+
legIntermediate: {
|
|
7626
|
+
stopPointRef: string;
|
|
7627
|
+
stopPointName: {
|
|
7628
|
+
text: string;
|
|
7629
|
+
};
|
|
7630
|
+
nameSuffix?: {
|
|
7631
|
+
text: string;
|
|
7632
|
+
};
|
|
7633
|
+
plannedQuay?: {
|
|
7634
|
+
text: string;
|
|
7635
|
+
};
|
|
7636
|
+
estimatedQuay?: {
|
|
7637
|
+
text: string;
|
|
7638
|
+
};
|
|
7639
|
+
serviceArrival: {
|
|
7640
|
+
timetabledTime: string;
|
|
7641
|
+
estimatedTime?: string;
|
|
7642
|
+
};
|
|
7643
|
+
serviceDeparture: {
|
|
7644
|
+
timetabledTime: string;
|
|
7645
|
+
estimatedTime?: string;
|
|
7646
|
+
};
|
|
7647
|
+
order?: number;
|
|
7648
|
+
requestStop?: boolean;
|
|
7649
|
+
unplannedStop?: boolean;
|
|
7650
|
+
notServicedStop?: boolean;
|
|
7651
|
+
noBoardingAtStop?: boolean;
|
|
7652
|
+
noAlightingAtStop?: boolean;
|
|
7653
|
+
}[];
|
|
7654
|
+
legAlight: {
|
|
7655
|
+
stopPointRef: string;
|
|
7656
|
+
stopPointName: {
|
|
7657
|
+
text: string;
|
|
7658
|
+
};
|
|
7659
|
+
nameSuffix?: {
|
|
7660
|
+
text: string;
|
|
7661
|
+
};
|
|
7662
|
+
plannedQuay?: {
|
|
7663
|
+
text: string;
|
|
7664
|
+
};
|
|
7665
|
+
estimatedQuay?: {
|
|
7666
|
+
text: string;
|
|
7667
|
+
};
|
|
7668
|
+
serviceArrival: {
|
|
7669
|
+
timetabledTime: string;
|
|
7670
|
+
estimatedTime?: string;
|
|
7671
|
+
};
|
|
7672
|
+
serviceDeparture?: {
|
|
7673
|
+
timetabledTime: string;
|
|
7674
|
+
estimatedTime?: string;
|
|
7675
|
+
};
|
|
7676
|
+
order?: number;
|
|
7677
|
+
requestStop?: boolean;
|
|
7678
|
+
unplannedStop?: boolean;
|
|
7679
|
+
notServicedStop?: boolean;
|
|
7680
|
+
noBoardingAtStop?: boolean;
|
|
7681
|
+
noAlightingAtStop?: boolean;
|
|
7682
|
+
};
|
|
7683
|
+
service: {
|
|
7684
|
+
conventionalModeOfOperation?: string;
|
|
7685
|
+
operatingDayRef: string;
|
|
7686
|
+
journeyRef: string;
|
|
7687
|
+
publicCode?: string;
|
|
7688
|
+
lineRef: string;
|
|
7689
|
+
directionRef?: string;
|
|
7690
|
+
mode: {
|
|
7691
|
+
/** @enum {string} */
|
|
7692
|
+
ptMode: "air" | "bus" | "coach" | "trolleyBus" | "metro" | "rail" | "tram" | "water" | "ferry" | "cableway" | "funicular" | "lift" | "other" | "unknown";
|
|
7693
|
+
airSubmode?: string;
|
|
7694
|
+
busSubmode?: string;
|
|
7695
|
+
coachSubmode?: string;
|
|
7696
|
+
funicularSubmode?: string;
|
|
7697
|
+
metroSubmode?: string;
|
|
7698
|
+
tramSubmode?: string;
|
|
7699
|
+
telecabinSubmode?: string;
|
|
7700
|
+
railSubmode?: string;
|
|
7701
|
+
waterSubmode?: string;
|
|
7702
|
+
name?: {
|
|
7703
|
+
text: string;
|
|
7704
|
+
};
|
|
7705
|
+
shortName?: {
|
|
7706
|
+
text: string;
|
|
7707
|
+
};
|
|
7708
|
+
};
|
|
7709
|
+
productCategory?: {
|
|
7710
|
+
name?: {
|
|
7711
|
+
text: string;
|
|
7712
|
+
};
|
|
7713
|
+
shortName?: {
|
|
7714
|
+
text: string;
|
|
7715
|
+
};
|
|
7716
|
+
productCategoryRef?: string;
|
|
7717
|
+
};
|
|
7718
|
+
publishedServiceName: {
|
|
7719
|
+
text: string;
|
|
7720
|
+
};
|
|
7721
|
+
trainNumber?: string;
|
|
7722
|
+
attribute: {
|
|
7723
|
+
userText: {
|
|
7724
|
+
text: string;
|
|
7725
|
+
};
|
|
7726
|
+
code: string;
|
|
7727
|
+
}[];
|
|
7728
|
+
operatorRef?: string;
|
|
7729
|
+
destinationStopPointRef?: string;
|
|
7730
|
+
destinationText?: {
|
|
7731
|
+
text: string;
|
|
7732
|
+
};
|
|
7733
|
+
unplanned?: boolean;
|
|
7734
|
+
cancelled?: boolean;
|
|
7735
|
+
deviation?: boolean;
|
|
7736
|
+
situationFullRefs?: {
|
|
7737
|
+
situationFullRef: {
|
|
7738
|
+
participantRef: string;
|
|
7739
|
+
situationNumber: string;
|
|
7740
|
+
}[];
|
|
7741
|
+
};
|
|
7742
|
+
};
|
|
7743
|
+
legTrack?: {
|
|
7744
|
+
trackSection: {
|
|
7745
|
+
trackSectionStart?: {
|
|
7746
|
+
stopPointRef?: string;
|
|
7747
|
+
stopPlaceRef?: string;
|
|
7748
|
+
geoPosition?: {
|
|
7749
|
+
longitude: number;
|
|
7750
|
+
latitude: number;
|
|
7751
|
+
};
|
|
7752
|
+
name: {
|
|
7753
|
+
text: string;
|
|
7754
|
+
};
|
|
7755
|
+
};
|
|
7756
|
+
trackSectionEnd?: {
|
|
7757
|
+
stopPointRef?: string;
|
|
7758
|
+
stopPlaceRef?: string;
|
|
7759
|
+
geoPosition?: {
|
|
7760
|
+
longitude: number;
|
|
7761
|
+
latitude: number;
|
|
7762
|
+
};
|
|
7763
|
+
name: {
|
|
7764
|
+
text: string;
|
|
7765
|
+
};
|
|
7766
|
+
};
|
|
7767
|
+
linkProjection?: {
|
|
7768
|
+
position: {
|
|
7769
|
+
longitude: number;
|
|
7770
|
+
latitude: number;
|
|
7771
|
+
}[];
|
|
7772
|
+
};
|
|
7773
|
+
}[];
|
|
7774
|
+
};
|
|
7775
|
+
};
|
|
7776
|
+
transferLeg?: {
|
|
7777
|
+
/** @enum {string} */
|
|
7778
|
+
transferType: "walk" | "remainInVehicle";
|
|
7779
|
+
legStart: {
|
|
7780
|
+
stopPointRef?: string;
|
|
7781
|
+
stopPlaceRef?: string;
|
|
7782
|
+
geoPosition?: {
|
|
7783
|
+
longitude: number;
|
|
7784
|
+
latitude: number;
|
|
7785
|
+
};
|
|
7786
|
+
name: {
|
|
7787
|
+
text: string;
|
|
7788
|
+
};
|
|
7789
|
+
};
|
|
7790
|
+
legEnd: {
|
|
7791
|
+
stopPointRef?: string;
|
|
7792
|
+
stopPlaceRef?: string;
|
|
7793
|
+
geoPosition?: {
|
|
7794
|
+
longitude: number;
|
|
7795
|
+
latitude: number;
|
|
7796
|
+
};
|
|
7797
|
+
name: {
|
|
7798
|
+
text: string;
|
|
7799
|
+
};
|
|
7800
|
+
};
|
|
7801
|
+
duration: string;
|
|
7802
|
+
};
|
|
7803
|
+
continuousLeg?: {
|
|
7804
|
+
legStart: {
|
|
7805
|
+
stopPointRef?: string;
|
|
7806
|
+
stopPlaceRef?: string;
|
|
7807
|
+
geoPosition?: {
|
|
7808
|
+
longitude: number;
|
|
7809
|
+
latitude: number;
|
|
7810
|
+
};
|
|
7811
|
+
name: {
|
|
7812
|
+
text: string;
|
|
7813
|
+
};
|
|
7814
|
+
};
|
|
7815
|
+
legEnd: {
|
|
7816
|
+
stopPointRef?: string;
|
|
7817
|
+
stopPlaceRef?: string;
|
|
7818
|
+
geoPosition?: {
|
|
7819
|
+
longitude: number;
|
|
7820
|
+
latitude: number;
|
|
7821
|
+
};
|
|
7822
|
+
name: {
|
|
7823
|
+
text: string;
|
|
7824
|
+
};
|
|
7825
|
+
};
|
|
7826
|
+
service: {
|
|
7827
|
+
personalModeOfOperation?: string;
|
|
7828
|
+
personalMode?: string;
|
|
7829
|
+
};
|
|
7830
|
+
duration: string;
|
|
7831
|
+
};
|
|
7832
|
+
}[];
|
|
7833
|
+
unplanned?: boolean;
|
|
7834
|
+
cancelled?: boolean;
|
|
7835
|
+
deviation?: boolean;
|
|
7836
|
+
delayed?: boolean;
|
|
7837
|
+
infeasible?: boolean;
|
|
7838
|
+
};
|
|
7839
|
+
}[];
|
|
7840
|
+
};
|
|
7841
|
+
};
|
|
7842
|
+
};
|
|
7843
|
+
};
|
|
7844
|
+
};
|
|
7845
|
+
responses: never;
|
|
7846
|
+
parameters: never;
|
|
7847
|
+
requestBodies: never;
|
|
7848
|
+
headers: never;
|
|
7849
|
+
pathItems: never;
|
|
7850
|
+
}
|
|
7851
|
+
|
|
6502
7852
|
interface components$1 {
|
|
6503
7853
|
schemas: {
|
|
6504
7854
|
TripFareRequest: {
|
|
@@ -7758,71 +9108,77 @@ interface components {
|
|
|
7758
9108
|
pathItems: never;
|
|
7759
9109
|
}
|
|
7760
9110
|
|
|
7761
|
-
type OJPv1_DatedJourneySchema = components$
|
|
7762
|
-
type OJPv1_TimedLegSchema = components$
|
|
7763
|
-
type OJPv1_TripLegSchema = components$
|
|
7764
|
-
type OJPv1_TripSchema = components$
|
|
7765
|
-
type UseRealtimeDataEnum = components$
|
|
7766
|
-
type VehicleModesOfTransportEnum = components$
|
|
7767
|
-
type PlaceTypeEnum = components$
|
|
7768
|
-
type GeoPositionSchema = components$
|
|
7769
|
-
type PlaceRefSchema = components$
|
|
7770
|
-
type InternationalTextSchema = components$
|
|
7771
|
-
type DatedJourneySchema = components$
|
|
7772
|
-
type CallAtStopSchema = components$
|
|
7773
|
-
type PlaceContextSchema = components$
|
|
7774
|
-
type PlaceSchema = components$
|
|
7775
|
-
type StopPointSchema = components$
|
|
7776
|
-
type StopPlaceSchema = components$
|
|
7777
|
-
type TopographicPlaceSchema = components$
|
|
7778
|
-
type PointOfInterestSchema = components$
|
|
7779
|
-
type AddressSchema = components$
|
|
7780
|
-
type ModeStructureSchema = components$
|
|
7781
|
-
type ProductCategorySchema = components$
|
|
7782
|
-
type GeneralAttributeSchema = components$
|
|
7783
|
-
type ResponseContextSchema = components$
|
|
7784
|
-
type TripRequestOJP = components$
|
|
7785
|
-
type TripParamsSchema = components$
|
|
7786
|
-
type TripRequestSchema = components$
|
|
7787
|
-
type ViaPointSchema = components$
|
|
7788
|
-
type ModeAndModeOfOperationFilterSchema = components$
|
|
7789
|
-
type TripResultSchema = components$
|
|
7790
|
-
type TripSchema = components$
|
|
7791
|
-
type LegSchema = components$
|
|
7792
|
-
type TimedLegSchema = components$
|
|
7793
|
-
type TransferLegSchema = components$
|
|
7794
|
-
type ContinuousLegSchema = components$
|
|
7795
|
-
type TripRequestResponseOJP = components$
|
|
7796
|
-
type TripDeliverySchema = components$
|
|
7797
|
-
type InitialInputSchema = components$
|
|
7798
|
-
type LIR_RequestParamsSchema = components$
|
|
7799
|
-
type LocationInformationRequestOJP = components$
|
|
7800
|
-
type LocationInformationRequestSchema = components$
|
|
7801
|
-
type PlaceResultSchema = components$
|
|
7802
|
-
type
|
|
7803
|
-
type
|
|
7804
|
-
type
|
|
7805
|
-
type
|
|
7806
|
-
type
|
|
7807
|
-
type
|
|
7808
|
-
type
|
|
7809
|
-
type
|
|
7810
|
-
type
|
|
9111
|
+
type OJPv1_DatedJourneySchema = components$e['schemas']['DatedJourney'];
|
|
9112
|
+
type OJPv1_TimedLegSchema = components$d['schemas']['TimedLeg'];
|
|
9113
|
+
type OJPv1_TripLegSchema = components$d['schemas']['TripLeg'];
|
|
9114
|
+
type OJPv1_TripSchema = components$d['schemas']['Trip'];
|
|
9115
|
+
type UseRealtimeDataEnum = components$f["schemas"]["UseRealtimeDataEnum"];
|
|
9116
|
+
type VehicleModesOfTransportEnum = components$f["schemas"]["VehicleModesOfTransportEnum"];
|
|
9117
|
+
type PlaceTypeEnum = components$f["schemas"]["PlaceTypeEnum"];
|
|
9118
|
+
type GeoPositionSchema = components$f["schemas"]["GeoPosition"];
|
|
9119
|
+
type PlaceRefSchema = components$f["schemas"]["PlaceRef"];
|
|
9120
|
+
type InternationalTextSchema = components$f["schemas"]["InternationalText"];
|
|
9121
|
+
type DatedJourneySchema = components$f["schemas"]["DatedJourney"];
|
|
9122
|
+
type CallAtStopSchema = components$f["schemas"]["CallAtStop"];
|
|
9123
|
+
type PlaceContextSchema = components$f["schemas"]["PlaceContext"];
|
|
9124
|
+
type PlaceSchema = components$f['schemas']['Place'];
|
|
9125
|
+
type StopPointSchema = components$f['schemas']['StopPoint'];
|
|
9126
|
+
type StopPlaceSchema = components$f['schemas']['StopPlace'];
|
|
9127
|
+
type TopographicPlaceSchema = components$f['schemas']['TopographicPlace'];
|
|
9128
|
+
type PointOfInterestSchema = components$f['schemas']['PointOfInterest'];
|
|
9129
|
+
type AddressSchema = components$f['schemas']['Address'];
|
|
9130
|
+
type ModeStructureSchema = components$f['schemas']['ModeStructure'];
|
|
9131
|
+
type ProductCategorySchema = components$f['schemas']['ProductCategory'];
|
|
9132
|
+
type GeneralAttributeSchema = components$f['schemas']['GeneralAttribute'];
|
|
9133
|
+
type ResponseContextSchema = components$f['schemas']['ResponseContextStructure'];
|
|
9134
|
+
type TripRequestOJP = components$5["schemas"]["OJP"];
|
|
9135
|
+
type TripParamsSchema = components$5["schemas"]["TripParam"];
|
|
9136
|
+
type TripRequestSchema = components$5["schemas"]["OJPTripRequest"];
|
|
9137
|
+
type ViaPointSchema = components$5["schemas"]["ViaPoint"];
|
|
9138
|
+
type ModeAndModeOfOperationFilterSchema = components$5["schemas"]["ModeAndModeOfOperationFilter"];
|
|
9139
|
+
type TripResultSchema = components$4['schemas']['TripResult'];
|
|
9140
|
+
type TripSchema = components$4["schemas"]["Trip"];
|
|
9141
|
+
type LegSchema = components$4["schemas"]["Leg"];
|
|
9142
|
+
type TimedLegSchema = components$4["schemas"]["TimedLeg"];
|
|
9143
|
+
type TransferLegSchema = components$4["schemas"]["TransferLeg"];
|
|
9144
|
+
type ContinuousLegSchema = components$4["schemas"]["ContinuousLeg"];
|
|
9145
|
+
type TripRequestResponseOJP = components$4['schemas']['OJP'];
|
|
9146
|
+
type TripDeliverySchema = components$4['schemas']['OJPTripDelivery'];
|
|
9147
|
+
type InitialInputSchema = components$c['schemas']['InitialInput'];
|
|
9148
|
+
type LIR_RequestParamsSchema = components$c['schemas']['PlaceParam'];
|
|
9149
|
+
type LocationInformationRequestOJP = components$c['schemas']['OJP'];
|
|
9150
|
+
type LocationInformationRequestSchema = components$c['schemas']['OJPLocationInformationRequest'];
|
|
9151
|
+
type PlaceResultSchema = components$b['schemas']['PlaceResult'];
|
|
9152
|
+
type LocationInformationRequestResponseOJP = components$b['schemas']['OJP'];
|
|
9153
|
+
type LocationInformationDeliverySchema = components$b['schemas']['OJPLocationInformationDelivery'];
|
|
9154
|
+
type StopEventRequestSchema = components$a['schemas']['OJPStopEventRequest'];
|
|
9155
|
+
type SER_RequestLocationSchema = components$a['schemas']['PlaceContext'];
|
|
9156
|
+
type SER_RequestParamsSchema = components$a['schemas']['StopEventParam'];
|
|
9157
|
+
type SER_RequestOJP = components$a['schemas']['OJP'];
|
|
9158
|
+
type StopEventResultSchema = components$9['schemas']['StopEventResult'];
|
|
9159
|
+
type StopEventSchema = components$9['schemas']['StopEvent'];
|
|
9160
|
+
type StopEventRequestResponseOJP = components$9['schemas']['OJP'];
|
|
9161
|
+
type StopEventDeliverySchema = components$9['schemas']['OJPStopEventDelivery'];
|
|
9162
|
+
type TRR_RequestParamsSchema = components$3['schemas']['TripRefineParam'];
|
|
9163
|
+
type TRR_RequestSchema = components$3["schemas"]['OJPTripRefineRequest'];
|
|
9164
|
+
type TRR_RequestOJP = components$3['schemas']['OJP'];
|
|
9165
|
+
type TRR_ResponseOJP = components$2['schemas']['OJP'];
|
|
9166
|
+
type TRR_DeliverySchema = components$2['schemas']['OJPTripRefineDelivery'];
|
|
7811
9167
|
type FareRequestParamsSchema = components$1["schemas"]['FareParamStructure'];
|
|
7812
9168
|
type FareRequestSchema = components$1['schemas']['OJPFareRequest'];
|
|
7813
9169
|
type FareRequestsSchema = components$1['schemas']['OJPFareRequests'];
|
|
7814
9170
|
type FareRequestOJP = components$1['schemas']['OJP'];
|
|
7815
9171
|
type FareResponseOJP = components['schemas']['OJP'];
|
|
7816
9172
|
type FareResultSchema = components['schemas']['FareResult'];
|
|
7817
|
-
type TIR_RequestParamsSchema = components$
|
|
7818
|
-
type TIR_RequestSchema = components$
|
|
7819
|
-
type TIR_RequestOJP = components$
|
|
7820
|
-
type TripInfoResponseOJP = components$
|
|
7821
|
-
type TripInfoDeliverySchema = components$
|
|
7822
|
-
type TripInfoResultStructureSchema = components$
|
|
7823
|
-
type OJPv1_TripInfoResponseOJP = components$
|
|
7824
|
-
type OJPv1_TripInfoDeliverySchema = components$
|
|
7825
|
-
type OJPv1_TripInfoResultStructureSchema = components$
|
|
9173
|
+
type TIR_RequestParamsSchema = components$8['schemas']['TripInfoParamStructure'];
|
|
9174
|
+
type TIR_RequestSchema = components$8['schemas']['OJPTripInfoRequest'];
|
|
9175
|
+
type TIR_RequestOJP = components$8['schemas']['OJP'];
|
|
9176
|
+
type TripInfoResponseOJP = components$7['schemas']['OJP'];
|
|
9177
|
+
type TripInfoDeliverySchema = components$7['schemas']['OJPTripInfoDelivery'];
|
|
9178
|
+
type TripInfoResultStructureSchema = components$7['schemas']['TripInfoResultStructure'];
|
|
9179
|
+
type OJPv1_TripInfoResponseOJP = components$6['schemas']['OJP'];
|
|
9180
|
+
type OJPv1_TripInfoDeliverySchema = components$6['schemas']['OJPTripInfoDelivery'];
|
|
9181
|
+
type OJPv1_TripInfoResultStructureSchema = components$6['schemas']['TripInfoResultStructure'];
|
|
7826
9182
|
|
|
7827
9183
|
declare const OpenAPI_Dependencies: {
|
|
7828
9184
|
readonly MapNS_Tags: Record<string, string>;
|
|
@@ -7831,4 +9187,4 @@ declare const OpenAPI_Dependencies: {
|
|
|
7831
9187
|
readonly MapStringValues: Record<string, boolean>;
|
|
7832
9188
|
};
|
|
7833
9189
|
|
|
7834
|
-
export { type AddressSchema, type CallAtStopSchema, type ContinuousLegSchema, type DatedJourneySchema, type FareRequestOJP, type FareRequestParamsSchema, type FareRequestSchema, type FareRequestsSchema, type FareResponseOJP, type FareResultSchema, type GeneralAttributeSchema, type GeoPositionSchema, type InitialInputSchema, type InternationalTextSchema, type LIR_RequestParamsSchema, type LegSchema, type LocationInformationRequestOJP, type LocationInformationRequestSchema, type ModeAndModeOfOperationFilterSchema, 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 StopEventRequestSchema, type StopEventResultSchema, type StopEventSchema, type StopPlaceSchema, type StopPointSchema, type TIR_RequestOJP, type TIR_RequestParamsSchema, type TIR_RequestSchema, type TRR_RequestOJP, type TRR_RequestParamsSchema, type TRR_RequestSchema, type TimedLegSchema, type TopographicPlaceSchema, 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 };
|
|
9190
|
+
export { type AddressSchema, type CallAtStopSchema, type ContinuousLegSchema, type DatedJourneySchema, type FareRequestOJP, type FareRequestParamsSchema, type FareRequestSchema, type FareRequestsSchema, type FareResponseOJP, type FareResultSchema, type GeneralAttributeSchema, type GeoPositionSchema, type InitialInputSchema, type InternationalTextSchema, type LIR_RequestParamsSchema, type LegSchema, type LocationInformationDeliverySchema, type LocationInformationRequestOJP, type LocationInformationRequestResponseOJP, type LocationInformationRequestSchema, type ModeAndModeOfOperationFilterSchema, 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 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 };
|