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

fhc-api

Package Overview
Dependencies
Maintainers
1
Versions
55
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

fhc-api - npm Package Compare versions

Comparing version 1.0.28 to 1.0.29

2

dist/api/fhcChaptercontrollerApi.d.ts

@@ -37,3 +37,3 @@ /**

findParagraphsWithCnkUsingGET(cnk: number, language: string): Promise<Array<models.ParagraphPreview> | any>;
getAddedDocumentUsingGET(chapterName: string, paragraphName: string, verseSeq: number, docSeq: number, language: string): Promise<any | Boolean>;
getAddedDocumentUsingGET(chapterName: string, paragraphName: string, verseSeq: number, docSeq: number, language: string): Promise<ArrayBuffer | any>;
getAddedDocumentsUsingGET(chapterName: string, paragraphName: string): Promise<Array<models.AddedDocumentPreview> | any>;

@@ -40,0 +40,0 @@ getMppsForParagraphUsingGET(chapterName: string, paragraphName: string): Promise<Array<models.MppPreview> | any>;

@@ -171,3 +171,3 @@ /**

return XHR.sendCommand("GET", _url, headers, _body)
.then(doc => (doc.contentType.startsWith("application/octet-stream") ? doc.body : true))
.then(doc => doc.body)
.catch(err => this.handleError(err));

@@ -174,0 +174,0 @@ }

@@ -334,3 +334,3 @@ /**

return XHR.sendCommand("POST", _url, headers, _body)
.then(doc => (doc.contentType.startsWith("application/octet-stream") ? doc.body : true))
.then(doc => true)
.catch(err => this.handleError(err));

@@ -361,3 +361,3 @@ }

return XHR.sendCommand("POST", _url, headers, _body)
.then(doc => (doc.contentType.startsWith("application/octet-stream") ? doc.body : true))
.then(doc => true)
.catch(err => this.handleError(err));

@@ -364,0 +364,0 @@ }

@@ -148,3 +148,3 @@ /**

return XHR.sendCommand("DELETE", _url, headers, _body)
.then(doc => (doc.contentType.startsWith("application/octet-stream") ? doc.body : true))
.then(doc => true)
.catch(err => this.handleError(err));

@@ -173,3 +173,3 @@ }

return XHR.sendCommand("POST", _url, headers, _body)
.then(doc => (doc.contentType.startsWith("application/octet-stream") ? doc.body : true))
.then(doc => true)
.catch(err => this.handleError(err));

@@ -197,5 +197,5 @@ }

return XHR.sendCommand("PUT", _url, headers, _body)
.then(doc => (doc.contentType.startsWith("application/octet-stream") ? doc.body : true))
.then(doc => true)
.catch(err => this.handleError(err));
}
}

@@ -74,3 +74,3 @@ /**

return XHR.sendCommand("POST", _url, headers, _body)
.then(doc => (doc.contentType.startsWith("application/octet-stream") ? doc.body : true))
.then(doc => true)
.catch(err => this.handleError(err));

@@ -77,0 +77,0 @@ }

{
"name": "fhc-api",
"version": "1.0.28",
"version": "1.0.29",
"description": "Typescript version of Freehealth Connector standalone API client",

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

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