@tmlmobilidade/types 20260703.1528.12 → 20260706.931.16
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.
|
@@ -30,6 +30,7 @@ export declare const FlatStopSchema: z.ZodObject<{
|
|
|
30
30
|
latitude: z.ZodNumber;
|
|
31
31
|
locality_id: z.ZodDefault<z.ZodNullable<z.ZodString>>;
|
|
32
32
|
longitude: z.ZodNumber;
|
|
33
|
+
municapility_name: z.ZodOptional<z.ZodString>;
|
|
33
34
|
municipality_id: z.ZodString;
|
|
34
35
|
parish_id: z.ZodDefault<z.ZodNullable<z.ZodString>>;
|
|
35
36
|
bench_status: z.ZodDefault<z.ZodEnum<["not_applicable", "unknown", "missing", "damaged", "ok"]>>;
|
|
@@ -103,6 +104,7 @@ export declare const FlatStopSchema: z.ZodObject<{
|
|
|
103
104
|
has_schedules: "unknown" | "available" | "unavailable";
|
|
104
105
|
has_shelter: "unknown" | "available" | "unavailable";
|
|
105
106
|
has_stop_sign: "unknown" | "available" | "unavailable";
|
|
107
|
+
municapility_name?: string | undefined;
|
|
106
108
|
}, {
|
|
107
109
|
_id: number;
|
|
108
110
|
name: string;
|
|
@@ -125,6 +127,7 @@ export declare const FlatStopSchema: z.ZodObject<{
|
|
|
125
127
|
new_name?: string | null | undefined;
|
|
126
128
|
previous_go_id?: string | null | undefined;
|
|
127
129
|
locality_id?: string | null | undefined;
|
|
130
|
+
municapility_name?: string | undefined;
|
|
128
131
|
parish_id?: string | null | undefined;
|
|
129
132
|
bench_status?: "unknown" | "not_applicable" | "missing" | "damaged" | "ok" | undefined;
|
|
130
133
|
electricity_status?: "unknown" | "available" | "unavailable" | undefined;
|
|
@@ -31,6 +31,7 @@ export const FlatStopSchema = z.object({
|
|
|
31
31
|
latitude: z.number(),
|
|
32
32
|
locality_id: z.string().nullable().default(null),
|
|
33
33
|
longitude: z.number(),
|
|
34
|
+
municapility_name: z.string().optional(),
|
|
34
35
|
municipality_id: z.string(),
|
|
35
36
|
parish_id: z.string().nullable().default(null),
|
|
36
37
|
/* INFRASTRUCTURE */
|