@linebundle-sdk/ts 1.0.0-rc.14 → 1.0.0-rc.15

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
package/esm/index.d.ts CHANGED
@@ -8922,6 +8922,10 @@ type EventsListData = {
8922
8922
  * Filter by publish status. Omit to return both published and standalone drafts.
8923
8923
  */
8924
8924
  status?: 'published' | 'draft';
8925
+ /**
8926
+ * Filter by visibility level: 10=private, 20=members-only, 30=organization, 40=public. Omit or pass 0 to return all visible rows.
8927
+ */
8928
+ visibility?: number;
8925
8929
  };
8926
8930
  url: '/api/v1/events';
8927
8931
  };
@@ -10774,6 +10778,10 @@ type PlacesListData = {
10774
10778
  * Filter by publish status. Omit to return both published and standalone drafts.
10775
10779
  */
10776
10780
  status?: 'published' | 'draft';
10781
+ /**
10782
+ * Filter by visibility level: 10=private, 20=members-only, 30=organization, 40=public. Omit or pass 0 to return all visible rows.
10783
+ */
10784
+ visibility?: number;
10777
10785
  };
10778
10786
  url: '/api/v1/places';
10779
10787
  };
@@ -11083,6 +11091,35 @@ type ProfilesGetResponses = {
11083
11091
  200: Profile;
11084
11092
  };
11085
11093
  type ProfilesGetResponse = ProfilesGetResponses[keyof ProfilesGetResponses];
11094
+ type PublicAnnouncementsListData = {
11095
+ body?: never;
11096
+ path?: never;
11097
+ query?: {
11098
+ /**
11099
+ * Page number (1-based)
11100
+ */
11101
+ page?: number;
11102
+ /**
11103
+ * Items per page
11104
+ */
11105
+ size?: number;
11106
+ };
11107
+ url: '/api/v1/public/announcements';
11108
+ };
11109
+ type PublicAnnouncementsListErrors = {
11110
+ /**
11111
+ * Error
11112
+ */
11113
+ default: ErrorModel;
11114
+ };
11115
+ type PublicAnnouncementsListError = PublicAnnouncementsListErrors[keyof PublicAnnouncementsListErrors];
11116
+ type PublicAnnouncementsListResponses = {
11117
+ /**
11118
+ * OK
11119
+ */
11120
+ 200: PagedBodySpaceAnnouncementDetail;
11121
+ };
11122
+ type PublicAnnouncementsListResponse = PublicAnnouncementsListResponses[keyof PublicAnnouncementsListResponses];
11086
11123
  type PublicEventsListData = {
11087
11124
  body?: never;
11088
11125
  path?: never;
@@ -11111,6 +11148,10 @@ type PublicEventsListData = {
11111
11148
  * Filter by publish status. Omit to return both published and standalone drafts.
11112
11149
  */
11113
11150
  status?: 'published' | 'draft';
11151
+ /**
11152
+ * Filter by visibility level: 10=private, 20=members-only, 30=organization, 40=public. Omit or pass 0 to return all visible rows.
11153
+ */
11154
+ visibility?: number;
11114
11155
  };
11115
11156
  url: '/api/v1/public/events';
11116
11157
  };
@@ -11181,6 +11222,10 @@ type PublicSpacesListData = {
11181
11222
  * Filter by publish status. Omit to return both published and standalone drafts.
11182
11223
  */
11183
11224
  status?: 'published' | 'draft';
11225
+ /**
11226
+ * Filter by visibility level: 10=private, 20=members-only, 30=organization, 40=public. Omit or pass 0 to return all visible rows.
11227
+ */
11228
+ visibility?: number;
11184
11229
  };
11185
11230
  url: '/api/v1/public/spaces';
11186
11231
  };
@@ -11794,6 +11839,10 @@ type SpacesListData = {
11794
11839
  * Filter by publish status. Omit to return both published and standalone drafts.
11795
11840
  */
11796
11841
  status?: 'published' | 'draft';
11842
+ /**
11843
+ * Filter by visibility level: 10=private, 20=members-only, 30=organization, 40=public. Omit or pass 0 to return all visible rows.
11844
+ */
11845
+ visibility?: number;
11797
11846
  };
11798
11847
  url: '/api/v1/spaces';
11799
11848
  };
@@ -13443,6 +13492,14 @@ declare class Profiles extends HeyApiClient {
13443
13492
  private _me?;
13444
13493
  get me(): Me;
13445
13494
  }
