You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: components/sharepoint/actions/create-item/create-item.mjs
+1-1Lines changed: 1 addition & 1 deletion
Original file line number
Diff line number
Diff line change
@@ -4,7 +4,7 @@ export default {
4
4
key: "sharepoint-create-item",
5
5
name: "Create Item",
6
6
description: "Create a new item in Microsoft Sharepoint. [See the documentation](https://learn.microsoft.com/en-us/graph/api/listitem-create?view=graph-rest-1.0&tabs=http)",
Copy file name to clipboardExpand all lines: components/sharepoint/actions/create-list/create-list.mjs
+1-1Lines changed: 1 addition & 1 deletion
Original file line number
Diff line number
Diff line change
@@ -4,7 +4,7 @@ export default {
4
4
key: "sharepoint-create-list",
5
5
name: "Create List",
6
6
description: "Create a new list in Microsoft Sharepoint. [See the documentation](https://learn.microsoft.com/en-us/graph/api/list-create?view=graph-rest-1.0&tabs=http)",
description: "Download a Microsoft Sharepoint file to the /tmp directory. [See the documentation](https://learn.microsoft.com/en-us/graph/api/driveitem-get-content?view=graph-rest-1.0&tabs=http)",
8
+
version: "0.0.1",
9
+
type: "action",
10
+
props: {
11
+
sharepoint,
12
+
siteId: {
13
+
propDefinition: [
14
+
sharepoint,
15
+
"siteId",
16
+
],
17
+
},
18
+
driveId: {
19
+
propDefinition: [
20
+
sharepoint,
21
+
"driveId",
22
+
(c)=>({
23
+
siteId: c.siteId,
24
+
}),
25
+
],
26
+
},
27
+
fileId: {
28
+
propDefinition: [
29
+
sharepoint,
30
+
"fileId",
31
+
(c)=>({
32
+
siteId: c.siteId,
33
+
driveId: c.driveId,
34
+
}),
35
+
],
36
+
},
37
+
filename: {
38
+
type: "string",
39
+
label: "Filename",
40
+
description: "The filename to save the downloaded file as in the `/tmp` directory",
Copy file name to clipboardExpand all lines: components/sharepoint/actions/update-item/update-item.mjs
+1-1Lines changed: 1 addition & 1 deletion
Original file line number
Diff line number
Diff line change
@@ -5,7 +5,7 @@ export default {
5
5
key: "sharepoint-update-item",
6
6
name: "Update Item",
7
7
description: "Updates an existing item in Microsoft Sharepoint. [See the documentation](https://learn.microsoft.com/en-us/graph/api/listitem-update?view=graph-rest-1.0&tabs=http)",
0 commit comments