chore: documentation of event-type bookingRequiresAuthentication (#23942)

* chore: incomplete documentation of event-type bookingRequiresAuthentication setting

* fixup! chore: incomplete documentation of event-type bookingRequiresAuthentication setting
This commit is contained in:
Morgan
2025-09-19 18:06:32 +00:00
committed by GitHub
parent 56821553fe
commit 8c943e8817
3 changed files with 3 additions and 3 deletions
@@ -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;
}
@@ -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;
}
@@ -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;
}