fhirpath-ts 0.0.0-bootstrap.0 → 0.2.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.
- package/README.md +50 -18
- package/dist/analyzer/analyze-dto.d.ts +4 -0
- package/dist/analyzer/analyze-dto.d.ts.map +1 -1
- package/dist/analyzer/analyze-dto.js +12 -14
- package/dist/analyzer/analyze-dto.js.map +1 -1
- package/dist/analyzer/analyze.d.ts +22 -6
- package/dist/analyzer/analyze.d.ts.map +1 -1
- package/dist/analyzer/analyze.js +242 -98
- package/dist/analyzer/analyze.js.map +1 -1
- package/dist/analyzer/declarations.d.ts +26 -0
- package/dist/analyzer/declarations.d.ts.map +1 -0
- package/dist/analyzer/declarations.js +68 -0
- package/dist/analyzer/declarations.js.map +1 -0
- package/dist/analyzer/operator-rules.d.ts +127 -0
- package/dist/analyzer/operator-rules.d.ts.map +1 -0
- package/dist/analyzer/operator-rules.js +70 -0
- package/dist/analyzer/operator-rules.js.map +1 -0
- package/dist/analyzer/signatures.d.ts +1097 -10
- package/dist/analyzer/signatures.d.ts.map +1 -1
- package/dist/analyzer/signatures.js +70 -29
- package/dist/analyzer/signatures.js.map +1 -1
- package/dist/api/compile.d.ts +32 -8
- package/dist/api/compile.d.ts.map +1 -1
- package/dist/api/compile.js +2 -0
- package/dist/api/compile.js.map +1 -1
- package/dist/api/engine.d.ts +42 -16
- package/dist/api/engine.d.ts.map +1 -1
- package/dist/api/engine.js +2 -1
- package/dist/api/engine.js.map +1 -1
- package/dist/api/project.d.ts +8 -8
- package/dist/api/project.d.ts.map +1 -1
- package/dist/api/project.js +31 -19
- package/dist/api/project.js.map +1 -1
- package/dist/api/strict.d.ts +6 -0
- package/dist/api/strict.d.ts.map +1 -0
- package/dist/api/strict.js +71 -0
- package/dist/api/strict.js.map +1 -0
- package/dist/api/tagged.d.ts +4 -4
- package/dist/api/tagged.d.ts.map +1 -1
- package/dist/api/tagged.js.map +1 -1
- package/dist/cli/dto-check.js +7 -3
- package/dist/cli/dto-check.js.map +1 -1
- package/dist/engine/context.d.ts +3 -1
- package/dist/engine/context.d.ts.map +1 -1
- package/dist/engine/context.js +5 -1
- package/dist/engine/context.js.map +1 -1
- package/dist/engine/navigation.d.ts.map +1 -1
- package/dist/engine/navigation.js +7 -48
- package/dist/engine/navigation.js.map +1 -1
- package/dist/engine/type-matching.d.ts.map +1 -1
- package/dist/engine/type-matching.js +6 -16
- package/dist/engine/type-matching.js.map +1 -1
- package/dist/index.d.ts +4 -3
- package/dist/index.d.ts.map +1 -1
- package/dist/index.js.map +1 -1
- package/dist/parser/parser.d.ts.map +1 -1
- package/dist/parser/parser.js +102 -73
- package/dist/parser/parser.js.map +1 -1
- package/dist/parser/precedence.d.ts +368 -4
- package/dist/parser/precedence.d.ts.map +1 -1
- package/dist/parser/precedence.js +146 -32
- package/dist/parser/precedence.js.map +1 -1
- package/dist/r4/generated/type-maps.d.ts +1367 -0
- package/dist/r4/generated/type-maps.d.ts.map +1 -1
- package/dist/r4/index.d.ts +3 -1
- package/dist/r4/index.d.ts.map +1 -1
- package/dist/typed/context-maps.d.ts +23 -0
- package/dist/typed/context-maps.d.ts.map +1 -0
- package/dist/typed/context-maps.js +2 -0
- package/dist/typed/context-maps.js.map +1 -0
- package/dist/typed/infer.d.ts +99 -229
- package/dist/typed/infer.d.ts.map +1 -1
- package/dist/typed/infer.js +1 -84
- package/dist/typed/infer.js.map +1 -1
- package/dist/typed/inference-limits.d.ts +7 -0
- package/dist/typed/inference-limits.d.ts.map +1 -0
- package/dist/typed/inference-limits.js +6 -0
- package/dist/typed/inference-limits.js.map +1 -0
- package/dist/typed/metadata-compact.d.ts +189 -0
- package/dist/typed/metadata-compact.d.ts.map +1 -0
- package/dist/typed/metadata-compact.js +3 -0
- package/dist/typed/metadata-compact.js.map +1 -0
- package/dist/typed/parser.d.ts +515 -0
- package/dist/typed/parser.d.ts.map +1 -0
- package/dist/typed/parser.js +2 -0
- package/dist/typed/parser.js.map +1 -0
- package/dist/values/type-compat.d.ts +8 -0
- package/dist/values/type-compat.d.ts.map +1 -1
- package/dist/values/type-compat.js +44 -1
- package/dist/values/type-compat.js.map +1 -1
- package/package.json +20 -1
- package/src/analyzer/analyze-dto.ts +21 -17
- package/src/analyzer/analyze.ts +335 -109
- package/src/analyzer/declarations.ts +120 -0
- package/src/analyzer/operator-rules.ts +88 -0
- package/src/analyzer/signatures.ts +99 -41
- package/src/api/compile.ts +66 -11
- package/src/api/engine.ts +97 -33
- package/src/api/project.ts +54 -30
- package/src/api/strict.ts +112 -0
- package/src/api/tagged.ts +5 -5
- package/src/cli/dto-check.ts +7 -3
- package/src/engine/context.ts +7 -2
- package/src/engine/navigation.ts +7 -52
- package/src/engine/type-matching.ts +11 -17
- package/src/index.ts +25 -2
- package/src/parser/parser.ts +106 -74
- package/src/parser/precedence.ts +250 -33
- package/src/r4/generated/type-maps.ts +1557 -0
- package/src/typed/context-maps.ts +41 -0
- package/src/typed/infer.ts +157 -425
- package/src/typed/inference-limits.ts +9 -0
- package/src/typed/metadata-compact.ts +307 -0
- package/src/typed/parser.ts +2277 -0
- package/src/values/type-compat.ts +48 -1
- package/dist/typed/perf-fixture.types.d.ts +0 -136
- package/dist/typed/perf-fixture.types.d.ts.map +0 -1
- package/dist/typed/perf-fixture.types.js +0 -2
- package/dist/typed/perf-fixture.types.js.map +0 -1
- package/src/typed/perf-fixture.types.ts +0 -143
|
@@ -1,6 +1,37 @@
|
|
|
1
1
|
/** Shared, conservative type compatibility for runtime dispatch and static checks. */
|
|
2
2
|
import type { ModelProvider } from '../model/provider.ts'
|
|
3
|
-
import { FHIR_PRIMITIVE_TO_SYSTEM, typeLocalName } from './typed-value.ts'
|
|
3
|
+
import { FHIR_PRIMITIVE_TO_SYSTEM, OBJECT_TYPE, typeLocalName } from './typed-value.ts'
|
|
4
|
+
|
|
5
|
+
/** System type names recognized by type specifiers and uppercase root selectors. */
|
|
6
|
+
export const SYSTEM_TYPE_LOCAL_NAMES: ReadonlySet<string> = new Set([
|
|
7
|
+
'Any',
|
|
8
|
+
'Boolean',
|
|
9
|
+
'String',
|
|
10
|
+
'Integer',
|
|
11
|
+
'Long',
|
|
12
|
+
'Decimal',
|
|
13
|
+
'Date',
|
|
14
|
+
'DateTime',
|
|
15
|
+
'Time',
|
|
16
|
+
'Quantity',
|
|
17
|
+
])
|
|
18
|
+
|
|
19
|
+
/** The canonical System type for an exact local name. */
|
|
20
|
+
export function resolveSystemTypeName(name: string): string | undefined {
|
|
21
|
+
return SYSTEM_TYPE_LOCAL_NAMES.has(name) ? `System.${name}` : undefined
|
|
22
|
+
}
|
|
23
|
+
|
|
24
|
+
/** Runtime root rule: an uppercase name matches an item's own type or a model supertype. */
|
|
25
|
+
export function rootTypeMatches(model: ModelProvider | undefined, itemType: string, name: string): boolean {
|
|
26
|
+
if (!/^[A-Z]/.test(name)) {
|
|
27
|
+
return false
|
|
28
|
+
}
|
|
29
|
+
if (itemType !== OBJECT_TYPE && typeLocalName(itemType) === name) {
|
|
30
|
+
return true
|
|
31
|
+
}
|
|
32
|
+
const canonical = model?.resolveType(name)
|
|
33
|
+
return canonical !== undefined && model?.isSubtypeOf(itemType, canonical) === true
|
|
34
|
+
}
|
|
4
35
|
|
|
5
36
|
/** Behavior families used by the static checks. */
|
|
6
37
|
export type ValueKind = 'Boolean' | 'String' | 'Numeric' | 'Temporal' | 'Quantity' | 'Complex'
|
|
@@ -27,6 +58,22 @@ export function valueKindOfTypeName(canonical: string): ValueKind {
|
|
|
27
58
|
}
|
|
28
59
|
}
|
|
29
60
|
|
|
61
|
+
/** The behavior kind shared by every known candidate type. */
|
|
62
|
+
export function commonValueKind(types: readonly string[] | undefined): ValueKind | undefined {
|
|
63
|
+
if (types === undefined || types.length === 0) {
|
|
64
|
+
return undefined
|
|
65
|
+
}
|
|
66
|
+
let found: ValueKind | undefined
|
|
67
|
+
for (const type of types) {
|
|
68
|
+
const next = valueKindOfTypeName(type)
|
|
69
|
+
if (found !== undefined && found !== next) {
|
|
70
|
+
return undefined
|
|
71
|
+
}
|
|
72
|
+
found = next
|
|
73
|
+
}
|
|
74
|
+
return found
|
|
75
|
+
}
|
|
76
|
+
|
|
30
77
|
/**
|
|
31
78
|
* Resolves a focus type through its full name, then its local name. Unknown names
|
|
32
79
|
* return undefined so callers can skip claims the model cannot support.
|
|
@@ -1,136 +0,0 @@
|
|
|
1
|
-
import type { FhirpathResult } from './infer.ts';
|
|
2
|
-
export type T001 = FhirpathResult<'Patient.name.given'>;
|
|
3
|
-
export type T002 = FhirpathResult<'Patient.name.family'>;
|
|
4
|
-
export type T003 = FhirpathResult<'Patient.birthDate'>;
|
|
5
|
-
export type T004 = FhirpathResult<'Patient.active'>;
|
|
6
|
-
export type T005 = FhirpathResult<'Patient.telecom.value'>;
|
|
7
|
-
export type T006 = FhirpathResult<'Patient.address.city'>;
|
|
8
|
-
export type T007 = FhirpathResult<'Patient.identifier.value'>;
|
|
9
|
-
export type T008 = FhirpathResult<'Patient.contact.name.family'>;
|
|
10
|
-
export type T009 = FhirpathResult<'Patient.name.first().given'>;
|
|
11
|
-
export type T010 = FhirpathResult<'Patient.name.exists()'>;
|
|
12
|
-
export type T011 = FhirpathResult<'Patient.name.count()'>;
|
|
13
|
-
export type T012 = FhirpathResult<"Patient.name.where(use = 'official').family">;
|
|
14
|
-
export type T013 = FhirpathResult<'Patient.name.select(given)'>;
|
|
15
|
-
export type T014 = FhirpathResult<'Patient.deceased'>;
|
|
16
|
-
export type T015 = FhirpathResult<'Patient.gender'>;
|
|
17
|
-
export type T016 = FhirpathResult<'Patient.maritalStatus.coding.code'>;
|
|
18
|
-
export type T017 = FhirpathResult<'Patient.communication.language.text'>;
|
|
19
|
-
export type T018 = FhirpathResult<'Patient.name[0].family'>;
|
|
20
|
-
export type T019 = FhirpathResult<'Patient.managingOrganization.reference'>;
|
|
21
|
-
export type T020 = FhirpathResult<'Patient.link.other.reference'>;
|
|
22
|
-
export type T021 = FhirpathResult<'Observation.status'>;
|
|
23
|
-
export type T022 = FhirpathResult<'Observation.code.coding.system'>;
|
|
24
|
-
export type T023 = FhirpathResult<'Observation.value.ofType(Quantity).unit'>;
|
|
25
|
-
export type T024 = FhirpathResult<'Observation.issued'>;
|
|
26
|
-
export type T025 = FhirpathResult<'Observation.category.coding.code'>;
|
|
27
|
-
export type T026 = FhirpathResult<'Observation.component.code.text'>;
|
|
28
|
-
export type T027 = FhirpathResult<'Observation.subject.reference'>;
|
|
29
|
-
export type T028 = FhirpathResult<'Observation.referenceRange.low.value'>;
|
|
30
|
-
export type T029 = FhirpathResult<'Observation.interpretation.text'>;
|
|
31
|
-
export type T030 = FhirpathResult<'Observation.effective'>;
|
|
32
|
-
export type T031 = FhirpathResult<'Bundle.entry.fullUrl'>;
|
|
33
|
-
export type T032 = FhirpathResult<'Bundle.type'>;
|
|
34
|
-
export type T033 = FhirpathResult<'Bundle.total'>;
|
|
35
|
-
export type T034 = FhirpathResult<'Bundle.entry.request.method'>;
|
|
36
|
-
export type T035 = FhirpathResult<'Bundle.link.url'>;
|
|
37
|
-
export type T036 = FhirpathResult<'Encounter.status'>;
|
|
38
|
-
export type T037 = FhirpathResult<'Encounter.class.code'>;
|
|
39
|
-
export type T038 = FhirpathResult<'Encounter.period.start'>;
|
|
40
|
-
export type T039 = FhirpathResult<'Encounter.participant.individual.reference'>;
|
|
41
|
-
export type T040 = FhirpathResult<'Encounter.reasonCode.text'>;
|
|
42
|
-
export type T041 = FhirpathResult<'Encounter.location.location.display'>;
|
|
43
|
-
export type T042 = FhirpathResult<'MedicationRequest.status'>;
|
|
44
|
-
export type T043 = FhirpathResult<'MedicationRequest.intent'>;
|
|
45
|
-
export type T044 = FhirpathResult<'MedicationRequest.medication'>;
|
|
46
|
-
export type T045 = FhirpathResult<'MedicationRequest.dosageInstruction.text'>;
|
|
47
|
-
export type T046 = FhirpathResult<'MedicationRequest.dispenseRequest.quantity.value'>;
|
|
48
|
-
export type T047 = FhirpathResult<'MedicationRequest.authoredOn'>;
|
|
49
|
-
export type T048 = FhirpathResult<'MedicationRequest.requester.display'>;
|
|
50
|
-
export type T049 = FhirpathResult<'Condition.clinicalStatus.coding.code'>;
|
|
51
|
-
export type T050 = FhirpathResult<'Condition.severity.text'>;
|
|
52
|
-
export type T051 = FhirpathResult<'Condition.onset'>;
|
|
53
|
-
export type T052 = FhirpathResult<'Condition.recordedDate'>;
|
|
54
|
-
export type T053 = FhirpathResult<'Condition.bodySite.coding.display'>;
|
|
55
|
-
export type T054 = FhirpathResult<'Condition.stage.summary.text'>;
|
|
56
|
-
export type T055 = FhirpathResult<'DiagnosticReport.status'>;
|
|
57
|
-
export type T056 = FhirpathResult<'DiagnosticReport.conclusion'>;
|
|
58
|
-
export type T057 = FhirpathResult<'DiagnosticReport.result.reference'>;
|
|
59
|
-
export type T058 = FhirpathResult<'DiagnosticReport.issued'>;
|
|
60
|
-
export type T059 = FhirpathResult<'DiagnosticReport.category.text'>;
|
|
61
|
-
export type T060 = FhirpathResult<'AllergyIntolerance.clinicalStatus.coding.code'>;
|
|
62
|
-
export type T061 = FhirpathResult<'AllergyIntolerance.criticality'>;
|
|
63
|
-
export type T062 = FhirpathResult<'AllergyIntolerance.reaction.severity'>;
|
|
64
|
-
export type T063 = FhirpathResult<'AllergyIntolerance.reaction.manifestation.text'>;
|
|
65
|
-
export type T064 = FhirpathResult<'AllergyIntolerance.onset'>;
|
|
66
|
-
export type T065 = FhirpathResult<'Immunization.status'>;
|
|
67
|
-
export type T066 = FhirpathResult<'Immunization.vaccineCode.text'>;
|
|
68
|
-
export type T067 = FhirpathResult<'Immunization.occurrence'>;
|
|
69
|
-
export type T068 = FhirpathResult<'Immunization.lotNumber'>;
|
|
70
|
-
export type T069 = FhirpathResult<'Immunization.doseQuantity.value'>;
|
|
71
|
-
export type T070 = FhirpathResult<'Appointment.status'>;
|
|
72
|
-
export type T071 = FhirpathResult<'Appointment.start'>;
|
|
73
|
-
export type T072 = FhirpathResult<'Appointment.end'>;
|
|
74
|
-
export type T073 = FhirpathResult<'Appointment.participant.actor.display'>;
|
|
75
|
-
export type T074 = FhirpathResult<'Appointment.description'>;
|
|
76
|
-
export type T075 = FhirpathResult<'CarePlan.status'>;
|
|
77
|
-
export type T076 = FhirpathResult<'CarePlan.intent'>;
|
|
78
|
-
export type T077 = FhirpathResult<'CarePlan.title'>;
|
|
79
|
-
export type T078 = FhirpathResult<'CarePlan.activity.detail.status'>;
|
|
80
|
-
export type T079 = FhirpathResult<'CarePlan.period.end'>;
|
|
81
|
-
export type T080 = FhirpathResult<'Procedure.status'>;
|
|
82
|
-
export type T081 = FhirpathResult<'Procedure.code.text'>;
|
|
83
|
-
export type T082 = FhirpathResult<'Procedure.performed'>;
|
|
84
|
-
export type T083 = FhirpathResult<'Procedure.outcome.text'>;
|
|
85
|
-
export type T084 = FhirpathResult<'Procedure.performer.actor.display'>;
|
|
86
|
-
export type T085 = FhirpathResult<'Questionnaire.status'>;
|
|
87
|
-
export type T086 = FhirpathResult<'Questionnaire.title'>;
|
|
88
|
-
export type T087 = FhirpathResult<'Questionnaire.item.text'>;
|
|
89
|
-
export type T088 = FhirpathResult<'Questionnaire.item.item.linkId'>;
|
|
90
|
-
export type T089 = FhirpathResult<'Questionnaire.item.type'>;
|
|
91
|
-
export type T090 = FhirpathResult<'QuestionnaireResponse.status'>;
|
|
92
|
-
export type T091 = FhirpathResult<'QuestionnaireResponse.item.answer.value'>;
|
|
93
|
-
export type T092 = FhirpathResult<'QuestionnaireResponse.item.linkId'>;
|
|
94
|
-
export type T093 = FhirpathResult<'QuestionnaireResponse.authored'>;
|
|
95
|
-
export type T094 = FhirpathResult<'ValueSet.status'>;
|
|
96
|
-
export type T095 = FhirpathResult<'ValueSet.url'>;
|
|
97
|
-
export type T096 = FhirpathResult<'ValueSet.expansion.contains.code'>;
|
|
98
|
-
export type T097 = FhirpathResult<'ValueSet.compose.include.system'>;
|
|
99
|
-
export type T098 = FhirpathResult<"Observation.value.ofType(Quantity).toQuantity('kg').value">;
|
|
100
|
-
export type T099 = FhirpathResult<"Observation.value.ofType(Quantity).toQuantity('kg.m/s2').value">;
|
|
101
|
-
export type T100 = FhirpathResult<'Patient.birthDate.toDate()'>;
|
|
102
|
-
export type T101 = FhirpathResult<'Patient.birthDate.convertsToDateTime()'>;
|
|
103
|
-
export type T102 = FhirpathResult<"Patient.name.given.join(', ')">;
|
|
104
|
-
export type T103 = FhirpathResult<'Patient.name.family.first().toChars()'>;
|
|
105
|
-
export type T104 = FhirpathResult<'Patient.name.given.first().toString()'>;
|
|
106
|
-
export type T105 = FhirpathResult<"Patient.name.where(given.first() = 'Peter').family">;
|
|
107
|
-
export type T106 = FhirpathResult<'Patient.name.where(use.exists() and given.exists()).given'>;
|
|
108
|
-
export type T107 = FhirpathResult<"Patient.name.exists(use = 'official')">;
|
|
109
|
-
export type T108 = FhirpathResult<'Patient.name.select(given.first()).count()'>;
|
|
110
|
-
export type T109 = FhirpathResult<"MedicationRequest.dosageInstruction.text.join('; ')">;
|
|
111
|
-
export type T110 = FhirpathResult<'Observation.component.value.ofType(Quantity).value.first().toString()'>;
|
|
112
|
-
export type T111 = FhirpathResult<'Patient.name.family.first().trim()'>;
|
|
113
|
-
export type T112 = FhirpathResult<'Patient.name.given.first().substring(0, 1)'>;
|
|
114
|
-
export type T113 = FhirpathResult<"Patient.name.family.first().replace('mers', 'm')">;
|
|
115
|
-
export type T114 = FhirpathResult<"Patient.name.family.first().matches('^Ch')">;
|
|
116
|
-
export type T115 = FhirpathResult<"Patient.name.given.first().startsWith('Pe')">;
|
|
117
|
-
export type T116 = FhirpathResult<"Patient.name.given.first().indexOf('e')">;
|
|
118
|
-
export type T117 = FhirpathResult<'Patient.name.count().toDecimal().round()'>;
|
|
119
|
-
export type T118 = FhirpathResult<'Patient.name.count().sqrt()'>;
|
|
120
|
-
export type T119 = FhirpathResult<'Patient.name.given.distinct()'>;
|
|
121
|
-
export type T120 = FhirpathResult<'Patient.name.given.skip(1).take(2)'>;
|
|
122
|
-
export type T121 = FhirpathResult<"Patient.name.given.first().split('e')">;
|
|
123
|
-
export type T122 = FhirpathResult<'Patient.name.all(use.exists())'>;
|
|
124
|
-
export type T123 = FhirpathResult<'Patient.name.given | Patient.name.family'>;
|
|
125
|
-
export type T124 = FhirpathResult<'(Patient.name.given | Patient.name.family).first()'>;
|
|
126
|
-
export type T125 = FhirpathResult<'(DiagnosticReport.effective.ofType(dateTime) | DiagnosticReport.issued).first().toString()'>;
|
|
127
|
-
export type T126 = FhirpathResult<'((Patient.name.given | Patient.name.family) | Patient.id).first()'>;
|
|
128
|
-
export type T127 = FhirpathResult<'Patient.name.select((given | family).first())'>;
|
|
129
|
-
export type T128 = FhirpathResult<'MedicationRequest.dosageInstruction.first().route.select(text | coding.display.first()).first()'>;
|
|
130
|
-
export type T129 = FhirpathResult<'%rowIndex.toString()'>;
|
|
131
|
-
export type T130 = FhirpathResult<'(%report.effective.ofType(dateTime) | %report.issued | ServiceRequest.authoredOn | ServiceRequest.occurrence.ofType(dateTime)).first().toString()'>;
|
|
132
|
-
export type T131 = FhirpathResult<'(id | %rowIndex.toString()).first()'>;
|
|
133
|
-
export type T132 = FhirpathResult<"Patient.name.where(family = 'a|b').given">;
|
|
134
|
-
export type T133 = FhirpathResult<'Patient.name.where(a.exists()).given'>;
|
|
135
|
-
export type T134 = FhirpathResult<'Patient.name.select(given.first()).count()'>;
|
|
136
|
-
//# sourceMappingURL=perf-fixture.types.d.ts.map
|
|
@@ -1 +0,0 @@
|
|
|
1
|
-
{"version":3,"file":"perf-fixture.types.d.ts","sourceRoot":"","sources":["../../src/typed/perf-fixture.types.ts"],"names":[],"mappings":"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"}
|
|
@@ -1 +0,0 @@
|
|
|
1
|
-
{"version":3,"file":"perf-fixture.types.js","sourceRoot":"","sources":["../../src/typed/perf-fixture.types.ts"],"names":[],"mappings":""}
|
|
@@ -1,143 +0,0 @@
|
|
|
1
|
-
// tsc-perf fixture: keeps roughly a hundred typed expressions in the normal
|
|
2
|
-
// typecheck run so CI reports higher type-level inference costs.
|
|
3
|
-
import type { FhirpathResult } from './infer.ts'
|
|
4
|
-
|
|
5
|
-
export type T001 = FhirpathResult<'Patient.name.given'>
|
|
6
|
-
export type T002 = FhirpathResult<'Patient.name.family'>
|
|
7
|
-
export type T003 = FhirpathResult<'Patient.birthDate'>
|
|
8
|
-
export type T004 = FhirpathResult<'Patient.active'>
|
|
9
|
-
export type T005 = FhirpathResult<'Patient.telecom.value'>
|
|
10
|
-
export type T006 = FhirpathResult<'Patient.address.city'>
|
|
11
|
-
export type T007 = FhirpathResult<'Patient.identifier.value'>
|
|
12
|
-
export type T008 = FhirpathResult<'Patient.contact.name.family'>
|
|
13
|
-
export type T009 = FhirpathResult<'Patient.name.first().given'>
|
|
14
|
-
export type T010 = FhirpathResult<'Patient.name.exists()'>
|
|
15
|
-
export type T011 = FhirpathResult<'Patient.name.count()'>
|
|
16
|
-
export type T012 = FhirpathResult<"Patient.name.where(use = 'official').family">
|
|
17
|
-
export type T013 = FhirpathResult<'Patient.name.select(given)'>
|
|
18
|
-
export type T014 = FhirpathResult<'Patient.deceased'>
|
|
19
|
-
export type T015 = FhirpathResult<'Patient.gender'>
|
|
20
|
-
export type T016 = FhirpathResult<'Patient.maritalStatus.coding.code'>
|
|
21
|
-
export type T017 = FhirpathResult<'Patient.communication.language.text'>
|
|
22
|
-
export type T018 = FhirpathResult<'Patient.name[0].family'>
|
|
23
|
-
export type T019 = FhirpathResult<'Patient.managingOrganization.reference'>
|
|
24
|
-
export type T020 = FhirpathResult<'Patient.link.other.reference'>
|
|
25
|
-
export type T021 = FhirpathResult<'Observation.status'>
|
|
26
|
-
export type T022 = FhirpathResult<'Observation.code.coding.system'>
|
|
27
|
-
export type T023 = FhirpathResult<'Observation.value.ofType(Quantity).unit'>
|
|
28
|
-
export type T024 = FhirpathResult<'Observation.issued'>
|
|
29
|
-
export type T025 = FhirpathResult<'Observation.category.coding.code'>
|
|
30
|
-
export type T026 = FhirpathResult<'Observation.component.code.text'>
|
|
31
|
-
export type T027 = FhirpathResult<'Observation.subject.reference'>
|
|
32
|
-
export type T028 = FhirpathResult<'Observation.referenceRange.low.value'>
|
|
33
|
-
export type T029 = FhirpathResult<'Observation.interpretation.text'>
|
|
34
|
-
export type T030 = FhirpathResult<'Observation.effective'>
|
|
35
|
-
export type T031 = FhirpathResult<'Bundle.entry.fullUrl'>
|
|
36
|
-
export type T032 = FhirpathResult<'Bundle.type'>
|
|
37
|
-
export type T033 = FhirpathResult<'Bundle.total'>
|
|
38
|
-
export type T034 = FhirpathResult<'Bundle.entry.request.method'>
|
|
39
|
-
export type T035 = FhirpathResult<'Bundle.link.url'>
|
|
40
|
-
export type T036 = FhirpathResult<'Encounter.status'>
|
|
41
|
-
export type T037 = FhirpathResult<'Encounter.class.code'>
|
|
42
|
-
export type T038 = FhirpathResult<'Encounter.period.start'>
|
|
43
|
-
export type T039 = FhirpathResult<'Encounter.participant.individual.reference'>
|
|
44
|
-
export type T040 = FhirpathResult<'Encounter.reasonCode.text'>
|
|
45
|
-
export type T041 = FhirpathResult<'Encounter.location.location.display'>
|
|
46
|
-
export type T042 = FhirpathResult<'MedicationRequest.status'>
|
|
47
|
-
export type T043 = FhirpathResult<'MedicationRequest.intent'>
|
|
48
|
-
export type T044 = FhirpathResult<'MedicationRequest.medication'>
|
|
49
|
-
export type T045 = FhirpathResult<'MedicationRequest.dosageInstruction.text'>
|
|
50
|
-
export type T046 = FhirpathResult<'MedicationRequest.dispenseRequest.quantity.value'>
|
|
51
|
-
export type T047 = FhirpathResult<'MedicationRequest.authoredOn'>
|
|
52
|
-
export type T048 = FhirpathResult<'MedicationRequest.requester.display'>
|
|
53
|
-
export type T049 = FhirpathResult<'Condition.clinicalStatus.coding.code'>
|
|
54
|
-
export type T050 = FhirpathResult<'Condition.severity.text'>
|
|
55
|
-
export type T051 = FhirpathResult<'Condition.onset'>
|
|
56
|
-
export type T052 = FhirpathResult<'Condition.recordedDate'>
|
|
57
|
-
export type T053 = FhirpathResult<'Condition.bodySite.coding.display'>
|
|
58
|
-
export type T054 = FhirpathResult<'Condition.stage.summary.text'>
|
|
59
|
-
export type T055 = FhirpathResult<'DiagnosticReport.status'>
|
|
60
|
-
export type T056 = FhirpathResult<'DiagnosticReport.conclusion'>
|
|
61
|
-
export type T057 = FhirpathResult<'DiagnosticReport.result.reference'>
|
|
62
|
-
export type T058 = FhirpathResult<'DiagnosticReport.issued'>
|
|
63
|
-
export type T059 = FhirpathResult<'DiagnosticReport.category.text'>
|
|
64
|
-
export type T060 = FhirpathResult<'AllergyIntolerance.clinicalStatus.coding.code'>
|
|
65
|
-
export type T061 = FhirpathResult<'AllergyIntolerance.criticality'>
|
|
66
|
-
export type T062 = FhirpathResult<'AllergyIntolerance.reaction.severity'>
|
|
67
|
-
export type T063 = FhirpathResult<'AllergyIntolerance.reaction.manifestation.text'>
|
|
68
|
-
export type T064 = FhirpathResult<'AllergyIntolerance.onset'>
|
|
69
|
-
export type T065 = FhirpathResult<'Immunization.status'>
|
|
70
|
-
export type T066 = FhirpathResult<'Immunization.vaccineCode.text'>
|
|
71
|
-
export type T067 = FhirpathResult<'Immunization.occurrence'>
|
|
72
|
-
export type T068 = FhirpathResult<'Immunization.lotNumber'>
|
|
73
|
-
export type T069 = FhirpathResult<'Immunization.doseQuantity.value'>
|
|
74
|
-
export type T070 = FhirpathResult<'Appointment.status'>
|
|
75
|
-
export type T071 = FhirpathResult<'Appointment.start'>
|
|
76
|
-
export type T072 = FhirpathResult<'Appointment.end'>
|
|
77
|
-
export type T073 = FhirpathResult<'Appointment.participant.actor.display'>
|
|
78
|
-
export type T074 = FhirpathResult<'Appointment.description'>
|
|
79
|
-
export type T075 = FhirpathResult<'CarePlan.status'>
|
|
80
|
-
export type T076 = FhirpathResult<'CarePlan.intent'>
|
|
81
|
-
export type T077 = FhirpathResult<'CarePlan.title'>
|
|
82
|
-
export type T078 = FhirpathResult<'CarePlan.activity.detail.status'>
|
|
83
|
-
export type T079 = FhirpathResult<'CarePlan.period.end'>
|
|
84
|
-
export type T080 = FhirpathResult<'Procedure.status'>
|
|
85
|
-
export type T081 = FhirpathResult<'Procedure.code.text'>
|
|
86
|
-
export type T082 = FhirpathResult<'Procedure.performed'>
|
|
87
|
-
export type T083 = FhirpathResult<'Procedure.outcome.text'>
|
|
88
|
-
export type T084 = FhirpathResult<'Procedure.performer.actor.display'>
|
|
89
|
-
export type T085 = FhirpathResult<'Questionnaire.status'>
|
|
90
|
-
export type T086 = FhirpathResult<'Questionnaire.title'>
|
|
91
|
-
export type T087 = FhirpathResult<'Questionnaire.item.text'>
|
|
92
|
-
export type T088 = FhirpathResult<'Questionnaire.item.item.linkId'>
|
|
93
|
-
export type T089 = FhirpathResult<'Questionnaire.item.type'>
|
|
94
|
-
export type T090 = FhirpathResult<'QuestionnaireResponse.status'>
|
|
95
|
-
export type T091 = FhirpathResult<'QuestionnaireResponse.item.answer.value'>
|
|
96
|
-
export type T092 = FhirpathResult<'QuestionnaireResponse.item.linkId'>
|
|
97
|
-
export type T093 = FhirpathResult<'QuestionnaireResponse.authored'>
|
|
98
|
-
export type T094 = FhirpathResult<'ValueSet.status'>
|
|
99
|
-
export type T095 = FhirpathResult<'ValueSet.url'>
|
|
100
|
-
export type T096 = FhirpathResult<'ValueSet.expansion.contains.code'>
|
|
101
|
-
export type T097 = FhirpathResult<'ValueSet.compose.include.system'>
|
|
102
|
-
export type T098 = FhirpathResult<"Observation.value.ofType(Quantity).toQuantity('kg').value">
|
|
103
|
-
export type T099 = FhirpathResult<"Observation.value.ofType(Quantity).toQuantity('kg.m/s2').value">
|
|
104
|
-
export type T100 = FhirpathResult<'Patient.birthDate.toDate()'>
|
|
105
|
-
export type T101 = FhirpathResult<'Patient.birthDate.convertsToDateTime()'>
|
|
106
|
-
export type T102 = FhirpathResult<"Patient.name.given.join(', ')">
|
|
107
|
-
export type T103 = FhirpathResult<'Patient.name.family.first().toChars()'>
|
|
108
|
-
export type T104 = FhirpathResult<'Patient.name.given.first().toString()'>
|
|
109
|
-
export type T105 = FhirpathResult<"Patient.name.where(given.first() = 'Peter').family">
|
|
110
|
-
export type T106 = FhirpathResult<'Patient.name.where(use.exists() and given.exists()).given'>
|
|
111
|
-
export type T107 = FhirpathResult<"Patient.name.exists(use = 'official')">
|
|
112
|
-
export type T108 = FhirpathResult<'Patient.name.select(given.first()).count()'>
|
|
113
|
-
export type T109 = FhirpathResult<"MedicationRequest.dosageInstruction.text.join('; ')">
|
|
114
|
-
export type T110 = FhirpathResult<'Observation.component.value.ofType(Quantity).value.first().toString()'>
|
|
115
|
-
// Fixed-return batch 2 (string/boolean/numeric) and identity functions.
|
|
116
|
-
export type T111 = FhirpathResult<'Patient.name.family.first().trim()'>
|
|
117
|
-
export type T112 = FhirpathResult<'Patient.name.given.first().substring(0, 1)'>
|
|
118
|
-
export type T113 = FhirpathResult<"Patient.name.family.first().replace('mers', 'm')">
|
|
119
|
-
export type T114 = FhirpathResult<"Patient.name.family.first().matches('^Ch')">
|
|
120
|
-
export type T115 = FhirpathResult<"Patient.name.given.first().startsWith('Pe')">
|
|
121
|
-
export type T116 = FhirpathResult<"Patient.name.given.first().indexOf('e')">
|
|
122
|
-
export type T117 = FhirpathResult<'Patient.name.count().toDecimal().round()'>
|
|
123
|
-
export type T118 = FhirpathResult<'Patient.name.count().sqrt()'>
|
|
124
|
-
export type T119 = FhirpathResult<'Patient.name.given.distinct()'>
|
|
125
|
-
export type T120 = FhirpathResult<'Patient.name.given.skip(1).take(2)'>
|
|
126
|
-
export type T121 = FhirpathResult<"Patient.name.given.first().split('e')">
|
|
127
|
-
export type T122 = FhirpathResult<'Patient.name.all(use.exists())'>
|
|
128
|
-
// Union groups, top-level unions, and %var roots.
|
|
129
|
-
export type T123 = FhirpathResult<'Patient.name.given | Patient.name.family'>
|
|
130
|
-
export type T124 = FhirpathResult<'(Patient.name.given | Patient.name.family).first()'>
|
|
131
|
-
export type T125 =
|
|
132
|
-
FhirpathResult<'(DiagnosticReport.effective.ofType(dateTime) | DiagnosticReport.issued).first().toString()'>
|
|
133
|
-
export type T126 = FhirpathResult<'((Patient.name.given | Patient.name.family) | Patient.id).first()'>
|
|
134
|
-
export type T127 = FhirpathResult<'Patient.name.select((given | family).first())'>
|
|
135
|
-
export type T128 =
|
|
136
|
-
FhirpathResult<'MedicationRequest.dosageInstruction.first().route.select(text | coding.display.first()).first()'>
|
|
137
|
-
export type T129 = FhirpathResult<'%rowIndex.toString()'>
|
|
138
|
-
export type T130 =
|
|
139
|
-
FhirpathResult<'(%report.effective.ofType(dateTime) | %report.issued | ServiceRequest.authoredOn | ServiceRequest.occurrence.ofType(dateTime)).first().toString()'>
|
|
140
|
-
export type T131 = FhirpathResult<'(id | %rowIndex.toString()).first()'>
|
|
141
|
-
export type T132 = FhirpathResult<"Patient.name.where(family = 'a|b').given">
|
|
142
|
-
export type T133 = FhirpathResult<'Patient.name.where(a.exists()).given'>
|
|
143
|
-
export type T134 = FhirpathResult<'Patient.name.select(given.first()).count()'>
|