@guayaba/workflow-piece-google-drive 0.7.5

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 (41) 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/ca.json +125 -0
  7. package/src/i18n/de.json +136 -0
  8. package/src/i18n/es.json +136 -0
  9. package/src/i18n/fr.json +136 -0
  10. package/src/i18n/hi.json +125 -0
  11. package/src/i18n/id.json +125 -0
  12. package/src/i18n/ja.json +136 -0
  13. package/src/i18n/nl.json +136 -0
  14. package/src/i18n/pt.json +136 -0
  15. package/src/i18n/ru.json +127 -0
  16. package/src/i18n/translation.json +137 -0
  17. package/src/i18n/vi.json +127 -0
  18. package/src/i18n/zh.json +136 -0
  19. package/src/index.ts +74 -0
  20. package/src/lib/action/add-permission.action.ts +78 -0
  21. package/src/lib/action/create-new-folder.ts +38 -0
  22. package/src/lib/action/create-new-text-file.ts +89 -0
  23. package/src/lib/action/delete-file.ts +31 -0
  24. package/src/lib/action/delete-permission.action.ts +80 -0
  25. package/src/lib/action/duplicate-file.action.ts +78 -0
  26. package/src/lib/action/get-file-by-id.ts +34 -0
  27. package/src/lib/action/list-files.action.ts +209 -0
  28. package/src/lib/action/move-file.ts +44 -0
  29. package/src/lib/action/read-file.ts +24 -0
  30. package/src/lib/action/save-file-as-pdf.action.ts +72 -0
  31. package/src/lib/action/search-folder-or-file.action.ts +108 -0
  32. package/src/lib/action/send-to-trash.ts +34 -0
  33. package/src/lib/action/set-public-access.ts +64 -0
  34. package/src/lib/action/upload-file.ts +72 -0
  35. package/src/lib/auth.ts +80 -0
  36. package/src/lib/common/get-file-content.ts +109 -0
  37. package/src/lib/common/index.ts +179 -0
  38. package/src/lib/triggers/new-file.ts +115 -0
  39. package/src/lib/triggers/new-folder.ts +74 -0
  40. package/tsconfig.json +16 -0
  41. package/tsconfig.lib.json +15 -0
