@metriport/api-sdk 7.11.1-alpha.4 → 7.11.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.
@@ -1 +1 @@
1
- {"version":3,"file":"facility.d.ts","sourceRoot":"","sources":["../../../src/medical/models/facility.ts"],"names":[],"mappings":"AAAA,OAAO,EAAE,CAAC,EAAE,MAAM,KAAK,CAAC;AAKxB,eAAO,MAAM,oBAAoB;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;EAS/B,CAAC;AACH,MAAM,MAAM,cAAc,GAAG,CAAC,CAAC,KAAK,CAAC,OAAO,oBAAoB,CAAC,CAAC;AAElE,eAAO,MAAM,cAAc;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;EAA+C,CAAC;AAC3E,MAAM,MAAM,QAAQ,GAAG,CAAC,CAAC,KAAK,CAAC,OAAO,cAAc,CAAC,CAAC;AAEtD,eAAO,MAAM,kBAAkB;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;EAE7B,CAAC"}
1
+ {"version":3,"file":"facility.d.ts","sourceRoot":"","sources":["../../../src/medical/models/facility.ts"],"names":[],"mappings":"AAAA,OAAO,EAAE,CAAC,EAAE,MAAM,KAAK,CAAC;AAKxB,eAAO,MAAM,oBAAoB;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;EAS/B,CAAC;AACH,MAAM,MAAM,cAAc,GAAG,CAAC,CAAC,KAAK,CAAC,OAAO,oBAAoB,CAAC,CAAC;AAElE,eAAO,MAAM,cAAc;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;EAA+C,CAAC;AAC3E,MAAM,MAAM,QAAQ,GAAG,CAAC,CAAC,KAAK,CAAC,OAAO,cAAc,CAAC,CAAC;AAEtD,eAAO,MAAM,kBAAkB;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;EAE7B,CAAC"}
@@ -17,6 +17,16 @@ export declare const organizationCreateSchema: z.ZodObject<{
17
17
  city: z.ZodString;
18
18
  state: z.ZodEffects<z.ZodNativeEnum<typeof import("./common/us-data").USState>, import("./common/us-data").USState, unknown>;
19
19
  zip: z.ZodEffects<z.ZodEffects<z.ZodString, string, string>, string, string>;
20
+ coordinates: z.ZodOptional<z.ZodObject<{
21
+ lat: z.ZodNumber;
22
+ lon: z.ZodNumber;
23
+ }, "strip", z.ZodTypeAny, {
24
+ lat: number;
25
+ lon: number;
26
+ }, {
27
+ lat: number;
28
+ lon: number;
29
+ }>>;
20
30
  country: z.ZodDefault<z.ZodOptional<z.ZodLiteral<"USA">>>;
21
31
  }, "strip", z.ZodTypeAny, {
22
32
  addressLine1: string;
@@ -25,12 +35,20 @@ export declare const organizationCreateSchema: z.ZodObject<{
25
35
  zip: string;
26
36
  country: "USA";
27
37
  addressLine2?: string | undefined;
38
+ coordinates?: {
39
+ lat: number;
40
+ lon: number;
41
+ } | undefined;
28
42
  }, {
29
43
  addressLine1: string;
30
44
  city: string;
31
45
  zip: string;
32
46
  addressLine2?: string | undefined;
33
47
  state?: unknown;
48
+ coordinates?: {
49
+ lat: number;
50
+ lon: number;
51
+ } | undefined;
34
52
  country?: "USA" | undefined;
35
53
  }>;
36
54
  }, "strip", z.ZodTypeAny, {
@@ -43,6 +61,10 @@ export declare const organizationCreateSchema: z.ZodObject<{
43
61
  zip: string;
44
62
  country: "USA";
45
63
  addressLine2?: string | undefined;
64
+ coordinates?: {
65
+ lat: number;
66
+ lon: number;
67
+ } | undefined;
46
68
  };
47
69
  }, {
48
70
  type: OrgType;
@@ -53,6 +75,10 @@ export declare const organizationCreateSchema: z.ZodObject<{
53
75
  zip: string;
54
76
  addressLine2?: string | undefined;
55
77
  state?: unknown;
78
+ coordinates?: {
79
+ lat: number;
80
+ lon: number;
81
+ } | undefined;
56
82
  country?: "USA" | undefined;
57
83
  };
58
84
  }>;
