Skip to content

Commit 1b98d09

Browse files
authored
Merge branch 'master' into feat/component/airweave
2 parents 42c2ecc + 650445a commit 1b98d09

File tree

29 files changed

+83
-25
lines changed

29 files changed

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

components/codefresh/package.json

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

components/cometapi/package.json

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

components/zoom_admin/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@pipedream/zoom_admin",
3-
"version": "0.12.0",
3+
"version": "0.13.0",
44
"description": "Pipedream Zoom_admin Components",
55
"main": "zoom_admin.app.mjs",
66
"keywords": [

components/zoom_admin/sources/account-created/account-created.mjs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@ export default {
55
type: "source",
66
name: "Account Created",
77
description: "Emits an event each time a sub-account is created in your master account",
8-
version: "0.1.8",
8+
version: "0.1.9",
99
dedupe: "unique", // Dedupe based on account ID
1010
props: {
1111
zoomAdmin,

components/zoom_admin/sources/account-settings-updated/account-settings-updated.mjs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@ export default {
55
type: "source",
66
name: "Account Settings Updated",
77
description: "Emits an event each time your master account or sub-account settings are updated",
8-
version: "0.1.7",
8+
version: "0.1.8",
99
props: {
1010
zoomAdmin,
1111
zoomApphook: {

components/zoom_admin/sources/account-updated/account-updated.mjs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@ export default {
55
type: "source",
66
name: "Account Updated",
77
description: "Emits an event each time your master account or sub-account profile is updated",
8-
version: "0.1.7",
8+
version: "0.1.8",
99
props: {
1010
zoomAdmin,
1111
zoomApphook: {

components/zoom_admin/sources/custom-events/custom-events.mjs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@ export default {
55
type: "source",
66
name: "Custom Events",
77
description: "Listen for any events tied to your Zoom account",
8-
version: "0.1.7",
8+
version: "0.1.8",
99
props: {
1010
zoomAdmin,
1111
eventNameOptions: {

components/zoom_admin/sources/meeting-created/meeting-created.mjs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@ export default {
55
type: "source",
66
name: "Meeting Created",
77
description: "Emits an event each time a meeting is created in your Zoom account",
8-
version: "0.1.7",
8+
version: "0.1.8",
99
dedupe: "unique", // Dedupe based on meeting ID
1010
props: {
1111
zoomAdmin,

0 commit comments

Comments
 (0)