@metriport/api-sdk 7.12.5-alpha.0 → 7.12.5

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/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@metriport/api-sdk",
3
- "version": "7.12.5-alpha.0",
3
+ "version": "7.12.5",
4
4
  "description": "Metriport helps you access and manage health and medical data, through a single open source API.",
5
5
  "author": "Metriport Inc. <contact@metriport.com>",
6
6
  "homepage": "https://metriport.com/",
@@ -56,8 +56,8 @@
56
56
  "url": "https://github.com/metriport/metriport/issues"
57
57
  },
58
58
  "dependencies": {
59
- "@metriport/commonwell-sdk": "^4.12.8-alpha.0",
60
- "@metriport/shared": "^0.4.8-alpha.0",
59
+ "@metriport/commonwell-sdk": "^4.12.8",
60
+ "@metriport/shared": "^0.4.8",
61
61
  "axios": "^1.3.4",
62
62
  "dayjs": "^1.11.7",
63
63
  "dotenv": "^16.3.1",
@@ -75,5 +75,5 @@
75
75
  "ts-jest": "29.1.1",
76
76
  "typescript": "^4.9.5"
77
77
  },
78
- "gitHead": "a8b166706841623f148b938014e27730f906ecab"
78
+ "gitHead": "1c371b741bd8b1e13fca4e2105e156a9f05c75b8"
79
79
  }
