Skip to content

Commit a0fa8a0

Browse files
committed
versions
1 parent 79b9cd2 commit a0fa8a0

File tree

8 files changed

+8
-8
lines changed

8 files changed

+8
-8
lines changed

components/box/actions/create-sign-request/create-sign-request.mjs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@ export default {
66
name: "Create Box Sign Request",
77
description: "Creates a signature request. This involves preparing a document for signing and sending the signature request to signers. [See the documentation](https://developer.box.com/reference/post-sign-requests/).",
88
key: "box-create-sign-request",
9-
version: "0.0.1",
9+
version: "0.0.2",
1010
type: "action",
1111
props: {
1212
app,

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

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@ export default {
77
name: "Download File",
88
description: "Downloads a file from Box to your workflow's `/tmp` directory. [See the documentation](https://developer.box.com/reference/get-files-id-content/)",
99
key: "box-download-file",
10-
version: "0.0.4",
10+
version: "0.0.5",
1111
type: "action",
1212
props: {
1313
app,

components/box/actions/get-comments/get-comments.mjs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@ export default {
55
name: "Get Comments",
66
description: "Fetches comments for a file. [See the documentation](https://developer.box.com/reference/get-files-id-comments/).",
77
key: "box-get-comments",
8-
version: "0.0.1",
8+
version: "0.0.2",
99
type: "action",
1010
props: {
1111
app,

components/box/actions/search-content/search-content.mjs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@ export default {
66
name: "Search Content",
77
description: "Searches for files, folders, web links, and shared files across the users content or across the entire enterprise. [See the documentation](https://developer.box.com/reference/get-search/).",
88
key: "box-search-content",
9-
version: "0.0.4",
9+
version: "0.0.5",
1010
type: "action",
1111
props: {
1212
app,

components/box/actions/upload-file-version/upload-file-version.mjs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@ export default {
55
name: "Upload File Version",
66
description: "Update a file's content. [See the documentation](https://developer.box.com/reference/post-files-id-content/).",
77
key: "box-upload-file-version",
8-
version: "0.1.1",
8+
version: "0.1.2",
99
type: "action",
1010
props: {
1111
app,

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

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@ export default {
55
name: "Upload a File",
66
description: "Uploads a small file to Box. [See the documentation](https://developer.box.com/reference/post-files-content/).",
77
key: "box-upload-file",
8-
version: "0.1.1",
8+
version: "0.1.2",
99
type: "action",
1010
props: {
1111
app,

components/box/sources/new-event/new-event.mjs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@ export default {
55
key: "box-new-event",
66
name: "New Event",
77
description: "Emit new event when an event with subscribed event source triggered on a target. [See the documentation](https://developer.box.com/reference/post-webhooks)",
8-
version: "0.0.4",
8+
version: "0.0.5",
99
type: "source",
1010
dedupe: "unique",
1111
...common,

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

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ export default {
44
key: "box-new-folder",
55
name: "New Folder Event",
66
description: "Emit new event when a new folder created on a target. [See the documentation](https://developer.box.com/reference/post-webhooks)",
7-
version: "0.0.4",
7+
version: "0.0.5",
88
type: "source",
99
dedupe: "unique",
1010
...common,

0 commit comments

Comments
 (0)