@metriport/commonwell-sdk 3.1.1 → 3.1.2
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/address.d.ts +6 -6
- package/lib/models/certificates.d.ts +13 -13
- package/lib/models/contact.d.ts +4 -4
- package/lib/models/demographics.d.ts +48 -49
- package/lib/models/document.d.ts +723 -723
- package/lib/models/facility.d.ts +16 -16
- package/lib/models/human-name.d.ts +8 -8
- package/lib/models/identifier.d.ts +2 -3
- package/lib/models/link.d.ts +116 -117
- package/lib/models/organization.d.ts +140 -140
- package/lib/models/patient.d.ts +954 -959
- package/lib/models/person.d.ts +593 -595
- package/package.json +2 -2
- package/lib/models/commonwell.d.ts +0 -49
- package/lib/models/commonwell.js +0 -3
- package/lib/models/commonwell.js.map +0 -1
package/lib/models/facility.d.ts
CHANGED
|
@@ -21,55 +21,55 @@ export declare const facilitySchema: z.ZodObject<{
|
|
|
21
21
|
}>>>;
|
|
22
22
|
}, "strip", z.ZodTypeAny, {
|
|
23
23
|
use?: string;
|
|
24
|
-
period?: {
|
|
25
|
-
start?: string;
|
|
26
|
-
end?: string;
|
|
27
|
-
};
|
|
28
24
|
line?: string[];
|
|
29
25
|
city?: string;
|
|
30
26
|
state?: string;
|
|
31
27
|
zip?: string;
|
|
32
28
|
country?: string;
|
|
33
|
-
}, {
|
|
34
|
-
use?: string;
|
|
35
29
|
period?: {
|
|
36
30
|
start?: string;
|
|
37
31
|
end?: string;
|
|
38
32
|
};
|
|
33
|
+
}, {
|
|
34
|
+
use?: string;
|
|
39
35
|
line?: string[];
|
|
40
36
|
city?: string;
|
|
41
37
|
state?: string;
|
|
42
38
|
zip?: string;
|
|
43
39
|
country?: string;
|
|
40
|
+
period?: {
|
|
41
|
+
start?: string;
|
|
42
|
+
end?: string;
|
|
43
|
+
};
|
|
44
44
|
}>>>;
|
|
45
45
|
}, "strip", z.ZodTypeAny, {
|
|
46
|
+
id?: string;
|
|
46
47
|
name?: string;
|
|
47
48
|
address?: {
|
|
48
49
|
use?: string;
|
|
49
|
-
period?: {
|
|
50
|
-
start?: string;
|
|
51
|
-
end?: string;
|
|
52
|
-
};
|
|
53
50
|
line?: string[];
|
|
54
51
|
city?: string;
|
|
55
52
|
state?: string;
|
|
56
53
|
zip?: string;
|
|
57
54
|
country?: string;
|
|
55
|
+
period?: {
|
|
56
|
+
start?: string;
|
|
57
|
+
end?: string;
|
|
58
|
+
};
|
|
58
59
|
};
|
|
59
|
-
id?: string;
|
|
60
60
|
}, {
|
|
61
|
+
id?: string;
|
|
61
62
|
name?: string;
|
|
62
63
|
address?: {
|
|
63
64
|
use?: string;
|
|
64
|
-
period?: {
|
|
65
|
-
start?: string;
|
|
66
|
-
end?: string;
|
|
67
|
-
};
|
|
68
65
|
line?: string[];
|
|
69
66
|
city?: string;
|
|
70
67
|
state?: string;
|
|
71
68
|
zip?: string;
|
|
72
69
|
country?: string;
|
|
70
|
+
period?: {
|
|
71
|
+
start?: string;
|
|
72
|
+
end?: string;
|
|
73
|
+
};
|
|
73
74
|
};
|
|
74
|
-
id?: string;
|
|
75
75
|
}>;
|
|
@@ -28,26 +28,26 @@ export declare const humanNameSchema: z.ZodObject<{
|
|
|
28
28
|
end?: string;
|
|
29
29
|
}>>>;
|
|
30
30
|
}, "strip", z.ZodTypeAny, {
|
|
31
|
-
text?: string;
|
|
32
31
|
use?: string;
|
|
33
|
-
|
|
34
|
-
start?: string;
|
|
35
|
-
end?: string;
|
|
36
|
-
};
|
|
32
|
+
text?: string;
|
|
37
33
|
family?: string[];
|
|
38
34
|
given?: string[];
|
|
39
35
|
prefix?: string;
|
|
40
36
|
suffix?: string;
|
|
41
|
-
}, {
|
|
42
|
-
text?: string;
|
|
43
|
-
use?: string;
|
|
44
37
|
period?: {
|
|
45
38
|
start?: string;
|
|
46
39
|
end?: string;
|
|
47
40
|
};
|
|
41
|
+
}, {
|
|
42
|
+
use?: string;
|
|
43
|
+
text?: string;
|
|
48
44
|
family?: string[];
|
|
49
45
|
given?: string[];
|
|
50
46
|
prefix?: string;
|
|
51
47
|
suffix?: string;
|
|
48
|
+
period?: {
|
|
49
|
+
start?: string;
|
|
50
|
+
end?: string;
|
|
51
|
+
};
|
|
52
52
|
}>;
|
|
53
53
|
export type HumanName = z.infer<typeof humanNameSchema>;
|
|
@@ -17,10 +17,9 @@ export declare const strongIdSchema: z.ZodObject<{
|
|
|
17
17
|
key?: string;
|
|
18
18
|
}>;
|
|
19
19
|
export type StrongId = z.infer<typeof strongIdSchema>;
|
|
20
|
-
export declare const identifierSchema: z.ZodObject<
|
|
20
|
+
export declare const identifierSchema: z.ZodObject<{
|
|
21
21
|
system: z.ZodString;
|
|
22
22
|
key: z.ZodString;
|
|
23
|
-
}, {
|
|
24
23
|
use: z.ZodNullable<z.ZodOptional<z.ZodEnum<[string, ...string[]]>>>;
|
|
25
24
|
label: z.ZodNullable<z.ZodOptional<z.ZodString>>;
|
|
26
25
|
period: z.ZodNullable<z.ZodOptional<z.ZodObject<{
|
|
@@ -34,7 +33,7 @@ export declare const identifierSchema: z.ZodObject<z.extendShape<{
|
|
|
34
33
|
end?: string;
|
|
35
34
|
}>>>;
|
|
36
35
|
assigner: z.ZodNullable<z.ZodOptional<z.ZodString>>;
|
|
37
|
-
}
|
|
36
|
+
}, "strip", z.ZodTypeAny, {
|
|
38
37
|
system?: string;
|
|
39
38
|
key?: string;
|
|
40
39
|
use?: string;
|