c2-clinical 1.0.32 → 1.0.33
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.
|
@@ -17,7 +17,7 @@ export interface IQAProgramming extends IDefault {
|
|
|
17
17
|
notifyOwnerIfDued: boolean;
|
|
18
18
|
notifyOwnerReactiveOnEnd: boolean;
|
|
19
19
|
}
|
|
20
|
-
export declare const
|
|
20
|
+
export declare const QAProgrammingSchema: Schema<any, import("mongoose").Model<any, any, any, any, any, any>, {}, {}, {}, {}, {
|
|
21
21
|
timestamps: {
|
|
22
22
|
createdAt: string;
|
|
23
23
|
updatedAt: string;
|
|
@@ -1,10 +1,10 @@
|
|
|
1
1
|
"use strict";
|
|
2
2
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
3
|
-
exports.
|
|
3
|
+
exports.QAProgrammingSchema = void 0;
|
|
4
4
|
const mongoose_1 = require("mongoose");
|
|
5
5
|
const enum_1 = require("../enum");
|
|
6
6
|
const Recurrence_1 = require("../Recurrence");
|
|
7
|
-
exports.
|
|
7
|
+
exports.QAProgrammingSchema = new mongoose_1.Schema({
|
|
8
8
|
account: { type: mongoose_1.Types.ObjectId, ref: "account", required: true },
|
|
9
9
|
form: { type: mongoose_1.Types.ObjectId, ref: "form", required: true },
|
|
10
10
|
patient: { type: mongoose_1.Types.ObjectId, ref: "patient", required: true },
|
package/package.json
CHANGED