@guayaba/workflow-piece-google-sheets 0.14.6

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.
Files changed (57) hide show
  1. package/.babelrc +3 -0
  2. package/.eslintrc.json +18 -0
  3. package/README.md +5 -0
  4. package/assets/logo.png +0 -0
  5. package/package.json +28 -0
  6. package/src/i18n/ar.json +124 -0
  7. package/src/i18n/bg.json +124 -0
  8. package/src/i18n/ca.json +132 -0
  9. package/src/i18n/de.json +165 -0
  10. package/src/i18n/es.json +165 -0
  11. package/src/i18n/fr.json +165 -0
  12. package/src/i18n/hi.json +132 -0
  13. package/src/i18n/hu.json +124 -0
  14. package/src/i18n/hy.json +124 -0
  15. package/src/i18n/id.json +132 -0
  16. package/src/i18n/it.json +124 -0
  17. package/src/i18n/ja.json +165 -0
  18. package/src/i18n/ko.json +124 -0
  19. package/src/i18n/nl.json +165 -0
  20. package/src/i18n/pl.json +124 -0
  21. package/src/i18n/pt.json +165 -0
  22. package/src/i18n/ru.json +132 -0
  23. package/src/i18n/sv.json +124 -0
  24. package/src/i18n/translation.json +165 -0
  25. package/src/i18n/uk.json +124 -0
  26. package/src/i18n/vi.json +132 -0
  27. package/src/i18n/zh.json +165 -0
  28. package/src/index.ts +93 -0
  29. package/src/lib/actions/clear-sheet.ts +60 -0
  30. package/src/lib/actions/copy-worksheet.ts +32 -0
  31. package/src/lib/actions/create-column.ts +109 -0
  32. package/src/lib/actions/create-spreadsheet.ts +122 -0
  33. package/src/lib/actions/create-worksheet.ts +62 -0
  34. package/src/lib/actions/delete-row.action.ts +40 -0
  35. package/src/lib/actions/delete-worksheet.ts +36 -0
  36. package/src/lib/actions/export-sheet.ts +86 -0
  37. package/src/lib/actions/find-row-by-num.ts +42 -0
  38. package/src/lib/actions/find-rows.ts +135 -0
  39. package/src/lib/actions/find-spreadsheets.ts +83 -0
  40. package/src/lib/actions/find-worksheet.ts +52 -0
  41. package/src/lib/actions/format-spreadsheet-row.ts +112 -0
  42. package/src/lib/actions/get-many-rows.ts +42 -0
  43. package/src/lib/actions/get-rows.ts +207 -0
  44. package/src/lib/actions/insert-multiple-rows.action.ts +542 -0
  45. package/src/lib/actions/insert-row.action.ts +111 -0
  46. package/src/lib/actions/rename-worksheet.ts +44 -0
  47. package/src/lib/actions/update-multiple-rows.ts +177 -0
  48. package/src/lib/actions/update-row.ts +93 -0
  49. package/src/lib/common/common.ts +383 -0
  50. package/src/lib/common/props.ts +274 -0
  51. package/src/lib/triggers/helpers.ts +155 -0
  52. package/src/lib/triggers/new-or-updated-row.trigger.ts +299 -0
  53. package/src/lib/triggers/new-row-added-webhook.ts +182 -0
  54. package/src/lib/triggers/new-spreadsheet.ts +88 -0
  55. package/src/lib/triggers/new-worksheet.ts +96 -0
  56. package/tsconfig.json +16 -0
  57. package/tsconfig.lib.json +15 -0
