@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,1930 @@
1
+ import { z } from "zod";
2
+ export declare const PractitionerRoleAvailableTimeSchema: z.ZodObject<{
3
+ daysOfWeek: z.ZodOptional<z.ZodArray<z.ZodEnum<["mon", "tue", "wed", "thu", "fri", "sat", "sun"]>, "many">>;
4
+ allDay: z.ZodOptional<z.ZodBoolean>;
5
+ availableStartTime: z.ZodOptional<z.ZodString>;
6
+ availableEndTime: z.ZodOptional<z.ZodString>;
7
+ }, "strip", z.ZodTypeAny, {
8
+ daysOfWeek?: ("mon" | "tue" | "wed" | "thu" | "fri" | "sat" | "sun")[] | undefined;
9
+ allDay?: boolean | undefined;
10
+ availableStartTime?: string | undefined;
11
+ availableEndTime?: string | undefined;
12
+ }, {
13
+ daysOfWeek?: ("mon" | "tue" | "wed" | "thu" | "fri" | "sat" | "sun")[] | undefined;
14
+ allDay?: boolean | undefined;
15
+ availableStartTime?: string | undefined;
16
+ availableEndTime?: string | undefined;
17
+ }>;
18
+ export declare const PractitionerRoleNotAvailableSchema: z.ZodObject<{
19
+ description: z.ZodString;
20
+ during: z.ZodOptional<z.ZodObject<{
21
+ start: z.ZodOptional<z.ZodString>;
22
+ end: z.ZodOptional<z.ZodString>;
23
+ }, "strip", z.ZodTypeAny, {
24
+ start?: string | undefined;
25
+ end?: string | undefined;
26
+ }, {
27
+ start?: string | undefined;
28
+ end?: string | undefined;
29
+ }>>;
30
+ }, "strip", z.ZodTypeAny, {
31
+ description: string;
32
+ during?: {
33
+ start?: string | undefined;
34
+ end?: string | undefined;
35
+ } | undefined;
36
+ }, {
37
+ description: string;
38
+ during?: {
39
+ start?: string | undefined;
40
+ end?: string | undefined;
41
+ } | undefined;
42
+ }>;
43
+ export declare const PractitionerRolePatchOperationSchema: z.ZodObject<{
44
+ op: z.ZodLiteral<"replace">;
45
+ path: z.ZodString;
46
+ value: z.ZodUnknown;
47
+ }, "strip", z.ZodTypeAny, {
48
+ path: string;
49
+ op: "replace";
50
+ value?: unknown;
51
+ }, {
52
+ path: string;
53
+ op: "replace";
54
+ value?: unknown;
55
+ }>;
56
+ export declare const PractitionerRolePatchSchema: z.ZodArray<z.ZodObject<{
57
+ op: z.ZodLiteral<"replace">;
58
+ path: z.ZodString;
59
+ value: z.ZodUnknown;
60
+ }, "strip", z.ZodTypeAny, {
61
+ path: string;
62
+ op: "replace";
63
+ value?: unknown;
64
+ }, {
65
+ path: string;
66
+ op: "replace";
67
+ value?: unknown;
68
+ }>, "many">;
69
+ export declare const PractitionerRoleSearchParamsSchema: z.ZodObject<{
70
+ practitioner: z.ZodString;
71
+ organization: z.ZodOptional<z.ZodString>;
72
+ }, "strip", z.ZodTypeAny, {
73
+ practitioner: string;
74
+ organization?: string | undefined;
75
+ }, {
76
+ practitioner: string;
77
+ organization?: string | undefined;
78
+ }>;
79
+ export declare const PractitionerRoleBaseSchema: z.ZodObject<{
80
+ resourceType: z.ZodLiteral<"PractitionerRole">;
81
+ identifier: z.ZodOptional<z.ZodArray<z.ZodObject<{
82
+ system: z.ZodOptional<z.ZodString>;
83
+ use: z.ZodOptional<z.ZodString>;
84
+ value: z.ZodOptional<z.ZodString>;
85
+ }, "strip", z.ZodTypeAny, {
86
+ value?: string | undefined;
87
+ system?: string | undefined;
88
+ use?: string | undefined;
89
+ }, {
90
+ value?: string | undefined;
91
+ system?: string | undefined;
92
+ use?: string | undefined;
93
+ }>, "many">>;
94
+ active: z.ZodOptional<z.ZodBoolean>;
95
+ period: z.ZodOptional<z.ZodObject<{
96
+ start: z.ZodOptional<z.ZodString>;
97
+ end: z.ZodOptional<z.ZodString>;
98
+ }, "strip", z.ZodTypeAny, {
99
+ start?: string | undefined;
100
+ end?: string | undefined;
101
+ }, {
102
+ start?: string | undefined;
103
+ end?: string | undefined;
104
+ }>>;
105
+ practitioner: z.ZodOptional<z.ZodObject<{
106
+ reference: z.ZodString;
107
+ display: z.ZodOptional<z.ZodString>;
108
+ type: z.ZodOptional<z.ZodString>;
109
+ }, "strip", z.ZodTypeAny, {
110
+ reference: string;
111
+ type?: string | undefined;
112
+ display?: string | undefined;
113
+ }, {
114
+ reference: string;
115
+ type?: string | undefined;
116
+ display?: string | undefined;
117
+ }>>;
118
+ organization: z.ZodOptional<z.ZodObject<{
119
+ reference: z.ZodString;
120
+ display: z.ZodOptional<z.ZodString>;
121
+ type: z.ZodOptional<z.ZodString>;
122
+ }, "strip", z.ZodTypeAny, {
123
+ reference: string;
124
+ type?: string | undefined;
125
+ display?: string | undefined;
126
+ }, {
127
+ reference: string;
128
+ type?: string | undefined;
129
+ display?: string | undefined;
130
+ }>>;
131
+ code: z.ZodOptional<z.ZodArray<z.ZodObject<{
132
+ coding: z.ZodOptional<z.ZodArray<z.ZodObject<{
133
+ system: z.ZodOptional<z.ZodString>;
134
+ code: z.ZodOptional<z.ZodString>;
135
+ display: z.ZodOptional<z.ZodString>;
136
+ }, "strip", z.ZodTypeAny, {
137
+ code?: string | undefined;
138
+ system?: string | undefined;
139
+ display?: string | undefined;
140
+ }, {
141
+ code?: string | undefined;
142
+ system?: string | undefined;
143
+ display?: string | undefined;
144
+ }>, "many">>;
145
+ text: z.ZodOptional<z.ZodString>;
146
+ }, "strip", z.ZodTypeAny, {
147
+ coding?: {
148
+ code?: string | undefined;
149
+ system?: string | undefined;
150
+ display?: string | undefined;
151
+ }[] | undefined;
152
+ text?: string | undefined;
153
+ }, {
154
+ coding?: {
155
+ code?: string | undefined;
156
+ system?: string | undefined;
157
+ display?: string | undefined;
158
+ }[] | undefined;
159
+ text?: string | undefined;
160
+ }>, "many">>;
161
+ specialty: z.ZodOptional<z.ZodArray<z.ZodObject<{
162
+ coding: z.ZodOptional<z.ZodArray<z.ZodObject<{
163
+ system: z.ZodOptional<z.ZodString>;
164
+ code: z.ZodOptional<z.ZodString>;
165
+ display: z.ZodOptional<z.ZodString>;
166
+ }, "strip", z.ZodTypeAny, {
167
+ code?: string | undefined;
168
+ system?: string | undefined;
169
+ display?: string | undefined;
170
+ }, {
171
+ code?: string | undefined;
172
+ system?: string | undefined;
173
+ display?: string | undefined;
174
+ }>, "many">>;
175
+ text: z.ZodOptional<z.ZodString>;
176
+ }, "strip", z.ZodTypeAny, {
177
+ coding?: {
178
+ code?: string | undefined;
179
+ system?: string | undefined;
180
+ display?: string | undefined;
181
+ }[] | undefined;
182
+ text?: string | undefined;
183
+ }, {
184
+ coding?: {
185
+ code?: string | undefined;
186
+ system?: string | undefined;
187
+ display?: string | undefined;
188
+ }[] | undefined;
189
+ text?: string | undefined;
190
+ }>, "many">>;
191
+ location: z.ZodOptional<z.ZodArray<z.ZodObject<{
192
+ reference: z.ZodString;
193
+ display: z.ZodOptional<z.ZodString>;
194
+ type: z.ZodOptional<z.ZodString>;
195
+ }, "strip", z.ZodTypeAny, {
196
+ reference: string;
197
+ type?: string | undefined;
198
+ display?: string | undefined;
199
+ }, {
200
+ reference: string;
201
+ type?: string | undefined;
202
+ display?: string | undefined;
203
+ }>, "many">>;
204
+ healthcareService: z.ZodOptional<z.ZodArray<z.ZodObject<{
205
+ reference: z.ZodString;
206
+ display: z.ZodOptional<z.ZodString>;
207
+ type: z.ZodOptional<z.ZodString>;
208
+ }, "strip", z.ZodTypeAny, {
209
+ reference: string;
210
+ type?: string | undefined;
211
+ display?: string | undefined;
212
+ }, {
213
+ reference: string;
214
+ type?: string | undefined;
215
+ display?: string | undefined;
216
+ }>, "many">>;
217
+ telecom: z.ZodOptional<z.ZodArray<z.ZodObject<{
218
+ system: z.ZodOptional<z.ZodEnum<["phone", "fax", "email", "pager", "url", "sms", "other"]>>;
219
+ value: z.ZodOptional<z.ZodString>;
220
+ use: z.ZodOptional<z.ZodEnum<["home", "work", "temp", "old", "mobile"]>>;
221
+ }, "strip", z.ZodTypeAny, {
222
+ value?: string | undefined;
223
+ system?: "phone" | "fax" | "email" | "pager" | "url" | "sms" | "other" | undefined;
224
+ use?: "home" | "work" | "temp" | "old" | "mobile" | undefined;
225
+ }, {
226
+ value?: string | undefined;
227
+ system?: "phone" | "fax" | "email" | "pager" | "url" | "sms" | "other" | undefined;
228
+ use?: "home" | "work" | "temp" | "old" | "mobile" | undefined;
229
+ }>, "many">>;
230
+ availableTime: z.ZodOptional<z.ZodArray<z.ZodObject<{
231
+ daysOfWeek: z.ZodOptional<z.ZodArray<z.ZodEnum<["mon", "tue", "wed", "thu", "fri", "sat", "sun"]>, "many">>;
232
+ allDay: z.ZodOptional<z.ZodBoolean>;
233
+ availableStartTime: z.ZodOptional<z.ZodString>;
234
+ availableEndTime: z.ZodOptional<z.ZodString>;
235
+ }, "strip", z.ZodTypeAny, {
236
+ daysOfWeek?: ("mon" | "tue" | "wed" | "thu" | "fri" | "sat" | "sun")[] | undefined;
237
+ allDay?: boolean | undefined;
238
+ availableStartTime?: string | undefined;
239
+ availableEndTime?: string | undefined;
240
+ }, {
241
+ daysOfWeek?: ("mon" | "tue" | "wed" | "thu" | "fri" | "sat" | "sun")[] | undefined;
242
+ allDay?: boolean | undefined;
243
+ availableStartTime?: string | undefined;
244
+ availableEndTime?: string | undefined;
245
+ }>, "many">>;
246
+ notAvailable: z.ZodOptional<z.ZodArray<z.ZodObject<{
247
+ description: z.ZodString;
248
+ during: z.ZodOptional<z.ZodObject<{
249
+ start: z.ZodOptional<z.ZodString>;
250
+ end: z.ZodOptional<z.ZodString>;
251
+ }, "strip", z.ZodTypeAny, {
252
+ start?: string | undefined;
253
+ end?: string | undefined;
254
+ }, {
255
+ start?: string | undefined;
256
+ end?: string | undefined;
257
+ }>>;
258
+ }, "strip", z.ZodTypeAny, {
259
+ description: string;
260
+ during?: {
261
+ start?: string | undefined;
262
+ end?: string | undefined;
263
+ } | undefined;
264
+ }, {
265
+ description: string;
266
+ during?: {
267
+ start?: string | undefined;
268
+ end?: string | undefined;
269
+ } | undefined;
270
+ }>, "many">>;
271
+ availabilityExceptions: z.ZodOptional<z.ZodString>;
272
+ endpoint: z.ZodOptional<z.ZodArray<z.ZodObject<{
273
+ reference: z.ZodString;
274
+ display: z.ZodOptional<z.ZodString>;
275
+ type: z.ZodOptional<z.ZodString>;
276
+ }, "strip", z.ZodTypeAny, {
277
+ reference: string;
278
+ type?: string | undefined;
279
+ display?: string | undefined;
280
+ }, {
281
+ reference: string;
282
+ type?: string | undefined;
283
+ display?: string | undefined;
284
+ }>, "many">>;
285
+ }, "strip", z.ZodTypeAny, {
286
+ resourceType: "PractitionerRole";
287
+ code?: {
288
+ coding?: {
289
+ code?: string | undefined;
290
+ system?: string | undefined;
291
+ display?: string | undefined;
292
+ }[] | undefined;
293
+ text?: string | undefined;
294
+ }[] | undefined;
295
+ period?: {
296
+ start?: string | undefined;
297
+ end?: string | undefined;
298
+ } | undefined;
299
+ active?: boolean | undefined;
300
+ identifier?: {
301
+ value?: string | undefined;
302
+ system?: string | undefined;
303
+ use?: string | undefined;
304
+ }[] | undefined;
305
+ location?: {
306
+ reference: string;
307
+ type?: string | undefined;
308
+ display?: string | undefined;
309
+ }[] | undefined;
310
+ telecom?: {
311
+ value?: string | undefined;
312
+ system?: "phone" | "fax" | "email" | "pager" | "url" | "sms" | "other" | undefined;
313
+ use?: "home" | "work" | "temp" | "old" | "mobile" | undefined;
314
+ }[] | undefined;
315
+ practitioner?: {
316
+ reference: string;
317
+ type?: string | undefined;
318
+ display?: string | undefined;
319
+ } | undefined;
320
+ organization?: {
321
+ reference: string;
322
+ type?: string | undefined;
323
+ display?: string | undefined;
324
+ } | undefined;
325
+ specialty?: {
326
+ coding?: {
327
+ code?: string | undefined;
328
+ system?: string | undefined;
329
+ display?: string | undefined;
330
+ }[] | undefined;
331
+ text?: string | undefined;
332
+ }[] | undefined;
333
+ healthcareService?: {
334
+ reference: string;
335
+ type?: string | undefined;
336
+ display?: string | undefined;
337
+ }[] | undefined;
338
+ availableTime?: {
339
+ daysOfWeek?: ("mon" | "tue" | "wed" | "thu" | "fri" | "sat" | "sun")[] | undefined;
340
+ allDay?: boolean | undefined;
341
+ availableStartTime?: string | undefined;
342
+ availableEndTime?: string | undefined;
343
+ }[] | undefined;
344
+ notAvailable?: {
345
+ description: string;
346
+ during?: {
347
+ start?: string | undefined;
348
+ end?: string | undefined;
349
+ } | undefined;
350
+ }[] | undefined;
351
+ availabilityExceptions?: string | undefined;
352
+ endpoint?: {
353
+ reference: string;
354
+ type?: string | undefined;
355
+ display?: string | undefined;
356
+ }[] | undefined;
357
+ }, {
358
+ resourceType: "PractitionerRole";
359
+ code?: {
360
+ coding?: {
361
+ code?: string | undefined;
362
+ system?: string | undefined;
363
+ display?: string | undefined;
364
+ }[] | undefined;
365
+ text?: string | undefined;
366
+ }[] | undefined;
367
+ period?: {
368
+ start?: string | undefined;
369
+ end?: string | undefined;
370
+ } | undefined;
371
+ active?: boolean | undefined;
372
+ identifier?: {
373
+ value?: string | undefined;
374
+ system?: string | undefined;
375
+ use?: string | undefined;
376
+ }[] | undefined;
377
+ location?: {
378
+ reference: string;
379
+ type?: string | undefined;
380
+ display?: string | undefined;
381
+ }[] | undefined;
382
+ telecom?: {
383
+ value?: string | undefined;
384
+ system?: "phone" | "fax" | "email" | "pager" | "url" | "sms" | "other" | undefined;
385
+ use?: "home" | "work" | "temp" | "old" | "mobile" | undefined;
386
+ }[] | undefined;
387
+ practitioner?: {
388
+ reference: string;
389
+ type?: string | undefined;
390
+ display?: string | undefined;
391
+ } | undefined;
392
+ organization?: {
393
+ reference: string;
394
+ type?: string | undefined;
395
+ display?: string | undefined;
396
+ } | undefined;
397
+ specialty?: {
398
+ coding?: {
399
+ code?: string | undefined;
400
+ system?: string | undefined;
401
+ display?: string | undefined;
402
+ }[] | undefined;
403
+ text?: string | undefined;
404
+ }[] | undefined;
405
+ healthcareService?: {
406
+ reference: string;
407
+ type?: string | undefined;
408
+ display?: string | undefined;
409
+ }[] | undefined;
410
+ availableTime?: {
411
+ daysOfWeek?: ("mon" | "tue" | "wed" | "thu" | "fri" | "sat" | "sun")[] | undefined;
412
+ allDay?: boolean | undefined;
413
+ availableStartTime?: string | undefined;
414
+ availableEndTime?: string | undefined;
415
+ }[] | undefined;
416
+ notAvailable?: {
417
+ description: string;
418
+ during?: {
419
+ start?: string | undefined;
420
+ end?: string | undefined;
421
+ } | undefined;
422
+ }[] | undefined;
423
+ availabilityExceptions?: string | undefined;
424
+ endpoint?: {
425
+ reference: string;
426
+ type?: string | undefined;
427
+ display?: string | undefined;
428
+ }[] | undefined;
429
+ }>;
430
+ export declare const PractitionerRoleCreateSchema: z.ZodObject<{
431
+ resourceType: z.ZodLiteral<"PractitionerRole">;
432
+ identifier: z.ZodOptional<z.ZodArray<z.ZodObject<{
433
+ system: z.ZodOptional<z.ZodString>;
434
+ use: z.ZodOptional<z.ZodString>;
435
+ value: z.ZodOptional<z.ZodString>;
436
+ }, "strip", z.ZodTypeAny, {
437
+ value?: string | undefined;
438
+ system?: string | undefined;
439
+ use?: string | undefined;
440
+ }, {
441
+ value?: string | undefined;
442
+ system?: string | undefined;
443
+ use?: string | undefined;
444
+ }>, "many">>;
445
+ active: z.ZodOptional<z.ZodBoolean>;
446
+ period: z.ZodOptional<z.ZodObject<{
447
+ start: z.ZodOptional<z.ZodString>;
448
+ end: z.ZodOptional<z.ZodString>;
449
+ }, "strip", z.ZodTypeAny, {
450
+ start?: string | undefined;
451
+ end?: string | undefined;
452
+ }, {
453
+ start?: string | undefined;
454
+ end?: string | undefined;
455
+ }>>;
456
+ practitioner: z.ZodOptional<z.ZodObject<{
457
+ reference: z.ZodString;
458
+ display: z.ZodOptional<z.ZodString>;
459
+ type: z.ZodOptional<z.ZodString>;
460
+ }, "strip", z.ZodTypeAny, {
461
+ reference: string;
462
+ type?: string | undefined;
463
+ display?: string | undefined;
464
+ }, {
465
+ reference: string;
466
+ type?: string | undefined;
467
+ display?: string | undefined;
468
+ }>>;
469
+ organization: z.ZodOptional<z.ZodObject<{
470
+ reference: z.ZodString;
471
+ display: z.ZodOptional<z.ZodString>;
472
+ type: z.ZodOptional<z.ZodString>;
473
+ }, "strip", z.ZodTypeAny, {
474
+ reference: string;
475
+ type?: string | undefined;
476
+ display?: string | undefined;
477
+ }, {
478
+ reference: string;
479
+ type?: string | undefined;
480
+ display?: string | undefined;
481
+ }>>;
482
+ code: z.ZodOptional<z.ZodArray<z.ZodObject<{
483
+ coding: z.ZodOptional<z.ZodArray<z.ZodObject<{
484
+ system: z.ZodOptional<z.ZodString>;
485
+ code: z.ZodOptional<z.ZodString>;
486
+ display: z.ZodOptional<z.ZodString>;
487
+ }, "strip", z.ZodTypeAny, {
488
+ code?: string | undefined;
489
+ system?: string | undefined;
490
+ display?: string | undefined;
491
+ }, {
492
+ code?: string | undefined;
493
+ system?: string | undefined;
494
+ display?: string | undefined;
495
+ }>, "many">>;
496
+ text: z.ZodOptional<z.ZodString>;
497
+ }, "strip", z.ZodTypeAny, {
498
+ coding?: {
499
+ code?: string | undefined;
500
+ system?: string | undefined;
501
+ display?: string | undefined;
502
+ }[] | undefined;
503
+ text?: string | undefined;
504
+ }, {
505
+ coding?: {
506
+ code?: string | undefined;
507
+ system?: string | undefined;
508
+ display?: string | undefined;
509
+ }[] | undefined;
510
+ text?: string | undefined;
511
+ }>, "many">>;
512
+ specialty: z.ZodOptional<z.ZodArray<z.ZodObject<{
513
+ coding: z.ZodOptional<z.ZodArray<z.ZodObject<{
514
+ system: z.ZodOptional<z.ZodString>;
515
+ code: z.ZodOptional<z.ZodString>;
516
+ display: z.ZodOptional<z.ZodString>;
517
+ }, "strip", z.ZodTypeAny, {
518
+ code?: string | undefined;
519
+ system?: string | undefined;
520
+ display?: string | undefined;
521
+ }, {
522
+ code?: string | undefined;
523
+ system?: string | undefined;
524
+ display?: string | undefined;
525
+ }>, "many">>;
526
+ text: z.ZodOptional<z.ZodString>;
527
+ }, "strip", z.ZodTypeAny, {
528
+ coding?: {
529
+ code?: string | undefined;
530
+ system?: string | undefined;
531
+ display?: string | undefined;
532
+ }[] | undefined;
533
+ text?: string | undefined;
534
+ }, {
535
+ coding?: {
536
+ code?: string | undefined;
537
+ system?: string | undefined;
538
+ display?: string | undefined;
539
+ }[] | undefined;
540
+ text?: string | undefined;
541
+ }>, "many">>;
542
+ location: z.ZodOptional<z.ZodArray<z.ZodObject<{
543
+ reference: z.ZodString;
544
+ display: z.ZodOptional<z.ZodString>;
545
+ type: z.ZodOptional<z.ZodString>;
546
+ }, "strip", z.ZodTypeAny, {
547
+ reference: string;
548
+ type?: string | undefined;
549
+ display?: string | undefined;
550
+ }, {
551
+ reference: string;
552
+ type?: string | undefined;
553
+ display?: string | undefined;
554
+ }>, "many">>;
555
+ healthcareService: z.ZodOptional<z.ZodArray<z.ZodObject<{
556
+ reference: z.ZodString;
557
+ display: z.ZodOptional<z.ZodString>;
558
+ type: z.ZodOptional<z.ZodString>;
559
+ }, "strip", z.ZodTypeAny, {
560
+ reference: string;
561
+ type?: string | undefined;
562
+ display?: string | undefined;
563
+ }, {
564
+ reference: string;
565
+ type?: string | undefined;
566
+ display?: string | undefined;
567
+ }>, "many">>;
568
+ telecom: z.ZodOptional<z.ZodArray<z.ZodObject<{
569
+ system: z.ZodOptional<z.ZodEnum<["phone", "fax", "email", "pager", "url", "sms", "other"]>>;
570
+ value: z.ZodOptional<z.ZodString>;
571
+ use: z.ZodOptional<z.ZodEnum<["home", "work", "temp", "old", "mobile"]>>;
572
+ }, "strip", z.ZodTypeAny, {
573
+ value?: string | undefined;
574
+ system?: "phone" | "fax" | "email" | "pager" | "url" | "sms" | "other" | undefined;
575
+ use?: "home" | "work" | "temp" | "old" | "mobile" | undefined;
576
+ }, {
577
+ value?: string | undefined;
578
+ system?: "phone" | "fax" | "email" | "pager" | "url" | "sms" | "other" | undefined;
579
+ use?: "home" | "work" | "temp" | "old" | "mobile" | undefined;
580
+ }>, "many">>;
581
+ availableTime: z.ZodOptional<z.ZodArray<z.ZodObject<{
582
+ daysOfWeek: z.ZodOptional<z.ZodArray<z.ZodEnum<["mon", "tue", "wed", "thu", "fri", "sat", "sun"]>, "many">>;
583
+ allDay: z.ZodOptional<z.ZodBoolean>;
584
+ availableStartTime: z.ZodOptional<z.ZodString>;
585
+ availableEndTime: z.ZodOptional<z.ZodString>;
586
+ }, "strip", z.ZodTypeAny, {
587
+ daysOfWeek?: ("mon" | "tue" | "wed" | "thu" | "fri" | "sat" | "sun")[] | undefined;
588
+ allDay?: boolean | undefined;
589
+ availableStartTime?: string | undefined;
590
+ availableEndTime?: string | undefined;
591
+ }, {
592
+ daysOfWeek?: ("mon" | "tue" | "wed" | "thu" | "fri" | "sat" | "sun")[] | undefined;
593
+ allDay?: boolean | undefined;
594
+ availableStartTime?: string | undefined;
595
+ availableEndTime?: string | undefined;
596
+ }>, "many">>;
597
+ notAvailable: z.ZodOptional<z.ZodArray<z.ZodObject<{
598
+ description: z.ZodString;
599
+ during: z.ZodOptional<z.ZodObject<{
600
+ start: z.ZodOptional<z.ZodString>;
601
+ end: z.ZodOptional<z.ZodString>;
602
+ }, "strip", z.ZodTypeAny, {
603
+ start?: string | undefined;
604
+ end?: string | undefined;
605
+ }, {
606
+ start?: string | undefined;
607
+ end?: string | undefined;
608
+ }>>;
609
+ }, "strip", z.ZodTypeAny, {
610
+ description: string;
611
+ during?: {
612
+ start?: string | undefined;
613
+ end?: string | undefined;
614
+ } | undefined;
615
+ }, {
616
+ description: string;
617
+ during?: {
618
+ start?: string | undefined;
619
+ end?: string | undefined;
620
+ } | undefined;
621
+ }>, "many">>;
622
+ availabilityExceptions: z.ZodOptional<z.ZodString>;
623
+ endpoint: z.ZodOptional<z.ZodArray<z.ZodObject<{
624
+ reference: z.ZodString;
625
+ display: z.ZodOptional<z.ZodString>;
626
+ type: z.ZodOptional<z.ZodString>;
627
+ }, "strip", z.ZodTypeAny, {
628
+ reference: string;
629
+ type?: string | undefined;
630
+ display?: string | undefined;
631
+ }, {
632
+ reference: string;
633
+ type?: string | undefined;
634
+ display?: string | undefined;
635
+ }>, "many">>;
636
+ }, "strip", z.ZodTypeAny, {
637
+ resourceType: "PractitionerRole";
638
+ code?: {
639
+ coding?: {
640
+ code?: string | undefined;
641
+ system?: string | undefined;
642
+ display?: string | undefined;
643
+ }[] | undefined;
644
+ text?: string | undefined;
645
+ }[] | undefined;
646
+ period?: {
647
+ start?: string | undefined;
648
+ end?: string | undefined;
649
+ } | undefined;
650
+ active?: boolean | undefined;
651
+ identifier?: {
652
+ value?: string | undefined;
653
+ system?: string | undefined;
654
+ use?: string | undefined;
655
+ }[] | undefined;
656
+ location?: {
657
+ reference: string;
658
+ type?: string | undefined;
659
+ display?: string | undefined;
660
+ }[] | undefined;
661
+ telecom?: {
662
+ value?: string | undefined;
663
+ system?: "phone" | "fax" | "email" | "pager" | "url" | "sms" | "other" | undefined;
664
+ use?: "home" | "work" | "temp" | "old" | "mobile" | undefined;
665
+ }[] | undefined;
666
+ practitioner?: {
667
+ reference: string;
668
+ type?: string | undefined;
669
+ display?: string | undefined;
670
+ } | undefined;
671
+ organization?: {
672
+ reference: string;
673
+ type?: string | undefined;
674
+ display?: string | undefined;
675
+ } | undefined;
676
+ specialty?: {
677
+ coding?: {
678
+ code?: string | undefined;
679
+ system?: string | undefined;
680
+ display?: string | undefined;
681
+ }[] | undefined;
682
+ text?: string | undefined;
683
+ }[] | undefined;
684
+ healthcareService?: {
685
+ reference: string;
686
+ type?: string | undefined;
687
+ display?: string | undefined;
688
+ }[] | undefined;
689
+ availableTime?: {
690
+ daysOfWeek?: ("mon" | "tue" | "wed" | "thu" | "fri" | "sat" | "sun")[] | undefined;
691
+ allDay?: boolean | undefined;
692
+ availableStartTime?: string | undefined;
693
+ availableEndTime?: string | undefined;
694
+ }[] | undefined;
695
+ notAvailable?: {
696
+ description: string;
697
+ during?: {
698
+ start?: string | undefined;
699
+ end?: string | undefined;
700
+ } | undefined;
701
+ }[] | undefined;
702
+ availabilityExceptions?: string | undefined;
703
+ endpoint?: {
704
+ reference: string;
705
+ type?: string | undefined;
706
+ display?: string | undefined;
707
+ }[] | undefined;
708
+ }, {
709
+ resourceType: "PractitionerRole";
710
+ code?: {
711
+ coding?: {
712
+ code?: string | undefined;
713
+ system?: string | undefined;
714
+ display?: string | undefined;
715
+ }[] | undefined;
716
+ text?: string | undefined;
717
+ }[] | undefined;
718
+ period?: {
719
+ start?: string | undefined;
720
+ end?: string | undefined;
721
+ } | undefined;
722
+ active?: boolean | undefined;
723
+ identifier?: {
724
+ value?: string | undefined;
725
+ system?: string | undefined;
726
+ use?: string | undefined;
727
+ }[] | undefined;
728
+ location?: {
729
+ reference: string;
730
+ type?: string | undefined;
731
+ display?: string | undefined;
732
+ }[] | undefined;
733
+ telecom?: {
734
+ value?: string | undefined;
735
+ system?: "phone" | "fax" | "email" | "pager" | "url" | "sms" | "other" | undefined;
736
+ use?: "home" | "work" | "temp" | "old" | "mobile" | undefined;
737
+ }[] | undefined;
738
+ practitioner?: {
739
+ reference: string;
740
+ type?: string | undefined;
741
+ display?: string | undefined;
742
+ } | undefined;
743
+ organization?: {
744
+ reference: string;
745
+ type?: string | undefined;
746
+ display?: string | undefined;
747
+ } | undefined;
748
+ specialty?: {
749
+ coding?: {
750
+ code?: string | undefined;
751
+ system?: string | undefined;
752
+ display?: string | undefined;
753
+ }[] | undefined;
754
+ text?: string | undefined;
755
+ }[] | undefined;
756
+ healthcareService?: {
757
+ reference: string;
758
+ type?: string | undefined;
759
+ display?: string | undefined;
760
+ }[] | undefined;
761
+ availableTime?: {
762
+ daysOfWeek?: ("mon" | "tue" | "wed" | "thu" | "fri" | "sat" | "sun")[] | undefined;
763
+ allDay?: boolean | undefined;
764
+ availableStartTime?: string | undefined;
765
+ availableEndTime?: string | undefined;
766
+ }[] | undefined;
767
+ notAvailable?: {
768
+ description: string;
769
+ during?: {
770
+ start?: string | undefined;
771
+ end?: string | undefined;
772
+ } | undefined;
773
+ }[] | undefined;
774
+ availabilityExceptions?: string | undefined;
775
+ endpoint?: {
776
+ reference: string;
777
+ type?: string | undefined;
778
+ display?: string | undefined;
779
+ }[] | undefined;
780
+ }>;
781
+ export declare const PractitionerRoleSchema: z.ZodObject<{
782
+ resourceType: z.ZodLiteral<"PractitionerRole">;
783
+ identifier: z.ZodOptional<z.ZodArray<z.ZodObject<{
784
+ system: z.ZodOptional<z.ZodString>;
785
+ use: z.ZodOptional<z.ZodString>;
786
+ value: z.ZodOptional<z.ZodString>;
787
+ }, "strip", z.ZodTypeAny, {
788
+ value?: string | undefined;
789
+ system?: string | undefined;
790
+ use?: string | undefined;
791
+ }, {
792
+ value?: string | undefined;
793
+ system?: string | undefined;
794
+ use?: string | undefined;
795
+ }>, "many">>;
796
+ active: z.ZodOptional<z.ZodBoolean>;
797
+ period: z.ZodOptional<z.ZodObject<{
798
+ start: z.ZodOptional<z.ZodString>;
799
+ end: z.ZodOptional<z.ZodString>;
800
+ }, "strip", z.ZodTypeAny, {
801
+ start?: string | undefined;
802
+ end?: string | undefined;
803
+ }, {
804
+ start?: string | undefined;
805
+ end?: string | undefined;
806
+ }>>;
807
+ practitioner: 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
+ organization: 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
+ code: z.ZodOptional<z.ZodArray<z.ZodObject<{
834
+ coding: z.ZodOptional<z.ZodArray<z.ZodObject<{
835
+ system: z.ZodOptional<z.ZodString>;
836
+ code: z.ZodOptional<z.ZodString>;
837
+ display: z.ZodOptional<z.ZodString>;
838
+ }, "strip", z.ZodTypeAny, {
839
+ code?: string | undefined;
840
+ system?: string | undefined;
841
+ display?: string | undefined;
842
+ }, {
843
+ code?: string | undefined;
844
+ system?: string | undefined;
845
+ display?: string | undefined;
846
+ }>, "many">>;
847
+ text: z.ZodOptional<z.ZodString>;
848
+ }, "strip", z.ZodTypeAny, {
849
+ coding?: {
850
+ code?: string | undefined;
851
+ system?: string | undefined;
852
+ display?: string | undefined;
853
+ }[] | undefined;
854
+ text?: string | undefined;
855
+ }, {
856
+ coding?: {
857
+ code?: string | undefined;
858
+ system?: string | undefined;
859
+ display?: string | undefined;
860
+ }[] | undefined;
861
+ text?: string | undefined;
862
+ }>, "many">>;
863
+ specialty: z.ZodOptional<z.ZodArray<z.ZodObject<{
864
+ coding: z.ZodOptional<z.ZodArray<z.ZodObject<{
865
+ system: z.ZodOptional<z.ZodString>;
866
+ code: z.ZodOptional<z.ZodString>;
867
+ display: z.ZodOptional<z.ZodString>;
868
+ }, "strip", z.ZodTypeAny, {
869
+ code?: string | undefined;
870
+ system?: string | undefined;
871
+ display?: string | undefined;
872
+ }, {
873
+ code?: string | undefined;
874
+ system?: string | undefined;
875
+ display?: string | undefined;
876
+ }>, "many">>;
877
+ text: z.ZodOptional<z.ZodString>;
878
+ }, "strip", z.ZodTypeAny, {
879
+ coding?: {
880
+ code?: string | undefined;
881
+ system?: string | undefined;
882
+ display?: string | undefined;
883
+ }[] | undefined;
884
+ text?: string | undefined;
885
+ }, {
886
+ coding?: {
887
+ code?: string | undefined;
888
+ system?: string | undefined;
889
+ display?: string | undefined;
890
+ }[] | undefined;
891
+ text?: string | undefined;
892
+ }>, "many">>;
893
+ location: z.ZodOptional<z.ZodArray<z.ZodObject<{
894
+ reference: z.ZodString;
895
+ display: z.ZodOptional<z.ZodString>;
896
+ type: z.ZodOptional<z.ZodString>;
897
+ }, "strip", z.ZodTypeAny, {
898
+ reference: string;
899
+ type?: string | undefined;
900
+ display?: string | undefined;
901
+ }, {
902
+ reference: string;
903
+ type?: string | undefined;
904
+ display?: string | undefined;
905
+ }>, "many">>;
906
+ healthcareService: z.ZodOptional<z.ZodArray<z.ZodObject<{
907
+ reference: z.ZodString;
908
+ display: z.ZodOptional<z.ZodString>;
909
+ type: z.ZodOptional<z.ZodString>;
910
+ }, "strip", z.ZodTypeAny, {
911
+ reference: string;
912
+ type?: string | undefined;
913
+ display?: string | undefined;
914
+ }, {
915
+ reference: string;
916
+ type?: string | undefined;
917
+ display?: string | undefined;
918
+ }>, "many">>;
919
+ telecom: z.ZodOptional<z.ZodArray<z.ZodObject<{
920
+ system: z.ZodOptional<z.ZodEnum<["phone", "fax", "email", "pager", "url", "sms", "other"]>>;
921
+ value: z.ZodOptional<z.ZodString>;
922
+ use: z.ZodOptional<z.ZodEnum<["home", "work", "temp", "old", "mobile"]>>;
923
+ }, "strip", z.ZodTypeAny, {
924
+ value?: string | undefined;
925
+ system?: "phone" | "fax" | "email" | "pager" | "url" | "sms" | "other" | undefined;
926
+ use?: "home" | "work" | "temp" | "old" | "mobile" | undefined;
927
+ }, {
928
+ value?: string | undefined;
929
+ system?: "phone" | "fax" | "email" | "pager" | "url" | "sms" | "other" | undefined;
930
+ use?: "home" | "work" | "temp" | "old" | "mobile" | undefined;
931
+ }>, "many">>;
932
+ availableTime: z.ZodOptional<z.ZodArray<z.ZodObject<{
933
+ daysOfWeek: z.ZodOptional<z.ZodArray<z.ZodEnum<["mon", "tue", "wed", "thu", "fri", "sat", "sun"]>, "many">>;
934
+ allDay: z.ZodOptional<z.ZodBoolean>;
935
+ availableStartTime: z.ZodOptional<z.ZodString>;
936
+ availableEndTime: z.ZodOptional<z.ZodString>;
937
+ }, "strip", z.ZodTypeAny, {
938
+ daysOfWeek?: ("mon" | "tue" | "wed" | "thu" | "fri" | "sat" | "sun")[] | undefined;
939
+ allDay?: boolean | undefined;
940
+ availableStartTime?: string | undefined;
941
+ availableEndTime?: string | undefined;
942
+ }, {
943
+ daysOfWeek?: ("mon" | "tue" | "wed" | "thu" | "fri" | "sat" | "sun")[] | undefined;
944
+ allDay?: boolean | undefined;
945
+ availableStartTime?: string | undefined;
946
+ availableEndTime?: string | undefined;
947
+ }>, "many">>;
948
+ notAvailable: z.ZodOptional<z.ZodArray<z.ZodObject<{
949
+ description: z.ZodString;
950
+ during: z.ZodOptional<z.ZodObject<{
951
+ start: z.ZodOptional<z.ZodString>;
952
+ end: z.ZodOptional<z.ZodString>;
953
+ }, "strip", z.ZodTypeAny, {
954
+ start?: string | undefined;
955
+ end?: string | undefined;
956
+ }, {
957
+ start?: string | undefined;
958
+ end?: string | undefined;
959
+ }>>;
960
+ }, "strip", z.ZodTypeAny, {
961
+ description: string;
962
+ during?: {
963
+ start?: string | undefined;
964
+ end?: string | undefined;
965
+ } | undefined;
966
+ }, {
967
+ description: string;
968
+ during?: {
969
+ start?: string | undefined;
970
+ end?: string | undefined;
971
+ } | undefined;
972
+ }>, "many">>;
973
+ availabilityExceptions: z.ZodOptional<z.ZodString>;
974
+ endpoint: z.ZodOptional<z.ZodArray<z.ZodObject<{
975
+ reference: z.ZodString;
976
+ display: z.ZodOptional<z.ZodString>;
977
+ type: z.ZodOptional<z.ZodString>;
978
+ }, "strip", z.ZodTypeAny, {
979
+ reference: string;
980
+ type?: string | undefined;
981
+ display?: string | undefined;
982
+ }, {
983
+ reference: string;
984
+ type?: string | undefined;
985
+ display?: string | undefined;
986
+ }>, "many">>;
987
+ } & {
988
+ id: z.ZodString;
989
+ meta: z.ZodOptional<z.ZodObject<{
990
+ lastUpdated: z.ZodOptional<z.ZodString>;
991
+ profile: z.ZodOptional<z.ZodArray<z.ZodString, "many">>;
992
+ versionId: z.ZodOptional<z.ZodString>;
993
+ }, "strip", z.ZodTypeAny, {
994
+ lastUpdated?: string | undefined;
995
+ profile?: string[] | undefined;
996
+ versionId?: string | undefined;
997
+ }, {
998
+ lastUpdated?: string | undefined;
999
+ profile?: string[] | undefined;
1000
+ versionId?: string | undefined;
1001
+ }>>;
1002
+ }, "strip", z.ZodTypeAny, {
1003
+ resourceType: "PractitionerRole";
1004
+ id: string;
1005
+ code?: {
1006
+ coding?: {
1007
+ code?: string | undefined;
1008
+ system?: string | undefined;
1009
+ display?: string | undefined;
1010
+ }[] | undefined;
1011
+ text?: string | undefined;
1012
+ }[] | undefined;
1013
+ period?: {
1014
+ start?: string | undefined;
1015
+ end?: string | undefined;
1016
+ } | undefined;
1017
+ active?: boolean | undefined;
1018
+ identifier?: {
1019
+ value?: string | undefined;
1020
+ system?: string | undefined;
1021
+ use?: string | undefined;
1022
+ }[] | undefined;
1023
+ meta?: {
1024
+ lastUpdated?: string | undefined;
1025
+ profile?: string[] | undefined;
1026
+ versionId?: string | undefined;
1027
+ } | undefined;
1028
+ location?: {
1029
+ reference: string;
1030
+ type?: string | undefined;
1031
+ display?: string | undefined;
1032
+ }[] | undefined;
1033
+ telecom?: {
1034
+ value?: string | undefined;
1035
+ system?: "phone" | "fax" | "email" | "pager" | "url" | "sms" | "other" | undefined;
1036
+ use?: "home" | "work" | "temp" | "old" | "mobile" | undefined;
1037
+ }[] | undefined;
1038
+ practitioner?: {
1039
+ reference: string;
1040
+ type?: string | undefined;
1041
+ display?: string | undefined;
1042
+ } | undefined;
1043
+ organization?: {
1044
+ reference: string;
1045
+ type?: string | undefined;
1046
+ display?: string | undefined;
1047
+ } | undefined;
1048
+ specialty?: {
1049
+ coding?: {
1050
+ code?: string | undefined;
1051
+ system?: string | undefined;
1052
+ display?: string | undefined;
1053
+ }[] | undefined;
1054
+ text?: string | undefined;
1055
+ }[] | undefined;
1056
+ healthcareService?: {
1057
+ reference: string;
1058
+ type?: string | undefined;
1059
+ display?: string | undefined;
1060
+ }[] | undefined;
1061
+ availableTime?: {
1062
+ daysOfWeek?: ("mon" | "tue" | "wed" | "thu" | "fri" | "sat" | "sun")[] | undefined;
1063
+ allDay?: boolean | undefined;
1064
+ availableStartTime?: string | undefined;
1065
+ availableEndTime?: string | undefined;
1066
+ }[] | undefined;
1067
+ notAvailable?: {
1068
+ description: string;
1069
+ during?: {
1070
+ start?: string | undefined;
1071
+ end?: string | undefined;
1072
+ } | undefined;
1073
+ }[] | undefined;
1074
+ availabilityExceptions?: string | undefined;
1075
+ endpoint?: {
1076
+ reference: string;
1077
+ type?: string | undefined;
1078
+ display?: string | undefined;
1079
+ }[] | undefined;
1080
+ }, {
1081
+ resourceType: "PractitionerRole";
1082
+ id: string;
1083
+ code?: {
1084
+ coding?: {
1085
+ code?: string | undefined;
1086
+ system?: string | undefined;
1087
+ display?: string | undefined;
1088
+ }[] | undefined;
1089
+ text?: string | undefined;
1090
+ }[] | undefined;
1091
+ period?: {
1092
+ start?: string | undefined;
1093
+ end?: string | undefined;
1094
+ } | undefined;
1095
+ active?: boolean | undefined;
1096
+ identifier?: {
1097
+ value?: string | undefined;
1098
+ system?: string | undefined;
1099
+ use?: string | undefined;
1100
+ }[] | undefined;
1101
+ meta?: {
1102
+ lastUpdated?: string | undefined;
1103
+ profile?: string[] | undefined;
1104
+ versionId?: string | undefined;
1105
+ } | undefined;
1106
+ location?: {
1107
+ reference: string;
1108
+ type?: string | undefined;
1109
+ display?: string | undefined;
1110
+ }[] | undefined;
1111
+ telecom?: {
1112
+ value?: string | undefined;
1113
+ system?: "phone" | "fax" | "email" | "pager" | "url" | "sms" | "other" | undefined;
1114
+ use?: "home" | "work" | "temp" | "old" | "mobile" | undefined;
1115
+ }[] | undefined;
1116
+ practitioner?: {
1117
+ reference: string;
1118
+ type?: string | undefined;
1119
+ display?: string | undefined;
1120
+ } | undefined;
1121
+ organization?: {
1122
+ reference: string;
1123
+ type?: string | undefined;
1124
+ display?: string | undefined;
1125
+ } | undefined;
1126
+ specialty?: {
1127
+ coding?: {
1128
+ code?: string | undefined;
1129
+ system?: string | undefined;
1130
+ display?: string | undefined;
1131
+ }[] | undefined;
1132
+ text?: string | undefined;
1133
+ }[] | undefined;
1134
+ healthcareService?: {
1135
+ reference: string;
1136
+ type?: string | undefined;
1137
+ display?: string | undefined;
1138
+ }[] | undefined;
1139
+ availableTime?: {
1140
+ daysOfWeek?: ("mon" | "tue" | "wed" | "thu" | "fri" | "sat" | "sun")[] | undefined;
1141
+ allDay?: boolean | undefined;
1142
+ availableStartTime?: string | undefined;
1143
+ availableEndTime?: string | undefined;
1144
+ }[] | undefined;
1145
+ notAvailable?: {
1146
+ description: string;
1147
+ during?: {
1148
+ start?: string | undefined;
1149
+ end?: string | undefined;
1150
+ } | undefined;
1151
+ }[] | undefined;
1152
+ availabilityExceptions?: string | undefined;
1153
+ endpoint?: {
1154
+ reference: string;
1155
+ type?: string | undefined;
1156
+ display?: string | undefined;
1157
+ }[] | undefined;
1158
+ }>;
1159
+ export declare const PractitionerRoleUpdateParamsSchema: z.ZodObject<{
1160
+ id: z.ZodString;
1161
+ }, "strip", z.ZodTypeAny, {
1162
+ id: string;
1163
+ }, {
1164
+ id: string;
1165
+ }>;
1166
+ export declare const PractitionerRoleBundleSchema: z.ZodObject<{
1167
+ resourceType: z.ZodLiteral<"Bundle">;
1168
+ type: z.ZodOptional<z.ZodString>;
1169
+ total: z.ZodOptional<z.ZodNumber>;
1170
+ link: z.ZodOptional<z.ZodArray<z.ZodObject<{
1171
+ relation: z.ZodOptional<z.ZodString>;
1172
+ url: z.ZodOptional<z.ZodString>;
1173
+ }, "strip", z.ZodTypeAny, {
1174
+ url?: string | undefined;
1175
+ relation?: string | undefined;
1176
+ }, {
1177
+ url?: string | undefined;
1178
+ relation?: string | undefined;
1179
+ }>, "many">>;
1180
+ entry: z.ZodOptional<z.ZodArray<z.ZodObject<{
1181
+ fullUrl: z.ZodOptional<z.ZodString>;
1182
+ resource: z.ZodObject<{
1183
+ resourceType: z.ZodLiteral<"PractitionerRole">;
1184
+ identifier: z.ZodOptional<z.ZodArray<z.ZodObject<{
1185
+ system: z.ZodOptional<z.ZodString>;
1186
+ use: z.ZodOptional<z.ZodString>;
1187
+ value: z.ZodOptional<z.ZodString>;
1188
+ }, "strip", z.ZodTypeAny, {
1189
+ value?: string | undefined;
1190
+ system?: string | undefined;
1191
+ use?: string | undefined;
1192
+ }, {
1193
+ value?: string | undefined;
1194
+ system?: string | undefined;
1195
+ use?: string | undefined;
1196
+ }>, "many">>;
1197
+ active: z.ZodOptional<z.ZodBoolean>;
1198
+ period: z.ZodOptional<z.ZodObject<{
1199
+ start: z.ZodOptional<z.ZodString>;
1200
+ end: z.ZodOptional<z.ZodString>;
1201
+ }, "strip", z.ZodTypeAny, {
1202
+ start?: string | undefined;
1203
+ end?: string | undefined;
1204
+ }, {
1205
+ start?: string | undefined;
1206
+ end?: string | undefined;
1207
+ }>>;
1208
+ practitioner: z.ZodOptional<z.ZodObject<{
1209
+ reference: z.ZodString;
1210
+ display: z.ZodOptional<z.ZodString>;
1211
+ type: z.ZodOptional<z.ZodString>;
1212
+ }, "strip", z.ZodTypeAny, {
1213
+ reference: string;
1214
+ type?: string | undefined;
1215
+ display?: string | undefined;
1216
+ }, {
1217
+ reference: string;
1218
+ type?: string | undefined;
1219
+ display?: string | undefined;
1220
+ }>>;
1221
+ organization: z.ZodOptional<z.ZodObject<{
1222
+ reference: z.ZodString;
1223
+ display: z.ZodOptional<z.ZodString>;
1224
+ type: z.ZodOptional<z.ZodString>;
1225
+ }, "strip", z.ZodTypeAny, {
1226
+ reference: string;
1227
+ type?: string | undefined;
1228
+ display?: string | undefined;
1229
+ }, {
1230
+ reference: string;
1231
+ type?: string | undefined;
1232
+ display?: string | undefined;
1233
+ }>>;
1234
+ code: z.ZodOptional<z.ZodArray<z.ZodObject<{
1235
+ coding: z.ZodOptional<z.ZodArray<z.ZodObject<{
1236
+ system: z.ZodOptional<z.ZodString>;
1237
+ code: z.ZodOptional<z.ZodString>;
1238
+ display: z.ZodOptional<z.ZodString>;
1239
+ }, "strip", z.ZodTypeAny, {
1240
+ code?: string | undefined;
1241
+ system?: string | undefined;
1242
+ display?: string | undefined;
1243
+ }, {
1244
+ code?: string | undefined;
1245
+ system?: string | undefined;
1246
+ display?: string | undefined;
1247
+ }>, "many">>;
1248
+ text: z.ZodOptional<z.ZodString>;
1249
+ }, "strip", z.ZodTypeAny, {
1250
+ coding?: {
1251
+ code?: string | undefined;
1252
+ system?: string | undefined;
1253
+ display?: string | undefined;
1254
+ }[] | undefined;
1255
+ text?: string | undefined;
1256
+ }, {
1257
+ coding?: {
1258
+ code?: string | undefined;
1259
+ system?: string | undefined;
1260
+ display?: string | undefined;
1261
+ }[] | undefined;
1262
+ text?: string | undefined;
1263
+ }>, "many">>;
1264
+ specialty: z.ZodOptional<z.ZodArray<z.ZodObject<{
1265
+ coding: z.ZodOptional<z.ZodArray<z.ZodObject<{
1266
+ system: z.ZodOptional<z.ZodString>;
1267
+ code: z.ZodOptional<z.ZodString>;
1268
+ display: z.ZodOptional<z.ZodString>;
1269
+ }, "strip", z.ZodTypeAny, {
1270
+ code?: string | undefined;
1271
+ system?: string | undefined;
1272
+ display?: string | undefined;
1273
+ }, {
1274
+ code?: string | undefined;
1275
+ system?: string | undefined;
1276
+ display?: string | undefined;
1277
+ }>, "many">>;
1278
+ text: z.ZodOptional<z.ZodString>;
1279
+ }, "strip", z.ZodTypeAny, {
1280
+ coding?: {
1281
+ code?: string | undefined;
1282
+ system?: string | undefined;
1283
+ display?: string | undefined;
1284
+ }[] | undefined;
1285
+ text?: string | undefined;
1286
+ }, {
1287
+ coding?: {
1288
+ code?: string | undefined;
1289
+ system?: string | undefined;
1290
+ display?: string | undefined;
1291
+ }[] | undefined;
1292
+ text?: string | undefined;
1293
+ }>, "many">>;
1294
+ location: z.ZodOptional<z.ZodArray<z.ZodObject<{
1295
+ reference: z.ZodString;
1296
+ display: z.ZodOptional<z.ZodString>;
1297
+ type: z.ZodOptional<z.ZodString>;
1298
+ }, "strip", z.ZodTypeAny, {
1299
+ reference: string;
1300
+ type?: string | undefined;
1301
+ display?: string | undefined;
1302
+ }, {
1303
+ reference: string;
1304
+ type?: string | undefined;
1305
+ display?: string | undefined;
1306
+ }>, "many">>;
1307
+ healthcareService: z.ZodOptional<z.ZodArray<z.ZodObject<{
1308
+ reference: z.ZodString;
1309
+ display: z.ZodOptional<z.ZodString>;
1310
+ type: z.ZodOptional<z.ZodString>;
1311
+ }, "strip", z.ZodTypeAny, {
1312
+ reference: string;
1313
+ type?: string | undefined;
1314
+ display?: string | undefined;
1315
+ }, {
1316
+ reference: string;
1317
+ type?: string | undefined;
1318
+ display?: string | undefined;
1319
+ }>, "many">>;
1320
+ telecom: z.ZodOptional<z.ZodArray<z.ZodObject<{
1321
+ system: z.ZodOptional<z.ZodEnum<["phone", "fax", "email", "pager", "url", "sms", "other"]>>;
1322
+ value: z.ZodOptional<z.ZodString>;
1323
+ use: z.ZodOptional<z.ZodEnum<["home", "work", "temp", "old", "mobile"]>>;
1324
+ }, "strip", z.ZodTypeAny, {
1325
+ value?: string | undefined;
1326
+ system?: "phone" | "fax" | "email" | "pager" | "url" | "sms" | "other" | undefined;
1327
+ use?: "home" | "work" | "temp" | "old" | "mobile" | undefined;
1328
+ }, {
1329
+ value?: string | undefined;
1330
+ system?: "phone" | "fax" | "email" | "pager" | "url" | "sms" | "other" | undefined;
1331
+ use?: "home" | "work" | "temp" | "old" | "mobile" | undefined;
1332
+ }>, "many">>;
1333
+ availableTime: z.ZodOptional<z.ZodArray<z.ZodObject<{
1334
+ daysOfWeek: z.ZodOptional<z.ZodArray<z.ZodEnum<["mon", "tue", "wed", "thu", "fri", "sat", "sun"]>, "many">>;
1335
+ allDay: z.ZodOptional<z.ZodBoolean>;
1336
+ availableStartTime: z.ZodOptional<z.ZodString>;
1337
+ availableEndTime: z.ZodOptional<z.ZodString>;
1338
+ }, "strip", z.ZodTypeAny, {
1339
+ daysOfWeek?: ("mon" | "tue" | "wed" | "thu" | "fri" | "sat" | "sun")[] | undefined;
1340
+ allDay?: boolean | undefined;
1341
+ availableStartTime?: string | undefined;
1342
+ availableEndTime?: string | undefined;
1343
+ }, {
1344
+ daysOfWeek?: ("mon" | "tue" | "wed" | "thu" | "fri" | "sat" | "sun")[] | undefined;
1345
+ allDay?: boolean | undefined;
1346
+ availableStartTime?: string | undefined;
1347
+ availableEndTime?: string | undefined;
1348
+ }>, "many">>;
1349
+ notAvailable: z.ZodOptional<z.ZodArray<z.ZodObject<{
1350
+ description: z.ZodString;
1351
+ during: z.ZodOptional<z.ZodObject<{
1352
+ start: z.ZodOptional<z.ZodString>;
1353
+ end: z.ZodOptional<z.ZodString>;
1354
+ }, "strip", z.ZodTypeAny, {
1355
+ start?: string | undefined;
1356
+ end?: string | undefined;
1357
+ }, {
1358
+ start?: string | undefined;
1359
+ end?: string | undefined;
1360
+ }>>;
1361
+ }, "strip", z.ZodTypeAny, {
1362
+ description: string;
1363
+ during?: {
1364
+ start?: string | undefined;
1365
+ end?: string | undefined;
1366
+ } | undefined;
1367
+ }, {
1368
+ description: string;
1369
+ during?: {
1370
+ start?: string | undefined;
1371
+ end?: string | undefined;
1372
+ } | undefined;
1373
+ }>, "many">>;
1374
+ availabilityExceptions: z.ZodOptional<z.ZodString>;
1375
+ endpoint: z.ZodOptional<z.ZodArray<z.ZodObject<{
1376
+ reference: z.ZodString;
1377
+ display: z.ZodOptional<z.ZodString>;
1378
+ type: z.ZodOptional<z.ZodString>;
1379
+ }, "strip", z.ZodTypeAny, {
1380
+ reference: string;
1381
+ type?: string | undefined;
1382
+ display?: string | undefined;
1383
+ }, {
1384
+ reference: string;
1385
+ type?: string | undefined;
1386
+ display?: string | undefined;
1387
+ }>, "many">>;
1388
+ } & {
1389
+ id: z.ZodString;
1390
+ meta: z.ZodOptional<z.ZodObject<{
1391
+ lastUpdated: z.ZodOptional<z.ZodString>;
1392
+ profile: z.ZodOptional<z.ZodArray<z.ZodString, "many">>;
1393
+ versionId: z.ZodOptional<z.ZodString>;
1394
+ }, "strip", z.ZodTypeAny, {
1395
+ lastUpdated?: string | undefined;
1396
+ profile?: string[] | undefined;
1397
+ versionId?: string | undefined;
1398
+ }, {
1399
+ lastUpdated?: string | undefined;
1400
+ profile?: string[] | undefined;
1401
+ versionId?: string | undefined;
1402
+ }>>;
1403
+ }, "strip", z.ZodTypeAny, {
1404
+ resourceType: "PractitionerRole";
1405
+ id: string;
1406
+ code?: {
1407
+ coding?: {
1408
+ code?: string | undefined;
1409
+ system?: string | undefined;
1410
+ display?: string | undefined;
1411
+ }[] | undefined;
1412
+ text?: string | undefined;
1413
+ }[] | undefined;
1414
+ period?: {
1415
+ start?: string | undefined;
1416
+ end?: string | undefined;
1417
+ } | undefined;
1418
+ active?: boolean | undefined;
1419
+ identifier?: {
1420
+ value?: string | undefined;
1421
+ system?: string | undefined;
1422
+ use?: string | undefined;
1423
+ }[] | undefined;
1424
+ meta?: {
1425
+ lastUpdated?: string | undefined;
1426
+ profile?: string[] | undefined;
1427
+ versionId?: string | undefined;
1428
+ } | undefined;
1429
+ location?: {
1430
+ reference: string;
1431
+ type?: string | undefined;
1432
+ display?: string | undefined;
1433
+ }[] | undefined;
1434
+ telecom?: {
1435
+ value?: string | undefined;
1436
+ system?: "phone" | "fax" | "email" | "pager" | "url" | "sms" | "other" | undefined;
1437
+ use?: "home" | "work" | "temp" | "old" | "mobile" | undefined;
1438
+ }[] | undefined;
1439
+ practitioner?: {
1440
+ reference: string;
1441
+ type?: string | undefined;
1442
+ display?: string | undefined;
1443
+ } | undefined;
1444
+ organization?: {
1445
+ reference: string;
1446
+ type?: string | undefined;
1447
+ display?: string | undefined;
1448
+ } | undefined;
1449
+ specialty?: {
1450
+ coding?: {
1451
+ code?: string | undefined;
1452
+ system?: string | undefined;
1453
+ display?: string | undefined;
1454
+ }[] | undefined;
1455
+ text?: string | undefined;
1456
+ }[] | undefined;
1457
+ healthcareService?: {
1458
+ reference: string;
1459
+ type?: string | undefined;
1460
+ display?: string | undefined;
1461
+ }[] | undefined;
1462
+ availableTime?: {
1463
+ daysOfWeek?: ("mon" | "tue" | "wed" | "thu" | "fri" | "sat" | "sun")[] | undefined;
1464
+ allDay?: boolean | undefined;
1465
+ availableStartTime?: string | undefined;
1466
+ availableEndTime?: string | undefined;
1467
+ }[] | undefined;
1468
+ notAvailable?: {
1469
+ description: string;
1470
+ during?: {
1471
+ start?: string | undefined;
1472
+ end?: string | undefined;
1473
+ } | undefined;
1474
+ }[] | undefined;
1475
+ availabilityExceptions?: string | undefined;
1476
+ endpoint?: {
1477
+ reference: string;
1478
+ type?: string | undefined;
1479
+ display?: string | undefined;
1480
+ }[] | undefined;
1481
+ }, {
1482
+ resourceType: "PractitionerRole";
1483
+ id: string;
1484
+ code?: {
1485
+ coding?: {
1486
+ code?: string | undefined;
1487
+ system?: string | undefined;
1488
+ display?: string | undefined;
1489
+ }[] | undefined;
1490
+ text?: string | undefined;
1491
+ }[] | undefined;
1492
+ period?: {
1493
+ start?: string | undefined;
1494
+ end?: string | undefined;
1495
+ } | undefined;
1496
+ active?: boolean | undefined;
1497
+ identifier?: {
1498
+ value?: string | undefined;
1499
+ system?: string | undefined;
1500
+ use?: string | undefined;
1501
+ }[] | undefined;
1502
+ meta?: {
1503
+ lastUpdated?: string | undefined;
1504
+ profile?: string[] | undefined;
1505
+ versionId?: string | undefined;
1506
+ } | undefined;
1507
+ location?: {
1508
+ reference: string;
1509
+ type?: string | undefined;
1510
+ display?: string | undefined;
1511
+ }[] | undefined;
1512
+ telecom?: {
1513
+ value?: string | undefined;
1514
+ system?: "phone" | "fax" | "email" | "pager" | "url" | "sms" | "other" | undefined;
1515
+ use?: "home" | "work" | "temp" | "old" | "mobile" | undefined;
1516
+ }[] | undefined;
1517
+ practitioner?: {
1518
+ reference: string;
1519
+ type?: string | undefined;
1520
+ display?: string | undefined;
1521
+ } | undefined;
1522
+ organization?: {
1523
+ reference: string;
1524
+ type?: string | undefined;
1525
+ display?: string | undefined;
1526
+ } | undefined;
1527
+ specialty?: {
1528
+ coding?: {
1529
+ code?: string | undefined;
1530
+ system?: string | undefined;
1531
+ display?: string | undefined;
1532
+ }[] | undefined;
1533
+ text?: string | undefined;
1534
+ }[] | undefined;
1535
+ healthcareService?: {
1536
+ reference: string;
1537
+ type?: string | undefined;
1538
+ display?: string | undefined;
1539
+ }[] | undefined;
1540
+ availableTime?: {
1541
+ daysOfWeek?: ("mon" | "tue" | "wed" | "thu" | "fri" | "sat" | "sun")[] | undefined;
1542
+ allDay?: boolean | undefined;
1543
+ availableStartTime?: string | undefined;
1544
+ availableEndTime?: string | undefined;
1545
+ }[] | undefined;
1546
+ notAvailable?: {
1547
+ description: string;
1548
+ during?: {
1549
+ start?: string | undefined;
1550
+ end?: string | undefined;
1551
+ } | undefined;
1552
+ }[] | undefined;
1553
+ availabilityExceptions?: string | undefined;
1554
+ endpoint?: {
1555
+ reference: string;
1556
+ type?: string | undefined;
1557
+ display?: string | undefined;
1558
+ }[] | undefined;
1559
+ }>;
1560
+ search: z.ZodOptional<z.ZodObject<{
1561
+ mode: z.ZodOptional<z.ZodString>;
1562
+ }, "strip", z.ZodTypeAny, {
1563
+ mode?: string | undefined;
1564
+ }, {
1565
+ mode?: string | undefined;
1566
+ }>>;
1567
+ }, "strip", z.ZodTypeAny, {
1568
+ resource: {
1569
+ resourceType: "PractitionerRole";
1570
+ id: string;
1571
+ code?: {
1572
+ coding?: {
1573
+ code?: string | undefined;
1574
+ system?: string | undefined;
1575
+ display?: string | undefined;
1576
+ }[] | undefined;
1577
+ text?: string | undefined;
1578
+ }[] | undefined;
1579
+ period?: {
1580
+ start?: string | undefined;
1581
+ end?: string | undefined;
1582
+ } | undefined;
1583
+ active?: boolean | undefined;
1584
+ identifier?: {
1585
+ value?: string | undefined;
1586
+ system?: string | undefined;
1587
+ use?: string | undefined;
1588
+ }[] | undefined;
1589
+ meta?: {
1590
+ lastUpdated?: string | undefined;
1591
+ profile?: string[] | undefined;
1592
+ versionId?: string | undefined;
1593
+ } | undefined;
1594
+ location?: {
1595
+ reference: string;
1596
+ type?: string | undefined;
1597
+ display?: string | undefined;
1598
+ }[] | undefined;
1599
+ telecom?: {
1600
+ value?: string | undefined;
1601
+ system?: "phone" | "fax" | "email" | "pager" | "url" | "sms" | "other" | undefined;
1602
+ use?: "home" | "work" | "temp" | "old" | "mobile" | undefined;
1603
+ }[] | undefined;
1604
+ practitioner?: {
1605
+ reference: string;
1606
+ type?: string | undefined;
1607
+ display?: string | undefined;
1608
+ } | undefined;
1609
+ organization?: {
1610
+ reference: string;
1611
+ type?: string | undefined;
1612
+ display?: string | undefined;
1613
+ } | undefined;
1614
+ specialty?: {
1615
+ coding?: {
1616
+ code?: string | undefined;
1617
+ system?: string | undefined;
1618
+ display?: string | undefined;
1619
+ }[] | undefined;
1620
+ text?: string | undefined;
1621
+ }[] | undefined;
1622
+ healthcareService?: {
1623
+ reference: string;
1624
+ type?: string | undefined;
1625
+ display?: string | undefined;
1626
+ }[] | undefined;
1627
+ availableTime?: {
1628
+ daysOfWeek?: ("mon" | "tue" | "wed" | "thu" | "fri" | "sat" | "sun")[] | undefined;
1629
+ allDay?: boolean | undefined;
1630
+ availableStartTime?: string | undefined;
1631
+ availableEndTime?: string | undefined;
1632
+ }[] | undefined;
1633
+ notAvailable?: {
1634
+ description: string;
1635
+ during?: {
1636
+ start?: string | undefined;
1637
+ end?: string | undefined;
1638
+ } | undefined;
1639
+ }[] | undefined;
1640
+ availabilityExceptions?: string | undefined;
1641
+ endpoint?: {
1642
+ reference: string;
1643
+ type?: string | undefined;
1644
+ display?: string | undefined;
1645
+ }[] | undefined;
1646
+ };
1647
+ fullUrl?: string | undefined;
1648
+ search?: {
1649
+ mode?: string | undefined;
1650
+ } | undefined;
1651
+ }, {
1652
+ resource: {
1653
+ resourceType: "PractitionerRole";
1654
+ id: string;
1655
+ code?: {
1656
+ coding?: {
1657
+ code?: string | undefined;
1658
+ system?: string | undefined;
1659
+ display?: string | undefined;
1660
+ }[] | undefined;
1661
+ text?: string | undefined;
1662
+ }[] | undefined;
1663
+ period?: {
1664
+ start?: string | undefined;
1665
+ end?: string | undefined;
1666
+ } | undefined;
1667
+ active?: boolean | undefined;
1668
+ identifier?: {
1669
+ value?: string | undefined;
1670
+ system?: string | undefined;
1671
+ use?: string | undefined;
1672
+ }[] | undefined;
1673
+ meta?: {
1674
+ lastUpdated?: string | undefined;
1675
+ profile?: string[] | undefined;
1676
+ versionId?: string | undefined;
1677
+ } | undefined;
1678
+ location?: {
1679
+ reference: string;
1680
+ type?: string | undefined;
1681
+ display?: string | undefined;
1682
+ }[] | undefined;
1683
+ telecom?: {
1684
+ value?: string | undefined;
1685
+ system?: "phone" | "fax" | "email" | "pager" | "url" | "sms" | "other" | undefined;
1686
+ use?: "home" | "work" | "temp" | "old" | "mobile" | undefined;
1687
+ }[] | undefined;
1688
+ practitioner?: {
1689
+ reference: string;
1690
+ type?: string | undefined;
1691
+ display?: string | undefined;
1692
+ } | undefined;
1693
+ organization?: {
1694
+ reference: string;
1695
+ type?: string | undefined;
1696
+ display?: string | undefined;
1697
+ } | undefined;
1698
+ specialty?: {
1699
+ coding?: {
1700
+ code?: string | undefined;
1701
+ system?: string | undefined;
1702
+ display?: string | undefined;
1703
+ }[] | undefined;
1704
+ text?: string | undefined;
1705
+ }[] | undefined;
1706
+ healthcareService?: {
1707
+ reference: string;
1708
+ type?: string | undefined;
1709
+ display?: string | undefined;
1710
+ }[] | undefined;
1711
+ availableTime?: {
1712
+ daysOfWeek?: ("mon" | "tue" | "wed" | "thu" | "fri" | "sat" | "sun")[] | undefined;
1713
+ allDay?: boolean | undefined;
1714
+ availableStartTime?: string | undefined;
1715
+ availableEndTime?: string | undefined;
1716
+ }[] | undefined;
1717
+ notAvailable?: {
1718
+ description: string;
1719
+ during?: {
1720
+ start?: string | undefined;
1721
+ end?: string | undefined;
1722
+ } | undefined;
1723
+ }[] | undefined;
1724
+ availabilityExceptions?: string | undefined;
1725
+ endpoint?: {
1726
+ reference: string;
1727
+ type?: string | undefined;
1728
+ display?: string | undefined;
1729
+ }[] | undefined;
1730
+ };
1731
+ fullUrl?: string | undefined;
1732
+ search?: {
1733
+ mode?: string | undefined;
1734
+ } | undefined;
1735
+ }>, "many">>;
1736
+ }, "strip", z.ZodTypeAny, {
1737
+ resourceType: "Bundle";
1738
+ type?: string | undefined;
1739
+ total?: number | undefined;
1740
+ link?: {
1741
+ url?: string | undefined;
1742
+ relation?: string | undefined;
1743
+ }[] | undefined;
1744
+ entry?: {
1745
+ resource: {
1746
+ resourceType: "PractitionerRole";
1747
+ id: string;
1748
+ code?: {
1749
+ coding?: {
1750
+ code?: string | undefined;
1751
+ system?: string | undefined;
1752
+ display?: string | undefined;
1753
+ }[] | undefined;
1754
+ text?: string | undefined;
1755
+ }[] | undefined;
1756
+ period?: {
1757
+ start?: string | undefined;
1758
+ end?: string | undefined;
1759
+ } | undefined;
1760
+ active?: boolean | undefined;
1761
+ identifier?: {
1762
+ value?: string | undefined;
1763
+ system?: string | undefined;
1764
+ use?: string | undefined;
1765
+ }[] | undefined;
1766
+ meta?: {
1767
+ lastUpdated?: string | undefined;
1768
+ profile?: string[] | undefined;
1769
+ versionId?: string | undefined;
1770
+ } | undefined;
1771
+ location?: {
1772
+ reference: string;
1773
+ type?: string | undefined;
1774
+ display?: string | undefined;
1775
+ }[] | undefined;
1776
+ telecom?: {
1777
+ value?: string | undefined;
1778
+ system?: "phone" | "fax" | "email" | "pager" | "url" | "sms" | "other" | undefined;
1779
+ use?: "home" | "work" | "temp" | "old" | "mobile" | undefined;
1780
+ }[] | undefined;
1781
+ practitioner?: {
1782
+ reference: string;
1783
+ type?: string | undefined;
1784
+ display?: string | undefined;
1785
+ } | undefined;
1786
+ organization?: {
1787
+ reference: string;
1788
+ type?: string | undefined;
1789
+ display?: string | undefined;
1790
+ } | undefined;
1791
+ specialty?: {
1792
+ coding?: {
1793
+ code?: string | undefined;
1794
+ system?: string | undefined;
1795
+ display?: string | undefined;
1796
+ }[] | undefined;
1797
+ text?: string | undefined;
1798
+ }[] | undefined;
1799
+ healthcareService?: {
1800
+ reference: string;
1801
+ type?: string | undefined;
1802
+ display?: string | undefined;
1803
+ }[] | undefined;
1804
+ availableTime?: {
1805
+ daysOfWeek?: ("mon" | "tue" | "wed" | "thu" | "fri" | "sat" | "sun")[] | undefined;
1806
+ allDay?: boolean | undefined;
1807
+ availableStartTime?: string | undefined;
1808
+ availableEndTime?: string | undefined;
1809
+ }[] | undefined;
1810
+ notAvailable?: {
1811
+ description: string;
1812
+ during?: {
1813
+ start?: string | undefined;
1814
+ end?: string | undefined;
1815
+ } | undefined;
1816
+ }[] | undefined;
1817
+ availabilityExceptions?: string | undefined;
1818
+ endpoint?: {
1819
+ reference: string;
1820
+ type?: string | undefined;
1821
+ display?: string | undefined;
1822
+ }[] | undefined;
1823
+ };
1824
+ fullUrl?: string | undefined;
1825
+ search?: {
1826
+ mode?: string | undefined;
1827
+ } | undefined;
1828
+ }[] | undefined;
1829
+ }, {
1830
+ resourceType: "Bundle";
1831
+ type?: string | undefined;
1832
+ total?: number | undefined;
1833
+ link?: {
1834
+ url?: string | undefined;
1835
+ relation?: string | undefined;
1836
+ }[] | undefined;
1837
+ entry?: {
1838
+ resource: {
1839
+ resourceType: "PractitionerRole";
1840
+ id: string;
1841
+ code?: {
1842
+ coding?: {
1843
+ code?: string | undefined;
1844
+ system?: string | undefined;
1845
+ display?: string | undefined;
1846
+ }[] | undefined;
1847
+ text?: string | undefined;
1848
+ }[] | undefined;
1849
+ period?: {
1850
+ start?: string | undefined;
1851
+ end?: string | undefined;
1852
+ } | undefined;
1853
+ active?: boolean | undefined;
1854
+ identifier?: {
1855
+ value?: string | undefined;
1856
+ system?: string | undefined;
1857
+ use?: string | undefined;
1858
+ }[] | undefined;
1859
+ meta?: {
1860
+ lastUpdated?: string | undefined;
1861
+ profile?: string[] | undefined;
1862
+ versionId?: string | undefined;
1863
+ } | undefined;
1864
+ location?: {
1865
+ reference: string;
1866
+ type?: string | undefined;
1867
+ display?: string | undefined;
1868
+ }[] | undefined;
1869
+ telecom?: {
1870
+ value?: string | undefined;
1871
+ system?: "phone" | "fax" | "email" | "pager" | "url" | "sms" | "other" | undefined;
1872
+ use?: "home" | "work" | "temp" | "old" | "mobile" | undefined;
1873
+ }[] | undefined;
1874
+ practitioner?: {
1875
+ reference: string;
1876
+ type?: string | undefined;
1877
+ display?: string | undefined;
1878
+ } | undefined;
1879
+ organization?: {
1880
+ reference: string;
1881
+ type?: string | undefined;
1882
+ display?: string | undefined;
1883
+ } | undefined;
1884
+ specialty?: {
1885
+ coding?: {
1886
+ code?: string | undefined;
1887
+ system?: string | undefined;
1888
+ display?: string | undefined;
1889
+ }[] | undefined;
1890
+ text?: string | undefined;
1891
+ }[] | undefined;
1892
+ healthcareService?: {
1893
+ reference: string;
1894
+ type?: string | undefined;
1895
+ display?: string | undefined;
1896
+ }[] | undefined;
1897
+ availableTime?: {
1898
+ daysOfWeek?: ("mon" | "tue" | "wed" | "thu" | "fri" | "sat" | "sun")[] | undefined;
1899
+ allDay?: boolean | undefined;
1900
+ availableStartTime?: string | undefined;
1901
+ availableEndTime?: string | undefined;
1902
+ }[] | undefined;
1903
+ notAvailable?: {
1904
+ description: string;
1905
+ during?: {
1906
+ start?: string | undefined;
1907
+ end?: string | undefined;
1908
+ } | undefined;
1909
+ }[] | undefined;
1910
+ availabilityExceptions?: string | undefined;
1911
+ endpoint?: {
1912
+ reference: string;
1913
+ type?: string | undefined;
1914
+ display?: string | undefined;
1915
+ }[] | undefined;
1916
+ };
1917
+ fullUrl?: string | undefined;
1918
+ search?: {
1919
+ mode?: string | undefined;
1920
+ } | undefined;
1921
+ }[] | undefined;
1922
+ }>;
1923
+ export type PractitionerRoleAvailableTime = z.infer<typeof PractitionerRoleAvailableTimeSchema>;
1924
+ export type PractitionerRoleNotAvailable = z.infer<typeof PractitionerRoleNotAvailableSchema>;
1925
+ export type PractitionerRolePatchOperation = z.infer<typeof PractitionerRolePatchOperationSchema>;
1926
+ export type PractitionerRolePatchInput = z.infer<typeof PractitionerRolePatchSchema>;
1927
+ export type PractitionerRole = z.infer<typeof PractitionerRoleSchema>;
1928
+ export type PractitionerRoleCreateInput = z.infer<typeof PractitionerRoleCreateSchema>;
1929
+ export type PractitionerRoleSearchParams = z.infer<typeof PractitionerRoleSearchParamsSchema>;
1930
+ export type PractitionerRoleSearchResponse = z.infer<typeof PractitionerRoleBundleSchema>;