New Case Study:See how Anthropic automated 95% of dependency reviews with Socket.Learn More
Socket
Sign inDemoInstall
Socket

gcp-nrces-fhir

Package Overview
Dependencies
Maintainers
1
Versions
461
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

gcp-nrces-fhir - npm Package Compare versions

Comparing version 8.1.54 to 8.1.55

lib/resources/CarePlan.d.ts

1

lib/resources/DiagnosticReport.d.ts

@@ -21,2 +21,3 @@ import { CODEABLE_CONCEPT, MULTI_RESOURCE } from "../config";

id?: string;
labId?: string;
mediaId: string[];

@@ -23,0 +24,0 @@ issuedDate: string;

@@ -19,2 +19,5 @@ "use strict";

let ret = "";
if (options.labId) {
ret = `${ret}<p>Lab Id: ${options.labId}</p>`;
}
if (options.observations) {

@@ -101,2 +104,18 @@ options.observations.forEach((el) => {

}
if (options.labId) {
identifiers.push({
type: {
coding: [
{
// system: "http://terminology.hl7.org/CodeSystem/v2-0203",
// code: "MR",
display: "Lab Id",
},
],
},
"system": "https://www.nicehms.com/labId",
"value": options.labId
});
}
body.identifier = identifiers;
return body;

@@ -160,2 +179,8 @@ }

}
if (options.identifier) {
const labId = options.identifier.filter((el) => el.system == "https://www.nicehms.com/labId");
if (labId.length > 0) {
ret.labId = labId[0].value;
}
}
return ret;

@@ -162,0 +187,0 @@ }

2

package.json
{
"name": "gcp-nrces-fhir",
"version": "8.1.54",
"version": "8.1.55",
"description": "Google cloud healthcare api NRCES FHIR implimenataion",

@@ -5,0 +5,0 @@ "main": "lib/index.js",

Sorry, the diff of this file is not supported yet

Sorry, the diff of this file is not supported yet

SocketSocket SOC 2 Logo

Product

  • Package Alerts
  • Integrations
  • Docs
  • Pricing
  • FAQ
  • Roadmap
  • Changelog

Packages

npm

Stay in touch

Get open source security insights delivered straight into your inbox.


  • Terms
  • Privacy
  • Security

Made with ⚡️ by Socket Inc