@pipedream/hootsuite 0.2.0 → 0.2.1

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.
package/README.md CHANGED
@@ -1,6 +1,6 @@
1
1
  # Overview
2
2
 
3
- The Hootsuite API offers a variety of endpoints to automate social media management tasks such as scheduling posts, managing social content, and analyzing social media performance. By leveraging Pipedream, you can create serverless workflows to interact with the Hootsuite API; you can schedule posts at optimal times, aggregate metrics for reporting, or even respond to social media activity in real-time. Pipedream's platform allows the seamless integration of the Hootsuite API with hundreds of other apps to streamline social media workflows, monitor brand presence, and engage with audiences effectively.
3
+ The Hootsuite API offers a variety of endpoints to automate social media management tasks such as scheduling posts, managing social content, and analyzing social media performance. By leveraging Pipedream, you can create serverless workflows to interact with the Hootsuite API; you can schedule posts at optimal times, aggregate metrics for reporting, or even respond to social media activity in real-time. Pipedream's platform allows the seamless integration of the Hootsuite API with 3,000+ other apps to streamline social media workflows, monitor brand presence, and engage with audiences effectively.
4
4
 
5
5
  # Example Use Cases
6
6
 
@@ -5,7 +5,12 @@ export default {
5
5
  key: "hootsuite-create-media-upload-job",
6
6
  name: "Create Media Upload Job",
7
7
  description: "Creates a new Media Upload Job on your Hootsuite account. [See the documentation](https://apidocs.hootsuite.com/docs/api/index.html#operation/createMedia)",
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
  hootsuite,
@@ -4,7 +4,12 @@ export default {
4
4
  key: "hootsuite-get-media-upload-status",
5
5
  name: "Get Media Upload Status",
6
6
  description: "Gets the status of a Media Upload Job on your Hootsuite account. [See the documentation](https://apidocs.hootsuite.com/docs/api/index.html#operation/getMedia)",
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
  hootsuite,
@@ -13,7 +13,12 @@ export default {
13
13
  key: "hootsuite-schedule-message",
14
14
  name: "Schedule Message",
15
15
  description: "Schedules a message on your Hootsuite account. [See the documentation](https://apidocs.hootsuite.com/docs/api/index.html#operation/scheduleMessage)",
16
- version: "0.0.1",
16
+ version: "0.0.2",
17
+ annotations: {
18
+ destructiveHint: false,
19
+ openWorldHint: true,
20
+ readOnlyHint: false,
21
+ },
17
22
  type: "action",
18
23
  props: {
19
24
  hootsuite,
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@pipedream/hootsuite",
3
- "version": "0.2.0",
3
+ "version": "0.2.1",
4
4
  "description": "Pipedream Hootsuite Components",
5
5
  "main": "hootsuite.app.mjs",
6
6
  "keywords": [
@@ -13,7 +13,7 @@
13
13
  "access": "public"
14
14
  },
15
15
  "dependencies": {
16
- "@pipedream/platform": "^3.1.0",
16
+ "@pipedream/platform": "^3.1.1",
17
17
  "dayjs": "^1.11.7"
18
18
  }
19
19
  }