@linebundle-sdk/ts 1.0.0-rc.37 → 1.0.0-rc.39

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
package/esm/index.d.ts CHANGED
@@ -502,10 +502,18 @@ type AddSpaceAnnouncementInputBody = {
502
502
  * Send email notification to all space contacts
503
503
  */
504
504
  send_email: boolean;
505
+ /**
506
+ * Send WhatsApp message to all space contacts with a WhatsApp number
507
+ */
508
+ send_whatsapp: boolean;
505
509
  /**
506
510
  * Announcement title
507
511
  */
508
512
  title: string;
513
+ /**
514
+ * WhatsApp Business phone number ID to send from (required when send_whatsapp is true)
515
+ */
516
+ whatsapp_sender_id: string;
509
517
  };
510
518
  type AddSpaceContactInputBody = {
511
519
  /**
@@ -571,6 +579,16 @@ type AddSpaceManagerInputBody = {
571
579
  */
572
580
  user_id: string;
573
581
  };
582
+ type AddSpaceParentInputBody = {
583
+ /**
584
+ * A URL to the JSON Schema for this object.
585
+ */
586
+ readonly $schema?: string;
587
+ /**
588
+ * Parent space ID to add
589
+ */
590
+ parent_id: number;
591
+ };
574
592
  type Announcement = {
575
593
  /**
576
594
  * A URL to the JSON Schema for this object.
@@ -1112,6 +1130,10 @@ type Contact = {
1112
1130
  * Website URL
1113
1131
  */
1114
1132
  website: string | null;
1133
+ /**
1134
+ * WhatsApp number (E.164 without leading +, e.g. 2348012345678)
1135
+ */
1136
+ whatsapp: string | null;
1115
1137
  };
1116
1138
  type ContactBody = {
1117
1139
  /**
@@ -1206,6 +1228,10 @@ type ContactBody = {
1206
1228
  * Website URL
1207
1229
  */
1208
1230
  website?: string;
1231
+ /**
1232
+ * WhatsApp number (E.164 without leading +, e.g. 2348012345678)
1233
+ */
1234
+ whatsapp?: string;
1209
1235
  };
