Skip to content

Commit 768d13e

Browse files
Merging pull request PipedreamHQ#18361
* update siteId prop * pnpm-lock.yaml * package.json version
1 parent b52e6af commit 768d13e

File tree

9 files changed

+18
-13
lines changed

9 files changed

+18
-13
lines changed

components/sharepoint/actions/create-item/create-item.mjs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ export default {
44
key: "sharepoint-create-item",
55
name: "Create Item",
66
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)",
7-
version: "0.0.4",
7+
version: "0.0.5",
88
type: "action",
99
props: {
1010
sharepoint,

components/sharepoint/actions/create-list/create-list.mjs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ export default {
44
key: "sharepoint-create-list",
55
name: "Create List",
66
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)",
7-
version: "0.0.4",
7+
version: "0.0.5",
88
type: "action",
99
props: {
1010
sharepoint,

components/sharepoint/actions/download-file/download-file.mjs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@ export default {
55
key: "sharepoint-download-file",
66
name: "Download File",
77
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.3",
8+
version: "0.0.4",
99
type: "action",
1010
props: {
1111
sharepoint,

components/sharepoint/actions/update-item/update-item.mjs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@ export default {
55
key: "sharepoint-update-item",
66
name: "Update Item",
77
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)",
8-
version: "0.0.3",
8+
version: "0.0.4",
99
type: "action",
1010
props: {
1111
sharepoint,

components/sharepoint/package.json

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@pipedream/sharepoint",
3-
"version": "0.3.2",
3+
"version": "0.3.3",
44
"description": "Pipedream Microsoft Sharepoint Online Components",
55
"main": "sharepoint.app.mjs",
66
"keywords": [
@@ -13,6 +13,6 @@
1313
"access": "public"
1414
},
1515
"dependencies": {
16-
"@pipedream/platform": "^3.0.3"
16+
"@pipedream/platform": "^3.1.0"
1717
}
1818
}

components/sharepoint/sharepoint.app.mjs

Lines changed: 7 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@ export default {
1414
url: prevContext.nextLink,
1515
}
1616
: {};
17-
const response = await this.listSites(args);
17+
const response = await this.listAllSites(args);
1818
const options = response.value?.map(({
1919
id: value, displayName: label,
2020
}) => ({
@@ -205,6 +205,12 @@ export default {
205205
...args,
206206
});
207207
},
208+
listAllSites(args = {}) {
209+
return this._makeRequest({
210+
path: "/sites?search=*",
211+
...args,
212+
});
213+
},
208214
listLists({
209215
siteId, ...args
210216
}) {

components/sharepoint/sources/new-list-item/new-list-item.mjs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@ export default {
55
key: "sharepoint-new-list-item",
66
name: "New List Item",
77
description: "Emit new event when a new list is created in Microsoft Sharepoint.",
8-
version: "0.0.4",
8+
version: "0.0.5",
99
type: "source",
1010
dedupe: "unique",
1111
props: {

components/sharepoint/sources/updated-list-item/updated-list-item.mjs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@ export default {
55
key: "sharepoint-updated-list-item",
66
name: "Updated List Item",
77
description: "Emit new event when a list is updated in Microsoft Sharepoint.",
8-
version: "0.0.4",
8+
version: "0.0.5",
99
type: "source",
1010
dedupe: "unique",
1111
props: {

pnpm-lock.yaml

Lines changed: 3 additions & 4 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

0 commit comments

Comments
 (0)