@@ -0,0 +1,165 @@
1
+ {
2
+ "Create, edit, and collaborate on spreadsheets online": "Create, edit, and collaborate on spreadsheets online",
3
+ "Add Row": "Add Row",
4
+ "Add Multiple Rows": "Add Multiple Rows",
5
+ "Update Row": "Update Row",
6
+ "Update Multiple Rows": "Update Multiple Rows",
7
+ "Delete Row": "Delete Row",
8
+ "Find Rows": "Find Rows",
9
+ "Create Spreadsheet": "Create Spreadsheet",
10
+ "Create Worksheet": "Create Worksheet",
11
+ "Clear Sheet": "Clear Sheet",
12
+ "Delete Worksheet": "Delete Worksheet",
13
+ "Rename Worksheet": "Rename Worksheet",
14
+ "Format Row(s)": "Format Row(s)",
15
+ "Get Single Row by ID": "Get Single Row by ID",
16
+ "Get next row(s)": "Get next row(s)",
17
+ "Get All Rows": "Get All Rows",
18
+ "Find Spreadsheet(s)": "Find Spreadsheet(s)",
19
+ "Find Worksheet(s)": "Find Worksheet(s)",
20
+ "Copy Worksheet": "Copy Worksheet",
21
+ "Create Spreadsheet Column": "Create Spreadsheet Column",
22
+ "Export Worksheet": "Export Worksheet",
23
+ "Custom API Call": "Custom API Call",
24
+ "Add a new row of data to a specific spreadsheet.": "Add a new row of data to a specific spreadsheet.",
25
+ "Add multiple rows of data at once to a specific spreadsheet.": "Add multiple rows of data at once to a specific spreadsheet.",
26
+ "Update the data in an existing row.": "Update the data in an existing row.",
27
+ "Updates multiple rows in a specific spreadsheet.": "Updates multiple rows in a specific spreadsheet.",
28
+ "Delete a specific row from the selected sheet.": "Delete a specific row from the selected sheet.",
29
+ "Look up rows in a worksheet based on a column value.": "Look up rows in a worksheet based on a column value.",
30
+ "Creates a blank spreadsheet.": "Creates a blank spreadsheet.",
31
+ "Create a new blank worksheet with a title.": "Create a new blank worksheet with a title.",
32
+ "Clears all rows on an existing sheet.": "Clears all rows on an existing sheet.",
33
+ "Permanently delete a specific worksheet.": "Permanently delete a specific worksheet.",
34
+ "Rename specific worksheet.": "Rename specific worksheet.",
35
+ "Format one or multiple rows in specific spreadsheet.": "Format one or multiple rows in specific spreadsheet.",
36
+ "Retrieve a specific row using its unique ID.": "Retrieve a specific row using its unique ID.",
37
+ "Get next group of rows from a specifiec workheet": "Get next group of rows from a specifiec workheet",
38
+ "Get all the rows from a specific sheet.": "Get all the rows from a specific sheet.",
39
+ "Find spreadsheet(s) by name.": "Find spreadsheet(s) by name.",
40
+ "Finds a worksheet(s) by title.": "Finds a worksheet(s) by title.",
41
+ "Creates a new worksheet by copying an existing one.": "Creates a new worksheet by copying an existing one.",
42
+ "Creates a new column in a specific spreadsheet.": "Creates a new column in a specific spreadsheet.",
43
+ "Download a worksheet as a CSV or TSV file.": "Download a worksheet as a CSV or TSV file.",
44
+ "Make a custom API call to a specific endpoint": "Make a custom API call to a specific endpoint",
45
+ "Include Shared Drive Sheets ?": "Include Shared Drive Sheets ?",
46
+ "Spreadsheet": "Spreadsheet",
47
+ "Worksheet": "Worksheet",
48
+ "First Row Contains Headers ?": "First Row Contains Headers ?",
49
+ "As String": "As String",
50
+ "Values": "Values",
51
+ "Rows Data Format": "Rows Data Format",
52
+ "Overwrite Existing Data?": "Overwrite Existing Data?",
53
+ "Avoid Duplicates?": "Avoid Duplicates?",
54
+ "Duplicate Value Column": "Duplicate Value Column",
55
+ "Header Row Number": "Header Row Number",
56
+ "Row Number": "Row Number",
57
+ "Header Row": "Header Row",
58
+ "Column Name": "Column Name",
59
+ "Search Value": "Search Value",
60
+ "Exact Match": "Exact Match",
61
+ "Starting Row": "Starting Row",
62
+ "Number of Rows": "Number of Rows",
63
+ "Use Column Names": "Use Column Names",
64
+ "Title": "Title",
65
+ "Parent Folder": "Parent Folder",
66
+ "Headers": "Headers",
67
+ "New Sheet Name": "New Sheet Name",
68
+ "Starting row": "Starting row",
69
+ "Ending row": "Ending row",
70
+ "Background Color": "Background Color",
71
+ "Text Color": "Text Color",
72
+ "Make text bold": "Make text bold",
73
+ "Make text Italic": "Make text Italic",
74
+ "Make text Strikethrough": "Make text Strikethrough",
75
+ "Start Row": "Start Row",
76
+ "Use header names for keys": "Use header names for keys",
77
+ "Markdown": "Markdown",
78
+ "Memory Key": "Memory Key",
79
+ "Group Size": "Group Size",
80
+ "Spreadsheet Name": "Spreadsheet Name",
81
+ "Spreadsheet Containing the Worksheet to Copy": "Spreadsheet Containing the Worksheet to Copy",
82
+ "Worksheet to Copy": "Worksheet to Copy",
83
+ "Spreadsheet to paste in": "Spreadsheet to paste in",
84
+ "Column Index": "Column Index",
85
+ "Export Format": "Export Format",
86
+ "Return as Text": "Return as Text",
87
+ "Method": "Method",
88
+ "Query Parameters": "Query Parameters",
89
+ "Body Type": "Body Type",
90
+ "Body": "Body",
91
+ "Response is Binary ?": "Response is Binary ?",
92
+ "No Error on Failure": "No Error on Failure",
93
+ "Timeout (in seconds)": "Timeout (in seconds)",
94
+ "Follow redirects": "Follow redirects",
95
+ "Turn this on to also see spreadsheets from Shared Drives.": "Turn this on to also see spreadsheets from Shared Drives.",
96
+ "The ID of the spreadsheet to use.": "The ID of the spreadsheet to use.",
97
+ "The ID of the worksheet to use.": "The ID of the worksheet to use.",
98
+ "Inserted values that are dates and formulas will be entered strings and have no effect": "Inserted values that are dates and formulas will be entered strings and have no effect",
99
+ "The values to add": "The values to add",
100
+ "Select the format of the input values to be added into the worksheet.": "Select the format of the input values to be added into the worksheet.",
101
+ "The values to add.": "The values to add.",
102
+ "Enable this option to replace all existing data in the sheet with new data from your input. This will clear any extra rows beyond the updated range.": "Enable this option to replace all existing data in the sheet with new data from your input. This will clear any extra rows beyond the updated range.",
103
+ "Enable this option to check for duplicate values before inserting data into the sheet. Only unique rows will be added based on the selected column.": "Enable this option to check for duplicate values before inserting data into the sheet. Only unique rows will be added based on the selected column.",
104
+ "The column to check for duplicate values.": "The column to check for duplicate values.",
105
+ "Inserted values that are dates and formulas will be entered as strings and have no effect": "Inserted values that are dates and formulas will be entered as strings and have no effect",
106
+ "Enter the row number where your column headers are located (usually row 1).": "Enter the row number where your column headers are located (usually row 1).",
107
+ "The row number to update": "The row number to update",
108
+ "The values to update.": "The values to update.",
109
+ "Which row contains the headers?": "Which row contains the headers?",
110
+ "The number of the row you want to delete.": "The number of the row you want to delete.",
111
+ "The name of the column to search in": "The name of the column to search in",
112
+ "The value to look for in the selected column. Leave empty to return all rows.": "The value to look for in the selected column. Leave empty to return all rows.",
113
+ "Only return rows where the cell value exactly matches the search value.": "Only return rows where the cell value exactly matches the search value.",
114
+ "Start searching from this row number.": "Start searching from this row number.",
115
+ "How many rows to return. Defaults to 1 if not specified.": "How many rows to return. Defaults to 1 if not specified.",
116
+ "The row number that contains the column names.": "The row number that contains the column names.",
117
+ "Use column names as keys instead of A, B, C.": "Use column names as keys instead of A, B, C.",
118
+ "The title of the new spreadsheet.": "The title of the new spreadsheet.",
119
+ "The folder to create the worksheet in.By default, the new worksheet is created in the root folder of drive.": "The folder to create the worksheet in.By default, the new worksheet is created in the root folder of drive.",
120
+ "The title of the new worksheet.": "The title of the new worksheet.",
121
+ "The ID of the worksheet to delete.": "The ID of the worksheet to delete.",
122
+ "The ID of the worksheet to rename.": "The ID of the worksheet to rename.",
123
+ "The first row number where formatting should begin.": "The first row number where formatting should begin.",
124
+ "The last row number where formatting should stop (leave empty to format only the starting row).": "The last row number where formatting should stop (leave empty to format only the starting row).",
125
+ "Provide a HEX color code (example: #FFD966)": "Provide a HEX color code (example: #FFD966)",
126
+ "Enter the row number you want to retrieve": "Enter the row number you want to retrieve",
127
+ "Which row to start from?": "Which row to start from?",
128
+ "Map A/B/C… to the actual column headers (row specified above).": "Map A/B/C… to the actual column headers (row specified above).",
129
+ "\n**Notes:**\n\n- Memory key is used to remember where last row was processed and will be used in the following runs.\n- Republishing the flow **keeps** the memory key value, If you want to start over **change** the memory key.\n": "\n**Notes:**\n\n- Memory key is used to remember where last row was processed and will be used in the following runs.\n- Republishing the flow **keeps** the memory key value, If you want to start over **change** the memory key.\n",
130
+ "The key used to store the current row number in memory": "The key used to store the current row number in memory",
131
+ "The number of rows to get": "The number of rows to get",
132
+ "Enter the name of the spreadsheet to search for": "Enter the name of the spreadsheet to search for",
133
+ "If true, only return spreadsheets that exactly match the name. If false, return spreadsheets that contain the name.": "If true, only return spreadsheets that exactly match the name. If false, return spreadsheets that contain the name.",
134
+ "If true, only return worksheets that exactly match the name. If false, return worksheets that contain the name.": "If true, only return worksheets that exactly match the name. If false, return worksheets that contain the name.",
135
+ "The column index starts from 1.For example, if you want to add a column to the third column, enter 3.Ff the input is less than 1 the column will be added after the last current column.": "The column index starts from 1.For example, if you want to add a column to the third column, enter 3.Ff the input is less than 1 the column will be added after the last current column.",
136
+ "Select the file type to export the sheet as.": "Select the file type to export the sheet as.",
137
+ "Return the exported data as text instead of a file.": "Return the exported data as text instead of a file.",
138
+ "Authorization headers are injected automatically from your connection.": "Authorization headers are injected automatically from your connection.",
139
+ "Enable for files like PDFs, images, etc.": "Enable for files like PDFs, images, etc.",
140
+ "CSV": "CSV",
141
+ "JSON": "JSON",
142
+ "Column Names": "Column Names",
143
+ "Comma Separated Values (.csv)": "Comma Separated Values (.csv)",
144
+ "Tab Separated Values (.tsv)": "Tab Separated Values (.tsv)",
145
+ "GET": "GET",
146
+ "POST": "POST",
147
+ "PATCH": "PATCH",
148
+ "PUT": "PUT",
149
+ "DELETE": "DELETE",
150
+ "HEAD": "HEAD",
151
+ "None": "None",
152
+ "Form Data": "Form Data",
153
+ "Raw": "Raw",
154
+ "New or Updated Row": "New or Updated Row",
155
+ "New Row Added": "New Row Added",
156
+ "New Spreadsheet": "New Spreadsheet",
157
+ "New Worksheet": "New Worksheet",
158
+ "Triggers when a new row is added or modified in a spreadsheet.": "Triggers when a new row is added or modified in a spreadsheet.",
159
+ "Triggers when a new row is added to bottom of a spreadsheet.": "Triggers when a new row is added to bottom of a spreadsheet.",
160
+ "Triggers when a new spreadsheet is created.": "Triggers when a new spreadsheet is created.",
161
+ "Triggers when a worksheet is created in a spreadsheet.": "Triggers when a worksheet is created in a spreadsheet.",
162
+ "Trigger Column": "Trigger Column",
163
+ "Please note that there might be a delay of up to 3 minutes for the trigger to be fired, due to a delay from Google.": "Please note that there might be a delay of up to 3 minutes for the trigger to be fired, due to a delay from Google.",
164
+ "Trigger on changes to cells in this column only. \nSelect **Any Column** if you want the flow to trigger on changes to any cell within the row.": "Trigger on changes to cells in this column only. \nSelect **Any Column** if you want the flow to trigger on changes to any cell within the row."
165
+ }
@@ -0,0 +1,124 @@
1
+ {
2
+ "Google Sheets": "Google Sheets",
3
+ "Create, edit, and collaborate on spreadsheets online": "Create, edit, and collaborate on spreadsheets online",
4
+ "Insert Row": "Insert Row",
5
+ "Insert Multiple Rows": "Insert Multiple Rows",
6
+ "Delete Row": "Delete Row",
7
+ "Update Row": "Update Row",
8
+ "Find Rows": "Find Rows",
9
+ "Create Spreadsheet": "Create Spreadsheet",
10
+ "Create Worksheet": "Create Worksheet",
11
+ "Clear Sheet": "Clear Sheet",
12
+ "Get Row": "Get Row",
13
+ "Get next row(s)": "Get next row(s)",
14
+ "Find Spreadsheet(s)": "Find Spreadsheet(s)",
15
+ "Find Worksheet(s)": "Find Worksheet(s)",
16
+ "Copy Worksheet": "Copy Worksheet",
17
+ "Update Multiple Rows": "Update Multiple Rows",
18
+ "Create Spreadsheet Column": "Create Spreadsheet Column",
19
+ "Custom API Call": "Custom API Call",
20
+ "Append a row of values to an existing sheet": "Append a row of values to an existing sheet",
21
+ "Add one or more new rows in a specific spreadsheet.": "Add one or more new rows in a specific spreadsheet.",
22
+ "Delete a row on an existing sheet you have access to": "Delete a row on an existing sheet you have access to",
23
+ "Overwrite values in an existing row": "Overwrite values in an existing row",
24
+ "Find or get rows in a Google Sheet by column name and search value": "Find or get rows in a Google Sheet by column name and search value",
25
+ "Creates a blank spreadsheet.": "Creates a blank spreadsheet.",
26
+ "Create a blank worksheet with a title.": "Create a blank worksheet with a title.",
27
+ "Clears all rows on an existing sheet": "Clears all rows on an existing sheet",
28
+ "Get a row in a Google Sheet by row number": "Get a row in a Google Sheet by row number",
29
+ "Get next group of rows from a Google Sheet": "Get next group of rows from a Google Sheet",
30
+ "Find spreadsheet(s) by name.": "Find spreadsheet(s) by name.",
31
+ "Finds a worksheet(s) by title.": "Finds a worksheet(s) by title.",
32
+ "Creates a new worksheet by copying an existing one.": "Creates a new worksheet by copying an existing one.",
33
+ "Updates multiple rows in a specific spreadsheet.": "Updates multiple rows in a specific spreadsheet.",
34
+ "Adds a new column to a spreadsheet.": "Adds a new column to a spreadsheet.",
35
+ "Make a custom API call to a specific endpoint": "Make a custom API call to a specific endpoint",
36
+ "Include Team Drive Sheets ?": "Include Team Drive Sheets ?",
37
+ "Spreadsheet": "Spreadsheet",
38
+ "Sheet": "Sheet",
39
+ "As String": "As String",
40
+ "Does the first row contain headers?": "Does the first row contain headers?",
41
+ "Values": "Values",
42
+ "Rows Input Format": "Rows Input Format",
43
+ "Overwrite Existing Data?": "Overwrite Existing Data?",
44
+ "Avoid Duplicates?": "Avoid Duplicates?",
45
+ "Duplicate Value Column": "Duplicate Value Column",
46
+ "Row Number": "Row Number",
47
+ "The name of the column to search in": "The name of the column to search in",
48
+ "Search Value": "Search Value",
49
+ "Exact match": "Exact match",
50
+ "Starting Row": "Starting Row",
51
+ "Number of Rows": "Number of Rows",
52
+ "Title": "Title",
53
+ "Parent Folder": "Parent Folder",
54
+ "Headers": "Headers",
55
+ "Is First row Headers?": "Is First row Headers?",
56
+ "Start Row": "Start Row",
57
+ "Markdown": "Markdown",
58
+ "Memory Key": "Memory Key",
59
+ "Group Size": "Group Size",
60
+ "Spreadsheet Name": "Spreadsheet Name",
61
+ "Exact Match": "Exact Match",
62
+ "Spreadsheet Containing the Worksheet to Copy": "Spreadsheet Containing the Worksheet to Copy",
63
+ "Worksheet to Copy": "Worksheet to Copy",
64
+ "Spreadsheet to paste in": "Spreadsheet to paste in",
65
+ "Column Name": "Column Name",
66
+ "Column Index": "Column Index",
67
+ "Method": "Method",
68
+ "Query Parameters": "Query Parameters",
69
+ "Body": "Body",
70
+ "No Error on Failure": "No Error on Failure",
71
+ "Timeout (in seconds)": "Timeout (in seconds)",
72
+ "Determines if sheets from Team Drives should be included in the results.": "Determines if sheets from Team Drives should be included in the results.",
73
+ "The ID of the spreadsheet to use.": "The ID of the spreadsheet to use.",
74
+ "The ID of the sheet to use.": "The ID of the sheet to use.",
75
+ "Inserted values that are dates and formulas will be entered strings and have no effect": "Inserted values that are dates and formulas will be entered strings and have no effect",
76
+ "If the first row is headers": "If the first row is headers",
77
+ "The values to insert": "The values to insert",
78
+ "Select the format of the input values to be inserted into the sheet.": "Select the format of the input values to be inserted into the sheet.",
79
+ "The values to insert.": "The values to insert.",
80
+ "Enable this option to replace all existing data in the sheet with new data from your input. This will clear any extra rows beyond the updated range.": "Enable this option to replace all existing data in the sheet with new data from your input. This will clear any extra rows beyond the updated range.",
81
+ "Enable this option to check for duplicate values before inserting data into the sheet. Only unique rows will be added based on the selected column.": "Enable this option to check for duplicate values before inserting data into the sheet. Only unique rows will be added based on the selected column.",
82
+ "The column to check for duplicate values.": "The column to check for duplicate values.",
83
+ "Inserted values that are dates and formulas will be entered as strings and have no effect": "Inserted values that are dates and formulas will be entered as strings and have no effect",
84
+ "The row number to remove": "The row number to remove",
85
+ "The row number to update": "The row number to update",
86
+ "The value to search for in the specified column. If left empty, all rows will be returned.": "The value to search for in the specified column. If left empty, all rows will be returned.",
87
+ "Whether to choose the rows with exact match or choose the rows that contain the search value": "Whether to choose the rows with exact match or choose the rows that contain the search value",
88
+ "The row number to start searching from": "The row number to start searching from",
89
+ "The number of rows to return ( the default is 1 if not specified )": "The number of rows to return ( the default is 1 if not specified )",
90
+ "The title of the new spreadsheet.": "The title of the new spreadsheet.",
91
+ "The folder to create the worksheet in.By default, the new worksheet is created in the root folder of drive.": "The folder to create the worksheet in.By default, the new worksheet is created in the root folder of drive.",
92
+ "The title of the new worksheet.": "The title of the new worksheet.",
93
+ "The row number to get from the sheet": "The row number to get from the sheet",
94
+ "Which row to start from?": "Which row to start from?",
95
+ "\n**Notes:**\n\n- Memory key is used to remember where last row was processed and will be used in the following runs.\n- Republishing the flow **keeps** the memory key value, If you want to start over **change** the memory key.\n": "\n**Notes:**\n\n- Memory key is used to remember where last row was processed and will be used in the following runs.\n- Republishing the flow **keeps** the memory key value, If you want to start over **change** the memory key.\n",
96
+ "The key used to store the current row number in memory": "The key used to store the current row number in memory",
97
+ "The number of rows to get": "The number of rows to get",
98
+ "The name of the spreadsheet(s) to find.": "The name of the spreadsheet(s) to find.",
99
+ "If true, only return spreadsheets that exactly match the name. If false, return spreadsheets that contain the name.": "If true, only return spreadsheets that exactly match the name. If false, return spreadsheets that contain the name.",
100
+ "If true, only return worksheets that exactly match the name. If false, return worksheets that contain the name.": "If true, only return worksheets that exactly match the name. If false, return worksheets that contain the name.",
101
+ "The values to update.": "The values to update.",
102
+ "The column index starts from 1.For example, if you want to add a column to the third column, enter 3.Ff the input is less than 1 the column will be added after the last current column.": "The column index starts from 1.For example, if you want to add a column to the third column, enter 3.Ff the input is less than 1 the column will be added after the last current column.",
103
+ "Authorization headers are injected automatically from your connection.": "Authorization headers are injected automatically from your connection.",
104
+ "CSV": "CSV",
105
+ "JSON": "JSON",
106
+ "Column Names": "Column Names",
107
+ "GET": "GET",
108
+ "POST": "POST",
109
+ "PATCH": "PATCH",
110
+ "PUT": "PUT",
111
+ "DELETE": "DELETE",
112
+ "HEAD": "HEAD",
113
+ "New Row Added": "New Row Added",
114
+ "New or Updated Row": "New or Updated Row",
115
+ "New Spreadsheet": "New Spreadsheet",
116
+ "New Worksheet": "New Worksheet",
117
+ "Triggers when a new row is added to bottom of a spreadsheet.": "Triggers when a new row is added to bottom of a spreadsheet.",
118
+ "Triggers when a new row is added or modified in a spreadsheet.": "Triggers when a new row is added or modified in a spreadsheet.",
119
+ "Triggers when a new spreadsheet is created.": "Triggers when a new spreadsheet is created.",
120
+ "Triggers when a worksheet is created in a spreadsheet.": "Triggers when a worksheet is created in a spreadsheet.",
121
+ "Trigger Column": "Trigger Column",
122
+ "Please note that there might be a delay of up to 3 minutes for the trigger to be fired, due to a delay from Google.": "Please note that there might be a delay of up to 3 minutes for the trigger to be fired, due to a delay from Google.",
123
+ "Trigger on changes to cells in this column only.Select **All Columns** if you want the flow to trigger on changes to any cell within the row.": "Trigger on changes to cells in this column only.Select **All Columns** if you want the flow to trigger on changes to any cell within the row."
124
+ }
@@ -0,0 +1,132 @@
1
+ {
2
+ "Google Sheets": "Google Sheets",
3
+ "Create, edit, and collaborate on spreadsheets online": "Create, edit, and collaborate on spreadsheets online",
4
+ "Insert Row": "Insert Row",
5
+ "Insert Multiple Rows": "Insert Multiple Rows",
6
+ "Delete Row": "Delete Row",
7
+ "Update Row": "Update Row",
8
+ "Find Rows": "Find Rows",
9
+ "Create Spreadsheet": "Create Spreadsheet",
10
+ "Create Worksheet": "Create Worksheet",
11
+ "Clear Sheet": "Clear Sheet",
12
+ "Get Row": "Get Row",
13
+ "Get next row(s)": "Get next row(s)",
14
+ "Find Spreadsheet(s)": "Find Spreadsheet(s)",
15
+ "Find Worksheet(s)": "Find Worksheet(s)",
16
+ "Copy Worksheet": "Copy Worksheet",
17
+ "Update Multiple Rows": "Update Multiple Rows",
18
+ "Create Spreadsheet Column": "Create Spreadsheet Column",
19
+ "Export Sheet": "Export Sheet",
20
+ "Custom API Call": "Custom API Call",
21
+ "Append a row of values to an existing sheet": "Append a row of values to an existing sheet",
22
+ "Add one or more new rows in a specific spreadsheet.": "Add one or more new rows in a specific spreadsheet.",
23
+ "Delete a row on an existing sheet you have access to": "Delete a row on an existing sheet you have access to",
24
+ "Overwrite values in an existing row": "Overwrite values in an existing row",
25
+ "Find or get rows in a Google Sheet by column name and search value": "Find or get rows in a Google Sheet by column name and search value",
26
+ "Creates a blank spreadsheet.": "Creates a blank spreadsheet.",
27
+ "Create a blank worksheet with a title.": "Create a blank worksheet with a title.",
28
+ "Clears all rows on an existing sheet": "Clears all rows on an existing sheet",
29
+ "Get a row in a Google Sheet by row number": "Get a row in a Google Sheet by row number",
30
+ "Get next group of rows from a Google Sheet": "Get next group of rows from a Google Sheet",
31
+ "Find spreadsheet(s) by name.": "Find spreadsheet(s) by name.",
32
+ "Finds a worksheet(s) by title.": "Finds a worksheet(s) by title.",
33
+ "Creates a new worksheet by copying an existing one.": "Creates a new worksheet by copying an existing one.",
34
+ "Updates multiple rows in a specific spreadsheet.": "Updates multiple rows in a specific spreadsheet.",
35
+ "Adds a new column to a spreadsheet.": "Adds a new column to a spreadsheet.",
36
+ "Export a Google Sheets tab to CSV or TSV format.": "Export a Google Sheets tab to CSV or TSV format.",
37
+ "Make a custom API call to a specific endpoint": "Make a custom API call to a specific endpoint",
38
+ "Include Team Drive Sheets ?": "Include Team Drive Sheets ?",
39
+ "Spreadsheet": "Spreadsheet",
40
+ "Sheet": "Sheet",
41
+ "As String": "As String",
42
+ "Does the first row contain headers?": "Does the first row contain headers?",
43
+ "Values": "Values",
44
+ "Rows Input Format": "Rows Input Format",
45
+ "Overwrite Existing Data?": "Overwrite Existing Data?",
46
+ "Avoid Duplicates?": "Avoid Duplicates?",
47
+ "Duplicate Value Column": "Duplicate Value Column",
48
+ "Row Number": "Row Number",
49
+ "The name of the column to search in": "The name of the column to search in",
50
+ "Search Value": "Search Value",
51
+ "Exact match": "Exact match",
52
+ "Starting Row": "Starting Row",
53
+ "Number of Rows": "Number of Rows",
54
+ "Title": "Title",
55
+ "Parent Folder": "Parent Folder",
56
+ "Headers": "Headers",
57
+ "Is First row Headers?": "Is First row Headers?",
58
+ "Start Row": "Start Row",
59
+ "Markdown": "Markdown",
60
+ "Memory Key": "Memory Key",
61
+ "Group Size": "Group Size",
62
+ "Spreadsheet Name": "Spreadsheet Name",
63
+ "Exact Match": "Exact Match",
64
+ "Spreadsheet Containing the Worksheet to Copy": "Spreadsheet Containing the Worksheet to Copy",
65
+ "Worksheet to Copy": "Worksheet to Copy",
66
+ "Spreadsheet to paste in": "Spreadsheet to paste in",
67
+ "Column Name": "Column Name",
68
+ "Column Index": "Column Index",
69
+ "Export Format": "Export Format",
70
+ "Return as Text": "Return as Text",
71
+ "Method": "Method",
72
+ "Query Parameters": "Query Parameters",
73
+ "Body": "Body",
74
+ "No Error on Failure": "No Error on Failure",
75
+ "Timeout (in seconds)": "Timeout (in seconds)",
76
+ "Determines if sheets from Team Drives should be included in the results.": "Determines if sheets from Team Drives should be included in the results.",
77
+ "The ID of the spreadsheet to use.": "The ID of the spreadsheet to use.",
78
+ "The ID of the sheet to use.": "The ID of the sheet to use.",
79
+ "Inserted values that are dates and formulas will be entered strings and have no effect": "Inserted values that are dates and formulas will be entered strings and have no effect",
80
+ "If the first row is headers": "If the first row is headers",
81
+ "The values to insert": "The values to insert",
82
+ "Select the format of the input values to be inserted into the sheet.": "Select the format of the input values to be inserted into the sheet.",
83
+ "The values to insert.": "The values to insert.",
84
+ "Enable this option to replace all existing data in the sheet with new data from your input. This will clear any extra rows beyond the updated range.": "Enable this option to replace all existing data in the sheet with new data from your input. This will clear any extra rows beyond the updated range.",
85
+ "Enable this option to check for duplicate values before inserting data into the sheet. Only unique rows will be added based on the selected column.": "Enable this option to check for duplicate values before inserting data into the sheet. Only unique rows will be added based on the selected column.",
86
+ "The column to check for duplicate values.": "The column to check for duplicate values.",
87
+ "Inserted values that are dates and formulas will be entered as strings and have no effect": "Inserted values that are dates and formulas will be entered as strings and have no effect",
88
+ "The row number to remove": "The row number to remove",
89
+ "The row number to update": "The row number to update",
90
+ "The value to search for in the specified column. If left empty, all rows will be returned.": "The value to search for in the specified column. If left empty, all rows will be returned.",
91
+ "Whether to choose the rows with exact match or choose the rows that contain the search value": "Whether to choose the rows with exact match or choose the rows that contain the search value",
92
+ "The row number to start searching from": "The row number to start searching from",
93
+ "The number of rows to return ( the default is 1 if not specified )": "The number of rows to return ( the default is 1 if not specified )",
94
+ "The title of the new spreadsheet.": "The title of the new spreadsheet.",
95
+ "The folder to create the worksheet in.By default, the new worksheet is created in the root folder of drive.": "The folder to create the worksheet in.By default, the new worksheet is created in the root folder of drive.",
96
+ "The title of the new worksheet.": "The title of the new worksheet.",
97
+ "The row number to get from the sheet": "The row number to get from the sheet",
98
+ "Which row to start from?": "Which row to start from?",
99
+ "\n**Notes:**\n\n- Memory key is used to remember where last row was processed and will be used in the following runs.\n- Republishing the flow **keeps** the memory key value, If you want to start over **change** the memory key.\n": "\n**Notes:**\n\n- Memory key is used to remember where last row was processed and will be used in the following runs.\n- Republishing the flow **keeps** the memory key value, If you want to start over **change** the memory key.\n",
100
+ "The key used to store the current row number in memory": "The key used to store the current row number in memory",
101
+ "The number of rows to get": "The number of rows to get",
102
+ "The name of the spreadsheet(s) to find.": "The name of the spreadsheet(s) to find.",
103
+ "If true, only return spreadsheets that exactly match the name. If false, return spreadsheets that contain the name.": "If true, only return spreadsheets that exactly match the name. If false, return spreadsheets that contain the name.",
104
+ "If true, only return worksheets that exactly match the name. If false, return worksheets that contain the name.": "If true, only return worksheets that exactly match the name. If false, return worksheets that contain the name.",
105
+ "The values to update.": "The values to update.",
106
+ "The column index starts from 1.For example, if you want to add a column to the third column, enter 3.Ff the input is less than 1 the column will be added after the last current column.": "The column index starts from 1.For example, if you want to add a column to the third column, enter 3.Ff the input is less than 1 the column will be added after the last current column.",
107
+ "The format to export the sheet to.": "The format to export the sheet to.",
108
+ "Return the exported data as text instead of a file.": "Return the exported data as text instead of a file.",
109
+ "Authorization headers are injected automatically from your connection.": "Authorization headers are injected automatically from your connection.",
110
+ "CSV": "CSV",
111
+ "JSON": "JSON",
112
+ "Column Names": "Column Names",
113
+ "Comma Separated Values (.csv)": "Comma Separated Values (.csv)",
114
+ "Tab Separated Values (.tsv)": "Tab Separated Values (.tsv)",
115
+ "GET": "GET",
116
+ "POST": "POST",
117
+ "PATCH": "PATCH",
118
+ "PUT": "PUT",
119
+ "DELETE": "DELETE",
120
+ "HEAD": "HEAD",
121
+ "New Row Added": "New Row Added",
122
+ "New or Updated Row": "New or Updated Row",
123
+ "New Spreadsheet": "New Spreadsheet",
124
+ "New Worksheet": "New Worksheet",
125
+ "Triggers when a new row is added to bottom of a spreadsheet.": "Triggers when a new row is added to bottom of a spreadsheet.",
126
+ "Triggers when a new row is added or modified in a spreadsheet.": "Triggers when a new row is added or modified in a spreadsheet.",
127
+ "Triggers when a new spreadsheet is created.": "Triggers when a new spreadsheet is created.",
128
+ "Triggers when a worksheet is created in a spreadsheet.": "Triggers when a worksheet is created in a spreadsheet.",
129
+ "Trigger Column": "Trigger Column",
130
+ "Please note that there might be a delay of up to 3 minutes for the trigger to be fired, due to a delay from Google.": "Please note that there might be a delay of up to 3 minutes for the trigger to be fired, due to a delay from Google.",
131
+ "Trigger on changes to cells in this column only.Select **All Columns** if you want the flow to trigger on changes to any cell within the row.": "Trigger on changes to cells in this column only.Select **All Columns** if you want the flow to trigger on changes to any cell within the row."
132
+ }
@@ -0,0 +1,165 @@
1
+ {
2
+ "Create, edit, and collaborate on spreadsheets online": "在线创建、编辑和协作电子表格",
3
+ "Add Row": "Add Row",
4
+ "Add Multiple Rows": "Add Multiple Rows",
5
+ "Update Row": "更新行",
6
+ "Update Multiple Rows": "更新多行",
7
+ "Delete Row": "删除行",
8
+ "Find Rows": "查找行",
9
+ "Create Spreadsheet": "创建工作表",
10
+ "Create Worksheet": "创建工作表",
11
+ "Clear Sheet": "清除工作表",
12
+ "Delete Worksheet": "Delete Worksheet",
13
+ "Rename Worksheet": "Rename Worksheet",
14
+ "Format Row(s)": "Format Row(s)",
15
+ "Get Single Row by ID": "Get Single Row by ID",
16
+ "Get next row(s)": "获取下一行(s)",
17
+ "Get All Rows": "Get All Rows",
18
+ "Find Spreadsheet(s)": "查找Spreadsheet(s)",
19
+ "Find Worksheet(s)": "查找工作表",
20
+ "Copy Worksheet": "复制工作表",
21
+ "Create Spreadsheet Column": "创建工作表列",
22
+ "Export Worksheet": "Export Worksheet",
23
+ "Custom API Call": "自定义 API 呼叫",
24
+ "Add a new row of data to a specific spreadsheet.": "Add a new row of data to a specific spreadsheet.",
25
+ "Add multiple rows of data at once to a specific spreadsheet.": "Add multiple rows of data at once to a specific spreadsheet.",
26
+ "Update the data in an existing row.": "Update the data in an existing row.",
27
+ "Updates multiple rows in a specific spreadsheet.": "在特定的电子表格中更新多行。",
28
+ "Delete a specific row from the selected sheet.": "Delete a specific row from the selected sheet.",
29
+ "Look up rows in a worksheet based on a column value.": "Look up rows in a worksheet based on a column value.",
30
+ "Creates a blank spreadsheet.": "创建空白电子表格。",
31
+ "Create a new blank worksheet with a title.": "Create a new blank worksheet with a title.",
32
+ "Clears all rows on an existing sheet.": "清除现有工作表上的所有行.",
33
+ "Permanently delete a specific worksheet.": "Permanently delete a specific worksheet.",
34
+ "Rename specific worksheet.": "Rename specific worksheet.",
35
+ "Format one or multiple rows in specific spreadsheet.": "Format one or multiple rows in specific spreadsheet.",
36
+ "Retrieve a specific row using its unique ID.": "Retrieve a specific row using its unique ID.",
37
+ "Get next group of rows from a specifiec workheet": "Get next group of rows from a specifiec workheet",
38
+ "Get all the rows from a specific sheet.": "Get all the rows from a specific sheet.",
39
+ "Find spreadsheet(s) by name.": "按名称查找电子表格。",
40
+ "Finds a worksheet(s) by title.": "按标题查找工作表。",
41
+ "Creates a new worksheet by copying an existing one.": "通过复制现有工作表创建一个新工作表。",
42
+ "Creates a new column in a specific spreadsheet.": "Creates a new column in a specific spreadsheet.",
43
+ "Download a worksheet as a CSV or TSV file.": "Download a worksheet as a CSV or TSV file.",
44
+ "Make a custom API call to a specific endpoint": "将一个自定义 API 调用到一个特定的终点",
45
+ "Include Shared Drive Sheets ?": "Include Shared Drive Sheets ?",
46
+ "Spreadsheet": "电子表格",
47
+ "Worksheet": "Worksheet",
48
+ "First Row Contains Headers ?": "First Row Contains Headers ?",
49
+ "As String": "作为字符串",
50
+ "Values": "值",
51
+ "Rows Data Format": "Rows Data Format",
52
+ "Overwrite Existing Data?": "覆盖现有数据?",
53
+ "Avoid Duplicates?": "避免重复?",
54
+ "Duplicate Value Column": "重复的值列",
55
+ "Header Row Number": "Header Row Number",
56
+ "Row Number": "行号",
57
+ "Header Row": "Header Row",
58
+ "Column Name": "列名称",
59
+ "Search Value": "搜索值",
60
+ "Exact Match": "精确匹配",
61
+ "Starting Row": "起始行",
62
+ "Number of Rows": "行数",
63
+ "Use Column Names": "Use Column Names",
64
+ "Title": "标题",
65
+ "Parent Folder": "父文件夹",
66
+ "Headers": "信头",
67
+ "New Sheet Name": "New Sheet Name",
68
+ "Starting row": "Starting row",
69
+ "Ending row": "Ending row",
70
+ "Background Color": "Background Color",
71
+ "Text Color": "Text Color",
72
+ "Make text bold": "Make text bold",
73
+ "Make text Italic": "Make text Italic",
74
+ "Make text Strikethrough": "Make text Strikethrough",
75
+ "Start Row": "开始行",
76
+ "Use header names for keys": "Use header names for keys",
77
+ "Markdown": "Markdown",
78
+ "Memory Key": "内存键",
79
+ "Group Size": "组大小",
80
+ "Spreadsheet Name": "工作表名称",
81
+ "Spreadsheet Containing the Worksheet to Copy": "包含工作表的数据表以复制",
82
+ "Worksheet to Copy": "复制工作表",
83
+ "Spreadsheet to paste in": "要粘贴的数据表",
84
+ "Column Index": "列索引",
85
+ "Export Format": "Export Format",
86
+ "Return as Text": "Return as Text",
87
+ "Method": "方法",
88
+ "Query Parameters": "查询参数",
89
+ "Body Type": "Body Type",
90
+ "Body": "正文内容",
91
+ "Response is Binary ?": "Response is Binary ?",
92
+ "No Error on Failure": "失败时没有错误",
93
+ "Timeout (in seconds)": "超时(秒)",
94
+ "Follow redirects": "Follow redirects",
95
+ "Turn this on to also see spreadsheets from Shared Drives.": "Turn this on to also see spreadsheets from Shared Drives.",
96
+ "The ID of the spreadsheet to use.": "要使用的电子表格的 ID。",
97
+ "The ID of the worksheet to use.": "The ID of the worksheet to use.",
98
+ "Inserted values that are dates and formulas will be entered strings and have no effect": "作为日期和公式的插入值将被输入字符串并且没有任何效果",
99
+ "The values to add": "The values to add",
100
+ "Select the format of the input values to be added into the worksheet.": "Select the format of the input values to be added into the worksheet.",
101
+ "The values to add.": "The values to add.",
102
+ "Enable this option to replace all existing data in the sheet with new data from your input. This will clear any extra rows beyond the updated range.": "启用此选项可以用输入的新数据替换工作表中的所有现有数据。 这将清除超出更新范围的任何额外行数。",
103
+ "Enable this option to check for duplicate values before inserting data into the sheet. Only unique rows will be added based on the selected column.": "启用此选项,在将数据插入工作表之前检查重复的值。只会根据所选列添加唯一的行。",
104
+ "The column to check for duplicate values.": "检查重复值的列.",
105
+ "Inserted values that are dates and formulas will be entered as strings and have no effect": "作为日期和公式的插入值将作为字符串输入,无效果",
106
+ "Enter the row number where your column headers are located (usually row 1).": "Enter the row number where your column headers are located (usually row 1).",
107
+ "The row number to update": "要更新的行数",
108
+ "The values to update.": "要更新的值。",
109
+ "Which row contains the headers?": "Which row contains the headers?",
110
+ "The number of the row you want to delete.": "The number of the row you want to delete.",
111
+ "The name of the column to search in": "要搜索的列名称",
112
+ "The value to look for in the selected column. Leave empty to return all rows.": "The value to look for in the selected column. Leave empty to return all rows.",
113
+ "Only return rows where the cell value exactly matches the search value.": "Only return rows where the cell value exactly matches the search value.",
114
+ "Start searching from this row number.": "Start searching from this row number.",
115
+ "How many rows to return. Defaults to 1 if not specified.": "How many rows to return. Defaults to 1 if not specified.",
116
+ "The row number that contains the column names.": "The row number that contains the column names.",
117
+ "Use column names as keys instead of A, B, C.": "Use column names as keys instead of A, B, C.",
118
+ "The title of the new spreadsheet.": "新电子表格的标题。",
119
+ "The folder to create the worksheet in.By default, the new worksheet is created in the root folder of drive.": "创建工作表的文件夹。默认情况下,新工作表创建于驱动器的根文件夹。",
120
+ "The title of the new worksheet.": "新工作表的标题。",
121
+ "The ID of the worksheet to delete.": "The ID of the worksheet to delete.",
122
+ "The ID of the worksheet to rename.": "The ID of the worksheet to rename.",
123
+ "The first row number where formatting should begin.": "The first row number where formatting should begin.",
124
+ "The last row number where formatting should stop (leave empty to format only the starting row).": "The last row number where formatting should stop (leave empty to format only the starting row).",
125
+ "Provide a HEX color code (example: #FFD966)": "Provide a HEX color code (example: #FFD966)",
126
+ "Enter the row number you want to retrieve": "Enter the row number you want to retrieve",
127
+ "Which row to start from?": "从哪一行开始?",
128
+ "Map A/B/C… to the actual column headers (row specified above).": "Map A/B/C… to the actual column headers (row specified above).",
129
+ "\n**Notes:**\n\n- Memory key is used to remember where last row was processed and will be used in the following runs.\n- Republishing the flow **keeps** the memory key value, If you want to start over **change** the memory key.\n": "\n**Notes:**\n\n- Memory key is used to remember where last row was processed and will be used in the following runs.\n- Republishing the flow **keeps** the memory key value, If you want to start over **change** the memory key.\n",
130
+ "The key used to store the current row number in memory": "用于将当前行号存储在内存中的密钥",
131
+ "The number of rows to get": "要获取的行数",
132
+ "Enter the name of the spreadsheet to search for": "Enter the name of the spreadsheet to search for",
133
+ "If true, only return spreadsheets that exactly match the name. If false, return spreadsheets that contain the name.": "如果为 true,只返回与名称完全匹配的电子表格。如果为 false,返回包含名称的电子表格。",
134
+ "If true, only return worksheets that exactly match the name. If false, return worksheets that contain the name.": "如果为 true,只返回与名称完全匹配的工作单。如果为 false,返回包含名称的工作表。",
135
+ "The column index starts from 1.For example, if you want to add a column to the third column, enter 3.Ff the input is less than 1 the column will be added after the last current column.": "列索引从1.开始。例如,如果您想要在第三列中添加一列,请输入3。 f 输入小于1列将在最后一列后添加。",
136
+ "Select the file type to export the sheet as.": "Select the file type to export the sheet as.",
137
+ "Return the exported data as text instead of a file.": "Return the exported data as text instead of a file.",
138
+ "Authorization headers are injected automatically from your connection.": "授权头自动从您的连接中注入。",
139
+ "Enable for files like PDFs, images, etc.": "Enable for files like PDFs, images, etc.",
140
+ "CSV": "CSV",
141
+ "JSON": "JSON",
142
+ "Column Names": "列名称",
143
+ "Comma Separated Values (.csv)": "Comma Separated Values (.csv)",
144
+ "Tab Separated Values (.tsv)": "Tab Separated Values (.tsv)",
145
+ "GET": "获取",
146
+ "POST": "帖子",
147
+ "PATCH": "PATCH",
148
+ "PUT": "弹出",
149
+ "DELETE": "删除",
150
+ "HEAD": "黑色",
151
+ "None": "无",
152
+ "Form Data": "表单数据",
153
+ "Raw": "原始文件",
154
+ "New or Updated Row": "新建或更新行",
155
+ "New Row Added": "添加新行",
156
+ "New Spreadsheet": "新建工作表",
157
+ "New Worksheet": "新建工作表",
158
+ "Triggers when a new row is added or modified in a spreadsheet.": "当新行在电子表格中添加或修改时触发.",
159
+ "Triggers when a new row is added to bottom of a spreadsheet.": "当新行被添加到电子表格底部时触发.",
160
+ "Triggers when a new spreadsheet is created.": "创建新的电子表格时触发。",
161
+ "Triggers when a worksheet is created in a spreadsheet.": "当工作表在电子表格中创建时触发.",
162
+ "Trigger Column": "触发列",
163
+ "Please note that there might be a delay of up to 3 minutes for the trigger to be fired, due to a delay from Google.": "请注意,由于谷歌的延迟,触发点可能会延迟3分钟。",
164
+ "Trigger on changes to cells in this column only. \nSelect **Any Column** if you want the flow to trigger on changes to any cell within the row.": "Trigger on changes to cells in this column only. \nSelect **Any Column** if you want the flow to trigger on changes to any cell within the row."
165
+ }