@linebundle-sdk/ts 0.1.58 → 0.2.0
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 +1850 -222
- package/esm/index.js +671 -480
- package/esm/index.js.map +1 -1
- package/package.json +1 -1
package/esm/index.d.ts
CHANGED
|
@@ -183,7 +183,11 @@ type ServerSentEventsResult<TData = unknown, TReturn = void, TNext = unknown> =
|
|
|
183
183
|
stream: AsyncGenerator<TData extends Record<string, unknown> ? TData[keyof TData] : TData, TReturn, TNext>;
|
|
184
184
|
};
|
|
185
185
|
|
|
186
|
-
type ErrInterceptor<Err, Res, Req, Options> = (error: Err,
|
|
186
|
+
type ErrInterceptor<Err, Res, Req, Options> = (error: Err,
|
|
187
|
+
/** response may be undefined due to a network error where no response object is produced */
|
|
188
|
+
response: Res | undefined,
|
|
189
|
+
/** request may be undefined, because error may be from building the request object itself */
|
|
190
|
+
request: Req | undefined, options: Options) => Err | Promise<Err>;
|
|
187
191
|
type ReqInterceptor<Req, Options> = (request: Req, options: Options) => Req | Promise<Req>;
|
|
188
192
|
type ResInterceptor<Res, Req, Options> = (response: Res, request: Req, options: Options) => Res | Promise<Res>;
|
|
189
193
|
declare class Interceptors<Interceptor> {
|
|
@@ -262,6 +266,7 @@ interface RequestOptions<TData = unknown, TResponseStyle extends ResponseStyle =
|
|
|
262
266
|
url: Url;
|
|
263
267
|
}
|
|
264
268
|
interface ResolvedRequestOptions<TResponseStyle extends ResponseStyle = 'fields', ThrowOnError extends boolean = boolean, Url extends string = string> extends RequestOptions<unknown, TResponseStyle, ThrowOnError, Url> {
|
|
269
|
+
headers: Headers;
|
|
265
270
|
serializedBody?: string;
|
|
266
271
|
}
|
|
267
272
|
type RequestResult<TData = unknown, TError = unknown, ThrowOnError extends boolean = boolean, TResponseStyle extends ResponseStyle = 'fields'> = ThrowOnError extends true ? Promise<TResponseStyle extends 'data' ? TData extends Record<string, unknown> ? TData[keyof TData] : TData : {
|
|
@@ -275,8 +280,10 @@ type RequestResult<TData = unknown, TError = unknown, ThrowOnError extends boole
|
|
|
275
280
|
data: undefined;
|
|
276
281
|
error: TError extends Record<string, unknown> ? TError[keyof TError] : TError;
|
|
277
282
|
}) & {
|
|
278
|
-
request
|
|
279
|
-
|
|
283
|
+
/** request may be undefined, because error may be from building the request object itself */
|
|
284
|
+
request?: Request;
|
|
285
|
+
/** response may be undefined, because error may be from building the request object itself or from a network error */
|
|
286
|
+
response?: Response;
|
|
280
287
|
}>;
|
|
281
288
|
interface ClientOptions$1 {
|
|
282
289
|
baseUrl?: string;
|
|
@@ -345,6 +352,65 @@ type ActionDefinition = {
|
|
|
345
352
|
label: string;
|
|
346
353
|
type: string;
|
|
347
354
|
};
|
|
355
|
+
type ActivityAppendInputBody = {
|
|
356
|
+
/**
|
|
357
|
+
* A URL to the JSON Schema for this object.
|
|
358
|
+
*/
|
|
359
|
+
readonly $schema?: string;
|
|
360
|
+
/**
|
|
361
|
+
* Activity kind ('state_changed', 'edited', 'attachment_added', …).
|
|
362
|
+
*/
|
|
363
|
+
kind: string;
|
|
364
|
+
/**
|
|
365
|
+
* Kind-specific payload (free-form JSONB).
|
|
366
|
+
*/
|
|
367
|
+
payload?: {
|
|
368
|
+
[key: string]: unknown;
|
|
369
|
+
};
|
|
370
|
+
};
|
|
371
|
+
type ActivityListOutputBody = {
|
|
372
|
+
/**
|
|
373
|
+
* A URL to the JSON Schema for this object.
|
|
374
|
+
*/
|
|
375
|
+
readonly $schema?: string;
|
|
376
|
+
items: Array<ActivityLogEntry> | null;
|
|
377
|
+
};
|
|
378
|
+
type ActivityLogEntry = {
|
|
379
|
+
/**
|
|
380
|
+
* A URL to the JSON Schema for this object.
|
|
381
|
+
*/
|
|
382
|
+
readonly $schema?: string;
|
|
383
|
+
/**
|
|
384
|
+
* Who caused it; nil for system-originated rows (automation, scheduled jobs).
|
|
385
|
+
*/
|
|
386
|
+
actor_id?: string;
|
|
387
|
+
/**
|
|
388
|
+
* When the activity happened (UTC).
|
|
389
|
+
*/
|
|
390
|
+
at: string;
|
|
391
|
+
/**
|
|
392
|
+
* Parent event id.
|
|
393
|
+
*/
|
|
394
|
+
event_id: number;
|
|
395
|
+
/**
|
|
396
|
+
* Record ID (bigserial — activity volume can grow large)
|
|
397
|
+
*/
|
|
398
|
+
id: number;
|
|
399
|
+
/**
|
|
400
|
+
* Activity kind: 'state_changed', 'attachment_added', 'published', 'edited', etc. Open string — templates declare which kinds are meaningful.
|
|
401
|
+
*/
|
|
402
|
+
kind: string;
|
|
403
|
+
/**
|
|
404
|
+
* Organisation context.
|
|
405
|
+
*/
|
|
406
|
+
org_id?: string;
|
|
407
|
+
/**
|
|
408
|
+
* Kind-specific shape. JSONB at the storage layer.
|
|
409
|
+
*/
|
|
410
|
+
payload: {
|
|
411
|
+
[key: string]: unknown;
|
|
412
|
+
};
|
|
413
|
+
};
|
|
348
414
|
type AddAttendeeInputBody = {
|
|
349
415
|
/**
|
|
350
416
|
* A URL to the JSON Schema for this object.
|
|
@@ -354,6 +420,10 @@ type AddAttendeeInputBody = {
|
|
|
354
420
|
* Contact UUID
|
|
355
421
|
*/
|
|
356
422
|
contact_id: string;
|
|
423
|
+
/**
|
|
424
|
+
* The capacity in which this person attends — e.g. 'patient', 'provider', 'speaker', 'host'. Leave blank for generic attendees.
|
|
425
|
+
*/
|
|
426
|
+
function?: string;
|
|
357
427
|
/**
|
|
358
428
|
* Optional notes
|
|
359
429
|
*/
|
|
@@ -397,13 +467,17 @@ type AddEventManagerInputBody = {
|
|
|
397
467
|
*/
|
|
398
468
|
notify?: boolean;
|
|
399
469
|
/**
|
|
400
|
-
* Permissions to grant
|
|
470
|
+
* Permissions to grant. Ignored when role is set.
|
|
401
471
|
*/
|
|
402
472
|
permissions: Array<string> | null;
|
|
403
473
|
/**
|
|
404
474
|
* Notification priority: normal (default) or high
|
|
405
475
|
*/
|
|
406
476
|
priority?: string;
|
|
477
|
+
/**
|
|
478
|
+
* Optional event manager role bundle (e.g. event_manager:full). When set, the role REPLACES the permissions list.
|
|
479
|
+
*/
|
|
480
|
+
role?: string;
|
|
407
481
|
/**
|
|
408
482
|
* Profile ID of the manager
|
|
409
483
|
*/
|
|
@@ -493,15 +567,23 @@ type AddSpaceAnnouncementInputBody = {
|
|
|
493
567
|
/**
|
|
494
568
|
* Rich-text body
|
|
495
569
|
*/
|
|
496
|
-
body
|
|
570
|
+
body?: string;
|
|
497
571
|
/**
|
|
498
572
|
* Send email notification to all space contacts
|
|
499
573
|
*/
|
|
500
|
-
send_email
|
|
574
|
+
send_email?: boolean;
|
|
575
|
+
/**
|
|
576
|
+
* Send WhatsApp message to all space contacts with a WhatsApp number
|
|
577
|
+
*/
|
|
578
|
+
send_whatsapp?: boolean;
|
|
501
579
|
/**
|
|
502
580
|
* Announcement title
|
|
503
581
|
*/
|
|
504
582
|
title: string;
|
|
583
|
+
/**
|
|
584
|
+
* WhatsApp Business phone number ID to send from (required when send_whatsapp is true)
|
|
585
|
+
*/
|
|
586
|
+
whatsapp_sender_id?: string;
|
|
505
587
|
};
|
|
506
588
|
type AddSpaceContactInputBody = {
|
|
507
589
|
/**
|
|
@@ -551,18 +633,46 @@ type AddSpaceManagerInputBody = {
|
|
|
551
633
|
*/
|
|
552
634
|
notify?: boolean;
|
|
553
635
|
/**
|
|
554
|
-
* Permissions to grant
|
|
636
|
+
* Permissions to grant. Ignored when role is set.
|
|
555
637
|
*/
|
|
556
638
|
permissions: Array<string> | null;
|
|
557
639
|
/**
|
|
558
640
|
* Notification priority: normal (default) or high
|
|
559
641
|
*/
|
|
560
642
|
priority?: string;
|
|
643
|
+
/**
|
|
644
|
+
* Optional space manager role bundle (e.g. space_manager:full). When set, the role REPLACES the permissions list.
|
|
645
|
+
*/
|
|
646
|
+
role?: string;
|
|
561
647
|
/**
|
|
562
648
|
* Profile ID of the manager
|
|
563
649
|
*/
|
|
564
650
|
user_id: string;
|
|
565
651
|
};
|
|
652
|
+
type AddSpaceParentInputBody = {
|
|
653
|
+
/**
|
|
654
|
+
* A URL to the JSON Schema for this object.
|
|
655
|
+
*/
|
|
656
|
+
readonly $schema?: string;
|
|
657
|
+
/**
|
|
658
|
+
* Parent space ID to add
|
|
659
|
+
*/
|
|
660
|
+
parent_id: number;
|
|
661
|
+
};
|
|
662
|
+
type AdditionalField = {
|
|
663
|
+
/**
|
|
664
|
+
* Machine-readable slug, e.g. dress_code
|
|
665
|
+
*/
|
|
666
|
+
key: string;
|
|
667
|
+
/**
|
|
668
|
+
* Human-readable display name
|
|
669
|
+
*/
|
|
670
|
+
label: string;
|
|
671
|
+
/**
|
|
672
|
+
* Field value
|
|
673
|
+
*/
|
|
674
|
+
value: string;
|
|
675
|
+
};
|
|
566
676
|
type Announcement = {
|
|
567
677
|
/**
|
|
568
678
|
* A URL to the JSON Schema for this object.
|
|
@@ -580,18 +690,38 @@ type Announcement = {
|
|
|
580
690
|
* Created timestamp
|
|
581
691
|
*/
|
|
582
692
|
created_at: string;
|
|
693
|
+
/**
|
|
694
|
+
* Auto-archive after this time; null means no expiry
|
|
695
|
+
*/
|
|
696
|
+
expires_at?: string;
|
|
583
697
|
/**
|
|
584
698
|
* Announcement ID
|
|
585
699
|
*/
|
|
586
700
|
id: number;
|
|
701
|
+
/**
|
|
702
|
+
* R2/S3 object key for the cover image (internal)
|
|
703
|
+
*/
|
|
704
|
+
image_key?: string;
|
|
705
|
+
/**
|
|
706
|
+
* Presigned cover image URL (generated at read time, not stored)
|
|
707
|
+
*/
|
|
708
|
+
image_url?: string;
|
|
587
709
|
/**
|
|
588
710
|
* Organization ID (nil = personal)
|
|
589
711
|
*/
|
|
590
712
|
org_id?: string;
|
|
713
|
+
/**
|
|
714
|
+
* Urgency level
|
|
715
|
+
*/
|
|
716
|
+
priority: 'routine' | 'important' | 'urgent' | 'critical';
|
|
591
717
|
/**
|
|
592
718
|
* Lifecycle status
|
|
593
719
|
*/
|
|
594
720
|
status: 'draft' | 'published' | 'archived';
|
|
721
|
+
/**
|
|
722
|
+
* Searchable labels for filtering
|
|
723
|
+
*/
|
|
724
|
+
tags: Array<string> | null;
|
|
595
725
|
/**
|
|
596
726
|
* Title
|
|
597
727
|
*/
|
|
@@ -610,10 +740,22 @@ type AnnouncementCreate = {
|
|
|
610
740
|
* Rich-text markdown body
|
|
611
741
|
*/
|
|
612
742
|
body: string;
|
|
743
|
+
/**
|
|
744
|
+
* Auto-archive after this time
|
|
745
|
+
*/
|
|
746
|
+
expires_at?: string;
|
|
613
747
|
/**
|
|
614
748
|
* Organization scope
|
|
615
749
|
*/
|
|
616
750
|
org_id?: string;
|
|
751
|
+
/**
|
|
752
|
+
* Urgency level; defaults to routine
|
|
753
|
+
*/
|
|
754
|
+
priority?: 'routine' | 'important' | 'urgent' | 'critical';
|
|
755
|
+
/**
|
|
756
|
+
* Searchable labels
|
|
757
|
+
*/
|
|
758
|
+
tags?: Array<string> | null;
|
|
617
759
|
/**
|
|
618
760
|
* Announcement title
|
|
619
761
|
*/
|
|
@@ -628,10 +770,22 @@ type AnnouncementPatch = {
|
|
|
628
770
|
* New body
|
|
629
771
|
*/
|
|
630
772
|
body?: string;
|
|
773
|
+
/**
|
|
774
|
+
* New expiry time
|
|
775
|
+
*/
|
|
776
|
+
expires_at?: string;
|
|
777
|
+
/**
|
|
778
|
+
* New priority
|
|
779
|
+
*/
|
|
780
|
+
priority?: 'routine' | 'important' | 'urgent' | 'critical';
|
|
631
781
|
/**
|
|
632
782
|
* New status
|
|
633
783
|
*/
|
|
634
784
|
status?: 'draft' | 'published' | 'archived';
|
|
785
|
+
/**
|
|
786
|
+
* Replace tag list; empty array clears all tags
|
|
787
|
+
*/
|
|
788
|
+
tags?: Array<string>;
|
|
635
789
|
/**
|
|
636
790
|
* New title
|
|
637
791
|
*/
|
|
@@ -654,15 +808,106 @@ type AnnouncementSummary = {
|
|
|
654
808
|
* When the announcement was created
|
|
655
809
|
*/
|
|
656
810
|
created_at: string;
|
|
811
|
+
/**
|
|
812
|
+
* Auto-archive time; null means no expiry
|
|
813
|
+
*/
|
|
814
|
+
expires_at?: string;
|
|
815
|
+
/**
|
|
816
|
+
* R2/S3 object key for the cover image (internal)
|
|
817
|
+
*/
|
|
818
|
+
image_key?: string;
|
|
819
|
+
/**
|
|
820
|
+
* Presigned cover image URL (generated at read time, not stored)
|
|
821
|
+
*/
|
|
822
|
+
image_url?: string;
|
|
823
|
+
/**
|
|
824
|
+
* Urgency level
|
|
825
|
+
*/
|
|
826
|
+
priority: 'routine' | 'important' | 'urgent' | 'critical';
|
|
657
827
|
/**
|
|
658
828
|
* Lifecycle status
|
|
659
829
|
*/
|
|
660
830
|
status: string;
|
|
831
|
+
/**
|
|
832
|
+
* Searchable labels
|
|
833
|
+
*/
|
|
834
|
+
tags: Array<string> | null;
|
|
661
835
|
/**
|
|
662
836
|
* Announcement title
|
|
663
837
|
*/
|
|
664
838
|
title: string;
|
|
665
839
|
};
|
|
840
|
+
type Attachment = {
|
|
841
|
+
/**
|
|
842
|
+
* A URL to the JSON Schema for this object.
|
|
843
|
+
*/
|
|
844
|
+
readonly $schema?: string;
|
|
845
|
+
/**
|
|
846
|
+
* Created timestamp
|
|
847
|
+
*/
|
|
848
|
+
created_at: string;
|
|
849
|
+
/**
|
|
850
|
+
* Profile id of who attached it.
|
|
851
|
+
*/
|
|
852
|
+
created_by: string;
|
|
853
|
+
/**
|
|
854
|
+
* Event scope — set when this attachment applies to a specific occurrence.
|
|
855
|
+
*/
|
|
856
|
+
event_id?: number;
|
|
857
|
+
/**
|
|
858
|
+
* Record ID
|
|
859
|
+
*/
|
|
860
|
+
id: number;
|
|
861
|
+
/**
|
|
862
|
+
* Open string: 'image', 'document', 'signature', 'proof_of_delivery'. Validated against the parent template's AllowedAttachmentKinds.
|
|
863
|
+
*/
|
|
864
|
+
kind: string;
|
|
865
|
+
/**
|
|
866
|
+
* Kind-specific payload: mime, size, content_hash, dimensions, …
|
|
867
|
+
*/
|
|
868
|
+
metadata?: {
|
|
869
|
+
[key: string]: unknown;
|
|
870
|
+
};
|
|
871
|
+
/**
|
|
872
|
+
* Organisation context.
|
|
873
|
+
*/
|
|
874
|
+
org_id?: string;
|
|
875
|
+
/**
|
|
876
|
+
* Opaque storage identifier — URL, blob key, document_id depending on kind.
|
|
877
|
+
*/
|
|
878
|
+
ref: string;
|
|
879
|
+
/**
|
|
880
|
+
* Series scope — set when this attachment is shared across every occurrence in the series (study materials, etc.).
|
|
881
|
+
*/
|
|
882
|
+
series_id?: number;
|
|
883
|
+
};
|
|
884
|
+
type AttachmentAddInputBody = {
|
|
885
|
+
/**
|
|
886
|
+
* A URL to the JSON Schema for this object.
|
|
887
|
+
*/
|
|
888
|
+
readonly $schema?: string;
|
|
889
|
+
/**
|
|
890
|
+
* Attachment kind ('image', 'document', 'proof_of_delivery'). Validated against the parent template's AllowedAttachmentKinds.
|
|
891
|
+
*/
|
|
892
|
+
kind: string;
|
|
893
|
+
/**
|
|
894
|
+
* Kind-specific payload: mime, size, content_hash, …
|
|
895
|
+
*/
|
|
896
|
+
metadata?: {
|
|
897
|
+
[key: string]: unknown;
|
|
898
|
+
};
|
|
899
|
+
/**
|
|
900
|
+
* Opaque storage identifier — URL, blob key, document_id depending on kind.
|
|
901
|
+
*/
|
|
902
|
+
ref: string;
|
|
903
|
+
};
|
|
904
|
+
type AttachmentListOutputBody = {
|
|
905
|
+
/**
|
|
906
|
+
* A URL to the JSON Schema for this object.
|
|
907
|
+
*/
|
|
908
|
+
readonly $schema?: string;
|
|
909
|
+
items: Array<Attachment> | null;
|
|
910
|
+
};
|
|
666
911
|
type Attendee = {
|
|
667
912
|
/**
|
|
668
913
|
* A URL to the JSON Schema for this object.
|
|
@@ -684,6 +929,10 @@ type Attendee = {
|
|
|
684
929
|
* Event ID (when attending a specific occurrence)
|
|
685
930
|
*/
|
|
686
931
|
event_id?: number;
|
|
932
|
+
/**
|
|
933
|
+
* The capacity in which this person attends — e.g. 'patient', 'provider', 'speaker', 'host'. Template-driven; nil for generic events.
|
|
934
|
+
*/
|
|
935
|
+
function?: string;
|
|
687
936
|
/**
|
|
688
937
|
* Attendee record ID
|
|
689
938
|
*/
|
|
@@ -739,6 +988,10 @@ type AttendeeDetail = {
|
|
|
739
988
|
* Event ID (when attending a specific occurrence)
|
|
740
989
|
*/
|
|
741
990
|
event_id?: number;
|
|
991
|
+
/**
|
|
992
|
+
* The capacity in which this person attends — e.g. 'patient', 'provider', 'speaker', 'host'. Template-driven; nil for generic events.
|
|
993
|
+
*/
|
|
994
|
+
function?: string;
|
|
742
995
|
/**
|
|
743
996
|
* Attendee record ID
|
|
744
997
|
*/
|
|
@@ -1040,6 +1293,10 @@ type Contact = {
|
|
|
1040
1293
|
* Website URL
|
|
1041
1294
|
*/
|
|
1042
1295
|
website: string | null;
|
|
1296
|
+
/**
|
|
1297
|
+
* WhatsApp number (E.164 without leading +, e.g. 2348012345678)
|
|
1298
|
+
*/
|
|
1299
|
+
whatsapp: string | null;
|
|
1043
1300
|
};
|
|
1044
1301
|
type ContactBody = {
|
|
1045
1302
|
/**
|
|
@@ -1134,6 +1391,10 @@ type ContactBody = {
|
|
|
1134
1391
|
* Website URL
|
|
1135
1392
|
*/
|
|
1136
1393
|
website?: string;
|
|
1394
|
+
/**
|
|
1395
|
+
* WhatsApp number (E.164 without leading +, e.g. 2348012345678)
|
|
1396
|
+
*/
|
|
1397
|
+
whatsapp?: string;
|
|
1137
1398
|
};
|
|
1138
1399
|
type ContactSummary = {
|
|
1139
1400
|
/**
|
|
@@ -1222,6 +1483,10 @@ type CreateCredentialInputBody = {
|
|
|
1222
1483
|
* Granular permission codes e.g. ["spaces:read", "events:write"]
|
|
1223
1484
|
*/
|
|
1224
1485
|
permissions: Array<string> | null;
|
|
1486
|
+
/**
|
|
1487
|
+
* Optional pre-defined token role bundle (e.g. token:read_only). When set, permissions are derived from policy.Roles[role] and unioned with any explicit permissions in this request.
|
|
1488
|
+
*/
|
|
1489
|
+
role?: string;
|
|
1225
1490
|
};
|
|
1226
1491
|
type CreateEventInputBody = {
|
|
1227
1492
|
/**
|
|
@@ -1266,6 +1531,14 @@ type CreateEventInputBody = {
|
|
|
1266
1531
|
* Start datetime (UTC)
|
|
1267
1532
|
*/
|
|
1268
1533
|
start_dt?: string;
|
|
1534
|
+
/**
|
|
1535
|
+
* Event template id (kind). Server defaults to 'generic' when omitted.
|
|
1536
|
+
*/
|
|
1537
|
+
template?: string;
|
|
1538
|
+
/**
|
|
1539
|
+
* Pin to a specific template version. When omitted, server uses the registry's latest.
|
|
1540
|
+
*/
|
|
1541
|
+
template_version?: number;
|
|
1269
1542
|
/**
|
|
1270
1543
|
* IANA timezone
|
|
1271
1544
|
*/
|
|
@@ -1427,9 +1700,9 @@ type CreateSpaceInputBody = {
|
|
|
1427
1700
|
*/
|
|
1428
1701
|
description?: string;
|
|
1429
1702
|
/**
|
|
1430
|
-
* Parent space
|
|
1703
|
+
* Parent space IDs
|
|
1431
1704
|
*/
|
|
1432
|
-
|
|
1705
|
+
parent_ids?: Array<number> | null;
|
|
1433
1706
|
/**
|
|
1434
1707
|
* Order within parent
|
|
1435
1708
|
*/
|
|
@@ -1620,6 +1893,10 @@ type Event = {
|
|
|
1620
1893
|
* A URL to the JSON Schema for this object.
|
|
1621
1894
|
*/
|
|
1622
1895
|
readonly $schema?: string;
|
|
1896
|
+
/**
|
|
1897
|
+
* User-defined key/label/value fields
|
|
1898
|
+
*/
|
|
1899
|
+
additional_fields?: Array<AdditionalField> | null;
|
|
1623
1900
|
/**
|
|
1624
1901
|
* Venue address
|
|
1625
1902
|
*/
|
|
@@ -1692,6 +1969,10 @@ type Event = {
|
|
|
1692
1969
|
* Parent event ID (milestones)
|
|
1693
1970
|
*/
|
|
1694
1971
|
parent_event_id?: number;
|
|
1972
|
+
/**
|
|
1973
|
+
* Open numeric priority axis used by priority-aware templates.
|
|
1974
|
+
*/
|
|
1975
|
+
priority?: number;
|
|
1695
1976
|
/**
|
|
1696
1977
|
* When last published
|
|
1697
1978
|
*/
|
|
@@ -1712,14 +1993,30 @@ type Event = {
|
|
|
1712
1993
|
* Canonical title from the series master row
|
|
1713
1994
|
*/
|
|
1714
1995
|
series_title?: string;
|
|
1996
|
+
/**
|
|
1997
|
+
* Spaces this event belongs to (populated in list responses)
|
|
1998
|
+
*/
|
|
1999
|
+
spaces?: Array<EventListSpace> | null;
|
|
1715
2000
|
/**
|
|
1716
2001
|
* Start datetime (UTC)
|
|
1717
2002
|
*/
|
|
1718
2003
|
start_dt?: string;
|
|
2004
|
+
/**
|
|
2005
|
+
* Current node of the template's state machine; nil when the template has none.
|
|
2006
|
+
*/
|
|
2007
|
+
state?: string;
|
|
1719
2008
|
/**
|
|
1720
2009
|
* Publish status
|
|
1721
2010
|
*/
|
|
1722
2011
|
status: 'draft' | 'published' | 'archived';
|
|
2012
|
+
/**
|
|
2013
|
+
* Event template id (kind discriminator). Defaults to 'generic'.
|
|
2014
|
+
*/
|
|
2015
|
+
template: string;
|
|
2016
|
+
/**
|
|
2017
|
+
* Schema version of the chosen template. 0 = legacy/pre-template; 1+ = explicit.
|
|
2018
|
+
*/
|
|
2019
|
+
template_version: number;
|
|
1723
2020
|
/**
|
|
1724
2021
|
* IANA timezone
|
|
1725
2022
|
*/
|
|
@@ -1779,7 +2076,7 @@ type EventAutomationTemplate = {
|
|
|
1779
2076
|
};
|
|
1780
2077
|
type EventAutomationTrigger = {
|
|
1781
2078
|
offset_minutes?: number;
|
|
1782
|
-
type: 'manual' | 'event.published' | 'before_start' | 'after_end';
|
|
2079
|
+
type: 'manual' | 'event.published' | 'event.state_changed' | 'before_start' | 'after_end';
|
|
1783
2080
|
};
|
|
1784
2081
|
type EventAutomationUpsertInput = {
|
|
1785
2082
|
/**
|
|
@@ -1866,6 +2163,16 @@ type EventLinkWithTarget = {
|
|
|
1866
2163
|
*/
|
|
1867
2164
|
target_id: number;
|
|
1868
2165
|
};
|
|
2166
|
+
type EventListSpace = {
|
|
2167
|
+
/**
|
|
2168
|
+
* Space ID
|
|
2169
|
+
*/
|
|
2170
|
+
id: number;
|
|
2171
|
+
/**
|
|
2172
|
+
* Space title
|
|
2173
|
+
*/
|
|
2174
|
+
title: string;
|
|
2175
|
+
};
|
|
1869
2176
|
type EventManager = {
|
|
1870
2177
|
/**
|
|
1871
2178
|
* A URL to the JSON Schema for this object.
|
|
@@ -1915,6 +2222,10 @@ type EventManager = {
|
|
|
1915
2222
|
* Assigned event manager permissions
|
|
1916
2223
|
*/
|
|
1917
2224
|
permissions: Array<string> | null;
|
|
2225
|
+
/**
|
|
2226
|
+
* Pre-defined role bundle name (e.g. event_manager:full); NULL for custom permission combinations.
|
|
2227
|
+
*/
|
|
2228
|
+
role?: string;
|
|
1918
2229
|
/**
|
|
1919
2230
|
* Series ID (when managing all occurrences in a series)
|
|
1920
2231
|
*/
|
|
@@ -1947,6 +2258,10 @@ type EventPatch = {
|
|
|
1947
2258
|
* A URL to the JSON Schema for this object.
|
|
1948
2259
|
*/
|
|
1949
2260
|
readonly $schema?: string;
|
|
2261
|
+
/**
|
|
2262
|
+
* Replace the full additional-fields list (omit to keep existing). Keys must be unique; max 50 entries.
|
|
2263
|
+
*/
|
|
2264
|
+
additional_fields?: Array<AdditionalField> | null;
|
|
1950
2265
|
/**
|
|
1951
2266
|
* New venue address
|
|
1952
2267
|
*/
|
|
@@ -1977,10 +2292,18 @@ type EventPatch = {
|
|
|
1977
2292
|
metadata?: {
|
|
1978
2293
|
[key: string]: unknown;
|
|
1979
2294
|
};
|
|
2295
|
+
/**
|
|
2296
|
+
* New priority value (template-defined semantics).
|
|
2297
|
+
*/
|
|
2298
|
+
priority?: number;
|
|
1980
2299
|
/**
|
|
1981
2300
|
* New start datetime (UTC)
|
|
1982
2301
|
*/
|
|
1983
2302
|
start_dt?: string;
|
|
2303
|
+
/**
|
|
2304
|
+
* Reject-only: must omit. Sending any value returns 409 (template is immutable).
|
|
2305
|
+
*/
|
|
2306
|
+
template?: string;
|
|
1984
2307
|
/**
|
|
1985
2308
|
* New IANA timezone
|
|
1986
2309
|
*/
|
|
@@ -2129,6 +2452,14 @@ type EventSeries = {
|
|
|
2129
2452
|
* Publish status: draft, published, archived
|
|
2130
2453
|
*/
|
|
2131
2454
|
status: 'draft' | 'published' | 'archived';
|
|
2455
|
+
/**
|
|
2456
|
+
* Event template id; every occurrence inherits this.
|
|
2457
|
+
*/
|
|
2458
|
+
template: string;
|
|
2459
|
+
/**
|
|
2460
|
+
* Schema version of the chosen template.
|
|
2461
|
+
*/
|
|
2462
|
+
template_version: number;
|
|
2132
2463
|
/**
|
|
2133
2464
|
* IANA timezone for canonical occurrence
|
|
2134
2465
|
*/
|
|
@@ -2314,6 +2645,29 @@ type FavoriteInputBody = {
|
|
|
2314
2645
|
*/
|
|
2315
2646
|
is_favorite: boolean;
|
|
2316
2647
|
};
|
|
2648
|
+
type IntegrationField = {
|
|
2649
|
+
/**
|
|
2650
|
+
* A URL to the JSON Schema for this object.
|
|
2651
|
+
*/
|
|
2652
|
+
readonly $schema?: string;
|
|
2653
|
+
app_id: string;
|
|
2654
|
+
contact_id: string;
|
|
2655
|
+
created_at: string;
|
|
2656
|
+
field_key: string;
|
|
2657
|
+
id: string;
|
|
2658
|
+
org_id?: string;
|
|
2659
|
+
updated_at: string;
|
|
2660
|
+
value: string;
|
|
2661
|
+
};
|
|
2662
|
+
type IntegrationFieldUpsert = {
|
|
2663
|
+
/**
|
|
2664
|
+
* A URL to the JSON Schema for this object.
|
|
2665
|
+
*/
|
|
2666
|
+
readonly $schema?: string;
|
|
2667
|
+
app_id: string;
|
|
2668
|
+
field_key: string;
|
|
2669
|
+
value: string;
|
|
2670
|
+
};
|
|
2317
2671
|
type Invite = {
|
|
2318
2672
|
/**
|
|
2319
2673
|
* A URL to the JSON Schema for this object.
|
|
@@ -2362,9 +2716,13 @@ type InviteEventManagerInputBody = {
|
|
|
2362
2716
|
*/
|
|
2363
2717
|
email: string;
|
|
2364
2718
|
/**
|
|
2365
|
-
* Permissions to grant on acceptance
|
|
2719
|
+
* Permissions to grant on acceptance. Ignored when role is set.
|
|
2366
2720
|
*/
|
|
2367
2721
|
permissions: Array<string> | null;
|
|
2722
|
+
/**
|
|
2723
|
+
* Optional event manager role bundle (e.g. event_manager:full). When set, the role REPLACES the permissions list.
|
|
2724
|
+
*/
|
|
2725
|
+
role?: string;
|
|
2368
2726
|
};
|
|
2369
2727
|
type InviteSeriesManagerInputBody = {
|
|
2370
2728
|
/**
|
|
@@ -2386,9 +2744,21 @@ type InviteSpaceManagerInputBody = {
|
|
|
2386
2744
|
*/
|
|
2387
2745
|
email: string;
|
|
2388
2746
|
/**
|
|
2389
|
-
* Permissions to grant upon acceptance
|
|
2747
|
+
* Permissions to grant upon acceptance. Ignored when role is set.
|
|
2390
2748
|
*/
|
|
2391
2749
|
permissions: Array<string> | null;
|
|
2750
|
+
/**
|
|
2751
|
+
* Optional space manager role bundle (e.g. space_manager:full). When set, the role REPLACES the permissions list.
|
|
2752
|
+
*/
|
|
2753
|
+
role?: string;
|
|
2754
|
+
};
|
|
2755
|
+
type ListIntegrationFieldsOutputBody = {
|
|
2756
|
+
/**
|
|
2757
|
+
* A URL to the JSON Schema for this object.
|
|
2758
|
+
*/
|
|
2759
|
+
readonly $schema?: string;
|
|
2760
|
+
items: Array<IntegrationField> | null;
|
|
2761
|
+
total: number;
|
|
2392
2762
|
};
|
|
2393
2763
|
type ListInvitesOutputBody = {
|
|
2394
2764
|
/**
|
|
@@ -2442,6 +2812,23 @@ type ListPendingManagerInvitesOutputBody = {
|
|
|
2442
2812
|
*/
|
|
2443
2813
|
items: Array<PendingManagerInvite> | null;
|
|
2444
2814
|
};
|
|
2815
|
+
type ListRolesOutputBody = {
|
|
2816
|
+
/**
|
|
2817
|
+
* A URL to the JSON Schema for this object.
|
|
2818
|
+
*/
|
|
2819
|
+
readonly $schema?: string;
|
|
2820
|
+
roles: Array<RoleDefinition> | null;
|
|
2821
|
+
};
|
|
2822
|
+
type ListSpaceParentsOutputBody = {
|
|
2823
|
+
/**
|
|
2824
|
+
* A URL to the JSON Schema for this object.
|
|
2825
|
+
*/
|
|
2826
|
+
readonly $schema?: string;
|
|
2827
|
+
/**
|
|
2828
|
+
* Parent spaces
|
|
2829
|
+
*/
|
|
2830
|
+
items: Array<Space> | null;
|
|
2831
|
+
};
|
|
2445
2832
|
type LivenessOutputBody = {
|
|
2446
2833
|
/**
|
|
2447
2834
|
* A URL to the JSON Schema for this object.
|
|
@@ -2653,10 +3040,6 @@ type Organization = {
|
|
|
2653
3040
|
* A URL to the JSON Schema for this object.
|
|
2654
3041
|
*/
|
|
2655
3042
|
readonly $schema?: string;
|
|
2656
|
-
/**
|
|
2657
|
-
* Allow public resource visibility
|
|
2658
|
-
*/
|
|
2659
|
-
allow_public_visibility: boolean;
|
|
2660
3043
|
/**
|
|
2661
3044
|
* Created timestamp
|
|
2662
3045
|
*/
|
|
@@ -3437,7 +3820,7 @@ type Profile = {
|
|
|
3437
3820
|
*/
|
|
3438
3821
|
email: string;
|
|
3439
3822
|
/**
|
|
3440
|
-
*
|
|
3823
|
+
* Keycloak sub claim
|
|
3441
3824
|
*/
|
|
3442
3825
|
external_auth_id?: string;
|
|
3443
3826
|
/**
|
|
@@ -3448,6 +3831,10 @@ type Profile = {
|
|
|
3448
3831
|
* Whether this is an AI assistant profile
|
|
3449
3832
|
*/
|
|
3450
3833
|
is_ai_assistant: boolean;
|
|
3834
|
+
/**
|
|
3835
|
+
* Whether this profile appears in global search results
|
|
3836
|
+
*/
|
|
3837
|
+
is_discoverable: boolean;
|
|
3451
3838
|
/**
|
|
3452
3839
|
* Owner profile ID (for AI assistants)
|
|
3453
3840
|
*/
|
|
@@ -3461,9 +3848,9 @@ type Profile = {
|
|
|
3461
3848
|
*/
|
|
3462
3849
|
updated_at: string;
|
|
3463
3850
|
/**
|
|
3464
|
-
*
|
|
3851
|
+
* Unique handle chosen by the user
|
|
3465
3852
|
*/
|
|
3466
|
-
username
|
|
3853
|
+
username: string;
|
|
3467
3854
|
};
|
|
3468
3855
|
type PublicEventSummary = {
|
|
3469
3856
|
/**
|
|
@@ -3561,9 +3948,9 @@ type PublicSpaceSummary = {
|
|
|
3561
3948
|
*/
|
|
3562
3949
|
id: number;
|
|
3563
3950
|
/**
|
|
3564
|
-
* Parent space
|
|
3951
|
+
* Parent space IDs
|
|
3565
3952
|
*/
|
|
3566
|
-
|
|
3953
|
+
parent_ids?: Array<number> | null;
|
|
3567
3954
|
/**
|
|
3568
3955
|
* When this space was published
|
|
3569
3956
|
*/
|
|
@@ -3581,9 +3968,19 @@ type PublicSpaceSummary = {
|
|
|
3581
3968
|
*/
|
|
3582
3969
|
visibility: number;
|
|
3583
3970
|
};
|
|
3584
|
-
type
|
|
3971
|
+
type PublicSpaceTreeOutputBody = {
|
|
3585
3972
|
/**
|
|
3586
|
-
*
|
|
3973
|
+
* A URL to the JSON Schema for this object.
|
|
3974
|
+
*/
|
|
3975
|
+
readonly $schema?: string;
|
|
3976
|
+
/**
|
|
3977
|
+
* Publicly visible spaces arranged as a multi-root hierarchy.
|
|
3978
|
+
*/
|
|
3979
|
+
items: Array<SpaceTreeNode> | null;
|
|
3980
|
+
};
|
|
3981
|
+
type PublicViewerCapabilities = {
|
|
3982
|
+
/**
|
|
3983
|
+
* Whether the visitor can manage this space
|
|
3587
3984
|
*/
|
|
3588
3985
|
can_manage: boolean;
|
|
3589
3986
|
/**
|
|
@@ -3649,6 +4046,13 @@ type ResourceStats = {
|
|
|
3649
4046
|
*/
|
|
3650
4047
|
unassigned: number;
|
|
3651
4048
|
};
|
|
4049
|
+
type RoleDefinition = {
|
|
4050
|
+
category: string;
|
|
4051
|
+
description: string;
|
|
4052
|
+
label: string;
|
|
4053
|
+
name: string;
|
|
4054
|
+
permissions: Array<string> | null;
|
|
4055
|
+
};
|
|
3652
4056
|
type Rule = {
|
|
3653
4057
|
/**
|
|
3654
4058
|
* A URL to the JSON Schema for this object.
|
|
@@ -3854,9 +4258,9 @@ type Space = {
|
|
|
3854
4258
|
*/
|
|
3855
4259
|
org_id?: string;
|
|
3856
4260
|
/**
|
|
3857
|
-
* Parent space
|
|
4261
|
+
* Parent space IDs
|
|
3858
4262
|
*/
|
|
3859
|
-
|
|
4263
|
+
parent_ids?: Array<number> | null;
|
|
3860
4264
|
/**
|
|
3861
4265
|
* Order within parent
|
|
3862
4266
|
*/
|
|
@@ -4285,6 +4689,10 @@ type SpaceContactSummary = {
|
|
|
4285
4689
|
* Primary phone
|
|
4286
4690
|
*/
|
|
4287
4691
|
phone_primary?: string;
|
|
4692
|
+
/**
|
|
4693
|
+
* WhatsApp number
|
|
4694
|
+
*/
|
|
4695
|
+
whatsapp?: string;
|
|
4288
4696
|
};
|
|
4289
4697
|
type SpaceEventLink = {
|
|
4290
4698
|
/**
|
|
@@ -4406,6 +4814,10 @@ type SpaceManager = {
|
|
|
4406
4814
|
* Assigned space manager permissions
|
|
4407
4815
|
*/
|
|
4408
4816
|
permissions: Array<string> | null;
|
|
4817
|
+
/**
|
|
4818
|
+
* Pre-defined role bundle name (e.g. space_manager:full); NULL for custom permission combinations.
|
|
4819
|
+
*/
|
|
4820
|
+
role?: string;
|
|
4409
4821
|
/**
|
|
4410
4822
|
* Space ID
|
|
4411
4823
|
*/
|
|
@@ -4607,6 +5019,127 @@ type SpaceSummary = {
|
|
|
4607
5019
|
*/
|
|
4608
5020
|
visibility: number;
|
|
4609
5021
|
};
|
|
5022
|
+
type SpaceTreeNode = {
|
|
5023
|
+
/**
|
|
5024
|
+
* Directly nested child spaces
|
|
5025
|
+
*/
|
|
5026
|
+
children?: Array<SpaceTreeNode> | null;
|
|
5027
|
+
/**
|
|
5028
|
+
* Space description
|
|
5029
|
+
*/
|
|
5030
|
+
description?: string;
|
|
5031
|
+
/**
|
|
5032
|
+
* Space ID
|
|
5033
|
+
*/
|
|
5034
|
+
id: number;
|
|
5035
|
+
/**
|
|
5036
|
+
* Parent space IDs (may be multiple)
|
|
5037
|
+
*/
|
|
5038
|
+
parent_ids?: Array<number> | null;
|
|
5039
|
+
/**
|
|
5040
|
+
* Publish status
|
|
5041
|
+
*/
|
|
5042
|
+
status: string;
|
|
5043
|
+
/**
|
|
5044
|
+
* Space title
|
|
5045
|
+
*/
|
|
5046
|
+
title: string;
|
|
5047
|
+
/**
|
|
5048
|
+
* Visibility level
|
|
5049
|
+
*/
|
|
5050
|
+
visibility?: number;
|
|
5051
|
+
};
|
|
5052
|
+
type SpaceTreeOutputBody = {
|
|
5053
|
+
/**
|
|
5054
|
+
* A URL to the JSON Schema for this object.
|
|
5055
|
+
*/
|
|
5056
|
+
readonly $schema?: string;
|
|
5057
|
+
/**
|
|
5058
|
+
* Spaces arranged as a multi-root hierarchy. Multi-parent spaces appear under each of their parents.
|
|
5059
|
+
*/
|
|
5060
|
+
items: Array<SpaceTreeNode> | null;
|
|
5061
|
+
};
|
|
5062
|
+
type TemplateDto = {
|
|
5063
|
+
/**
|
|
5064
|
+
* A URL to the JSON Schema for this object.
|
|
5065
|
+
*/
|
|
5066
|
+
readonly $schema?: string;
|
|
5067
|
+
/**
|
|
5068
|
+
* Attachment kinds this template accepts. null = no restriction; [] = lockdown.
|
|
5069
|
+
*/
|
|
5070
|
+
allowed_attachment_kinds: Array<string> | null;
|
|
5071
|
+
/**
|
|
5072
|
+
* One-line description.
|
|
5073
|
+
*/
|
|
5074
|
+
description: string;
|
|
5075
|
+
/**
|
|
5076
|
+
* Stable template id.
|
|
5077
|
+
*/
|
|
5078
|
+
id: string;
|
|
5079
|
+
/**
|
|
5080
|
+
* Optional SVG markup for the template picker card.
|
|
5081
|
+
*/
|
|
5082
|
+
illustration_svg?: string;
|
|
5083
|
+
/**
|
|
5084
|
+
* Raw JSON Schema for metadata. Strict — additionalProperties: false.
|
|
5085
|
+
*/
|
|
5086
|
+
json_schema: unknown;
|
|
5087
|
+
/**
|
|
5088
|
+
* Human-readable name (used in pickers).
|
|
5089
|
+
*/
|
|
5090
|
+
label: string;
|
|
5091
|
+
/**
|
|
5092
|
+
* RBAC capabilities the caller must hold.
|
|
5093
|
+
*/
|
|
5094
|
+
required_capabilities: Array<string> | null;
|
|
5095
|
+
/**
|
|
5096
|
+
* Attendee functions required for this template (e.g. patient, provider).
|
|
5097
|
+
*/
|
|
5098
|
+
required_functions: Array<string> | null;
|
|
5099
|
+
/**
|
|
5100
|
+
* Hint to the milestone picker: which templates make natural children.
|
|
5101
|
+
*/
|
|
5102
|
+
suggested_milestone_templates: Array<string> | null;
|
|
5103
|
+
/**
|
|
5104
|
+
* Whether events of this template can have child milestones.
|
|
5105
|
+
*/
|
|
5106
|
+
supports_milestones: boolean;
|
|
5107
|
+
/**
|
|
5108
|
+
* Whether this template can be the canonical for an event_series.
|
|
5109
|
+
*/
|
|
5110
|
+
supports_series: boolean;
|
|
5111
|
+
/**
|
|
5112
|
+
* Monotonic version. 0 is reserved for legacy pre-template events.
|
|
5113
|
+
*/
|
|
5114
|
+
version: number;
|
|
5115
|
+
};
|
|
5116
|
+
type TemplateListOutputBody = {
|
|
5117
|
+
/**
|
|
5118
|
+
* A URL to the JSON Schema for this object.
|
|
5119
|
+
*/
|
|
5120
|
+
readonly $schema?: string;
|
|
5121
|
+
items: Array<TemplateDto> | null;
|
|
5122
|
+
};
|
|
5123
|
+
type TransitionInputBody = {
|
|
5124
|
+
/**
|
|
5125
|
+
* A URL to the JSON Schema for this object.
|
|
5126
|
+
*/
|
|
5127
|
+
readonly $schema?: string;
|
|
5128
|
+
/**
|
|
5129
|
+
* Kind-specific data the state machine's guard inspects (e.g. proof_of_delivery for delivery's final hop).
|
|
5130
|
+
*/
|
|
5131
|
+
payload?: {
|
|
5132
|
+
[key: string]: unknown;
|
|
5133
|
+
};
|
|
5134
|
+
/**
|
|
5135
|
+
* Optional human-readable reason — captured on the activity row.
|
|
5136
|
+
*/
|
|
5137
|
+
reason?: string;
|
|
5138
|
+
/**
|
|
5139
|
+
* Target state, e.g. 'in_transit' or 'delivered'.
|
|
5140
|
+
*/
|
|
5141
|
+
to_state: string;
|
|
5142
|
+
};
|
|
4610
5143
|
type TriggerDefinition = {
|
|
4611
5144
|
category?: string;
|
|
4612
5145
|
description?: string;
|
|
@@ -4721,7 +5254,11 @@ type UpdateMeInputBody = {
|
|
|
4721
5254
|
*/
|
|
4722
5255
|
avatar_url?: string;
|
|
4723
5256
|
/**
|
|
4724
|
-
*
|
|
5257
|
+
* Whether this profile appears in global search results
|
|
5258
|
+
*/
|
|
5259
|
+
is_discoverable?: boolean;
|
|
5260
|
+
/**
|
|
5261
|
+
* Unique handle (lowercase alphanumeric, hyphens, underscores)
|
|
4725
5262
|
*/
|
|
4726
5263
|
username?: string;
|
|
4727
5264
|
};
|
|
@@ -4740,10 +5277,6 @@ type UpdateOrgBody = {
|
|
|
4740
5277
|
* A URL to the JSON Schema for this object.
|
|
4741
5278
|
*/
|
|
4742
5279
|
readonly $schema?: string;
|
|
4743
|
-
/**
|
|
4744
|
-
* Allow B2C public access to published resources
|
|
4745
|
-
*/
|
|
4746
|
-
allow_public_visibility: boolean;
|
|
4747
5280
|
/**
|
|
4748
5281
|
* Organization name
|
|
4749
5282
|
*/
|
|
@@ -4878,11 +5411,62 @@ type AcceptSpaceManagerInviteInputBodyWritable = {
|
|
|
4878
5411
|
*/
|
|
4879
5412
|
token: string;
|
|
4880
5413
|
};
|
|
5414
|
+
type ActivityAppendInputBodyWritable = {
|
|
5415
|
+
/**
|
|
5416
|
+
* Activity kind ('state_changed', 'edited', 'attachment_added', …).
|
|
5417
|
+
*/
|
|
5418
|
+
kind: string;
|
|
5419
|
+
/**
|
|
5420
|
+
* Kind-specific payload (free-form JSONB).
|
|
5421
|
+
*/
|
|
5422
|
+
payload?: {
|
|
5423
|
+
[key: string]: unknown;
|
|
5424
|
+
};
|
|
5425
|
+
};
|
|
5426
|
+
type ActivityListOutputBodyWritable = {
|
|
5427
|
+
items: Array<ActivityLogEntryWritable> | null;
|
|
5428
|
+
};
|
|
5429
|
+
type ActivityLogEntryWritable = {
|
|
5430
|
+
/**
|
|
5431
|
+
* Who caused it; nil for system-originated rows (automation, scheduled jobs).
|
|
5432
|
+
*/
|
|
5433
|
+
actor_id?: string;
|
|
5434
|
+
/**
|
|
5435
|
+
* When the activity happened (UTC).
|
|
5436
|
+
*/
|
|
5437
|
+
at: string;
|
|
5438
|
+
/**
|
|
5439
|
+
* Parent event id.
|
|
5440
|
+
*/
|
|
5441
|
+
event_id: number;
|
|
5442
|
+
/**
|
|
5443
|
+
* Record ID (bigserial — activity volume can grow large)
|
|
5444
|
+
*/
|
|
5445
|
+
id: number;
|
|
5446
|
+
/**
|
|
5447
|
+
* Activity kind: 'state_changed', 'attachment_added', 'published', 'edited', etc. Open string — templates declare which kinds are meaningful.
|
|
5448
|
+
*/
|
|
5449
|
+
kind: string;
|
|
5450
|
+
/**
|
|
5451
|
+
* Organisation context.
|
|
5452
|
+
*/
|
|
5453
|
+
org_id?: string;
|
|
5454
|
+
/**
|
|
5455
|
+
* Kind-specific shape. JSONB at the storage layer.
|
|
5456
|
+
*/
|
|
5457
|
+
payload: {
|
|
5458
|
+
[key: string]: unknown;
|
|
5459
|
+
};
|
|
5460
|
+
};
|
|
4881
5461
|
type AddAttendeeInputBodyWritable = {
|
|
4882
5462
|
/**
|
|
4883
5463
|
* Contact UUID
|
|
4884
5464
|
*/
|
|
4885
5465
|
contact_id: string;
|
|
5466
|
+
/**
|
|
5467
|
+
* The capacity in which this person attends — e.g. 'patient', 'provider', 'speaker', 'host'. Leave blank for generic attendees.
|
|
5468
|
+
*/
|
|
5469
|
+
function?: string;
|
|
4886
5470
|
/**
|
|
4887
5471
|
* Optional notes
|
|
4888
5472
|
*/
|
|
@@ -4912,13 +5496,17 @@ type AddEventManagerInputBodyWritable = {
|
|
|
4912
5496
|
*/
|
|
4913
5497
|
notify?: boolean;
|
|
4914
5498
|
/**
|
|
4915
|
-
* Permissions to grant
|
|
5499
|
+
* Permissions to grant. Ignored when role is set.
|
|
4916
5500
|
*/
|
|
4917
5501
|
permissions: Array<string> | null;
|
|
4918
5502
|
/**
|
|
4919
5503
|
* Notification priority: normal (default) or high
|
|
4920
5504
|
*/
|
|
4921
5505
|
priority?: string;
|
|
5506
|
+
/**
|
|
5507
|
+
* Optional event manager role bundle (e.g. event_manager:full). When set, the role REPLACES the permissions list.
|
|
5508
|
+
*/
|
|
5509
|
+
role?: string;
|
|
4922
5510
|
/**
|
|
4923
5511
|
* Profile ID of the manager
|
|
4924
5512
|
*/
|
|
@@ -4978,15 +5566,23 @@ type AddSpaceAnnouncementInputBodyWritable = {
|
|
|
4978
5566
|
/**
|
|
4979
5567
|
* Rich-text body
|
|
4980
5568
|
*/
|
|
4981
|
-
body
|
|
5569
|
+
body?: string;
|
|
4982
5570
|
/**
|
|
4983
5571
|
* Send email notification to all space contacts
|
|
4984
5572
|
*/
|
|
4985
|
-
send_email
|
|
5573
|
+
send_email?: boolean;
|
|
5574
|
+
/**
|
|
5575
|
+
* Send WhatsApp message to all space contacts with a WhatsApp number
|
|
5576
|
+
*/
|
|
5577
|
+
send_whatsapp?: boolean;
|
|
4986
5578
|
/**
|
|
4987
5579
|
* Announcement title
|
|
4988
5580
|
*/
|
|
4989
5581
|
title: string;
|
|
5582
|
+
/**
|
|
5583
|
+
* WhatsApp Business phone number ID to send from (required when send_whatsapp is true)
|
|
5584
|
+
*/
|
|
5585
|
+
whatsapp_sender_id?: string;
|
|
4990
5586
|
};
|
|
4991
5587
|
type AddSpaceContactInputBodyWritable = {
|
|
4992
5588
|
/**
|
|
@@ -5020,18 +5616,28 @@ type AddSpaceManagerInputBodyWritable = {
|
|
|
5020
5616
|
*/
|
|
5021
5617
|
notify?: boolean;
|
|
5022
5618
|
/**
|
|
5023
|
-
* Permissions to grant
|
|
5619
|
+
* Permissions to grant. Ignored when role is set.
|
|
5024
5620
|
*/
|
|
5025
5621
|
permissions: Array<string> | null;
|
|
5026
5622
|
/**
|
|
5027
5623
|
* Notification priority: normal (default) or high
|
|
5028
5624
|
*/
|
|
5029
5625
|
priority?: string;
|
|
5626
|
+
/**
|
|
5627
|
+
* Optional space manager role bundle (e.g. space_manager:full). When set, the role REPLACES the permissions list.
|
|
5628
|
+
*/
|
|
5629
|
+
role?: string;
|
|
5030
5630
|
/**
|
|
5031
5631
|
* Profile ID of the manager
|
|
5032
5632
|
*/
|
|
5033
5633
|
user_id: string;
|
|
5034
5634
|
};
|
|
5635
|
+
type AddSpaceParentInputBodyWritable = {
|
|
5636
|
+
/**
|
|
5637
|
+
* Parent space ID to add
|
|
5638
|
+
*/
|
|
5639
|
+
parent_id: number;
|
|
5640
|
+
};
|
|
5035
5641
|
type AnnouncementWritable = {
|
|
5036
5642
|
/**
|
|
5037
5643
|
* Profile ID of the author
|
|
@@ -5045,18 +5651,38 @@ type AnnouncementWritable = {
|
|
|
5045
5651
|
* Created timestamp
|
|
5046
5652
|
*/
|
|
5047
5653
|
created_at: string;
|
|
5654
|
+
/**
|
|
5655
|
+
* Auto-archive after this time; null means no expiry
|
|
5656
|
+
*/
|
|
5657
|
+
expires_at?: string;
|
|
5048
5658
|
/**
|
|
5049
5659
|
* Announcement ID
|
|
5050
5660
|
*/
|
|
5051
5661
|
id: number;
|
|
5662
|
+
/**
|
|
5663
|
+
* R2/S3 object key for the cover image (internal)
|
|
5664
|
+
*/
|
|
5665
|
+
image_key?: string;
|
|
5666
|
+
/**
|
|
5667
|
+
* Presigned cover image URL (generated at read time, not stored)
|
|
5668
|
+
*/
|
|
5669
|
+
image_url?: string;
|
|
5052
5670
|
/**
|
|
5053
5671
|
* Organization ID (nil = personal)
|
|
5054
5672
|
*/
|
|
5055
5673
|
org_id?: string;
|
|
5674
|
+
/**
|
|
5675
|
+
* Urgency level
|
|
5676
|
+
*/
|
|
5677
|
+
priority: 'routine' | 'important' | 'urgent' | 'critical';
|
|
5056
5678
|
/**
|
|
5057
5679
|
* Lifecycle status
|
|
5058
5680
|
*/
|
|
5059
5681
|
status: 'draft' | 'published' | 'archived';
|
|
5682
|
+
/**
|
|
5683
|
+
* Searchable labels for filtering
|
|
5684
|
+
*/
|
|
5685
|
+
tags: Array<string> | null;
|
|
5060
5686
|
/**
|
|
5061
5687
|
* Title
|
|
5062
5688
|
*/
|
|
@@ -5071,10 +5697,22 @@ type AnnouncementCreateWritable = {
|
|
|
5071
5697
|
* Rich-text markdown body
|
|
5072
5698
|
*/
|
|
5073
5699
|
body: string;
|
|
5700
|
+
/**
|
|
5701
|
+
* Auto-archive after this time
|
|
5702
|
+
*/
|
|
5703
|
+
expires_at?: string;
|
|
5074
5704
|
/**
|
|
5075
5705
|
* Organization scope
|
|
5076
5706
|
*/
|
|
5077
5707
|
org_id?: string;
|
|
5708
|
+
/**
|
|
5709
|
+
* Urgency level; defaults to routine
|
|
5710
|
+
*/
|
|
5711
|
+
priority?: 'routine' | 'important' | 'urgent' | 'critical';
|
|
5712
|
+
/**
|
|
5713
|
+
* Searchable labels
|
|
5714
|
+
*/
|
|
5715
|
+
tags?: Array<string> | null;
|
|
5078
5716
|
/**
|
|
5079
5717
|
* Announcement title
|
|
5080
5718
|
*/
|
|
@@ -5085,15 +5723,86 @@ type AnnouncementPatchWritable = {
|
|
|
5085
5723
|
* New body
|
|
5086
5724
|
*/
|
|
5087
5725
|
body?: string;
|
|
5726
|
+
/**
|
|
5727
|
+
* New expiry time
|
|
5728
|
+
*/
|
|
5729
|
+
expires_at?: string;
|
|
5730
|
+
/**
|
|
5731
|
+
* New priority
|
|
5732
|
+
*/
|
|
5733
|
+
priority?: 'routine' | 'important' | 'urgent' | 'critical';
|
|
5088
5734
|
/**
|
|
5089
5735
|
* New status
|
|
5090
5736
|
*/
|
|
5091
5737
|
status?: 'draft' | 'published' | 'archived';
|
|
5738
|
+
/**
|
|
5739
|
+
* Replace tag list; empty array clears all tags
|
|
5740
|
+
*/
|
|
5741
|
+
tags?: Array<string>;
|
|
5092
5742
|
/**
|
|
5093
5743
|
* New title
|
|
5094
5744
|
*/
|
|
5095
5745
|
title?: string;
|
|
5096
5746
|
};
|
|
5747
|
+
type AttachmentWritable = {
|
|
5748
|
+
/**
|
|
5749
|
+
* Created timestamp
|
|
5750
|
+
*/
|
|
5751
|
+
created_at: string;
|
|
5752
|
+
/**
|
|
5753
|
+
* Profile id of who attached it.
|
|
5754
|
+
*/
|
|
5755
|
+
created_by: string;
|
|
5756
|
+
/**
|
|
5757
|
+
* Event scope — set when this attachment applies to a specific occurrence.
|
|
5758
|
+
*/
|
|
5759
|
+
event_id?: number;
|
|
5760
|
+
/**
|
|
5761
|
+
* Record ID
|
|
5762
|
+
*/
|
|
5763
|
+
id: number;
|
|
5764
|
+
/**
|
|
5765
|
+
* Open string: 'image', 'document', 'signature', 'proof_of_delivery'. Validated against the parent template's AllowedAttachmentKinds.
|
|
5766
|
+
*/
|
|
5767
|
+
kind: string;
|
|
5768
|
+
/**
|
|
5769
|
+
* Kind-specific payload: mime, size, content_hash, dimensions, …
|
|
5770
|
+
*/
|
|
5771
|
+
metadata?: {
|
|
5772
|
+
[key: string]: unknown;
|
|
5773
|
+
};
|
|
5774
|
+
/**
|
|
5775
|
+
* Organisation context.
|
|
5776
|
+
*/
|
|
5777
|
+
org_id?: string;
|
|
5778
|
+
/**
|
|
5779
|
+
* Opaque storage identifier — URL, blob key, document_id depending on kind.
|
|
5780
|
+
*/
|
|
5781
|
+
ref: string;
|
|
5782
|
+
/**
|
|
5783
|
+
* Series scope — set when this attachment is shared across every occurrence in the series (study materials, etc.).
|
|
5784
|
+
*/
|
|
5785
|
+
series_id?: number;
|
|
5786
|
+
};
|
|
5787
|
+
type AttachmentAddInputBodyWritable = {
|
|
5788
|
+
/**
|
|
5789
|
+
* Attachment kind ('image', 'document', 'proof_of_delivery'). Validated against the parent template's AllowedAttachmentKinds.
|
|
5790
|
+
*/
|
|
5791
|
+
kind: string;
|
|
5792
|
+
/**
|
|
5793
|
+
* Kind-specific payload: mime, size, content_hash, …
|
|
5794
|
+
*/
|
|
5795
|
+
metadata?: {
|
|
5796
|
+
[key: string]: unknown;
|
|
5797
|
+
};
|
|
5798
|
+
/**
|
|
5799
|
+
* Opaque storage identifier — URL, blob key, document_id depending on kind.
|
|
5800
|
+
*/
|
|
5801
|
+
ref: string;
|
|
5802
|
+
};
|
|
5803
|
+
type AttachmentListOutputBodyWritable = {
|
|
5804
|
+
items: Array<AttachmentWritable> | null;
|
|
5805
|
+
};
|
|
5097
5806
|
type AttendeeWritable = {
|
|
5098
5807
|
/**
|
|
5099
5808
|
* Check-in time
|
|
@@ -5111,6 +5820,10 @@ type AttendeeWritable = {
|
|
|
5111
5820
|
* Event ID (when attending a specific occurrence)
|
|
5112
5821
|
*/
|
|
5113
5822
|
event_id?: number;
|
|
5823
|
+
/**
|
|
5824
|
+
* The capacity in which this person attends — e.g. 'patient', 'provider', 'speaker', 'host'. Template-driven; nil for generic events.
|
|
5825
|
+
*/
|
|
5826
|
+
function?: string;
|
|
5114
5827
|
/**
|
|
5115
5828
|
* Attendee record ID
|
|
5116
5829
|
*/
|
|
@@ -5368,6 +6081,10 @@ type ContactWritable = {
|
|
|
5368
6081
|
* Website URL
|
|
5369
6082
|
*/
|
|
5370
6083
|
website: string | null;
|
|
6084
|
+
/**
|
|
6085
|
+
* WhatsApp number (E.164 without leading +, e.g. 2348012345678)
|
|
6086
|
+
*/
|
|
6087
|
+
whatsapp: string | null;
|
|
5371
6088
|
};
|
|
5372
6089
|
type ContactBodyWritable = {
|
|
5373
6090
|
/**
|
|
@@ -5458,6 +6175,10 @@ type ContactBodyWritable = {
|
|
|
5458
6175
|
* Website URL
|
|
5459
6176
|
*/
|
|
5460
6177
|
website?: string;
|
|
6178
|
+
/**
|
|
6179
|
+
* WhatsApp number (E.164 without leading +, e.g. 2348012345678)
|
|
6180
|
+
*/
|
|
6181
|
+
whatsapp?: string;
|
|
5461
6182
|
};
|
|
5462
6183
|
type CountsWritable = {
|
|
5463
6184
|
/**
|
|
@@ -5508,6 +6229,10 @@ type CreateCredentialInputBodyWritable = {
|
|
|
5508
6229
|
* Granular permission codes e.g. ["spaces:read", "events:write"]
|
|
5509
6230
|
*/
|
|
5510
6231
|
permissions: Array<string> | null;
|
|
6232
|
+
/**
|
|
6233
|
+
* Optional pre-defined token role bundle (e.g. token:read_only). When set, permissions are derived from policy.Roles[role] and unioned with any explicit permissions in this request.
|
|
6234
|
+
*/
|
|
6235
|
+
role?: string;
|
|
5511
6236
|
};
|
|
5512
6237
|
type CreateEventInputBodyWritable = {
|
|
5513
6238
|
/**
|
|
@@ -5548,6 +6273,14 @@ type CreateEventInputBodyWritable = {
|
|
|
5548
6273
|
* Start datetime (UTC)
|
|
5549
6274
|
*/
|
|
5550
6275
|
start_dt?: string;
|
|
6276
|
+
/**
|
|
6277
|
+
* Event template id (kind). Server defaults to 'generic' when omitted.
|
|
6278
|
+
*/
|
|
6279
|
+
template?: string;
|
|
6280
|
+
/**
|
|
6281
|
+
* Pin to a specific template version. When omitted, server uses the registry's latest.
|
|
6282
|
+
*/
|
|
6283
|
+
template_version?: number;
|
|
5551
6284
|
/**
|
|
5552
6285
|
* IANA timezone
|
|
5553
6286
|
*/
|
|
@@ -5685,9 +6418,9 @@ type CreateSpaceInputBodyWritable = {
|
|
|
5685
6418
|
*/
|
|
5686
6419
|
description?: string;
|
|
5687
6420
|
/**
|
|
5688
|
-
* Parent space
|
|
6421
|
+
* Parent space IDs
|
|
5689
6422
|
*/
|
|
5690
|
-
|
|
6423
|
+
parent_ids?: Array<number> | null;
|
|
5691
6424
|
/**
|
|
5692
6425
|
* Order within parent
|
|
5693
6426
|
*/
|
|
@@ -5825,6 +6558,10 @@ type ErrorModelWritable = {
|
|
|
5825
6558
|
type?: string;
|
|
5826
6559
|
};
|
|
5827
6560
|
type EventWritable = {
|
|
6561
|
+
/**
|
|
6562
|
+
* User-defined key/label/value fields
|
|
6563
|
+
*/
|
|
6564
|
+
additional_fields?: Array<AdditionalField> | null;
|
|
5828
6565
|
/**
|
|
5829
6566
|
* Venue address
|
|
5830
6567
|
*/
|
|
@@ -5897,6 +6634,10 @@ type EventWritable = {
|
|
|
5897
6634
|
* Parent event ID (milestones)
|
|
5898
6635
|
*/
|
|
5899
6636
|
parent_event_id?: number;
|
|
6637
|
+
/**
|
|
6638
|
+
* Open numeric priority axis used by priority-aware templates.
|
|
6639
|
+
*/
|
|
6640
|
+
priority?: number;
|
|
5900
6641
|
/**
|
|
5901
6642
|
* When last published
|
|
5902
6643
|
*/
|
|
@@ -5917,14 +6658,30 @@ type EventWritable = {
|
|
|
5917
6658
|
* Canonical title from the series master row
|
|
5918
6659
|
*/
|
|
5919
6660
|
series_title?: string;
|
|
6661
|
+
/**
|
|
6662
|
+
* Spaces this event belongs to (populated in list responses)
|
|
6663
|
+
*/
|
|
6664
|
+
spaces?: Array<EventListSpace> | null;
|
|
5920
6665
|
/**
|
|
5921
6666
|
* Start datetime (UTC)
|
|
5922
6667
|
*/
|
|
5923
6668
|
start_dt?: string;
|
|
6669
|
+
/**
|
|
6670
|
+
* Current node of the template's state machine; nil when the template has none.
|
|
6671
|
+
*/
|
|
6672
|
+
state?: string;
|
|
5924
6673
|
/**
|
|
5925
6674
|
* Publish status
|
|
5926
6675
|
*/
|
|
5927
6676
|
status: 'draft' | 'published' | 'archived';
|
|
6677
|
+
/**
|
|
6678
|
+
* Event template id (kind discriminator). Defaults to 'generic'.
|
|
6679
|
+
*/
|
|
6680
|
+
template: string;
|
|
6681
|
+
/**
|
|
6682
|
+
* Schema version of the chosen template. 0 = legacy/pre-template; 1+ = explicit.
|
|
6683
|
+
*/
|
|
6684
|
+
template_version: number;
|
|
5928
6685
|
/**
|
|
5929
6686
|
* IANA timezone
|
|
5930
6687
|
*/
|
|
@@ -6034,6 +6791,10 @@ type EventManagerWritable = {
|
|
|
6034
6791
|
* Assigned event manager permissions
|
|
6035
6792
|
*/
|
|
6036
6793
|
permissions: Array<string> | null;
|
|
6794
|
+
/**
|
|
6795
|
+
* Pre-defined role bundle name (e.g. event_manager:full); NULL for custom permission combinations.
|
|
6796
|
+
*/
|
|
6797
|
+
role?: string;
|
|
6037
6798
|
/**
|
|
6038
6799
|
* Series ID (when managing all occurrences in a series)
|
|
6039
6800
|
*/
|
|
@@ -6058,6 +6819,10 @@ type EventManagerPermissionsOutputBodyWritable = {
|
|
|
6058
6819
|
permissions: Array<string> | null;
|
|
6059
6820
|
};
|
|
6060
6821
|
type EventPatchWritable = {
|
|
6822
|
+
/**
|
|
6823
|
+
* Replace the full additional-fields list (omit to keep existing). Keys must be unique; max 50 entries.
|
|
6824
|
+
*/
|
|
6825
|
+
additional_fields?: Array<AdditionalField> | null;
|
|
6061
6826
|
/**
|
|
6062
6827
|
* New venue address
|
|
6063
6828
|
*/
|
|
@@ -6088,10 +6853,18 @@ type EventPatchWritable = {
|
|
|
6088
6853
|
metadata?: {
|
|
6089
6854
|
[key: string]: unknown;
|
|
6090
6855
|
};
|
|
6856
|
+
/**
|
|
6857
|
+
* New priority value (template-defined semantics).
|
|
6858
|
+
*/
|
|
6859
|
+
priority?: number;
|
|
6091
6860
|
/**
|
|
6092
6861
|
* New start datetime (UTC)
|
|
6093
6862
|
*/
|
|
6094
6863
|
start_dt?: string;
|
|
6864
|
+
/**
|
|
6865
|
+
* Reject-only: must omit. Sending any value returns 409 (template is immutable).
|
|
6866
|
+
*/
|
|
6867
|
+
template?: string;
|
|
6095
6868
|
/**
|
|
6096
6869
|
* New IANA timezone
|
|
6097
6870
|
*/
|
|
@@ -6236,6 +7009,14 @@ type EventSeriesWritable = {
|
|
|
6236
7009
|
* Publish status: draft, published, archived
|
|
6237
7010
|
*/
|
|
6238
7011
|
status: 'draft' | 'published' | 'archived';
|
|
7012
|
+
/**
|
|
7013
|
+
* Event template id; every occurrence inherits this.
|
|
7014
|
+
*/
|
|
7015
|
+
template: string;
|
|
7016
|
+
/**
|
|
7017
|
+
* Schema version of the chosen template.
|
|
7018
|
+
*/
|
|
7019
|
+
template_version: number;
|
|
6239
7020
|
/**
|
|
6240
7021
|
* IANA timezone for canonical occurrence
|
|
6241
7022
|
*/
|
|
@@ -6295,6 +7076,21 @@ type FavoriteInputBodyWritable = {
|
|
|
6295
7076
|
*/
|
|
6296
7077
|
is_favorite: boolean;
|
|
6297
7078
|
};
|
|
7079
|
+
type IntegrationFieldWritable = {
|
|
7080
|
+
app_id: string;
|
|
7081
|
+
contact_id: string;
|
|
7082
|
+
created_at: string;
|
|
7083
|
+
field_key: string;
|
|
7084
|
+
id: string;
|
|
7085
|
+
org_id?: string;
|
|
7086
|
+
updated_at: string;
|
|
7087
|
+
value: string;
|
|
7088
|
+
};
|
|
7089
|
+
type IntegrationFieldUpsertWritable = {
|
|
7090
|
+
app_id: string;
|
|
7091
|
+
field_key: string;
|
|
7092
|
+
value: string;
|
|
7093
|
+
};
|
|
6298
7094
|
type InviteWritable = {
|
|
6299
7095
|
/**
|
|
6300
7096
|
* Created timestamp
|
|
@@ -6335,9 +7131,13 @@ type InviteEventManagerInputBodyWritable = {
|
|
|
6335
7131
|
*/
|
|
6336
7132
|
email: string;
|
|
6337
7133
|
/**
|
|
6338
|
-
* Permissions to grant on acceptance
|
|
7134
|
+
* Permissions to grant on acceptance. Ignored when role is set.
|
|
6339
7135
|
*/
|
|
6340
7136
|
permissions: Array<string> | null;
|
|
7137
|
+
/**
|
|
7138
|
+
* Optional event manager role bundle (e.g. event_manager:full). When set, the role REPLACES the permissions list.
|
|
7139
|
+
*/
|
|
7140
|
+
role?: string;
|
|
6341
7141
|
};
|
|
6342
7142
|
type InviteSeriesManagerInputBodyWritable = {
|
|
6343
7143
|
/**
|
|
@@ -6351,9 +7151,17 @@ type InviteSpaceManagerInputBodyWritable = {
|
|
|
6351
7151
|
*/
|
|
6352
7152
|
email: string;
|
|
6353
7153
|
/**
|
|
6354
|
-
* Permissions to grant upon acceptance
|
|
7154
|
+
* Permissions to grant upon acceptance. Ignored when role is set.
|
|
6355
7155
|
*/
|
|
6356
7156
|
permissions: Array<string> | null;
|
|
7157
|
+
/**
|
|
7158
|
+
* Optional space manager role bundle (e.g. space_manager:full). When set, the role REPLACES the permissions list.
|
|
7159
|
+
*/
|
|
7160
|
+
role?: string;
|
|
7161
|
+
};
|
|
7162
|
+
type ListIntegrationFieldsOutputBodyWritable = {
|
|
7163
|
+
items: Array<IntegrationFieldWritable> | null;
|
|
7164
|
+
total: number;
|
|
6357
7165
|
};
|
|
6358
7166
|
type ListInvitesOutputBodyWritable = {
|
|
6359
7167
|
items: Array<InviteWritable> | null;
|
|
@@ -6387,6 +7195,15 @@ type ListPendingManagerInvitesOutputBodyWritable = {
|
|
|
6387
7195
|
*/
|
|
6388
7196
|
items: Array<PendingManagerInvite> | null;
|
|
6389
7197
|
};
|
|
7198
|
+
type ListRolesOutputBodyWritable = {
|
|
7199
|
+
roles: Array<RoleDefinition> | null;
|
|
7200
|
+
};
|
|
7201
|
+
type ListSpaceParentsOutputBodyWritable = {
|
|
7202
|
+
/**
|
|
7203
|
+
* Parent spaces
|
|
7204
|
+
*/
|
|
7205
|
+
items: Array<SpaceWritable> | null;
|
|
7206
|
+
};
|
|
6390
7207
|
type LivenessOutputBodyWritable = {
|
|
6391
7208
|
/**
|
|
6392
7209
|
* Service name
|
|
@@ -6494,10 +7311,6 @@ type OptionsWritable = {
|
|
|
6494
7311
|
priority?: string;
|
|
6495
7312
|
};
|
|
6496
7313
|
type OrganizationWritable = {
|
|
6497
|
-
/**
|
|
6498
|
-
* Allow public resource visibility
|
|
6499
|
-
*/
|
|
6500
|
-
allow_public_visibility: boolean;
|
|
6501
7314
|
/**
|
|
6502
7315
|
* Created timestamp
|
|
6503
7316
|
*/
|
|
@@ -7002,7 +7815,7 @@ type ProfileWritable = {
|
|
|
7002
7815
|
*/
|
|
7003
7816
|
email: string;
|
|
7004
7817
|
/**
|
|
7005
|
-
*
|
|
7818
|
+
* Keycloak sub claim
|
|
7006
7819
|
*/
|
|
7007
7820
|
external_auth_id?: string;
|
|
7008
7821
|
/**
|
|
@@ -7013,6 +7826,10 @@ type ProfileWritable = {
|
|
|
7013
7826
|
* Whether this is an AI assistant profile
|
|
7014
7827
|
*/
|
|
7015
7828
|
is_ai_assistant: boolean;
|
|
7829
|
+
/**
|
|
7830
|
+
* Whether this profile appears in global search results
|
|
7831
|
+
*/
|
|
7832
|
+
is_discoverable: boolean;
|
|
7016
7833
|
/**
|
|
7017
7834
|
* Owner profile ID (for AI assistants)
|
|
7018
7835
|
*/
|
|
@@ -7026,9 +7843,15 @@ type ProfileWritable = {
|
|
|
7026
7843
|
*/
|
|
7027
7844
|
updated_at: string;
|
|
7028
7845
|
/**
|
|
7029
|
-
*
|
|
7846
|
+
* Unique handle chosen by the user
|
|
7030
7847
|
*/
|
|
7031
|
-
username
|
|
7848
|
+
username: string;
|
|
7849
|
+
};
|
|
7850
|
+
type PublicSpaceTreeOutputBodyWritable = {
|
|
7851
|
+
/**
|
|
7852
|
+
* Publicly visible spaces arranged as a multi-root hierarchy.
|
|
7853
|
+
*/
|
|
7854
|
+
items: Array<SpaceTreeNode> | null;
|
|
7032
7855
|
};
|
|
7033
7856
|
type PublishAnnouncementInputBodyWritable = {
|
|
7034
7857
|
/**
|
|
@@ -7218,9 +8041,9 @@ type SpaceWritable = {
|
|
|
7218
8041
|
*/
|
|
7219
8042
|
org_id?: string;
|
|
7220
8043
|
/**
|
|
7221
|
-
* Parent space
|
|
8044
|
+
* Parent space IDs
|
|
7222
8045
|
*/
|
|
7223
|
-
|
|
8046
|
+
parent_ids?: Array<number> | null;
|
|
7224
8047
|
/**
|
|
7225
8048
|
* Order within parent
|
|
7226
8049
|
*/
|
|
@@ -7434,6 +8257,10 @@ type SpaceManagerWritable = {
|
|
|
7434
8257
|
* Assigned space manager permissions
|
|
7435
8258
|
*/
|
|
7436
8259
|
permissions: Array<string> | null;
|
|
8260
|
+
/**
|
|
8261
|
+
* Pre-defined role bundle name (e.g. space_manager:full); NULL for custom permission combinations.
|
|
8262
|
+
*/
|
|
8263
|
+
role?: string;
|
|
7437
8264
|
/**
|
|
7438
8265
|
* Space ID
|
|
7439
8266
|
*/
|
|
@@ -7561,6 +8388,81 @@ type SpaceSettingsPatchWritable = {
|
|
|
7561
8388
|
*/
|
|
7562
8389
|
notify_on_event?: boolean;
|
|
7563
8390
|
};
|
|
8391
|
+
type SpaceTreeOutputBodyWritable = {
|
|
8392
|
+
/**
|
|
8393
|
+
* Spaces arranged as a multi-root hierarchy. Multi-parent spaces appear under each of their parents.
|
|
8394
|
+
*/
|
|
8395
|
+
items: Array<SpaceTreeNode> | null;
|
|
8396
|
+
};
|
|
8397
|
+
type TemplateDtoWritable = {
|
|
8398
|
+
/**
|
|
8399
|
+
* Attachment kinds this template accepts. null = no restriction; [] = lockdown.
|
|
8400
|
+
*/
|
|
8401
|
+
allowed_attachment_kinds: Array<string> | null;
|
|
8402
|
+
/**
|
|
8403
|
+
* One-line description.
|
|
8404
|
+
*/
|
|
8405
|
+
description: string;
|
|
8406
|
+
/**
|
|
8407
|
+
* Stable template id.
|
|
8408
|
+
*/
|
|
8409
|
+
id: string;
|
|
8410
|
+
/**
|
|
8411
|
+
* Optional SVG markup for the template picker card.
|
|
8412
|
+
*/
|
|
8413
|
+
illustration_svg?: string;
|
|
8414
|
+
/**
|
|
8415
|
+
* Raw JSON Schema for metadata. Strict — additionalProperties: false.
|
|
8416
|
+
*/
|
|
8417
|
+
json_schema: unknown;
|
|
8418
|
+
/**
|
|
8419
|
+
* Human-readable name (used in pickers).
|
|
8420
|
+
*/
|
|
8421
|
+
label: string;
|
|
8422
|
+
/**
|
|
8423
|
+
* RBAC capabilities the caller must hold.
|
|
8424
|
+
*/
|
|
8425
|
+
required_capabilities: Array<string> | null;
|
|
8426
|
+
/**
|
|
8427
|
+
* Attendee functions required for this template (e.g. patient, provider).
|
|
8428
|
+
*/
|
|
8429
|
+
required_functions: Array<string> | null;
|
|
8430
|
+
/**
|
|
8431
|
+
* Hint to the milestone picker: which templates make natural children.
|
|
8432
|
+
*/
|
|
8433
|
+
suggested_milestone_templates: Array<string> | null;
|
|
8434
|
+
/**
|
|
8435
|
+
* Whether events of this template can have child milestones.
|
|
8436
|
+
*/
|
|
8437
|
+
supports_milestones: boolean;
|
|
8438
|
+
/**
|
|
8439
|
+
* Whether this template can be the canonical for an event_series.
|
|
8440
|
+
*/
|
|
8441
|
+
supports_series: boolean;
|
|
8442
|
+
/**
|
|
8443
|
+
* Monotonic version. 0 is reserved for legacy pre-template events.
|
|
8444
|
+
*/
|
|
8445
|
+
version: number;
|
|
8446
|
+
};
|
|
8447
|
+
type TemplateListOutputBodyWritable = {
|
|
8448
|
+
items: Array<TemplateDtoWritable> | null;
|
|
8449
|
+
};
|
|
8450
|
+
type TransitionInputBodyWritable = {
|
|
8451
|
+
/**
|
|
8452
|
+
* Kind-specific data the state machine's guard inspects (e.g. proof_of_delivery for delivery's final hop).
|
|
8453
|
+
*/
|
|
8454
|
+
payload?: {
|
|
8455
|
+
[key: string]: unknown;
|
|
8456
|
+
};
|
|
8457
|
+
/**
|
|
8458
|
+
* Optional human-readable reason — captured on the activity row.
|
|
8459
|
+
*/
|
|
8460
|
+
reason?: string;
|
|
8461
|
+
/**
|
|
8462
|
+
* Target state, e.g. 'in_transit' or 'delivered'.
|
|
8463
|
+
*/
|
|
8464
|
+
to_state: string;
|
|
8465
|
+
};
|
|
7564
8466
|
type UpdateAttendeeStatusInputBodyWritable = {
|
|
7565
8467
|
/**
|
|
7566
8468
|
* New status
|
|
@@ -7649,7 +8551,11 @@ type UpdateMeInputBodyWritable = {
|
|
|
7649
8551
|
*/
|
|
7650
8552
|
avatar_url?: string;
|
|
7651
8553
|
/**
|
|
7652
|
-
*
|
|
8554
|
+
* Whether this profile appears in global search results
|
|
8555
|
+
*/
|
|
8556
|
+
is_discoverable?: boolean;
|
|
8557
|
+
/**
|
|
8558
|
+
* Unique handle (lowercase alphanumeric, hyphens, underscores)
|
|
7653
8559
|
*/
|
|
7654
8560
|
username?: string;
|
|
7655
8561
|
};
|
|
@@ -7660,10 +8566,6 @@ type UpdateMilestoneInputBodyWritable = {
|
|
|
7660
8566
|
sequence: number;
|
|
7661
8567
|
};
|
|
7662
8568
|
type UpdateOrgBodyWritable = {
|
|
7663
|
-
/**
|
|
7664
|
-
* Allow B2C public access to published resources
|
|
7665
|
-
*/
|
|
7666
|
-
allow_public_visibility: boolean;
|
|
7667
8569
|
/**
|
|
7668
8570
|
* Organization name
|
|
7669
8571
|
*/
|
|
@@ -7828,6 +8730,26 @@ type AnnouncementsListData = {
|
|
|
7828
8730
|
* Items per page
|
|
7829
8731
|
*/
|
|
7830
8732
|
size?: number;
|
|
8733
|
+
/**
|
|
8734
|
+
* Filter by priority
|
|
8735
|
+
*/
|
|
8736
|
+
priority?: 'routine' | 'important' | 'urgent' | 'critical';
|
|
8737
|
+
/**
|
|
8738
|
+
* Filter by tag (repeatable: ?tag=a&tag=b); matches any
|
|
8739
|
+
*/
|
|
8740
|
+
tag?: Array<string> | null;
|
|
8741
|
+
/**
|
|
8742
|
+
* When true, exclude announcements past their expires_at
|
|
8743
|
+
*/
|
|
8744
|
+
active?: boolean;
|
|
8745
|
+
/**
|
|
8746
|
+
* Sort field
|
|
8747
|
+
*/
|
|
8748
|
+
sort_by?: 'created_at' | 'title';
|
|
8749
|
+
/**
|
|
8750
|
+
* Sort direction
|
|
8751
|
+
*/
|
|
8752
|
+
sort_dir?: 'asc' | 'desc';
|
|
7831
8753
|
};
|
|
7832
8754
|
url: '/api/v1/announcements';
|
|
7833
8755
|
};
|
|
@@ -7940,6 +8862,34 @@ type AnnouncementsPatchResponses = {
|
|
|
7940
8862
|
200: Announcement;
|
|
7941
8863
|
};
|
|
7942
8864
|
type AnnouncementsPatchResponse = AnnouncementsPatchResponses[keyof AnnouncementsPatchResponses];
|
|
8865
|
+
type AnnouncementsUploadCoverData = {
|
|
8866
|
+
body: Blob | File;
|
|
8867
|
+
headers?: {
|
|
8868
|
+
'Content-Type'?: string;
|
|
8869
|
+
};
|
|
8870
|
+
path: {
|
|
8871
|
+
/**
|
|
8872
|
+
* Announcement ID
|
|
8873
|
+
*/
|
|
8874
|
+
id: number;
|
|
8875
|
+
};
|
|
8876
|
+
query?: never;
|
|
8877
|
+
url: '/api/v1/announcements/{id}/cover';
|
|
8878
|
+
};
|
|
8879
|
+
type AnnouncementsUploadCoverErrors = {
|
|
8880
|
+
/**
|
|
8881
|
+
* Error
|
|
8882
|
+
*/
|
|
8883
|
+
default: ErrorModel;
|
|
8884
|
+
};
|
|
8885
|
+
type AnnouncementsUploadCoverError = AnnouncementsUploadCoverErrors[keyof AnnouncementsUploadCoverErrors];
|
|
8886
|
+
type AnnouncementsUploadCoverResponses = {
|
|
8887
|
+
/**
|
|
8888
|
+
* OK
|
|
8889
|
+
*/
|
|
8890
|
+
200: Announcement;
|
|
8891
|
+
};
|
|
8892
|
+
type AnnouncementsUploadCoverResponse = AnnouncementsUploadCoverResponses[keyof AnnouncementsUploadCoverResponses];
|
|
7943
8893
|
type AnnouncementsPublishData = {
|
|
7944
8894
|
body: PublishAnnouncementInputBodyWritable;
|
|
7945
8895
|
path: {
|
|
@@ -7965,6 +8915,31 @@ type AnnouncementsPublishResponses = {
|
|
|
7965
8915
|
200: Announcement;
|
|
7966
8916
|
};
|
|
7967
8917
|
type AnnouncementsPublishResponse = AnnouncementsPublishResponses[keyof AnnouncementsPublishResponses];
|
|
8918
|
+
type EventsAttachmentsRemoveData = {
|
|
8919
|
+
body?: never;
|
|
8920
|
+
path: {
|
|
8921
|
+
/**
|
|
8922
|
+
* Attachment record ID
|
|
8923
|
+
*/
|
|
8924
|
+
id: number;
|
|
8925
|
+
};
|
|
8926
|
+
query?: never;
|
|
8927
|
+
url: '/api/v1/attachments/{id}';
|
|
8928
|
+
};
|
|
8929
|
+
type EventsAttachmentsRemoveErrors = {
|
|
8930
|
+
/**
|
|
8931
|
+
* Error
|
|
8932
|
+
*/
|
|
8933
|
+
default: ErrorModel;
|
|
8934
|
+
};
|
|
8935
|
+
type EventsAttachmentsRemoveError = EventsAttachmentsRemoveErrors[keyof EventsAttachmentsRemoveErrors];
|
|
8936
|
+
type EventsAttachmentsRemoveResponses = {
|
|
8937
|
+
/**
|
|
8938
|
+
* No Content
|
|
8939
|
+
*/
|
|
8940
|
+
204: void;
|
|
8941
|
+
};
|
|
8942
|
+
type EventsAttachmentsRemoveResponse = EventsAttachmentsRemoveResponses[keyof EventsAttachmentsRemoveResponses];
|
|
7968
8943
|
type AuditListData = {
|
|
7969
8944
|
body?: never;
|
|
7970
8945
|
path?: never;
|
|
@@ -8656,6 +9631,89 @@ type ContactsToggleFavoriteResponses = {
|
|
|
8656
9631
|
200: Contact;
|
|
8657
9632
|
};
|
|
8658
9633
|
type ContactsToggleFavoriteResponse = ContactsToggleFavoriteResponses[keyof ContactsToggleFavoriteResponses];
|
|
9634
|
+
type ContactsListIntegrationFieldsData = {
|
|
9635
|
+
body?: never;
|
|
9636
|
+
path: {
|
|
9637
|
+
/**
|
|
9638
|
+
* Contact ID
|
|
9639
|
+
*/
|
|
9640
|
+
id: string;
|
|
9641
|
+
};
|
|
9642
|
+
query?: never;
|
|
9643
|
+
url: '/api/v1/contacts/{id}/integration-fields';
|
|
9644
|
+
};
|
|
9645
|
+
type ContactsListIntegrationFieldsErrors = {
|
|
9646
|
+
/**
|
|
9647
|
+
* Error
|
|
9648
|
+
*/
|
|
9649
|
+
default: ErrorModel;
|
|
9650
|
+
};
|
|
9651
|
+
type ContactsListIntegrationFieldsError = ContactsListIntegrationFieldsErrors[keyof ContactsListIntegrationFieldsErrors];
|
|
9652
|
+
type ContactsListIntegrationFieldsResponses = {
|
|
9653
|
+
/**
|
|
9654
|
+
* OK
|
|
9655
|
+
*/
|
|
9656
|
+
200: ListIntegrationFieldsOutputBody;
|
|
9657
|
+
};
|
|
9658
|
+
type ContactsListIntegrationFieldsResponse = ContactsListIntegrationFieldsResponses[keyof ContactsListIntegrationFieldsResponses];
|
|
9659
|
+
type ContactsUpsertIntegrationFieldData = {
|
|
9660
|
+
body: IntegrationFieldUpsertWritable;
|
|
9661
|
+
path: {
|
|
9662
|
+
/**
|
|
9663
|
+
* Contact ID
|
|
9664
|
+
*/
|
|
9665
|
+
id: string;
|
|
9666
|
+
};
|
|
9667
|
+
query?: never;
|
|
9668
|
+
url: '/api/v1/contacts/{id}/integration-fields';
|
|
9669
|
+
};
|
|
9670
|
+
type ContactsUpsertIntegrationFieldErrors = {
|
|
9671
|
+
/**
|
|
9672
|
+
* Error
|
|
9673
|
+
*/
|
|
9674
|
+
default: ErrorModel;
|
|
9675
|
+
};
|
|
9676
|
+
type ContactsUpsertIntegrationFieldError = ContactsUpsertIntegrationFieldErrors[keyof ContactsUpsertIntegrationFieldErrors];
|
|
9677
|
+
type ContactsUpsertIntegrationFieldResponses = {
|
|
9678
|
+
/**
|
|
9679
|
+
* OK
|
|
9680
|
+
*/
|
|
9681
|
+
200: IntegrationField;
|
|
9682
|
+
};
|
|
9683
|
+
type ContactsUpsertIntegrationFieldResponse = ContactsUpsertIntegrationFieldResponses[keyof ContactsUpsertIntegrationFieldResponses];
|
|
9684
|
+
type ContactsDeleteIntegrationFieldData = {
|
|
9685
|
+
body?: never;
|
|
9686
|
+
path: {
|
|
9687
|
+
/**
|
|
9688
|
+
* Contact ID
|
|
9689
|
+
*/
|
|
9690
|
+
id: string;
|
|
9691
|
+
/**
|
|
9692
|
+
* Integration app ID
|
|
9693
|
+
*/
|
|
9694
|
+
app_id: string;
|
|
9695
|
+
/**
|
|
9696
|
+
* Field key (e.g. instagram_igsid)
|
|
9697
|
+
*/
|
|
9698
|
+
field_key: string;
|
|
9699
|
+
};
|
|
9700
|
+
query?: never;
|
|
9701
|
+
url: '/api/v1/contacts/{id}/integration-fields/{app_id}/{field_key}';
|
|
9702
|
+
};
|
|
9703
|
+
type ContactsDeleteIntegrationFieldErrors = {
|
|
9704
|
+
/**
|
|
9705
|
+
* Error
|
|
9706
|
+
*/
|
|
9707
|
+
default: ErrorModel;
|
|
9708
|
+
};
|
|
9709
|
+
type ContactsDeleteIntegrationFieldError = ContactsDeleteIntegrationFieldErrors[keyof ContactsDeleteIntegrationFieldErrors];
|
|
9710
|
+
type ContactsDeleteIntegrationFieldResponses = {
|
|
9711
|
+
/**
|
|
9712
|
+
* No Content
|
|
9713
|
+
*/
|
|
9714
|
+
204: void;
|
|
9715
|
+
};
|
|
9716
|
+
type ContactsDeleteIntegrationFieldResponse = ContactsDeleteIntegrationFieldResponses[keyof ContactsDeleteIntegrationFieldResponses];
|
|
8659
9717
|
type CredentialsListData = {
|
|
8660
9718
|
body?: never;
|
|
8661
9719
|
path?: never;
|
|
@@ -8746,6 +9804,51 @@ type CredentialsGetResponses = {
|
|
|
8746
9804
|
200: CredentialView;
|
|
8747
9805
|
};
|
|
8748
9806
|
type CredentialsGetResponse = CredentialsGetResponses[keyof CredentialsGetResponses];
|
|
9807
|
+
type EventsTemplatesListData = {
|
|
9808
|
+
body?: never;
|
|
9809
|
+
path?: never;
|
|
9810
|
+
query?: never;
|
|
9811
|
+
url: '/api/v1/event-templates';
|
|
9812
|
+
};
|
|
9813
|
+
type EventsTemplatesListErrors = {
|
|
9814
|
+
/**
|
|
9815
|
+
* Error
|
|
9816
|
+
*/
|
|
9817
|
+
default: ErrorModel;
|
|
9818
|
+
};
|
|
9819
|
+
type EventsTemplatesListError = EventsTemplatesListErrors[keyof EventsTemplatesListErrors];
|
|
9820
|
+
type EventsTemplatesListResponses = {
|
|
9821
|
+
/**
|
|
9822
|
+
* OK
|
|
9823
|
+
*/
|
|
9824
|
+
200: TemplateListOutputBody;
|
|
9825
|
+
};
|
|
9826
|
+
type EventsTemplatesListResponse = EventsTemplatesListResponses[keyof EventsTemplatesListResponses];
|
|
9827
|
+
type EventsTemplatesGetData = {
|
|
9828
|
+
body?: never;
|
|
9829
|
+
path: {
|
|
9830
|
+
/**
|
|
9831
|
+
* Template id (e.g. 'announcement').
|
|
9832
|
+
*/
|
|
9833
|
+
id: string;
|
|
9834
|
+
};
|
|
9835
|
+
query?: never;
|
|
9836
|
+
url: '/api/v1/event-templates/{id}';
|
|
9837
|
+
};
|
|
9838
|
+
type EventsTemplatesGetErrors = {
|
|
9839
|
+
/**
|
|
9840
|
+
* Error
|
|
9841
|
+
*/
|
|
9842
|
+
default: ErrorModel;
|
|
9843
|
+
};
|
|
9844
|
+
type EventsTemplatesGetError = EventsTemplatesGetErrors[keyof EventsTemplatesGetErrors];
|
|
9845
|
+
type EventsTemplatesGetResponses = {
|
|
9846
|
+
/**
|
|
9847
|
+
* OK
|
|
9848
|
+
*/
|
|
9849
|
+
200: TemplateDto;
|
|
9850
|
+
};
|
|
9851
|
+
type EventsTemplatesGetResponse = EventsTemplatesGetResponses[keyof EventsTemplatesGetResponses];
|
|
8749
9852
|
type EventsListData = {
|
|
8750
9853
|
body?: never;
|
|
8751
9854
|
path?: never;
|
|
@@ -8770,6 +9873,34 @@ type EventsListData = {
|
|
|
8770
9873
|
* Sort direction
|
|
8771
9874
|
*/
|
|
8772
9875
|
sort_dir?: 'asc' | 'desc';
|
|
9876
|
+
/**
|
|
9877
|
+
* Filter by publish status. Omit to return both published and standalone drafts.
|
|
9878
|
+
*/
|
|
9879
|
+
status?: 'published' | 'draft';
|
|
9880
|
+
/**
|
|
9881
|
+
* Filter by visibility level: 10=private, 20=members-only, 30=organization, 40=public. Omit or pass 0 to return all visible rows.
|
|
9882
|
+
*/
|
|
9883
|
+
visibility?: number;
|
|
9884
|
+
/**
|
|
9885
|
+
* Return only events whose start date is at or after this datetime (UTC ISO-8601). Omit for no lower bound.
|
|
9886
|
+
*/
|
|
9887
|
+
start_dt_after?: string;
|
|
9888
|
+
/**
|
|
9889
|
+
* Return only events whose start date is at or before this datetime (UTC ISO-8601). Omit for no upper bound.
|
|
9890
|
+
*/
|
|
9891
|
+
start_dt_before?: string;
|
|
9892
|
+
/**
|
|
9893
|
+
* Filter to events belonging to any of these space IDs (repeatable). Omit or pass empty to return events from all spaces.
|
|
9894
|
+
*/
|
|
9895
|
+
space_ids?: Array<number> | null;
|
|
9896
|
+
/**
|
|
9897
|
+
* Filter to events of this exact template id (e.g. 'announcement'). Omit for no filter.
|
|
9898
|
+
*/
|
|
9899
|
+
template?: string;
|
|
9900
|
+
/**
|
|
9901
|
+
* Filter to events whose template is in this list (repeatable). Combined with Template via OR if both are set.
|
|
9902
|
+
*/
|
|
9903
|
+
template_in?: Array<string> | null;
|
|
8773
9904
|
};
|
|
8774
9905
|
url: '/api/v1/events';
|
|
8775
9906
|
};
|
|
@@ -8924,43 +10055,157 @@ type EventsCreateWithSeriesResponses = {
|
|
|
8924
10055
|
201: CreateWithSeriesOutputBody;
|
|
8925
10056
|
};
|
|
8926
10057
|
type EventsCreateWithSeriesResponse = EventsCreateWithSeriesResponses[keyof EventsCreateWithSeriesResponses];
|
|
8927
|
-
type
|
|
10058
|
+
type EventsActivityListData = {
|
|
8928
10059
|
body?: never;
|
|
8929
10060
|
path: {
|
|
8930
10061
|
/**
|
|
8931
|
-
*
|
|
10062
|
+
* Parent event ID
|
|
8932
10063
|
*/
|
|
8933
|
-
|
|
10064
|
+
event_id: number;
|
|
8934
10065
|
};
|
|
8935
|
-
query?:
|
|
8936
|
-
|
|
10066
|
+
query?: {
|
|
10067
|
+
/**
|
|
10068
|
+
* Filter to a single kind. Empty returns all kinds.
|
|
10069
|
+
*/
|
|
10070
|
+
kind?: string;
|
|
10071
|
+
/**
|
|
10072
|
+
* Max rows (default 200, max 1000).
|
|
10073
|
+
*/
|
|
10074
|
+
limit?: number;
|
|
10075
|
+
};
|
|
10076
|
+
url: '/api/v1/events/{event_id}/activity';
|
|
8937
10077
|
};
|
|
8938
|
-
type
|
|
10078
|
+
type EventsActivityListErrors = {
|
|
8939
10079
|
/**
|
|
8940
10080
|
* Error
|
|
8941
10081
|
*/
|
|
8942
10082
|
default: ErrorModel;
|
|
8943
10083
|
};
|
|
8944
|
-
type
|
|
8945
|
-
type
|
|
10084
|
+
type EventsActivityListError = EventsActivityListErrors[keyof EventsActivityListErrors];
|
|
10085
|
+
type EventsActivityListResponses = {
|
|
8946
10086
|
/**
|
|
8947
|
-
*
|
|
10087
|
+
* OK
|
|
8948
10088
|
*/
|
|
8949
|
-
|
|
10089
|
+
200: ActivityListOutputBody;
|
|
8950
10090
|
};
|
|
8951
|
-
type
|
|
8952
|
-
type
|
|
8953
|
-
body
|
|
10091
|
+
type EventsActivityListResponse = EventsActivityListResponses[keyof EventsActivityListResponses];
|
|
10092
|
+
type EventsActivityAppendData = {
|
|
10093
|
+
body: ActivityAppendInputBodyWritable;
|
|
8954
10094
|
path: {
|
|
8955
10095
|
/**
|
|
8956
|
-
*
|
|
10096
|
+
* Parent event ID
|
|
8957
10097
|
*/
|
|
8958
|
-
|
|
10098
|
+
event_id: number;
|
|
8959
10099
|
};
|
|
8960
10100
|
query?: never;
|
|
8961
|
-
url: '/api/v1/events/{
|
|
10101
|
+
url: '/api/v1/events/{event_id}/activity';
|
|
8962
10102
|
};
|
|
8963
|
-
type
|
|
10103
|
+
type EventsActivityAppendErrors = {
|
|
10104
|
+
/**
|
|
10105
|
+
* Error
|
|
10106
|
+
*/
|
|
10107
|
+
default: ErrorModel;
|
|
10108
|
+
};
|
|
10109
|
+
type EventsActivityAppendError = EventsActivityAppendErrors[keyof EventsActivityAppendErrors];
|
|
10110
|
+
type EventsActivityAppendResponses = {
|
|
10111
|
+
/**
|
|
10112
|
+
* Created
|
|
10113
|
+
*/
|
|
10114
|
+
201: ActivityLogEntry;
|
|
10115
|
+
};
|
|
10116
|
+
type EventsActivityAppendResponse = EventsActivityAppendResponses[keyof EventsActivityAppendResponses];
|
|
10117
|
+
type EventsAttachmentsListData = {
|
|
10118
|
+
body?: never;
|
|
10119
|
+
path: {
|
|
10120
|
+
/**
|
|
10121
|
+
* Parent event ID
|
|
10122
|
+
*/
|
|
10123
|
+
event_id: number;
|
|
10124
|
+
};
|
|
10125
|
+
query?: {
|
|
10126
|
+
/**
|
|
10127
|
+
* Filter to a single kind. Empty returns all kinds.
|
|
10128
|
+
*/
|
|
10129
|
+
kind?: string;
|
|
10130
|
+
};
|
|
10131
|
+
url: '/api/v1/events/{event_id}/attachments';
|
|
10132
|
+
};
|
|
10133
|
+
type EventsAttachmentsListErrors = {
|
|
10134
|
+
/**
|
|
10135
|
+
* Error
|
|
10136
|
+
*/
|
|
10137
|
+
default: ErrorModel;
|
|
10138
|
+
};
|
|
10139
|
+
type EventsAttachmentsListError = EventsAttachmentsListErrors[keyof EventsAttachmentsListErrors];
|
|
10140
|
+
type EventsAttachmentsListResponses = {
|
|
10141
|
+
/**
|
|
10142
|
+
* OK
|
|
10143
|
+
*/
|
|
10144
|
+
200: AttachmentListOutputBody;
|
|
10145
|
+
};
|
|
10146
|
+
type EventsAttachmentsListResponse = EventsAttachmentsListResponses[keyof EventsAttachmentsListResponses];
|
|
10147
|
+
type EventsAttachmentsAddData = {
|
|
10148
|
+
body: AttachmentAddInputBodyWritable;
|
|
10149
|
+
path: {
|
|
10150
|
+
/**
|
|
10151
|
+
* Parent event ID
|
|
10152
|
+
*/
|
|
10153
|
+
event_id: number;
|
|
10154
|
+
};
|
|
10155
|
+
query?: never;
|
|
10156
|
+
url: '/api/v1/events/{event_id}/attachments';
|
|
10157
|
+
};
|
|
10158
|
+
type EventsAttachmentsAddErrors = {
|
|
10159
|
+
/**
|
|
10160
|
+
* Error
|
|
10161
|
+
*/
|
|
10162
|
+
default: ErrorModel;
|
|
10163
|
+
};
|
|
10164
|
+
type EventsAttachmentsAddError = EventsAttachmentsAddErrors[keyof EventsAttachmentsAddErrors];
|
|
10165
|
+
type EventsAttachmentsAddResponses = {
|
|
10166
|
+
/**
|
|
10167
|
+
* Created
|
|
10168
|
+
*/
|
|
10169
|
+
201: Attachment;
|
|
10170
|
+
};
|
|
10171
|
+
type EventsAttachmentsAddResponse = EventsAttachmentsAddResponses[keyof EventsAttachmentsAddResponses];
|
|
10172
|
+
type EventsDeleteData = {
|
|
10173
|
+
body?: never;
|
|
10174
|
+
path: {
|
|
10175
|
+
/**
|
|
10176
|
+
* Event ID
|
|
10177
|
+
*/
|
|
10178
|
+
id: number;
|
|
10179
|
+
};
|
|
10180
|
+
query?: never;
|
|
10181
|
+
url: '/api/v1/events/{id}';
|
|
10182
|
+
};
|
|
10183
|
+
type EventsDeleteErrors = {
|
|
10184
|
+
/**
|
|
10185
|
+
* Error
|
|
10186
|
+
*/
|
|
10187
|
+
default: ErrorModel;
|
|
10188
|
+
};
|
|
10189
|
+
type EventsDeleteError = EventsDeleteErrors[keyof EventsDeleteErrors];
|
|
10190
|
+
type EventsDeleteResponses = {
|
|
10191
|
+
/**
|
|
10192
|
+
* No Content
|
|
10193
|
+
*/
|
|
10194
|
+
204: void;
|
|
10195
|
+
};
|
|
10196
|
+
type EventsDeleteResponse = EventsDeleteResponses[keyof EventsDeleteResponses];
|
|
10197
|
+
type EventsGetData = {
|
|
10198
|
+
body?: never;
|
|
10199
|
+
path: {
|
|
10200
|
+
/**
|
|
10201
|
+
* Event ID
|
|
10202
|
+
*/
|
|
10203
|
+
id: number;
|
|
10204
|
+
};
|
|
10205
|
+
query?: never;
|
|
10206
|
+
url: '/api/v1/events/{id}';
|
|
10207
|
+
};
|
|
10208
|
+
type EventsGetErrors = {
|
|
8964
10209
|
/**
|
|
8965
10210
|
* Error
|
|
8966
10211
|
*/
|
|
@@ -10375,6 +11620,31 @@ type EventsRemoveSpaceResponses = {
|
|
|
10375
11620
|
204: void;
|
|
10376
11621
|
};
|
|
10377
11622
|
type EventsRemoveSpaceResponse = EventsRemoveSpaceResponses[keyof EventsRemoveSpaceResponses];
|
|
11623
|
+
type EventsTransitionData = {
|
|
11624
|
+
body: TransitionInputBodyWritable;
|
|
11625
|
+
path: {
|
|
11626
|
+
/**
|
|
11627
|
+
* Event ID
|
|
11628
|
+
*/
|
|
11629
|
+
id: number;
|
|
11630
|
+
};
|
|
11631
|
+
query?: never;
|
|
11632
|
+
url: '/api/v1/events/{id}/transition';
|
|
11633
|
+
};
|
|
11634
|
+
type EventsTransitionErrors = {
|
|
11635
|
+
/**
|
|
11636
|
+
* Error
|
|
11637
|
+
*/
|
|
11638
|
+
default: ErrorModel;
|
|
11639
|
+
};
|
|
11640
|
+
type EventsTransitionError = EventsTransitionErrors[keyof EventsTransitionErrors];
|
|
11641
|
+
type EventsTransitionResponses = {
|
|
11642
|
+
/**
|
|
11643
|
+
* OK
|
|
11644
|
+
*/
|
|
11645
|
+
200: Event;
|
|
11646
|
+
};
|
|
11647
|
+
type EventsTransitionResponse = EventsTransitionResponses[keyof EventsTransitionResponses];
|
|
10378
11648
|
type IntegrationsZitadelWebhookData = {
|
|
10379
11649
|
body: Blob | File;
|
|
10380
11650
|
headers?: {
|
|
@@ -10594,6 +11864,26 @@ type OrganizationsInvitesDeleteResponses = {
|
|
|
10594
11864
|
204: void;
|
|
10595
11865
|
};
|
|
10596
11866
|
type OrganizationsInvitesDeleteResponse = OrganizationsInvitesDeleteResponses[keyof OrganizationsInvitesDeleteResponses];
|
|
11867
|
+
type PermissionsListRolesData = {
|
|
11868
|
+
body?: never;
|
|
11869
|
+
path?: never;
|
|
11870
|
+
query?: never;
|
|
11871
|
+
url: '/api/v1/permissions/roles';
|
|
11872
|
+
};
|
|
11873
|
+
type PermissionsListRolesErrors = {
|
|
11874
|
+
/**
|
|
11875
|
+
* Error
|
|
11876
|
+
*/
|
|
11877
|
+
default: ErrorModel;
|
|
11878
|
+
};
|
|
11879
|
+
type PermissionsListRolesError = PermissionsListRolesErrors[keyof PermissionsListRolesErrors];
|
|
11880
|
+
type PermissionsListRolesResponses = {
|
|
11881
|
+
/**
|
|
11882
|
+
* OK
|
|
11883
|
+
*/
|
|
11884
|
+
200: ListRolesOutputBody;
|
|
11885
|
+
};
|
|
11886
|
+
type PermissionsListRolesResponse = PermissionsListRolesResponses[keyof PermissionsListRolesResponses];
|
|
10597
11887
|
type PlacesListData = {
|
|
10598
11888
|
body?: never;
|
|
10599
11889
|
path?: never;
|
|
@@ -10618,6 +11908,14 @@ type PlacesListData = {
|
|
|
10618
11908
|
* Sort direction
|
|
10619
11909
|
*/
|
|
10620
11910
|
sort_dir?: 'asc' | 'desc';
|
|
11911
|
+
/**
|
|
11912
|
+
* Filter by publish status. Omit to return both published and standalone drafts.
|
|
11913
|
+
*/
|
|
11914
|
+
status?: 'published' | 'draft';
|
|
11915
|
+
/**
|
|
11916
|
+
* Filter by visibility level: 10=private, 20=members-only, 30=organization, 40=public. Omit or pass 0 to return all visible rows.
|
|
11917
|
+
*/
|
|
11918
|
+
visibility?: number;
|
|
10621
11919
|
};
|
|
10622
11920
|
url: '/api/v1/places';
|
|
10623
11921
|
};
|
|
@@ -10927,6 +12225,55 @@ type ProfilesGetResponses = {
|
|
|
10927
12225
|
200: Profile;
|
|
10928
12226
|
};
|
|
10929
12227
|
type ProfilesGetResponse = ProfilesGetResponses[keyof ProfilesGetResponses];
|
|
12228
|
+
type PublicAnnouncementsListData = {
|
|
12229
|
+
body?: never;
|
|
12230
|
+
path?: never;
|
|
12231
|
+
query?: {
|
|
12232
|
+
/**
|
|
12233
|
+
* Page number (1-based)
|
|
12234
|
+
*/
|
|
12235
|
+
page?: number;
|
|
12236
|
+
/**
|
|
12237
|
+
* Items per page
|
|
12238
|
+
*/
|
|
12239
|
+
size?: number;
|
|
12240
|
+
/**
|
|
12241
|
+
* Filter by priority (repeatable); matches any
|
|
12242
|
+
*/
|
|
12243
|
+
priority?: Array<'routine' | 'important' | 'urgent' | 'critical'> | null;
|
|
12244
|
+
/**
|
|
12245
|
+
* Filter by tag (repeatable); matches any
|
|
12246
|
+
*/
|
|
12247
|
+
tag?: Array<string> | null;
|
|
12248
|
+
/**
|
|
12249
|
+
* When true, exclude announcements past their expires_at
|
|
12250
|
+
*/
|
|
12251
|
+
active?: boolean;
|
|
12252
|
+
/**
|
|
12253
|
+
* Sort field
|
|
12254
|
+
*/
|
|
12255
|
+
sort_by?: 'created_at' | 'title';
|
|
12256
|
+
/**
|
|
12257
|
+
* Sort direction
|
|
12258
|
+
*/
|
|
12259
|
+
sort_dir?: 'asc' | 'desc';
|
|
12260
|
+
};
|
|
12261
|
+
url: '/api/v1/public/announcements';
|
|
12262
|
+
};
|
|
12263
|
+
type PublicAnnouncementsListErrors = {
|
|
12264
|
+
/**
|
|
12265
|
+
* Error
|
|
12266
|
+
*/
|
|
12267
|
+
default: ErrorModel;
|
|
12268
|
+
};
|
|
12269
|
+
type PublicAnnouncementsListError = PublicAnnouncementsListErrors[keyof PublicAnnouncementsListErrors];
|
|
12270
|
+
type PublicAnnouncementsListResponses = {
|
|
12271
|
+
/**
|
|
12272
|
+
* OK
|
|
12273
|
+
*/
|
|
12274
|
+
200: PagedBodySpaceAnnouncementDetail;
|
|
12275
|
+
};
|
|
12276
|
+
type PublicAnnouncementsListResponse = PublicAnnouncementsListResponses[keyof PublicAnnouncementsListResponses];
|
|
10930
12277
|
type PublicEventsListData = {
|
|
10931
12278
|
body?: never;
|
|
10932
12279
|
path?: never;
|
|
@@ -10951,6 +12298,34 @@ type PublicEventsListData = {
|
|
|
10951
12298
|
* Sort direction
|
|
10952
12299
|
*/
|
|
10953
12300
|
sort_dir?: 'asc' | 'desc';
|
|
12301
|
+
/**
|
|
12302
|
+
* Filter by publish status. Omit to return both published and standalone drafts.
|
|
12303
|
+
*/
|
|
12304
|
+
status?: 'published' | 'draft';
|
|
12305
|
+
/**
|
|
12306
|
+
* Filter by visibility level: 10=private, 20=members-only, 30=organization, 40=public. Omit or pass 0 to return all visible rows.
|
|
12307
|
+
*/
|
|
12308
|
+
visibility?: number;
|
|
12309
|
+
/**
|
|
12310
|
+
* Return only events whose start date is at or after this datetime (UTC ISO-8601). Omit for no lower bound.
|
|
12311
|
+
*/
|
|
12312
|
+
start_dt_after?: string;
|
|
12313
|
+
/**
|
|
12314
|
+
* Return only events whose start date is at or before this datetime (UTC ISO-8601). Omit for no upper bound.
|
|
12315
|
+
*/
|
|
12316
|
+
start_dt_before?: string;
|
|
12317
|
+
/**
|
|
12318
|
+
* Filter to events belonging to any of these space IDs (repeatable). Omit or pass empty to return events from all spaces.
|
|
12319
|
+
*/
|
|
12320
|
+
space_ids?: Array<number> | null;
|
|
12321
|
+
/**
|
|
12322
|
+
* Filter to events of this exact template id (e.g. 'announcement'). Omit for no filter.
|
|
12323
|
+
*/
|
|
12324
|
+
template?: string;
|
|
12325
|
+
/**
|
|
12326
|
+
* Filter to events whose template is in this list (repeatable). Combined with Template via OR if both are set.
|
|
12327
|
+
*/
|
|
12328
|
+
template_in?: Array<string> | null;
|
|
10954
12329
|
};
|
|
10955
12330
|
url: '/api/v1/public/events';
|
|
10956
12331
|
};
|
|
@@ -11017,6 +12392,14 @@ type PublicSpacesListData = {
|
|
|
11017
12392
|
* Sort direction
|
|
11018
12393
|
*/
|
|
11019
12394
|
sort_dir?: 'asc' | 'desc';
|
|
12395
|
+
/**
|
|
12396
|
+
* Filter by publish status. Omit to return both published and standalone drafts.
|
|
12397
|
+
*/
|
|
12398
|
+
status?: 'published' | 'draft';
|
|
12399
|
+
/**
|
|
12400
|
+
* Filter by visibility level: 10=private, 20=members-only, 30=organization, 40=public. Omit or pass 0 to return all visible rows.
|
|
12401
|
+
*/
|
|
12402
|
+
visibility?: number;
|
|
11020
12403
|
};
|
|
11021
12404
|
url: '/api/v1/public/spaces';
|
|
11022
12405
|
};
|
|
@@ -11034,6 +12417,26 @@ type PublicSpacesListResponses = {
|
|
|
11034
12417
|
200: PagedBodySpace;
|
|
11035
12418
|
};
|
|
11036
12419
|
type PublicSpacesListResponse = PublicSpacesListResponses[keyof PublicSpacesListResponses];
|
|
12420
|
+
type PublicSpacesTreeData = {
|
|
12421
|
+
body?: never;
|
|
12422
|
+
path?: never;
|
|
12423
|
+
query?: never;
|
|
12424
|
+
url: '/api/v1/public/spaces/tree';
|
|
12425
|
+
};
|
|
12426
|
+
type PublicSpacesTreeErrors = {
|
|
12427
|
+
/**
|
|
12428
|
+
* Error
|
|
12429
|
+
*/
|
|
12430
|
+
default: ErrorModel;
|
|
12431
|
+
};
|
|
12432
|
+
type PublicSpacesTreeError = PublicSpacesTreeErrors[keyof PublicSpacesTreeErrors];
|
|
12433
|
+
type PublicSpacesTreeResponses = {
|
|
12434
|
+
/**
|
|
12435
|
+
* OK
|
|
12436
|
+
*/
|
|
12437
|
+
200: PublicSpaceTreeOutputBody;
|
|
12438
|
+
};
|
|
12439
|
+
type PublicSpacesTreeResponse = PublicSpacesTreeResponses[keyof PublicSpacesTreeResponses];
|
|
11037
12440
|
type PublicSpacesGetData = {
|
|
11038
12441
|
body?: never;
|
|
11039
12442
|
path: {
|
|
@@ -11626,6 +13029,14 @@ type SpacesListData = {
|
|
|
11626
13029
|
* Sort direction
|
|
11627
13030
|
*/
|
|
11628
13031
|
sort_dir?: 'asc' | 'desc';
|
|
13032
|
+
/**
|
|
13033
|
+
* Filter by publish status. Omit to return both published and standalone drafts.
|
|
13034
|
+
*/
|
|
13035
|
+
status?: 'published' | 'draft';
|
|
13036
|
+
/**
|
|
13037
|
+
* Filter by visibility level: 10=private, 20=members-only, 30=organization, 40=public. Omit or pass 0 to return all visible rows.
|
|
13038
|
+
*/
|
|
13039
|
+
visibility?: number;
|
|
11629
13040
|
};
|
|
11630
13041
|
url: '/api/v1/spaces';
|
|
11631
13042
|
};
|
|
@@ -11723,6 +13134,26 @@ type SpacesListPendingManagerInvitesResponses = {
|
|
|
11723
13134
|
200: ListPendingManagerInvitesOutputBody;
|
|
11724
13135
|
};
|
|
11725
13136
|
type SpacesListPendingManagerInvitesResponse = SpacesListPendingManagerInvitesResponses[keyof SpacesListPendingManagerInvitesResponses];
|
|
13137
|
+
type SpacesTreeData = {
|
|
13138
|
+
body?: never;
|
|
13139
|
+
path?: never;
|
|
13140
|
+
query?: never;
|
|
13141
|
+
url: '/api/v1/spaces/tree';
|
|
13142
|
+
};
|
|
13143
|
+
type SpacesTreeErrors = {
|
|
13144
|
+
/**
|
|
13145
|
+
* Error
|
|
13146
|
+
*/
|
|
13147
|
+
default: ErrorModel;
|
|
13148
|
+
};
|
|
13149
|
+
type SpacesTreeError = SpacesTreeErrors[keyof SpacesTreeErrors];
|
|
13150
|
+
type SpacesTreeResponses = {
|
|
13151
|
+
/**
|
|
13152
|
+
* OK
|
|
13153
|
+
*/
|
|
13154
|
+
200: SpaceTreeOutputBody;
|
|
13155
|
+
};
|
|
13156
|
+
type SpacesTreeResponse = SpacesTreeResponses[keyof SpacesTreeResponses];
|
|
11726
13157
|
type SpacesDeleteData = {
|
|
11727
13158
|
body?: never;
|
|
11728
13159
|
path: {
|
|
@@ -12585,8 +14016,8 @@ type SpacesRemoveMemberResponses = {
|
|
|
12585
14016
|
204: void;
|
|
12586
14017
|
};
|
|
12587
14018
|
type SpacesRemoveMemberResponse = SpacesRemoveMemberResponses[keyof SpacesRemoveMemberResponses];
|
|
12588
|
-
type
|
|
12589
|
-
body?:
|
|
14019
|
+
type SpacesListParentsData = {
|
|
14020
|
+
body?: never;
|
|
12590
14021
|
path: {
|
|
12591
14022
|
/**
|
|
12592
14023
|
* Space ID
|
|
@@ -12594,24 +14025,24 @@ type SpacesPublishData = {
|
|
|
12594
14025
|
id: number;
|
|
12595
14026
|
};
|
|
12596
14027
|
query?: never;
|
|
12597
|
-
url: '/api/v1/spaces/{id}/
|
|
14028
|
+
url: '/api/v1/spaces/{id}/parents';
|
|
12598
14029
|
};
|
|
12599
|
-
type
|
|
14030
|
+
type SpacesListParentsErrors = {
|
|
12600
14031
|
/**
|
|
12601
14032
|
* Error
|
|
12602
14033
|
*/
|
|
12603
14034
|
default: ErrorModel;
|
|
12604
14035
|
};
|
|
12605
|
-
type
|
|
12606
|
-
type
|
|
14036
|
+
type SpacesListParentsError = SpacesListParentsErrors[keyof SpacesListParentsErrors];
|
|
14037
|
+
type SpacesListParentsResponses = {
|
|
12607
14038
|
/**
|
|
12608
|
-
*
|
|
14039
|
+
* OK
|
|
12609
14040
|
*/
|
|
12610
|
-
|
|
14041
|
+
200: ListSpaceParentsOutputBody;
|
|
12611
14042
|
};
|
|
12612
|
-
type
|
|
12613
|
-
type
|
|
12614
|
-
body
|
|
14043
|
+
type SpacesListParentsResponse = SpacesListParentsResponses[keyof SpacesListParentsResponses];
|
|
14044
|
+
type SpacesAddParentData = {
|
|
14045
|
+
body: AddSpaceParentInputBodyWritable;
|
|
12615
14046
|
path: {
|
|
12616
14047
|
/**
|
|
12617
14048
|
* Space ID
|
|
@@ -12619,63 +14050,142 @@ type SpacesGetSettingsData = {
|
|
|
12619
14050
|
id: number;
|
|
12620
14051
|
};
|
|
12621
14052
|
query?: never;
|
|
12622
|
-
url: '/api/v1/spaces/{id}/
|
|
14053
|
+
url: '/api/v1/spaces/{id}/parents';
|
|
12623
14054
|
};
|
|
12624
|
-
type
|
|
14055
|
+
type SpacesAddParentErrors = {
|
|
12625
14056
|
/**
|
|
12626
14057
|
* Error
|
|
12627
14058
|
*/
|
|
12628
14059
|
default: ErrorModel;
|
|
12629
14060
|
};
|
|
12630
|
-
type
|
|
12631
|
-
type
|
|
14061
|
+
type SpacesAddParentError = SpacesAddParentErrors[keyof SpacesAddParentErrors];
|
|
14062
|
+
type SpacesAddParentResponses = {
|
|
12632
14063
|
/**
|
|
12633
|
-
*
|
|
14064
|
+
* No Content
|
|
12634
14065
|
*/
|
|
12635
|
-
|
|
14066
|
+
204: void;
|
|
12636
14067
|
};
|
|
12637
|
-
type
|
|
12638
|
-
type
|
|
12639
|
-
body
|
|
14068
|
+
type SpacesAddParentResponse = SpacesAddParentResponses[keyof SpacesAddParentResponses];
|
|
14069
|
+
type SpacesRemoveParentData = {
|
|
14070
|
+
body?: never;
|
|
12640
14071
|
path: {
|
|
12641
14072
|
/**
|
|
12642
14073
|
* Space ID
|
|
12643
14074
|
*/
|
|
12644
14075
|
id: number;
|
|
14076
|
+
/**
|
|
14077
|
+
* Parent space ID to remove
|
|
14078
|
+
*/
|
|
14079
|
+
parent_id: number;
|
|
12645
14080
|
};
|
|
12646
14081
|
query?: never;
|
|
12647
|
-
url: '/api/v1/spaces/{id}/
|
|
14082
|
+
url: '/api/v1/spaces/{id}/parents/{parent_id}';
|
|
12648
14083
|
};
|
|
12649
|
-
type
|
|
14084
|
+
type SpacesRemoveParentErrors = {
|
|
12650
14085
|
/**
|
|
12651
14086
|
* Error
|
|
12652
14087
|
*/
|
|
12653
14088
|
default: ErrorModel;
|
|
12654
14089
|
};
|
|
12655
|
-
type
|
|
12656
|
-
type
|
|
14090
|
+
type SpacesRemoveParentError = SpacesRemoveParentErrors[keyof SpacesRemoveParentErrors];
|
|
14091
|
+
type SpacesRemoveParentResponses = {
|
|
12657
14092
|
/**
|
|
12658
|
-
*
|
|
14093
|
+
* No Content
|
|
12659
14094
|
*/
|
|
12660
|
-
|
|
14095
|
+
204: void;
|
|
12661
14096
|
};
|
|
12662
|
-
type
|
|
12663
|
-
type
|
|
12664
|
-
body?:
|
|
12665
|
-
path
|
|
14097
|
+
type SpacesRemoveParentResponse = SpacesRemoveParentResponses[keyof SpacesRemoveParentResponses];
|
|
14098
|
+
type SpacesPublishData = {
|
|
14099
|
+
body?: OptionsWritable;
|
|
14100
|
+
path: {
|
|
14101
|
+
/**
|
|
14102
|
+
* Space ID
|
|
14103
|
+
*/
|
|
14104
|
+
id: number;
|
|
14105
|
+
};
|
|
12666
14106
|
query?: never;
|
|
12667
|
-
url: '/
|
|
14107
|
+
url: '/api/v1/spaces/{id}/publish';
|
|
12668
14108
|
};
|
|
12669
|
-
type
|
|
14109
|
+
type SpacesPublishErrors = {
|
|
12670
14110
|
/**
|
|
12671
14111
|
* Error
|
|
12672
14112
|
*/
|
|
12673
14113
|
default: ErrorModel;
|
|
12674
14114
|
};
|
|
12675
|
-
type
|
|
12676
|
-
type
|
|
14115
|
+
type SpacesPublishError = SpacesPublishErrors[keyof SpacesPublishErrors];
|
|
14116
|
+
type SpacesPublishResponses = {
|
|
12677
14117
|
/**
|
|
12678
|
-
*
|
|
14118
|
+
* No Content
|
|
14119
|
+
*/
|
|
14120
|
+
204: void;
|
|
14121
|
+
};
|
|
14122
|
+
type SpacesPublishResponse = SpacesPublishResponses[keyof SpacesPublishResponses];
|
|
14123
|
+
type SpacesGetSettingsData = {
|
|
14124
|
+
body?: never;
|
|
14125
|
+
path: {
|
|
14126
|
+
/**
|
|
14127
|
+
* Space ID
|
|
14128
|
+
*/
|
|
14129
|
+
id: number;
|
|
14130
|
+
};
|
|
14131
|
+
query?: never;
|
|
14132
|
+
url: '/api/v1/spaces/{id}/settings';
|
|
14133
|
+
};
|
|
14134
|
+
type SpacesGetSettingsErrors = {
|
|
14135
|
+
/**
|
|
14136
|
+
* Error
|
|
14137
|
+
*/
|
|
14138
|
+
default: ErrorModel;
|
|
14139
|
+
};
|
|
14140
|
+
type SpacesGetSettingsError = SpacesGetSettingsErrors[keyof SpacesGetSettingsErrors];
|
|
14141
|
+
type SpacesGetSettingsResponses = {
|
|
14142
|
+
/**
|
|
14143
|
+
* OK
|
|
14144
|
+
*/
|
|
14145
|
+
200: SpaceSettings;
|
|
14146
|
+
};
|
|
14147
|
+
type SpacesGetSettingsResponse = SpacesGetSettingsResponses[keyof SpacesGetSettingsResponses];
|
|
14148
|
+
type SpacesPatchSettingsData = {
|
|
14149
|
+
body: SpaceSettingsPatchWritable;
|
|
14150
|
+
path: {
|
|
14151
|
+
/**
|
|
14152
|
+
* Space ID
|
|
14153
|
+
*/
|
|
14154
|
+
id: number;
|
|
14155
|
+
};
|
|
14156
|
+
query?: never;
|
|
14157
|
+
url: '/api/v1/spaces/{id}/settings';
|
|
14158
|
+
};
|
|
14159
|
+
type SpacesPatchSettingsErrors = {
|
|
14160
|
+
/**
|
|
14161
|
+
* Error
|
|
14162
|
+
*/
|
|
14163
|
+
default: ErrorModel;
|
|
14164
|
+
};
|
|
14165
|
+
type SpacesPatchSettingsError = SpacesPatchSettingsErrors[keyof SpacesPatchSettingsErrors];
|
|
14166
|
+
type SpacesPatchSettingsResponses = {
|
|
14167
|
+
/**
|
|
14168
|
+
* OK
|
|
14169
|
+
*/
|
|
14170
|
+
200: SpaceSettings;
|
|
14171
|
+
};
|
|
14172
|
+
type SpacesPatchSettingsResponse = SpacesPatchSettingsResponses[keyof SpacesPatchSettingsResponses];
|
|
14173
|
+
type LivenessData = {
|
|
14174
|
+
body?: never;
|
|
14175
|
+
path?: never;
|
|
14176
|
+
query?: never;
|
|
14177
|
+
url: '/health';
|
|
14178
|
+
};
|
|
14179
|
+
type LivenessErrors = {
|
|
14180
|
+
/**
|
|
14181
|
+
* Error
|
|
14182
|
+
*/
|
|
14183
|
+
default: ErrorModel;
|
|
14184
|
+
};
|
|
14185
|
+
type LivenessError = LivenessErrors[keyof LivenessErrors];
|
|
14186
|
+
type LivenessResponses = {
|
|
14187
|
+
/**
|
|
14188
|
+
* OK
|
|
12679
14189
|
*/
|
|
12680
14190
|
200: LivenessOutputBody;
|
|
12681
14191
|
};
|
|
@@ -12773,149 +14283,67 @@ declare class Announcements extends HeyApiClient {
|
|
|
12773
14283
|
*/
|
|
12774
14284
|
patch<ThrowOnError extends boolean = false>(options: Options<AnnouncementsPatchData, ThrowOnError>): RequestResult<AnnouncementsPatchResponses, AnnouncementsPatchErrors, ThrowOnError, "fields">;
|
|
12775
14285
|
/**
|
|
12776
|
-
*
|
|
12777
|
-
*/
|
|
12778
|
-
publish<ThrowOnError extends boolean = false>(options: Options<AnnouncementsPublishData, ThrowOnError>): RequestResult<AnnouncementsPublishResponses, AnnouncementsPublishErrors, ThrowOnError, "fields">;
|
|
12779
|
-
}
|
|
12780
|
-
declare class Audit extends HeyApiClient {
|
|
12781
|
-
/**
|
|
12782
|
-
* List audit log entries for the organisation
|
|
12783
|
-
*/
|
|
12784
|
-
list<ThrowOnError extends boolean = false>(options?: Options<AuditListData, ThrowOnError>): RequestResult<AuditListResponses, AuditListErrors, ThrowOnError, "fields">;
|
|
12785
|
-
}
|
|
12786
|
-
declare class Auth extends HeyApiClient {
|
|
12787
|
-
/**
|
|
12788
|
-
* Get the authenticated caller's identity and permissions
|
|
12789
|
-
*/
|
|
12790
|
-
context<ThrowOnError extends boolean = false>(options?: Options<AuthContextData, ThrowOnError>): RequestResult<AuthContextResponses, AuthContextErrors, ThrowOnError, "fields">;
|
|
12791
|
-
/**
|
|
12792
|
-
* Get the authenticated caller's identity and permissions
|
|
12793
|
-
*/
|
|
12794
|
-
me<ThrowOnError extends boolean = false>(options?: Options<AuthMeData, ThrowOnError>): RequestResult<AuthMeResponses, AuthMeErrors, ThrowOnError, "fields">;
|
|
12795
|
-
}
|
|
12796
|
-
declare class Automation extends HeyApiClient {
|
|
12797
|
-
/**
|
|
12798
|
-
* List available native automation action types
|
|
12799
|
-
*/
|
|
12800
|
-
listActions<ThrowOnError extends boolean = false>(options?: Options<AutomationListActionsData, ThrowOnError>): RequestResult<AutomationListActionsResponses, AutomationListActionsErrors, ThrowOnError, "fields">;
|
|
12801
|
-
/**
|
|
12802
|
-
* List automation rules
|
|
14286
|
+
* Upload announcement cover image (multipart/form-data, field: file)
|
|
12803
14287
|
*/
|
|
12804
|
-
|
|
14288
|
+
uploadCover<ThrowOnError extends boolean = false>(options: Options<AnnouncementsUploadCoverData, ThrowOnError>): RequestResult<AnnouncementsUploadCoverResponses, AnnouncementsUploadCoverErrors, ThrowOnError, "fields">;
|
|
12805
14289
|
/**
|
|
12806
|
-
*
|
|
12807
|
-
*/
|
|
12808
|
-
createRule<ThrowOnError extends boolean = false>(options: Options<AutomationCreateRuleData, ThrowOnError>): RequestResult<AutomationCreateRuleResponses, AutomationCreateRuleErrors, ThrowOnError, "fields">;
|
|
12809
|
-
/**
|
|
12810
|
-
* Delete an automation rule
|
|
12811
|
-
*/
|
|
12812
|
-
deleteRule<ThrowOnError extends boolean = false>(options: Options<AutomationDeleteRuleData, ThrowOnError>): RequestResult<AutomationDeleteRuleResponses, AutomationDeleteRuleErrors, ThrowOnError, "fields">;
|
|
12813
|
-
/**
|
|
12814
|
-
* Get an automation rule
|
|
12815
|
-
*/
|
|
12816
|
-
getRule<ThrowOnError extends boolean = false>(options: Options<AutomationGetRuleData, ThrowOnError>): RequestResult<AutomationGetRuleResponses, AutomationGetRuleErrors, ThrowOnError, "fields">;
|
|
12817
|
-
/**
|
|
12818
|
-
* Update an automation rule
|
|
12819
|
-
*/
|
|
12820
|
-
updateRule<ThrowOnError extends boolean = false>(options: Options<AutomationUpdateRuleData, ThrowOnError>): RequestResult<AutomationUpdateRuleResponses, AutomationUpdateRuleErrors, ThrowOnError, "fields">;
|
|
12821
|
-
/**
|
|
12822
|
-
* Manually trigger an automation rule
|
|
12823
|
-
*/
|
|
12824
|
-
executeRule<ThrowOnError extends boolean = false>(options: Options<AutomationExecuteRuleData, ThrowOnError>): RequestResult<AutomationExecuteRuleResponses, AutomationExecuteRuleErrors, ThrowOnError, "fields">;
|
|
12825
|
-
/**
|
|
12826
|
-
* List execution history for a rule
|
|
12827
|
-
*/
|
|
12828
|
-
listExecutions<ThrowOnError extends boolean = false>(options: Options<AutomationListExecutionsData, ThrowOnError>): RequestResult<AutomationListExecutionsResponses, AutomationListExecutionsErrors, ThrowOnError, "fields">;
|
|
12829
|
-
/**
|
|
12830
|
-
* List available automation trigger types
|
|
14290
|
+
* Publish an announcement (queues email delivery)
|
|
12831
14291
|
*/
|
|
12832
|
-
|
|
14292
|
+
publish<ThrowOnError extends boolean = false>(options: Options<AnnouncementsPublishData, ThrowOnError>): RequestResult<AnnouncementsPublishResponses, AnnouncementsPublishErrors, ThrowOnError, "fields">;
|
|
12833
14293
|
}
|
|
12834
|
-
declare class
|
|
12835
|
-
/**
|
|
12836
|
-
* List bookings
|
|
12837
|
-
*/
|
|
12838
|
-
list<ThrowOnError extends boolean = false>(options?: Options<BookingsListData, ThrowOnError>): RequestResult<BookingsListResponses, BookingsListErrors, ThrowOnError, "fields">;
|
|
12839
|
-
/**
|
|
12840
|
-
* Create a booking
|
|
12841
|
-
*/
|
|
12842
|
-
create<ThrowOnError extends boolean = false>(options: Options<BookingsCreateData, ThrowOnError>): RequestResult<BookingsCreateResponses, BookingsCreateErrors, ThrowOnError, "fields">;
|
|
12843
|
-
/**
|
|
12844
|
-
* Check place availability for a time slot
|
|
12845
|
-
*/
|
|
12846
|
-
checkAvailability<ThrowOnError extends boolean = false>(options: Options<BookingsCheckAvailabilityData, ThrowOnError>): RequestResult<BookingsCheckAvailabilityResponses, BookingsCheckAvailabilityErrors, ThrowOnError, "fields">;
|
|
14294
|
+
declare class Attachments extends HeyApiClient {
|
|
12847
14295
|
/**
|
|
12848
|
-
*
|
|
14296
|
+
* Remove an attachment
|
|
12849
14297
|
*/
|
|
12850
|
-
|
|
14298
|
+
remove<ThrowOnError extends boolean = false>(options: Options<EventsAttachmentsRemoveData, ThrowOnError>): RequestResult<EventsAttachmentsRemoveResponses, EventsAttachmentsRemoveErrors, ThrowOnError, "fields">;
|
|
12851
14299
|
/**
|
|
12852
|
-
*
|
|
14300
|
+
* List attachments on an event
|
|
12853
14301
|
*/
|
|
12854
|
-
|
|
14302
|
+
list<ThrowOnError extends boolean = false>(options: Options<EventsAttachmentsListData, ThrowOnError>): RequestResult<EventsAttachmentsListResponses, EventsAttachmentsListErrors, ThrowOnError, "fields">;
|
|
12855
14303
|
/**
|
|
12856
|
-
*
|
|
12857
|
-
|
|
12858
|
-
|
|
12859
|
-
/**
|
|
12860
|
-
* Update a booking
|
|
14304
|
+
* Attach a file / reference to an event
|
|
14305
|
+
*
|
|
14306
|
+
* Attaches a kind+ref to an event. Kind is validated against the parent template's AllowedAttachmentKinds (e.g. announcement accepts 'image'; delivery accepts 'image', 'document', and 'proof_of_delivery').
|
|
12861
14307
|
*/
|
|
12862
|
-
|
|
14308
|
+
add<ThrowOnError extends boolean = false>(options: Options<EventsAttachmentsAddData, ThrowOnError>): RequestResult<EventsAttachmentsAddResponses, EventsAttachmentsAddErrors, ThrowOnError, "fields">;
|
|
12863
14309
|
}
|
|
12864
|
-
declare class
|
|
14310
|
+
declare class Templates extends HeyApiClient {
|
|
12865
14311
|
/**
|
|
12866
|
-
* List
|
|
12867
|
-
|
|
12868
|
-
|
|
12869
|
-
/**
|
|
12870
|
-
* Create a contact
|
|
12871
|
-
*/
|
|
12872
|
-
create<ThrowOnError extends boolean = false>(options: Options<ContactsCreateData, ThrowOnError>): RequestResult<ContactsCreateResponses, ContactsCreateErrors, ThrowOnError, "fields">;
|
|
12873
|
-
/**
|
|
12874
|
-
* Search contacts
|
|
12875
|
-
*/
|
|
12876
|
-
search<ThrowOnError extends boolean = false>(options?: Options<ContactsSearchData, ThrowOnError>): RequestResult<ContactsSearchResponses, ContactsSearchErrors, ThrowOnError, "fields">;
|
|
12877
|
-
/**
|
|
12878
|
-
* Delete a contact
|
|
12879
|
-
*/
|
|
12880
|
-
delete<ThrowOnError extends boolean = false>(options: Options<ContactsDeleteData, ThrowOnError>): RequestResult<ContactsDeleteResponses, ContactsDeleteErrors, ThrowOnError, "fields">;
|
|
12881
|
-
/**
|
|
12882
|
-
* Get a contact
|
|
12883
|
-
*/
|
|
12884
|
-
get<ThrowOnError extends boolean = false>(options: Options<ContactsGetData, ThrowOnError>): RequestResult<ContactsGetResponses, ContactsGetErrors, ThrowOnError, "fields">;
|
|
12885
|
-
/**
|
|
12886
|
-
* Update a contact
|
|
14312
|
+
* List all registered event templates
|
|
14313
|
+
*
|
|
14314
|
+
* Returns the full catalog so the studio (or any SDK consumer) can render template-aware UI dynamically. AI callers: start here to discover what kinds of events you can create — each entry includes the metadata JSON Schema you must satisfy when POSTing to /api/v1/events.
|
|
12887
14315
|
*/
|
|
12888
|
-
|
|
14316
|
+
list<ThrowOnError extends boolean = false>(options?: Options<EventsTemplatesListData, ThrowOnError>): RequestResult<EventsTemplatesListResponses, EventsTemplatesListErrors, ThrowOnError, "fields">;
|
|
12889
14317
|
/**
|
|
12890
|
-
*
|
|
14318
|
+
* Get the latest version of a single event template
|
|
14319
|
+
*
|
|
14320
|
+
* Returns the full descriptor for one template: schema, state machine, required attendee functions, allowed attachment kinds, notification policy.
|
|
12891
14321
|
*/
|
|
12892
|
-
|
|
14322
|
+
get<ThrowOnError extends boolean = false>(options: Options<EventsTemplatesGetData, ThrowOnError>): RequestResult<EventsTemplatesGetResponses, EventsTemplatesGetErrors, ThrowOnError, "fields">;
|
|
12893
14323
|
}
|
|
12894
|
-
declare class
|
|
14324
|
+
declare class Activity extends HeyApiClient {
|
|
12895
14325
|
/**
|
|
12896
|
-
* List
|
|
12897
|
-
|
|
12898
|
-
|
|
12899
|
-
/**
|
|
12900
|
-
* Create a machine credential
|
|
12901
|
-
*/
|
|
12902
|
-
create<ThrowOnError extends boolean = false>(options: Options<CredentialsCreateData, ThrowOnError>): RequestResult<CredentialsCreateResponses, CredentialsCreateErrors, ThrowOnError, "fields">;
|
|
12903
|
-
/**
|
|
12904
|
-
* Revoke a machine credential
|
|
14326
|
+
* List activity for an event
|
|
14327
|
+
*
|
|
14328
|
+
* Returns the append-only activity log: state transitions, attachments added, edits. AI callers: poll this to learn how a delivery has progressed.
|
|
12905
14329
|
*/
|
|
12906
|
-
|
|
14330
|
+
list<ThrowOnError extends boolean = false>(options: Options<EventsActivityListData, ThrowOnError>): RequestResult<EventsActivityListResponses, EventsActivityListErrors, ThrowOnError, "fields">;
|
|
12907
14331
|
/**
|
|
12908
|
-
*
|
|
14332
|
+
* Append an activity row
|
|
12909
14333
|
*/
|
|
12910
|
-
|
|
14334
|
+
append<ThrowOnError extends boolean = false>(options: Options<EventsActivityAppendData, ThrowOnError>): RequestResult<EventsActivityAppendResponses, EventsActivityAppendErrors, ThrowOnError, "fields">;
|
|
12911
14335
|
}
|
|
12912
14336
|
declare class Events extends HeyApiClient {
|
|
12913
14337
|
/**
|
|
12914
14338
|
* List events
|
|
14339
|
+
*
|
|
14340
|
+
* Lists events. Filter with `?template=announcement` or `?template_in=delivery&template_in=announcement` to scope by kind.
|
|
12915
14341
|
*/
|
|
12916
14342
|
list<ThrowOnError extends boolean = false>(options?: Options<EventsListData, ThrowOnError>): RequestResult<EventsListResponses, EventsListErrors, ThrowOnError, "fields">;
|
|
12917
14343
|
/**
|
|
12918
14344
|
* Create an event
|
|
14345
|
+
*
|
|
14346
|
+
* Creates an event. Supply `template` to opt into a template's metadata schema (call GET /event-templates first to discover available templates and their JSON Schemas).
|
|
12919
14347
|
*/
|
|
12920
14348
|
create<ThrowOnError extends boolean = false>(options: Options<EventsCreateData, ThrowOnError>): RequestResult<EventsCreateResponses, EventsCreateErrors, ThrowOnError, "fields">;
|
|
12921
14349
|
/**
|
|
@@ -13160,6 +14588,162 @@ declare class Events extends HeyApiClient {
|
|
|
13160
14588
|
* Remove event from a space
|
|
13161
14589
|
*/
|
|
13162
14590
|
removeSpace<ThrowOnError extends boolean = false>(options: Options<EventsRemoveSpaceData, ThrowOnError>): RequestResult<EventsRemoveSpaceResponses, EventsRemoveSpaceErrors, ThrowOnError, "fields">;
|
|
14591
|
+
/**
|
|
14592
|
+
* Transition an event to a new state per its template's state machine
|
|
14593
|
+
*
|
|
14594
|
+
* Validates the transition against the template's declared edges and guards. Appends a `state_changed` activity row on success. AI callers: consult GET /event-templates/{template_id} for the state machine's allowed transitions and guard requirements (e.g. delivery's `delivered` state requires a proof_of_delivery payload).
|
|
14595
|
+
*/
|
|
14596
|
+
transition<ThrowOnError extends boolean = false>(options: Options<EventsTransitionData, ThrowOnError>): RequestResult<EventsTransitionResponses, EventsTransitionErrors, ThrowOnError, "fields">;
|
|
14597
|
+
private _attachments?;
|
|
14598
|
+
get attachments(): Attachments;
|
|
14599
|
+
private _templates?;
|
|
14600
|
+
get templates(): Templates;
|
|
14601
|
+
private _activity?;
|
|
14602
|
+
get activity(): Activity;
|
|
14603
|
+
}
|
|
14604
|
+
declare class Audit extends HeyApiClient {
|
|
14605
|
+
/**
|
|
14606
|
+
* List audit log entries for the organisation
|
|
14607
|
+
*/
|
|
14608
|
+
list<ThrowOnError extends boolean = false>(options?: Options<AuditListData, ThrowOnError>): RequestResult<AuditListResponses, AuditListErrors, ThrowOnError, "fields">;
|
|
14609
|
+
}
|
|
14610
|
+
declare class Auth extends HeyApiClient {
|
|
14611
|
+
/**
|
|
14612
|
+
* Get the authenticated caller's identity and permissions
|
|
14613
|
+
*/
|
|
14614
|
+
context<ThrowOnError extends boolean = false>(options?: Options<AuthContextData, ThrowOnError>): RequestResult<AuthContextResponses, AuthContextErrors, ThrowOnError, "fields">;
|
|
14615
|
+
/**
|
|
14616
|
+
* Get the authenticated caller's identity and permissions
|
|
14617
|
+
*/
|
|
14618
|
+
me<ThrowOnError extends boolean = false>(options?: Options<AuthMeData, ThrowOnError>): RequestResult<AuthMeResponses, AuthMeErrors, ThrowOnError, "fields">;
|
|
14619
|
+
}
|
|
14620
|
+
declare class Automation extends HeyApiClient {
|
|
14621
|
+
/**
|
|
14622
|
+
* List available native automation action types
|
|
14623
|
+
*/
|
|
14624
|
+
listActions<ThrowOnError extends boolean = false>(options?: Options<AutomationListActionsData, ThrowOnError>): RequestResult<AutomationListActionsResponses, AutomationListActionsErrors, ThrowOnError, "fields">;
|
|
14625
|
+
/**
|
|
14626
|
+
* List automation rules
|
|
14627
|
+
*/
|
|
14628
|
+
listRules<ThrowOnError extends boolean = false>(options?: Options<AutomationListRulesData, ThrowOnError>): RequestResult<AutomationListRulesResponses, AutomationListRulesErrors, ThrowOnError, "fields">;
|
|
14629
|
+
/**
|
|
14630
|
+
* Create an automation rule
|
|
14631
|
+
*/
|
|
14632
|
+
createRule<ThrowOnError extends boolean = false>(options: Options<AutomationCreateRuleData, ThrowOnError>): RequestResult<AutomationCreateRuleResponses, AutomationCreateRuleErrors, ThrowOnError, "fields">;
|
|
14633
|
+
/**
|
|
14634
|
+
* Delete an automation rule
|
|
14635
|
+
*/
|
|
14636
|
+
deleteRule<ThrowOnError extends boolean = false>(options: Options<AutomationDeleteRuleData, ThrowOnError>): RequestResult<AutomationDeleteRuleResponses, AutomationDeleteRuleErrors, ThrowOnError, "fields">;
|
|
14637
|
+
/**
|
|
14638
|
+
* Get an automation rule
|
|
14639
|
+
*/
|
|
14640
|
+
getRule<ThrowOnError extends boolean = false>(options: Options<AutomationGetRuleData, ThrowOnError>): RequestResult<AutomationGetRuleResponses, AutomationGetRuleErrors, ThrowOnError, "fields">;
|
|
14641
|
+
/**
|
|
14642
|
+
* Update an automation rule
|
|
14643
|
+
*/
|
|
14644
|
+
updateRule<ThrowOnError extends boolean = false>(options: Options<AutomationUpdateRuleData, ThrowOnError>): RequestResult<AutomationUpdateRuleResponses, AutomationUpdateRuleErrors, ThrowOnError, "fields">;
|
|
14645
|
+
/**
|
|
14646
|
+
* Manually trigger an automation rule
|
|
14647
|
+
*/
|
|
14648
|
+
executeRule<ThrowOnError extends boolean = false>(options: Options<AutomationExecuteRuleData, ThrowOnError>): RequestResult<AutomationExecuteRuleResponses, AutomationExecuteRuleErrors, ThrowOnError, "fields">;
|
|
14649
|
+
/**
|
|
14650
|
+
* List execution history for a rule
|
|
14651
|
+
*/
|
|
14652
|
+
listExecutions<ThrowOnError extends boolean = false>(options: Options<AutomationListExecutionsData, ThrowOnError>): RequestResult<AutomationListExecutionsResponses, AutomationListExecutionsErrors, ThrowOnError, "fields">;
|
|
14653
|
+
/**
|
|
14654
|
+
* List available automation trigger types
|
|
14655
|
+
*/
|
|
14656
|
+
listTriggers<ThrowOnError extends boolean = false>(options?: Options<AutomationListTriggersData, ThrowOnError>): RequestResult<AutomationListTriggersResponses, AutomationListTriggersErrors, ThrowOnError, "fields">;
|
|
14657
|
+
}
|
|
14658
|
+
declare class Bookings extends HeyApiClient {
|
|
14659
|
+
/**
|
|
14660
|
+
* List bookings
|
|
14661
|
+
*/
|
|
14662
|
+
list<ThrowOnError extends boolean = false>(options?: Options<BookingsListData, ThrowOnError>): RequestResult<BookingsListResponses, BookingsListErrors, ThrowOnError, "fields">;
|
|
14663
|
+
/**
|
|
14664
|
+
* Create a booking
|
|
14665
|
+
*/
|
|
14666
|
+
create<ThrowOnError extends boolean = false>(options: Options<BookingsCreateData, ThrowOnError>): RequestResult<BookingsCreateResponses, BookingsCreateErrors, ThrowOnError, "fields">;
|
|
14667
|
+
/**
|
|
14668
|
+
* Check place availability for a time slot
|
|
14669
|
+
*/
|
|
14670
|
+
checkAvailability<ThrowOnError extends boolean = false>(options: Options<BookingsCheckAvailabilityData, ThrowOnError>): RequestResult<BookingsCheckAvailabilityResponses, BookingsCheckAvailabilityErrors, ThrowOnError, "fields">;
|
|
14671
|
+
/**
|
|
14672
|
+
* Get all bookings for a place within a date range
|
|
14673
|
+
*/
|
|
14674
|
+
placeSchedule<ThrowOnError extends boolean = false>(options: Options<BookingsPlaceScheduleData, ThrowOnError>): RequestResult<BookingsPlaceScheduleResponses, BookingsPlaceScheduleErrors, ThrowOnError, "fields">;
|
|
14675
|
+
/**
|
|
14676
|
+
* Delete a booking
|
|
14677
|
+
*/
|
|
14678
|
+
delete<ThrowOnError extends boolean = false>(options: Options<BookingsDeleteData, ThrowOnError>): RequestResult<BookingsDeleteResponses, BookingsDeleteErrors, ThrowOnError, "fields">;
|
|
14679
|
+
/**
|
|
14680
|
+
* Get a booking by ID
|
|
14681
|
+
*/
|
|
14682
|
+
get<ThrowOnError extends boolean = false>(options: Options<BookingsGetData, ThrowOnError>): RequestResult<BookingsGetResponses, BookingsGetErrors, ThrowOnError, "fields">;
|
|
14683
|
+
/**
|
|
14684
|
+
* Update a booking
|
|
14685
|
+
*/
|
|
14686
|
+
update<ThrowOnError extends boolean = false>(options: Options<BookingsUpdateData, ThrowOnError>): RequestResult<BookingsUpdateResponses, BookingsUpdateErrors, ThrowOnError, "fields">;
|
|
14687
|
+
}
|
|
14688
|
+
declare class Contacts extends HeyApiClient {
|
|
14689
|
+
/**
|
|
14690
|
+
* List contacts
|
|
14691
|
+
*/
|
|
14692
|
+
list<ThrowOnError extends boolean = false>(options?: Options<ContactsListData, ThrowOnError>): RequestResult<ContactsListResponses, ContactsListErrors, ThrowOnError, "fields">;
|
|
14693
|
+
/**
|
|
14694
|
+
* Create a contact
|
|
14695
|
+
*/
|
|
14696
|
+
create<ThrowOnError extends boolean = false>(options: Options<ContactsCreateData, ThrowOnError>): RequestResult<ContactsCreateResponses, ContactsCreateErrors, ThrowOnError, "fields">;
|
|
14697
|
+
/**
|
|
14698
|
+
* Search contacts
|
|
14699
|
+
*/
|
|
14700
|
+
search<ThrowOnError extends boolean = false>(options?: Options<ContactsSearchData, ThrowOnError>): RequestResult<ContactsSearchResponses, ContactsSearchErrors, ThrowOnError, "fields">;
|
|
14701
|
+
/**
|
|
14702
|
+
* Delete a contact
|
|
14703
|
+
*/
|
|
14704
|
+
delete<ThrowOnError extends boolean = false>(options: Options<ContactsDeleteData, ThrowOnError>): RequestResult<ContactsDeleteResponses, ContactsDeleteErrors, ThrowOnError, "fields">;
|
|
14705
|
+
/**
|
|
14706
|
+
* Get a contact
|
|
14707
|
+
*/
|
|
14708
|
+
get<ThrowOnError extends boolean = false>(options: Options<ContactsGetData, ThrowOnError>): RequestResult<ContactsGetResponses, ContactsGetErrors, ThrowOnError, "fields">;
|
|
14709
|
+
/**
|
|
14710
|
+
* Update a contact
|
|
14711
|
+
*/
|
|
14712
|
+
update<ThrowOnError extends boolean = false>(options: Options<ContactsUpdateData, ThrowOnError>): RequestResult<ContactsUpdateResponses, ContactsUpdateErrors, ThrowOnError, "fields">;
|
|
14713
|
+
/**
|
|
14714
|
+
* Toggle contact favorite
|
|
14715
|
+
*/
|
|
14716
|
+
toggleFavorite<ThrowOnError extends boolean = false>(options: Options<ContactsToggleFavoriteData, ThrowOnError>): RequestResult<ContactsToggleFavoriteResponses, ContactsToggleFavoriteErrors, ThrowOnError, "fields">;
|
|
14717
|
+
/**
|
|
14718
|
+
* List integration-linked fields for a contact
|
|
14719
|
+
*/
|
|
14720
|
+
listIntegrationFields<ThrowOnError extends boolean = false>(options: Options<ContactsListIntegrationFieldsData, ThrowOnError>): RequestResult<ContactsListIntegrationFieldsResponses, ContactsListIntegrationFieldsErrors, ThrowOnError, "fields">;
|
|
14721
|
+
/**
|
|
14722
|
+
* Create or update an integration-linked field on a contact
|
|
14723
|
+
*/
|
|
14724
|
+
upsertIntegrationField<ThrowOnError extends boolean = false>(options: Options<ContactsUpsertIntegrationFieldData, ThrowOnError>): RequestResult<ContactsUpsertIntegrationFieldResponses, ContactsUpsertIntegrationFieldErrors, ThrowOnError, "fields">;
|
|
14725
|
+
/**
|
|
14726
|
+
* Remove an integration-linked field from a contact
|
|
14727
|
+
*/
|
|
14728
|
+
deleteIntegrationField<ThrowOnError extends boolean = false>(options: Options<ContactsDeleteIntegrationFieldData, ThrowOnError>): RequestResult<ContactsDeleteIntegrationFieldResponses, ContactsDeleteIntegrationFieldErrors, ThrowOnError, "fields">;
|
|
14729
|
+
}
|
|
14730
|
+
declare class Credentials extends HeyApiClient {
|
|
14731
|
+
/**
|
|
14732
|
+
* List machine credentials
|
|
14733
|
+
*/
|
|
14734
|
+
list<ThrowOnError extends boolean = false>(options?: Options<CredentialsListData, ThrowOnError>): RequestResult<CredentialsListResponses, CredentialsListErrors, ThrowOnError, "fields">;
|
|
14735
|
+
/**
|
|
14736
|
+
* Create a machine credential
|
|
14737
|
+
*/
|
|
14738
|
+
create<ThrowOnError extends boolean = false>(options: Options<CredentialsCreateData, ThrowOnError>): RequestResult<CredentialsCreateResponses, CredentialsCreateErrors, ThrowOnError, "fields">;
|
|
14739
|
+
/**
|
|
14740
|
+
* Revoke a machine credential
|
|
14741
|
+
*/
|
|
14742
|
+
revoke<ThrowOnError extends boolean = false>(options: Options<CredentialsRevokeData, ThrowOnError>): RequestResult<CredentialsRevokeResponses, CredentialsRevokeErrors, ThrowOnError, "fields">;
|
|
14743
|
+
/**
|
|
14744
|
+
* Get a machine credential
|
|
14745
|
+
*/
|
|
14746
|
+
get<ThrowOnError extends boolean = false>(options: Options<CredentialsGetData, ThrowOnError>): RequestResult<CredentialsGetResponses, CredentialsGetErrors, ThrowOnError, "fields">;
|
|
13163
14747
|
}
|
|
13164
14748
|
declare class Zitadel extends HeyApiClient {
|
|
13165
14749
|
/**
|
|
@@ -13211,6 +14795,14 @@ declare class Organizations extends HeyApiClient {
|
|
|
13211
14795
|
private _invites?;
|
|
13212
14796
|
get invites(): Invites;
|
|
13213
14797
|
}
|
|
14798
|
+
declare class Permissions extends HeyApiClient {
|
|
14799
|
+
/**
|
|
14800
|
+
* List all assignable role bundles
|
|
14801
|
+
*
|
|
14802
|
+
* Returns every role bundle (org / event_manager / space_manager / token) with its permissions. UI uses this to render permission/bundle pickers without hardcoding lists.
|
|
14803
|
+
*/
|
|
14804
|
+
listRoles<ThrowOnError extends boolean = false>(options?: Options<PermissionsListRolesData, ThrowOnError>): RequestResult<PermissionsListRolesResponses, PermissionsListRolesErrors, ThrowOnError, "fields">;
|
|
14805
|
+
}
|
|
13214
14806
|
declare class Places extends HeyApiClient {
|
|
13215
14807
|
/**
|
|
13216
14808
|
* List places
|
|
@@ -13271,6 +14863,14 @@ declare class Profiles extends HeyApiClient {
|
|
|
13271
14863
|
private _me?;
|
|
13272
14864
|
get me(): Me;
|
|
13273
14865
|
}
|
|
14866
|
+
declare class Announcements2 extends HeyApiClient {
|
|
14867
|
+
/**
|
|
14868
|
+
* List public announcements
|
|
14869
|
+
*
|
|
14870
|
+
* Returns published announcements from all spaces that the owning organisation has made publicly visible. No authentication required.
|
|
14871
|
+
*/
|
|
14872
|
+
list<ThrowOnError extends boolean = false>(options?: Options<PublicAnnouncementsListData, ThrowOnError>): RequestResult<PublicAnnouncementsListResponses, PublicAnnouncementsListErrors, ThrowOnError, "fields">;
|
|
14873
|
+
}
|
|
13274
14874
|
declare class Events2 extends HeyApiClient {
|
|
13275
14875
|
/**
|
|
13276
14876
|
* List public events
|
|
@@ -13292,6 +14892,12 @@ declare class Spaces extends HeyApiClient {
|
|
|
13292
14892
|
* Returns published spaces that the owning organisation has made publicly visible. No authentication required.
|
|
13293
14893
|
*/
|
|
13294
14894
|
list<ThrowOnError extends boolean = false>(options?: Options<PublicSpacesListData, ThrowOnError>): RequestResult<PublicSpacesListResponses, PublicSpacesListErrors, ThrowOnError, "fields">;
|
|
14895
|
+
/**
|
|
14896
|
+
* Get public spaces as a hierarchical tree
|
|
14897
|
+
*
|
|
14898
|
+
* 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.
|
|
14899
|
+
*/
|
|
14900
|
+
tree<ThrowOnError extends boolean = false>(options?: Options<PublicSpacesTreeData, ThrowOnError>): RequestResult<PublicSpacesTreeResponses, PublicSpacesTreeErrors, ThrowOnError, "fields">;
|
|
13295
14901
|
/**
|
|
13296
14902
|
* Get a public space
|
|
13297
14903
|
*
|
|
@@ -13300,6 +14906,8 @@ declare class Spaces extends HeyApiClient {
|
|
|
13300
14906
|
get<ThrowOnError extends boolean = false>(options: Options<PublicSpacesGetData, ThrowOnError>): RequestResult<PublicSpacesGetResponses, PublicSpacesGetErrors, ThrowOnError, "fields">;
|
|
13301
14907
|
}
|
|
13302
14908
|
declare class Public extends HeyApiClient {
|
|
14909
|
+
private _announcements?;
|
|
14910
|
+
get announcements(): Announcements2;
|
|
13303
14911
|
private _events?;
|
|
13304
14912
|
get events(): Events2;
|
|
13305
14913
|
private _spaces?;
|
|
@@ -13412,6 +15020,12 @@ declare class Spaces2 extends HeyApiClient {
|
|
|
13412
15020
|
* List pending space manager invitations for the current user
|
|
13413
15021
|
*/
|
|
13414
15022
|
listPendingManagerInvites<ThrowOnError extends boolean = false>(options?: Options<SpacesListPendingManagerInvitesData, ThrowOnError>): RequestResult<SpacesListPendingManagerInvitesResponses, SpacesListPendingManagerInvitesErrors, ThrowOnError, "fields">;
|
|
15023
|
+
/**
|
|
15024
|
+
* Get spaces as a hierarchical tree
|
|
15025
|
+
*
|
|
15026
|
+
* 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.
|
|
15027
|
+
*/
|
|
15028
|
+
tree<ThrowOnError extends boolean = false>(options?: Options<SpacesTreeData, ThrowOnError>): RequestResult<SpacesTreeResponses, SpacesTreeErrors, ThrowOnError, "fields">;
|
|
13415
15029
|
/**
|
|
13416
15030
|
* Delete a space
|
|
13417
15031
|
*/
|
|
@@ -13532,6 +15146,18 @@ declare class Spaces2 extends HeyApiClient {
|
|
|
13532
15146
|
* Remove a member from a space
|
|
13533
15147
|
*/
|
|
13534
15148
|
removeMember<ThrowOnError extends boolean = false>(options: Options<SpacesRemoveMemberData, ThrowOnError>): RequestResult<SpacesRemoveMemberResponses, SpacesRemoveMemberErrors, ThrowOnError, "fields">;
|
|
15149
|
+
/**
|
|
15150
|
+
* List parent spaces of a space
|
|
15151
|
+
*/
|
|
15152
|
+
listParents<ThrowOnError extends boolean = false>(options: Options<SpacesListParentsData, ThrowOnError>): RequestResult<SpacesListParentsResponses, SpacesListParentsErrors, ThrowOnError, "fields">;
|
|
15153
|
+
/**
|
|
15154
|
+
* Add a parent to a space
|
|
15155
|
+
*/
|
|
15156
|
+
addParent<ThrowOnError extends boolean = false>(options: Options<SpacesAddParentData, ThrowOnError>): RequestResult<SpacesAddParentResponses, SpacesAddParentErrors, ThrowOnError, "fields">;
|
|
15157
|
+
/**
|
|
15158
|
+
* Remove a parent from a space
|
|
15159
|
+
*/
|
|
15160
|
+
removeParent<ThrowOnError extends boolean = false>(options: Options<SpacesRemoveParentData, ThrowOnError>): RequestResult<SpacesRemoveParentResponses, SpacesRemoveParentErrors, ThrowOnError, "fields">;
|
|
13535
15161
|
/**
|
|
13536
15162
|
* Publish a space
|
|
13537
15163
|
*
|
|
@@ -13569,6 +15195,8 @@ declare class Linebundle extends HeyApiClient {
|
|
|
13569
15195
|
get analytics(): Analytics;
|
|
13570
15196
|
private _announcements?;
|
|
13571
15197
|
get announcements(): Announcements;
|
|
15198
|
+
private _events?;
|
|
15199
|
+
get events(): Events;
|
|
13572
15200
|
private _audit?;
|
|
13573
15201
|
get audit(): Audit;
|
|
13574
15202
|
private _auth?;
|
|
@@ -13581,12 +15209,12 @@ declare class Linebundle extends HeyApiClient {
|
|
|
13581
15209
|
get contacts(): Contacts;
|
|
13582
15210
|
private _credentials?;
|
|
13583
15211
|
get credentials(): Credentials;
|
|
13584
|
-
private _events?;
|
|
13585
|
-
get events(): Events;
|
|
13586
15212
|
private _integrations?;
|
|
13587
15213
|
get integrations(): Integrations;
|
|
13588
15214
|
private _organizations?;
|
|
13589
15215
|
get organizations(): Organizations;
|
|
15216
|
+
private _permissions?;
|
|
15217
|
+
get permissions(): Permissions;
|
|
13590
15218
|
private _places?;
|
|
13591
15219
|
get places(): Places;
|
|
13592
15220
|
private _profiles?;
|
|
@@ -13631,4 +15259,4 @@ type LinebundleOptions = {
|
|
|
13631
15259
|
*/
|
|
13632
15260
|
declare function createLinebundle({ token, orgId, baseUrl, }: LinebundleOptions): Linebundle;
|
|
13633
15261
|
|
|
13634
|
-
export { type AcceptEventManagerInviteInputBody, type AcceptEventManagerInviteInputBodyWritable, type AcceptSeriesManagerInviteInputBody, type AcceptSeriesManagerInviteInputBodyWritable, type AcceptSpaceManagerInviteInputBody, type AcceptSpaceManagerInviteInputBodyWritable, type ActionDefinition, type AddAttendeeInputBody, type AddAttendeeInputBodyWritable, type AddDocumentInputBody, type AddEventLinkInputBody, type AddEventLinkInputBodyWritable, type AddEventManagerInputBody, type AddEventManagerInputBodyWritable, type AddMemberInputBody, type AddMemberInputBodyWritable, type AddMilestoneInputBody, type AddMilestoneInputBodyWritable, type AddSeriesAttendeeInputBody, type AddSeriesAttendeeInputBodyWritable, type AddSeriesDocumentInputBody, type AddSeriesLinkInputBody, type AddSeriesLinkInputBodyWritable, type AddSeriesMilestoneInputBody, type AddSeriesMilestoneInputBodyWritable, type AddSpaceAnnouncementInputBody, type AddSpaceAnnouncementInputBodyWritable, type AddSpaceContactInputBody, type AddSpaceContactInputBodyWritable, type AddSpaceEventInputBody, type AddSpaceEventInputBodyWritable, type AddSpaceInputBody, type AddSpaceInputBodyWritable, type AddSpaceManagerInputBody, type AddSpaceManagerInputBodyWritable, Analytics, type AnalyticsCountsData, type AnalyticsCountsError, type AnalyticsCountsErrors, type AnalyticsCountsResponse, type AnalyticsCountsResponses, type AnalyticsDashboardData, type AnalyticsDashboardError, type AnalyticsDashboardErrors, type AnalyticsDashboardResponse, type AnalyticsDashboardResponses, type AnalyticsOverviewData, type AnalyticsOverviewError, type AnalyticsOverviewErrors, type AnalyticsOverviewResponse, type AnalyticsOverviewResponses, type Announcement, type AnnouncementCreate, type AnnouncementCreateWritable, type AnnouncementPatch, type AnnouncementPatchWritable, type AnnouncementSummary, type AnnouncementWritable, Announcements, type AnnouncementsCreateData, type AnnouncementsCreateError, type AnnouncementsCreateErrors, type AnnouncementsCreateResponse, type AnnouncementsCreateResponses, type AnnouncementsDeleteData, type AnnouncementsDeleteError, type AnnouncementsDeleteErrors, type AnnouncementsDeleteResponse, type AnnouncementsDeleteResponses, type AnnouncementsGetData, type AnnouncementsGetError, type AnnouncementsGetErrors, type AnnouncementsGetResponse, type AnnouncementsGetResponses, type AnnouncementsListData, type AnnouncementsListError, type AnnouncementsListErrors, type AnnouncementsListResponse, type AnnouncementsListResponses, type AnnouncementsPatchData, type AnnouncementsPatchError, type AnnouncementsPatchErrors, type AnnouncementsPatchResponse, type AnnouncementsPatchResponses, type AnnouncementsPublishData, type AnnouncementsPublishError, type AnnouncementsPublishErrors, type AnnouncementsPublishResponse, type AnnouncementsPublishResponses, type Attendee, type AttendeeDetail, type AttendeeWritable, Audit, type AuditListData, type AuditListError, type AuditListErrors, type AuditListResponse, type AuditListResponses, Auth, type AuthContext, type AuthContextData, type AuthContextError, type AuthContextErrors, type AuthContextResponse, type AuthContextResponses, type AuthContextWritable, type AuthMeData, type AuthMeError, type AuthMeErrors, type AuthMeResponse, type AuthMeResponses, Automation, type AutomationCreateRuleData, type AutomationCreateRuleError, type AutomationCreateRuleErrors, type AutomationCreateRuleResponse, type AutomationCreateRuleResponses, type AutomationDeleteRuleData, type AutomationDeleteRuleError, type AutomationDeleteRuleErrors, type AutomationDeleteRuleResponse, type AutomationDeleteRuleResponses, type AutomationExecuteRuleData, type AutomationExecuteRuleError, type AutomationExecuteRuleErrors, type AutomationExecuteRuleResponse, type AutomationExecuteRuleResponses, type AutomationGetRuleData, type AutomationGetRuleError, type AutomationGetRuleErrors, type AutomationGetRuleResponse, type AutomationGetRuleResponses, type AutomationListActionsData, type AutomationListActionsError, type AutomationListActionsErrors, type AutomationListActionsResponse, type AutomationListActionsResponses, type AutomationListExecutionsData, type AutomationListExecutionsError, type AutomationListExecutionsErrors, type AutomationListExecutionsResponse, type AutomationListExecutionsResponses, type AutomationListRulesData, type AutomationListRulesError, type AutomationListRulesErrors, type AutomationListRulesResponse, type AutomationListRulesResponses, type AutomationListTriggersData, type AutomationListTriggersError, type AutomationListTriggersErrors, type AutomationListTriggersResponse, type AutomationListTriggersResponses, type AutomationUpdateRuleData, type AutomationUpdateRuleError, type AutomationUpdateRuleErrors, type AutomationUpdateRuleResponse, type AutomationUpdateRuleResponses, type AvailabilityOutputBody, type AvailabilityOutputBodyWritable, type Booking, type BookingWritable, Bookings, type BookingsCheckAvailabilityData, type BookingsCheckAvailabilityError, type BookingsCheckAvailabilityErrors, type BookingsCheckAvailabilityResponse, type BookingsCheckAvailabilityResponses, type BookingsCreateData, type BookingsCreateError, type BookingsCreateErrors, type BookingsCreateResponse, type BookingsCreateResponses, type BookingsDeleteData, type BookingsDeleteError, type BookingsDeleteErrors, type BookingsDeleteResponse, type BookingsDeleteResponses, type BookingsGetData, type BookingsGetError, type BookingsGetErrors, type BookingsGetResponse, type BookingsGetResponses, type BookingsListData, type BookingsListError, type BookingsListErrors, type BookingsListResponse, type BookingsListResponses, type BookingsPlaceScheduleData, type BookingsPlaceScheduleError, type BookingsPlaceScheduleErrors, type BookingsPlaceScheduleResponse, type BookingsPlaceScheduleResponses, type BookingsUpdateData, type BookingsUpdateError, type BookingsUpdateErrors, type BookingsUpdateResponse, type BookingsUpdateResponses, type BulkAttendeeBody, type BulkAttendeeBodyWritable, type BulkStatusBody, type BulkStatusBodyWritable, type CalendarEventsOutputBody, type CalendarEventsOutputBodyWritable, type CheckAvailabilityInputBody, type CheckAvailabilityInputBodyWritable, type CheckInInputBody, type CheckInSeriesAttendeeInputBody, type ClientOptions, type Contact, type ContactBody, type ContactBodyWritable, type ContactSummary, type ContactWritable, Contacts, type ContactsCreateData, type ContactsCreateError, type ContactsCreateErrors, type ContactsCreateResponse, type ContactsCreateResponses, type ContactsDeleteData, type ContactsDeleteError, type ContactsDeleteErrors, type ContactsDeleteResponse, type ContactsDeleteResponses, type ContactsGetData, type ContactsGetError, type ContactsGetErrors, type ContactsGetResponse, type ContactsGetResponses, type ContactsListData, type ContactsListError, type ContactsListErrors, type ContactsListResponse, type ContactsListResponses, type ContactsSearchData, type ContactsSearchError, type ContactsSearchErrors, type ContactsSearchResponse, type ContactsSearchResponses, type ContactsToggleFavoriteData, type ContactsToggleFavoriteError, type ContactsToggleFavoriteErrors, type ContactsToggleFavoriteResponse, type ContactsToggleFavoriteResponses, type ContactsUpdateData, type ContactsUpdateError, type ContactsUpdateErrors, type ContactsUpdateResponse, type ContactsUpdateResponses, type Counts, type CountsWritable, type CreateBookingInputBody, type CreateBookingInputBodyWritable, type CreateClientConfig, type CreateCredentialInputBody, type CreateCredentialInputBodyWritable, type CreateEventInputBody, type CreateEventInputBodyWritable, type CreateInviteBody, type CreateInviteBodyWritable, type CreateOrgBody, type CreateOrgBodyWritable, type CreatePlaceInputBody, type CreatePlaceInputBodyWritable, type CreateRuleInput, type CreateRuleInputWritable, type CreateSeriesInput, type CreateSeriesInputWritable, type CreateSpaceInputBody, type CreateSpaceInputBodyWritable, type CreateWithSeriesInputBody, type CreateWithSeriesInputBodyWritable, type CreateWithSeriesOutputBody, type CreateWithSeriesOutputBodyWritable, type CredentialView, type CredentialViewWritable, Credentials, type CredentialsCreateData, type CredentialsCreateError, type CredentialsCreateErrors, type CredentialsCreateResponse, type CredentialsCreateResponses, type CredentialsGetData, type CredentialsGetError, type CredentialsGetErrors, type CredentialsGetResponse, type CredentialsGetResponses, type CredentialsListData, type CredentialsListError, type CredentialsListErrors, type CredentialsListResponse, type CredentialsListResponses, type CredentialsRevokeData, type CredentialsRevokeError, type CredentialsRevokeErrors, type CredentialsRevokeResponse, type CredentialsRevokeResponses, type Dashboard, type DashboardWritable, type Entry, type ErrorDetail, type ErrorModel, type ErrorModelWritable, type Event, type EventAutomationAction, type EventAutomationRule, type EventAutomationRuleWritable, type EventAutomationTemplate, type EventAutomationTrigger, type EventAutomationUpsertInput, type EventAutomationUpsertInputWritable, type EventLink, type EventLinkTargetSummary, type EventLinkWithTarget, type EventLinkWritable, type EventManager, type EventManagerPermissionsOutputBody, type EventManagerPermissionsOutputBodyWritable, type EventManagerWritable, type EventPatch, type EventPatchWritable, type EventSeries, type EventSeriesWritable, type EventSpaceLink, type EventSpaceLinkDetail, type EventSpaceLinkWritable, type EventSpaceSummary, type EventSummary, type EventWritable, Events, Events2, type EventsAcceptManagerInviteData, type EventsAcceptManagerInviteError, type EventsAcceptManagerInviteErrors, type EventsAcceptManagerInviteResponse, type EventsAcceptManagerInviteResponses, type EventsAddAttendeeData, type EventsAddAttendeeError, type EventsAddAttendeeErrors, type EventsAddAttendeeResponse, type EventsAddAttendeeResponses, type EventsAddDocumentData, type EventsAddDocumentError, type EventsAddDocumentErrors, type EventsAddDocumentResponses, type EventsAddLinkData, type EventsAddLinkError, type EventsAddLinkErrors, type EventsAddLinkResponse, type EventsAddLinkResponses, type EventsAddManagerData, type EventsAddManagerError, type EventsAddManagerErrors, type EventsAddManagerResponse, type EventsAddManagerResponses, type EventsAddMilestoneData, type EventsAddMilestoneError, type EventsAddMilestoneErrors, type EventsAddMilestoneResponse, type EventsAddMilestoneResponses, type EventsAddSpaceData, type EventsAddSpaceError, type EventsAddSpaceErrors, type EventsAddSpaceResponse, type EventsAddSpaceResponses, type EventsArchiveData, type EventsArchiveError, type EventsArchiveErrors, type EventsArchiveResponse, type EventsArchiveResponses, type EventsAutomationTemplatesData, type EventsAutomationTemplatesError, type EventsAutomationTemplatesErrors, type EventsAutomationTemplatesResponse, type EventsAutomationTemplatesResponses, type EventsBulkAddAttendeesData, type EventsBulkAddAttendeesError, type EventsBulkAddAttendeesErrors, type EventsBulkAddAttendeesResponse, type EventsBulkAddAttendeesResponses, type EventsBulkRemoveAttendeesData, type EventsBulkRemoveAttendeesError, type EventsBulkRemoveAttendeesErrors, type EventsBulkRemoveAttendeesResponse, type EventsBulkRemoveAttendeesResponses, type EventsBulkUpdateAttendeeStatusData, type EventsBulkUpdateAttendeeStatusError, type EventsBulkUpdateAttendeeStatusErrors, type EventsBulkUpdateAttendeeStatusResponse, type EventsBulkUpdateAttendeeStatusResponses, type EventsCalendarData, type EventsCalendarError, type EventsCalendarErrors, type EventsCalendarResponse, type EventsCalendarResponses, type EventsCheckInAttendeeData, type EventsCheckInAttendeeError, type EventsCheckInAttendeeErrors, type EventsCheckInAttendeeResponse, type EventsCheckInAttendeeResponses, type EventsCreateAutomationData, type EventsCreateAutomationError, type EventsCreateAutomationErrors, type EventsCreateAutomationResponse, type EventsCreateAutomationResponses, type EventsCreateData, type EventsCreateError, type EventsCreateErrors, type EventsCreateResponse, type EventsCreateResponses, type EventsCreateSeriesData, type EventsCreateSeriesError, type EventsCreateSeriesErrors, type EventsCreateSeriesResponse, type EventsCreateSeriesResponses, type EventsCreateWithSeriesData, type EventsCreateWithSeriesError, type EventsCreateWithSeriesErrors, type EventsCreateWithSeriesResponse, type EventsCreateWithSeriesResponses, type EventsDeleteAutomationData, type EventsDeleteAutomationError, type EventsDeleteAutomationErrors, type EventsDeleteAutomationResponse, type EventsDeleteAutomationResponses, type EventsDeleteData, type EventsDeleteError, type EventsDeleteErrors, type EventsDeleteResponse, type EventsDeleteResponses, type EventsDeleteSeriesData, type EventsDeleteSeriesError, type EventsDeleteSeriesErrors, type EventsDeleteSeriesResponse, type EventsDeleteSeriesResponses, type EventsDiscardData, type EventsDiscardError, type EventsDiscardErrors, type EventsDiscardResponse, type EventsDiscardResponses, type EventsExecuteAutomationData, type EventsExecuteAutomationError, type EventsExecuteAutomationErrors, type EventsExecuteAutomationResponse, type EventsExecuteAutomationResponses, type EventsGetAutomationData, type EventsGetAutomationError, type EventsGetAutomationErrors, type EventsGetAutomationResponse, type EventsGetAutomationResponses, type EventsGetData, type EventsGetDraftData, type EventsGetDraftError, type EventsGetDraftErrors, type EventsGetDraftResponse, type EventsGetDraftResponses, type EventsGetError, type EventsGetErrors, type EventsGetManagerData, type EventsGetManagerError, type EventsGetManagerErrors, type EventsGetManagerResponse, type EventsGetManagerResponses, type EventsGetResponse, type EventsGetResponses, type EventsGetSeriesData, type EventsGetSeriesError, type EventsGetSeriesErrors, type EventsGetSeriesResponse, type EventsGetSeriesResponses, type EventsInviteManagerData, type EventsInviteManagerError, type EventsInviteManagerErrors, type EventsInviteManagerResponse, type EventsInviteManagerResponses, type EventsInviteSeriesManagerData, type EventsInviteSeriesManagerError, type EventsInviteSeriesManagerErrors, type EventsInviteSeriesManagerResponse, type EventsInviteSeriesManagerResponses, type EventsListAttendeesData, type EventsListAttendeesError, type EventsListAttendeesErrors, type EventsListAttendeesResponse, type EventsListAttendeesResponses, type EventsListAutomationExecutionsData, type EventsListAutomationExecutionsError, type EventsListAutomationExecutionsErrors, type EventsListAutomationExecutionsResponse, type EventsListAutomationExecutionsResponses, type EventsListAutomationsData, type EventsListAutomationsError, type EventsListAutomationsErrors, type EventsListAutomationsResponse, type EventsListAutomationsResponses, type EventsListData, type EventsListDocumentsData, type EventsListDocumentsError, type EventsListDocumentsErrors, type EventsListDocumentsResponse, type EventsListDocumentsResponses, type EventsListError, type EventsListErrors, type EventsListLinksData, type EventsListLinksError, type EventsListLinksErrors, type EventsListLinksResponse, type EventsListLinksResponses, type EventsListManagersData, type EventsListManagersError, type EventsListManagersErrors, type EventsListManagersResponse, type EventsListManagersResponses, type EventsListMilestonesData, type EventsListMilestonesError, type EventsListMilestonesErrors, type EventsListMilestonesResponse, type EventsListMilestonesResponses, type EventsListOccurrencesData, type EventsListOccurrencesError, type EventsListOccurrencesErrors, type EventsListOccurrencesResponse, type EventsListOccurrencesResponses, type EventsListPendingManagerInvitesData, type EventsListPendingManagerInvitesError, type EventsListPendingManagerInvitesErrors, type EventsListPendingManagerInvitesResponse, type EventsListPendingManagerInvitesResponses, type EventsListResponse, type EventsListResponses, type EventsListSpacesData, type EventsListSpacesError, type EventsListSpacesErrors, type EventsListSpacesResponse, type EventsListSpacesResponses, type EventsManagerPermissionsData, type EventsManagerPermissionsError, type EventsManagerPermissionsErrors, type EventsManagerPermissionsResponse, type EventsManagerPermissionsResponses, type EventsPatchData, type EventsPatchError, type EventsPatchErrors, type EventsPatchMilestoneLifecycleData, type EventsPatchMilestoneLifecycleError, type EventsPatchMilestoneLifecycleErrors, type EventsPatchMilestoneLifecycleResponse, type EventsPatchMilestoneLifecycleResponses, type EventsPatchResponse, type EventsPatchResponses, type EventsPatchSeriesData, type EventsPatchSeriesError, type EventsPatchSeriesErrors, type EventsPatchSeriesResponse, type EventsPatchSeriesResponses, type EventsPublishData, type EventsPublishError, type EventsPublishErrors, type EventsPublishResponse, type EventsPublishResponses, type EventsPublishSeriesData, type EventsPublishSeriesError, type EventsPublishSeriesErrors, type EventsPublishSeriesResponse, type EventsPublishSeriesResponses, type EventsRemoveAttendeeData, type EventsRemoveAttendeeError, type EventsRemoveAttendeeErrors, type EventsRemoveAttendeeResponse, type EventsRemoveAttendeeResponses, type EventsRemoveDocumentData, type EventsRemoveDocumentError, type EventsRemoveDocumentErrors, type EventsRemoveDocumentResponse, type EventsRemoveDocumentResponses, type EventsRemoveLinkData, type EventsRemoveLinkError, type EventsRemoveLinkErrors, type EventsRemoveLinkResponse, type EventsRemoveLinkResponses, type EventsRemoveManagerData, type EventsRemoveManagerError, type EventsRemoveManagerErrors, type EventsRemoveManagerResponse, type EventsRemoveManagerResponses, type EventsRemoveMilestoneData, type EventsRemoveMilestoneError, type EventsRemoveMilestoneErrors, type EventsRemoveMilestoneResponse, type EventsRemoveMilestoneResponses, type EventsRemoveSpaceData, type EventsRemoveSpaceError, type EventsRemoveSpaceErrors, type EventsRemoveSpaceResponse, type EventsRemoveSpaceResponses, type EventsStartEditData, type EventsStartEditError, type EventsStartEditErrors, type EventsStartEditResponse, type EventsStartEditResponses, type EventsUpdateAttendeeStatusData, type EventsUpdateAttendeeStatusError, type EventsUpdateAttendeeStatusErrors, type EventsUpdateAttendeeStatusResponse, type EventsUpdateAttendeeStatusResponses, type EventsUpdateAutomationData, type EventsUpdateAutomationError, type EventsUpdateAutomationErrors, type EventsUpdateAutomationResponse, type EventsUpdateAutomationResponses, type EventsUpdateData, type EventsUpdateError, type EventsUpdateErrors, type EventsUpdateManagerData, type EventsUpdateManagerError, type EventsUpdateManagerErrors, type EventsUpdateManagerResponse, type EventsUpdateManagerResponses, type EventsUpdateMilestoneData, type EventsUpdateMilestoneError, type EventsUpdateMilestoneErrors, type EventsUpdateMilestoneResponse, type EventsUpdateMilestoneResponses, type EventsUpdateResponse, type EventsUpdateResponses, type EventsUploadCoverData, type EventsUploadCoverError, type EventsUploadCoverErrors, type EventsUploadCoverResponse, type EventsUploadCoverResponses, type ExecuteAutomationResponse, type ExecuteAutomationResponseWritable, type ExecuteOutputBody, type ExecuteOutputBodyWritable, type Execution, type FavoriteInputBody, type FavoriteInputBodyWritable, Integrations, type IntegrationsZitadelWebhookData, type IntegrationsZitadelWebhookError, type IntegrationsZitadelWebhookErrors, type IntegrationsZitadelWebhookResponses, type Invite, type InviteEventManagerInputBody, type InviteEventManagerInputBodyWritable, type InviteSeriesManagerInputBody, type InviteSeriesManagerInputBodyWritable, type InviteSpaceManagerInputBody, type InviteSpaceManagerInputBodyWritable, type InviteWritable, Invites, Linebundle, type LinebundleOptions, type ListInvitesOutputBody, type ListInvitesOutputBodyWritable, type ListOrgsOutputBody, type ListOrgsOutputBodyWritable, type ListOutputBody, type ListOutputBodyWritable, type ListPendingEventManagerInvitesOutputBody, type ListPendingEventManagerInvitesOutputBodyWritable, type ListPendingManagerInvitesOutputBody, type ListPendingManagerInvitesOutputBodyWritable, type LivenessData, type LivenessError, type LivenessErrors, type LivenessOutputBody, type LivenessOutputBodyWritable, type LivenessResponse, type LivenessResponses, Me, type Member, type MemberWritable, type Milestone, type MilestoneDetail, type MilestoneEventSummary, type MilestoneWritable, type NewCredentialView, type NewCredentialViewWritable, type Options$1 as Options, type Options as Options2, type OptionsWritable, type Organization, type OrganizationWritable, Organizations, type OrganizationsArchiveData, type OrganizationsArchiveError, type OrganizationsArchiveErrors, type OrganizationsArchiveResponse, type OrganizationsArchiveResponses, type OrganizationsCreateData, type OrganizationsCreateError, type OrganizationsCreateErrors, type OrganizationsCreateResponse, type OrganizationsCreateResponses, type OrganizationsGetData, type OrganizationsGetError, type OrganizationsGetErrors, type OrganizationsGetResponse, type OrganizationsGetResponses, type OrganizationsInvitesCreateData, type OrganizationsInvitesCreateError, type OrganizationsInvitesCreateErrors, type OrganizationsInvitesCreateResponse, type OrganizationsInvitesCreateResponses, type OrganizationsInvitesDeleteData, type OrganizationsInvitesDeleteError, type OrganizationsInvitesDeleteErrors, type OrganizationsInvitesDeleteResponse, type OrganizationsInvitesDeleteResponses, type OrganizationsInvitesListData, type OrganizationsInvitesListError, type OrganizationsInvitesListErrors, type OrganizationsInvitesListResponse, type OrganizationsInvitesListResponses, type OrganizationsListData, type OrganizationsListError, type OrganizationsListErrors, type OrganizationsListResponse, type OrganizationsListResponses, type OrganizationsUpdateData, type OrganizationsUpdateError, type OrganizationsUpdateErrors, type OrganizationsUpdateResponse, type OrganizationsUpdateResponses, type Overview, type OverviewActivity, type OverviewEvent, type OverviewSpace, type OverviewWritable, type PagedBodyAnnouncement, type PagedBodyAnnouncementWritable, type PagedBodyAttendeeDetail, type PagedBodyAttendeeDetailWritable, type PagedBodyContact, type PagedBodyContactWritable, type PagedBodyEvent, type PagedBodyEventAutomationRule, type PagedBodyEventAutomationRuleWritable, type PagedBodyEventManager, type PagedBodyEventManagerWritable, type PagedBodyEventSpaceLinkDetail, type PagedBodyEventSpaceLinkDetailWritable, type PagedBodyEventWritable, type PagedBodyExecution, type PagedBodyExecutionWritable, type PagedBodyMember, type PagedBodyMemberWritable, type PagedBodyMilestoneDetail, type PagedBodyMilestoneDetailWritable, type PagedBodyPlace, type PagedBodyPlaceWritable, type PagedBodyRule, type PagedBodyRuleWritable, type PagedBodySpace, type PagedBodySpaceActivity, type PagedBodySpaceActivityWritable, type PagedBodySpaceAnnouncementDetail, type PagedBodySpaceAnnouncementDetailWritable, type PagedBodySpaceContactDetail, type PagedBodySpaceContactDetailWritable, type PagedBodySpaceEventLinkDetail, type PagedBodySpaceEventLinkDetailWritable, type PagedBodySpaceManager, type PagedBodySpaceManagerWritable, type PagedBodySpaceWritable, type PaginatedOccurrences, type PaginatedOccurrencesWritable, type PatchMilestoneInputBody, type PatchMilestoneInputBodyWritable, type PatchSeriesMilestoneInputBody, type PatchSeriesMilestoneInputBodyWritable, type PendingEventManagerInvite, type PendingManagerInvite, type PendingManagerInvitesOutputBody, type PendingManagerInvitesOutputBodyWritable, type PendingSeriesManagerInvite, type Place, type PlaceWritable, Places, type PlacesArchiveData, type PlacesArchiveError, type PlacesArchiveErrors, type PlacesArchiveResponse, type PlacesArchiveResponses, type PlacesCreateData, type PlacesCreateError, type PlacesCreateErrors, type PlacesCreateResponse, type PlacesCreateResponses, type PlacesDeleteData, type PlacesDeleteError, type PlacesDeleteErrors, type PlacesDeleteResponse, type PlacesDeleteResponses, type PlacesGetData, type PlacesGetError, type PlacesGetErrors, type PlacesGetResponse, type PlacesGetResponses, type PlacesListData, type PlacesListError, type PlacesListErrors, type PlacesListResponse, type PlacesListResponses, type PlacesPublishData, type PlacesPublishError, type PlacesPublishErrors, type PlacesPublishResponse, type PlacesPublishResponses, type PlacesUpdateData, type PlacesUpdateError, type PlacesUpdateErrors, type PlacesUpdateResponse, type PlacesUpdateResponses, type Profile, type ProfileWritable, Profiles, type ProfilesGetData, type ProfilesGetError, type ProfilesGetErrors, type ProfilesGetResponse, type ProfilesGetResponses, type ProfilesListData, type ProfilesListError, type ProfilesListErrors, type ProfilesListResponse, type ProfilesListResponses, type ProfilesMeAcceptTermsData, type ProfilesMeAcceptTermsError, type ProfilesMeAcceptTermsErrors, type ProfilesMeAcceptTermsResponse, type ProfilesMeAcceptTermsResponses, type ProfilesMeGetData, type ProfilesMeGetError, type ProfilesMeGetErrors, type ProfilesMeGetResponse, type ProfilesMeGetResponses, type ProfilesMeUpdateData, type ProfilesMeUpdateError, type ProfilesMeUpdateErrors, type ProfilesMeUpdateResponse, type ProfilesMeUpdateResponses, type ProfilesSearchData, type ProfilesSearchError, type ProfilesSearchErrors, type ProfilesSearchResponse, type ProfilesSearchResponses, Public, type PublicEventSummary, type PublicEventsGetData, type PublicEventsGetError, type PublicEventsGetErrors, type PublicEventsGetResponse, type PublicEventsGetResponses, type PublicEventsListData, type PublicEventsListError, type PublicEventsListErrors, type PublicEventsListResponse, type PublicEventsListResponses, type PublicOrganizationSummary, type PublicOwnerSummary, type PublicPersonPreview, type PublicSpaceStats, type PublicSpaceSummary, type PublicSpacesGetData, type PublicSpacesGetError, type PublicSpacesGetErrors, type PublicSpacesGetResponse, type PublicSpacesGetResponses, type PublicSpacesListData, type PublicSpacesListError, type PublicSpacesListErrors, type PublicSpacesListResponse, type PublicSpacesListResponses, type PublicViewerCapabilities, type PublishAnnouncementInputBody, type PublishAnnouncementInputBodyWritable, type Pulse, type ReadinessData, type ReadinessError, type ReadinessErrors, type ReadinessOutputBody, type ReadinessOutputBodyWritable, type ReadinessResponse, type ReadinessResponses, type ResourceStats, type Rule, type RuleWritable, type Schedule, type ScheduleInput, type SearchOutputBody, type SearchOutputBodyWritable, Series, type SeriesAcceptManagerInviteData, type SeriesAcceptManagerInviteError, type SeriesAcceptManagerInviteErrors, type SeriesAcceptManagerInviteResponse, type SeriesAcceptManagerInviteResponses, type SeriesAddAttendeeData, type SeriesAddAttendeeError, type SeriesAddAttendeeErrors, type SeriesAddAttendeeResponse, type SeriesAddAttendeeResponses, type SeriesAddDocumentData, type SeriesAddDocumentError, type SeriesAddDocumentErrors, type SeriesAddDocumentResponses, type SeriesAddLinkData, type SeriesAddLinkError, type SeriesAddLinkErrors, type SeriesAddLinkResponse, type SeriesAddLinkResponses, type SeriesAddMilestoneData, type SeriesAddMilestoneError, type SeriesAddMilestoneErrors, type SeriesAddMilestoneResponse, type SeriesAddMilestoneResponses, type SeriesBulkAddAttendeesData, type SeriesBulkAddAttendeesError, type SeriesBulkAddAttendeesErrors, type SeriesBulkAddAttendeesResponse, type SeriesBulkAddAttendeesResponses, type SeriesCheckInAttendeeData, type SeriesCheckInAttendeeError, type SeriesCheckInAttendeeErrors, type SeriesCheckInAttendeeResponse, type SeriesCheckInAttendeeResponses, type SeriesGetByIdData, type SeriesGetByIdError, type SeriesGetByIdErrors, type SeriesGetByIdResponse, type SeriesGetByIdResponses, type SeriesListAttendeesData, type SeriesListAttendeesError, type SeriesListAttendeesErrors, type SeriesListAttendeesResponse, type SeriesListAttendeesResponses, type SeriesListDocumentsData, type SeriesListDocumentsError, type SeriesListDocumentsErrors, type SeriesListDocumentsResponse, type SeriesListDocumentsResponses, type SeriesListLinksData, type SeriesListLinksError, type SeriesListLinksErrors, type SeriesListLinksResponse, type SeriesListLinksResponses, type SeriesListMilestonesData, type SeriesListMilestonesError, type SeriesListMilestonesErrors, type SeriesListMilestonesResponse, type SeriesListMilestonesResponses, type SeriesListPendingManagerInvitesData, type SeriesListPendingManagerInvitesError, type SeriesListPendingManagerInvitesErrors, type SeriesListPendingManagerInvitesResponse, type SeriesListPendingManagerInvitesResponses, type SeriesPatch, type SeriesPatchMilestoneLifecycleData, type SeriesPatchMilestoneLifecycleError, type SeriesPatchMilestoneLifecycleErrors, type SeriesPatchMilestoneLifecycleResponse, type SeriesPatchMilestoneLifecycleResponses, type SeriesPatchWritable, type SeriesRemoveAttendeeData, type SeriesRemoveAttendeeError, type SeriesRemoveAttendeeErrors, type SeriesRemoveAttendeeResponse, type SeriesRemoveAttendeeResponses, type SeriesRemoveDocumentData, type SeriesRemoveDocumentError, type SeriesRemoveDocumentErrors, type SeriesRemoveDocumentResponse, type SeriesRemoveDocumentResponses, type SeriesRemoveLinkData, type SeriesRemoveLinkError, type SeriesRemoveLinkErrors, type SeriesRemoveLinkResponse, type SeriesRemoveLinkResponses, type SeriesRemoveMilestoneData, type SeriesRemoveMilestoneError, type SeriesRemoveMilestoneErrors, type SeriesRemoveMilestoneResponse, type SeriesRemoveMilestoneResponses, type SeriesUpdateAttendeeStatusData, type SeriesUpdateAttendeeStatusError, type SeriesUpdateAttendeeStatusErrors, type SeriesUpdateAttendeeStatusResponse, type SeriesUpdateAttendeeStatusResponses, type SeriesUpdateMilestoneData, type SeriesUpdateMilestoneError, type SeriesUpdateMilestoneErrors, type SeriesUpdateMilestoneResponse, type SeriesUpdateMilestoneResponses, type SeriesWithOccurrences, type SeriesWithOccurrencesWritable, type Space, type SpaceActivity, type SpaceActivityContributor, type SpaceActivityLogItem, type SpaceActivityLogResult, type SpaceActivityLogResultWritable, type SpaceActivitySummary, type SpaceAnalyticsAttentionRow, type SpaceAnalyticsEventRow, type SpaceAnalyticsGrowthPoint, type SpaceAnalyticsResult, type SpaceAnalyticsResultWritable, type SpaceAnalyticsSummary, type SpaceAnalyticsTrendPoint, type SpaceAnnouncementDetail, type SpaceAnnouncementDetailWritable, type SpaceContact, type SpaceContactDetail, type SpaceContactSummary, type SpaceContactWritable, type SpaceEventLink, type SpaceEventLinkDetail, type SpaceEventLinkWritable, type SpaceEventSummary, type SpaceManager, type SpaceManagerPermissionsOutputBody, type SpaceManagerPermissionsOutputBodyWritable, type SpaceManagerWritable, type SpacePage, type SpacePageWritable, type SpacePatch, type SpacePatchWritable, type SpaceSettings, type SpaceSettingsPatch, type SpaceSettingsPatchWritable, type SpaceSettingsWritable, type SpaceSummary, type SpaceWritable, Spaces, Spaces2, type SpacesAcceptManagerInviteData, type SpacesAcceptManagerInviteError, type SpacesAcceptManagerInviteErrors, type SpacesAcceptManagerInviteResponse, type SpacesAcceptManagerInviteResponses, type SpacesAddAnnouncementData, type SpacesAddAnnouncementError, type SpacesAddAnnouncementErrors, type SpacesAddAnnouncementResponse, type SpacesAddAnnouncementResponses, type SpacesAddContactData, type SpacesAddContactError, type SpacesAddContactErrors, type SpacesAddContactResponse, type SpacesAddContactResponses, type SpacesAddEventData, type SpacesAddEventError, type SpacesAddEventErrors, type SpacesAddEventResponse, type SpacesAddEventResponses, type SpacesAddManagerData, type SpacesAddManagerError, type SpacesAddManagerErrors, type SpacesAddManagerResponse, type SpacesAddManagerResponses, type SpacesAddMemberData, type SpacesAddMemberError, type SpacesAddMemberErrors, type SpacesAddMemberResponse, type SpacesAddMemberResponses, type SpacesArchiveData, type SpacesArchiveError, type SpacesArchiveErrors, type SpacesArchiveResponse, type SpacesArchiveResponses, type SpacesCreateData, type SpacesCreateError, type SpacesCreateErrors, type SpacesCreateResponse, type SpacesCreateResponses, type SpacesDeleteData, type SpacesDeleteError, type SpacesDeleteErrors, type SpacesDeleteResponse, type SpacesDeleteResponses, type SpacesDiscardData, type SpacesDiscardError, type SpacesDiscardErrors, type SpacesDiscardResponse, type SpacesDiscardResponses, type SpacesGetAnalyticsData, type SpacesGetAnalyticsError, type SpacesGetAnalyticsErrors, type SpacesGetAnalyticsResponse, type SpacesGetAnalyticsResponses, type SpacesGetData, type SpacesGetDraftData, type SpacesGetDraftError, type SpacesGetDraftErrors, type SpacesGetDraftResponse, type SpacesGetDraftResponses, type SpacesGetError, type SpacesGetErrors, type SpacesGetManagerData, type SpacesGetManagerError, type SpacesGetManagerErrors, type SpacesGetManagerResponse, type SpacesGetManagerResponses, type SpacesGetResponse, type SpacesGetResponses, type SpacesGetSettingsData, type SpacesGetSettingsError, type SpacesGetSettingsErrors, type SpacesGetSettingsResponse, type SpacesGetSettingsResponses, type SpacesInviteManagerData, type SpacesInviteManagerError, type SpacesInviteManagerErrors, type SpacesInviteManagerResponse, type SpacesInviteManagerResponses, type SpacesListActivityData, type SpacesListActivityError, type SpacesListActivityErrors, type SpacesListActivityLogData, type SpacesListActivityLogError, type SpacesListActivityLogErrors, type SpacesListActivityLogResponse, type SpacesListActivityLogResponses, type SpacesListActivityResponse, type SpacesListActivityResponses, type SpacesListAnnouncementsData, type SpacesListAnnouncementsError, type SpacesListAnnouncementsErrors, type SpacesListAnnouncementsResponse, type SpacesListAnnouncementsResponses, type SpacesListChildrenData, type SpacesListChildrenError, type SpacesListChildrenErrors, type SpacesListChildrenResponse, type SpacesListChildrenResponses, type SpacesListContactsData, type SpacesListContactsError, type SpacesListContactsErrors, type SpacesListContactsResponse, type SpacesListContactsResponses, type SpacesListData, type SpacesListError, type SpacesListErrors, type SpacesListEventsData, type SpacesListEventsError, type SpacesListEventsErrors, type SpacesListEventsResponse, type SpacesListEventsResponses, type SpacesListManagersData, type SpacesListManagersError, type SpacesListManagersErrors, type SpacesListManagersResponse, type SpacesListManagersResponses, type SpacesListMembersData, type SpacesListMembersError, type SpacesListMembersErrors, type SpacesListMembersResponse, type SpacesListMembersResponses, type SpacesListPendingManagerInvitesData, type SpacesListPendingManagerInvitesError, type SpacesListPendingManagerInvitesErrors, type SpacesListPendingManagerInvitesResponse, type SpacesListPendingManagerInvitesResponses, type SpacesListResponse, type SpacesListResponses, type SpacesManagerPermissionsData, type SpacesManagerPermissionsError, type SpacesManagerPermissionsErrors, type SpacesManagerPermissionsResponse, type SpacesManagerPermissionsResponses, type SpacesPatchData, type SpacesPatchError, type SpacesPatchErrors, type SpacesPatchResponse, type SpacesPatchResponses, type SpacesPatchSettingsData, type SpacesPatchSettingsError, type SpacesPatchSettingsErrors, type SpacesPatchSettingsResponse, type SpacesPatchSettingsResponses, type SpacesPublishData, type SpacesPublishError, type SpacesPublishErrors, type SpacesPublishResponse, type SpacesPublishResponses, type SpacesRemoveAnnouncementData, type SpacesRemoveAnnouncementError, type SpacesRemoveAnnouncementErrors, type SpacesRemoveAnnouncementResponse, type SpacesRemoveAnnouncementResponses, type SpacesRemoveContactData, type SpacesRemoveContactError, type SpacesRemoveContactErrors, type SpacesRemoveContactResponse, type SpacesRemoveContactResponses, type SpacesRemoveEventData, type SpacesRemoveEventError, type SpacesRemoveEventErrors, type SpacesRemoveEventResponse, type SpacesRemoveEventResponses, type SpacesRemoveManagerData, type SpacesRemoveManagerError, type SpacesRemoveManagerErrors, type SpacesRemoveManagerResponse, type SpacesRemoveManagerResponses, type SpacesRemoveMemberData, type SpacesRemoveMemberError, type SpacesRemoveMemberErrors, type SpacesRemoveMemberResponse, type SpacesRemoveMemberResponses, type SpacesStartEditData, type SpacesStartEditError, type SpacesStartEditErrors, type SpacesStartEditResponse, type SpacesStartEditResponses, type SpacesUpdateData, type SpacesUpdateError, type SpacesUpdateErrors, type SpacesUpdateManagerData, type SpacesUpdateManagerError, type SpacesUpdateManagerErrors, type SpacesUpdateManagerResponse, type SpacesUpdateManagerResponses, type SpacesUpdateResponse, type SpacesUpdateResponses, type TriggerDefinition, type UpdateAttendeeStatusInputBody, type UpdateAttendeeStatusInputBodyWritable, type UpdateBookingInputBody, type UpdateBookingInputBodyWritable, type UpdateEventInputBody, type UpdateEventInputBodyWritable, type UpdateEventManagerInputBody, type UpdateEventManagerInputBodyWritable, type UpdateMeInputBody, type UpdateMeInputBodyWritable, type UpdateMilestoneInputBody, type UpdateMilestoneInputBodyWritable, type UpdateOrgBody, type UpdateOrgBodyWritable, type UpdatePlaceInputBody, type UpdatePlaceInputBodyWritable, type UpdateRuleInput, type UpdateRuleInputWritable, type UpdateSeriesAttendeeStatusInputBody, type UpdateSeriesAttendeeStatusInputBodyWritable, type UpdateSeriesMilestoneInputBody, type UpdateSeriesMilestoneInputBodyWritable, type UpdateSpaceInputBody, type UpdateSpaceInputBodyWritable, type UpdateSpaceManagerInputBody, type UpdateSpaceManagerInputBodyWritable, Zitadel, client, createLinebundle };
|
|
15262
|
+
export { type AcceptEventManagerInviteInputBody, type AcceptEventManagerInviteInputBodyWritable, type AcceptSeriesManagerInviteInputBody, type AcceptSeriesManagerInviteInputBodyWritable, type AcceptSpaceManagerInviteInputBody, type AcceptSpaceManagerInviteInputBodyWritable, type ActionDefinition, Activity, type ActivityAppendInputBody, type ActivityAppendInputBodyWritable, type ActivityListOutputBody, type ActivityListOutputBodyWritable, type ActivityLogEntry, type ActivityLogEntryWritable, 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, type AdditionalField, 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 Attachment, type AttachmentAddInputBody, type AttachmentAddInputBodyWritable, type AttachmentListOutputBody, type AttachmentListOutputBodyWritable, type AttachmentWritable, Attachments, 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 EventsActivityAppendData, type EventsActivityAppendError, type EventsActivityAppendErrors, type EventsActivityAppendResponse, type EventsActivityAppendResponses, type EventsActivityListData, type EventsActivityListError, type EventsActivityListErrors, type EventsActivityListResponse, type EventsActivityListResponses, 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 EventsAttachmentsAddData, type EventsAttachmentsAddError, type EventsAttachmentsAddErrors, type EventsAttachmentsAddResponse, type EventsAttachmentsAddResponses, type EventsAttachmentsListData, type EventsAttachmentsListError, type EventsAttachmentsListErrors, type EventsAttachmentsListResponse, type EventsAttachmentsListResponses, type EventsAttachmentsRemoveData, type EventsAttachmentsRemoveError, type EventsAttachmentsRemoveErrors, type EventsAttachmentsRemoveResponse, type EventsAttachmentsRemoveResponses, 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 EventsTemplatesGetData, type EventsTemplatesGetError, type EventsTemplatesGetErrors, type EventsTemplatesGetResponse, type EventsTemplatesGetResponses, type EventsTemplatesListData, type EventsTemplatesListError, type EventsTemplatesListErrors, type EventsTemplatesListResponse, type EventsTemplatesListResponses, type EventsTransitionData, type EventsTransitionError, type EventsTransitionErrors, type EventsTransitionResponse, type EventsTransitionResponses, 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 TemplateDto, type TemplateDtoWritable, type TemplateListOutputBody, type TemplateListOutputBodyWritable, Templates, type TransitionInputBody, type TransitionInputBodyWritable, 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 };
|