@scopieflows/app-microsoft-sharepoint 0.2.3

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 (84) hide show
  1. package/README.md +2 -0
  2. package/package.json +31 -0
  3. package/src/i18n/de.json +131 -0
  4. package/src/i18n/es.json +131 -0
  5. package/src/i18n/fr.json +131 -0
  6. package/src/i18n/ja.json +131 -0
  7. package/src/i18n/nl.json +131 -0
  8. package/src/i18n/pt.json +131 -0
  9. package/src/i18n/ru.json +49 -0
  10. package/src/i18n/translation.json +131 -0
  11. package/src/i18n/vi.json +49 -0
  12. package/src/i18n/zh.json +131 -0
  13. package/src/index.d.ts +2 -0
  14. package/src/index.js +121 -0
  15. package/src/index.js.map +1 -0
  16. package/src/lib/actions/copy-item-within-site.d.ts +8 -0
  17. package/src/lib/actions/copy-item-within-site.js +155 -0
  18. package/src/lib/actions/copy-item-within-site.js.map +1 -0
  19. package/src/lib/actions/copy-item.d.ts +10 -0
  20. package/src/lib/actions/copy-item.js +118 -0
  21. package/src/lib/actions/copy-item.js.map +1 -0
  22. package/src/lib/actions/create-folder.d.ts +6 -0
  23. package/src/lib/actions/create-folder.js +44 -0
  24. package/src/lib/actions/create-folder.js.map +1 -0
  25. package/src/lib/actions/create-list-item.d.ts +5 -0
  26. package/src/lib/actions/create-list-item.js +43 -0
  27. package/src/lib/actions/create-list-item.js.map +1 -0
  28. package/src/lib/actions/create-list.d.ts +5 -0
  29. package/src/lib/actions/create-list.js +41 -0
  30. package/src/lib/actions/create-list.js.map +1 -0
  31. package/src/lib/actions/delete-list-item.d.ts +5 -0
  32. package/src/lib/actions/delete-list-item.js +33 -0
  33. package/src/lib/actions/delete-list-item.js.map +1 -0
  34. package/src/lib/actions/find-file.d.ts +8 -0
  35. package/src/lib/actions/find-file.js +133 -0
  36. package/src/lib/actions/find-file.js.map +1 -0
  37. package/src/lib/actions/get-folder-contents.d.ts +9 -0
  38. package/src/lib/actions/get-folder-contents.js +108 -0
  39. package/src/lib/actions/get-folder-contents.js.map +1 -0
  40. package/src/lib/actions/get-site-information.d.ts +4 -0
  41. package/src/lib/actions/get-site-information.js +38 -0
  42. package/src/lib/actions/get-site-information.js.map +1 -0
  43. package/src/lib/actions/move-file.d.ts +7 -0
  44. package/src/lib/actions/move-file.js +151 -0
  45. package/src/lib/actions/move-file.js.map +1 -0
  46. package/src/lib/actions/publish-page.d.ts +4 -0
  47. package/src/lib/actions/publish-page.js +52 -0
  48. package/src/lib/actions/publish-page.js.map +1 -0
  49. package/src/lib/actions/search-list-item.d.ts +5 -0
  50. package/src/lib/actions/search-list-item.js +40 -0
  51. package/src/lib/actions/search-list-item.js.map +1 -0
  52. package/src/lib/actions/update-list-item.d.ts +6 -0
  53. package/src/lib/actions/update-list-item.js +42 -0
  54. package/src/lib/actions/update-list-item.js.map +1 -0
  55. package/src/lib/actions/upload-file.d.ts +7 -0
  56. package/src/lib/actions/upload-file.js +49 -0
  57. package/src/lib/actions/upload-file.js.map +1 -0
  58. package/src/lib/common/index.d.ts +14 -0
  59. package/src/lib/common/index.js +394 -0
  60. package/src/lib/common/index.js.map +1 -0
  61. package/src/lib/triggers/new-file-in-folder.d.ts +18 -0
  62. package/src/lib/triggers/new-file-in-folder.js +155 -0
  63. package/src/lib/triggers/new-file-in-folder.js.map +1 -0
  64. package/src/lib/triggers/new-file-in-subfolders.d.ts +18 -0
  65. package/src/lib/triggers/new-file-in-subfolders.js +151 -0
  66. package/src/lib/triggers/new-file-in-subfolders.js.map +1 -0
  67. package/src/lib/triggers/new-list-item.d.ts +14 -0
  68. package/src/lib/triggers/new-list-item.js +95 -0
  69. package/src/lib/triggers/new-list-item.js.map +1 -0
  70. package/src/lib/triggers/new-list.d.ts +10 -0
  71. package/src/lib/triggers/new-list.js +89 -0
  72. package/src/lib/triggers/new-list.js.map +1 -0
  73. package/src/lib/triggers/new-or-updated-file.d.ts +18 -0
  74. package/src/lib/triggers/new-or-updated-file.js +152 -0
  75. package/src/lib/triggers/new-or-updated-file.js.map +1 -0
  76. package/src/lib/triggers/new-or-updated-folder.d.ts +18 -0
  77. package/src/lib/triggers/new-or-updated-folder.js +152 -0
  78. package/src/lib/triggers/new-or-updated-folder.js.map +1 -0
  79. package/src/lib/triggers/new-or-updated-list.d.ts +10 -0
  80. package/src/lib/triggers/new-or-updated-list.js +103 -0
  81. package/src/lib/triggers/new-or-updated-list.js.map +1 -0
  82. package/src/lib/triggers/updated-list-item.d.ts +14 -0
  83. package/src/lib/triggers/updated-list-item.js +108 -0
  84. package/src/lib/triggers/updated-list-item.js.map +1 -0
