@metriport/api-sdk 7.19.1-alpha.0 → 8.0.0-alpha.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.
|
@@ -11,15 +11,15 @@ export declare const resourceSchema: z.ZodArray<z.ZodEnum<["Account", "AllergyIn
|
|
|
11
11
|
export declare const consolidationConversionType: readonly ["html", "pdf", "json"];
|
|
12
12
|
export type ConsolidationConversionType = (typeof consolidationConversionType)[number];
|
|
13
13
|
export declare const consolidatedFilterSchema: z.ZodObject<{
|
|
14
|
-
resources: z.ZodString
|
|
14
|
+
resources: z.ZodOptional<z.ZodString>;
|
|
15
15
|
dateFrom: z.ZodOptional<z.ZodDate>;
|
|
16
16
|
dateTo: z.ZodOptional<z.ZodDate>;
|
|
17
17
|
}, "strip", z.ZodTypeAny, {
|
|
18
|
-
resources
|
|
18
|
+
resources?: string | undefined;
|
|
19
19
|
dateFrom?: Date | undefined;
|
|
20
20
|
dateTo?: Date | undefined;
|
|
21
21
|
}, {
|
|
22
|
-
resources
|
|
22
|
+
resources?: string | undefined;
|
|
23
23
|
dateFrom?: Date | undefined;
|
|
24
24
|
dateTo?: Date | undefined;
|
|
25
25
|
}>;
|
|
@@ -28,21 +28,21 @@ export declare const consolidatedCountSchema: z.ZodObject<{
|
|
|
28
28
|
total: z.ZodNumber;
|
|
29
29
|
resources: z.ZodRecord<z.ZodString, z.ZodNumber>;
|
|
30
30
|
filter: z.ZodObject<{
|
|
31
|
-
resources: z.ZodString
|
|
31
|
+
resources: z.ZodOptional<z.ZodString>;
|
|
32
32
|
dateFrom: z.ZodOptional<z.ZodDate>;
|
|
33
33
|
dateTo: z.ZodOptional<z.ZodDate>;
|
|
34
34
|
}, "strip", z.ZodTypeAny, {
|
|
35
|
-
resources
|
|
35
|
+
resources?: string | undefined;
|
|
36
36
|
dateFrom?: Date | undefined;
|
|
37
37
|
dateTo?: Date | undefined;
|
|
38
38
|
}, {
|
|
39
|
-
resources
|
|
39
|
+
resources?: string | undefined;
|
|
40
40
|
dateFrom?: Date | undefined;
|
|
41
41
|
dateTo?: Date | undefined;
|
|
42
42
|
}>;
|
|
43
43
|
}, "strip", z.ZodTypeAny, {
|
|
44
44
|
filter: {
|
|
45
|
-
resources
|
|
45
|
+
resources?: string | undefined;
|
|
46
46
|
dateFrom?: Date | undefined;
|
|
47
47
|
dateTo?: Date | undefined;
|
|
48
48
|
};
|
|
@@ -50,7 +50,7 @@ export declare const consolidatedCountSchema: z.ZodObject<{
|
|
|
50
50
|
resources: Record<string, number>;
|
|
51
51
|
}, {
|
|
52
52
|
filter: {
|
|
53
|
-
resources
|
|
53
|
+
resources?: string | undefined;
|
|
54
54
|
dateFrom?: Date | undefined;
|
|
55
55
|
dateTo?: Date | undefined;
|
|
56
56
|
};
|
|
@@ -81,24 +81,24 @@ export declare const consolidatedQuerySchema: z.ZodObject<{
|
|
|
81
81
|
dateTo: z.ZodOptional<z.ZodString>;
|
|
82
82
|
conversionType: z.ZodOptional<z.ZodDefault<z.ZodEnum<["html", "pdf", "json"]>>>;
|
|
83
83
|
requestId: z.ZodString;
|
|
84
|
-
startedAt: z.
|
|
84
|
+
startedAt: z.ZodDate;
|
|
85
85
|
status: z.ZodEnum<["processing", "completed", "failed"]>;
|
|
86
86
|
}, "strip", z.ZodTypeAny, {
|
|
87
87
|
status: "processing" | "completed" | "failed";
|
|
88
88
|
requestId: string;
|
|
89
|
+
startedAt: Date;
|
|
89
90
|
resources?: ("Account" | "AllergyIntolerance" | "Appointment" | "AppointmentResponse" | "AuditEvent" | "Basic" | "BodyStructure" | "CarePlan" | "CareTeam" | "ChargeItem" | "Claim" | "ClaimResponse" | "ClinicalImpression" | "Communication" | "CommunicationRequest" | "Composition" | "Condition" | "Consent" | "Contract" | "Coverage" | "CoverageEligibilityRequest" | "CoverageEligibilityResponse" | "DetectedIssue" | "Device" | "DeviceRequest" | "DeviceUseStatement" | "DiagnosticReport" | "DocumentManifest" | "DocumentReference" | "Encounter" | "EnrollmentRequest" | "EpisodeOfCare" | "ExplanationOfBenefit" | "FamilyMemberHistory" | "Flag" | "Goal" | "GuidanceResponse" | "ImagingStudy" | "Immunization" | "ImmunizationEvaluation" | "ImmunizationRecommendation" | "Invoice" | "List" | "MeasureReport" | "Media" | "MedicationAdministration" | "MedicationDispense" | "MedicationRequest" | "MedicationStatement" | "MolecularSequence" | "NutritionOrder" | "Observation" | "Person" | "Procedure" | "Provenance" | "QuestionnaireResponse" | "RelatedPerson" | "RequestGroup" | "ResearchSubject" | "RiskAssessment" | "ServiceRequest" | "Specimen" | "AdverseEvent" | "Task" | "Practitioner")[] | undefined;
|
|
90
91
|
dateFrom?: string | undefined;
|
|
91
92
|
dateTo?: string | undefined;
|
|
92
93
|
conversionType?: "html" | "pdf" | "json" | undefined;
|
|
93
|
-
startedAt?: Date | undefined;
|
|
94
94
|
}, {
|
|
95
95
|
status: "processing" | "completed" | "failed";
|
|
96
96
|
requestId: string;
|
|
97
|
+
startedAt: Date;
|
|
97
98
|
resources?: ("Account" | "AllergyIntolerance" | "Appointment" | "AppointmentResponse" | "AuditEvent" | "Basic" | "BodyStructure" | "CarePlan" | "CareTeam" | "ChargeItem" | "Claim" | "ClaimResponse" | "ClinicalImpression" | "Communication" | "CommunicationRequest" | "Composition" | "Condition" | "Consent" | "Contract" | "Coverage" | "CoverageEligibilityRequest" | "CoverageEligibilityResponse" | "DetectedIssue" | "Device" | "DeviceRequest" | "DeviceUseStatement" | "DiagnosticReport" | "DocumentManifest" | "DocumentReference" | "Encounter" | "EnrollmentRequest" | "EpisodeOfCare" | "ExplanationOfBenefit" | "FamilyMemberHistory" | "Flag" | "Goal" | "GuidanceResponse" | "ImagingStudy" | "Immunization" | "ImmunizationEvaluation" | "ImmunizationRecommendation" | "Invoice" | "List" | "MeasureReport" | "Media" | "MedicationAdministration" | "MedicationDispense" | "MedicationRequest" | "MedicationStatement" | "MolecularSequence" | "NutritionOrder" | "Observation" | "Person" | "Procedure" | "Provenance" | "QuestionnaireResponse" | "RelatedPerson" | "RequestGroup" | "ResearchSubject" | "RiskAssessment" | "ServiceRequest" | "Specimen" | "AdverseEvent" | "Task" | "Practitioner")[] | undefined;
|
|
98
99
|
dateFrom?: string | undefined;
|
|
99
100
|
dateTo?: string | undefined;
|
|
100
101
|
conversionType?: "html" | "pdf" | "json" | undefined;
|
|
101
|
-
startedAt?: Date | undefined;
|
|
102
102
|
}>;
|
|
103
103
|
export type ConsolidatedQuery = z.infer<typeof consolidatedQuerySchema>;
|
|
104
104
|
//# sourceMappingURL=fhir.d.ts.map
|
|
@@ -77,7 +77,7 @@ exports.resourceTypeForConsolidation = [
|
|
|
77
77
|
exports.resourceSchema = zod_1.z.array(zod_1.z.enum(exports.resourceTypeForConsolidation));
|
|
78
78
|
exports.consolidationConversionType = ["html", "pdf", "json"];
|
|
79
79
|
exports.consolidatedFilterSchema = zod_1.z.object({
|
|
80
|
-
resources: zod_1.z.string(),
|
|
80
|
+
resources: zod_1.z.string().optional(),
|
|
81
81
|
dateFrom: zod_1.z.date().optional(),
|
|
82
82
|
dateTo: zod_1.z.date().optional(),
|
|
83
83
|
});
|
|
@@ -86,7 +86,7 @@ exports.consolidatedCountSchema = zod_1.z.object({
|
|
|
86
86
|
resources: zod_1.z.record(zod_1.z.number()),
|
|
87
87
|
filter: exports.consolidatedFilterSchema,
|
|
88
88
|
});
|
|
89
|
-
exports.getConsolidatedFiltersSchema =
|
|
89
|
+
exports.getConsolidatedFiltersSchema = exports.consolidatedFilterSchema.extend({
|
|
90
90
|
resources: zod_1.z.enum(exports.resourceTypeForConsolidation).array().optional(),
|
|
91
91
|
dateFrom: zod_1.z.string().optional(),
|
|
92
92
|
dateTo: zod_1.z.string().optional(),
|
|
@@ -94,7 +94,7 @@ exports.getConsolidatedFiltersSchema = zod_1.z.object({
|
|
|
94
94
|
});
|
|
95
95
|
exports.consolidatedQuerySchema = exports.getConsolidatedFiltersSchema.extend({
|
|
96
96
|
requestId: zod_1.z.string(),
|
|
97
|
-
startedAt: zod_1.z.date()
|
|
97
|
+
startedAt: zod_1.z.date(),
|
|
98
98
|
status: patient_1.queryStatusSchema,
|
|
99
99
|
});
|
|
100
100
|
//# sourceMappingURL=fhir.js.map
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"fhir.js","sourceRoot":"","sources":["../../../src/medical/models/fhir.ts"],"names":[],"mappings":";;;AAAA,6BAAwB;AACxB,uCAA8C;AAEjC,QAAA,4BAA4B,GAAG;IAC1C,SAAS;IACT,oBAAoB;IACpB,aAAa;IACb,qBAAqB;IACrB,YAAY;IACZ,OAAO;IACP,eAAe;IACf,UAAU;IACV,UAAU;IACV,YAAY;IACZ,OAAO;IACP,eAAe;IACf,oBAAoB;IACpB,eAAe;IACf,sBAAsB;IACtB,aAAa;IACb,WAAW;IACX,SAAS;IACT,UAAU;IACV,UAAU;IACV,4BAA4B;IAC5B,6BAA6B;IAC7B,eAAe;IACf,QAAQ;IACR,eAAe;IACf,oBAAoB;IACpB,kBAAkB;IAClB,kBAAkB;IAClB,mBAAmB;IACnB,WAAW;IACX,mBAAmB;IACnB,eAAe;IACf,sBAAsB;IACtB,qBAAqB;IACrB,MAAM;IACN,MAAM;IACN,kBAAkB;IAClB,cAAc;IACd,cAAc;IACd,wBAAwB;IACxB,4BAA4B;IAC5B,SAAS;IACT,MAAM;IACN,eAAe;IACf,OAAO;IACP,0BAA0B;IAC1B,oBAAoB;IACpB,mBAAmB;IACnB,qBAAqB;IACrB,mBAAmB;IACnB,gBAAgB;IAChB,aAAa;IACb,QAAQ;IACR,WAAW;IACX,YAAY;IACZ,uBAAuB;IACvB,eAAe;IACf,cAAc;IACd,iBAAiB;IACjB,gBAAgB;IAChB,gBAAgB;IAChB,UAAU;CACF,CAAC;AAGE,QAAA,4BAA4B,GAAG,CAAC,cAAc,EAAE,MAAM,CAAU,CAAC;AAGjE,QAAA,gBAAgB,GAAG,CAAC,cAAc,CAAU,CAAC;AAG7C,QAAA,4BAA4B,GAAG;IAC1C,GAAG,oCAA4B;IAC/B,GAAG,oCAA4B;IAC/B,GAAG,wBAAgB;CACX,CAAC;AAIE,QAAA,cAAc,GAAG,OAAC,CAAC,KAAK,CAAC,OAAC,CAAC,IAAI,CAAC,oCAA4B,CAAC,CAAC,CAAC;AAE/D,QAAA,2BAA2B,GAAG,CAAC,MAAM,EAAE,KAAK,EAAE,MAAM,CAAU,CAAC;AAG/D,QAAA,wBAAwB,GAAG,OAAC,CAAC,MAAM,CAAC;IAC/C,SAAS,EAAE,OAAC,CAAC,MAAM,EAAE;
|
|
1
|
+
{"version":3,"file":"fhir.js","sourceRoot":"","sources":["../../../src/medical/models/fhir.ts"],"names":[],"mappings":";;;AAAA,6BAAwB;AACxB,uCAA8C;AAEjC,QAAA,4BAA4B,GAAG;IAC1C,SAAS;IACT,oBAAoB;IACpB,aAAa;IACb,qBAAqB;IACrB,YAAY;IACZ,OAAO;IACP,eAAe;IACf,UAAU;IACV,UAAU;IACV,YAAY;IACZ,OAAO;IACP,eAAe;IACf,oBAAoB;IACpB,eAAe;IACf,sBAAsB;IACtB,aAAa;IACb,WAAW;IACX,SAAS;IACT,UAAU;IACV,UAAU;IACV,4BAA4B;IAC5B,6BAA6B;IAC7B,eAAe;IACf,QAAQ;IACR,eAAe;IACf,oBAAoB;IACpB,kBAAkB;IAClB,kBAAkB;IAClB,mBAAmB;IACnB,WAAW;IACX,mBAAmB;IACnB,eAAe;IACf,sBAAsB;IACtB,qBAAqB;IACrB,MAAM;IACN,MAAM;IACN,kBAAkB;IAClB,cAAc;IACd,cAAc;IACd,wBAAwB;IACxB,4BAA4B;IAC5B,SAAS;IACT,MAAM;IACN,eAAe;IACf,OAAO;IACP,0BAA0B;IAC1B,oBAAoB;IACpB,mBAAmB;IACnB,qBAAqB;IACrB,mBAAmB;IACnB,gBAAgB;IAChB,aAAa;IACb,QAAQ;IACR,WAAW;IACX,YAAY;IACZ,uBAAuB;IACvB,eAAe;IACf,cAAc;IACd,iBAAiB;IACjB,gBAAgB;IAChB,gBAAgB;IAChB,UAAU;CACF,CAAC;AAGE,QAAA,4BAA4B,GAAG,CAAC,cAAc,EAAE,MAAM,CAAU,CAAC;AAGjE,QAAA,gBAAgB,GAAG,CAAC,cAAc,CAAU,CAAC;AAG7C,QAAA,4BAA4B,GAAG;IAC1C,GAAG,oCAA4B;IAC/B,GAAG,oCAA4B;IAC/B,GAAG,wBAAgB;CACX,CAAC;AAIE,QAAA,cAAc,GAAG,OAAC,CAAC,KAAK,CAAC,OAAC,CAAC,IAAI,CAAC,oCAA4B,CAAC,CAAC,CAAC;AAE/D,QAAA,2BAA2B,GAAG,CAAC,MAAM,EAAE,KAAK,EAAE,MAAM,CAAU,CAAC;AAG/D,QAAA,wBAAwB,GAAG,OAAC,CAAC,MAAM,CAAC;IAC/C,SAAS,EAAE,OAAC,CAAC,MAAM,EAAE,CAAC,QAAQ,EAAE;IAChC,QAAQ,EAAE,OAAC,CAAC,IAAI,EAAE,CAAC,QAAQ,EAAE;IAC7B,MAAM,EAAE,OAAC,CAAC,IAAI,EAAE,CAAC,QAAQ,EAAE;CAC5B,CAAC,CAAC;AAGU,QAAA,uBAAuB,GAAG,OAAC,CAAC,MAAM,CAAC;IAC9C,KAAK,EAAE,OAAC,CAAC,MAAM,EAAE;IACjB,SAAS,EAAE,OAAC,CAAC,MAAM,CAAC,OAAC,CAAC,MAAM,EAAE,CAAC;IAC/B,MAAM,EAAE,gCAAwB;CACjC,CAAC,CAAC;AAIU,QAAA,4BAA4B,GAAG,gCAAwB,CAAC,MAAM,CAAC;IAC1E,SAAS,EAAE,OAAC,CAAC,IAAI,CAAC,oCAA4B,CAAC,CAAC,KAAK,EAAE,CAAC,QAAQ,EAAE;IAClE,QAAQ,EAAE,OAAC,CAAC,MAAM,EAAE,CAAC,QAAQ,EAAE;IAC/B,MAAM,EAAE,OAAC,CAAC,MAAM,EAAE,CAAC,QAAQ,EAAE;IAC7B,cAAc,EAAE,OAAC,CAAC,IAAI,CAAC,mCAA2B,CAAC,CAAC,OAAO,CAAC,MAAM,CAAC,CAAC,QAAQ,EAAE;CAC/E,CAAC,CAAC;AAIU,QAAA,uBAAuB,GAAG,oCAA4B,CAAC,MAAM,CAAC;IACzE,SAAS,EAAE,OAAC,CAAC,MAAM,EAAE;IACrB,SAAS,EAAE,OAAC,CAAC,IAAI,EAAE;IACnB,MAAM,EAAE,2BAAiB;CAC1B,CAAC,CAAC"}
|
|
@@ -1926,12 +1926,10 @@ export declare const patientListSchema: z.ZodObject<{
|
|
|
1926
1926
|
export declare const queryStatusSchema: z.ZodEnum<["processing", "completed", "failed"]>;
|
|
1927
1927
|
export type QueryStatus = z.infer<typeof queryStatusSchema>;
|
|
1928
1928
|
export type GetConsolidatedQueryProgressResponse = {
|
|
1929
|
+
/** @deprecated status should no longer be used. Refer to queries in the consolidatedQueries array instead. */
|
|
1929
1930
|
status: QueryStatus;
|
|
1930
1931
|
queries: ConsolidatedQuery[] | null;
|
|
1931
1932
|
message?: string;
|
|
1932
1933
|
};
|
|
1933
|
-
export type StartConsolidatedQueryProgressResponse =
|
|
1934
|
-
query: ConsolidatedQuery;
|
|
1935
|
-
message?: string;
|
|
1936
|
-
};
|
|
1934
|
+
export type StartConsolidatedQueryProgressResponse = ConsolidatedQuery;
|
|
1937
1935
|
//# sourceMappingURL=patient.d.ts.map
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"patient.d.ts","sourceRoot":"","sources":["../../../src/medical/models/patient.ts"],"names":[],"mappings":"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
|
|
1
|
+
{"version":3,"file":"patient.d.ts","sourceRoot":"","sources":["../../../src/medical/models/patient.ts"],"names":[],"mappings":"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"}
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@metriport/api-sdk",
|
|
3
|
-
"version": "
|
|
3
|
+
"version": "8.0.0-alpha.0",
|
|
4
4
|
"description": "Metriport helps you access and manage health and medical data, through a single open source API.",
|
|
5
5
|
"author": "Metriport Inc. <contact@metriport.com>",
|
|
6
6
|
"homepage": "https://metriport.com/",
|
|
@@ -75,5 +75,5 @@
|
|
|
75
75
|
"ts-jest": "29.1.1",
|
|
76
76
|
"typescript": "^4.9.5"
|
|
77
77
|
},
|
|
78
|
-
"gitHead": "
|
|
78
|
+
"gitHead": "20b7a67fea0c93f318e36a9d51c6466dd53ff76e"
|
|
79
79
|
}
|