1210
1236
  type ContactSummary = {
1211
1237
  /**
@@ -1503,9 +1529,9 @@ type CreateSpaceInputBody = {
1503
1529
  */
1504
1530
  description?: string;
1505
1531
  /**
1506
- * Parent space ID
1532
+ * Parent space IDs
1507
1533
  */
1508
- parent_id?: number;
1534
+ parent_ids?: Array<number> | null;
1509
1535
  /**
1510
1536
  * Order within parent
1511
1537
  */
@@ -1788,6 +1814,10 @@ type Event = {
1788
1814
  * Canonical title from the series master row
1789
1815
  */
1790
1816
  series_title?: string;
1817
+ /**
1818
+ * Spaces this event belongs to (populated in list responses)
1819
+ */
1820
+ spaces?: Array<EventListSpace> | null;
1791
1821
  /**
1792
1822
  * Start datetime (UTC)
1793
1823
  */
@@ -1942,6 +1972,16 @@ type EventLinkWithTarget = {
1942
1972
  */
1943
1973
  target_id: number;
1944
1974
  };
1975
+ type EventListSpace = {
1976
+ /**
1977
+ * Space ID
1978
+ */
1979
+ id: number;
1980
+ /**
1981
+ * Space title
1982
+ */
1983
+ title: string;
1984
+ };
1945
1985
  type EventManager = {
1946
1986
  /**
1947
1987
  * A URL to the JSON Schema for this object.
@@ -2394,6 +2434,29 @@ type FavoriteInputBody = {
2394
2434
  */
2395
2435
  is_favorite: boolean;
2396
2436
  };
2437
+ type IntegrationField = {
2438
+ /**
2439
+ * A URL to the JSON Schema for this object.
2440
+ */
2441
+ readonly $schema?: string;
2442
+ app_id: string;
2443
+ contact_id: string;
2444
+ created_at: string;
2445
+ field_key: string;
2446
+ id: string;
2447
+ org_id?: string;
2448
+ updated_at: string;
2449
+ value: string;
2450
+ };
2451
+ type IntegrationFieldUpsert = {
2452
+ /**
2453
+ * A URL to the JSON Schema for this object.
2454
+ */
2455
+ readonly $schema?: string;
2456
+ app_id: string;
2457
+ field_key: string;
2458
+ value: string;
2459
+ };
2397
2460
  type Invite = {
2398
2461
  /**
2399
2462
  * A URL to the JSON Schema for this object.
@@ -2478,6 +2541,14 @@ type InviteSpaceManagerInputBody = {
2478
2541
  */
2479
2542
  role?: string;
2480
2543
  };
2544
+ type ListIntegrationFieldsOutputBody = {
2545
+ /**
2546
+ * A URL to the JSON Schema for this object.
2547
+ */
2548
+ readonly $schema?: string;
2549
+ items: Array<IntegrationField> | null;
2550
+ total: number;
2551
+ };
2481
2552
  type ListInvitesOutputBody = {
2482
2553
  /**
2483
2554
  * A URL to the JSON Schema for this object.
@@ -2537,6 +2608,16 @@ type ListRolesOutputBody = {
2537
2608
  readonly $schema?: string;
2538
2609
  roles: Array<RoleDefinition> | null;
2539
2610
  };
2611
+ type ListSpaceParentsOutputBody = {
2612
+ /**
2613
+ * A URL to the JSON Schema for this object.
2614
+ */
2615
+ readonly $schema?: string;
2616
+ /**
2617
+ * Parent spaces
2618
+ */
2619
+ items: Array<Space> | null;
2620
+ };
2540
2621
  type LivenessOutputBody = {
2541
2622
  /**
2542
2623
  * A URL to the JSON Schema for this object.
@@ -3652,9 +3733,9 @@ type PublicSpaceSummary = {
3652
3733
  */
3653
3734
  id: number;
3654
3735
  /**
3655
- * Parent space ID
3736
+ * Parent space IDs
3656
3737
  */
3657
- parent_id?: number;
3738
+ parent_ids?: Array<number> | null;
3658
3739
  /**
3659
3740
  * When this space was published
3660
3741
  */
@@ -3672,6 +3753,16 @@ type PublicSpaceSummary = {
3672
3753
  */
3673
3754
  visibility: number;
3674
3755
  };
3756
+ type PublicSpaceTreeOutputBody = {
3757
+ /**
3758
+ * A URL to the JSON Schema for this object.
3759
+ */
3760
+ readonly $schema?: string;
3761
+ /**
3762
+ * Publicly visible spaces arranged as a multi-root hierarchy.
3763
+ */
3764
+ items: Array<SpaceTreeNode> | null;
3765
+ };
3675
3766
  type PublicViewerCapabilities = {
3676
3767
  /**
3677
3768
  * Whether the visitor can manage this space
@@ -3952,9 +4043,9 @@ type Space = {
3952
4043
  */
3953
4044
  org_id?: string;
3954
4045
  /**
3955
- * Parent space ID
4046
+ * Parent space IDs
3956
4047
  */
3957
- parent_id?: number;
4048
+ parent_ids?: Array<number> | null;
3958
4049
  /**
3959
4050
  * Order within parent
3960
4051
  */
@@ -4383,6 +4474,10 @@ type SpaceContactSummary = {
4383
4474
  * Primary phone
4384
4475
  */
4385
4476
  phone_primary?: string;
4477
+ /**
4478
+ * WhatsApp number
4479
+ */
4480
+ whatsapp?: string;
4386
4481
  };
4387
4482
  type SpaceEventLink = {
4388
4483
  /**
@@ -4709,6 +4804,46 @@ type SpaceSummary = {
4709
4804
  */
4710
4805
  visibility: number;
4711
4806
  };
4807
+ type SpaceTreeNode = {
4808
+ /**
4809
+ * Directly nested child spaces
4810
+ */
4811
+ children?: Array<SpaceTreeNode> | null;
4812
+ /**
4813
+ * Space description
4814
+ */
4815
+ description?: string;
4816
+ /**
4817
+ * Space ID
4818
+ */
4819
+ id: number;
4820
+ /**
4821
+ * Parent space IDs (may be multiple)
4822
+ */
4823
+ parent_ids?: Array<number> | null;
4824
+ /**
4825
+ * Publish status
4826
+ */
4827
+ status: string;
4828
+ /**
4829
+ * Space title
4830
+ */
4831
+ title: string;
4832
+ /**
4833
+ * Visibility level
4834
+ */
4835
+ visibility?: number;
4836
+ };
4837
+ type SpaceTreeOutputBody = {
4838
+ /**
4839
+ * A URL to the JSON Schema for this object.
4840
+ */
4841
+ readonly $schema?: string;
4842
+ /**
4843
+ * Spaces arranged as a multi-root hierarchy. Multi-parent spaces appear under each of their parents.
4844
+ */
4845
+ items: Array<SpaceTreeNode> | null;
4846
+ };
4712
4847
  type TriggerDefinition = {
4713
4848
  category?: string;
4714
4849
  description?: string;
@@ -5085,10 +5220,18 @@ type AddSpaceAnnouncementInputBodyWritable = {
5085
5220
  * Send email notification to all space contacts
5086
5221
  */
5087
5222
  send_email: boolean;
5223
+ /**
5224
+ * Send WhatsApp message to all space contacts with a WhatsApp number
5225
+ */
5226
+ send_whatsapp: boolean;
5088
5227
  /**
5089
5228
  * Announcement title
5090
5229
  */
5091
5230
  title: string;
5231
+ /**
5232
+ * WhatsApp Business phone number ID to send from (required when send_whatsapp is true)
5233
+ */
5234
+ whatsapp_sender_id: string;
5092
5235
  };
5093
5236
  type AddSpaceContactInputBodyWritable = {
5094
5237
  /**
@@ -5138,6 +5281,12 @@ type AddSpaceManagerInputBodyWritable = {
5138
5281
  */
5139
5282
  user_id: string;
5140
5283
  };
5284
+ type AddSpaceParentInputBodyWritable = {
5285
+ /**
5286
+ * Parent space ID to add
5287
+ */
5288
+ parent_id: number;
5289
+ };
5141
5290
  type AnnouncementWritable = {
5142
5291
  /**
5143
5292
  * Profile ID of the author
@@ -5518,6 +5667,10 @@ type ContactWritable = {
5518
5667
  * Website URL
5519
5668
  */
5520
5669
  website: string | null;
5670
+ /**
5671
+ * WhatsApp number (E.164 without leading +, e.g. 2348012345678)
5672
+ */
5673
+ whatsapp: string | null;
5521
5674
  };
5522
5675
  type ContactBodyWritable = {
5523
5676
  /**
@@ -5608,6 +5761,10 @@ type ContactBodyWritable = {
5608
5761
  * Website URL
5609
5762
  */
5610
5763
  website?: string;
5764
+ /**
5765
+ * WhatsApp number (E.164 without leading +, e.g. 2348012345678)
5766
+ */
5767
+ whatsapp?: string;
5611
5768
  };
5612
5769
  type CountsWritable = {
5613
5770
  /**
@@ -5839,9 +5996,9 @@ type CreateSpaceInputBodyWritable = {
5839
5996
  */
5840
5997
  description?: string;
5841
5998
  /**
5842
- * Parent space ID
5999
+ * Parent space IDs
5843
6000
  */
5844
- parent_id?: number;
6001
+ parent_ids?: Array<number> | null;
5845
6002
  /**
5846
6003
  * Order within parent
5847
6004
  */
@@ -6071,6 +6228,10 @@ type EventWritable = {
6071
6228
  * Canonical title from the series master row
6072
6229
  */
6073
6230
  series_title?: string;
6231
+ /**
6232
+ * Spaces this event belongs to (populated in list responses)
6233
+ */
6234
+ spaces?: Array<EventListSpace> | null;
6074
6235
  /**
6075
6236
  * Start datetime (UTC)
6076
6237
  */
@@ -6453,6 +6614,21 @@ type FavoriteInputBodyWritable = {
6453
6614
  */
6454
6615
  is_favorite: boolean;
6455
6616
  };
6617
+ type IntegrationFieldWritable = {
6618
+ app_id: string;
6619
+ contact_id: string;
6620
+ created_at: string;
6621
+ field_key: string;
6622
+ id: string;
6623
+ org_id?: string;
6624
+ updated_at: string;
6625
+ value: string;
6626
+ };
6627
+ type IntegrationFieldUpsertWritable = {
6628
+ app_id: string;
6629
+ field_key: string;
6630
+ value: string;
6631
+ };
6456
6632
  type InviteWritable = {
6457
6633
  /**
6458
6634
  * Created timestamp
@@ -6521,6 +6697,10 @@ type InviteSpaceManagerInputBodyWritable = {
6521
6697
  */
6522
6698
  role?: string;
6523
6699
  };
6700
+ type ListIntegrationFieldsOutputBodyWritable = {
6701
+ items: Array<IntegrationFieldWritable> | null;
6702
+ total: number;
6703
+ };
6524
6704
  type ListInvitesOutputBodyWritable = {
6525
6705
  items: Array<InviteWritable> | null;
6526
6706
  total: number;
@@ -6556,6 +6736,12 @@ type ListPendingManagerInvitesOutputBodyWritable = {
6556
6736
  type ListRolesOutputBodyWritable = {
6557
6737
  roles: Array<RoleDefinition> | null;
6558
6738
  };
6739
+ type ListSpaceParentsOutputBodyWritable = {
6740
+ /**
6741
+ * Parent spaces
6742
+ */
6743
+ items: Array<SpaceWritable> | null;
6744
+ };
6559
6745
  type LivenessOutputBodyWritable = {
6560
6746
  /**
6561
6747
  * Service name
@@ -7195,6 +7381,12 @@ type ProfileWritable = {
7195
7381
  */
7196
7382
  username?: string;
7197
7383
  };
7384
+ type PublicSpaceTreeOutputBodyWritable = {
7385
+ /**
7386
+ * Publicly visible spaces arranged as a multi-root hierarchy.
7387
+ */
7388
+ items: Array<SpaceTreeNode> | null;
7389
+ };
7198
7390
  type PublishAnnouncementInputBodyWritable = {
7199
7391
  /**
7200
7392
  * Email addresses to notify; omit to skip notification
@@ -7383,9 +7575,9 @@ type SpaceWritable = {
7383
7575
  */
7384
7576
  org_id?: string;
7385
7577
  /**
7386
- * Parent space ID
7578
+ * Parent space IDs
7387
7579
  */
7388
- parent_id?: number;
7580
+ parent_ids?: Array<number> | null;
7389
7581
  /**
7390
7582
  * Order within parent
7391
7583
  */
@@ -7730,6 +7922,12 @@ type SpaceSettingsPatchWritable = {
7730
7922
  */
7731
7923
  notify_on_event?: boolean;
7732
7924
  };
7925
+ type SpaceTreeOutputBodyWritable = {
7926
+ /**
7927
+ * Spaces arranged as a multi-root hierarchy. Multi-parent spaces appear under each of their parents.
7928
+ */
7929
+ items: Array<SpaceTreeNode> | null;
7930
+ };
7733
7931
  type UpdateAttendeeStatusInputBodyWritable = {
7734
7932
  /**
7735
7933
  * New status
@@ -8005,6 +8203,14 @@ type AnnouncementsListData = {
8005
8203
  * When true, exclude announcements past their expires_at
8006
8204
  */
8007
8205
  active?: boolean;
8206
+ /**
8207
+ * Sort field
8208
+ */
8209
+ sort_by?: 'created_at' | 'title';
8210
+ /**
8211
+ * Sort direction
8212
+ */
8213
+ sort_dir?: 'asc' | 'desc';
8008
8214
  };
8009
8215
  url: '/api/v1/announcements';
8010
8216
  };
@@ -8861,6 +9067,89 @@ type ContactsToggleFavoriteResponses = {
8861
9067
  200: Contact;
8862
9068
  };
8863
9069
  type ContactsToggleFavoriteResponse = ContactsToggleFavoriteResponses[keyof ContactsToggleFavoriteResponses];
9070
+ type ContactsListIntegrationFieldsData = {
9071
+ body?: never;
9072
+ path: {
9073
+ /**
9074
+ * Contact ID
9075
+ */
9076
+ id: string;
9077
+ };
9078
+ query?: never;
9079
+ url: '/api/v1/contacts/{id}/integration-fields';
9080
+ };
9081
+ type ContactsListIntegrationFieldsErrors = {
9082
+ /**
9083
+ * Error
9084
+ */
9085
+ default: ErrorModel;
9086
+ };
9087
+ type ContactsListIntegrationFieldsError = ContactsListIntegrationFieldsErrors[keyof ContactsListIntegrationFieldsErrors];
9088
+ type ContactsListIntegrationFieldsResponses = {
9089
+ /**
9090
+ * OK
9091
+ */
9092
+ 200: ListIntegrationFieldsOutputBody;
9093
+ };
9094
+ type ContactsListIntegrationFieldsResponse = ContactsListIntegrationFieldsResponses[keyof ContactsListIntegrationFieldsResponses];
9095
+ type ContactsUpsertIntegrationFieldData = {
9096
+ body: IntegrationFieldUpsertWritable;
9097
+ path: {
9098
+ /**
9099
+ * Contact ID
9100
+ */
9101
+ id: string;
9102
+ };
9103
+ query?: never;
9104
+ url: '/api/v1/contacts/{id}/integration-fields';
9105
+ };
9106
+ type ContactsUpsertIntegrationFieldErrors = {
9107
+ /**
9108
+ * Error
9109
+ */
9110
+ default: ErrorModel;
9111
+ };
9112
+ type ContactsUpsertIntegrationFieldError = ContactsUpsertIntegrationFieldErrors[keyof ContactsUpsertIntegrationFieldErrors];
9113
+ type ContactsUpsertIntegrationFieldResponses = {
9114
+ /**
9115
+ * OK
9116
+ */
9117
+ 200: IntegrationField;
9118
+ };
9119
+ type ContactsUpsertIntegrationFieldResponse = ContactsUpsertIntegrationFieldResponses[keyof ContactsUpsertIntegrationFieldResponses];
9120
+ type ContactsDeleteIntegrationFieldData = {
9121
+ body?: never;
9122
+ path: {
9123
+ /**
9124
+ * Contact ID
9125
+ */
9126
+ id: string;
9127
+ /**
9128
+ * Integration app ID
9129
+ */
9130
+ app_id: string;
9131
+ /**
9132
+ * Field key (e.g. instagram_igsid)
9133
+ */
9134
+ field_key: string;
9135
+ };
9136
+ query?: never;
9137
+ url: '/api/v1/contacts/{id}/integration-fields/{app_id}/{field_key}';
9138
+ };
9139
+ type ContactsDeleteIntegrationFieldErrors = {
9140
+ /**
9141
+ * Error
9142
+ */
9143
+ default: ErrorModel;
9144
+ };
9145
+ type ContactsDeleteIntegrationFieldError = ContactsDeleteIntegrationFieldErrors[keyof ContactsDeleteIntegrationFieldErrors];
9146
+ type ContactsDeleteIntegrationFieldResponses = {
9147
+ /**
9148
+ * No Content
9149
+ */
9150
+ 204: void;
9151
+ };
9152
+ type ContactsDeleteIntegrationFieldResponse = ContactsDeleteIntegrationFieldResponses[keyof ContactsDeleteIntegrationFieldResponses];
8864
9153
  type CredentialsListData = {
8865
9154
  body?: never;
8866
9155
  path?: never;
@@ -8983,6 +9272,18 @@ type EventsListData = {
8983
9272
  * Filter by visibility level: 10=private, 20=members-only, 30=organization, 40=public. Omit or pass 0 to return all visible rows.
8984
9273
  */
8985
9274
  visibility?: number;
9275
+ /**
9276
+ * Return only events whose start date is at or after this datetime (UTC ISO-8601). Omit for no lower bound.
9277
+ */
9278
+ start_dt_after?: string;
9279
+ /**
9280
+ * Return only events whose start date is at or before this datetime (UTC ISO-8601). Omit for no upper bound.
9281
+ */
9282
+ start_dt_before?: string;
9283
+ /**
9284
+ * Filter to events belonging to any of these space IDs (repeatable). Omit or pass empty to return events from all spaces.
9285
+ */
9286
+ space_ids?: Array<number> | null;
8986
9287
  };
8987
9288
  url: '/api/v1/events';
8988
9289
  };
@@ -11180,6 +11481,26 @@ type PublicAnnouncementsListData = {
11180
11481
  * Items per page
11181
11482
  */
11182
11483
  size?: number;
11484
+ /**
11485
+ * Filter by priority (repeatable); matches any
11486
+ */
11487
+ priority?: Array<'routine' | 'important' | 'urgent' | 'critical'> | null;
11488
+ /**
11489
+ * Filter by tag (repeatable); matches any
11490
+ */
11491
+ tag?: Array<string> | null;
11492
+ /**
11493
+ * When true, exclude announcements past their expires_at
11494
+ */
11495
+ active?: boolean;
11496
+ /**
11497
+ * Sort field
11498
+ */
11499
+ sort_by?: 'created_at' | 'title';
11500
+ /**
11501
+ * Sort direction
11502
+ */
11503
+ sort_dir?: 'asc' | 'desc';
11183
11504
  };
11184
11505
  url: '/api/v1/public/announcements';
11185
11506
  };
@@ -11320,6 +11641,26 @@ type PublicSpacesListResponses = {
11320
11641
  200: PagedBodySpace;
11321
11642
  };
11322
11643
  type PublicSpacesListResponse = PublicSpacesListResponses[keyof PublicSpacesListResponses];
11644
+ type PublicSpacesTreeData = {
11645
+ body?: never;
11646
+ path?: never;
11647
+ query?: never;
11648
+ url: '/api/v1/public/spaces/tree';
11649
+ };
11650
+ type PublicSpacesTreeErrors = {
11651
+ /**
11652
+ * Error
11653
+ */
11654
+ default: ErrorModel;
11655
+ };
11656
+ type PublicSpacesTreeError = PublicSpacesTreeErrors[keyof PublicSpacesTreeErrors];
11657
+ type PublicSpacesTreeResponses = {
11658
+ /**
11659
+ * OK
11660
+ */
11661
+ 200: PublicSpaceTreeOutputBody;
11662
+ };
11663
+ type PublicSpacesTreeResponse = PublicSpacesTreeResponses[keyof PublicSpacesTreeResponses];
11323
11664
  type PublicSpacesGetData = {
11324
11665
  body?: never;
11325
11666
  path: {
@@ -12017,6 +12358,26 @@ type SpacesListPendingManagerInvitesResponses = {
12017
12358
  200: ListPendingManagerInvitesOutputBody;
12018
12359
  };
12019
12360
  type SpacesListPendingManagerInvitesResponse = SpacesListPendingManagerInvitesResponses[keyof SpacesListPendingManagerInvitesResponses];
12361
+ type SpacesTreeData = {
12362
+ body?: never;
12363
+ path?: never;
12364
+ query?: never;
12365
+ url: '/api/v1/spaces/tree';
12366
+ };
12367
+ type SpacesTreeErrors = {
12368
+ /**
12369
+ * Error
12370
+ */
12371
+ default: ErrorModel;
12372
+ };
12373
+ type SpacesTreeError = SpacesTreeErrors[keyof SpacesTreeErrors];
12374
+ type SpacesTreeResponses = {
12375
+ /**
12376
+ * OK
12377
+ */
12378
+ 200: SpaceTreeOutputBody;
12379
+ };
12380
+ type SpacesTreeResponse = SpacesTreeResponses[keyof SpacesTreeResponses];
12020
12381
  type SpacesDeleteData = {
12021
12382
  body?: never;
12022
12383
  path: {
@@ -12879,6 +13240,85 @@ type SpacesRemoveMemberResponses = {
12879
13240
  204: void;
12880
13241
  };
12881
13242
  type SpacesRemoveMemberResponse = SpacesRemoveMemberResponses[keyof SpacesRemoveMemberResponses];
13243
+ type SpacesListParentsData = {
13244
+ body?: never;
13245
+ path: {
13246
+ /**
13247
+ * Space ID
13248
+ */
13249
+ id: number;
13250
+ };
13251
+ query?: never;
13252
+ url: '/api/v1/spaces/{id}/parents';
13253
+ };
13254
+ type SpacesListParentsErrors = {
13255
+ /**
13256
+ * Error
13257
+ */
13258
+ default: ErrorModel;
13259
+ };
13260
+ type SpacesListParentsError = SpacesListParentsErrors[keyof SpacesListParentsErrors];
13261
+ type SpacesListParentsResponses = {
13262
+ /**
13263
+ * OK
13264
+ */
13265
+ 200: ListSpaceParentsOutputBody;
13266
+ };
13267
+ type SpacesListParentsResponse = SpacesListParentsResponses[keyof SpacesListParentsResponses];
13268
+ type SpacesAddParentData = {
13269
+ body: AddSpaceParentInputBodyWritable;
13270
+ path: {
13271
+ /**
13272
+ * Space ID
13273
+ */
13274
+ id: number;
13275
+ };
13276
+ query?: never;
13277
+ url: '/api/v1/spaces/{id}/parents';
13278
+ };
13279
+ type SpacesAddParentErrors = {
13280
+ /**
13281
+ * Error
13282
+ */
13283
+ default: ErrorModel;
13284
+ };
13285
+ type SpacesAddParentError = SpacesAddParentErrors[keyof SpacesAddParentErrors];
13286
+ type SpacesAddParentResponses = {
13287
+ /**
13288
+ * No Content
13289
+ */
13290
+ 204: void;
13291
+ };
13292
+ type SpacesAddParentResponse = SpacesAddParentResponses[keyof SpacesAddParentResponses];
13293
+ type SpacesRemoveParentData = {
13294
+ body?: never;
13295
+ path: {
13296
+ /**
13297
+ * Space ID
13298
+ */
13299
+ id: number;
13300
+ /**
13301
+ * Parent space ID to remove
13302
+ */
13303
+ parent_id: number;
13304
+ };
13305
+ query?: never;
13306
+ url: '/api/v1/spaces/{id}/parents/{parent_id}';
13307
+ };
13308
+ type SpacesRemoveParentErrors = {
13309
+ /**
13310
+ * Error
13311
+ */
13312
+ default: ErrorModel;
13313
+ };
13314
+ type SpacesRemoveParentError = SpacesRemoveParentErrors[keyof SpacesRemoveParentErrors];
13315
+ type SpacesRemoveParentResponses = {
13316
+ /**
13317
+ * No Content
13318
+ */
13319
+ 204: void;
13320
+ };
13321
+ type SpacesRemoveParentResponse = SpacesRemoveParentResponses[keyof SpacesRemoveParentResponses];
12882
13322
  type SpacesPublishData = {
12883
13323
  body?: OptionsWritable;
12884
13324
  path: {
@@ -13188,6 +13628,18 @@ declare class Contacts extends HeyApiClient {
13188
13628
  * Toggle contact favorite
13189
13629
  */
13190
13630
  toggleFavorite<ThrowOnError extends boolean = false>(options: Options<ContactsToggleFavoriteData, ThrowOnError>): RequestResult<ContactsToggleFavoriteResponses, ContactsToggleFavoriteErrors, ThrowOnError, "fields">;
13631
+ /**
13632
+ * List integration-linked fields for a contact
13633
+ */
13634
+ listIntegrationFields<ThrowOnError extends boolean = false>(options: Options<ContactsListIntegrationFieldsData, ThrowOnError>): RequestResult<ContactsListIntegrationFieldsResponses, ContactsListIntegrationFieldsErrors, ThrowOnError, "fields">;
13635
+ /**
13636
+ * Create or update an integration-linked field on a contact
13637
+ */
13638
+ upsertIntegrationField<ThrowOnError extends boolean = false>(options: Options<ContactsUpsertIntegrationFieldData, ThrowOnError>): RequestResult<ContactsUpsertIntegrationFieldResponses, ContactsUpsertIntegrationFieldErrors, ThrowOnError, "fields">;
13639
+ /**
13640
+ * Remove an integration-linked field from a contact
13641
+ */
13642
+ deleteIntegrationField<ThrowOnError extends boolean = false>(options: Options<ContactsDeleteIntegrationFieldData, ThrowOnError>): RequestResult<ContactsDeleteIntegrationFieldResponses, ContactsDeleteIntegrationFieldErrors, ThrowOnError, "fields">;
13191
13643
  }
13192
13644
  declare class Credentials extends HeyApiClient {
13193
13645
  /**
@@ -13606,6 +14058,12 @@ declare class Spaces extends HeyApiClient {
13606
14058
  * Returns published spaces that the owning organisation has made publicly visible. No authentication required.
13607
14059
  */
13608
14060
  list<ThrowOnError extends boolean = false>(options?: Options<PublicSpacesListData, ThrowOnError>): RequestResult<PublicSpacesListResponses, PublicSpacesListErrors, ThrowOnError, "fields">;
14061
+ /**
14062
+ * Get public spaces as a hierarchical tree
14063
+ *
14064
+ * Returns all publicly visible spaces (visibility=40, status=published) arranged as a multi-root hierarchy. No authentication required. Use this to render collapsible space filter UIs.
14065
+ */
14066
+ tree<ThrowOnError extends boolean = false>(options?: Options<PublicSpacesTreeData, ThrowOnError>): RequestResult<PublicSpacesTreeResponses, PublicSpacesTreeErrors, ThrowOnError, "fields">;
13609
14067
  /**
13610
14068
  * Get a public space
13611
14069
  *
@@ -13728,6 +14186,12 @@ declare class Spaces2 extends HeyApiClient {
13728
14186
  * List pending space manager invitations for the current user
13729
14187
  */
13730
14188
  listPendingManagerInvites<ThrowOnError extends boolean = false>(options?: Options<SpacesListPendingManagerInvitesData, ThrowOnError>): RequestResult<SpacesListPendingManagerInvitesResponses, SpacesListPendingManagerInvitesErrors, ThrowOnError, "fields">;
14189
+ /**
14190
+ * Get spaces as a hierarchical tree
14191
+ *
14192
+ * Returns all published spaces arranged as a multi-root hierarchy. Each node may have children nested under it. Because spaces support multiple parents, a space can appear under more than one parent node.
14193
+ */
14194
+ tree<ThrowOnError extends boolean = false>(options?: Options<SpacesTreeData, ThrowOnError>): RequestResult<SpacesTreeResponses, SpacesTreeErrors, ThrowOnError, "fields">;
13731
14195
  /**
13732
14196
  * Delete a space
13733
14197
  */
@@ -13848,6 +14312,18 @@ declare class Spaces2 extends HeyApiClient {
13848
14312
  * Remove a member from a space
13849
14313
  */
13850
14314
  removeMember<ThrowOnError extends boolean = false>(options: Options<SpacesRemoveMemberData, ThrowOnError>): RequestResult<SpacesRemoveMemberResponses, SpacesRemoveMemberErrors, ThrowOnError, "fields">;
14315
+ /**
14316
+ * List parent spaces of a space
14317
+ */
14318
+ listParents<ThrowOnError extends boolean = false>(options: Options<SpacesListParentsData, ThrowOnError>): RequestResult<SpacesListParentsResponses, SpacesListParentsErrors, ThrowOnError, "fields">;
14319
+ /**
14320
+ * Add a parent to a space
14321
+ */
14322
+ addParent<ThrowOnError extends boolean = false>(options: Options<SpacesAddParentData, ThrowOnError>): RequestResult<SpacesAddParentResponses, SpacesAddParentErrors, ThrowOnError, "fields">;
14323
+ /**
14324
+ * Remove a parent from a space
14325
+ */
14326
+ removeParent<ThrowOnError extends boolean = false>(options: Options<SpacesRemoveParentData, ThrowOnError>): RequestResult<SpacesRemoveParentResponses, SpacesRemoveParentErrors, ThrowOnError, "fields">;
13851
14327
  /**
13852
14328
  * Publish a space
13853
14329
  *
@@ -13949,4 +14425,4 @@ type LinebundleOptions = {
13949
14425
  */
13950
14426
  declare function createLinebundle({ token, orgId, baseUrl, }: LinebundleOptions): Linebundle;
13951
14427
 
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 };
14428
+ 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, type AddSpaceParentInputBody, type AddSpaceParentInputBodyWritable, 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 ContactsDeleteIntegrationFieldData, type ContactsDeleteIntegrationFieldError, type ContactsDeleteIntegrationFieldErrors, type ContactsDeleteIntegrationFieldResponse, type ContactsDeleteIntegrationFieldResponses, type ContactsDeleteResponse, type ContactsDeleteResponses, type ContactsGetData, type ContactsGetError, type ContactsGetErrors, type ContactsGetResponse, type ContactsGetResponses, type ContactsListData, type ContactsListError, type ContactsListErrors, type ContactsListIntegrationFieldsData, type ContactsListIntegrationFieldsError, type ContactsListIntegrationFieldsErrors, type ContactsListIntegrationFieldsResponse, type ContactsListIntegrationFieldsResponses, 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 ContactsUpsertIntegrationFieldData, type ContactsUpsertIntegrationFieldError, type ContactsUpsertIntegrationFieldErrors, type ContactsUpsertIntegrationFieldResponse, type ContactsUpsertIntegrationFieldResponses, 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 EventListSpace, 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, type IntegrationField, type IntegrationFieldUpsert, type IntegrationFieldUpsertWritable, type IntegrationFieldWritable, 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 ListIntegrationFieldsOutputBody, type ListIntegrationFieldsOutputBodyWritable, 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 ListSpaceParentsOutputBody, type ListSpaceParentsOutputBodyWritable, 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 PublicSpaceTreeOutputBody, type PublicSpaceTreeOutputBodyWritable, type PublicSpacesGetData, type PublicSpacesGetError, type PublicSpacesGetErrors, type PublicSpacesGetResponse, type PublicSpacesGetResponses, type PublicSpacesListData, type PublicSpacesListError, type PublicSpacesListErrors, type PublicSpacesListResponse, type PublicSpacesListResponses, type PublicSpacesTreeData, type PublicSpacesTreeError, type PublicSpacesTreeErrors, type PublicSpacesTreeResponse, type PublicSpacesTreeResponses, 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 SpaceTreeNode, type SpaceTreeOutputBody, type SpaceTreeOutputBodyWritable, 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 SpacesAddParentData, type SpacesAddParentError, type SpacesAddParentErrors, type SpacesAddParentResponse, type SpacesAddParentResponses, 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 SpacesListParentsData, type SpacesListParentsError, type SpacesListParentsErrors, type SpacesListParentsResponse, type SpacesListParentsResponses, 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 SpacesRemoveParentData, type SpacesRemoveParentError, type SpacesRemoveParentErrors, type SpacesRemoveParentResponse, type SpacesRemoveParentResponses, type SpacesStartEditData, type SpacesStartEditError, type SpacesStartEditErrors, type SpacesStartEditResponse, type SpacesStartEditResponses, type SpacesTreeData, type SpacesTreeError, type SpacesTreeErrors, type SpacesTreeResponse, type SpacesTreeResponses, 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 };