@pipedream/bluesky 0.1.2 → 0.1.3

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.
@@ -6,7 +6,12 @@ export default {
6
6
  key: "bluesky-create-post",
7
7
  name: "Create Post",
8
8
  description: "Creates a new post on Bluesky. [See the documentation](https://docs.bsky.app/docs/api/com-atproto-repo-create-record).",
9
- version: "0.1.0",
9
+ version: "0.1.2",
10
+ annotations: {
11
+ destructiveHint: false,
12
+ openWorldHint: true,
13
+ readOnlyHint: false,
14
+ },
10
15
  type: "action",
11
16
  props: {
12
17
  app,
@@ -5,7 +5,12 @@ export default {
5
5
  key: "bluesky-like-post",
6
6
  name: "Like Post",
7
7
  description: "Like a specific post on Bluesky. [See the documentation](https://docs.bsky.app/docs/api/com-atproto-repo-create-record).",
8
- version: "0.0.2",
8
+ version: "0.0.4",
9
+ annotations: {
10
+ destructiveHint: false,
11
+ openWorldHint: true,
12
+ readOnlyHint: false,
13
+ },
9
14
  type: "action",
10
15
  props: {
11
16
  app,
@@ -4,7 +4,12 @@ export default {
4
4
  key: "bluesky-retrieve-thread",
5
5
  name: "Retrieve Thread",
6
6
  description: "Retrieve a full thread of posts. [See the documentation](https://docs.bsky.app/docs/api/app-bsky-feed-get-post-thread).",
7
- version: "0.0.2",
7
+ version: "0.0.4",
8
+ annotations: {
9
+ destructiveHint: false,
10
+ openWorldHint: true,
11
+ readOnlyHint: true,
12
+ },
8
13
  type: "action",
9
14
  props: {
10
15
  app,
@@ -2,7 +2,7 @@ const BASE_URL = "https://bsky.social";
2
2
  const VERSION_PATH = "/xrpc";
3
3
 
4
4
  const INTERACTION_EVENT = {
5
- REQUES_TLESS: "app.bsky.feed.defs#requestLess",
5
+ REQUEST_LESS: "app.bsky.feed.defs#requestLess",
6
6
  REQUEST_MORE: "app.bsky.feed.defs#requestMore",
7
7
  CLICK_THROUGH_ITEM: "app.bsky.feed.defs#clickthroughItem",
8
8
  CLICK_THROUGH_AUTHOR: "app.bsky.feed.defs#clickthroughAuthor",
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@pipedream/bluesky",
3
- "version": "0.1.2",
3
+ "version": "0.1.3",
4
4
  "description": "Pipedream Bluesky Components",
5
5
  "main": "bluesky.app.mjs",
6
6
  "keywords": [
@@ -13,6 +13,6 @@
13
13
  "access": "public"
14
14
  },
15
15
  "dependencies": {
16
- "@pipedream/platform": "3.0.3"
16
+ "@pipedream/platform": "^3.1.1"
17
17
  }
18
18
  }
@@ -6,7 +6,7 @@ export default {
6
6
  key: "bluesky-new-follower-on-account",
7
7
  name: "New Follower On Account",
8
8
  description: "Emit new event when someone follows the specified account. Requires the account ID as a prop to monitor followers for that account. [See the documentation](https://docs.bsky.app/docs/api/app-bsky-graph-get-followers).",
9
- version: "0.0.2",
9
+ version: "0.0.3",
10
10
  type: "source",
11
11
  dedupe: "unique",
12
12
  props: {
@@ -6,7 +6,7 @@ export default {
6
6
  key: "bluesky-new-posts-by-author",
7
7
  name: "New Posts By Author",
8
8
  description: "Emit new event when an author creates a post. Requires the author id as a prop to track posts from a specific author. [See the documentation](https://docs.bsky.app/docs/api/app-bsky-feed-search-posts).",
9
- version: "0.0.2",
9
+ version: "0.0.3",
10
10
  type: "source",
11
11
  dedupe: "unique",
12
12
  props: {
@@ -6,7 +6,7 @@ export default {
6
6
  key: "bluesky-new-timeline-posts",
7
7
  name: "New Timeline Posts",
8
8
  description: "Emit new event when posts appear in the `following` feed. [See the documentation](https://docs.bsky.app/docs/api/app-bsky-feed-get-timeline).",
9
- version: "0.0.2",
9
+ version: "0.0.3",
10
10
  type: "source",
11
11
  dedupe: "unique",
12
12
  methods: {