Skip to content

Commit 6357cd7

Browse files
committed
Merge branch 'master' into hubspot-limit-initial-deal-events
2 parents dfb21bb + 885e22a commit 6357cd7

File tree

53 files changed

+906
-139
lines changed

Some content is hidden

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

53 files changed

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

components/beeminder/package.json

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

components/connectwise_psa/package.json

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

components/connectwise_psa/sources/common/base.mjs

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -41,6 +41,7 @@ export default {
4141
const results = this.connectwise.paginate({
4242
resourceFn,
4343
params,
44+
max,
4445
});
4546
let items = [];
4647
for await (const item of results) {

components/connectwise_psa/sources/new-contact-created/new-contact-created.mjs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@ export default {
66
key: "connectwise_psa-new-contact-created",
77
name: "New Contact Created",
88
description: "Emit new event when a new contact is created in Connectwise.",
9-
version: "0.0.1",
9+
version: "0.0.2",
1010
type: "source",
1111
dedupe: "unique",
1212
methods: {

components/connectwise_psa/sources/new-project-created/new-project-created.mjs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@ export default {
66
key: "connectwise_psa-new-project-created",
77
name: "New Project Created",
88
description: "Emit new event when a new project is created in Connectwise.",
9-
version: "0.0.1",
9+
version: "0.0.2",
1010
type: "source",
1111
dedupe: "unique",
1212
methods: {

components/connectwise_psa/sources/new-ticket-created/new-ticket-created.mjs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@ export default {
66
key: "connectwise_psa-new-ticket-created",
77
name: "New Ticket Created",
88
description: "Emit new event when a new ticket is created in Connectwise.",
9-
version: "0.0.1",
9+
version: "0.0.2",
1010
type: "source",
1111
dedupe: "unique",
1212
methods: {
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: "cratedb_cloud",
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/cratedb_cloud",
3+
"version": "0.0.1",
4+
"description": "Pipedream CrateDB Cloud Components",
5+
"main": "cratedb_cloud.app.mjs",
6+
"keywords": [
7+
"pipedream",
8+
"cratedb_cloud"
9+
],
10+
"homepage": "https://pipedream.com/apps/cratedb_cloud",
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: "cyberark_certificate_manager",
4+
propDefinitions: {},
5+
methods: {
6+
// this.$auth contains connected account data
7+
authKeys() {
8+
console.log(Object.keys(this.$auth));
9+
},
10+
},
11+
};

0 commit comments

Comments
 (0)