@@ -1,294 +0,0 @@
1
- import { DocumentReference as FHIRDocumentReference } from "@medplum/fhirtypes";
2
- import { z } from "zod";
3
- export declare const documentReferenceSchema: z.ZodObject<{
4
- id: z.ZodString;
5
- fileName: z.ZodString;
6
- description: z.ZodOptional<z.ZodString>;
7
- status: z.ZodOptional<z.ZodString>;
8
- indexed: z.ZodOptional<z.ZodString>;
9
- mimeType: z.ZodOptional<z.ZodString>;
10
- size: z.ZodOptional<z.ZodNumber>;
11
- type: z.ZodOptional<z.ZodObject<{
12
- coding: z.ZodOptional<z.ZodArray<z.ZodObject<{
13
- system: z.ZodNullable<z.ZodOptional<z.ZodString>>;
14
- code: z.ZodNullable<z.ZodOptional<z.ZodString>>;
15
- display: z.ZodNullable<z.ZodOptional<z.ZodString>>;
16
- }, "strip", z.ZodTypeAny, {
17
- system?: string | null | undefined;
18
- code?: string | null | undefined;
19
- display?: string | null | undefined;
20
- }, {
21
- system?: string | null | undefined;
22
- code?: string | null | undefined;
23
- display?: string | null | undefined;
24
- }>, "many">>;
25
- text: z.ZodOptional<z.ZodString>;
26
- }, "strip", z.ZodTypeAny, {
27
- coding?: {
28
- system?: string | null | undefined;
29
- code?: string | null | undefined;
30
- display?: string | null | undefined;
31
- }[] | undefined;
32
- text?: string | undefined;
33
- }, {
34
- coding?: {
35
- system?: string | null | undefined;
36
- code?: string | null | undefined;
37
- display?: string | null | undefined;
38
- }[] | undefined;
39
- text?: string | undefined;
40
- }>>;
41
- }, "strip", z.ZodTypeAny, {
42
- id: string;
43
- fileName: string;
44
- description?: string | undefined;
45
- status?: string | undefined;
46
- indexed?: string | undefined;
47
- mimeType?: string | undefined;
48
- size?: number | undefined;
49
- type?: {
50
- coding?: {
51
- system?: string | null | undefined;
52
- code?: string | null | undefined;
53
- display?: string | null | undefined;
54
- }[] | undefined;
55
- text?: string | undefined;
56
- } | undefined;
57
- }, {
58
- id: string;
59
- fileName: string;
60
- description?: string | undefined;
61
- status?: string | undefined;
62
- indexed?: string | undefined;
63
- mimeType?: string | undefined;
64
- size?: number | undefined;
65
- type?: {
66
- coding?: {
67
- system?: string | null | undefined;
68
- code?: string | null | undefined;
69
- display?: string | null | undefined;
70
- }[] | undefined;
71
- text?: string | undefined;
72
- } | undefined;
73
- }>;
74
- export type DocumentReference = z.infer<typeof documentReferenceSchema>;
75
- export declare const documentQueryStatusSchema: z.ZodEnum<["processing", "completed", "failed"]>;
76
- export type DocumentQueryStatus = z.infer<typeof documentQueryStatusSchema>;
77
- export declare const progressSchema: z.ZodObject<{
78
- status: z.ZodEnum<["processing", "completed", "failed"]>;
79
- total: z.ZodOptional<z.ZodNumber>;
80
- successful: z.ZodOptional<z.ZodNumber>;
81
- errors: z.ZodOptional<z.ZodNumber>;
82
- }, "strip", z.ZodTypeAny, {
83
- status: "processing" | "completed" | "failed";
84
- total?: number | undefined;
85
- successful?: number | undefined;
86
- errors?: number | undefined;
87
- }, {
88
- status: "processing" | "completed" | "failed";
89
- total?: number | undefined;
90
- successful?: number | undefined;
91
- errors?: number | undefined;
92
- }>;
93
- export declare const documentQuerySchema: z.ZodObject<{
94
- download: z.ZodOptional<z.ZodObject<{
95
- status: z.ZodEnum<["processing", "completed", "failed"]>;
96
- total: z.ZodOptional<z.ZodNumber>;
97
- successful: z.ZodOptional<z.ZodNumber>;
98
- errors: z.ZodOptional<z.ZodNumber>;
99
- }, "strip", z.ZodTypeAny, {
100
- status: "processing" | "completed" | "failed";
101
- total?: number | undefined;
102
- successful?: number | undefined;
103
- errors?: number | undefined;
104
- }, {
105
- status: "processing" | "completed" | "failed";
106
- total?: number | undefined;
107
- successful?: number | undefined;
108
- errors?: number | undefined;
109
- }>>;
110
- convert: z.ZodOptional<z.ZodObject<{
111
- status: z.ZodEnum<["processing", "completed", "failed"]>;
112
- total: z.ZodOptional<z.ZodNumber>;
113
- successful: z.ZodOptional<z.ZodNumber>;
114
- errors: z.ZodOptional<z.ZodNumber>;
115
- }, "strip", z.ZodTypeAny, {
116
- status: "processing" | "completed" | "failed";
117
- total?: number | undefined;
118
- successful?: number | undefined;
119
- errors?: number | undefined;
120
- }, {
121
- status: "processing" | "completed" | "failed";
122
- total?: number | undefined;
123
- successful?: number | undefined;
124
- errors?: number | undefined;
125
- }>>;
126
- requestId: z.ZodOptional<z.ZodString>;
127
- }, "strip", z.ZodTypeAny, {
128
- download?: {
129
- status: "processing" | "completed" | "failed";
130
- total?: number | undefined;
131
- successful?: number | undefined;
132
- errors?: number | undefined;
133
- } | undefined;
134
- convert?: {
135
- status: "processing" | "completed" | "failed";
136
- total?: number | undefined;
137
- successful?: number | undefined;
138
- errors?: number | undefined;
139
- } | undefined;
140
- requestId?: string | undefined;
141
- }, {
142
- download?: {
143
- status: "processing" | "completed" | "failed";
144
- total?: number | undefined;
145
- successful?: number | undefined;
146
- errors?: number | undefined;
147
- } | undefined;
148
- convert?: {
149
- status: "processing" | "completed" | "failed";
150
- total?: number | undefined;
151
- successful?: number | undefined;
152
- errors?: number | undefined;
153
- } | undefined;
154
- requestId?: string | undefined;
155
- }>;
156
- export declare const bulkGetDocumentUrlQuerySchema: z.ZodObject<{
157
- status: z.ZodEnum<["processing", "completed", "failed"]>;
158
- requestId: z.ZodOptional<z.ZodString>;
159
- }, "strip", z.ZodTypeAny, {
160
- status: "processing" | "completed" | "failed";
161
- requestId?: string | undefined;
162
- }, {
163
- status: "processing" | "completed" | "failed";
164
- requestId?: string | undefined;
165
- }>;
166
- export type BulkGetDocumentUrlQuery = z.infer<typeof bulkGetDocumentUrlQuerySchema>;
167
- export type DocumentQuery = z.infer<typeof documentQuerySchema>;
168
- export declare const documentListSchema: z.ZodObject<{
169
- documents: z.ZodArray<z.ZodObject<{
170
- id: z.ZodString;
171
- fileName: z.ZodString;
172
- description: z.ZodOptional<z.ZodString>;
173
- status: z.ZodOptional<z.ZodString>;
174
- indexed: z.ZodOptional<z.ZodString>;
175
- mimeType: z.ZodOptional<z.ZodString>;
176
- size: z.ZodOptional<z.ZodNumber>;
177
- type: z.ZodOptional<z.ZodObject<{
178
- coding: z.ZodOptional<z.ZodArray<z.ZodObject<{
179
- system: z.ZodNullable<z.ZodOptional<z.ZodString>>;
180
- code: z.ZodNullable<z.ZodOptional<z.ZodString>>;
181
- display: z.ZodNullable<z.ZodOptional<z.ZodString>>;
182
- }, "strip", z.ZodTypeAny, {
183
- system?: string | null | undefined;
184
- code?: string | null | undefined;
185
- display?: string | null | undefined;
186
- }, {
187
- system?: string | null | undefined;
188
- code?: string | null | undefined;
189
- display?: string | null | undefined;
190
- }>, "many">>;
191
- text: z.ZodOptional<z.ZodString>;
192
- }, "strip", z.ZodTypeAny, {
193
- coding?: {
194
- system?: string | null | undefined;
195
- code?: string | null | undefined;
196
- display?: string | null | undefined;
197
- }[] | undefined;
198
- text?: string | undefined;
199
- }, {
200
- coding?: {
201
- system?: string | null | undefined;
202
- code?: string | null | undefined;
203
- display?: string | null | undefined;
204
- }[] | undefined;
205
- text?: string | undefined;
206
- }>>;
207
- }, "strip", z.ZodTypeAny, {
208
- id: string;
209
- fileName: string;
210
- description?: string | undefined;
211
- status?: string | undefined;
212
- indexed?: string | undefined;
213
- mimeType?: string | undefined;
214
- size?: number | undefined;
215
- type?: {
216
- coding?: {
217
- system?: string | null | undefined;
218
- code?: string | null | undefined;
219
- display?: string | null | undefined;
220
- }[] | undefined;
221
- text?: string | undefined;
222
- } | undefined;
223
- }, {
224
- id: string;
225
- fileName: string;
226
- description?: string | undefined;
227
- status?: string | undefined;
228
- indexed?: string | undefined;
229
- mimeType?: string | undefined;
230
- size?: number | undefined;
231
- type?: {
232
- coding?: {
233
- system?: string | null | undefined;
234
- code?: string | null | undefined;
235
- display?: string | null | undefined;
236
- }[] | undefined;
237
- text?: string | undefined;
238
- } | undefined;
239
- }>, "many">;
240
- }, "strip", z.ZodTypeAny, {
241
- documents: {
242
- id: string;
243
- fileName: string;
244
- description?: string | undefined;
245
- status?: string | undefined;
246
- indexed?: string | undefined;
247
- mimeType?: string | undefined;
248
- size?: number | undefined;
249
- type?: {
250
- coding?: {
251
- system?: string | null | undefined;
252
- code?: string | null | undefined;
253
- display?: string | null | undefined;
254
- }[] | undefined;
255
- text?: string | undefined;
256
- } | undefined;
257
- }[];
258
- }, {
259
- documents: {
260
- id: string;
261
- fileName: string;
262
- description?: string | undefined;
263
- status?: string | undefined;
264
- indexed?: string | undefined;
265
- mimeType?: string | undefined;
266
- size?: number | undefined;
267
- type?: {
268
- coding?: {
269
- system?: string | null | undefined;
270
- code?: string | null | undefined;
271
- display?: string | null | undefined;
272
- }[] | undefined;
273
- text?: string | undefined;
274
- } | undefined;
275
- }[];
276
- }>;
277
- export type DocumentList = z.infer<typeof documentListSchema>;
278
- export type ListDocumentFilters = {
279
- dateFrom?: string | Date;
280
- dateTo?: string | Date;
281
- content?: string;
282
- };
283
- export type ListDocumentResult = {
284
- documents: FHIRDocumentReference[];
285
- };
286
- export type UploadDocumentResult = {
287
- documentReferenceId: string;
288
- uploadUrl: string;
289
- };
290
- export type MedicalRecordsCreatedAtDTO = {
291
- htmlCreatedAt?: Date;
292
- pdfCreatedAt?: Date;
293
- };
294
- //# sourceMappingURL=document%20copy.d.ts.map
@@ -1 +0,0 @@
1
- {"version":3,"file":"document copy.d.ts","sourceRoot":"","sources":["../../../src/medical/models/document copy.ts"],"names":[],"mappings":"AAAA,OAAO,EAAE,iBAAiB,IAAI,qBAAqB,EAAE,MAAM,oBAAoB,CAAC;AAChF,OAAO,EAAE,CAAC,EAAE,MAAM,KAAK,CAAC;AAExB,eAAO,MAAM,uBAAuB;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;EAsBlC,CAAC;AACH,MAAM,MAAM,iBAAiB,GAAG,CAAC,CAAC,KAAK,CAAC,OAAO,uBAAuB,CAAC,CAAC;AAExE,eAAO,MAAM,yBAAyB,kDAAgD,CAAC;AACvF,MAAM,MAAM,mBAAmB,GAAG,CAAC,CAAC,KAAK,CAAC,OAAO,yBAAyB,CAAC,CAAC;AAE5E,eAAO,MAAM,cAAc;;;;;;;;;;;;;;;EAKzB,CAAC;AAEH,eAAO,MAAM,mBAAmB;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;EAI9B,CAAC;AAEH,eAAO,MAAM,6BAA6B;;;;;;;;;EAGxC,CAAC;AAEH,MAAM,MAAM,uBAAuB,GAAG,CAAC,CAAC,KAAK,CAAC,OAAO,6BAA6B,CAAC,CAAC;AACpF,MAAM,MAAM,aAAa,GAAG,CAAC,CAAC,KAAK,CAAC,OAAO,mBAAmB,CAAC,CAAC;AAEhE,eAAO,MAAM,kBAAkB;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;EAE7B,CAAC;AACH,MAAM,MAAM,YAAY,GAAG,CAAC,CAAC,KAAK,CAAC,OAAO,kBAAkB,CAAC,CAAC;AAE9D,MAAM,MAAM,mBAAmB,GAAG;IAChC,QAAQ,CAAC,EAAE,MAAM,GAAG,IAAI,CAAC;IACzB,MAAM,CAAC,EAAE,MAAM,GAAG,IAAI,CAAC;IACvB,OAAO,CAAC,EAAE,MAAM,CAAC;CAClB,CAAC;AAEF,MAAM,MAAM,kBAAkB,GAAG;IAC/B,SAAS,EAAE,qBAAqB,EAAE,CAAC;CACpC,CAAC;AAEF,MAAM,MAAM,oBAAoB,GAAG;IACjC,mBAAmB,EAAE,MAAM,CAAC;IAC5B,SAAS,EAAE,MAAM,CAAC;CACnB,CAAC;AAEF,MAAM,MAAM,0BAA0B,GAAG;IACvC,aAAa,CAAC,EAAE,IAAI,CAAC;IACrB,YAAY,CAAC,EAAE,IAAI,CAAC;CACrB,CAAC"}
@@ -1,45 +0,0 @@
1
- "use strict";
2
- Object.defineProperty(exports, "__esModule", { value: true });
3
- exports.documentListSchema = exports.bulkGetDocumentUrlQuerySchema = exports.documentQuerySchema = exports.progressSchema = exports.documentQueryStatusSchema = exports.documentReferenceSchema = void 0;
4
- const zod_1 = require("zod");
5
- exports.documentReferenceSchema = zod_1.z.object({
6
- id: zod_1.z.string(),
7
- fileName: zod_1.z.string(),
8
- description: zod_1.z.string().optional(),
9
- status: zod_1.z.string().optional(),
10
- indexed: zod_1.z.string().optional(),
11
- mimeType: zod_1.z.string().optional(),
12
- size: zod_1.z.number().optional(),
13
- type: zod_1.z
14
- .object({
15
- coding: zod_1.z
16
- .array(zod_1.z.object({
17
- system: zod_1.z.string().optional().nullable(),
18
- code: zod_1.z.string().optional().nullable(),
19
- display: zod_1.z.string().optional().nullable(),
20
- }))
21
- .optional(),
22
- text: zod_1.z.string().optional(),
23
- })
24
- .optional(),
25
- });
26
- exports.documentQueryStatusSchema = zod_1.z.enum(["processing", "completed", "failed"]);
27
- exports.progressSchema = zod_1.z.object({
28
- status: exports.documentQueryStatusSchema,
29
- total: zod_1.z.number().optional(),
30
- successful: zod_1.z.number().optional(),
31
- errors: zod_1.z.number().optional(),
32
- });
33
- exports.documentQuerySchema = zod_1.z.object({
34
- download: exports.progressSchema.optional(),
35
- convert: exports.progressSchema.optional(),
36
- requestId: zod_1.z.string().optional(),
37
- });
38
- exports.bulkGetDocumentUrlQuerySchema = zod_1.z.object({
39
- status: exports.documentQueryStatusSchema,
40
- requestId: zod_1.z.string().optional(),
41
- });
42
- exports.documentListSchema = zod_1.z.object({
43
- documents: zod_1.z.array(exports.documentReferenceSchema),
44
- });
45
- //# sourceMappingURL=document%20copy.js.map
@@ -1 +0,0 @@
1
- {"version":3,"file":"document copy.js","sourceRoot":"","sources":["../../../src/medical/models/document copy.ts"],"names":[],"mappings":";;;AACA,6BAAwB;AAEX,QAAA,uBAAuB,GAAG,OAAC,CAAC,MAAM,CAAC;IAC9C,EAAE,EAAE,OAAC,CAAC,MAAM,EAAE;IACd,QAAQ,EAAE,OAAC,CAAC,MAAM,EAAE;IACpB,WAAW,EAAE,OAAC,CAAC,MAAM,EAAE,CAAC,QAAQ,EAAE;IAClC,MAAM,EAAE,OAAC,CAAC,MAAM,EAAE,CAAC,QAAQ,EAAE;IAC7B,OAAO,EAAE,OAAC,CAAC,MAAM,EAAE,CAAC,QAAQ,EAAE;IAC9B,QAAQ,EAAE,OAAC,CAAC,MAAM,EAAE,CAAC,QAAQ,EAAE;IAC/B,IAAI,EAAE,OAAC,CAAC,MAAM,EAAE,CAAC,QAAQ,EAAE;IAC3B,IAAI,EAAE,OAAC;SACJ,MAAM,CAAC;QACN,MAAM,EAAE,OAAC;aACN,KAAK,CACJ,OAAC,CAAC,MAAM,CAAC;YACP,MAAM,EAAE,OAAC,CAAC,MAAM,EAAE,CAAC,QAAQ,EAAE,CAAC,QAAQ,EAAE;YACxC,IAAI,EAAE,OAAC,CAAC,MAAM,EAAE,CAAC,QAAQ,EAAE,CAAC,QAAQ,EAAE;YACtC,OAAO,EAAE,OAAC,CAAC,MAAM,EAAE,CAAC,QAAQ,EAAE,CAAC,QAAQ,EAAE;SAC1C,CAAC,CACH;aACA,QAAQ,EAAE;QACb,IAAI,EAAE,OAAC,CAAC,MAAM,EAAE,CAAC,QAAQ,EAAE;KAC5B,CAAC;SACD,QAAQ,EAAE;CACd,CAAC,CAAC;AAGU,QAAA,yBAAyB,GAAG,OAAC,CAAC,IAAI,CAAC,CAAC,YAAY,EAAE,WAAW,EAAE,QAAQ,CAAC,CAAC,CAAC;AAG1E,QAAA,cAAc,GAAG,OAAC,CAAC,MAAM,CAAC;IACrC,MAAM,EAAE,iCAAyB;IACjC,KAAK,EAAE,OAAC,CAAC,MAAM,EAAE,CAAC,QAAQ,EAAE;IAC5B,UAAU,EAAE,OAAC,CAAC,MAAM,EAAE,CAAC,QAAQ,EAAE;IACjC,MAAM,EAAE,OAAC,CAAC,MAAM,EAAE,CAAC,QAAQ,EAAE;CAC9B,CAAC,CAAC;AAEU,QAAA,mBAAmB,GAAG,OAAC,CAAC,MAAM,CAAC;IAC1C,QAAQ,EAAE,sBAAc,CAAC,QAAQ,EAAE;IACnC,OAAO,EAAE,sBAAc,CAAC,QAAQ,EAAE;IAClC,SAAS,EAAE,OAAC,CAAC,MAAM,EAAE,CAAC,QAAQ,EAAE;CACjC,CAAC,CAAC;AAEU,QAAA,6BAA6B,GAAG,OAAC,CAAC,MAAM,CAAC;IACpD,MAAM,EAAE,iCAAyB;IACjC,SAAS,EAAE,OAAC,CAAC,MAAM,EAAE,CAAC,QAAQ,EAAE;CACjC,CAAC,CAAC;AAKU,QAAA,kBAAkB,GAAG,OAAC,CAAC,MAAM,CAAC;IACzC,SAAS,EAAE,OAAC,CAAC,KAAK,CAAC,+BAAuB,CAAC;CAC5C,CAAC,CAAC"}
@@ -1,11 +0,0 @@
1
- export type MedicalRecordsStatusDTO = {
2
- html: {
3
- exists: boolean;
4
- createdAt?: Date;
5
- };
6
- pdf: {
7
- exists: boolean;
8
- createdAt?: Date;
9
- };
10
- };
11
- //# sourceMappingURL=medicalRecordStatusDTO.d.ts.map
@@ -1 +0,0 @@
1
- {"version":3,"file":"medicalRecordStatusDTO.d.ts","sourceRoot":"","sources":["../../../src/medical/models/medicalRecordStatusDTO.ts"],"names":[],"mappings":"AAAA,MAAM,MAAM,uBAAuB,GAAG;IACpC,IAAI,EAAE;QACJ,MAAM,EAAE,OAAO,CAAC;QAChB,SAAS,CAAC,EAAE,IAAI,CAAC;KAClB,CAAC;IACF,GAAG,EAAE;QACH,MAAM,EAAE,OAAO,CAAC;QAChB,SAAS,CAAC,EAAE,IAAI,CAAC;KAClB,CAAC;CACH,CAAC"}
@@ -1,3 +0,0 @@
1
- "use strict";
2
- Object.defineProperty(exports, "__esModule", { value: true });
3
- //# sourceMappingURL=medicalRecordStatusDTO.js.map
@@ -1 +0,0 @@
1
- {"version":3,"file":"medicalRecordStatusDTO.js","sourceRoot":"","sources":["../../../src/medical/models/medicalRecordStatusDTO.ts"],"names":[],"mappings":""}
@@ -1,11 +0,0 @@
1
- export type MedicalRecordsStatus = {
2
- html: {
3
- exists: boolean;
4
- createdAt?: Date;
5
- };
6
- pdf: {
7
- exists: boolean;
8
- createdAt?: Date;
9
- };
10
- };
11
- //# sourceMappingURL=medicalRecordSummaryDTO.d.ts.map
@@ -1 +0,0 @@
1
- {"version":3,"file":"medicalRecordSummaryDTO.d.ts","sourceRoot":"","sources":["../../../src/medical/models/medicalRecordSummaryDTO.ts"],"names":[],"mappings":"AAAA,MAAM,MAAM,oBAAoB,GAAG;IACjC,IAAI,EAAE;QACJ,MAAM,EAAE,OAAO,CAAC;QAChB,SAAS,CAAC,EAAE,IAAI,CAAC;KAClB,CAAC;IACF,GAAG,EAAE;QACH,MAAM,EAAE,OAAO,CAAC;QAChB,SAAS,CAAC,EAAE,IAAI,CAAC;KAClB,CAAC;CACH,CAAC"}
@@ -1,3 +0,0 @@
1
- "use strict";
2
- Object.defineProperty(exports, "__esModule", { value: true });
3
- //# sourceMappingURL=medicalRecordSummaryDTO.js.map
@@ -1 +0,0 @@
1
- {"version":3,"file":"medicalRecordSummaryDTO.js","sourceRoot":"","sources":["../../../src/medical/models/medicalRecordSummaryDTO.ts"],"names":[],"mappings":""}