directus-sdk-javascript
Advanced tools
Comparing version 2.2.0-0 to 2.2.0-1
{ | ||
"name": "directus-sdk-javascript", | ||
"version": "2.2.0-0", | ||
"version": "2.2.0-1", | ||
"description": "WIP - Directus SDK for JavaScript (Node and Browser)", | ||
@@ -5,0 +5,0 @@ "main": "index.js", |
@@ -116,3 +116,3 @@ const axios = require('axios'); | ||
return this._post(`tables/${table}/bulk`, { | ||
return this._post(`tables/${table}/rows/bulk`, { | ||
rows: data | ||
@@ -126,3 +126,3 @@ }); | ||
return this._put(`tables/${table}/bulk`, { | ||
return this._put(`tables/${table}/rows/bulk`, { | ||
rows: data | ||
@@ -136,3 +136,3 @@ }); | ||
return this._delete(`tables/${table}/bulk`, { | ||
return this._delete(`tables/${table}/rows/bulk`, { | ||
rows: data | ||
@@ -139,0 +139,0 @@ }); |
License Policy Violation
LicenseThis package is not allowed per your license policy. Review the package's license to ensure compliance.
Found 1 instance in 1 package
License Policy Violation
LicenseThis package is not allowed per your license policy. Review the package's license to ensure compliance.
Found 1 instance in 1 package
45207