@tmlmobilidade/interfaces 20260103.2056.41 → 20260107.1017.44
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.
|
@@ -41,6 +41,8 @@ declare class StopsClass extends MongoCollectionClass<Stop, CreateStopDto, Updat
|
|
|
41
41
|
};
|
|
42
42
|
name: string;
|
|
43
43
|
short_name: string;
|
|
44
|
+
latitude: number;
|
|
45
|
+
longitude: number;
|
|
44
46
|
comments: ({
|
|
45
47
|
created_at: number & {
|
|
46
48
|
__brand: "UnixTimestamp";
|
|
@@ -97,9 +99,7 @@ declare class StopsClass extends MongoCollectionClass<Stop, CreateStopDto, Updat
|
|
|
97
99
|
new_name: string | null;
|
|
98
100
|
tts_name: string;
|
|
99
101
|
district_id: string;
|
|
100
|
-
latitude: number;
|
|
101
102
|
locality_id: string | null;
|
|
102
|
-
longitude: number;
|
|
103
103
|
bench_status: "unknown" | "not_applicable" | "missing" | "damaged" | "ok";
|
|
104
104
|
electricity_status: "unknown" | "available" | "unavailable";
|
|
105
105
|
pole_status: "unknown" | "not_applicable" | "missing" | "damaged" | "ok";
|
|
@@ -139,6 +139,8 @@ declare class StopsClass extends MongoCollectionClass<Stop, CreateStopDto, Updat
|
|
|
139
139
|
};
|
|
140
140
|
name: string;
|
|
141
141
|
short_name: string;
|
|
142
|
+
latitude: number;
|
|
143
|
+
longitude: number;
|
|
142
144
|
comments: ({
|
|
143
145
|
created_at: number & {
|
|
144
146
|
__brand: "UnixTimestamp";
|
|
@@ -195,9 +197,7 @@ declare class StopsClass extends MongoCollectionClass<Stop, CreateStopDto, Updat
|
|
|
195
197
|
new_name: string | null;
|
|
196
198
|
tts_name: string;
|
|
197
199
|
district_id: string;
|
|
198
|
-
latitude: number;
|
|
199
200
|
locality_id: string | null;
|
|
200
|
-
longitude: number;
|
|
201
201
|
bench_status: "unknown" | "not_applicable" | "missing" | "damaged" | "ok";
|
|
202
202
|
electricity_status: "unknown" | "available" | "unavailable";
|
|
203
203
|
pole_status: "unknown" | "not_applicable" | "missing" | "damaged" | "ok";
|