From 8c943e881728b4e058e1674b044784e601aa9fb0 Mon Sep 17 00:00:00 2001 From: Morgan <33722304+ThyMinimalDev@users.noreply.github.com> Date: Fri, 19 Sep 2025 21:06:32 +0300 Subject: [PATCH] chore: documentation of event-type bookingRequiresAuthentication (#23942) * chore: incomplete documentation of event-type bookingRequiresAuthentication setting * fixup! chore: incomplete documentation of event-type bookingRequiresAuthentication setting --- .../event-types_2024_06_14/inputs/create-event-type.input.ts | 2 +- .../event-types_2024_06_14/inputs/update-event-type.input.ts | 2 +- .../event-types_2024_06_14/outputs/event-type.output.ts | 2 +- 3 files changed, 3 insertions(+), 3 deletions(-) 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; }