@linebundle-sdk/ts 1.0.0-rc.16 → 1.0.0-rc.17

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
@@ -397,13 +397,17 @@ type AddEventManagerInputBody = {
397
397
  */
398
398
  notify?: boolean;
399
399
  /**
400
- * Permissions to grant
400
+ * Permissions to grant. Ignored when role is set.
401
401
  */
402
402
  permissions: Array<string> | null;
403
403
  /**
404
404
  * Notification priority: normal (default) or high
405
405
  */
406
406
  priority?: string;
407
+ /**
408
+ * Optional event manager role bundle (e.g. event_manager:full). When set, the role REPLACES the permissions list.
409
+ */
410
+ role?: string;
407
411
  /**
408
412
  * Profile ID of the manager
409
413
  */
@@ -551,13 +555,17 @@ type AddSpaceManagerInputBody = {
551
555
  */
552
556
  notify?: boolean;
553
557
  /**
554
- * Permissions to grant
558
+ * Permissions to grant. Ignored when role is set.
555
559
  */
556
560
  permissions: Array<string> | null;
557
561
  /**
558
562
  * Notification priority: normal (default) or high
559
563
  */
560
564
  priority?: string;
565
+ /**
566
+ * Optional space manager role bundle (e.g. space_manager:full). When set, the role REPLACES the permissions list.
567
+ */
568
+ role?: string;
561
569
  /**
562
570
  * Profile ID of the manager
563
571
  */
@@ -1286,6 +1294,10 @@ type CreateCredentialInputBody = {
1286
1294
  * Granular permission codes e.g. ["spaces:read", "events:write"]
1287
1295
  */
1288
1296
  permissions: Array<string> | null;
1297
+ /**
1298
+ * Optional pre-defined token role bundle (e.g. token:read_only). When set, permissions are derived from policy.Roles[role] and unioned with any explicit permissions in this request.
1299
+ */
1300
+ role?: string;
1289
1301
  };
1290
1302
  type CreateEventInputBody = {
1291
1303
  /**
@@ -1979,6 +1991,10 @@ type EventManager = {
1979
1991
  * Assigned event manager permissions
1980
1992
  */
1981
1993
  permissions: Array<string> | null;
1994
+ /**
1995
+ * Pre-defined role bundle name (e.g. event_manager:full); NULL for custom permission combinations.
1996
+ */
1997
+ role?: string;
1982
1998
  /**
1983
1999
  * Series ID (when managing all occurrences in a series)
1984
2000
  */
@@ -2426,9 +2442,13 @@ type InviteEventManagerInputBody = {
2426
2442
  */
2427
2443
  email: string;
2428
2444
  /**
2429
- * Permissions to grant on acceptance
2445
+ * Permissions to grant on acceptance. Ignored when role is set.
2430
2446
  */
2431
2447
  permissions: Array<string> | null;
2448
+ /**
2449
+ * Optional event manager role bundle (e.g. event_manager:full). When set, the role REPLACES the permissions list.
2450
+ */
2451
+ role?: string;
2432
2452
  };
2433
2453
  type InviteSeriesManagerInputBody = {
2434
2454
  /**
@@ -2450,9 +2470,13 @@ type InviteSpaceManagerInputBody = {
2450
2470
  */
2451
2471
  email: string;
2452
2472
  /**
2453
- * Permissions to grant upon acceptance
2473
+ * Permissions to grant upon acceptance. Ignored when role is set.
2454
2474
  */
2455
2475
  permissions: Array<string> | null;
2476
+ /**
2477
+ * Optional space manager role bundle (e.g. space_manager:full). When set, the role REPLACES the permissions list.
2478
+ */
2479
+ role?: string;
2456
2480
  };
2457
2481
  type ListInvitesOutputBody = {
2458
2482
  /**
@@ -2506,6 +2530,13 @@ type ListPendingManagerInvitesOutputBody = {
2506
2530
  */
2507
2531
  items: Array<PendingManagerInvite> | null;
2508
2532
  };
2533
+ type ListRolesOutputBody = {
2534
+ /**
2535
+ * A URL to the JSON Schema for this object.
2536
+ */
2537
+ readonly $schema?: string;
2538
+ roles: Array<RoleDefinition> | null;
2539
+ };
2509
2540
  type LivenessOutputBody = {
2510
2541
  /**
2511
2542
  * A URL to the JSON Schema for this object.
@@ -3713,6 +3744,13 @@ type ResourceStats = {
3713
3744
  */
3714
3745
  unassigned: number;
3715
3746
  };
3747
+ type RoleDefinition = {
3748
+ category: string;
3749
+ description: string;
3750
+ label: string;
3751
+ name: string;
3752
+ permissions: Array<string> | null;
3753
+ };
3716
3754
  type Rule = {
3717
3755
  /**
3718
3756
  * A URL to the JSON Schema for this object.
@@ -4470,6 +4508,10 @@ type SpaceManager = {
4470
4508
  * Assigned space manager permissions
4471
4509
  */
4472
4510
  permissions: Array<string> | null;
4511
+ /**
4512
+ * Pre-defined role bundle name (e.g. space_manager:full); NULL for custom permission combinations.
4513
+ */
4514
+ role?: string;
4473
4515
  /**
4474
4516
  * Space ID
4475
4517
  */
@@ -4976,13 +5018,17 @@ type AddEventManagerInputBodyWritable = {
4976
5018
  */
4977
5019
  notify?: boolean;
4978
5020
  /**
4979
- * Permissions to grant
5021
+ * Permissions to grant. Ignored when role is set.
4980
5022
  */
4981
5023
  permissions: Array<string> | null;
4982
5024
  /**
4983
5025
  * Notification priority: normal (default) or high
4984
5026
  */
4985
5027
  priority?: string;
5028
+ /**
5029
+ * Optional event manager role bundle (e.g. event_manager:full). When set, the role REPLACES the permissions list.
5030
+ */
5031
+ role?: string;
4986
5032
  /**
4987
5033
  * Profile ID of the manager
4988
5034
  */
@@ -5084,13 +5130,17 @@ type AddSpaceManagerInputBodyWritable = {
5084
5130
  */
5085
5131
  notify?: boolean;
5086
5132
  /**
5087
- * Permissions to grant
5133
+ * Permissions to grant. Ignored when role is set.
5088
5134
  */
5089
5135
  permissions: Array<string> | null;
5090
5136
  /**
5091
5137
  * Notification priority: normal (default) or high
5092
5138
  */
5093
5139
  priority?: string;
5140
+ /**
5141
+ * Optional space manager role bundle (e.g. space_manager:full). When set, the role REPLACES the permissions list.
5142
+ */
5143
+ role?: string;
5094
5144
  /**
5095
5145
  * Profile ID of the manager
5096
5146
  */
@@ -5616,6 +5666,10 @@ type CreateCredentialInputBodyWritable = {
5616
5666
  * Granular permission codes e.g. ["spaces:read", "events:write"]
5617
5667
  */
5618
5668
  permissions: Array<string> | null;
5669
+ /**
5670
+ * Optional pre-defined token role bundle (e.g. token:read_only). When set, permissions are derived from policy.Roles[role] and unioned with any explicit permissions in this request.
5671
+ */
5672
+ role?: string;
5619
5673
  };
5620
5674
  type CreateEventInputBodyWritable = {
5621
5675
  /**
@@ -6142,6 +6196,10 @@ type EventManagerWritable = {
6142
6196
  * Assigned event manager permissions
6143
6197
  */
6144
6198
  permissions: Array<string> | null;
6199
+ /**
6200
+ * Pre-defined role bundle name (e.g. event_manager:full); NULL for custom permission combinations.
6201
+ */
6202
+ role?: string;
6145
6203
  /**
6146
6204
  * Series ID (when managing all occurrences in a series)
6147
6205
  */
@@ -6443,9 +6501,13 @@ type InviteEventManagerInputBodyWritable = {
6443
6501
  */
6444
6502
  email: string;
6445
6503
  /**
6446
- * Permissions to grant on acceptance
6504
+ * Permissions to grant on acceptance. Ignored when role is set.
6447
6505
  */
6448
6506
  permissions: Array<string> | null;
6507
+ /**
6508
+ * Optional event manager role bundle (e.g. event_manager:full). When set, the role REPLACES the permissions list.
6509
+ */
6510
+ role?: string;
6449
6511
  };
6450
6512
  type InviteSeriesManagerInputBodyWritable = {
6451
6513
  /**
@@ -6459,9 +6521,13 @@ type InviteSpaceManagerInputBodyWritable = {
6459
6521
  */
6460
6522
  email: string;
6461
6523
  /**
6462
- * Permissions to grant upon acceptance
6524
+ * Permissions to grant upon acceptance. Ignored when role is set.
6463
6525
  */
6464
6526
  permissions: Array<string> | null;
6527
+ /**
6528
+ * Optional space manager role bundle (e.g. space_manager:full). When set, the role REPLACES the permissions list.
6529
+ */
6530
+ role?: string;
6465
6531
  };
6466
6532
  type ListInvitesOutputBodyWritable = {
6467
6533
  items: Array<InviteWritable> | null;
@@ -6495,6 +6561,9 @@ type ListPendingManagerInvitesOutputBodyWritable = {
6495
6561
  */
6496
6562
  items: Array<PendingManagerInvite> | null;
6497
6563
  };
6564
+ type ListRolesOutputBodyWritable = {
6565
+ roles: Array<RoleDefinition> | null;
6566
+ };
6498
6567
  type LivenessOutputBodyWritable = {
6499
6568
  /**
6500
6569
  * Service name
@@ -7542,6 +7611,10 @@ type SpaceManagerWritable = {
7542
7611
  * Assigned space manager permissions
7543
7612
  */
7544
7613
  permissions: Array<string> | null;
7614
+ /**
7615
+ * Pre-defined role bundle name (e.g. space_manager:full); NULL for custom permission combinations.
7616
+ */
7617
+ role?: string;
7545
7618
  /**
7546
7619
  * Space ID
7547
7620
  */
@@ -10750,6 +10823,26 @@ type OrganizationsInvitesDeleteResponses = {
10750
10823
  204: void;
10751
10824
  };
10752
10825
  type OrganizationsInvitesDeleteResponse = OrganizationsInvitesDeleteResponses[keyof OrganizationsInvitesDeleteResponses];
10826
+ type PermissionsListRolesData = {
10827
+ body?: never;
10828
+ path?: never;
10829
+ query?: never;
10830
+ url: '/api/v1/permissions/roles';
10831
+ };
10832
+ type PermissionsListRolesErrors = {
10833
+ /**
10834
+ * Error
10835
+ */
10836
+ default: ErrorModel;
10837
+ };
10838
+ type PermissionsListRolesError = PermissionsListRolesErrors[keyof PermissionsListRolesErrors];
10839
+ type PermissionsListRolesResponses = {
10840
+ /**
10841
+ * OK
10842
+ */
10843
+ 200: ListRolesOutputBody;
10844
+ };
10845
+ type PermissionsListRolesResponse = PermissionsListRolesResponses[keyof PermissionsListRolesResponses];
10753
10846
  type PlacesListData = {
10754
10847
  body?: never;
10755
10848
  path?: never;
@@ -13432,6 +13525,14 @@ declare class Organizations extends HeyApiClient {
13432
13525
  private _invites?;
13433
13526
  get invites(): Invites;
13434
13527
  }
13528
+ declare class Permissions extends HeyApiClient {
13529
+ /**
13530
+ * List all assignable role bundles
13531
+ *
13532
+ * Returns every role bundle (org / event_manager / space_manager / token) with its permissions. UI uses this to render permission/bundle pickers without hardcoding lists.
13533
+ */
13534
+ listRoles<ThrowOnError extends boolean = false>(options?: Options<PermissionsListRolesData, ThrowOnError>): RequestResult<PermissionsListRolesResponses, PermissionsListRolesErrors, ThrowOnError, "fields">;
13535
+ }
13435
13536
  declare class Places extends HeyApiClient {
13436
13537
  /**
13437
13538
  * List places
@@ -13818,6 +13919,8 @@ declare class Linebundle extends HeyApiClient {
13818
13919
  get integrations(): Integrations;
13819
13920
  private _organizations?;
13820
13921
  get organizations(): Organizations;
13922
+ private _permissions?;
13923
+ get permissions(): Permissions;
13821
13924
  private _places?;
13822
13925
  get places(): Places;
13823
13926
  private _profiles?;
@@ -13862,4 +13965,4 @@ type LinebundleOptions = {
13862
13965
  */
13863
13966
  declare function createLinebundle({ token, orgId, baseUrl, }: LinebundleOptions): Linebundle;
13864
13967
 
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 };
13968
+ 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 ListRolesOutputBody, type ListRolesOutputBodyWritable, 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, Permissions, type PermissionsListRolesData, type PermissionsListRolesError, type PermissionsListRolesErrors, type PermissionsListRolesResponse, type PermissionsListRolesResponses, 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 RoleDefinition, 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
@@ -1845,6 +1845,16 @@ var Organizations = class extends HeyApiClient {
1845
1845
  return this._invites ?? (this._invites = new Invites({ client: this.client }));
1846
1846
  }
1847
1847
  };
1848
+ var Permissions = class extends HeyApiClient {
1849
+ /**
1850
+ * List all assignable role bundles
1851
+ *
1852
+ * Returns every role bundle (org / event_manager / space_manager / token) with its permissions. UI uses this to render permission/bundle pickers without hardcoding lists.
1853
+ */
1854
+ listRoles(options) {
1855
+ return (options?.client ?? this.client).get({ url: "/api/v1/permissions/roles", ...options });
1856
+ }
1857
+ };
1848
1858
  var Places = class extends HeyApiClient {
1849
1859
  /**
1850
1860
  * List places
@@ -2583,6 +2593,9 @@ var _Linebundle = class _Linebundle extends HeyApiClient {
2583
2593
  get organizations() {
2584
2594
  return this._organizations ?? (this._organizations = new Organizations({ client: this.client }));
2585
2595
  }
2596
+ get permissions() {
2597
+ return this._permissions ?? (this._permissions = new Permissions({ client: this.client }));
2598
+ }
2586
2599
  get places() {
2587
2600
  return this._places ?? (this._places = new Places({ client: this.client }));
2588
2601
  }
@@ -2877,6 +2890,7 @@ export {
2877
2890
  Linebundle,
2878
2891
  Me,
2879
2892
  Organizations,
2893
+ Permissions,
2880
2894
  Places,
2881
2895
  Profiles,
2882
2896
  Public,