@digitalmedika/satusehat 0.1.0

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.
Files changed (44) hide show
  1. package/LICENSE +21 -0
  2. package/README.md +135 -0
  3. package/dist/builders/cbc-panel-builder.d.ts +18 -0
  4. package/dist/builders/laboratory-panel-builder.d.ts +72 -0
  5. package/dist/builders/organization-builder.d.ts +23 -0
  6. package/dist/builders/service-request-specimen-observation-builder.d.ts +62 -0
  7. package/dist/client/auth.d.ts +11 -0
  8. package/dist/client/create-client.d.ts +5 -0
  9. package/dist/client/token-store.d.ts +7 -0
  10. package/dist/client/transport.d.ts +28 -0
  11. package/dist/core/errors.d.ts +25 -0
  12. package/dist/core/types.d.ts +293 -0
  13. package/dist/endpoints/condition.d.ts +945 -0
  14. package/dist/endpoints/diagnostic-report.d.ts +560 -0
  15. package/dist/endpoints/encounter.d.ts +1150 -0
  16. package/dist/endpoints/location.d.ts +500 -0
  17. package/dist/endpoints/medication-request.d.ts +1585 -0
  18. package/dist/endpoints/medication.d.ts +395 -0
  19. package/dist/endpoints/observation.d.ts +1415 -0
  20. package/dist/endpoints/organization.d.ts +454 -0
  21. package/dist/endpoints/patient.d.ts +72 -0
  22. package/dist/endpoints/practitioner-role.d.ts +425 -0
  23. package/dist/endpoints/practitioner.d.ts +210 -0
  24. package/dist/endpoints/procedure.d.ts +990 -0
  25. package/dist/endpoints/service-request.d.ts +1040 -0
  26. package/dist/endpoints/specimen.d.ts +1005 -0
  27. package/dist/index.d.ts +26 -0
  28. package/dist/index.js +21 -0
  29. package/dist/schemas/common.d.ts +328 -0
  30. package/dist/schemas/condition.d.ts +5314 -0
  31. package/dist/schemas/diagnostic-report.d.ts +2631 -0
  32. package/dist/schemas/encounter.d.ts +7087 -0
  33. package/dist/schemas/location.d.ts +2432 -0
  34. package/dist/schemas/medication-request.d.ts +12183 -0
  35. package/dist/schemas/medication.d.ts +2111 -0
  36. package/dist/schemas/observation.d.ts +9253 -0
  37. package/dist/schemas/organization.d.ts +3357 -0
  38. package/dist/schemas/patient.d.ts +418 -0
  39. package/dist/schemas/practitioner-role.d.ts +1930 -0
  40. package/dist/schemas/practitioner.d.ts +1626 -0
  41. package/dist/schemas/procedure.d.ts +5283 -0
  42. package/dist/schemas/service-request.d.ts +5268 -0
  43. package/dist/schemas/specimen.d.ts +6520 -0
  44. package/package.json +61 -0
