Skip to content

Commit 75c8edf

Browse files
committed
Fixing transloadit app and components
1 parent 0a099c3 commit 75c8edf

File tree

7 files changed

+7
-7
lines changed

7 files changed

+7
-7
lines changed

components/transloadit/actions/cancel-assembly/cancel-assembly.mjs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ export default {
44
key: "transloadit-cancel-assembly",
55
name: "Cancel Assembly",
66
description: "Cancel a running assembly by its assembly ID. Useful for aborting processing jobs that are no longer needed. [See the documentation](https://transloadit.com/docs/api/assemblies-assembly-id-delete/)",
7-
version: "0.0.2",
7+
version: "0.0.3",
88
annotations: {
99
destructiveHint: true,
1010
openWorldHint: true,

components/transloadit/actions/create-assembly/create-assembly.mjs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@ export default {
66
key: "transloadit-create-assembly",
77
name: "Create Assembly",
88
description: "Create a new assembly to process files using a specified template and steps. [See the documentation](https://transloadit.com/docs/api/assemblies-post/)",
9-
version: "0.0.2",
9+
version: "0.0.3",
1010
annotations: {
1111
destructiveHint: false,
1212
openWorldHint: true,

components/transloadit/actions/get-assembly-status/get-assembly-status.mjs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ export default {
44
key: "transloadit-get-assembly-status",
55
name: "Get Assembly Status",
66
description: "Retrieve the current status and results of an existing assembly. [See the documentation](https://transloadit.com/docs/api/assemblies-assembly-id-get/)",
7-
version: "0.0.2",
7+
version: "0.0.3",
88
annotations: {
99
destructiveHint: false,
1010
openWorldHint: true,

components/transloadit/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -14,6 +14,6 @@
1414
},
1515
"dependencies": {
1616
"@pipedream/platform": "^3.0.3",
17-
"transloadit": "^3.0.2"
17+
"transloadit": "^4.0.0"
1818
}
1919
}

components/transloadit/sources/new-assembly-completed/new-assembly-completed.mjs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@ export default {
66
key: "transloadit-new-assembly-completed",
77
name: "New Assembly Completed",
88
description: "Emit new event when a Transloadit assembly finishes processing. [See the documentation](https://transloadit.com/docs/api/assemblies-get/)",
9-
version: "0.0.1",
9+
version: "0.0.2",
1010
type: "source",
1111
dedupe: "unique",
1212
methods: {

components/transloadit/sources/new-assembly-error/new-assembly-error.mjs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@ export default {
66
key: "transloadit-new-assembly-error",
77
name: "New Assembly Failed",
88
description: "Emit new event when a failed occurs during assembly processing. [See the documentation](https://transloadit.com/docs/api/assemblies-get/)",
9-
version: "0.0.1",
9+
version: "0.0.2",
1010
type: "source",
1111
dedupe: "unique",
1212
methods: {

components/transloadit/transloadit.app.mjs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
import Transloadit from "transloadit";
1+
import { Transloadit } from "transloadit";
22
import { LIMIT } from "./common/constants.mjs";
33

44
export default {

0 commit comments

Comments
 (0)