@resolveio/server-lib 4.0.14 → 4.0.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.
|
@@ -130,9 +130,6 @@ var schema = {
|
|
|
130
130
|
user_assigned: {
|
|
131
131
|
type: String
|
|
132
132
|
},
|
|
133
|
-
resolveio_status: {
|
|
134
|
-
type: String
|
|
135
|
-
},
|
|
136
133
|
estimated_billable_hours: {
|
|
137
134
|
type: Number,
|
|
138
135
|
optional: true
|
|
@@ -145,8 +142,7 @@ var schema = {
|
|
|
145
142
|
type: String
|
|
146
143
|
},
|
|
147
144
|
tasks: {
|
|
148
|
-
type: Array
|
|
149
|
-
optional: true
|
|
145
|
+
type: Array
|
|
150
146
|
},
|
|
151
147
|
'tasks.$': {
|
|
152
148
|
type: Object
|
|
@@ -159,11 +155,9 @@ var schema = {
|
|
|
159
155
|
},
|
|
160
156
|
'tasks.$.id_user': {
|
|
161
157
|
type: String,
|
|
162
|
-
optional: true
|
|
163
158
|
},
|
|
164
159
|
'tasks.$.user': {
|
|
165
160
|
type: String,
|
|
166
|
-
optional: true
|
|
167
161
|
},
|
|
168
162
|
'tasks.$.date_created': {
|
|
169
163
|
type: Date
|
|
@@ -172,6 +166,24 @@ var schema = {
|
|
|
172
166
|
type: Date,
|
|
173
167
|
optional: true
|
|
174
168
|
},
|
|
169
|
+
notes: {
|
|
170
|
+
type: Array
|
|
171
|
+
},
|
|
172
|
+
'notes.$': {
|
|
173
|
+
type: Object
|
|
174
|
+
},
|
|
175
|
+
'notes.$.description': {
|
|
176
|
+
type: String
|
|
177
|
+
},
|
|
178
|
+
'notes.$.id_user': {
|
|
179
|
+
type: String,
|
|
180
|
+
},
|
|
181
|
+
'notes.$.user': {
|
|
182
|
+
type: String,
|
|
183
|
+
},
|
|
184
|
+
'notes.$.date_created': {
|
|
185
|
+
type: Date
|
|
186
|
+
}
|
|
175
187
|
};
|
|
176
188
|
var DefaultSchema = new mongoose_1.Schema(schema, {
|
|
177
189
|
skipVersioning: true,
|
|
@@ -22,11 +22,11 @@ export interface SupportTicketModel extends CollectionDocument {
|
|
|
22
22
|
client_user: SupportTicketClientUserModel;
|
|
23
23
|
id_user_assigned: string;
|
|
24
24
|
user_assigned: string;
|
|
25
|
-
resolveio_status: string;
|
|
26
25
|
estimated_billable_hours?: number;
|
|
27
26
|
billable_hours?: number;
|
|
28
27
|
bill_description: string;
|
|
29
|
-
tasks
|
|
28
|
+
tasks: SupportTicketTaskModel[];
|
|
29
|
+
notes: SupportTicketNoteModel[];
|
|
30
30
|
}
|
|
31
31
|
export interface SupportTicketClientUserModel {
|
|
32
32
|
id_user: string;
|
|
@@ -58,4 +58,10 @@ export interface SupportTicketTaskModel {
|
|
|
58
58
|
date_created: Date;
|
|
59
59
|
date_completed?: Date;
|
|
60
60
|
}
|
|
61
|
+
export interface SupportTicketNoteModel extends CollectionDocument {
|
|
62
|
+
description: string;
|
|
63
|
+
id_user: string;
|
|
64
|
+
user: string;
|
|
65
|
+
date_created: Date;
|
|
66
|
+
}
|
|
61
67
|
export {};
|