c2-clinical 1.0.104 → 1.0.106
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.
- package/dist/flow/group/GroupFormUnitsFlow.d.ts +2 -2
- package/dist/flow/group/item/BuildTreeFlowItem.d.ts +4 -2
- package/dist/flow/group/item/BuildTreeFlowItem.js +105 -23
- package/dist/models/Recurrence.d.ts +462 -3
- package/dist/models/anamnese/Anamnese.d.ts +81 -9
- package/dist/models/anamnese/AnamneseAnswer.d.ts +108 -12
- package/dist/models/anthropometry/Anthropometry.d.ts +84 -12
- package/dist/models/anthropometry/AnthropometryAnswer.d.ts +81 -9
- package/dist/models/form/Form.d.ts +3 -3
- package/dist/models/form/FormUnit.d.ts +159 -67
- package/dist/models/patient/Address.d.ts +3 -3
- package/dist/models/patient/City.d.ts +3 -3
- package/dist/models/patient/Patient.d.ts +42 -42
- package/dist/models/patient/Phone.d.ts +6 -6
- package/dist/models/qa/QA.d.ts +120 -24
- package/dist/models/qa/QAAnswer.d.ts +108 -12
- package/dist/models/qa/QAProgramming.d.ts +555 -24
- package/dist/models/qpc/QPC.d.ts +54 -6
- package/dist/models/qpc/QPCAnswer.d.ts +81 -9
- package/package.json +2 -2
|
@@ -24,15 +24,15 @@ export interface IPatient extends IDefault {
|
|
|
24
24
|
export declare const PatientAppConfigSchema: Schema<any, import("mongoose").Model<any, any, any, any, any, any>, {}, {}, {}, {}, {
|
|
25
25
|
_id: false;
|
|
26
26
|
}, {
|
|
27
|
-
accessEnable?:
|
|
27
|
+
accessEnable?: boolean | null | undefined;
|
|
28
28
|
accessCode?: string | null | undefined;
|
|
29
29
|
accessExpireDate?: NativeDate | null | undefined;
|
|
30
30
|
}, import("mongoose").Document<unknown, {}, import("mongoose").FlatRecord<{
|
|
31
|
-
accessEnable?:
|
|
31
|
+
accessEnable?: boolean | null | undefined;
|
|
32
32
|
accessCode?: string | null | undefined;
|
|
33
33
|
accessExpireDate?: NativeDate | null | undefined;
|
|
34
34
|
}>, {}> & import("mongoose").FlatRecord<{
|
|
35
|
-
accessEnable?:
|
|
35
|
+
accessEnable?: boolean | null | undefined;
|
|
36
36
|
accessCode?: string | null | undefined;
|
|
37
37
|
accessExpireDate?: NativeDate | null | undefined;
|
|
38
38
|
}> & {
|
|
@@ -46,32 +46,32 @@ export declare const PatientSchema: Schema<any, import("mongoose").Model<any, an
|
|
|
46
46
|
updatedAt: string;
|
|
47
47
|
};
|
|
48
48
|
}, {} & {
|
|
49
|
-
account:
|
|
50
|
-
active:
|
|
49
|
+
account: import("mongoose").Types.ObjectId;
|
|
50
|
+
active: boolean;
|
|
51
51
|
fullName: string;
|
|
52
52
|
bornDate: NativeDate;
|
|
53
53
|
phones: import("mongoose").Types.DocumentArray<{} & {
|
|
54
|
-
active:
|
|
54
|
+
active: boolean;
|
|
55
55
|
countryCode: string;
|
|
56
|
-
isWhatsapp:
|
|
56
|
+
isWhatsapp: boolean;
|
|
57
57
|
number?: string | null | undefined;
|
|
58
58
|
description?: string | null | undefined;
|
|
59
59
|
}, import("mongoose").Types.Subdocument<import("mongoose").Types.ObjectId, any, {} & {
|
|
60
|
-
active:
|
|
60
|
+
active: boolean;
|
|
61
61
|
countryCode: string;
|
|
62
|
-
isWhatsapp:
|
|
62
|
+
isWhatsapp: boolean;
|
|
63
63
|
number?: string | null | undefined;
|
|
64
64
|
description?: string | null | undefined;
|
|
65
65
|
}> & {} & {
|
|
66
|
-
active:
|
|
66
|
+
active: boolean;
|
|
67
67
|
countryCode: string;
|
|
68
|
-
isWhatsapp:
|
|
68
|
+
isWhatsapp: boolean;
|
|
69
69
|
number?: string | null | undefined;
|
|
70
70
|
description?: string | null | undefined;
|
|
71
71
|
}>;
|
|
72
72
|
socialId: string;
|
|
73
73
|
tags: string[];
|
|
74
|
-
sendEmailAsWelcome:
|
|
74
|
+
sendEmailAsWelcome: boolean;
|
|
75
75
|
addresses: import("mongoose").Types.DocumentArray<{
|
|
76
76
|
description: string;
|
|
77
77
|
number?: string | null | undefined;
|
|
@@ -82,7 +82,7 @@ export declare const PatientSchema: Schema<any, import("mongoose").Model<any, an
|
|
|
82
82
|
typeNeighborhood?: string | null | undefined;
|
|
83
83
|
typeStreet?: string | null | undefined;
|
|
84
84
|
cityCodeIbge?: string | null | undefined;
|
|
85
|
-
city?:
|
|
85
|
+
city?: import("mongoose").Types.ObjectId | null | undefined;
|
|
86
86
|
}, import("mongoose").Types.Subdocument<import("mongoose").Types.ObjectId, any, {
|
|
87
87
|
description: string;
|
|
88
88
|
number?: string | null | undefined;
|
|
@@ -93,7 +93,7 @@ export declare const PatientSchema: Schema<any, import("mongoose").Model<any, an
|
|
|
93
93
|
typeNeighborhood?: string | null | undefined;
|
|
94
94
|
typeStreet?: string | null | undefined;
|
|
95
95
|
cityCodeIbge?: string | null | undefined;
|
|
96
|
-
city?:
|
|
96
|
+
city?: import("mongoose").Types.ObjectId | null | undefined;
|
|
97
97
|
}> & {
|
|
98
98
|
description: string;
|
|
99
99
|
number?: string | null | undefined;
|
|
@@ -104,42 +104,42 @@ export declare const PatientSchema: Schema<any, import("mongoose").Model<any, an
|
|
|
104
104
|
typeNeighborhood?: string | null | undefined;
|
|
105
105
|
typeStreet?: string | null | undefined;
|
|
106
106
|
cityCodeIbge?: string | null | undefined;
|
|
107
|
-
city?:
|
|
107
|
+
city?: import("mongoose").Types.ObjectId | null | undefined;
|
|
108
108
|
}>;
|
|
109
109
|
genre?: string | null | undefined;
|
|
110
110
|
email?: string | null | undefined;
|
|
111
111
|
appConfig?: {
|
|
112
|
-
accessEnable?:
|
|
112
|
+
accessEnable?: boolean | null | undefined;
|
|
113
113
|
accessCode?: string | null | undefined;
|
|
114
114
|
accessExpireDate?: NativeDate | null | undefined;
|
|
115
115
|
} | null | undefined;
|
|
116
116
|
}, import("mongoose").Document<unknown, {}, import("mongoose").FlatRecord<{} & {
|
|
117
|
-
account:
|
|
118
|
-
active:
|
|
117
|
+
account: import("mongoose").Types.ObjectId;
|
|
118
|
+
active: boolean;
|
|
119
119
|
fullName: string;
|
|
120
120
|
bornDate: NativeDate;
|
|
121
121
|
phones: import("mongoose").Types.DocumentArray<{} & {
|
|
122
|
-
active:
|
|
122
|
+
active: boolean;
|
|
123
123
|
countryCode: string;
|
|
124
|
-
isWhatsapp:
|
|
124
|
+
isWhatsapp: boolean;
|
|
125
125
|
number?: string | null | undefined;
|
|
126
126
|
description?: string | null | undefined;
|
|
127
127
|
}, import("mongoose").Types.Subdocument<import("mongoose").Types.ObjectId, any, {} & {
|
|
128
|
-
active:
|
|
128
|
+
active: boolean;
|
|
129
129
|
countryCode: string;
|
|
130
|
-
isWhatsapp:
|
|
130
|
+
isWhatsapp: boolean;
|
|
131
131
|
number?: string | null | undefined;
|
|
132
132
|
description?: string | null | undefined;
|
|
133
133
|
}> & {} & {
|
|
134
|
-
active:
|
|
134
|
+
active: boolean;
|
|
135
135
|
countryCode: string;
|
|
136
|
-
isWhatsapp:
|
|
136
|
+
isWhatsapp: boolean;
|
|
137
137
|
number?: string | null | undefined;
|
|
138
138
|
description?: string | null | undefined;
|
|
139
139
|
}>;
|
|
140
140
|
socialId: string;
|
|
141
141
|
tags: string[];
|
|
142
|
-
sendEmailAsWelcome:
|
|
142
|
+
sendEmailAsWelcome: boolean;
|
|
143
143
|
addresses: import("mongoose").Types.DocumentArray<{
|
|
144
144
|
description: string;
|
|
145
145
|
number?: string | null | undefined;
|
|
@@ -150,7 +150,7 @@ export declare const PatientSchema: Schema<any, import("mongoose").Model<any, an
|
|
|
150
150
|
typeNeighborhood?: string | null | undefined;
|
|
151
151
|
typeStreet?: string | null | undefined;
|
|
152
152
|
cityCodeIbge?: string | null | undefined;
|
|
153
|
-
city?:
|
|
153
|
+
city?: import("mongoose").Types.ObjectId | null | undefined;
|
|
154
154
|
}, import("mongoose").Types.Subdocument<import("mongoose").Types.ObjectId, any, {
|
|
155
155
|
description: string;
|
|
156
156
|
number?: string | null | undefined;
|
|
@@ -161,7 +161,7 @@ export declare const PatientSchema: Schema<any, import("mongoose").Model<any, an
|
|
|
161
161
|
typeNeighborhood?: string | null | undefined;
|
|
162
162
|
typeStreet?: string | null | undefined;
|
|
163
163
|
cityCodeIbge?: string | null | undefined;
|
|
164
|
-
city?:
|
|
164
|
+
city?: import("mongoose").Types.ObjectId | null | undefined;
|
|
165
165
|
}> & {
|
|
166
166
|
description: string;
|
|
167
167
|
number?: string | null | undefined;
|
|
@@ -172,42 +172,42 @@ export declare const PatientSchema: Schema<any, import("mongoose").Model<any, an
|
|
|
172
172
|
typeNeighborhood?: string | null | undefined;
|
|
173
173
|
typeStreet?: string | null | undefined;
|
|
174
174
|
cityCodeIbge?: string | null | undefined;
|
|
175
|
-
city?:
|
|
175
|
+
city?: import("mongoose").Types.ObjectId | null | undefined;
|
|
176
176
|
}>;
|
|
177
177
|
genre?: string | null | undefined;
|
|
178
178
|
email?: string | null | undefined;
|
|
179
179
|
appConfig?: {
|
|
180
|
-
accessEnable?:
|
|
180
|
+
accessEnable?: boolean | null | undefined;
|
|
181
181
|
accessCode?: string | null | undefined;
|
|
182
182
|
accessExpireDate?: NativeDate | null | undefined;
|
|
183
183
|
} | null | undefined;
|
|
184
184
|
}>, {}> & import("mongoose").FlatRecord<{} & {
|
|
185
|
-
account:
|
|
186
|
-
active:
|
|
185
|
+
account: import("mongoose").Types.ObjectId;
|
|
186
|
+
active: boolean;
|
|
187
187
|
fullName: string;
|
|
188
188
|
bornDate: NativeDate;
|
|
189
189
|
phones: import("mongoose").Types.DocumentArray<{} & {
|
|
190
|
-
active:
|
|
190
|
+
active: boolean;
|
|
191
191
|
countryCode: string;
|
|
192
|
-
isWhatsapp:
|
|
192
|
+
isWhatsapp: boolean;
|
|
193
193
|
number?: string | null | undefined;
|
|
194
194
|
description?: string | null | undefined;
|
|
195
195
|
}, import("mongoose").Types.Subdocument<import("mongoose").Types.ObjectId, any, {} & {
|
|
196
|
-
active:
|
|
196
|
+
active: boolean;
|
|
197
197
|
countryCode: string;
|
|
198
|
-
isWhatsapp:
|
|
198
|
+
isWhatsapp: boolean;
|
|
199
199
|
number?: string | null | undefined;
|
|
200
200
|
description?: string | null | undefined;
|
|
201
201
|
}> & {} & {
|
|
202
|
-
active:
|
|
202
|
+
active: boolean;
|
|
203
203
|
countryCode: string;
|
|
204
|
-
isWhatsapp:
|
|
204
|
+
isWhatsapp: boolean;
|
|
205
205
|
number?: string | null | undefined;
|
|
206
206
|
description?: string | null | undefined;
|
|
207
207
|
}>;
|
|
208
208
|
socialId: string;
|
|
209
209
|
tags: string[];
|
|
210
|
-
sendEmailAsWelcome:
|
|
210
|
+
sendEmailAsWelcome: boolean;
|
|
211
211
|
addresses: import("mongoose").Types.DocumentArray<{
|
|
212
212
|
description: string;
|
|
213
213
|
number?: string | null | undefined;
|
|
@@ -218,7 +218,7 @@ export declare const PatientSchema: Schema<any, import("mongoose").Model<any, an
|
|
|
218
218
|
typeNeighborhood?: string | null | undefined;
|
|
219
219
|
typeStreet?: string | null | undefined;
|
|
220
220
|
cityCodeIbge?: string | null | undefined;
|
|
221
|
-
city?:
|
|
221
|
+
city?: import("mongoose").Types.ObjectId | null | undefined;
|
|
222
222
|
}, import("mongoose").Types.Subdocument<import("mongoose").Types.ObjectId, any, {
|
|
223
223
|
description: string;
|
|
224
224
|
number?: string | null | undefined;
|
|
@@ -229,7 +229,7 @@ export declare const PatientSchema: Schema<any, import("mongoose").Model<any, an
|
|
|
229
229
|
typeNeighborhood?: string | null | undefined;
|
|
230
230
|
typeStreet?: string | null | undefined;
|
|
231
231
|
cityCodeIbge?: string | null | undefined;
|
|
232
|
-
city?:
|
|
232
|
+
city?: import("mongoose").Types.ObjectId | null | undefined;
|
|
233
233
|
}> & {
|
|
234
234
|
description: string;
|
|
235
235
|
number?: string | null | undefined;
|
|
@@ -240,12 +240,12 @@ export declare const PatientSchema: Schema<any, import("mongoose").Model<any, an
|
|
|
240
240
|
typeNeighborhood?: string | null | undefined;
|
|
241
241
|
typeStreet?: string | null | undefined;
|
|
242
242
|
cityCodeIbge?: string | null | undefined;
|
|
243
|
-
city?:
|
|
243
|
+
city?: import("mongoose").Types.ObjectId | null | undefined;
|
|
244
244
|
}>;
|
|
245
245
|
genre?: string | null | undefined;
|
|
246
246
|
email?: string | null | undefined;
|
|
247
247
|
appConfig?: {
|
|
248
|
-
accessEnable?:
|
|
248
|
+
accessEnable?: boolean | null | undefined;
|
|
249
249
|
accessCode?: string | null | undefined;
|
|
250
250
|
accessExpireDate?: NativeDate | null | undefined;
|
|
251
251
|
} | null | undefined;
|
|
@@ -13,21 +13,21 @@ export declare const PhoneSchema: mongoose.Schema<any, mongoose.Model<any, any,
|
|
|
13
13
|
};
|
|
14
14
|
_id: false;
|
|
15
15
|
}, {} & {
|
|
16
|
-
active:
|
|
16
|
+
active: boolean;
|
|
17
17
|
countryCode: string;
|
|
18
|
-
isWhatsapp:
|
|
18
|
+
isWhatsapp: boolean;
|
|
19
19
|
number?: string | null | undefined;
|
|
20
20
|
description?: string | null | undefined;
|
|
21
21
|
}, mongoose.Document<unknown, {}, mongoose.FlatRecord<{} & {
|
|
22
|
-
active:
|
|
22
|
+
active: boolean;
|
|
23
23
|
countryCode: string;
|
|
24
|
-
isWhatsapp:
|
|
24
|
+
isWhatsapp: boolean;
|
|
25
25
|
number?: string | null | undefined;
|
|
26
26
|
description?: string | null | undefined;
|
|
27
27
|
}>, {}> & mongoose.FlatRecord<{} & {
|
|
28
|
-
active:
|
|
28
|
+
active: boolean;
|
|
29
29
|
countryCode: string;
|
|
30
|
-
isWhatsapp:
|
|
30
|
+
isWhatsapp: boolean;
|
|
31
31
|
number?: string | null | undefined;
|
|
32
32
|
description?: string | null | undefined;
|
|
33
33
|
}> & {
|
package/dist/models/qa/QA.d.ts
CHANGED
|
@@ -25,45 +25,141 @@ export declare const QASchema: Schema<any, import("mongoose").Model<any, any, an
|
|
|
25
25
|
updatedAt: string;
|
|
26
26
|
};
|
|
27
27
|
}, {} & {
|
|
28
|
-
account:
|
|
29
|
-
|
|
30
|
-
|
|
31
|
-
|
|
28
|
+
account: {
|
|
29
|
+
prototype?: Types.ObjectId | null | undefined;
|
|
30
|
+
cacheHexString?: unknown;
|
|
31
|
+
generate?: {} | null | undefined;
|
|
32
|
+
createFromTime?: {} | null | undefined;
|
|
33
|
+
createFromHexString?: {} | null | undefined;
|
|
34
|
+
createFromBase64?: {} | null | undefined;
|
|
35
|
+
isValid?: {} | null | undefined;
|
|
36
|
+
};
|
|
37
|
+
form: {
|
|
38
|
+
prototype?: Types.ObjectId | null | undefined;
|
|
39
|
+
cacheHexString?: unknown;
|
|
40
|
+
generate?: {} | null | undefined;
|
|
41
|
+
createFromTime?: {} | null | undefined;
|
|
42
|
+
createFromHexString?: {} | null | undefined;
|
|
43
|
+
createFromBase64?: {} | null | undefined;
|
|
44
|
+
isValid?: {} | null | undefined;
|
|
45
|
+
};
|
|
46
|
+
patient: {
|
|
47
|
+
prototype?: Types.ObjectId | null | undefined;
|
|
48
|
+
cacheHexString?: unknown;
|
|
49
|
+
generate?: {} | null | undefined;
|
|
50
|
+
createFromTime?: {} | null | undefined;
|
|
51
|
+
createFromHexString?: {} | null | undefined;
|
|
52
|
+
createFromBase64?: {} | null | undefined;
|
|
53
|
+
isValid?: {} | null | undefined;
|
|
54
|
+
};
|
|
55
|
+
canceled: boolean;
|
|
32
56
|
sendAppointmentDateTime: NativeDate;
|
|
33
|
-
sent:
|
|
34
|
-
sentRemember:
|
|
35
|
-
blocked:
|
|
57
|
+
sent: boolean;
|
|
58
|
+
sentRemember: boolean;
|
|
59
|
+
blocked: boolean;
|
|
36
60
|
code?: string | null | undefined;
|
|
37
61
|
answeredDateTime?: NativeDate | null | undefined;
|
|
38
|
-
programming?:
|
|
62
|
+
programming?: {
|
|
63
|
+
prototype?: Types.ObjectId | null | undefined;
|
|
64
|
+
cacheHexString?: unknown;
|
|
65
|
+
generate?: {} | null | undefined;
|
|
66
|
+
createFromTime?: {} | null | undefined;
|
|
67
|
+
createFromHexString?: {} | null | undefined;
|
|
68
|
+
createFromBase64?: {} | null | undefined;
|
|
69
|
+
isValid?: {} | null | undefined;
|
|
70
|
+
} | null | undefined;
|
|
39
71
|
sendRememberDateTime?: NativeDate | null | undefined;
|
|
40
72
|
dueDateTime?: NativeDate | null | undefined;
|
|
41
73
|
}, import("mongoose").Document<unknown, {}, import("mongoose").FlatRecord<{} & {
|
|
42
|
-
account:
|
|
43
|
-
|
|
44
|
-
|
|
45
|
-
|
|
74
|
+
account: {
|
|
75
|
+
prototype?: Types.ObjectId | null | undefined;
|
|
76
|
+
cacheHexString?: unknown;
|
|
77
|
+
generate?: {} | null | undefined;
|
|
78
|
+
createFromTime?: {} | null | undefined;
|
|
79
|
+
createFromHexString?: {} | null | undefined;
|
|
80
|
+
createFromBase64?: {} | null | undefined;
|
|
81
|
+
isValid?: {} | null | undefined;
|
|
82
|
+
};
|
|
83
|
+
form: {
|
|
84
|
+
prototype?: Types.ObjectId | null | undefined;
|
|
85
|
+
cacheHexString?: unknown;
|
|
86
|
+
generate?: {} | null | undefined;
|
|
87
|
+
createFromTime?: {} | null | undefined;
|
|
88
|
+
createFromHexString?: {} | null | undefined;
|
|
89
|
+
createFromBase64?: {} | null | undefined;
|
|
90
|
+
isValid?: {} | null | undefined;
|
|
91
|
+
};
|
|
92
|
+
patient: {
|
|
93
|
+
prototype?: Types.ObjectId | null | undefined;
|
|
94
|
+
cacheHexString?: unknown;
|
|
95
|
+
generate?: {} | null | undefined;
|
|
96
|
+
createFromTime?: {} | null | undefined;
|
|
97
|
+
createFromHexString?: {} | null | undefined;
|
|
98
|
+
createFromBase64?: {} | null | undefined;
|
|
99
|
+
isValid?: {} | null | undefined;
|
|
100
|
+
};
|
|
101
|
+
canceled: boolean;
|
|
46
102
|
sendAppointmentDateTime: NativeDate;
|
|
47
|
-
sent:
|
|
48
|
-
sentRemember:
|
|
49
|
-
blocked:
|
|
103
|
+
sent: boolean;
|
|
104
|
+
sentRemember: boolean;
|
|
105
|
+
blocked: boolean;
|
|
50
106
|
code?: string | null | undefined;
|
|
51
107
|
answeredDateTime?: NativeDate | null | undefined;
|
|
52
|
-
programming?:
|
|
108
|
+
programming?: {
|
|
109
|
+
prototype?: Types.ObjectId | null | undefined;
|
|
110
|
+
cacheHexString?: unknown;
|
|
111
|
+
generate?: {} | null | undefined;
|
|
112
|
+
createFromTime?: {} | null | undefined;
|
|
113
|
+
createFromHexString?: {} | null | undefined;
|
|
114
|
+
createFromBase64?: {} | null | undefined;
|
|
115
|
+
isValid?: {} | null | undefined;
|
|
116
|
+
} | null | undefined;
|
|
53
117
|
sendRememberDateTime?: NativeDate | null | undefined;
|
|
54
118
|
dueDateTime?: NativeDate | null | undefined;
|
|
55
119
|
}>, {}> & import("mongoose").FlatRecord<{} & {
|
|
56
|
-
account:
|
|
57
|
-
|
|
58
|
-
|
|
59
|
-
|
|
120
|
+
account: {
|
|
121
|
+
prototype?: Types.ObjectId | null | undefined;
|
|
122
|
+
cacheHexString?: unknown;
|
|
123
|
+
generate?: {} | null | undefined;
|
|
124
|
+
createFromTime?: {} | null | undefined;
|
|
125
|
+
createFromHexString?: {} | null | undefined;
|
|
126
|
+
createFromBase64?: {} | null | undefined;
|
|
127
|
+
isValid?: {} | null | undefined;
|
|
128
|
+
};
|
|
129
|
+
form: {
|
|
130
|
+
prototype?: Types.ObjectId | null | undefined;
|
|
131
|
+
cacheHexString?: unknown;
|
|
132
|
+
generate?: {} | null | undefined;
|
|
133
|
+
createFromTime?: {} | null | undefined;
|
|
134
|
+
createFromHexString?: {} | null | undefined;
|
|
135
|
+
createFromBase64?: {} | null | undefined;
|
|
136
|
+
isValid?: {} | null | undefined;
|
|
137
|
+
};
|
|
138
|
+
patient: {
|
|
139
|
+
prototype?: Types.ObjectId | null | undefined;
|
|
140
|
+
cacheHexString?: unknown;
|
|
141
|
+
generate?: {} | null | undefined;
|
|
142
|
+
createFromTime?: {} | null | undefined;
|
|
143
|
+
createFromHexString?: {} | null | undefined;
|
|
144
|
+
createFromBase64?: {} | null | undefined;
|
|
145
|
+
isValid?: {} | null | undefined;
|
|
146
|
+
};
|
|
147
|
+
canceled: boolean;
|
|
60
148
|
sendAppointmentDateTime: NativeDate;
|
|
61
|
-
sent:
|
|
62
|
-
sentRemember:
|
|
63
|
-
blocked:
|
|
149
|
+
sent: boolean;
|
|
150
|
+
sentRemember: boolean;
|
|
151
|
+
blocked: boolean;
|
|
64
152
|
code?: string | null | undefined;
|
|
65
153
|
answeredDateTime?: NativeDate | null | undefined;
|
|
66
|
-
programming?:
|
|
154
|
+
programming?: {
|
|
155
|
+
prototype?: Types.ObjectId | null | undefined;
|
|
156
|
+
cacheHexString?: unknown;
|
|
157
|
+
generate?: {} | null | undefined;
|
|
158
|
+
createFromTime?: {} | null | undefined;
|
|
159
|
+
createFromHexString?: {} | null | undefined;
|
|
160
|
+
createFromBase64?: {} | null | undefined;
|
|
161
|
+
isValid?: {} | null | undefined;
|
|
162
|
+
} | null | undefined;
|
|
67
163
|
sendRememberDateTime?: NativeDate | null | undefined;
|
|
68
164
|
dueDateTime?: NativeDate | null | undefined;
|
|
69
165
|
}> & {
|
|
@@ -12,9 +12,33 @@ export declare const QAAnswerSchema: Schema<any, import("mongoose").Model<any, a
|
|
|
12
12
|
updatedAt: string;
|
|
13
13
|
};
|
|
14
14
|
}, {} & {
|
|
15
|
-
account:
|
|
16
|
-
|
|
17
|
-
|
|
15
|
+
account: {
|
|
16
|
+
prototype?: Types.ObjectId | null | undefined;
|
|
17
|
+
cacheHexString?: unknown;
|
|
18
|
+
generate?: {} | null | undefined;
|
|
19
|
+
createFromTime?: {} | null | undefined;
|
|
20
|
+
createFromHexString?: {} | null | undefined;
|
|
21
|
+
createFromBase64?: {} | null | undefined;
|
|
22
|
+
isValid?: {} | null | undefined;
|
|
23
|
+
};
|
|
24
|
+
reference: {
|
|
25
|
+
prototype?: Types.ObjectId | null | undefined;
|
|
26
|
+
cacheHexString?: unknown;
|
|
27
|
+
generate?: {} | null | undefined;
|
|
28
|
+
createFromTime?: {} | null | undefined;
|
|
29
|
+
createFromHexString?: {} | null | undefined;
|
|
30
|
+
createFromBase64?: {} | null | undefined;
|
|
31
|
+
isValid?: {} | null | undefined;
|
|
32
|
+
};
|
|
33
|
+
form: {
|
|
34
|
+
prototype?: Types.ObjectId | null | undefined;
|
|
35
|
+
cacheHexString?: unknown;
|
|
36
|
+
generate?: {} | null | undefined;
|
|
37
|
+
createFromTime?: {} | null | undefined;
|
|
38
|
+
createFromHexString?: {} | null | undefined;
|
|
39
|
+
createFromBase64?: {} | null | undefined;
|
|
40
|
+
isValid?: {} | null | undefined;
|
|
41
|
+
};
|
|
18
42
|
validations: Types.DocumentArray<{
|
|
19
43
|
type: string;
|
|
20
44
|
typeOutput: string;
|
|
@@ -44,12 +68,44 @@ export declare const QAAnswerSchema: Schema<any, import("mongoose").Model<any, a
|
|
|
44
68
|
body?: any;
|
|
45
69
|
dataset?: any;
|
|
46
70
|
}>;
|
|
47
|
-
qa:
|
|
71
|
+
qa: {
|
|
72
|
+
prototype?: Types.ObjectId | null | undefined;
|
|
73
|
+
cacheHexString?: unknown;
|
|
74
|
+
generate?: {} | null | undefined;
|
|
75
|
+
createFromTime?: {} | null | undefined;
|
|
76
|
+
createFromHexString?: {} | null | undefined;
|
|
77
|
+
createFromBase64?: {} | null | undefined;
|
|
78
|
+
isValid?: {} | null | undefined;
|
|
79
|
+
};
|
|
48
80
|
answer?: any;
|
|
49
81
|
}, import("mongoose").Document<unknown, {}, import("mongoose").FlatRecord<{} & {
|
|
50
|
-
account:
|
|
51
|
-
|
|
52
|
-
|
|
82
|
+
account: {
|
|
83
|
+
prototype?: Types.ObjectId | null | undefined;
|
|
84
|
+
cacheHexString?: unknown;
|
|
85
|
+
generate?: {} | null | undefined;
|
|
86
|
+
createFromTime?: {} | null | undefined;
|
|
87
|
+
createFromHexString?: {} | null | undefined;
|
|
88
|
+
createFromBase64?: {} | null | undefined;
|
|
89
|
+
isValid?: {} | null | undefined;
|
|
90
|
+
};
|
|
91
|
+
reference: {
|
|
92
|
+
prototype?: Types.ObjectId | null | undefined;
|
|
93
|
+
cacheHexString?: unknown;
|
|
94
|
+
generate?: {} | null | undefined;
|
|
95
|
+
createFromTime?: {} | null | undefined;
|
|
96
|
+
createFromHexString?: {} | null | undefined;
|
|
97
|
+
createFromBase64?: {} | null | undefined;
|
|
98
|
+
isValid?: {} | null | undefined;
|
|
99
|
+
};
|
|
100
|
+
form: {
|
|
101
|
+
prototype?: Types.ObjectId | null | undefined;
|
|
102
|
+
cacheHexString?: unknown;
|
|
103
|
+
generate?: {} | null | undefined;
|
|
104
|
+
createFromTime?: {} | null | undefined;
|
|
105
|
+
createFromHexString?: {} | null | undefined;
|
|
106
|
+
createFromBase64?: {} | null | undefined;
|
|
107
|
+
isValid?: {} | null | undefined;
|
|
108
|
+
};
|
|
53
109
|
validations: Types.DocumentArray<{
|
|
54
110
|
type: string;
|
|
55
111
|
typeOutput: string;
|
|
@@ -79,12 +135,44 @@ export declare const QAAnswerSchema: Schema<any, import("mongoose").Model<any, a
|
|
|
79
135
|
body?: any;
|
|
80
136
|
dataset?: any;
|
|
81
137
|
}>;
|
|
82
|
-
qa:
|
|
138
|
+
qa: {
|
|
139
|
+
prototype?: Types.ObjectId | null | undefined;
|
|
140
|
+
cacheHexString?: unknown;
|
|
141
|
+
generate?: {} | null | undefined;
|
|
142
|
+
createFromTime?: {} | null | undefined;
|
|
143
|
+
createFromHexString?: {} | null | undefined;
|
|
144
|
+
createFromBase64?: {} | null | undefined;
|
|
145
|
+
isValid?: {} | null | undefined;
|
|
146
|
+
};
|
|
83
147
|
answer?: any;
|
|
84
148
|
}>, {}> & import("mongoose").FlatRecord<{} & {
|
|
85
|
-
account:
|
|
86
|
-
|
|
87
|
-
|
|
149
|
+
account: {
|
|
150
|
+
prototype?: Types.ObjectId | null | undefined;
|
|
151
|
+
cacheHexString?: unknown;
|
|
152
|
+
generate?: {} | null | undefined;
|
|
153
|
+
createFromTime?: {} | null | undefined;
|
|
154
|
+
createFromHexString?: {} | null | undefined;
|
|
155
|
+
createFromBase64?: {} | null | undefined;
|
|
156
|
+
isValid?: {} | null | undefined;
|
|
157
|
+
};
|
|
158
|
+
reference: {
|
|
159
|
+
prototype?: Types.ObjectId | null | undefined;
|
|
160
|
+
cacheHexString?: unknown;
|
|
161
|
+
generate?: {} | null | undefined;
|
|
162
|
+
createFromTime?: {} | null | undefined;
|
|
163
|
+
createFromHexString?: {} | null | undefined;
|
|
164
|
+
createFromBase64?: {} | null | undefined;
|
|
165
|
+
isValid?: {} | null | undefined;
|
|
166
|
+
};
|
|
167
|
+
form: {
|
|
168
|
+
prototype?: Types.ObjectId | null | undefined;
|
|
169
|
+
cacheHexString?: unknown;
|
|
170
|
+
generate?: {} | null | undefined;
|
|
171
|
+
createFromTime?: {} | null | undefined;
|
|
172
|
+
createFromHexString?: {} | null | undefined;
|
|
173
|
+
createFromBase64?: {} | null | undefined;
|
|
174
|
+
isValid?: {} | null | undefined;
|
|
175
|
+
};
|
|
88
176
|
validations: Types.DocumentArray<{
|
|
89
177
|
type: string;
|
|
90
178
|
typeOutput: string;
|
|
@@ -114,7 +202,15 @@ export declare const QAAnswerSchema: Schema<any, import("mongoose").Model<any, a
|
|
|
114
202
|
body?: any;
|
|
115
203
|
dataset?: any;
|
|
116
204
|
}>;
|
|
117
|
-
qa:
|
|
205
|
+
qa: {
|
|
206
|
+
prototype?: Types.ObjectId | null | undefined;
|
|
207
|
+
cacheHexString?: unknown;
|
|
208
|
+
generate?: {} | null | undefined;
|
|
209
|
+
createFromTime?: {} | null | undefined;
|
|
210
|
+
createFromHexString?: {} | null | undefined;
|
|
211
|
+
createFromBase64?: {} | null | undefined;
|
|
212
|
+
isValid?: {} | null | undefined;
|
|
213
|
+
};
|
|
118
214
|
answer?: any;
|
|
119
215
|
}> & {
|
|
120
216
|
_id: Types.ObjectId;
|