@activepieces/piece-microsoft-excel-365 0.0.6 → 0.0.8
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/package.json +31 -11
- package/src/i18n/ca.json +92 -0
- package/src/i18n/de.json +92 -0
- package/src/i18n/es.json +92 -0
- package/src/i18n/fr.json +92 -0
- package/src/i18n/hi.json +92 -0
- package/src/i18n/id.json +92 -0
- package/src/i18n/ja.json +92 -0
- package/src/i18n/nl.json +92 -0
- package/src/i18n/pt.json +92 -0
- package/src/i18n/ru.json +92 -0
- package/src/i18n/translation.json +92 -0
- package/src/i18n/vi.json +92 -0
- package/src/i18n/zh.json +92 -0
- package/src/index.js +6 -3
- package/src/index.js.map +1 -1
- package/src/lib/actions/add-worksheet.js +2 -2
- package/src/lib/actions/add-worksheet.js.map +1 -1
- package/src/lib/actions/append-row.js +6 -6
- package/src/lib/actions/append-row.js.map +1 -1
- package/src/lib/actions/append-table-rows.js +2 -2
- package/src/lib/actions/append-table-rows.js.map +1 -1
- package/src/lib/actions/clear-worksheet.js +2 -2
- package/src/lib/actions/clear-worksheet.js.map +1 -1
- package/src/lib/actions/convert-to-range.js +2 -2
- package/src/lib/actions/convert-to-range.js.map +1 -1
- package/src/lib/actions/create-table.js +2 -2
- package/src/lib/actions/create-table.js.map +1 -1
- package/src/lib/actions/delete-table.js +2 -2
- package/src/lib/actions/delete-table.js.map +1 -1
- package/src/lib/actions/delete-workbook.js +2 -2
- package/src/lib/actions/delete-workbook.js.map +1 -1
- package/src/lib/actions/delete-worksheet.js +2 -2
- package/src/lib/actions/delete-worksheet.js.map +1 -1
- package/src/lib/actions/get-table-columns.js +2 -2
- package/src/lib/actions/get-table-columns.js.map +1 -1
- package/src/lib/actions/get-table-rows.js +2 -2
- package/src/lib/actions/get-table-rows.js.map +1 -1
- package/src/lib/actions/get-workbooks.js +2 -2
- package/src/lib/actions/get-workbooks.js.map +1 -1
- package/src/lib/actions/get-worksheet-rows.js +2 -2
- package/src/lib/actions/get-worksheet-rows.js.map +1 -1
- package/src/lib/actions/get-worksheets.js +2 -2
- package/src/lib/actions/get-worksheets.js.map +1 -1
- package/src/lib/actions/lookup-table-column.js +2 -2
- package/src/lib/actions/lookup-table-column.js.map +1 -1
- package/src/lib/actions/update-row.js +6 -6
- package/src/lib/actions/update-row.js.map +1 -1
- package/src/lib/common/common.d.ts +3 -0
- package/src/lib/common/common.js +20 -10
- package/src/lib/common/common.js.map +1 -1
- package/src/lib/trigger/new-row-added.js +7 -6
- package/src/lib/trigger/new-row-added.js.map +1 -1
package/package.json
CHANGED
|
@@ -1,19 +1,39 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@activepieces/piece-microsoft-excel-365",
|
|
3
|
-
"version": "0.0.
|
|
3
|
+
"version": "0.0.8",
|
|
4
4
|
"dependencies": {
|
|
5
|
-
"@
|
|
6
|
-
"
|
|
7
|
-
"
|
|
8
|
-
"
|
|
9
|
-
"
|
|
10
|
-
"
|
|
5
|
+
"@ai-sdk/anthropic": "1.2.12",
|
|
6
|
+
"@ai-sdk/google": "1.2.19",
|
|
7
|
+
"@ai-sdk/openai": "1.3.22",
|
|
8
|
+
"@ai-sdk/replicate": "0.2.8",
|
|
9
|
+
"@sinclair/typebox": "0.34.11",
|
|
10
|
+
"ai": "4.3.16",
|
|
11
|
+
"axios": "1.8.3",
|
|
12
|
+
"axios-retry": "4.4.1",
|
|
13
|
+
"deepmerge-ts": "7.1.0",
|
|
14
|
+
"fast-glob": "3.3.3",
|
|
15
|
+
"mime-types": "2.1.35",
|
|
16
|
+
"nanoid": "3.3.8",
|
|
11
17
|
"semver": "7.6.0",
|
|
12
|
-
"
|
|
13
|
-
"@activepieces/pieces-
|
|
14
|
-
"@activepieces/
|
|
15
|
-
"
|
|
18
|
+
"zod": "3.25.76",
|
|
19
|
+
"@activepieces/pieces-common": "0.6.0",
|
|
20
|
+
"@activepieces/pieces-framework": "0.15.0",
|
|
21
|
+
"@activepieces/shared": "0.17.2",
|
|
22
|
+
"tslib": "2.8.1"
|
|
16
23
|
},
|
|
24
|
+
"overrides": {
|
|
25
|
+
"@tryfabric/martian": {
|
|
26
|
+
"@notionhq/client": "$@notionhq/client"
|
|
27
|
+
},
|
|
28
|
+
"vite": {
|
|
29
|
+
"rollup": "npm:@rollup/wasm-node"
|
|
30
|
+
},
|
|
31
|
+
"stylus": "0.0.1-security"
|
|
32
|
+
},
|
|
33
|
+
"resolutions": {
|
|
34
|
+
"rollup": "npm:@rollup/wasm-node"
|
|
35
|
+
},
|
|
36
|
+
"types": "./src/index.d.ts",
|
|
17
37
|
"main": "./src/index.js",
|
|
18
38
|
"type": "commonjs"
|
|
19
39
|
}
|
package/src/i18n/ca.json
ADDED
|
@@ -0,0 +1,92 @@
|
|
|
1
|
+
{
|
|
2
|
+
"Microsoft Excel 365": "Microsoft Excel 365",
|
|
3
|
+
"Spreadsheet software by Microsoft": "Spreadsheet software by Microsoft",
|
|
4
|
+
"Authentication for Microsoft Excel 365": "Authentication for Microsoft Excel 365",
|
|
5
|
+
"Append Row to Worksheet": "Append Row to Worksheet",
|
|
6
|
+
"Get Worksheets": "Get Worksheets",
|
|
7
|
+
"Get Worksheet Rows": "Get Worksheet Rows",
|
|
8
|
+
"Update Worksheet Rows": "Update Worksheet Rows",
|
|
9
|
+
"Clear Worksheet": "Clear Worksheet",
|
|
10
|
+
"Delete Worksheet": "Delete Worksheet",
|
|
11
|
+
"Get Workbooks": "Get Workbooks",
|
|
12
|
+
"Delete Workbook": "Delete Workbook",
|
|
13
|
+
"Add a Worksheet to a Workbook": "Add a Worksheet to a Workbook",
|
|
14
|
+
"Get Table Rows": "Get Table Rows",
|
|
15
|
+
"Get Table Columns": "Get Table Columns",
|
|
16
|
+
"Create Table": "Create Table",
|
|
17
|
+
"Delete Table": "Delete Table",
|
|
18
|
+
"Lookup Table Column": "Lookup Table Column",
|
|
19
|
+
"Append Rows to a Table": "Append Rows to a Table",
|
|
20
|
+
"Convert to Range": "Convert to Range",
|
|
21
|
+
"Custom API Call": "Custom API Call",
|
|
22
|
+
"Append row of values to a worksheet": "Append row of values to a worksheet",
|
|
23
|
+
"Retrieve worksheets from a workbook": "Retrieve worksheets from a workbook",
|
|
24
|
+
"Retrieve rows from a worksheet": "Retrieve rows from a worksheet",
|
|
25
|
+
"Update a row in a worksheet": "Update a row in a worksheet",
|
|
26
|
+
"Clear a worksheet": "Clear a worksheet",
|
|
27
|
+
"Delete a worksheet in a workbook": "Delete a worksheet in a workbook",
|
|
28
|
+
"Retrieve a list of workbooks": "Retrieve a list of workbooks",
|
|
29
|
+
"Delete a workbook": "Delete a workbook",
|
|
30
|
+
"Add a worksheet to a workbook": "Add a worksheet to a workbook",
|
|
31
|
+
"List rows of a table in a worksheet": "List rows of a table in a worksheet",
|
|
32
|
+
"List columns of a table in a worksheet": "List columns of a table in a worksheet",
|
|
33
|
+
"Create a table in a worksheet": "Create a table in a worksheet",
|
|
34
|
+
"Delete a table from a worksheet": "Delete a table from a worksheet",
|
|
35
|
+
"Lookup a value in a table column in a worksheet": "Lookup a value in a table column in a worksheet",
|
|
36
|
+
"Append rows to a table": "Append rows to a table",
|
|
37
|
+
"Converts a table to a range": "Converts a table to a range",
|
|
38
|
+
"Make a custom API call to a specific endpoint": "Make a custom API call to a specific endpoint",
|
|
39
|
+
"Workbook": "Workbook",
|
|
40
|
+
"Worksheet": "Worksheet",
|
|
41
|
+
"Does the first row contain headers?": "Does the first row contain headers?",
|
|
42
|
+
"Values": "Values",
|
|
43
|
+
"Return All": "Return All",
|
|
44
|
+
"Limit": "Limit",
|
|
45
|
+
"Range": "Range",
|
|
46
|
+
"Header Row": "Header Row",
|
|
47
|
+
"First Data Row": "First Data Row",
|
|
48
|
+
"Row number": "Row number",
|
|
49
|
+
"Worksheet Name": "Worksheet Name",
|
|
50
|
+
"Table": "Table",
|
|
51
|
+
"Select Range": "Select Range",
|
|
52
|
+
"Has Headers": "Has Headers",
|
|
53
|
+
"Lookup Column": "Lookup Column",
|
|
54
|
+
"Lookup Value": "Lookup Value",
|
|
55
|
+
"Return All Matches": "Return All Matches",
|
|
56
|
+
"Method": "Method",
|
|
57
|
+
"Headers": "Headers",
|
|
58
|
+
"Query Parameters": "Query Parameters",
|
|
59
|
+
"Body": "Body",
|
|
60
|
+
"No Error on Failure": "No Error on Failure",
|
|
61
|
+
"Timeout (in seconds)": "Timeout (in seconds)",
|
|
62
|
+
"If the first row is headers": "If the first row is headers",
|
|
63
|
+
"The values to insert": "The values to insert",
|
|
64
|
+
"If checked, all worksheets will be returned": "If checked, all worksheets will be returned",
|
|
65
|
+
"Limit the number of worksheets returned": "Limit the number of worksheets returned",
|
|
66
|
+
"Range of the rows to retrieve (e.g., A2:B2)": "Range of the rows to retrieve (e.g., A2:B2)",
|
|
67
|
+
"Row number of the header": "Row number of the header",
|
|
68
|
+
"Row number of the first data row": "Row number of the first data row",
|
|
69
|
+
"The row number to update": "The row number to update",
|
|
70
|
+
"The range in A1 notation (e.g., A2:B2) to clear in the worksheet, if not provided, clear the entire worksheet": "The range in A1 notation (e.g., A2:B2) to clear in the worksheet, if not provided, clear the entire worksheet",
|
|
71
|
+
"Limits the number of workbooks returned, returns all workbooks if empty": "Limits the number of workbooks returned, returns all workbooks if empty",
|
|
72
|
+
"The name of the new worksheet": "The name of the new worksheet",
|
|
73
|
+
"Limit the number of rows retrieved": "Limit the number of rows retrieved",
|
|
74
|
+
"Limit the number of columns retrieved": "Limit the number of columns retrieved",
|
|
75
|
+
"How to select the range for the table": "How to select the range for the table",
|
|
76
|
+
"The range of cells in A1 notation (e.g., A2:B2) that will be converted to a table": "The range of cells in A1 notation (e.g., A2:B2) that will be converted to a table",
|
|
77
|
+
"Whether the range has column labels": "Whether the range has column labels",
|
|
78
|
+
"The column name to lookup the value in": "The column name to lookup the value in",
|
|
79
|
+
"The value to lookup": "The value to lookup",
|
|
80
|
+
"If checked, all matching rows will be returned": "If checked, all matching rows will be returned",
|
|
81
|
+
"Authorization headers are injected automatically from your connection.": "Authorization headers are injected automatically from your connection.",
|
|
82
|
+
"GET": "GET",
|
|
83
|
+
"POST": "POST",
|
|
84
|
+
"PATCH": "PATCH",
|
|
85
|
+
"PUT": "PUT",
|
|
86
|
+
"DELETE": "DELETE",
|
|
87
|
+
"HEAD": "HEAD",
|
|
88
|
+
"New Row": "New Row",
|
|
89
|
+
"Trigger when a new row is added, and it can include existing rows as well.": "Trigger when a new row is added, and it can include existing rows as well.",
|
|
90
|
+
"Max Rows to Poll": "Max Rows to Poll",
|
|
91
|
+
"The maximum number of rows to poll, the rest will be polled on the next run.": "The maximum number of rows to poll, the rest will be polled on the next run."
|
|
92
|
+
}
|
package/src/i18n/de.json
ADDED
|
@@ -0,0 +1,92 @@
|
|
|
1
|
+
{
|
|
2
|
+
"Microsoft Excel 365": "Microsoft Excel 365",
|
|
3
|
+
"Spreadsheet software by Microsoft": "Tabellensoftware von Microsoft",
|
|
4
|
+
"Authentication for Microsoft Excel 365": "Authentifizierung für Microsoft Excel 365",
|
|
5
|
+
"Append Row to Worksheet": "Zeile an Arbeitsblatt anhängen",
|
|
6
|
+
"Get Worksheets": "Arbeitsblätter abrufen",
|
|
7
|
+
"Get Worksheet Rows": "Arbeitsblatt Zeilen abrufen",
|
|
8
|
+
"Update Worksheet Rows": "Arbeitsblatt Zeilen aktualisieren",
|
|
9
|
+
"Clear Worksheet": "Arbeitsblatt löschen",
|
|
10
|
+
"Delete Worksheet": "Arbeitsblatt löschen",
|
|
11
|
+
"Get Workbooks": "Arbeitsbücher abrufen",
|
|
12
|
+
"Delete Workbook": "Arbeitsbuch löschen",
|
|
13
|
+
"Add a Worksheet to a Workbook": "Ein Arbeitsblatt zu einem Arbeitsbuch hinzufügen",
|
|
14
|
+
"Get Table Rows": "Tabellenzeile erhalten",
|
|
15
|
+
"Get Table Columns": "Tabellenspalten erhalten",
|
|
16
|
+
"Create Table": "Tabelle erstellen",
|
|
17
|
+
"Delete Table": "Tabelle löschen",
|
|
18
|
+
"Lookup Table Column": "Tabellenspalte suchen",
|
|
19
|
+
"Append Rows to a Table": "Zeilen an einen Tisch anhängen",
|
|
20
|
+
"Convert to Range": "In Bereich umwandeln",
|
|
21
|
+
"Custom API Call": "Eigener API-Aufruf",
|
|
22
|
+
"Append row of values to a worksheet": "Füge eine Zeile von Werten zu einer Tabelle hinzu",
|
|
23
|
+
"Retrieve worksheets from a workbook": "Arbeitsblätter aus einem Arbeitsbuch abrufen",
|
|
24
|
+
"Retrieve rows from a worksheet": "Datensätze von einem Arbeitsblatt abrufen",
|
|
25
|
+
"Update a row in a worksheet": "Eine Zeile in einer Tabelle aktualisieren",
|
|
26
|
+
"Clear a worksheet": "Arbeitsblatt leeren",
|
|
27
|
+
"Delete a worksheet in a workbook": "Arbeitsblatt in einem Arbeitsbuch löschen",
|
|
28
|
+
"Retrieve a list of workbooks": "Liste der Arbeitsbücher abrufen",
|
|
29
|
+
"Delete a workbook": "Ein Arbeitsbuch löschen",
|
|
30
|
+
"Add a worksheet to a workbook": "Ein Arbeitsblatt zu einem Arbeitsbuch hinzufügen",
|
|
31
|
+
"List rows of a table in a worksheet": "Datensätze einer Tabelle in einer Tabelle auflisten",
|
|
32
|
+
"List columns of a table in a worksheet": "Spalten einer Tabelle in einer Tabelle auflisten",
|
|
33
|
+
"Create a table in a worksheet": "Tabelle in einer Tabelle erstellen",
|
|
34
|
+
"Delete a table from a worksheet": "Tabelle aus Arbeitsblatt löschen",
|
|
35
|
+
"Lookup a value in a table column in a worksheet": "Suche einen Wert in einer Tabellenspalte in einem Arbeitsblatt",
|
|
36
|
+
"Append rows to a table": "Zeilen an eine Tabelle anhängen",
|
|
37
|
+
"Converts a table to a range": "Konvertiert eine Tabelle in einen Bereich",
|
|
38
|
+
"Make a custom API call to a specific endpoint": "Einen benutzerdefinierten API-Aufruf an einen bestimmten Endpunkt machen",
|
|
39
|
+
"Workbook": "Arbeitsbuch",
|
|
40
|
+
"Worksheet": "Arbeitsblatt",
|
|
41
|
+
"Does the first row contain headers?": "Enthält die erste Zeile Kopfzeilen?",
|
|
42
|
+
"Values": "Werte",
|
|
43
|
+
"Return All": "Alle zurückgeben",
|
|
44
|
+
"Limit": "Limit",
|
|
45
|
+
"Range": "Range",
|
|
46
|
+
"Header Row": "Kopfzeile",
|
|
47
|
+
"First Data Row": "Erste Datenzeile",
|
|
48
|
+
"Row number": "Zeilennummer",
|
|
49
|
+
"Worksheet Name": "Arbeitsblattname",
|
|
50
|
+
"Table": "Tisch",
|
|
51
|
+
"Select Range": "Bereich auswählen",
|
|
52
|
+
"Has Headers": "Hat Kopfzeilen",
|
|
53
|
+
"Lookup Column": "Spalte suchen",
|
|
54
|
+
"Lookup Value": "Suchwert",
|
|
55
|
+
"Return All Matches": "Alle Matches zurückgeben",
|
|
56
|
+
"Method": "Methode",
|
|
57
|
+
"Headers": "Kopfzeilen",
|
|
58
|
+
"Query Parameters": "Abfrageparameter",
|
|
59
|
+
"Body": "Körper",
|
|
60
|
+
"No Error on Failure": "Kein Fehler bei Fehler",
|
|
61
|
+
"Timeout (in seconds)": "Timeout (in Sekunden)",
|
|
62
|
+
"If the first row is headers": "Wenn die erste Zeile Kopfzeilen ist",
|
|
63
|
+
"The values to insert": "Die einzufügenden Werte",
|
|
64
|
+
"If checked, all worksheets will be returned": "Wenn aktiviert, werden alle Arbeitsblätter zurückgegeben",
|
|
65
|
+
"Limit the number of worksheets returned": "Anzahl der zurückgegebenen Arbeitsblätter begrenzen",
|
|
66
|
+
"Range of the rows to retrieve (e.g., A2:B2)": "Bereich der zu holenden Zeilen (z.B. A2:B2)",
|
|
67
|
+
"Row number of the header": "Zeilennummer der Kopfzeile",
|
|
68
|
+
"Row number of the first data row": "Zeilennummer der ersten Datenzeile",
|
|
69
|
+
"The row number to update": "Die zu aktualisierende Zeilennummer",
|
|
70
|
+
"The range in A1 notation (e.g., A2:B2) to clear in the worksheet, if not provided, clear the entire worksheet": "Der Bereich in der Schreibweise A1 (z. B. A2:B2), um in der Tabelle zu löschen, falls nicht vorhanden, löschen Sie das gesamte Arbeitsblatt",
|
|
71
|
+
"Limits the number of workbooks returned, returns all workbooks if empty": "Begrenzt die Anzahl der zurückgegebenen Arbeitsbücher zurück, gibt alle Arbeitsbücher zurück, wenn leer",
|
|
72
|
+
"The name of the new worksheet": "Der Name des neuen Arbeitsblatts",
|
|
73
|
+
"Limit the number of rows retrieved": "Anzahl der abgerufenen Zeilen begrenzen",
|
|
74
|
+
"Limit the number of columns retrieved": "Anzahl der abgerufenen Spalten begrenzen",
|
|
75
|
+
"How to select the range for the table": "Auswahl des Bereichs für die Tabelle",
|
|
76
|
+
"The range of cells in A1 notation (e.g., A2:B2) that will be converted to a table": "Der Bereich der Zellen in A1-Notation (z. B. A2:B2), die in eine Tabelle konvertiert werden",
|
|
77
|
+
"Whether the range has column labels": "Gibt an, ob der Bereich Spaltenbezeichnungen hat",
|
|
78
|
+
"The column name to lookup the value in": "Der Spaltenname für die Suche nach dem Wert in",
|
|
79
|
+
"The value to lookup": "Der zu durchsuchende Wert",
|
|
80
|
+
"If checked, all matching rows will be returned": "Wenn aktiviert, werden alle übereinstimmenden Zeilen zurückgegeben",
|
|
81
|
+
"Authorization headers are injected automatically from your connection.": "Autorisierungs-Header werden automatisch von Ihrer Verbindung injiziert.",
|
|
82
|
+
"GET": "ERHALTEN",
|
|
83
|
+
"POST": "POST",
|
|
84
|
+
"PATCH": "PATCH",
|
|
85
|
+
"PUT": "PUT",
|
|
86
|
+
"DELETE": "LÖSCHEN",
|
|
87
|
+
"HEAD": "HEAD",
|
|
88
|
+
"New Row": "Neue Zeile",
|
|
89
|
+
"Trigger when a new row is added, and it can include existing rows as well.": "Wird ausgelöst, wenn eine neue Zeile hinzugefügt wird, und kann auch vorhandene Datensätze enthalten.",
|
|
90
|
+
"Max Rows to Poll": "Max. Zeilen zur Abfrage",
|
|
91
|
+
"The maximum number of rows to poll, the rest will be polled on the next run.": "Die maximale Anzahl der zu befragenden Zeilen, der Rest wird beim nächsten Lauf befragt."
|
|
92
|
+
}
|
package/src/i18n/es.json
ADDED
|
@@ -0,0 +1,92 @@
|
|
|
1
|
+
{
|
|
2
|
+
"Microsoft Excel 365": "Microsoft Excel 365",
|
|
3
|
+
"Spreadsheet software by Microsoft": "Software de hoja de cálculo por Microsoft",
|
|
4
|
+
"Authentication for Microsoft Excel 365": "Autenticación para Microsoft Excel 365",
|
|
5
|
+
"Append Row to Worksheet": "Añadir fila a la hoja de trabajo",
|
|
6
|
+
"Get Worksheets": "Obtener hojas de trabajo",
|
|
7
|
+
"Get Worksheet Rows": "Obtener filas de hojas de trabajo",
|
|
8
|
+
"Update Worksheet Rows": "Actualizar Filas de Hoja de Trabajo",
|
|
9
|
+
"Clear Worksheet": "Limpiar hoja de trabajo",
|
|
10
|
+
"Delete Worksheet": "Eliminar hoja de trabajo",
|
|
11
|
+
"Get Workbooks": "Obtener libros de trabajo",
|
|
12
|
+
"Delete Workbook": "Eliminar Libro de Trabajo",
|
|
13
|
+
"Add a Worksheet to a Workbook": "Añadir una hoja de trabajo a un libro de trabajo",
|
|
14
|
+
"Get Table Rows": "Obtener Arcos de Tabla",
|
|
15
|
+
"Get Table Columns": "Obtener columnas de tabla",
|
|
16
|
+
"Create Table": "Crear tabla",
|
|
17
|
+
"Delete Table": "Eliminar tabla",
|
|
18
|
+
"Lookup Table Column": "Columna de Tabla de Búsqueda",
|
|
19
|
+
"Append Rows to a Table": "Añadir filas a una tabla",
|
|
20
|
+
"Convert to Range": "Convertir a rango",
|
|
21
|
+
"Custom API Call": "Llamada API personalizada",
|
|
22
|
+
"Append row of values to a worksheet": "Añadir fila de valores a una hoja de trabajo",
|
|
23
|
+
"Retrieve worksheets from a workbook": "Recuperar hojas de trabajo de un libro",
|
|
24
|
+
"Retrieve rows from a worksheet": "Recuperar filas de una hoja de trabajo",
|
|
25
|
+
"Update a row in a worksheet": "Actualizar una fila en una hoja de trabajo",
|
|
26
|
+
"Clear a worksheet": "Limpiar una hoja de trabajo",
|
|
27
|
+
"Delete a worksheet in a workbook": "Eliminar una hoja de trabajo en un libro",
|
|
28
|
+
"Retrieve a list of workbooks": "Recuperar una lista de libros de trabajo",
|
|
29
|
+
"Delete a workbook": "Eliminar un libro",
|
|
30
|
+
"Add a worksheet to a workbook": "Añadir una hoja de trabajo a un libro",
|
|
31
|
+
"List rows of a table in a worksheet": "Listar filas de una tabla en una hoja de trabajo",
|
|
32
|
+
"List columns of a table in a worksheet": "Listar columnas de una tabla en una hoja de trabajo",
|
|
33
|
+
"Create a table in a worksheet": "Crear una tabla en una hoja de trabajo",
|
|
34
|
+
"Delete a table from a worksheet": "Eliminar una tabla de una hoja de trabajo",
|
|
35
|
+
"Lookup a value in a table column in a worksheet": "Buscar un valor en una columna de tabla en una hoja de trabajo",
|
|
36
|
+
"Append rows to a table": "Añadir filas a una tabla",
|
|
37
|
+
"Converts a table to a range": "Convierte una tabla a un rango",
|
|
38
|
+
"Make a custom API call to a specific endpoint": "Hacer una llamada API personalizada a un extremo específico",
|
|
39
|
+
"Workbook": "Libro de trabajo",
|
|
40
|
+
"Worksheet": "Hoja de trabajo",
|
|
41
|
+
"Does the first row contain headers?": "¿La primera fila contiene cabeceras?",
|
|
42
|
+
"Values": "Valores",
|
|
43
|
+
"Return All": "Devolver todos",
|
|
44
|
+
"Limit": "Límite",
|
|
45
|
+
"Range": "Range",
|
|
46
|
+
"Header Row": "Fila de cabecera",
|
|
47
|
+
"First Data Row": "Primera fila de datos",
|
|
48
|
+
"Row number": "Número de fila",
|
|
49
|
+
"Worksheet Name": "Nombre de la hoja de trabajo",
|
|
50
|
+
"Table": "Tabla",
|
|
51
|
+
"Select Range": "Seleccionar rango",
|
|
52
|
+
"Has Headers": "Tiene cabeceras",
|
|
53
|
+
"Lookup Column": "Columna de Búsqueda",
|
|
54
|
+
"Lookup Value": "Valor de Búsqueda",
|
|
55
|
+
"Return All Matches": "Devolver todas las partidas",
|
|
56
|
+
"Method": "Método",
|
|
57
|
+
"Headers": "Encabezados",
|
|
58
|
+
"Query Parameters": "Parámetros de consulta",
|
|
59
|
+
"Body": "Cuerpo",
|
|
60
|
+
"No Error on Failure": "No hay ningún error en fallo",
|
|
61
|
+
"Timeout (in seconds)": "Tiempo de espera (en segundos)",
|
|
62
|
+
"If the first row is headers": "Si la primera fila son cabeceras",
|
|
63
|
+
"The values to insert": "Los valores a insertar",
|
|
64
|
+
"If checked, all worksheets will be returned": "Si está marcado, todas las hojas de trabajo serán devueltas",
|
|
65
|
+
"Limit the number of worksheets returned": "Limitar el número de hojas de cálculo devueltas",
|
|
66
|
+
"Range of the rows to retrieve (e.g., A2:B2)": "Rango de las filas a recuperar (por ejemplo, A2:B2)",
|
|
67
|
+
"Row number of the header": "Número de fila de la cabecera",
|
|
68
|
+
"Row number of the first data row": "Número de fila de la primera fila de datos",
|
|
69
|
+
"The row number to update": "El número de fila a actualizar",
|
|
70
|
+
"The range in A1 notation (e.g., A2:B2) to clear in the worksheet, if not provided, clear the entire worksheet": "El rango en notación A1 (por ej., A2:B2) para limpiar en la hoja de cálculo, si no se proporciona, limpiar toda la hoja de trabajo",
|
|
71
|
+
"Limits the number of workbooks returned, returns all workbooks if empty": "Limita el número de libros de trabajo devueltos, devuelve todos los libros de trabajo si está vacío",
|
|
72
|
+
"The name of the new worksheet": "El nombre de la nueva hoja de trabajo",
|
|
73
|
+
"Limit the number of rows retrieved": "Limitar el número de filas recuperadas",
|
|
74
|
+
"Limit the number of columns retrieved": "Limitar el número de columnas recuperadas",
|
|
75
|
+
"How to select the range for the table": "Cómo seleccionar el rango para la tabla",
|
|
76
|
+
"The range of cells in A1 notation (e.g., A2:B2) that will be converted to a table": "El rango de celdas en notación A1 (por ejemplo, A2:B2) que se convertirá en una tabla",
|
|
77
|
+
"Whether the range has column labels": "Si el rango tiene etiquetas de columna",
|
|
78
|
+
"The column name to lookup the value in": "El nombre de la columna en la que buscar el valor",
|
|
79
|
+
"The value to lookup": "El valor a buscar",
|
|
80
|
+
"If checked, all matching rows will be returned": "Si está marcado, todas las filas coincidentes serán devueltas",
|
|
81
|
+
"Authorization headers are injected automatically from your connection.": "Las cabeceras de autorización se inyectan automáticamente desde tu conexión.",
|
|
82
|
+
"GET": "RECOGER",
|
|
83
|
+
"POST": "POST",
|
|
84
|
+
"PATCH": "PATCH",
|
|
85
|
+
"PUT": "PUT",
|
|
86
|
+
"DELETE": "BORRAR",
|
|
87
|
+
"HEAD": "LIMPIO",
|
|
88
|
+
"New Row": "Nueva fila",
|
|
89
|
+
"Trigger when a new row is added, and it can include existing rows as well.": "Activar cuando se agrega un nuevo registro, y también puede incluir registros existentes.",
|
|
90
|
+
"Max Rows to Poll": "Máximas filas a la encuesta",
|
|
91
|
+
"The maximum number of rows to poll, the rest will be polled on the next run.": "El número máximo de filas a encuestar, el resto serán encuestados en la próxima ejecución."
|
|
92
|
+
}
|
package/src/i18n/fr.json
ADDED
|
@@ -0,0 +1,92 @@
|
|
|
1
|
+
{
|
|
2
|
+
"Microsoft Excel 365": "Microsoft Excel 365",
|
|
3
|
+
"Spreadsheet software by Microsoft": "Logiciel de la feuille de calcul par Microsoft",
|
|
4
|
+
"Authentication for Microsoft Excel 365": "Authentification pour Microsoft Excel 365",
|
|
5
|
+
"Append Row to Worksheet": "Ajouter la ligne à la feuille de travail",
|
|
6
|
+
"Get Worksheets": "Obtenir des feuilles de travail",
|
|
7
|
+
"Get Worksheet Rows": "Récupérer les lignes de feuilles de travail",
|
|
8
|
+
"Update Worksheet Rows": "Mettre à jour les lignes de la feuille de travail",
|
|
9
|
+
"Clear Worksheet": "Vider la fiche",
|
|
10
|
+
"Delete Worksheet": "Supprimer la fiche",
|
|
11
|
+
"Get Workbooks": "Obtenir des cahiers de travail",
|
|
12
|
+
"Delete Workbook": "Supprimer le carnet de travail",
|
|
13
|
+
"Add a Worksheet to a Workbook": "Ajouter une feuille de travail à un cahier de travail",
|
|
14
|
+
"Get Table Rows": "Récupérer les lignes de la table",
|
|
15
|
+
"Get Table Columns": "Récupérer les colonnes de la table",
|
|
16
|
+
"Create Table": "Créer une table",
|
|
17
|
+
"Delete Table": "Supprimer la table",
|
|
18
|
+
"Lookup Table Column": "Colonne de table de recherche",
|
|
19
|
+
"Append Rows to a Table": "Ajouter les lignes à une table",
|
|
20
|
+
"Convert to Range": "Convertir en Portée",
|
|
21
|
+
"Custom API Call": "Appel API personnalisé",
|
|
22
|
+
"Append row of values to a worksheet": "Ajouter une ligne de valeurs à une feuille de calcul",
|
|
23
|
+
"Retrieve worksheets from a workbook": "Récupérer les feuilles de travail d'un classeur",
|
|
24
|
+
"Retrieve rows from a worksheet": "Récupérer les lignes d'une feuille de travail",
|
|
25
|
+
"Update a row in a worksheet": "Mettre à jour une ligne dans une feuille de calcul",
|
|
26
|
+
"Clear a worksheet": "Vider une fiche",
|
|
27
|
+
"Delete a worksheet in a workbook": "Supprimer une feuille de travail dans un cahier de travail",
|
|
28
|
+
"Retrieve a list of workbooks": "Récupérer une liste de classeurs",
|
|
29
|
+
"Delete a workbook": "Supprimer un cahier de travail",
|
|
30
|
+
"Add a worksheet to a workbook": "Ajouter une feuille de travail à un cahier de travail",
|
|
31
|
+
"List rows of a table in a worksheet": "Liste les lignes d'une table dans une feuille de calcul",
|
|
32
|
+
"List columns of a table in a worksheet": "Liste les colonnes d'une table dans une feuille de travail",
|
|
33
|
+
"Create a table in a worksheet": "Créer une table dans une feuille de calcul",
|
|
34
|
+
"Delete a table from a worksheet": "Supprimer une table d'une feuille de calcul",
|
|
35
|
+
"Lookup a value in a table column in a worksheet": "Recherche une valeur dans une colonne de table dans une feuille de calcul",
|
|
36
|
+
"Append rows to a table": "Ajouter des lignes à une table",
|
|
37
|
+
"Converts a table to a range": "Convertit une table en une plage",
|
|
38
|
+
"Make a custom API call to a specific endpoint": "Passez un appel API personnalisé à un point de terminaison spécifique",
|
|
39
|
+
"Workbook": "Carnet de travail",
|
|
40
|
+
"Worksheet": "Feuille de travail",
|
|
41
|
+
"Does the first row contain headers?": "La première ligne contient-elle des en-têtes ?",
|
|
42
|
+
"Values": "Valeurs",
|
|
43
|
+
"Return All": "Retourner tout",
|
|
44
|
+
"Limit": "Limite",
|
|
45
|
+
"Range": "Range",
|
|
46
|
+
"Header Row": "Ligne d'en-tête",
|
|
47
|
+
"First Data Row": "Première ligne de données",
|
|
48
|
+
"Row number": "Numéro de ligne",
|
|
49
|
+
"Worksheet Name": "Nom de la fiche",
|
|
50
|
+
"Table": "Tableau",
|
|
51
|
+
"Select Range": "Sélectionner la plage",
|
|
52
|
+
"Has Headers": "A des entêtes",
|
|
53
|
+
"Lookup Column": "Colonne de recherche",
|
|
54
|
+
"Lookup Value": "Valeur de recherche",
|
|
55
|
+
"Return All Matches": "Retourner tous les matchs",
|
|
56
|
+
"Method": "Méthode",
|
|
57
|
+
"Headers": "En-têtes",
|
|
58
|
+
"Query Parameters": "Paramètres de requête",
|
|
59
|
+
"Body": "Corps",
|
|
60
|
+
"No Error on Failure": "Aucune erreur en cas d'échec",
|
|
61
|
+
"Timeout (in seconds)": "Délai d'attente (en secondes)",
|
|
62
|
+
"If the first row is headers": "Si la première ligne est des en-têtes",
|
|
63
|
+
"The values to insert": "Les valeurs à insérer",
|
|
64
|
+
"If checked, all worksheets will be returned": "Si coché, toutes les feuilles de travail seront retournées",
|
|
65
|
+
"Limit the number of worksheets returned": "Limiter le nombre de feuilles de travail retournées",
|
|
66
|
+
"Range of the rows to retrieve (e.g., A2:B2)": "Plage des lignes à récupérer (par exemple, A2:B2)",
|
|
67
|
+
"Row number of the header": "Numéro de ligne de l'en-tête",
|
|
68
|
+
"Row number of the first data row": "Numéro de ligne de la première ligne de données",
|
|
69
|
+
"The row number to update": "Le numéro de ligne à mettre à jour",
|
|
70
|
+
"The range in A1 notation (e.g., A2:B2) to clear in the worksheet, if not provided, clear the entire worksheet": "La plage en notation A1 (par exemple, A2:B2) à effacer dans la feuille de travail, si elle n'est pas fournie, effacer la feuille de travail entière",
|
|
71
|
+
"Limits the number of workbooks returned, returns all workbooks if empty": "Limite le nombre de classeurs retournés, retourne tous les classeurs si vide",
|
|
72
|
+
"The name of the new worksheet": "Le nom de la nouvelle fiche",
|
|
73
|
+
"Limit the number of rows retrieved": "Limiter le nombre de lignes récupérées",
|
|
74
|
+
"Limit the number of columns retrieved": "Limiter le nombre de colonnes récupérées",
|
|
75
|
+
"How to select the range for the table": "Comment sélectionner la plage pour la table",
|
|
76
|
+
"The range of cells in A1 notation (e.g., A2:B2) that will be converted to a table": "La plage de cellules en notation A1 (par exemple, A2:B2) qui seront converties en table",
|
|
77
|
+
"Whether the range has column labels": "Si la plage a des libellés de colonnes",
|
|
78
|
+
"The column name to lookup the value in": "Le nom de la colonne dans laquelle rechercher la valeur",
|
|
79
|
+
"The value to lookup": "La valeur à rechercher",
|
|
80
|
+
"If checked, all matching rows will be returned": "Si coché, toutes les lignes correspondantes seront retournées",
|
|
81
|
+
"Authorization headers are injected automatically from your connection.": "Les en-têtes d'autorisation sont injectés automatiquement à partir de votre connexion.",
|
|
82
|
+
"GET": "OBTENIR",
|
|
83
|
+
"POST": "POSTER",
|
|
84
|
+
"PATCH": "PATCH",
|
|
85
|
+
"PUT": "EFFACER",
|
|
86
|
+
"DELETE": "SUPPRIMER",
|
|
87
|
+
"HEAD": "TÊTE",
|
|
88
|
+
"New Row": "Nouvelle ligne",
|
|
89
|
+
"Trigger when a new row is added, and it can include existing rows as well.": "Déclenche quand une nouvelle ligne est ajoutée, et peut également inclure des lignes existantes.",
|
|
90
|
+
"Max Rows to Poll": "Nombre maximum de lignes au sondage",
|
|
91
|
+
"The maximum number of rows to poll, the rest will be polled on the next run.": "Le nombre maximum de lignes à voter, le reste sera sondé lors de la prochaine exécution."
|
|
92
|
+
}
|
package/src/i18n/hi.json
ADDED
|
@@ -0,0 +1,92 @@
|
|
|
1
|
+
{
|
|
2
|
+
"Microsoft Excel 365": "Microsoft Excel 365",
|
|
3
|
+
"Spreadsheet software by Microsoft": "Spreadsheet software by Microsoft",
|
|
4
|
+
"Authentication for Microsoft Excel 365": "Authentication for Microsoft Excel 365",
|
|
5
|
+
"Append Row to Worksheet": "Append Row to Worksheet",
|
|
6
|
+
"Get Worksheets": "Get Worksheets",
|
|
7
|
+
"Get Worksheet Rows": "Get Worksheet Rows",
|
|
8
|
+
"Update Worksheet Rows": "Update Worksheet Rows",
|
|
9
|
+
"Clear Worksheet": "Clear Worksheet",
|
|
10
|
+
"Delete Worksheet": "Delete Worksheet",
|
|
11
|
+
"Get Workbooks": "Get Workbooks",
|
|
12
|
+
"Delete Workbook": "Delete Workbook",
|
|
13
|
+
"Add a Worksheet to a Workbook": "Add a Worksheet to a Workbook",
|
|
14
|
+
"Get Table Rows": "Get Table Rows",
|
|
15
|
+
"Get Table Columns": "Get Table Columns",
|
|
16
|
+
"Create Table": "Create Table",
|
|
17
|
+
"Delete Table": "Delete Table",
|
|
18
|
+
"Lookup Table Column": "Lookup Table Column",
|
|
19
|
+
"Append Rows to a Table": "Append Rows to a Table",
|
|
20
|
+
"Convert to Range": "Convert to Range",
|
|
21
|
+
"Custom API Call": "Custom API Call",
|
|
22
|
+
"Append row of values to a worksheet": "Append row of values to a worksheet",
|
|
23
|
+
"Retrieve worksheets from a workbook": "Retrieve worksheets from a workbook",
|
|
24
|
+
"Retrieve rows from a worksheet": "Retrieve rows from a worksheet",
|
|
25
|
+
"Update a row in a worksheet": "Update a row in a worksheet",
|
|
26
|
+
"Clear a worksheet": "Clear a worksheet",
|
|
27
|
+
"Delete a worksheet in a workbook": "Delete a worksheet in a workbook",
|
|
28
|
+
"Retrieve a list of workbooks": "Retrieve a list of workbooks",
|
|
29
|
+
"Delete a workbook": "Delete a workbook",
|
|
30
|
+
"Add a worksheet to a workbook": "Add a worksheet to a workbook",
|
|
31
|
+
"List rows of a table in a worksheet": "List rows of a table in a worksheet",
|
|
32
|
+
"List columns of a table in a worksheet": "List columns of a table in a worksheet",
|
|
33
|
+
"Create a table in a worksheet": "Create a table in a worksheet",
|
|
34
|
+
"Delete a table from a worksheet": "Delete a table from a worksheet",
|
|
35
|
+
"Lookup a value in a table column in a worksheet": "Lookup a value in a table column in a worksheet",
|
|
36
|
+
"Append rows to a table": "Append rows to a table",
|
|
37
|
+
"Converts a table to a range": "Converts a table to a range",
|
|
38
|
+
"Make a custom API call to a specific endpoint": "Make a custom API call to a specific endpoint",
|
|
39
|
+
"Workbook": "Workbook",
|
|
40
|
+
"Worksheet": "Worksheet",
|
|
41
|
+
"Does the first row contain headers?": "Does the first row contain headers?",
|
|
42
|
+
"Values": "Values",
|
|
43
|
+
"Return All": "Return All",
|
|
44
|
+
"Limit": "Limit",
|
|
45
|
+
"Range": "Range",
|
|
46
|
+
"Header Row": "Header Row",
|
|
47
|
+
"First Data Row": "First Data Row",
|
|
48
|
+
"Row number": "Row number",
|
|
49
|
+
"Worksheet Name": "Worksheet Name",
|
|
50
|
+
"Table": "Table",
|
|
51
|
+
"Select Range": "Select Range",
|
|
52
|
+
"Has Headers": "Has Headers",
|
|
53
|
+
"Lookup Column": "Lookup Column",
|
|
54
|
+
"Lookup Value": "Lookup Value",
|
|
55
|
+
"Return All Matches": "Return All Matches",
|
|
56
|
+
"Method": "Method",
|
|
57
|
+
"Headers": "Headers",
|
|
58
|
+
"Query Parameters": "Query Parameters",
|
|
59
|
+
"Body": "Body",
|
|
60
|
+
"No Error on Failure": "No Error on Failure",
|
|
61
|
+
"Timeout (in seconds)": "Timeout (in seconds)",
|
|
62
|
+
"If the first row is headers": "If the first row is headers",
|
|
63
|
+
"The values to insert": "The values to insert",
|
|
64
|
+
"If checked, all worksheets will be returned": "If checked, all worksheets will be returned",
|
|
65
|
+
"Limit the number of worksheets returned": "Limit the number of worksheets returned",
|
|
66
|
+
"Range of the rows to retrieve (e.g., A2:B2)": "Range of the rows to retrieve (e.g., A2:B2)",
|
|
67
|
+
"Row number of the header": "Row number of the header",
|
|
68
|
+
"Row number of the first data row": "Row number of the first data row",
|
|
69
|
+
"The row number to update": "The row number to update",
|
|
70
|
+
"The range in A1 notation (e.g., A2:B2) to clear in the worksheet, if not provided, clear the entire worksheet": "The range in A1 notation (e.g., A2:B2) to clear in the worksheet, if not provided, clear the entire worksheet",
|
|
71
|
+
"Limits the number of workbooks returned, returns all workbooks if empty": "Limits the number of workbooks returned, returns all workbooks if empty",
|
|
72
|
+
"The name of the new worksheet": "The name of the new worksheet",
|
|
73
|
+
"Limit the number of rows retrieved": "Limit the number of rows retrieved",
|
|
74
|
+
"Limit the number of columns retrieved": "Limit the number of columns retrieved",
|
|
75
|
+
"How to select the range for the table": "How to select the range for the table",
|
|
76
|
+
"The range of cells in A1 notation (e.g., A2:B2) that will be converted to a table": "The range of cells in A1 notation (e.g., A2:B2) that will be converted to a table",
|
|
77
|
+
"Whether the range has column labels": "Whether the range has column labels",
|
|
78
|
+
"The column name to lookup the value in": "The column name to lookup the value in",
|
|
79
|
+
"The value to lookup": "The value to lookup",
|
|
80
|
+
"If checked, all matching rows will be returned": "If checked, all matching rows will be returned",
|
|
81
|
+
"Authorization headers are injected automatically from your connection.": "Authorization headers are injected automatically from your connection.",
|
|
82
|
+
"GET": "GET",
|
|
83
|
+
"POST": "POST",
|
|
84
|
+
"PATCH": "PATCH",
|
|
85
|
+
"PUT": "PUT",
|
|
86
|
+
"DELETE": "DELETE",
|
|
87
|
+
"HEAD": "HEAD",
|
|
88
|
+
"New Row": "New Row",
|
|
89
|
+
"Trigger when a new row is added, and it can include existing rows as well.": "Trigger when a new row is added, and it can include existing rows as well.",
|
|
90
|
+
"Max Rows to Poll": "Max Rows to Poll",
|
|
91
|
+
"The maximum number of rows to poll, the rest will be polled on the next run.": "The maximum number of rows to poll, the rest will be polled on the next run."
|
|
92
|
+
}
|
package/src/i18n/id.json
ADDED
|
@@ -0,0 +1,92 @@
|
|
|
1
|
+
{
|
|
2
|
+
"Microsoft Excel 365": "Microsoft Excel 365",
|
|
3
|
+
"Spreadsheet software by Microsoft": "Spreadsheet software by Microsoft",
|
|
4
|
+
"Authentication for Microsoft Excel 365": "Authentication for Microsoft Excel 365",
|
|
5
|
+
"Append Row to Worksheet": "Append Row to Worksheet",
|
|
6
|
+
"Get Worksheets": "Get Worksheets",
|
|
7
|
+
"Get Worksheet Rows": "Get Worksheet Rows",
|
|
8
|
+
"Update Worksheet Rows": "Update Worksheet Rows",
|
|
9
|
+
"Clear Worksheet": "Clear Worksheet",
|
|
10
|
+
"Delete Worksheet": "Delete Worksheet",
|
|
11
|
+
"Get Workbooks": "Get Workbooks",
|
|
12
|
+
"Delete Workbook": "Delete Workbook",
|
|
13
|
+
"Add a Worksheet to a Workbook": "Add a Worksheet to a Workbook",
|
|
14
|
+
"Get Table Rows": "Get Table Rows",
|
|
15
|
+
"Get Table Columns": "Get Table Columns",
|
|
16
|
+
"Create Table": "Create Table",
|
|
17
|
+
"Delete Table": "Delete Table",
|
|
18
|
+
"Lookup Table Column": "Lookup Table Column",
|
|
19
|
+
"Append Rows to a Table": "Append Rows to a Table",
|
|
20
|
+
"Convert to Range": "Convert to Range",
|
|
21
|
+
"Custom API Call": "Custom API Call",
|
|
22
|
+
"Append row of values to a worksheet": "Append row of values to a worksheet",
|
|
23
|
+
"Retrieve worksheets from a workbook": "Retrieve worksheets from a workbook",
|
|
24
|
+
"Retrieve rows from a worksheet": "Retrieve rows from a worksheet",
|
|
25
|
+
"Update a row in a worksheet": "Update a row in a worksheet",
|
|
26
|
+
"Clear a worksheet": "Clear a worksheet",
|
|
27
|
+
"Delete a worksheet in a workbook": "Delete a worksheet in a workbook",
|
|
28
|
+
"Retrieve a list of workbooks": "Retrieve a list of workbooks",
|
|
29
|
+
"Delete a workbook": "Delete a workbook",
|
|
30
|
+
"Add a worksheet to a workbook": "Add a worksheet to a workbook",
|
|
31
|
+
"List rows of a table in a worksheet": "List rows of a table in a worksheet",
|
|
32
|
+
"List columns of a table in a worksheet": "List columns of a table in a worksheet",
|
|
33
|
+
"Create a table in a worksheet": "Create a table in a worksheet",
|
|
34
|
+
"Delete a table from a worksheet": "Delete a table from a worksheet",
|
|
35
|
+
"Lookup a value in a table column in a worksheet": "Lookup a value in a table column in a worksheet",
|
|
36
|
+
"Append rows to a table": "Append rows to a table",
|
|
37
|
+
"Converts a table to a range": "Converts a table to a range",
|
|
38
|
+
"Make a custom API call to a specific endpoint": "Make a custom API call to a specific endpoint",
|
|
39
|
+
"Workbook": "Workbook",
|
|
40
|
+
"Worksheet": "Worksheet",
|
|
41
|
+
"Does the first row contain headers?": "Does the first row contain headers?",
|
|
42
|
+
"Values": "Values",
|
|
43
|
+
"Return All": "Return All",
|
|
44
|
+
"Limit": "Limit",
|
|
45
|
+
"Range": "Range",
|
|
46
|
+
"Header Row": "Header Row",
|
|
47
|
+
"First Data Row": "First Data Row",
|
|
48
|
+
"Row number": "Row number",
|
|
49
|
+
"Worksheet Name": "Worksheet Name",
|
|
50
|
+
"Table": "Table",
|
|
51
|
+
"Select Range": "Select Range",
|
|
52
|
+
"Has Headers": "Has Headers",
|
|
53
|
+
"Lookup Column": "Lookup Column",
|
|
54
|
+
"Lookup Value": "Lookup Value",
|
|
55
|
+
"Return All Matches": "Return All Matches",
|
|
56
|
+
"Method": "Method",
|
|
57
|
+
"Headers": "Headers",
|
|
58
|
+
"Query Parameters": "Query Parameters",
|
|
59
|
+
"Body": "Body",
|
|
60
|
+
"No Error on Failure": "No Error on Failure",
|
|
61
|
+
"Timeout (in seconds)": "Timeout (in seconds)",
|
|
62
|
+
"If the first row is headers": "If the first row is headers",
|
|
63
|
+
"The values to insert": "The values to insert",
|
|
64
|
+
"If checked, all worksheets will be returned": "If checked, all worksheets will be returned",
|
|
65
|
+
"Limit the number of worksheets returned": "Limit the number of worksheets returned",
|
|
66
|
+
"Range of the rows to retrieve (e.g., A2:B2)": "Range of the rows to retrieve (e.g., A2:B2)",
|
|
67
|
+
"Row number of the header": "Row number of the header",
|
|
68
|
+
"Row number of the first data row": "Row number of the first data row",
|
|
69
|
+
"The row number to update": "The row number to update",
|
|
70
|
+
"The range in A1 notation (e.g., A2:B2) to clear in the worksheet, if not provided, clear the entire worksheet": "The range in A1 notation (e.g., A2:B2) to clear in the worksheet, if not provided, clear the entire worksheet",
|
|
71
|
+
"Limits the number of workbooks returned, returns all workbooks if empty": "Limits the number of workbooks returned, returns all workbooks if empty",
|
|
72
|
+
"The name of the new worksheet": "The name of the new worksheet",
|
|
73
|
+
"Limit the number of rows retrieved": "Limit the number of rows retrieved",
|
|
74
|
+
"Limit the number of columns retrieved": "Limit the number of columns retrieved",
|
|
75
|
+
"How to select the range for the table": "How to select the range for the table",
|
|
76
|
+
"The range of cells in A1 notation (e.g., A2:B2) that will be converted to a table": "The range of cells in A1 notation (e.g., A2:B2) that will be converted to a table",
|
|
77
|
+
"Whether the range has column labels": "Whether the range has column labels",
|
|
78
|
+
"The column name to lookup the value in": "The column name to lookup the value in",
|
|
79
|
+
"The value to lookup": "The value to lookup",
|
|
80
|
+
"If checked, all matching rows will be returned": "If checked, all matching rows will be returned",
|
|
81
|
+
"Authorization headers are injected automatically from your connection.": "Authorization headers are injected automatically from your connection.",
|
|
82
|
+
"GET": "GET",
|
|
83
|
+
"POST": "POST",
|
|
84
|
+
"PATCH": "PATCH",
|
|
85
|
+
"PUT": "PUT",
|
|
86
|
+
"DELETE": "DELETE",
|
|
87
|
+
"HEAD": "HEAD",
|
|
88
|
+
"New Row": "New Row",
|
|
89
|
+
"Trigger when a new row is added, and it can include existing rows as well.": "Trigger when a new row is added, and it can include existing rows as well.",
|
|
90
|
+
"Max Rows to Poll": "Max Rows to Poll",
|
|
91
|
+
"The maximum number of rows to poll, the rest will be polled on the next run.": "The maximum number of rows to poll, the rest will be polled on the next run."
|
|
92
|
+
}
|