c2-clinical 1.0.72 → 1.0.74
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.
|
@@ -5,6 +5,7 @@ export interface IForm extends IDefault {
|
|
|
5
5
|
type: TypeFormEnum;
|
|
6
6
|
category: CategoryFormEnum;
|
|
7
7
|
owner: OwnerEnum;
|
|
8
|
+
ownerAuthor: string;
|
|
8
9
|
name: string;
|
|
9
10
|
description: string;
|
|
10
11
|
observation: string;
|
|
@@ -20,6 +21,7 @@ export declare const FormSchema: Schema<any, import("mongoose").Model<any, any,
|
|
|
20
21
|
category: string;
|
|
21
22
|
owner: string;
|
|
22
23
|
account?: any;
|
|
24
|
+
ownerAuthor?: string | null | undefined;
|
|
23
25
|
description?: string | null | undefined;
|
|
24
26
|
observation?: string | null | undefined;
|
|
25
27
|
}, import("mongoose").Document<unknown, {}, import("mongoose").FlatRecord<{} & {
|
|
@@ -28,6 +30,7 @@ export declare const FormSchema: Schema<any, import("mongoose").Model<any, any,
|
|
|
28
30
|
category: string;
|
|
29
31
|
owner: string;
|
|
30
32
|
account?: any;
|
|
33
|
+
ownerAuthor?: string | null | undefined;
|
|
31
34
|
description?: string | null | undefined;
|
|
32
35
|
observation?: string | null | undefined;
|
|
33
36
|
}>, {}> & import("mongoose").FlatRecord<{} & {
|
|
@@ -36,6 +39,7 @@ export declare const FormSchema: Schema<any, import("mongoose").Model<any, any,
|
|
|
36
39
|
category: string;
|
|
37
40
|
owner: string;
|
|
38
41
|
account?: any;
|
|
42
|
+
ownerAuthor?: string | null | undefined;
|
|
39
43
|
description?: string | null | undefined;
|
|
40
44
|
observation?: string | null | undefined;
|
|
41
45
|
}> & {
|
package/dist/models/form/Form.js
CHANGED
|
@@ -9,6 +9,7 @@ exports.FormSchema = new mongoose_1.Schema({
|
|
|
9
9
|
type: { type: String, enum: enum_1.TypeFormEnum, required: true },
|
|
10
10
|
category: { type: String, enum: enum_1.CategoryFormEnum, required: true },
|
|
11
11
|
owner: { type: String, enum: enum_1.OwnerEnum, required: true },
|
|
12
|
+
ownerAuthor: { type: String },
|
|
12
13
|
name: { type: String, required: true },
|
|
13
14
|
description: { type: String },
|
|
14
15
|
observation: { type: String }
|
package/dist/models/qa/QA.d.ts
CHANGED
|
@@ -15,6 +15,7 @@ export interface IQA extends IDefault {
|
|
|
15
15
|
sent: boolean;
|
|
16
16
|
sentRemember: boolean;
|
|
17
17
|
canceled: boolean;
|
|
18
|
+
blocked: boolean;
|
|
18
19
|
code: string;
|
|
19
20
|
status: QAStatusEnum;
|
|
20
21
|
}
|
|
@@ -31,6 +32,7 @@ export declare const QASchema: Schema<any, import("mongoose").Model<any, any, an
|
|
|
31
32
|
sendAppointmentDateTime: NativeDate;
|
|
32
33
|
sent: any;
|
|
33
34
|
sentRemember: any;
|
|
35
|
+
blocked: any;
|
|
34
36
|
code?: string | null | undefined;
|
|
35
37
|
programming?: any;
|
|
36
38
|
answeredDateTime?: NativeDate | null | undefined;
|
|
@@ -44,6 +46,7 @@ export declare const QASchema: Schema<any, import("mongoose").Model<any, any, an
|
|
|
44
46
|
sendAppointmentDateTime: NativeDate;
|
|
45
47
|
sent: any;
|
|
46
48
|
sentRemember: any;
|
|
49
|
+
blocked: any;
|
|
47
50
|
code?: string | null | undefined;
|
|
48
51
|
programming?: any;
|
|
49
52
|
answeredDateTime?: NativeDate | null | undefined;
|
|
@@ -57,6 +60,7 @@ export declare const QASchema: Schema<any, import("mongoose").Model<any, any, an
|
|
|
57
60
|
sendAppointmentDateTime: NativeDate;
|
|
58
61
|
sent: any;
|
|
59
62
|
sentRemember: any;
|
|
63
|
+
blocked: any;
|
|
60
64
|
code?: string | null | undefined;
|
|
61
65
|
programming?: any;
|
|
62
66
|
answeredDateTime?: NativeDate | null | undefined;
|
package/dist/models/qa/QA.js
CHANGED
|
@@ -14,6 +14,7 @@ exports.QASchema = new mongoose_1.Schema({
|
|
|
14
14
|
sent: { type: Boolean, default: false },
|
|
15
15
|
sentRemember: { type: Boolean, default: false },
|
|
16
16
|
canceled: { type: Boolean, default: false },
|
|
17
|
+
blocked: { type: Boolean, default: false },
|
|
17
18
|
code: { type: String }
|
|
18
19
|
}, {
|
|
19
20
|
timestamps: { createdAt: "createdAtDateTime", updatedAt: "updatedAtDateTime" }
|
package/package.json
CHANGED