Skip to content

Commit 005ef63

Browse files
Merge branch 'master' into ENG-8702,ENG-8703,ENG-8704
2 parents ce3e304 + 3352100 commit 005ef63

File tree

105 files changed

+823
-169
lines changed

Some content is hidden

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

105 files changed

+823
-169
lines changed

components/calendly_v2/actions/create-scheduling-link/create-scheduling-link.mjs

Lines changed: 6 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,10 +1,11 @@
11
import calendly from "../../calendly_v2.app.mjs";
2+
import { ConfigurationError } from "@pipedream/platform";
23

34
export default {
45
key: "calendly_v2-create-scheduling-link",
56
name: "Create a Scheduling Link",
67
description: "Creates a single-use scheduling link. [See the documentation](https://calendly.stoplight.io/docs/api-docs/b3A6MzQyNTM0OQ-create-single-use-scheduling-link)",
7-
version: "0.0.6",
8+
version: "0.0.7",
89
type: "action",
910
props: {
1011
calendly,
@@ -23,6 +24,10 @@ export default {
2324
},
2425
},
2526
async run({ $ }) {
27+
if (!this.owner) {
28+
throw new ConfigurationError("Owner prop is required. Please provide the unique identifier of an event type.");
29+
}
30+
2631
const params = {};
2732
params.max_event_count = this.maxEventCount;
2833
params.owner = this.owner;

components/calendly_v2/package.json

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

components/campaignhq/package.json

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@pipedream/campaignhq",
3-
"version": "0.1.1",
3+
"version": "0.1.2",
44
"description": "Pipedream CampaignHQ Components",
55
"main": "campaignhq.app.mjs",
66
"keywords": [
@@ -11,5 +11,8 @@
1111
"author": "Pipedream <[email protected]> (https://pipedream.com/)",
1212
"publishConfig": {
1313
"access": "public"
14+
},
15+
"dependencies": {
16+
"@pipedream/platform": "^3.0.3"
1417
}
1518
}

components/clickup/actions/create-chat-view-comment/create-chat-view-comment.mjs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@ export default {
55
key: "clickup-create-chat-view-comment",
66
name: "Create Chat View Comment",
77
description: "Creates a chat view comment. [See the documentation](https://clickup.com/api) in **Comments / Create Chat View Comment** section.",
8-
version: "0.0.10",
8+
version: "0.0.11",
99
type: "action",
1010
props: {
1111
...common.props,

components/clickup/actions/create-checklist-item/create-checklist-item.mjs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@ export default {
55
key: "clickup-create-checklist-item",
66
name: "Create Checklist Item",
77
description: "Creates a new item in a checklist. [See the documentation](https://clickup.com/api) in **Checklists / Create Checklist Item** section.",
8-
version: "0.0.10",
8+
version: "0.0.11",
99
type: "action",
1010
props: {
1111
...common.props,

components/clickup/actions/create-checklist/create-checklist.mjs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@ export default {
55
key: "clickup-create-checklist",
66
name: "Create Checklist",
77
description: "Creates a new checklist in a task. [See the documentation](https://clickup.com/api) in **Checklists / Create Checklist** section.",
8-
version: "0.0.10",
8+
version: "0.0.11",
99
type: "action",
1010
props: {
1111
...common.props,

components/clickup/actions/create-folder/create-folder.mjs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@ export default {
55
key: "clickup-create-folder",
66
name: "Create Folder",
77
description: "Creates a new folder. [See the documentation](https://clickup.com/api) in **Folders / Create Folder** section.",
8-
version: "0.0.10",
8+
version: "0.0.11",
99
type: "action",
1010
props: {
1111
...common.props,

components/clickup/actions/create-list-comment/create-list-comment.mjs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@ export default {
66
key: "clickup-create-list-comment",
77
name: "Create List Comment",
88
description: "Creates a list comment. [See the documentation](https://clickup.com/api) in **Comments / Create List Comment** section.",
9-
version: "0.0.10",
9+
version: "0.0.11",
1010
type: "action",
1111
props: {
1212
...common.props,

components/clickup/actions/create-list/create-list.mjs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@ export default {
55
key: "clickup-create-list",
66
name: "Create List",
77
description: "Creates a new list. [See the documentation](https://clickup.com/api) in **Lists / Create List** section.",
8-
version: "0.0.15",
8+
version: "0.0.16",
99
type: "action",
1010
props: {
1111
clickup,

components/clickup/actions/create-space/create-space.mjs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ export default {
44
key: "clickup-create-space",
55
name: "Create Space",
66
description: "Creates a new space. [See the documentation](https://clickup.com/api) in **Spaces / Create Space** section.",
7-
version: "0.0.10",
7+
version: "0.0.11",
88
type: "action",
99
props: {
1010
...common.props,

0 commit comments

Comments
 (0)