ojp-shared-types 0.0.23 → 0.1.1

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
package/dist/index.d.ts CHANGED
@@ -1,6 +1,6 @@
1
- declare const VERSION = "0.0.23";
1
+ declare const VERSION = "0.1.1";
2
2
 
3
- interface components$h {
3
+ interface components$j {
4
4
  schemas: {
5
5
  /** @enum {string} */
6
6
  PersonalModesEnumeration: "foot" | "bicycle" | "car" | "motorcycle" | "truck" | "scooter" | "other";
@@ -261,6 +261,14 @@ interface components$h {
261
261
  text: string;
262
262
  };
263
263
  }[];
264
+ attribute: {
265
+ userText: {
266
+ text: string;
267
+ };
268
+ code: string;
269
+ hireFacility?: string;
270
+ importance?: number;
271
+ }[];
264
272
  };
265
273
  TextualContentStructure: {
266
274
  summaryContent: {
@@ -456,6 +464,43 @@ interface components$h {
456
464
  occupancyLevel: "empty" | "manySeatsAvailable" | "fewSeatsAvailable" | "standingRoomOnly";
457
465
  }[];
458
466
  };
467
+ CallAtNearStop: {
468
+ callAtStop: {
469
+ stopPointRef: string;
470
+ stopPointName: {
471
+ text: string;
472
+ };
473
+ nameSuffix?: {
474
+ text: string;
475
+ };
476
+ plannedQuay?: {
477
+ text: string;
478
+ };
479
+ estimatedQuay?: {
480
+ text: string;
481
+ };
482
+ serviceArrival?: {
483
+ timetabledTime: string;
484
+ estimatedTime?: string;
485
+ };
486
+ serviceDeparture?: {
487
+ timetabledTime: string;
488
+ estimatedTime?: string;
489
+ };
490
+ order?: number;
491
+ requestStop?: boolean;
492
+ unplannedStop?: boolean;
493
+ notServicedStop?: boolean;
494
+ noBoardingAtStop?: boolean;
495
+ noAlightingAtStop?: boolean;
496
+ expectedDepartureOccupancy?: {
497
+ /** @enum {string} */
498
+ fareClass: "unknown" | "firstClass" | "secondClass";
499
+ /** @enum {string} */
500
+ occupancyLevel: "empty" | "manySeatsAvailable" | "fewSeatsAvailable" | "standingRoomOnly";
501
+ }[];
502
+ };
503
+ };
459
504
  ProductCategory: {
460
505
  name?: {
461
506
  text: string;
@@ -470,6 +515,7 @@ interface components$h {
470
515
  text: string;
471
516
  };
472
517
  code: string;
518
+ hireFacility?: string;
473
519
  importance?: number;
474
520
  };
475
521
  SituationFullRefStructure: {
@@ -520,8 +566,12 @@ interface components$h {
520
566
  text: string;
521
567
  };
522
568
  code: string;
569
+ hireFacility?: string;
523
570
  importance?: number;
524
571
  }[];
572
+ originText: {
573
+ text: string;
574
+ };
525
575
  operatorRef?: string;
526
576
  destinationStopPointRef?: string;
527
577
  destinationText?: {
@@ -626,6 +676,14 @@ interface components$h {
626
676
  text: string;
627
677
  };
628
678
  }[];
679
+ attribute: {
680
+ userText: {
681
+ text: string;
682
+ };
683
+ code: string;
684
+ hireFacility?: string;
685
+ importance?: number;
686
+ }[];
629
687
  }[];
630
688
  };
631
689
  situations?: {
@@ -762,6 +820,16 @@ interface components$h {
762
820
  length?: number;
763
821
  }[];
764
822
  };
823
+ PointOfInterestFilterStructure: {
824
+ exclude?: boolean;
825
+ pointOfInterestCategory: {
826
+ osmTag: {
827
+ tag: string;
828
+ value: string;
829
+ }[];
830
+ pointOfInterestClassification: string[];
831
+ }[];
832
+ };
765
833
  ModeFilterStructure: {
766
834
  exclude?: boolean;
767
835
  ptMode: ("air" | "bus" | "coach" | "trolleyBus" | "metro" | "rail" | "tram" | "water" | "ferry" | "cableway" | "funicular" | "lift" | "telecabin" | "other" | "unknown")[];
@@ -822,15 +890,221 @@ interface components$h {
822
890
  pathItems: never;
823
891
  }
824
892
 
825
- interface components$g {
893
+ interface components$i {
826
894
  schemas: {
827
895
  GeneralAttribute: {
828
896
  text: {
829
897
  text: string;
830
898
  };
831
899
  code: string;
900
+ hireFacility?: string;
832
901
  importance?: number;
833
902
  };
903
+ PlaceRef: {
904
+ stopPointRef?: string;
905
+ stopPlaceRef?: string;
906
+ geoPosition?: {
907
+ longitude: number;
908
+ latitude: number;
909
+ };
910
+ locationName: {
911
+ text: string;
912
+ };
913
+ };
914
+ PointOfInterest: {
915
+ pointOfInterestCode: string;
916
+ pointOfInterestName: {
917
+ text: string;
918
+ };
919
+ pointOfInterestCategory: {
920
+ osmTag: {
921
+ tag: string;
922
+ value: string;
923
+ }[];
924
+ pointOfInterestClassification: string[];
925
+ }[];
926
+ privateCode?: {
927
+ system: string;
928
+ value: string;
929
+ };
930
+ topographicPlaceRef?: string;
931
+ };
932
+ PtSituationElementStructure: {
933
+ creationTime: string;
934
+ participantRef?: string;
935
+ situationNumber: string;
936
+ version?: number;
937
+ source: {
938
+ /** @enum {string} */
939
+ sourceType: "directReport" | "email" | "phone" | "fax" | "post" | "feed" | "radio" | "tv" | "web" | "pager" | "text" | "other";
940
+ };
941
+ validityPeriod: {
942
+ startTime: string;
943
+ endTime?: string;
944
+ }[];
945
+ priority?: string;
946
+ scopeType?: string;
947
+ language: string;
948
+ summary: string;
949
+ description?: string[];
950
+ detail?: string[];
951
+ affects?: {
952
+ stopPoints?: {
953
+ affectedStopPoint?: {
954
+ stopPointRef: string;
955
+ }[];
956
+ };
957
+ vehicleJourneys?: {
958
+ affectedVehicleJourney?: {
959
+ stopPointRef?: string;
960
+ }[];
961
+ };
962
+ };
963
+ };
964
+ ResponseContextStructure: {
965
+ places?: {
966
+ location: {
967
+ stopPoint?: {
968
+ stopPointRef: string;
969
+ stopPointName: {
970
+ text: string;
971
+ };
972
+ parentRef?: string;
973
+ plannedQuay?: {
974
+ text: string;
975
+ };
976
+ estimatedQuay?: {
977
+ text: string;
978
+ };
979
+ };
980
+ stopPlace?: {
981
+ stopPlaceRef?: string;
982
+ stopPlaceName?: {
983
+ text: string;
984
+ };
985
+ };
986
+ topographicPlace?: {
987
+ topographicPlaceCode: string;
988
+ topographicPlaceName: {
989
+ text: string;
990
+ };
991
+ };
992
+ pointOfInterest?: {
993
+ pointOfInterestCode: string;
994
+ pointOfInterestName: {
995
+ text: string;
996
+ };
997
+ pointOfInterestCategory: {
998
+ osmTag: {
999
+ tag: string;
1000
+ value: string;
1001
+ }[];
1002
+ pointOfInterestClassification: string[];
1003
+ }[];
1004
+ privateCode?: {
1005
+ system: string;
1006
+ value: string;
1007
+ };
1008
+ topographicPlaceRef?: string;
1009
+ };
1010
+ address?: {
1011
+ publicCode: string;
1012
+ name: {
1013
+ text: string;
1014
+ };
1015
+ postCode?: string;
1016
+ topographicPlaceName?: string;
1017
+ topographicPlaceRef?: string;
1018
+ street?: string;
1019
+ houseNumber?: string;
1020
+ };
1021
+ locationName: {
1022
+ text: string;
1023
+ };
1024
+ geoPosition: {
1025
+ longitude: number;
1026
+ latitude: number;
1027
+ };
1028
+ mode: {
1029
+ /** @enum {string} */
1030
+ ptMode: "air" | "bus" | "coach" | "trolleyBus" | "metro" | "rail" | "tram" | "water" | "ferry" | "cableway" | "funicular" | "lift" | "telecabin" | "other" | "unknown";
1031
+ airSubmode?: string;
1032
+ busSubmode?: string;
1033
+ coachSubmode?: string;
1034
+ funicularSubmode?: string;
1035
+ metroSubmode?: string;
1036
+ tramSubmode?: string;
1037
+ telecabinSubmode?: string;
1038
+ railSubmode?: string;
1039
+ waterSubmode?: string;
1040
+ name?: {
1041
+ text: string;
1042
+ };
1043
+ shortName?: {
1044
+ text: string;
1045
+ };
1046
+ }[];
1047
+ attribute: {
1048
+ text: {
1049
+ text: string;
1050
+ };
1051
+ code: string;
1052
+ hireFacility?: string;
1053
+ importance?: number;
1054
+ }[];
1055
+ extension?: {
1056
+ locationExtensionStructure?: {
1057
+ [key: string]: string;
1058
+ };
1059
+ };
1060
+ }[];
1061
+ };
1062
+ situations?: {
1063
+ ptSituation: {
1064
+ creationTime: string;
1065
+ participantRef?: string;
1066
+ situationNumber: string;
1067
+ version?: number;
1068
+ source: {
1069
+ /** @enum {string} */
1070
+ sourceType: "directReport" | "email" | "phone" | "fax" | "post" | "feed" | "radio" | "tv" | "web" | "pager" | "text" | "other";
1071
+ };
1072
+ validityPeriod: {
1073
+ startTime: string;
1074
+ endTime?: string;
1075
+ }[];
1076
+ priority?: string;
1077
+ scopeType?: string;
1078
+ language: string;
1079
+ summary: string;
1080
+ description?: string[];
1081
+ detail?: string[];
1082
+ affects?: {
1083
+ stopPoints?: {
1084
+ affectedStopPoint?: {
1085
+ stopPointRef: string;
1086
+ }[];
1087
+ };
1088
+ vehicleJourneys?: {
1089
+ affectedVehicleJourney?: {
1090
+ stopPointRef?: string;
1091
+ }[];
1092
+ };
1093
+ };
1094
+ }[];
1095
+ };
1096
+ };
1097
+ SharedServiceExtension: {
1098
+ transportTypeName?: {
1099
+ text: string;
1100
+ };
1101
+ publishedJourneyNumber?: {
1102
+ text: string;
1103
+ };
1104
+ operatorName?: {
1105
+ text: string;
1106
+ };
1107
+ };
834
1108
  DatedJourney: {
835
1109
  conventionalModeOfOperation?: string;
836
1110
  operatingDayRef: string;
@@ -875,6 +1149,7 @@ interface components$g {
875
1149
  text: string;
876
1150
  };
877
1151
  code: string;
1152
+ hireFacility?: string;
878
1153
  importance?: number;
879
1154
  }[];
880
1155
  operatorRef?: string;
@@ -913,8 +1188,8 @@ interface components$g {
913
1188
  };
914
1189
  };
915
1190
  pointOfInterest?: {
916
- publicCode: string;
917
- name: {
1191
+ pointOfInterestCode: string;
1192
+ pointOfInterestName: {
918
1193
  text: string;
919
1194
  };
920
1195
  pointOfInterestCategory: {
@@ -928,12 +1203,6 @@ interface components$g {
928
1203
  system: string;
929
1204
  value: string;
930
1205
  };
931
- pOIAdditionalInformation?: {
932
- pOIAdditionalInformation: {
933
- key: string;
934
- value: string;
935
- }[];
936
- };
937
1206
  topographicPlaceRef?: string;
938
1207
  };
939
1208
  address?: {
@@ -973,16 +1242,109 @@ interface components$g {
973
1242
  text: string;
974
1243
  };
975
1244
  }[];
976
- };
977
- };
978
- responses: never;
979
- parameters: never;
980
- requestBodies: never;
981
- headers: never;
982
- pathItems: never;
983
- }
1245
+ attribute: {
1246
+ text: {
1247
+ text: string;
1248
+ };
1249
+ code: string;
1250
+ hireFacility?: string;
1251
+ importance?: number;
1252
+ }[];
1253
+ extension?: {
1254
+ locationExtensionStructure?: {
1255
+ [key: string]: string;
1256
+ };
1257
+ };
1258
+ };
1259
+ CallAtStop: {
1260
+ stopPointRef: string;
1261
+ stopPointName: {
1262
+ text: string;
1263
+ };
1264
+ nameSuffix?: {
1265
+ text: string;
1266
+ };
1267
+ plannedQuay?: {
1268
+ text: string;
1269
+ };
1270
+ estimatedQuay?: {
1271
+ text: string;
1272
+ };
1273
+ serviceArrival?: {
1274
+ timetabledTime: string;
1275
+ estimatedTime?: string;
1276
+ };
1277
+ serviceDeparture?: {
1278
+ timetabledTime: string;
1279
+ estimatedTime?: string;
1280
+ };
1281
+ order?: number;
1282
+ requestStop?: boolean;
1283
+ unplannedStop?: boolean;
1284
+ notServicedStop?: boolean;
1285
+ noBoardingAtStop?: boolean;
1286
+ noAlightingAtStop?: boolean;
1287
+ expectedDepartureOccupancy?: {
1288
+ /** @enum {string} */
1289
+ fareClass: "unknown" | "firstClass" | "secondClass";
1290
+ /** @enum {string} */
1291
+ occupancyLevel: "empty" | "manySeatsAvailable" | "fewSeatsAvailable" | "standingRoomOnly";
1292
+ }[];
1293
+ situationFullRef?: {
1294
+ participantRef: string;
1295
+ situationNumber: string;
1296
+ }[];
1297
+ };
1298
+ CallAtNearStop: {
1299
+ callAtStop: {
1300
+ stopPointRef: string;
1301
+ stopPointName: {
1302
+ text: string;
1303
+ };
1304
+ nameSuffix?: {
1305
+ text: string;
1306
+ };
1307
+ plannedQuay?: {
1308
+ text: string;
1309
+ };
1310
+ estimatedQuay?: {
1311
+ text: string;
1312
+ };
1313
+ serviceArrival?: {
1314
+ timetabledTime: string;
1315
+ estimatedTime?: string;
1316
+ };
1317
+ serviceDeparture?: {
1318
+ timetabledTime: string;
1319
+ estimatedTime?: string;
1320
+ };
1321
+ order?: number;
1322
+ requestStop?: boolean;
1323
+ unplannedStop?: boolean;
1324
+ notServicedStop?: boolean;
1325
+ noBoardingAtStop?: boolean;
1326
+ noAlightingAtStop?: boolean;
1327
+ expectedDepartureOccupancy?: {
1328
+ /** @enum {string} */
1329
+ fareClass: "unknown" | "firstClass" | "secondClass";
1330
+ /** @enum {string} */
1331
+ occupancyLevel: "empty" | "manySeatsAvailable" | "fewSeatsAvailable" | "standingRoomOnly";
1332
+ }[];
1333
+ situationFullRef?: {
1334
+ participantRef: string;
1335
+ situationNumber: string;
1336
+ }[];
1337
+ };
1338
+ };
1339
+ };
1340
+ responses: never;
1341
+ parameters: never;
1342
+ requestBodies: never;
1343
+ headers: never;
1344
+ pathItems: never;
1345
+ }
984
1346
 
