Skip to content
Merged
Show file tree
Hide file tree
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
Expand Up @@ -3,8 +3,8 @@ import app from "../../onlyoffice_docspace.app.mjs";
export default {
key: "onlyoffice_docspace-create-room",
name: "Create Room",
description: "Creates a new room. [See the documentation](https://api.onlyoffice.com/docspace/method/files/post/api/2.0/files/rooms)",
version: "0.0.2",
description: "Creates a new room. [See the documentation](https://api.onlyoffice.com/docspace/api-backend/usage-api/create-room/)",
version: "0.0.3",
annotations: {
destructiveHint: false,
openWorldHint: true,
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -3,8 +3,8 @@ import app from "../../onlyoffice_docspace.app.mjs";
export default {
key: "onlyoffice_docspace-invite-user",
name: "Invite User",
description: "Invites a new user to the portal. [See the documentation](https://api.onlyoffice.com/docspace/method/people/post/api/2.0/people/invite)",
version: "0.0.2",
description: "Invites a new user to the portal. [See the documentation](https://api.onlyoffice.com/docspace/api-backend/usage-api/invite-users/)",
version: "0.0.3",
annotations: {
destructiveHint: false,
openWorldHint: true,
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -4,8 +4,8 @@ import constants from "../../common/constants.mjs";
export default {
key: "onlyoffice_docspace-upload-file",
name: "Upload File",
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)",
version: "0.1.2",
description: "Uploads a file to the specified room. [See the documentation](https://api.onlyoffice.com/docspace/api-backend/usage-api/upload-file/)",
version: "0.1.3",
annotations: {
destructiveHint: false,
openWorldHint: true,
Expand Down
2 changes: 1 addition & 1 deletion components/onlyoffice_docspace/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@pipedream/onlyoffice_docspace",
"version": "0.2.1",
"version": "0.2.2",
"description": "Pipedream ONLYOFFICE DocSpace Components",
"main": "onlyoffice_docspace.app.mjs",
"keywords": [
Expand Down
4 changes: 2 additions & 2 deletions components/onlyoffice_docspace/sources/new-file/new-file.mjs
Original file line number Diff line number Diff line change
Expand Up @@ -5,8 +5,8 @@ export default {
...common,
key: "onlyoffice_docspace-new-file",
name: "New File Created",
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).",
version: "0.0.1",
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/).",
version: "0.0.2",
type: "source",
dedupe: "unique",
methods: {
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -5,8 +5,8 @@ export default {
...common,
key: "onlyoffice_docspace-new-folder",
name: "New Folder Created",
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).",
version: "0.0.1",
description: "Emit new event when a new folder is createdr. [See the documentation](https://api.onlyoffice.com/docspace/api-backend/usage-api/get-root-folders/).",
version: "0.0.2",
type: "source",
dedupe: "unique",
methods: {
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -4,8 +4,8 @@ export default {
...common,
key: "onlyoffice_docspace-new-user-added",
name: "New User Added",
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).",
version: "0.0.1",
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/).",
version: "0.0.2",
type: "source",
dedupe: "unique",
methods: {
Expand Down
Loading