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

dtable-sdk

Package Overview
Dependencies
Maintainers
1
Versions
213
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

dtable-sdk - npm Package Compare versions

Comparing version 0.0.56 to 0.0.57

11

dist/dtable-web-api.js

@@ -63,13 +63,2 @@ "use strict";

}
}, {
key: "getUserCommonInfo",
value: function getUserCommonInfo(email, avatarSize) {
var url = this.server + '/api/v2.1/user-common-info/' + email;
var params = {
avatar_size: avatarSize
};
return this.req.get(url, {
params: params
});
}
}]);

@@ -76,0 +65,0 @@

16

dist/dtable.js

@@ -276,2 +276,13 @@ "use strict";

}, {
key: "deleteRowsByIds",
value: function deleteRowsByIds(table, row_ids) {
var tables = this.getTables();
var tableIndex = tables.findIndex(function (t) {
return t._id === table._id;
});
var deleted_rows = [];
var upper_row_ids = [];
this.dtableStore.deleteRows(tableIndex, row_ids, deleted_rows, upper_row_ids);
}
}, {
key: "modifyRow",

@@ -467,7 +478,2 @@ value: function modifyRow(table, row, updated) {

}, {
key: "getUserCommonInfo",
value: function getUserCommonInfo(email, avatar_size) {
return this.dtableWebAPI.getUserCommonInfo(email, avatar_size);
}
}, {
key: "addTable",

@@ -474,0 +480,0 @@ value: function addTable(tableName) {

{
"name": "dtable-sdk",
"version": "0.0.56",
"version": "0.0.57",
"description": "dtable sdk",

@@ -5,0 +5,0 @@ "main": "./dist/dtable.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