985
- interface components$f {
1347
+ interface components$h {
986
1348
  schemas: {
987
1349
  TimedLeg: {
988
1350
  legBoard: {
@@ -1134,6 +1496,7 @@ interface components$f {
1134
1496
  text: string;
1135
1497
  };
1136
1498
  code: string;
1499
+ hireFacility?: string;
1137
1500
  importance?: number;
1138
1501
  }[];
1139
1502
  operatorRef?: string;
@@ -1345,6 +1708,7 @@ interface components$f {
1345
1708
  text: string;
1346
1709
  };
1347
1710
  code: string;
1711
+ hireFacility?: string;
1348
1712
  importance?: number;
1349
1713
  }[];
1350
1714
  operatorRef?: string;
@@ -1750,6 +2114,7 @@ interface components$f {
1750
2114
  text: string;
1751
2115
  };
1752
2116
  code: string;
2117
+ hireFacility?: string;
1753
2118
  importance?: number;
1754
2119
  }[];
1755
2120
  operatorRef?: string;
@@ -2003,11 +2368,10 @@ interface components$f {
2003
2368
  pathItems: never;
2004
2369
  }
2005
2370
 
2006
- interface components$e {
2371
+ interface components$g {
2007
2372
  schemas: {
2008
2373
  PlaceParam: {
2009
2374
  type: ("stop" | "address" | "poi" | "location" | "topographicPlace")[];
2010
- numberOfResults?: number;
2011
2375
  modes?: {
2012
2376
  exclude?: boolean;
2013
2377
  ptMode: ("air" | "bus" | "coach" | "trolleyBus" | "metro" | "rail" | "tram" | "water" | "ferry" | "cableway" | "funicular" | "lift" | "telecabin" | "other" | "unknown")[];
@@ -2022,6 +2386,17 @@ interface components$e {
2022
2386
  railSubmode?: string;
2023
2387
  waterSubmode?: string;
2024
2388
  };
2389
+ pointOfInterestFilter?: {
2390
+ exclude?: boolean;
2391
+ pointOfInterestCategory: {
2392
+ osmTag: {
2393
+ tag: string;
2394
+ value: string;
2395
+ }[];
2396
+ pointOfInterestClassification: string[];
2397
+ }[];
2398
+ };
2399
+ numberOfResults?: number;
2025
2400
  includePtModes?: boolean;
2026
2401
  };
2027
2402
  InitialInput: {
@@ -2069,7 +2444,6 @@ interface components$e {
2069
2444
  };
2070
2445
  restrictions?: {
2071
2446
  type: ("stop" | "address" | "poi" | "location" | "topographicPlace")[];
2072
- numberOfResults?: number;
2073
2447
  modes?: {
2074
2448
  exclude?: boolean;
2075
2449
  ptMode: ("air" | "bus" | "coach" | "trolleyBus" | "metro" | "rail" | "tram" | "water" | "ferry" | "cableway" | "funicular" | "lift" | "telecabin" | "other" | "unknown")[];
@@ -2084,6 +2458,17 @@ interface components$e {
2084
2458
  railSubmode?: string;
2085
2459
  waterSubmode?: string;
2086
2460
  };
2461
+ pointOfInterestFilter?: {
2462
+ exclude?: boolean;
2463
+ pointOfInterestCategory: {
2464
+ osmTag: {
2465
+ tag: string;
2466
+ value: string;
2467
+ }[];
2468
+ pointOfInterestClassification: string[];
2469
+ }[];
2470
+ };
2471
+ numberOfResults?: number;
2087
2472
  includePtModes?: boolean;
2088
2473
  };
2089
2474
  };
@@ -2125,7 +2510,6 @@ interface components$e {
2125
2510
  };
2126
2511
  restrictions?: {
2127
2512
  type: ("stop" | "address" | "poi" | "location" | "topographicPlace")[];
2128
- numberOfResults?: number;
2129
2513
  modes?: {
2130
2514
  exclude?: boolean;
2131
2515
  ptMode: ("air" | "bus" | "coach" | "trolleyBus" | "metro" | "rail" | "tram" | "water" | "ferry" | "cableway" | "funicular" | "lift" | "telecabin" | "other" | "unknown")[];
@@ -2140,6 +2524,17 @@ interface components$e {
2140
2524
  railSubmode?: string;
2141
2525
  waterSubmode?: string;
2142
2526
  };
2527
+ pointOfInterestFilter?: {
2528
+ exclude?: boolean;
2529
+ pointOfInterestCategory: {
2530
+ osmTag: {
2531
+ tag: string;
2532
+ value: string;
2533
+ }[];
2534
+ pointOfInterestClassification: string[];
2535
+ }[];
2536
+ };
2537
+ numberOfResults?: number;
2143
2538
  includePtModes?: boolean;
2144
2539
  };
2145
2540
  };
@@ -2154,7 +2549,7 @@ interface components$e {
2154
2549
  pathItems: never;
2155
2550
  }
2156
2551
 
2157
- interface components$d {
2552
+ interface components$f {
2158
2553
  schemas: {
2159
2554
  PlaceResult: {
2160
2555
  place: {
@@ -2244,6 +2639,14 @@ interface components$d {
2244
2639
  text: string;
2245
2640
  };
2246
2641
  }[];
2642
+ attribute: {
2643
+ userText: {
2644
+ text: string;
2645
+ };
2646
+ code: string;
2647
+ hireFacility?: string;
2648
+ importance?: number;
2649
+ }[];
2247
2650
  };
2248
2651
  complete: boolean;
2249
2652
  probability?: number;
@@ -2341,6 +2744,14 @@ interface components$d {
2341
2744
  text: string;
2342
2745
  };
2343
2746
  }[];
2747
+ attribute: {
2748
+ userText: {
2749
+ text: string;
2750
+ };
2751
+ code: string;
2752
+ hireFacility?: string;
2753
+ importance?: number;
2754
+ }[];
2344
2755
  };
2345
2756
  complete: boolean;
2346
2757
  probability?: number;
@@ -2444,6 +2855,14 @@ interface components$d {
2444
2855
  text: string;
2445
2856
  };
2446
2857
  }[];
2858
+ attribute: {
2859
+ userText: {
2860
+ text: string;
2861
+ };
2862
+ code: string;
2863
+ hireFacility?: string;
2864
+ importance?: number;
2865
+ }[];
2447
2866
  };
2448
2867
  complete: boolean;
2449
2868
  probability?: number;
@@ -2460,11 +2879,10 @@ interface components$d {
2460
2879
  pathItems: never;
2461
2880
  }
2462
2881
 
2463
- interface components$c {
2882
+ interface components$e {
2464
2883
  schemas: {
2465
2884
  PlaceParam: {
2466
2885
  type: ("stop" | "address" | "poi" | "location" | "topographicPlace")[];
2467
- numberOfResults?: number;
2468
2886
  modes?: {
2469
2887
  exclude?: boolean;
2470
2888
  ptMode: ("air" | "bus" | "coach" | "trolleyBus" | "metro" | "rail" | "tram" | "water" | "ferry" | "cableway" | "funicular" | "lift" | "telecabin" | "other" | "unknown")[];
@@ -2479,6 +2897,17 @@ interface components$c {
2479
2897
  railSubmode?: string;
2480
2898
  waterSubmode?: string;
2481
2899
  };
2900
+ pointOfInterestFilter?: {
2901
+ exclude?: boolean;
2902
+ pointOfInterestCategory: {
2903
+ osmTag: {
2904
+ tag: string;
2905
+ value: string;
2906
+ }[];
2907
+ pointOfInterestClassification: string[];
2908
+ }[];
2909
+ };
2910
+ numberOfResults?: number;
2482
2911
  includePtModes?: boolean;
2483
2912
  };
2484
2913
  InitialInput: {
@@ -2520,13 +2949,12 @@ interface components$c {
2520
2949
  longitude: number;
2521
2950
  latitude: number;
2522
2951
  };
2523
- name: {
2952
+ locationName: {
2524
2953
  text: string;
2525
2954
  };
2526
2955
  };
2527
2956
  restrictions?: {
2528
2957
  type: ("stop" | "address" | "poi" | "location" | "topographicPlace")[];
2529
- numberOfResults?: number;
2530
2958
  modes?: {
2531
2959
  exclude?: boolean;
2532
2960
  ptMode: ("air" | "bus" | "coach" | "trolleyBus" | "metro" | "rail" | "tram" | "water" | "ferry" | "cableway" | "funicular" | "lift" | "telecabin" | "other" | "unknown")[];
@@ -2541,6 +2969,17 @@ interface components$c {
2541
2969
  railSubmode?: string;
2542
2970
  waterSubmode?: string;
2543
2971
  };
2972
+ pointOfInterestFilter?: {
2973
+ exclude?: boolean;
2974
+ pointOfInterestCategory: {
2975
+ osmTag: {
2976
+ tag: string;
2977
+ value: string;
2978
+ }[];
2979
+ pointOfInterestClassification: string[];
2980
+ }[];
2981
+ };
2982
+ numberOfResults?: number;
2544
2983
  includePtModes?: boolean;
2545
2984
  };
2546
2985
  };
@@ -2576,13 +3015,12 @@ interface components$c {
2576
3015
  longitude: number;
2577
3016
  latitude: number;
2578
3017
  };
2579
- name: {
3018
+ locationName: {
2580
3019
  text: string;
2581
3020
  };
2582
3021
  };
2583
3022
  restrictions?: {
2584
3023
  type: ("stop" | "address" | "poi" | "location" | "topographicPlace")[];
2585
- numberOfResults?: number;
2586
3024
  modes?: {
2587
3025
  exclude?: boolean;
2588
3026
  ptMode: ("air" | "bus" | "coach" | "trolleyBus" | "metro" | "rail" | "tram" | "water" | "ferry" | "cableway" | "funicular" | "lift" | "telecabin" | "other" | "unknown")[];
@@ -2597,6 +3035,17 @@ interface components$c {
2597
3035
  railSubmode?: string;
2598
3036
  waterSubmode?: string;
2599
3037
  };
3038
+ pointOfInterestFilter?: {
3039
+ exclude?: boolean;
3040
+ pointOfInterestCategory: {
3041
+ osmTag: {
3042
+ tag: string;
3043
+ value: string;
3044
+ }[];
3045
+ pointOfInterestClassification: string[];
3046
+ }[];
3047
+ };
3048
+ numberOfResults?: number;
2600
3049
  includePtModes?: boolean;
2601
3050
  };
2602
3051
  };
@@ -2611,7 +3060,7 @@ interface components$c {
2611
3060
  pathItems: never;
2612
3061
  }
2613
3062
 
2614
- interface components$b {
3063
+ interface components$d {
2615
3064
  schemas: {
2616
3065
  LocationResult: {
2617
3066
  location: {
@@ -2641,8 +3090,8 @@ interface components$b {
2641
3090
  };
2642
3091
  };
2643
3092
  pointOfInterest?: {
2644
- publicCode: string;
2645
- name: {
3093
+ pointOfInterestCode: string;
3094
+ pointOfInterestName: {
2646
3095
  text: string;
2647
3096
  };
2648
3097
  pointOfInterestCategory: {
@@ -2656,12 +3105,6 @@ interface components$b {
2656
3105
  system: string;
2657
3106
  value: string;
2658
3107
  };
2659
- pOIAdditionalInformation?: {
2660
- pOIAdditionalInformation: {
2661
- key: string;
2662
- value: string;
2663
- }[];
2664
- };
2665
3108
  topographicPlaceRef?: string;
2666
3109
  };
2667
3110
  address?: {
@@ -2701,6 +3144,19 @@ interface components$b {
2701
3144
  text: string;
2702
3145
  };
2703
3146
  }[];
3147
+ attribute: {
3148
+ text: {
3149
+ text: string;
3150
+ };
3151
+ code: string;
3152
+ hireFacility?: string;
3153
+ importance?: number;
3154
+ }[];
3155
+ extension?: {
3156
+ locationExtensionStructure?: {
3157
+ [key: string]: string;
3158
+ };
3159
+ };
2704
3160
  };
2705
3161
  complete: boolean;
2706
3162
  probability?: number;
@@ -2738,8 +3194,8 @@ interface components$b {
2738
3194
  };
2739
3195
  };
2740
3196
  pointOfInterest?: {
2741
- publicCode: string;
2742
- name: {
3197
+ pointOfInterestCode: string;
3198
+ pointOfInterestName: {
2743
3199
  text: string;
2744
3200
  };
2745
3201
  pointOfInterestCategory: {
@@ -2753,12 +3209,6 @@ interface components$b {
2753
3209
  system: string;
2754
3210
  value: string;
2755
3211
  };
2756
- pOIAdditionalInformation?: {
2757
- pOIAdditionalInformation: {
2758
- key: string;
2759
- value: string;
2760
- }[];
2761
- };
2762
3212
  topographicPlaceRef?: string;
2763
3213
  };
2764
3214
  address?: {
@@ -2798,6 +3248,19 @@ interface components$b {
2798
3248
  text: string;
2799
3249
  };
2800
3250
  }[];
3251
+ attribute: {
3252
+ text: {
3253
+ text: string;
3254
+ };
3255
+ code: string;
3256
+ hireFacility?: string;
3257
+ importance?: number;
3258
+ }[];
3259
+ extension?: {
3260
+ locationExtensionStructure?: {
3261
+ [key: string]: string;
3262
+ };
3263
+ };
2801
3264
  };
2802
3265
  complete: boolean;
2803
3266
  probability?: number;
@@ -2841,8 +3304,8 @@ interface components$b {
2841
3304
  };
2842
3305
  };
2843
3306
  pointOfInterest?: {
2844
- publicCode: string;
2845
- name: {
3307
+ pointOfInterestCode: string;
3308
+ pointOfInterestName: {
2846
3309
  text: string;
2847
3310
  };
2848
3311
  pointOfInterestCategory: {
@@ -2856,12 +3319,6 @@ interface components$b {
2856
3319
  system: string;
2857
3320
  value: string;
2858
3321
  };
2859
- pOIAdditionalInformation?: {
2860
- pOIAdditionalInformation: {
2861
- key: string;
2862
- value: string;
2863
- }[];
2864
- };
2865
3322
  topographicPlaceRef?: string;
2866
3323
  };
2867
3324
  address?: {
@@ -2901,6 +3358,19 @@ interface components$b {
2901
3358
  text: string;
2902
3359
  };
2903
3360
  }[];
3361
+ attribute: {
3362
+ text: {
3363
+ text: string;
3364
+ };
3365
+ code: string;
3366
+ hireFacility?: string;
3367
+ importance?: number;
3368
+ }[];
3369
+ extension?: {
3370
+ locationExtensionStructure?: {
3371
+ [key: string]: string;
3372
+ };
3373
+ };
2904
3374
  };
2905
3375
  complete: boolean;
2906
3376
  probability?: number;
@@ -2917,7 +3387,7 @@ interface components$b {
2917
3387
  pathItems: never;
2918
3388
  }
2919
3389
 
2920
- interface components$a {
3390
+ interface components$c {
2921
3391
  schemas: {
2922
3392
  StopEventParam: {
2923
3393
  includeAllRestrictedLines?: boolean;
@@ -3016,219 +3486,8 @@ interface components$a {
3016
3486
  pathItems: never;
3017
3487
  }
3018
3488
 
3019
- interface components$9 {
3489
+ interface components$b {
3020
3490
  schemas: {
3021
- PointOfInterestCategory: {
3022
- osmTag?: {
3023
- tag: string;
3024
- value: string;
3025
- };
3026
- };
3027
- StopPoint: {
3028
- stopPointRef: string;
3029
- stopPointName: {
3030
- text: string;
3031
- };
3032
- plannedQuay?: {
3033
- text: string;
3034
- };
3035
- estimatedQuay?: {
3036
- text: string;
3037
- };
3038
- };
3039
- StopPlace: {
3040
- stopPlaceRef?: string;
3041
- stopPlaceName?: {
3042
- text: string;
3043
- };
3044
- };
3045
- TopographicPlace: {
3046
- topographicPlaceCode: string;
3047
- topographicPlaceName: {
3048
- text: string;
3049
- };
3050
- };
3051
- PointOfInterest: {
3052
- publicCode: string;
3053
- name: {
3054
- text: string;
3055
- };
3056
- pointOfInterestCategory: {
3057
- osmTag?: {
3058
- tag: string;
3059
- value: string;
3060
- };
3061
- }[];
3062
- topographicPlaceRef?: string;
3063
- };
3064
- Address: {
3065
- publicCode: string;
3066
- name: {
3067
- text: string;
3068
- };
3069
- postCode?: string;
3070
- topographicPlaceName?: string;
3071
- TopographicPlaceRef?: string;
3072
- Street?: string;
3073
- HouseNumber?: string;
3074
- };
3075
- Place: {
3076
- stopPoint?: {
3077
- stopPointRef: string;
3078
- stopPointName: {
3079
- text: string;
3080
- };
3081
- plannedQuay?: {
3082
- text: string;
3083
- };
3084
- estimatedQuay?: {
3085
- text: string;
3086
- };
3087
- };
3088
- stopPlace?: {
3089
- stopPlaceRef?: string;
3090
- stopPlaceName?: {
3091
- text: string;
3092
- };
3093
- };
3094
- topographicPlace?: {
3095
- topographicPlaceCode: string;
3096
- topographicPlaceName: {
3097
- text: string;
3098
- };
3099
- };
3100
- pointOfInterest?: {
3101
- publicCode: string;
3102
- name: {
3103
- text: string;
3104
- };
3105
- pointOfInterestCategory: {
3106
- osmTag?: {
3107
- tag: string;
3108
- value: string;
3109
- };
3110
- }[];
3111
- topographicPlaceRef?: string;
3112
- };
3113
- address?: {
3114
- publicCode: string;
3115
- name: {
3116
- text: string;
3117
- };
3118
- postCode?: string;
3119
- topographicPlaceName?: string;
3120
- TopographicPlaceRef?: string;
3121
- Street?: string;
3122
- HouseNumber?: string;
3123
- };
3124
- name: {
3125
- text: string;
3126
- };
3127
- geoPosition: {
3128
- longitude: number;
3129
- latitude: number;
3130
- };
3131
- mode: ("air" | "bus" | "coach" | "trolleyBus" | "metro" | "rail" | "tram" | "water" | "ferry" | "cableway" | "funicular" | "lift" | "telecabin" | "other" | "unknown")[];
3132
- };
3133
- PlaceResult: {
3134
- place: {
3135
- stopPoint?: {
3136
- stopPointRef: string;
3137
- stopPointName: {
3138
- text: string;
3139
- };
3140
- plannedQuay?: {
3141
- text: string;
3142
- };
3143
- estimatedQuay?: {
3144
- text: string;
3145
- };
3146
- };
3147
- stopPlace?: {
3148
- stopPlaceRef?: string;
3149
- stopPlaceName?: {
3150
- text: string;
3151
- };
3152
- };
3153
- topographicPlace?: {
3154
- topographicPlaceCode: string;
3155
- topographicPlaceName: {
3156
- text: string;
3157
- };
3158
- };
3159
- pointOfInterest?: {
3160
- publicCode: string;
3161
- name: {
3162
- text: string;
3163
- };
3164
- pointOfInterestCategory: {
3165
- osmTag?: {
3166
- tag: string;
3167
- value: string;
3168
- };
3169
- }[];
3170
- topographicPlaceRef?: string;
3171
- };
3172
- address?: {
3173
- publicCode: string;
3174
- name: {
3175
- text: string;
3176
- };
3177
- postCode?: string;
3178
- topographicPlaceName?: string;
3179
- TopographicPlaceRef?: string;
3180
- Street?: string;
3181
- HouseNumber?: string;
3182
- };
3183
- name: {
3184
- text: string;
3185
- };
3186
- geoPosition: {
3187
- longitude: number;
3188
- latitude: number;
3189
- };
3190
- mode: ("air" | "bus" | "coach" | "trolleyBus" | "metro" | "rail" | "tram" | "water" | "ferry" | "cableway" | "funicular" | "lift" | "telecabin" | "other" | "unknown")[];
3191
- };
3192
- complete: boolean;
3193
- probability?: number;
3194
- };
3195
- CallAtNearStop: {
3196
- callAtStop: {
3197
- stopPointRef: string;
3198
- stopPointName: {
3199
- text: string;
3200
- };
3201
- nameSuffix?: {
3202
- text: string;
3203
- };
3204
- plannedQuay?: {
3205
- text: string;
3206
- };
3207
- estimatedQuay?: {
3208
- text: string;
3209
- };
3210
- serviceArrival?: {
3211
- timetabledTime: string;
3212
- estimatedTime?: string;
3213
- };
3214
- serviceDeparture?: {
3215
- timetabledTime: string;
3216
- estimatedTime?: string;
3217
- };
3218
- order?: number;
3219
- requestStop?: boolean;
3220
- unplannedStop?: boolean;
3221
- notServicedStop?: boolean;
3222
- noBoardingAtStop?: boolean;
3223
- noAlightingAtStop?: boolean;
3224
- expectedDepartureOccupancy?: {
3225
- /** @enum {string} */
3226
- fareClass: "unknown" | "firstClass" | "secondClass";
3227
- /** @enum {string} */
3228
- occupancyLevel: "empty" | "manySeatsAvailable" | "fewSeatsAvailable" | "standingRoomOnly";
3229
- }[];
3230
- };
3231
- };
3232
3491
  StopEvent: {
3233
3492
  previousCall: {
3234
3493
  callAtStop: {
@@ -3385,8 +3644,12 @@ interface components$9 {
3385
3644
  text: string;
3386
3645
  };
3387
3646
  code: string;
3647
+ hireFacility?: string;
3388
3648
  importance?: number;
3389
3649
  }[];
3650
+ originText: {
3651
+ text: string;
3652
+ };
3390
3653
  operatorRef?: string;
3391
3654
  destinationStopPointRef?: string;
3392
3655
  destinationText?: {
@@ -3566,8 +3829,12 @@ interface components$9 {
3566
3829
  text: string;
3567
3830
  };
3568
3831
  code: string;
3832
+ hireFacility?: string;
3569
3833
  importance?: number;
3570
3834
  }[];
3835
+ originText: {
3836
+ text: string;
3837
+ };
3571
3838
  operatorRef?: string;
3572
3839
  destinationStopPointRef?: string;
3573
3840
  destinationText?: {
@@ -3684,6 +3951,14 @@ interface components$9 {
3684
3951
  text: string;
3685
3952
  };
3686
3953
  }[];
3954
+ attribute: {
3955
+ userText: {
3956
+ text: string;
3957
+ };
3958
+ code: string;
3959
+ hireFacility?: string;
3960
+ importance?: number;
3961
+ }[];
3687
3962
  }[];
3688
3963
  };
3689
3964
  situations?: {
@@ -3904,8 +4179,12 @@ interface components$9 {
3904
4179
  text: string;
3905
4180
  };
3906
4181
  code: string;
4182
+ hireFacility?: string;
3907
4183
  importance?: number;
3908
4184
  }[];
4185
+ originText: {
4186
+ text: string;
4187
+ };
3909
4188
  operatorRef?: string;
3910
4189
  destinationStopPointRef?: string;
3911
4190
  destinationText?: {
@@ -4028,6 +4307,14 @@ interface components$9 {
4028
4307
  text: string;
4029
4308
  };
4030
4309
  }[];
4310
+ attribute: {
4311
+ userText: {
4312
+ text: string;
4313
+ };
4314
+ code: string;
4315
+ hireFacility?: string;
4316
+ importance?: number;
4317
+ }[];
4031
4318
  }[];
4032
4319
  };
4033
4320
  situations?: {
@@ -4239,15 +4526,1196 @@ interface components$9 {
4239
4526
  };
4240
4527
  productCategoryRef?: string;
4241
4528
  };
4242
- publishedServiceName: {
4529
+ publishedServiceName: {
4530
+ text: string;
4531
+ };
4532
+ trainNumber?: string;
4533
+ attribute: {
4534
+ userText: {
4535
+ text: string;
4536
+ };
4537
+ code: string;
4538
+ hireFacility?: string;
4539
+ importance?: number;
4540
+ }[];
4541
+ originText: {
4542
+ text: string;
4543
+ };
4544
+ operatorRef?: string;
4545
+ destinationStopPointRef?: string;
4546
+ destinationText?: {
4547
+ text: string;
4548
+ };
4549
+ unplanned?: boolean;
4550
+ cancelled?: boolean;
4551
+ deviation?: boolean;
4552
+ situationFullRefs?: {
4553
+ situationFullRef: {
4554
+ participantRef: string;
4555
+ situationNumber: string;
4556
+ }[];
4557
+ };
4558
+ };
4559
+ operatingDays?: {
4560
+ from: string;
4561
+ to: string;
4562
+ pattern: string;
4563
+ };
4564
+ };
4565
+ }[];
4566
+ };
4567
+ };
4568
+ };
4569
+ };
4570
+ };
4571
+ responses: never;
4572
+ parameters: never;
4573
+ requestBodies: never;
4574
+ headers: never;
4575
+ pathItems: never;
4576
+ }
4577
+
4578
+ interface components$a {
4579
+ schemas: {
4580
+ PlaceContext: {
4581
+ placeRef: {
4582
+ stopPointRef?: string;
4583
+ stopPlaceRef?: string;
4584
+ geoPosition?: {
4585
+ longitude: number;
4586
+ latitude: number;
4587
+ };
4588
+ locationName: {
4589
+ text: string;
4590
+ };
4591
+ };
4592
+ depArrTime?: string;
4593
+ };
4594
+ OJPStopEventRequest: {
4595
+ requestTimestamp: string;
4596
+ location: {
4597
+ placeRef: {
4598
+ stopPointRef?: string;
4599
+ stopPlaceRef?: string;
4600
+ geoPosition?: {
4601
+ longitude: number;
4602
+ latitude: number;
4603
+ };
4604
+ locationName: {
4605
+ text: string;
4606
+ };
4607
+ };
4608
+ depArrTime?: string;
4609
+ };
4610
+ params?: {
4611
+ includeAllRestrictedLines?: boolean;
4612
+ numberOfResults?: number;
4613
+ /** @enum {string} */
4614
+ stopEventType?: "departure" | "arrival" | "both";
4615
+ includePreviousCalls?: boolean;
4616
+ includeOnwardCalls?: boolean;
4617
+ /** @enum {string} */
4618
+ useRealtimeData?: "full" | "explanatory" | "none";
4619
+ };
4620
+ };
4621
+ OJP: {
4622
+ OJPRequest: {
4623
+ serviceRequest: {
4624
+ serviceRequestContext?: {
4625
+ language?: string;
4626
+ };
4627
+ requestTimestamp: string;
4628
+ requestorRef: string;
4629
+ OJPStopEventRequest: {
4630
+ requestTimestamp: string;
4631
+ location: {
4632
+ placeRef: {
4633
+ stopPointRef?: string;
4634
+ stopPlaceRef?: string;
4635
+ geoPosition?: {
4636
+ longitude: number;
4637
+ latitude: number;
4638
+ };
4639
+ locationName: {
4640
+ text: string;
4641
+ };
4642
+ };
4643
+ depArrTime?: string;
4644
+ };
4645
+ params?: {
4646
+ includeAllRestrictedLines?: boolean;
4647
+ numberOfResults?: number;
4648
+ /** @enum {string} */
4649
+ stopEventType?: "departure" | "arrival" | "both";
4650
+ includePreviousCalls?: boolean;
4651
+ includeOnwardCalls?: boolean;
4652
+ /** @enum {string} */
4653
+ useRealtimeData?: "full" | "explanatory" | "none";
4654
+ };
4655
+ };
4656
+ };
4657
+ };
4658
+ };
4659
+ };
4660
+ responses: never;
4661
+ parameters: never;
4662
+ requestBodies: never;
4663
+ headers: never;
4664
+ pathItems: never;
4665
+ }
4666
+
4667
+ interface components$9 {
4668
+ schemas: {
4669
+ StopEvent: {
4670
+ previousCall: {
4671
+ callAtStop: {
4672
+ stopPointRef: string;
4673
+ stopPointName: {
4674
+ text: string;
4675
+ };
4676
+ nameSuffix?: {
4677
+ text: string;
4678
+ };
4679
+ plannedQuay?: {
4680
+ text: string;
4681
+ };
4682
+ estimatedQuay?: {
4683
+ text: string;
4684
+ };
4685
+ serviceArrival?: {
4686
+ timetabledTime: string;
4687
+ estimatedTime?: string;
4688
+ };
4689
+ serviceDeparture?: {
4690
+ timetabledTime: string;
4691
+ estimatedTime?: string;
4692
+ };
4693
+ order?: number;
4694
+ requestStop?: boolean;
4695
+ unplannedStop?: boolean;
4696
+ notServicedStop?: boolean;
4697
+ noBoardingAtStop?: boolean;
4698
+ noAlightingAtStop?: boolean;
4699
+ expectedDepartureOccupancy?: {
4700
+ /** @enum {string} */
4701
+ fareClass: "unknown" | "firstClass" | "secondClass";
4702
+ /** @enum {string} */
4703
+ occupancyLevel: "empty" | "manySeatsAvailable" | "fewSeatsAvailable" | "standingRoomOnly";
4704
+ }[];
4705
+ situationFullRef?: {
4706
+ participantRef: string;
4707
+ situationNumber: string;
4708
+ }[];
4709
+ };
4710
+ }[];
4711
+ thisCall: {
4712
+ callAtStop: {
4713
+ stopPointRef: string;
4714
+ stopPointName: {
4715
+ text: string;
4716
+ };
4717
+ nameSuffix?: {
4718
+ text: string;
4719
+ };
4720
+ plannedQuay?: {
4721
+ text: string;
4722
+ };
4723
+ estimatedQuay?: {
4724
+ text: string;
4725
+ };
4726
+ serviceArrival?: {
4727
+ timetabledTime: string;
4728
+ estimatedTime?: string;
4729
+ };
4730
+ serviceDeparture?: {
4731
+ timetabledTime: string;
4732
+ estimatedTime?: string;
4733
+ };
4734
+ order?: number;
4735
+ requestStop?: boolean;
4736
+ unplannedStop?: boolean;
4737
+ notServicedStop?: boolean;
4738
+ noBoardingAtStop?: boolean;
4739
+ noAlightingAtStop?: boolean;
4740
+ expectedDepartureOccupancy?: {
4741
+ /** @enum {string} */
4742
+ fareClass: "unknown" | "firstClass" | "secondClass";
4743
+ /** @enum {string} */
4744
+ occupancyLevel: "empty" | "manySeatsAvailable" | "fewSeatsAvailable" | "standingRoomOnly";
4745
+ }[];
4746
+ situationFullRef?: {
4747
+ participantRef: string;
4748
+ situationNumber: string;
4749
+ }[];
4750
+ };
4751
+ };
4752
+ onwardCall: {
4753
+ callAtStop: {
4754
+ stopPointRef: string;
4755
+ stopPointName: {
4756
+ text: string;
4757
+ };
4758
+ nameSuffix?: {
4759
+ text: string;
4760
+ };
4761
+ plannedQuay?: {
4762
+ text: string;
4763
+ };
4764
+ estimatedQuay?: {
4765
+ text: string;
4766
+ };
4767
+ serviceArrival?: {
4768
+ timetabledTime: string;
4769
+ estimatedTime?: string;
4770
+ };
4771
+ serviceDeparture?: {
4772
+ timetabledTime: string;
4773
+ estimatedTime?: string;
4774
+ };
4775
+ order?: number;
4776
+ requestStop?: boolean;
4777
+ unplannedStop?: boolean;
4778
+ notServicedStop?: boolean;
4779
+ noBoardingAtStop?: boolean;
4780
+ noAlightingAtStop?: boolean;
4781
+ expectedDepartureOccupancy?: {
4782
+ /** @enum {string} */
4783
+ fareClass: "unknown" | "firstClass" | "secondClass";
4784
+ /** @enum {string} */
4785
+ occupancyLevel: "empty" | "manySeatsAvailable" | "fewSeatsAvailable" | "standingRoomOnly";
4786
+ }[];
4787
+ situationFullRef?: {
4788
+ participantRef: string;
4789
+ situationNumber: string;
4790
+ }[];
4791
+ };
4792
+ }[];
4793
+ service: {
4794
+ conventionalModeOfOperation?: string;
4795
+ operatingDayRef: string;
4796
+ journeyRef: string;
4797
+ publicCode?: string;
4798
+ lineRef: string;
4799
+ directionRef?: string;
4800
+ mode: {
4801
+ /** @enum {string} */
4802
+ ptMode: "air" | "bus" | "coach" | "trolleyBus" | "metro" | "rail" | "tram" | "water" | "ferry" | "cableway" | "funicular" | "lift" | "telecabin" | "other" | "unknown";
4803
+ airSubmode?: string;
4804
+ busSubmode?: string;
4805
+ coachSubmode?: string;
4806
+ funicularSubmode?: string;
4807
+ metroSubmode?: string;
4808
+ tramSubmode?: string;
4809
+ telecabinSubmode?: string;
4810
+ railSubmode?: string;
4811
+ waterSubmode?: string;
4812
+ name?: {
4813
+ text: string;
4814
+ };
4815
+ shortName?: {
4816
+ text: string;
4817
+ };
4818
+ };
4819
+ productCategory?: {
4820
+ name?: {
4821
+ text: string;
4822
+ };
4823
+ shortName?: {
4824
+ text: string;
4825
+ };
4826
+ productCategoryRef?: string;
4827
+ };
4828
+ publishedLineName: {
4829
+ text: string;
4830
+ };
4831
+ trainNumber?: string;
4832
+ attribute: {
4833
+ text: {
4834
+ text: string;
4835
+ };
4836
+ code: string;
4837
+ hireFacility?: string;
4838
+ importance?: number;
4839
+ }[];
4840
+ operatorRef?: string;
4841
+ destinationStopPointRef?: string;
4842
+ destinationText?: {
4843
+ text: string;
4844
+ };
4845
+ unplanned?: boolean;
4846
+ cancelled?: boolean;
4847
+ deviation?: boolean;
4848
+ };
4849
+ operatingDays?: {
4850
+ from: string;
4851
+ to: string;
4852
+ pattern: string;
4853
+ };
4854
+ extension?: {
4855
+ transportTypeName?: {
4856
+ text: string;
4857
+ };
4858
+ publishedJourneyNumber?: {
4859
+ text: string;
4860
+ };
4861
+ operatorName?: {
4862
+ text: string;
4863
+ };
4864
+ };
4865
+ };
4866
+ StopEventResult: {
4867
+ id: string;
4868
+ stopEvent: {
4869
+ previousCall: {
4870
+ callAtStop: {
4871
+ stopPointRef: string;
4872
+ stopPointName: {
4873
+ text: string;
4874
+ };
4875
+ nameSuffix?: {
4876
+ text: string;
4877
+ };
4878
+ plannedQuay?: {
4879
+ text: string;
4880
+ };
4881
+ estimatedQuay?: {
4882
+ text: string;
4883
+ };
4884
+ serviceArrival?: {
4885
+ timetabledTime: string;
4886
+ estimatedTime?: string;
4887
+ };
4888
+ serviceDeparture?: {
4889
+ timetabledTime: string;
4890
+ estimatedTime?: string;
4891
+ };
4892
+ order?: number;
4893
+ requestStop?: boolean;
4894
+ unplannedStop?: boolean;
4895
+ notServicedStop?: boolean;
4896
+ noBoardingAtStop?: boolean;
4897
+ noAlightingAtStop?: boolean;
4898
+ expectedDepartureOccupancy?: {
4899
+ /** @enum {string} */
4900
+ fareClass: "unknown" | "firstClass" | "secondClass";
4901
+ /** @enum {string} */
4902
+ occupancyLevel: "empty" | "manySeatsAvailable" | "fewSeatsAvailable" | "standingRoomOnly";
4903
+ }[];
4904
+ situationFullRef?: {
4905
+ participantRef: string;
4906
+ situationNumber: string;
4907
+ }[];
4908
+ };
4909
+ }[];
4910
+ thisCall: {
4911
+ callAtStop: {
4912
+ stopPointRef: string;
4913
+ stopPointName: {
4914
+ text: string;
4915
+ };
4916
+ nameSuffix?: {
4917
+ text: string;
4918
+ };
4919
+ plannedQuay?: {
4920
+ text: string;
4921
+ };
4922
+ estimatedQuay?: {
4923
+ text: string;
4924
+ };
4925
+ serviceArrival?: {
4926
+ timetabledTime: string;
4927
+ estimatedTime?: string;
4928
+ };
4929
+ serviceDeparture?: {
4930
+ timetabledTime: string;
4931
+ estimatedTime?: string;
4932
+ };
4933
+ order?: number;
4934
+ requestStop?: boolean;
4935
+ unplannedStop?: boolean;
4936
+ notServicedStop?: boolean;
4937
+ noBoardingAtStop?: boolean;
4938
+ noAlightingAtStop?: boolean;
4939
+ expectedDepartureOccupancy?: {
4940
+ /** @enum {string} */
4941
+ fareClass: "unknown" | "firstClass" | "secondClass";
4942
+ /** @enum {string} */
4943
+ occupancyLevel: "empty" | "manySeatsAvailable" | "fewSeatsAvailable" | "standingRoomOnly";
4944
+ }[];
4945
+ situationFullRef?: {
4946
+ participantRef: string;
4947
+ situationNumber: string;
4948
+ }[];
4949
+ };
4950
+ };
4951
+ onwardCall: {
4952
+ callAtStop: {
4953
+ stopPointRef: string;
4954
+ stopPointName: {
4955
+ text: string;
4956
+ };
4957
+ nameSuffix?: {
4958
+ text: string;
4959
+ };
4960
+ plannedQuay?: {
4961
+ text: string;
4962
+ };
4963
+ estimatedQuay?: {
4964
+ text: string;
4965
+ };
4966
+ serviceArrival?: {
4967
+ timetabledTime: string;
4968
+ estimatedTime?: string;
4969
+ };
4970
+ serviceDeparture?: {
4971
+ timetabledTime: string;
4972
+ estimatedTime?: string;
4973
+ };
4974
+ order?: number;
4975
+ requestStop?: boolean;
4976
+ unplannedStop?: boolean;
4977
+ notServicedStop?: boolean;
4978
+ noBoardingAtStop?: boolean;
4979
+ noAlightingAtStop?: boolean;
4980
+ expectedDepartureOccupancy?: {
4981
+ /** @enum {string} */
4982
+ fareClass: "unknown" | "firstClass" | "secondClass";
4983
+ /** @enum {string} */
4984
+ occupancyLevel: "empty" | "manySeatsAvailable" | "fewSeatsAvailable" | "standingRoomOnly";
4985
+ }[];
4986
+ situationFullRef?: {
4987
+ participantRef: string;
4988
+ situationNumber: string;
4989
+ }[];
4990
+ };
4991
+ }[];
4992
+ service: {
4993
+ conventionalModeOfOperation?: string;
4994
+ operatingDayRef: string;
4995
+ journeyRef: string;
4996
+ publicCode?: string;
4997
+ lineRef: string;
4998
+ directionRef?: string;
4999
+ mode: {
5000
+ /** @enum {string} */
5001
+ ptMode: "air" | "bus" | "coach" | "trolleyBus" | "metro" | "rail" | "tram" | "water" | "ferry" | "cableway" | "funicular" | "lift" | "telecabin" | "other" | "unknown";
5002
+ airSubmode?: string;
5003
+ busSubmode?: string;
5004
+ coachSubmode?: string;
5005
+ funicularSubmode?: string;
5006
+ metroSubmode?: string;
5007
+ tramSubmode?: string;
5008
+ telecabinSubmode?: string;
5009
+ railSubmode?: string;
5010
+ waterSubmode?: string;
5011
+ name?: {
5012
+ text: string;
5013
+ };
5014
+ shortName?: {
5015
+ text: string;
5016
+ };
5017
+ };
5018
+ productCategory?: {
5019
+ name?: {
5020
+ text: string;
5021
+ };
5022
+ shortName?: {
5023
+ text: string;
5024
+ };
5025
+ productCategoryRef?: string;
5026
+ };
5027
+ publishedLineName: {
5028
+ text: string;
5029
+ };
5030
+ trainNumber?: string;
5031
+ attribute: {
5032
+ text: {
5033
+ text: string;
5034
+ };
5035
+ code: string;
5036
+ hireFacility?: string;
5037
+ importance?: number;
5038
+ }[];
5039
+ operatorRef?: string;
5040
+ destinationStopPointRef?: string;
5041
+ destinationText?: {
5042
+ text: string;
5043
+ };
5044
+ unplanned?: boolean;
5045
+ cancelled?: boolean;
5046
+ deviation?: boolean;
5047
+ };
5048
+ operatingDays?: {
5049
+ from: string;
5050
+ to: string;
5051
+ pattern: string;
5052
+ };
5053
+ extension?: {
5054
+ transportTypeName?: {
5055
+ text: string;
5056
+ };
5057
+ publishedJourneyNumber?: {
5058
+ text: string;
5059
+ };
5060
+ operatorName?: {
5061
+ text: string;
5062
+ };
5063
+ };
5064
+ };
5065
+ };
5066
+ OJPStopEventDelivery: {
5067
+ responseTimestamp: string;
5068
+ requestMessageRef?: string;
5069
+ defaultLanguage?: string;
5070
+ calcTime?: string;
5071
+ stopEventResponseContext?: {
5072
+ places?: {
5073
+ location: {
5074
+ stopPoint?: {
5075
+ stopPointRef: string;
5076
+ stopPointName: {
5077
+ text: string;
5078
+ };
5079
+ parentRef?: string;
5080
+ plannedQuay?: {
5081
+ text: string;
5082
+ };
5083
+ estimatedQuay?: {
5084
+ text: string;
5085
+ };
5086
+ };
5087
+ stopPlace?: {
5088
+ stopPlaceRef?: string;
5089
+ stopPlaceName?: {
5090
+ text: string;
5091
+ };
5092
+ };
5093
+ topographicPlace?: {
5094
+ topographicPlaceCode: string;
5095
+ topographicPlaceName: {
5096
+ text: string;
5097
+ };
5098
+ };
5099
+ pointOfInterest?: {
5100
+ pointOfInterestCode: string;
5101
+ pointOfInterestName: {
5102
+ text: string;
5103
+ };
5104
+ pointOfInterestCategory: {
5105
+ osmTag: {
5106
+ tag: string;
5107
+ value: string;
5108
+ }[];
5109
+ pointOfInterestClassification: string[];
5110
+ }[];
5111
+ privateCode?: {
5112
+ system: string;
5113
+ value: string;
5114
+ };
5115
+ topographicPlaceRef?: string;
5116
+ };
5117
+ address?: {
5118
+ publicCode: string;
5119
+ name: {
5120
+ text: string;
5121
+ };
5122
+ postCode?: string;
5123
+ topographicPlaceName?: string;
5124
+ topographicPlaceRef?: string;
5125
+ street?: string;
5126
+ houseNumber?: string;
5127
+ };
5128
+ locationName: {
5129
+ text: string;
5130
+ };
5131
+ geoPosition: {
5132
+ longitude: number;
5133
+ latitude: number;
5134
+ };
5135
+ mode: {
5136
+ /** @enum {string} */
5137
+ ptMode: "air" | "bus" | "coach" | "trolleyBus" | "metro" | "rail" | "tram" | "water" | "ferry" | "cableway" | "funicular" | "lift" | "telecabin" | "other" | "unknown";
5138
+ airSubmode?: string;
5139
+ busSubmode?: string;
5140
+ coachSubmode?: string;
5141
+ funicularSubmode?: string;
5142
+ metroSubmode?: string;
5143
+ tramSubmode?: string;
5144
+ telecabinSubmode?: string;
5145
+ railSubmode?: string;
5146
+ waterSubmode?: string;
5147
+ name?: {
5148
+ text: string;
5149
+ };
5150
+ shortName?: {
5151
+ text: string;
5152
+ };
5153
+ }[];
5154
+ attribute: {
5155
+ text: {
5156
+ text: string;
5157
+ };
5158
+ code: string;
5159
+ hireFacility?: string;
5160
+ importance?: number;
5161
+ }[];
5162
+ extension?: {
5163
+ locationExtensionStructure?: {
5164
+ [key: string]: string;
5165
+ };
5166
+ };
5167
+ }[];
5168
+ };
5169
+ situations?: {
5170
+ ptSituation: {
5171
+ creationTime: string;
5172
+ participantRef?: string;
5173
+ situationNumber: string;
5174
+ version?: number;
5175
+ source: {
5176
+ /** @enum {string} */
5177
+ sourceType: "directReport" | "email" | "phone" | "fax" | "post" | "feed" | "radio" | "tv" | "web" | "pager" | "text" | "other";
5178
+ };
5179
+ validityPeriod: {
5180
+ startTime: string;
5181
+ endTime?: string;
5182
+ }[];
5183
+ priority?: string;
5184
+ scopeType?: string;
5185
+ language: string;
5186
+ summary: string;
5187
+ description?: string[];
5188
+ detail?: string[];
5189
+ affects?: {
5190
+ stopPoints?: {
5191
+ affectedStopPoint?: {
5192
+ stopPointRef: string;
5193
+ }[];
5194
+ };
5195
+ vehicleJourneys?: {
5196
+ affectedVehicleJourney?: {
5197
+ stopPointRef?: string;
5198
+ }[];
5199
+ };
5200
+ };
5201
+ }[];
5202
+ };
5203
+ };
5204
+ stopEventResult: {
5205
+ id: string;
5206
+ stopEvent: {
5207
+ previousCall: {
5208
+ callAtStop: {
5209
+ stopPointRef: string;
5210
+ stopPointName: {
5211
+ text: string;
5212
+ };
5213
+ nameSuffix?: {
5214
+ text: string;
5215
+ };
5216
+ plannedQuay?: {
5217
+ text: string;
5218
+ };
5219
+ estimatedQuay?: {
5220
+ text: string;
5221
+ };
5222
+ serviceArrival?: {
5223
+ timetabledTime: string;
5224
+ estimatedTime?: string;
5225
+ };
5226
+ serviceDeparture?: {
5227
+ timetabledTime: string;
5228
+ estimatedTime?: string;
5229
+ };
5230
+ order?: number;
5231
+ requestStop?: boolean;
5232
+ unplannedStop?: boolean;
5233
+ notServicedStop?: boolean;
5234
+ noBoardingAtStop?: boolean;
5235
+ noAlightingAtStop?: boolean;
5236
+ expectedDepartureOccupancy?: {
5237
+ /** @enum {string} */
5238
+ fareClass: "unknown" | "firstClass" | "secondClass";
5239
+ /** @enum {string} */
5240
+ occupancyLevel: "empty" | "manySeatsAvailable" | "fewSeatsAvailable" | "standingRoomOnly";
5241
+ }[];
5242
+ situationFullRef?: {
5243
+ participantRef: string;
5244
+ situationNumber: string;
5245
+ }[];
5246
+ };
5247
+ }[];
5248
+ thisCall: {
5249
+ callAtStop: {
5250
+ stopPointRef: string;
5251
+ stopPointName: {
5252
+ text: string;
5253
+ };
5254
+ nameSuffix?: {
5255
+ text: string;
5256
+ };
5257
+ plannedQuay?: {
5258
+ text: string;
5259
+ };
5260
+ estimatedQuay?: {
5261
+ text: string;
5262
+ };
5263
+ serviceArrival?: {
5264
+ timetabledTime: string;
5265
+ estimatedTime?: string;
5266
+ };
5267
+ serviceDeparture?: {
5268
+ timetabledTime: string;
5269
+ estimatedTime?: string;
5270
+ };
5271
+ order?: number;
5272
+ requestStop?: boolean;
5273
+ unplannedStop?: boolean;
5274
+ notServicedStop?: boolean;
5275
+ noBoardingAtStop?: boolean;
5276
+ noAlightingAtStop?: boolean;
5277
+ expectedDepartureOccupancy?: {
5278
+ /** @enum {string} */
5279
+ fareClass: "unknown" | "firstClass" | "secondClass";
5280
+ /** @enum {string} */
5281
+ occupancyLevel: "empty" | "manySeatsAvailable" | "fewSeatsAvailable" | "standingRoomOnly";
5282
+ }[];
5283
+ situationFullRef?: {
5284
+ participantRef: string;
5285
+ situationNumber: string;
5286
+ }[];
5287
+ };
5288
+ };
5289
+ onwardCall: {
5290
+ callAtStop: {
5291
+ stopPointRef: string;
5292
+ stopPointName: {
5293
+ text: string;
5294
+ };
5295
+ nameSuffix?: {
5296
+ text: string;
5297
+ };
5298
+ plannedQuay?: {
5299
+ text: string;
5300
+ };
5301
+ estimatedQuay?: {
5302
+ text: string;
5303
+ };
5304
+ serviceArrival?: {
5305
+ timetabledTime: string;
5306
+ estimatedTime?: string;
5307
+ };
5308
+ serviceDeparture?: {
5309
+ timetabledTime: string;
5310
+ estimatedTime?: string;
5311
+ };
5312
+ order?: number;
5313
+ requestStop?: boolean;
5314
+ unplannedStop?: boolean;
5315
+ notServicedStop?: boolean;
5316
+ noBoardingAtStop?: boolean;
5317
+ noAlightingAtStop?: boolean;
5318
+ expectedDepartureOccupancy?: {
5319
+ /** @enum {string} */
5320
+ fareClass: "unknown" | "firstClass" | "secondClass";
5321
+ /** @enum {string} */
5322
+ occupancyLevel: "empty" | "manySeatsAvailable" | "fewSeatsAvailable" | "standingRoomOnly";
5323
+ }[];
5324
+ situationFullRef?: {
5325
+ participantRef: string;
5326
+ situationNumber: string;
5327
+ }[];
5328
+ };
5329
+ }[];
5330
+ service: {
5331
+ conventionalModeOfOperation?: string;
5332
+ operatingDayRef: string;
5333
+ journeyRef: string;
5334
+ publicCode?: string;
5335
+ lineRef: string;
5336
+ directionRef?: string;
5337
+ mode: {
5338
+ /** @enum {string} */
5339
+ ptMode: "air" | "bus" | "coach" | "trolleyBus" | "metro" | "rail" | "tram" | "water" | "ferry" | "cableway" | "funicular" | "lift" | "telecabin" | "other" | "unknown";
5340
+ airSubmode?: string;
5341
+ busSubmode?: string;
5342
+ coachSubmode?: string;
5343
+ funicularSubmode?: string;
5344
+ metroSubmode?: string;
5345
+ tramSubmode?: string;
5346
+ telecabinSubmode?: string;
5347
+ railSubmode?: string;
5348
+ waterSubmode?: string;
5349
+ name?: {
5350
+ text: string;
5351
+ };
5352
+ shortName?: {
5353
+ text: string;
5354
+ };
5355
+ };
5356
+ productCategory?: {
5357
+ name?: {
5358
+ text: string;
5359
+ };
5360
+ shortName?: {
5361
+ text: string;
5362
+ };
5363
+ productCategoryRef?: string;
5364
+ };
5365
+ publishedLineName: {
5366
+ text: string;
5367
+ };
5368
+ trainNumber?: string;
5369
+ attribute: {
5370
+ text: {
5371
+ text: string;
5372
+ };
5373
+ code: string;
5374
+ hireFacility?: string;
5375
+ importance?: number;
5376
+ }[];
5377
+ operatorRef?: string;
5378
+ destinationStopPointRef?: string;
5379
+ destinationText?: {
5380
+ text: string;
5381
+ };
5382
+ unplanned?: boolean;
5383
+ cancelled?: boolean;
5384
+ deviation?: boolean;
5385
+ };
5386
+ operatingDays?: {
5387
+ from: string;
5388
+ to: string;
5389
+ pattern: string;
5390
+ };
5391
+ extension?: {
5392
+ transportTypeName?: {
5393
+ text: string;
5394
+ };
5395
+ publishedJourneyNumber?: {
5396
+ text: string;
5397
+ };
5398
+ operatorName?: {
5399
+ text: string;
5400
+ };
5401
+ };
5402
+ };
5403
+ }[];
5404
+ };
5405
+ OJP: {
5406
+ OJPResponse: {
5407
+ serviceDelivery: {
5408
+ responseTimestamp: string;
5409
+ producerRef: string;
5410
+ OJPStopEventDelivery: {
5411
+ responseTimestamp: string;
5412
+ requestMessageRef?: string;
5413
+ defaultLanguage?: string;
5414
+ calcTime?: string;
5415
+ stopEventResponseContext?: {
5416
+ places?: {
5417
+ location: {
5418
+ stopPoint?: {
5419
+ stopPointRef: string;
5420
+ stopPointName: {
5421
+ text: string;
5422
+ };
5423
+ parentRef?: string;
5424
+ plannedQuay?: {
5425
+ text: string;
5426
+ };
5427
+ estimatedQuay?: {
5428
+ text: string;
5429
+ };
5430
+ };
5431
+ stopPlace?: {
5432
+ stopPlaceRef?: string;
5433
+ stopPlaceName?: {
5434
+ text: string;
5435
+ };
5436
+ };
5437
+ topographicPlace?: {
5438
+ topographicPlaceCode: string;
5439
+ topographicPlaceName: {
5440
+ text: string;
5441
+ };
5442
+ };
5443
+ pointOfInterest?: {
5444
+ pointOfInterestCode: string;
5445
+ pointOfInterestName: {
5446
+ text: string;
5447
+ };
5448
+ pointOfInterestCategory: {
5449
+ osmTag: {
5450
+ tag: string;
5451
+ value: string;
5452
+ }[];
5453
+ pointOfInterestClassification: string[];
5454
+ }[];
5455
+ privateCode?: {
5456
+ system: string;
5457
+ value: string;
5458
+ };
5459
+ topographicPlaceRef?: string;
5460
+ };
5461
+ address?: {
5462
+ publicCode: string;
5463
+ name: {
5464
+ text: string;
5465
+ };
5466
+ postCode?: string;
5467
+ topographicPlaceName?: string;
5468
+ topographicPlaceRef?: string;
5469
+ street?: string;
5470
+ houseNumber?: string;
5471
+ };
5472
+ locationName: {
5473
+ text: string;
5474
+ };
5475
+ geoPosition: {
5476
+ longitude: number;
5477
+ latitude: number;
5478
+ };
5479
+ mode: {
5480
+ /** @enum {string} */
5481
+ ptMode: "air" | "bus" | "coach" | "trolleyBus" | "metro" | "rail" | "tram" | "water" | "ferry" | "cableway" | "funicular" | "lift" | "telecabin" | "other" | "unknown";
5482
+ airSubmode?: string;
5483
+ busSubmode?: string;
5484
+ coachSubmode?: string;
5485
+ funicularSubmode?: string;
5486
+ metroSubmode?: string;
5487
+ tramSubmode?: string;
5488
+ telecabinSubmode?: string;
5489
+ railSubmode?: string;
5490
+ waterSubmode?: string;
5491
+ name?: {
5492
+ text: string;
5493
+ };
5494
+ shortName?: {
5495
+ text: string;
5496
+ };
5497
+ }[];
5498
+ attribute: {
5499
+ text: {
5500
+ text: string;
5501
+ };
5502
+ code: string;
5503
+ hireFacility?: string;
5504
+ importance?: number;
5505
+ }[];
5506
+ extension?: {
5507
+ locationExtensionStructure?: {
5508
+ [key: string]: string;
5509
+ };
5510
+ };
5511
+ }[];
5512
+ };
5513
+ situations?: {
5514
+ ptSituation: {
5515
+ creationTime: string;
5516
+ participantRef?: string;
5517
+ situationNumber: string;
5518
+ version?: number;
5519
+ source: {
5520
+ /** @enum {string} */
5521
+ sourceType: "directReport" | "email" | "phone" | "fax" | "post" | "feed" | "radio" | "tv" | "web" | "pager" | "text" | "other";
5522
+ };
5523
+ validityPeriod: {
5524
+ startTime: string;
5525
+ endTime?: string;
5526
+ }[];
5527
+ priority?: string;
5528
+ scopeType?: string;
5529
+ language: string;
5530
+ summary: string;
5531
+ description?: string[];
5532
+ detail?: string[];
5533
+ affects?: {
5534
+ stopPoints?: {
5535
+ affectedStopPoint?: {
5536
+ stopPointRef: string;
5537
+ }[];
5538
+ };
5539
+ vehicleJourneys?: {
5540
+ affectedVehicleJourney?: {
5541
+ stopPointRef?: string;
5542
+ }[];
5543
+ };
5544
+ };
5545
+ }[];
5546
+ };
5547
+ };
5548
+ stopEventResult: {
5549
+ id: string;
5550
+ stopEvent: {
5551
+ previousCall: {
5552
+ callAtStop: {
5553
+ stopPointRef: string;
5554
+ stopPointName: {
5555
+ text: string;
5556
+ };
5557
+ nameSuffix?: {
5558
+ text: string;
5559
+ };
5560
+ plannedQuay?: {
5561
+ text: string;
5562
+ };
5563
+ estimatedQuay?: {
5564
+ text: string;
5565
+ };
5566
+ serviceArrival?: {
5567
+ timetabledTime: string;
5568
+ estimatedTime?: string;
5569
+ };
5570
+ serviceDeparture?: {
5571
+ timetabledTime: string;
5572
+ estimatedTime?: string;
5573
+ };
5574
+ order?: number;
5575
+ requestStop?: boolean;
5576
+ unplannedStop?: boolean;
5577
+ notServicedStop?: boolean;
5578
+ noBoardingAtStop?: boolean;
5579
+ noAlightingAtStop?: boolean;
5580
+ expectedDepartureOccupancy?: {
5581
+ /** @enum {string} */
5582
+ fareClass: "unknown" | "firstClass" | "secondClass";
5583
+ /** @enum {string} */
5584
+ occupancyLevel: "empty" | "manySeatsAvailable" | "fewSeatsAvailable" | "standingRoomOnly";
5585
+ }[];
5586
+ situationFullRef?: {
5587
+ participantRef: string;
5588
+ situationNumber: string;
5589
+ }[];
5590
+ };
5591
+ }[];
5592
+ thisCall: {
5593
+ callAtStop: {
5594
+ stopPointRef: string;
5595
+ stopPointName: {
5596
+ text: string;
5597
+ };
5598
+ nameSuffix?: {
5599
+ text: string;
5600
+ };
5601
+ plannedQuay?: {
5602
+ text: string;
5603
+ };
5604
+ estimatedQuay?: {
5605
+ text: string;
5606
+ };
5607
+ serviceArrival?: {
5608
+ timetabledTime: string;
5609
+ estimatedTime?: string;
5610
+ };
5611
+ serviceDeparture?: {
5612
+ timetabledTime: string;
5613
+ estimatedTime?: string;
5614
+ };
5615
+ order?: number;
5616
+ requestStop?: boolean;
5617
+ unplannedStop?: boolean;
5618
+ notServicedStop?: boolean;
5619
+ noBoardingAtStop?: boolean;
5620
+ noAlightingAtStop?: boolean;
5621
+ expectedDepartureOccupancy?: {
5622
+ /** @enum {string} */
5623
+ fareClass: "unknown" | "firstClass" | "secondClass";
5624
+ /** @enum {string} */
5625
+ occupancyLevel: "empty" | "manySeatsAvailable" | "fewSeatsAvailable" | "standingRoomOnly";
5626
+ }[];
5627
+ situationFullRef?: {
5628
+ participantRef: string;
5629
+ situationNumber: string;
5630
+ }[];
5631
+ };
5632
+ };
5633
+ onwardCall: {
5634
+ callAtStop: {
5635
+ stopPointRef: string;
5636
+ stopPointName: {
5637
+ text: string;
5638
+ };
5639
+ nameSuffix?: {
5640
+ text: string;
5641
+ };
5642
+ plannedQuay?: {
5643
+ text: string;
5644
+ };
5645
+ estimatedQuay?: {
5646
+ text: string;
5647
+ };
5648
+ serviceArrival?: {
5649
+ timetabledTime: string;
5650
+ estimatedTime?: string;
5651
+ };
5652
+ serviceDeparture?: {
5653
+ timetabledTime: string;
5654
+ estimatedTime?: string;
5655
+ };
5656
+ order?: number;
5657
+ requestStop?: boolean;
5658
+ unplannedStop?: boolean;
5659
+ notServicedStop?: boolean;
5660
+ noBoardingAtStop?: boolean;
5661
+ noAlightingAtStop?: boolean;
5662
+ expectedDepartureOccupancy?: {
5663
+ /** @enum {string} */
5664
+ fareClass: "unknown" | "firstClass" | "secondClass";
5665
+ /** @enum {string} */
5666
+ occupancyLevel: "empty" | "manySeatsAvailable" | "fewSeatsAvailable" | "standingRoomOnly";
5667
+ }[];
5668
+ situationFullRef?: {
5669
+ participantRef: string;
5670
+ situationNumber: string;
5671
+ }[];
5672
+ };
5673
+ }[];
5674
+ service: {
5675
+ conventionalModeOfOperation?: string;
5676
+ operatingDayRef: string;
5677
+ journeyRef: string;
5678
+ publicCode?: string;
5679
+ lineRef: string;
5680
+ directionRef?: string;
5681
+ mode: {
5682
+ /** @enum {string} */
5683
+ ptMode: "air" | "bus" | "coach" | "trolleyBus" | "metro" | "rail" | "tram" | "water" | "ferry" | "cableway" | "funicular" | "lift" | "telecabin" | "other" | "unknown";
5684
+ airSubmode?: string;
5685
+ busSubmode?: string;
5686
+ coachSubmode?: string;
5687
+ funicularSubmode?: string;
5688
+ metroSubmode?: string;
5689
+ tramSubmode?: string;
5690
+ telecabinSubmode?: string;
5691
+ railSubmode?: string;
5692
+ waterSubmode?: string;
5693
+ name?: {
5694
+ text: string;
5695
+ };
5696
+ shortName?: {
5697
+ text: string;
5698
+ };
5699
+ };
5700
+ productCategory?: {
5701
+ name?: {
5702
+ text: string;
5703
+ };
5704
+ shortName?: {
5705
+ text: string;
5706
+ };
5707
+ productCategoryRef?: string;
5708
+ };
5709
+ publishedLineName: {
4243
5710
  text: string;
4244
5711
  };
4245
5712
  trainNumber?: string;
4246
5713
  attribute: {
4247
- userText: {
5714
+ text: {
4248
5715
  text: string;
4249
5716
  };
4250
5717
  code: string;
5718
+ hireFacility?: string;
4251
5719
  importance?: number;
4252
5720
  }[];
4253
5721
  operatorRef?: string;
@@ -4258,18 +5726,23 @@ interface components$9 {
4258
5726
  unplanned?: boolean;
4259
5727
  cancelled?: boolean;
4260
5728
  deviation?: boolean;
4261
- situationFullRefs?: {
4262
- situationFullRef: {
4263
- participantRef: string;
4264
- situationNumber: string;
4265
- }[];
4266
- };
4267
5729
  };
4268
5730
  operatingDays?: {
4269
5731
  from: string;
4270
5732
  to: string;
4271
5733
  pattern: string;
4272
5734
  };
5735
+ extension?: {
5736
+ transportTypeName?: {
5737
+ text: string;
5738
+ };
5739
+ publishedJourneyNumber?: {
5740
+ text: string;
5741
+ };
5742
+ operatorName?: {
5743
+ text: string;
5744
+ };
5745
+ };
4273
5746
  };
4274
5747
  }[];
4275
5748
  };
@@ -4453,8 +5926,12 @@ interface components$7 {
4453
5926
  text: string;
4454
5927
  };
4455
5928
  code: string;
5929
+ hireFacility?: string;
4456
5930
  importance?: number;
4457
5931
  }[];
5932
+ originText: {
5933
+ text: string;
5934
+ };
4458
5935
  operatorRef?: string;
4459
5936
  destinationStopPointRef?: string;
4460
5937
  destinationText?: {
@@ -4600,6 +6077,14 @@ interface components$7 {
4600
6077
  text: string;
4601
6078
  };
4602
6079
  }[];
6080
+ attribute: {
6081
+ userText: {
6082
+ text: string;
6083
+ };
6084
+ code: string;
6085
+ hireFacility?: string;
6086
+ importance?: number;
6087
+ }[];
4603
6088
  }[];
4604
6089
  };
4605
6090
  situations?: {
@@ -4777,8 +6262,12 @@ interface components$7 {
4777
6262
  text: string;
4778
6263
  };
4779
6264
  code: string;
6265
+ hireFacility?: string;
4780
6266
  importance?: number;
4781
6267
  }[];
6268
+ originText: {
6269
+ text: string;
6270
+ };
4782
6271
  operatorRef?: string;
4783
6272
  destinationStopPointRef?: string;
4784
6273
  destinationText?: {
@@ -4930,6 +6419,14 @@ interface components$7 {
4930
6419
  text: string;
4931
6420
  };
4932
6421
  }[];
6422
+ attribute: {
6423
+ userText: {
6424
+ text: string;
6425
+ };
6426
+ code: string;
6427
+ hireFacility?: string;
6428
+ importance?: number;
6429
+ }[];
4933
6430
  }[];
4934
6431
  };
4935
6432
  situations?: {
@@ -5088,243 +6585,96 @@ interface components$7 {
5088
6585
  shortName?: {
5089
6586
  text: string;
5090
6587
  };
5091
- };
5092
- productCategory?: {
5093
- name?: {
5094
- text: string;
5095
- };
5096
- shortName?: {
5097
- text: string;
5098
- };
5099
- productCategoryRef?: string;
5100
- };
5101
- publishedServiceName: {
5102
- text: string;
5103
- };
5104
- trainNumber?: string;
5105
- attribute: {
5106
- userText: {
5107
- text: string;
5108
- };
5109
- code: string;
5110
- importance?: number;
5111
- }[];
5112
- operatorRef?: string;
5113
- destinationStopPointRef?: string;
5114
- destinationText?: {
5115
- text: string;
5116
- };
5117
- unplanned?: boolean;
5118
- cancelled?: boolean;
5119
- deviation?: boolean;
5120
- situationFullRefs?: {
5121
- situationFullRef: {
5122
- participantRef: string;
5123
- situationNumber: string;
5124
- }[];
5125
- };
5126
- };
5127
- journeyTrack?: {
5128
- trackSection: {
5129
- trackSectionStart?: {
5130
- stopPointRef?: string;
5131
- stopPlaceRef?: string;
5132
- geoPosition?: {
5133
- longitude: number;
5134
- latitude: number;
5135
- };
5136
- name: {
5137
- text: string;
5138
- };
5139
- };
5140
- trackSectionEnd?: {
5141
- stopPointRef?: string;
5142
- stopPlaceRef?: string;
5143
- geoPosition?: {
5144
- longitude: number;
5145
- latitude: number;
5146
- };
5147
- name: {
5148
- text: string;
5149
- };
5150
- };
5151
- linkProjection?: {
5152
- position: {
5153
- longitude: number;
5154
- latitude: number;
5155
- }[];
5156
- };
5157
- roadName?: string;
5158
- duration?: string;
5159
- length?: number;
5160
- }[];
5161
- };
5162
- }[];
5163
- };
5164
- };
5165
- };
5166
- };
5167
- };
5168
- responses: never;
5169
- parameters: never;
5170
- requestBodies: never;
5171
- headers: never;
5172
- pathItems: never;
5173
- }
5174
-
5175
- interface components$6 {
5176
- schemas: {
5177
- ResponseContextStructure: {
5178
- places?: {
5179
- location: {
5180
- stopPoint?: {
5181
- stopPointRef: string;
5182
- stopPointName: {
5183
- text: string;
5184
- };
5185
- parentRef?: string;
5186
- plannedQuay?: {
5187
- text: string;
5188
- };
5189
- estimatedQuay?: {
5190
- text: string;
5191
- };
5192
- };
5193
- stopPlace?: {
5194
- stopPlaceRef?: string;
5195
- stopPlaceName?: {
5196
- text: string;
5197
- };
5198
- };
5199
- topographicPlace?: {
5200
- topographicPlaceCode: string;
5201
- topographicPlaceName: {
5202
- text: string;
5203
- };
5204
- };
5205
- pointOfInterest?: {
5206
- publicCode: string;
5207
- name: {
5208
- text: string;
5209
- };
5210
- pointOfInterestCategory: {
5211
- osmTag: {
5212
- tag: string;
5213
- value: string;
5214
- }[];
5215
- pointOfInterestClassification: string[];
5216
- }[];
5217
- privateCode?: {
5218
- system: string;
5219
- value: string;
5220
- };
5221
- pOIAdditionalInformation?: {
5222
- pOIAdditionalInformation: {
5223
- key: string;
5224
- value: string;
5225
- }[];
5226
- };
5227
- topographicPlaceRef?: string;
5228
- };
5229
- address?: {
5230
- publicCode: string;
5231
- name: {
5232
- text: string;
5233
- };
5234
- postCode?: string;
5235
- topographicPlaceName?: string;
5236
- topographicPlaceRef?: string;
5237
- street?: string;
5238
- houseNumber?: string;
5239
- };
5240
- locationName: {
5241
- text: string;
5242
- };
5243
- geoPosition: {
5244
- longitude: number;
5245
- latitude: number;
5246
- };
5247
- mode: {
5248
- /** @enum {string} */
5249
- ptMode: "air" | "bus" | "coach" | "trolleyBus" | "metro" | "rail" | "tram" | "water" | "ferry" | "cableway" | "funicular" | "lift" | "telecabin" | "other" | "unknown";
5250
- airSubmode?: string;
5251
- busSubmode?: string;
5252
- coachSubmode?: string;
5253
- funicularSubmode?: string;
5254
- metroSubmode?: string;
5255
- tramSubmode?: string;
5256
- telecabinSubmode?: string;
5257
- railSubmode?: string;
5258
- waterSubmode?: string;
5259
- name?: {
5260
- text: string;
5261
- };
5262
- shortName?: {
5263
- text: string;
5264
- };
5265
- }[];
5266
- }[];
5267
- };
5268
- situations?: {
5269
- ptSituation: {
5270
- creationTime: string;
5271
- participantRef?: string;
5272
- situationNumber: string;
5273
- version?: number;
5274
- source: {
5275
- /** @enum {string} */
5276
- sourceType: "directReport" | "email" | "phone" | "fax" | "post" | "feed" | "radio" | "tv" | "web" | "pager" | "text" | "other";
5277
- };
5278
- validityPeriod: {
5279
- startTime: string;
5280
- endTime?: string;
5281
- }[];
5282
- alertCause: string;
5283
- priority?: string;
5284
- scopeType?: string;
5285
- publishingActions?: {
5286
- publishingAction: {
5287
- publishAtScope: {
5288
- scopeType: string;
5289
- };
5290
- passengerInformationAction: {
5291
- actionRef: string;
5292
- recordedAtTime: string;
5293
- /** @enum {string} */
5294
- perspective: "general" | "stopPoint" | "vehicleJourney";
5295
- textualContent: {
5296
- summaryContent: {
5297
- summaryText: string;
6588
+ };
6589
+ productCategory?: {
6590
+ name?: {
6591
+ text: string;
5298
6592
  };
5299
- reasonContent?: {
5300
- reasonText: string;
6593
+ shortName?: {
6594
+ text: string;
5301
6595
  };
5302
- descriptionContent: {
5303
- descriptionText: string;
5304
- }[];
5305
- consequenceContent: {
5306
- consequenceText: string;
5307
- }[];
5308
- recommendationContent: {
5309
- recommendationText: string;
5310
- }[];
5311
- durationContent?: {
5312
- durationText: string;
6596
+ productCategoryRef?: string;
6597
+ };
6598
+ publishedServiceName: {
6599
+ text: string;
6600
+ };
6601
+ trainNumber?: string;
6602
+ attribute: {
6603
+ userText: {
6604
+ text: string;
5313
6605
  };
5314
- remarkContent: {
5315
- remark: string;
5316
- }[];
5317
- infoLink: {
5318
- uri: string;
5319
- label?: string[];
6606
+ code: string;
6607
+ hireFacility?: string;
6608
+ importance?: number;
6609
+ }[];
6610
+ originText: {
6611
+ text: string;
6612
+ };
6613
+ operatorRef?: string;
6614
+ destinationStopPointRef?: string;
6615
+ destinationText?: {
6616
+ text: string;
6617
+ };
6618
+ unplanned?: boolean;
6619
+ cancelled?: boolean;
6620
+ deviation?: boolean;
6621
+ situationFullRefs?: {
6622
+ situationFullRef: {
6623
+ participantRef: string;
6624
+ situationNumber: string;
5320
6625
  }[];
6626
+ };
6627
+ };
6628
+ journeyTrack?: {
6629
+ trackSection: {
6630
+ trackSectionStart?: {
6631
+ stopPointRef?: string;
6632
+ stopPlaceRef?: string;
6633
+ geoPosition?: {
6634
+ longitude: number;
6635
+ latitude: number;
6636
+ };
6637
+ name: {
6638
+ text: string;
6639
+ };
6640
+ };
6641
+ trackSectionEnd?: {
6642
+ stopPointRef?: string;
6643
+ stopPlaceRef?: string;
6644
+ geoPosition?: {
6645
+ longitude: number;
6646
+ latitude: number;
6647
+ };
6648
+ name: {
6649
+ text: string;
6650
+ };
6651
+ };
6652
+ linkProjection?: {
6653
+ position: {
6654
+ longitude: number;
6655
+ latitude: number;
6656
+ }[];
6657
+ };
6658
+ roadName?: string;
6659
+ duration?: string;
6660
+ length?: number;
5321
6661
  }[];
5322
- }[];
6662
+ };
5323
6663
  }[];
5324
6664
  };
5325
- }[];
6665
+ };
5326
6666
  };
5327
6667
  };
6668
+ };
6669
+ responses: never;
6670
+ parameters: never;
6671
+ requestBodies: never;
6672
+ headers: never;
6673
+ pathItems: never;
6674
+ }
6675
+
6676
+ interface components$6 {
6677
+ schemas: {
5328
6678
  TripInfoResultStructure: {
5329
6679
  previousCall: {
5330
6680
  stopPointRef: string;
@@ -5440,6 +6790,7 @@ interface components$6 {
5440
6790
  text: string;
5441
6791
  };
5442
6792
  code: string;
6793
+ hireFacility?: string;
5443
6794
  importance?: number;
5444
6795
  }[];
5445
6796
  operatorRef?: string;
@@ -5532,8 +6883,8 @@ interface components$6 {
5532
6883
  };
5533
6884
  };
5534
6885
  pointOfInterest?: {
5535
- publicCode: string;
5536
- name: {
6886
+ pointOfInterestCode: string;
6887
+ pointOfInterestName: {
5537
6888
  text: string;
5538
6889
  };
5539
6890
  pointOfInterestCategory: {
@@ -5547,12 +6898,6 @@ interface components$6 {
5547
6898
  system: string;
5548
6899
  value: string;
5549
6900
  };
5550
- pOIAdditionalInformation?: {
5551
- pOIAdditionalInformation: {
5552
- key: string;
5553
- value: string;
5554
- }[];
5555
- };
5556
6901
  topographicPlaceRef?: string;
5557
6902
  };
5558
6903
  address?: {
@@ -5592,6 +6937,19 @@ interface components$6 {
5592
6937
  text: string;
5593
6938
  };
5594
6939
  }[];
6940
+ attribute: {
6941
+ text: {
6942
+ text: string;
6943
+ };
6944
+ code: string;
6945
+ hireFacility?: string;
6946
+ importance?: number;
6947
+ }[];
6948
+ extension?: {
6949
+ locationExtensionStructure?: {
6950
+ [key: string]: string;
6951
+ };
6952
+ };
5595
6953
  }[];
5596
6954
  };
5597
6955
  situations?: {
@@ -5608,48 +6966,23 @@ interface components$6 {
5608
6966
  startTime: string;
5609
6967
  endTime?: string;
5610
6968
  }[];
5611
- alertCause: string;
5612
6969
  priority?: string;
5613
6970
  scopeType?: string;
5614
- publishingActions?: {
5615
- publishingAction: {
5616
- publishAtScope: {
5617
- scopeType: string;
5618
- };
5619
- passengerInformationAction: {
5620
- actionRef: string;
5621
- recordedAtTime: string;
5622
- /** @enum {string} */
5623
- perspective: "general" | "stopPoint" | "vehicleJourney";
5624
- textualContent: {
5625
- summaryContent: {
5626
- summaryText: string;
5627
- };
5628
- reasonContent?: {
5629
- reasonText: string;
5630
- };
5631
- descriptionContent: {
5632
- descriptionText: string;
5633
- }[];
5634
- consequenceContent: {
5635
- consequenceText: string;
5636
- }[];
5637
- recommendationContent: {
5638
- recommendationText: string;
5639
- }[];
5640
- durationContent?: {
5641
- durationText: string;
5642
- };
5643
- remarkContent: {
5644
- remark: string;
5645
- }[];
5646
- infoLink: {
5647
- uri: string;
5648
- label?: string[];
5649
- }[];
5650
- }[];
6971
+ language: string;
6972
+ summary: string;
6973
+ description?: string[];
6974
+ detail?: string[];
6975
+ affects?: {
6976
+ stopPoints?: {
6977
+ affectedStopPoint?: {
6978
+ stopPointRef: string;
5651
6979
  }[];
5652
- }[];
6980
+ };
6981
+ vehicleJourneys?: {
6982
+ affectedVehicleJourney?: {
6983
+ stopPointRef?: string;
6984
+ }[];
6985
+ };
5653
6986
  };
5654
6987
  }[];
5655
6988
  };
@@ -5769,6 +7102,7 @@ interface components$6 {
5769
7102
  text: string;
5770
7103
  };
5771
7104
  code: string;
7105
+ hireFacility?: string;
5772
7106
  importance?: number;
5773
7107
  }[];
5774
7108
  operatorRef?: string;
@@ -5867,8 +7201,8 @@ interface components$6 {
5867
7201
  };
5868
7202
  };
5869
7203
  pointOfInterest?: {
5870
- publicCode: string;
5871
- name: {
7204
+ pointOfInterestCode: string;
7205
+ pointOfInterestName: {
5872
7206
  text: string;
5873
7207
  };
5874
7208
  pointOfInterestCategory: {
@@ -5882,12 +7216,6 @@ interface components$6 {
5882
7216
  system: string;
5883
7217
  value: string;
5884
7218
  };
5885
- pOIAdditionalInformation?: {
5886
- pOIAdditionalInformation: {
5887
- key: string;
5888
- value: string;
5889
- }[];
5890
- };
5891
7219
  topographicPlaceRef?: string;
5892
7220
  };
5893
7221
  address?: {
@@ -5927,6 +7255,19 @@ interface components$6 {
5927
7255
  text: string;
5928
7256
  };
5929
7257
  }[];
7258
+ attribute: {
7259
+ text: {
7260
+ text: string;
7261
+ };
7262
+ code: string;
7263
+ hireFacility?: string;
7264
+ importance?: number;
7265
+ }[];
7266
+ extension?: {
7267
+ locationExtensionStructure?: {
7268
+ [key: string]: string;
7269
+ };
7270
+ };
5930
7271
  }[];
5931
7272
  };
5932
7273
  situations?: {
@@ -5943,48 +7284,23 @@ interface components$6 {
5943
7284
  startTime: string;
5944
7285
  endTime?: string;
5945
7286
  }[];
5946
- alertCause: string;
5947
7287
  priority?: string;
5948
7288
  scopeType?: string;
5949
- publishingActions?: {
5950
- publishingAction: {
5951
- publishAtScope: {
5952
- scopeType: string;
5953
- };
5954
- passengerInformationAction: {
5955
- actionRef: string;
5956
- recordedAtTime: string;
5957
- /** @enum {string} */
5958
- perspective: "general" | "stopPoint" | "vehicleJourney";
5959
- textualContent: {
5960
- summaryContent: {
5961
- summaryText: string;
5962
- };
5963
- reasonContent?: {
5964
- reasonText: string;
5965
- };
5966
- descriptionContent: {
5967
- descriptionText: string;
5968
- }[];
5969
- consequenceContent: {
5970
- consequenceText: string;
5971
- }[];
5972
- recommendationContent: {
5973
- recommendationText: string;
5974
- }[];
5975
- durationContent?: {
5976
- durationText: string;
5977
- };
5978
- remarkContent: {
5979
- remark: string;
5980
- }[];
5981
- infoLink: {
5982
- uri: string;
5983
- label?: string[];
5984
- }[];
5985
- }[];
7289
+ language: string;
7290
+ summary: string;
7291
+ description?: string[];
7292
+ detail?: string[];
7293
+ affects?: {
7294
+ stopPoints?: {
7295
+ affectedStopPoint?: {
7296
+ stopPointRef: string;
5986
7297
  }[];
5987
- }[];
7298
+ };
7299
+ vehicleJourneys?: {
7300
+ affectedVehicleJourney?: {
7301
+ stopPointRef?: string;
7302
+ }[];
7303
+ };
5988
7304
  };
5989
7305
  }[];
5990
7306
  };
@@ -6104,6 +7420,7 @@ interface components$6 {
6104
7420
  text: string;
6105
7421
  };
6106
7422
  code: string;
7423
+ hireFacility?: string;
6107
7424
  importance?: number;
6108
7425
  }[];
6109
7426
  operatorRef?: string;
@@ -6827,8 +8144,12 @@ interface components$4 {
6827
8144
  text: string;
6828
8145
  };
6829
8146
  code: string;
8147
+ hireFacility?: string;
6830
8148
  importance?: number;
6831
8149
  }[];
8150
+ originText: {
8151
+ text: string;
8152
+ };
6832
8153
  operatorRef?: string;
6833
8154
  destinationStopPointRef?: string;
6834
8155
  destinationText?: {
@@ -7218,8 +8539,12 @@ interface components$4 {
7218
8539
  text: string;
7219
8540
  };
7220
8541
  code: string;
8542
+ hireFacility?: string;
7221
8543
  importance?: number;
7222
8544
  }[];
8545
+ originText: {
8546
+ text: string;
8547
+ };
7223
8548
  operatorRef?: string;
7224
8549
  destinationStopPointRef?: string;
7225
8550
  destinationText?: {
@@ -7619,8 +8944,12 @@ interface components$4 {
7619
8944
  text: string;
7620
8945
  };
7621
8946
  code: string;
8947
+ hireFacility?: string;
7622
8948
  importance?: number;
7623
8949
  }[];
8950
+ originText: {
8951
+ text: string;
8952
+ };
7624
8953
  operatorRef?: string;
7625
8954
  destinationStopPointRef?: string;
7626
8955
  destinationText?: {
@@ -8028,8 +9357,12 @@ interface components$4 {
8028
9357
  text: string;
8029
9358
  };
8030
9359
  code: string;
9360
+ hireFacility?: string;
8031
9361
  importance?: number;
8032
9362
  }[];
9363
+ originText: {
9364
+ text: string;
9365
+ };
8033
9366
  operatorRef?: string;
8034
9367
  destinationStopPointRef?: string;
8035
9368
  destinationText?: {
@@ -8368,6 +9701,14 @@ interface components$4 {
8368
9701
  text: string;
8369
9702
  };
8370
9703
  }[];
9704
+ attribute: {
9705
+ userText: {
9706
+ text: string;
9707
+ };
9708
+ code: string;
9709
+ hireFacility?: string;
9710
+ importance?: number;
9711
+ }[];
8371
9712
  }[];
8372
9713
  };
8373
9714
  situations?: {
@@ -8594,8 +9935,12 @@ interface components$4 {
8594
9935
  text: string;
8595
9936
  };
8596
9937
  code: string;
9938
+ hireFacility?: string;
8597
9939
  importance?: number;
8598
9940
  }[];
9941
+ originText: {
9942
+ text: string;
9943
+ };
8599
9944
  operatorRef?: string;
8600
9945
  destinationStopPointRef?: string;
8601
9946
  destinationText?: {
@@ -8940,6 +10285,14 @@ interface components$4 {
8940
10285
  text: string;
8941
10286
  };
8942
10287
  }[];
10288
+ attribute: {
10289
+ userText: {
10290
+ text: string;
10291
+ };
10292
+ code: string;
10293
+ hireFacility?: string;
10294
+ importance?: number;
10295
+ }[];
8943
10296
  }[];
8944
10297
  };
8945
10298
  situations?: {
@@ -9166,8 +10519,12 @@ interface components$4 {
9166
10519
  text: string;
9167
10520
  };
9168
10521
  code: string;
10522
+ hireFacility?: string;
9169
10523
  importance?: number;
9170
10524
  }[];
10525
+ originText: {
10526
+ text: string;
10527
+ };
9171
10528
  operatorRef?: string;
9172
10529
  destinationStopPointRef?: string;
9173
10530
  destinationText?: {
@@ -9606,8 +10963,12 @@ interface components$3 {
9606
10963
  text: string;
9607
10964
  };
9608
10965
  code: string;
10966
+ hireFacility?: string;
9609
10967
  importance?: number;
9610
10968
  }[];
10969
+ originText: {
10970
+ text: string;
10971
+ };
9611
10972
  operatorRef?: string;
9612
10973
  destinationStopPointRef?: string;
9613
10974
  destinationText?: {
@@ -10034,8 +11395,12 @@ interface components$3 {
10034
11395
  text: string;
10035
11396
  };
10036
11397
  code: string;
11398
+ hireFacility?: string;
10037
11399
  importance?: number;
10038
11400
  }[];
11401
+ originText: {
11402
+ text: string;
11403
+ };
10039
11404
  operatorRef?: string;
10040
11405
  destinationStopPointRef?: string;
10041
11406
  destinationText?: {
@@ -10463,8 +11828,12 @@ interface components$2 {
10463
11828
  text: string;
10464
11829
  };
10465
11830
  code: string;
11831
+ hireFacility?: string;
10466
11832
  importance?: number;
10467
11833
  }[];
11834
+ originText: {
11835
+ text: string;
11836
+ };
10468
11837
  operatorRef?: string;
10469
11838
  destinationStopPointRef?: string;
10470
11839
  destinationText?: {
@@ -10884,8 +12253,12 @@ interface components$2 {
10884
12253
  text: string;
10885
12254
  };
10886
12255
  code: string;
12256
+ hireFacility?: string;
10887
12257
  importance?: number;
10888
12258
  }[];
12259
+ originText: {
12260
+ text: string;
12261
+ };
10889
12262
  operatorRef?: string;
10890
12263
  destinationStopPointRef?: string;
10891
12264
  destinationText?: {
@@ -11306,6 +12679,7 @@ interface components$1 {
11306
12679
  text: string;
11307
12680
  };
11308
12681
  code: string;
12682
+ hireFacility?: string;
11309
12683
  importance?: number;
11310
12684
  }[];
11311
12685
  operatorRef?: string;
@@ -11752,6 +13126,7 @@ interface components$1 {
11752
13126
  text: string;
11753
13127
  };
11754
13128
  code: string;
13129
+ hireFacility?: string;
11755
13130
  importance?: number;
11756
13131
  }[];
11757
13132
  operatorRef?: string;
@@ -12181,6 +13556,7 @@ interface components$1 {
12181
13556
  text: string;
12182
13557
  };
12183
13558
  code: string;
13559
+ hireFacility?: string;
12184
13560
  importance?: number;
12185
13561
  }[];
12186
13562
  operatorRef?: string;
@@ -12618,6 +13994,7 @@ interface components$1 {
12618
13994
  text: string;
12619
13995
  };
12620
13996
  code: string;
13997
+ hireFacility?: string;
12621
13998
  importance?: number;
12622
13999
  }[];
12623
14000
  operatorRef?: string;
@@ -13005,36 +14382,40 @@ interface components {
13005
14382
  pathItems: never;
13006
14383
  }
13007
14384
 
13008
- type OJPv1_DatedJourneySchema = components$g['schemas']['DatedJourney'];
13009
- type OJPv1_LocationSchema = components$g['schemas']['Location'];
13010
- type OJPv1_GeneralAttributeSchema = components$g['schemas']['GeneralAttribute'];
13011
- type OJPv1_TimedLegSchema = components$f['schemas']['TimedLeg'];
13012
- type OJPv1_TripLegSchema = components$f['schemas']['TripLeg'];
13013
- type OJPv1_TripSchema = components$f['schemas']['Trip'];
13014
- type UseRealtimeDataEnum = components$h["schemas"]["UseRealtimeDataEnum"];
13015
- type PersonalModesEnum = components$h["schemas"]['PersonalModesEnumeration'];
13016
- type VehicleModesOfTransportEnum = components$h["schemas"]["VehicleModesOfTransportEnum"];
13017
- type PlaceTypeEnum = components$h["schemas"]["PlaceTypeEnum"];
13018
- type GeoPositionSchema = components$h["schemas"]["GeoPosition"];
13019
- type PlaceRefSchema = components$h["schemas"]["PlaceRef"];
13020
- type InternationalTextSchema = components$h["schemas"]["InternationalText"];
13021
- type DatedJourneySchema = components$h["schemas"]["DatedJourney"];
13022
- type CallAtStopSchema = components$h["schemas"]["CallAtStop"];
13023
- type PlaceContextSchema = components$h["schemas"]["PlaceContext"];
13024
- type PlaceSchema = components$h['schemas']['Place'];
13025
- type StopPointSchema = components$h['schemas']['StopPoint'];
13026
- type StopPlaceSchema = components$h['schemas']['StopPlace'];
13027
- type TopographicPlaceSchema = components$h['schemas']['TopographicPlace'];
13028
- type PointOfInterestSchema = components$h['schemas']['PointOfInterest'];
13029
- type AddressSchema = components$h['schemas']['Address'];
13030
- type GeoRestrictionsSchema = components$h['schemas']['GeoRestrictionsStructure'];
13031
- type ModeStructureSchema = components$h['schemas']['ModeStructure'];
13032
- type ProductCategorySchema = components$h['schemas']['ProductCategory'];
13033
- type GeneralAttributeSchema = components$h['schemas']['GeneralAttribute'];
13034
- type ModeFilterSchema = components$h["schemas"]['ModeFilterStructure'];
13035
- type TrackSectionSchema = components$h['schemas']['TrackSectionStructure'];
13036
- type ResponseContextSchema = components$h['schemas']['ResponseContextStructure'];
13037
- type IndividualTransportOptionSchema = components$h['schemas']['IndividualTransportOptionStructure'];
14385
+ type OJPv1_DatedJourneySchema = components$i['schemas']['DatedJourney'];
14386
+ type OJPv1_LocationSchema = components$i['schemas']['Location'];
14387
+ type OJPv1_GeneralAttributeSchema = components$i['schemas']['GeneralAttribute'];
14388
+ type OJPv1_PointOfInterestSchema = components$i['schemas']['PointOfInterest'];
14389
+ type OJPv1_PlaceRefSchema = components$i['schemas']['PlaceRef'];
14390
+ type OJPv1_TimedLegSchema = components$h['schemas']['TimedLeg'];
14391
+ type OJPv1_TripLegSchema = components$h['schemas']['TripLeg'];
14392
+ type OJPv1_TripSchema = components$h['schemas']['Trip'];
14393
+ type UseRealtimeDataEnum = components$j["schemas"]["UseRealtimeDataEnum"];
14394
+ type PersonalModesEnum = components$j["schemas"]['PersonalModesEnumeration'];
14395
+ type VehicleModesOfTransportEnum = components$j["schemas"]["VehicleModesOfTransportEnum"];
14396
+ type PlaceTypeEnum = components$j["schemas"]["PlaceTypeEnum"];
14397
+ type GeoPositionSchema = components$j["schemas"]["GeoPosition"];
14398
+ type PlaceRefSchema = components$j["schemas"]["PlaceRef"];
14399
+ type InternationalTextSchema = components$j["schemas"]["InternationalText"];
14400
+ type DatedJourneySchema = components$j["schemas"]["DatedJourney"];
14401
+ type CallAtStopSchema = components$j["schemas"]["CallAtStop"];
14402
+ type PlaceContextSchema = components$j["schemas"]["PlaceContext"];
14403
+ type PlaceSchema = components$j['schemas']['Place'];
14404
+ type StopPointSchema = components$j['schemas']['StopPoint'];
14405
+ type StopPlaceSchema = components$j['schemas']['StopPlace'];
14406
+ type TopographicPlaceSchema = components$j['schemas']['TopographicPlace'];
14407
+ type PointOfInterestSchema = components$j['schemas']['PointOfInterest'];
14408
+ type AddressSchema = components$j['schemas']['Address'];
14409
+ type GeoRestrictionsSchema = components$j['schemas']['GeoRestrictionsStructure'];
14410
+ type ModeStructureSchema = components$j['schemas']['ModeStructure'];
14411
+ type ProductCategorySchema = components$j['schemas']['ProductCategory'];
14412
+ type GeneralAttributeSchema = components$j['schemas']['GeneralAttribute'];
14413
+ type ModeFilterSchema = components$j["schemas"]['ModeFilterStructure'];
14414
+ type TrackSectionSchema = components$j['schemas']['TrackSectionStructure'];
14415
+ type ResponseContextSchema = components$j['schemas']['ResponseContextStructure'];
14416
+ type IndividualTransportOptionSchema = components$j['schemas']['IndividualTransportOptionStructure'];
14417
+ type PtSituationElement = components$j['schemas']['PtSituationElementStructure'];
14418
+ type OJPv1_PtSituationElement = components$i['schemas']['PtSituationElementStructure'];
13038
14419
  type TripRequestOJP = components$5["schemas"]["OJP"];
13039
14420
  type TripParamsSchema = components$5["schemas"]["TripParam"];
13040
14421
  type TripRequestSchema = components$5["schemas"]["OJPTripRequest"];
@@ -13047,21 +14428,21 @@ type TransferLegSchema = components$4["schemas"]["TransferLeg"];
13047
14428
  type ContinuousLegSchema = components$4["schemas"]["ContinuousLeg"];
13048
14429
  type TripRequestResponseOJP = components$4['schemas']['OJP'];
13049
14430
  type TripDeliverySchema = components$4['schemas']['OJPTripDelivery'];
13050
- type InitialInputSchema = components$e['schemas']['InitialInput'];
13051
- type LIR_RequestParamsSchema = components$e['schemas']['PlaceParam'];
13052
- type LocationInformationRequestOJP = components$e['schemas']['OJP'];
13053
- type LocationInformationRequestSchema = components$e['schemas']['OJPLocationInformationRequest'];
13054
- type PlaceResultSchema = components$d['schemas']['PlaceResult'];
13055
- type LocationInformationRequestResponseOJP = components$d['schemas']['OJP'];
13056
- type LocationInformationDeliverySchema = components$d['schemas']['OJPLocationInformationDelivery'];
13057
- type StopEventRequestSchema = components$a['schemas']['OJPStopEventRequest'];
13058
- type SER_RequestLocationSchema = components$a['schemas']['PlaceContext'];
13059
- type SER_RequestParamsSchema = components$a['schemas']['StopEventParam'];
13060
- type SER_RequestOJP = components$a['schemas']['OJP'];
13061
- type StopEventResultSchema = components$9['schemas']['StopEventResult'];
13062
- type StopEventSchema = components$9['schemas']['StopEvent'];
13063
- type StopEventRequestResponseOJP = components$9['schemas']['OJP'];
13064
- type StopEventDeliverySchema = components$9['schemas']['OJPStopEventDelivery'];
14431
+ type InitialInputSchema = components$g['schemas']['InitialInput'];
14432
+ type LIR_RequestParamsSchema = components$g['schemas']['PlaceParam'];
14433
+ type LocationInformationRequestOJP = components$g['schemas']['OJP'];
14434
+ type LocationInformationRequestSchema = components$g['schemas']['OJPLocationInformationRequest'];
14435
+ type PlaceResultSchema = components$f['schemas']['PlaceResult'];
14436
+ type LocationInformationRequestResponseOJP = components$f['schemas']['OJP'];
14437
+ type LocationInformationDeliverySchema = components$f['schemas']['OJPLocationInformationDelivery'];
14438
+ type StopEventRequestSchema = components$c['schemas']['OJPStopEventRequest'];
14439
+ type SER_RequestLocationSchema = components$c['schemas']['PlaceContext'];
14440
+ type SER_RequestParamsSchema = components$c['schemas']['StopEventParam'];
14441
+ type SER_RequestOJP = components$c['schemas']['OJP'];
14442
+ type StopEventResultSchema = components$b['schemas']['StopEventResult'];
14443
+ type StopEventSchema = components$b['schemas']['StopEvent'];
14444
+ type StopEventRequestResponseOJP = components$b['schemas']['OJP'];
14445
+ type StopEventDeliverySchema = components$b['schemas']['OJPStopEventDelivery'];
13065
14446
  type TRR_RequestParamsSchema = components$3['schemas']['TripRefineParam'];
13066
14447
  type TRR_RequestSchema = components$3["schemas"]['OJPTripRefineRequest'];
13067
14448
  type TRR_RequestOJP = components$3['schemas']['OJP'];
@@ -13080,14 +14461,21 @@ type TIR_RequestOJP = components$8['schemas']['OJP'];
13080
14461
  type TripInfoResponseOJP = components$7['schemas']['OJP'];
13081
14462
  type TripInfoDeliverySchema = components$7['schemas']['OJPTripInfoDelivery'];
13082
14463
  type TripInfoResultStructureSchema = components$7['schemas']['TripInfoResultStructure'];
14464
+ type OJPv1_StopEventRequestOJP = components$a['schemas']['OJP'];
14465
+ type OJPv1_StopEventRequestSchema = components$a['schemas']['OJPStopEventRequest'];
14466
+ type OJPv1_SER_RequestLocationSchema = components$a['schemas']['PlaceContext'];
14467
+ type OJPv1_StopEventResponseOJP = components$9['schemas']['OJP'];
14468
+ type OJPv1_StopEventDeliverySchema = components$9['schemas']['OJPStopEventDelivery'];
14469
+ type OJPv1_StopEventResultSchema = components$9['schemas']['StopEventResult'];
13083
14470
  type OJPv1_TripInfoResponseOJP = components$6['schemas']['OJP'];
13084
14471
  type OJPv1_TripInfoDeliverySchema = components$6['schemas']['OJPTripInfoDelivery'];
13085
14472
  type OJPv1_TripInfoResultStructureSchema = components$6['schemas']['TripInfoResultStructure'];
13086
- type OJPv1_LocationInformationRequestOJP = components$c['schemas']['OJP'];
13087
- type OJPv1_LocationInformationRequestSchema = components$c['schemas']['OJPLocationInformationRequest'];
13088
- type OJPv1_InitialInputSchema = components$c['schemas']['InitialInput'];
13089
- type OJPv1_LocationInformationRequestResponseOJP = components$b['schemas']['OJP'];
13090
- type OJPv1_LocationInformationDeliverySchema = components$b['schemas']['OJPLocationInformationDelivery'];
14473
+ type OJPv1_LocationInformationRequestOJP = components$e['schemas']['OJP'];
14474
+ type OJPv1_LocationInformationRequestSchema = components$e['schemas']['OJPLocationInformationRequest'];
14475
+ type OJPv1_InitialInputSchema = components$e['schemas']['InitialInput'];
14476
+ type OJPv1_LocationResultSchema = components$d['schemas']['LocationResult'];
14477
+ type OJPv1_LocationInformationRequestResponseOJP = components$d['schemas']['OJP'];
14478
+ type OJPv1_LocationInformationDeliverySchema = components$d['schemas']['OJPLocationInformationDelivery'];
13091
14479
 
13092
14480
  declare const OpenAPI_Dependencies: {
13093
14481
  readonly MapNS_Tags: Record<string, string>;
@@ -13096,4 +14484,4 @@ declare const OpenAPI_Dependencies: {
13096
14484
  readonly MapStringValues: Record<string, boolean>;
13097
14485
  };
13098
14486
 
13099
- export { type AddressSchema, type CallAtStopSchema, type ContinuousLegSchema, type DatedJourneySchema, type FareDeliverySchema, type FareRequestOJP, type FareRequestParamsSchema, type FareRequestSchema, type FareRequestsSchema, type FareResponseOJP, type FareResultSchema, type GeneralAttributeSchema, type GeoPositionSchema, type GeoRestrictionsSchema, type IndividualTransportOptionSchema, type InitialInputSchema, type InternationalTextSchema, type LIR_RequestParamsSchema, type LegSchema, type LocationInformationDeliverySchema, type LocationInformationRequestOJP, type LocationInformationRequestResponseOJP, type LocationInformationRequestSchema, type ModeFilterSchema, type ModeStructureSchema, type OJPv1_DatedJourneySchema, type OJPv1_GeneralAttributeSchema, type OJPv1_InitialInputSchema, type OJPv1_LocationInformationDeliverySchema, type OJPv1_LocationInformationRequestOJP, type OJPv1_LocationInformationRequestResponseOJP, type OJPv1_LocationInformationRequestSchema, type OJPv1_LocationSchema, type OJPv1_TimedLegSchema, type OJPv1_TripInfoDeliverySchema, type OJPv1_TripInfoResponseOJP, type OJPv1_TripInfoResultStructureSchema, type OJPv1_TripLegSchema, type OJPv1_TripSchema, OpenAPI_Dependencies, type PersonalModesEnum, type PlaceContextSchema, type PlaceRefSchema, type PlaceResultSchema, type PlaceSchema, type PlaceTypeEnum, type PointOfInterestSchema, type ProductCategorySchema, type ResponseContextSchema, type SER_RequestLocationSchema, type SER_RequestOJP, type SER_RequestParamsSchema, type StopEventDeliverySchema, type StopEventRequestResponseOJP, type StopEventRequestSchema, type StopEventResultSchema, type StopEventSchema, type StopPlaceSchema, type StopPointSchema, type TIR_RequestOJP, type TIR_RequestParamsSchema, type TIR_RequestSchema, type TRR_DeliverySchema, type TRR_RequestOJP, type TRR_RequestParamsSchema, type TRR_RequestSchema, type TRR_ResponseOJP, type TimedLegSchema, type TopographicPlaceSchema, type TrackSectionSchema, type TransferLegSchema, type TripDeliverySchema, type TripInfoDeliverySchema, type TripInfoResponseOJP, type TripInfoResultStructureSchema, type TripParamsSchema, type TripRequestOJP, type TripRequestResponseOJP, type TripRequestSchema, type TripResultSchema, type TripSchema, type UseRealtimeDataEnum, VERSION, type VehicleModesOfTransportEnum, type ViaPointSchema };
14487
+ export { type AddressSchema, type CallAtStopSchema, type ContinuousLegSchema, type DatedJourneySchema, type FareDeliverySchema, type FareRequestOJP, type FareRequestParamsSchema, type FareRequestSchema, type FareRequestsSchema, type FareResponseOJP, type FareResultSchema, type GeneralAttributeSchema, type GeoPositionSchema, type GeoRestrictionsSchema, type IndividualTransportOptionSchema, type InitialInputSchema, type InternationalTextSchema, type LIR_RequestParamsSchema, type LegSchema, type LocationInformationDeliverySchema, type LocationInformationRequestOJP, type LocationInformationRequestResponseOJP, type LocationInformationRequestSchema, type ModeFilterSchema, type ModeStructureSchema, type OJPv1_DatedJourneySchema, type OJPv1_GeneralAttributeSchema, type OJPv1_InitialInputSchema, type OJPv1_LocationInformationDeliverySchema, type OJPv1_LocationInformationRequestOJP, type OJPv1_LocationInformationRequestResponseOJP, type OJPv1_LocationInformationRequestSchema, type OJPv1_LocationResultSchema, type OJPv1_LocationSchema, type OJPv1_PlaceRefSchema, type OJPv1_PointOfInterestSchema, type OJPv1_PtSituationElement, type OJPv1_SER_RequestLocationSchema, type OJPv1_StopEventDeliverySchema, type OJPv1_StopEventRequestOJP, type OJPv1_StopEventRequestSchema, type OJPv1_StopEventResponseOJP, type OJPv1_StopEventResultSchema, type OJPv1_TimedLegSchema, type OJPv1_TripInfoDeliverySchema, type OJPv1_TripInfoResponseOJP, type OJPv1_TripInfoResultStructureSchema, type OJPv1_TripLegSchema, type OJPv1_TripSchema, OpenAPI_Dependencies, type PersonalModesEnum, type PlaceContextSchema, type PlaceRefSchema, type PlaceResultSchema, type PlaceSchema, type PlaceTypeEnum, type PointOfInterestSchema, type ProductCategorySchema, type PtSituationElement, type ResponseContextSchema, type SER_RequestLocationSchema, type SER_RequestOJP, type SER_RequestParamsSchema, type StopEventDeliverySchema, type StopEventRequestResponseOJP, type StopEventRequestSchema, type StopEventResultSchema, type StopEventSchema, type StopPlaceSchema, type StopPointSchema, type TIR_RequestOJP, type TIR_RequestParamsSchema, type TIR_RequestSchema, type TRR_DeliverySchema, type TRR_RequestOJP, type TRR_RequestParamsSchema, type TRR_RequestSchema, type TRR_ResponseOJP, type TimedLegSchema, type TopographicPlaceSchema, type TrackSectionSchema, type TransferLegSchema, type TripDeliverySchema, type TripInfoDeliverySchema, type TripInfoResponseOJP, type TripInfoResultStructureSchema, type TripParamsSchema, type TripRequestOJP, type TripRequestResponseOJP, type TripRequestSchema, type TripResultSchema, type TripSchema, type UseRealtimeDataEnum, VERSION, type VehicleModesOfTransportEnum, type ViaPointSchema };