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 d6c9f3ff6c..860bb6920e 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 @@ -478,7 +478,7 @@ class BaseCreateEventTypeInput { @DocsPropertyOptional({ default: false, description: - "Boolean to require authentication for booking this event type via api. If true, only authenticated users can book this event type.", + "Boolean to require authentication for booking this event type via api. If true, only authenticated users who are the event-type owner or org/team admin/owner can book this event type.", }) bookingRequiresAuthentication?: 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 c91b85bc7d..62c0cb4a8b 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 @@ -425,7 +425,7 @@ class BaseUpdateEventTypeInput { @DocsPropertyOptional({ default: false, description: - "Boolean to require authentication for booking this event type via api. If true, only authenticated users can book this event type.", + "Boolean to require authentication for booking this event type via api. If true, only authenticated users who are the event-type owner or org/team admin/owner can book this event type.", }) bookingRequiresAuthentication?: 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 09bf5fe172..4610cb2959 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 @@ -449,7 +449,7 @@ class BaseEventTypeOutput_2024_06_14 { @IsBoolean() @DocsProperty({ description: - "Boolean to require authentication for booking this event type via api. If true, only authenticated users can book this event type.", + "Boolean to require authentication for booking this event type via api. If true, only authenticated users who are the event-type owner or org/team admin/owner can book this event type.", }) bookingRequiresAuthentication?: boolean; }