@metriport/commonwell-sdk 0.30.0-alpha.1

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 (135) hide show
  1. package/LICENSE +21 -0
  2. package/README.md +64 -0
  3. package/dist/__tests__/env-setup.d.ts +2 -0
  4. package/dist/__tests__/env-setup.d.ts.map +1 -0
  5. package/dist/__tests__/env-setup.js +35 -0
  6. package/dist/__tests__/env-setup.js.map +1 -0
  7. package/dist/client/common.d.ts +39 -0
  8. package/dist/client/common.d.ts.map +1 -0
  9. package/dist/client/common.js +15 -0
  10. package/dist/client/common.js.map +1 -0
  11. package/dist/client/commonwell-api.d.ts +103 -0
  12. package/dist/client/commonwell-api.d.ts.map +1 -0
  13. package/dist/client/commonwell-api.js +3 -0
  14. package/dist/client/commonwell-api.js.map +1 -0
  15. package/dist/client/commonwell-base.d.ts +47 -0
  16. package/dist/client/commonwell-base.d.ts.map +1 -0
  17. package/dist/client/commonwell-base.js +105 -0
  18. package/dist/client/commonwell-base.js.map +1 -0
  19. package/dist/client/commonwell-member-api.d.ts +29 -0
  20. package/dist/client/commonwell-member-api.d.ts.map +1 -0
  21. package/dist/client/commonwell-member-api.js +3 -0
  22. package/dist/client/commonwell-member-api.js.map +1 -0
  23. package/dist/client/commonwell-member.d.ts +168 -0
  24. package/dist/client/commonwell-member.d.ts.map +1 -0
  25. package/dist/client/commonwell-member.js +349 -0
  26. package/dist/client/commonwell-member.js.map +1 -0
  27. package/dist/client/commonwell.d.ts +245 -0
  28. package/dist/client/commonwell.d.ts.map +1 -0
  29. package/dist/client/commonwell.js +502 -0
  30. package/dist/client/commonwell.js.map +1 -0
  31. package/dist/common/__tests__/util.test.d.ts +2 -0
  32. package/dist/common/__tests__/util.test.d.ts.map +1 -0
  33. package/dist/common/__tests__/util.test.js +51 -0
  34. package/dist/common/__tests__/util.test.js.map +1 -0
  35. package/dist/common/__tests__/validate-npi.test.d.ts +2 -0
  36. package/dist/common/__tests__/validate-npi.test.d.ts.map +1 -0
  37. package/dist/common/__tests__/validate-npi.test.js +44 -0
  38. package/dist/common/__tests__/validate-npi.test.js.map +1 -0
  39. package/dist/common/certificate.d.ts +3 -0
  40. package/dist/common/certificate.d.ts.map +1 -0
  41. package/dist/common/certificate.js +11 -0
  42. package/dist/common/certificate.js.map +1 -0
  43. package/dist/common/commonwell-error.d.ts +23 -0
  44. package/dist/common/commonwell-error.d.ts.map +1 -0
  45. package/dist/common/commonwell-error.js +33 -0
  46. package/dist/common/commonwell-error.js.map +1 -0
  47. package/dist/common/fileDownload.d.ts +37 -0
  48. package/dist/common/fileDownload.d.ts.map +1 -0
  49. package/dist/common/fileDownload.js +53 -0
  50. package/dist/common/fileDownload.js.map +1 -0
  51. package/dist/common/make-jwt.d.ts +60 -0
  52. package/dist/common/make-jwt.d.ts.map +1 -0
  53. package/dist/common/make-jwt.js +124 -0
  54. package/dist/common/make-jwt.js.map +1 -0
  55. package/dist/common/util.d.ts +78 -0
  56. package/dist/common/util.d.ts.map +1 -0
  57. package/dist/common/util.js +104 -0
  58. package/dist/common/util.js.map +1 -0
  59. package/dist/common/validate-npi.d.ts +2 -0
  60. package/dist/common/validate-npi.d.ts.map +1 -0
  61. package/dist/common/validate-npi.js +6 -0
  62. package/dist/common/validate-npi.js.map +1 -0
  63. package/dist/common/zod.d.ts +13 -0
  64. package/dist/common/zod.d.ts.map +1 -0
  65. package/dist/common/zod.js +38 -0
  66. package/dist/common/zod.js.map +1 -0
  67. package/dist/index.d.ts +20 -0
  68. package/dist/index.d.ts.map +1 -0
  69. package/dist/index.js +45 -0
  70. package/dist/index.js.map +1 -0
  71. package/dist/models/__tests__/address.test.d.ts +2 -0
  72. package/dist/models/__tests__/address.test.d.ts.map +1 -0
  73. package/dist/models/__tests__/address.test.js +348 -0
  74. package/dist/models/__tests__/address.test.js.map +1 -0
  75. package/dist/models/__tests__/demographics.test.d.ts +2 -0
  76. package/dist/models/__tests__/demographics.test.d.ts.map +1 -0
  77. package/dist/models/__tests__/demographics.test.js +96 -0
  78. package/dist/models/__tests__/demographics.test.js.map +1 -0
  79. package/dist/models/address.d.ts +177 -0
  80. package/dist/models/address.d.ts.map +1 -0
  81. package/dist/models/address.js +94 -0
  82. package/dist/models/address.js.map +1 -0
  83. package/dist/models/certificates.d.ts +77 -0
  84. package/dist/models/certificates.d.ts.map +1 -0
  85. package/dist/models/certificates.js +27 -0
  86. package/dist/models/certificates.js.map +1 -0
  87. package/dist/models/contact.d.ts +47 -0
  88. package/dist/models/contact.d.ts.map +1 -0
  89. package/dist/models/contact.js +30 -0
  90. package/dist/models/contact.js.map +1 -0
  91. package/dist/models/date.d.ts +4 -0
  92. package/dist/models/date.d.ts.map +1 -0
  93. package/dist/models/date.js +10 -0
  94. package/dist/models/date.js.map +1 -0
  95. package/dist/models/demographics.d.ts +290 -0
  96. package/dist/models/demographics.d.ts.map +1 -0
  97. package/dist/models/demographics.js +57 -0
  98. package/dist/models/demographics.js.map +1 -0
  99. package/dist/models/document.d.ts +7823 -0
  100. package/dist/models/document.d.ts.map +1 -0
  101. package/dist/models/document.js +106 -0
  102. package/dist/models/document.js.map +1 -0
  103. package/dist/models/facility.d.ts +82 -0
  104. package/dist/models/facility.d.ts.map +1 -0
  105. package/dist/models/facility.js +11 -0
  106. package/dist/models/facility.js.map +1 -0
  107. package/dist/models/human-name.d.ts +56 -0
  108. package/dist/models/human-name.d.ts.map +1 -0
  109. package/dist/models/human-name.js +39 -0
  110. package/dist/models/human-name.js.map +1 -0
  111. package/dist/models/identifier.d.ts +110 -0
  112. package/dist/models/identifier.d.ts.map +1 -0
  113. package/dist/models/identifier.js +37 -0
  114. package/dist/models/identifier.js.map +1 -0
  115. package/dist/models/organization.d.ts +2390 -0
  116. package/dist/models/organization.d.ts.map +1 -0
  117. package/dist/models/organization.js +139 -0
  118. package/dist/models/organization.js.map +1 -0
  119. package/dist/models/patient-organization.d.ts +36 -0
  120. package/dist/models/patient-organization.d.ts.map +1 -0
  121. package/dist/models/patient-organization.js +10 -0
  122. package/dist/models/patient-organization.js.map +1 -0
  123. package/dist/models/patient.d.ts +5350 -0
  124. package/dist/models/patient.d.ts.map +1 -0
  125. package/dist/models/patient.js +94 -0
  126. package/dist/models/patient.js.map +1 -0
  127. package/dist/models/period.d.ts +13 -0
  128. package/dist/models/period.d.ts.map +1 -0
  129. package/dist/models/period.js +13 -0
  130. package/dist/models/period.js.map +1 -0
  131. package/dist/models/reference.d.ts +109 -0
  132. package/dist/models/reference.d.ts.map +1 -0
  133. package/dist/models/reference.js +12 -0
  134. package/dist/models/reference.js.map +1 -0
  135. package/package.json +82 -0
