diff --git a/apps/api/v2/src/ee/bookings/2024-04-15/inputs/create-booking.input.ts b/apps/api/v2/src/ee/bookings/2024-04-15/inputs/create-booking.input.ts index e6ee8d02b3..eb12c1e915 100644 --- a/apps/api/v2/src/ee/bookings/2024-04-15/inputs/create-booking.input.ts +++ b/apps/api/v2/src/ee/bookings/2024-04-15/inputs/create-booking.input.ts @@ -228,12 +228,12 @@ export class CreateBookingInput_2024_04_15 { @ApiPropertyOptional() crmOwnerRecordType?: string; - @ApiPropertyOptional({ + /* @ApiPropertyOptional({ type: [Number], description: "For round robin event types, filter available hosts to only consider the specified subset of host user IDs. This allows you to book with specific hosts within a round robin event type.", example: [1, 2, 3], - }) + }) */ @ApiHideProperty() @IsOptional() @IsArray() diff --git a/docs/api-reference/v2/openapi.json b/docs/api-reference/v2/openapi.json index ee89be31c6..95c1f73a63 100644 --- a/docs/api-reference/v2/openapi.json +++ b/docs/api-reference/v2/openapi.json @@ -3270,19 +3270,6 @@ "type": "string" } }, - { - "name": "rrHostSubsetIds", - "required": false, - "in": "query", - "description": "For round robin event types, filter available slots to only consider the specified subset of host user IDs. This allows you to get availability for specific hosts within a round robin event type.", - "example": [1, 2, 3], - "schema": { - "type": "array", - "items": { - "type": "number" - } - } - }, { "name": "queueResponse", "required": false, @@ -6825,19 +6812,6 @@ "type": "string" } }, - { - "name": "rrHostSubsetIds", - "required": false, - "in": "query", - "description": "For round robin event types, filter available slots to only consider the specified subset of host user IDs. This allows you to get availability for specific hosts within a round robin event type.", - "example": [1, 2, 3], - "schema": { - "type": "array", - "items": { - "type": "number" - } - } - }, { "name": "queueResponse", "required": false, @@ -13344,19 +13318,6 @@ "type": "string" } }, - { - "name": "rrHostSubsetIds", - "required": false, - "in": "query", - "description": "For round robin event types, filter available slots to only consider the specified subset of host user IDs. This allows you to get availability for specific hosts within a round robin event type.", - "example": [1, 2, 3], - "schema": { - "type": "array", - "items": { - "type": "number" - } - } - }, { "name": "routingFormId", "required": true, @@ -19702,10 +19663,6 @@ "rescheduleWithSameRoundRobinHost": { "type": "boolean", "description": "Rescheduled events will be assigned to the same host as initially scheduled." - }, - "rrHostSubsetEnabled": { - "type": "boolean", - "description": "For round robin event types, enable filtering available hosts to only consider a specified subset of host user IDs. This allows you to book with specific hosts within a round robin event type." } }, "required": [ @@ -21719,10 +21676,6 @@ "rescheduleWithSameRoundRobinHost": { "type": "boolean", "description": "Rescheduled events will be assigned to the same host as initially scheduled." - }, - "rrHostSubsetEnabled": { - "type": "boolean", - "description": "For round robin event types, enable filtering available hosts to only consider a specified subset of host user IDs. This allows you to book with specific hosts within a round robin event type." } }, "required": ["lengthInMinutes", "title", "slug", "schedulingType"] @@ -22186,10 +22139,6 @@ "rescheduleWithSameRoundRobinHost": { "type": "boolean", "description": "Rescheduled events will be assigned to the same host as initially scheduled." - }, - "rrHostSubsetEnabled": { - "type": "boolean", - "description": "For round robin event types, enable filtering available hosts to only consider a specified subset of host user IDs. This allows you to book with specific hosts within a round robin event type." } } }, @@ -28002,14 +27951,6 @@ "type": "string", "description": "Email verification code required when event type has email verification enabled.", "example": "123456" - }, - "rrHostSubsetIds": { - "description": "For round robin event types, filter available hosts to only consider the specified subset of host user IDs. This allows you to book with specific hosts within a round robin event type.", - "example": [1, 2, 3], - "type": "array", - "items": { - "type": "number" - } } }, "required": ["start", "attendee"] @@ -28134,14 +28075,6 @@ "description": "Email verification code required when event type has email verification enabled.", "example": "123456" }, - "rrHostSubsetIds": { - "description": "For round robin event types, filter available hosts to only consider the specified subset of host user IDs. This allows you to book with specific hosts within a round robin event type.", - "example": [1, 2, 3], - "type": "array", - "items": { - "type": "number" - } - }, "instant": { "type": "boolean", "description": "Flag indicating if the booking is an instant booking. Only available for team events.", @@ -28270,14 +28203,6 @@ "description": "Email verification code required when event type has email verification enabled.", "example": "123456" }, - "rrHostSubsetIds": { - "description": "For round robin event types, filter available hosts to only consider the specified subset of host user IDs. This allows you to book with specific hosts within a round robin event type.", - "example": [1, 2, 3], - "type": "array", - "items": { - "type": "number" - } - }, "recurrenceCount": { "type": "number", "description": "The number of recurrences. If not provided then event type recurrence count will be used. Can't be more than\n event type recurrence count", diff --git a/packages/platform/types/bookings/2024-08-13/inputs/create-booking.input.ts b/packages/platform/types/bookings/2024-08-13/inputs/create-booking.input.ts index 01d1561826..b25971ea82 100644 --- a/packages/platform/types/bookings/2024-08-13/inputs/create-booking.input.ts +++ b/packages/platform/types/bookings/2024-08-13/inputs/create-booking.input.ts @@ -395,12 +395,12 @@ export class CreateBookingInput_2024_08_13 { @IsString() emailVerificationCode?: string; - @ApiPropertyOptional({ + /* @ApiPropertyOptional({ type: [Number], description: "For round robin event types, filter available hosts to only consider the specified subset of host user IDs. This allows you to book with specific hosts within a round robin event type.", example: [1, 2, 3], - }) + }) */ @ApiHideProperty() @IsOptional() @IsArray() diff --git a/packages/platform/types/event-types/event-types_2024_06_14/inputs/create-event-type.input.ts b/packages/platform/types/event-types/event-types_2024_06_14/inputs/create-event-type.input.ts index 54dd1d3624..14636fdd67 100644 --- a/packages/platform/types/event-types/event-types_2024_06_14/inputs/create-event-type.input.ts +++ b/packages/platform/types/event-types/event-types_2024_06_14/inputs/create-event-type.input.ts @@ -642,10 +642,10 @@ export class CreateTeamEventTypeInput_2024_06_14 extends BaseCreateEventTypeInpu @IsBoolean() @IsOptional() - @DocsPropertyOptional({ + /* @DocsPropertyOptional({ description: "For round robin event types, enable filtering available hosts to only consider a specified subset of host user IDs. This allows you to book with specific hosts within a round robin event type.", - }) + }) */ @ApiHideProperty() rrHostSubsetEnabled?: boolean; } diff --git a/packages/platform/types/event-types/event-types_2024_06_14/inputs/update-event-type.input.ts b/packages/platform/types/event-types/event-types_2024_06_14/inputs/update-event-type.input.ts index a235f12d67..415cf53b6b 100644 --- a/packages/platform/types/event-types/event-types_2024_06_14/inputs/update-event-type.input.ts +++ b/packages/platform/types/event-types/event-types_2024_06_14/inputs/update-event-type.input.ts @@ -560,10 +560,10 @@ export class UpdateTeamEventTypeInput_2024_06_14 extends BaseUpdateEventTypeInpu @IsBoolean() @IsOptional() - @DocsPropertyOptional({ + /* @DocsPropertyOptional({ description: "For round robin event types, enable filtering available hosts to only consider a specified subset of host user IDs. This allows you to book with specific hosts within a round robin event type.", - }) + }) */ @ApiHideProperty() rrHostSubsetEnabled?: boolean; } diff --git a/packages/platform/types/event-types/event-types_2024_06_14/outputs/event-type.output.ts b/packages/platform/types/event-types/event-types_2024_06_14/outputs/event-type.output.ts index fbfff1a604..175f22402e 100644 --- a/packages/platform/types/event-types/event-types_2024_06_14/outputs/event-type.output.ts +++ b/packages/platform/types/event-types/event-types_2024_06_14/outputs/event-type.output.ts @@ -554,10 +554,10 @@ export class TeamEventTypeOutput_2024_06_14 extends BaseEventTypeOutput_2024_06_ @IsBoolean() @IsOptional() - @ApiPropertyOptional({ + /* @ApiPropertyOptional({ description: "For round robin event types, enable filtering available hosts to only consider a specified subset of host user IDs. This allows you to book with specific hosts within a round robin event type.", - }) + }) */ @ApiHideProperty() rrHostSubsetEnabled?: boolean; } diff --git a/packages/platform/types/slots/slots-2024-04-15/inputs/index.ts b/packages/platform/types/slots/slots-2024-04-15/inputs/index.ts index d088474650..8c041852fe 100644 --- a/packages/platform/types/slots/slots-2024-04-15/inputs/index.ts +++ b/packages/platform/types/slots/slots-2024-04-15/inputs/index.ts @@ -218,12 +218,12 @@ export class GetAvailableSlotsInput_2024_04_15 { @IsArray() @IsNumber({}, { each: true }) @IsOptional() - @ApiPropertyOptional({ + /* @ApiPropertyOptional({ type: [Number], description: "For round robin event types, filter available slots to only consider the specified subset of host user IDs. This allows you to get availability for specific hosts within a round robin event type.", example: [1, 2, 3], - }) + }) */ @ApiHideProperty() rrHostSubsetIds?: number[]; } diff --git a/packages/platform/types/slots/slots-2024-09-04/inputs/get-slots.input.ts b/packages/platform/types/slots/slots-2024-09-04/inputs/get-slots.input.ts index 1cbdcb3fab..46d8e578f8 100644 --- a/packages/platform/types/slots/slots-2024-09-04/inputs/get-slots.input.ts +++ b/packages/platform/types/slots/slots-2024-09-04/inputs/get-slots.input.ts @@ -101,12 +101,12 @@ export class GetAvailableSlotsInput_2024_09_04 { @IsArray() @IsNumber({}, { each: true }) @IsOptional() - @ApiPropertyOptional({ + /* @ApiPropertyOptional({ type: [Number], description: "For round robin event types, filter available slots to only consider the specified subset of host user IDs. This allows you to get availability for specific hosts within a round robin event type.", example: [1, 2, 3], - }) + }) */ @ApiHideProperty() rrHostSubsetIds?: number[]; }