@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.
@@ -96,11 +96,19 @@ exports.SHEETS_TOOLKIT_SPECS = [
96
96
  operation: 'createSpreadsheet',
97
97
  label: 'Create spreadsheet',
98
98
  toolName: 'create_spreadsheet',
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.',
100
- parameters: [
101
- p('title', 'Name of the new document.'),
102
- p('folderId', 'Id of the Drive folder to create it in. Left out, it lands in the root of My Drive.', false),
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
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@hostwebhook/node-types",
3
- "version": "1.52.9",
3
+ "version": "1.52.10",
4
4
  "description": "Shared node type definitions, connection rules, and dispatch config for HostWebhook",
5
5
  "main": "dist/index.js",
6
6
  "types": "dist/index.d.ts",