Skip to content

Commit e49777a

Browse files
authored
Update event type ID type in Cal.com (#17542)
* Bump versions for booking actions and update event type ID type in cal_com component * Bump version to 0.0.4 for booking components
1 parent 44f21b4 commit e49777a

File tree

11 files changed

+13
-16
lines changed

11 files changed

+13
-16
lines changed

components/cal_com/actions/create-booking/create-booking.mjs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@ export default {
55
key: "cal_com-create-booking",
66
name: "Create Booking",
77
description: "Create a new booking. [See the documentation](https://developer.cal.com/api/api-reference/bookings#create-a-new-booking)",
8-
version: "0.0.3",
8+
version: "0.0.4",
99
type: "action",
1010
props: {
1111
calCom,

components/cal_com/actions/delete-booking/delete-booking.mjs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ export default {
44
key: "cal_com-delete-booking",
55
name: "Delete Booking",
66
description: "Delete an existing booking by its ID. [See the documentation](https://developer.cal.com/api/api-reference/bookings)",
7-
version: "0.0.3",
7+
version: "0.0.4",
88
type: "action",
99
props: {
1010
calCom,

components/cal_com/actions/get-bookable-slots/get-bookable-slots.mjs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ export default {
44
key: "cal_com-get-bookable-slots",
55
name: "Get Bookable Slots",
66
description: "Retrieves all bookable slots between a datetime range. [See the documentation](https://cal.com/docs/api-reference/v1/slots/get-all-bookable-slots-between-a-datetime-range#get-all-bookable-slots-between-a-datetime-range)",
7-
version: "0.0.1",
7+
version: "0.0.2",
88
type: "action",
99
props: {
1010
app,

components/cal_com/actions/get-booking/get-booking.mjs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ export default {
44
key: "cal_com-get-booking",
55
name: "Get Booking",
66
description: "Retrieve a booking by its ID. [See the documentation](https://developer.cal.com/api/api-reference/bookings#find-a-booking)",
7-
version: "0.0.3",
7+
version: "0.0.4",
88
type: "action",
99
props: {
1010
calCom,

components/cal_com/cal_com.app.mjs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -25,7 +25,7 @@ export default {
2525
},
2626
},
2727
eventTypeId: {
28-
type: "string",
28+
type: "integer",
2929
label: "Event Type ID",
3030
description: "The identifier of the event type of the new booking",
3131
async options() {

components/cal_com/package.json

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

components/cal_com/sources/booking-cancelled/booking-cancelled.mjs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@ export default {
55
key: "cal_com-booking-cancelled",
66
name: "Booking Cancelled",
77
description: "Emit new event when a booking is cancelled.",
8-
version: "0.0.3",
8+
version: "0.0.4",
99
type: "source",
1010
dedupe: "unique",
1111
methods: {

components/cal_com/sources/booking-created/booking-created.mjs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@ export default {
55
key: "cal_com-booking-created",
66
name: "New Booking Created",
77
description: "Emit new event when a new booking is created.",
8-
version: "0.0.3",
8+
version: "0.0.4",
99
type: "source",
1010
dedupe: "unique",
1111
methods: {

components/cal_com/sources/booking-ended/booking-ended.mjs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@ export default {
55
key: "cal_com-booking-ended",
66
name: "Booking Ended",
77
description: "Emit new event when a booking ends.",
8-
version: "0.0.3",
8+
version: "0.0.4",
99
type: "source",
1010
dedupe: "unique",
1111
methods: {

components/cal_com/sources/booking-rescheduled/booking-rescheduled.mjs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@ export default {
55
key: "cal_com-booking-rescheduled",
66
name: "Booking Rescheduled",
77
description: "Emit new event when a booking is rescheduled.",
8-
version: "0.0.3",
8+
version: "0.0.4",
99
type: "source",
1010
dedupe: "unique",
1111
methods: {

0 commit comments

Comments
 (0)