@@ -0,0 +1,2432 @@
1
+ import { z } from "zod";
2
+ export declare const LocationIdentifierSchema: z.ZodObject<{
3
+ use: z.ZodOptional<z.ZodString>;
4
+ } & {
5
+ system: z.ZodString;
6
+ value: z.ZodString;
7
+ }, "strip", z.ZodTypeAny, {
8
+ value: string;
9
+ system: string;
10
+ use?: string | undefined;
11
+ }, {
12
+ value: string;
13
+ system: string;
14
+ use?: string | undefined;
15
+ }>;
16
+ export declare const LocationStatusSchema: z.ZodEnum<["active", "suspended", "inactive"]>;
17
+ export declare const LocationModeSchema: z.ZodEnum<["instance", "kind"]>;
18
+ export declare const LocationTypeSchema: z.ZodObject<{
19
+ text: z.ZodOptional<z.ZodString>;
20
+ } & {
21
+ coding: z.ZodArray<z.ZodObject<{
22
+ system: z.ZodString;
23
+ code: z.ZodString;
24
+ display: z.ZodOptional<z.ZodString>;
25
+ }, "strip", z.ZodTypeAny, {
26
+ code: string;
27
+ system: string;
28
+ display?: string | undefined;
29
+ }, {
30
+ code: string;
31
+ system: string;
32
+ display?: string | undefined;
33
+ }>, "many">;
34
+ }, "strip", z.ZodTypeAny, {
35
+ coding: {
36
+ code: string;
37
+ system: string;
38
+ display?: string | undefined;
39
+ }[];
40
+ text?: string | undefined;
41
+ }, {
42
+ coding: {
43
+ code: string;
44
+ system: string;
45
+ display?: string | undefined;
46
+ }[];
47
+ text?: string | undefined;
48
+ }>;
49
+ export declare const LocationPhysicalTypeSchema: z.ZodObject<{
50
+ text: z.ZodOptional<z.ZodString>;
51
+ } & {
52
+ coding: z.ZodArray<z.ZodObject<{
53
+ system: z.ZodString;
54
+ code: z.ZodString;
55
+ display: z.ZodOptional<z.ZodString>;
56
+ }, "strip", z.ZodTypeAny, {
57
+ code: string;
58
+ system: string;
59
+ display?: string | undefined;
60
+ }, {
61
+ code: string;
62
+ system: string;
63
+ display?: string | undefined;
64
+ }>, "many">;
65
+ }, "strip", z.ZodTypeAny, {
66
+ coding: {
67
+ code: string;
68
+ system: string;
69
+ display?: string | undefined;
70
+ }[];
71
+ text?: string | undefined;
72
+ }, {
73
+ coding: {
74
+ code: string;
75
+ system: string;
76
+ display?: string | undefined;
77
+ }[];
78
+ text?: string | undefined;
79
+ }>;
80
+ export declare const LocationPositionSchema: z.ZodObject<{
81
+ longitude: z.ZodNumber;
82
+ latitude: z.ZodNumber;
83
+ altitude: z.ZodOptional<z.ZodNumber>;
84
+ }, "strip", z.ZodTypeAny, {
85
+ longitude: number;
86
+ latitude: number;
87
+ altitude?: number | undefined;
88
+ }, {
89
+ longitude: number;
90
+ latitude: number;
91
+ altitude?: number | undefined;
92
+ }>;
93
+ export declare const LocationPatchOperationSchema: z.ZodObject<{
94
+ op: z.ZodLiteral<"replace">;
95
+ path: z.ZodString;
96
+ value: z.ZodUnknown;
97
+ }, "strip", z.ZodTypeAny, {
98
+ path: string;
99
+ op: "replace";
100
+ value?: unknown;
101
+ }, {
102
+ path: string;
103
+ op: "replace";
104
+ value?: unknown;
105
+ }>;
106
+ export declare const LocationPatchSchema: z.ZodArray<z.ZodObject<{
107
+ op: z.ZodLiteral<"replace">;
108
+ path: z.ZodString;
109
+ value: z.ZodUnknown;
110
+ }, "strip", z.ZodTypeAny, {
111
+ path: string;
112
+ op: "replace";
113
+ value?: unknown;
114
+ }, {
115
+ path: string;
116
+ op: "replace";
117
+ value?: unknown;
118
+ }>, "many">;
119
+ export declare const LocationHoursOfOperationSchema: z.ZodObject<{
120
+ daysOfWeek: z.ZodOptional<z.ZodArray<z.ZodEnum<["mon", "tue", "wed", "thu", "fri", "sat", "sun"]>, "many">>;
121
+ allDay: z.ZodOptional<z.ZodBoolean>;
122
+ openingTime: z.ZodOptional<z.ZodString>;
123
+ closingTime: z.ZodOptional<z.ZodString>;
124
+ }, "strip", z.ZodTypeAny, {
125
+ daysOfWeek?: ("mon" | "tue" | "wed" | "thu" | "fri" | "sat" | "sun")[] | undefined;
126
+ allDay?: boolean | undefined;
127
+ openingTime?: string | undefined;
128
+ closingTime?: string | undefined;
129
+ }, {
130
+ daysOfWeek?: ("mon" | "tue" | "wed" | "thu" | "fri" | "sat" | "sun")[] | undefined;
131
+ allDay?: boolean | undefined;
132
+ openingTime?: string | undefined;
133
+ closingTime?: string | undefined;
134
+ }>;
135
+ export declare const LocationSearchParamsSchema: z.ZodEffects<z.ZodObject<{
136
+ identifier: z.ZodOptional<z.ZodString>;
137
+ name: z.ZodOptional<z.ZodString>;
138
+ organization: z.ZodOptional<z.ZodString>;
139
+ }, "strip", z.ZodTypeAny, {
140
+ identifier?: string | undefined;
141
+ name?: string | undefined;
142
+ organization?: string | undefined;
143
+ }, {
144
+ identifier?: string | undefined;
145
+ name?: string | undefined;
146
+ organization?: string | undefined;
147
+ }>, {
148
+ identifier?: string | undefined;
149
+ name?: string | undefined;
150
+ organization?: string | undefined;
151
+ }, {
152
+ identifier?: string | undefined;
153
+ name?: string | undefined;
154
+ organization?: string | undefined;
155
+ }>;
156
+ export declare const LocationBaseSchema: z.ZodObject<{
157
+ resourceType: z.ZodLiteral<"Location">;
158
+ identifier: z.ZodArray<z.ZodObject<{
159
+ use: z.ZodOptional<z.ZodString>;
160
+ } & {
161
+ system: z.ZodString;
162
+ value: z.ZodString;
163
+ }, "strip", z.ZodTypeAny, {
164
+ value: string;
165
+ system: string;
166
+ use?: string | undefined;
167
+ }, {
168
+ value: string;
169
+ system: string;
170
+ use?: string | undefined;
171
+ }>, "many">;
172
+ status: z.ZodEnum<["active", "suspended", "inactive"]>;
173
+ operationalStatus: z.ZodOptional<z.ZodObject<{
174
+ system: z.ZodOptional<z.ZodString>;
175
+ code: z.ZodOptional<z.ZodString>;
176
+ display: z.ZodOptional<z.ZodString>;
177
+ }, "strip", z.ZodTypeAny, {
178
+ code?: string | undefined;
179
+ system?: string | undefined;
180
+ display?: string | undefined;
181
+ }, {
182
+ code?: string | undefined;
183
+ system?: string | undefined;
184
+ display?: string | undefined;
185
+ }>>;
186
+ name: z.ZodString;
187
+ alias: z.ZodOptional<z.ZodArray<z.ZodString, "many">>;
188
+ description: z.ZodOptional<z.ZodString>;
189
+ mode: z.ZodOptional<z.ZodEnum<["instance", "kind"]>>;
190
+ type: z.ZodOptional<z.ZodArray<z.ZodObject<{
191
+ text: z.ZodOptional<z.ZodString>;
192
+ } & {
193
+ coding: z.ZodArray<z.ZodObject<{
194
+ system: z.ZodString;
195
+ code: z.ZodString;
196
+ display: z.ZodOptional<z.ZodString>;
197
+ }, "strip", z.ZodTypeAny, {
198
+ code: string;
199
+ system: string;
200
+ display?: string | undefined;
201
+ }, {
202
+ code: string;
203
+ system: string;
204
+ display?: string | undefined;
205
+ }>, "many">;
206
+ }, "strip", z.ZodTypeAny, {
207
+ coding: {
208
+ code: string;
209
+ system: string;
210
+ display?: string | undefined;
211
+ }[];
212
+ text?: string | undefined;
213
+ }, {
214
+ coding: {
215
+ code: string;
216
+ system: string;
217
+ display?: string | undefined;
218
+ }[];
219
+ text?: string | undefined;
220
+ }>, "many">>;
221
+ telecom: z.ZodOptional<z.ZodArray<z.ZodObject<{
222
+ system: z.ZodOptional<z.ZodEnum<["phone", "fax", "email", "pager", "url", "sms", "other"]>>;
223
+ value: z.ZodOptional<z.ZodString>;
224
+ use: z.ZodOptional<z.ZodEnum<["home", "work", "temp", "old", "mobile"]>>;
225
+ }, "strip", z.ZodTypeAny, {
226
+ value?: string | undefined;
227
+ system?: "phone" | "fax" | "email" | "pager" | "url" | "sms" | "other" | undefined;
228
+ use?: "home" | "work" | "temp" | "old" | "mobile" | undefined;
229
+ }, {
230
+ value?: string | undefined;
231
+ system?: "phone" | "fax" | "email" | "pager" | "url" | "sms" | "other" | undefined;
232
+ use?: "home" | "work" | "temp" | "old" | "mobile" | undefined;
233
+ }>, "many">>;
234
+ address: z.ZodOptional<z.ZodObject<{
235
+ use: z.ZodOptional<z.ZodEnum<["home", "work", "temp", "old", "billing"]>>;
236
+ type: z.ZodOptional<z.ZodEnum<["postal", "physical", "both"]>>;
237
+ text: z.ZodOptional<z.ZodString>;
238
+ line: z.ZodOptional<z.ZodArray<z.ZodString, "many">>;
239
+ city: z.ZodOptional<z.ZodString>;
240
+ district: z.ZodOptional<z.ZodString>;
241
+ state: z.ZodOptional<z.ZodString>;
242
+ postalCode: z.ZodOptional<z.ZodString>;
243
+ country: z.ZodOptional<z.ZodString>;
244
+ period: z.ZodOptional<z.ZodObject<{
245
+ start: z.ZodOptional<z.ZodString>;
246
+ end: z.ZodOptional<z.ZodString>;
247
+ }, "strip", z.ZodTypeAny, {
248
+ start?: string | undefined;
249
+ end?: string | undefined;
250
+ }, {
251
+ start?: string | undefined;
252
+ end?: string | undefined;
253
+ }>>;
254
+ extension: z.ZodOptional<z.ZodArray<z.ZodObject<{
255
+ url: z.ZodString;
256
+ extension: z.ZodOptional<z.ZodArray<z.ZodObject<{
257
+ url: z.ZodString;
258
+ valueCode: z.ZodString;
259
+ }, "strip", z.ZodTypeAny, {
260
+ url: string;
261
+ valueCode: string;
262
+ }, {
263
+ url: string;
264
+ valueCode: string;
265
+ }>, "many">>;
266
+ }, "strip", z.ZodTypeAny, {
267
+ url: string;
268
+ extension?: {
269
+ url: string;
270
+ valueCode: string;
271
+ }[] | undefined;
272
+ }, {
273
+ url: string;
274
+ extension?: {
275
+ url: string;
276
+ valueCode: string;
277
+ }[] | undefined;
278
+ }>, "many">>;
279
+ }, "strip", z.ZodTypeAny, {
280
+ type?: "postal" | "physical" | "both" | undefined;
281
+ text?: string | undefined;
282
+ use?: "home" | "work" | "temp" | "old" | "billing" | undefined;
283
+ extension?: {
284
+ url: string;
285
+ extension?: {
286
+ url: string;
287
+ valueCode: string;
288
+ }[] | undefined;
289
+ }[] | undefined;
290
+ line?: string[] | undefined;
291
+ city?: string | undefined;
292
+ district?: string | undefined;
293
+ state?: string | undefined;
294
+ postalCode?: string | undefined;
295
+ country?: string | undefined;
296
+ period?: {
297
+ start?: string | undefined;
298
+ end?: string | undefined;
299
+ } | undefined;
300
+ }, {
301
+ type?: "postal" | "physical" | "both" | undefined;
302
+ text?: string | undefined;
303
+ use?: "home" | "work" | "temp" | "old" | "billing" | undefined;
304
+ extension?: {
305
+ url: string;
306
+ extension?: {
307
+ url: string;
308
+ valueCode: string;
309
+ }[] | undefined;
310
+ }[] | undefined;
311
+ line?: string[] | undefined;
312
+ city?: string | undefined;
313
+ district?: string | undefined;
314
+ state?: string | undefined;
315
+ postalCode?: string | undefined;
316
+ country?: string | undefined;
317
+ period?: {
318
+ start?: string | undefined;
319
+ end?: string | undefined;
320
+ } | undefined;
321
+ }>>;
322
+ physicalType: z.ZodOptional<z.ZodObject<{
323
+ text: z.ZodOptional<z.ZodString>;
324
+ } & {
325
+ coding: z.ZodArray<z.ZodObject<{
326
+ system: z.ZodString;
327
+ code: z.ZodString;
328
+ display: z.ZodOptional<z.ZodString>;
329
+ }, "strip", z.ZodTypeAny, {
330
+ code: string;
331
+ system: string;
332
+ display?: string | undefined;
333
+ }, {
334
+ code: string;
335
+ system: string;
336
+ display?: string | undefined;
337
+ }>, "many">;
338
+ }, "strip", z.ZodTypeAny, {
339
+ coding: {
340
+ code: string;
341
+ system: string;
342
+ display?: string | undefined;
343
+ }[];
344
+ text?: string | undefined;
345
+ }, {
346
+ coding: {
347
+ code: string;
348
+ system: string;
349
+ display?: string | undefined;
350
+ }[];
351
+ text?: string | undefined;
352
+ }>>;
353
+ position: z.ZodOptional<z.ZodObject<{
354
+ longitude: z.ZodNumber;
355
+ latitude: z.ZodNumber;
356
+ altitude: z.ZodOptional<z.ZodNumber>;
357
+ }, "strip", z.ZodTypeAny, {
358
+ longitude: number;
359
+ latitude: number;
360
+ altitude?: number | undefined;
361
+ }, {
362
+ longitude: number;
363
+ latitude: number;
364
+ altitude?: number | undefined;
365
+ }>>;
366
+ managingOrganization: z.ZodOptional<z.ZodObject<{
367
+ reference: z.ZodString;
368
+ display: z.ZodOptional<z.ZodString>;
369
+ type: z.ZodOptional<z.ZodString>;
370
+ }, "strip", z.ZodTypeAny, {
371
+ reference: string;
372
+ type?: string | undefined;
373
+ display?: string | undefined;
374
+ }, {
375
+ reference: string;
376
+ type?: string | undefined;
377
+ display?: string | undefined;
378
+ }>>;
379
+ partOf: z.ZodOptional<z.ZodObject<{
380
+ reference: z.ZodString;
381
+ display: z.ZodOptional<z.ZodString>;
382
+ type: z.ZodOptional<z.ZodString>;
383
+ }, "strip", z.ZodTypeAny, {
384
+ reference: string;
385
+ type?: string | undefined;
386
+ display?: string | undefined;
387
+ }, {
388
+ reference: string;
389
+ type?: string | undefined;
390
+ display?: string | undefined;
391
+ }>>;
392
+ hoursOfOperation: z.ZodOptional<z.ZodArray<z.ZodObject<{
393
+ daysOfWeek: z.ZodOptional<z.ZodArray<z.ZodEnum<["mon", "tue", "wed", "thu", "fri", "sat", "sun"]>, "many">>;
394
+ allDay: z.ZodOptional<z.ZodBoolean>;
395
+ openingTime: z.ZodOptional<z.ZodString>;
396
+ closingTime: z.ZodOptional<z.ZodString>;
397
+ }, "strip", z.ZodTypeAny, {
398
+ daysOfWeek?: ("mon" | "tue" | "wed" | "thu" | "fri" | "sat" | "sun")[] | undefined;
399
+ allDay?: boolean | undefined;
400
+ openingTime?: string | undefined;
401
+ closingTime?: string | undefined;
402
+ }, {
403
+ daysOfWeek?: ("mon" | "tue" | "wed" | "thu" | "fri" | "sat" | "sun")[] | undefined;
404
+ allDay?: boolean | undefined;
405
+ openingTime?: string | undefined;
406
+ closingTime?: string | undefined;
407
+ }>, "many">>;
408
+ availabilityExceptions: z.ZodOptional<z.ZodString>;
409
+ endpoint: z.ZodOptional<z.ZodArray<z.ZodObject<{
410
+ reference: z.ZodString;
411
+ display: z.ZodOptional<z.ZodString>;
412
+ type: z.ZodOptional<z.ZodString>;
413
+ }, "strip", z.ZodTypeAny, {
414
+ reference: string;
415
+ type?: string | undefined;
416
+ display?: string | undefined;
417
+ }, {
418
+ reference: string;
419
+ type?: string | undefined;
420
+ display?: string | undefined;
421
+ }>, "many">>;
422
+ }, "strip", z.ZodTypeAny, {
423
+ status: "active" | "inactive" | "suspended";
424
+ resourceType: "Location";
425
+ identifier: {
426
+ value: string;
427
+ system: string;
428
+ use?: string | undefined;
429
+ }[];
430
+ name: string;
431
+ type?: {
432
+ coding: {
433
+ code: string;
434
+ system: string;
435
+ display?: string | undefined;
436
+ }[];
437
+ text?: string | undefined;
438
+ }[] | undefined;
439
+ mode?: "instance" | "kind" | undefined;
440
+ partOf?: {
441
+ reference: string;
442
+ type?: string | undefined;
443
+ display?: string | undefined;
444
+ } | undefined;
445
+ telecom?: {
446
+ value?: string | undefined;
447
+ system?: "phone" | "fax" | "email" | "pager" | "url" | "sms" | "other" | undefined;
448
+ use?: "home" | "work" | "temp" | "old" | "mobile" | undefined;
449
+ }[] | undefined;
450
+ description?: string | undefined;
451
+ physicalType?: {
452
+ coding: {
453
+ code: string;
454
+ system: string;
455
+ display?: string | undefined;
456
+ }[];
457
+ text?: string | undefined;
458
+ } | undefined;
459
+ address?: {
460
+ type?: "postal" | "physical" | "both" | undefined;
461
+ text?: string | undefined;
462
+ use?: "home" | "work" | "temp" | "old" | "billing" | undefined;
463
+ extension?: {
464
+ url: string;
465
+ extension?: {
466
+ url: string;
467
+ valueCode: string;
468
+ }[] | undefined;
469
+ }[] | undefined;
470
+ line?: string[] | undefined;
471
+ city?: string | undefined;
472
+ district?: string | undefined;
473
+ state?: string | undefined;
474
+ postalCode?: string | undefined;
475
+ country?: string | undefined;
476
+ period?: {
477
+ start?: string | undefined;
478
+ end?: string | undefined;
479
+ } | undefined;
480
+ } | undefined;
481
+ availabilityExceptions?: string | undefined;
482
+ endpoint?: {
483
+ reference: string;
484
+ type?: string | undefined;
485
+ display?: string | undefined;
486
+ }[] | undefined;
487
+ alias?: string[] | undefined;
488
+ operationalStatus?: {
489
+ code?: string | undefined;
490
+ system?: string | undefined;
491
+ display?: string | undefined;
492
+ } | undefined;
493
+ position?: {
494
+ longitude: number;
495
+ latitude: number;
496
+ altitude?: number | undefined;
497
+ } | undefined;
498
+ managingOrganization?: {
499
+ reference: string;
500
+ type?: string | undefined;
501
+ display?: string | undefined;
502
+ } | undefined;
503
+ hoursOfOperation?: {
504
+ daysOfWeek?: ("mon" | "tue" | "wed" | "thu" | "fri" | "sat" | "sun")[] | undefined;
505
+ allDay?: boolean | undefined;
506
+ openingTime?: string | undefined;
507
+ closingTime?: string | undefined;
508
+ }[] | undefined;
509
+ }, {
510
+ status: "active" | "inactive" | "suspended";
511
+ resourceType: "Location";
512
+ identifier: {
513
+ value: string;
514
+ system: string;
515
+ use?: string | undefined;
516
+ }[];
517
+ name: string;
518
+ type?: {
519
+ coding: {
520
+ code: string;
521
+ system: string;
522
+ display?: string | undefined;
523
+ }[];
524
+ text?: string | undefined;
525
+ }[] | undefined;
526
+ mode?: "instance" | "kind" | undefined;
527
+ partOf?: {
528
+ reference: string;
529
+ type?: string | undefined;
530
+ display?: string | undefined;
531
+ } | undefined;
532
+ telecom?: {
533
+ value?: string | undefined;
534
+ system?: "phone" | "fax" | "email" | "pager" | "url" | "sms" | "other" | undefined;
535
+ use?: "home" | "work" | "temp" | "old" | "mobile" | undefined;
536
+ }[] | undefined;
537
+ description?: string | undefined;
538
+ physicalType?: {
539
+ coding: {
540
+ code: string;
541
+ system: string;
542
+ display?: string | undefined;
543
+ }[];
544
+ text?: string | undefined;
545
+ } | undefined;
546
+ address?: {
547
+ type?: "postal" | "physical" | "both" | undefined;
548
+ text?: string | undefined;
549
+ use?: "home" | "work" | "temp" | "old" | "billing" | undefined;
550
+ extension?: {
551
+ url: string;
552
+ extension?: {
553
+ url: string;
554
+ valueCode: string;
555
+ }[] | undefined;
556
+ }[] | undefined;
557
+ line?: string[] | undefined;
558
+ city?: string | undefined;
559
+ district?: string | undefined;
560
+ state?: string | undefined;
561
+ postalCode?: string | undefined;
562
+ country?: string | undefined;
563
+ period?: {
564
+ start?: string | undefined;
565
+ end?: string | undefined;
566
+ } | undefined;
567
+ } | undefined;
568
+ availabilityExceptions?: string | undefined;
569
+ endpoint?: {
570
+ reference: string;
571
+ type?: string | undefined;
572
+ display?: string | undefined;
573
+ }[] | undefined;
574
+ alias?: string[] | undefined;
575
+ operationalStatus?: {
576
+ code?: string | undefined;
577
+ system?: string | undefined;
578
+ display?: string | undefined;
579
+ } | undefined;
580
+ position?: {
581
+ longitude: number;
582
+ latitude: number;
583
+ altitude?: number | undefined;
584
+ } | undefined;
585
+ managingOrganization?: {
586
+ reference: string;
587
+ type?: string | undefined;
588
+ display?: string | undefined;
589
+ } | undefined;
590
+ hoursOfOperation?: {
591
+ daysOfWeek?: ("mon" | "tue" | "wed" | "thu" | "fri" | "sat" | "sun")[] | undefined;
592
+ allDay?: boolean | undefined;
593
+ openingTime?: string | undefined;
594
+ closingTime?: string | undefined;
595
+ }[] | undefined;
596
+ }>;
597
+ export declare const LocationCreateSchema: z.ZodObject<{
598
+ resourceType: z.ZodLiteral<"Location">;
599
+ identifier: z.ZodArray<z.ZodObject<{
600
+ use: z.ZodOptional<z.ZodString>;
601
+ } & {
602
+ system: z.ZodString;
603
+ value: z.ZodString;
604
+ }, "strip", z.ZodTypeAny, {
605
+ value: string;
606
+ system: string;
607
+ use?: string | undefined;
608
+ }, {
609
+ value: string;
610
+ system: string;
611
+ use?: string | undefined;
612
+ }>, "many">;
613
+ status: z.ZodEnum<["active", "suspended", "inactive"]>;
614
+ operationalStatus: z.ZodOptional<z.ZodObject<{
615
+ system: z.ZodOptional<z.ZodString>;
616
+ code: z.ZodOptional<z.ZodString>;
617
+ display: z.ZodOptional<z.ZodString>;
618
+ }, "strip", z.ZodTypeAny, {
619
+ code?: string | undefined;
620
+ system?: string | undefined;
621
+ display?: string | undefined;
622
+ }, {
623
+ code?: string | undefined;
624
+ system?: string | undefined;
625
+ display?: string | undefined;
626
+ }>>;
627
+ name: z.ZodString;
628
+ alias: z.ZodOptional<z.ZodArray<z.ZodString, "many">>;
629
+ description: z.ZodOptional<z.ZodString>;
630
+ mode: z.ZodOptional<z.ZodEnum<["instance", "kind"]>>;
631
+ type: z.ZodOptional<z.ZodArray<z.ZodObject<{
632
+ text: z.ZodOptional<z.ZodString>;
633
+ } & {
634
+ coding: z.ZodArray<z.ZodObject<{
635
+ system: z.ZodString;
636
+ code: z.ZodString;
637
+ display: z.ZodOptional<z.ZodString>;
638
+ }, "strip", z.ZodTypeAny, {
639
+ code: string;
640
+ system: string;
641
+ display?: string | undefined;
642
+ }, {
643
+ code: string;
644
+ system: string;
645
+ display?: string | undefined;
646
+ }>, "many">;
647
+ }, "strip", z.ZodTypeAny, {
648
+ coding: {
649
+ code: string;
650
+ system: string;
651
+ display?: string | undefined;
652
+ }[];
653
+ text?: string | undefined;
654
+ }, {
655
+ coding: {
656
+ code: string;
657
+ system: string;
658
+ display?: string | undefined;
659
+ }[];
660
+ text?: string | undefined;
661
+ }>, "many">>;
662
+ telecom: z.ZodOptional<z.ZodArray<z.ZodObject<{
663
+ system: z.ZodOptional<z.ZodEnum<["phone", "fax", "email", "pager", "url", "sms", "other"]>>;
664
+ value: z.ZodOptional<z.ZodString>;
665
+ use: z.ZodOptional<z.ZodEnum<["home", "work", "temp", "old", "mobile"]>>;
666
+ }, "strip", z.ZodTypeAny, {
667
+ value?: string | undefined;
668
+ system?: "phone" | "fax" | "email" | "pager" | "url" | "sms" | "other" | undefined;
669
+ use?: "home" | "work" | "temp" | "old" | "mobile" | undefined;
670
+ }, {
671
+ value?: string | undefined;
672
+ system?: "phone" | "fax" | "email" | "pager" | "url" | "sms" | "other" | undefined;
673
+ use?: "home" | "work" | "temp" | "old" | "mobile" | undefined;
674
+ }>, "many">>;
675
+ address: z.ZodOptional<z.ZodObject<{
676
+ use: z.ZodOptional<z.ZodEnum<["home", "work", "temp", "old", "billing"]>>;
677
+ type: z.ZodOptional<z.ZodEnum<["postal", "physical", "both"]>>;
678
+ text: z.ZodOptional<z.ZodString>;
679
+ line: z.ZodOptional<z.ZodArray<z.ZodString, "many">>;
680
+ city: z.ZodOptional<z.ZodString>;
681
+ district: z.ZodOptional<z.ZodString>;
682
+ state: z.ZodOptional<z.ZodString>;
683
+ postalCode: z.ZodOptional<z.ZodString>;
684
+ country: z.ZodOptional<z.ZodString>;
685
+ period: z.ZodOptional<z.ZodObject<{
686
+ start: z.ZodOptional<z.ZodString>;
687
+ end: z.ZodOptional<z.ZodString>;
688
+ }, "strip", z.ZodTypeAny, {
689
+ start?: string | undefined;
690
+ end?: string | undefined;
691
+ }, {
692
+ start?: string | undefined;
693
+ end?: string | undefined;
694
+ }>>;
695
+ extension: z.ZodOptional<z.ZodArray<z.ZodObject<{
696
+ url: z.ZodString;
697
+ extension: z.ZodOptional<z.ZodArray<z.ZodObject<{
698
+ url: z.ZodString;
699
+ valueCode: z.ZodString;
700
+ }, "strip", z.ZodTypeAny, {
701
+ url: string;
702
+ valueCode: string;
703
+ }, {
704
+ url: string;
705
+ valueCode: string;
706
+ }>, "many">>;
707
+ }, "strip", z.ZodTypeAny, {
708
+ url: string;
709
+ extension?: {
710
+ url: string;
711
+ valueCode: string;
712
+ }[] | undefined;
713
+ }, {
714
+ url: string;
715
+ extension?: {
716
+ url: string;
717
+ valueCode: string;
718
+ }[] | undefined;
719
+ }>, "many">>;
720
+ }, "strip", z.ZodTypeAny, {
721
+ type?: "postal" | "physical" | "both" | undefined;
722
+ text?: string | undefined;
723
+ use?: "home" | "work" | "temp" | "old" | "billing" | undefined;
724
+ extension?: {
725
+ url: string;
726
+ extension?: {
727
+ url: string;
728
+ valueCode: string;
729
+ }[] | undefined;
730
+ }[] | undefined;
731
+ line?: string[] | undefined;
732
+ city?: string | undefined;
733
+ district?: string | undefined;
734
+ state?: string | undefined;
735
+ postalCode?: string | undefined;
736
+ country?: string | undefined;
737
+ period?: {
738
+ start?: string | undefined;
739
+ end?: string | undefined;
740
+ } | undefined;
741
+ }, {
742
+ type?: "postal" | "physical" | "both" | undefined;
743
+ text?: string | undefined;
744
+ use?: "home" | "work" | "temp" | "old" | "billing" | undefined;
745
+ extension?: {
746
+ url: string;
747
+ extension?: {
748
+ url: string;
749
+ valueCode: string;
750
+ }[] | undefined;
751
+ }[] | undefined;
752
+ line?: string[] | undefined;
753
+ city?: string | undefined;
754
+ district?: string | undefined;
755
+ state?: string | undefined;
756
+ postalCode?: string | undefined;
757
+ country?: string | undefined;
758
+ period?: {
759
+ start?: string | undefined;
760
+ end?: string | undefined;
761
+ } | undefined;
762
+ }>>;
763
+ physicalType: z.ZodOptional<z.ZodObject<{
764
+ text: z.ZodOptional<z.ZodString>;
765
+ } & {
766
+ coding: z.ZodArray<z.ZodObject<{
767
+ system: z.ZodString;
768
+ code: z.ZodString;
769
+ display: z.ZodOptional<z.ZodString>;
770
+ }, "strip", z.ZodTypeAny, {
771
+ code: string;
772
+ system: string;
773
+ display?: string | undefined;
774
+ }, {
775
+ code: string;
776
+ system: string;
777
+ display?: string | undefined;
778
+ }>, "many">;
779
+ }, "strip", z.ZodTypeAny, {
780
+ coding: {
781
+ code: string;
782
+ system: string;
783
+ display?: string | undefined;
784
+ }[];
785
+ text?: string | undefined;
786
+ }, {
787
+ coding: {
788
+ code: string;
789
+ system: string;
790
+ display?: string | undefined;
791
+ }[];
792
+ text?: string | undefined;
793
+ }>>;
794
+ position: z.ZodOptional<z.ZodObject<{
795
+ longitude: z.ZodNumber;
796
+ latitude: z.ZodNumber;
797
+ altitude: z.ZodOptional<z.ZodNumber>;
798
+ }, "strip", z.ZodTypeAny, {
799
+ longitude: number;
800
+ latitude: number;
801
+ altitude?: number | undefined;
802
+ }, {
803
+ longitude: number;
804
+ latitude: number;
805
+ altitude?: number | undefined;
806
+ }>>;
807
+ managingOrganization: z.ZodOptional<z.ZodObject<{
808
+ reference: z.ZodString;
809
+ display: z.ZodOptional<z.ZodString>;
810
+ type: z.ZodOptional<z.ZodString>;
811
+ }, "strip", z.ZodTypeAny, {
812
+ reference: string;
813
+ type?: string | undefined;
814
+ display?: string | undefined;
815
+ }, {
816
+ reference: string;
817
+ type?: string | undefined;
818
+ display?: string | undefined;
819
+ }>>;
820
+ partOf: z.ZodOptional<z.ZodObject<{
821
+ reference: z.ZodString;
822
+ display: z.ZodOptional<z.ZodString>;
823
+ type: z.ZodOptional<z.ZodString>;
824
+ }, "strip", z.ZodTypeAny, {
825
+ reference: string;
826
+ type?: string | undefined;
827
+ display?: string | undefined;
828
+ }, {
829
+ reference: string;
830
+ type?: string | undefined;
831
+ display?: string | undefined;
832
+ }>>;
833
+ hoursOfOperation: z.ZodOptional<z.ZodArray<z.ZodObject<{
834
+ daysOfWeek: z.ZodOptional<z.ZodArray<z.ZodEnum<["mon", "tue", "wed", "thu", "fri", "sat", "sun"]>, "many">>;
835
+ allDay: z.ZodOptional<z.ZodBoolean>;
836
+ openingTime: z.ZodOptional<z.ZodString>;
837
+ closingTime: z.ZodOptional<z.ZodString>;
838
+ }, "strip", z.ZodTypeAny, {
839
+ daysOfWeek?: ("mon" | "tue" | "wed" | "thu" | "fri" | "sat" | "sun")[] | undefined;
840
+ allDay?: boolean | undefined;
841
+ openingTime?: string | undefined;
842
+ closingTime?: string | undefined;
843
+ }, {
844
+ daysOfWeek?: ("mon" | "tue" | "wed" | "thu" | "fri" | "sat" | "sun")[] | undefined;
845
+ allDay?: boolean | undefined;
846
+ openingTime?: string | undefined;
847
+ closingTime?: string | undefined;
848
+ }>, "many">>;
849
+ availabilityExceptions: z.ZodOptional<z.ZodString>;
850
+ endpoint: z.ZodOptional<z.ZodArray<z.ZodObject<{
851
+ reference: z.ZodString;
852
+ display: z.ZodOptional<z.ZodString>;
853
+ type: z.ZodOptional<z.ZodString>;
854
+ }, "strip", z.ZodTypeAny, {
855
+ reference: string;
856
+ type?: string | undefined;
857
+ display?: string | undefined;
858
+ }, {
859
+ reference: string;
860
+ type?: string | undefined;
861
+ display?: string | undefined;
862
+ }>, "many">>;
863
+ }, "strip", z.ZodTypeAny, {
864
+ status: "active" | "inactive" | "suspended";
865
+ resourceType: "Location";
866
+ identifier: {
867
+ value: string;
868
+ system: string;
869
+ use?: string | undefined;
870
+ }[];
871
+ name: string;
872
+ type?: {
873
+ coding: {
874
+ code: string;
875
+ system: string;
876
+ display?: string | undefined;
877
+ }[];
878
+ text?: string | undefined;
879
+ }[] | undefined;
880
+ mode?: "instance" | "kind" | undefined;
881
+ partOf?: {
882
+ reference: string;
883
+ type?: string | undefined;
884
+ display?: string | undefined;
885
+ } | undefined;
886
+ telecom?: {
887
+ value?: string | undefined;
888
+ system?: "phone" | "fax" | "email" | "pager" | "url" | "sms" | "other" | undefined;
889
+ use?: "home" | "work" | "temp" | "old" | "mobile" | undefined;
890
+ }[] | undefined;
891
+ description?: string | undefined;
892
+ physicalType?: {
893
+ coding: {
894
+ code: string;
895
+ system: string;
896
+ display?: string | undefined;
897
+ }[];
898
+ text?: string | undefined;
899
+ } | undefined;
900
+ address?: {
901
+ type?: "postal" | "physical" | "both" | undefined;
902
+ text?: string | undefined;
903
+ use?: "home" | "work" | "temp" | "old" | "billing" | undefined;
904
+ extension?: {
905
+ url: string;
906
+ extension?: {
907
+ url: string;
908
+ valueCode: string;
909
+ }[] | undefined;
910
+ }[] | undefined;
911
+ line?: string[] | undefined;
912
+ city?: string | undefined;
913
+ district?: string | undefined;
914
+ state?: string | undefined;
915
+ postalCode?: string | undefined;
916
+ country?: string | undefined;
917
+ period?: {
918
+ start?: string | undefined;
919
+ end?: string | undefined;
920
+ } | undefined;
921
+ } | undefined;
922
+ availabilityExceptions?: string | undefined;
923
+ endpoint?: {
924
+ reference: string;
925
+ type?: string | undefined;
926
+ display?: string | undefined;
927
+ }[] | undefined;
928
+ alias?: string[] | undefined;
929
+ operationalStatus?: {
930
+ code?: string | undefined;
931
+ system?: string | undefined;
932
+ display?: string | undefined;
933
+ } | undefined;
934
+ position?: {
935
+ longitude: number;
936
+ latitude: number;
937
+ altitude?: number | undefined;
938
+ } | undefined;
939
+ managingOrganization?: {
940
+ reference: string;
941
+ type?: string | undefined;
942
+ display?: string | undefined;
943
+ } | undefined;
944
+ hoursOfOperation?: {
945
+ daysOfWeek?: ("mon" | "tue" | "wed" | "thu" | "fri" | "sat" | "sun")[] | undefined;
946
+ allDay?: boolean | undefined;
947
+ openingTime?: string | undefined;
948
+ closingTime?: string | undefined;
949
+ }[] | undefined;
950
+ }, {
951
+ status: "active" | "inactive" | "suspended";
952
+ resourceType: "Location";
953
+ identifier: {
954
+ value: string;
955
+ system: string;
956
+ use?: string | undefined;
957
+ }[];
958
+ name: string;
959
+ type?: {
960
+ coding: {
961
+ code: string;
962
+ system: string;
963
+ display?: string | undefined;
964
+ }[];
965
+ text?: string | undefined;
966
+ }[] | undefined;
967
+ mode?: "instance" | "kind" | undefined;
968
+ partOf?: {
969
+ reference: string;
970
+ type?: string | undefined;
971
+ display?: string | undefined;
972
+ } | undefined;
973
+ telecom?: {
974
+ value?: string | undefined;
975
+ system?: "phone" | "fax" | "email" | "pager" | "url" | "sms" | "other" | undefined;
976
+ use?: "home" | "work" | "temp" | "old" | "mobile" | undefined;
977
+ }[] | undefined;
978
+ description?: string | undefined;
979
+ physicalType?: {
980
+ coding: {
981
+ code: string;
982
+ system: string;
983
+ display?: string | undefined;
984
+ }[];
985
+ text?: string | undefined;
986
+ } | undefined;
987
+ address?: {
988
+ type?: "postal" | "physical" | "both" | undefined;
989
+ text?: string | undefined;
990
+ use?: "home" | "work" | "temp" | "old" | "billing" | undefined;
991
+ extension?: {
992
+ url: string;
993
+ extension?: {
994
+ url: string;
995
+ valueCode: string;
996
+ }[] | undefined;
997
+ }[] | undefined;
998
+ line?: string[] | undefined;
999
+ city?: string | undefined;
1000
+ district?: string | undefined;
1001
+ state?: string | undefined;
1002
+ postalCode?: string | undefined;
1003
+ country?: string | undefined;
1004
+ period?: {
1005
+ start?: string | undefined;
1006
+ end?: string | undefined;
1007
+ } | undefined;
1008
+ } | undefined;
1009
+ availabilityExceptions?: string | undefined;
1010
+ endpoint?: {
1011
+ reference: string;
1012
+ type?: string | undefined;
1013
+ display?: string | undefined;
1014
+ }[] | undefined;
1015
+ alias?: string[] | undefined;
1016
+ operationalStatus?: {
1017
+ code?: string | undefined;
1018
+ system?: string | undefined;
1019
+ display?: string | undefined;
1020
+ } | undefined;
1021
+ position?: {
1022
+ longitude: number;
1023
+ latitude: number;
1024
+ altitude?: number | undefined;
1025
+ } | undefined;
1026
+ managingOrganization?: {
1027
+ reference: string;
1028
+ type?: string | undefined;
1029
+ display?: string | undefined;
1030
+ } | undefined;
1031
+ hoursOfOperation?: {
1032
+ daysOfWeek?: ("mon" | "tue" | "wed" | "thu" | "fri" | "sat" | "sun")[] | undefined;
1033
+ allDay?: boolean | undefined;
1034
+ openingTime?: string | undefined;
1035
+ closingTime?: string | undefined;
1036
+ }[] | undefined;
1037
+ }>;
1038
+ export declare const LocationSchema: z.ZodObject<{
1039
+ resourceType: z.ZodLiteral<"Location">;
1040
+ identifier: z.ZodArray<z.ZodObject<{
1041
+ use: z.ZodOptional<z.ZodString>;
1042
+ } & {
1043
+ system: z.ZodString;
1044
+ value: z.ZodString;
1045
+ }, "strip", z.ZodTypeAny, {
1046
+ value: string;
1047
+ system: string;
1048
+ use?: string | undefined;
1049
+ }, {
1050
+ value: string;
1051
+ system: string;
1052
+ use?: string | undefined;
1053
+ }>, "many">;
1054
+ status: z.ZodEnum<["active", "suspended", "inactive"]>;
1055
+ operationalStatus: z.ZodOptional<z.ZodObject<{
1056
+ system: z.ZodOptional<z.ZodString>;
1057
+ code: z.ZodOptional<z.ZodString>;
1058
+ display: z.ZodOptional<z.ZodString>;
1059
+ }, "strip", z.ZodTypeAny, {
1060
+ code?: string | undefined;
1061
+ system?: string | undefined;
1062
+ display?: string | undefined;
1063
+ }, {
1064
+ code?: string | undefined;
1065
+ system?: string | undefined;
1066
+ display?: string | undefined;
1067
+ }>>;
1068
+ name: z.ZodString;
1069
+ alias: z.ZodOptional<z.ZodArray<z.ZodString, "many">>;
1070
+ description: z.ZodOptional<z.ZodString>;
1071
+ mode: z.ZodOptional<z.ZodEnum<["instance", "kind"]>>;
1072
+ type: z.ZodOptional<z.ZodArray<z.ZodObject<{
1073
+ text: z.ZodOptional<z.ZodString>;
1074
+ } & {
1075
+ coding: z.ZodArray<z.ZodObject<{
1076
+ system: z.ZodString;
1077
+ code: z.ZodString;
1078
+ display: z.ZodOptional<z.ZodString>;
1079
+ }, "strip", z.ZodTypeAny, {
1080
+ code: string;
1081
+ system: string;
1082
+ display?: string | undefined;
1083
+ }, {
1084
+ code: string;
1085
+ system: string;
1086
+ display?: string | undefined;
1087
+ }>, "many">;
1088
+ }, "strip", z.ZodTypeAny, {
1089
+ coding: {
1090
+ code: string;
1091
+ system: string;
1092
+ display?: string | undefined;
1093
+ }[];
1094
+ text?: string | undefined;
1095
+ }, {
1096
+ coding: {
1097
+ code: string;
1098
+ system: string;
1099
+ display?: string | undefined;
1100
+ }[];
1101
+ text?: string | undefined;
1102
+ }>, "many">>;
1103
+ telecom: z.ZodOptional<z.ZodArray<z.ZodObject<{
1104
+ system: z.ZodOptional<z.ZodEnum<["phone", "fax", "email", "pager", "url", "sms", "other"]>>;
1105
+ value: z.ZodOptional<z.ZodString>;
1106
+ use: z.ZodOptional<z.ZodEnum<["home", "work", "temp", "old", "mobile"]>>;
1107
+ }, "strip", z.ZodTypeAny, {
1108
+ value?: string | undefined;
1109
+ system?: "phone" | "fax" | "email" | "pager" | "url" | "sms" | "other" | undefined;
1110
+ use?: "home" | "work" | "temp" | "old" | "mobile" | undefined;
1111
+ }, {
1112
+ value?: string | undefined;
1113
+ system?: "phone" | "fax" | "email" | "pager" | "url" | "sms" | "other" | undefined;
1114
+ use?: "home" | "work" | "temp" | "old" | "mobile" | undefined;
1115
+ }>, "many">>;
1116
+ address: z.ZodOptional<z.ZodObject<{
1117
+ use: z.ZodOptional<z.ZodEnum<["home", "work", "temp", "old", "billing"]>>;
1118
+ type: z.ZodOptional<z.ZodEnum<["postal", "physical", "both"]>>;
1119
+ text: z.ZodOptional<z.ZodString>;
1120
+ line: z.ZodOptional<z.ZodArray<z.ZodString, "many">>;
1121
+ city: z.ZodOptional<z.ZodString>;
1122
+ district: z.ZodOptional<z.ZodString>;
1123
+ state: z.ZodOptional<z.ZodString>;
1124
+ postalCode: z.ZodOptional<z.ZodString>;
1125
+ country: z.ZodOptional<z.ZodString>;
1126
+ period: z.ZodOptional<z.ZodObject<{
1127
+ start: z.ZodOptional<z.ZodString>;
1128
+ end: z.ZodOptional<z.ZodString>;
1129
+ }, "strip", z.ZodTypeAny, {
1130
+ start?: string | undefined;
1131
+ end?: string | undefined;
1132
+ }, {
1133
+ start?: string | undefined;
1134
+ end?: string | undefined;
1135
+ }>>;
1136
+ extension: z.ZodOptional<z.ZodArray<z.ZodObject<{
1137
+ url: z.ZodString;
1138
+ extension: z.ZodOptional<z.ZodArray<z.ZodObject<{
1139
+ url: z.ZodString;
1140
+ valueCode: z.ZodString;
1141
+ }, "strip", z.ZodTypeAny, {
1142
+ url: string;
1143
+ valueCode: string;
1144
+ }, {
1145
+ url: string;
1146
+ valueCode: string;
1147
+ }>, "many">>;
1148
+ }, "strip", z.ZodTypeAny, {
1149
+ url: string;
1150
+ extension?: {
1151
+ url: string;
1152
+ valueCode: string;
1153
+ }[] | undefined;
1154
+ }, {
1155
+ url: string;
1156
+ extension?: {
1157
+ url: string;
1158
+ valueCode: string;
1159
+ }[] | undefined;
1160
+ }>, "many">>;
1161
+ }, "strip", z.ZodTypeAny, {
1162
+ type?: "postal" | "physical" | "both" | undefined;
1163
+ text?: string | undefined;
1164
+ use?: "home" | "work" | "temp" | "old" | "billing" | undefined;
1165
+ extension?: {
1166
+ url: string;
1167
+ extension?: {
1168
+ url: string;
1169
+ valueCode: string;
1170
+ }[] | undefined;
1171
+ }[] | undefined;
1172
+ line?: string[] | undefined;
1173
+ city?: string | undefined;
1174
+ district?: string | undefined;
1175
+ state?: string | undefined;
1176
+ postalCode?: string | undefined;
1177
+ country?: string | undefined;
1178
+ period?: {
1179
+ start?: string | undefined;
1180
+ end?: string | undefined;
1181
+ } | undefined;
1182
+ }, {
1183
+ type?: "postal" | "physical" | "both" | undefined;
1184
+ text?: string | undefined;
1185
+ use?: "home" | "work" | "temp" | "old" | "billing" | undefined;
1186
+ extension?: {
1187
+ url: string;
1188
+ extension?: {
1189
+ url: string;
1190
+ valueCode: string;
1191
+ }[] | undefined;
1192
+ }[] | undefined;
1193
+ line?: string[] | undefined;
1194
+ city?: string | undefined;
1195
+ district?: string | undefined;
1196
+ state?: string | undefined;
1197
+ postalCode?: string | undefined;
1198
+ country?: string | undefined;
1199
+ period?: {
1200
+ start?: string | undefined;
1201
+ end?: string | undefined;
1202
+ } | undefined;
1203
+ }>>;
1204
+ physicalType: z.ZodOptional<z.ZodObject<{
1205
+ text: z.ZodOptional<z.ZodString>;
1206
+ } & {
1207
+ coding: z.ZodArray<z.ZodObject<{
1208
+ system: z.ZodString;
1209
+ code: z.ZodString;
1210
+ display: z.ZodOptional<z.ZodString>;
1211
+ }, "strip", z.ZodTypeAny, {
1212
+ code: string;
1213
+ system: string;
1214
+ display?: string | undefined;
1215
+ }, {
1216
+ code: string;
1217
+ system: string;
1218
+ display?: string | undefined;
1219
+ }>, "many">;
1220
+ }, "strip", z.ZodTypeAny, {
1221
+ coding: {
1222
+ code: string;
1223
+ system: string;
1224
+ display?: string | undefined;
1225
+ }[];
1226
+ text?: string | undefined;
1227
+ }, {
1228
+ coding: {
1229
+ code: string;
1230
+ system: string;
1231
+ display?: string | undefined;
1232
+ }[];
1233
+ text?: string | undefined;
1234
+ }>>;
1235
+ position: z.ZodOptional<z.ZodObject<{
1236
+ longitude: z.ZodNumber;
1237
+ latitude: z.ZodNumber;
1238
+ altitude: z.ZodOptional<z.ZodNumber>;
1239
+ }, "strip", z.ZodTypeAny, {
1240
+ longitude: number;
1241
+ latitude: number;
1242
+ altitude?: number | undefined;
1243
+ }, {
1244
+ longitude: number;
1245
+ latitude: number;
1246
+ altitude?: number | undefined;
1247
+ }>>;
1248
+ managingOrganization: z.ZodOptional<z.ZodObject<{
1249
+ reference: z.ZodString;
1250
+ display: z.ZodOptional<z.ZodString>;
1251
+ type: z.ZodOptional<z.ZodString>;
1252
+ }, "strip", z.ZodTypeAny, {
1253
+ reference: string;
1254
+ type?: string | undefined;
1255
+ display?: string | undefined;
1256
+ }, {
1257
+ reference: string;
1258
+ type?: string | undefined;
1259
+ display?: string | undefined;
1260
+ }>>;
1261
+ partOf: z.ZodOptional<z.ZodObject<{
1262
+ reference: z.ZodString;
1263
+ display: z.ZodOptional<z.ZodString>;
1264
+ type: z.ZodOptional<z.ZodString>;
1265
+ }, "strip", z.ZodTypeAny, {
1266
+ reference: string;
1267
+ type?: string | undefined;
1268
+ display?: string | undefined;
1269
+ }, {
1270
+ reference: string;
1271
+ type?: string | undefined;
1272
+ display?: string | undefined;
1273
+ }>>;
1274
+ hoursOfOperation: z.ZodOptional<z.ZodArray<z.ZodObject<{
1275
+ daysOfWeek: z.ZodOptional<z.ZodArray<z.ZodEnum<["mon", "tue", "wed", "thu", "fri", "sat", "sun"]>, "many">>;
1276
+ allDay: z.ZodOptional<z.ZodBoolean>;
1277
+ openingTime: z.ZodOptional<z.ZodString>;
1278
+ closingTime: z.ZodOptional<z.ZodString>;
1279
+ }, "strip", z.ZodTypeAny, {
1280
+ daysOfWeek?: ("mon" | "tue" | "wed" | "thu" | "fri" | "sat" | "sun")[] | undefined;
1281
+ allDay?: boolean | undefined;
1282
+ openingTime?: string | undefined;
1283
+ closingTime?: string | undefined;
1284
+ }, {
1285
+ daysOfWeek?: ("mon" | "tue" | "wed" | "thu" | "fri" | "sat" | "sun")[] | undefined;
1286
+ allDay?: boolean | undefined;
1287
+ openingTime?: string | undefined;
1288
+ closingTime?: string | undefined;
1289
+ }>, "many">>;
1290
+ availabilityExceptions: z.ZodOptional<z.ZodString>;
1291
+ endpoint: z.ZodOptional<z.ZodArray<z.ZodObject<{
1292
+ reference: z.ZodString;
1293
+ display: z.ZodOptional<z.ZodString>;
1294
+ type: z.ZodOptional<z.ZodString>;
1295
+ }, "strip", z.ZodTypeAny, {
1296
+ reference: string;
1297
+ type?: string | undefined;
1298
+ display?: string | undefined;
1299
+ }, {
1300
+ reference: string;
1301
+ type?: string | undefined;
1302
+ display?: string | undefined;
1303
+ }>, "many">>;
1304
+ } & {
1305
+ id: z.ZodString;
1306
+ meta: z.ZodOptional<z.ZodObject<{
1307
+ lastUpdated: z.ZodOptional<z.ZodString>;
1308
+ profile: z.ZodOptional<z.ZodArray<z.ZodString, "many">>;
1309
+ versionId: z.ZodOptional<z.ZodString>;
1310
+ }, "strip", z.ZodTypeAny, {
1311
+ lastUpdated?: string | undefined;
1312
+ profile?: string[] | undefined;
1313
+ versionId?: string | undefined;
1314
+ }, {
1315
+ lastUpdated?: string | undefined;
1316
+ profile?: string[] | undefined;
1317
+ versionId?: string | undefined;
1318
+ }>>;
1319
+ }, "strip", z.ZodTypeAny, {
1320
+ status: "active" | "inactive" | "suspended";
1321
+ resourceType: "Location";
1322
+ id: string;
1323
+ identifier: {
1324
+ value: string;
1325
+ system: string;
1326
+ use?: string | undefined;
1327
+ }[];
1328
+ name: string;
1329
+ type?: {
1330
+ coding: {
1331
+ code: string;
1332
+ system: string;
1333
+ display?: string | undefined;
1334
+ }[];
1335
+ text?: string | undefined;
1336
+ }[] | undefined;
1337
+ mode?: "instance" | "kind" | undefined;
1338
+ meta?: {
1339
+ lastUpdated?: string | undefined;
1340
+ profile?: string[] | undefined;
1341
+ versionId?: string | undefined;
1342
+ } | undefined;
1343
+ partOf?: {
1344
+ reference: string;
1345
+ type?: string | undefined;
1346
+ display?: string | undefined;
1347
+ } | undefined;
1348
+ telecom?: {
1349
+ value?: string | undefined;
1350
+ system?: "phone" | "fax" | "email" | "pager" | "url" | "sms" | "other" | undefined;
1351
+ use?: "home" | "work" | "temp" | "old" | "mobile" | undefined;
1352
+ }[] | undefined;
1353
+ description?: string | undefined;
1354
+ physicalType?: {
1355
+ coding: {
1356
+ code: string;
1357
+ system: string;
1358
+ display?: string | undefined;
1359
+ }[];
1360
+ text?: string | undefined;
1361
+ } | undefined;
1362
+ address?: {
1363
+ type?: "postal" | "physical" | "both" | undefined;
1364
+ text?: string | undefined;
1365
+ use?: "home" | "work" | "temp" | "old" | "billing" | undefined;
1366
+ extension?: {
1367
+ url: string;
1368
+ extension?: {
1369
+ url: string;
1370
+ valueCode: string;
1371
+ }[] | undefined;
1372
+ }[] | undefined;
1373
+ line?: string[] | undefined;
1374
+ city?: string | undefined;
1375
+ district?: string | undefined;
1376
+ state?: string | undefined;
1377
+ postalCode?: string | undefined;
1378
+ country?: string | undefined;
1379
+ period?: {
1380
+ start?: string | undefined;
1381
+ end?: string | undefined;
1382
+ } | undefined;
1383
+ } | undefined;
1384
+ availabilityExceptions?: string | undefined;
1385
+ endpoint?: {
1386
+ reference: string;
1387
+ type?: string | undefined;
1388
+ display?: string | undefined;
1389
+ }[] | undefined;
1390
+ alias?: string[] | undefined;
1391
+ operationalStatus?: {
1392
+ code?: string | undefined;
1393
+ system?: string | undefined;
1394
+ display?: string | undefined;
1395
+ } | undefined;
1396
+ position?: {
1397
+ longitude: number;
1398
+ latitude: number;
1399
+ altitude?: number | undefined;
1400
+ } | undefined;
1401
+ managingOrganization?: {
1402
+ reference: string;
1403
+ type?: string | undefined;
1404
+ display?: string | undefined;
1405
+ } | undefined;
1406
+ hoursOfOperation?: {
1407
+ daysOfWeek?: ("mon" | "tue" | "wed" | "thu" | "fri" | "sat" | "sun")[] | undefined;
1408
+ allDay?: boolean | undefined;
1409
+ openingTime?: string | undefined;
1410
+ closingTime?: string | undefined;
1411
+ }[] | undefined;
1412
+ }, {
1413
+ status: "active" | "inactive" | "suspended";
1414
+ resourceType: "Location";
1415
+ id: string;
1416
+ identifier: {
1417
+ value: string;
1418
+ system: string;
1419
+ use?: string | undefined;
1420
+ }[];
1421
+ name: string;
1422
+ type?: {
1423
+ coding: {
1424
+ code: string;
1425
+ system: string;
1426
+ display?: string | undefined;
1427
+ }[];
1428
+ text?: string | undefined;
1429
+ }[] | undefined;
1430
+ mode?: "instance" | "kind" | undefined;
1431
+ meta?: {
1432
+ lastUpdated?: string | undefined;
1433
+ profile?: string[] | undefined;
1434
+ versionId?: string | undefined;
1435
+ } | undefined;
1436
+ partOf?: {
1437
+ reference: string;
1438
+ type?: string | undefined;
1439
+ display?: string | undefined;
1440
+ } | undefined;
1441
+ telecom?: {
1442
+ value?: string | undefined;
1443
+ system?: "phone" | "fax" | "email" | "pager" | "url" | "sms" | "other" | undefined;
1444
+ use?: "home" | "work" | "temp" | "old" | "mobile" | undefined;
1445
+ }[] | undefined;
1446
+ description?: string | undefined;
1447
+ physicalType?: {
1448
+ coding: {
1449
+ code: string;
1450
+ system: string;
1451
+ display?: string | undefined;
1452
+ }[];
1453
+ text?: string | undefined;
1454
+ } | undefined;
1455
+ address?: {
1456
+ type?: "postal" | "physical" | "both" | undefined;
1457
+ text?: string | undefined;
1458
+ use?: "home" | "work" | "temp" | "old" | "billing" | undefined;
1459
+ extension?: {
1460
+ url: string;
1461
+ extension?: {
1462
+ url: string;
1463
+ valueCode: string;
1464
+ }[] | undefined;
1465
+ }[] | undefined;
1466
+ line?: string[] | undefined;
1467
+ city?: string | undefined;
1468
+ district?: string | undefined;
1469
+ state?: string | undefined;
1470
+ postalCode?: string | undefined;
1471
+ country?: string | undefined;
1472
+ period?: {
1473
+ start?: string | undefined;
1474
+ end?: string | undefined;
1475
+ } | undefined;
1476
+ } | undefined;
1477
+ availabilityExceptions?: string | undefined;
1478
+ endpoint?: {
1479
+ reference: string;
1480
+ type?: string | undefined;
1481
+ display?: string | undefined;
1482
+ }[] | undefined;
1483
+ alias?: string[] | undefined;
1484
+ operationalStatus?: {
1485
+ code?: string | undefined;
1486
+ system?: string | undefined;
1487
+ display?: string | undefined;
1488
+ } | undefined;
1489
+ position?: {
1490
+ longitude: number;
1491
+ latitude: number;
1492
+ altitude?: number | undefined;
1493
+ } | undefined;
1494
+ managingOrganization?: {
1495
+ reference: string;
1496
+ type?: string | undefined;
1497
+ display?: string | undefined;
1498
+ } | undefined;
1499
+ hoursOfOperation?: {
1500
+ daysOfWeek?: ("mon" | "tue" | "wed" | "thu" | "fri" | "sat" | "sun")[] | undefined;
1501
+ allDay?: boolean | undefined;
1502
+ openingTime?: string | undefined;
1503
+ closingTime?: string | undefined;
1504
+ }[] | undefined;
1505
+ }>;
1506
+ export declare const LocationUpdateParamsSchema: z.ZodObject<{
1507
+ id: z.ZodString;
1508
+ }, "strip", z.ZodTypeAny, {
1509
+ id: string;
1510
+ }, {
1511
+ id: string;
1512
+ }>;
1513
+ export declare const LocationBundleSchema: z.ZodObject<{
1514
+ resourceType: z.ZodLiteral<"Bundle">;
1515
+ type: z.ZodOptional<z.ZodString>;
1516
+ total: z.ZodOptional<z.ZodNumber>;
1517
+ link: z.ZodOptional<z.ZodArray<z.ZodObject<{
1518
+ relation: z.ZodOptional<z.ZodString>;
1519
+ url: z.ZodOptional<z.ZodString>;
1520
+ }, "strip", z.ZodTypeAny, {
1521
+ url?: string | undefined;
1522
+ relation?: string | undefined;
1523
+ }, {
1524
+ url?: string | undefined;
1525
+ relation?: string | undefined;
1526
+ }>, "many">>;
1527
+ entry: z.ZodOptional<z.ZodArray<z.ZodObject<{
1528
+ fullUrl: z.ZodOptional<z.ZodString>;
1529
+ resource: z.ZodObject<{
1530
+ resourceType: z.ZodLiteral<"Location">;
1531
+ identifier: z.ZodArray<z.ZodObject<{
1532
+ use: z.ZodOptional<z.ZodString>;
1533
+ } & {
1534
+ system: z.ZodString;
1535
+ value: z.ZodString;
1536
+ }, "strip", z.ZodTypeAny, {
1537
+ value: string;
1538
+ system: string;
1539
+ use?: string | undefined;
1540
+ }, {
1541
+ value: string;
1542
+ system: string;
1543
+ use?: string | undefined;
1544
+ }>, "many">;
1545
+ status: z.ZodEnum<["active", "suspended", "inactive"]>;
1546
+ operationalStatus: z.ZodOptional<z.ZodObject<{
1547
+ system: z.ZodOptional<z.ZodString>;
1548
+ code: z.ZodOptional<z.ZodString>;
1549
+ display: z.ZodOptional<z.ZodString>;
1550
+ }, "strip", z.ZodTypeAny, {
1551
+ code?: string | undefined;
1552
+ system?: string | undefined;
1553
+ display?: string | undefined;
1554
+ }, {
1555
+ code?: string | undefined;
1556
+ system?: string | undefined;
1557
+ display?: string | undefined;
1558
+ }>>;
1559
+ name: z.ZodString;
1560
+ alias: z.ZodOptional<z.ZodArray<z.ZodString, "many">>;
1561
+ description: z.ZodOptional<z.ZodString>;
1562
+ mode: z.ZodOptional<z.ZodEnum<["instance", "kind"]>>;
1563
+ type: z.ZodOptional<z.ZodArray<z.ZodObject<{
1564
+ text: z.ZodOptional<z.ZodString>;
1565
+ } & {
1566
+ coding: z.ZodArray<z.ZodObject<{
1567
+ system: z.ZodString;
1568
+ code: z.ZodString;
1569
+ display: z.ZodOptional<z.ZodString>;
1570
+ }, "strip", z.ZodTypeAny, {
1571
+ code: string;
1572
+ system: string;
1573
+ display?: string | undefined;
1574
+ }, {
1575
+ code: string;
1576
+ system: string;
1577
+ display?: string | undefined;
1578
+ }>, "many">;
1579
+ }, "strip", z.ZodTypeAny, {
1580
+ coding: {
1581
+ code: string;
1582
+ system: string;
1583
+ display?: string | undefined;
1584
+ }[];
1585
+ text?: string | undefined;
1586
+ }, {
1587
+ coding: {
1588
+ code: string;
1589
+ system: string;
1590
+ display?: string | undefined;
1591
+ }[];
1592
+ text?: string | undefined;
1593
+ }>, "many">>;
1594
+ telecom: z.ZodOptional<z.ZodArray<z.ZodObject<{
1595
+ system: z.ZodOptional<z.ZodEnum<["phone", "fax", "email", "pager", "url", "sms", "other"]>>;
1596
+ value: z.ZodOptional<z.ZodString>;
1597
+ use: z.ZodOptional<z.ZodEnum<["home", "work", "temp", "old", "mobile"]>>;
1598
+ }, "strip", z.ZodTypeAny, {
1599
+ value?: string | undefined;
1600
+ system?: "phone" | "fax" | "email" | "pager" | "url" | "sms" | "other" | undefined;
1601
+ use?: "home" | "work" | "temp" | "old" | "mobile" | undefined;
1602
+ }, {
1603
+ value?: string | undefined;
1604
+ system?: "phone" | "fax" | "email" | "pager" | "url" | "sms" | "other" | undefined;
1605
+ use?: "home" | "work" | "temp" | "old" | "mobile" | undefined;
1606
+ }>, "many">>;
1607
+ address: z.ZodOptional<z.ZodObject<{
1608
+ use: z.ZodOptional<z.ZodEnum<["home", "work", "temp", "old", "billing"]>>;
1609
+ type: z.ZodOptional<z.ZodEnum<["postal", "physical", "both"]>>;
1610
+ text: z.ZodOptional<z.ZodString>;
1611
+ line: z.ZodOptional<z.ZodArray<z.ZodString, "many">>;
1612
+ city: z.ZodOptional<z.ZodString>;
1613
+ district: z.ZodOptional<z.ZodString>;
1614
+ state: z.ZodOptional<z.ZodString>;
1615
+ postalCode: z.ZodOptional<z.ZodString>;
1616
+ country: z.ZodOptional<z.ZodString>;
1617
+ period: z.ZodOptional<z.ZodObject<{
1618
+ start: z.ZodOptional<z.ZodString>;
1619
+ end: z.ZodOptional<z.ZodString>;
1620
+ }, "strip", z.ZodTypeAny, {
1621
+ start?: string | undefined;
1622
+ end?: string | undefined;
1623
+ }, {
1624
+ start?: string | undefined;
1625
+ end?: string | undefined;
1626
+ }>>;
1627
+ extension: z.ZodOptional<z.ZodArray<z.ZodObject<{
1628
+ url: z.ZodString;
1629
+ extension: z.ZodOptional<z.ZodArray<z.ZodObject<{
1630
+ url: z.ZodString;
1631
+ valueCode: z.ZodString;
1632
+ }, "strip", z.ZodTypeAny, {
1633
+ url: string;
1634
+ valueCode: string;
1635
+ }, {
1636
+ url: string;
1637
+ valueCode: string;
1638
+ }>, "many">>;
1639
+ }, "strip", z.ZodTypeAny, {
1640
+ url: string;
1641
+ extension?: {
1642
+ url: string;
1643
+ valueCode: string;
1644
+ }[] | undefined;
1645
+ }, {
1646
+ url: string;
1647
+ extension?: {
1648
+ url: string;
1649
+ valueCode: string;
1650
+ }[] | undefined;
1651
+ }>, "many">>;
1652
+ }, "strip", z.ZodTypeAny, {
1653
+ type?: "postal" | "physical" | "both" | undefined;
1654
+ text?: string | undefined;
1655
+ use?: "home" | "work" | "temp" | "old" | "billing" | undefined;
1656
+ extension?: {
1657
+ url: string;
1658
+ extension?: {
1659
+ url: string;
1660
+ valueCode: string;
1661
+ }[] | undefined;
1662
+ }[] | undefined;
1663
+ line?: string[] | undefined;
1664
+ city?: string | undefined;
1665
+ district?: string | undefined;
1666
+ state?: string | undefined;
1667
+ postalCode?: string | undefined;
1668
+ country?: string | undefined;
1669
+ period?: {
1670
+ start?: string | undefined;
1671
+ end?: string | undefined;
1672
+ } | undefined;
1673
+ }, {
1674
+ type?: "postal" | "physical" | "both" | undefined;
1675
+ text?: string | undefined;
1676
+ use?: "home" | "work" | "temp" | "old" | "billing" | undefined;
1677
+ extension?: {
1678
+ url: string;
1679
+ extension?: {
1680
+ url: string;
1681
+ valueCode: string;
1682
+ }[] | undefined;
1683
+ }[] | undefined;
1684
+ line?: string[] | undefined;
1685
+ city?: string | undefined;
1686
+ district?: string | undefined;
1687
+ state?: string | undefined;
1688
+ postalCode?: string | undefined;
1689
+ country?: string | undefined;
1690
+ period?: {
1691
+ start?: string | undefined;
1692
+ end?: string | undefined;
1693
+ } | undefined;
1694
+ }>>;
1695
+ physicalType: z.ZodOptional<z.ZodObject<{
1696
+ text: z.ZodOptional<z.ZodString>;
1697
+ } & {
1698
+ coding: z.ZodArray<z.ZodObject<{
1699
+ system: z.ZodString;
1700
+ code: z.ZodString;
1701
+ display: z.ZodOptional<z.ZodString>;
1702
+ }, "strip", z.ZodTypeAny, {
1703
+ code: string;
1704
+ system: string;
1705
+ display?: string | undefined;
1706
+ }, {
1707
+ code: string;
1708
+ system: string;
1709
+ display?: string | undefined;
1710
+ }>, "many">;
1711
+ }, "strip", z.ZodTypeAny, {
1712
+ coding: {
1713
+ code: string;
1714
+ system: string;
1715
+ display?: string | undefined;
1716
+ }[];
1717
+ text?: string | undefined;
1718
+ }, {
1719
+ coding: {
1720
+ code: string;
1721
+ system: string;
1722
+ display?: string | undefined;
1723
+ }[];
1724
+ text?: string | undefined;
1725
+ }>>;
1726
+ position: z.ZodOptional<z.ZodObject<{
1727
+ longitude: z.ZodNumber;
1728
+ latitude: z.ZodNumber;
1729
+ altitude: z.ZodOptional<z.ZodNumber>;
1730
+ }, "strip", z.ZodTypeAny, {
1731
+ longitude: number;
1732
+ latitude: number;
1733
+ altitude?: number | undefined;
1734
+ }, {
1735
+ longitude: number;
1736
+ latitude: number;
1737
+ altitude?: number | undefined;
1738
+ }>>;
1739
+ managingOrganization: z.ZodOptional<z.ZodObject<{
1740
+ reference: z.ZodString;
1741
+ display: z.ZodOptional<z.ZodString>;
1742
+ type: z.ZodOptional<z.ZodString>;
1743
+ }, "strip", z.ZodTypeAny, {
1744
+ reference: string;
1745
+ type?: string | undefined;
1746
+ display?: string | undefined;
1747
+ }, {
1748
+ reference: string;
1749
+ type?: string | undefined;
1750
+ display?: string | undefined;
1751
+ }>>;
1752
+ partOf: z.ZodOptional<z.ZodObject<{
1753
+ reference: z.ZodString;
1754
+ display: z.ZodOptional<z.ZodString>;
1755
+ type: z.ZodOptional<z.ZodString>;
1756
+ }, "strip", z.ZodTypeAny, {
1757
+ reference: string;
1758
+ type?: string | undefined;
1759
+ display?: string | undefined;
1760
+ }, {
1761
+ reference: string;
1762
+ type?: string | undefined;
1763
+ display?: string | undefined;
1764
+ }>>;
1765
+ hoursOfOperation: z.ZodOptional<z.ZodArray<z.ZodObject<{
1766
+ daysOfWeek: z.ZodOptional<z.ZodArray<z.ZodEnum<["mon", "tue", "wed", "thu", "fri", "sat", "sun"]>, "many">>;
1767
+ allDay: z.ZodOptional<z.ZodBoolean>;
1768
+ openingTime: z.ZodOptional<z.ZodString>;
1769
+ closingTime: z.ZodOptional<z.ZodString>;
1770
+ }, "strip", z.ZodTypeAny, {
1771
+ daysOfWeek?: ("mon" | "tue" | "wed" | "thu" | "fri" | "sat" | "sun")[] | undefined;
1772
+ allDay?: boolean | undefined;
1773
+ openingTime?: string | undefined;
1774
+ closingTime?: string | undefined;
1775
+ }, {
1776
+ daysOfWeek?: ("mon" | "tue" | "wed" | "thu" | "fri" | "sat" | "sun")[] | undefined;
1777
+ allDay?: boolean | undefined;
1778
+ openingTime?: string | undefined;
1779
+ closingTime?: string | undefined;
1780
+ }>, "many">>;
1781
+ availabilityExceptions: z.ZodOptional<z.ZodString>;
1782
+ endpoint: z.ZodOptional<z.ZodArray<z.ZodObject<{
1783
+ reference: z.ZodString;
1784
+ display: z.ZodOptional<z.ZodString>;
1785
+ type: z.ZodOptional<z.ZodString>;
1786
+ }, "strip", z.ZodTypeAny, {
1787
+ reference: string;
1788
+ type?: string | undefined;
1789
+ display?: string | undefined;
1790
+ }, {
1791
+ reference: string;
1792
+ type?: string | undefined;
1793
+ display?: string | undefined;
1794
+ }>, "many">>;
1795
+ } & {
1796
+ id: z.ZodString;
1797
+ meta: z.ZodOptional<z.ZodObject<{
1798
+ lastUpdated: z.ZodOptional<z.ZodString>;
1799
+ profile: z.ZodOptional<z.ZodArray<z.ZodString, "many">>;
1800
+ versionId: z.ZodOptional<z.ZodString>;
1801
+ }, "strip", z.ZodTypeAny, {
1802
+ lastUpdated?: string | undefined;
1803
+ profile?: string[] | undefined;
1804
+ versionId?: string | undefined;
1805
+ }, {
1806
+ lastUpdated?: string | undefined;
1807
+ profile?: string[] | undefined;
1808
+ versionId?: string | undefined;
1809
+ }>>;
1810
+ }, "strip", z.ZodTypeAny, {
1811
+ status: "active" | "inactive" | "suspended";
1812
+ resourceType: "Location";
1813
+ id: string;
1814
+ identifier: {
1815
+ value: string;
1816
+ system: string;
1817
+ use?: string | undefined;
1818
+ }[];
1819
+ name: string;
1820
+ type?: {
1821
+ coding: {
1822
+ code: string;
1823
+ system: string;
1824
+ display?: string | undefined;
1825
+ }[];
1826
+ text?: string | undefined;
1827
+ }[] | undefined;
1828
+ mode?: "instance" | "kind" | undefined;
1829
+ meta?: {
1830
+ lastUpdated?: string | undefined;
1831
+ profile?: string[] | undefined;
1832
+ versionId?: string | undefined;
1833
+ } | undefined;
1834
+ partOf?: {
1835
+ reference: string;
1836
+ type?: string | undefined;
1837
+ display?: string | undefined;
1838
+ } | undefined;
1839
+ telecom?: {
1840
+ value?: string | undefined;
1841
+ system?: "phone" | "fax" | "email" | "pager" | "url" | "sms" | "other" | undefined;
1842
+ use?: "home" | "work" | "temp" | "old" | "mobile" | undefined;
1843
+ }[] | undefined;
1844
+ description?: string | undefined;
1845
+ physicalType?: {
1846
+ coding: {
1847
+ code: string;
1848
+ system: string;
1849
+ display?: string | undefined;
1850
+ }[];
1851
+ text?: string | undefined;
1852
+ } | undefined;
1853
+ address?: {
1854
+ type?: "postal" | "physical" | "both" | undefined;
1855
+ text?: string | undefined;
1856
+ use?: "home" | "work" | "temp" | "old" | "billing" | undefined;
1857
+ extension?: {
1858
+ url: string;
1859
+ extension?: {
1860
+ url: string;
1861
+ valueCode: string;
1862
+ }[] | undefined;
1863
+ }[] | undefined;
1864
+ line?: string[] | undefined;
1865
+ city?: string | undefined;
1866
+ district?: string | undefined;
1867
+ state?: string | undefined;
1868
+ postalCode?: string | undefined;
1869
+ country?: string | undefined;
1870
+ period?: {
1871
+ start?: string | undefined;
1872
+ end?: string | undefined;
1873
+ } | undefined;
1874
+ } | undefined;
1875
+ availabilityExceptions?: string | undefined;
1876
+ endpoint?: {
1877
+ reference: string;
1878
+ type?: string | undefined;
1879
+ display?: string | undefined;
1880
+ }[] | undefined;
1881
+ alias?: string[] | undefined;
1882
+ operationalStatus?: {
1883
+ code?: string | undefined;
1884
+ system?: string | undefined;
1885
+ display?: string | undefined;
1886
+ } | undefined;
1887
+ position?: {
1888
+ longitude: number;
1889
+ latitude: number;
1890
+ altitude?: number | undefined;
1891
+ } | undefined;
1892
+ managingOrganization?: {
1893
+ reference: string;
1894
+ type?: string | undefined;
1895
+ display?: string | undefined;
1896
+ } | undefined;
1897
+ hoursOfOperation?: {
1898
+ daysOfWeek?: ("mon" | "tue" | "wed" | "thu" | "fri" | "sat" | "sun")[] | undefined;
1899
+ allDay?: boolean | undefined;
1900
+ openingTime?: string | undefined;
1901
+ closingTime?: string | undefined;
1902
+ }[] | undefined;
1903
+ }, {
1904
+ status: "active" | "inactive" | "suspended";
1905
+ resourceType: "Location";
1906
+ id: string;
1907
+ identifier: {
1908
+ value: string;
1909
+ system: string;
1910
+ use?: string | undefined;
1911
+ }[];
1912
+ name: string;
1913
+ type?: {
1914
+ coding: {
1915
+ code: string;
1916
+ system: string;
1917
+ display?: string | undefined;
1918
+ }[];
1919
+ text?: string | undefined;
1920
+ }[] | undefined;
1921
+ mode?: "instance" | "kind" | undefined;
1922
+ meta?: {
1923
+ lastUpdated?: string | undefined;
1924
+ profile?: string[] | undefined;
1925
+ versionId?: string | undefined;
1926
+ } | undefined;
1927
+ partOf?: {
1928
+ reference: string;
1929
+ type?: string | undefined;
1930
+ display?: string | undefined;
1931
+ } | undefined;
1932
+ telecom?: {
1933
+ value?: string | undefined;
1934
+ system?: "phone" | "fax" | "email" | "pager" | "url" | "sms" | "other" | undefined;
1935
+ use?: "home" | "work" | "temp" | "old" | "mobile" | undefined;
1936
+ }[] | undefined;
1937
+ description?: string | undefined;
1938
+ physicalType?: {
1939
+ coding: {
1940
+ code: string;
1941
+ system: string;
1942
+ display?: string | undefined;
1943
+ }[];
1944
+ text?: string | undefined;
1945
+ } | undefined;
1946
+ address?: {
1947
+ type?: "postal" | "physical" | "both" | undefined;
1948
+ text?: string | undefined;
1949
+ use?: "home" | "work" | "temp" | "old" | "billing" | undefined;
1950
+ extension?: {
1951
+ url: string;
1952
+ extension?: {
1953
+ url: string;
1954
+ valueCode: string;
1955
+ }[] | undefined;
1956
+ }[] | undefined;
1957
+ line?: string[] | undefined;
1958
+ city?: string | undefined;
1959
+ district?: string | undefined;
1960
+ state?: string | undefined;
1961
+ postalCode?: string | undefined;
1962
+ country?: string | undefined;
1963
+ period?: {
1964
+ start?: string | undefined;
1965
+ end?: string | undefined;
1966
+ } | undefined;
1967
+ } | undefined;
1968
+ availabilityExceptions?: string | undefined;
1969
+ endpoint?: {
1970
+ reference: string;
1971
+ type?: string | undefined;
1972
+ display?: string | undefined;
1973
+ }[] | undefined;
1974
+ alias?: string[] | undefined;
1975
+ operationalStatus?: {
1976
+ code?: string | undefined;
1977
+ system?: string | undefined;
1978
+ display?: string | undefined;
1979
+ } | undefined;
1980
+ position?: {
1981
+ longitude: number;
1982
+ latitude: number;
1983
+ altitude?: number | undefined;
1984
+ } | undefined;
1985
+ managingOrganization?: {
1986
+ reference: string;
1987
+ type?: string | undefined;
1988
+ display?: string | undefined;
1989
+ } | undefined;
1990
+ hoursOfOperation?: {
1991
+ daysOfWeek?: ("mon" | "tue" | "wed" | "thu" | "fri" | "sat" | "sun")[] | undefined;
1992
+ allDay?: boolean | undefined;
1993
+ openingTime?: string | undefined;
1994
+ closingTime?: string | undefined;
1995
+ }[] | undefined;
1996
+ }>;
1997
+ search: z.ZodOptional<z.ZodObject<{
1998
+ mode: z.ZodOptional<z.ZodString>;
1999
+ }, "strip", z.ZodTypeAny, {
2000
+ mode?: string | undefined;
2001
+ }, {
2002
+ mode?: string | undefined;
2003
+ }>>;
2004
+ }, "strip", z.ZodTypeAny, {
2005
+ resource: {
2006
+ status: "active" | "inactive" | "suspended";
2007
+ resourceType: "Location";
2008
+ id: string;
2009
+ identifier: {
2010
+ value: string;
2011
+ system: string;
2012
+ use?: string | undefined;
2013
+ }[];
2014
+ name: string;
2015
+ type?: {
2016
+ coding: {
2017
+ code: string;
2018
+ system: string;
2019
+ display?: string | undefined;
2020
+ }[];
2021
+ text?: string | undefined;
2022
+ }[] | undefined;
2023
+ mode?: "instance" | "kind" | undefined;
2024
+ meta?: {
2025
+ lastUpdated?: string | undefined;
2026
+ profile?: string[] | undefined;
2027
+ versionId?: string | undefined;
2028
+ } | undefined;
2029
+ partOf?: {
2030
+ reference: string;
2031
+ type?: string | undefined;
2032
+ display?: string | undefined;
2033
+ } | undefined;
2034
+ telecom?: {
2035
+ value?: string | undefined;
2036
+ system?: "phone" | "fax" | "email" | "pager" | "url" | "sms" | "other" | undefined;
2037
+ use?: "home" | "work" | "temp" | "old" | "mobile" | undefined;
2038
+ }[] | undefined;
2039
+ description?: string | undefined;
2040
+ physicalType?: {
2041
+ coding: {
2042
+ code: string;
2043
+ system: string;
2044
+ display?: string | undefined;
2045
+ }[];
2046
+ text?: string | undefined;
2047
+ } | undefined;
2048
+ address?: {
2049
+ type?: "postal" | "physical" | "both" | undefined;
2050
+ text?: string | undefined;
2051
+ use?: "home" | "work" | "temp" | "old" | "billing" | undefined;
2052
+ extension?: {
2053
+ url: string;
2054
+ extension?: {
2055
+ url: string;
2056
+ valueCode: string;
2057
+ }[] | undefined;
2058
+ }[] | undefined;
2059
+ line?: string[] | undefined;
2060
+ city?: string | undefined;
2061
+ district?: string | undefined;
2062
+ state?: string | undefined;
2063
+ postalCode?: string | undefined;
2064
+ country?: string | undefined;
2065
+ period?: {
2066
+ start?: string | undefined;
2067
+ end?: string | undefined;
2068
+ } | undefined;
2069
+ } | undefined;
2070
+ availabilityExceptions?: string | undefined;
2071
+ endpoint?: {
2072
+ reference: string;
2073
+ type?: string | undefined;
2074
+ display?: string | undefined;
2075
+ }[] | undefined;
2076
+ alias?: string[] | undefined;
2077
+ operationalStatus?: {
2078
+ code?: string | undefined;
2079
+ system?: string | undefined;
2080
+ display?: string | undefined;
2081
+ } | undefined;
2082
+ position?: {
2083
+ longitude: number;
2084
+ latitude: number;
2085
+ altitude?: number | undefined;
2086
+ } | undefined;
2087
+ managingOrganization?: {
2088
+ reference: string;
2089
+ type?: string | undefined;
2090
+ display?: string | undefined;
2091
+ } | undefined;
2092
+ hoursOfOperation?: {
2093
+ daysOfWeek?: ("mon" | "tue" | "wed" | "thu" | "fri" | "sat" | "sun")[] | undefined;
2094
+ allDay?: boolean | undefined;
2095
+ openingTime?: string | undefined;
2096
+ closingTime?: string | undefined;
2097
+ }[] | undefined;
2098
+ };
2099
+ fullUrl?: string | undefined;
2100
+ search?: {
2101
+ mode?: string | undefined;
2102
+ } | undefined;
2103
+ }, {
2104
+ resource: {
2105
+ status: "active" | "inactive" | "suspended";
2106
+ resourceType: "Location";
2107
+ id: string;
2108
+ identifier: {
2109
+ value: string;
2110
+ system: string;
2111
+ use?: string | undefined;
2112
+ }[];
2113
+ name: string;
2114
+ type?: {
2115
+ coding: {
2116
+ code: string;
2117
+ system: string;
2118
+ display?: string | undefined;
2119
+ }[];
2120
+ text?: string | undefined;
2121
+ }[] | undefined;
2122
+ mode?: "instance" | "kind" | undefined;
2123
+ meta?: {
2124
+ lastUpdated?: string | undefined;
2125
+ profile?: string[] | undefined;
2126
+ versionId?: string | undefined;
2127
+ } | undefined;
2128
+ partOf?: {
2129
+ reference: string;
2130
+ type?: string | undefined;
2131
+ display?: string | undefined;
2132
+ } | undefined;
2133
+ telecom?: {
2134
+ value?: string | undefined;
2135
+ system?: "phone" | "fax" | "email" | "pager" | "url" | "sms" | "other" | undefined;
2136
+ use?: "home" | "work" | "temp" | "old" | "mobile" | undefined;
2137
+ }[] | undefined;
2138
+ description?: string | undefined;
2139
+ physicalType?: {
2140
+ coding: {
2141
+ code: string;
2142
+ system: string;
2143
+ display?: string | undefined;
2144
+ }[];
2145
+ text?: string | undefined;
2146
+ } | undefined;
2147
+ address?: {
2148
+ type?: "postal" | "physical" | "both" | undefined;
2149
+ text?: string | undefined;
2150
+ use?: "home" | "work" | "temp" | "old" | "billing" | undefined;
2151
+ extension?: {
2152
+ url: string;
2153
+ extension?: {
2154
+ url: string;
2155
+ valueCode: string;
2156
+ }[] | undefined;
2157
+ }[] | undefined;
2158
+ line?: string[] | undefined;
2159
+ city?: string | undefined;
2160
+ district?: string | undefined;
2161
+ state?: string | undefined;
2162
+ postalCode?: string | undefined;
2163
+ country?: string | undefined;
2164
+ period?: {
2165
+ start?: string | undefined;
2166
+ end?: string | undefined;
2167
+ } | undefined;
2168
+ } | undefined;
2169
+ availabilityExceptions?: string | undefined;
2170
+ endpoint?: {
2171
+ reference: string;
2172
+ type?: string | undefined;
2173
+ display?: string | undefined;
2174
+ }[] | undefined;
2175
+ alias?: string[] | undefined;
2176
+ operationalStatus?: {
2177
+ code?: string | undefined;
2178
+ system?: string | undefined;
2179
+ display?: string | undefined;
2180
+ } | undefined;
2181
+ position?: {
2182
+ longitude: number;
2183
+ latitude: number;
2184
+ altitude?: number | undefined;
2185
+ } | undefined;
2186
+ managingOrganization?: {
2187
+ reference: string;
2188
+ type?: string | undefined;
2189
+ display?: string | undefined;
2190
+ } | undefined;
2191
+ hoursOfOperation?: {
2192
+ daysOfWeek?: ("mon" | "tue" | "wed" | "thu" | "fri" | "sat" | "sun")[] | undefined;
2193
+ allDay?: boolean | undefined;
2194
+ openingTime?: string | undefined;
2195
+ closingTime?: string | undefined;
2196
+ }[] | undefined;
2197
+ };
2198
+ fullUrl?: string | undefined;
2199
+ search?: {
2200
+ mode?: string | undefined;
2201
+ } | undefined;
2202
+ }>, "many">>;
2203
+ }, "strip", z.ZodTypeAny, {
2204
+ resourceType: "Bundle";
2205
+ type?: string | undefined;
2206
+ total?: number | undefined;
2207
+ link?: {
2208
+ url?: string | undefined;
2209
+ relation?: string | undefined;
2210
+ }[] | undefined;
2211
+ entry?: {
2212
+ resource: {
2213
+ status: "active" | "inactive" | "suspended";
2214
+ resourceType: "Location";
2215
+ id: string;
2216
+ identifier: {
2217
+ value: string;
2218
+ system: string;
2219
+ use?: string | undefined;
2220
+ }[];
2221
+ name: string;
2222
+ type?: {
2223
+ coding: {
2224
+ code: string;
2225
+ system: string;
2226
+ display?: string | undefined;
2227
+ }[];
2228
+ text?: string | undefined;
2229
+ }[] | undefined;
2230
+ mode?: "instance" | "kind" | undefined;
2231
+ meta?: {
2232
+ lastUpdated?: string | undefined;
2233
+ profile?: string[] | undefined;
2234
+ versionId?: string | undefined;
2235
+ } | undefined;
2236
+ partOf?: {
2237
+ reference: string;
2238
+ type?: string | undefined;
2239
+ display?: string | undefined;
2240
+ } | undefined;
2241
+ telecom?: {
2242
+ value?: string | undefined;
2243
+ system?: "phone" | "fax" | "email" | "pager" | "url" | "sms" | "other" | undefined;
2244
+ use?: "home" | "work" | "temp" | "old" | "mobile" | undefined;
2245
+ }[] | undefined;
2246
+ description?: string | undefined;
2247
+ physicalType?: {
2248
+ coding: {
2249
+ code: string;
2250
+ system: string;
2251
+ display?: string | undefined;
2252
+ }[];
2253
+ text?: string | undefined;
2254
+ } | undefined;
2255
+ address?: {
2256
+ type?: "postal" | "physical" | "both" | undefined;
2257
+ text?: string | undefined;
2258
+ use?: "home" | "work" | "temp" | "old" | "billing" | undefined;
2259
+ extension?: {
2260
+ url: string;
2261
+ extension?: {
2262
+ url: string;
2263
+ valueCode: string;
2264
+ }[] | undefined;
2265
+ }[] | undefined;
2266
+ line?: string[] | undefined;
2267
+ city?: string | undefined;
2268
+ district?: string | undefined;
2269
+ state?: string | undefined;
2270
+ postalCode?: string | undefined;
2271
+ country?: string | undefined;
2272
+ period?: {
2273
+ start?: string | undefined;
2274
+ end?: string | undefined;
2275
+ } | undefined;
2276
+ } | undefined;
2277
+ availabilityExceptions?: string | undefined;
2278
+ endpoint?: {
2279
+ reference: string;
2280
+ type?: string | undefined;
2281
+ display?: string | undefined;
2282
+ }[] | undefined;
2283
+ alias?: string[] | undefined;
2284
+ operationalStatus?: {
2285
+ code?: string | undefined;
2286
+ system?: string | undefined;
2287
+ display?: string | undefined;
2288
+ } | undefined;
2289
+ position?: {
2290
+ longitude: number;
2291
+ latitude: number;
2292
+ altitude?: number | undefined;
2293
+ } | undefined;
2294
+ managingOrganization?: {
2295
+ reference: string;
2296
+ type?: string | undefined;
2297
+ display?: string | undefined;
2298
+ } | undefined;
2299
+ hoursOfOperation?: {
2300
+ daysOfWeek?: ("mon" | "tue" | "wed" | "thu" | "fri" | "sat" | "sun")[] | undefined;
2301
+ allDay?: boolean | undefined;
2302
+ openingTime?: string | undefined;
2303
+ closingTime?: string | undefined;
2304
+ }[] | undefined;
2305
+ };
2306
+ fullUrl?: string | undefined;
2307
+ search?: {
2308
+ mode?: string | undefined;
2309
+ } | undefined;
2310
+ }[] | undefined;
2311
+ }, {
2312
+ resourceType: "Bundle";
2313
+ type?: string | undefined;
2314
+ total?: number | undefined;
2315
+ link?: {
2316
+ url?: string | undefined;
2317
+ relation?: string | undefined;
2318
+ }[] | undefined;
2319
+ entry?: {
2320
+ resource: {
2321
+ status: "active" | "inactive" | "suspended";
2322
+ resourceType: "Location";
2323
+ id: string;
2324
+ identifier: {
2325
+ value: string;
2326
+ system: string;
2327
+ use?: string | undefined;
2328
+ }[];
2329
+ name: string;
2330
+ type?: {
2331
+ coding: {
2332
+ code: string;
2333
+ system: string;
2334
+ display?: string | undefined;
2335
+ }[];
2336
+ text?: string | undefined;
2337
+ }[] | undefined;
2338
+ mode?: "instance" | "kind" | undefined;
2339
+ meta?: {
2340
+ lastUpdated?: string | undefined;
2341
+ profile?: string[] | undefined;
2342
+ versionId?: string | undefined;
2343
+ } | undefined;
2344
+ partOf?: {
2345
+ reference: string;
2346
+ type?: string | undefined;
2347
+ display?: string | undefined;
2348
+ } | undefined;
2349
+ telecom?: {
2350
+ value?: string | undefined;
2351
+ system?: "phone" | "fax" | "email" | "pager" | "url" | "sms" | "other" | undefined;
2352
+ use?: "home" | "work" | "temp" | "old" | "mobile" | undefined;
2353
+ }[] | undefined;
2354
+ description?: string | undefined;
2355
+ physicalType?: {
2356
+ coding: {
2357
+ code: string;
2358
+ system: string;
2359
+ display?: string | undefined;
2360
+ }[];
2361
+ text?: string | undefined;
2362
+ } | undefined;
2363
+ address?: {
2364
+ type?: "postal" | "physical" | "both" | undefined;
2365
+ text?: string | undefined;
2366
+ use?: "home" | "work" | "temp" | "old" | "billing" | undefined;
2367
+ extension?: {
2368
+ url: string;
2369
+ extension?: {
2370
+ url: string;
2371
+ valueCode: string;
2372
+ }[] | undefined;
2373
+ }[] | undefined;
2374
+ line?: string[] | undefined;
2375
+ city?: string | undefined;
2376
+ district?: string | undefined;
2377
+ state?: string | undefined;
2378
+ postalCode?: string | undefined;
2379
+ country?: string | undefined;
2380
+ period?: {
2381
+ start?: string | undefined;
2382
+ end?: string | undefined;
2383
+ } | undefined;
2384
+ } | undefined;
2385
+ availabilityExceptions?: string | undefined;
2386
+ endpoint?: {
2387
+ reference: string;
2388
+ type?: string | undefined;
2389
+ display?: string | undefined;
2390
+ }[] | undefined;
2391
+ alias?: string[] | undefined;
2392
+ operationalStatus?: {
2393
+ code?: string | undefined;
2394
+ system?: string | undefined;
2395
+ display?: string | undefined;
2396
+ } | undefined;
2397
+ position?: {
2398
+ longitude: number;
2399
+ latitude: number;
2400
+ altitude?: number | undefined;
2401
+ } | undefined;
2402
+ managingOrganization?: {
2403
+ reference: string;
2404
+ type?: string | undefined;
2405
+ display?: string | undefined;
2406
+ } | undefined;
2407
+ hoursOfOperation?: {
2408
+ daysOfWeek?: ("mon" | "tue" | "wed" | "thu" | "fri" | "sat" | "sun")[] | undefined;
2409
+ allDay?: boolean | undefined;
2410
+ openingTime?: string | undefined;
2411
+ closingTime?: string | undefined;
2412
+ }[] | undefined;
2413
+ };
2414
+ fullUrl?: string | undefined;
2415
+ search?: {
2416
+ mode?: string | undefined;
2417
+ } | undefined;
2418
+ }[] | undefined;
2419
+ }>;
2420
+ export type LocationIdentifier = z.infer<typeof LocationIdentifierSchema>;
2421
+ export type LocationStatus = z.infer<typeof LocationStatusSchema>;
2422
+ export type LocationMode = z.infer<typeof LocationModeSchema>;
2423
+ export type LocationType = z.infer<typeof LocationTypeSchema>;
2424
+ export type LocationPhysicalType = z.infer<typeof LocationPhysicalTypeSchema>;
2425
+ export type LocationPosition = z.infer<typeof LocationPositionSchema>;
2426
+ export type LocationHoursOfOperation = z.infer<typeof LocationHoursOfOperationSchema>;
2427
+ export type LocationPatchOperation = z.infer<typeof LocationPatchOperationSchema>;
2428
+ export type LocationPatchInput = z.infer<typeof LocationPatchSchema>;
2429
+ export type Location = z.infer<typeof LocationSchema>;
2430
+ export type LocationCreateInput = z.infer<typeof LocationCreateSchema>;
2431
+ export type LocationSearchParams = z.infer<typeof LocationSearchParamsSchema>;
2432
+ export type LocationSearchResponse = z.infer<typeof LocationBundleSchema>;