@tmlmobilidade/interfaces 20260424.1050.20 → 20260429.1713.40
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.
|
@@ -143,6 +143,13 @@ declare class PatternsClass extends MongoCollectionClass<Pattern, CreatePatternD
|
|
|
143
143
|
short_name: string;
|
|
144
144
|
latitude: number;
|
|
145
145
|
longitude: number;
|
|
146
|
+
associated_patterns: {
|
|
147
|
+
_id: string;
|
|
148
|
+
code: string;
|
|
149
|
+
line_id: string;
|
|
150
|
+
headsign: string;
|
|
151
|
+
route_id: string;
|
|
152
|
+
}[];
|
|
146
153
|
comments: ({
|
|
147
154
|
created_at: number & {
|
|
148
155
|
__brand: "UnixTimestamp";
|
|
@@ -51,6 +51,13 @@ declare class StopsClass extends MongoCollectionClass<Stop, CreateStopDto, Updat
|
|
|
51
51
|
short_name: string;
|
|
52
52
|
latitude: number;
|
|
53
53
|
longitude: number;
|
|
54
|
+
associated_patterns: {
|
|
55
|
+
_id: string;
|
|
56
|
+
code: string;
|
|
57
|
+
line_id: string;
|
|
58
|
+
headsign: string;
|
|
59
|
+
route_id: string;
|
|
60
|
+
}[];
|
|
54
61
|
comments: ({
|
|
55
62
|
created_at: number & {
|
|
56
63
|
__brand: "UnixTimestamp";
|
|
@@ -163,6 +170,13 @@ declare class StopsClass extends MongoCollectionClass<Stop, CreateStopDto, Updat
|
|
|
163
170
|
short_name: string;
|
|
164
171
|
latitude: number;
|
|
165
172
|
longitude: number;
|
|
173
|
+
associated_patterns: {
|
|
174
|
+
_id: string;
|
|
175
|
+
code: string;
|
|
176
|
+
line_id: string;
|
|
177
|
+
headsign: string;
|
|
178
|
+
route_id: string;
|
|
179
|
+
}[];
|
|
166
180
|
comments: ({
|
|
167
181
|
created_at: number & {
|
|
168
182
|
__brand: "UnixTimestamp";
|