c2-clinical 1.0.7 → 1.0.8
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.
|
@@ -74,6 +74,7 @@ export interface IFormUnit extends IDefault {
|
|
|
74
74
|
sequence: number;
|
|
75
75
|
code: string;
|
|
76
76
|
description: string;
|
|
77
|
+
example: string;
|
|
77
78
|
parent: Types.ObjectId | IFormUnit;
|
|
78
79
|
line: number;
|
|
79
80
|
column: number;
|
|
@@ -266,6 +267,7 @@ export declare const FormUnitSchema: Schema<any, import("mongoose").Model<any, a
|
|
|
266
267
|
description?: string | null | undefined;
|
|
267
268
|
account?: any;
|
|
268
269
|
reference?: any;
|
|
270
|
+
example?: string | null | undefined;
|
|
269
271
|
parent?: any;
|
|
270
272
|
line?: number | null | undefined;
|
|
271
273
|
column?: number | null | undefined;
|
|
@@ -347,6 +349,7 @@ export declare const FormUnitSchema: Schema<any, import("mongoose").Model<any, a
|
|
|
347
349
|
description?: string | null | undefined;
|
|
348
350
|
account?: any;
|
|
349
351
|
reference?: any;
|
|
352
|
+
example?: string | null | undefined;
|
|
350
353
|
parent?: any;
|
|
351
354
|
line?: number | null | undefined;
|
|
352
355
|
column?: number | null | undefined;
|
|
@@ -428,6 +431,7 @@ export declare const FormUnitSchema: Schema<any, import("mongoose").Model<any, a
|
|
|
428
431
|
description?: string | null | undefined;
|
|
429
432
|
account?: any;
|
|
430
433
|
reference?: any;
|
|
434
|
+
example?: string | null | undefined;
|
|
431
435
|
parent?: any;
|
|
432
436
|
line?: number | null | undefined;
|
|
433
437
|
column?: number | null | undefined;
|
|
@@ -95,6 +95,7 @@ exports.FormUnitSchema = new mongoose_1.Schema({
|
|
|
95
95
|
sequence: { type: Number, required: true, immutable: true },
|
|
96
96
|
code: { type: String, required: true },
|
|
97
97
|
description: { type: String },
|
|
98
|
+
example: { type: String },
|
|
98
99
|
parent: { type: mongoose_1.Schema.Types.ObjectId, ref: "form-unit" },
|
|
99
100
|
line: { type: Number },
|
|
100
101
|
column: { type: Number },
|
package/package.json
CHANGED