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

infogare-api.js

Package Overview
Dependencies
Maintainers
0
Versions
24
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

infogare-api.js - npm Package Compare versions

Comparing version 1.0.20 to 1.0.21

2

package.json
{
"name": "infogare-api.js",
"version": "1.0.20",
"version": "1.0.21",
"main": "src/core/index.js",

@@ -5,0 +5,0 @@ "scripts": {

@@ -89,2 +89,27 @@ const User = require('./User');

/**
* Add a folder to a user
* @param {string} uid The UID of the user
* @param {string} folder The folder name
* @returns Nothing
*/
async addFolder(uid, folder) {
if (!uid) {
throw new Error('uid is required');
}
if (!folder) {
throw new Error('folder is required');
}
if (!this.appId) {
throw new Error('appId is required');
}
const response = await fetch(`${App.apiEndpoint}/user/${uid}/folders?appId=${this.appId}`, {
method: 'POST',
body: JSON.stringify({ folder: folder }),
});
if (!response.ok) {
throw new UserException(response, 'add folder ' + folder);
}
}
/**
* Get user public profile

@@ -91,0 +116,0 @@ * @param {string} uid The UID of the user

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