@@ -0,0 +1,131 @@
1
+ {
2
+ "\n1. Sign in to [Microsoft Azure Portal](https://portal.azure.com/).\n2. From the left sidebar, go to **Microsoft Enfra ID**.\n3. Under **Manage**, click on **App registrations**.\n4. Click the **New registration** button.\n5. Enter a **Name** for your app.\n6. For **Supported account types**, choose:\n - **Accounts in any organizational directory (Any Microsoft Entra ID tenant - Multitenant) and personal Microsoft accounts**\n - Or select based on your requirement.\n7. In **Redirect URI**, select **Web** and ad": "\n1. Meld je aan bij [Microsoft Azure Portal](https://portal.azure.com/).\n. Ga naar **Microsoft Enfra ID**.\n3. Klik onder **Beheren**, op **App registraties**.\n4. Klik op de **Nieuwe registratie** knop.\n5. Voer een **naam** in voor uw app.\n6. Voor **Ondersteunde accounttypen**, kies keuze:\n - **Accounts in elke map van de organisatie (Any Microsoft Entra ID-tenant - Multitenant) en persoonlijke Microsoft accounts**\n - Of selecteer gebaseerd op uw vereiste.\n7. In **Redirect URI**, selecteer **Web** en voeg de opgegeven URL toe: {{redirectUrl}}\n8. Klik **Register**.\n9. Na registratie wordt u doorverwezen naar de overzichtspagina. Kopieer de **Applicatie (client) ID**.\n10. Vanuit het linkermenu ga naar **Certificaten en geheimen**.\n - Klik onder **Client geheimen** op **Nieuwe client geheim**.\n - Geef een beschrijving, verloop, en klik **Toevoegen**.\n - Kopieer de **waarde** van de client secret (dit zal niet meer worden weergegeven).\n11. Ga naar **API permissies** in het linkermenu.\n - Klik **Een machtiging toevoegen**.\n - Selecteer **Microsoft Graph**.\n - Voeg de volgende **gedelegeerde machtigingen** toe**:\n - Sites.Read. ll \n - Sites.ReadWrite.All\n - Sites. anage.All\n - Files.ReadWrite. ll\n - openid\n - email\n - profiel\n - offline_access\n - Klik op **rechten toevoegen**.\n12. Kopieer de **Client ID** en **Client Secret**.\n",
3
+ "Create Folder": "Map aanmaken",
4
+ "Create List": "Lijst aanmaken",
5
+ "Create List Item": "Lijstitem aanmaken",
6
+ "Update List Item": "Lijstitem bijwerken",
7
+ "Delete List Item": "Verwijder lijstitem",
8
+ "Find List Item": "Zoek Lijst Item",
9
+ "Upload File": "Bestand uploaden",
10
+ "Publish Page": "Pagina publiceren",
11
+ "Copy File or Folder (Across Sites)": "Bestand of map kopiëren (over de sites)",
12
+ "Copy File or Folder (Within Site)": "Bestand of map kopiëren (Binnen Site)",
13
+ "Move File": "Bestand verplaatsen",
14
+ "Find File": "Bestand zoeken",
15
+ "Get Folder Contents": "Haal mapinhoud op",
16
+ "Get Site Information": "Site informatie verkrijgen",
17
+ "Custom API Call": "Custom API Call",
18
+ "Creates a new folder at path you specify.": "Maakt een nieuwe map aan op het pad dat u opgeeft.",
19
+ "Creates a new list.": "Maakt een nieuwe lijst aan.",
20
+ "Creates a new item in a list.": "Maakt een nieuw onderdeel aan in een lijst.",
21
+ "Updates an existing item in a list.": "Werkt een bestaand item in een lijst bij.",
22
+ "Deletes an existing item from a list.": "Verwijdert een bestaand item van een lijst.",
23
+ "Finds a item in a list based on name.": "Vindt een item in een lijst gebaseerd op naam.",
24
+ "Uploads a new file at path you specify.": "Hiermee uploadt u een nieuw bestand op het pad dat u opgeeft.",
25
+ "Publishes a SharePoint page, making it available to all users. If the page is checked out, it will be automatically checked in. Note: Pages with active approval flows will not publish until approval is complete.": "Publiceert een SharePoint pagina en maakt deze beschikbaar voor alle gebruikers. Als de pagina is uitgecheckt, wordt deze automatisch ingecheckt. Opmerking: pagina's met actieve goedkeuringsstromen zullen niet worden gepubliceerd totdat de goedkeuring is voltooid.",
26
+ "Copy a file or folder from one site to another within the same tenant, with overwrite option.": "Kopieer een bestand of map van de ene site naar de andere binnen dezelfde tenant, met de optie overschrijven.",
27
+ "Copy a file or folder to another folder within the same site.": "Kopieer een bestand of map naar een andere map binnen dezelfde site.",
28
+ "Move a file from one folder to another within the same drive.": "Verplaats een bestand van de ene map naar de andere binnen dezelfde schijf.",
29
+ "Look up a file by its name or path.": "Zoek een bestand op de naam of het pad.",
30
+ "List all files and subfolders in a specified folder, optionally with detailed metadata.": "Alle bestanden en submappen in een opgegeven map weergeven, eventueel met gedetailleerde metadata.",
31
+ "Fetch metadata of a SharePoint site (site ID, title, URL, description, etc.).": "Metadata van een SharePoint site ophalen (site-ID, titel, URL, beschrijving, enz.).",
32
+ "Make a custom API call to a specific endpoint": "Maak een aangepaste API call naar een specifiek eindpunt",
33
+ "Site": "Website",
34
+ "Drive": "schijf",
35
+ "Parent Folder": "Bovenliggende map",
36
+ "Folder Name": "Naam van de map",
37
+ "List Name": "Lijst Naam",
38
+ "List Description": "Lijst beschrijving",
39
+ "List": "Klantenlijst",
40
+ "List Columns": "Lijst kolommen",
41
+ "List Item": "Lijst item",
42
+ "Title": "Aanspreektitel",
43
+ "File": "Bestand",
44
+ "File Name": "File Name",
45
+ "Page": "Pagina",
46
+ "Source File or Folder": "Bronbestand of map",
47
+ "Destination Drive": "Bestemming Drive",
48
+ "Destination Folder": "Doelmap map",
49
+ "New Name (Optional)": "Nieuwe naam (optioneel)",
50
+ "Conflict Behavior": "Conflict gedrag",
51
+ "File to Move": "Bestand om te verplaatsen",
52
+ "Find Method": "Vind methode",
53
+ "File Path": "Bestandspad",
54
+ "Search Query": "Zoek query",
55
+ "Folder to Search In (Optional)": "Map om in te zoeken (optioneel)",
56
+ "Folder": "Map",
57
+ "Include Custom Metadata": "Inclusief aangepaste metadata",
58
+ "Page Size": "Paginagrootte",
59
+ "Select Fields (Optional)": "Velden selecteren (optioneel)",
60
+ "Order By (Optional)": "Sorteer op (optioneel)",
61
+ "Method": "Methode",
62
+ "Headers": "Kopteksten",
63
+ "Query Parameters": "Query parameters",
64
+ "Body Type": "Type lichaam",
65
+ "Body": "Lichaam",
66
+ "Response is Binary ?": "Antwoord is binair?",
67
+ "No Error on Failure": "Geen fout bij fout",
68
+ "Timeout (in seconds)": "Time-out (in seconden)",
69
+ "Follow redirects": "Volg omleidingen",
70
+ "Parent folder,like \"/demo/\" or \"/docs/assignment/\".Leave it default if you want to create folder at the root (**/**) level.": "Bovenliggende map, zoals \"/demo/\" of \"/docs/assignment/\".leave it default if you want to create folder at root (**/**) level.",
71
+ "Item title to search": "Item titel om te zoeken",
72
+ "The file or url you want to upload": "Het bestand of de URL die u wilt uploaden",
73
+ "Parent folder, like \"/demo/\" or \"/docs/assignment/\".Leave it default if you want to create folder at the root (**CHANGE THIS BACK//**) level.": "Bovenliggende map, zoals \"/demo/\" of \"/docs/assignment/\".leave it default if you want to create folder at root (**CHANGE THIS BACK///**) level.",
74
+ "The folder to copy the item into. Defaults to the root of the drive.": "De map waarin het item moet worden gekopieerd. Standaard naar de hoofdmap van het schijf.",
75
+ "A new name for the copied item. If not provided, the original name is used.": "Een nieuwe naam voor het gekopieerde item. Indien niet opgegeven, wordt de oorspronkelijke naam gebruikt.",
76
+ "Action to take if a file with the same name already exists.": "Er is actie nodig als een bestand met dezelfde naam al bestaat.",
77
+ "The folder to copy the item into. Select \"Root\" to copy to the top level of the drive.": "De map waarin het item moet worden gekopieerd. Selecteer \"Root\" om naar het bovenste niveau van het station te kopiëren.",
78
+ "Action to take if a file with the same name already exists in the destination.": "Er moet actie worden ondernomen als een bestand met dezelfde naam al bestaat in de bestemming.",
79
+ "The file you want to move.": "Het bestand dat u wilt verplaatsen.",
80
+ "The folder to move the file into. Select \"Root\" to move to the top level of the drive.": "De map waar het bestand naartoe moet worden verplaatst. Selecteer \"Root\" om naar het bovenste niveau van het station te gaan.",
81
+ "Provide a new name to rename the file during the move.": "Geef een nieuwe naam op om het bestand tijdens het verplaatsen te hernoemen.",
82
+ "Choose how to find the file.": "Kies hoe het bestand te vinden.",
83
+ "The exact path to the file from the drive's root. **Required if finding by path.** Example: `Documents/Reports/Q1-Report.docx`": "Het exacte pad naar het bestand van de root van de schijf. **Vereist als het pad gevonden wordt.** Voorbeeld: `Documents/Reports/Q1-Report.docx`",
84
+ "The file name or keyword to search for. **Required if searching by name.** Example: `Q1-Report.docx`": "De bestandsnaam of trefwoord om naar te zoeken. **Vereist bij zoeken op naam.** Voorbeeld: `Q1-Report.docx`",
85
+ "The folder to search within. If not specified, the entire drive will be searched. **Only applies when searching by name.**": "De map waar gezocht moet worden. Indien niet opgegeven, wordt de volledige schijf doorzocht. **Alleen van toepassing bij het zoeken op naam.**",
86
+ "The folder whose contents you want to list. Select \"Root Folder\" for the top-level folder.": "De map waarvan de inhoud moet worden weergegeven. Selecteer \"Root Map\" voor de hoofdmap.",
87
+ "Check this to include SharePoint-specific metadata (custom columns). This may slow down the request.": "Vink dit aan om de metadata van SharePoint-specifieke (aangepaste kolommen) op te nemen. Dit kan het verzoek vertragen.",
88
+ "The maximum number of items to return. The API default is 200. If more items exist, the output will contain a field `@odata.nextLink` that you can use in a custom API call to get the next page.": "Het maximum aantal weer te geven items. De API standaard is 200. Als meer items bestaan, zal de output een veld `@odata bevatten. extLink` die je in een aangepaste API call kunt gebruiken om de volgende pagina te krijgen.",
89
+ "A comma-separated list of properties to return. Example: `id,name,size,webUrl`": "Een komma gescheiden lijst van eigenschappen om terug te sturen. Voorbeeld: 'id,naam,size,webUrl'",
90
+ "Specifies how to sort the returned items. Example: `name asc` or `lastModifiedDateTime desc`": "Hiermee geeft u aan hoe de geretourneerde items gesorteerd moeten worden. Voorbeeld: `naam opgaande ` of `lastModifiedDateTime desc`",
91
+ "A comma-separated list of properties to return. If left blank, all default properties are returned. Example: `id,displayName,webUrl,description`": "Een komma gescheiden lijst van eigenschappen om weer te geven. Indien leeg worden alle standaard eigenschappen geretourneerd. Voorbeeld: `id,displayName,webUrl,description`",
92
+ "Authorization headers are injected automatically from your connection.": "Autorisatie headers worden automatisch geïnjecteerd vanuit uw verbinding.",
93
+ "Enable for files like PDFs, images, etc.": "Inschakelen voor bestanden zoals PDF's, afbeeldingen etc.",
94
+ "Fail on conflict": "Mislukt bij conflict",
95
+ "Overwrite existing file": "Bestaande bestand overschrijven",
96
+ "Rename with a number": "Hernoem met een getal",
97
+ "Find by Exact Path": "Zoeken op Exact Pad",
98
+ "Search by Name": "Zoeken op naam",
99
+ "GET": "KRIJG",
100
+ "POST": "POSTE",
101
+ "PATCH": "BEKIJK",
102
+ "PUT": "PUT",
103
+ "DELETE": "VERWIJDEREN",
104
+ "HEAD": "HOOFD",
105
+ "None": "geen",
106
+ "JSON": "JSON",
107
+ "Form Data": "Formulieren gegevens",
108
+ "Raw": "Onbewerkte",
109
+ "New File in Folder": "Nieuw bestand in map",
110
+ "New File in Subfolders": "Nieuw bestand in submappen",
111
+ "New or Updated File": "Nieuw of bijgewerkt bestand",
112
+ "New or Updated Folder": "Nieuwe of bijgewerkte map",
113
+ "New List Item": "Nieuw lijstitem",
114
+ "Updated List Item": "Bijgewerkt Lijstitem",
115
+ "New List": "Nieuwe lijst",
116
+ "New or Updated List": "Nieuwe of bijgewerkte lijst",
117
+ "Fires when a new file is created or added in a specific folder.": "Vuurt wanneer een nieuw bestand wordt aangemaakt of toegevoegd in een specifieke map.",
118
+ "Fires when a new file is added anywhere in the first-level subfolders of a folder. Note: This trigger will not monitor subfolders created after the flow is activated.": "Schiet wanneer een nieuw bestand ergens in de submappen op het eerste niveau van een map wordt toegevoegd. Opmerking: Deze trigger zal geen submappen monitoren die gemaakt zijn nadat de flow is geactiveerd.",
119
+ "Triggers when a file is created or updated in a given folder.": "Triggert wanneer een bestand wordt aangemaakt of bijgewerkt in een bepaalde map.",
120
+ "Triggers when a folder is created or updated (e.g., name change).": "Triggert wanneer een map wordt aangemaakt of bijgewerkt (bijv. naam veranderen).",
121
+ "Triggers when a new item is created in a SharePoint list.": "Triggert wanneer een nieuw item wordt aangemaakt in een SharePoint lijst.",
122
+ "Fires when an existing item in a SharePoint list is updated.": "Vuurt wanneer een bestaand item in een SharePoint lijst wordt bijgewerkt.",
123
+ "Triggers when a new list is created in a site.": "Triggert wanneer een nieuwe lijst wordt aangemaakt op een site.",
124
+ "Triggers when a list is created or updated in a site.": "Triggert wanneer een lijst wordt aangemaakt of bijgewerkt in een site.",
125
+ "Folder to Monitor": "Map om te monitoren",
126
+ "Parent Folder to Monitor": "Bovenliggende map om te monitoren",
127
+ "The folder to watch for new files. Select \"Root Folder\" for the top-level folder of the drive.": "De map om nieuwe bestanden te bekijken. Selecteer \"Root Map\" voor de bovenste map van de schijf.",
128
+ "The parent folder whose subfolders you want to monitor.": "De bovenliggende map waarvan u de submappen wilt monitoren.",
129
+ "The folder to watch for new or updated files. Select \"Root Folder\" for the top-level folder of the drive.": "De map om nieuwe of bijgewerkte bestanden te bekijken. Selecteer \"Root Map\" voor de hoofdmap van de schijf",
130
+ "The folder to watch for new or updated subfolders. Select \"Root Folder\" to monitor the top-level of the drive.": "De map om nieuwe of bijgewerkte submappen te bekijken. Selecteer \"Root Map\" om het bovenste niveau van de schijf te controleren."
131
+ }
@@ -0,0 +1,131 @@
1
+ {
2
+ "\n1. Sign in to [Microsoft Azure Portal](https://portal.azure.com/).\n2. From the left sidebar, go to **Microsoft Enfra ID**.\n3. Under **Manage**, click on **App registrations**.\n4. Click the **New registration** button.\n5. Enter a **Name** for your app.\n6. For **Supported account types**, choose:\n - **Accounts in any organizational directory (Any Microsoft Entra ID tenant - Multitenant) and personal Microsoft accounts**\n - Or select based on your requirement.\n7. In **Redirect URI**, select **Web** and ad": "\n1. Entre no [Microsoft Azure Portal](https://portal.azure.com/).\n. Na barra lateral esquerda, vá até **Microsoft Enfra ID**.\n3. Sob **Gerenciar**, clique em **Aplicativos registrados**.\n4. Clique no botão **Novo registro**.\n5. Digite um **nome** para o seu aplicativo.\n6. Para **Tipos de conta suportados**, escolha:\n - **Contas em qualquer diretório organizacional (qualquer inquilino de ID da Microsoft Entra - Multitenant) e contas pessoais da Microsoft**\n - Ou selecione com base nos seus requisitos.\n7. Em **URI de redirecionamento**, selecione **Web** e adicione a URL indicada: {{redirectUrl}}\n8. Clique em **Registrar**.\n9. Após o registro, você será redirecionado para a página de visão geral do aplicativo. Copie o **ID do aplicativo (cliente) **.\n10. No menu da esquerda, vá para **Certificados e segredos**.\n - Em **Segredos do Cliente**, clique em **Novo segredo do Cliente**.\n - Fornece uma descrição, define um vencimento e clique em **Adicionar**.\n - Copiar o **Valor** do segredo do cliente (isso não aparecerá novamente).\n11. Vá para **permissões de API** no menu à esquerda.\n - Clique em **adicionar permissão**.\n - Selecione **Microsoft Graph**.\n - Adicionar as seguintes **permissões delegadas**:\n - Sites.Read. ll \n - Sites.ReadWrite.All\n - Sites. anage.All\n - Files.ReadWrite. ll\n - openid\n - email\n - perfil\n - offline_access\n - Clique em **Adicionar permissões**.\n12. Copie seu **ID do cliente** e **Segredo do Cliente**.\n",
3
+ "Create Folder": "Criar pasta",
4
+ "Create List": "Criar lista",
5
+ "Create List Item": "Criar Item de Lista",
6
+ "Update List Item": "Atualizar Item de Lista",
7
+ "Delete List Item": "Excluir Item de Lista",
8
+ "Find List Item": "Encontrar Item de Lista",
9
+ "Upload File": "Enviar Arquivo",
10
+ "Publish Page": "Publicar Página",
11
+ "Copy File or Folder (Across Sites)": "Copiar Arquivo ou Pasta (Todos os Sites)",
12
+ "Copy File or Folder (Within Site)": "Copiar Arquivo ou Pasta (Dentro do Site)",
13
+ "Move File": "Mover Arquivo",
14
+ "Find File": "Localizar arquivo",
15
+ "Get Folder Contents": "Obter conteúdo da pasta",
16
+ "Get Site Information": "Obter informações do site",
17
+ "Custom API Call": "Chamada de API personalizada",
18
+ "Creates a new folder at path you specify.": "Cria uma nova pasta no caminho que você especificar.",
19
+ "Creates a new list.": "Cria uma nova lista.",
20
+ "Creates a new item in a list.": "Cria um novo item em uma lista.",
21
+ "Updates an existing item in a list.": "Atualiza um item existente em uma lista.",
22
+ "Deletes an existing item from a list.": "Exclui um item existente de uma lista.",
23
+ "Finds a item in a list based on name.": "Encontra um item em uma lista baseada no nome.",
24
+ "Uploads a new file at path you specify.": "Carrega um novo arquivo no caminho especificado.",
25
+ "Publishes a SharePoint page, making it available to all users. If the page is checked out, it will be automatically checked in. Note: Pages with active approval flows will not publish until approval is complete.": "Publica uma página do SharePoint, disponibilizando-a para todos os usuários. Se a página for checkout, será check-in automaticamente. Nota: Páginas com fluxos de aprovação ativos não irão publicar até que a aprovação seja concluída.",
26
+ "Copy a file or folder from one site to another within the same tenant, with overwrite option.": "Copie um arquivo ou pasta de um site para outro dentro do mesmo inquilino, com opção de sobrescrever.",
27
+ "Copy a file or folder to another folder within the same site.": "Copie um arquivo ou pasta para outra pasta dentro de um mesmo site.",
28
+ "Move a file from one folder to another within the same drive.": "Mover um arquivo de uma pasta para outra dentro da mesma unidade.",
29
+ "Look up a file by its name or path.": "Procurar um arquivo pelo seu nome ou caminho.",
30
+ "List all files and subfolders in a specified folder, optionally with detailed metadata.": "Lista todos os arquivos e subpastas em uma pasta específica, opcionalmente com metadados detalhados.",
31
+ "Fetch metadata of a SharePoint site (site ID, title, URL, description, etc.).": "Obtém metadados de um site de SharePoint (ID do site, título, URL, descrição, etc.).",
32
+ "Make a custom API call to a specific endpoint": "Faça uma chamada de API personalizada para um ponto de extremidade específico",
33
+ "Site": "site",
34
+ "Drive": "Dirigindo",
35
+ "Parent Folder": "Pasta pai",
36
+ "Folder Name": "Nome da Pasta",
37
+ "List Name": "Lista de nomes",
38
+ "List Description": "Descrição da lista",
39
+ "List": "Lista",
40
+ "List Columns": "Listar colunas",
41
+ "List Item": "Item de Lista",
42
+ "Title": "Título",
43
+ "File": "Arquivo",
44
+ "File Name": "Nome do arquivo",
45
+ "Page": "Página",
46
+ "Source File or Folder": "Arquivo de origem ou pasta",
47
+ "Destination Drive": "Unidade de Destino",
48
+ "Destination Folder": "Pasta de destino",
49
+ "New Name (Optional)": "Novo Nome (opcional)",
50
+ "Conflict Behavior": "Comportamento de conflito",
51
+ "File to Move": "Arquivo para Mover",
52
+ "Find Method": "Encontrar Método",
53
+ "File Path": "Caminho do Arquivo",
54
+ "Search Query": "Consulta de Pesquisa",
55
+ "Folder to Search In (Optional)": "Pasta para pesquisar (Opcional)",
56
+ "Folder": "Pasta",
57
+ "Include Custom Metadata": "Incluir Metadados Personalizados",
58
+ "Page Size": "Tamanho da página",
59
+ "Select Fields (Optional)": "Selecione Campos (Opcional)",
60
+ "Order By (Optional)": "Ordenar Por (Opcional)",
61
+ "Method": "Método",
62
+ "Headers": "Cabeçalhos",
63
+ "Query Parameters": "Parâmetros da consulta",
64
+ "Body Type": "Tipo de Corpo",
65
+ "Body": "Conteúdo",
66
+ "Response is Binary ?": "A resposta é binária ?",
67
+ "No Error on Failure": "Nenhum erro no Failure",
68
+ "Timeout (in seconds)": "Tempo limite (em segundos)",
69
+ "Follow redirects": "Seguir redirecionamentos",
70
+ "Parent folder,like \"/demo/\" or \"/docs/assignment/\".Leave it default if you want to create folder at the root (**/**) level.": "Pasta principal, como \"/demo/\" ou \"/docs/assignment/\".Deixe como padrão se você quiser criar a pasta na raiz (**/**) nível.",
71
+ "Item title to search": "Título do item para pesquisar",
72
+ "The file or url you want to upload": "O arquivo ou URL que você deseja enviar",
73
+ "Parent folder, like \"/demo/\" or \"/docs/assignment/\".Leave it default if you want to create folder at the root (**CHANGE THIS BACK//**) level.": "Pasta principal, como \"/demo/\" ou \"/docs/assignment/\".Deixe como padrão se você quiser criar a pasta na raiz (**CHANGE ESTE BACK//**) nível.",
74
+ "The folder to copy the item into. Defaults to the root of the drive.": "A pasta para copiar o item. O padrão é a raiz da unidade.",
75
+ "A new name for the copied item. If not provided, the original name is used.": "Um novo nome para o item copiado. Se não for fornecido, o nome original será usado.",
76
+ "Action to take if a file with the same name already exists.": "Ação a ser tomada se um arquivo com o mesmo nome já existe.",
77
+ "The folder to copy the item into. Select \"Root\" to copy to the top level of the drive.": "A pasta na qual o item será copiado. Selecione \"Root\" para copiar para o nível superior da unidade.",
78
+ "Action to take if a file with the same name already exists in the destination.": "Ação a ser tomada se um arquivo com o mesmo nome já existe no destino.",
79
+ "The file you want to move.": "O arquivo que você quer mover.",
80
+ "The folder to move the file into. Select \"Root\" to move to the top level of the drive.": "A pasta para mover o arquivo. Selecione \"Root\" para mover para o nível superior da unidade.",
81
+ "Provide a new name to rename the file during the move.": "Forneça um novo nome para renomear o arquivo durante a movimentação.",
82
+ "Choose how to find the file.": "Escolha como localizar o arquivo.",
83
+ "The exact path to the file from the drive's root. **Required if finding by path.** Example: `Documents/Reports/Q1-Report.docx`": "O caminho exato para o arquivo da raiz da unidade. **Obrigatório se encontrar por caminho.** Exemplo: `Documents/Reports/Q1-Report.docx`",
84
+ "The file name or keyword to search for. **Required if searching by name.** Example: `Q1-Report.docx`": "O nome do arquivo ou palavra-chave para procurar. **Obrigatório se procurar por nome.** Exemplo: `Q1-Report.docx`",
85
+ "The folder to search within. If not specified, the entire drive will be searched. **Only applies when searching by name.**": "A pasta para pesquisar dentro. Se não for especificado, a unidade inteira será pesquisada. **Só se aplica quando a busca é feita por nome.**",
86
+ "The folder whose contents you want to list. Select \"Root Folder\" for the top-level folder.": "A pasta cujo conteúdo você deseja listar. Selecione \"Pasta raiz\" para a pasta de nível superior.",
87
+ "Check this to include SharePoint-specific metadata (custom columns). This may slow down the request.": "Marque esta opção para incluir metadados específicos do SharePoin (colunas personalizadas). Isto pode atrasar a solicitação.",
88
+ "The maximum number of items to return. The API default is 200. If more items exist, the output will contain a field `@odata.nextLink` that you can use in a custom API call to get the next page.": "O número máximo de itens para retornar. O padrão da API é 200. Se existirem mais itens, a saída conterá um campo `@odata. extLink` que você pode usar em uma chamada de API personalizada para obter a próxima página.",
89
+ "A comma-separated list of properties to return. Example: `id,name,size,webUrl`": "Uma lista separada por vírgulas de propriedades para retornar. Exemplo: `id,name,size,webUrl`",
90
+ "Specifies how to sort the returned items. Example: `name asc` or `lastModifiedDateTime desc`": "Especifica como classificar os itens retornados. Exemplo: `name asc` ou `lastModifiedDateTime desc`",
91
+ "A comma-separated list of properties to return. If left blank, all default properties are returned. Example: `id,displayName,webUrl,description`": "Uma lista separada por vírgulas de propriedades para retornar. Se deixar em branco, todas as propriedades padrão serão retornadas. Exemplo: `id,displayName,webUrl,description`",
92
+ "Authorization headers are injected automatically from your connection.": "Os cabeçalhos de autorização são inseridos automaticamente a partir da sua conexão.",
93
+ "Enable for files like PDFs, images, etc.": "Habilitar para arquivos como PDFs, imagens, etc.",
94
+ "Fail on conflict": "Falha no conflito",
95
+ "Overwrite existing file": "Sobrescrever o arquivo existente",
96
+ "Rename with a number": "Renomear com um número",
97
+ "Find by Exact Path": "Localizar pelo caminho exato",
98
+ "Search by Name": "Pesquisar por nome",
99
+ "GET": "OBTER",
100
+ "POST": "POSTAR",
101
+ "PATCH": "COMPRAR",
102
+ "PUT": "COLOCAR",
103
+ "DELETE": "EXCLUIR",
104
+ "HEAD": "CABEÇA",
105
+ "None": "Nenhuma",
106
+ "JSON": "JSON",
107
+ "Form Data": "Dados de Formulário",
108
+ "Raw": "RAW",
109
+ "New File in Folder": "Novo arquivo na pasta",
110
+ "New File in Subfolders": "Novo Arquivo em Subpastas",
111
+ "New or Updated File": "Arquivo novo ou atualizado",
112
+ "New or Updated Folder": "Pasta nova ou atualizada",
113
+ "New List Item": "Novo Item de Lista",
114
+ "Updated List Item": "Item de Lista Atualizado",
115
+ "New List": "Nova Lista",
116
+ "New or Updated List": "Lista nova ou atualizada",
117
+ "Fires when a new file is created or added in a specific folder.": "Efetua quando um novo arquivo é criado ou adicionado em uma pasta específica.",
118
+ "Fires when a new file is added anywhere in the first-level subfolders of a folder. Note: This trigger will not monitor subfolders created after the flow is activated.": "Emite quando um novo arquivo é adicionado em qualquer lugar nas subpastas de primeiro nível de uma pasta. Nota: Este gatilho não monitora subpastas criadas após o fluxo ser ativado.",
119
+ "Triggers when a file is created or updated in a given folder.": "Aciona quando um arquivo é criado ou atualizado em uma determinada pasta.",
120
+ "Triggers when a folder is created or updated (e.g., name change).": "Aciona quando uma pasta é criada ou atualizada (por exemplo, alteração de nome).",
121
+ "Triggers when a new item is created in a SharePoint list.": "Aciona quando um novo item é criado em uma lista de SharePoint.",
122
+ "Fires when an existing item in a SharePoint list is updated.": "Atira quando um item existente em uma lista de SharePoint é atualizado.",
123
+ "Triggers when a new list is created in a site.": "Dispara quando uma nova lista é criada em um site.",
124
+ "Triggers when a list is created or updated in a site.": "Aciona quando uma lista é criada ou atualizada em um site.",
125
+ "Folder to Monitor": "Pasta para Monitorar",
126
+ "Parent Folder to Monitor": "Pasta pai para Monitor",
127
+ "The folder to watch for new files. Select \"Root Folder\" for the top-level folder of the drive.": "A pasta para assistir a novos arquivos. Selecione \"Pasta raiz\" para a pasta de nível superior da unidade.",
128
+ "The parent folder whose subfolders you want to monitor.": "A pasta pai cujas subpastas você deseja monitorar.",
129
+ "The folder to watch for new or updated files. Select \"Root Folder\" for the top-level folder of the drive.": "A pasta para assistir a novos arquivos ou atualizados. Selecione \"Pasta raiz\" para a pasta de nível superior da unidade.",
130
+ "The folder to watch for new or updated subfolders. Select \"Root Folder\" to monitor the top-level of the drive.": "A pasta para monitorar novas ou atualizadas subpastas. Selecione \"Pasta raiz\" para monitorar o nível superior da unidade."
131
+ }
@@ -0,0 +1,49 @@
1
+ {
2
+ "Microsoft SharePoint": "Microsoft SharePoint",
3
+ "Authentication for Microsoft SharePoint": "Аутентификация для Microsoft SharePoint",
4
+ "Create Folder": "Создать папку",
5
+ "Create List": "Создать список",
6
+ "Create List Item": "Создать элемент списка",
7
+ "Update List Item": "Обновить элемент списка",
8
+ "Delete List Item": "Удалить элемент списка",
9
+ "Find List Item": "Найти элемент списка",
10
+ "Upload File": "Загрузить файл",
11
+ "Custom API Call": "Пользовательский вызов API",
12
+ "Creates a new folder at path you specify.": "Создает новую папку по указанному вами пути.",
13
+ "Creates a new list.": "Создает новый список.",
14
+ "Creates a new item in a list.": "Создает новый элемент в списке.",
15
+ "Updates an existing item in a list.": "Обновляет существующий элемент списка.",
16
+ "Deletes an existing item from a list.": "Удаляет существующий элемент списка.",
17
+ "Finds a item in a list based on name.": "Находит элемент в списке на основе имени.",
18
+ "Uploads a new file at path you specify.": "Загружает новый файл по указанному вами пути.",
19
+ "Make a custom API call to a specific endpoint": "Сделать пользовательский API вызов к определенной конечной точке",
20
+ "Site ID": "Site ID",
21
+ "Drive ID": "ID диска",
22
+ "Parent Folder": "Родительская папка",
23
+ "Folder Name": "Имя папки",
24
+ "List Name": "Название списка",
25
+ "List Description": "Описание списка",
26
+ "List ID": "ID списка",
27
+ "List Columns": "Столбцы списка",
28
+ "List Item ID": "List Item ID",
29
+ "Title": "Заголовок",
30
+ "File": "Файл",
31
+ "File Name": "Имя файла",
32
+ "Method": "Метод",
33
+ "Headers": "Заголовки",
34
+ "Query Parameters": "Параметры запроса",
35
+ "Body": "Тело",
36
+ "No Error on Failure": "Нет ошибок при ошибке",
37
+ "Timeout (in seconds)": "Таймаут (в секундах)",
38
+ "Parent folder,like \"/demo/\" or \"/docs/assignment/\".Leave it default if you want to create folder at the root (**/**) level.": "Родительская папка, например \"/demo/\" или \"/docs/assignment/\".Оставьте ее по умолчанию, если вы хотите создать папку на уровне корня (**/**).",
39
+ "Item title to search": "Заголовок элемента для поиска",
40
+ "The file or url you want to upload": "Файл или url, который вы хотите загрузить",
41
+ "Parent folder, like \"/demo/\" or \"/docs/assignment/\".Leave it default if you want to create folder at the root (**CHANGE THIS BACK//**) level.": "Родительская папка, например \"/demo/\" или \"/docs/assignment/\".Leave it default if you want to create folder at the root (**CHANGE THIS BACK//**).",
42
+ "Authorization headers are injected automatically from your connection.": "Заголовки авторизации включаются автоматически из вашего соединения.",
43
+ "GET": "ПОЛУЧИТЬ",
44
+ "POST": "ПОСТ",
45
+ "PATCH": "ПАТЧ",
46
+ "PUT": "ПОКУПИТЬ",
47
+ "DELETE": "УДАЛИТЬ",
48
+ "HEAD": "HEAD"
49
+ }
@@ -0,0 +1,131 @@
1
+ {
2
+ "\n1. Sign in to [Microsoft Azure Portal](https://portal.azure.com/).\n2. From the left sidebar, go to **Microsoft Enfra ID**.\n3. Under **Manage**, click on **App registrations**.\n4. Click the **New registration** button.\n5. Enter a **Name** for your app.\n6. For **Supported account types**, choose:\n - **Accounts in any organizational directory (Any Microsoft Entra ID tenant - Multitenant) and personal Microsoft accounts**\n - Or select based on your requirement.\n7. In **Redirect URI**, select **Web** and ad": "\n1. Sign in to [Microsoft Azure Portal](https://portal.azure.com/).\n2. From the left sidebar, go to **Microsoft Enfra ID**.\n3. Under **Manage**, click on **App registrations**.\n4. Click the **New registration** button.\n5. Enter a **Name** for your app.\n6. For **Supported account types**, choose:\n - **Accounts in any organizational directory (Any Microsoft Entra ID tenant - Multitenant) and personal Microsoft accounts**\n - Or select based on your requirement.\n7. In **Redirect URI**, select **Web** and add the given URL: {{redirectUrl}}\n8. Click **Register**.\n9. After registration, you’ll be redirected to the app’s overview page. Copy the **Application (client) ID**.\n10. From the left menu, go to **Certificates & secrets**.\n - Under **Client secrets**, click **New client secret**.\n - Provide a description, set an expiry, and click **Add**.\n - Copy the **Value** of the client secret (this will not be shown again).\n11. Go to **API permissions** from the left menu.\n - Click **Add a permission**.\n - Select **Microsoft Graph**.\n - Add the following **Delegated permissions**:\n - Sites.Read.All\n - Sites.ReadWrite.All\n - Sites.Manage.All\n - Files.ReadWrite.All\n - openid\n - email\n - profile\n - offline_access\n - Click **Add permissions**.\n12. Copy your **Client ID** and **Client Secret**.\n",
3
+ "Create Folder": "Create Folder",
4
+ "Create List": "Create List",
5
+ "Create List Item": "Create List Item",
6
+ "Update List Item": "Update List Item",
7
+ "Delete List Item": "Delete List Item",
8
+ "Find List Item": "Find List Item",
9
+ "Upload File": "Upload File",
10
+ "Publish Page": "Publish Page",
11
+ "Copy File or Folder (Across Sites)": "Copy File or Folder (Across Sites)",
12
+ "Copy File or Folder (Within Site)": "Copy File or Folder (Within Site)",
13
+ "Move File": "Move File",
14
+ "Find File": "Find File",
15
+ "Get Folder Contents": "Get Folder Contents",
16
+ "Get Site Information": "Get Site Information",
17
+ "Custom API Call": "Custom API Call",
18
+ "Creates a new folder at path you specify.": "Creates a new folder at path you specify.",
19
+ "Creates a new list.": "Creates a new list.",
20
+ "Creates a new item in a list.": "Creates a new item in a list.",
21
+ "Updates an existing item in a list.": "Updates an existing item in a list.",
22
+ "Deletes an existing item from a list.": "Deletes an existing item from a list.",
23
+ "Finds a item in a list based on name.": "Finds a item in a list based on name.",
24
+ "Uploads a new file at path you specify.": "Uploads a new file at path you specify.",
25
+ "Publishes a SharePoint page, making it available to all users. If the page is checked out, it will be automatically checked in. Note: Pages with active approval flows will not publish until approval is complete.": "Publishes a SharePoint page, making it available to all users. If the page is checked out, it will be automatically checked in. Note: Pages with active approval flows will not publish until approval is complete.",
26
+ "Copy a file or folder from one site to another within the same tenant, with overwrite option.": "Copy a file or folder from one site to another within the same tenant, with overwrite option.",
27
+ "Copy a file or folder to another folder within the same site.": "Copy a file or folder to another folder within the same site.",
28
+ "Move a file from one folder to another within the same drive.": "Move a file from one folder to another within the same drive.",
29
+ "Look up a file by its name or path.": "Look up a file by its name or path.",
30
+ "List all files and subfolders in a specified folder, optionally with detailed metadata.": "List all files and subfolders in a specified folder, optionally with detailed metadata.",
31
+ "Fetch metadata of a SharePoint site (site ID, title, URL, description, etc.).": "Fetch metadata of a SharePoint site (site ID, title, URL, description, etc.).",
32
+ "Make a custom API call to a specific endpoint": "Make a custom API call to a specific endpoint",
33
+ "Site": "Site",
34
+ "Drive": "Drive",
35
+ "Parent Folder": "Parent Folder",
36
+ "Folder Name": "Folder Name",
37
+ "List Name": "List Name",
38
+ "List Description": "List Description",
39
+ "List": "List",
40
+ "List Columns": "List Columns",
41
+ "List Item": "List Item",
42
+ "Title": "Title",
43
+ "File": "File",
44
+ "File Name": "File Name",
45
+ "Page": "Page",
46
+ "Source File or Folder": "Source File or Folder",
47
+ "Destination Drive": "Destination Drive",
48
+ "Destination Folder": "Destination Folder",
49
+ "New Name (Optional)": "New Name (Optional)",
50
+ "Conflict Behavior": "Conflict Behavior",
51
+ "File to Move": "File to Move",
52
+ "Find Method": "Find Method",
53
+ "File Path": "File Path",
54
+ "Search Query": "Search Query",
55
+ "Folder to Search In (Optional)": "Folder to Search In (Optional)",
56
+ "Folder": "Folder",
57
+ "Include Custom Metadata": "Include Custom Metadata",
58
+ "Page Size": "Page Size",
59
+ "Select Fields (Optional)": "Select Fields (Optional)",
60
+ "Order By (Optional)": "Order By (Optional)",
61
+ "Method": "Method",
62
+ "Headers": "Headers",
63
+ "Query Parameters": "Query Parameters",
64
+ "Body Type": "Body Type",
65
+ "Body": "Body",
66
+ "Response is Binary ?": "Response is Binary ?",
67
+ "No Error on Failure": "No Error on Failure",
68
+ "Timeout (in seconds)": "Timeout (in seconds)",
69
+ "Follow redirects": "Follow redirects",
70
+ "Parent folder,like \"/demo/\" or \"/docs/assignment/\".Leave it default if you want to create folder at the root (**/**) level.": "Parent folder,like \"/demo/\" or \"/docs/assignment/\".Leave it default if you want to create folder at the root (**/**) level.",
71
+ "Item title to search": "Item title to search",
72
+ "The file or url you want to upload": "The file or url you want to upload",
73
+ "Parent folder, like \"/demo/\" or \"/docs/assignment/\".Leave it default if you want to create folder at the root (**CHANGE THIS BACK//**) level.": "Parent folder, like \"/demo/\" or \"/docs/assignment/\".Leave it default if you want to create folder at the root (**CHANGE THIS BACK//**) level.",
74
+ "The folder to copy the item into. Defaults to the root of the drive.": "The folder to copy the item into. Defaults to the root of the drive.",
75
+ "A new name for the copied item. If not provided, the original name is used.": "A new name for the copied item. If not provided, the original name is used.",
76
+ "Action to take if a file with the same name already exists.": "Action to take if a file with the same name already exists.",
77
+ "The folder to copy the item into. Select \"Root\" to copy to the top level of the drive.": "The folder to copy the item into. Select \"Root\" to copy to the top level of the drive.",
78
+ "Action to take if a file with the same name already exists in the destination.": "Action to take if a file with the same name already exists in the destination.",
79
+ "The file you want to move.": "The file you want to move.",
80
+ "The folder to move the file into. Select \"Root\" to move to the top level of the drive.": "The folder to move the file into. Select \"Root\" to move to the top level of the drive.",
81
+ "Provide a new name to rename the file during the move.": "Provide a new name to rename the file during the move.",
82
+ "Choose how to find the file.": "Choose how to find the file.",
83
+ "The exact path to the file from the drive's root. **Required if finding by path.** Example: `Documents/Reports/Q1-Report.docx`": "The exact path to the file from the drive's root. **Required if finding by path.** Example: `Documents/Reports/Q1-Report.docx`",
84
+ "The file name or keyword to search for. **Required if searching by name.** Example: `Q1-Report.docx`": "The file name or keyword to search for. **Required if searching by name.** Example: `Q1-Report.docx`",
85
+ "The folder to search within. If not specified, the entire drive will be searched. **Only applies when searching by name.**": "The folder to search within. If not specified, the entire drive will be searched. **Only applies when searching by name.**",
86
+ "The folder whose contents you want to list. Select \"Root Folder\" for the top-level folder.": "The folder whose contents you want to list. Select \"Root Folder\" for the top-level folder.",
87
+ "Check this to include SharePoint-specific metadata (custom columns). This may slow down the request.": "Check this to include SharePoint-specific metadata (custom columns). This may slow down the request.",
88
+ "The maximum number of items to return. The API default is 200. If more items exist, the output will contain a field `@odata.nextLink` that you can use in a custom API call to get the next page.": "The maximum number of items to return. The API default is 200. If more items exist, the output will contain a field `@odata.nextLink` that you can use in a custom API call to get the next page.",
89
+ "A comma-separated list of properties to return. Example: `id,name,size,webUrl`": "A comma-separated list of properties to return. Example: `id,name,size,webUrl`",
90
+ "Specifies how to sort the returned items. Example: `name asc` or `lastModifiedDateTime desc`": "Specifies how to sort the returned items. Example: `name asc` or `lastModifiedDateTime desc`",
91
+ "A comma-separated list of properties to return. If left blank, all default properties are returned. Example: `id,displayName,webUrl,description`": "A comma-separated list of properties to return. If left blank, all default properties are returned. Example: `id,displayName,webUrl,description`",
92
+ "Authorization headers are injected automatically from your connection.": "Authorization headers are injected automatically from your connection.",
93
+ "Enable for files like PDFs, images, etc.": "Enable for files like PDFs, images, etc.",
94
+ "Fail on conflict": "Fail on conflict",
95
+ "Overwrite existing file": "Overwrite existing file",
96
+ "Rename with a number": "Rename with a number",
97
+ "Find by Exact Path": "Find by Exact Path",
98
+ "Search by Name": "Search by Name",
99
+ "GET": "GET",
100
+ "POST": "POST",
101
+ "PATCH": "PATCH",
102
+ "PUT": "PUT",
103
+ "DELETE": "DELETE",
104
+ "HEAD": "HEAD",
105
+ "None": "None",
106
+ "JSON": "JSON",
107
+ "Form Data": "Form Data",
108
+ "Raw": "Raw",
109
+ "New File in Folder": "New File in Folder",
110
+ "New File in Subfolders": "New File in Subfolders",
111
+ "New or Updated File": "New or Updated File",
112
+ "New or Updated Folder": "New or Updated Folder",
113
+ "New List Item": "New List Item",
114
+ "Updated List Item": "Updated List Item",
115
+ "New List": "New List",
116
+ "New or Updated List": "New or Updated List",
117
+ "Fires when a new file is created or added in a specific folder.": "Fires when a new file is created or added in a specific folder.",
118
+ "Fires when a new file is added anywhere in the first-level subfolders of a folder. Note: This trigger will not monitor subfolders created after the flow is activated.": "Fires when a new file is added anywhere in the first-level subfolders of a folder. Note: This trigger will not monitor subfolders created after the flow is activated.",
119
+ "Triggers when a file is created or updated in a given folder.": "Triggers when a file is created or updated in a given folder.",
120
+ "Triggers when a folder is created or updated (e.g., name change).": "Triggers when a folder is created or updated (e.g., name change).",
121
+ "Triggers when a new item is created in a SharePoint list.": "Triggers when a new item is created in a SharePoint list.",
122
+ "Fires when an existing item in a SharePoint list is updated.": "Fires when an existing item in a SharePoint list is updated.",
123
+ "Triggers when a new list is created in a site.": "Triggers when a new list is created in a site.",
124
+ "Triggers when a list is created or updated in a site.": "Triggers when a list is created or updated in a site.",
125
+ "Folder to Monitor": "Folder to Monitor",
126
+ "Parent Folder to Monitor": "Parent Folder to Monitor",
127
+ "The folder to watch for new files. Select \"Root Folder\" for the top-level folder of the drive.": "The folder to watch for new files. Select \"Root Folder\" for the top-level folder of the drive.",
128
+ "The parent folder whose subfolders you want to monitor.": "The parent folder whose subfolders you want to monitor.",
129
+ "The folder to watch for new or updated files. Select \"Root Folder\" for the top-level folder of the drive.": "The folder to watch for new or updated files. Select \"Root Folder\" for the top-level folder of the drive.",
130
+ "The folder to watch for new or updated subfolders. Select \"Root Folder\" to monitor the top-level of the drive.": "The folder to watch for new or updated subfolders. Select \"Root Folder\" to monitor the top-level of the drive."
131
+ }
@@ -0,0 +1,49 @@
1
+ {
2
+ "Microsoft SharePoint": "Microsoft SharePoint",
3
+ "Authentication for Microsoft SharePoint": "Authentication for Microsoft SharePoint",
4
+ "Create Folder": "Create Folder",
5
+ "Create List": "Create List",
6
+ "Create List Item": "Create List Item",
7
+ "Update List Item": "Update List Item",
8
+ "Delete List Item": "Delete List Item",
9
+ "Find List Item": "Find List Item",
10
+ "Upload File": "Upload File",
11
+ "Custom API Call": "Custom API Call",
12
+ "Creates a new folder at path you specify.": "Creates a new folder at path you specify.",
13
+ "Creates a new list.": "Creates a new list.",
14
+ "Creates a new item in a list.": "Creates a new item in a list.",
15
+ "Updates an existing item in a list.": "Updates an existing item in a list.",
16
+ "Deletes an existing item from a list.": "Deletes an existing item from a list.",
17
+ "Finds a item in a list based on name.": "Finds a item in a list based on name.",
18
+ "Uploads a new file at path you specify.": "Uploads a new file at path you specify.",
19
+ "Make a custom API call to a specific endpoint": "Make a custom API call to a specific endpoint",
20
+ "Site ID": "Site ID",
21
+ "Drive ID": "Drive ID",
22
+ "Parent Folder": "Parent Folder",
23
+ "Folder Name": "Folder Name",
24
+ "List Name": "List Name",
25
+ "List Description": "List Description",
26
+ "List ID": "List ID",
27
+ "List Columns": "List Columns",
28
+ "List Item ID": "List Item ID",
29
+ "Title": "Title",
30
+ "File": "File",
31
+ "File Name": "File Name",
32
+ "Method": "Method",
33
+ "Headers": "Headers",
34
+ "Query Parameters": "Query Parameters",
35
+ "Body": "Body",
36
+ "No Error on Failure": "No Error on Failure",
37
+ "Timeout (in seconds)": "Timeout (in seconds)",
38
+ "Parent folder,like \"/demo/\" or \"/docs/assignment/\".Leave it default if you want to create folder at the root (**/**) level.": "Parent folder,like \"/demo/\" or \"/docs/assignment/\".Leave it default if you want to create folder at the root (**/**) level.",
39
+ "Item title to search": "Item title to search",
40
+ "The file or url you want to upload": "The file or url you want to upload",
41
+ "Parent folder, like \"/demo/\" or \"/docs/assignment/\".Leave it default if you want to create folder at the root (**CHANGE THIS BACK//**) level.": "Parent folder, like \"/demo/\" or \"/docs/assignment/\".Leave it default if you want to create folder at the root (**CHANGE THIS BACK//**) level.",
42
+ "Authorization headers are injected automatically from your connection.": "Authorization headers are injected automatically from your connection.",
43
+ "GET": "GET",
44
+ "POST": "POST",
45
+ "PATCH": "PATCH",
46
+ "PUT": "PUT",
47
+ "DELETE": "DELETE",
48
+ "HEAD": "HEAD"
49
+ }