Huge News!Announcing our $40M Series B led by Abstract Ventures.Learn More
Socket
Sign inDemoInstall
Socket

gcp-nrces-fhir

Package Overview
Dependencies
Maintainers
0
Versions
361
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.7.77 to 8.7.78

1

lib/resources/Encounter.d.ts

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

organizationId?: string;
estimatedDateDischarge?: string;
class: EncounterClass;

@@ -93,0 +94,0 @@ type?: CODEABLE_CONCEPT[];

@@ -153,2 +153,14 @@ "use strict";

};
if (options.estimatedDateDischarge) {
let curExt = {
"url": "https://www.nicehms.com/estimatedDateDischarge",
"valueString": options.estimatedDateDischarge
};
if (options.extension) {
options.extension.push(curExt);
}
else {
options.extension = [curExt];
}
}
if (options.extension) {

@@ -239,2 +251,6 @@ body.extension = options.extension;

}
const estimatedDateDischargeExtension = options.extension.find((el) => el.url == "https://www.nicehms.com/estimatedDateDischarge");
if (estimatedDateDischargeExtension) {
ret.estimatedDateDischarge = estimatedDateDischargeExtension.valueString;
}
return ret;

@@ -241,0 +257,0 @@ }

2

package.json
{
"name": "gcp-nrces-fhir",
"version": "8.7.77",
"version": "8.7.78",
"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