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

dtable-web-api

Package Overview
Dependencies
Maintainers
1
Versions
405
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

dtable-web-api - npm Package Compare versions

Comparing version 1.0.78 to 1.0.79

2

package.json
{
"name": "dtable-web-api",
"version": "1.0.78",
"version": "1.0.79",
"description": "an interface for dtable-web",

@@ -5,0 +5,0 @@ "main": "lib/dtable-web-api.js",

@@ -109,5 +109,9 @@ import axios from 'axios';

// share view api
listDTableUserViewShares(workspaceId, dtableName) {
listDTableUserViewShares(workspaceId, dtableName, tableId, viewId) {
let url = this.server + '/api/v2.1/workspace/' + workspaceId + '/dtable/' + dtableName + '/user-view-shares/';
return this.req.get(url);
let params = '';
if (tableId && viewId) {
params = `?table_id${tableId}&view_id=${viewId}`;
}
return this.req.get(url + params);
}

@@ -139,5 +143,9 @@

listDTableGroupViewShares(workspaceId, dtableName) {
listDTableGroupViewShares(workspaceId, dtableName, tableId, viewId) {
let url = this.server + '/api/v2.1/workspace/' + workspaceId + '/dtable/' + dtableName + '/group-view-shares/';
return this.req.get(url);
let params = '';
if (tableId && viewId) {
params = `?table_id${tableId}&view_id=${viewId}`;
}
return this.req.get(url + params);
}

@@ -144,0 +152,0 @@

Sorry, the diff of this file is too big to display

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