@tmlmobilidade/types 20250915.1116.6 → 20250915.1306.2

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.
@@ -1,12 +1,11 @@
1
- import { type UnixTimestamp } from './unix-timestamp.js';
2
1
  import { z } from 'zod';
3
2
  export declare const CommentTypeSchema: z.ZodEnum<["statusChanged", "note", "system_info"]>;
4
3
  export type CommentType = z.infer<typeof CommentTypeSchema>;
5
4
  export declare const NoteCommentSchema: z.ZodObject<{
6
5
  _id: z.ZodString;
7
- created_at: z.ZodEffects<z.ZodNumber, UnixTimestamp, number>;
6
+ created_at: z.ZodEffects<z.ZodNumber, import("./unix-timestamp.js").UnixTimestamp, number>;
8
7
  created_by: z.ZodOptional<z.ZodString>;
9
- updated_at: z.ZodEffects<z.ZodNumber, UnixTimestamp, number>;
8
+ updated_at: z.ZodEffects<z.ZodNumber, import("./unix-timestamp.js").UnixTimestamp, number>;
10
9
  updated_by: z.ZodOptional<z.ZodString>;
11
10
  } & {
12
11
  message: z.ZodString;
@@ -34,8 +33,8 @@ export declare const NoteCommentSchema: z.ZodObject<{
34
33
  }>;
35
34
  export declare const SystemInfoCommentSchema: z.ZodObject<{
36
35
  _id: z.ZodString;
37
- created_at: z.ZodEffects<z.ZodNumber, UnixTimestamp, number>;
38
- updated_at: z.ZodEffects<z.ZodNumber, UnixTimestamp, number>;
36
+ created_at: z.ZodEffects<z.ZodNumber, import("./unix-timestamp.js").UnixTimestamp, number>;
37
+ updated_at: z.ZodEffects<z.ZodNumber, import("./unix-timestamp.js").UnixTimestamp, number>;
39
38
  } & {
40
39
  created_by: z.ZodLiteral<"system">;
41
40
  message: z.ZodString;
@@ -64,9 +63,9 @@ export declare const SystemInfoCommentSchema: z.ZodObject<{
64
63
  }>;
65
64
  export declare const StatusChangedCommentSchema: z.ZodObject<{
66
65
  _id: z.ZodString;
67
- created_at: z.ZodEffects<z.ZodNumber, UnixTimestamp, number>;
66
+ created_at: z.ZodEffects<z.ZodNumber, import("./unix-timestamp.js").UnixTimestamp, number>;
68
67
  created_by: z.ZodOptional<z.ZodString>;
69
- updated_at: z.ZodEffects<z.ZodNumber, UnixTimestamp, number>;
68
+ updated_at: z.ZodEffects<z.ZodNumber, import("./unix-timestamp.js").UnixTimestamp, number>;
70
69
  updated_by: z.ZodOptional<z.ZodString>;
71
70
  } & {
72
71
  curr_status: z.ZodString;
@@ -97,9 +96,9 @@ export declare const StatusChangedCommentSchema: z.ZodObject<{
97
96
  }>;
98
97
  export declare const CommentSchema: z.ZodEffects<z.ZodDiscriminatedUnion<"type", [z.ZodObject<{
99
98
  _id: z.ZodString;
100
- created_at: z.ZodEffects<z.ZodNumber, UnixTimestamp, number>;
99
+ created_at: z.ZodEffects<z.ZodNumber, import("./unix-timestamp.js").UnixTimestamp, number>;
101
100
  created_by: z.ZodOptional<z.ZodString>;
102
- updated_at: z.ZodEffects<z.ZodNumber, UnixTimestamp, number>;
101
+ updated_at: z.ZodEffects<z.ZodNumber, import("./unix-timestamp.js").UnixTimestamp, number>;
103
102
  updated_by: z.ZodOptional<z.ZodString>;
104
103
  } & {
105
104
  message: z.ZodString;
@@ -126,8 +125,8 @@ export declare const CommentSchema: z.ZodEffects<z.ZodDiscriminatedUnion<"type",
126
125
  updated_by?: string | undefined;
127
126
  }>, z.ZodObject<{
128
127
  _id: z.ZodString;
129
- created_at: z.ZodEffects<z.ZodNumber, UnixTimestamp, number>;
130
- updated_at: z.ZodEffects<z.ZodNumber, UnixTimestamp, number>;
128
+ created_at: z.ZodEffects<z.ZodNumber, import("./unix-timestamp.js").UnixTimestamp, number>;
129
+ updated_at: z.ZodEffects<z.ZodNumber, import("./unix-timestamp.js").UnixTimestamp, number>;
131
130
  } & {
132
131
  created_by: z.ZodLiteral<"system">;
133
132
  message: z.ZodString;
@@ -155,9 +154,9 @@ export declare const CommentSchema: z.ZodEffects<z.ZodDiscriminatedUnion<"type",
155
154
  type: "system_info";
156
155
  }>, z.ZodObject<{
157
156
  _id: z.ZodString;
158
- created_at: z.ZodEffects<z.ZodNumber, UnixTimestamp, number>;
157
+ created_at: z.ZodEffects<z.ZodNumber, import("./unix-timestamp.js").UnixTimestamp, number>;
159
158
  created_by: z.ZodOptional<z.ZodString>;
160
- updated_at: z.ZodEffects<z.ZodNumber, UnixTimestamp, number>;
159
+ updated_at: z.ZodEffects<z.ZodNumber, import("./unix-timestamp.js").UnixTimestamp, number>;
161
160
  updated_by: z.ZodOptional<z.ZodString>;
162
161
  } & {
163
162
  curr_status: z.ZodString;
@@ -248,9 +247,6 @@ export declare const CommentSchema: z.ZodEffects<z.ZodDiscriminatedUnion<"type",
248
247
  created_by?: string | undefined;
249
248
  updated_by?: string | undefined;
250
249
  }>;
251
- export interface Comment extends Omit<z.infer<typeof CommentSchema>, 'created_at' | 'updated_at'> {
252
- created_at: UnixTimestamp;
253
- updated_at: UnixTimestamp;
254
- }
255
- export type CreateCommentDto = Omit<z.infer<typeof CommentSchema>, 'created_at' | 'updated_at'>;
256
- export type UpdateCommentDto = Partial<Omit<CreateCommentDto, 'created_by'>>;
250
+ export type Comment = z.infer<typeof CommentSchema>;
251
+ export type CreateCommentDto = z.infer<typeof CommentSchema>;
252
+ export type UpdateCommentDto = Partial<CreateCommentDto>;
@@ -15,7 +15,7 @@ export declare const UserSchema: z.ZodObject<{
15
15
  email_verified: z.ZodOptional<z.ZodNullable<z.ZodEffects<z.ZodNumber, import("../_common/unix-timestamp.js").UnixTimestamp, number>>>;
16
16
  first_name: z.ZodString;
17
17
  last_name: z.ZodString;
18
- organization_ids: z.ZodDefault<z.ZodArray<z.ZodString, "many">>;
18
+ organization_id: z.ZodOptional<z.ZodNullable<z.ZodString>>;
19
19
  password_hash: z.ZodOptional<z.ZodNullable<z.ZodString>>;
20
20
  permissions: z.ZodArray<z.ZodObject<{
21
21
  action: z.ZodString;
@@ -52,7 +52,6 @@ export declare const UserSchema: z.ZodObject<{
52
52
  }[];
53
53
  first_name: string;
54
54
  last_name: string;
55
- organization_ids: string[];
56
55
  role_ids: string[];
57
56
  session_ids: string[];
58
57
  verification_token_ids: string[];
@@ -62,6 +61,7 @@ export declare const UserSchema: z.ZodObject<{
62
61
  avatar?: string | null | undefined;
63
62
  bio?: string | null | undefined;
64
63
  email_verified?: import("../_common/unix-timestamp.js").UnixTimestamp | null | undefined;
64
+ organization_id?: string | null | undefined;
65
65
  password_hash?: string | null | undefined;
66
66
  preferences?: Record<string, Record<string, string | number | boolean | string[] | number[]>> | null | undefined;
67
67
  theme_id?: string | null | undefined;
@@ -83,7 +83,7 @@ export declare const UserSchema: z.ZodObject<{
83
83
  avatar?: string | null | undefined;
84
84
  bio?: string | null | undefined;
85
85
  email_verified?: number | null | undefined;
86
- organization_ids?: string[] | undefined;
86
+ organization_id?: string | null | undefined;
87
87
  password_hash?: string | null | undefined;
88
88
  preferences?: Record<string, Record<string, string | number | boolean | string[] | number[]>> | null | undefined;
89
89
  role_ids?: string[] | undefined;
@@ -104,7 +104,7 @@ export declare const CreateUserSchema: z.ZodObject<Omit<{
104
104
  email_verified: z.ZodOptional<z.ZodNullable<z.ZodEffects<z.ZodNumber, import("../_common/unix-timestamp.js").UnixTimestamp, number>>>;
105
105
  first_name: z.ZodString;
106
106
  last_name: z.ZodString;
107
- organization_ids: z.ZodDefault<z.ZodArray<z.ZodString, "many">>;
107
+ organization_id: z.ZodOptional<z.ZodNullable<z.ZodString>>;
108
108
  password_hash: z.ZodOptional<z.ZodNullable<z.ZodString>>;
109
109
  permissions: z.ZodArray<z.ZodObject<{
110
110
  action: z.ZodString;
@@ -134,7 +134,6 @@ export declare const CreateUserSchema: z.ZodObject<Omit<{
134
134
  }[];
135
135
  first_name: string;
136
136
  last_name: string;
137
- organization_ids: string[];
138
137
  role_ids: string[];
139
138
  session_ids: string[];
140
139
  verification_token_ids: string[];
@@ -144,6 +143,7 @@ export declare const CreateUserSchema: z.ZodObject<Omit<{
144
143
  avatar?: string | null | undefined;
145
144
  bio?: string | null | undefined;
146
145
  email_verified?: import("../_common/unix-timestamp.js").UnixTimestamp | null | undefined;
146
+ organization_id?: string | null | undefined;
147
147
  password_hash?: string | null | undefined;
148
148
  preferences?: Record<string, Record<string, string | number | boolean | string[] | number[]>> | null | undefined;
149
149
  theme_id?: string | null | undefined;
@@ -162,7 +162,7 @@ export declare const CreateUserSchema: z.ZodObject<Omit<{
162
162
  avatar?: string | null | undefined;
163
163
  bio?: string | null | undefined;
164
164
  email_verified?: number | null | undefined;
165
- organization_ids?: string[] | undefined;
165
+ organization_id?: string | null | undefined;
166
166
  password_hash?: string | null | undefined;
167
167
  preferences?: Record<string, Record<string, string | number | boolean | string[] | number[]>> | null | undefined;
168
168
  role_ids?: string[] | undefined;
@@ -192,7 +192,7 @@ export declare const UpdateUserSchema: z.ZodObject<{
192
192
  email_verified: z.ZodOptional<z.ZodOptional<z.ZodNullable<z.ZodEffects<z.ZodNumber, import("../_common/unix-timestamp.js").UnixTimestamp, number>>>>;
193
193
  first_name: z.ZodOptional<z.ZodString>;
194
194
  last_name: z.ZodOptional<z.ZodString>;
195
- organization_ids: z.ZodOptional<z.ZodDefault<z.ZodArray<z.ZodString, "many">>>;
195
+ organization_id: z.ZodOptional<z.ZodOptional<z.ZodNullable<z.ZodString>>>;
196
196
  password_hash: z.ZodOptional<z.ZodOptional<z.ZodNullable<z.ZodString>>>;
197
197
  preferences: z.ZodOptional<z.ZodOptional<z.ZodNullable<z.ZodRecord<z.ZodString, z.ZodRecord<z.ZodString, z.ZodUnion<[z.ZodString, z.ZodNumber, z.ZodBoolean, z.ZodArray<z.ZodString, "many">, z.ZodArray<z.ZodNumber, "many">]>>>>>>;
198
198
  role_ids: z.ZodOptional<z.ZodDefault<z.ZodArray<z.ZodString, "many">>>;
@@ -213,7 +213,7 @@ export declare const UpdateUserSchema: z.ZodObject<{
213
213
  email_verified?: import("../_common/unix-timestamp.js").UnixTimestamp | null | undefined;
214
214
  first_name?: string | undefined;
215
215
  last_name?: string | undefined;
216
- organization_ids?: string[] | undefined;
216
+ organization_id?: string | null | undefined;
217
217
  password_hash?: string | null | undefined;
218
218
  preferences?: Record<string, Record<string, string | number | boolean | string[] | number[]>> | null | undefined;
219
219
  role_ids?: string[] | undefined;
@@ -234,7 +234,7 @@ export declare const UpdateUserSchema: z.ZodObject<{
234
234
  email_verified?: number | null | undefined;
235
235
  first_name?: string | undefined;
236
236
  last_name?: string | undefined;
237
- organization_ids?: string[] | undefined;
237
+ organization_id?: string | null | undefined;
238
238
  password_hash?: string | null | undefined;
239
239
  preferences?: Record<string, Record<string, string | number | boolean | string[] | number[]>> | null | undefined;
240
240
  role_ids?: string[] | undefined;
@@ -19,7 +19,7 @@ export const UserSchema = DocumentSchema.extend({
19
19
  email_verified: unixTimeStampSchema.nullish(),
20
20
  first_name: z.string().nonempty(),
21
21
  last_name: z.string().nonempty(),
22
- organization_ids: z.array(z.string()).default([]),
22
+ organization_id: z.string().nullish(),
23
23
  password_hash: z.string().nullish(),
24
24
  permissions: z.array(PermissionSchema),
25
25
  phone: z.string().nullish(),
@@ -1,4 +1,6 @@
1
1
  import { z } from 'zod';
2
+ export declare const OrganizationValueSchema: z.ZodUnion<[z.ZodString, z.ZodString, z.ZodBoolean, z.ZodArray<z.ZodString, "many">, z.ZodArray<z.ZodString, "many">, z.ZodString]>;
3
+ export type OrganizationValue = z.infer<typeof OrganizationValueSchema>;
2
4
  export declare const OrganizationSchema: z.ZodObject<{
3
5
  _id: z.ZodString;
4
6
  created_at: z.ZodEffects<z.ZodNumber, import("./_common/unix-timestamp.js").UnixTimestamp, number>;
@@ -6,8 +8,12 @@ export declare const OrganizationSchema: z.ZodObject<{
6
8
  updated_at: z.ZodEffects<z.ZodNumber, import("./_common/unix-timestamp.js").UnixTimestamp, number>;
7
9
  updated_by: z.ZodOptional<z.ZodString>;
8
10
  } & {
9
- code: z.ZodString;
10
- name: z.ZodString;
11
+ home_links: z.ZodDefault<z.ZodArray<z.ZodString, "many">>;
12
+ home_wikis: z.ZodDefault<z.ZodArray<z.ZodString, "many">>;
13
+ logo: z.ZodOptional<z.ZodNullable<z.ZodString>>;
14
+ longname: z.ZodString;
15
+ shortname: z.ZodString;
16
+ theme: z.ZodOptional<z.ZodNullable<z.ZodString>>;
11
17
  }, "strict", z.ZodTypeAny, {
12
18
  _id: string;
13
19
  created_at: number & {
@@ -16,18 +22,26 @@ export declare const OrganizationSchema: z.ZodObject<{
16
22
  updated_at: number & {
17
23
  __brand: "UnixTimestamp";
18
24
  };
19
- code: string;
20
- name: string;
25
+ home_links: string[];
26
+ home_wikis: string[];
27
+ longname: string;
28
+ shortname: string;
21
29
  created_by?: string | undefined;
22
30
  updated_by?: string | undefined;
31
+ logo?: string | null | undefined;
32
+ theme?: string | null | undefined;
23
33
  }, {
24
34
  _id: string;
25
35
  created_at: number;
26
36
  updated_at: number;
27
- code: string;
28
- name: string;
37
+ longname: string;
38
+ shortname: string;
29
39
  created_by?: string | undefined;
30
40
  updated_by?: string | undefined;
41
+ home_links?: string[] | undefined;
42
+ home_wikis?: string[] | undefined;
43
+ logo?: string | null | undefined;
44
+ theme?: string | null | undefined;
31
45
  }>;
32
46
  export declare const CreateOrganizationSchema: z.ZodObject<Omit<{
33
47
  _id: z.ZodString;
@@ -36,31 +50,55 @@ export declare const CreateOrganizationSchema: z.ZodObject<Omit<{
36
50
  updated_at: z.ZodEffects<z.ZodNumber, import("./_common/unix-timestamp.js").UnixTimestamp, number>;
37
51
  updated_by: z.ZodOptional<z.ZodString>;
38
52
  } & {
39
- code: z.ZodString;
40
- name: z.ZodString;
53
+ home_links: z.ZodDefault<z.ZodArray<z.ZodString, "many">>;
54
+ home_wikis: z.ZodDefault<z.ZodArray<z.ZodString, "many">>;
55
+ logo: z.ZodOptional<z.ZodNullable<z.ZodString>>;
56
+ longname: z.ZodString;
57
+ shortname: z.ZodString;
58
+ theme: z.ZodOptional<z.ZodNullable<z.ZodString>>;
41
59
  }, "_id" | "created_at" | "updated_at">, "strict", z.ZodTypeAny, {
42
- code: string;
43
- name: string;
60
+ home_links: string[];
61
+ home_wikis: string[];
62
+ longname: string;
63
+ shortname: string;
44
64
  created_by?: string | undefined;
45
65
  updated_by?: string | undefined;
66
+ logo?: string | null | undefined;
67
+ theme?: string | null | undefined;
46
68
  }, {
47
- code: string;
48
- name: string;
69
+ longname: string;
70
+ shortname: string;
49
71
  created_by?: string | undefined;
50
72
  updated_by?: string | undefined;
73
+ home_links?: string[] | undefined;
74
+ home_wikis?: string[] | undefined;
75
+ logo?: string | null | undefined;
76
+ theme?: string | null | undefined;
51
77
  }>;
52
78
  export declare const UpdateOrganizationSchema: z.ZodObject<{
53
79
  updated_by: z.ZodOptional<z.ZodOptional<z.ZodString>>;
54
- code: z.ZodOptional<z.ZodString>;
55
- name: z.ZodOptional<z.ZodString>;
80
+ home_links: z.ZodOptional<z.ZodDefault<z.ZodArray<z.ZodString, "many">>>;
81
+ home_wikis: z.ZodOptional<z.ZodDefault<z.ZodArray<z.ZodString, "many">>>;
82
+ logo: z.ZodOptional<z.ZodOptional<z.ZodNullable<z.ZodString>>>;
83
+ longname: z.ZodOptional<z.ZodString>;
84
+ shortname: z.ZodOptional<z.ZodString>;
85
+ theme: z.ZodOptional<z.ZodOptional<z.ZodNullable<z.ZodString>>>;
56
86
  }, "strict", z.ZodTypeAny, {
57
87
  updated_by?: string | undefined;
58
- code?: string | undefined;
59
- name?: string | undefined;
88
+ home_links?: string[] | undefined;
89
+ home_wikis?: string[] | undefined;
90
+ logo?: string | null | undefined;
91
+ longname?: string | undefined;
92
+ shortname?: string | undefined;
93
+ theme?: string | null | undefined;
60
94
  }, {
61
95
  updated_by?: string | undefined;
62
- code?: string | undefined;
63
- name?: string | undefined;
96
+ home_links?: string[] | undefined;
97
+ home_wikis?: string[] | undefined;
98
+ logo?: string | null | undefined;
99
+ longname?: string | undefined;
100
+ shortname?: string | undefined;
101
+ theme?: string | null | undefined;
64
102
  }>;
65
103
  export type Organization = z.infer<typeof OrganizationSchema>;
66
104
  export type CreateOrganizationDto = z.infer<typeof CreateOrganizationSchema>;
@@ -2,9 +2,22 @@
2
2
  import { DocumentSchema } from './_common/document.js';
3
3
  import { z } from 'zod';
4
4
  /* * */
5
+ export const OrganizationValueSchema = z.union([
6
+ z.string(),
7
+ z.string(),
8
+ z.boolean(),
9
+ z.array(z.string()),
10
+ z.array(z.string()),
11
+ z.string(),
12
+ ]);
13
+ /* * */
5
14
  export const OrganizationSchema = DocumentSchema.extend({
6
- code: z.string(),
7
- name: z.string(),
15
+ home_links: z.array(z.string()).default([]),
16
+ home_wikis: z.array(z.string()).default([]),
17
+ logo: z.string().nullish(),
18
+ longname: z.string().nonempty(),
19
+ shortname: z.string().nonempty(),
20
+ theme: z.string().nullish(),
8
21
  }).strict();
9
22
  export const CreateOrganizationSchema = OrganizationSchema.omit({ _id: true, created_at: true, updated_at: true });
10
23
  export const UpdateOrganizationSchema = CreateOrganizationSchema.omit({ created_by: true }).partial();
@@ -8,6 +8,222 @@ export type RideJustificationCause = z.infer<typeof RideJustificationCauseSchema
8
8
  export declare const RIDE_JUSTIFICATION_SOURCE_OPTIONS: readonly ["MANUAL", "REALTIME_ALERT"];
9
9
  export declare const RideJustificationSourceSchema: z.ZodEnum<["MANUAL", "REALTIME_ALERT"]>;
10
10
  export type RideJustificationSource = z.infer<typeof RideJustificationSourceSchema>;
11
+ declare const CommentSchemaWithRideJustificationStatus: z.ZodEffects<z.ZodEffects<z.ZodDiscriminatedUnion<"type", [z.ZodObject<{
12
+ _id: z.ZodString;
13
+ created_at: z.ZodEffects<z.ZodNumber, import("../_common/unix-timestamp.js").UnixTimestamp, number>;
14
+ created_by: z.ZodOptional<z.ZodString>;
15
+ updated_at: z.ZodEffects<z.ZodNumber, import("../_common/unix-timestamp.js").UnixTimestamp, number>;
16
+ updated_by: z.ZodOptional<z.ZodString>;
17
+ } & {
18
+ message: z.ZodString;
19
+ type: z.ZodLiteral<"note">;
20
+ }, "strip", z.ZodTypeAny, {
21
+ _id: string;
22
+ created_at: number & {
23
+ __brand: "UnixTimestamp";
24
+ };
25
+ updated_at: number & {
26
+ __brand: "UnixTimestamp";
27
+ };
28
+ message: string;
29
+ type: "note";
30
+ created_by?: string | undefined;
31
+ updated_by?: string | undefined;
32
+ }, {
33
+ _id: string;
34
+ created_at: number;
35
+ updated_at: number;
36
+ message: string;
37
+ type: "note";
38
+ created_by?: string | undefined;
39
+ updated_by?: string | undefined;
40
+ }>, z.ZodObject<{
41
+ _id: z.ZodString;
42
+ created_at: z.ZodEffects<z.ZodNumber, import("../_common/unix-timestamp.js").UnixTimestamp, number>;
43
+ updated_at: z.ZodEffects<z.ZodNumber, import("../_common/unix-timestamp.js").UnixTimestamp, number>;
44
+ } & {
45
+ created_by: z.ZodLiteral<"system">;
46
+ message: z.ZodString;
47
+ type: z.ZodLiteral<"system_info">;
48
+ updated_by: z.ZodLiteral<"system">;
49
+ }, "strip", z.ZodTypeAny, {
50
+ _id: string;
51
+ created_at: number & {
52
+ __brand: "UnixTimestamp";
53
+ };
54
+ created_by: "system";
55
+ updated_at: number & {
56
+ __brand: "UnixTimestamp";
57
+ };
58
+ updated_by: "system";
59
+ message: string;
60
+ type: "system_info";
61
+ }, {
62
+ _id: string;
63
+ created_at: number;
64
+ created_by: "system";
65
+ updated_at: number;
66
+ updated_by: "system";
67
+ message: string;
68
+ type: "system_info";
69
+ }>, z.ZodObject<{
70
+ _id: z.ZodString;
71
+ created_at: z.ZodEffects<z.ZodNumber, import("../_common/unix-timestamp.js").UnixTimestamp, number>;
72
+ created_by: z.ZodOptional<z.ZodString>;
73
+ updated_at: z.ZodEffects<z.ZodNumber, import("../_common/unix-timestamp.js").UnixTimestamp, number>;
74
+ updated_by: z.ZodOptional<z.ZodString>;
75
+ } & {
76
+ curr_status: z.ZodString;
77
+ prev_status: z.ZodString;
78
+ type: z.ZodLiteral<"statusChanged">;
79
+ }, "strip", z.ZodTypeAny, {
80
+ _id: string;
81
+ created_at: number & {
82
+ __brand: "UnixTimestamp";
83
+ };
84
+ updated_at: number & {
85
+ __brand: "UnixTimestamp";
86
+ };
87
+ type: "statusChanged";
88
+ curr_status: string;
89
+ prev_status: string;
90
+ created_by?: string | undefined;
91
+ updated_by?: string | undefined;
92
+ }, {
93
+ _id: string;
94
+ created_at: number;
95
+ updated_at: number;
96
+ type: "statusChanged";
97
+ curr_status: string;
98
+ prev_status: string;
99
+ created_by?: string | undefined;
100
+ updated_by?: string | undefined;
101
+ }>]>, {
102
+ _id: string;
103
+ created_at: number & {
104
+ __brand: "UnixTimestamp";
105
+ };
106
+ updated_at: number & {
107
+ __brand: "UnixTimestamp";
108
+ };
109
+ message: string;
110
+ type: "note";
111
+ created_by?: string | undefined;
112
+ updated_by?: string | undefined;
113
+ } | {
114
+ _id: string;
115
+ created_at: number & {
116
+ __brand: "UnixTimestamp";
117
+ };
118
+ created_by: "system";
119
+ updated_at: number & {
120
+ __brand: "UnixTimestamp";
121
+ };
122
+ updated_by: "system";
123
+ message: string;
124
+ type: "system_info";
125
+ } | {
126
+ _id: string;
127
+ created_at: number & {
128
+ __brand: "UnixTimestamp";
129
+ };
130
+ updated_at: number & {
131
+ __brand: "UnixTimestamp";
132
+ };
133
+ type: "statusChanged";
134
+ curr_status: string;
135
+ prev_status: string;
136
+ created_by?: string | undefined;
137
+ updated_by?: string | undefined;
138
+ }, {
139
+ _id: string;
140
+ created_at: number;
141
+ updated_at: number;
142
+ message: string;
143
+ type: "note";
144
+ created_by?: string | undefined;
145
+ updated_by?: string | undefined;
146
+ } | {
147
+ _id: string;
148
+ created_at: number;
149
+ created_by: "system";
150
+ updated_at: number;
151
+ updated_by: "system";
152
+ message: string;
153
+ type: "system_info";
154
+ } | {
155
+ _id: string;
156
+ created_at: number;
157
+ updated_at: number;
158
+ type: "statusChanged";
159
+ curr_status: string;
160
+ prev_status: string;
161
+ created_by?: string | undefined;
162
+ updated_by?: string | undefined;
163
+ }>, {
164
+ _id: string;
165
+ created_at: number & {
166
+ __brand: "UnixTimestamp";
167
+ };
168
+ updated_at: number & {
169
+ __brand: "UnixTimestamp";
170
+ };
171
+ message: string;
172
+ type: "note";
173
+ created_by?: string | undefined;
174
+ updated_by?: string | undefined;
175
+ } | {
176
+ _id: string;
177
+ created_at: number & {
178
+ __brand: "UnixTimestamp";
179
+ };
180
+ created_by: "system";
181
+ updated_at: number & {
182
+ __brand: "UnixTimestamp";
183
+ };
184
+ updated_by: "system";
185
+ message: string;
186
+ type: "system_info";
187
+ } | {
188
+ _id: string;
189
+ created_at: number & {
190
+ __brand: "UnixTimestamp";
191
+ };
192
+ updated_at: number & {
193
+ __brand: "UnixTimestamp";
194
+ };
195
+ type: "statusChanged";
196
+ curr_status: string;
197
+ prev_status: string;
198
+ created_by?: string | undefined;
199
+ updated_by?: string | undefined;
200
+ }, {
201
+ _id: string;
202
+ created_at: number;
203
+ updated_at: number;
204
+ message: string;
205
+ type: "note";
206
+ created_by?: string | undefined;
207
+ updated_by?: string | undefined;
208
+ } | {
209
+ _id: string;
210
+ created_at: number;
211
+ created_by: "system";
212
+ updated_at: number;
213
+ updated_by: "system";
214
+ message: string;
215
+ type: "system_info";
216
+ } | {
217
+ _id: string;
218
+ created_at: number;
219
+ updated_at: number;
220
+ type: "statusChanged";
221
+ curr_status: string;
222
+ prev_status: string;
223
+ created_by?: string | undefined;
224
+ updated_by?: string | undefined;
225
+ }>;
226
+ export type RideJustificationComment = z.infer<typeof CommentSchemaWithRideJustificationStatus>;
11
227
  export declare const RideJustificationSchema: z.ZodObject<{
12
228
  _id: z.ZodString;
13
229
  created_at: z.ZodEffects<z.ZodNumber, import("../_common/unix-timestamp.js").UnixTimestamp, number>;
@@ -994,3 +1210,4 @@ export declare const UpdateRideJustificationSchema: z.ZodObject<{
994
1210
  export type RideJustification = z.infer<typeof RideJustificationSchema>;
995
1211
  export type CreateRideJustificationDto = z.infer<typeof CreateRideJustificationSchema>;
996
1212
  export type UpdateRideJustificationDto = z.infer<typeof UpdateRideJustificationSchema>;
1213
+ export {};
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@tmlmobilidade/types",
3
- "version": "20250915.1116.6",
3
+ "version": "20250915.1306.2",
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",