@tmlmobilidade/interfaces 20250915.1331.9 → 20250915.1518.13
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.
|
@@ -45,6 +45,7 @@ declare class StopsClass extends MongoCollectionClass<Stop, CreateStopDto, Updat
|
|
|
45
45
|
type: "note";
|
|
46
46
|
created_by?: string | undefined;
|
|
47
47
|
updated_by?: string | undefined;
|
|
48
|
+
metadata?: Record<string, unknown> | null | undefined;
|
|
48
49
|
} | {
|
|
49
50
|
_id: string;
|
|
50
51
|
created_at: number & {
|
|
@@ -57,6 +58,7 @@ declare class StopsClass extends MongoCollectionClass<Stop, CreateStopDto, Updat
|
|
|
57
58
|
updated_by: "system";
|
|
58
59
|
message: string;
|
|
59
60
|
type: "system_info";
|
|
61
|
+
metadata?: Record<string, unknown> | null | undefined;
|
|
60
62
|
} | {
|
|
61
63
|
_id: string;
|
|
62
64
|
created_at: number & {
|
|
@@ -65,11 +67,12 @@ declare class StopsClass extends MongoCollectionClass<Stop, CreateStopDto, Updat
|
|
|
65
67
|
updated_at: number & {
|
|
66
68
|
__brand: "UnixTimestamp";
|
|
67
69
|
};
|
|
68
|
-
type: "
|
|
69
|
-
curr_status: string;
|
|
70
|
-
prev_status: string;
|
|
70
|
+
type: "status_changed";
|
|
71
|
+
curr_status: string | boolean;
|
|
72
|
+
prev_status: string | boolean;
|
|
71
73
|
created_by?: string | undefined;
|
|
72
74
|
updated_by?: string | undefined;
|
|
75
|
+
metadata?: Record<string, unknown> | null | undefined;
|
|
73
76
|
})[];
|
|
74
77
|
is_archived: boolean;
|
|
75
78
|
jurisdiction: "unknown" | "ip" | "municipality" | "other";
|
|
@@ -142,6 +145,7 @@ declare class StopsClass extends MongoCollectionClass<Stop, CreateStopDto, Updat
|
|
|
142
145
|
type: "note";
|
|
143
146
|
created_by?: string | undefined;
|
|
144
147
|
updated_by?: string | undefined;
|
|
148
|
+
metadata?: Record<string, unknown> | null | undefined;
|
|
145
149
|
} | {
|
|
146
150
|
_id: string;
|
|
147
151
|
created_at: number & {
|
|
@@ -154,6 +158,7 @@ declare class StopsClass extends MongoCollectionClass<Stop, CreateStopDto, Updat
|
|
|
154
158
|
updated_by: "system";
|
|
155
159
|
message: string;
|
|
156
160
|
type: "system_info";
|
|
161
|
+
metadata?: Record<string, unknown> | null | undefined;
|
|
157
162
|
} | {
|
|
158
163
|
_id: string;
|
|
159
164
|
created_at: number & {
|
|
@@ -162,11 +167,12 @@ declare class StopsClass extends MongoCollectionClass<Stop, CreateStopDto, Updat
|
|
|
162
167
|
updated_at: number & {
|
|
163
168
|
__brand: "UnixTimestamp";
|
|
164
169
|
};
|
|
165
|
-
type: "
|
|
166
|
-
curr_status: string;
|
|
167
|
-
prev_status: string;
|
|
170
|
+
type: "status_changed";
|
|
171
|
+
curr_status: string | boolean;
|
|
172
|
+
prev_status: string | boolean;
|
|
168
173
|
created_by?: string | undefined;
|
|
169
174
|
updated_by?: string | undefined;
|
|
175
|
+
metadata?: Record<string, unknown> | null | undefined;
|
|
170
176
|
})[];
|
|
171
177
|
is_archived: boolean;
|
|
172
178
|
jurisdiction: "unknown" | "ip" | "municipality" | "other";
|
package/package.json
CHANGED