c2-clinical 1.0.52 → 1.0.54

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/index.d.ts CHANGED
@@ -1,22 +1,24 @@
1
+ import { IAccount } from "c2-account";
1
2
  import GroupFormUnitsFlow from "./flow/group/GroupFormUnitsFlow";
2
3
  import ExecFormulaFlow from "./flow/on-answer/ExecFormulaFlow";
3
4
  import OnAnswerQuestionsFlow from "./flow/on-answer/OnAnswerQuestionsFlow";
4
- import { IAccount } from "c2-account";
5
5
  export * from "./models/enum";
6
6
  export * from "./models/Answer";
7
+ export * from "./models/antrophometric/Antrophometric";
8
+ export * from "./models/antrophometric/AntrophometricAnswer";
9
+ export * from "./models/Default";
10
+ export * from "./models/File";
11
+ export * from "./models/form/Form";
12
+ export * from "./models/form/FormUnit";
7
13
  export * from "./models/patient/Address";
8
14
  export * from "./models/patient/City";
9
15
  export * from "./models/patient/Patient";
10
16
  export * from "./models/patient/Phone";
11
17
  export * from "./models/patient/State";
12
- export * from "./models/File";
13
- export * from "./models/Default";
14
- export * from "./models/form/Form";
15
- export * from "./models/form/FormUnit";
16
- export * from "./models/Recurrence";
17
- export * from "./models/qpc/QPC";
18
- export * from "./models/qpc/QPCAnswer";
19
18
  export * from "./models/qa/QA";
20
19
  export * from "./models/qa/QAAnswer";
21
20
  export * from "./models/qa/QAProgramming";
22
- export { IAccount, GroupFormUnitsFlow, OnAnswerQuestionsFlow, ExecFormulaFlow };
21
+ export * from "./models/qpc/QPC";
22
+ export * from "./models/qpc/QPCAnswer";
23
+ export * from "./models/Recurrence";
24
+ export { ExecFormulaFlow, GroupFormUnitsFlow, IAccount, OnAnswerQuestionsFlow };
package/dist/index.js CHANGED
@@ -17,7 +17,7 @@ var __importDefault = (this && this.__importDefault) || function (mod) {
17
17
  return (mod && mod.__esModule) ? mod : { "default": mod };
18
18
  };
19
19
  Object.defineProperty(exports, "__esModule", { value: true });
20
- exports.ExecFormulaFlow = exports.OnAnswerQuestionsFlow = exports.GroupFormUnitsFlow = void 0;
20
+ exports.OnAnswerQuestionsFlow = exports.GroupFormUnitsFlow = exports.ExecFormulaFlow = void 0;
21
21
  const GroupFormUnitsFlow_1 = __importDefault(require("./flow/group/GroupFormUnitsFlow"));
22
22
  exports.GroupFormUnitsFlow = GroupFormUnitsFlow_1.default;
23
23
  const ExecFormulaFlow_1 = __importDefault(require("./flow/on-answer/ExecFormulaFlow"));
