@tmlmobilidade/types 20260714.1632.21 → 20260714.1654.38
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/stops/stop.d.ts +9 -0
- package/dist/stops/stop.js +1 -0
- package/package.json +1 -1
package/dist/stops/stop.d.ts
CHANGED
|
@@ -32,6 +32,7 @@ export declare const StopSchema: z.ZodObject<{
|
|
|
32
32
|
new_name: z.ZodDefault<z.ZodNullable<z.ZodString>>;
|
|
33
33
|
previous_go_id: z.ZodDefault<z.ZodNullable<z.ZodString>>;
|
|
34
34
|
short_name: z.ZodString;
|
|
35
|
+
tts_hash: z.ZodString;
|
|
35
36
|
tts_name: z.ZodString;
|
|
36
37
|
district_id: z.ZodString;
|
|
37
38
|
latitude: z.ZodNumber;
|
|
@@ -405,6 +406,7 @@ export declare const StopSchema: z.ZodObject<{
|
|
|
405
406
|
has_stop_sign: "unknown" | "available" | "unavailable";
|
|
406
407
|
observations: string | null;
|
|
407
408
|
is_deleted: boolean;
|
|
409
|
+
tts_hash: string;
|
|
408
410
|
file_ids: string[];
|
|
409
411
|
image_ids: string[];
|
|
410
412
|
updated_by?: string | undefined;
|
|
@@ -419,6 +421,7 @@ export declare const StopSchema: z.ZodObject<{
|
|
|
419
421
|
latitude: number;
|
|
420
422
|
longitude: number;
|
|
421
423
|
municipality_id: string;
|
|
424
|
+
tts_hash: string;
|
|
422
425
|
created_by?: string | null | undefined;
|
|
423
426
|
is_locked?: boolean | undefined;
|
|
424
427
|
updated_by?: string | undefined;
|
|
@@ -539,6 +542,7 @@ export declare const CreateStopSchema: z.ZodObject<Omit<{
|
|
|
539
542
|
new_name: z.ZodDefault<z.ZodNullable<z.ZodString>>;
|
|
540
543
|
previous_go_id: z.ZodDefault<z.ZodNullable<z.ZodString>>;
|
|
541
544
|
short_name: z.ZodString;
|
|
545
|
+
tts_hash: z.ZodString;
|
|
542
546
|
tts_name: z.ZodString;
|
|
543
547
|
district_id: z.ZodString;
|
|
544
548
|
latitude: z.ZodNumber;
|
|
@@ -898,6 +902,7 @@ export declare const CreateStopSchema: z.ZodObject<Omit<{
|
|
|
898
902
|
has_stop_sign: "unknown" | "available" | "unavailable";
|
|
899
903
|
observations: string | null;
|
|
900
904
|
is_deleted: boolean;
|
|
905
|
+
tts_hash: string;
|
|
901
906
|
file_ids: string[];
|
|
902
907
|
image_ids: string[];
|
|
903
908
|
updated_by?: string | undefined;
|
|
@@ -909,6 +914,7 @@ export declare const CreateStopSchema: z.ZodObject<Omit<{
|
|
|
909
914
|
latitude: number;
|
|
910
915
|
longitude: number;
|
|
911
916
|
municipality_id: string;
|
|
917
|
+
tts_hash: string;
|
|
912
918
|
created_by?: string | null | undefined;
|
|
913
919
|
is_locked?: boolean | undefined;
|
|
914
920
|
updated_by?: string | undefined;
|
|
@@ -1259,6 +1265,7 @@ export declare const UpdateStopSchema: z.ZodObject<{
|
|
|
1259
1265
|
has_stop_sign: z.ZodOptional<z.ZodDefault<z.ZodEnum<["available", "unavailable", "unknown"]>>>;
|
|
1260
1266
|
observations: z.ZodOptional<z.ZodDefault<z.ZodNullable<z.ZodString>>>;
|
|
1261
1267
|
is_deleted: z.ZodOptional<z.ZodDefault<z.ZodBoolean>>;
|
|
1268
|
+
tts_hash: z.ZodOptional<z.ZodString>;
|
|
1262
1269
|
file_ids: z.ZodOptional<z.ZodDefault<z.ZodArray<z.ZodString, "many">>>;
|
|
1263
1270
|
image_ids: z.ZodOptional<z.ZodDefault<z.ZodArray<z.ZodString, "many">>>;
|
|
1264
1271
|
}, "strip", z.ZodTypeAny, {
|
|
@@ -1357,6 +1364,7 @@ export declare const UpdateStopSchema: z.ZodObject<{
|
|
|
1357
1364
|
has_stop_sign?: "unknown" | "available" | "unavailable" | undefined;
|
|
1358
1365
|
observations?: string | null | undefined;
|
|
1359
1366
|
is_deleted?: boolean | undefined;
|
|
1367
|
+
tts_hash?: string | undefined;
|
|
1360
1368
|
file_ids?: string[] | undefined;
|
|
1361
1369
|
image_ids?: string[] | undefined;
|
|
1362
1370
|
}, {
|
|
@@ -1443,6 +1451,7 @@ export declare const UpdateStopSchema: z.ZodObject<{
|
|
|
1443
1451
|
has_stop_sign?: "unknown" | "available" | "unavailable" | undefined;
|
|
1444
1452
|
observations?: string | null | undefined;
|
|
1445
1453
|
is_deleted?: boolean | undefined;
|
|
1454
|
+
tts_hash?: string | undefined;
|
|
1446
1455
|
file_ids?: string[] | undefined;
|
|
1447
1456
|
image_ids?: string[] | undefined;
|
|
1448
1457
|
}>;
|
package/dist/stops/stop.js
CHANGED
|
@@ -23,6 +23,7 @@ export const StopSchema = DocumentSchema.extend({
|
|
|
23
23
|
new_name: z.string().min(5).max(100).nullable().default(null),
|
|
24
24
|
previous_go_id: z.string().nullable().default(null),
|
|
25
25
|
short_name: z.string().min(2).max(55),
|
|
26
|
+
tts_hash: z.string(),
|
|
26
27
|
tts_name: z.string(),
|
|
27
28
|
//
|
|
28
29
|
// Location
|