Skip to content

Commit 4a27b5f

Browse files
committed
Merge branch 'master' into pipedream-sdk
2 parents 4b3e11b + 34812fa commit 4a27b5f

File tree

575 files changed

+18682
-1250
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

575 files changed

+18682
-1250
lines changed

.github/workflows/components-pr.yaml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -64,7 +64,7 @@ jobs:
6464
restore-keys: |
6565
${{ runner.os }}-pnpm-store-
6666
- name: Setup Node Env
67-
uses: actions/[email protected].2
67+
uses: actions/[email protected].3
6868
with:
6969
node-version: 18
7070
registry-url: https://registry.npmjs.org/
@@ -153,7 +153,7 @@ jobs:
153153
restore-keys: |
154154
${{ runner.os }}-pnpm-store-
155155
- name: Setup Node Env
156-
uses: actions/[email protected].2
156+
uses: actions/[email protected].3
157157
with:
158158
node-version: 18
159159
registry-url: https://registry.npmjs.org/

.github/workflows/publish-components.yaml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -29,7 +29,7 @@ jobs:
2929
- name: Install dependencies
3030
run: pnpm install -r --no-frozen-lockfile
3131
- name: Setup Node Env
32-
uses: actions/[email protected].2
32+
uses: actions/[email protected].3
3333
with:
3434
node-version: 14
3535
registry-url: https://registry.npmjs.org/
@@ -133,7 +133,7 @@ jobs:
133133
restore-keys: |
134134
${{ runner.os }}-pnpm-store-
135135
- name: Setup Node Env
136-
uses: actions/[email protected].2
136+
uses: actions/[email protected].3
137137
with:
138138
node-version: 14
139139
registry-url: https://registry.npmjs.org/

.github/workflows/publish-marketplace-content.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -29,7 +29,7 @@ jobs:
2929
- name: Install dependencies
3030
run: pnpm install -r --no-frozen-lockfile
3131
- name: Setup Node Env
32-
uses: actions/[email protected].2
32+
uses: actions/[email protected].3
3333
with:
3434
node-version: 14
3535
registry-url: https://registry.npmjs.org/

.github/workflows/publish-packages.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -37,7 +37,7 @@ jobs:
3737
key: ${{ runner.os }}-pnpm-store-${{ hashFiles('**/pnpm-lock.yaml') }}
3838
restore-keys: |
3939
${{ runner.os }}-pnpm-store-
40-
- uses: actions/[email protected].2
40+
- uses: actions/[email protected].3
4141
with:
4242
node-version: 18
4343
registry-url: https://registry.npmjs.org/

.github/workflows/pull-request-checks.yaml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -35,7 +35,7 @@ jobs:
3535
done
3636
3737
echo "files=${files}" >> $GITHUB_ENV
38-
- uses: rojopolis/spellcheck-github-actions@0.38.0
38+
- uses: rojopolis/spellcheck-github-actions@0.40.0
3939
name: Spellcheck
4040
if: ${{ env.files }}
4141
with:
@@ -70,7 +70,7 @@ jobs:
7070
- name: Install dependencies
7171
run: pnpm install -r
7272
- name: Setup Node Env
73-
uses: actions/[email protected].2
73+
uses: actions/[email protected].3
7474
with:
7575
node-version: 18
7676
registry-url: https://registry.npmjs.org/

blog/pi/poetry.lock

Lines changed: 219 additions & 37 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

blog/pi/pyproject.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -22,7 +22,7 @@ snowflake-connector-python = "^3.0.2"
2222
openapi3-parser = "^1.1.6"
2323
plotly = "^5.14.0"
2424
scikit-learn = "^1.5.0"
25-
torch = "^2.0.0"
25+
torch = "^2.2.0"
2626
matplotlib = "^3.7.1"
2727
scikit-optimize = "^0.9.0"
2828
supabase = "^1.2.0"

components/_1crm/README.md

Lines changed: 11 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,11 @@
1+
# Overview
2+
3+
The 1CRM API enables robust integration of 1CRM systems with external applications, facilitating automated workflows and data synchronization. With Pipedream, you can leverage this API to connect 1CRM with hundreds of other services, automate repetitive tasks, streamline sales processes, and enhance customer relationship management. By creating workflows on Pipedream, you can trigger actions in 1CRM based on events from other apps, manipulate and analyze CRM data, and improve overall business efficiency without manual intervention.
4+
5+
# Example Use Cases
6+
7+
- **Lead Sync from Google Forms to 1CRM**: Automatically create a new lead in 1CRM whenever a Google Form is submitted. This workflow can capture information such as name, email, and phone number directly into your CRM, helping your sales team follow up promptly.
8+
9+
- **Customer Support Ticket Creation**: When a customer sends an email to a designated support address, parse the email content using Pipedream and create a support case in 1CRM. This ensures that every customer issue is tracked and managed systematically within 1CRM without manual data entry.
10+
11+
- **Slack Notifications for New Opportunities**: Set up a workflow where new opportunities created in 1CRM trigger a notification in a Slack channel. This keeps your team instantly informed about new sales prospects and can accelerate the response time, enhancing the chance to close deals quicker.

components/_1crm/_1crm.app.mjs

Lines changed: 11 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,11 @@
1+
export default {
2+
type: "app",
3+
app: "_1crm",
4+
propDefinitions: {},
5+
methods: {
6+
// this.$auth contains connected account data
7+
authKeys() {
8+
console.log(Object.keys(this.$auth));
9+
},
10+
},
11+
};

components/_1crm/package.json

Lines changed: 15 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,15 @@
1+
{
2+
"name": "@pipedream/_1crm",
3+
"version": "0.0.1",
4+
"description": "Pipedream 1CRM Components",
5+
"main": "_1crm.app.mjs",
6+
"keywords": [
7+
"pipedream",
8+
"_1crm"
9+
],
10+
"homepage": "https://pipedream.com/apps/_1crm",
11+
"author": "Pipedream <[email protected]> (https://pipedream.com/)",
12+
"publishConfig": {
13+
"access": "public"
14+
}
15+
}

0 commit comments

Comments
 (0)