@haste-health/generated-ops 0.12.3

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.
@@ -0,0 +1,741 @@
1
+ import type * as fhirTypes from "@haste-health/fhir-types/r4/types";
2
+ import { IOperation } from "@haste-health/operation-execution";
3
+ export declare namespace ProjectInformation {
4
+ type Input = Record<string, never>;
5
+ type Output = {
6
+ project: fhirTypes.Project;
7
+ };
8
+ type IOp = IOperation<Input, Output>;
9
+ const Op: IOp;
10
+ }
11
+ export declare namespace TenantInformation {
12
+ type Input = Record<string, never>;
13
+ type Output = {
14
+ id: fhirTypes.string;
15
+ subscription: fhirTypes.code;
16
+ };
17
+ type IOp = IOperation<Input, Output>;
18
+ const Op: IOp;
19
+ }
20
+ export declare namespace HasteHealthDeployOperation {
21
+ type Input = {
22
+ code: fhirTypes.string;
23
+ environment?: Array<{
24
+ name: fhirTypes.string;
25
+ value: fhirTypes.string;
26
+ }>;
27
+ };
28
+ type Output = fhirTypes.OperationOutcome;
29
+ type IOp = IOperation<Input, Output>;
30
+ const Op: IOp;
31
+ }
32
+ export declare namespace HasteHealthEncrypt {
33
+ type Input = {
34
+ value: fhirTypes.string;
35
+ };
36
+ type Output = {
37
+ encryptedValue: fhirTypes.string;
38
+ };
39
+ type IOp = IOperation<Input, Output>;
40
+ const Op: IOp;
41
+ }
42
+ export declare namespace HasteHealthEvaluatePolicy {
43
+ type Input = {
44
+ user?: fhirTypes.Reference;
45
+ request: fhirTypes.Bundle;
46
+ };
47
+ type Output = fhirTypes.OperationOutcome;
48
+ type IOp = IOperation<Input, Output>;
49
+ const Op: IOp;
50
+ }
51
+ export declare namespace HasteHealthIdpRegistrationInfo {
52
+ type Input = Record<string, never>;
53
+ type Output = {
54
+ information?: Array<{
55
+ name: fhirTypes.string;
56
+ value: fhirTypes.string;
57
+ }>;
58
+ };
59
+ type IOp = IOperation<Input, Output>;
60
+ const Op: IOp;
61
+ }
62
+ export declare namespace HasteHealthInviteUser {
63
+ type Input = {
64
+ email: fhirTypes.string;
65
+ role: fhirTypes.code;
66
+ accessPolicy?: fhirTypes.Reference;
67
+ };
68
+ type Output = fhirTypes.OperationOutcome;
69
+ type IOp = IOperation<Input, Output>;
70
+ const Op: IOp;
71
+ }
72
+ export declare namespace HasteHealthMessagePost {
73
+ type Input = {
74
+ input: fhirTypes.Resource;
75
+ };
76
+ type Output = fhirTypes.OperationOutcome;
77
+ type IOp = IOperation<Input, Output>;
78
+ const Op: IOp;
79
+ }
80
+ export declare namespace HasteHealthPasswordReset {
81
+ type Input = {
82
+ email: {
83
+ subject: fhirTypes.string;
84
+ body: fhirTypes.string;
85
+ acceptText: fhirTypes.string;
86
+ };
87
+ };
88
+ type Output = fhirTypes.OperationOutcome;
89
+ type IOp = IOperation<Input, Output>;
90
+ const Op: IOp;
91
+ }
92
+ export declare namespace HasteHealthDeleteRefreshToken {
93
+ type Input = {
94
+ client_id: fhirTypes.id;
95
+ user_agent?: fhirTypes.string;
96
+ };
97
+ type Output = fhirTypes.OperationOutcome;
98
+ type IOp = IOperation<Input, Output>;
99
+ const Op: IOp;
100
+ }
101
+ export declare namespace HasteHealthListRefreshTokens {
102
+ type Input = Record<string, never>;
103
+ type Output = {
104
+ "refresh-tokens"?: Array<{
105
+ client_id: fhirTypes.id;
106
+ user_agent: fhirTypes.string;
107
+ created_at: fhirTypes.dateTime;
108
+ }>;
109
+ };
110
+ type IOp = IOperation<Input, Output>;
111
+ const Op: IOp;
112
+ }
113
+ export declare namespace HasteHealthDeleteScope {
114
+ type Input = {
115
+ client_id: fhirTypes.id;
116
+ };
117
+ type Output = fhirTypes.OperationOutcome;
118
+ type IOp = IOperation<Input, Output>;
119
+ const Op: IOp;
120
+ }
121
+ export declare namespace HasteHealthListScopes {
122
+ type Input = Record<string, never>;
123
+ type Output = {
124
+ scopes?: Array<{
125
+ client_id: fhirTypes.id;
126
+ scopes: fhirTypes.string;
127
+ created_at: fhirTypes.dateTime;
128
+ }>;
129
+ };
130
+ type IOp = IOperation<Input, Output>;
131
+ const Op: IOp;
132
+ }
133
+ export declare namespace HasteHealthUsageStatistics {
134
+ type Input = Record<string, never>;
135
+ type Output = {
136
+ statistics?: Array<{
137
+ name: fhirTypes.string;
138
+ version: fhirTypes.string;
139
+ limit: fhirTypes.integer;
140
+ usage: fhirTypes.integer;
141
+ description: fhirTypes.string;
142
+ }>;
143
+ };
144
+ type IOp = IOperation<Input, Output>;
145
+ const Op: IOp;
146
+ }
147
+ export declare namespace ActivityDefinitionApply {
148
+ type Input = {
149
+ activityDefinition?: fhirTypes.ActivityDefinition;
150
+ subject: Array<fhirTypes.string>;
151
+ encounter?: fhirTypes.string;
152
+ practitioner?: fhirTypes.string;
153
+ organization?: fhirTypes.string;
154
+ userType?: fhirTypes.CodeableConcept;
155
+ userLanguage?: fhirTypes.CodeableConcept;
156
+ userTaskContext?: fhirTypes.CodeableConcept;
157
+ setting?: fhirTypes.CodeableConcept;
158
+ settingContext?: fhirTypes.CodeableConcept;
159
+ };
160
+ type Output = fhirTypes.Resource;
161
+ type IOp = IOperation<Input, Output>;
162
+ const Op: IOp;
163
+ }
164
+ export declare namespace ActivityDefinitionDataRequirements {
165
+ type Input = Record<string, never>;
166
+ type Output = fhirTypes.Library;
167
+ type IOp = IOperation<Input, Output>;
168
+ const Op: IOp;
169
+ }
170
+ export declare namespace CapabilityStatementConforms {
171
+ type Input = {
172
+ left?: fhirTypes.canonical;
173
+ right?: fhirTypes.canonical;
174
+ mode?: fhirTypes.code;
175
+ };
176
+ type Output = {
177
+ issues: fhirTypes.OperationOutcome;
178
+ union?: fhirTypes.CapabilityStatement;
179
+ intersection?: fhirTypes.CapabilityStatement;
180
+ };
181
+ type IOp = IOperation<Input, Output>;
182
+ const Op: IOp;
183
+ }
184
+ export declare namespace CapabilityStatementImplements {
185
+ type Input = {
186
+ server?: fhirTypes.canonical;
187
+ client?: fhirTypes.canonical;
188
+ resource?: fhirTypes.CapabilityStatement;
189
+ };
190
+ type Output = fhirTypes.OperationOutcome;
191
+ type IOp = IOperation<Input, Output>;
192
+ const Op: IOp;
193
+ }
194
+ export declare namespace CapabilityStatementSubset {
195
+ type Input = {
196
+ server?: fhirTypes.uri;
197
+ resource: Array<fhirTypes.code>;
198
+ };
199
+ type Output = fhirTypes.CapabilityStatement;
200
+ type IOp = IOperation<Input, Output>;
201
+ const Op: IOp;
202
+ }
203
+ export declare namespace CapabilityStatementVersions {
204
+ type Input = Record<string, never>;
205
+ type Output = {
206
+ version: Array<fhirTypes.code>;
207
+ default: fhirTypes.code;
208
+ };
209
+ type IOp = IOperation<Input, Output>;
210
+ const Op: IOp;
211
+ }
212
+ export declare namespace ChargeItemDefinitionApply {
213
+ type Input = {
214
+ chargeItem: fhirTypes.Reference;
215
+ account?: fhirTypes.Reference;
216
+ };
217
+ type Output = fhirTypes.Resource;
218
+ type IOp = IOperation<Input, Output>;
219
+ const Op: IOp;
220
+ }
221
+ export declare namespace ClaimSubmit {
222
+ type Input = {
223
+ resource: fhirTypes.Resource;
224
+ };
225
+ type Output = fhirTypes.Resource;
226
+ type IOp = IOperation<Input, Output>;
227
+ const Op: IOp;
228
+ }
229
+ export declare namespace CodeSystemFindMatches {
230
+ type Input = {
231
+ system?: fhirTypes.uri;
232
+ version?: fhirTypes.string;
233
+ property?: Array<{
234
+ code: fhirTypes.code;
235
+ value?: fhirTypes.Element;
236
+ subproperty?: Array<{
237
+ code: fhirTypes.code;
238
+ value: fhirTypes.Element;
239
+ }>;
240
+ }>;
241
+ exact: fhirTypes.boolean;
242
+ compositional?: fhirTypes.boolean;
243
+ };
244
+ type Output = {
245
+ match?: Array<{
246
+ code: fhirTypes.Coding;
247
+ unmatched?: Array<{
248
+ code: fhirTypes.code;
249
+ value: fhirTypes.Element;
250
+ property?: Array<{
251
+ code: fhirTypes.code;
252
+ value: fhirTypes.Element;
253
+ }>;
254
+ }>;
255
+ comment?: fhirTypes.string;
256
+ }>;
257
+ };
258
+ type IOp = IOperation<Input, Output>;
259
+ const Op: IOp;
260
+ }
261
+ export declare namespace CodeSystemLookup {
262
+ type Input = {
263
+ code?: fhirTypes.code;
264
+ system?: fhirTypes.uri;
265
+ version?: fhirTypes.string;
266
+ coding?: fhirTypes.Coding;
267
+ date?: fhirTypes.dateTime;
268
+ displayLanguage?: fhirTypes.code;
269
+ property?: Array<fhirTypes.code>;
270
+ };
271
+ type Output = {
272
+ name: fhirTypes.string;
273
+ version?: fhirTypes.string;
274
+ display: fhirTypes.string;
275
+ designation?: Array<{
276
+ language?: fhirTypes.code;
277
+ use?: fhirTypes.Coding;
278
+ value: fhirTypes.string;
279
+ }>;
280
+ property?: Array<{
281
+ code: fhirTypes.code;
282
+ value?: fhirTypes.Element;
283
+ description?: fhirTypes.string;
284
+ subproperty?: Array<{
285
+ code: fhirTypes.code;
286
+ value: fhirTypes.Element;
287
+ description?: fhirTypes.string;
288
+ }>;
289
+ }>;
290
+ };
291
+ type IOp = IOperation<Input, Output>;
292
+ const Op: IOp;
293
+ }
294
+ export declare namespace CodeSystemSubsumes {
295
+ type Input = {
296
+ codeA?: fhirTypes.code;
297
+ codeB?: fhirTypes.code;
298
+ system?: fhirTypes.uri;
299
+ version?: fhirTypes.string;
300
+ codingA?: fhirTypes.Coding;
301
+ codingB?: fhirTypes.Coding;
302
+ };
303
+ type Output = {
304
+ outcome: fhirTypes.code;
305
+ };
306
+ type IOp = IOperation<Input, Output>;
307
+ const Op: IOp;
308
+ }
309
+ export declare namespace CodeSystemValidateCode {
310
+ type Input = {
311
+ url?: fhirTypes.uri;
312
+ codeSystem?: fhirTypes.CodeSystem;
313
+ code?: fhirTypes.code;
314
+ version?: fhirTypes.string;
315
+ display?: fhirTypes.string;
316
+ coding?: fhirTypes.Coding;
317
+ codeableConcept?: fhirTypes.CodeableConcept;
318
+ date?: fhirTypes.dateTime;
319
+ abstract?: fhirTypes.boolean;
320
+ displayLanguage?: fhirTypes.code;
321
+ };
322
+ type Output = {
323
+ result: fhirTypes.boolean;
324
+ message?: fhirTypes.string;
325
+ display?: fhirTypes.string;
326
+ };
327
+ type IOp = IOperation<Input, Output>;
328
+ const Op: IOp;
329
+ }
330
+ export declare namespace CompositionDocument {
331
+ type Input = {
332
+ id?: fhirTypes.uri;
333
+ persist?: fhirTypes.boolean;
334
+ graph?: fhirTypes.uri;
335
+ };
336
+ type Output = Record<string, never>;
337
+ type IOp = IOperation<Input, Output>;
338
+ const Op: IOp;
339
+ }
340
+ export declare namespace ConceptMapClosure {
341
+ type Input = {
342
+ name: fhirTypes.string;
343
+ concept?: Array<fhirTypes.Coding>;
344
+ version?: fhirTypes.string;
345
+ };
346
+ type Output = fhirTypes.ConceptMap;
347
+ type IOp = IOperation<Input, Output>;
348
+ const Op: IOp;
349
+ }
350
+ export declare namespace ConceptMapTranslate {
351
+ type Input = {
352
+ url?: fhirTypes.uri;
353
+ conceptMap?: fhirTypes.ConceptMap;
354
+ conceptMapVersion?: fhirTypes.string;
355
+ code?: fhirTypes.code;
356
+ system?: fhirTypes.uri;
357
+ version?: fhirTypes.string;
358
+ source?: fhirTypes.uri;
359
+ coding?: fhirTypes.Coding;
360
+ codeableConcept?: fhirTypes.CodeableConcept;
361
+ target?: fhirTypes.uri;
362
+ targetsystem?: fhirTypes.uri;
363
+ dependency?: Array<{
364
+ element?: fhirTypes.uri;
365
+ concept?: fhirTypes.CodeableConcept;
366
+ }>;
367
+ reverse?: fhirTypes.boolean;
368
+ };
369
+ type Output = {
370
+ result: fhirTypes.boolean;
371
+ message?: fhirTypes.string;
372
+ match?: Array<{
373
+ equivalence?: fhirTypes.code;
374
+ concept?: fhirTypes.Coding;
375
+ product?: Array<{
376
+ element?: fhirTypes.uri;
377
+ concept?: fhirTypes.Coding;
378
+ }>;
379
+ source?: fhirTypes.uri;
380
+ }>;
381
+ };
382
+ type IOp = IOperation<Input, Output>;
383
+ const Op: IOp;
384
+ }
385
+ export declare namespace CoverageEligibilityRequestSubmit {
386
+ type Input = {
387
+ resource: fhirTypes.Resource;
388
+ };
389
+ type Output = fhirTypes.Resource;
390
+ type IOp = IOperation<Input, Output>;
391
+ const Op: IOp;
392
+ }
393
+ export declare namespace EncounterEverything {
394
+ type Input = {
395
+ _since?: fhirTypes.instant;
396
+ _type?: Array<fhirTypes.code>;
397
+ _count?: fhirTypes.integer;
398
+ };
399
+ type Output = fhirTypes.Bundle;
400
+ type IOp = IOperation<Input, Output>;
401
+ const Op: IOp;
402
+ }
403
+ export declare namespace GroupEverything {
404
+ type Input = {
405
+ start?: fhirTypes.date;
406
+ end?: fhirTypes.date;
407
+ _since?: fhirTypes.instant;
408
+ _type?: Array<fhirTypes.code>;
409
+ _count?: fhirTypes.integer;
410
+ };
411
+ type Output = fhirTypes.Bundle;
412
+ type IOp = IOperation<Input, Output>;
413
+ const Op: IOp;
414
+ }
415
+ export declare namespace LibraryDataRequirements {
416
+ type Input = {
417
+ target?: fhirTypes.string;
418
+ };
419
+ type Output = fhirTypes.Library;
420
+ type IOp = IOperation<Input, Output>;
421
+ const Op: IOp;
422
+ }
423
+ export declare namespace ListFind {
424
+ type Input = {
425
+ patient: fhirTypes.id;
426
+ name: fhirTypes.code;
427
+ };
428
+ type Output = Record<string, never>;
429
+ type IOp = IOperation<Input, Output>;
430
+ const Op: IOp;
431
+ }
432
+ export declare namespace MeasureCareGaps {
433
+ type Input = {
434
+ periodStart: fhirTypes.date;
435
+ periodEnd: fhirTypes.date;
436
+ topic: fhirTypes.string;
437
+ subject: fhirTypes.string;
438
+ };
439
+ type Output = fhirTypes.Bundle;
440
+ type IOp = IOperation<Input, Output>;
441
+ const Op: IOp;
442
+ }
443
+ export declare namespace MeasureCollectData {
444
+ type Input = {
445
+ periodStart: fhirTypes.date;
446
+ periodEnd: fhirTypes.date;
447
+ measure?: fhirTypes.string;
448
+ subject?: fhirTypes.string;
449
+ practitioner?: fhirTypes.string;
450
+ lastReceivedOn?: fhirTypes.dateTime;
451
+ };
452
+ type Output = {
453
+ measureReport: fhirTypes.MeasureReport;
454
+ resource?: Array<fhirTypes.Resource>;
455
+ };
456
+ type IOp = IOperation<Input, Output>;
457
+ const Op: IOp;
458
+ }
459
+ export declare namespace MeasureDataRequirements {
460
+ type Input = {
461
+ periodStart: fhirTypes.date;
462
+ periodEnd: fhirTypes.date;
463
+ };
464
+ type Output = fhirTypes.Library;
465
+ type IOp = IOperation<Input, Output>;
466
+ const Op: IOp;
467
+ }
468
+ export declare namespace MeasureEvaluateMeasure {
469
+ type Input = {
470
+ periodStart: fhirTypes.date;
471
+ periodEnd: fhirTypes.date;
472
+ measure?: fhirTypes.string;
473
+ reportType?: fhirTypes.code;
474
+ subject?: fhirTypes.string;
475
+ practitioner?: fhirTypes.string;
476
+ lastReceivedOn?: fhirTypes.dateTime;
477
+ };
478
+ type Output = fhirTypes.MeasureReport;
479
+ type IOp = IOperation<Input, Output>;
480
+ const Op: IOp;
481
+ }
482
+ export declare namespace MeasureSubmitData {
483
+ type Input = {
484
+ measureReport: fhirTypes.MeasureReport;
485
+ resource?: Array<fhirTypes.Resource>;
486
+ };
487
+ type Output = Record<string, never>;
488
+ type IOp = IOperation<Input, Output>;
489
+ const Op: IOp;
490
+ }
491
+ export declare namespace MedicinalProductEverything {
492
+ type Input = {
493
+ _since?: fhirTypes.instant;
494
+ _count?: fhirTypes.integer;
495
+ };
496
+ type Output = fhirTypes.Bundle;
497
+ type IOp = IOperation<Input, Output>;
498
+ const Op: IOp;
499
+ }
500
+ export declare namespace MessageHeaderProcessMessage {
501
+ type Input = {
502
+ content: fhirTypes.Bundle;
503
+ async?: fhirTypes.boolean;
504
+ "response-url"?: fhirTypes.url;
505
+ };
506
+ type Output = fhirTypes.Bundle;
507
+ type IOp = IOperation<Input, Output>;
508
+ const Op: IOp;
509
+ }
510
+ export declare namespace NamingSystemPreferredId {
511
+ type Input = {
512
+ id: fhirTypes.string;
513
+ type: fhirTypes.code;
514
+ };
515
+ type Output = {
516
+ result: fhirTypes.string;
517
+ };
518
+ type IOp = IOperation<Input, Output>;
519
+ const Op: IOp;
520
+ }
521
+ export declare namespace ObservationLastn {
522
+ type Input = {
523
+ max?: fhirTypes.positiveInt;
524
+ };
525
+ type Output = fhirTypes.Bundle;
526
+ type IOp = IOperation<Input, Output>;
527
+ const Op: IOp;
528
+ }
529
+ export declare namespace ObservationStats {
530
+ type Input = {
531
+ subject: fhirTypes.uri;
532
+ code?: Array<fhirTypes.string>;
533
+ system?: fhirTypes.uri;
534
+ coding?: Array<fhirTypes.Coding>;
535
+ duration?: fhirTypes.decimal;
536
+ period?: fhirTypes.Period;
537
+ statistic: Array<fhirTypes.code>;
538
+ include?: fhirTypes.boolean;
539
+ limit?: fhirTypes.positiveInt;
540
+ };
541
+ type Output = {
542
+ statistics: Array<fhirTypes.Observation>;
543
+ source?: Array<fhirTypes.Observation>;
544
+ };
545
+ type IOp = IOperation<Input, Output>;
546
+ const Op: IOp;
547
+ }
548
+ export declare namespace PatientEverything {
549
+ type Input = {
550
+ start?: fhirTypes.date;
551
+ end?: fhirTypes.date;
552
+ _since?: fhirTypes.instant;
553
+ _type?: Array<fhirTypes.code>;
554
+ _count?: fhirTypes.integer;
555
+ };
556
+ type Output = fhirTypes.Bundle;
557
+ type IOp = IOperation<Input, Output>;
558
+ const Op: IOp;
559
+ }
560
+ export declare namespace PatientMatch {
561
+ type Input = {
562
+ resource: fhirTypes.Resource;
563
+ onlyCertainMatches?: fhirTypes.boolean;
564
+ count?: fhirTypes.integer;
565
+ };
566
+ type Output = fhirTypes.Bundle;
567
+ type IOp = IOperation<Input, Output>;
568
+ const Op: IOp;
569
+ }
570
+ export declare namespace PlanDefinitionApply {
571
+ type Input = {
572
+ planDefinition?: fhirTypes.PlanDefinition;
573
+ subject: Array<fhirTypes.string>;
574
+ encounter?: fhirTypes.string;
575
+ practitioner?: fhirTypes.string;
576
+ organization?: fhirTypes.string;
577
+ userType?: fhirTypes.CodeableConcept;
578
+ userLanguage?: fhirTypes.CodeableConcept;
579
+ userTaskContext?: fhirTypes.CodeableConcept;
580
+ setting?: fhirTypes.CodeableConcept;
581
+ settingContext?: fhirTypes.CodeableConcept;
582
+ };
583
+ type Output = fhirTypes.CarePlan;
584
+ type IOp = IOperation<Input, Output>;
585
+ const Op: IOp;
586
+ }
587
+ export declare namespace PlanDefinitionDataRequirements {
588
+ type Input = Record<string, never>;
589
+ type Output = fhirTypes.Library;
590
+ type IOp = IOperation<Input, Output>;
591
+ const Op: IOp;
592
+ }
593
+ export declare namespace ResourceConvert {
594
+ type Input = {
595
+ input: fhirTypes.Resource;
596
+ };
597
+ type Output = {
598
+ output: fhirTypes.Resource;
599
+ };
600
+ type IOp = IOperation<Input, Output>;
601
+ const Op: IOp;
602
+ }
603
+ export declare namespace ResourceGraph {
604
+ type Input = {
605
+ graph: fhirTypes.uri;
606
+ };
607
+ type Output = {
608
+ result: fhirTypes.Bundle;
609
+ };
610
+ type IOp = IOperation<Input, Output>;
611
+ const Op: IOp;
612
+ }
613
+ export declare namespace ResourceGraphql {
614
+ type Input = {
615
+ query: fhirTypes.string;
616
+ };
617
+ type Output = {
618
+ result: fhirTypes.Binary;
619
+ };
620
+ type IOp = IOperation<Input, Output>;
621
+ const Op: IOp;
622
+ }
623
+ export declare namespace ResourceMeta {
624
+ type Input = Record<string, never>;
625
+ type Output = {
626
+ return: fhirTypes.Meta;
627
+ };
628
+ type IOp = IOperation<Input, Output>;
629
+ const Op: IOp;
630
+ }
631
+ export declare namespace ResourceMetaAdd {
632
+ type Input = {
633
+ meta: fhirTypes.Meta;
634
+ };
635
+ type Output = {
636
+ return: fhirTypes.Meta;
637
+ };
638
+ type IOp = IOperation<Input, Output>;
639
+ const Op: IOp;
640
+ }
641
+ export declare namespace ResourceMetaDelete {
642
+ type Input = {
643
+ meta: fhirTypes.Meta;
644
+ };
645
+ type Output = {
646
+ return: fhirTypes.Meta;
647
+ };
648
+ type IOp = IOperation<Input, Output>;
649
+ const Op: IOp;
650
+ }
651
+ export declare namespace ResourceValidate {
652
+ type Input = {
653
+ resource?: fhirTypes.Resource;
654
+ mode?: fhirTypes.code;
655
+ profile?: fhirTypes.uri;
656
+ };
657
+ type Output = fhirTypes.OperationOutcome;
658
+ type IOp = IOperation<Input, Output>;
659
+ const Op: IOp;
660
+ }
661
+ export declare namespace StructureDefinitionQuestionnaire {
662
+ type Input = {
663
+ identifier?: fhirTypes.canonical;
664
+ profile?: fhirTypes.string;
665
+ url?: fhirTypes.canonical;
666
+ supportedOnly?: fhirTypes.boolean;
667
+ };
668
+ type Output = fhirTypes.Questionnaire;
669
+ type IOp = IOperation<Input, Output>;
670
+ const Op: IOp;
671
+ }
672
+ export declare namespace StructureDefinitionSnapshot {
673
+ type Input = {
674
+ definition?: fhirTypes.StructureDefinition;
675
+ url?: fhirTypes.string;
676
+ };
677
+ type Output = fhirTypes.StructureDefinition;
678
+ type IOp = IOperation<Input, Output>;
679
+ const Op: IOp;
680
+ }
681
+ export declare namespace StructureMapTransform {
682
+ type Input = {
683
+ source?: fhirTypes.uri;
684
+ content: fhirTypes.Resource;
685
+ };
686
+ type Output = fhirTypes.Resource;
687
+ type IOp = IOperation<Input, Output>;
688
+ const Op: IOp;
689
+ }
690
+ export declare namespace ValueSetExpand {
691
+ type Input = {
692
+ url?: fhirTypes.uri;
693
+ valueSet?: fhirTypes.ValueSet;
694
+ valueSetVersion?: fhirTypes.string;
695
+ context?: fhirTypes.uri;
696
+ contextDirection?: fhirTypes.code;
697
+ filter?: fhirTypes.string;
698
+ date?: fhirTypes.dateTime;
699
+ offset?: fhirTypes.integer;
700
+ count?: fhirTypes.integer;
701
+ includeDesignations?: fhirTypes.boolean;
702
+ designation?: Array<fhirTypes.string>;
703
+ includeDefinition?: fhirTypes.boolean;
704
+ activeOnly?: fhirTypes.boolean;
705
+ excludeNested?: fhirTypes.boolean;
706
+ excludeNotForUI?: fhirTypes.boolean;
707
+ excludePostCoordinated?: fhirTypes.boolean;
708
+ displayLanguage?: fhirTypes.code;
709
+ "exclude-system"?: Array<fhirTypes.canonical>;
710
+ "system-version"?: Array<fhirTypes.canonical>;
711
+ "check-system-version"?: Array<fhirTypes.canonical>;
712
+ "force-system-version"?: Array<fhirTypes.canonical>;
713
+ };
714
+ type Output = fhirTypes.ValueSet;
715
+ type IOp = IOperation<Input, Output>;
716
+ const Op: IOp;
717
+ }
718
+ export declare namespace ValueSetValidateCode {
719
+ type Input = {
720
+ url?: fhirTypes.uri;
721
+ context?: fhirTypes.uri;
722
+ valueSet?: fhirTypes.ValueSet;
723
+ valueSetVersion?: fhirTypes.string;
724
+ code?: fhirTypes.code;
725
+ system?: fhirTypes.uri;
726
+ systemVersion?: fhirTypes.string;
727
+ display?: fhirTypes.string;
728
+ coding?: fhirTypes.Coding;
729
+ codeableConcept?: fhirTypes.CodeableConcept;
730
+ date?: fhirTypes.dateTime;
731
+ abstract?: fhirTypes.boolean;
732
+ displayLanguage?: fhirTypes.code;
733
+ };
734
+ type Output = {
735
+ result: fhirTypes.boolean;
736
+ message?: fhirTypes.string;
737
+ display?: fhirTypes.string;
738
+ };
739
+ type IOp = IOperation<Input, Output>;
740
+ const Op: IOp;
741
+ }