@reasonhealth/fhir-zod 1.0.6 → 1.0.7
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/dist/r4.js +6 -1
- package/dist/r4.js.map +3 -3
- package/dist/r4b.js +6 -1
- package/dist/r4b.js.map +3 -3
- package/dist/r5.js +6 -1
- package/dist/r5.js.map +3 -3
- package/package.json +1 -1
- package/src/r4.ts +15 -0
- package/src/r4b.ts +15 -0
- package/src/r5.ts +15 -0
package/dist/r4.js
CHANGED
|
@@ -31,6 +31,7 @@ var MetaSchema = _ElementBase.extend({
|
|
|
31
31
|
tag: z.array(CodingSchema).optional()
|
|
32
32
|
});
|
|
33
33
|
var ResourceSchema = z.object({
|
|
34
|
+
resourceType: z.string(),
|
|
34
35
|
id: z.string().optional(),
|
|
35
36
|
_id: ElementSchema.optional(),
|
|
36
37
|
meta: MetaSchema.optional(),
|
|
@@ -5175,6 +5176,7 @@ var MedicationSchema = DomainResourceSchema.extend({
|
|
|
5175
5176
|
ingredient: z.array(MedicationIngredientSchema).optional(),
|
|
5176
5177
|
batch: MedicationBatchSchema.optional()
|
|
5177
5178
|
});
|
|
5179
|
+
var SimpleQuantitySchema = QuantitySchema.extend({});
|
|
5178
5180
|
var DiagnosticReportMediaSchema = _BackboneElementBase.extend({
|
|
5179
5181
|
comment: z.string().optional(),
|
|
5180
5182
|
_comment: ElementSchema.optional(),
|
|
@@ -8876,6 +8878,7 @@ var MedicinalProductContraindicationSchema = DomainResourceSchema.extend({
|
|
|
8876
8878
|
otherTherapy: z.array(MedicinalProductContraindicationOtherTherapySchema).optional(),
|
|
8877
8879
|
population: z.array(PopulationSchema).optional()
|
|
8878
8880
|
});
|
|
8881
|
+
var MoneyQuantitySchema = QuantitySchema.extend({});
|
|
8879
8882
|
var ObservationReferenceRangeSchema = z.lazy(() => _BackboneElementBase.extend({
|
|
8880
8883
|
low: QuantitySchema.optional(),
|
|
8881
8884
|
high: QuantitySchema.optional(),
|
|
@@ -9368,6 +9371,7 @@ export {
|
|
|
9368
9371
|
SpecimenContainerSchema,
|
|
9369
9372
|
SpecimenCollectionSchema,
|
|
9370
9373
|
SlotSchema,
|
|
9374
|
+
SimpleQuantitySchema,
|
|
9371
9375
|
SignatureSchema,
|
|
9372
9376
|
ServiceRequestSchema,
|
|
9373
9377
|
SearchParameterSchema,
|
|
@@ -9472,6 +9476,7 @@ export {
|
|
|
9472
9476
|
NamingSystemUniqueIdSchema,
|
|
9473
9477
|
NamingSystemSchema,
|
|
9474
9478
|
MoneySchema,
|
|
9479
|
+
MoneyQuantitySchema,
|
|
9475
9480
|
MolecularSequenceVariantSchema,
|
|
9476
9481
|
MolecularSequenceStructureVariantSchema,
|
|
9477
9482
|
MolecularSequenceStructureVariantOuterSchema,
|
|
@@ -9899,5 +9904,5 @@ export {
|
|
|
9899
9904
|
AccountCoverageSchema
|
|
9900
9905
|
};
|
|
9901
9906
|
|
|
9902
|
-
//# debugId=
|
|
9907
|
+
//# debugId=F6FB6557EEAE2AB464756E2164756E21
|
|
9903
9908
|
//# sourceMappingURL=r4.js.map
|