@@ -0,0 +1,136 @@
1
+ {
2
+ "Cloud storage and file backup": "Armazenamento na nuvem e backup de arquivos",
3
+ "Create new folder": "Criar nova pasta",
4
+ "Create new file": "Criar novo arquivo",
5
+ "Upload file": "Upload de arquivo",
6
+ "Read File Content": "Ler conteúdo do arquivo",
7
+ "Get File Information": "Obter informações do arquivo",
8
+ "List files": "Lista de arquivos",
9
+ "Search": "Pesquisar",
10
+ "Duplicate File": "Arquivo duplicado",
11
+ "Save Document as PDF": "Salvar documento como PDF",
12
+ "Update permissions": "Atualizar permissões",
13
+ "Delete permissions": "Excluir permissões",
14
+ "Set public access": "Definir acesso público",
15
+ "Move File": "Mover Arquivo",
16
+ "Delete file": "Excluir arquivo",
17
+ "Trash file": "Arquivo de lixo",
18
+ "Custom API Call": "Chamada de API personalizada",
19
+ "Create a new empty folder in your Google Drive": "Crie uma nova pasta vazia no Google Drive",
20
+ "Create a new text file in your Google Drive from text": "Crie um novo arquivo de texto no Google Drive a partir do texto",
21
+ "Upload a file in your Google Drive": "Envie um arquivo no seu Google Drive",
22
+ "Read a selected file from google drive file": "Leia um arquivo selecionado do arquivo Google drive",
23
+ "Get a file folder for files/sub-folders": "Obter uma pasta de arquivo para arquivos/subpastas",
24
+ "List files from a Google Drive folder": "Lista arquivos de uma pasta do Google Drive",
25
+ "Search a Google Drive folder for files/sub-folders": "Procurar uma pasta no Google Drive por arquivos/subpastas",
26
+ "Duplicate a file from Google Drive. Returns the new file ID.": "Duplicar um arquivo do Google Drive. Retorna o novo ID do arquivo.",
27
+ "Save a document as PDF in a Google Drive folder": "Salvar um documento como PDF em uma pasta do Google Drive",
28
+ "Update permissions for a file or folder": "Atualizar permissões para um arquivo ou pasta",
29
+ "Removes a role from an user for a file or folder": "Remove uma função de um usuário para um arquivo ou pasta",
30
+ "Set public access for a file or folder": "Definir acesso público para um arquivo ou pasta",
31
+ "Moves a file from one folder to another.": "Move um arquivo de uma pasta para outra.",
32
+ "Delete permanently a file from your Google Drive": "Excluir permanentemente um arquivo do seu Google Drive",
33
+ "Move a file to the trash in your Google Drive": "Mova um arquivo para a lixeira no seu Google Drive",
34
+ "Make a custom API call to a specific endpoint": "Faça uma chamada de API personalizada para um ponto de extremidade específico",
35
+ "Folder name": "Nome Pasta",
36
+ "Parent Folder": "Pasta pai",
37
+ "Include Team Drives": "Incluir unidades da equipe",
38
+ "File name": "Nome do arquivo",
39
+ "Text": "texto",
40
+ "Content type": "Tipo de conteúdo",
41
+ "File": "Arquivo",
42
+ "File ID": "ID do arquivo",
43
+ "Destination File name": "Nome do arquivo destino",
44
+ "File / Folder Id": "Arquivo / ID da pasta",
45
+ "Folder ID": "ID da pasta",
46
+ "Include Trashed": "Incluir na lixeira",
47
+ "Depth Level": "Nível de Profundidade",
48
+ "Download Files": "Baixar arquivos",
49
+ "Query Term": "Termo de consulta",
50
+ "Operator": "Operador",
51
+ "Value": "Valor",
52
+ "File Type": "Tipo de arquivo",
53
+ "Name": "Nome",
54
+ "Duplicate as": "Duplicar como",
55
+ "Document ID": "ID do documento",
56
+ "File or Folder ID": "ID do Arquivo ou Pasta",
57
+ "User email": "E-mail do usuário",
58
+ "Role": "Funções",
59
+ "Send invitation email": "Enviar e-mail de convite",
60
+ "Method": "Método",
61
+ "Headers": "Cabeçalhos",
62
+ "Query Parameters": "Parâmetros da consulta",
63
+ "Body Type": "Tipo de Corpo",
64
+ "Body": "Conteúdo",
65
+ "Response is Binary ?": "A resposta é binária ?",
66
+ "No Error on Failure": "Nenhum erro no Failure",
67
+ "Timeout (in seconds)": "Tempo limite (em segundos)",
68
+ "Follow redirects": "Seguir redirecionamentos",
69
+ "The name of the new folder": "O nome da nova pasta",
70
+ "Determines if folders from Team Drives should be included in the results.": "Determina se as pastas do Team Drives devem ser incluídas nos resultados.",
71
+ "The name of the new text file": "O nome do novo arquivo de texto",
72
+ "The text content to add to file": "O conteúdo do texto a ser adicionado ao arquivo",
73
+ "Select file type": "Selecionar tipo de arquivo",
74
+ "The name of the file": "O nome do arquivo",
75
+ "The file URL or base64 to upload": "URL do arquivo ou base64 para enviar",
76
+ "File ID coming from | New File -> id |": "ID do arquivo vindo de ➜ Novo arquivo-> id (Automatic Translation)",
77
+ "The Id of the file/folder to search for.": "O ID da pasta de arquivos a procurar",
78
+ "Folder ID coming from | New Folder -> id | (or any other source)": "ID da pasta vinda de ➜ Nova pasta -> id − (ou qualquer outra fonte)",
79
+ "Include new files that have been trashed.": "Incluir novos arquivos que foram descartados.",
80
+ "How many levels deep to search for files. 1 = current folder only, 2 = current + next level, etc.": "Quantos níveis de profundidade para pesquisar por arquivos. 1 = pasta atual, 2 = corrente + próximo nível, etc.",
81
+ "Download all file contents in a list": "Baixar todo o conteúdo de arquivo em uma lista",
82
+ "The Query term or field of file/folder to search upon.": "O termo da consulta ou campo de arquivo/pasta para pesquisar.",
83
+ "The operator to create criteria.": "O operador para criar critérios.",
84
+ "Value of the field of file/folder to search for.": "Valor do campo de arquivo/pasta para procurar.",
85
+ "(Optional) Choose between files and folders.": "(Opcional) Escolha entre arquivos e pastas.",
86
+ "The ID of the file to duplicate": "O ID do arquivo para duplicar",
87
+ "The name of the new file": "O nome do novo arquivo",
88
+ "The ID of the folder where the file will be duplicated": "ID da pasta onde o arquivo será duplicado",
89
+ "If left unselected the file will be duplicated as it is": "Se deixado desselecionado, o arquivo será duplicado como é",
90
+ "The ID of the document to export": "O ID do documento a ser exportado",
91
+ "The ID of the folder where the file will be exported": "O ID da pasta onde o arquivo será exportado",
92
+ "The name of the new file (do not include the extension)": "O nome do novo arquivo (não inclua a extensão)",
93
+ "The ID of the file or folder to update permissions for": "O ID do arquivo ou pasta para atualizar as permissões de",
94
+ "The email address of the user to update permissions for": "O endereço de e-mail do usuário para atualizar as permissões para",
95
+ "The role to grant to user. See more at: https://developers.google.com/drive/api/guides/ref-roles": "A função para conceder ao usuário. Veja mais em: https://developers.google.com/drive/api/guides/ref-roles",
96
+ "Send an email to the user to notify them of the new permissions": "Envie um e-mail para o usuário para notificá-lo sobre as novas permissões",
97
+ "The role to remove from user.": "A função a remover do usuário.",
98
+ "The role to assign for public access": "O papel a ser atribuído para acesso público",
99
+ "You can use **Search Folder/File** action to retrieve ID.": "Você pode usar a ação **Pesquisar pasta/Arquivo** para obter o ID.",
100
+ "The ID of the file to delete": "O ID do arquivo a ser eliminado",
101
+ "The ID of the file to trash": "A ID do arquivo para a lixeira",
102
+ "Authorization headers are injected automatically from your connection.": "Os cabeçalhos de autorização são inseridos automaticamente a partir da sua conexão.",
103
+ "Enable for files like PDFs, images, etc.": "Habilitar para arquivos como PDFs, imagens, etc.",
104
+ "CSV": "Csv",
105
+ "XML": "XML",
106
+ "Full text search": "Pesquisa de texto completo",
107
+ "Contains": "contém",
108
+ "Equals": "iguais",
109
+ "All": "TODOS",
110
+ "Files": "arquivos",
111
+ "Folders": "Pastas",
112
+ "Google Sheets": "Planilhas Google",
113
+ "Google Docs": "Google Docs",
114
+ "Organizer": "Organizador",
115
+ "File Organizer": "Organizador de arquivos",
116
+ "Writer": "Escritor",
117
+ "Commenter": "Comentador",
118
+ "Reader": "Leitor",
119
+ "Editor": "Editores",
120
+ "GET": "OBTER",
121
+ "POST": "POSTAR",
122
+ "PATCH": "COMPRAR",
123
+ "PUT": "COLOCAR",
124
+ "DELETE": "EXCLUIR",
125
+ "HEAD": "CABEÇA",
126
+ "None": "Nenhuma",
127
+ "JSON": "JSON",
128
+ "Form Data": "Dados de Formulário",
129
+ "Raw": "RAW",
130
+ "New File": "Novo arquivo",
131
+ "New Folder": "Nova Pasta",
132
+ "Trigger when a new file is uploaded.": "Dispara quando um novo arquivo é carregado.",
133
+ "Trigger when a new folder is created or uploaded.": "Aciona quando uma nova pasta é criada ou enviada.",
134
+ "Include File Content": "Incluir conteúdo do arquivo",
135
+ "Include the file content in the output. This will increase the time taken to fetch the files and might cause issues with large files.": "Inclua o conteúdo do arquivo no saída. Isso aumentará o tempo necessário para buscar os arquivos e poderá causar problemas com arquivos grandes."
136
+ }
@@ -0,0 +1,127 @@
1
+ {
2
+ "Google Drive": "Google диск",
3
+ "Cloud storage and file backup": "Облачное хранилище и резервное копирование файлов",
4
+ "Create new folder": "Создать новую папку",
5
+ "Create new file": "Создать новый файл",
6
+ "Upload file": "Загрузить файл",
7
+ "Read file": "Чтение файла",
8
+ "Get File": "Получить файл",
9
+ "List files": "Список файлов",
10
+ "Search": "Search",
11
+ "Duplicate File": "Дублировать файл",
12
+ "Save Document as PDF": "Сохранить документ как PDF",
13
+ "Update permissions": "Обновить права доступа",
14
+ "Delete permissions": "Удалить права доступа",
15
+ "Set public access": "Установить публичный доступ",
16
+ "Move File": "Переместить файл",
17
+ "Delete file": "Удалить файл",
18
+ "Trash file": "Мусорный файл",
19
+ "Custom API Call": "Пользовательский вызов API",
20
+ "Create a new empty folder in your Google Drive": "Создайте новую пустую папку в Google Drive",
21
+ "Create a new text file in your Google Drive from text": "Создать новый текстовый файл в Google Drive из текста",
22
+ "Upload a file in your Google Drive": "Загрузите файл в Google Drive",
23
+ "Read a selected file from google drive file": "Прочитать выбранный файл из файла google диска",
24
+ "Get a file folder for files/sub-folders": "Получить папку для файлов/вложенных папок",
25
+ "List files from a Google Drive folder": "Список файлов из папки Google Drive",
26
+ "Search a Google Drive folder for files/sub-folders": "Поиск в папке Google Drive для файлов/вложенных папок",
27
+ "Duplicate a file from Google Drive. Returns the new file ID.": "Дублировать файл из Google Drive. Возвращает ID нового файла.",
28
+ "Save a document as PDF in a Google Drive folder": "Сохранить документ в PDF в папке Google Drive",
29
+ "Update permissions for a file or folder": "Обновить права доступа к файлу или папке",
30
+ "Removes a role from an user for a file or folder": "Удаляет роль пользователя для файла или папки",
31
+ "Set public access for a file or folder": "Установить публичный доступ к файлу или папке",
32
+ "Moves a file from one folder to another.": "Перемещает файл из одной папки в другую.",
33
+ "Delete permanently a file from your Google Drive": "Окончательно удалить файл из Google Drive",
34
+ "Move a file to the trash in your Google Drive": "Переместить файл в корзину в Google Drive",
35
+ "Make a custom API call to a specific endpoint": "Сделать пользовательский API вызов к определенной конечной точке",
36
+ "Folder name": "Имя папки",
37
+ "Parent Folder": "Родительская папка",
38
+ "Include Team Drives": "Включать групповые диски",
39
+ "File name": "Имя файла",
40
+ "Text": "Текст",
41
+ "Content type": "Тип контента",
42
+ "File": "Файл",
43
+ "File ID": "ID файла",
44
+ "Destination File name": "Имя целевого файла",
45
+ "File / Folder Id": "Идентификатор файла / папки",
46
+ "Folder ID": "ID папки",
47
+ "Include Trashed": "Включать в корзину",
48
+ "Depth Level": "Глубина",
49
+ "Download Files": "Скачать файлы",
50
+ "Query Term": "Запрос термина",
51
+ "Operator": "Оператор",
52
+ "Value": "Значение",
53
+ "File Type": "Тип файла",
54
+ "Name": "Наименование",
55
+ "Duplicate as": "Дублировать как",
56
+ "Document ID": "ID документа",
57
+ "File or Folder ID": "ID файла или папки",
58
+ "User email": "Email пользователя",
59
+ "Role": "Роль",
60
+ "Send invitation email": "Отправить приглашение по электронной почте",
61
+ "Method": "Метод",
62
+ "Headers": "Заголовки",
63
+ "Query Parameters": "Параметры запроса",
64
+ "Body": "Тело",
65
+ "No Error on Failure": "Нет ошибок при ошибке",
66
+ "Timeout (in seconds)": "Таймаут (в секундах)",
67
+ "The name of the new folder": "Название новой папки",
68
+ "Determines if folders from Team Drives should be included in the results.": "Определяет, должны ли в результаты включаться папки с Team Drive.",
69
+ "The name of the new text file": "Имя нового текстового файла",
70
+ "The text content to add to file": "Текстовое содержимое для добавления в файл",
71
+ "Select file type": "Выберите тип файла",
72
+ "The name of the file": "Имя файла",
73
+ "The file URL or base64 to upload": "URL файла или base64 для загрузки",
74
+ "File ID coming from | New File -> id |": "Файл ID пришедший из | Новый файл -> id |",
75
+ "The Id of the file/folder to search for.": "Идентификатор файла/папки для поиска.",
76
+ "Folder ID coming from | New Folder -> id | (or any other source)": "Идентификатор папки из | Новая папка -> id | (или любой другой источник)",
77
+ "Include new files that have been trashed.": "Включить новые файлы, которые были помещены в корзину.",
78
+ "How many levels deep to search for files. 1 = current folder only, 2 = current + next level, etc.": "Сколько уровней глубины для поиска файлов. 1 = только текущая папка, 2 = текущий + следующий уровень и т.д.",
79
+ "Download all file contents in a list": "Скачать все содержимое файла в списке",
80
+ "The Query term or field of file/folder to search upon.": "Термин запроса или поле файла/папки для поиска.",
81
+ "The operator to create criteria.": "Оператор для создания критериев.",
82
+ "Value of the field of file/folder to search for.": "Значение поля файла/папки для поиска.",
83
+ "(Optional) Choose between files and folders.": "(Необязательно) Выберите между файлами и папками.",
84
+ "The ID of the file to duplicate": "Повторяющийся ID файла",
85
+ "The name of the new file": "Имя нового файла",
86
+ "The ID of the folder where the file will be duplicated": "ID папки, в которой будет дублироваться файл",
87
+ "If left unselected the file will be duplicated as it is": "Если оставить флажок, то файл будет дублироваться как он",
88
+ "The ID of the document to export": "ID документа для экспорта",
89
+ "The ID of the folder where the file will be exported": "ID папки, в которой будет экспортирован файл",
90
+ "The name of the new file (do not include the extension)": "Имя нового файла (не включает расширение)",
91
+ "The ID of the file or folder to update permissions for": "ID файла или папки для обновления разрешений для",
92
+ "The email address of the user to update permissions for": "Адрес электронной почты пользователя для обновления разрешений для",
93
+ "The role to grant to user. See more at: https://developers.google.com/drive/api/guides/ref-roles": "Роль предоставить пользователю доступ. Подробнее по адресу https://developers.google.com/drive/api/guides/ref-roles",
94
+ "Send an email to the user to notify them of the new permissions": "Отправить письмо пользователю для уведомления о новых разрешениях",
95
+ "The role to remove from user.": "Роль для удаления от пользователя.",
96
+ "You can use **Search Folder/File** action to retrieve ID.": "Вы можете использовать действие **Поиск папки/файла** для получения ID.",
97
+ "The ID of the file to delete": "ID файла для удаления",
98
+ "The ID of the file to trash": "ID файла в корзину",
99
+ "Authorization headers are injected automatically from your connection.": "Заголовки авторизации включаются автоматически из вашего соединения.",
100
+ "CSV": "CSV",
101
+ "XML": "XML",
102
+ "Full text search": "Поиск по полному тексту",
103
+ "Contains": "Содержит",
104
+ "Equals": "Равно",
105
+ "All": "Все",
106
+ "Files": "Файлы",
107
+ "Folders": "Папки",
108
+ "Google Sheets": "Google листы",
109
+ "Google Docs": "Google Docs",
110
+ "Organizer": "Организатор",
111
+ "File Organizer": "Организатор файла",
112
+ "Writer": "Автор",
113
+ "Commenter": "Комментатор",
114
+ "Reader": "Чтение",
115
+ "GET": "ПОЛУЧИТЬ",
116
+ "POST": "ПОСТ",
117
+ "PATCH": "ПАТЧ",
118
+ "PUT": "ПОКУПИТЬ",
119
+ "DELETE": "УДАЛИТЬ",
120
+ "HEAD": "HEAD",
121
+ "New File": "Новый файл",
122
+ "New Folder": "New Folder",
123
+ "Trigger when a new file is uploaded.": "Срабатывать при загрузке нового файла.",
124
+ "Trigger when a new folder is created or uploaded.": "Срабатывать при создании или загрузке новой папки.",
125
+ "Include File Content": "Включить содержимое файла",
126
+ "Include the file content in the output. This will increase the time taken to fetch the files and might cause issues with large files.": "Включить содержимое файла в выходной файл. Это увеличит время, необходимое для получения файлов и может вызвать проблемы с большими файлами."
127
+ }
@@ -0,0 +1,137 @@
1
+ {
2
+ "Cloud storage and file backup": "Cloud storage and file backup",
3
+ "Create new folder": "Create new folder",
4
+ "Create new file": "Create new file",
5
+ "Upload file": "Upload file",
6
+ "Read File Content": "Read File Content",
7
+ "Get File Information": "Get File Information",
8
+ "List files": "List files",
9
+ "Search": "Search",
10
+ "Duplicate File": "Duplicate File",
11
+ "Save Document as PDF": "Save Document as PDF",
12
+ "Update permissions": "Update permissions",
13
+ "Delete permissions": "Delete permissions",
14
+ "Set public access": "Set public access",
15
+ "Move File": "Move File",
16
+ "Delete file": "Delete file",
17
+ "Trash file": "Trash file",
18
+ "Custom API Call": "Custom API Call",
19
+ "Create a new empty folder in your Google Drive": "Create a new empty folder in your Google Drive",
20
+ "Create a new text file in your Google Drive from text": "Create a new text file in your Google Drive from text",
21
+ "Upload a file in your Google Drive": "Upload a file in your Google Drive",
22
+ "Read a selected file from google drive file": "Read a selected file from google drive file",
23
+ "Get a file folder for files/sub-folders": "Get a file folder for files/sub-folders",
24
+ "List files from a Google Drive folder": "List files from a Google Drive folder",
25
+ "Search a Google Drive folder for files/sub-folders": "Search a Google Drive folder for files/sub-folders",
26
+ "Duplicate a file from Google Drive. Returns the new file ID.": "Duplicate a file from Google Drive. Returns the new file ID.",
27
+ "Save a document as PDF in a Google Drive folder": "Save a document as PDF in a Google Drive folder",
28
+ "Update permissions for a file or folder": "Update permissions for a file or folder",
29
+ "Removes a role from an user for a file or folder": "Removes a role from an user for a file or folder",
30
+ "Set public access for a file or folder": "Set public access for a file or folder",
31
+ "Moves a file from one folder to another.": "Moves a file from one folder to another.",
32
+ "Delete permanently a file from your Google Drive": "Delete permanently a file from your Google Drive",
33
+ "Move a file to the trash in your Google Drive": "Move a file to the trash in your Google Drive",
34
+ "Make a custom API call to a specific endpoint": "Make a custom API call to a specific endpoint",
35
+ "Folder name": "Folder name",
36
+ "Parent Folder": "Parent Folder",
37
+ "Include Team Drives": "Include Team Drives",
38
+ "File name": "File name",
39
+ "Text": "Text",
40
+ "Content type": "Content type",
41
+ "File": "File",
42
+ "File ID": "File ID",
43
+ "Destination File name": "Destination File name",
44
+ "File / Folder Id": "File / Folder Id",
45
+ "Folder ID": "Folder ID",
46
+ "Include Trashed": "Include Trashed",
47
+ "Depth Level": "Depth Level",
48
+ "Download Files": "Download Files",
49
+ "Query Term": "Query Term",
50
+ "Operator": "Operator",
51
+ "Value": "Value",
52
+ "File Type": "File Type",
53
+ "Name": "Name",
54
+ "Duplicate as": "Duplicate as",
55
+ "Document ID": "Document ID",
56
+ "File or Folder ID": "File or Folder ID",
57
+ "User email": "User email",
58
+ "Role": "Role",
59
+ "Send invitation email": "Send invitation email",
60
+ "Method": "Method",
61
+ "Headers": "Headers",
62
+ "Query Parameters": "Query Parameters",
63
+ "Body Type": "Body Type",
64
+ "Body": "Body",
65
+ "Response is Binary ?": "Response is Binary ?",
66
+ "No Error on Failure": "No Error on Failure",
67
+ "Timeout (in seconds)": "Timeout (in seconds)",
68
+ "Follow redirects": "Follow redirects",
69
+ "The name of the new folder": "The name of the new folder",
70
+ "The Drive folder to target. Leave empty to use the root of My Drive. Type in the box to search your Drive by folder name. If the folder still isn't listed, switch this field to 'Dynamic value' (the toggle next to the field) and paste the folder ID — you can copy it from the folder's URL in Drive, after /folders/ (e.g. https://drive.google.com/drive/folders/<FOLDER_ID>).": "The Drive folder to target. Leave empty to use the root of My Drive. Type in the box to search your Drive by folder name. If the folder still isn't listed, switch this field to 'Dynamic value' (the toggle next to the field) and paste the folder ID — you can copy it from the folder's URL in Drive, after /folders/ (e.g. https://drive.google.com/drive/folders/<FOLDER_ID>).",
71
+ "Determines if folders from Team Drives should be included in the results.": "Determines if folders from Team Drives should be included in the results.",
72
+ "The name of the new text file": "The name of the new text file",
73
+ "The text content to add to file": "The text content to add to file",
74
+ "Select file type": "Select file type",
75
+ "The name of the file": "The name of the file",
76
+ "The file URL or base64 to upload": "The file URL or base64 to upload",
77
+ "File ID coming from | New File -> id |": "File ID coming from | New File -> id |",
78
+ "The Id of the file/folder to search for.": "The Id of the file/folder to search for.",
79
+ "Folder ID coming from | New Folder -> id | (or any other source)": "Folder ID coming from | New Folder -> id | (or any other source)",
80
+ "Include new files that have been trashed.": "Include new files that have been trashed.",
81
+ "How many levels deep to search for files. 1 = current folder only, 2 = current + next level, etc.": "How many levels deep to search for files. 1 = current folder only, 2 = current + next level, etc.",
82
+ "Download all file contents in a list": "Download all file contents in a list",
83
+ "The Query term or field of file/folder to search upon.": "The Query term or field of file/folder to search upon.",
84
+ "The operator to create criteria.": "The operator to create criteria.",
85
+ "Value of the field of file/folder to search for.": "Value of the field of file/folder to search for.",
86
+ "(Optional) Choose between files and folders.": "(Optional) Choose between files and folders.",
87
+ "The ID of the file to duplicate": "The ID of the file to duplicate",
88
+ "The name of the new file": "The name of the new file",
89
+ "The ID of the folder where the file will be duplicated": "The ID of the folder where the file will be duplicated",
90
+ "If left unselected the file will be duplicated as it is": "If left unselected the file will be duplicated as it is",
91
+ "The ID of the document to export": "The ID of the document to export",
92
+ "The ID of the folder where the file will be exported": "The ID of the folder where the file will be exported",
93
+ "The name of the new file (do not include the extension)": "The name of the new file (do not include the extension)",
94
+ "The ID of the file or folder to update permissions for": "The ID of the file or folder to update permissions for",
95
+ "The email address of the user to update permissions for": "The email address of the user to update permissions for",
96
+ "The role to grant to user. See more at: https://developers.google.com/drive/api/guides/ref-roles": "The role to grant to user. See more at: https://developers.google.com/drive/api/guides/ref-roles",
97
+ "Send an email to the user to notify them of the new permissions": "Send an email to the user to notify them of the new permissions",
98
+ "The role to remove from user.": "The role to remove from user.",
99
+ "The role to assign for public access": "The role to assign for public access",
100
+ "You can use **Search Folder/File** action to retrieve ID.": "You can use **Search Folder/File** action to retrieve ID.",
101
+ "The ID of the file to delete": "The ID of the file to delete",
102
+ "The ID of the file to trash": "The ID of the file to trash",
103
+ "Authorization headers are injected automatically from your connection.": "Authorization headers are injected automatically from your connection.",
104
+ "Enable for files like PDFs, images, etc.": "Enable for files like PDFs, images, etc.",
105
+ "CSV": "CSV",
106
+ "XML": "XML",
107
+ "Full text search": "Full text search",
108
+ "Contains": "Contains",
109
+ "Equals": "Equals",
110
+ "All": "All",
111
+ "Files": "Files",
112
+ "Folders": "Folders",
113
+ "Google Sheets": "Google Sheets",
114
+ "Google Docs": "Google Docs",
115
+ "Organizer": "Organizer",
116
+ "File Organizer": "File Organizer",
117
+ "Writer": "Writer",
118
+ "Commenter": "Commenter",
119
+ "Reader": "Reader",
120
+ "Editor": "Editor",
121
+ "GET": "GET",
122
+ "POST": "POST",
123
+ "PATCH": "PATCH",
124
+ "PUT": "PUT",
125
+ "DELETE": "DELETE",
126
+ "HEAD": "HEAD",
127
+ "None": "None",
128
+ "JSON": "JSON",
129
+ "Form Data": "Form Data",
130
+ "Raw": "Raw",
131
+ "New File": "New File",
132
+ "New Folder": "New Folder",
133
+ "Trigger when a new file is uploaded.": "Trigger when a new file is uploaded.",
134
+ "Trigger when a new folder is created or uploaded.": "Trigger when a new folder is created or uploaded.",
135
+ "Include File Content": "Include File Content",
136
+ "Include the file content in the output. This will increase the time taken to fetch the files and might cause issues with large files.": "Include the file content in the output. This will increase the time taken to fetch the files and might cause issues with large files."
137
+ }
@@ -0,0 +1,127 @@
1
+ {
2
+ "Google Drive": "Google Drive",
3
+ "Cloud storage and file backup": "Cloud storage and file backup",
4
+ "Create new folder": "Create new folder",
5
+ "Create new file": "Create new file",
6
+ "Upload file": "Upload file",
7
+ "Read file": "Read file",
8
+ "Get File": "Get File",
9
+ "List files": "List files",
10
+ "Search": "Search",
11
+ "Duplicate File": "Duplicate File",
12
+ "Save Document as PDF": "Save Document as PDF",
13
+ "Update permissions": "Update permissions",
14
+ "Delete permissions": "Delete permissions",
15
+ "Set public access": "Set public access",
16
+ "Move File": "Move File",
17
+ "Delete file": "Delete file",
18
+ "Trash file": "Trash file",
19
+ "Custom API Call": "Custom API Call",
20
+ "Create a new empty folder in your Google Drive": "Create a new empty folder in your Google Drive",
21
+ "Create a new text file in your Google Drive from text": "Create a new text file in your Google Drive from text",
22
+ "Upload a file in your Google Drive": "Upload a file in your Google Drive",
23
+ "Read a selected file from google drive file": "Read a selected file from google drive file",
24
+ "Get a file folder for files/sub-folders": "Get a file folder for files/sub-folders",
25
+ "List files from a Google Drive folder": "List files from a Google Drive folder",
26
+ "Search a Google Drive folder for files/sub-folders": "Search a Google Drive folder for files/sub-folders",
27
+ "Duplicate a file from Google Drive. Returns the new file ID.": "Duplicate a file from Google Drive. Returns the new file ID.",
28
+ "Save a document as PDF in a Google Drive folder": "Save a document as PDF in a Google Drive folder",
29
+ "Update permissions for a file or folder": "Update permissions for a file or folder",
30
+ "Removes a role from an user for a file or folder": "Removes a role from an user for a file or folder",
31
+ "Set public access for a file or folder": "Set public access for a file or folder",
32
+ "Moves a file from one folder to another.": "Moves a file from one folder to another.",
33
+ "Delete permanently a file from your Google Drive": "Delete permanently a file from your Google Drive",
34
+ "Move a file to the trash in your Google Drive": "Move a file to the trash in your Google Drive",
35
+ "Make a custom API call to a specific endpoint": "Make a custom API call to a specific endpoint",
36
+ "Folder name": "Folder name",
37
+ "Parent Folder": "Parent Folder",
38
+ "Include Team Drives": "Include Team Drives",
39
+ "File name": "File name",
40
+ "Text": "Text",
41
+ "Content type": "Content type",
42
+ "File": "File",
43
+ "File ID": "File ID",
44
+ "Destination File name": "Destination File name",
45
+ "File / Folder Id": "File / Folder Id",
46
+ "Folder ID": "Folder ID",
47
+ "Include Trashed": "Include Trashed",
48
+ "Depth Level": "Depth Level",
49
+ "Download Files": "Download Files",
50
+ "Query Term": "Query Term",
51
+ "Operator": "Operator",
52
+ "Value": "Value",
53
+ "File Type": "File Type",
54
+ "Name": "Name",
55
+ "Duplicate as": "Duplicate as",
56
+ "Document ID": "Document ID",
57
+ "File or Folder ID": "File or Folder ID",
58
+ "User email": "User email",
59
+ "Role": "Vai trò",
60
+ "Send invitation email": "Send invitation email",
61
+ "Method": "Method",
62
+ "Headers": "Headers",
63
+ "Query Parameters": "Query Parameters",
64
+ "Body": "Body",
65
+ "No Error on Failure": "No Error on Failure",
66
+ "Timeout (in seconds)": "Timeout (in seconds)",
67
+ "The name of the new folder": "The name of the new folder",
68
+ "Determines if folders from Team Drives should be included in the results.": "Determines if folders from Team Drives should be included in the results.",
69
+ "The name of the new text file": "The name of the new text file",
70
+ "The text content to add to file": "The text content to add to file",
71
+ "Select file type": "Select file type",
72
+ "The name of the file": "The name of the file",
73
+ "The file URL or base64 to upload": "The file URL or base64 to upload",
74
+ "File ID coming from | New File -> id |": "File ID coming from | New File -> id |",
75
+ "The Id of the file/folder to search for.": "The Id of the file/folder to search for.",
76
+ "Folder ID coming from | New Folder -> id | (or any other source)": "Folder ID coming from | New Folder -> id | (or any other source)",
77
+ "Include new files that have been trashed.": "Include new files that have been trashed.",
78
+ "How many levels deep to search for files. 1 = current folder only, 2 = current + next level, etc.": "How many levels deep to search for files. 1 = current folder only, 2 = current + next level, etc.",
79
+ "Download all file contents in a list": "Download all file contents in a list",
80
+ "The Query term or field of file/folder to search upon.": "The Query term or field of file/folder to search upon.",
81
+ "The operator to create criteria.": "The operator to create criteria.",
82
+ "Value of the field of file/folder to search for.": "Value of the field of file/folder to search for.",
83
+ "(Optional) Choose between files and folders.": "(Optional) Choose between files and folders.",
84
+ "The ID of the file to duplicate": "The ID of the file to duplicate",
85
+ "The name of the new file": "The name of the new file",
86
+ "The ID of the folder where the file will be duplicated": "The ID of the folder where the file will be duplicated",
87
+ "If left unselected the file will be duplicated as it is": "If left unselected the file will be duplicated as it is",
88
+ "The ID of the document to export": "The ID of the document to export",
89
+ "The ID of the folder where the file will be exported": "The ID of the folder where the file will be exported",
90
+ "The name of the new file (do not include the extension)": "The name of the new file (do not include the extension)",
91
+ "The ID of the file or folder to update permissions for": "The ID of the file or folder to update permissions for",
92
+ "The email address of the user to update permissions for": "The email address of the user to update permissions for",
93
+ "The role to grant to user. See more at: https://developers.google.com/drive/api/guides/ref-roles": "The role to grant to user. See more at: https://developers.google.com/drive/api/guides/ref-roles",
94
+ "Send an email to the user to notify them of the new permissions": "Send an email to the user to notify them of the new permissions",
95
+ "The role to remove from user.": "The role to remove from user.",
96
+ "You can use **Search Folder/File** action to retrieve ID.": "You can use **Search Folder/File** action to retrieve ID.",
97
+ "The ID of the file to delete": "The ID of the file to delete",
98
+ "The ID of the file to trash": "The ID of the file to trash",
99
+ "Authorization headers are injected automatically from your connection.": "Authorization headers are injected automatically from your connection.",
100
+ "CSV": "CSV",
101
+ "XML": "XML",
102
+ "Full text search": "Full text search",
103
+ "Contains": "Contains",
104
+ "Equals": "Equals",
105
+ "All": "Tất cả",
106
+ "Files": "Files",
107
+ "Folders": "Folders",
108
+ "Google Sheets": "Google Sheets",
109
+ "Google Docs": "Google Docs",
110
+ "Organizer": "Organizer",
111
+ "File Organizer": "File Organizer",
112
+ "Writer": "Writer",
113
+ "Commenter": "Commenter",
114
+ "Reader": "Reader",
115
+ "GET": "GET",
116
+ "POST": "POST",
117
+ "PATCH": "PATCH",
118
+ "PUT": "PUT",
119
+ "DELETE": "DELETE",
120
+ "HEAD": "HEAD",
121
+ "New File": "New File",
122
+ "New Folder": "New Folder",
123
+ "Trigger when a new file is uploaded.": "Trigger when a new file is uploaded.",
124
+ "Trigger when a new folder is created or uploaded.": "Trigger when a new folder is created or uploaded.",
125
+ "Include File Content": "Include File Content",
126
+ "Include the file content in the output. This will increase the time taken to fetch the files and might cause issues with large files.": "Include the file content in the output. This will increase the time taken to fetch the files and might cause issues with large files."
127
+ }