ojp-shared-types 0.0.5 → 0.0.6
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 +1433 -91
- package/dist/index.d.ts +1433 -91
- package/dist/index.js +12 -2
- package/package.json +1 -1
package/dist/index.d.ts
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
|
-
declare const VERSION = "0.0.
|
|
1
|
+
declare const VERSION = "0.0.6";
|
|
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
|
};
|
|
@@ -192,6 +196,161 @@ interface components$e {
|
|
|
192
196
|
};
|
|
193
197
|
}[];
|
|
194
198
|
};
|
|
199
|
+
TextualContentStructure: {
|
|
200
|
+
summaryContent: {
|
|
201
|
+
summaryText: string;
|
|
202
|
+
};
|
|
203
|
+
reasonContent?: {
|
|
204
|
+
reasonText: string;
|
|
205
|
+
};
|
|
206
|
+
descriptionContent: {
|
|
207
|
+
descriptionText: string;
|
|
208
|
+
}[];
|
|
209
|
+
consequenceContent: {
|
|
210
|
+
consequenceText: string;
|
|
211
|
+
}[];
|
|
212
|
+
recommendationContent: {
|
|
213
|
+
recommendationText: string;
|
|
214
|
+
}[];
|
|
215
|
+
durationContent?: {
|
|
216
|
+
durationText: string;
|
|
217
|
+
};
|
|
218
|
+
remarkContent: {
|
|
219
|
+
remark: string;
|
|
220
|
+
}[];
|
|
221
|
+
infoLink: {
|
|
222
|
+
uri: string;
|
|
223
|
+
label?: string[];
|
|
224
|
+
}[];
|
|
225
|
+
};
|
|
226
|
+
PassengerInformationActionStructure: {
|
|
227
|
+
actionRef: string;
|
|
228
|
+
recordedAtTime: string;
|
|
229
|
+
/** @enum {string} */
|
|
230
|
+
perspective: "general" | "stopPoint" | "vehicleJourney";
|
|
231
|
+
textualContent: {
|
|
232
|
+
summaryContent: {
|
|
233
|
+
summaryText: string;
|
|
234
|
+
};
|
|
235
|
+
reasonContent?: {
|
|
236
|
+
reasonText: string;
|
|
237
|
+
};
|
|
238
|
+
descriptionContent: {
|
|
239
|
+
descriptionText: string;
|
|
240
|
+
}[];
|
|
241
|
+
consequenceContent: {
|
|
242
|
+
consequenceText: string;
|
|
243
|
+
}[];
|
|
244
|
+
recommendationContent: {
|
|
245
|
+
recommendationText: string;
|
|
246
|
+
}[];
|
|
247
|
+
durationContent?: {
|
|
248
|
+
durationText: string;
|
|
249
|
+
};
|
|
250
|
+
remarkContent: {
|
|
251
|
+
remark: string;
|
|
252
|
+
}[];
|
|
253
|
+
infoLink: {
|
|
254
|
+
uri: string;
|
|
255
|
+
label?: string[];
|
|
256
|
+
}[];
|
|
257
|
+
}[];
|
|
258
|
+
};
|
|
259
|
+
ActionsStructure: {
|
|
260
|
+
publishAtScope: {
|
|
261
|
+
scopeType: string;
|
|
262
|
+
};
|
|
263
|
+
passengerInformationAction: {
|
|
264
|
+
actionRef: string;
|
|
265
|
+
recordedAtTime: string;
|
|
266
|
+
/** @enum {string} */
|
|
267
|
+
perspective: "general" | "stopPoint" | "vehicleJourney";
|
|
268
|
+
textualContent: {
|
|
269
|
+
summaryContent: {
|
|
270
|
+
summaryText: string;
|
|
271
|
+
};
|
|
272
|
+
reasonContent?: {
|
|
273
|
+
reasonText: string;
|
|
274
|
+
};
|
|
275
|
+
descriptionContent: {
|
|
276
|
+
descriptionText: string;
|
|
277
|
+
}[];
|
|
278
|
+
consequenceContent: {
|
|
279
|
+
consequenceText: string;
|
|
280
|
+
}[];
|
|
281
|
+
recommendationContent: {
|
|
282
|
+
recommendationText: string;
|
|
283
|
+
}[];
|
|
284
|
+
durationContent?: {
|
|
285
|
+
durationText: string;
|
|
286
|
+
};
|
|
287
|
+
remarkContent: {
|
|
288
|
+
remark: string;
|
|
289
|
+
}[];
|
|
290
|
+
infoLink: {
|
|
291
|
+
uri: string;
|
|
292
|
+
label?: string[];
|
|
293
|
+
}[];
|
|
294
|
+
}[];
|
|
295
|
+
}[];
|
|
296
|
+
};
|
|
297
|
+
PtSituationElementStructure: {
|
|
298
|
+
creationTime: string;
|
|
299
|
+
participantRef?: string;
|
|
300
|
+
situationNumber: string;
|
|
301
|
+
version?: number;
|
|
302
|
+
source: {
|
|
303
|
+
/** @enum {string} */
|
|
304
|
+
sourceType: "directReport" | "email" | "phone" | "fax" | "post" | "feed" | "radio" | "tv" | "web" | "pager" | "text" | "other";
|
|
305
|
+
};
|
|
306
|
+
validityPeriod: {
|
|
307
|
+
startTime: string;
|
|
308
|
+
endTime?: string;
|
|
309
|
+
}[];
|
|
310
|
+
alertCause: string;
|
|
311
|
+
priority?: string;
|
|
312
|
+
scopeType?: string;
|
|
313
|
+
publishingActions?: {
|
|
314
|
+
publishingAction: {
|
|
315
|
+
publishAtScope: {
|
|
316
|
+
scopeType: string;
|
|
317
|
+
};
|
|
318
|
+
passengerInformationAction: {
|
|
319
|
+
actionRef: string;
|
|
320
|
+
recordedAtTime: string;
|
|
321
|
+
/** @enum {string} */
|
|
322
|
+
perspective: "general" | "stopPoint" | "vehicleJourney";
|
|
323
|
+
textualContent: {
|
|
324
|
+
summaryContent: {
|
|
325
|
+
summaryText: string;
|
|
326
|
+
};
|
|
327
|
+
reasonContent?: {
|
|
328
|
+
reasonText: string;
|
|
329
|
+
};
|
|
330
|
+
descriptionContent: {
|
|
331
|
+
descriptionText: string;
|
|
332
|
+
}[];
|
|
333
|
+
consequenceContent: {
|
|
334
|
+
consequenceText: string;
|
|
335
|
+
}[];
|
|
336
|
+
recommendationContent: {
|
|
337
|
+
recommendationText: string;
|
|
338
|
+
}[];
|
|
339
|
+
durationContent?: {
|
|
340
|
+
durationText: string;
|
|
341
|
+
};
|
|
342
|
+
remarkContent: {
|
|
343
|
+
remark: string;
|
|
344
|
+
}[];
|
|
345
|
+
infoLink: {
|
|
346
|
+
uri: string;
|
|
347
|
+
label?: string[];
|
|
348
|
+
}[];
|
|
349
|
+
}[];
|
|
350
|
+
}[];
|
|
351
|
+
}[];
|
|
352
|
+
};
|
|
353
|
+
};
|
|
195
354
|
SharedServiceArrivalDeparture: {
|
|
196
355
|
timetabledTime: string;
|
|
197
356
|
estimatedTime?: string;
|
|
@@ -240,6 +399,10 @@ interface components$e {
|
|
|
240
399
|
};
|
|
241
400
|
code: string;
|
|
242
401
|
};
|
|
402
|
+
SituationFullRefStructure: {
|
|
403
|
+
participantRef: string;
|
|
404
|
+
situationNumber: string;
|
|
405
|
+
};
|
|
243
406
|
DatedJourney: {
|
|
244
407
|
conventionalModeOfOperation?: string;
|
|
245
408
|
operatingDayRef: string;
|
|
@@ -293,9 +456,15 @@ interface components$e {
|
|
|
293
456
|
unplanned?: boolean;
|
|
294
457
|
cancelled?: boolean;
|
|
295
458
|
deviation?: boolean;
|
|
459
|
+
situationFullRefs?: {
|
|
460
|
+
situationFullRef: {
|
|
461
|
+
participantRef: string;
|
|
462
|
+
situationNumber: string;
|
|
463
|
+
}[];
|
|
464
|
+
};
|
|
296
465
|
};
|
|
297
466
|
ResponseContextStructure: {
|
|
298
|
-
places
|
|
467
|
+
places?: {
|
|
299
468
|
place: {
|
|
300
469
|
stopPoint?: {
|
|
301
470
|
stopPointRef: string;
|
|
@@ -373,6 +542,65 @@ interface components$e {
|
|
|
373
542
|
}[];
|
|
374
543
|
}[];
|
|
375
544
|
};
|
|
545
|
+
situations?: {
|
|
546
|
+
ptSituation: {
|
|
547
|
+
creationTime: string;
|
|
548
|
+
participantRef?: string;
|
|
549
|
+
situationNumber: string;
|
|
550
|
+
version?: number;
|
|
551
|
+
source: {
|
|
552
|
+
/** @enum {string} */
|
|
553
|
+
sourceType: "directReport" | "email" | "phone" | "fax" | "post" | "feed" | "radio" | "tv" | "web" | "pager" | "text" | "other";
|
|
554
|
+
};
|
|
555
|
+
validityPeriod: {
|
|
556
|
+
startTime: string;
|
|
557
|
+
endTime?: string;
|
|
558
|
+
}[];
|
|
559
|
+
alertCause: string;
|
|
560
|
+
priority?: string;
|
|
561
|
+
scopeType?: string;
|
|
562
|
+
publishingActions?: {
|
|
563
|
+
publishingAction: {
|
|
564
|
+
publishAtScope: {
|
|
565
|
+
scopeType: string;
|
|
566
|
+
};
|
|
567
|
+
passengerInformationAction: {
|
|
568
|
+
actionRef: string;
|
|
569
|
+
recordedAtTime: string;
|
|
570
|
+
/** @enum {string} */
|
|
571
|
+
perspective: "general" | "stopPoint" | "vehicleJourney";
|
|
572
|
+
textualContent: {
|
|
573
|
+
summaryContent: {
|
|
574
|
+
summaryText: string;
|
|
575
|
+
};
|
|
576
|
+
reasonContent?: {
|
|
577
|
+
reasonText: string;
|
|
578
|
+
};
|
|
579
|
+
descriptionContent: {
|
|
580
|
+
descriptionText: string;
|
|
581
|
+
}[];
|
|
582
|
+
consequenceContent: {
|
|
583
|
+
consequenceText: string;
|
|
584
|
+
}[];
|
|
585
|
+
recommendationContent: {
|
|
586
|
+
recommendationText: string;
|
|
587
|
+
}[];
|
|
588
|
+
durationContent?: {
|
|
589
|
+
durationText: string;
|
|
590
|
+
};
|
|
591
|
+
remarkContent: {
|
|
592
|
+
remark: string;
|
|
593
|
+
}[];
|
|
594
|
+
infoLink: {
|
|
595
|
+
uri: string;
|
|
596
|
+
label?: string[];
|
|
597
|
+
}[];
|
|
598
|
+
}[];
|
|
599
|
+
}[];
|
|
600
|
+
}[];
|
|
601
|
+
};
|
|
602
|
+
}[];
|
|
603
|
+
};
|
|
376
604
|
};
|
|
377
605
|
LinkProjection: {
|
|
378
606
|
position: {
|
|
@@ -418,7 +646,7 @@ interface components$e {
|
|
|
418
646
|
pathItems: never;
|
|
419
647
|
}
|
|
420
648
|
|
|
421
|
-
interface components$
|
|
649
|
+
interface components$e {
|
|
422
650
|
schemas: {
|
|
423
651
|
DatedJourney: {
|
|
424
652
|
conventionalModeOfOperation?: string;
|
|
@@ -482,7 +710,7 @@ interface components$d {
|
|
|
482
710
|
pathItems: never;
|
|
483
711
|
}
|
|
484
712
|
|
|
485
|
-
interface components$
|
|
713
|
+
interface components$d {
|
|
486
714
|
schemas: {
|
|
487
715
|
TimedLeg: {
|
|
488
716
|
legBoard: {
|
|
@@ -1179,7 +1407,7 @@ interface components$c {
|
|
|
1179
1407
|
pathItems: never;
|
|
1180
1408
|
}
|
|
1181
1409
|
|
|
1182
|
-
interface components$
|
|
1410
|
+
interface components$c {
|
|
1183
1411
|
schemas: {
|
|
1184
1412
|
PlaceParam: {
|
|
1185
1413
|
type: ("stop" | "address" | "poi" | "location" | "topographicPlace")[];
|
|
@@ -1288,7 +1516,7 @@ interface components$b {
|
|
|
1288
1516
|
pathItems: never;
|
|
1289
1517
|
}
|
|
1290
1518
|
|
|
1291
|
-
interface components$
|
|
1519
|
+
interface components$b {
|
|
1292
1520
|
schemas: {
|
|
1293
1521
|
PlaceResult: {
|
|
1294
1522
|
place: {
|
|
@@ -1558,7 +1786,7 @@ interface components$a {
|
|
|
1558
1786
|
pathItems: never;
|
|
1559
1787
|
}
|
|
1560
1788
|
|
|
1561
|
-
interface components$
|
|
1789
|
+
interface components$a {
|
|
1562
1790
|
schemas: {
|
|
1563
1791
|
StopEventParam: {
|
|
1564
1792
|
includeAllRestrictedLines?: boolean;
|
|
@@ -1657,7 +1885,7 @@ interface components$9 {
|
|
|
1657
1885
|
pathItems: never;
|
|
1658
1886
|
}
|
|
1659
1887
|
|
|
1660
|
-
interface components$
|
|
1888
|
+
interface components$9 {
|
|
1661
1889
|
schemas: {
|
|
1662
1890
|
PointOfInterestCategory: {
|
|
1663
1891
|
osmTag?: {
|
|
@@ -2011,6 +2239,12 @@ interface components$8 {
|
|
|
2011
2239
|
unplanned?: boolean;
|
|
2012
2240
|
cancelled?: boolean;
|
|
2013
2241
|
deviation?: boolean;
|
|
2242
|
+
situationFullRefs?: {
|
|
2243
|
+
situationFullRef: {
|
|
2244
|
+
participantRef: string;
|
|
2245
|
+
situationNumber: string;
|
|
2246
|
+
}[];
|
|
2247
|
+
};
|
|
2014
2248
|
};
|
|
2015
2249
|
operatingDays?: {
|
|
2016
2250
|
from: string;
|
|
@@ -2167,6 +2401,12 @@ interface components$8 {
|
|
|
2167
2401
|
unplanned?: boolean;
|
|
2168
2402
|
cancelled?: boolean;
|
|
2169
2403
|
deviation?: boolean;
|
|
2404
|
+
situationFullRefs?: {
|
|
2405
|
+
situationFullRef: {
|
|
2406
|
+
participantRef: string;
|
|
2407
|
+
situationNumber: string;
|
|
2408
|
+
}[];
|
|
2409
|
+
};
|
|
2170
2410
|
};
|
|
2171
2411
|
operatingDays?: {
|
|
2172
2412
|
from: string;
|
|
@@ -2181,7 +2421,7 @@ interface components$8 {
|
|
|
2181
2421
|
defaultLanguage?: string;
|
|
2182
2422
|
calcTime?: string;
|
|
2183
2423
|
stopEventResponseContext?: {
|
|
2184
|
-
places
|
|
2424
|
+
places?: {
|
|
2185
2425
|
place: {
|
|
2186
2426
|
stopPoint?: {
|
|
2187
2427
|
stopPointRef: string;
|
|
@@ -2259,6 +2499,65 @@ interface components$8 {
|
|
|
2259
2499
|
}[];
|
|
2260
2500
|
}[];
|
|
2261
2501
|
};
|
|
2502
|
+
situations?: {
|
|
2503
|
+
ptSituation: {
|
|
2504
|
+
creationTime: string;
|
|
2505
|
+
participantRef?: string;
|
|
2506
|
+
situationNumber: string;
|
|
2507
|
+
version?: number;
|
|
2508
|
+
source: {
|
|
2509
|
+
/** @enum {string} */
|
|
2510
|
+
sourceType: "directReport" | "email" | "phone" | "fax" | "post" | "feed" | "radio" | "tv" | "web" | "pager" | "text" | "other";
|
|
2511
|
+
};
|
|
2512
|
+
validityPeriod: {
|
|
2513
|
+
startTime: string;
|
|
2514
|
+
endTime?: string;
|
|
2515
|
+
}[];
|
|
2516
|
+
alertCause: string;
|
|
2517
|
+
priority?: string;
|
|
2518
|
+
scopeType?: string;
|
|
2519
|
+
publishingActions?: {
|
|
2520
|
+
publishingAction: {
|
|
2521
|
+
publishAtScope: {
|
|
2522
|
+
scopeType: string;
|
|
2523
|
+
};
|
|
2524
|
+
passengerInformationAction: {
|
|
2525
|
+
actionRef: string;
|
|
2526
|
+
recordedAtTime: string;
|
|
2527
|
+
/** @enum {string} */
|
|
2528
|
+
perspective: "general" | "stopPoint" | "vehicleJourney";
|
|
2529
|
+
textualContent: {
|
|
2530
|
+
summaryContent: {
|
|
2531
|
+
summaryText: string;
|
|
2532
|
+
};
|
|
2533
|
+
reasonContent?: {
|
|
2534
|
+
reasonText: string;
|
|
2535
|
+
};
|
|
2536
|
+
descriptionContent: {
|
|
2537
|
+
descriptionText: string;
|
|
2538
|
+
}[];
|
|
2539
|
+
consequenceContent: {
|
|
2540
|
+
consequenceText: string;
|
|
2541
|
+
}[];
|
|
2542
|
+
recommendationContent: {
|
|
2543
|
+
recommendationText: string;
|
|
2544
|
+
}[];
|
|
2545
|
+
durationContent?: {
|
|
2546
|
+
durationText: string;
|
|
2547
|
+
};
|
|
2548
|
+
remarkContent: {
|
|
2549
|
+
remark: string;
|
|
2550
|
+
}[];
|
|
2551
|
+
infoLink: {
|
|
2552
|
+
uri: string;
|
|
2553
|
+
label?: string[];
|
|
2554
|
+
}[];
|
|
2555
|
+
}[];
|
|
2556
|
+
}[];
|
|
2557
|
+
}[];
|
|
2558
|
+
};
|
|
2559
|
+
}[];
|
|
2560
|
+
};
|
|
2262
2561
|
};
|
|
2263
2562
|
stopEventResult: {
|
|
2264
2563
|
id: string;
|
|
@@ -2409,6 +2708,12 @@ interface components$8 {
|
|
|
2409
2708
|
unplanned?: boolean;
|
|
2410
2709
|
cancelled?: boolean;
|
|
2411
2710
|
deviation?: boolean;
|
|
2711
|
+
situationFullRefs?: {
|
|
2712
|
+
situationFullRef: {
|
|
2713
|
+
participantRef: string;
|
|
2714
|
+
situationNumber: string;
|
|
2715
|
+
}[];
|
|
2716
|
+
};
|
|
2412
2717
|
};
|
|
2413
2718
|
operatingDays?: {
|
|
2414
2719
|
from: string;
|
|
@@ -2429,7 +2734,7 @@ interface components$8 {
|
|
|
2429
2734
|
defaultLanguage?: string;
|
|
2430
2735
|
calcTime?: string;
|
|
2431
2736
|
stopEventResponseContext?: {
|
|
2432
|
-
places
|
|
2737
|
+
places?: {
|
|
2433
2738
|
place: {
|
|
2434
2739
|
stopPoint?: {
|
|
2435
2740
|
stopPointRef: string;
|
|
@@ -2507,6 +2812,65 @@ interface components$8 {
|
|
|
2507
2812
|
}[];
|
|
2508
2813
|
}[];
|
|
2509
2814
|
};
|
|
2815
|
+
situations?: {
|
|
2816
|
+
ptSituation: {
|
|
2817
|
+
creationTime: string;
|
|
2818
|
+
participantRef?: string;
|
|
2819
|
+
situationNumber: string;
|
|
2820
|
+
version?: number;
|
|
2821
|
+
source: {
|
|
2822
|
+
/** @enum {string} */
|
|
2823
|
+
sourceType: "directReport" | "email" | "phone" | "fax" | "post" | "feed" | "radio" | "tv" | "web" | "pager" | "text" | "other";
|
|
2824
|
+
};
|
|
2825
|
+
validityPeriod: {
|
|
2826
|
+
startTime: string;
|
|
2827
|
+
endTime?: string;
|
|
2828
|
+
}[];
|
|
2829
|
+
alertCause: string;
|
|
2830
|
+
priority?: string;
|
|
2831
|
+
scopeType?: string;
|
|
2832
|
+
publishingActions?: {
|
|
2833
|
+
publishingAction: {
|
|
2834
|
+
publishAtScope: {
|
|
2835
|
+
scopeType: string;
|
|
2836
|
+
};
|
|
2837
|
+
passengerInformationAction: {
|
|
2838
|
+
actionRef: string;
|
|
2839
|
+
recordedAtTime: string;
|
|
2840
|
+
/** @enum {string} */
|
|
2841
|
+
perspective: "general" | "stopPoint" | "vehicleJourney";
|
|
2842
|
+
textualContent: {
|
|
2843
|
+
summaryContent: {
|
|
2844
|
+
summaryText: string;
|
|
2845
|
+
};
|
|
2846
|
+
reasonContent?: {
|
|
2847
|
+
reasonText: string;
|
|
2848
|
+
};
|
|
2849
|
+
descriptionContent: {
|
|
2850
|
+
descriptionText: string;
|
|
2851
|
+
}[];
|
|
2852
|
+
consequenceContent: {
|
|
2853
|
+
consequenceText: string;
|
|
2854
|
+
}[];
|
|
2855
|
+
recommendationContent: {
|
|
2856
|
+
recommendationText: string;
|
|
2857
|
+
}[];
|
|
2858
|
+
durationContent?: {
|
|
2859
|
+
durationText: string;
|
|
2860
|
+
};
|
|
2861
|
+
remarkContent: {
|
|
2862
|
+
remark: string;
|
|
2863
|
+
}[];
|
|
2864
|
+
infoLink: {
|
|
2865
|
+
uri: string;
|
|
2866
|
+
label?: string[];
|
|
2867
|
+
}[];
|
|
2868
|
+
}[];
|
|
2869
|
+
}[];
|
|
2870
|
+
}[];
|
|
2871
|
+
};
|
|
2872
|
+
}[];
|
|
2873
|
+
};
|
|
2510
2874
|
};
|
|
2511
2875
|
stopEventResult: {
|
|
2512
2876
|
id: string;
|
|
@@ -2657,6 +3021,12 @@ interface components$8 {
|
|
|
2657
3021
|
unplanned?: boolean;
|
|
2658
3022
|
cancelled?: boolean;
|
|
2659
3023
|
deviation?: boolean;
|
|
3024
|
+
situationFullRefs?: {
|
|
3025
|
+
situationFullRef: {
|
|
3026
|
+
participantRef: string;
|
|
3027
|
+
situationNumber: string;
|
|
3028
|
+
}[];
|
|
3029
|
+
};
|
|
2660
3030
|
};
|
|
2661
3031
|
operatingDays?: {
|
|
2662
3032
|
from: string;
|
|
@@ -2677,7 +3047,7 @@ interface components$8 {
|
|
|
2677
3047
|
pathItems: never;
|
|
2678
3048
|
}
|
|
2679
3049
|
|
|
2680
|
-
interface components$
|
|
3050
|
+
interface components$8 {
|
|
2681
3051
|
schemas: {
|
|
2682
3052
|
TripInfoParamStructure: {
|
|
2683
3053
|
includeCalls?: boolean;
|
|
@@ -2729,7 +3099,7 @@ interface components$7 {
|
|
|
2729
3099
|
pathItems: never;
|
|
2730
3100
|
}
|
|
2731
3101
|
|
|
2732
|
-
interface components$
|
|
3102
|
+
interface components$7 {
|
|
2733
3103
|
schemas: {
|
|
2734
3104
|
TripInfoResultStructure: {
|
|
2735
3105
|
previousCall: {
|
|
@@ -2843,6 +3213,12 @@ interface components$6 {
|
|
|
2843
3213
|
unplanned?: boolean;
|
|
2844
3214
|
cancelled?: boolean;
|
|
2845
3215
|
deviation?: boolean;
|
|
3216
|
+
situationFullRefs?: {
|
|
3217
|
+
situationFullRef: {
|
|
3218
|
+
participantRef: string;
|
|
3219
|
+
situationNumber: string;
|
|
3220
|
+
}[];
|
|
3221
|
+
};
|
|
2846
3222
|
};
|
|
2847
3223
|
journeyTrack?: {
|
|
2848
3224
|
trackSection: {
|
|
@@ -2883,7 +3259,7 @@ interface components$6 {
|
|
|
2883
3259
|
defaultLanguage?: string;
|
|
2884
3260
|
calcTime?: string;
|
|
2885
3261
|
tripInfoResponseContext?: {
|
|
2886
|
-
places
|
|
3262
|
+
places?: {
|
|
2887
3263
|
place: {
|
|
2888
3264
|
stopPoint?: {
|
|
2889
3265
|
stopPointRef: string;
|
|
@@ -2961,6 +3337,65 @@ interface components$6 {
|
|
|
2961
3337
|
}[];
|
|
2962
3338
|
}[];
|
|
2963
3339
|
};
|
|
3340
|
+
situations?: {
|
|
3341
|
+
ptSituation: {
|
|
3342
|
+
creationTime: string;
|
|
3343
|
+
participantRef?: string;
|
|
3344
|
+
situationNumber: string;
|
|
3345
|
+
version?: number;
|
|
3346
|
+
source: {
|
|
3347
|
+
/** @enum {string} */
|
|
3348
|
+
sourceType: "directReport" | "email" | "phone" | "fax" | "post" | "feed" | "radio" | "tv" | "web" | "pager" | "text" | "other";
|
|
3349
|
+
};
|
|
3350
|
+
validityPeriod: {
|
|
3351
|
+
startTime: string;
|
|
3352
|
+
endTime?: string;
|
|
3353
|
+
}[];
|
|
3354
|
+
alertCause: string;
|
|
3355
|
+
priority?: string;
|
|
3356
|
+
scopeType?: string;
|
|
3357
|
+
publishingActions?: {
|
|
3358
|
+
publishingAction: {
|
|
3359
|
+
publishAtScope: {
|
|
3360
|
+
scopeType: string;
|
|
3361
|
+
};
|
|
3362
|
+
passengerInformationAction: {
|
|
3363
|
+
actionRef: string;
|
|
3364
|
+
recordedAtTime: string;
|
|
3365
|
+
/** @enum {string} */
|
|
3366
|
+
perspective: "general" | "stopPoint" | "vehicleJourney";
|
|
3367
|
+
textualContent: {
|
|
3368
|
+
summaryContent: {
|
|
3369
|
+
summaryText: string;
|
|
3370
|
+
};
|
|
3371
|
+
reasonContent?: {
|
|
3372
|
+
reasonText: string;
|
|
3373
|
+
};
|
|
3374
|
+
descriptionContent: {
|
|
3375
|
+
descriptionText: string;
|
|
3376
|
+
}[];
|
|
3377
|
+
consequenceContent: {
|
|
3378
|
+
consequenceText: string;
|
|
3379
|
+
}[];
|
|
3380
|
+
recommendationContent: {
|
|
3381
|
+
recommendationText: string;
|
|
3382
|
+
}[];
|
|
3383
|
+
durationContent?: {
|
|
3384
|
+
durationText: string;
|
|
3385
|
+
};
|
|
3386
|
+
remarkContent: {
|
|
3387
|
+
remark: string;
|
|
3388
|
+
}[];
|
|
3389
|
+
infoLink: {
|
|
3390
|
+
uri: string;
|
|
3391
|
+
label?: string[];
|
|
3392
|
+
}[];
|
|
3393
|
+
}[];
|
|
3394
|
+
}[];
|
|
3395
|
+
}[];
|
|
3396
|
+
};
|
|
3397
|
+
}[];
|
|
3398
|
+
};
|
|
2964
3399
|
};
|
|
2965
3400
|
tripInfoResult: {
|
|
2966
3401
|
previousCall: {
|
|
@@ -3074,6 +3509,12 @@ interface components$6 {
|
|
|
3074
3509
|
unplanned?: boolean;
|
|
3075
3510
|
cancelled?: boolean;
|
|
3076
3511
|
deviation?: boolean;
|
|
3512
|
+
situationFullRefs?: {
|
|
3513
|
+
situationFullRef: {
|
|
3514
|
+
participantRef: string;
|
|
3515
|
+
situationNumber: string;
|
|
3516
|
+
}[];
|
|
3517
|
+
};
|
|
3077
3518
|
};
|
|
3078
3519
|
journeyTrack?: {
|
|
3079
3520
|
trackSection: {
|
|
@@ -3120,7 +3561,7 @@ interface components$6 {
|
|
|
3120
3561
|
defaultLanguage?: string;
|
|
3121
3562
|
calcTime?: string;
|
|
3122
3563
|
tripInfoResponseContext?: {
|
|
3123
|
-
places
|
|
3564
|
+
places?: {
|
|
3124
3565
|
place: {
|
|
3125
3566
|
stopPoint?: {
|
|
3126
3567
|
stopPointRef: string;
|
|
@@ -3198,6 +3639,65 @@ interface components$6 {
|
|
|
3198
3639
|
}[];
|
|
3199
3640
|
}[];
|
|
3200
3641
|
};
|
|
3642
|
+
situations?: {
|
|
3643
|
+
ptSituation: {
|
|
3644
|
+
creationTime: string;
|
|
3645
|
+
participantRef?: string;
|
|
3646
|
+
situationNumber: string;
|
|
3647
|
+
version?: number;
|
|
3648
|
+
source: {
|
|
3649
|
+
/** @enum {string} */
|
|
3650
|
+
sourceType: "directReport" | "email" | "phone" | "fax" | "post" | "feed" | "radio" | "tv" | "web" | "pager" | "text" | "other";
|
|
3651
|
+
};
|
|
3652
|
+
validityPeriod: {
|
|
3653
|
+
startTime: string;
|
|
3654
|
+
endTime?: string;
|
|
3655
|
+
}[];
|
|
3656
|
+
alertCause: string;
|
|
3657
|
+
priority?: string;
|
|
3658
|
+
scopeType?: string;
|
|
3659
|
+
publishingActions?: {
|
|
3660
|
+
publishingAction: {
|
|
3661
|
+
publishAtScope: {
|
|
3662
|
+
scopeType: string;
|
|
3663
|
+
};
|
|
3664
|
+
passengerInformationAction: {
|
|
3665
|
+
actionRef: string;
|
|
3666
|
+
recordedAtTime: string;
|
|
3667
|
+
/** @enum {string} */
|
|
3668
|
+
perspective: "general" | "stopPoint" | "vehicleJourney";
|
|
3669
|
+
textualContent: {
|
|
3670
|
+
summaryContent: {
|
|
3671
|
+
summaryText: string;
|
|
3672
|
+
};
|
|
3673
|
+
reasonContent?: {
|
|
3674
|
+
reasonText: string;
|
|
3675
|
+
};
|
|
3676
|
+
descriptionContent: {
|
|
3677
|
+
descriptionText: string;
|
|
3678
|
+
}[];
|
|
3679
|
+
consequenceContent: {
|
|
3680
|
+
consequenceText: string;
|
|
3681
|
+
}[];
|
|
3682
|
+
recommendationContent: {
|
|
3683
|
+
recommendationText: string;
|
|
3684
|
+
}[];
|
|
3685
|
+
durationContent?: {
|
|
3686
|
+
durationText: string;
|
|
3687
|
+
};
|
|
3688
|
+
remarkContent: {
|
|
3689
|
+
remark: string;
|
|
3690
|
+
}[];
|
|
3691
|
+
infoLink: {
|
|
3692
|
+
uri: string;
|
|
3693
|
+
label?: string[];
|
|
3694
|
+
}[];
|
|
3695
|
+
}[];
|
|
3696
|
+
}[];
|
|
3697
|
+
}[];
|
|
3698
|
+
};
|
|
3699
|
+
}[];
|
|
3700
|
+
};
|
|
3201
3701
|
};
|
|
3202
3702
|
tripInfoResult: {
|
|
3203
3703
|
previousCall: {
|
|
@@ -3311,6 +3811,12 @@ interface components$6 {
|
|
|
3311
3811
|
unplanned?: boolean;
|
|
3312
3812
|
cancelled?: boolean;
|
|
3313
3813
|
deviation?: boolean;
|
|
3814
|
+
situationFullRefs?: {
|
|
3815
|
+
situationFullRef: {
|
|
3816
|
+
participantRef: string;
|
|
3817
|
+
situationNumber: string;
|
|
3818
|
+
}[];
|
|
3819
|
+
};
|
|
3314
3820
|
};
|
|
3315
3821
|
journeyTrack?: {
|
|
3316
3822
|
trackSection: {
|
|
@@ -3357,7 +3863,7 @@ interface components$6 {
|
|
|
3357
3863
|
pathItems: never;
|
|
3358
3864
|
}
|
|
3359
3865
|
|
|
3360
|
-
interface components$
|
|
3866
|
+
interface components$6 {
|
|
3361
3867
|
schemas: {
|
|
3362
3868
|
TripInfoResultStructure: {
|
|
3363
3869
|
previousCall: {
|
|
@@ -3522,7 +4028,7 @@ interface components$5 {
|
|
|
3522
4028
|
defaultLanguage?: string;
|
|
3523
4029
|
calcTime?: string;
|
|
3524
4030
|
tripInfoResponseContext?: {
|
|
3525
|
-
places
|
|
4031
|
+
places?: {
|
|
3526
4032
|
place: {
|
|
3527
4033
|
stopPoint?: {
|
|
3528
4034
|
stopPointRef: string;
|
|
@@ -3600,6 +4106,65 @@ interface components$5 {
|
|
|
3600
4106
|
}[];
|
|
3601
4107
|
}[];
|
|
3602
4108
|
};
|
|
4109
|
+
situations?: {
|
|
4110
|
+
ptSituation: {
|
|
4111
|
+
creationTime: string;
|
|
4112
|
+
participantRef?: string;
|
|
4113
|
+
situationNumber: string;
|
|
4114
|
+
version?: number;
|
|
4115
|
+
source: {
|
|
4116
|
+
/** @enum {string} */
|
|
4117
|
+
sourceType: "directReport" | "email" | "phone" | "fax" | "post" | "feed" | "radio" | "tv" | "web" | "pager" | "text" | "other";
|
|
4118
|
+
};
|
|
4119
|
+
validityPeriod: {
|
|
4120
|
+
startTime: string;
|
|
4121
|
+
endTime?: string;
|
|
4122
|
+
}[];
|
|
4123
|
+
alertCause: string;
|
|
4124
|
+
priority?: string;
|
|
4125
|
+
scopeType?: string;
|
|
4126
|
+
publishingActions?: {
|
|
4127
|
+
publishingAction: {
|
|
4128
|
+
publishAtScope: {
|
|
4129
|
+
scopeType: string;
|
|
4130
|
+
};
|
|
4131
|
+
passengerInformationAction: {
|
|
4132
|
+
actionRef: string;
|
|
4133
|
+
recordedAtTime: string;
|
|
4134
|
+
/** @enum {string} */
|
|
4135
|
+
perspective: "general" | "stopPoint" | "vehicleJourney";
|
|
4136
|
+
textualContent: {
|
|
4137
|
+
summaryContent: {
|
|
4138
|
+
summaryText: string;
|
|
4139
|
+
};
|
|
4140
|
+
reasonContent?: {
|
|
4141
|
+
reasonText: string;
|
|
4142
|
+
};
|
|
4143
|
+
descriptionContent: {
|
|
4144
|
+
descriptionText: string;
|
|
4145
|
+
}[];
|
|
4146
|
+
consequenceContent: {
|
|
4147
|
+
consequenceText: string;
|
|
4148
|
+
}[];
|
|
4149
|
+
recommendationContent: {
|
|
4150
|
+
recommendationText: string;
|
|
4151
|
+
}[];
|
|
4152
|
+
durationContent?: {
|
|
4153
|
+
durationText: string;
|
|
4154
|
+
};
|
|
4155
|
+
remarkContent: {
|
|
4156
|
+
remark: string;
|
|
4157
|
+
}[];
|
|
4158
|
+
infoLink: {
|
|
4159
|
+
uri: string;
|
|
4160
|
+
label?: string[];
|
|
4161
|
+
}[];
|
|
4162
|
+
}[];
|
|
4163
|
+
}[];
|
|
4164
|
+
}[];
|
|
4165
|
+
};
|
|
4166
|
+
}[];
|
|
4167
|
+
};
|
|
3603
4168
|
};
|
|
3604
4169
|
tripInfoResult: {
|
|
3605
4170
|
previousCall: {
|
|
@@ -3770,7 +4335,7 @@ interface components$5 {
|
|
|
3770
4335
|
defaultLanguage?: string;
|
|
3771
4336
|
calcTime?: string;
|
|
3772
4337
|
tripInfoResponseContext?: {
|
|
3773
|
-
places
|
|
4338
|
+
places?: {
|
|
3774
4339
|
place: {
|
|
3775
4340
|
stopPoint?: {
|
|
3776
4341
|
stopPointRef: string;
|
|
@@ -3848,6 +4413,65 @@ interface components$5 {
|
|
|
3848
4413
|
}[];
|
|
3849
4414
|
}[];
|
|
3850
4415
|
};
|
|
4416
|
+
situations?: {
|
|
4417
|
+
ptSituation: {
|
|
4418
|
+
creationTime: string;
|
|
4419
|
+
participantRef?: string;
|
|
4420
|
+
situationNumber: string;
|
|
4421
|
+
version?: number;
|
|
4422
|
+
source: {
|
|
4423
|
+
/** @enum {string} */
|
|
4424
|
+
sourceType: "directReport" | "email" | "phone" | "fax" | "post" | "feed" | "radio" | "tv" | "web" | "pager" | "text" | "other";
|
|
4425
|
+
};
|
|
4426
|
+
validityPeriod: {
|
|
4427
|
+
startTime: string;
|
|
4428
|
+
endTime?: string;
|
|
4429
|
+
}[];
|
|
4430
|
+
alertCause: string;
|
|
4431
|
+
priority?: string;
|
|
4432
|
+
scopeType?: string;
|
|
4433
|
+
publishingActions?: {
|
|
4434
|
+
publishingAction: {
|
|
4435
|
+
publishAtScope: {
|
|
4436
|
+
scopeType: string;
|
|
4437
|
+
};
|
|
4438
|
+
passengerInformationAction: {
|
|
4439
|
+
actionRef: string;
|
|
4440
|
+
recordedAtTime: string;
|
|
4441
|
+
/** @enum {string} */
|
|
4442
|
+
perspective: "general" | "stopPoint" | "vehicleJourney";
|
|
4443
|
+
textualContent: {
|
|
4444
|
+
summaryContent: {
|
|
4445
|
+
summaryText: string;
|
|
4446
|
+
};
|
|
4447
|
+
reasonContent?: {
|
|
4448
|
+
reasonText: string;
|
|
4449
|
+
};
|
|
4450
|
+
descriptionContent: {
|
|
4451
|
+
descriptionText: string;
|
|
4452
|
+
}[];
|
|
4453
|
+
consequenceContent: {
|
|
4454
|
+
consequenceText: string;
|
|
4455
|
+
}[];
|
|
4456
|
+
recommendationContent: {
|
|
4457
|
+
recommendationText: string;
|
|
4458
|
+
}[];
|
|
4459
|
+
durationContent?: {
|
|
4460
|
+
durationText: string;
|
|
4461
|
+
};
|
|
4462
|
+
remarkContent: {
|
|
4463
|
+
remark: string;
|
|
4464
|
+
}[];
|
|
4465
|
+
infoLink: {
|
|
4466
|
+
uri: string;
|
|
4467
|
+
label?: string[];
|
|
4468
|
+
}[];
|
|
4469
|
+
}[];
|
|
4470
|
+
}[];
|
|
4471
|
+
}[];
|
|
4472
|
+
};
|
|
4473
|
+
}[];
|
|
4474
|
+
};
|
|
3851
4475
|
};
|
|
3852
4476
|
tripInfoResult: {
|
|
3853
4477
|
previousCall: {
|
|
@@ -4018,7 +4642,7 @@ interface components$5 {
|
|
|
4018
4642
|
pathItems: never;
|
|
4019
4643
|
}
|
|
4020
4644
|
|
|
4021
|
-
interface components$
|
|
4645
|
+
interface components$5 {
|
|
4022
4646
|
schemas: {
|
|
4023
4647
|
ModeAndModeOfOperationFilter: {
|
|
4024
4648
|
exclude?: boolean;
|
|
@@ -4195,7 +4819,7 @@ interface components$4 {
|
|
|
4195
4819
|
pathItems: never;
|
|
4196
4820
|
}
|
|
4197
4821
|
|
|
4198
|
-
interface components$
|
|
4822
|
+
interface components$4 {
|
|
4199
4823
|
schemas: {
|
|
4200
4824
|
LegBoard: {
|
|
4201
4825
|
stopPointRef: string;
|
|
@@ -4429,6 +5053,12 @@ interface components$3 {
|
|
|
4429
5053
|
unplanned?: boolean;
|
|
4430
5054
|
cancelled?: boolean;
|
|
4431
5055
|
deviation?: boolean;
|
|
5056
|
+
situationFullRefs?: {
|
|
5057
|
+
situationFullRef: {
|
|
5058
|
+
participantRef: string;
|
|
5059
|
+
situationNumber: string;
|
|
5060
|
+
}[];
|
|
5061
|
+
};
|
|
4432
5062
|
};
|
|
4433
5063
|
legTrack?: {
|
|
4434
5064
|
trackSection: {
|
|
@@ -4663,6 +5293,12 @@ interface components$3 {
|
|
|
4663
5293
|
unplanned?: boolean;
|
|
4664
5294
|
cancelled?: boolean;
|
|
4665
5295
|
deviation?: boolean;
|
|
5296
|
+
situationFullRefs?: {
|
|
5297
|
+
situationFullRef: {
|
|
5298
|
+
participantRef: string;
|
|
5299
|
+
situationNumber: string;
|
|
5300
|
+
}[];
|
|
5301
|
+
};
|
|
4666
5302
|
};
|
|
4667
5303
|
legTrack?: {
|
|
4668
5304
|
trackSection: {
|
|
@@ -4906,6 +5542,12 @@ interface components$3 {
|
|
|
4906
5542
|
unplanned?: boolean;
|
|
4907
5543
|
cancelled?: boolean;
|
|
4908
5544
|
deviation?: boolean;
|
|
5545
|
+
situationFullRefs?: {
|
|
5546
|
+
situationFullRef: {
|
|
5547
|
+
participantRef: string;
|
|
5548
|
+
situationNumber: string;
|
|
5549
|
+
}[];
|
|
5550
|
+
};
|
|
4909
5551
|
};
|
|
4910
5552
|
legTrack?: {
|
|
4911
5553
|
trackSection: {
|
|
@@ -5157,6 +5799,12 @@ interface components$3 {
|
|
|
5157
5799
|
unplanned?: boolean;
|
|
5158
5800
|
cancelled?: boolean;
|
|
5159
5801
|
deviation?: boolean;
|
|
5802
|
+
situationFullRefs?: {
|
|
5803
|
+
situationFullRef: {
|
|
5804
|
+
participantRef: string;
|
|
5805
|
+
situationNumber: string;
|
|
5806
|
+
}[];
|
|
5807
|
+
};
|
|
5160
5808
|
};
|
|
5161
5809
|
legTrack?: {
|
|
5162
5810
|
trackSection: {
|
|
@@ -5261,7 +5909,7 @@ interface components$3 {
|
|
|
5261
5909
|
defaultLanguage?: string;
|
|
5262
5910
|
calcTime?: string;
|
|
5263
5911
|
tripResponseContext?: {
|
|
5264
|
-
places
|
|
5912
|
+
places?: {
|
|
5265
5913
|
place: {
|
|
5266
5914
|
stopPoint?: {
|
|
5267
5915
|
stopPointRef: string;
|
|
@@ -5339,6 +5987,65 @@ interface components$3 {
|
|
|
5339
5987
|
}[];
|
|
5340
5988
|
}[];
|
|
5341
5989
|
};
|
|
5990
|
+
situations?: {
|
|
5991
|
+
ptSituation: {
|
|
5992
|
+
creationTime: string;
|
|
5993
|
+
participantRef?: string;
|
|
5994
|
+
situationNumber: string;
|
|
5995
|
+
version?: number;
|
|
5996
|
+
source: {
|
|
5997
|
+
/** @enum {string} */
|
|
5998
|
+
sourceType: "directReport" | "email" | "phone" | "fax" | "post" | "feed" | "radio" | "tv" | "web" | "pager" | "text" | "other";
|
|
5999
|
+
};
|
|
6000
|
+
validityPeriod: {
|
|
6001
|
+
startTime: string;
|
|
6002
|
+
endTime?: string;
|
|
6003
|
+
}[];
|
|
6004
|
+
alertCause: string;
|
|
6005
|
+
priority?: string;
|
|
6006
|
+
scopeType?: string;
|
|
6007
|
+
publishingActions?: {
|
|
6008
|
+
publishingAction: {
|
|
6009
|
+
publishAtScope: {
|
|
6010
|
+
scopeType: string;
|
|
6011
|
+
};
|
|
6012
|
+
passengerInformationAction: {
|
|
6013
|
+
actionRef: string;
|
|
6014
|
+
recordedAtTime: string;
|
|
6015
|
+
/** @enum {string} */
|
|
6016
|
+
perspective: "general" | "stopPoint" | "vehicleJourney";
|
|
6017
|
+
textualContent: {
|
|
6018
|
+
summaryContent: {
|
|
6019
|
+
summaryText: string;
|
|
6020
|
+
};
|
|
6021
|
+
reasonContent?: {
|
|
6022
|
+
reasonText: string;
|
|
6023
|
+
};
|
|
6024
|
+
descriptionContent: {
|
|
6025
|
+
descriptionText: string;
|
|
6026
|
+
}[];
|
|
6027
|
+
consequenceContent: {
|
|
6028
|
+
consequenceText: string;
|
|
6029
|
+
}[];
|
|
6030
|
+
recommendationContent: {
|
|
6031
|
+
recommendationText: string;
|
|
6032
|
+
}[];
|
|
6033
|
+
durationContent?: {
|
|
6034
|
+
durationText: string;
|
|
6035
|
+
};
|
|
6036
|
+
remarkContent: {
|
|
6037
|
+
remark: string;
|
|
6038
|
+
}[];
|
|
6039
|
+
infoLink: {
|
|
6040
|
+
uri: string;
|
|
6041
|
+
label?: string[];
|
|
6042
|
+
}[];
|
|
6043
|
+
}[];
|
|
6044
|
+
}[];
|
|
6045
|
+
}[];
|
|
6046
|
+
};
|
|
6047
|
+
}[];
|
|
6048
|
+
};
|
|
5342
6049
|
};
|
|
5343
6050
|
tripResult: {
|
|
5344
6051
|
id: string;
|
|
@@ -5494,6 +6201,12 @@ interface components$3 {
|
|
|
5494
6201
|
unplanned?: boolean;
|
|
5495
6202
|
cancelled?: boolean;
|
|
5496
6203
|
deviation?: boolean;
|
|
6204
|
+
situationFullRefs?: {
|
|
6205
|
+
situationFullRef: {
|
|
6206
|
+
participantRef: string;
|
|
6207
|
+
situationNumber: string;
|
|
6208
|
+
}[];
|
|
6209
|
+
};
|
|
5497
6210
|
};
|
|
5498
6211
|
legTrack?: {
|
|
5499
6212
|
trackSection: {
|
|
@@ -5604,7 +6317,7 @@ interface components$3 {
|
|
|
5604
6317
|
defaultLanguage?: string;
|
|
5605
6318
|
calcTime?: string;
|
|
5606
6319
|
tripResponseContext?: {
|
|
5607
|
-
places
|
|
6320
|
+
places?: {
|
|
5608
6321
|
place: {
|
|
5609
6322
|
stopPoint?: {
|
|
5610
6323
|
stopPointRef: string;
|
|
@@ -5682,14 +6395,73 @@ interface components$3 {
|
|
|
5682
6395
|
}[];
|
|
5683
6396
|
}[];
|
|
5684
6397
|
};
|
|
5685
|
-
|
|
5686
|
-
|
|
5687
|
-
|
|
5688
|
-
|
|
5689
|
-
|
|
5690
|
-
|
|
5691
|
-
|
|
5692
|
-
|
|
6398
|
+
situations?: {
|
|
6399
|
+
ptSituation: {
|
|
6400
|
+
creationTime: string;
|
|
6401
|
+
participantRef?: string;
|
|
6402
|
+
situationNumber: string;
|
|
6403
|
+
version?: number;
|
|
6404
|
+
source: {
|
|
6405
|
+
/** @enum {string} */
|
|
6406
|
+
sourceType: "directReport" | "email" | "phone" | "fax" | "post" | "feed" | "radio" | "tv" | "web" | "pager" | "text" | "other";
|
|
6407
|
+
};
|
|
6408
|
+
validityPeriod: {
|
|
6409
|
+
startTime: string;
|
|
6410
|
+
endTime?: string;
|
|
6411
|
+
}[];
|
|
6412
|
+
alertCause: string;
|
|
6413
|
+
priority?: string;
|
|
6414
|
+
scopeType?: string;
|
|
6415
|
+
publishingActions?: {
|
|
6416
|
+
publishingAction: {
|
|
6417
|
+
publishAtScope: {
|
|
6418
|
+
scopeType: string;
|
|
6419
|
+
};
|
|
6420
|
+
passengerInformationAction: {
|
|
6421
|
+
actionRef: string;
|
|
6422
|
+
recordedAtTime: string;
|
|
6423
|
+
/** @enum {string} */
|
|
6424
|
+
perspective: "general" | "stopPoint" | "vehicleJourney";
|
|
6425
|
+
textualContent: {
|
|
6426
|
+
summaryContent: {
|
|
6427
|
+
summaryText: string;
|
|
6428
|
+
};
|
|
6429
|
+
reasonContent?: {
|
|
6430
|
+
reasonText: string;
|
|
6431
|
+
};
|
|
6432
|
+
descriptionContent: {
|
|
6433
|
+
descriptionText: string;
|
|
6434
|
+
}[];
|
|
6435
|
+
consequenceContent: {
|
|
6436
|
+
consequenceText: string;
|
|
6437
|
+
}[];
|
|
6438
|
+
recommendationContent: {
|
|
6439
|
+
recommendationText: string;
|
|
6440
|
+
}[];
|
|
6441
|
+
durationContent?: {
|
|
6442
|
+
durationText: string;
|
|
6443
|
+
};
|
|
6444
|
+
remarkContent: {
|
|
6445
|
+
remark: string;
|
|
6446
|
+
}[];
|
|
6447
|
+
infoLink: {
|
|
6448
|
+
uri: string;
|
|
6449
|
+
label?: string[];
|
|
6450
|
+
}[];
|
|
6451
|
+
}[];
|
|
6452
|
+
}[];
|
|
6453
|
+
}[];
|
|
6454
|
+
};
|
|
6455
|
+
}[];
|
|
6456
|
+
};
|
|
6457
|
+
};
|
|
6458
|
+
tripResult: {
|
|
6459
|
+
id: string;
|
|
6460
|
+
trip: {
|
|
6461
|
+
id: string;
|
|
6462
|
+
duration: string;
|
|
6463
|
+
/** Format: date-time */
|
|
6464
|
+
startTime: string;
|
|
5693
6465
|
/** Format: date-time */
|
|
5694
6466
|
endTime: string;
|
|
5695
6467
|
transfers: number;
|
|
@@ -5837,6 +6609,12 @@ interface components$3 {
|
|
|
5837
6609
|
unplanned?: boolean;
|
|
5838
6610
|
cancelled?: boolean;
|
|
5839
6611
|
deviation?: boolean;
|
|
6612
|
+
situationFullRefs?: {
|
|
6613
|
+
situationFullRef: {
|
|
6614
|
+
participantRef: string;
|
|
6615
|
+
situationNumber: string;
|
|
6616
|
+
}[];
|
|
6617
|
+
};
|
|
5840
6618
|
};
|
|
5841
6619
|
legTrack?: {
|
|
5842
6620
|
trackSection: {
|
|
@@ -5947,7 +6725,7 @@ interface components$3 {
|
|
|
5947
6725
|
pathItems: never;
|
|
5948
6726
|
}
|
|
5949
6727
|
|
|
5950
|
-
interface components$
|
|
6728
|
+
interface components$3 {
|
|
5951
6729
|
schemas: {
|
|
5952
6730
|
TripRefineParam: {
|
|
5953
6731
|
numberOfResults?: number;
|
|
@@ -6119,6 +6897,12 @@ interface components$2 {
|
|
|
6119
6897
|
unplanned?: boolean;
|
|
6120
6898
|
cancelled?: boolean;
|
|
6121
6899
|
deviation?: boolean;
|
|
6900
|
+
situationFullRefs?: {
|
|
6901
|
+
situationFullRef: {
|
|
6902
|
+
participantRef: string;
|
|
6903
|
+
situationNumber: string;
|
|
6904
|
+
}[];
|
|
6905
|
+
};
|
|
6122
6906
|
};
|
|
6123
6907
|
legTrack?: {
|
|
6124
6908
|
trackSection: {
|
|
@@ -6389,6 +7173,12 @@ interface components$2 {
|
|
|
6389
7173
|
unplanned?: boolean;
|
|
6390
7174
|
cancelled?: boolean;
|
|
6391
7175
|
deviation?: boolean;
|
|
7176
|
+
situationFullRefs?: {
|
|
7177
|
+
situationFullRef: {
|
|
7178
|
+
participantRef: string;
|
|
7179
|
+
situationNumber: string;
|
|
7180
|
+
}[];
|
|
7181
|
+
};
|
|
6392
7182
|
};
|
|
6393
7183
|
legTrack?: {
|
|
6394
7184
|
trackSection: {
|
|
@@ -6499,6 +7289,552 @@ interface components$2 {
|
|
|
6499
7289
|
pathItems: never;
|
|
6500
7290
|
}
|
|
6501
7291
|
|
|
7292
|
+
interface components$2 {
|
|
7293
|
+
schemas: {
|
|
7294
|
+
OJPTripRefineDelivery: {
|
|
7295
|
+
responseTimestamp: string;
|
|
7296
|
+
requestMessageRef?: string;
|
|
7297
|
+
defaultLanguage?: string;
|
|
7298
|
+
calcTime?: string;
|
|
7299
|
+
tripResult: {
|
|
7300
|
+
id: string;
|
|
7301
|
+
trip: {
|
|
7302
|
+
id: string;
|
|
7303
|
+
duration: string;
|
|
7304
|
+
/** Format: date-time */
|
|
7305
|
+
startTime: string;
|
|
7306
|
+
/** Format: date-time */
|
|
7307
|
+
endTime: string;
|
|
7308
|
+
transfers: number;
|
|
7309
|
+
leg: {
|
|
7310
|
+
id: string;
|
|
7311
|
+
duration?: string;
|
|
7312
|
+
timedLeg?: {
|
|
7313
|
+
legBoard: {
|
|
7314
|
+
stopPointRef: string;
|
|
7315
|
+
stopPointName: {
|
|
7316
|
+
text: string;
|
|
7317
|
+
};
|
|
7318
|
+
nameSuffix?: {
|
|
7319
|
+
text: string;
|
|
7320
|
+
};
|
|
7321
|
+
plannedQuay?: {
|
|
7322
|
+
text: string;
|
|
7323
|
+
};
|
|
7324
|
+
estimatedQuay?: {
|
|
7325
|
+
text: string;
|
|
7326
|
+
};
|
|
7327
|
+
serviceArrival?: {
|
|
7328
|
+
timetabledTime: string;
|
|
7329
|
+
estimatedTime?: string;
|
|
7330
|
+
};
|
|
7331
|
+
serviceDeparture: {
|
|
7332
|
+
timetabledTime: string;
|
|
7333
|
+
estimatedTime?: string;
|
|
7334
|
+
};
|
|
7335
|
+
order?: number;
|
|
7336
|
+
requestStop?: boolean;
|
|
7337
|
+
unplannedStop?: boolean;
|
|
7338
|
+
notServicedStop?: boolean;
|
|
7339
|
+
noBoardingAtStop?: boolean;
|
|
7340
|
+
noAlightingAtStop?: boolean;
|
|
7341
|
+
};
|
|
7342
|
+
legIntermediate: {
|
|
7343
|
+
stopPointRef: string;
|
|
7344
|
+
stopPointName: {
|
|
7345
|
+
text: string;
|
|
7346
|
+
};
|
|
7347
|
+
nameSuffix?: {
|
|
7348
|
+
text: string;
|
|
7349
|
+
};
|
|
7350
|
+
plannedQuay?: {
|
|
7351
|
+
text: string;
|
|
7352
|
+
};
|
|
7353
|
+
estimatedQuay?: {
|
|
7354
|
+
text: string;
|
|
7355
|
+
};
|
|
7356
|
+
serviceArrival: {
|
|
7357
|
+
timetabledTime: string;
|
|
7358
|
+
estimatedTime?: string;
|
|
7359
|
+
};
|
|
7360
|
+
serviceDeparture: {
|
|
7361
|
+
timetabledTime: string;
|
|
7362
|
+
estimatedTime?: string;
|
|
7363
|
+
};
|
|
7364
|
+
order?: number;
|
|
7365
|
+
requestStop?: boolean;
|
|
7366
|
+
unplannedStop?: boolean;
|
|
7367
|
+
notServicedStop?: boolean;
|
|
7368
|
+
noBoardingAtStop?: boolean;
|
|
7369
|
+
noAlightingAtStop?: boolean;
|
|
7370
|
+
}[];
|
|
7371
|
+
legAlight: {
|
|
7372
|
+
stopPointRef: string;
|
|
7373
|
+
stopPointName: {
|
|
7374
|
+
text: string;
|
|
7375
|
+
};
|
|
7376
|
+
nameSuffix?: {
|
|
7377
|
+
text: string;
|
|
7378
|
+
};
|
|
7379
|
+
plannedQuay?: {
|
|
7380
|
+
text: string;
|
|
7381
|
+
};
|
|
7382
|
+
estimatedQuay?: {
|
|
7383
|
+
text: string;
|
|
7384
|
+
};
|
|
7385
|
+
serviceArrival: {
|
|
7386
|
+
timetabledTime: string;
|
|
7387
|
+
estimatedTime?: string;
|
|
7388
|
+
};
|
|
7389
|
+
serviceDeparture?: {
|
|
7390
|
+
timetabledTime: string;
|
|
7391
|
+
estimatedTime?: string;
|
|
7392
|
+
};
|
|
7393
|
+
order?: number;
|
|
7394
|
+
requestStop?: boolean;
|
|
7395
|
+
unplannedStop?: boolean;
|
|
7396
|
+
notServicedStop?: boolean;
|
|
7397
|
+
noBoardingAtStop?: boolean;
|
|
7398
|
+
noAlightingAtStop?: boolean;
|
|
7399
|
+
};
|
|
7400
|
+
service: {
|
|
7401
|
+
conventionalModeOfOperation?: string;
|
|
7402
|
+
operatingDayRef: string;
|
|
7403
|
+
journeyRef: string;
|
|
7404
|
+
publicCode?: string;
|
|
7405
|
+
lineRef: string;
|
|
7406
|
+
directionRef?: string;
|
|
7407
|
+
mode: {
|
|
7408
|
+
/** @enum {string} */
|
|
7409
|
+
ptMode: "air" | "bus" | "coach" | "trolleyBus" | "metro" | "rail" | "tram" | "water" | "ferry" | "cableway" | "funicular" | "lift" | "other" | "unknown";
|
|
7410
|
+
airSubmode?: string;
|
|
7411
|
+
busSubmode?: string;
|
|
7412
|
+
coachSubmode?: string;
|
|
7413
|
+
funicularSubmode?: string;
|
|
7414
|
+
metroSubmode?: string;
|
|
7415
|
+
tramSubmode?: string;
|
|
7416
|
+
telecabinSubmode?: string;
|
|
7417
|
+
railSubmode?: string;
|
|
7418
|
+
waterSubmode?: string;
|
|
7419
|
+
name?: {
|
|
7420
|
+
text: string;
|
|
7421
|
+
};
|
|
7422
|
+
shortName?: {
|
|
7423
|
+
text: string;
|
|
7424
|
+
};
|
|
7425
|
+
};
|
|
7426
|
+
productCategory?: {
|
|
7427
|
+
name?: {
|
|
7428
|
+
text: string;
|
|
7429
|
+
};
|
|
7430
|
+
shortName?: {
|
|
7431
|
+
text: string;
|
|
7432
|
+
};
|
|
7433
|
+
productCategoryRef?: string;
|
|
7434
|
+
};
|
|
7435
|
+
publishedServiceName: {
|
|
7436
|
+
text: string;
|
|
7437
|
+
};
|
|
7438
|
+
trainNumber?: string;
|
|
7439
|
+
attribute: {
|
|
7440
|
+
userText: {
|
|
7441
|
+
text: string;
|
|
7442
|
+
};
|
|
7443
|
+
code: string;
|
|
7444
|
+
}[];
|
|
7445
|
+
operatorRef?: string;
|
|
7446
|
+
destinationStopPointRef?: string;
|
|
7447
|
+
destinationText?: {
|
|
7448
|
+
text: string;
|
|
7449
|
+
};
|
|
7450
|
+
unplanned?: boolean;
|
|
7451
|
+
cancelled?: boolean;
|
|
7452
|
+
deviation?: boolean;
|
|
7453
|
+
situationFullRefs?: {
|
|
7454
|
+
situationFullRef: {
|
|
7455
|
+
participantRef: string;
|
|
7456
|
+
situationNumber: string;
|
|
7457
|
+
}[];
|
|
7458
|
+
};
|
|
7459
|
+
};
|
|
7460
|
+
legTrack?: {
|
|
7461
|
+
trackSection: {
|
|
7462
|
+
trackSectionStart?: {
|
|
7463
|
+
stopPointRef?: string;
|
|
7464
|
+
stopPlaceRef?: string;
|
|
7465
|
+
geoPosition?: {
|
|
7466
|
+
longitude: number;
|
|
7467
|
+
latitude: number;
|
|
7468
|
+
};
|
|
7469
|
+
name: {
|
|
7470
|
+
text: string;
|
|
7471
|
+
};
|
|
7472
|
+
};
|
|
7473
|
+
trackSectionEnd?: {
|
|
7474
|
+
stopPointRef?: string;
|
|
7475
|
+
stopPlaceRef?: string;
|
|
7476
|
+
geoPosition?: {
|
|
7477
|
+
longitude: number;
|
|
7478
|
+
latitude: number;
|
|
7479
|
+
};
|
|
7480
|
+
name: {
|
|
7481
|
+
text: string;
|
|
7482
|
+
};
|
|
7483
|
+
};
|
|
7484
|
+
linkProjection?: {
|
|
7485
|
+
position: {
|
|
7486
|
+
longitude: number;
|
|
7487
|
+
latitude: number;
|
|
7488
|
+
}[];
|
|
7489
|
+
};
|
|
7490
|
+
}[];
|
|
7491
|
+
};
|
|
7492
|
+
};
|
|
7493
|
+
transferLeg?: {
|
|
7494
|
+
/** @enum {string} */
|
|
7495
|
+
transferType: "walk" | "remainInVehicle";
|
|
7496
|
+
legStart: {
|
|
7497
|
+
stopPointRef?: string;
|
|
7498
|
+
stopPlaceRef?: string;
|
|
7499
|
+
geoPosition?: {
|
|
7500
|
+
longitude: number;
|
|
7501
|
+
latitude: number;
|
|
7502
|
+
};
|
|
7503
|
+
name: {
|
|
7504
|
+
text: string;
|
|
7505
|
+
};
|
|
7506
|
+
};
|
|
7507
|
+
legEnd: {
|
|
7508
|
+
stopPointRef?: string;
|
|
7509
|
+
stopPlaceRef?: string;
|
|
7510
|
+
geoPosition?: {
|
|
7511
|
+
longitude: number;
|
|
7512
|
+
latitude: number;
|
|
7513
|
+
};
|
|
7514
|
+
name: {
|
|
7515
|
+
text: string;
|
|
7516
|
+
};
|
|
7517
|
+
};
|
|
7518
|
+
duration: string;
|
|
7519
|
+
};
|
|
7520
|
+
continuousLeg?: {
|
|
7521
|
+
legStart: {
|
|
7522
|
+
stopPointRef?: string;
|
|
7523
|
+
stopPlaceRef?: string;
|
|
7524
|
+
geoPosition?: {
|
|
7525
|
+
longitude: number;
|
|
7526
|
+
latitude: number;
|
|
7527
|
+
};
|
|
7528
|
+
name: {
|
|
7529
|
+
text: string;
|
|
7530
|
+
};
|
|
7531
|
+
};
|
|
7532
|
+
legEnd: {
|
|
7533
|
+
stopPointRef?: string;
|
|
7534
|
+
stopPlaceRef?: string;
|
|
7535
|
+
geoPosition?: {
|
|
7536
|
+
longitude: number;
|
|
7537
|
+
latitude: number;
|
|
7538
|
+
};
|
|
7539
|
+
name: {
|
|
7540
|
+
text: string;
|
|
7541
|
+
};
|
|
7542
|
+
};
|
|
7543
|
+
service: {
|
|
7544
|
+
personalModeOfOperation?: string;
|
|
7545
|
+
personalMode?: string;
|
|
7546
|
+
};
|
|
7547
|
+
duration: string;
|
|
7548
|
+
};
|
|
7549
|
+
}[];
|
|
7550
|
+
unplanned?: boolean;
|
|
7551
|
+
cancelled?: boolean;
|
|
7552
|
+
deviation?: boolean;
|
|
7553
|
+
delayed?: boolean;
|
|
7554
|
+
infeasible?: boolean;
|
|
7555
|
+
};
|
|
7556
|
+
}[];
|
|
7557
|
+
};
|
|
7558
|
+
OJP: {
|
|
7559
|
+
OJPResponse: {
|
|
7560
|
+
serviceDelivery: {
|
|
7561
|
+
responseTimestamp: string;
|
|
7562
|
+
producerRef: string;
|
|
7563
|
+
OJPTripRefineDelivery: {
|
|
7564
|
+
responseTimestamp: string;
|
|
7565
|
+
requestMessageRef?: string;
|
|
7566
|
+
defaultLanguage?: string;
|
|
7567
|
+
calcTime?: string;
|
|
7568
|
+
tripResult: {
|
|
7569
|
+
id: string;
|
|
7570
|
+
trip: {
|
|
7571
|
+
id: string;
|
|
7572
|
+
duration: string;
|
|
7573
|
+
/** Format: date-time */
|
|
7574
|
+
startTime: string;
|
|
7575
|
+
/** Format: date-time */
|
|
7576
|
+
endTime: string;
|
|
7577
|
+
transfers: number;
|
|
7578
|
+
leg: {
|
|
7579
|
+
id: string;
|
|
7580
|
+
duration?: string;
|
|
7581
|
+
timedLeg?: {
|
|
7582
|
+
legBoard: {
|
|
7583
|
+
stopPointRef: string;
|
|
7584
|
+
stopPointName: {
|
|
7585
|
+
text: string;
|
|
7586
|
+
};
|
|
7587
|
+
nameSuffix?: {
|
|
7588
|
+
text: string;
|
|
7589
|
+
};
|
|
7590
|
+
plannedQuay?: {
|
|
7591
|
+
text: string;
|
|
7592
|
+
};
|
|
7593
|
+
estimatedQuay?: {
|
|
7594
|
+
text: string;
|
|
7595
|
+
};
|
|
7596
|
+
serviceArrival?: {
|
|
7597
|
+
timetabledTime: string;
|
|
7598
|
+
estimatedTime?: string;
|
|
7599
|
+
};
|
|
7600
|
+
serviceDeparture: {
|
|
7601
|
+
timetabledTime: string;
|
|
7602
|
+
estimatedTime?: string;
|
|
7603
|
+
};
|
|
7604
|
+
order?: number;
|
|
7605
|
+
requestStop?: boolean;
|
|
7606
|
+
unplannedStop?: boolean;
|
|
7607
|
+
notServicedStop?: boolean;
|
|
7608
|
+
noBoardingAtStop?: boolean;
|
|
7609
|
+
noAlightingAtStop?: boolean;
|
|
7610
|
+
};
|
|
7611
|
+
legIntermediate: {
|
|
7612
|
+
stopPointRef: string;
|
|
7613
|
+
stopPointName: {
|
|
7614
|
+
text: string;
|
|
7615
|
+
};
|
|
7616
|
+
nameSuffix?: {
|
|
7617
|
+
text: string;
|
|
7618
|
+
};
|
|
7619
|
+
plannedQuay?: {
|
|
7620
|
+
text: string;
|
|
7621
|
+
};
|
|
7622
|
+
estimatedQuay?: {
|
|
7623
|
+
text: string;
|
|
7624
|
+
};
|
|
7625
|
+
serviceArrival: {
|
|
7626
|
+
timetabledTime: string;
|
|
7627
|
+
estimatedTime?: string;
|
|
7628
|
+
};
|
|
7629
|
+
serviceDeparture: {
|
|
7630
|
+
timetabledTime: string;
|
|
7631
|
+
estimatedTime?: string;
|
|
7632
|
+
};
|
|
7633
|
+
order?: number;
|
|
7634
|
+
requestStop?: boolean;
|
|
7635
|
+
unplannedStop?: boolean;
|
|
7636
|
+
notServicedStop?: boolean;
|
|
7637
|
+
noBoardingAtStop?: boolean;
|
|
7638
|
+
noAlightingAtStop?: boolean;
|
|
7639
|
+
}[];
|
|
7640
|
+
legAlight: {
|
|
7641
|
+
stopPointRef: string;
|
|
7642
|
+
stopPointName: {
|
|
7643
|
+
text: string;
|
|
7644
|
+
};
|
|
7645
|
+
nameSuffix?: {
|
|
7646
|
+
text: string;
|
|
7647
|
+
};
|
|
7648
|
+
plannedQuay?: {
|
|
7649
|
+
text: string;
|
|
7650
|
+
};
|
|
7651
|
+
estimatedQuay?: {
|
|
7652
|
+
text: string;
|
|
7653
|
+
};
|
|
7654
|
+
serviceArrival: {
|
|
7655
|
+
timetabledTime: string;
|
|
7656
|
+
estimatedTime?: string;
|
|
7657
|
+
};
|
|
7658
|
+
serviceDeparture?: {
|
|
7659
|
+
timetabledTime: string;
|
|
7660
|
+
estimatedTime?: string;
|
|
7661
|
+
};
|
|
7662
|
+
order?: number;
|
|
7663
|
+
requestStop?: boolean;
|
|
7664
|
+
unplannedStop?: boolean;
|
|
7665
|
+
notServicedStop?: boolean;
|
|
7666
|
+
noBoardingAtStop?: boolean;
|
|
7667
|
+
noAlightingAtStop?: boolean;
|
|
7668
|
+
};
|
|
7669
|
+
service: {
|
|
7670
|
+
conventionalModeOfOperation?: string;
|
|
7671
|
+
operatingDayRef: string;
|
|
7672
|
+
journeyRef: string;
|
|
7673
|
+
publicCode?: string;
|
|
7674
|
+
lineRef: string;
|
|
7675
|
+
directionRef?: string;
|
|
7676
|
+
mode: {
|
|
7677
|
+
/** @enum {string} */
|
|
7678
|
+
ptMode: "air" | "bus" | "coach" | "trolleyBus" | "metro" | "rail" | "tram" | "water" | "ferry" | "cableway" | "funicular" | "lift" | "other" | "unknown";
|
|
7679
|
+
airSubmode?: string;
|
|
7680
|
+
busSubmode?: string;
|
|
7681
|
+
coachSubmode?: string;
|
|
7682
|
+
funicularSubmode?: string;
|
|
7683
|
+
metroSubmode?: string;
|
|
7684
|
+
tramSubmode?: string;
|
|
7685
|
+
telecabinSubmode?: string;
|
|
7686
|
+
railSubmode?: string;
|
|
7687
|
+
waterSubmode?: string;
|
|
7688
|
+
name?: {
|
|
7689
|
+
text: string;
|
|
7690
|
+
};
|
|
7691
|
+
shortName?: {
|
|
7692
|
+
text: string;
|
|
7693
|
+
};
|
|
7694
|
+
};
|
|
7695
|
+
productCategory?: {
|
|
7696
|
+
name?: {
|
|
7697
|
+
text: string;
|
|
7698
|
+
};
|
|
7699
|
+
shortName?: {
|
|
7700
|
+
text: string;
|
|
7701
|
+
};
|
|
7702
|
+
productCategoryRef?: string;
|
|
7703
|
+
};
|
|
7704
|
+
publishedServiceName: {
|
|
7705
|
+
text: string;
|
|
7706
|
+
};
|
|
7707
|
+
trainNumber?: string;
|
|
7708
|
+
attribute: {
|
|
7709
|
+
userText: {
|
|
7710
|
+
text: string;
|
|
7711
|
+
};
|
|
7712
|
+
code: string;
|
|
7713
|
+
}[];
|
|
7714
|
+
operatorRef?: string;
|
|
7715
|
+
destinationStopPointRef?: string;
|
|
7716
|
+
destinationText?: {
|
|
7717
|
+
text: string;
|
|
7718
|
+
};
|
|
7719
|
+
unplanned?: boolean;
|
|
7720
|
+
cancelled?: boolean;
|
|
7721
|
+
deviation?: boolean;
|
|
7722
|
+
situationFullRefs?: {
|
|
7723
|
+
situationFullRef: {
|
|
7724
|
+
participantRef: string;
|
|
7725
|
+
situationNumber: string;
|
|
7726
|
+
}[];
|
|
7727
|
+
};
|
|
7728
|
+
};
|
|
7729
|
+
legTrack?: {
|
|
7730
|
+
trackSection: {
|
|
7731
|
+
trackSectionStart?: {
|
|
7732
|
+
stopPointRef?: string;
|
|
7733
|
+
stopPlaceRef?: string;
|
|
7734
|
+
geoPosition?: {
|
|
7735
|
+
longitude: number;
|
|
7736
|
+
latitude: number;
|
|
7737
|
+
};
|
|
7738
|
+
name: {
|
|
7739
|
+
text: string;
|
|
7740
|
+
};
|
|
7741
|
+
};
|
|
7742
|
+
trackSectionEnd?: {
|
|
7743
|
+
stopPointRef?: string;
|
|
7744
|
+
stopPlaceRef?: string;
|
|
7745
|
+
geoPosition?: {
|
|
7746
|
+
longitude: number;
|
|
7747
|
+
latitude: number;
|
|
7748
|
+
};
|
|
7749
|
+
name: {
|
|
7750
|
+
text: string;
|
|
7751
|
+
};
|
|
7752
|
+
};
|
|
7753
|
+
linkProjection?: {
|
|
7754
|
+
position: {
|
|
7755
|
+
longitude: number;
|
|
7756
|
+
latitude: number;
|
|
7757
|
+
}[];
|
|
7758
|
+
};
|
|
7759
|
+
}[];
|
|
7760
|
+
};
|
|
7761
|
+
};
|
|
7762
|
+
transferLeg?: {
|
|
7763
|
+
/** @enum {string} */
|
|
7764
|
+
transferType: "walk" | "remainInVehicle";
|
|
7765
|
+
legStart: {
|
|
7766
|
+
stopPointRef?: string;
|
|
7767
|
+
stopPlaceRef?: string;
|
|
7768
|
+
geoPosition?: {
|
|
7769
|
+
longitude: number;
|
|
7770
|
+
latitude: number;
|
|
7771
|
+
};
|
|
7772
|
+
name: {
|
|
7773
|
+
text: string;
|
|
7774
|
+
};
|
|
7775
|
+
};
|
|
7776
|
+
legEnd: {
|
|
7777
|
+
stopPointRef?: string;
|
|
7778
|
+
stopPlaceRef?: string;
|
|
7779
|
+
geoPosition?: {
|
|
7780
|
+
longitude: number;
|
|
7781
|
+
latitude: number;
|
|
7782
|
+
};
|
|
7783
|
+
name: {
|
|
7784
|
+
text: string;
|
|
7785
|
+
};
|
|
7786
|
+
};
|
|
7787
|
+
duration: string;
|
|
7788
|
+
};
|
|
7789
|
+
continuousLeg?: {
|
|
7790
|
+
legStart: {
|
|
7791
|
+
stopPointRef?: string;
|
|
7792
|
+
stopPlaceRef?: string;
|
|
7793
|
+
geoPosition?: {
|
|
7794
|
+
longitude: number;
|
|
7795
|
+
latitude: number;
|
|
7796
|
+
};
|
|
7797
|
+
name: {
|
|
7798
|
+
text: string;
|
|
7799
|
+
};
|
|
7800
|
+
};
|
|
7801
|
+
legEnd: {
|
|
7802
|
+
stopPointRef?: string;
|
|
7803
|
+
stopPlaceRef?: string;
|
|
7804
|
+
geoPosition?: {
|
|
7805
|
+
longitude: number;
|
|
7806
|
+
latitude: number;
|
|
7807
|
+
};
|
|
7808
|
+
name: {
|
|
7809
|
+
text: string;
|
|
7810
|
+
};
|
|
7811
|
+
};
|
|
7812
|
+
service: {
|
|
7813
|
+
personalModeOfOperation?: string;
|
|
7814
|
+
personalMode?: string;
|
|
7815
|
+
};
|
|
7816
|
+
duration: string;
|
|
7817
|
+
};
|
|
7818
|
+
}[];
|
|
7819
|
+
unplanned?: boolean;
|
|
7820
|
+
cancelled?: boolean;
|
|
7821
|
+
deviation?: boolean;
|
|
7822
|
+
delayed?: boolean;
|
|
7823
|
+
infeasible?: boolean;
|
|
7824
|
+
};
|
|
7825
|
+
}[];
|
|
7826
|
+
};
|
|
7827
|
+
};
|
|
7828
|
+
};
|
|
7829
|
+
};
|
|
7830
|
+
};
|
|
7831
|
+
responses: never;
|
|
7832
|
+
parameters: never;
|
|
7833
|
+
requestBodies: never;
|
|
7834
|
+
headers: never;
|
|
7835
|
+
pathItems: never;
|
|
7836
|
+
}
|
|
7837
|
+
|
|
6502
7838
|
interface components$1 {
|
|
6503
7839
|
schemas: {
|
|
6504
7840
|
TripFareRequest: {
|
|
@@ -7758,71 +9094,77 @@ interface components {
|
|
|
7758
9094
|
pathItems: never;
|
|
7759
9095
|
}
|
|
7760
9096
|
|
|
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
|
|
9097
|
+
type OJPv1_DatedJourneySchema = components$e['schemas']['DatedJourney'];
|
|
9098
|
+
type OJPv1_TimedLegSchema = components$d['schemas']['TimedLeg'];
|
|
9099
|
+
type OJPv1_TripLegSchema = components$d['schemas']['TripLeg'];
|
|
9100
|
+
type OJPv1_TripSchema = components$d['schemas']['Trip'];
|
|
9101
|
+
type UseRealtimeDataEnum = components$f["schemas"]["UseRealtimeDataEnum"];
|
|
9102
|
+
type VehicleModesOfTransportEnum = components$f["schemas"]["VehicleModesOfTransportEnum"];
|
|
9103
|
+
type PlaceTypeEnum = components$f["schemas"]["PlaceTypeEnum"];
|
|
9104
|
+
type GeoPositionSchema = components$f["schemas"]["GeoPosition"];
|
|
9105
|
+
type PlaceRefSchema = components$f["schemas"]["PlaceRef"];
|
|
9106
|
+
type InternationalTextSchema = components$f["schemas"]["InternationalText"];
|
|
9107
|
+
type DatedJourneySchema = components$f["schemas"]["DatedJourney"];
|
|
9108
|
+
type CallAtStopSchema = components$f["schemas"]["CallAtStop"];
|
|
9109
|
+
type PlaceContextSchema = components$f["schemas"]["PlaceContext"];
|
|
9110
|
+
type PlaceSchema = components$f['schemas']['Place'];
|
|
9111
|
+
type StopPointSchema = components$f['schemas']['StopPoint'];
|
|
9112
|
+
type StopPlaceSchema = components$f['schemas']['StopPlace'];
|
|
9113
|
+
type TopographicPlaceSchema = components$f['schemas']['TopographicPlace'];
|
|
9114
|
+
type PointOfInterestSchema = components$f['schemas']['PointOfInterest'];
|
|
9115
|
+
type AddressSchema = components$f['schemas']['Address'];
|
|
9116
|
+
type ModeStructureSchema = components$f['schemas']['ModeStructure'];
|
|
9117
|
+
type ProductCategorySchema = components$f['schemas']['ProductCategory'];
|
|
9118
|
+
type GeneralAttributeSchema = components$f['schemas']['GeneralAttribute'];
|
|
9119
|
+
type ResponseContextSchema = components$f['schemas']['ResponseContextStructure'];
|
|
9120
|
+
type TripRequestOJP = components$5["schemas"]["OJP"];
|
|
9121
|
+
type TripParamsSchema = components$5["schemas"]["TripParam"];
|
|
9122
|
+
type TripRequestSchema = components$5["schemas"]["OJPTripRequest"];
|
|
9123
|
+
type ViaPointSchema = components$5["schemas"]["ViaPoint"];
|
|
9124
|
+
type ModeAndModeOfOperationFilterSchema = components$5["schemas"]["ModeAndModeOfOperationFilter"];
|
|
9125
|
+
type TripResultSchema = components$4['schemas']['TripResult'];
|
|
9126
|
+
type TripSchema = components$4["schemas"]["Trip"];
|
|
9127
|
+
type LegSchema = components$4["schemas"]["Leg"];
|
|
9128
|
+
type TimedLegSchema = components$4["schemas"]["TimedLeg"];
|
|
9129
|
+
type TransferLegSchema = components$4["schemas"]["TransferLeg"];
|
|
9130
|
+
type ContinuousLegSchema = components$4["schemas"]["ContinuousLeg"];
|
|
9131
|
+
type TripRequestResponseOJP = components$4['schemas']['OJP'];
|
|
9132
|
+
type TripDeliverySchema = components$4['schemas']['OJPTripDelivery'];
|
|
9133
|
+
type InitialInputSchema = components$c['schemas']['InitialInput'];
|
|
9134
|
+
type LIR_RequestParamsSchema = components$c['schemas']['PlaceParam'];
|
|
9135
|
+
type LocationInformationRequestOJP = components$c['schemas']['OJP'];
|
|
9136
|
+
type LocationInformationRequestSchema = components$c['schemas']['OJPLocationInformationRequest'];
|
|
9137
|
+
type PlaceResultSchema = components$b['schemas']['PlaceResult'];
|
|
9138
|
+
type LocationInformationRequestResponseOJP = components$b['schemas']['OJP'];
|
|
9139
|
+
type LocationInformationDeliverySchema = components$b['schemas']['OJPLocationInformationDelivery'];
|
|
9140
|
+
type StopEventRequestSchema = components$a['schemas']['OJPStopEventRequest'];
|
|
9141
|
+
type SER_RequestLocationSchema = components$a['schemas']['PlaceContext'];
|
|
9142
|
+
type SER_RequestParamsSchema = components$a['schemas']['StopEventParam'];
|
|
9143
|
+
type SER_RequestOJP = components$a['schemas']['OJP'];
|
|
9144
|
+
type StopEventResultSchema = components$9['schemas']['StopEventResult'];
|
|
9145
|
+
type StopEventSchema = components$9['schemas']['StopEvent'];
|
|
9146
|
+
type StopEventRequestResponseOJP = components$9['schemas']['OJP'];
|
|
9147
|
+
type StopEventDeliverySchema = components$9['schemas']['OJPStopEventDelivery'];
|
|
9148
|
+
type TRR_RequestParamsSchema = components$3['schemas']['TripRefineParam'];
|
|
9149
|
+
type TRR_RequestSchema = components$3["schemas"]['OJPTripRefineRequest'];
|
|
9150
|
+
type TRR_RequestOJP = components$3['schemas']['OJP'];
|
|
9151
|
+
type TRR_ResponseOJP = components$2['schemas']['OJP'];
|
|
9152
|
+
type TRR_DeliverySchema = components$2['schemas']['OJPTripRefineDelivery'];
|
|
7811
9153
|
type FareRequestParamsSchema = components$1["schemas"]['FareParamStructure'];
|
|
7812
9154
|
type FareRequestSchema = components$1['schemas']['OJPFareRequest'];
|
|
7813
9155
|
type FareRequestsSchema = components$1['schemas']['OJPFareRequests'];
|
|
7814
9156
|
type FareRequestOJP = components$1['schemas']['OJP'];
|
|
7815
9157
|
type FareResponseOJP = components['schemas']['OJP'];
|
|
7816
9158
|
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$
|
|
9159
|
+
type TIR_RequestParamsSchema = components$8['schemas']['TripInfoParamStructure'];
|
|
9160
|
+
type TIR_RequestSchema = components$8['schemas']['OJPTripInfoRequest'];
|
|
9161
|
+
type TIR_RequestOJP = components$8['schemas']['OJP'];
|
|
9162
|
+
type TripInfoResponseOJP = components$7['schemas']['OJP'];
|
|
9163
|
+
type TripInfoDeliverySchema = components$7['schemas']['OJPTripInfoDelivery'];
|
|
9164
|
+
type TripInfoResultStructureSchema = components$7['schemas']['TripInfoResultStructure'];
|
|
9165
|
+
type OJPv1_TripInfoResponseOJP = components$6['schemas']['OJP'];
|
|
9166
|
+
type OJPv1_TripInfoDeliverySchema = components$6['schemas']['OJPTripInfoDelivery'];
|
|
9167
|
+
type OJPv1_TripInfoResultStructureSchema = components$6['schemas']['TripInfoResultStructure'];
|
|
7826
9168
|
|
|
7827
9169
|
declare const OpenAPI_Dependencies: {
|
|
7828
9170
|
readonly MapNS_Tags: Record<string, string>;
|
|
@@ -7831,4 +9173,4 @@ declare const OpenAPI_Dependencies: {
|
|
|
7831
9173
|
readonly MapStringValues: Record<string, boolean>;
|
|
7832
9174
|
};
|
|
7833
9175
|
|
|
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 };
|
|
9176
|
+
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 };
|