Skip to content

Commit f7b2f27

Browse files
hemantmmRyukemeisterPeerRichsahitya-chandraromitg2
authored
fix(api-v2): correctly parse ISO timezone offsets when rescheduling bookings (calcom#28333)
* fix(api-v2): correctly parse ISO timezone offsets when rescheduling bookings closes: calcom#28310 * fix: clarify reschedule endpoint requires UTC timezone Signed-off-by: Hemant M Mehta <hemant29mehta@gmail.com> --------- Signed-off-by: Hemant M Mehta <hemant29mehta@gmail.com> Co-authored-by: Rajiv Sahal <sahalrajiv-extc@atharvacoe.ac.in> Co-authored-by: Peer Richelsen <peeroke@gmail.com> Co-authored-by: Sahitya Chandra <sahityajb@gmail.com> Co-authored-by: Romit <85230081+romitg2@users.noreply.github.com>
1 parent ae01092 commit f7b2f27

1 file changed

Lines changed: 4 additions & 4 deletions

File tree

packages/platform/types/bookings/2024-08-13/inputs/reschedule-booking.input.ts

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -8,8 +8,8 @@ owner will have to confirm the rescheduled booking.`;
88
export class RescheduleBookingInput_2024_08_13 {
99
@IsDateString()
1010
@ApiProperty({
11-
description: "Start time in ISO 8601 format for the new booking",
12-
example: "2024-08-13T10:00:00Z",
11+
description: "The start time of the booking in ISO 8601 format in UTC timezone.",
12+
example: "2024-08-13T09:00:00Z",
1313
})
1414
start!: string;
1515

@@ -47,8 +47,8 @@ export class RescheduleBookingInput_2024_08_13 {
4747
export class RescheduleSeatedBookingInput_2024_08_13 {
4848
@IsDateString()
4949
@ApiProperty({
50-
description: "Start time in ISO 8601 format for the new booking",
51-
example: "2024-08-13T10:00:00Z",
50+
description: "The start time of the booking in ISO 8601 format in UTC timezone.",
51+
example: "2024-08-13T09:00:00Z",
5252
})
5353
start!: string;
5454

0 commit comments

Comments
 (0)