@@ -66,6 +92,16 @@ export declare const organizationSchema: z.ZodObject<{
66
92
  city: z.ZodString;
67
93
  state: z.ZodEffects<z.ZodNativeEnum<typeof import("./common/us-data").USState>, import("./common/us-data").USState, unknown>;
68
94
  zip: z.ZodEffects<z.ZodEffects<z.ZodString, string, string>, string, string>;
95
+ coordinates: z.ZodOptional<z.ZodObject<{
96
+ lat: z.ZodNumber;
97
+ lon: z.ZodNumber;
98
+ }, "strip", z.ZodTypeAny, {
99
+ lat: number;
100
+ lon: number;
101
+ }, {
102
+ lat: number;
103
+ lon: number;
104
+ }>>;
69
105
  country: z.ZodDefault<z.ZodOptional<z.ZodLiteral<"USA">>>;
70
106
  }, "strip", z.ZodTypeAny, {
71
107
  addressLine1: string;
@@ -74,12 +110,20 @@ export declare const organizationSchema: z.ZodObject<{
74
110
  zip: string;
75
111
  country: "USA";
76
112
  addressLine2?: string | undefined;
113
+ coordinates?: {
114
+ lat: number;
115
+ lon: number;
116
+ } | undefined;
77
117
  }, {
78
118
  addressLine1: string;
79
119
  city: string;
80
120
  zip: string;
81
121
  addressLine2?: string | undefined;
82
122
  state?: unknown;
123
+ coordinates?: {
124
+ lat: number;
125
+ lon: number;
126
+ } | undefined;
83
127
  country?: "USA" | undefined;
84
128
  }>;
85
129
  oid: z.ZodString;
@@ -96,6 +140,10 @@ export declare const organizationSchema: z.ZodObject<{
96
140
  zip: string;
97
141
  country: "USA";
98
142
  addressLine2?: string | undefined;
143
+ coordinates?: {
144
+ lat: number;
145
+ lon: number;
146
+ } | undefined;
99
147
  };
100
148
  oid: string;
101
149
  eTag?: string | undefined;
@@ -109,6 +157,10 @@ export declare const organizationSchema: z.ZodObject<{
109
157
  zip: string;
110
158
  addressLine2?: string | undefined;
111
159
  state?: unknown;
160
+ coordinates?: {
161
+ lat: number;
162
+ lon: number;
163
+ } | undefined;
112
164
  country?: "USA" | undefined;
113
165
  };
114
166
  oid: string;
@@ -1 +1 @@
1
- {"version":3,"file":"organization.d.ts","sourceRoot":"","sources":["../../../src/medical/models/organization.ts"],"names":[],"mappings":"AAAA,OAAO,EAAE,CAAC,EAAE,MAAM,KAAK,CAAC;AAIxB,oBAAY,OAAO;IACjB,SAAS,cAAc;IACvB,UAAU,eAAe;IACzB,QAAQ,aAAa;IACrB,UAAU,eAAe;IACzB,QAAQ,aAAa;IACrB,aAAa,kBAAkB;CAChC;AAED,eAAO,MAAM,aAAa,iCAAwB,CAAC;AAEnD,eAAO,MAAM,wBAAwB;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;EAInC,CAAC;AACH,MAAM,MAAM,kBAAkB,GAAG,CAAC,CAAC,KAAK,CAAC,OAAO,wBAAwB,CAAC,CAAC;AAE1E,eAAO,MAAM,kBAAkB;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;EAKL,CAAC;AAC3B,MAAM,MAAM,YAAY,GAAG,CAAC,CAAC,KAAK,CAAC,OAAO,kBAAkB,CAAC,CAAC"}
1
+ {"version":3,"file":"organization.d.ts","sourceRoot":"","sources":["../../../src/medical/models/organization.ts"],"names":[],"mappings":"AAAA,OAAO,EAAE,CAAC,EAAE,MAAM,KAAK,CAAC;AAIxB,oBAAY,OAAO;IACjB,SAAS,cAAc;IACvB,UAAU,eAAe;IACzB,QAAQ,aAAa;IACrB,UAAU,eAAe;IACzB,QAAQ,aAAa;IACrB,aAAa,kBAAkB;CAChC;AAED,eAAO,MAAM,aAAa,iCAAwB,CAAC;AAEnD,eAAO,MAAM,wBAAwB;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;EAInC,CAAC;AACH,MAAM,MAAM,kBAAkB,GAAG,CAAC,CAAC,KAAK,CAAC,OAAO,wBAAwB,CAAC,CAAC;AAE1E,eAAO,MAAM,kBAAkB;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;EAKL,CAAC;AAC3B,MAAM,MAAM,YAAY,GAAG,CAAC,CAAC,KAAK,CAAC,OAAO,kBAAkB,CAAC,CAAC"}