Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ export default {
key: "calendly_v2-create-invitee-no-show",
name: "Create Invitee No Show",
description: "Marks an Invitee as a No Show in Calendly. [See the documentation](https://calendly.stoplight.io/docs/api-docs/cebd8c3170790-create-invitee-no-show).",
version: "0.0.1",
version: "0.0.2",
type: "action",
props: {
calendly,
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -3,8 +3,8 @@ import calendly from "../../calendly_v2.app.mjs";
export default {
key: "calendly_v2-create-scheduling-link",
name: "Create a Scheduling Link",
description: "Creates a single-use scheduling link. [See the docs](https://calendly.stoplight.io/docs/api-docs/b3A6MzQyNTM0OQ-create-single-use-scheduling-link)",
version: "0.0.3",
description: "Creates a single-use scheduling link. [See the documentation](https://calendly.stoplight.io/docs/api-docs/b3A6MzQyNTM0OQ-create-single-use-scheduling-link)",
version: "0.0.4",
type: "action",
props: {
calendly,
Expand Down
4 changes: 2 additions & 2 deletions components/calendly_v2/actions/get-event/get-event.mjs
Original file line number Diff line number Diff line change
Expand Up @@ -5,8 +5,8 @@ import calendly from "../../calendly_v2.app.mjs";
export default {
key: "calendly_v2-get-event",
name: "Get Event",
description: "Gets information about an Event associated with a URI. [See docs here](https://developer.calendly.com/api-docs/e2f95ebd44914-get-event).",
version: "0.1.3",
description: "Gets information about an Event associated with a URI. [See the documentation](https://developer.calendly.com/api-docs/e2f95ebd44914-get-event).",
version: "0.1.4",
type: "action",
props: {
calendly,
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -3,8 +3,8 @@ import calendly from "../../calendly_v2.app.mjs";
export default {
key: "calendly_v2-list-event-invitees",
name: "List Event Invitees",
description: "List invitees for an event. [See the docs](https://calendly.stoplight.io/docs/api-docs/b3A6NTkxNDEx-list-event-invitees)",
version: "0.0.3",
description: "List invitees for an event. [See the documentation](https://calendly.stoplight.io/docs/api-docs/b3A6NTkxNDEx-list-event-invitees)",
version: "0.0.4",
type: "action",
props: {
calendly,
Expand Down
10 changes: 6 additions & 4 deletions components/calendly_v2/actions/list-events/list-events.mjs
Original file line number Diff line number Diff line change
Expand Up @@ -3,8 +3,8 @@ import calendly from "../../calendly_v2.app.mjs";
export default {
key: "calendly_v2-list-events",
name: "List Events",
description: "List events for an user. [See the docs](https://calendly.stoplight.io/docs/api-docs/b3A6NTkxNDEy-list-events)",
version: "0.0.3",
description: "List events for an user. [See the documentation](https://calendly.stoplight.io/docs/api-docs/b3A6NTkxNDEy-list-events)",
version: "0.0.4",
type: "action",
props: {
calendly,
Expand All @@ -22,7 +22,7 @@ export default {
organization: c.organization,
}),
],
description: "Returns events for a specified user, or leave blank for your own events",
description: "Returns events for a specified user",
optional: true,
},
inviteeEmail: {
Expand Down Expand Up @@ -52,7 +52,9 @@ export default {
},
},
async run({ $ }) {
const params = {};
const params = {
organization: this.organization,
};
if (this.inviteeEmail) params.invitee_email = this.inviteeEmail;
if (this.status) params.status = this.status;
if (this.paginate) params.paginate = this.paginate;
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ export default {
key: "calendly_v2-list-webhook-subscriptions",
name: "List Webhook Subscriptions",
description: "Get a list of Webhook Subscriptions for an Organization or User with a UUID.",
version: "0.1.3",
version: "0.1.4",
type: "action",
props: {
calendly_v2: {
Expand Down
4 changes: 3 additions & 1 deletion components/calendly_v2/calendly_v2.app.mjs
Original file line number Diff line number Diff line change
Expand Up @@ -241,7 +241,9 @@ export default {
async listEvents(params, uuid, $) {
const user = uuid
? this._buildUserUri(uuid)
: await this.defaultUser($);
: !params?.organization
? await this.defaultUser($)
: undefined;

const opts = {
path: "/scheduled_events",
Expand Down
4 changes: 2 additions & 2 deletions components/calendly_v2/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@pipedream/calendly_v2",
"version": "1.2.0",
"version": "1.2.1",
"description": "Pipedream Calendly V2 Components",
"main": "calendly_v2.app.mjs",
"keywords": [
Expand All @@ -13,7 +13,7 @@
"access": "public"
},
"dependencies": {
"@pipedream/platform": "^1.5.1",
"@pipedream/platform": "^3.0.3",
"url": "^0.11.0"
}
}
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ export default {
key: "calendly_v2-invitee-canceled",
name: "New Invitee Canceled",
description: "Emit new event when an event is canceled.",
version: "0.0.1",
version: "0.0.2",
type: "source",
dedupe: "unique",
props: {
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ export default {
key: "calendly_v2-invitee-created",
name: "New Invitee Created",
description: "Emit new event when a new event is scheduled.",
version: "0.0.2",
version: "0.0.3",
type: "source",
dedupe: "unique",
props: {
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ export default {
key: "calendly_v2-new-event-scheduled",
name: "New Event Scheduled",
description: "Emit new event when a event is scheduled.",
version: "0.0.5",
version: "0.0.6",
type: "source",
dedupe: "unique",
props: {
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ export default {
key: "calendly_v2-routing-form-submission-created",
name: "New Routing Form Submission Created",
description: "Emit new event when a new routing form submission is created.",
version: "0.0.1",
version: "0.0.2",
type: "source",
dedupe: "unique",
methods: {
Expand Down
4 changes: 2 additions & 2 deletions pnpm-lock.yaml

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

Loading