minor revision
This commit is contained in:
parent
f5a24511a3
commit
5472a7e79e
@ -1,6 +1,6 @@
|
|||||||
{
|
{
|
||||||
"name": "datasquirel",
|
"name": "datasquirel",
|
||||||
"version": "1.1.90",
|
"version": "1.1.91",
|
||||||
"description": "Cloud-based SQL data management tool",
|
"description": "Cloud-based SQL data management tool",
|
||||||
"main": "index.js",
|
"main": "index.js",
|
||||||
"scripts": {
|
"scripts": {
|
||||||
|
@ -20,15 +20,15 @@ const https = require("https");
|
|||||||
* @typedef {object} PostDataPayload
|
* @typedef {object} PostDataPayload
|
||||||
* @property {"insert" | "update" | "delete"} action - The target action to take
|
* @property {"insert" | "update" | "delete"} action - The target action to take
|
||||||
* @property {string} table - Table name(slug) eg "blog_posts"
|
* @property {string} table - Table name(slug) eg "blog_posts"
|
||||||
* @property {string?} identifierColumnName - Table identifier field name => eg. "id" OR "email"
|
|
||||||
* @property {string?} identifierValue - Corresponding value of the selected field name => This
|
|
||||||
* checks identifies a the target row for "update" or "delete". Not needed for "insert"
|
|
||||||
* @property {object} data - Table insert payload object => This must have keys that match
|
* @property {object} data - Table insert payload object => This must have keys that match
|
||||||
* table fields
|
* table fields
|
||||||
* @property {string?} duplicateColumnName - Duplicate column name to check for
|
* @property {string?} [identifierColumnName] - Table identifier field name => eg. "id" OR "email"
|
||||||
* @property {string?} duplicateColumnValue - Duplicate column value to match. If no "update" param
|
* @property {string?} [identifierValue] - Corresponding value of the selected field name => This
|
||||||
|
* checks identifies a the target row for "update" or "delete". Not needed for "insert"
|
||||||
|
* @property {string?} [duplicateColumnName] - Duplicate column name to check for
|
||||||
|
* @property {string?} [duplicateColumnValue] - Duplicate column value to match. If no "update" param
|
||||||
* provided, function will return null
|
* provided, function will return null
|
||||||
* @property {boolean?} update - Should the "insert" action update the existing entry if indeed
|
* @property {boolean?} [update] - Should the "insert" action update the existing entry if indeed
|
||||||
* the entry with "duplicateColumnValue" exists?
|
* the entry with "duplicateColumnValue" exists?
|
||||||
*/
|
*/
|
||||||
|
|
||||||
|
Loading…
Reference in New Issue
Block a user