@@ -26,18 +26,20 @@ const OnAnswerQuestionsFlow_1 = __importDefault(require("./flow/on-answer/OnAnsw
26
26
  exports.OnAnswerQuestionsFlow = OnAnswerQuestionsFlow_1.default;
27
27
  __exportStar(require("./models/enum"), exports);
28
28
  __exportStar(require("./models/Answer"), exports);
29
+ __exportStar(require("./models/antrophometric/Antrophometric"), exports);
30
+ __exportStar(require("./models/antrophometric/AntrophometricAnswer"), exports);
31
+ __exportStar(require("./models/Default"), exports);
32
+ __exportStar(require("./models/File"), exports);
33
+ __exportStar(require("./models/form/Form"), exports);
34
+ __exportStar(require("./models/form/FormUnit"), exports);
29
35
  __exportStar(require("./models/patient/Address"), exports);
30
36
  __exportStar(require("./models/patient/City"), exports);
31
37
  __exportStar(require("./models/patient/Patient"), exports);
32
38
  __exportStar(require("./models/patient/Phone"), exports);
33
39
  __exportStar(require("./models/patient/State"), exports);
34
- __exportStar(require("./models/File"), exports);
35
- __exportStar(require("./models/Default"), exports);
36
- __exportStar(require("./models/form/Form"), exports);
37
- __exportStar(require("./models/form/FormUnit"), exports);
38
- __exportStar(require("./models/Recurrence"), exports);
39
- __exportStar(require("./models/qpc/QPC"), exports);
40
- __exportStar(require("./models/qpc/QPCAnswer"), exports);
41
40
  __exportStar(require("./models/qa/QA"), exports);
42
41
  __exportStar(require("./models/qa/QAAnswer"), exports);
43
42
  __exportStar(require("./models/qa/QAProgramming"), exports);
43
+ __exportStar(require("./models/qpc/QPC"), exports);
44
+ __exportStar(require("./models/qpc/QPCAnswer"), exports);
45
+ __exportStar(require("./models/Recurrence"), exports);
@@ -17,23 +17,23 @@ export declare const StateSchema: Schema<any, import("mongoose").Model<any, any,
17
17
  }, {} & {
18
18
  name: string;
19
19
  code: string;
20
+ countryCode: string;
20
21
  abbreviation: string;
21
22
  countryName: string;
22
- countryCode: string;
23
23
  countryAbbreviation: string;
24
24
  }, import("mongoose").Document<unknown, {}, import("mongoose").FlatRecord<{} & {
25
25
  name: string;
26
26
  code: string;
27
+ countryCode: string;
27
28
  abbreviation: string;
28
29
  countryName: string;
29
- countryCode: string;
30
30
  countryAbbreviation: string;
31
31
  }>, {}> & import("mongoose").FlatRecord<{} & {
32
32
  name: string;
33
33
  code: string;
34
+ countryCode: string;
34
35
  abbreviation: string;
35
36
  countryName: string;
36
- countryCode: string;
37
37
  countryAbbreviation: string;
38
38
  }> & {
39
39
  _id: import("mongoose").Types.ObjectId;
@@ -31,9 +31,9 @@ export declare const QASchema: Schema<any, import("mongoose").Model<any, any, an
31
31
  sendAppointmentDateTime: NativeDate;
32
32
  sent: any;
33
33
  code?: string | null | undefined;
34
- answeredDateTime?: NativeDate | null | undefined;
35
34
  programming?: any;
36
35
  dueDate?: NativeDate | null | undefined;
36
+ answeredDateTime?: NativeDate | null | undefined;
37
37
  }, import("mongoose").Document<unknown, {}, import("mongoose").FlatRecord<{} & {
38
38
  account: any;
39
39
  form: any;
@@ -41,9 +41,9 @@ export declare const QASchema: Schema<any, import("mongoose").Model<any, any, an
41
41
  sendAppointmentDateTime: NativeDate;
42
42
  sent: any;
43
43
  code?: string | null | undefined;
44
- answeredDateTime?: NativeDate | null | undefined;
45
44
  programming?: any;
46
45
  dueDate?: NativeDate | null | undefined;
46
+ answeredDateTime?: NativeDate | null | undefined;
47
47
  }>, {}> & import("mongoose").FlatRecord<{} & {
48
48
  account: any;
49
49
  form: any;
@@ -51,9 +51,9 @@ export declare const QASchema: Schema<any, import("mongoose").Model<any, any, an
51
51
  sendAppointmentDateTime: NativeDate;
52
52
  sent: any;
53
53
  code?: string | null | undefined;
54
- answeredDateTime?: NativeDate | null | undefined;
55
54
  programming?: any;
56
55
  dueDate?: NativeDate | null | undefined;
56
+ answeredDateTime?: NativeDate | null | undefined;
57
57
  }> & {
58
58
  _id: Types.ObjectId;
59
59
  } & {
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "c2-clinical",
3
- "version": "1.0.52",
3
+ "version": "1.0.54",
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>",