ojp-shared-types 0.0.16 → 0.0.17
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/README.md +1 -1
- package/dist/index.cjs +2 -1
- package/dist/index.d.cts +69 -1
- package/dist/index.d.ts +69 -1
- package/dist/index.js +2 -1
- package/package.json +1 -1
package/README.md
CHANGED
package/dist/index.cjs
CHANGED
|
@@ -26,7 +26,7 @@ __export(index_exports, {
|
|
|
26
26
|
module.exports = __toCommonJS(index_exports);
|
|
27
27
|
|
|
28
28
|
// src/constants.ts
|
|
29
|
-
var VERSION = "0.0.
|
|
29
|
+
var VERSION = "0.0.17";
|
|
30
30
|
|
|
31
31
|
// src/types/openapi-dependencies.ts
|
|
32
32
|
var MapNS_Tags = {
|
|
@@ -96,6 +96,7 @@ var MapNS_Tags = {
|
|
|
96
96
|
// TR Request
|
|
97
97
|
"GeoPosition.Longitude": "siri",
|
|
98
98
|
"GeoPosition.Latitude": "siri",
|
|
99
|
+
"Line.LineRef": "siri",
|
|
99
100
|
// SER Request
|
|
100
101
|
"OJPStopEventRequest.RequestTimestamp": "siri",
|
|
101
102
|
"PlaceRef.StopPointRef": "siri"
|
package/dist/index.d.cts
CHANGED
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
declare const VERSION = "0.0.
|
|
1
|
+
declare const VERSION = "0.0.17";
|
|
2
2
|
|
|
3
3
|
interface components$f {
|
|
4
4
|
schemas: {
|
|
@@ -666,6 +666,26 @@ interface components$f {
|
|
|
666
666
|
/** @enum {string} */
|
|
667
667
|
occupancyLevel: "empty" | "manySeatsAvailable" | "fewSeatsAvailable" | "standingRoomOnly";
|
|
668
668
|
};
|
|
669
|
+
LineDirectionStructure: {
|
|
670
|
+
lineRef: string;
|
|
671
|
+
directionRef?: string;
|
|
672
|
+
};
|
|
673
|
+
LineDirectionFilterStructure: {
|
|
674
|
+
line: {
|
|
675
|
+
lineRef: string;
|
|
676
|
+
directionRef?: string;
|
|
677
|
+
}[];
|
|
678
|
+
exclude?: boolean;
|
|
679
|
+
};
|
|
680
|
+
OperatorFilterStructure: {
|
|
681
|
+
exclude?: boolean;
|
|
682
|
+
operatorRef: string[];
|
|
683
|
+
};
|
|
684
|
+
VehicleFilterStructure: {
|
|
685
|
+
exclude?: boolean;
|
|
686
|
+
vehicleRef: string[];
|
|
687
|
+
trainNumber: string[];
|
|
688
|
+
};
|
|
669
689
|
};
|
|
670
690
|
responses: never;
|
|
671
691
|
parameters: never;
|
|
@@ -4938,6 +4958,22 @@ interface components$5 {
|
|
|
4938
4958
|
railSubmode?: string;
|
|
4939
4959
|
waterSubmode?: string;
|
|
4940
4960
|
}[];
|
|
4961
|
+
lineFilter?: {
|
|
4962
|
+
line: {
|
|
4963
|
+
lineRef: string;
|
|
4964
|
+
directionRef?: string;
|
|
4965
|
+
}[];
|
|
4966
|
+
exclude?: boolean;
|
|
4967
|
+
};
|
|
4968
|
+
operatorFilter?: {
|
|
4969
|
+
exclude?: boolean;
|
|
4970
|
+
operatorRef: string[];
|
|
4971
|
+
};
|
|
4972
|
+
vehicleFilter?: {
|
|
4973
|
+
exclude?: boolean;
|
|
4974
|
+
vehicleRef: string[];
|
|
4975
|
+
trainNumber: string[];
|
|
4976
|
+
};
|
|
4941
4977
|
walkSpeed?: number;
|
|
4942
4978
|
numberOfResults?: number;
|
|
4943
4979
|
numberOfResultsBefore?: number;
|
|
@@ -5022,6 +5058,22 @@ interface components$5 {
|
|
|
5022
5058
|
railSubmode?: string;
|
|
5023
5059
|
waterSubmode?: string;
|
|
5024
5060
|
}[];
|
|
5061
|
+
lineFilter?: {
|
|
5062
|
+
line: {
|
|
5063
|
+
lineRef: string;
|
|
5064
|
+
directionRef?: string;
|
|
5065
|
+
}[];
|
|
5066
|
+
exclude?: boolean;
|
|
5067
|
+
};
|
|
5068
|
+
operatorFilter?: {
|
|
5069
|
+
exclude?: boolean;
|
|
5070
|
+
operatorRef: string[];
|
|
5071
|
+
};
|
|
5072
|
+
vehicleFilter?: {
|
|
5073
|
+
exclude?: boolean;
|
|
5074
|
+
vehicleRef: string[];
|
|
5075
|
+
trainNumber: string[];
|
|
5076
|
+
};
|
|
5025
5077
|
walkSpeed?: number;
|
|
5026
5078
|
numberOfResults?: number;
|
|
5027
5079
|
numberOfResultsBefore?: number;
|
|
@@ -5101,6 +5153,22 @@ interface components$5 {
|
|
|
5101
5153
|
railSubmode?: string;
|
|
5102
5154
|
waterSubmode?: string;
|
|
5103
5155
|
}[];
|
|
5156
|
+
lineFilter?: {
|
|
5157
|
+
line: {
|
|
5158
|
+
lineRef: string;
|
|
5159
|
+
directionRef?: string;
|
|
5160
|
+
}[];
|
|
5161
|
+
exclude?: boolean;
|
|
5162
|
+
};
|
|
5163
|
+
operatorFilter?: {
|
|
5164
|
+
exclude?: boolean;
|
|
5165
|
+
operatorRef: string[];
|
|
5166
|
+
};
|
|
5167
|
+
vehicleFilter?: {
|
|
5168
|
+
exclude?: boolean;
|
|
5169
|
+
vehicleRef: string[];
|
|
5170
|
+
trainNumber: string[];
|
|
5171
|
+
};
|
|
5104
5172
|
walkSpeed?: number;
|
|
5105
5173
|
numberOfResults?: number;
|
|
5106
5174
|
numberOfResultsBefore?: number;
|
package/dist/index.d.ts
CHANGED
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
declare const VERSION = "0.0.
|
|
1
|
+
declare const VERSION = "0.0.17";
|
|
2
2
|
|
|
3
3
|
interface components$f {
|
|
4
4
|
schemas: {
|
|
@@ -666,6 +666,26 @@ interface components$f {
|
|
|
666
666
|
/** @enum {string} */
|
|
667
667
|
occupancyLevel: "empty" | "manySeatsAvailable" | "fewSeatsAvailable" | "standingRoomOnly";
|
|
668
668
|
};
|
|
669
|
+
LineDirectionStructure: {
|
|
670
|
+
lineRef: string;
|
|
671
|
+
directionRef?: string;
|
|
672
|
+
};
|
|
673
|
+
LineDirectionFilterStructure: {
|
|
674
|
+
line: {
|
|
675
|
+
lineRef: string;
|
|
676
|
+
directionRef?: string;
|
|
677
|
+
}[];
|
|
678
|
+
exclude?: boolean;
|
|
679
|
+
};
|
|
680
|
+
OperatorFilterStructure: {
|
|
681
|
+
exclude?: boolean;
|
|
682
|
+
operatorRef: string[];
|
|
683
|
+
};
|
|
684
|
+
VehicleFilterStructure: {
|
|
685
|
+
exclude?: boolean;
|
|
686
|
+
vehicleRef: string[];
|
|
687
|
+
trainNumber: string[];
|
|
688
|
+
};
|
|
669
689
|
};
|
|
670
690
|
responses: never;
|
|
671
691
|
parameters: never;
|
|
@@ -4938,6 +4958,22 @@ interface components$5 {
|
|
|
4938
4958
|
railSubmode?: string;
|
|
4939
4959
|
waterSubmode?: string;
|
|
4940
4960
|
}[];
|
|
4961
|
+
lineFilter?: {
|
|
4962
|
+
line: {
|
|
4963
|
+
lineRef: string;
|
|
4964
|
+
directionRef?: string;
|
|
4965
|
+
}[];
|
|
4966
|
+
exclude?: boolean;
|
|
4967
|
+
};
|
|
4968
|
+
operatorFilter?: {
|
|
4969
|
+
exclude?: boolean;
|
|
4970
|
+
operatorRef: string[];
|
|
4971
|
+
};
|
|
4972
|
+
vehicleFilter?: {
|
|
4973
|
+
exclude?: boolean;
|
|
4974
|
+
vehicleRef: string[];
|
|
4975
|
+
trainNumber: string[];
|
|
4976
|
+
};
|
|
4941
4977
|
walkSpeed?: number;
|
|
4942
4978
|
numberOfResults?: number;
|
|
4943
4979
|
numberOfResultsBefore?: number;
|
|
@@ -5022,6 +5058,22 @@ interface components$5 {
|
|
|
5022
5058
|
railSubmode?: string;
|
|
5023
5059
|
waterSubmode?: string;
|
|
5024
5060
|
}[];
|
|
5061
|
+
lineFilter?: {
|
|
5062
|
+
line: {
|
|
5063
|
+
lineRef: string;
|
|
5064
|
+
directionRef?: string;
|
|
5065
|
+
}[];
|
|
5066
|
+
exclude?: boolean;
|
|
5067
|
+
};
|
|
5068
|
+
operatorFilter?: {
|
|
5069
|
+
exclude?: boolean;
|
|
5070
|
+
operatorRef: string[];
|
|
5071
|
+
};
|
|
5072
|
+
vehicleFilter?: {
|
|
5073
|
+
exclude?: boolean;
|
|
5074
|
+
vehicleRef: string[];
|
|
5075
|
+
trainNumber: string[];
|
|
5076
|
+
};
|
|
5025
5077
|
walkSpeed?: number;
|
|
5026
5078
|
numberOfResults?: number;
|
|
5027
5079
|
numberOfResultsBefore?: number;
|
|
@@ -5101,6 +5153,22 @@ interface components$5 {
|
|
|
5101
5153
|
railSubmode?: string;
|
|
5102
5154
|
waterSubmode?: string;
|
|
5103
5155
|
}[];
|
|
5156
|
+
lineFilter?: {
|
|
5157
|
+
line: {
|
|
5158
|
+
lineRef: string;
|
|
5159
|
+
directionRef?: string;
|
|
5160
|
+
}[];
|
|
5161
|
+
exclude?: boolean;
|
|
5162
|
+
};
|
|
5163
|
+
operatorFilter?: {
|
|
5164
|
+
exclude?: boolean;
|
|
5165
|
+
operatorRef: string[];
|
|
5166
|
+
};
|
|
5167
|
+
vehicleFilter?: {
|
|
5168
|
+
exclude?: boolean;
|
|
5169
|
+
vehicleRef: string[];
|
|
5170
|
+
trainNumber: string[];
|
|
5171
|
+
};
|
|
5104
5172
|
walkSpeed?: number;
|
|
5105
5173
|
numberOfResults?: number;
|
|
5106
5174
|
numberOfResultsBefore?: number;
|
package/dist/index.js
CHANGED
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
// src/constants.ts
|
|
2
|
-
var VERSION = "0.0.
|
|
2
|
+
var VERSION = "0.0.17";
|
|
3
3
|
|
|
4
4
|
// src/types/openapi-dependencies.ts
|
|
5
5
|
var MapNS_Tags = {
|
|
@@ -69,6 +69,7 @@ var MapNS_Tags = {
|
|
|
69
69
|
// TR Request
|
|
70
70
|
"GeoPosition.Longitude": "siri",
|
|
71
71
|
"GeoPosition.Latitude": "siri",
|
|
72
|
+
"Line.LineRef": "siri",
|
|
72
73
|
// SER Request
|
|
73
74
|
"OJPStopEventRequest.RequestTimestamp": "siri",
|
|
74
75
|
"PlaceRef.StopPointRef": "siri"
|