@hostwebhook/node-types 1.52.9 → 1.52.10
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/dist/sheets-toolkit.js +13 -5
- package/package.json +1 -1
package/dist/sheets-toolkit.js
CHANGED
|
@@ -96,11 +96,19 @@ exports.SHEETS_TOOLKIT_SPECS = [
|
|
|
96
96
|
operation: 'createSpreadsheet',
|
|
97
97
|
label: 'Create spreadsheet',
|
|
98
98
|
toolName: 'create_spreadsheet',
|
|
99
|
-
description:
|
|
100
|
-
|
|
101
|
-
|
|
102
|
-
|
|
103
|
-
|
|
99
|
+
description: "Create a new, empty Google Sheets document and return its id and URL. It writes no data: to fill it, call append_row afterwards with the id it returns. It lands wherever the node's Save Location says — you do not choose that.",
|
|
100
|
+
/*
|
|
101
|
+
* Sin `folderId` a propósito, y esta es la excepción a «defecto del nodo que
|
|
102
|
+
* el modelo puede cambiar».
|
|
103
|
+
*
|
|
104
|
+
* La hoja sí se le ofrece porque el modelo tiene de dónde sacar un id: se lo
|
|
105
|
+
* dice quien escribe, o lo devuelve un get_rows. Un id de carpeta de Drive
|
|
106
|
+
* no: no hay ninguna herramienta aquí que las liste, así que sólo podría
|
|
107
|
+
* inventárselo, y un id inventado falla mientras uno real acertado por
|
|
108
|
+
* casualidad escribe en la carpeta de otro. La carpeta la elige la persona
|
|
109
|
+
* en el nodo, y la api la aplica.
|
|
110
|
+
*/
|
|
111
|
+
parameters: [p('title', 'Name of the new document.')],
|
|
104
112
|
destructive: true,
|
|
105
113
|
},
|
|
106
114
|
];
|
package/package.json
CHANGED