c2-clinical 1.0.29 → 1.0.31

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.
@@ -8,6 +8,7 @@ export interface IQARecurrence extends IDefault {
8
8
  answeredDateTime: Date;
9
9
  form: Types.ObjectId | IForm;
10
10
  patient: Types.ObjectId | IPatient;
11
+ initSendDateTime: Date;
11
12
  recurrence: IRecurrence;
12
13
  code: string;
13
14
  daysToRememberPatient: number;
@@ -40,6 +41,7 @@ export declare const QARecurrencechema: Schema<any, import("mongoose").Model<any
40
41
  } | null | undefined;
41
42
  daysToRememberPatient?: number | null | undefined;
42
43
  sendOnCreate?: any;
44
+ initSendDateTime?: NativeDate | null | undefined;
43
45
  notifyOwnerIfDued?: any;
44
46
  notifyOwnerReactiveOnEnd?: any;
45
47
  }, import("mongoose").Document<unknown, {}, import("mongoose").FlatRecord<{} & {
@@ -61,6 +63,7 @@ export declare const QARecurrencechema: Schema<any, import("mongoose").Model<any
61
63
  } | null | undefined;
62
64
  daysToRememberPatient?: number | null | undefined;
63
65
  sendOnCreate?: any;
66
+ initSendDateTime?: NativeDate | null | undefined;
64
67
  notifyOwnerIfDued?: any;
65
68
  notifyOwnerReactiveOnEnd?: any;
66
69
  }>, {}> & import("mongoose").FlatRecord<{} & {
@@ -82,6 +85,7 @@ export declare const QARecurrencechema: Schema<any, import("mongoose").Model<any
82
85
  } | null | undefined;
83
86
  daysToRememberPatient?: number | null | undefined;
84
87
  sendOnCreate?: any;
88
+ initSendDateTime?: NativeDate | null | undefined;
85
89
  notifyOwnerIfDued?: any;
86
90
  notifyOwnerReactiveOnEnd?: any;
87
91
  }> & {
@@ -12,6 +12,7 @@ exports.QARecurrencechema = new mongoose_1.Schema({
12
12
  code: { type: String },
13
13
  daysToRememberPatient: { type: Number },
14
14
  sendOnCreate: { type: Boolean },
15
+ initSendDateTime: { type: Date },
15
16
  notifyPatientChannel: { type: [String], enum: enum_1.ChannelNotificationEnum },
16
17
  notifyOwnerIfDued: { type: Boolean },
17
18
  notifyOwnerReactiveOnEnd: { type: Boolean }
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "c2-clinical",
3
- "version": "1.0.29",
3
+ "version": "1.0.31",
4
4
  "description": "Biblioteca Typescript para API NodeJS",
5
5
  "repository": "https://github.com/cabralsilva/c2-clinical.git",
6
6
  "author": "Daniel Cabral <cabralconsultoriaemsoftware@gmail.com>",