@linebundle-sdk/ts 1.0.0-rc.16 → 1.0.0-rc.18
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 +112 -25
- package/esm/index.js +14 -0
- package/esm/index.js.map +1 -1
- package/package.json +1 -1
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.
|
|
@@ -2717,10 +2748,6 @@ type Organization = {
|
|
|
2717
2748
|
* A URL to the JSON Schema for this object.
|
|
2718
2749
|
*/
|
|
2719
2750
|
readonly $schema?: string;
|
|
2720
|
-
/**
|
|
2721
|
-
* Allow public resource visibility
|
|
2722
|
-
*/
|
|
2723
|
-
allow_public_visibility: boolean;
|
|
2724
2751
|
/**
|
|
2725
2752
|
* Created timestamp
|
|
2726
2753
|
*/
|
|
@@ -3713,6 +3740,13 @@ type ResourceStats = {
|
|
|
3713
3740
|
*/
|
|
3714
3741
|
unassigned: number;
|
|
3715
3742
|
};
|
|
3743
|
+
type RoleDefinition = {
|
|
3744
|
+
category: string;
|
|
3745
|
+
description: string;
|
|
3746
|
+
label: string;
|
|
3747
|
+
name: string;
|
|
3748
|
+
permissions: Array<string> | null;
|
|
3749
|
+
};
|
|
3716
3750
|
type Rule = {
|
|
3717
3751
|
/**
|
|
3718
3752
|
* A URL to the JSON Schema for this object.
|
|
@@ -4470,6 +4504,10 @@ type SpaceManager = {
|
|
|
4470
4504
|
* Assigned space manager permissions
|
|
4471
4505
|
*/
|
|
4472
4506
|
permissions: Array<string> | null;
|
|
4507
|
+
/**
|
|
4508
|
+
* Pre-defined role bundle name (e.g. space_manager:full); NULL for custom permission combinations.
|
|
4509
|
+
*/
|
|
4510
|
+
role?: string;
|
|
4473
4511
|
/**
|
|
4474
4512
|
* Space ID
|
|
4475
4513
|
*/
|
|
@@ -4804,10 +4842,6 @@ type UpdateOrgBody = {
|
|
|
4804
4842
|
* A URL to the JSON Schema for this object.
|
|
4805
4843
|
*/
|
|
4806
4844
|
readonly $schema?: string;
|
|
4807
|
-
/**
|
|
4808
|
-
* Allow B2C public access to published resources
|
|
4809
|
-
*/
|
|
4810
|
-
allow_public_visibility: boolean;
|
|
4811
4845
|
/**
|
|
4812
4846
|
* Organization name
|
|
4813
4847
|
*/
|
|
@@ -4976,13 +5010,17 @@ type AddEventManagerInputBodyWritable = {
|
|
|
4976
5010
|
*/
|
|
4977
5011
|
notify?: boolean;
|
|
4978
5012
|
/**
|
|
4979
|
-
* Permissions to grant
|
|
5013
|
+
* Permissions to grant. Ignored when role is set.
|
|
4980
5014
|
*/
|
|
4981
5015
|
permissions: Array<string> | null;
|
|
4982
5016
|
/**
|
|
4983
5017
|
* Notification priority: normal (default) or high
|
|
4984
5018
|
*/
|
|
4985
5019
|
priority?: string;
|
|
5020
|
+
/**
|
|
5021
|
+
* Optional event manager role bundle (e.g. event_manager:full). When set, the role REPLACES the permissions list.
|
|
5022
|
+
*/
|
|
5023
|
+
role?: string;
|
|
4986
5024
|
/**
|
|
4987
5025
|
* Profile ID of the manager
|
|
4988
5026
|
*/
|
|
@@ -5084,13 +5122,17 @@ type AddSpaceManagerInputBodyWritable = {
|
|
|
5084
5122
|
*/
|
|
5085
5123
|
notify?: boolean;
|
|
5086
5124
|
/**
|
|
5087
|
-
* Permissions to grant
|
|
5125
|
+
* Permissions to grant. Ignored when role is set.
|
|
5088
5126
|
*/
|
|
5089
5127
|
permissions: Array<string> | null;
|
|
5090
5128
|
/**
|
|
5091
5129
|
* Notification priority: normal (default) or high
|
|
5092
5130
|
*/
|
|
5093
5131
|
priority?: string;
|
|
5132
|
+
/**
|
|
5133
|
+
* Optional space manager role bundle (e.g. space_manager:full). When set, the role REPLACES the permissions list.
|
|
5134
|
+
*/
|
|
5135
|
+
role?: string;
|
|
5094
5136
|
/**
|
|
5095
5137
|
* Profile ID of the manager
|
|
5096
5138
|
*/
|
|
@@ -5616,6 +5658,10 @@ type CreateCredentialInputBodyWritable = {
|
|
|
5616
5658
|
* Granular permission codes e.g. ["spaces:read", "events:write"]
|
|
5617
5659
|
*/
|
|
5618
5660
|
permissions: Array<string> | null;
|
|
5661
|
+
/**
|
|
5662
|
+
* 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.
|
|
5663
|
+
*/
|
|
5664
|
+
role?: string;
|
|
5619
5665
|
};
|
|
5620
5666
|
type CreateEventInputBodyWritable = {
|
|
5621
5667
|
/**
|
|
@@ -6142,6 +6188,10 @@ type EventManagerWritable = {
|
|
|
6142
6188
|
* Assigned event manager permissions
|
|
6143
6189
|
*/
|
|
6144
6190
|
permissions: Array<string> | null;
|
|
6191
|
+
/**
|
|
6192
|
+
* Pre-defined role bundle name (e.g. event_manager:full); NULL for custom permission combinations.
|
|
6193
|
+
*/
|
|
6194
|
+
role?: string;
|
|
6145
6195
|
/**
|
|
6146
6196
|
* Series ID (when managing all occurrences in a series)
|
|
6147
6197
|
*/
|
|
@@ -6443,9 +6493,13 @@ type InviteEventManagerInputBodyWritable = {
|
|
|
6443
6493
|
*/
|
|
6444
6494
|
email: string;
|
|
6445
6495
|
/**
|
|
6446
|
-
* Permissions to grant on acceptance
|
|
6496
|
+
* Permissions to grant on acceptance. Ignored when role is set.
|
|
6447
6497
|
*/
|
|
6448
6498
|
permissions: Array<string> | null;
|
|
6499
|
+
/**
|
|
6500
|
+
* Optional event manager role bundle (e.g. event_manager:full). When set, the role REPLACES the permissions list.
|
|
6501
|
+
*/
|
|
6502
|
+
role?: string;
|
|
6449
6503
|
};
|
|
6450
6504
|
type InviteSeriesManagerInputBodyWritable = {
|
|
6451
6505
|
/**
|
|
@@ -6459,9 +6513,13 @@ type InviteSpaceManagerInputBodyWritable = {
|
|
|
6459
6513
|
*/
|
|
6460
6514
|
email: string;
|
|
6461
6515
|
/**
|
|
6462
|
-
* Permissions to grant upon acceptance
|
|
6516
|
+
* Permissions to grant upon acceptance. Ignored when role is set.
|
|
6463
6517
|
*/
|
|
6464
6518
|
permissions: Array<string> | null;
|
|
6519
|
+
/**
|
|
6520
|
+
* Optional space manager role bundle (e.g. space_manager:full). When set, the role REPLACES the permissions list.
|
|
6521
|
+
*/
|
|
6522
|
+
role?: string;
|
|
6465
6523
|
};
|
|
6466
6524
|
type ListInvitesOutputBodyWritable = {
|
|
6467
6525
|
items: Array<InviteWritable> | null;
|
|
@@ -6495,6 +6553,9 @@ type ListPendingManagerInvitesOutputBodyWritable = {
|
|
|
6495
6553
|
*/
|
|
6496
6554
|
items: Array<PendingManagerInvite> | null;
|
|
6497
6555
|
};
|
|
6556
|
+
type ListRolesOutputBodyWritable = {
|
|
6557
|
+
roles: Array<RoleDefinition> | null;
|
|
6558
|
+
};
|
|
6498
6559
|
type LivenessOutputBodyWritable = {
|
|
6499
6560
|
/**
|
|
6500
6561
|
* Service name
|
|
@@ -6602,10 +6663,6 @@ type OptionsWritable = {
|
|
|
6602
6663
|
priority?: string;
|
|
6603
6664
|
};
|
|
6604
6665
|
type OrganizationWritable = {
|
|
6605
|
-
/**
|
|
6606
|
-
* Allow public resource visibility
|
|
6607
|
-
*/
|
|
6608
|
-
allow_public_visibility: boolean;
|
|
6609
6666
|
/**
|
|
6610
6667
|
* Created timestamp
|
|
6611
6668
|
*/
|
|
@@ -7542,6 +7599,10 @@ type SpaceManagerWritable = {
|
|
|
7542
7599
|
* Assigned space manager permissions
|
|
7543
7600
|
*/
|
|
7544
7601
|
permissions: Array<string> | null;
|
|
7602
|
+
/**
|
|
7603
|
+
* Pre-defined role bundle name (e.g. space_manager:full); NULL for custom permission combinations.
|
|
7604
|
+
*/
|
|
7605
|
+
role?: string;
|
|
7545
7606
|
/**
|
|
7546
7607
|
* Space ID
|
|
7547
7608
|
*/
|
|
@@ -7768,10 +7829,6 @@ type UpdateMilestoneInputBodyWritable = {
|
|
|
7768
7829
|
sequence: number;
|
|
7769
7830
|
};
|
|
7770
7831
|
type UpdateOrgBodyWritable = {
|
|
7771
|
-
/**
|
|
7772
|
-
* Allow B2C public access to published resources
|
|
7773
|
-
*/
|
|
7774
|
-
allow_public_visibility: boolean;
|
|
7775
7832
|
/**
|
|
7776
7833
|
* Organization name
|
|
7777
7834
|
*/
|
|
@@ -10750,6 +10807,26 @@ type OrganizationsInvitesDeleteResponses = {
|
|
|
10750
10807
|
204: void;
|
|
10751
10808
|
};
|
|
10752
10809
|
type OrganizationsInvitesDeleteResponse = OrganizationsInvitesDeleteResponses[keyof OrganizationsInvitesDeleteResponses];
|
|
10810
|
+
type PermissionsListRolesData = {
|
|
10811
|
+
body?: never;
|
|
10812
|
+
path?: never;
|
|
10813
|
+
query?: never;
|
|
10814
|
+
url: '/api/v1/permissions/roles';
|
|
10815
|
+
};
|
|
10816
|
+
type PermissionsListRolesErrors = {
|
|
10817
|
+
/**
|
|
10818
|
+
* Error
|
|
10819
|
+
*/
|
|
10820
|
+
default: ErrorModel;
|
|
10821
|
+
};
|
|
10822
|
+
type PermissionsListRolesError = PermissionsListRolesErrors[keyof PermissionsListRolesErrors];
|
|
10823
|
+
type PermissionsListRolesResponses = {
|
|
10824
|
+
/**
|
|
10825
|
+
* OK
|
|
10826
|
+
*/
|
|
10827
|
+
200: ListRolesOutputBody;
|
|
10828
|
+
};
|
|
10829
|
+
type PermissionsListRolesResponse = PermissionsListRolesResponses[keyof PermissionsListRolesResponses];
|
|
10753
10830
|
type PlacesListData = {
|
|
10754
10831
|
body?: never;
|
|
10755
10832
|
path?: never;
|
|
@@ -13432,6 +13509,14 @@ declare class Organizations extends HeyApiClient {
|
|
|
13432
13509
|
private _invites?;
|
|
13433
13510
|
get invites(): Invites;
|
|
13434
13511
|
}
|
|
13512
|
+
declare class Permissions extends HeyApiClient {
|
|
13513
|
+
/**
|
|
13514
|
+
* List all assignable role bundles
|
|
13515
|
+
*
|
|
13516
|
+
* Returns every role bundle (org / event_manager / space_manager / token) with its permissions. UI uses this to render permission/bundle pickers without hardcoding lists.
|
|
13517
|
+
*/
|
|
13518
|
+
listRoles<ThrowOnError extends boolean = false>(options?: Options<PermissionsListRolesData, ThrowOnError>): RequestResult<PermissionsListRolesResponses, PermissionsListRolesErrors, ThrowOnError, "fields">;
|
|
13519
|
+
}
|
|
13435
13520
|
declare class Places extends HeyApiClient {
|
|
13436
13521
|
/**
|
|
13437
13522
|
* List places
|
|
@@ -13818,6 +13903,8 @@ declare class Linebundle extends HeyApiClient {
|
|
|
13818
13903
|
get integrations(): Integrations;
|
|
13819
13904
|
private _organizations?;
|
|
13820
13905
|
get organizations(): Organizations;
|
|
13906
|
+
private _permissions?;
|
|
13907
|
+
get permissions(): Permissions;
|
|
13821
13908
|
private _places?;
|
|
13822
13909
|
get places(): Places;
|
|
13823
13910
|
private _profiles?;
|
|
@@ -13862,4 +13949,4 @@ type LinebundleOptions = {
|
|
|
13862
13949
|
*/
|
|
13863
13950
|
declare function createLinebundle({ token, orgId, baseUrl, }: LinebundleOptions): Linebundle;
|
|
13864
13951
|
|
|
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 };
|
|
13952
|
+
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,
|