@pipedream/sonix 1.0.0 → 1.0.2

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
@@ -5,7 +5,12 @@ export default {
5
5
  key: "sonix-create-new-translation",
6
6
  name: "Create New Translation",
7
7
  description: "Creates a new translation for a selected media file. [See the documentation](https://sonix.ai/docs/api#create_translation)",
8
- version: "0.0.1",
8
+ version: "0.0.2",
9
+ annotations: {
10
+ destructiveHint: false,
11
+ openWorldHint: true,
12
+ readOnlyHint: false,
13
+ },
9
14
  type: "action",
10
15
  props: {
11
16
  sonix,
@@ -4,7 +4,12 @@ export default {
4
4
  key: "sonix-get-text-transcript",
5
5
  name: "Get Text Transcript",
6
6
  description: "Gets the text transcript of a selected media file. [See the documentation](https://sonix.ai/docs/api#get_transcript)",
7
- version: "0.0.1",
7
+ version: "0.0.2",
8
+ annotations: {
9
+ destructiveHint: false,
10
+ openWorldHint: true,
11
+ readOnlyHint: true,
12
+ },
8
13
  type: "action",
9
14
  props: {
10
15
  sonix,
@@ -7,7 +7,12 @@ export default {
7
7
  key: "sonix-upload-media",
8
8
  name: "Upload Media",
9
9
  description: "Submits new media for processing. [See the documentation](https://sonix.ai/docs/api#new_media)",
10
- version: "1.0.0",
10
+ version: "1.0.2",
11
+ annotations: {
12
+ destructiveHint: false,
13
+ openWorldHint: true,
14
+ readOnlyHint: false,
15
+ },
11
16
  type: "action",
12
17
  props: {
13
18
  sonix,
@@ -59,6 +64,12 @@ export default {
59
64
  description: "URL for Sonix to make a POST request notifying of a change in transcript status (either failed or completed). The POST will include the media status JSON.",
60
65
  optional: true,
61
66
  },
67
+ syncDir: {
68
+ type: "dir",
69
+ accessMode: "read",
70
+ sync: true,
71
+ optional: true,
72
+ },
62
73
  },
63
74
  async run({ $ }) {
64
75
  const formData = new FormData();
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@pipedream/sonix",
3
- "version": "1.0.0",
3
+ "version": "1.0.2",
4
4
  "description": "Pipedream Sonix Components",
5
5
  "main": "sonix.app.mjs",
6
6
  "keywords": [
@@ -14,6 +14,6 @@
14
14
  },
15
15
  "dependencies": {
16
16
  "@pipedream/platform": "^3.1.0",
17
- "form-data": "^4.0.0"
17
+ "form-data": "^4.0.4"
18
18
  }
19
19
  }