Skip to content

Commit 7e653f2

Browse files
Onlyoffice docs link updates (#18941)
* Onlyoffice docs link updates * Update components/onlyoffice_docspace/sources/new-folder/new-folder.mjs --------- Co-authored-by: michelle0927 <michelle0927@users.noreply.github.com>
1 parent 470e15a commit 7e653f2

File tree

7 files changed

+13
-13
lines changed

7 files changed

+13
-13
lines changed

components/onlyoffice_docspace/actions/create-room/create-room.mjs

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -3,8 +3,8 @@ import app from "../../onlyoffice_docspace.app.mjs";
33
export default {
44
key: "onlyoffice_docspace-create-room",
55
name: "Create Room",
6-
description: "Creates a new room. [See the documentation](https://api.onlyoffice.com/docspace/method/files/post/api/2.0/files/rooms)",
7-
version: "0.0.2",
6+
description: "Creates a new room. [See the documentation](https://api.onlyoffice.com/docspace/api-backend/usage-api/create-room/)",
7+
version: "0.0.3",
88
annotations: {
99
destructiveHint: false,
1010
openWorldHint: true,

components/onlyoffice_docspace/actions/invite-user/invite-user.mjs

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -3,8 +3,8 @@ import app from "../../onlyoffice_docspace.app.mjs";
33
export default {
44
key: "onlyoffice_docspace-invite-user",
55
name: "Invite User",
6-
description: "Invites a new user to the portal. [See the documentation](https://api.onlyoffice.com/docspace/method/people/post/api/2.0/people/invite)",
7-
version: "0.0.2",
6+
description: "Invites a new user to the portal. [See the documentation](https://api.onlyoffice.com/docspace/api-backend/usage-api/invite-users/)",
7+
version: "0.0.3",
88
annotations: {
99
destructiveHint: false,
1010
openWorldHint: true,

components/onlyoffice_docspace/actions/upload-file/upload-file.mjs

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -4,8 +4,8 @@ import constants from "../../common/constants.mjs";
44
export default {
55
key: "onlyoffice_docspace-upload-file",
66
name: "Upload File",
7-
description: "Uploads a file to the specified room. [See the documentation](https://api.onlyoffice.com/docspace/method/files/post/api/2.0/files/%7bfolderid%7d/upload)",
8-
version: "0.1.2",
7+
description: "Uploads a file to the specified room. [See the documentation](https://api.onlyoffice.com/docspace/api-backend/usage-api/upload-file/)",
8+
version: "0.1.3",
99
annotations: {
1010
destructiveHint: false,
1111
openWorldHint: true,

components/onlyoffice_docspace/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@pipedream/onlyoffice_docspace",
3-
"version": "0.2.1",
3+
"version": "0.2.2",
44
"description": "Pipedream ONLYOFFICE DocSpace Components",
55
"main": "onlyoffice_docspace.app.mjs",
66
"keywords": [

components/onlyoffice_docspace/sources/new-file/new-file.mjs

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -5,8 +5,8 @@ export default {
55
...common,
66
key: "onlyoffice_docspace-new-file",
77
name: "New File Created",
8-
description: "Emit new event when a new file is created. [See the documentation](https://api.onlyoffice.com/docspace/method/files/get/api/2.0/files/%40root).",
9-
version: "0.0.1",
8+
description: "Emit new event when a new file is created. [See the documentation](https://api.onlyoffice.com/docspace/api-backend/usage-api/get-root-folders/).",
9+
version: "0.0.2",
1010
type: "source",
1111
dedupe: "unique",
1212
methods: {

components/onlyoffice_docspace/sources/new-folder/new-folder.mjs

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -5,8 +5,8 @@ export default {
55
...common,
66
key: "onlyoffice_docspace-new-folder",
77
name: "New Folder Created",
8-
description: "Emit new event when a new folder is createdr. [See the documentation](https://api.onlyoffice.com/docspace/method/files/get/api/2.0/files/%40root).",
9-
version: "0.0.1",
8+
description: "Emit new event when a new folder is created. [See the documentation](https://api.onlyoffice.com/docspace/api-backend/usage-api/get-root-folders/).",
9+
version: "0.0.2",
1010
type: "source",
1111
dedupe: "unique",
1212
methods: {

components/onlyoffice_docspace/sources/new-user-added/new-user-added.mjs

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -4,8 +4,8 @@ export default {
44
...common,
55
key: "onlyoffice_docspace-new-user-added",
66
name: "New User Added",
7-
description: "Emit new event when a new user is added. [See the documentation](https://api.onlyoffice.com/docspace/method/people/get/api/2.0/people/simple/filter).",
8-
version: "0.0.1",
7+
description: "Emit new event when a new user is added. [See the documentation](https://api.onlyoffice.com/docspace/api-backend/usage-api/get-simple-by-filter/).",
8+
version: "0.0.2",
99
type: "source",
1010
dedupe: "unique",
1111
methods: {

0 commit comments

Comments
 (0)