Skip to content

Commit 106807f

Browse files
committed
Merge remote-tracking branch 'origin/master' into issue-12412
2 parents af63e85 + 6dd2880 commit 106807f

File tree

193 files changed

+7383
-521
lines changed

Some content is hidden

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

193 files changed

+7383
-521
lines changed

components/_21risk/_21risk.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: "_21risk",
4+
propDefinitions: {},
5+
methods: {
6+
// this.$auth contains connected account data
7+
authKeys() {
8+
console.log(Object.keys(this.$auth));
9+
},
10+
},
11+
};

components/_21risk/package.json

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

components/_2chat/_2chat.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: "_2chat",
4+
propDefinitions: {},
5+
methods: {
6+
// this.$auth contains connected account data
7+
authKeys() {
8+
console.log(Object.keys(this.$auth));
9+
},
10+
},
11+
};

components/_2chat/package.json

Lines changed: 15 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,15 @@
1+
{
2+
"name": "@pipedream/_2chat",
3+
"version": "0.0.1",
4+
"description": "Pipedream 2Chat Components",
5+
"main": "_2chat.app.mjs",
6+
"keywords": [
7+
"pipedream",
8+
"_2chat"
9+
],
10+
"homepage": "https://pipedream.com/apps/_2chat",
11+
"author": "Pipedream <[email protected]> (https://pipedream.com/)",
12+
"publishConfig": {
13+
"access": "public"
14+
}
15+
}
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: "adobe_photoshop",
4+
propDefinitions: {},
5+
methods: {
6+
// this.$auth contains connected account data
7+
authKeys() {
8+
console.log(Object.keys(this.$auth));
9+
},
10+
},
11+
};
Lines changed: 15 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,15 @@
1+
{
2+
"name": "@pipedream/adobe_photoshop",
3+
"version": "0.0.1",
4+
"description": "Pipedream Adobe Photoshop Components",
5+
"main": "adobe_photoshop.app.mjs",
6+
"keywords": [
7+
"pipedream",
8+
"adobe_photoshop"
9+
],
10+
"homepage": "https://pipedream.com/apps/adobe_photoshop",
11+
"author": "Pipedream <[email protected]> (https://pipedream.com/)",
12+
"publishConfig": {
13+
"access": "public"
14+
}
15+
}

components/airship/airship.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: "airship",
4+
propDefinitions: {},
5+
methods: {
6+
// this.$auth contains connected account data
7+
authKeys() {
8+
console.log(Object.keys(this.$auth));
9+
},
10+
},
11+
};

components/airship/package.json

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

components/anthropic/actions/chat/chat.mjs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@ import constants from "../common/constants.mjs";
33

44
export default {
55
name: "Chat",
6-
version: "0.0.6",
6+
version: "0.0.8",
77
key: "anthropic-chat",
88
description: "The Chat API. [See the documentation](https://docs.anthropic.com/claude/reference/messages_post)",
99
type: "action",

components/anthropic/actions/common/constants.mjs

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,6 @@
11
export default {
22
MESSAGE_MODELS: [
3+
"claude-3-5-sonnet-20240620",
34
"claude-3-opus-20240229",
45
"claude-3-sonnet-20240229",
56
"claude-3-haiku-20240307",

0 commit comments

Comments
 (0)