evo360-types 1.3.66 → 1.3.72
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/apps/evo-med/people/zod-schemas.d.ts +4 -4
- package/dist/apps/evo-med/people/zod-schemas.js +3 -11
- package/dist/apps/evo-med/people/zod-schemas.ts +3 -11
- package/dist/apps/evo-med/procedure/zod-schemas.d.ts +25 -25
- package/dist/apps/evo-med/procedure/zod-schemas.js +9 -9
- package/dist/apps/evo-med/procedure/zod-schemas.ts +9 -9
- package/dist/types/evo-med/dic/index.d.ts +1 -1
- package/dist/types/evo-med/dic/index.js +1 -1
- package/dist/types/evo-med/dic/index.ts +1 -1
- package/dist/types/evo-med/fb_collections.d.ts +3 -1
- package/dist/types/evo-med/fb_collections.js +4 -3
- package/dist/types/evo-med/fb_collections.ts +4 -2
- package/dist/types/evo-med/procedure/index.d.ts +1 -1
- package/dist/types/evo-med/procedure/index.js +1 -1
- package/dist/types/evo-med/procedure/index.ts +1 -1
- package/package.json +1 -1
|
@@ -461,7 +461,7 @@ export declare const zProfessionalSchema: z.ZodObject<z.objectUtil.extendShape<z
|
|
|
461
461
|
userRef: z.ZodAny;
|
|
462
462
|
}>, z.ZodTypeAny, "passthrough">>;
|
|
463
463
|
export declare const zPatientStatusSchema: z.ZodEnum<["active", "inactive", "draft"]>;
|
|
464
|
-
export declare const zBloodTypeSchema: z.ZodEnum<["A+", "A-", "B+", "B-", "AB+", "AB-", "O+", "O-", "Unknown"]>;
|
|
464
|
+
export declare const zBloodTypeSchema: z.ZodUnion<[z.ZodEnum<["A+", "A-", "B+", "B-", "AB+", "AB-", "O+", "O-", "Unknown"]>, z.ZodEffects<z.ZodLiteral<"unknown">, string, "unknown">]>;
|
|
465
465
|
export declare const zPatientAllergySchema: z.ZodObject<{
|
|
466
466
|
code: z.ZodString;
|
|
467
467
|
name: z.ZodString;
|
|
@@ -594,7 +594,7 @@ export declare const zPatientSchema: z.ZodObject<z.objectUtil.extendShape<z.obje
|
|
|
594
594
|
}>>>;
|
|
595
595
|
height_cm: z.ZodOptional<z.ZodNullable<z.ZodNumber>>;
|
|
596
596
|
weight_kg: z.ZodOptional<z.ZodNullable<z.ZodNumber>>;
|
|
597
|
-
blood_type: z.ZodDefault<z.ZodOptional<z.ZodNullable<z.ZodEnum<["A+", "A-", "B+", "B-", "AB+", "AB-", "O+", "O-", "Unknown"]>>>>;
|
|
597
|
+
blood_type: z.ZodDefault<z.ZodOptional<z.ZodNullable<z.ZodUnion<[z.ZodEnum<["A+", "A-", "B+", "B-", "AB+", "AB-", "O+", "O-", "Unknown"]>, z.ZodEffects<z.ZodLiteral<"unknown">, string, "unknown">]>>>>;
|
|
598
598
|
allergies: z.ZodOptional<z.ZodNullable<z.ZodArray<z.ZodObject<{
|
|
599
599
|
code: z.ZodString;
|
|
600
600
|
name: z.ZodString;
|
|
@@ -747,7 +747,7 @@ export declare const zPatientSchema: z.ZodObject<z.objectUtil.extendShape<z.obje
|
|
|
747
747
|
}>>>;
|
|
748
748
|
height_cm: z.ZodOptional<z.ZodNullable<z.ZodNumber>>;
|
|
749
749
|
weight_kg: z.ZodOptional<z.ZodNullable<z.ZodNumber>>;
|
|
750
|
-
blood_type: z.ZodDefault<z.ZodOptional<z.ZodNullable<z.ZodEnum<["A+", "A-", "B+", "B-", "AB+", "AB-", "O+", "O-", "Unknown"]>>>>;
|
|
750
|
+
blood_type: z.ZodDefault<z.ZodOptional<z.ZodNullable<z.ZodUnion<[z.ZodEnum<["A+", "A-", "B+", "B-", "AB+", "AB-", "O+", "O-", "Unknown"]>, z.ZodEffects<z.ZodLiteral<"unknown">, string, "unknown">]>>>>;
|
|
751
751
|
allergies: z.ZodOptional<z.ZodNullable<z.ZodArray<z.ZodObject<{
|
|
752
752
|
code: z.ZodString;
|
|
753
753
|
name: z.ZodString;
|
|
@@ -900,7 +900,7 @@ export declare const zPatientSchema: z.ZodObject<z.objectUtil.extendShape<z.obje
|
|
|
900
900
|
}>>>;
|
|
901
901
|
height_cm: z.ZodOptional<z.ZodNullable<z.ZodNumber>>;
|
|
902
902
|
weight_kg: z.ZodOptional<z.ZodNullable<z.ZodNumber>>;
|
|
903
|
-
blood_type: z.ZodDefault<z.ZodOptional<z.ZodNullable<z.ZodEnum<["A+", "A-", "B+", "B-", "AB+", "AB-", "O+", "O-", "Unknown"]>>>>;
|
|
903
|
+
blood_type: z.ZodDefault<z.ZodOptional<z.ZodNullable<z.ZodUnion<[z.ZodEnum<["A+", "A-", "B+", "B-", "AB+", "AB-", "O+", "O-", "Unknown"]>, z.ZodEffects<z.ZodLiteral<"unknown">, string, "unknown">]>>>>;
|
|
904
904
|
allergies: z.ZodOptional<z.ZodNullable<z.ZodArray<z.ZodObject<{
|
|
905
905
|
code: z.ZodString;
|
|
906
906
|
name: z.ZodString;
|
|
@@ -52,17 +52,9 @@ exports.zProfessionalSchema = zod_schemas_3.zProfileSchema // Extend from Profil
|
|
|
52
52
|
})
|
|
53
53
|
.passthrough();
|
|
54
54
|
exports.zPatientStatusSchema = zod_1.z.enum(["active", "inactive", "draft"]);
|
|
55
|
-
exports.zBloodTypeSchema = zod_1.z
|
|
56
|
-
"A+",
|
|
57
|
-
"
|
|
58
|
-
"B+",
|
|
59
|
-
"B-",
|
|
60
|
-
"AB+",
|
|
61
|
-
"AB-",
|
|
62
|
-
"O+",
|
|
63
|
-
"O-",
|
|
64
|
-
"Unknown",
|
|
65
|
-
]);
|
|
55
|
+
exports.zBloodTypeSchema = zod_1.z
|
|
56
|
+
.enum(["A+", "A-", "B+", "B-", "AB+", "AB-", "O+", "O-", "Unknown"])
|
|
57
|
+
.or(zod_1.z.literal("unknown").transform(() => "Unknown"));
|
|
66
58
|
exports.zPatientAllergySchema = zod_1.z.object({
|
|
67
59
|
code: zod_1.z.string().min(1).max(20),
|
|
68
60
|
name: zod_1.z.string().min(1).max(255),
|
|
@@ -66,17 +66,9 @@ export const zProfessionalSchema = zProfileSchema // Extend from ProfileSchema
|
|
|
66
66
|
|
|
67
67
|
export const zPatientStatusSchema = z.enum(["active", "inactive", "draft"]);
|
|
68
68
|
|
|
69
|
-
export const zBloodTypeSchema = z
|
|
70
|
-
"A+",
|
|
71
|
-
"
|
|
72
|
-
"B+",
|
|
73
|
-
"B-",
|
|
74
|
-
"AB+",
|
|
75
|
-
"AB-",
|
|
76
|
-
"O+",
|
|
77
|
-
"O-",
|
|
78
|
-
"Unknown",
|
|
79
|
-
]);
|
|
69
|
+
export const zBloodTypeSchema = z
|
|
70
|
+
.enum(["A+", "A-", "B+", "B-", "AB+", "AB-", "O+", "O-", "Unknown"])
|
|
71
|
+
.or(z.literal("unknown").transform(() => "Unknown"));
|
|
80
72
|
|
|
81
73
|
export const zPatientAllergySchema = z.object({
|
|
82
74
|
code: z.string().min(1).max(20),
|
|
@@ -77,15 +77,15 @@ export declare const ProcedureSchema: z.ZodObject<z.objectUtil.extendShape<{
|
|
|
77
77
|
name: z.ZodString;
|
|
78
78
|
technical_name: z.ZodString;
|
|
79
79
|
status: z.ZodEnum<["active", "inactive", "draft"]>;
|
|
80
|
-
type_code: z.
|
|
81
|
-
type_name: z.
|
|
82
|
-
typeRef: z.ZodAny
|
|
83
|
-
duration: z.
|
|
84
|
-
color: z.
|
|
85
|
-
acronym: z.
|
|
86
|
-
description: z.
|
|
87
|
-
tuss: z.
|
|
88
|
-
price: z.
|
|
80
|
+
type_code: z.ZodOptional<z.ZodString>;
|
|
81
|
+
type_name: z.ZodOptional<z.ZodString>;
|
|
82
|
+
typeRef: z.ZodOptional<z.ZodAny>;
|
|
83
|
+
duration: z.ZodOptional<z.ZodNumber>;
|
|
84
|
+
color: z.ZodOptional<z.ZodString>;
|
|
85
|
+
acronym: z.ZodOptional<z.ZodString>;
|
|
86
|
+
description: z.ZodOptional<z.ZodString>;
|
|
87
|
+
tuss: z.ZodOptional<z.ZodString>;
|
|
88
|
+
price: z.ZodOptional<z.ZodNumber>;
|
|
89
89
|
tags: z.ZodOptional<z.ZodNullable<z.ZodArray<z.ZodObject<{
|
|
90
90
|
name: z.ZodString;
|
|
91
91
|
color: z.ZodOptional<z.ZodString>;
|
|
@@ -112,15 +112,7 @@ export declare const ProcedureSchema: z.ZodObject<z.objectUtil.extendShape<{
|
|
|
112
112
|
tenant: string;
|
|
113
113
|
model_ver: number;
|
|
114
114
|
status: "draft" | "active" | "inactive";
|
|
115
|
-
type_code: string | null;
|
|
116
|
-
type_name: string | null;
|
|
117
|
-
acronym: string | null;
|
|
118
|
-
description: string | null;
|
|
119
|
-
color: string | null;
|
|
120
115
|
technical_name: string;
|
|
121
|
-
duration: number | null;
|
|
122
|
-
tuss: string | null;
|
|
123
|
-
price: number | null;
|
|
124
116
|
ref?: any;
|
|
125
117
|
created_at?: Date | null | undefined;
|
|
126
118
|
updated_at?: Date | null | undefined;
|
|
@@ -132,7 +124,15 @@ export declare const ProcedureSchema: z.ZodObject<z.objectUtil.extendShape<{
|
|
|
132
124
|
color?: string | undefined;
|
|
133
125
|
category?: string | null | undefined;
|
|
134
126
|
}[] | null | undefined;
|
|
127
|
+
type_code?: string | undefined;
|
|
128
|
+
type_name?: string | undefined;
|
|
135
129
|
typeRef?: any;
|
|
130
|
+
acronym?: string | undefined;
|
|
131
|
+
description?: string | undefined;
|
|
132
|
+
color?: string | undefined;
|
|
133
|
+
duration?: number | undefined;
|
|
134
|
+
tuss?: string | undefined;
|
|
135
|
+
price?: number | undefined;
|
|
136
136
|
}, {
|
|
137
137
|
code: string;
|
|
138
138
|
name: string;
|
|
@@ -152,13 +152,13 @@ export declare const ProcedureSchema: z.ZodObject<z.objectUtil.extendShape<{
|
|
|
152
152
|
color?: string | undefined;
|
|
153
153
|
category?: string | null | undefined;
|
|
154
154
|
}[] | null | undefined;
|
|
155
|
-
type_code?: string |
|
|
156
|
-
type_name?: string |
|
|
155
|
+
type_code?: string | undefined;
|
|
156
|
+
type_name?: string | undefined;
|
|
157
157
|
typeRef?: any;
|
|
158
|
-
acronym?: string |
|
|
159
|
-
description?: string |
|
|
160
|
-
color?: string |
|
|
161
|
-
duration?: number |
|
|
162
|
-
tuss?: string |
|
|
163
|
-
price?: number |
|
|
158
|
+
acronym?: string | undefined;
|
|
159
|
+
description?: string | undefined;
|
|
160
|
+
color?: string | undefined;
|
|
161
|
+
duration?: number | undefined;
|
|
162
|
+
tuss?: string | undefined;
|
|
163
|
+
price?: number | undefined;
|
|
164
164
|
}>;
|
|
@@ -14,14 +14,14 @@ exports.ProcedureSchema = zod_schemas_1.zFireDocSchema.extend({
|
|
|
14
14
|
name: zod_1.z.string().min(1).max(255),
|
|
15
15
|
technical_name: zod_1.z.string(),
|
|
16
16
|
status: zod_1.z.enum(["active", "inactive", "draft"]),
|
|
17
|
-
type_code: zod_1.z.string().max(20).
|
|
18
|
-
type_name: zod_1.z.string().max(255).
|
|
19
|
-
typeRef: zod_1.z.any(),
|
|
20
|
-
duration: zod_1.z.number().
|
|
21
|
-
color: zod_1.z.string().max(255).
|
|
22
|
-
acronym: zod_1.z.string().max(255).
|
|
23
|
-
description: zod_1.z.string().max(1024).
|
|
24
|
-
tuss: zod_1.z.string().max(255).
|
|
25
|
-
price: zod_1.z.number().
|
|
17
|
+
type_code: zod_1.z.string().max(20).optional(),
|
|
18
|
+
type_name: zod_1.z.string().max(255).optional(),
|
|
19
|
+
typeRef: zod_1.z.any().optional(),
|
|
20
|
+
duration: zod_1.z.number().optional(),
|
|
21
|
+
color: zod_1.z.string().max(255).optional(),
|
|
22
|
+
acronym: zod_1.z.string().max(255).optional(),
|
|
23
|
+
description: zod_1.z.string().max(1024).optional(),
|
|
24
|
+
tuss: zod_1.z.string().max(255).optional(),
|
|
25
|
+
price: zod_1.z.number().optional(),
|
|
26
26
|
tags: zod_1.z.array(zod_schemas_1.zTagSchema).nullable().optional(),
|
|
27
27
|
});
|
|
@@ -14,14 +14,14 @@ export const ProcedureSchema = zFireDocSchema.extend({
|
|
|
14
14
|
name: z.string().min(1).max(255),
|
|
15
15
|
technical_name: z.string(),
|
|
16
16
|
status: z.enum(["active", "inactive", "draft"]),
|
|
17
|
-
type_code: z.string().max(20).
|
|
18
|
-
type_name: z.string().max(255).
|
|
19
|
-
typeRef: z.any(),
|
|
20
|
-
duration: z.number().
|
|
21
|
-
color: z.string().max(255).
|
|
22
|
-
acronym: z.string().max(255).
|
|
23
|
-
description: z.string().max(1024).
|
|
24
|
-
tuss: z.string().max(255).
|
|
25
|
-
price: z.number().
|
|
17
|
+
type_code: z.string().max(20).optional(),
|
|
18
|
+
type_name: z.string().max(255).optional(),
|
|
19
|
+
typeRef: z.any().optional(),
|
|
20
|
+
duration: z.number().optional(),
|
|
21
|
+
color: z.string().max(255).optional(),
|
|
22
|
+
acronym: z.string().max(255).optional(),
|
|
23
|
+
description: z.string().max(1024).optional(),
|
|
24
|
+
tuss: z.string().max(255).optional(),
|
|
25
|
+
price: z.number().optional(),
|
|
26
26
|
tags: z.array(zTagSchema).nullable().optional(),
|
|
27
27
|
});
|
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
export * from "
|
|
1
|
+
export * from "../fb_collections";
|
|
2
2
|
import type { FirestoreDocumentReference, IFireDoc, ITag } from "../../shared";
|
|
3
3
|
export type MedDicAction = "CREATE_SPECIALTY" | "DELETE_SPECIALTY" | "UPDATE_SPECIALTY" | "CREATE_PATIENT_SOURCE" | "DELETE_PATIENT_SOURCE" | "UPDATE_PATIENT_SOURCE" | "CREATE_APPOINTMENT_SOURCE" | "DELETE_APPOINTMENT_SOURCE" | "UPDATE_APPOINTMENT_SOURCE" | "CREATE_APPOINTMENT_REQUEST_TYPE" | "DELETE_APPOINTMENT_REQUEST_TYPE" | "UPDATE_APPOINTMENT_REQUEST_TYPE" | "CREATE_APPOINTMENT_STATUS" | "DELETE_APPOINTMENT_STATUS" | "UPDATE_APPOINTMENT_STATUS";
|
|
4
4
|
export declare enum IMedDicAction {
|
|
@@ -15,7 +15,7 @@ var __exportStar = (this && this.__exportStar) || function(m, exports) {
|
|
|
15
15
|
};
|
|
16
16
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
17
17
|
exports.IAllergyKind = exports.AppointmentTypeEnum = exports.AppointmentStatusTypeEnum = exports.IMedDicAction = void 0;
|
|
18
|
-
__exportStar(require("
|
|
18
|
+
__exportStar(require("../fb_collections"), exports);
|
|
19
19
|
var IMedDicAction;
|
|
20
20
|
(function (IMedDicAction) {
|
|
21
21
|
IMedDicAction["Create_specialty"] = "CREATE_SPECIALTY";
|
|
@@ -2,12 +2,14 @@ export declare const EVO_MED_APP = "evo-med";
|
|
|
2
2
|
export declare const PROFESSIONALS_COLLECTION = "professionals";
|
|
3
3
|
export declare const PATIENTS_COLLECTION = "patients";
|
|
4
4
|
export declare const INSURANCES_COLLECTION = "insurances";
|
|
5
|
-
export declare const PROCEDURES_COLLECTION = "procedures";
|
|
6
5
|
export declare const CALENDARS_COLLECTION = "calendars";
|
|
7
6
|
export declare const DICS_COLLECTION = "dics";
|
|
8
7
|
export declare const SPECIALTIES = "specialties";
|
|
9
8
|
export declare const SPECIALTIES_TYPES_COLLECTION = "specialties-types";
|
|
10
9
|
export declare const SPECIALTIES_COLLECTION = "specialties";
|
|
10
|
+
export declare const PROCEDURES = "procedures";
|
|
11
|
+
export declare const PROCEDURES_TYPES_COLLECTION = "procedures-types";
|
|
12
|
+
export declare const PROCEDURES_COLLECTION = "procedures";
|
|
11
13
|
export declare const COUNCILS = "councils";
|
|
12
14
|
export declare const MEDICAL_COUNCILS_COLLECTION = "medical-councils";
|
|
13
15
|
export declare const SOURCES = "sources";
|
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
"use strict";
|
|
2
2
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
3
|
-
exports.CHRONIC_CONDITIONS_COLLECTION = exports.ALLERGIES_COLLECTION = exports.DISEASES = exports.APPOINTMENT_REQUEST_TYPES_COLLECTION = exports.APPOINTMENT_TYPES_COLLECTION = exports.APPOINTMENT_STATUSES_COLLECTION = exports.APPOINTMENT_SOURCES_COLLECTION = exports.APPOINTMENTS = exports.PATIENT_SOURCES_COLLECTION = exports.SOURCES = exports.MEDICAL_COUNCILS_COLLECTION = exports.COUNCILS = exports.SPECIALTIES_COLLECTION = exports.SPECIALTIES_TYPES_COLLECTION = exports.SPECIALTIES = exports.DICS_COLLECTION = exports.CALENDARS_COLLECTION = exports.
|
|
3
|
+
exports.CHRONIC_CONDITIONS_COLLECTION = exports.ALLERGIES_COLLECTION = exports.DISEASES = exports.APPOINTMENT_REQUEST_TYPES_COLLECTION = exports.APPOINTMENT_TYPES_COLLECTION = exports.APPOINTMENT_STATUSES_COLLECTION = exports.APPOINTMENT_SOURCES_COLLECTION = exports.APPOINTMENTS = exports.PATIENT_SOURCES_COLLECTION = exports.SOURCES = exports.MEDICAL_COUNCILS_COLLECTION = exports.COUNCILS = exports.PROCEDURES_COLLECTION = exports.PROCEDURES_TYPES_COLLECTION = exports.PROCEDURES = exports.SPECIALTIES_COLLECTION = exports.SPECIALTIES_TYPES_COLLECTION = exports.SPECIALTIES = exports.DICS_COLLECTION = exports.CALENDARS_COLLECTION = exports.INSURANCES_COLLECTION = exports.PATIENTS_COLLECTION = exports.PROFESSIONALS_COLLECTION = exports.EVO_MED_APP = void 0;
|
|
4
4
|
//EVO Med Application Doc
|
|
5
5
|
exports.EVO_MED_APP = "evo-med";
|
|
6
6
|
//people
|
|
@@ -8,8 +8,6 @@ exports.PROFESSIONALS_COLLECTION = "professionals";
|
|
|
8
8
|
exports.PATIENTS_COLLECTION = "patients";
|
|
9
9
|
//insurance
|
|
10
10
|
exports.INSURANCES_COLLECTION = "insurances";
|
|
11
|
-
//procedure
|
|
12
|
-
exports.PROCEDURES_COLLECTION = "procedures";
|
|
13
11
|
//calendars
|
|
14
12
|
exports.CALENDARS_COLLECTION = "calendars";
|
|
15
13
|
//dictionaries
|
|
@@ -17,6 +15,9 @@ exports.DICS_COLLECTION = "dics";
|
|
|
17
15
|
exports.SPECIALTIES = "specialties";
|
|
18
16
|
exports.SPECIALTIES_TYPES_COLLECTION = "specialties-types";
|
|
19
17
|
exports.SPECIALTIES_COLLECTION = "specialties";
|
|
18
|
+
exports.PROCEDURES = "procedures";
|
|
19
|
+
exports.PROCEDURES_TYPES_COLLECTION = "procedures-types";
|
|
20
|
+
exports.PROCEDURES_COLLECTION = "procedures";
|
|
20
21
|
exports.COUNCILS = "councils";
|
|
21
22
|
exports.MEDICAL_COUNCILS_COLLECTION = "medical-councils";
|
|
22
23
|
exports.SOURCES = "sources";
|
|
@@ -6,8 +6,6 @@ export const PROFESSIONALS_COLLECTION = "professionals";
|
|
|
6
6
|
export const PATIENTS_COLLECTION = "patients";
|
|
7
7
|
//insurance
|
|
8
8
|
export const INSURANCES_COLLECTION = "insurances";
|
|
9
|
-
//procedure
|
|
10
|
-
export const PROCEDURES_COLLECTION = "procedures";
|
|
11
9
|
//calendars
|
|
12
10
|
export const CALENDARS_COLLECTION = "calendars";
|
|
13
11
|
|
|
@@ -18,6 +16,10 @@ export const SPECIALTIES = "specialties";
|
|
|
18
16
|
export const SPECIALTIES_TYPES_COLLECTION = "specialties-types";
|
|
19
17
|
export const SPECIALTIES_COLLECTION = "specialties";
|
|
20
18
|
|
|
19
|
+
export const PROCEDURES = "procedures";
|
|
20
|
+
export const PROCEDURES_TYPES_COLLECTION = "procedures-types";
|
|
21
|
+
export const PROCEDURES_COLLECTION = "procedures";
|
|
22
|
+
|
|
21
23
|
export const COUNCILS = "councils";
|
|
22
24
|
export const MEDICAL_COUNCILS_COLLECTION = "medical-councils";
|
|
23
25
|
|
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
export * from "
|
|
1
|
+
export * from "../fb_collections";
|
|
2
2
|
import type { FirestoreDocumentReference, IFireDoc, ITag } from "../../shared";
|
|
3
3
|
export type MedProcedureAction = "CREATE_PROCEDURE" | "DELETE_PROCEDURE" | "UPDATE_PROCEDURE";
|
|
4
4
|
export declare enum IMedProcedureAction {
|
|
@@ -15,7 +15,7 @@ var __exportStar = (this && this.__exportStar) || function(m, exports) {
|
|
|
15
15
|
};
|
|
16
16
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
17
17
|
exports.IProcedureStatus = exports.IMedProcedureAction = void 0;
|
|
18
|
-
__exportStar(require("
|
|
18
|
+
__exportStar(require("../fb_collections"), exports);
|
|
19
19
|
var IMedProcedureAction;
|
|
20
20
|
(function (IMedProcedureAction) {
|
|
21
21
|
IMedProcedureAction["Create_procedure"] = "CREATE_PROCEDURE";
|