@@ -0,0 +1 @@
1
+ {"version":3,"file":"patient.d.ts","sourceRoot":"","sources":["../../src/models/patient.ts"],"names":[],"mappings":"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"}
@@ -0,0 +1,94 @@
1
+ "use strict";
2
+ Object.defineProperty(exports, "__esModule", { value: true });
3
+ exports.patientProbableLinksRespSchema = exports.patientProbableLinksItemRespSchema = exports.linksForPatientProbableLinksSchema = exports.patientExistingLinksSchema = exports.patientExistingLinksItemSchema = exports.linksForPatientExistingLinksSchema = exports.patientCreateOrUpdateRespSchema = exports.patientResponseSchema = exports.patientResponseItemSchema = exports.statusResponseSchema = exports.patientSchema = exports.patientLinksSchema = void 0;
4
+ const zod_1 = require("zod");
5
+ const demographics_1 = require("./demographics");
6
+ const facility_1 = require("./facility");
7
+ const patient_organization_1 = require("./patient-organization");
8
+ const statusSchema = zod_1.z.object({
9
+ message: zod_1.z.string().nullish(),
10
+ code: zod_1.z.number().nullish(),
11
+ });
12
+ const localLinkSchema = zod_1.z.string();
13
+ exports.patientLinksSchema = zod_1.z.object({
14
+ Self: localLinkSchema,
15
+ /**
16
+ * 8.4.1 Get Patient Links
17
+ * An Edge System can search and request Patient Links by a local patient identifier. The result
18
+ * of the query will include local and remote patient’s links that are autolinked by the rules
19
+ * engine or manually linked.
20
+ * The links returned are confirmed links of LOLA 2 or higher.
21
+ */
22
+ PatientLink: localLinkSchema.nullish(),
23
+ ResetLink: localLinkSchema.nullish(),
24
+ Delete: localLinkSchema.nullish(),
25
+ ProbableLink: localLinkSchema.nullish(),
26
+ });
27
+ // The Patient resource represents a natural patient independent of a specific healthcare context.
28
+ // See: https://specification.commonwellalliance.org/services/rest-api-reference (8.6.4 Patient)
29
+ exports.patientSchema = demographics_1.demographicsSchema.merge(zod_1.z.object({
30
+ active: zod_1.z.boolean().nullish(),
31
+ managingOrganization: patient_organization_1.managingOrganizationSchema.nullish(),
32
+ /**
33
+ * Links to a Patient or RelatedPerson resource that concerns the same actual individual.
34
+ * The patient resource containing this link is the non-surviving patient.
35
+ * Disabled because couldn't validatte this in pre-production.
36
+ */
37
+ disclosure: zod_1.z.array(facility_1.facilitySchema).nullish(),
38
+ }));
39
+ // ================================ GENERIC STATUS ================================
40
+ exports.statusResponseSchema = zod_1.z.object({
41
+ status: statusSchema.nullish(),
42
+ });
43
+ // ================================ PATIENT RESPONSE ================================
44
+ exports.patientResponseItemSchema = zod_1.z.object({
45
+ Patient: exports.patientSchema.nullish(),
46
+ Links: exports.patientLinksSchema,
47
+ });
48
+ exports.patientResponseSchema = zod_1.z.object({
49
+ Patients: zod_1.z.array(exports.patientResponseItemSchema).nonempty(),
50
+ status: statusSchema.nullish(),
51
+ });
52
+ // ================================ CREATE/UPDATE PATIENT ================================
53
+ exports.patientCreateOrUpdateRespSchema = zod_1.z.object({
54
+ Links: exports.patientLinksSchema,
55
+ status: statusSchema.nullish(),
56
+ });
57
+ // ================================ GET EXISTING LINKS ================================
58
+ exports.linksForPatientExistingLinksSchema = zod_1.z.object({
59
+ Self: localLinkSchema,
60
+ Unlink: localLinkSchema,
61
+ });
62
+ exports.patientExistingLinksItemSchema = zod_1.z.object({
63
+ Patient: exports.patientSchema,
64
+ Links: exports.linksForPatientExistingLinksSchema,
65
+ });
66
+ exports.patientExistingLinksSchema = zod_1.z.object({
67
+ Patients: zod_1.z.array(exports.patientExistingLinksItemSchema).transform(patients => {
68
+ return patients.filter(patientItem => {
69
+ const patient = patientItem.Patient;
70
+ return patient && patient.address && patient.address.length > 0;
71
+ });
72
+ }),
73
+ status: statusSchema.nullish(),
74
+ });
75
+ // ================================ GET PROBABLE LINKS ================================
76
+ exports.linksForPatientProbableLinksSchema = zod_1.z.object({
77
+ Self: localLinkSchema,
78
+ Link: localLinkSchema,
79
+ Unlink: localLinkSchema,
80
+ });
81
+ exports.patientProbableLinksItemRespSchema = zod_1.z.object({
82
+ Patient: exports.patientSchema,
83
+ Links: exports.linksForPatientProbableLinksSchema,
84
+ });
85
+ exports.patientProbableLinksRespSchema = zod_1.z.object({
86
+ Patients: zod_1.z.array(exports.patientProbableLinksItemRespSchema).transform(patients => {
87
+ return patients.filter(patientItem => {
88
+ const patient = patientItem.Patient;
89
+ return patient && patient.address && patient.address.length > 0;
90
+ });
91
+ }),
92
+ status: statusSchema.nullish(),
93
+ });
94
+ //# sourceMappingURL=patient.js.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"patient.js","sourceRoot":"","sources":["../../src/models/patient.ts"],"names":[],"mappings":"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"}
@@ -0,0 +1,13 @@
1
+ import { z } from "zod";
2
+ export declare const periodSchema: z.ZodObject<{
3
+ start: z.ZodPipeline<z.ZodEffects<z.ZodOptional<z.ZodNullable<z.ZodString>>, string | null | undefined, unknown>, z.ZodOptional<z.ZodNullable<z.ZodUnion<[z.ZodString, z.ZodString]>>>>;
4
+ end: z.ZodPipeline<z.ZodEffects<z.ZodOptional<z.ZodNullable<z.ZodString>>, string | null | undefined, unknown>, z.ZodOptional<z.ZodNullable<z.ZodUnion<[z.ZodString, z.ZodString]>>>>;
5
+ }, "strip", z.ZodTypeAny, {
6
+ start?: string | null | undefined;
7
+ end?: string | null | undefined;
8
+ }, {
9
+ start?: unknown;
10
+ end?: unknown;
11
+ }>;
12
+ export type Period = z.infer<typeof periodSchema>;
13
+ //# sourceMappingURL=period.d.ts.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"period.d.ts","sourceRoot":"","sources":["../../src/models/period.ts"],"names":[],"mappings":"AACA,OAAO,EAAE,CAAC,EAAE,MAAM,KAAK,CAAC;AAKxB,eAAO,MAAM,YAAY;;;;;;;;;EAGvB,CAAC;AAEH,MAAM,MAAM,MAAM,GAAG,CAAC,CAAC,KAAK,CAAC,OAAO,YAAY,CAAC,CAAC"}
@@ -0,0 +1,13 @@
1
+ "use strict";
2
+ Object.defineProperty(exports, "__esModule", { value: true });
3
+ exports.periodSchema = void 0;
4
+ const shared_1 = require("@metriport/shared");
5
+ const zod_1 = require("zod");
6
+ const zod_2 = require("../common/zod");
7
+ // A time period defined by a start and end time.
8
+ // See: https://specification.commonwellalliance.org/services/rest-api-reference (8.4.12 Period)
9
+ exports.periodSchema = zod_1.z.object({
10
+ start: zod_2.emptyStringToUndefinedSchema.pipe(shared_1.isoDateTimeSchema.or(shared_1.isoDateSchema).nullish()),
11
+ end: zod_2.emptyStringToUndefinedSchema.pipe(shared_1.isoDateTimeSchema.or(shared_1.isoDateSchema).nullish()),
12
+ });
13
+ //# sourceMappingURL=period.js.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"period.js","sourceRoot":"","sources":["../../src/models/period.ts"],"names":[],"mappings":";;;AAAA,8CAAqE;AACrE,6BAAwB;AACxB,uCAA6D;AAE7D,iDAAiD;AACjD,gGAAgG;AACnF,QAAA,YAAY,GAAG,OAAC,CAAC,MAAM,CAAC;IACnC,KAAK,EAAE,kCAA4B,CAAC,IAAI,CAAC,0BAAiB,CAAC,EAAE,CAAC,sBAAa,CAAC,CAAC,OAAO,EAAE,CAAC;IACvF,GAAG,EAAE,kCAA4B,CAAC,IAAI,CAAC,0BAAiB,CAAC,EAAE,CAAC,sBAAa,CAAC,CAAC,OAAO,EAAE,CAAC;CACtF,CAAC,CAAC"}
@@ -0,0 +1,109 @@
1
+ import { z } from "zod";
2
+ export declare const referenceSchema: z.ZodObject<{
3
+ reference: z.ZodOptional<z.ZodNullable<z.ZodString>>;
4
+ type: z.ZodOptional<z.ZodNullable<z.ZodString>>;
5
+ identifier: z.ZodOptional<z.ZodNullable<z.ZodObject<{
6
+ value: z.ZodString;
7
+ system: z.ZodOptional<z.ZodNullable<z.ZodString>>;
8
+ use: z.ZodPipeline<z.ZodEffects<z.ZodOptional<z.ZodNullable<z.ZodString>>, string | null | undefined, unknown>, z.ZodOptional<z.ZodNullable<z.ZodString>>>;
9
+ type: z.ZodPipeline<z.ZodEffects<z.ZodOptional<z.ZodNullable<z.ZodString>>, string | null | undefined, unknown>, z.ZodOptional<z.ZodNullable<z.ZodString>>>;
10
+ assigner: z.ZodOptional<z.ZodNullable<z.ZodObject<{
11
+ reference: z.ZodOptional<z.ZodNullable<z.ZodString>>;
12
+ type: z.ZodOptional<z.ZodNullable<z.ZodString>>;
13
+ identifier: z.ZodOptional<z.ZodNullable<z.ZodAny>>;
14
+ display: z.ZodOptional<z.ZodNullable<z.ZodString>>;
15
+ }, "strip", z.ZodTypeAny, {
16
+ type?: string | null | undefined;
17
+ reference?: string | null | undefined;
18
+ identifier?: any;
19
+ display?: string | null | undefined;
20
+ }, {
21
+ type?: string | null | undefined;
22
+ reference?: string | null | undefined;
23
+ identifier?: any;
24
+ display?: string | null | undefined;
25
+ }>>>;
26
+ period: z.ZodOptional<z.ZodNullable<z.ZodObject<{
27
+ start: z.ZodPipeline<z.ZodEffects<z.ZodOptional<z.ZodNullable<z.ZodString>>, string | null | undefined, unknown>, z.ZodOptional<z.ZodNullable<z.ZodUnion<[z.ZodString, z.ZodString]>>>>;
28
+ end: z.ZodPipeline<z.ZodEffects<z.ZodOptional<z.ZodNullable<z.ZodString>>, string | null | undefined, unknown>, z.ZodOptional<z.ZodNullable<z.ZodUnion<[z.ZodString, z.ZodString]>>>>;
29
+ }, "strip", z.ZodTypeAny, {
30
+ start?: string | null | undefined;
31
+ end?: string | null | undefined;
32
+ }, {
33
+ start?: unknown;
34
+ end?: unknown;
35
+ }>>>;
36
+ }, "strip", z.ZodTypeAny, {
37
+ value: string;
38
+ type?: string | null | undefined;
39
+ use?: string | null | undefined;
40
+ period?: {
41
+ start?: string | null | undefined;
42
+ end?: string | null | undefined;
43
+ } | null | undefined;
44
+ system?: string | null | undefined;
45
+ assigner?: {
46
+ type?: string | null | undefined;
47
+ reference?: string | null | undefined;
48
+ identifier?: any;
49
+ display?: string | null | undefined;
50
+ } | null | undefined;
51
+ }, {
52
+ value: string;
53
+ type?: unknown;
54
+ use?: unknown;
55
+ period?: {
56
+ start?: unknown;
57
+ end?: unknown;
58
+ } | null | undefined;
59
+ system?: string | null | undefined;
60
+ assigner?: {
61
+ type?: string | null | undefined;
62
+ reference?: string | null | undefined;
63
+ identifier?: any;
64
+ display?: string | null | undefined;
65
+ } | null | undefined;
66
+ }>>>;
67
+ display: z.ZodOptional<z.ZodNullable<z.ZodString>>;
68
+ }, "strip", z.ZodTypeAny, {
69
+ type?: string | null | undefined;
70
+ reference?: string | null | undefined;
71
+ identifier?: {
72
+ value: string;
73
+ type?: string | null | undefined;
74
+ use?: string | null | undefined;
75
+ period?: {
76
+ start?: string | null | undefined;
77
+ end?: string | null | undefined;
78
+ } | null | undefined;
79
+ system?: string | null | undefined;
80
+ assigner?: {
81
+ type?: string | null | undefined;
82
+ reference?: string | null | undefined;
83
+ identifier?: any;
84
+ display?: string | null | undefined;
85
+ } | null | undefined;
86
+ } | null | undefined;
87
+ display?: string | null | undefined;
88
+ }, {
89
+ type?: string | null | undefined;
90
+ reference?: string | null | undefined;
91
+ identifier?: {
92
+ value: string;
93
+ type?: unknown;
94
+ use?: unknown;
95
+ period?: {
96
+ start?: unknown;
97
+ end?: unknown;
98
+ } | null | undefined;
99
+ system?: string | null | undefined;
100
+ assigner?: {
101
+ type?: string | null | undefined;
102
+ reference?: string | null | undefined;
103
+ identifier?: any;
104
+ display?: string | null | undefined;
105
+ } | null | undefined;
106
+ } | null | undefined;
107
+ display?: string | null | undefined;
108
+ }>;
109
+ //# sourceMappingURL=reference.d.ts.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"reference.d.ts","sourceRoot":"","sources":["../../src/models/reference.ts"],"names":[],"mappings":"AAAA,OAAO,EAAE,CAAC,EAAE,MAAM,KAAK,CAAC;AAGxB,eAAO,MAAM,eAAe;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;EAK1B,CAAC"}
@@ -0,0 +1,12 @@
1
+ "use strict";
2
+ Object.defineProperty(exports, "__esModule", { value: true });
3
+ exports.referenceSchema = void 0;
4
+ const zod_1 = require("zod");
5
+ const identifier_1 = require("./identifier");
6
+ exports.referenceSchema = zod_1.z.object({
7
+ reference: zod_1.z.string().nullish(),
8
+ type: zod_1.z.string().nullish(),
9
+ identifier: identifier_1.identifierSchema.nullish(),
10
+ display: zod_1.z.string().nullish(),
11
+ });
12
+ //# sourceMappingURL=reference.js.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"reference.js","sourceRoot":"","sources":["../../src/models/reference.ts"],"names":[],"mappings":";;;AAAA,6BAAwB;AACxB,6CAAgD;AAEnC,QAAA,eAAe,GAAG,OAAC,CAAC,MAAM,CAAC;IACtC,SAAS,EAAE,OAAC,CAAC,MAAM,EAAE,CAAC,OAAO,EAAE;IAC/B,IAAI,EAAE,OAAC,CAAC,MAAM,EAAE,CAAC,OAAO,EAAE;IAC1B,UAAU,EAAE,6BAAgB,CAAC,OAAO,EAAE;IACtC,OAAO,EAAE,OAAC,CAAC,MAAM,EAAE,CAAC,OAAO,EAAE;CAC9B,CAAC,CAAC"}
package/package.json ADDED
@@ -0,0 +1,82 @@
1
+ {
2
+ "name": "@metriport/commonwell-sdk",
3
+ "version": "0.30.0-alpha.1",
4
+ "description": "SDK to simplify CommonWell API integration - by Metriport Inc.",
5
+ "author": "Metriport Inc. <contact@metriport.com>",
6
+ "homepage": "https://metriport.com/",
7
+ "license": "MIT",
8
+ "main": "dist/index.js",
9
+ "typings": "dist/index.d.ts",
10
+ "exports": {
11
+ ".": "./dist/index.js",
12
+ "./client/*": "./dist/client/*.js",
13
+ "./models/*": "./dist/models/*.js",
14
+ "./common/*": "./dist/common/*.js"
15
+ },
16
+ "typesVersions": {
17
+ "*": {
18
+ "/": [
19
+ "dist/index.d.ts"
20
+ ],
21
+ "client/*": [
22
+ "dist/client/*"
23
+ ],
24
+ "models/*": [
25
+ "dist/models/*"
26
+ ],
27
+ "common/*": [
28
+ "dist/common/*"
29
+ ]
30
+ }
31
+ },
32
+ "publishConfig": {
33
+ "access": "public"
34
+ },
35
+ "files": [
36
+ "dist",
37
+ "README.md",
38
+ "LICENSE",
39
+ "package.json"
40
+ ],
41
+ "repository": {
42
+ "url": "https://github.com/metriport/metriport.git",
43
+ "type": "git",
44
+ "directory": "packages/commonwell-sdk"
45
+ },
46
+ "scripts": {
47
+ "clean": "rimraf dist",
48
+ "deepclean": "npm run clean && rimraf node_modules",
49
+ "tsc": "tsc",
50
+ "watch": "tsc --watch",
51
+ "build": "tsc -p .",
52
+ "build:cloud": "npm run build",
53
+ "typecheck": "tsc --noEmit",
54
+ "lint": "npx eslint . --ext .ts",
55
+ "lint-fix": "npm run lint --fix",
56
+ "prettier-fix": "npx prettier '**/*.{js,ts,md}' --write --ignore-path ../../.prettierignore",
57
+ "test": "echo \"No test specified yet\""
58
+ },
59
+ "bugs": {
60
+ "url": "https://github.com/metriport/metriport/issues"
61
+ },
62
+ "dependencies": {
63
+ "@metriport/shared": "^0.30.0-alpha.1",
64
+ "axios": "^1.8.2",
65
+ "http-status": "~1.7.0",
66
+ "jsonwebtoken": "^9.0.0",
67
+ "zod": "^3.22.1"
68
+ },
69
+ "devDependencies": {
70
+ "@faker-js/faker": "^8.0.2",
71
+ "@tsconfig/recommended": "^1.0.2",
72
+ "@types/jsonwebtoken": "^9.0.0",
73
+ "@types/node": "^18.11.18",
74
+ "@typescript-eslint/eslint-plugin": "^5.48.2",
75
+ "@typescript-eslint/parser": "^5.48.2",
76
+ "eslint": "^8.32.0",
77
+ "eslint-config-prettier": "^8.6.0",
78
+ "prettier": "^2.8.3",
79
+ "typescript": "^4.9.5"
80
+ },
81
+ "gitHead": "bf3e7278e9c9f8c57f52a85009156acefe62b100"
82
+ }