@tmlmobilidade/interfaces 20250917.1116.49 → 20250917.1133.15

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.
@@ -34,7 +34,6 @@ declare class StopsClass extends MongoCollectionClass<Stop, CreateStopDto, Updat
34
34
  municipality_id: string;
35
35
  is_locked: boolean;
36
36
  comments: ({
37
- _id: string;
38
37
  created_at: number & {
39
38
  __brand: "UnixTimestamp";
40
39
  };
@@ -43,10 +42,10 @@ declare class StopsClass extends MongoCollectionClass<Stop, CreateStopDto, Updat
43
42
  };
44
43
  message: string;
45
44
  type: "note";
45
+ _id?: string | undefined;
46
46
  created_by?: string | undefined;
47
47
  updated_by?: string | undefined;
48
48
  } | {
49
- _id: string;
50
49
  created_at: number & {
51
50
  __brand: "UnixTimestamp";
52
51
  };
@@ -55,6 +54,7 @@ declare class StopsClass extends MongoCollectionClass<Stop, CreateStopDto, Updat
55
54
  };
56
55
  type: "field_changed";
57
56
  field: string;
57
+ _id?: string | undefined;
58
58
  created_by?: string | undefined;
59
59
  updated_by?: string | undefined;
60
60
  curr_value?: any;
@@ -121,7 +121,6 @@ declare class StopsClass extends MongoCollectionClass<Stop, CreateStopDto, Updat
121
121
  municipality_id: string;
122
122
  is_locked: boolean;
123
123
  comments: ({
124
- _id: string;
125
124
  created_at: number & {
126
125
  __brand: "UnixTimestamp";
127
126
  };
@@ -130,10 +129,10 @@ declare class StopsClass extends MongoCollectionClass<Stop, CreateStopDto, Updat
130
129
  };
131
130
  message: string;
132
131
  type: "note";
132
+ _id?: string | undefined;
133
133
  created_by?: string | undefined;
134
134
  updated_by?: string | undefined;
135
135
  } | {
136
- _id: string;
137
136
  created_at: number & {
138
137
  __brand: "UnixTimestamp";
139
138
  };
@@ -142,6 +141,7 @@ declare class StopsClass extends MongoCollectionClass<Stop, CreateStopDto, Updat
142
141
  };
143
142
  type: "field_changed";
144
143
  field: string;
144
+ _id?: string | undefined;
145
145
  created_by?: string | undefined;
146
146
  updated_by?: string | undefined;
147
147
  curr_value?: any;
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@tmlmobilidade/interfaces",
3
- "version": "20250917.1116.49",
3
+ "version": "20250917.1133.15",
4
4
  "author": "João de Vasconcelos & Jusi Monteiro",
5
5
  "license": "AGPL-3.0-or-later",
6
6
  "homepage": "https://github.com/tmlmobilidade/services#readme",