@metriport/commonwell-sdk 4.1.4 → 4.1.5-alpha.1
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/lib/models/demographics.d.ts +5 -5
- package/lib/models/document.d.ts +112 -98
- package/lib/models/document.js +2 -0
- package/lib/models/document.js.map +1 -1
- package/lib/models/identifier.d.ts +7 -7
- package/lib/models/identifier.js +8 -1
- package/lib/models/identifier.js.map +1 -1
- package/lib/models/link.d.ts +9 -9
- package/lib/models/patient.d.ts +45 -45
- package/lib/models/person.d.ts +18 -18
- package/lib/tst.d.ts +54 -0
- package/package.json +2 -2
|
@@ -23,7 +23,7 @@ export declare const demographicsSchema: z.ZodObject<{
|
|
|
23
23
|
identifier: z.ZodNullable<z.ZodOptional<z.ZodArray<z.ZodObject<{
|
|
24
24
|
system: z.ZodString;
|
|
25
25
|
key: z.ZodString;
|
|
26
|
-
use: z.ZodNullable<z.ZodOptional<z.ZodEnum<["usual", "official", "temp", "secondary", "old"]>>>;
|
|
26
|
+
use: z.ZodNullable<z.ZodOptional<z.ZodEnum<["usual", "official", "temp", "secondary", "old", "unspecified"]>>>;
|
|
27
27
|
label: z.ZodNullable<z.ZodOptional<z.ZodString>>;
|
|
28
28
|
period: z.ZodNullable<z.ZodOptional<z.ZodObject<{
|
|
29
29
|
start: z.ZodOptional<z.ZodUnion<[z.ZodString, z.ZodString]>>;
|
|
@@ -39,7 +39,7 @@ export declare const demographicsSchema: z.ZodObject<{
|
|
|
39
39
|
}, "strip", z.ZodTypeAny, {
|
|
40
40
|
system: string;
|
|
41
41
|
key: string;
|
|
42
|
-
use?: "usual" | "official" | "temp" | "secondary" | "old" | null | undefined;
|
|
42
|
+
use?: "usual" | "official" | "temp" | "secondary" | "old" | "unspecified" | null | undefined;
|
|
43
43
|
label?: string | null | undefined;
|
|
44
44
|
period?: {
|
|
45
45
|
start?: string | undefined;
|
|
@@ -49,7 +49,7 @@ export declare const demographicsSchema: z.ZodObject<{
|
|
|
49
49
|
}, {
|
|
50
50
|
system: string;
|
|
51
51
|
key: string;
|
|
52
|
-
use?: "usual" | "official" | "temp" | "secondary" | "old" | null | undefined;
|
|
52
|
+
use?: "usual" | "official" | "temp" | "secondary" | "old" | "unspecified" | null | undefined;
|
|
53
53
|
label?: string | null | undefined;
|
|
54
54
|
period?: {
|
|
55
55
|
start?: string | undefined;
|
|
@@ -217,7 +217,7 @@ export declare const demographicsSchema: z.ZodObject<{
|
|
|
217
217
|
identifier?: {
|
|
218
218
|
system: string;
|
|
219
219
|
key: string;
|
|
220
|
-
use?: "usual" | "official" | "temp" | "secondary" | "old" | null | undefined;
|
|
220
|
+
use?: "usual" | "official" | "temp" | "secondary" | "old" | "unspecified" | null | undefined;
|
|
221
221
|
label?: string | null | undefined;
|
|
222
222
|
period?: {
|
|
223
223
|
start?: string | undefined;
|
|
@@ -269,7 +269,7 @@ export declare const demographicsSchema: z.ZodObject<{
|
|
|
269
269
|
identifier?: {
|
|
270
270
|
system: string;
|
|
271
271
|
key: string;
|
|
272
|
-
use?: "usual" | "official" | "temp" | "secondary" | "old" | null | undefined;
|
|
272
|
+
use?: "usual" | "official" | "temp" | "secondary" | "old" | "unspecified" | null | undefined;
|
|
273
273
|
label?: string | null | undefined;
|
|
274
274
|
period?: {
|
|
275
275
|
start?: string | undefined;
|