@pipedream/streak 0.0.4 → 0.1.0

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,21 +1,11 @@
1
1
  # Overview
2
2
 
3
- With Streak's API, you can build powerful and custom applications to extend and
4
- integrate with Streak. Here are some of the things you can build with the
5
- Streak API:
3
+ The Streak API taps into the core of Streak’s CRM functionality within Gmail, allowing users to automate interactions with pipeline data, such as leads, contacts, and sales opportunities. With Pipedream, you can harness this API to craft serverless workflows that react to events in Streak and connect with countless other services to streamline CRM tasks, sync data across platforms, or trigger communications based on pipeline changes.
6
4
 
7
- - Create custom objects within Streak, such as customer profiles or tasks
8
- - Automate customer onboarding processes by automatically sending emails and
9
- creating customer profiles within Streak
10
- - Update customer profiles in Streak based on customer activity
11
- - Keep customer records up-to-date by automatically syncing data from
12
- third-party applications
13
- - Automatically sync customer contact information from third-parties
14
- - Build an integration with a CRM to keep contact information up-to-date in
15
- Streak
16
- - Create custom triggers to automatically take actions within Streak based on
17
- customer actions
18
- - Create custom reports to analyze customer behavior or trends in their data
19
- - Store customer notes and other records for easy retrieval and review
20
- - Create custom views and filters to quickly analyze and report on customer
21
- data
5
+ # Example Use Cases
6
+
7
+ - **Automated Lead Follow-Up Emails**: Trigger an automated email sequence when a new lead is added to a Streak pipeline, using Gmail or a third-party email service. Tailor follow-up content based on lead data from Streak to create a personalized touch without manual effort.
8
+
9
+ - **Pipeline Change Notifications**: Send real-time alerts via Slack or another messaging platform when a deal moves to a new stage in your Streak pipeline. Keep the team instantly informed about progress without them having to constantly check their CRM.
10
+
11
+ - **Data Synchronization with Google Sheets**: Automatically export new and updated pipeline data to a Google Sheet for reporting and analysis. Use this to keep backup records, generate custom reports, or feed data into other analytics tools for deeper insights.
@@ -6,7 +6,12 @@ export default {
6
6
  key: "streak-create-box",
7
7
  name: "Create Box",
8
8
  description: `Create a new box in Streak. [See the docs](${docLink})`,
9
- version: "0.0.1",
9
+ version: "0.0.2",
10
+ annotations: {
11
+ destructiveHint: false,
12
+ openWorldHint: true,
13
+ readOnlyHint: false,
14
+ },
10
15
  type: "action",
11
16
  props: {
12
17
  streak,
@@ -6,7 +6,12 @@ export default {
6
6
  key: "streak-create-task",
7
7
  name: "Create Task",
8
8
  description: `Create a new task in a box. [See the docs](${docLink})`,
9
- version: "0.0.1",
9
+ version: "0.0.2",
10
+ annotations: {
11
+ destructiveHint: false,
12
+ openWorldHint: true,
13
+ readOnlyHint: false,
14
+ },
10
15
  type: "action",
11
16
  props: {
12
17
  streak,
@@ -6,7 +6,12 @@ export default {
6
6
  key: "streak-link-boxes",
7
7
  name: "Link Boxes",
8
8
  description: `Link boxes to a specific box. [See the docs](${docLink})`,
9
- version: "0.0.1",
9
+ version: "0.0.2",
10
+ annotations: {
11
+ destructiveHint: false,
12
+ openWorldHint: true,
13
+ readOnlyHint: false,
14
+ },
10
15
  type: "action",
11
16
  props: {
12
17
  streak,
@@ -0,0 +1,24 @@
1
+ import streak from "../../streak.app.mjs";
2
+
3
+ export default {
4
+ key: "streak-list-pipeline-id-options",
5
+ name: "List Pipeline Options",
6
+ description: "Retrieves available options for the Pipeline field.",
7
+ version: "0.0.1",
8
+ type: "action",
9
+ annotations: {
10
+ destructiveHint: false,
11
+ openWorldHint: true,
12
+ readOnlyHint: true,
13
+ },
14
+ props: {
15
+ streak,
16
+ },
17
+ async run({ $ }) {
18
+ const options = await streak.propDefinitions.pipelineId.options.call(this.streak);
19
+ $.export("$summary", `Successfully retrieved ${options.length} option${options.length === 1
20
+ ? ""
21
+ : "s"}`);
22
+ return options;
23
+ },
24
+ };
@@ -0,0 +1,24 @@
1
+ import streak from "../../streak.app.mjs";
2
+
3
+ export default {
4
+ key: "streak-list-team-id-options",
5
+ name: "List Team Options",
6
+ description: "Retrieves available options for the Team field.",
7
+ version: "0.0.1",
8
+ type: "action",
9
+ annotations: {
10
+ destructiveHint: false,
11
+ openWorldHint: true,
12
+ readOnlyHint: true,
13
+ },
14
+ props: {
15
+ streak,
16
+ },
17
+ async run({ $ }) {
18
+ const options = await streak.propDefinitions.teamId.options.call(this.streak);
19
+ $.export("$summary", `Successfully retrieved ${options.length} option${options.length === 1
20
+ ? ""
21
+ : "s"}`);
22
+ return options;
23
+ },
24
+ };
@@ -6,7 +6,12 @@ export default {
6
6
  key: "streak-update-box",
7
7
  name: "Update Box",
8
8
  description: `Update the properties for a box. To update field values use **Update Box Field Value**. [See the docs](${docLink})`,
9
- version: "0.0.1",
9
+ version: "0.0.2",
10
+ annotations: {
11
+ destructiveHint: true,
12
+ openWorldHint: true,
13
+ readOnlyHint: false,
14
+ },
10
15
  type: "action",
11
16
  props: {
12
17
  streak,
@@ -6,7 +6,12 @@ export default {
6
6
  key: "streak-update-box-field-value",
7
7
  name: "Update Box Field Value",
8
8
  description: `Update the values of the fields for a box. [See the docs](${docLink})`,
9
- version: "0.0.1",
9
+ version: "0.0.2",
10
+ annotations: {
11
+ destructiveHint: true,
12
+ openWorldHint: true,
13
+ readOnlyHint: false,
14
+ },
10
15
  type: "action",
11
16
  props: {
12
17
  streak,
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@pipedream/streak",
3
- "version": "0.0.4",
3
+ "version": "0.1.0",
4
4
  "description": "Pipedream Streak Components",
5
5
  "main": "streak.app.mjs",
6
6
  "keywords": [
@@ -10,7 +10,7 @@
10
10
  "homepage": "https://pipedream.com/apps/streak",
11
11
  "author": "Pipedream <support@pipedream.com> (https://pipedream.com/)",
12
12
  "dependencies": {
13
- "@pipedream/platform": "^1.1.1"
13
+ "@pipedream/platform": "^1.6.8"
14
14
  },
15
15
  "publishConfig": {
16
16
  "access": "public"