@resolveio/server-lib 5.2.34 → 5.2.35
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.
|
@@ -124,12 +124,21 @@ var schema = {
|
|
|
124
124
|
'client_user.email': {
|
|
125
125
|
type: String
|
|
126
126
|
},
|
|
127
|
-
|
|
127
|
+
users_assigned: {
|
|
128
|
+
type: Array
|
|
129
|
+
},
|
|
130
|
+
'users_assigned.$': {
|
|
131
|
+
type: Object
|
|
132
|
+
},
|
|
133
|
+
'users_assigned.$.id_user': {
|
|
128
134
|
type: String
|
|
129
135
|
},
|
|
130
|
-
|
|
136
|
+
'users_assigned.$.user': {
|
|
131
137
|
type: String
|
|
132
138
|
},
|
|
139
|
+
'users_assigned.$.date_created': {
|
|
140
|
+
type: Date
|
|
141
|
+
},
|
|
133
142
|
estimated_billable_hours: {
|
|
134
143
|
type: Number,
|
|
135
144
|
optional: true
|
|
@@ -20,8 +20,7 @@ export interface SupportTicketModel extends CollectionDocument {
|
|
|
20
20
|
files: string[];
|
|
21
21
|
current_watchers: SupportTicketWatchersModel[];
|
|
22
22
|
client_user: SupportTicketClientUserModel;
|
|
23
|
-
|
|
24
|
-
user_assigned: string;
|
|
23
|
+
users_assigned: SupportTicketUserAssignedModel[];
|
|
25
24
|
estimated_billable_hours?: number;
|
|
26
25
|
billable_hours?: number;
|
|
27
26
|
bill_description: string;
|
|
@@ -58,10 +57,15 @@ export interface SupportTicketTaskModel {
|
|
|
58
57
|
date_created: Date;
|
|
59
58
|
date_completed?: Date;
|
|
60
59
|
}
|
|
61
|
-
export interface SupportTicketNoteModel
|
|
60
|
+
export interface SupportTicketNoteModel {
|
|
62
61
|
description: string;
|
|
63
62
|
id_user: string;
|
|
64
63
|
user: string;
|
|
65
64
|
date_created: Date;
|
|
66
65
|
}
|
|
66
|
+
export interface SupportTicketUserAssignedModel {
|
|
67
|
+
id_user: string;
|
|
68
|
+
user: string;
|
|
69
|
+
date_created: Date;
|
|
70
|
+
}
|
|
67
71
|
export {};
|