@metriport/commonwell-sdk 4.4.6 → 4.5.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/dist/common/util.d.ts +14 -0
- package/dist/common/util.d.ts.map +1 -1
- package/dist/common/util.js +24 -4
- package/dist/common/util.js.map +1 -1
- package/dist/index.d.ts +2 -2
- package/dist/index.d.ts.map +1 -1
- package/dist/index.js +4 -2
- package/dist/index.js.map +1 -1
- package/package.json +2 -2
package/dist/common/util.d.ts
CHANGED
|
@@ -3,7 +3,21 @@ import { StrongId } from "../models/identifier";
|
|
|
3
3
|
import { Organization } from "../models/organization";
|
|
4
4
|
import { Patient } from "../models/patient";
|
|
5
5
|
import { Person, PersonSearchResp } from "../models/person";
|
|
6
|
+
/**
|
|
7
|
+
* Returns the ID of a person.
|
|
8
|
+
* @deprecated Use {@link getPersonId} instead.
|
|
9
|
+
*/
|
|
6
10
|
export declare function getId(object: Person | undefined): string | undefined;
|
|
11
|
+
/**
|
|
12
|
+
* Returns the ID of a person.
|
|
13
|
+
*/
|
|
14
|
+
export declare function getPersonId(object: Person | undefined): string | undefined;
|
|
15
|
+
/**
|
|
16
|
+
* Returns the ID of a person from its URL.
|
|
17
|
+
*
|
|
18
|
+
* @param personUrl - The person's URL as returned from `Person._links.self.href`
|
|
19
|
+
*/
|
|
20
|
+
export declare function getPersonIdFromUrl(personUrl: string | undefined | null): string | undefined;
|
|
7
21
|
export declare function getPersonIdFromSearchByPatientDemo(object: PersonSearchResp): string | undefined;
|
|
8
22
|
export declare function getIdTrailingSlash(object: Patient | Organization): string | undefined;
|
|
9
23
|
export declare function getPatientStrongIds(object: Patient): StrongId[] | undefined;
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"util.d.ts","sourceRoot":"","sources":["../../src/common/util.ts"],"names":[],"mappings":"AAAA,OAAO,EAAE,YAAY,EAAE,MAAM,wBAAwB,CAAC;AACtD,OAAO,EAAE,QAAQ,EAAE,MAAM,sBAAsB,CAAC;AAChD,OAAO,EAAE,YAAY,EAAE,MAAM,wBAAwB,CAAC;AACtD,OAAO,EAAE,OAAO,EAAE,MAAM,mBAAmB,CAAC;AAC5C,OAAO,EAAE,MAAM,EAAE,gBAAgB,EAAE,MAAM,kBAAkB,CAAC;AAE5D,wBAAgB,KAAK,CAAC,MAAM,EAAE,MAAM,GAAG,SAAS,GAAG,MAAM,GAAG,SAAS,
|
|
1
|
+
{"version":3,"file":"util.d.ts","sourceRoot":"","sources":["../../src/common/util.ts"],"names":[],"mappings":"AAAA,OAAO,EAAE,YAAY,EAAE,MAAM,wBAAwB,CAAC;AACtD,OAAO,EAAE,QAAQ,EAAE,MAAM,sBAAsB,CAAC;AAChD,OAAO,EAAE,YAAY,EAAE,MAAM,wBAAwB,CAAC;AACtD,OAAO,EAAE,OAAO,EAAE,MAAM,mBAAmB,CAAC;AAC5C,OAAO,EAAE,MAAM,EAAE,gBAAgB,EAAE,MAAM,kBAAkB,CAAC;AAE5D;;;GAGG;AACH,wBAAgB,KAAK,CAAC,MAAM,EAAE,MAAM,GAAG,SAAS,GAAG,MAAM,GAAG,SAAS,CAEpE;AAED;;GAEG;AACH,wBAAgB,WAAW,CAAC,MAAM,EAAE,MAAM,GAAG,SAAS,GAAG,MAAM,GAAG,SAAS,CAI1E;AAED;;;;GAIG;AACH,wBAAgB,kBAAkB,CAAC,SAAS,EAAE,MAAM,GAAG,SAAS,GAAG,IAAI,GAAG,MAAM,GAAG,SAAS,CAG3F;AAED,wBAAgB,kCAAkC,CAAC,MAAM,EAAE,gBAAgB,GAAG,MAAM,GAAG,SAAS,CAS/F;AAED,wBAAgB,kBAAkB,CAAC,MAAM,EAAE,OAAO,GAAG,YAAY,GAAG,MAAM,GAAG,SAAS,CAKrF;AAED,wBAAgB,mBAAmB,CAAC,MAAM,EAAE,OAAO,GAAG,QAAQ,EAAE,GAAG,SAAS,CAE3E;AAMD;;;;;;;;GAQG;AACH,wBAAgB,2BAA2B,CAAC,SAAS,EAAE,MAAM,GAAG,MAAM,GAAG,SAAS,CAOjF;AAED;;;;GAIG;AACH,wBAAgB,eAAe,CAAC,aAAa,EAAE,MAAM,EAAE,GAAG,gBAAgB,GAAG,YAAY,EAAE,CAK1F"}
|
package/dist/common/util.js
CHANGED
|
@@ -1,15 +1,35 @@
|
|
|
1
1
|
"use strict";
|
|
2
2
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
3
|
-
exports.getDemographics = exports.convertPatientIdToSubjectId = exports.getPatientStrongIds = exports.getIdTrailingSlash = exports.getPersonIdFromSearchByPatientDemo = exports.getId = void 0;
|
|
3
|
+
exports.getDemographics = exports.convertPatientIdToSubjectId = exports.getPatientStrongIds = exports.getIdTrailingSlash = exports.getPersonIdFromSearchByPatientDemo = exports.getPersonIdFromUrl = exports.getPersonId = exports.getId = void 0;
|
|
4
|
+
/**
|
|
5
|
+
* Returns the ID of a person.
|
|
6
|
+
* @deprecated Use {@link getPersonId} instead.
|
|
7
|
+
*/
|
|
4
8
|
function getId(object) {
|
|
9
|
+
return getPersonId(object);
|
|
10
|
+
}
|
|
11
|
+
exports.getId = getId;
|
|
12
|
+
/**
|
|
13
|
+
* Returns the ID of a person.
|
|
14
|
+
*/
|
|
15
|
+
function getPersonId(object) {
|
|
5
16
|
if (!object)
|
|
6
17
|
return undefined;
|
|
7
18
|
const url = object._links?.self?.href;
|
|
8
|
-
|
|
19
|
+
return getPersonIdFromUrl(url);
|
|
20
|
+
}
|
|
21
|
+
exports.getPersonId = getPersonId;
|
|
22
|
+
/**
|
|
23
|
+
* Returns the ID of a person from its URL.
|
|
24
|
+
*
|
|
25
|
+
* @param personUrl - The person's URL as returned from `Person._links.self.href`
|
|
26
|
+
*/
|
|
27
|
+
function getPersonIdFromUrl(personUrl) {
|
|
28
|
+
if (!personUrl)
|
|
9
29
|
return undefined;
|
|
10
|
-
return
|
|
30
|
+
return personUrl.substring(personUrl.lastIndexOf("/") + 1);
|
|
11
31
|
}
|
|
12
|
-
exports.
|
|
32
|
+
exports.getPersonIdFromUrl = getPersonIdFromUrl;
|
|
13
33
|
function getPersonIdFromSearchByPatientDemo(object) {
|
|
14
34
|
if (!object._embedded || !object._embedded.person)
|
|
15
35
|
return undefined;
|
package/dist/common/util.js.map
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"util.js","sourceRoot":"","sources":["../../src/common/util.ts"],"names":[],"mappings":";;;AAMA,SAAgB,KAAK,CAAC,MAA0B;IAC9C,IAAI,CAAC,MAAM;QAAE,OAAO,SAAS,CAAC;IAC9B,MAAM,GAAG,GAAG,MAAM,CAAC,MAAM,EAAE,IAAI,EAAE,IAAI,CAAC;IACtC,
|
|
1
|
+
{"version":3,"file":"util.js","sourceRoot":"","sources":["../../src/common/util.ts"],"names":[],"mappings":"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"}
|
package/dist/index.d.ts
CHANGED
|
@@ -3,7 +3,7 @@ export { CommonWellAPI } from "./client/commonwell-api";
|
|
|
3
3
|
export { CommonwellError } from "./common/commonwell-error";
|
|
4
4
|
export { downloadFile } from "./common/fileDownload";
|
|
5
5
|
export { makeJwt } from "./common/make-jwt";
|
|
6
|
-
export { getDemographics, getId, getIdTrailingSlash, getPatientStrongIds, getPersonIdFromSearchByPatientDemo, } from "./common/util";
|
|
6
|
+
export { getDemographics, getId, getPersonId, getIdTrailingSlash, getPatientStrongIds, getPersonIdFromSearchByPatientDemo, getPersonIdFromUrl, } from "./common/util";
|
|
7
7
|
export { validateNPI } from "./common/validate-npi";
|
|
8
8
|
export { Address, AddressUseCodes } from "./models/address";
|
|
9
9
|
export { CertificateParam, CertificatePurpose, CertificateResp } from "./models/certificates";
|
|
@@ -14,7 +14,7 @@ export { documentReferenceResourceType, operationOutcomeResourceType } from "./m
|
|
|
14
14
|
export { EnrollmentSummary } from "./models/enrollment-summary";
|
|
15
15
|
export { HumanName, NameUseCodes } from "./models/human-name";
|
|
16
16
|
export { Identifier, StrongId } from "./models/identifier";
|
|
17
|
-
export {
|
|
17
|
+
export { isLOLA1, isLOLA2, isLOLA3, isLOLA4, LOLA, NetworkLink, PatientLinkProxy, } from "./models/link";
|
|
18
18
|
export { Organization, OrganizationList } from "./models/organization";
|
|
19
19
|
export { Patient, PatientLinkResp, PatientNetworkLinkResp, PatientSearchResp, } from "./models/patient";
|
|
20
20
|
export { PatientLink, PatientLinkSearchResp, Person, PersonSearchResp } from "./models/person";
|
package/dist/index.d.ts.map
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"index.d.ts","sourceRoot":"","sources":["../src/index.ts"],"names":[],"mappings":"AAAA,OAAO,EAAE,OAAO,EAAE,UAAU,EAAE,eAAe,EAAE,MAAM,qBAAqB,CAAC;AAC3E,OAAO,EAAE,aAAa,EAAE,MAAM,yBAAyB,CAAC;AACxD,OAAO,EAAE,eAAe,EAAE,MAAM,2BAA2B,CAAC;AAC5D,OAAO,EAAE,YAAY,EAAE,MAAM,uBAAuB,CAAC;AACrD,OAAO,EAAE,OAAO,EAAE,MAAM,mBAAmB,CAAC;AAC5C,OAAO,EACL,eAAe,EACf,KAAK,EACL,kBAAkB,EAClB,mBAAmB,EACnB,kCAAkC,
|
|
1
|
+
{"version":3,"file":"index.d.ts","sourceRoot":"","sources":["../src/index.ts"],"names":[],"mappings":"AAAA,OAAO,EAAE,OAAO,EAAE,UAAU,EAAE,eAAe,EAAE,MAAM,qBAAqB,CAAC;AAC3E,OAAO,EAAE,aAAa,EAAE,MAAM,yBAAyB,CAAC;AACxD,OAAO,EAAE,eAAe,EAAE,MAAM,2BAA2B,CAAC;AAC5D,OAAO,EAAE,YAAY,EAAE,MAAM,uBAAuB,CAAC;AACrD,OAAO,EAAE,OAAO,EAAE,MAAM,mBAAmB,CAAC;AAC5C,OAAO,EACL,eAAe,EACf,KAAK,EACL,WAAW,EACX,kBAAkB,EAClB,mBAAmB,EACnB,kCAAkC,EAClC,kBAAkB,GACnB,MAAM,eAAe,CAAC;AACvB,OAAO,EAAE,WAAW,EAAE,MAAM,uBAAuB,CAAC;AACpD,OAAO,EAAE,OAAO,EAAE,eAAe,EAAE,MAAM,kBAAkB,CAAC;AAC5D,OAAO,EAAE,gBAAgB,EAAE,kBAAkB,EAAE,eAAe,EAAE,MAAM,uBAAuB,CAAC;AAC9F,OAAO,EAAE,OAAO,EAAE,kBAAkB,EAAE,eAAe,EAAE,MAAM,kBAAkB,CAAC;AAChF,OAAO,EAAE,YAAY,EAAE,WAAW,EAAE,MAAM,uBAAuB,CAAC;AAClE,cAAc,mBAAmB,CAAC;AAClC,OAAO,EAAE,6BAA6B,EAAE,4BAA4B,EAAE,MAAM,mBAAmB,CAAC;AAChG,OAAO,EAAE,iBAAiB,EAAE,MAAM,6BAA6B,CAAC;AAChE,OAAO,EAAE,SAAS,EAAE,YAAY,EAAE,MAAM,qBAAqB,CAAC;AAC9D,OAAO,EAAE,UAAU,EAAE,QAAQ,EAAE,MAAM,qBAAqB,CAAC;AAC3D,OAAO,EACL,OAAO,EACP,OAAO,EACP,OAAO,EACP,OAAO,EACP,IAAI,EACJ,WAAW,EACX,gBAAgB,GACjB,MAAM,eAAe,CAAC;AACvB,OAAO,EAAE,YAAY,EAAE,gBAAgB,EAAE,MAAM,uBAAuB,CAAC;AACvE,OAAO,EACL,OAAO,EACP,eAAe,EACf,sBAAsB,EACtB,iBAAiB,GAClB,MAAM,kBAAkB,CAAC;AAC1B,OAAO,EAAE,WAAW,EAAE,qBAAqB,EAAE,MAAM,EAAE,gBAAgB,EAAE,MAAM,iBAAiB,CAAC;AAC/F,OAAO,EAAE,YAAY,EAAE,MAAM,yBAAyB,CAAC"}
|
package/dist/index.js
CHANGED
|
@@ -14,7 +14,7 @@ var __exportStar = (this && this.__exportStar) || function(m, exports) {
|
|
|
14
14
|
for (var p in m) if (p !== "default" && !Object.prototype.hasOwnProperty.call(exports, p)) __createBinding(exports, m, p);
|
|
15
15
|
};
|
|
16
16
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
17
|
-
exports.PurposeOfUse = exports.
|
|
17
|
+
exports.PurposeOfUse = exports.LOLA = exports.isLOLA4 = exports.isLOLA3 = exports.isLOLA2 = exports.isLOLA1 = exports.NameUseCodes = exports.operationOutcomeResourceType = exports.documentReferenceResourceType = exports.GenderCodes = exports.ContactUseCodes = exports.ContactSystemCodes = exports.CertificatePurpose = exports.AddressUseCodes = exports.validateNPI = exports.getPersonIdFromUrl = exports.getPersonIdFromSearchByPatientDemo = exports.getPatientStrongIds = exports.getIdTrailingSlash = exports.getPersonId = exports.getId = exports.getDemographics = exports.makeJwt = exports.downloadFile = exports.CommonwellError = exports.CommonWell = exports.APIMode = void 0;
|
|
18
18
|
var commonwell_1 = require("./client/commonwell");
|
|
19
19
|
Object.defineProperty(exports, "APIMode", { enumerable: true, get: function () { return commonwell_1.APIMode; } });
|
|
20
20
|
Object.defineProperty(exports, "CommonWell", { enumerable: true, get: function () { return commonwell_1.CommonWell; } });
|
|
@@ -27,9 +27,11 @@ Object.defineProperty(exports, "makeJwt", { enumerable: true, get: function () {
|
|
|
27
27
|
var util_1 = require("./common/util");
|
|
28
28
|
Object.defineProperty(exports, "getDemographics", { enumerable: true, get: function () { return util_1.getDemographics; } });
|
|
29
29
|
Object.defineProperty(exports, "getId", { enumerable: true, get: function () { return util_1.getId; } });
|
|
30
|
+
Object.defineProperty(exports, "getPersonId", { enumerable: true, get: function () { return util_1.getPersonId; } });
|
|
30
31
|
Object.defineProperty(exports, "getIdTrailingSlash", { enumerable: true, get: function () { return util_1.getIdTrailingSlash; } });
|
|
31
32
|
Object.defineProperty(exports, "getPatientStrongIds", { enumerable: true, get: function () { return util_1.getPatientStrongIds; } });
|
|
32
33
|
Object.defineProperty(exports, "getPersonIdFromSearchByPatientDemo", { enumerable: true, get: function () { return util_1.getPersonIdFromSearchByPatientDemo; } });
|
|
34
|
+
Object.defineProperty(exports, "getPersonIdFromUrl", { enumerable: true, get: function () { return util_1.getPersonIdFromUrl; } });
|
|
33
35
|
var validate_npi_1 = require("./common/validate-npi");
|
|
34
36
|
Object.defineProperty(exports, "validateNPI", { enumerable: true, get: function () { return validate_npi_1.validateNPI; } });
|
|
35
37
|
var address_1 = require("./models/address");
|
|
@@ -48,11 +50,11 @@ Object.defineProperty(exports, "operationOutcomeResourceType", { enumerable: tru
|
|
|
48
50
|
var human_name_1 = require("./models/human-name");
|
|
49
51
|
Object.defineProperty(exports, "NameUseCodes", { enumerable: true, get: function () { return human_name_1.NameUseCodes; } });
|
|
50
52
|
var link_1 = require("./models/link");
|
|
51
|
-
Object.defineProperty(exports, "LOLA", { enumerable: true, get: function () { return link_1.LOLA; } });
|
|
52
53
|
Object.defineProperty(exports, "isLOLA1", { enumerable: true, get: function () { return link_1.isLOLA1; } });
|
|
53
54
|
Object.defineProperty(exports, "isLOLA2", { enumerable: true, get: function () { return link_1.isLOLA2; } });
|
|
54
55
|
Object.defineProperty(exports, "isLOLA3", { enumerable: true, get: function () { return link_1.isLOLA3; } });
|
|
55
56
|
Object.defineProperty(exports, "isLOLA4", { enumerable: true, get: function () { return link_1.isLOLA4; } });
|
|
57
|
+
Object.defineProperty(exports, "LOLA", { enumerable: true, get: function () { return link_1.LOLA; } });
|
|
56
58
|
var purpose_of_use_1 = require("./models/purpose-of-use");
|
|
57
59
|
Object.defineProperty(exports, "PurposeOfUse", { enumerable: true, get: function () { return purpose_of_use_1.PurposeOfUse; } });
|
|
58
60
|
//# sourceMappingURL=index.js.map
|
package/dist/index.js.map
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"index.js","sourceRoot":"","sources":["../src/index.ts"],"names":[],"mappings":";;;;;;;;;;;;;;;;;AAAA,kDAA2E;AAAlE,qGAAA,OAAO,OAAA;AAAE,wGAAA,UAAU,OAAA;AAE5B,8DAA4D;AAAnD,mHAAA,eAAe,OAAA;AACxB,sDAAqD;AAA5C,4GAAA,YAAY,OAAA;AACrB,8CAA4C;AAAnC,mGAAA,OAAO,OAAA;AAChB,
|
|
1
|
+
{"version":3,"file":"index.js","sourceRoot":"","sources":["../src/index.ts"],"names":[],"mappings":";;;;;;;;;;;;;;;;;AAAA,kDAA2E;AAAlE,qGAAA,OAAO,OAAA;AAAE,wGAAA,UAAU,OAAA;AAE5B,8DAA4D;AAAnD,mHAAA,eAAe,OAAA;AACxB,sDAAqD;AAA5C,4GAAA,YAAY,OAAA;AACrB,8CAA4C;AAAnC,mGAAA,OAAO,OAAA;AAChB,sCAQuB;AAPrB,uGAAA,eAAe,OAAA;AACf,6FAAA,KAAK,OAAA;AACL,mGAAA,WAAW,OAAA;AACX,0GAAA,kBAAkB,OAAA;AAClB,2GAAA,mBAAmB,OAAA;AACnB,0HAAA,kCAAkC,OAAA;AAClC,0GAAA,kBAAkB,OAAA;AAEpB,sDAAoD;AAA3C,2GAAA,WAAW,OAAA;AACpB,4CAA4D;AAA1C,0GAAA,eAAe,OAAA;AACjC,sDAA8F;AAAnE,kHAAA,kBAAkB,OAAA;AAC7C,4CAAgF;AAA9D,6GAAA,kBAAkB,OAAA;AAAE,0GAAA,eAAe,OAAA;AACrD,sDAAkE;AAA3C,2GAAA,WAAW,OAAA;AAClC,oDAAkC;AAClC,8CAAgG;AAAvF,yHAAA,6BAA6B,OAAA;AAAE,wHAAA,4BAA4B,OAAA;AAEpE,kDAA8D;AAA1C,0GAAA,YAAY,OAAA;AAEhC,sCAQuB;AAPrB,+FAAA,OAAO,OAAA;AACP,+FAAA,OAAO,OAAA;AACP,+FAAA,OAAO,OAAA;AACP,+FAAA,OAAO,OAAA;AACP,4FAAA,IAAI,OAAA;AAYN,0DAAuD;AAA9C,8GAAA,YAAY,OAAA"}
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@metriport/commonwell-sdk",
|
|
3
|
-
"version": "4.
|
|
3
|
+
"version": "4.5.0",
|
|
4
4
|
"description": "SDK to simplify CommonWell API integration - by Metriport Inc.",
|
|
5
5
|
"author": "Metriport Inc. <contact@metriport.com>",
|
|
6
6
|
"homepage": "https://metriport.com/",
|
|
@@ -75,5 +75,5 @@
|
|
|
75
75
|
"prettier": "^2.8.3",
|
|
76
76
|
"typescript": "^4.9.5"
|
|
77
77
|
},
|
|
78
|
-
"gitHead": "
|
|
78
|
+
"gitHead": "97426fba4f59aa9de374e4f7222b9b23392a9c3e"
|
|
79
79
|
}
|