13495
+ declare class Announcements2 extends HeyApiClient {
13496
+ /**
13497
+ * List public announcements
13498
+ *
13499
+ * Returns published announcements from all spaces that the owning organisation has made publicly visible. No authentication required.
13500
+ */
13501
+ list<ThrowOnError extends boolean = false>(options?: Options<PublicAnnouncementsListData, ThrowOnError>): RequestResult<PublicAnnouncementsListResponses, PublicAnnouncementsListErrors, ThrowOnError, "fields">;
13502
+ }
13446
13503
  declare class Events2 extends HeyApiClient {
13447
13504
  /**
13448
13505
  * List public events
@@ -13472,6 +13529,8 @@ declare class Spaces extends HeyApiClient {
13472
13529
  get<ThrowOnError extends boolean = false>(options: Options<PublicSpacesGetData, ThrowOnError>): RequestResult<PublicSpacesGetResponses, PublicSpacesGetErrors, ThrowOnError, "fields">;
13473
13530
  }
13474
13531
  declare class Public extends HeyApiClient {
13532
+ private _announcements?;
13533
+ get announcements(): Announcements2;
13475
13534
  private _events?;
13476
13535
  get events(): Events2;
13477
13536
  private _spaces?;
@@ -13803,4 +13862,4 @@ type LinebundleOptions = {
13803
13862
  */
13804
13863
  declare function createLinebundle({ token, orgId, baseUrl, }: LinebundleOptions): Linebundle;
13805
13864
 
13806
- export { type AcceptEventManagerInviteInputBody, type AcceptEventManagerInviteInputBodyWritable, type AcceptSeriesManagerInviteInputBody, type AcceptSeriesManagerInviteInputBodyWritable, type AcceptSpaceManagerInviteInputBody, type AcceptSpaceManagerInviteInputBodyWritable, type ActionDefinition, type AddAttendeeInputBody, type AddAttendeeInputBodyWritable, type AddDocumentInputBody, type AddEventLinkInputBody, type AddEventLinkInputBodyWritable, type AddEventManagerInputBody, type AddEventManagerInputBodyWritable, type AddMemberInputBody, type AddMemberInputBodyWritable, type AddMilestoneInputBody, type AddMilestoneInputBodyWritable, type AddSeriesAttendeeInputBody, type AddSeriesAttendeeInputBodyWritable, type AddSeriesDocumentInputBody, type AddSeriesLinkInputBody, type AddSeriesLinkInputBodyWritable, type AddSeriesMilestoneInputBody, type AddSeriesMilestoneInputBodyWritable, type AddSpaceAnnouncementInputBody, type AddSpaceAnnouncementInputBodyWritable, type AddSpaceContactInputBody, type AddSpaceContactInputBodyWritable, type AddSpaceEventInputBody, type AddSpaceEventInputBodyWritable, type AddSpaceInputBody, type AddSpaceInputBodyWritable, type AddSpaceManagerInputBody, type AddSpaceManagerInputBodyWritable, Analytics, type AnalyticsCountsData, type AnalyticsCountsError, type AnalyticsCountsErrors, type AnalyticsCountsResponse, type AnalyticsCountsResponses, type AnalyticsDashboardData, type AnalyticsDashboardError, type AnalyticsDashboardErrors, type AnalyticsDashboardResponse, type AnalyticsDashboardResponses, type AnalyticsOverviewData, type AnalyticsOverviewError, type AnalyticsOverviewErrors, type AnalyticsOverviewResponse, type AnalyticsOverviewResponses, type Announcement, type AnnouncementCreate, type AnnouncementCreateWritable, type AnnouncementPatch, type AnnouncementPatchWritable, type AnnouncementSummary, type AnnouncementWritable, Announcements, type AnnouncementsCreateData, type AnnouncementsCreateError, type AnnouncementsCreateErrors, type AnnouncementsCreateResponse, type AnnouncementsCreateResponses, type AnnouncementsDeleteData, type AnnouncementsDeleteError, type AnnouncementsDeleteErrors, type AnnouncementsDeleteResponse, type AnnouncementsDeleteResponses, type AnnouncementsGetData, type AnnouncementsGetError, type AnnouncementsGetErrors, type AnnouncementsGetResponse, type AnnouncementsGetResponses, type AnnouncementsListData, type AnnouncementsListError, type AnnouncementsListErrors, type AnnouncementsListResponse, type AnnouncementsListResponses, type AnnouncementsPatchData, type AnnouncementsPatchError, type AnnouncementsPatchErrors, type AnnouncementsPatchResponse, type AnnouncementsPatchResponses, type AnnouncementsPublishData, type AnnouncementsPublishError, type AnnouncementsPublishErrors, type AnnouncementsPublishResponse, type AnnouncementsPublishResponses, type AnnouncementsUploadCoverData, type AnnouncementsUploadCoverError, type AnnouncementsUploadCoverErrors, type AnnouncementsUploadCoverResponse, type AnnouncementsUploadCoverResponses, type Attendee, type AttendeeDetail, type AttendeeWritable, Audit, type AuditListData, type AuditListError, type AuditListErrors, type AuditListResponse, type AuditListResponses, Auth, type AuthContext, type AuthContextData, type AuthContextError, type AuthContextErrors, type AuthContextResponse, type AuthContextResponses, type AuthContextWritable, type AuthMeData, type AuthMeError, type AuthMeErrors, type AuthMeResponse, type AuthMeResponses, Automation, type AutomationCreateRuleData, type AutomationCreateRuleError, type AutomationCreateRuleErrors, type AutomationCreateRuleResponse, type AutomationCreateRuleResponses, type AutomationDeleteRuleData, type AutomationDeleteRuleError, type AutomationDeleteRuleErrors, type AutomationDeleteRuleResponse, type AutomationDeleteRuleResponses, type AutomationExecuteRuleData, type AutomationExecuteRuleError, type AutomationExecuteRuleErrors, type AutomationExecuteRuleResponse, type AutomationExecuteRuleResponses, type AutomationGetRuleData, type AutomationGetRuleError, type AutomationGetRuleErrors, type AutomationGetRuleResponse, type AutomationGetRuleResponses, type AutomationListActionsData, type AutomationListActionsError, type AutomationListActionsErrors, type AutomationListActionsResponse, type AutomationListActionsResponses, type AutomationListExecutionsData, type AutomationListExecutionsError, type AutomationListExecutionsErrors, type AutomationListExecutionsResponse, type AutomationListExecutionsResponses, type AutomationListRulesData, type AutomationListRulesError, type AutomationListRulesErrors, type AutomationListRulesResponse, type AutomationListRulesResponses, type AutomationListTriggersData, type AutomationListTriggersError, type AutomationListTriggersErrors, type AutomationListTriggersResponse, type AutomationListTriggersResponses, type AutomationUpdateRuleData, type AutomationUpdateRuleError, type AutomationUpdateRuleErrors, type AutomationUpdateRuleResponse, type AutomationUpdateRuleResponses, type AvailabilityOutputBody, type AvailabilityOutputBodyWritable, type Booking, type BookingWritable, Bookings, type BookingsCheckAvailabilityData, type BookingsCheckAvailabilityError, type BookingsCheckAvailabilityErrors, type BookingsCheckAvailabilityResponse, type BookingsCheckAvailabilityResponses, type BookingsCreateData, type BookingsCreateError, type BookingsCreateErrors, type BookingsCreateResponse, type BookingsCreateResponses, type BookingsDeleteData, type BookingsDeleteError, type BookingsDeleteErrors, type BookingsDeleteResponse, type BookingsDeleteResponses, type BookingsGetData, type BookingsGetError, type BookingsGetErrors, type BookingsGetResponse, type BookingsGetResponses, type BookingsListData, type BookingsListError, type BookingsListErrors, type BookingsListResponse, type BookingsListResponses, type BookingsPlaceScheduleData, type BookingsPlaceScheduleError, type BookingsPlaceScheduleErrors, type BookingsPlaceScheduleResponse, type BookingsPlaceScheduleResponses, type BookingsUpdateData, type BookingsUpdateError, type BookingsUpdateErrors, type BookingsUpdateResponse, type BookingsUpdateResponses, type BulkAttendeeBody, type BulkAttendeeBodyWritable, type BulkStatusBody, type BulkStatusBodyWritable, type CalendarEventsOutputBody, type CalendarEventsOutputBodyWritable, type CheckAvailabilityInputBody, type CheckAvailabilityInputBodyWritable, type CheckInInputBody, type CheckInSeriesAttendeeInputBody, type ClientOptions, type Contact, type ContactBody, type ContactBodyWritable, type ContactSummary, type ContactWritable, Contacts, type ContactsCreateData, type ContactsCreateError, type ContactsCreateErrors, type ContactsCreateResponse, type ContactsCreateResponses, type ContactsDeleteData, type ContactsDeleteError, type ContactsDeleteErrors, type ContactsDeleteResponse, type ContactsDeleteResponses, type ContactsGetData, type ContactsGetError, type ContactsGetErrors, type ContactsGetResponse, type ContactsGetResponses, type ContactsListData, type ContactsListError, type ContactsListErrors, type ContactsListResponse, type ContactsListResponses, type ContactsSearchData, type ContactsSearchError, type ContactsSearchErrors, type ContactsSearchResponse, type ContactsSearchResponses, type ContactsToggleFavoriteData, type ContactsToggleFavoriteError, type ContactsToggleFavoriteErrors, type ContactsToggleFavoriteResponse, type ContactsToggleFavoriteResponses, type ContactsUpdateData, type ContactsUpdateError, type ContactsUpdateErrors, type ContactsUpdateResponse, type ContactsUpdateResponses, type Counts, type CountsWritable, type CreateBookingInputBody, type CreateBookingInputBodyWritable, type CreateClientConfig, type CreateCredentialInputBody, type CreateCredentialInputBodyWritable, type CreateEventInputBody, type CreateEventInputBodyWritable, type CreateInviteBody, type CreateInviteBodyWritable, type CreateOrgBody, type CreateOrgBodyWritable, type CreatePlaceInputBody, type CreatePlaceInputBodyWritable, type CreateRuleInput, type CreateRuleInputWritable, type CreateSeriesInput, type CreateSeriesInputWritable, type CreateSpaceInputBody, type CreateSpaceInputBodyWritable, type CreateWithSeriesInputBody, type CreateWithSeriesInputBodyWritable, type CreateWithSeriesOutputBody, type CreateWithSeriesOutputBodyWritable, type CredentialView, type CredentialViewWritable, Credentials, type CredentialsCreateData, type CredentialsCreateError, type CredentialsCreateErrors, type CredentialsCreateResponse, type CredentialsCreateResponses, type CredentialsGetData, type CredentialsGetError, type CredentialsGetErrors, type CredentialsGetResponse, type CredentialsGetResponses, type CredentialsListData, type CredentialsListError, type CredentialsListErrors, type CredentialsListResponse, type CredentialsListResponses, type CredentialsRevokeData, type CredentialsRevokeError, type CredentialsRevokeErrors, type CredentialsRevokeResponse, type CredentialsRevokeResponses, type Dashboard, type DashboardWritable, type Entry, type ErrorDetail, type ErrorModel, type ErrorModelWritable, type Event, type EventAutomationAction, type EventAutomationRule, type EventAutomationRuleWritable, type EventAutomationTemplate, type EventAutomationTrigger, type EventAutomationUpsertInput, type EventAutomationUpsertInputWritable, type EventLink, type EventLinkTargetSummary, type EventLinkWithTarget, type EventLinkWritable, type EventManager, type EventManagerPermissionsOutputBody, type EventManagerPermissionsOutputBodyWritable, type EventManagerWritable, type EventPatch, type EventPatchWritable, type EventSeries, type EventSeriesWritable, type EventSpaceLink, type EventSpaceLinkDetail, type EventSpaceLinkWritable, type EventSpaceSummary, type EventSummary, type EventWritable, Events, Events2, type EventsAcceptManagerInviteData, type EventsAcceptManagerInviteError, type EventsAcceptManagerInviteErrors, type EventsAcceptManagerInviteResponse, type EventsAcceptManagerInviteResponses, type EventsAddAttendeeData, type EventsAddAttendeeError, type EventsAddAttendeeErrors, type EventsAddAttendeeResponse, type EventsAddAttendeeResponses, type EventsAddDocumentData, type EventsAddDocumentError, type EventsAddDocumentErrors, type EventsAddDocumentResponses, type EventsAddLinkData, type EventsAddLinkError, type EventsAddLinkErrors, type EventsAddLinkResponse, type EventsAddLinkResponses, type EventsAddManagerData, type EventsAddManagerError, type EventsAddManagerErrors, type EventsAddManagerResponse, type EventsAddManagerResponses, type EventsAddMilestoneData, type EventsAddMilestoneError, type EventsAddMilestoneErrors, type EventsAddMilestoneResponse, type EventsAddMilestoneResponses, type EventsAddSpaceData, type EventsAddSpaceError, type EventsAddSpaceErrors, type EventsAddSpaceResponse, type EventsAddSpaceResponses, type EventsArchiveData, type EventsArchiveError, type EventsArchiveErrors, type EventsArchiveResponse, type EventsArchiveResponses, type EventsAutomationTemplatesData, type EventsAutomationTemplatesError, type EventsAutomationTemplatesErrors, type EventsAutomationTemplatesResponse, type EventsAutomationTemplatesResponses, type EventsBulkAddAttendeesData, type EventsBulkAddAttendeesError, type EventsBulkAddAttendeesErrors, type EventsBulkAddAttendeesResponse, type EventsBulkAddAttendeesResponses, type EventsBulkRemoveAttendeesData, type EventsBulkRemoveAttendeesError, type EventsBulkRemoveAttendeesErrors, type EventsBulkRemoveAttendeesResponse, type EventsBulkRemoveAttendeesResponses, type EventsBulkUpdateAttendeeStatusData, type EventsBulkUpdateAttendeeStatusError, type EventsBulkUpdateAttendeeStatusErrors, type EventsBulkUpdateAttendeeStatusResponse, type EventsBulkUpdateAttendeeStatusResponses, type EventsCalendarData, type EventsCalendarError, type EventsCalendarErrors, type EventsCalendarResponse, type EventsCalendarResponses, type EventsCheckInAttendeeData, type EventsCheckInAttendeeError, type EventsCheckInAttendeeErrors, type EventsCheckInAttendeeResponse, type EventsCheckInAttendeeResponses, type EventsCreateAutomationData, type EventsCreateAutomationError, type EventsCreateAutomationErrors, type EventsCreateAutomationResponse, type EventsCreateAutomationResponses, type EventsCreateData, type EventsCreateError, type EventsCreateErrors, type EventsCreateResponse, type EventsCreateResponses, type EventsCreateSeriesData, type EventsCreateSeriesError, type EventsCreateSeriesErrors, type EventsCreateSeriesResponse, type EventsCreateSeriesResponses, type EventsCreateWithSeriesData, type EventsCreateWithSeriesError, type EventsCreateWithSeriesErrors, type EventsCreateWithSeriesResponse, type EventsCreateWithSeriesResponses, type EventsDeleteAutomationData, type EventsDeleteAutomationError, type EventsDeleteAutomationErrors, type EventsDeleteAutomationResponse, type EventsDeleteAutomationResponses, type EventsDeleteData, type EventsDeleteError, type EventsDeleteErrors, type EventsDeleteResponse, type EventsDeleteResponses, type EventsDeleteSeriesData, type EventsDeleteSeriesError, type EventsDeleteSeriesErrors, type EventsDeleteSeriesResponse, type EventsDeleteSeriesResponses, type EventsDiscardData, type EventsDiscardError, type EventsDiscardErrors, type EventsDiscardResponse, type EventsDiscardResponses, type EventsExecuteAutomationData, type EventsExecuteAutomationError, type EventsExecuteAutomationErrors, type EventsExecuteAutomationResponse, type EventsExecuteAutomationResponses, type EventsGetAutomationData, type EventsGetAutomationError, type EventsGetAutomationErrors, type EventsGetAutomationResponse, type EventsGetAutomationResponses, type EventsGetData, type EventsGetDraftData, type EventsGetDraftError, type EventsGetDraftErrors, type EventsGetDraftResponse, type EventsGetDraftResponses, type EventsGetError, type EventsGetErrors, type EventsGetManagerData, type EventsGetManagerError, type EventsGetManagerErrors, type EventsGetManagerResponse, type EventsGetManagerResponses, type EventsGetResponse, type EventsGetResponses, type EventsGetSeriesData, type EventsGetSeriesError, type EventsGetSeriesErrors, type EventsGetSeriesResponse, type EventsGetSeriesResponses, type EventsInviteManagerData, type EventsInviteManagerError, type EventsInviteManagerErrors, type EventsInviteManagerResponse, type EventsInviteManagerResponses, type EventsInviteSeriesManagerData, type EventsInviteSeriesManagerError, type EventsInviteSeriesManagerErrors, type EventsInviteSeriesManagerResponse, type EventsInviteSeriesManagerResponses, type EventsListAttendeesData, type EventsListAttendeesError, type EventsListAttendeesErrors, type EventsListAttendeesResponse, type EventsListAttendeesResponses, type EventsListAutomationExecutionsData, type EventsListAutomationExecutionsError, type EventsListAutomationExecutionsErrors, type EventsListAutomationExecutionsResponse, type EventsListAutomationExecutionsResponses, type EventsListAutomationsData, type EventsListAutomationsError, type EventsListAutomationsErrors, type EventsListAutomationsResponse, type EventsListAutomationsResponses, type EventsListData, type EventsListDocumentsData, type EventsListDocumentsError, type EventsListDocumentsErrors, type EventsListDocumentsResponse, type EventsListDocumentsResponses, type EventsListError, type EventsListErrors, type EventsListLinksData, type EventsListLinksError, type EventsListLinksErrors, type EventsListLinksResponse, type EventsListLinksResponses, type EventsListManagersData, type EventsListManagersError, type EventsListManagersErrors, type EventsListManagersResponse, type EventsListManagersResponses, type EventsListMilestonesData, type EventsListMilestonesError, type EventsListMilestonesErrors, type EventsListMilestonesResponse, type EventsListMilestonesResponses, type EventsListOccurrencesData, type EventsListOccurrencesError, type EventsListOccurrencesErrors, type EventsListOccurrencesResponse, type EventsListOccurrencesResponses, type EventsListPendingManagerInvitesData, type EventsListPendingManagerInvitesError, type EventsListPendingManagerInvitesErrors, type EventsListPendingManagerInvitesResponse, type EventsListPendingManagerInvitesResponses, type EventsListResponse, type EventsListResponses, type EventsListSpacesData, type EventsListSpacesError, type EventsListSpacesErrors, type EventsListSpacesResponse, type EventsListSpacesResponses, type EventsManagerPermissionsData, type EventsManagerPermissionsError, type EventsManagerPermissionsErrors, type EventsManagerPermissionsResponse, type EventsManagerPermissionsResponses, type EventsPatchData, type EventsPatchError, type EventsPatchErrors, type EventsPatchMilestoneLifecycleData, type EventsPatchMilestoneLifecycleError, type EventsPatchMilestoneLifecycleErrors, type EventsPatchMilestoneLifecycleResponse, type EventsPatchMilestoneLifecycleResponses, type EventsPatchResponse, type EventsPatchResponses, type EventsPatchSeriesData, type EventsPatchSeriesError, type EventsPatchSeriesErrors, type EventsPatchSeriesResponse, type EventsPatchSeriesResponses, type EventsPublishData, type EventsPublishError, type EventsPublishErrors, type EventsPublishResponse, type EventsPublishResponses, type EventsPublishSeriesData, type EventsPublishSeriesError, type EventsPublishSeriesErrors, type EventsPublishSeriesResponse, type EventsPublishSeriesResponses, type EventsRemoveAttendeeData, type EventsRemoveAttendeeError, type EventsRemoveAttendeeErrors, type EventsRemoveAttendeeResponse, type EventsRemoveAttendeeResponses, type EventsRemoveDocumentData, type EventsRemoveDocumentError, type EventsRemoveDocumentErrors, type EventsRemoveDocumentResponse, type EventsRemoveDocumentResponses, type EventsRemoveLinkData, type EventsRemoveLinkError, type EventsRemoveLinkErrors, type EventsRemoveLinkResponse, type EventsRemoveLinkResponses, type EventsRemoveManagerData, type EventsRemoveManagerError, type EventsRemoveManagerErrors, type EventsRemoveManagerResponse, type EventsRemoveManagerResponses, type EventsRemoveMilestoneData, type EventsRemoveMilestoneError, type EventsRemoveMilestoneErrors, type EventsRemoveMilestoneResponse, type EventsRemoveMilestoneResponses, type EventsRemoveSpaceData, type EventsRemoveSpaceError, type EventsRemoveSpaceErrors, type EventsRemoveSpaceResponse, type EventsRemoveSpaceResponses, type EventsStartEditData, type EventsStartEditError, type EventsStartEditErrors, type EventsStartEditResponse, type EventsStartEditResponses, type EventsUpdateAttendeeStatusData, type EventsUpdateAttendeeStatusError, type EventsUpdateAttendeeStatusErrors, type EventsUpdateAttendeeStatusResponse, type EventsUpdateAttendeeStatusResponses, type EventsUpdateAutomationData, type EventsUpdateAutomationError, type EventsUpdateAutomationErrors, type EventsUpdateAutomationResponse, type EventsUpdateAutomationResponses, type EventsUpdateData, type EventsUpdateError, type EventsUpdateErrors, type EventsUpdateManagerData, type EventsUpdateManagerError, type EventsUpdateManagerErrors, type EventsUpdateManagerResponse, type EventsUpdateManagerResponses, type EventsUpdateMilestoneData, type EventsUpdateMilestoneError, type EventsUpdateMilestoneErrors, type EventsUpdateMilestoneResponse, type EventsUpdateMilestoneResponses, type EventsUpdateResponse, type EventsUpdateResponses, type EventsUploadCoverData, type EventsUploadCoverError, type EventsUploadCoverErrors, type EventsUploadCoverResponse, type EventsUploadCoverResponses, type ExecuteAutomationResponse, type ExecuteAutomationResponseWritable, type ExecuteOutputBody, type ExecuteOutputBodyWritable, type Execution, type FavoriteInputBody, type FavoriteInputBodyWritable, Integrations, type IntegrationsZitadelWebhookData, type IntegrationsZitadelWebhookError, type IntegrationsZitadelWebhookErrors, type IntegrationsZitadelWebhookResponses, type Invite, type InviteEventManagerInputBody, type InviteEventManagerInputBodyWritable, type InviteSeriesManagerInputBody, type InviteSeriesManagerInputBodyWritable, type InviteSpaceManagerInputBody, type InviteSpaceManagerInputBodyWritable, type InviteWritable, Invites, Linebundle, type LinebundleOptions, type ListInvitesOutputBody, type ListInvitesOutputBodyWritable, type ListOrgsOutputBody, type ListOrgsOutputBodyWritable, type ListOutputBody, type ListOutputBodyWritable, type ListPendingEventManagerInvitesOutputBody, type ListPendingEventManagerInvitesOutputBodyWritable, type ListPendingManagerInvitesOutputBody, type ListPendingManagerInvitesOutputBodyWritable, type LivenessData, type LivenessError, type LivenessErrors, type LivenessOutputBody, type LivenessOutputBodyWritable, type LivenessResponse, type LivenessResponses, Me, type Member, type MemberWritable, type Milestone, type MilestoneDetail, type MilestoneEventSummary, type MilestoneWritable, type NewCredentialView, type NewCredentialViewWritable, type Options$1 as Options, type Options as Options2, type OptionsWritable, type Organization, type OrganizationWritable, Organizations, type OrganizationsArchiveData, type OrganizationsArchiveError, type OrganizationsArchiveErrors, type OrganizationsArchiveResponse, type OrganizationsArchiveResponses, type OrganizationsCreateData, type OrganizationsCreateError, type OrganizationsCreateErrors, type OrganizationsCreateResponse, type OrganizationsCreateResponses, type OrganizationsGetData, type OrganizationsGetError, type OrganizationsGetErrors, type OrganizationsGetResponse, type OrganizationsGetResponses, type OrganizationsInvitesCreateData, type OrganizationsInvitesCreateError, type OrganizationsInvitesCreateErrors, type OrganizationsInvitesCreateResponse, type OrganizationsInvitesCreateResponses, type OrganizationsInvitesDeleteData, type OrganizationsInvitesDeleteError, type OrganizationsInvitesDeleteErrors, type OrganizationsInvitesDeleteResponse, type OrganizationsInvitesDeleteResponses, type OrganizationsInvitesListData, type OrganizationsInvitesListError, type OrganizationsInvitesListErrors, type OrganizationsInvitesListResponse, type OrganizationsInvitesListResponses, type OrganizationsListData, type OrganizationsListError, type OrganizationsListErrors, type OrganizationsListResponse, type OrganizationsListResponses, type OrganizationsUpdateData, type OrganizationsUpdateError, type OrganizationsUpdateErrors, type OrganizationsUpdateResponse, type OrganizationsUpdateResponses, type Overview, type OverviewActivity, type OverviewEvent, type OverviewSpace, type OverviewWritable, type PagedBodyAnnouncement, type PagedBodyAnnouncementWritable, type PagedBodyAttendeeDetail, type PagedBodyAttendeeDetailWritable, type PagedBodyContact, type PagedBodyContactWritable, type PagedBodyEvent, type PagedBodyEventAutomationRule, type PagedBodyEventAutomationRuleWritable, type PagedBodyEventManager, type PagedBodyEventManagerWritable, type PagedBodyEventSpaceLinkDetail, type PagedBodyEventSpaceLinkDetailWritable, type PagedBodyEventWritable, type PagedBodyExecution, type PagedBodyExecutionWritable, type PagedBodyMember, type PagedBodyMemberWritable, type PagedBodyMilestoneDetail, type PagedBodyMilestoneDetailWritable, type PagedBodyPlace, type PagedBodyPlaceWritable, type PagedBodyRule, type PagedBodyRuleWritable, type PagedBodySpace, type PagedBodySpaceActivity, type PagedBodySpaceActivityWritable, type PagedBodySpaceAnnouncementDetail, type PagedBodySpaceAnnouncementDetailWritable, type PagedBodySpaceContactDetail, type PagedBodySpaceContactDetailWritable, type PagedBodySpaceEventLinkDetail, type PagedBodySpaceEventLinkDetailWritable, type PagedBodySpaceManager, type PagedBodySpaceManagerWritable, type PagedBodySpaceWritable, type PaginatedOccurrences, type PaginatedOccurrencesWritable, type PatchMilestoneInputBody, type PatchMilestoneInputBodyWritable, type PatchSeriesMilestoneInputBody, type PatchSeriesMilestoneInputBodyWritable, type PendingEventManagerInvite, type PendingManagerInvite, type PendingManagerInvitesOutputBody, type PendingManagerInvitesOutputBodyWritable, type PendingSeriesManagerInvite, type Place, type PlaceWritable, Places, type PlacesArchiveData, type PlacesArchiveError, type PlacesArchiveErrors, type PlacesArchiveResponse, type PlacesArchiveResponses, type PlacesCreateData, type PlacesCreateError, type PlacesCreateErrors, type PlacesCreateResponse, type PlacesCreateResponses, type PlacesDeleteData, type PlacesDeleteError, type PlacesDeleteErrors, type PlacesDeleteResponse, type PlacesDeleteResponses, type PlacesGetData, type PlacesGetError, type PlacesGetErrors, type PlacesGetResponse, type PlacesGetResponses, type PlacesListData, type PlacesListError, type PlacesListErrors, type PlacesListResponse, type PlacesListResponses, type PlacesPublishData, type PlacesPublishError, type PlacesPublishErrors, type PlacesPublishResponse, type PlacesPublishResponses, type PlacesUpdateData, type PlacesUpdateError, type PlacesUpdateErrors, type PlacesUpdateResponse, type PlacesUpdateResponses, type Profile, type ProfileWritable, Profiles, type ProfilesGetData, type ProfilesGetError, type ProfilesGetErrors, type ProfilesGetResponse, type ProfilesGetResponses, type ProfilesListData, type ProfilesListError, type ProfilesListErrors, type ProfilesListResponse, type ProfilesListResponses, type ProfilesMeAcceptTermsData, type ProfilesMeAcceptTermsError, type ProfilesMeAcceptTermsErrors, type ProfilesMeAcceptTermsResponse, type ProfilesMeAcceptTermsResponses, type ProfilesMeGetData, type ProfilesMeGetError, type ProfilesMeGetErrors, type ProfilesMeGetResponse, type ProfilesMeGetResponses, type ProfilesMeUpdateData, type ProfilesMeUpdateError, type ProfilesMeUpdateErrors, type ProfilesMeUpdateResponse, type ProfilesMeUpdateResponses, type ProfilesSearchData, type ProfilesSearchError, type ProfilesSearchErrors, type ProfilesSearchResponse, type ProfilesSearchResponses, Public, type PublicEventSummary, type PublicEventsGetData, type PublicEventsGetError, type PublicEventsGetErrors, type PublicEventsGetResponse, type PublicEventsGetResponses, type PublicEventsListData, type PublicEventsListError, type PublicEventsListErrors, type PublicEventsListResponse, type PublicEventsListResponses, type PublicOrganizationSummary, type PublicOwnerSummary, type PublicPersonPreview, type PublicSpaceStats, type PublicSpaceSummary, type PublicSpacesGetData, type PublicSpacesGetError, type PublicSpacesGetErrors, type PublicSpacesGetResponse, type PublicSpacesGetResponses, type PublicSpacesListData, type PublicSpacesListError, type PublicSpacesListErrors, type PublicSpacesListResponse, type PublicSpacesListResponses, type PublicViewerCapabilities, type PublishAnnouncementInputBody, type PublishAnnouncementInputBodyWritable, type Pulse, type ReadinessData, type ReadinessError, type ReadinessErrors, type ReadinessOutputBody, type ReadinessOutputBodyWritable, type ReadinessResponse, type ReadinessResponses, type ResourceStats, type Rule, type RuleWritable, type Schedule, type ScheduleInput, type SearchOutputBody, type SearchOutputBodyWritable, Series, type SeriesAcceptManagerInviteData, type SeriesAcceptManagerInviteError, type SeriesAcceptManagerInviteErrors, type SeriesAcceptManagerInviteResponse, type SeriesAcceptManagerInviteResponses, type SeriesAddAttendeeData, type SeriesAddAttendeeError, type SeriesAddAttendeeErrors, type SeriesAddAttendeeResponse, type SeriesAddAttendeeResponses, type SeriesAddDocumentData, type SeriesAddDocumentError, type SeriesAddDocumentErrors, type SeriesAddDocumentResponses, type SeriesAddLinkData, type SeriesAddLinkError, type SeriesAddLinkErrors, type SeriesAddLinkResponse, type SeriesAddLinkResponses, type SeriesAddMilestoneData, type SeriesAddMilestoneError, type SeriesAddMilestoneErrors, type SeriesAddMilestoneResponse, type SeriesAddMilestoneResponses, type SeriesBulkAddAttendeesData, type SeriesBulkAddAttendeesError, type SeriesBulkAddAttendeesErrors, type SeriesBulkAddAttendeesResponse, type SeriesBulkAddAttendeesResponses, type SeriesCheckInAttendeeData, type SeriesCheckInAttendeeError, type SeriesCheckInAttendeeErrors, type SeriesCheckInAttendeeResponse, type SeriesCheckInAttendeeResponses, type SeriesGetByIdData, type SeriesGetByIdError, type SeriesGetByIdErrors, type SeriesGetByIdResponse, type SeriesGetByIdResponses, type SeriesListAttendeesData, type SeriesListAttendeesError, type SeriesListAttendeesErrors, type SeriesListAttendeesResponse, type SeriesListAttendeesResponses, type SeriesListDocumentsData, type SeriesListDocumentsError, type SeriesListDocumentsErrors, type SeriesListDocumentsResponse, type SeriesListDocumentsResponses, type SeriesListLinksData, type SeriesListLinksError, type SeriesListLinksErrors, type SeriesListLinksResponse, type SeriesListLinksResponses, type SeriesListMilestonesData, type SeriesListMilestonesError, type SeriesListMilestonesErrors, type SeriesListMilestonesResponse, type SeriesListMilestonesResponses, type SeriesListPendingManagerInvitesData, type SeriesListPendingManagerInvitesError, type SeriesListPendingManagerInvitesErrors, type SeriesListPendingManagerInvitesResponse, type SeriesListPendingManagerInvitesResponses, type SeriesPatch, type SeriesPatchMilestoneLifecycleData, type SeriesPatchMilestoneLifecycleError, type SeriesPatchMilestoneLifecycleErrors, type SeriesPatchMilestoneLifecycleResponse, type SeriesPatchMilestoneLifecycleResponses, type SeriesPatchWritable, type SeriesRemoveAttendeeData, type SeriesRemoveAttendeeError, type SeriesRemoveAttendeeErrors, type SeriesRemoveAttendeeResponse, type SeriesRemoveAttendeeResponses, type SeriesRemoveDocumentData, type SeriesRemoveDocumentError, type SeriesRemoveDocumentErrors, type SeriesRemoveDocumentResponse, type SeriesRemoveDocumentResponses, type SeriesRemoveLinkData, type SeriesRemoveLinkError, type SeriesRemoveLinkErrors, type SeriesRemoveLinkResponse, type SeriesRemoveLinkResponses, type SeriesRemoveMilestoneData, type SeriesRemoveMilestoneError, type SeriesRemoveMilestoneErrors, type SeriesRemoveMilestoneResponse, type SeriesRemoveMilestoneResponses, type SeriesUpdateAttendeeStatusData, type SeriesUpdateAttendeeStatusError, type SeriesUpdateAttendeeStatusErrors, type SeriesUpdateAttendeeStatusResponse, type SeriesUpdateAttendeeStatusResponses, type SeriesUpdateMilestoneData, type SeriesUpdateMilestoneError, type SeriesUpdateMilestoneErrors, type SeriesUpdateMilestoneResponse, type SeriesUpdateMilestoneResponses, type SeriesWithOccurrences, type SeriesWithOccurrencesWritable, type Space, type SpaceActivity, type SpaceActivityContributor, type SpaceActivityLogItem, type SpaceActivityLogResult, type SpaceActivityLogResultWritable, type SpaceActivitySummary, type SpaceAnalyticsAttentionRow, type SpaceAnalyticsEventRow, type SpaceAnalyticsGrowthPoint, type SpaceAnalyticsResult, type SpaceAnalyticsResultWritable, type SpaceAnalyticsSummary, type SpaceAnalyticsTrendPoint, type SpaceAnnouncementDetail, type SpaceAnnouncementDetailWritable, type SpaceContact, type SpaceContactDetail, type SpaceContactSummary, type SpaceContactWritable, type SpaceEventLink, type SpaceEventLinkDetail, type SpaceEventLinkWritable, type SpaceEventSummary, type SpaceManager, type SpaceManagerPermissionsOutputBody, type SpaceManagerPermissionsOutputBodyWritable, type SpaceManagerWritable, type SpacePage, type SpacePageWritable, type SpacePatch, type SpacePatchWritable, type SpaceSettings, type SpaceSettingsPatch, type SpaceSettingsPatchWritable, type SpaceSettingsWritable, type SpaceSummary, type SpaceWritable, Spaces, Spaces2, type SpacesAcceptManagerInviteData, type SpacesAcceptManagerInviteError, type SpacesAcceptManagerInviteErrors, type SpacesAcceptManagerInviteResponse, type SpacesAcceptManagerInviteResponses, type SpacesAddAnnouncementData, type SpacesAddAnnouncementError, type SpacesAddAnnouncementErrors, type SpacesAddAnnouncementResponse, type SpacesAddAnnouncementResponses, type SpacesAddContactData, type SpacesAddContactError, type SpacesAddContactErrors, type SpacesAddContactResponse, type SpacesAddContactResponses, type SpacesAddEventData, type SpacesAddEventError, type SpacesAddEventErrors, type SpacesAddEventResponse, type SpacesAddEventResponses, type SpacesAddManagerData, type SpacesAddManagerError, type SpacesAddManagerErrors, type SpacesAddManagerResponse, type SpacesAddManagerResponses, type SpacesAddMemberData, type SpacesAddMemberError, type SpacesAddMemberErrors, type SpacesAddMemberResponse, type SpacesAddMemberResponses, type SpacesArchiveData, type SpacesArchiveError, type SpacesArchiveErrors, type SpacesArchiveResponse, type SpacesArchiveResponses, type SpacesCreateData, type SpacesCreateError, type SpacesCreateErrors, type SpacesCreateResponse, type SpacesCreateResponses, type SpacesDeleteData, type SpacesDeleteError, type SpacesDeleteErrors, type SpacesDeleteResponse, type SpacesDeleteResponses, type SpacesDiscardData, type SpacesDiscardError, type SpacesDiscardErrors, type SpacesDiscardResponse, type SpacesDiscardResponses, type SpacesGetAnalyticsData, type SpacesGetAnalyticsError, type SpacesGetAnalyticsErrors, type SpacesGetAnalyticsResponse, type SpacesGetAnalyticsResponses, type SpacesGetData, type SpacesGetDraftData, type SpacesGetDraftError, type SpacesGetDraftErrors, type SpacesGetDraftResponse, type SpacesGetDraftResponses, type SpacesGetError, type SpacesGetErrors, type SpacesGetManagerData, type SpacesGetManagerError, type SpacesGetManagerErrors, type SpacesGetManagerResponse, type SpacesGetManagerResponses, type SpacesGetResponse, type SpacesGetResponses, type SpacesGetSettingsData, type SpacesGetSettingsError, type SpacesGetSettingsErrors, type SpacesGetSettingsResponse, type SpacesGetSettingsResponses, type SpacesInviteManagerData, type SpacesInviteManagerError, type SpacesInviteManagerErrors, type SpacesInviteManagerResponse, type SpacesInviteManagerResponses, type SpacesListActivityData, type SpacesListActivityError, type SpacesListActivityErrors, type SpacesListActivityLogData, type SpacesListActivityLogError, type SpacesListActivityLogErrors, type SpacesListActivityLogResponse, type SpacesListActivityLogResponses, type SpacesListActivityResponse, type SpacesListActivityResponses, type SpacesListAnnouncementsData, type SpacesListAnnouncementsError, type SpacesListAnnouncementsErrors, type SpacesListAnnouncementsResponse, type SpacesListAnnouncementsResponses, type SpacesListChildrenData, type SpacesListChildrenError, type SpacesListChildrenErrors, type SpacesListChildrenResponse, type SpacesListChildrenResponses, type SpacesListContactsData, type SpacesListContactsError, type SpacesListContactsErrors, type SpacesListContactsResponse, type SpacesListContactsResponses, type SpacesListData, type SpacesListError, type SpacesListErrors, type SpacesListEventsData, type SpacesListEventsError, type SpacesListEventsErrors, type SpacesListEventsResponse, type SpacesListEventsResponses, type SpacesListManagersData, type SpacesListManagersError, type SpacesListManagersErrors, type SpacesListManagersResponse, type SpacesListManagersResponses, type SpacesListMembersData, type SpacesListMembersError, type SpacesListMembersErrors, type SpacesListMembersResponse, type SpacesListMembersResponses, type SpacesListPendingManagerInvitesData, type SpacesListPendingManagerInvitesError, type SpacesListPendingManagerInvitesErrors, type SpacesListPendingManagerInvitesResponse, type SpacesListPendingManagerInvitesResponses, type SpacesListResponse, type SpacesListResponses, type SpacesManagerPermissionsData, type SpacesManagerPermissionsError, type SpacesManagerPermissionsErrors, type SpacesManagerPermissionsResponse, type SpacesManagerPermissionsResponses, type SpacesPatchData, type SpacesPatchError, type SpacesPatchErrors, type SpacesPatchResponse, type SpacesPatchResponses, type SpacesPatchSettingsData, type SpacesPatchSettingsError, type SpacesPatchSettingsErrors, type SpacesPatchSettingsResponse, type SpacesPatchSettingsResponses, type SpacesPublishData, type SpacesPublishError, type SpacesPublishErrors, type SpacesPublishResponse, type SpacesPublishResponses, type SpacesRemoveAnnouncementData, type SpacesRemoveAnnouncementError, type SpacesRemoveAnnouncementErrors, type SpacesRemoveAnnouncementResponse, type SpacesRemoveAnnouncementResponses, type SpacesRemoveContactData, type SpacesRemoveContactError, type SpacesRemoveContactErrors, type SpacesRemoveContactResponse, type SpacesRemoveContactResponses, type SpacesRemoveEventData, type SpacesRemoveEventError, type SpacesRemoveEventErrors, type SpacesRemoveEventResponse, type SpacesRemoveEventResponses, type SpacesRemoveManagerData, type SpacesRemoveManagerError, type SpacesRemoveManagerErrors, type SpacesRemoveManagerResponse, type SpacesRemoveManagerResponses, type SpacesRemoveMemberData, type SpacesRemoveMemberError, type SpacesRemoveMemberErrors, type SpacesRemoveMemberResponse, type SpacesRemoveMemberResponses, type SpacesStartEditData, type SpacesStartEditError, type SpacesStartEditErrors, type SpacesStartEditResponse, type SpacesStartEditResponses, type SpacesUpdateData, type SpacesUpdateError, type SpacesUpdateErrors, type SpacesUpdateManagerData, type SpacesUpdateManagerError, type SpacesUpdateManagerErrors, type SpacesUpdateManagerResponse, type SpacesUpdateManagerResponses, type SpacesUpdateResponse, type SpacesUpdateResponses, type TriggerDefinition, type UpdateAttendeeStatusInputBody, type UpdateAttendeeStatusInputBodyWritable, type UpdateBookingInputBody, type UpdateBookingInputBodyWritable, type UpdateEventInputBody, type UpdateEventInputBodyWritable, type UpdateEventManagerInputBody, type UpdateEventManagerInputBodyWritable, type UpdateMeInputBody, type UpdateMeInputBodyWritable, type UpdateMilestoneInputBody, type UpdateMilestoneInputBodyWritable, type UpdateOrgBody, type UpdateOrgBodyWritable, type UpdatePlaceInputBody, type UpdatePlaceInputBodyWritable, type UpdateRuleInput, type UpdateRuleInputWritable, type UpdateSeriesAttendeeStatusInputBody, type UpdateSeriesAttendeeStatusInputBodyWritable, type UpdateSeriesMilestoneInputBody, type UpdateSeriesMilestoneInputBodyWritable, type UpdateSpaceInputBody, type UpdateSpaceInputBodyWritable, type UpdateSpaceManagerInputBody, type UpdateSpaceManagerInputBodyWritable, Zitadel, client, createLinebundle };
13865
+ export { type AcceptEventManagerInviteInputBody, type AcceptEventManagerInviteInputBodyWritable, type AcceptSeriesManagerInviteInputBody, type AcceptSeriesManagerInviteInputBodyWritable, type AcceptSpaceManagerInviteInputBody, type AcceptSpaceManagerInviteInputBodyWritable, type ActionDefinition, type AddAttendeeInputBody, type AddAttendeeInputBodyWritable, type AddDocumentInputBody, type AddEventLinkInputBody, type AddEventLinkInputBodyWritable, type AddEventManagerInputBody, type AddEventManagerInputBodyWritable, type AddMemberInputBody, type AddMemberInputBodyWritable, type AddMilestoneInputBody, type AddMilestoneInputBodyWritable, type AddSeriesAttendeeInputBody, type AddSeriesAttendeeInputBodyWritable, type AddSeriesDocumentInputBody, type AddSeriesLinkInputBody, type AddSeriesLinkInputBodyWritable, type AddSeriesMilestoneInputBody, type AddSeriesMilestoneInputBodyWritable, type AddSpaceAnnouncementInputBody, type AddSpaceAnnouncementInputBodyWritable, type AddSpaceContactInputBody, type AddSpaceContactInputBodyWritable, type AddSpaceEventInputBody, type AddSpaceEventInputBodyWritable, type AddSpaceInputBody, type AddSpaceInputBodyWritable, type AddSpaceManagerInputBody, type AddSpaceManagerInputBodyWritable, Analytics, type AnalyticsCountsData, type AnalyticsCountsError, type AnalyticsCountsErrors, type AnalyticsCountsResponse, type AnalyticsCountsResponses, type AnalyticsDashboardData, type AnalyticsDashboardError, type AnalyticsDashboardErrors, type AnalyticsDashboardResponse, type AnalyticsDashboardResponses, type AnalyticsOverviewData, type AnalyticsOverviewError, type AnalyticsOverviewErrors, type AnalyticsOverviewResponse, type AnalyticsOverviewResponses, type Announcement, type AnnouncementCreate, type AnnouncementCreateWritable, type AnnouncementPatch, type AnnouncementPatchWritable, type AnnouncementSummary, type AnnouncementWritable, Announcements, Announcements2, type AnnouncementsCreateData, type AnnouncementsCreateError, type AnnouncementsCreateErrors, type AnnouncementsCreateResponse, type AnnouncementsCreateResponses, type AnnouncementsDeleteData, type AnnouncementsDeleteError, type AnnouncementsDeleteErrors, type AnnouncementsDeleteResponse, type AnnouncementsDeleteResponses, type AnnouncementsGetData, type AnnouncementsGetError, type AnnouncementsGetErrors, type AnnouncementsGetResponse, type AnnouncementsGetResponses, type AnnouncementsListData, type AnnouncementsListError, type AnnouncementsListErrors, type AnnouncementsListResponse, type AnnouncementsListResponses, type AnnouncementsPatchData, type AnnouncementsPatchError, type AnnouncementsPatchErrors, type AnnouncementsPatchResponse, type AnnouncementsPatchResponses, type AnnouncementsPublishData, type AnnouncementsPublishError, type AnnouncementsPublishErrors, type AnnouncementsPublishResponse, type AnnouncementsPublishResponses, type AnnouncementsUploadCoverData, type AnnouncementsUploadCoverError, type AnnouncementsUploadCoverErrors, type AnnouncementsUploadCoverResponse, type AnnouncementsUploadCoverResponses, type Attendee, type AttendeeDetail, type AttendeeWritable, Audit, type AuditListData, type AuditListError, type AuditListErrors, type AuditListResponse, type AuditListResponses, Auth, type AuthContext, type AuthContextData, type AuthContextError, type AuthContextErrors, type AuthContextResponse, type AuthContextResponses, type AuthContextWritable, type AuthMeData, type AuthMeError, type AuthMeErrors, type AuthMeResponse, type AuthMeResponses, Automation, type AutomationCreateRuleData, type AutomationCreateRuleError, type AutomationCreateRuleErrors, type AutomationCreateRuleResponse, type AutomationCreateRuleResponses, type AutomationDeleteRuleData, type AutomationDeleteRuleError, type AutomationDeleteRuleErrors, type AutomationDeleteRuleResponse, type AutomationDeleteRuleResponses, type AutomationExecuteRuleData, type AutomationExecuteRuleError, type AutomationExecuteRuleErrors, type AutomationExecuteRuleResponse, type AutomationExecuteRuleResponses, type AutomationGetRuleData, type AutomationGetRuleError, type AutomationGetRuleErrors, type AutomationGetRuleResponse, type AutomationGetRuleResponses, type AutomationListActionsData, type AutomationListActionsError, type AutomationListActionsErrors, type AutomationListActionsResponse, type AutomationListActionsResponses, type AutomationListExecutionsData, type AutomationListExecutionsError, type AutomationListExecutionsErrors, type AutomationListExecutionsResponse, type AutomationListExecutionsResponses, type AutomationListRulesData, type AutomationListRulesError, type AutomationListRulesErrors, type AutomationListRulesResponse, type AutomationListRulesResponses, type AutomationListTriggersData, type AutomationListTriggersError, type AutomationListTriggersErrors, type AutomationListTriggersResponse, type AutomationListTriggersResponses, type AutomationUpdateRuleData, type AutomationUpdateRuleError, type AutomationUpdateRuleErrors, type AutomationUpdateRuleResponse, type AutomationUpdateRuleResponses, type AvailabilityOutputBody, type AvailabilityOutputBodyWritable, type Booking, type BookingWritable, Bookings, type BookingsCheckAvailabilityData, type BookingsCheckAvailabilityError, type BookingsCheckAvailabilityErrors, type BookingsCheckAvailabilityResponse, type BookingsCheckAvailabilityResponses, type BookingsCreateData, type BookingsCreateError, type BookingsCreateErrors, type BookingsCreateResponse, type BookingsCreateResponses, type BookingsDeleteData, type BookingsDeleteError, type BookingsDeleteErrors, type BookingsDeleteResponse, type BookingsDeleteResponses, type BookingsGetData, type BookingsGetError, type BookingsGetErrors, type BookingsGetResponse, type BookingsGetResponses, type BookingsListData, type BookingsListError, type BookingsListErrors, type BookingsListResponse, type BookingsListResponses, type BookingsPlaceScheduleData, type BookingsPlaceScheduleError, type BookingsPlaceScheduleErrors, type BookingsPlaceScheduleResponse, type BookingsPlaceScheduleResponses, type BookingsUpdateData, type BookingsUpdateError, type BookingsUpdateErrors, type BookingsUpdateResponse, type BookingsUpdateResponses, type BulkAttendeeBody, type BulkAttendeeBodyWritable, type BulkStatusBody, type BulkStatusBodyWritable, type CalendarEventsOutputBody, type CalendarEventsOutputBodyWritable, type CheckAvailabilityInputBody, type CheckAvailabilityInputBodyWritable, type CheckInInputBody, type CheckInSeriesAttendeeInputBody, type ClientOptions, type Contact, type ContactBody, type ContactBodyWritable, type ContactSummary, type ContactWritable, Contacts, type ContactsCreateData, type ContactsCreateError, type ContactsCreateErrors, type ContactsCreateResponse, type ContactsCreateResponses, type ContactsDeleteData, type ContactsDeleteError, type ContactsDeleteErrors, type ContactsDeleteResponse, type ContactsDeleteResponses, type ContactsGetData, type ContactsGetError, type ContactsGetErrors, type ContactsGetResponse, type ContactsGetResponses, type ContactsListData, type ContactsListError, type ContactsListErrors, type ContactsListResponse, type ContactsListResponses, type ContactsSearchData, type ContactsSearchError, type ContactsSearchErrors, type ContactsSearchResponse, type ContactsSearchResponses, type ContactsToggleFavoriteData, type ContactsToggleFavoriteError, type ContactsToggleFavoriteErrors, type ContactsToggleFavoriteResponse, type ContactsToggleFavoriteResponses, type ContactsUpdateData, type ContactsUpdateError, type ContactsUpdateErrors, type ContactsUpdateResponse, type ContactsUpdateResponses, type Counts, type CountsWritable, type CreateBookingInputBody, type CreateBookingInputBodyWritable, type CreateClientConfig, type CreateCredentialInputBody, type CreateCredentialInputBodyWritable, type CreateEventInputBody, type CreateEventInputBodyWritable, type CreateInviteBody, type CreateInviteBodyWritable, type CreateOrgBody, type CreateOrgBodyWritable, type CreatePlaceInputBody, type CreatePlaceInputBodyWritable, type CreateRuleInput, type CreateRuleInputWritable, type CreateSeriesInput, type CreateSeriesInputWritable, type CreateSpaceInputBody, type CreateSpaceInputBodyWritable, type CreateWithSeriesInputBody, type CreateWithSeriesInputBodyWritable, type CreateWithSeriesOutputBody, type CreateWithSeriesOutputBodyWritable, type CredentialView, type CredentialViewWritable, Credentials, type CredentialsCreateData, type CredentialsCreateError, type CredentialsCreateErrors, type CredentialsCreateResponse, type CredentialsCreateResponses, type CredentialsGetData, type CredentialsGetError, type CredentialsGetErrors, type CredentialsGetResponse, type CredentialsGetResponses, type CredentialsListData, type CredentialsListError, type CredentialsListErrors, type CredentialsListResponse, type CredentialsListResponses, type CredentialsRevokeData, type CredentialsRevokeError, type CredentialsRevokeErrors, type CredentialsRevokeResponse, type CredentialsRevokeResponses, type Dashboard, type DashboardWritable, type Entry, type ErrorDetail, type ErrorModel, type ErrorModelWritable, type Event, type EventAutomationAction, type EventAutomationRule, type EventAutomationRuleWritable, type EventAutomationTemplate, type EventAutomationTrigger, type EventAutomationUpsertInput, type EventAutomationUpsertInputWritable, type EventLink, type EventLinkTargetSummary, type EventLinkWithTarget, type EventLinkWritable, type EventManager, type EventManagerPermissionsOutputBody, type EventManagerPermissionsOutputBodyWritable, type EventManagerWritable, type EventPatch, type EventPatchWritable, type EventSeries, type EventSeriesWritable, type EventSpaceLink, type EventSpaceLinkDetail, type EventSpaceLinkWritable, type EventSpaceSummary, type EventSummary, type EventWritable, Events, Events2, type EventsAcceptManagerInviteData, type EventsAcceptManagerInviteError, type EventsAcceptManagerInviteErrors, type EventsAcceptManagerInviteResponse, type EventsAcceptManagerInviteResponses, type EventsAddAttendeeData, type EventsAddAttendeeError, type EventsAddAttendeeErrors, type EventsAddAttendeeResponse, type EventsAddAttendeeResponses, type EventsAddDocumentData, type EventsAddDocumentError, type EventsAddDocumentErrors, type EventsAddDocumentResponses, type EventsAddLinkData, type EventsAddLinkError, type EventsAddLinkErrors, type EventsAddLinkResponse, type EventsAddLinkResponses, type EventsAddManagerData, type EventsAddManagerError, type EventsAddManagerErrors, type EventsAddManagerResponse, type EventsAddManagerResponses, type EventsAddMilestoneData, type EventsAddMilestoneError, type EventsAddMilestoneErrors, type EventsAddMilestoneResponse, type EventsAddMilestoneResponses, type EventsAddSpaceData, type EventsAddSpaceError, type EventsAddSpaceErrors, type EventsAddSpaceResponse, type EventsAddSpaceResponses, type EventsArchiveData, type EventsArchiveError, type EventsArchiveErrors, type EventsArchiveResponse, type EventsArchiveResponses, type EventsAutomationTemplatesData, type EventsAutomationTemplatesError, type EventsAutomationTemplatesErrors, type EventsAutomationTemplatesResponse, type EventsAutomationTemplatesResponses, type EventsBulkAddAttendeesData, type EventsBulkAddAttendeesError, type EventsBulkAddAttendeesErrors, type EventsBulkAddAttendeesResponse, type EventsBulkAddAttendeesResponses, type EventsBulkRemoveAttendeesData, type EventsBulkRemoveAttendeesError, type EventsBulkRemoveAttendeesErrors, type EventsBulkRemoveAttendeesResponse, type EventsBulkRemoveAttendeesResponses, type EventsBulkUpdateAttendeeStatusData, type EventsBulkUpdateAttendeeStatusError, type EventsBulkUpdateAttendeeStatusErrors, type EventsBulkUpdateAttendeeStatusResponse, type EventsBulkUpdateAttendeeStatusResponses, type EventsCalendarData, type EventsCalendarError, type EventsCalendarErrors, type EventsCalendarResponse, type EventsCalendarResponses, type EventsCheckInAttendeeData, type EventsCheckInAttendeeError, type EventsCheckInAttendeeErrors, type EventsCheckInAttendeeResponse, type EventsCheckInAttendeeResponses, type EventsCreateAutomationData, type EventsCreateAutomationError, type EventsCreateAutomationErrors, type EventsCreateAutomationResponse, type EventsCreateAutomationResponses, type EventsCreateData, type EventsCreateError, type EventsCreateErrors, type EventsCreateResponse, type EventsCreateResponses, type EventsCreateSeriesData, type EventsCreateSeriesError, type EventsCreateSeriesErrors, type EventsCreateSeriesResponse, type EventsCreateSeriesResponses, type EventsCreateWithSeriesData, type EventsCreateWithSeriesError, type EventsCreateWithSeriesErrors, type EventsCreateWithSeriesResponse, type EventsCreateWithSeriesResponses, type EventsDeleteAutomationData, type EventsDeleteAutomationError, type EventsDeleteAutomationErrors, type EventsDeleteAutomationResponse, type EventsDeleteAutomationResponses, type EventsDeleteData, type EventsDeleteError, type EventsDeleteErrors, type EventsDeleteResponse, type EventsDeleteResponses, type EventsDeleteSeriesData, type EventsDeleteSeriesError, type EventsDeleteSeriesErrors, type EventsDeleteSeriesResponse, type EventsDeleteSeriesResponses, type EventsDiscardData, type EventsDiscardError, type EventsDiscardErrors, type EventsDiscardResponse, type EventsDiscardResponses, type EventsExecuteAutomationData, type EventsExecuteAutomationError, type EventsExecuteAutomationErrors, type EventsExecuteAutomationResponse, type EventsExecuteAutomationResponses, type EventsGetAutomationData, type EventsGetAutomationError, type EventsGetAutomationErrors, type EventsGetAutomationResponse, type EventsGetAutomationResponses, type EventsGetData, type EventsGetDraftData, type EventsGetDraftError, type EventsGetDraftErrors, type EventsGetDraftResponse, type EventsGetDraftResponses, type EventsGetError, type EventsGetErrors, type EventsGetManagerData, type EventsGetManagerError, type EventsGetManagerErrors, type EventsGetManagerResponse, type EventsGetManagerResponses, type EventsGetResponse, type EventsGetResponses, type EventsGetSeriesData, type EventsGetSeriesError, type EventsGetSeriesErrors, type EventsGetSeriesResponse, type EventsGetSeriesResponses, type EventsInviteManagerData, type EventsInviteManagerError, type EventsInviteManagerErrors, type EventsInviteManagerResponse, type EventsInviteManagerResponses, type EventsInviteSeriesManagerData, type EventsInviteSeriesManagerError, type EventsInviteSeriesManagerErrors, type EventsInviteSeriesManagerResponse, type EventsInviteSeriesManagerResponses, type EventsListAttendeesData, type EventsListAttendeesError, type EventsListAttendeesErrors, type EventsListAttendeesResponse, type EventsListAttendeesResponses, type EventsListAutomationExecutionsData, type EventsListAutomationExecutionsError, type EventsListAutomationExecutionsErrors, type EventsListAutomationExecutionsResponse, type EventsListAutomationExecutionsResponses, type EventsListAutomationsData, type EventsListAutomationsError, type EventsListAutomationsErrors, type EventsListAutomationsResponse, type EventsListAutomationsResponses, type EventsListData, type EventsListDocumentsData, type EventsListDocumentsError, type EventsListDocumentsErrors, type EventsListDocumentsResponse, type EventsListDocumentsResponses, type EventsListError, type EventsListErrors, type EventsListLinksData, type EventsListLinksError, type EventsListLinksErrors, type EventsListLinksResponse, type EventsListLinksResponses, type EventsListManagersData, type EventsListManagersError, type EventsListManagersErrors, type EventsListManagersResponse, type EventsListManagersResponses, type EventsListMilestonesData, type EventsListMilestonesError, type EventsListMilestonesErrors, type EventsListMilestonesResponse, type EventsListMilestonesResponses, type EventsListOccurrencesData, type EventsListOccurrencesError, type EventsListOccurrencesErrors, type EventsListOccurrencesResponse, type EventsListOccurrencesResponses, type EventsListPendingManagerInvitesData, type EventsListPendingManagerInvitesError, type EventsListPendingManagerInvitesErrors, type EventsListPendingManagerInvitesResponse, type EventsListPendingManagerInvitesResponses, type EventsListResponse, type EventsListResponses, type EventsListSpacesData, type EventsListSpacesError, type EventsListSpacesErrors, type EventsListSpacesResponse, type EventsListSpacesResponses, type EventsManagerPermissionsData, type EventsManagerPermissionsError, type EventsManagerPermissionsErrors, type EventsManagerPermissionsResponse, type EventsManagerPermissionsResponses, type EventsPatchData, type EventsPatchError, type EventsPatchErrors, type EventsPatchMilestoneLifecycleData, type EventsPatchMilestoneLifecycleError, type EventsPatchMilestoneLifecycleErrors, type EventsPatchMilestoneLifecycleResponse, type EventsPatchMilestoneLifecycleResponses, type EventsPatchResponse, type EventsPatchResponses, type EventsPatchSeriesData, type EventsPatchSeriesError, type EventsPatchSeriesErrors, type EventsPatchSeriesResponse, type EventsPatchSeriesResponses, type EventsPublishData, type EventsPublishError, type EventsPublishErrors, type EventsPublishResponse, type EventsPublishResponses, type EventsPublishSeriesData, type EventsPublishSeriesError, type EventsPublishSeriesErrors, type EventsPublishSeriesResponse, type EventsPublishSeriesResponses, type EventsRemoveAttendeeData, type EventsRemoveAttendeeError, type EventsRemoveAttendeeErrors, type EventsRemoveAttendeeResponse, type EventsRemoveAttendeeResponses, type EventsRemoveDocumentData, type EventsRemoveDocumentError, type EventsRemoveDocumentErrors, type EventsRemoveDocumentResponse, type EventsRemoveDocumentResponses, type EventsRemoveLinkData, type EventsRemoveLinkError, type EventsRemoveLinkErrors, type EventsRemoveLinkResponse, type EventsRemoveLinkResponses, type EventsRemoveManagerData, type EventsRemoveManagerError, type EventsRemoveManagerErrors, type EventsRemoveManagerResponse, type EventsRemoveManagerResponses, type EventsRemoveMilestoneData, type EventsRemoveMilestoneError, type EventsRemoveMilestoneErrors, type EventsRemoveMilestoneResponse, type EventsRemoveMilestoneResponses, type EventsRemoveSpaceData, type EventsRemoveSpaceError, type EventsRemoveSpaceErrors, type EventsRemoveSpaceResponse, type EventsRemoveSpaceResponses, type EventsStartEditData, type EventsStartEditError, type EventsStartEditErrors, type EventsStartEditResponse, type EventsStartEditResponses, type EventsUpdateAttendeeStatusData, type EventsUpdateAttendeeStatusError, type EventsUpdateAttendeeStatusErrors, type EventsUpdateAttendeeStatusResponse, type EventsUpdateAttendeeStatusResponses, type EventsUpdateAutomationData, type EventsUpdateAutomationError, type EventsUpdateAutomationErrors, type EventsUpdateAutomationResponse, type EventsUpdateAutomationResponses, type EventsUpdateData, type EventsUpdateError, type EventsUpdateErrors, type EventsUpdateManagerData, type EventsUpdateManagerError, type EventsUpdateManagerErrors, type EventsUpdateManagerResponse, type EventsUpdateManagerResponses, type EventsUpdateMilestoneData, type EventsUpdateMilestoneError, type EventsUpdateMilestoneErrors, type EventsUpdateMilestoneResponse, type EventsUpdateMilestoneResponses, type EventsUpdateResponse, type EventsUpdateResponses, type EventsUploadCoverData, type EventsUploadCoverError, type EventsUploadCoverErrors, type EventsUploadCoverResponse, type EventsUploadCoverResponses, type ExecuteAutomationResponse, type ExecuteAutomationResponseWritable, type ExecuteOutputBody, type ExecuteOutputBodyWritable, type Execution, type FavoriteInputBody, type FavoriteInputBodyWritable, Integrations, type IntegrationsZitadelWebhookData, type IntegrationsZitadelWebhookError, type IntegrationsZitadelWebhookErrors, type IntegrationsZitadelWebhookResponses, type Invite, type InviteEventManagerInputBody, type InviteEventManagerInputBodyWritable, type InviteSeriesManagerInputBody, type InviteSeriesManagerInputBodyWritable, type InviteSpaceManagerInputBody, type InviteSpaceManagerInputBodyWritable, type InviteWritable, Invites, Linebundle, type LinebundleOptions, type ListInvitesOutputBody, type ListInvitesOutputBodyWritable, type ListOrgsOutputBody, type ListOrgsOutputBodyWritable, type ListOutputBody, type ListOutputBodyWritable, type ListPendingEventManagerInvitesOutputBody, type ListPendingEventManagerInvitesOutputBodyWritable, type ListPendingManagerInvitesOutputBody, type ListPendingManagerInvitesOutputBodyWritable, type LivenessData, type LivenessError, type LivenessErrors, type LivenessOutputBody, type LivenessOutputBodyWritable, type LivenessResponse, type LivenessResponses, Me, type Member, type MemberWritable, type Milestone, type MilestoneDetail, type MilestoneEventSummary, type MilestoneWritable, type NewCredentialView, type NewCredentialViewWritable, type Options$1 as Options, type Options as Options2, type OptionsWritable, type Organization, type OrganizationWritable, Organizations, type OrganizationsArchiveData, type OrganizationsArchiveError, type OrganizationsArchiveErrors, type OrganizationsArchiveResponse, type OrganizationsArchiveResponses, type OrganizationsCreateData, type OrganizationsCreateError, type OrganizationsCreateErrors, type OrganizationsCreateResponse, type OrganizationsCreateResponses, type OrganizationsGetData, type OrganizationsGetError, type OrganizationsGetErrors, type OrganizationsGetResponse, type OrganizationsGetResponses, type OrganizationsInvitesCreateData, type OrganizationsInvitesCreateError, type OrganizationsInvitesCreateErrors, type OrganizationsInvitesCreateResponse, type OrganizationsInvitesCreateResponses, type OrganizationsInvitesDeleteData, type OrganizationsInvitesDeleteError, type OrganizationsInvitesDeleteErrors, type OrganizationsInvitesDeleteResponse, type OrganizationsInvitesDeleteResponses, type OrganizationsInvitesListData, type OrganizationsInvitesListError, type OrganizationsInvitesListErrors, type OrganizationsInvitesListResponse, type OrganizationsInvitesListResponses, type OrganizationsListData, type OrganizationsListError, type OrganizationsListErrors, type OrganizationsListResponse, type OrganizationsListResponses, type OrganizationsUpdateData, type OrganizationsUpdateError, type OrganizationsUpdateErrors, type OrganizationsUpdateResponse, type OrganizationsUpdateResponses, type Overview, type OverviewActivity, type OverviewEvent, type OverviewSpace, type OverviewWritable, type PagedBodyAnnouncement, type PagedBodyAnnouncementWritable, type PagedBodyAttendeeDetail, type PagedBodyAttendeeDetailWritable, type PagedBodyContact, type PagedBodyContactWritable, type PagedBodyEvent, type PagedBodyEventAutomationRule, type PagedBodyEventAutomationRuleWritable, type PagedBodyEventManager, type PagedBodyEventManagerWritable, type PagedBodyEventSpaceLinkDetail, type PagedBodyEventSpaceLinkDetailWritable, type PagedBodyEventWritable, type PagedBodyExecution, type PagedBodyExecutionWritable, type PagedBodyMember, type PagedBodyMemberWritable, type PagedBodyMilestoneDetail, type PagedBodyMilestoneDetailWritable, type PagedBodyPlace, type PagedBodyPlaceWritable, type PagedBodyRule, type PagedBodyRuleWritable, type PagedBodySpace, type PagedBodySpaceActivity, type PagedBodySpaceActivityWritable, type PagedBodySpaceAnnouncementDetail, type PagedBodySpaceAnnouncementDetailWritable, type PagedBodySpaceContactDetail, type PagedBodySpaceContactDetailWritable, type PagedBodySpaceEventLinkDetail, type PagedBodySpaceEventLinkDetailWritable, type PagedBodySpaceManager, type PagedBodySpaceManagerWritable, type PagedBodySpaceWritable, type PaginatedOccurrences, type PaginatedOccurrencesWritable, type PatchMilestoneInputBody, type PatchMilestoneInputBodyWritable, type PatchSeriesMilestoneInputBody, type PatchSeriesMilestoneInputBodyWritable, type PendingEventManagerInvite, type PendingManagerInvite, type PendingManagerInvitesOutputBody, type PendingManagerInvitesOutputBodyWritable, type PendingSeriesManagerInvite, type Place, type PlaceWritable, Places, type PlacesArchiveData, type PlacesArchiveError, type PlacesArchiveErrors, type PlacesArchiveResponse, type PlacesArchiveResponses, type PlacesCreateData, type PlacesCreateError, type PlacesCreateErrors, type PlacesCreateResponse, type PlacesCreateResponses, type PlacesDeleteData, type PlacesDeleteError, type PlacesDeleteErrors, type PlacesDeleteResponse, type PlacesDeleteResponses, type PlacesGetData, type PlacesGetError, type PlacesGetErrors, type PlacesGetResponse, type PlacesGetResponses, type PlacesListData, type PlacesListError, type PlacesListErrors, type PlacesListResponse, type PlacesListResponses, type PlacesPublishData, type PlacesPublishError, type PlacesPublishErrors, type PlacesPublishResponse, type PlacesPublishResponses, type PlacesUpdateData, type PlacesUpdateError, type PlacesUpdateErrors, type PlacesUpdateResponse, type PlacesUpdateResponses, type Profile, type ProfileWritable, Profiles, type ProfilesGetData, type ProfilesGetError, type ProfilesGetErrors, type ProfilesGetResponse, type ProfilesGetResponses, type ProfilesListData, type ProfilesListError, type ProfilesListErrors, type ProfilesListResponse, type ProfilesListResponses, type ProfilesMeAcceptTermsData, type ProfilesMeAcceptTermsError, type ProfilesMeAcceptTermsErrors, type ProfilesMeAcceptTermsResponse, type ProfilesMeAcceptTermsResponses, type ProfilesMeGetData, type ProfilesMeGetError, type ProfilesMeGetErrors, type ProfilesMeGetResponse, type ProfilesMeGetResponses, type ProfilesMeUpdateData, type ProfilesMeUpdateError, type ProfilesMeUpdateErrors, type ProfilesMeUpdateResponse, type ProfilesMeUpdateResponses, type ProfilesSearchData, type ProfilesSearchError, type ProfilesSearchErrors, type ProfilesSearchResponse, type ProfilesSearchResponses, Public, type PublicAnnouncementsListData, type PublicAnnouncementsListError, type PublicAnnouncementsListErrors, type PublicAnnouncementsListResponse, type PublicAnnouncementsListResponses, type PublicEventSummary, type PublicEventsGetData, type PublicEventsGetError, type PublicEventsGetErrors, type PublicEventsGetResponse, type PublicEventsGetResponses, type PublicEventsListData, type PublicEventsListError, type PublicEventsListErrors, type PublicEventsListResponse, type PublicEventsListResponses, type PublicOrganizationSummary, type PublicOwnerSummary, type PublicPersonPreview, type PublicSpaceStats, type PublicSpaceSummary, type PublicSpacesGetData, type PublicSpacesGetError, type PublicSpacesGetErrors, type PublicSpacesGetResponse, type PublicSpacesGetResponses, type PublicSpacesListData, type PublicSpacesListError, type PublicSpacesListErrors, type PublicSpacesListResponse, type PublicSpacesListResponses, type PublicViewerCapabilities, type PublishAnnouncementInputBody, type PublishAnnouncementInputBodyWritable, type Pulse, type ReadinessData, type ReadinessError, type ReadinessErrors, type ReadinessOutputBody, type ReadinessOutputBodyWritable, type ReadinessResponse, type ReadinessResponses, type ResourceStats, type Rule, type RuleWritable, type Schedule, type ScheduleInput, type SearchOutputBody, type SearchOutputBodyWritable, Series, type SeriesAcceptManagerInviteData, type SeriesAcceptManagerInviteError, type SeriesAcceptManagerInviteErrors, type SeriesAcceptManagerInviteResponse, type SeriesAcceptManagerInviteResponses, type SeriesAddAttendeeData, type SeriesAddAttendeeError, type SeriesAddAttendeeErrors, type SeriesAddAttendeeResponse, type SeriesAddAttendeeResponses, type SeriesAddDocumentData, type SeriesAddDocumentError, type SeriesAddDocumentErrors, type SeriesAddDocumentResponses, type SeriesAddLinkData, type SeriesAddLinkError, type SeriesAddLinkErrors, type SeriesAddLinkResponse, type SeriesAddLinkResponses, type SeriesAddMilestoneData, type SeriesAddMilestoneError, type SeriesAddMilestoneErrors, type SeriesAddMilestoneResponse, type SeriesAddMilestoneResponses, type SeriesBulkAddAttendeesData, type SeriesBulkAddAttendeesError, type SeriesBulkAddAttendeesErrors, type SeriesBulkAddAttendeesResponse, type SeriesBulkAddAttendeesResponses, type SeriesCheckInAttendeeData, type SeriesCheckInAttendeeError, type SeriesCheckInAttendeeErrors, type SeriesCheckInAttendeeResponse, type SeriesCheckInAttendeeResponses, type SeriesGetByIdData, type SeriesGetByIdError, type SeriesGetByIdErrors, type SeriesGetByIdResponse, type SeriesGetByIdResponses, type SeriesListAttendeesData, type SeriesListAttendeesError, type SeriesListAttendeesErrors, type SeriesListAttendeesResponse, type SeriesListAttendeesResponses, type SeriesListDocumentsData, type SeriesListDocumentsError, type SeriesListDocumentsErrors, type SeriesListDocumentsResponse, type SeriesListDocumentsResponses, type SeriesListLinksData, type SeriesListLinksError, type SeriesListLinksErrors, type SeriesListLinksResponse, type SeriesListLinksResponses, type SeriesListMilestonesData, type SeriesListMilestonesError, type SeriesListMilestonesErrors, type SeriesListMilestonesResponse, type SeriesListMilestonesResponses, type SeriesListPendingManagerInvitesData, type SeriesListPendingManagerInvitesError, type SeriesListPendingManagerInvitesErrors, type SeriesListPendingManagerInvitesResponse, type SeriesListPendingManagerInvitesResponses, type SeriesPatch, type SeriesPatchMilestoneLifecycleData, type SeriesPatchMilestoneLifecycleError, type SeriesPatchMilestoneLifecycleErrors, type SeriesPatchMilestoneLifecycleResponse, type SeriesPatchMilestoneLifecycleResponses, type SeriesPatchWritable, type SeriesRemoveAttendeeData, type SeriesRemoveAttendeeError, type SeriesRemoveAttendeeErrors, type SeriesRemoveAttendeeResponse, type SeriesRemoveAttendeeResponses, type SeriesRemoveDocumentData, type SeriesRemoveDocumentError, type SeriesRemoveDocumentErrors, type SeriesRemoveDocumentResponse, type SeriesRemoveDocumentResponses, type SeriesRemoveLinkData, type SeriesRemoveLinkError, type SeriesRemoveLinkErrors, type SeriesRemoveLinkResponse, type SeriesRemoveLinkResponses, type SeriesRemoveMilestoneData, type SeriesRemoveMilestoneError, type SeriesRemoveMilestoneErrors, type SeriesRemoveMilestoneResponse, type SeriesRemoveMilestoneResponses, type SeriesUpdateAttendeeStatusData, type SeriesUpdateAttendeeStatusError, type SeriesUpdateAttendeeStatusErrors, type SeriesUpdateAttendeeStatusResponse, type SeriesUpdateAttendeeStatusResponses, type SeriesUpdateMilestoneData, type SeriesUpdateMilestoneError, type SeriesUpdateMilestoneErrors, type SeriesUpdateMilestoneResponse, type SeriesUpdateMilestoneResponses, type SeriesWithOccurrences, type SeriesWithOccurrencesWritable, type Space, type SpaceActivity, type SpaceActivityContributor, type SpaceActivityLogItem, type SpaceActivityLogResult, type SpaceActivityLogResultWritable, type SpaceActivitySummary, type SpaceAnalyticsAttentionRow, type SpaceAnalyticsEventRow, type SpaceAnalyticsGrowthPoint, type SpaceAnalyticsResult, type SpaceAnalyticsResultWritable, type SpaceAnalyticsSummary, type SpaceAnalyticsTrendPoint, type SpaceAnnouncementDetail, type SpaceAnnouncementDetailWritable, type SpaceContact, type SpaceContactDetail, type SpaceContactSummary, type SpaceContactWritable, type SpaceEventLink, type SpaceEventLinkDetail, type SpaceEventLinkWritable, type SpaceEventSummary, type SpaceManager, type SpaceManagerPermissionsOutputBody, type SpaceManagerPermissionsOutputBodyWritable, type SpaceManagerWritable, type SpacePage, type SpacePageWritable, type SpacePatch, type SpacePatchWritable, type SpaceSettings, type SpaceSettingsPatch, type SpaceSettingsPatchWritable, type SpaceSettingsWritable, type SpaceSummary, type SpaceWritable, Spaces, Spaces2, type SpacesAcceptManagerInviteData, type SpacesAcceptManagerInviteError, type SpacesAcceptManagerInviteErrors, type SpacesAcceptManagerInviteResponse, type SpacesAcceptManagerInviteResponses, type SpacesAddAnnouncementData, type SpacesAddAnnouncementError, type SpacesAddAnnouncementErrors, type SpacesAddAnnouncementResponse, type SpacesAddAnnouncementResponses, type SpacesAddContactData, type SpacesAddContactError, type SpacesAddContactErrors, type SpacesAddContactResponse, type SpacesAddContactResponses, type SpacesAddEventData, type SpacesAddEventError, type SpacesAddEventErrors, type SpacesAddEventResponse, type SpacesAddEventResponses, type SpacesAddManagerData, type SpacesAddManagerError, type SpacesAddManagerErrors, type SpacesAddManagerResponse, type SpacesAddManagerResponses, type SpacesAddMemberData, type SpacesAddMemberError, type SpacesAddMemberErrors, type SpacesAddMemberResponse, type SpacesAddMemberResponses, type SpacesArchiveData, type SpacesArchiveError, type SpacesArchiveErrors, type SpacesArchiveResponse, type SpacesArchiveResponses, type SpacesCreateData, type SpacesCreateError, type SpacesCreateErrors, type SpacesCreateResponse, type SpacesCreateResponses, type SpacesDeleteData, type SpacesDeleteError, type SpacesDeleteErrors, type SpacesDeleteResponse, type SpacesDeleteResponses, type SpacesDiscardData, type SpacesDiscardError, type SpacesDiscardErrors, type SpacesDiscardResponse, type SpacesDiscardResponses, type SpacesGetAnalyticsData, type SpacesGetAnalyticsError, type SpacesGetAnalyticsErrors, type SpacesGetAnalyticsResponse, type SpacesGetAnalyticsResponses, type SpacesGetData, type SpacesGetDraftData, type SpacesGetDraftError, type SpacesGetDraftErrors, type SpacesGetDraftResponse, type SpacesGetDraftResponses, type SpacesGetError, type SpacesGetErrors, type SpacesGetManagerData, type SpacesGetManagerError, type SpacesGetManagerErrors, type SpacesGetManagerResponse, type SpacesGetManagerResponses, type SpacesGetResponse, type SpacesGetResponses, type SpacesGetSettingsData, type SpacesGetSettingsError, type SpacesGetSettingsErrors, type SpacesGetSettingsResponse, type SpacesGetSettingsResponses, type SpacesInviteManagerData, type SpacesInviteManagerError, type SpacesInviteManagerErrors, type SpacesInviteManagerResponse, type SpacesInviteManagerResponses, type SpacesListActivityData, type SpacesListActivityError, type SpacesListActivityErrors, type SpacesListActivityLogData, type SpacesListActivityLogError, type SpacesListActivityLogErrors, type SpacesListActivityLogResponse, type SpacesListActivityLogResponses, type SpacesListActivityResponse, type SpacesListActivityResponses, type SpacesListAnnouncementsData, type SpacesListAnnouncementsError, type SpacesListAnnouncementsErrors, type SpacesListAnnouncementsResponse, type SpacesListAnnouncementsResponses, type SpacesListChildrenData, type SpacesListChildrenError, type SpacesListChildrenErrors, type SpacesListChildrenResponse, type SpacesListChildrenResponses, type SpacesListContactsData, type SpacesListContactsError, type SpacesListContactsErrors, type SpacesListContactsResponse, type SpacesListContactsResponses, type SpacesListData, type SpacesListError, type SpacesListErrors, type SpacesListEventsData, type SpacesListEventsError, type SpacesListEventsErrors, type SpacesListEventsResponse, type SpacesListEventsResponses, type SpacesListManagersData, type SpacesListManagersError, type SpacesListManagersErrors, type SpacesListManagersResponse, type SpacesListManagersResponses, type SpacesListMembersData, type SpacesListMembersError, type SpacesListMembersErrors, type SpacesListMembersResponse, type SpacesListMembersResponses, type SpacesListPendingManagerInvitesData, type SpacesListPendingManagerInvitesError, type SpacesListPendingManagerInvitesErrors, type SpacesListPendingManagerInvitesResponse, type SpacesListPendingManagerInvitesResponses, type SpacesListResponse, type SpacesListResponses, type SpacesManagerPermissionsData, type SpacesManagerPermissionsError, type SpacesManagerPermissionsErrors, type SpacesManagerPermissionsResponse, type SpacesManagerPermissionsResponses, type SpacesPatchData, type SpacesPatchError, type SpacesPatchErrors, type SpacesPatchResponse, type SpacesPatchResponses, type SpacesPatchSettingsData, type SpacesPatchSettingsError, type SpacesPatchSettingsErrors, type SpacesPatchSettingsResponse, type SpacesPatchSettingsResponses, type SpacesPublishData, type SpacesPublishError, type SpacesPublishErrors, type SpacesPublishResponse, type SpacesPublishResponses, type SpacesRemoveAnnouncementData, type SpacesRemoveAnnouncementError, type SpacesRemoveAnnouncementErrors, type SpacesRemoveAnnouncementResponse, type SpacesRemoveAnnouncementResponses, type SpacesRemoveContactData, type SpacesRemoveContactError, type SpacesRemoveContactErrors, type SpacesRemoveContactResponse, type SpacesRemoveContactResponses, type SpacesRemoveEventData, type SpacesRemoveEventError, type SpacesRemoveEventErrors, type SpacesRemoveEventResponse, type SpacesRemoveEventResponses, type SpacesRemoveManagerData, type SpacesRemoveManagerError, type SpacesRemoveManagerErrors, type SpacesRemoveManagerResponse, type SpacesRemoveManagerResponses, type SpacesRemoveMemberData, type SpacesRemoveMemberError, type SpacesRemoveMemberErrors, type SpacesRemoveMemberResponse, type SpacesRemoveMemberResponses, type SpacesStartEditData, type SpacesStartEditError, type SpacesStartEditErrors, type SpacesStartEditResponse, type SpacesStartEditResponses, type SpacesUpdateData, type SpacesUpdateError, type SpacesUpdateErrors, type SpacesUpdateManagerData, type SpacesUpdateManagerError, type SpacesUpdateManagerErrors, type SpacesUpdateManagerResponse, type SpacesUpdateManagerResponses, type SpacesUpdateResponse, type SpacesUpdateResponses, type TriggerDefinition, type UpdateAttendeeStatusInputBody, type UpdateAttendeeStatusInputBodyWritable, type UpdateBookingInputBody, type UpdateBookingInputBodyWritable, type UpdateEventInputBody, type UpdateEventInputBodyWritable, type UpdateEventManagerInputBody, type UpdateEventManagerInputBodyWritable, type UpdateMeInputBody, type UpdateMeInputBodyWritable, type UpdateMilestoneInputBody, type UpdateMilestoneInputBodyWritable, type UpdateOrgBody, type UpdateOrgBodyWritable, type UpdatePlaceInputBody, type UpdatePlaceInputBodyWritable, type UpdateRuleInput, type UpdateRuleInputWritable, type UpdateSeriesAttendeeStatusInputBody, type UpdateSeriesAttendeeStatusInputBodyWritable, type UpdateSeriesMilestoneInputBody, type UpdateSeriesMilestoneInputBodyWritable, type UpdateSpaceInputBody, type UpdateSpaceInputBodyWritable, type UpdateSpaceManagerInputBody, type UpdateSpaceManagerInputBodyWritable, Zitadel, client, createLinebundle };
package/esm/index.js CHANGED
@@ -1953,6 +1953,16 @@ var Profiles = class extends HeyApiClient {
1953
1953
  return this._me ?? (this._me = new Me({ client: this.client }));
1954
1954
  }
1955
1955
  };
1956
+ var Announcements2 = class extends HeyApiClient {
1957
+ /**
1958
+ * List public announcements
1959
+ *
1960
+ * Returns published announcements from all spaces that the owning organisation has made publicly visible. No authentication required.
1961
+ */
1962
+ list(options) {
1963
+ return (options?.client ?? this.client).get({ url: "/api/v1/public/announcements", ...options });
1964
+ }
1965
+ };
1956
1966
  var Events2 = class extends HeyApiClient {
1957
1967
  /**
1958
1968
  * List public events
@@ -1990,6 +2000,9 @@ var Spaces = class extends HeyApiClient {
1990
2000
  }
1991
2001
  };
1992
2002
  var Public = class extends HeyApiClient {
2003
+ get announcements() {
2004
+ return this._announcements ?? (this._announcements = new Announcements2({ client: this.client }));
2005
+ }
1993
2006
  get events() {
1994
2007
  return this._events ?? (this._events = new Events2({ client: this.client }));
1995
2008
  }
@@ -2850,6 +2863,7 @@ function createLinebundle({
2850
2863
  export {
2851
2864
  Analytics,
2852
2865
  Announcements,
2866
+ Announcements2,
2853
2867
  Audit,
2854
2868
  Auth,
2855
2869
  Automation,