@pipedream/qstash 0.0.4 → 0.0.5

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.
@@ -2,7 +2,12 @@ import qstash from "../../qstash.app.mjs";
2
2
 
3
3
  export default {
4
4
  name: "Create Endpoint",
5
- version: "0.0.1",
5
+ version: "0.0.2",
6
+ annotations: {
7
+ destructiveHint: false,
8
+ openWorldHint: true,
9
+ readOnlyHint: false,
10
+ },
6
11
  key: "qstash-create-endpoint",
7
12
  description: "Create a new HTTP endpoint on a QStash topic.",
8
13
  props: {
@@ -2,7 +2,12 @@ import qstash from "../../qstash.app.mjs";
2
2
 
3
3
  export default {
4
4
  name: "Create Topic",
5
- version: "0.0.1",
5
+ version: "0.0.2",
6
+ annotations: {
7
+ destructiveHint: false,
8
+ openWorldHint: true,
9
+ readOnlyHint: false,
10
+ },
6
11
  key: "qstash-create-topic",
7
12
  description: "Create a new QStash topic that emits to multiple endpoints.",
8
13
  props: {
@@ -2,7 +2,12 @@ import qstash from "../../qstash.app.mjs";
2
2
 
3
3
  export default {
4
4
  name: "List Endpoints",
5
- version: "0.0.1",
5
+ version: "0.0.2",
6
+ annotations: {
7
+ destructiveHint: false,
8
+ openWorldHint: true,
9
+ readOnlyHint: true,
10
+ },
6
11
  key: "qstash-list-endpoints",
7
12
  description: "Lists all your existing QStash endpoints.",
8
13
  props: {
@@ -2,7 +2,12 @@ import qstash from "../../qstash.app.mjs";
2
2
 
3
3
  export default {
4
4
  name: "List Topics",
5
- version: "0.0.1",
5
+ version: "0.0.2",
6
+ annotations: {
7
+ destructiveHint: false,
8
+ openWorldHint: true,
9
+ readOnlyHint: true,
10
+ },
6
11
  key: "qstash-list-topics",
7
12
  description: "List all your existing QStash topics.",
8
13
  props: {
@@ -2,7 +2,12 @@ import qstash from "../../qstash.app.mjs";
2
2
 
3
3
  export default {
4
4
  name: "Publish Endpoint Message",
5
- version: "0.0.1",
5
+ version: "0.0.2",
6
+ annotations: {
7
+ destructiveHint: false,
8
+ openWorldHint: true,
9
+ readOnlyHint: false,
10
+ },
6
11
  key: "qstash-publish-endpoint-message",
7
12
  description: "Publish a message a callback endpoint",
8
13
  type: "action",
@@ -2,7 +2,12 @@ import qstash from "../../qstash.app.mjs";
2
2
 
3
3
  export default {
4
4
  name: "Publish Topic Message",
5
- version: "0.0.1",
5
+ version: "0.0.2",
6
+ annotations: {
7
+ destructiveHint: false,
8
+ openWorldHint: true,
9
+ readOnlyHint: false,
10
+ },
6
11
  key: "qstash-publish-topic-message",
7
12
  description: "Publish a message to a topic",
8
13
  type: "action",
@@ -3,7 +3,12 @@ import { methods } from "../../common.mjs";
3
3
 
4
4
  export default {
5
5
  name: "Verify Webhook",
6
- version: "0.0.1",
6
+ version: "0.0.3",
7
+ annotations: {
8
+ destructiveHint: false,
9
+ openWorldHint: true,
10
+ readOnlyHint: true,
11
+ },
7
12
  key: "qstash-verify-webhook",
8
13
  description: "Verify an incoming QStash webhook to an endpoint. Only to be used with the **Publish Endpoint** action.",
9
14
  props: {
@@ -15,6 +20,7 @@ export default {
15
20
  },
16
21
  },
17
22
  type: "action",
23
+ ai: "optimized",
18
24
  methods: {
19
25
  ...methods,
20
26
  },
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@pipedream/qstash",
3
- "version": "0.0.4",
3
+ "version": "0.0.5",
4
4
  "description": "Pipedream qstash Components",
5
5
  "main": "qstash.app.mjs",
6
6
  "keywords": [
@@ -13,6 +13,6 @@
13
13
  "access": "public"
14
14
  },
15
15
  "dependencies": {
16
- "@pipedream/platform": "^3.1.0"
16
+ "@pipedream/platform": "^3.1.1"
17
17
  }
18
18
  }