@linebundle-sdk/ts 1.0.0-rc.42 → 1.0.0-rc.43
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 +933 -137
- package/esm/index.js +472 -358
- package/esm/index.js.map +1 -1
- package/package.json +1 -1
package/esm/index.d.ts
CHANGED
|
@@ -345,6 +345,65 @@ type ActionDefinition = {
|
|
|
345
345
|
label: string;
|
|
346
346
|
type: string;
|
|
347
347
|
};
|
|
348
|
+
type ActivityAppendInputBody = {
|
|
349
|
+
/**
|
|
350
|
+
* A URL to the JSON Schema for this object.
|
|
351
|
+
*/
|
|
352
|
+
readonly $schema?: string;
|
|
353
|
+
/**
|
|
354
|
+
* Activity kind ('state_changed', 'edited', 'attachment_added', …).
|
|
355
|
+
*/
|
|
356
|
+
kind: string;
|
|
357
|
+
/**
|
|
358
|
+
* Kind-specific payload (free-form JSONB).
|
|
359
|
+
*/
|
|
360
|
+
payload?: {
|
|
361
|
+
[key: string]: unknown;
|
|
362
|
+
};
|
|
363
|
+
};
|
|
364
|
+
type ActivityListOutputBody = {
|
|
365
|
+
/**
|
|
366
|
+
* A URL to the JSON Schema for this object.
|
|
367
|
+
*/
|
|
368
|
+
readonly $schema?: string;
|
|
369
|
+
items: Array<ActivityLogEntry> | null;
|
|
370
|
+
};
|
|
371
|
+
type ActivityLogEntry = {
|
|
372
|
+
/**
|
|
373
|
+
* A URL to the JSON Schema for this object.
|
|
374
|
+
*/
|
|
375
|
+
readonly $schema?: string;
|
|
376
|
+
/**
|
|
377
|
+
* Who caused it; nil for system-originated rows (automation, scheduled jobs).
|
|
378
|
+
*/
|
|
379
|
+
actor_id?: string;
|
|
380
|
+
/**
|
|
381
|
+
* When the activity happened (UTC).
|
|
382
|
+
*/
|
|
383
|
+
at: string;
|
|
384
|
+
/**
|
|
385
|
+
* Parent event id.
|
|
386
|
+
*/
|
|
387
|
+
event_id: number;
|
|
388
|
+
/**
|
|
389
|
+
* Record ID (bigserial — activity volume can grow large)
|
|
390
|
+
*/
|
|
391
|
+
id: number;
|
|
392
|
+
/**
|
|
393
|
+
* Activity kind: 'state_changed', 'attachment_added', 'published', 'edited', etc. Open string — templates declare which kinds are meaningful.
|
|
394
|
+
*/
|
|
395
|
+
kind: string;
|
|
396
|
+
/**
|
|
397
|
+
* Organisation context.
|
|
398
|
+
*/
|
|
399
|
+
org_id?: string;
|
|
400
|
+
/**
|
|
401
|
+
* Kind-specific shape. JSONB at the storage layer.
|
|
402
|
+
*/
|
|
403
|
+
payload: {
|
|
404
|
+
[key: string]: unknown;
|
|
405
|
+
};
|
|
406
|
+
};
|
|
348
407
|
type AddAttendeeInputBody = {
|
|
349
408
|
/**
|
|
350
409
|
* A URL to the JSON Schema for this object.
|
|
@@ -497,15 +556,15 @@ type AddSpaceAnnouncementInputBody = {
|
|
|
497
556
|
/**
|
|
498
557
|
* Rich-text body
|
|
499
558
|
*/
|
|
500
|
-
body
|
|
559
|
+
body?: string;
|
|
501
560
|
/**
|
|
502
561
|
* Send email notification to all space contacts
|
|
503
562
|
*/
|
|
504
|
-
send_email
|
|
563
|
+
send_email?: boolean;
|
|
505
564
|
/**
|
|
506
565
|
* Send WhatsApp message to all space contacts with a WhatsApp number
|
|
507
566
|
*/
|
|
508
|
-
send_whatsapp
|
|
567
|
+
send_whatsapp?: boolean;
|
|
509
568
|
/**
|
|
510
569
|
* Announcement title
|
|
511
570
|
*/
|
|
@@ -513,7 +572,7 @@ type AddSpaceAnnouncementInputBody = {
|
|
|
513
572
|
/**
|
|
514
573
|
* WhatsApp Business phone number ID to send from (required when send_whatsapp is true)
|
|
515
574
|
*/
|
|
516
|
-
whatsapp_sender_id
|
|
575
|
+
whatsapp_sender_id?: string;
|
|
517
576
|
};
|
|
518
577
|
type AddSpaceContactInputBody = {
|
|
519
578
|
/**
|
|
@@ -753,6 +812,77 @@ type AnnouncementSummary = {
|
|
|
753
812
|
*/
|
|
754
813
|
title: string;
|
|
755
814
|
};
|
|
815
|
+
type Attachment = {
|
|
816
|
+
/**
|
|
817
|
+
* A URL to the JSON Schema for this object.
|
|
818
|
+
*/
|
|
819
|
+
readonly $schema?: string;
|
|
820
|
+
/**
|
|
821
|
+
* Created timestamp
|
|
822
|
+
*/
|
|
823
|
+
created_at: string;
|
|
824
|
+
/**
|
|
825
|
+
* Profile id of who attached it.
|
|
826
|
+
*/
|
|
827
|
+
created_by: string;
|
|
828
|
+
/**
|
|
829
|
+
* Event scope — set when this attachment applies to a specific occurrence.
|
|
830
|
+
*/
|
|
831
|
+
event_id?: number;
|
|
832
|
+
/**
|
|
833
|
+
* Record ID
|
|
834
|
+
*/
|
|
835
|
+
id: number;
|
|
836
|
+
/**
|
|
837
|
+
* Open string: 'image', 'document', 'signature', 'proof_of_delivery'. Validated against the parent template's AllowedAttachmentKinds.
|
|
838
|
+
*/
|
|
839
|
+
kind: string;
|
|
840
|
+
/**
|
|
841
|
+
* Kind-specific payload: mime, size, content_hash, dimensions, …
|
|
842
|
+
*/
|
|
843
|
+
metadata?: {
|
|
844
|
+
[key: string]: unknown;
|
|
845
|
+
};
|
|
846
|
+
/**
|
|
847
|
+
* Organisation context.
|
|
848
|
+
*/
|
|
849
|
+
org_id?: string;
|
|
850
|
+
/**
|
|
851
|
+
* Opaque storage identifier — URL, blob key, document_id depending on kind.
|
|
852
|
+
*/
|
|
853
|
+
ref: string;
|
|
854
|
+
/**
|
|
855
|
+
* Series scope — set when this attachment is shared across every occurrence in the series (study materials, etc.).
|
|
856
|
+
*/
|
|
857
|
+
series_id?: number;
|
|
858
|
+
};
|
|
859
|
+
type AttachmentAddInputBody = {
|
|
860
|
+
/**
|
|
861
|
+
* A URL to the JSON Schema for this object.
|
|
862
|
+
*/
|
|
863
|
+
readonly $schema?: string;
|
|
864
|
+
/**
|
|
865
|
+
* Attachment kind ('image', 'document', 'proof_of_delivery'). Validated against the parent template's AllowedAttachmentKinds.
|
|
866
|
+
*/
|
|
867
|
+
kind: string;
|
|
868
|
+
/**
|
|
869
|
+
* Kind-specific payload: mime, size, content_hash, …
|
|
870
|
+
*/
|
|
871
|
+
metadata?: {
|
|
872
|
+
[key: string]: unknown;
|
|
873
|
+
};
|
|
874
|
+
/**
|
|
875
|
+
* Opaque storage identifier — URL, blob key, document_id depending on kind.
|
|
876
|
+
*/
|
|
877
|
+
ref: string;
|
|
878
|
+
};
|
|
879
|
+
type AttachmentListOutputBody = {
|
|
880
|
+
/**
|
|
881
|
+
* A URL to the JSON Schema for this object.
|
|
882
|
+
*/
|
|
883
|
+
readonly $schema?: string;
|
|
884
|
+
items: Array<Attachment> | null;
|
|
885
|
+
};
|
|
756
886
|
type Attendee = {
|
|
757
887
|
/**
|
|
758
888
|
* A URL to the JSON Schema for this object.
|
|
@@ -1368,6 +1498,14 @@ type CreateEventInputBody = {
|
|
|
1368
1498
|
* Start datetime (UTC)
|
|
1369
1499
|
*/
|
|
1370
1500
|
start_dt?: string;
|
|
1501
|
+
/**
|
|
1502
|
+
* Event template id (kind). Server defaults to 'generic' when omitted.
|
|
1503
|
+
*/
|
|
1504
|
+
template?: string;
|
|
1505
|
+
/**
|
|
1506
|
+
* Pin to a specific template version. When omitted, server uses the registry's latest.
|
|
1507
|
+
*/
|
|
1508
|
+
template_version?: number;
|
|
1371
1509
|
/**
|
|
1372
1510
|
* IANA timezone
|
|
1373
1511
|
*/
|
|
@@ -1794,6 +1932,10 @@ type Event = {
|
|
|
1794
1932
|
* Parent event ID (milestones)
|
|
1795
1933
|
*/
|
|
1796
1934
|
parent_event_id?: number;
|
|
1935
|
+
/**
|
|
1936
|
+
* Open numeric priority axis used by priority-aware templates.
|
|
1937
|
+
*/
|
|
1938
|
+
priority?: number;
|
|
1797
1939
|
/**
|
|
1798
1940
|
* When last published
|
|
1799
1941
|
*/
|
|
@@ -1822,10 +1964,22 @@ type Event = {
|
|
|
1822
1964
|
* Start datetime (UTC)
|
|
1823
1965
|
*/
|
|
1824
1966
|
start_dt?: string;
|
|
1967
|
+
/**
|
|
1968
|
+
* Current node of the template's state machine; nil when the template has none.
|
|
1969
|
+
*/
|
|
1970
|
+
state?: string;
|
|
1825
1971
|
/**
|
|
1826
1972
|
* Publish status
|
|
1827
1973
|
*/
|
|
1828
1974
|
status: 'draft' | 'published' | 'archived';
|
|
1975
|
+
/**
|
|
1976
|
+
* Event template id (kind discriminator). Defaults to 'generic'.
|
|
1977
|
+
*/
|
|
1978
|
+
template: string;
|
|
1979
|
+
/**
|
|
1980
|
+
* Schema version of the chosen template. 0 = legacy/pre-template; 1+ = explicit.
|
|
1981
|
+
*/
|
|
1982
|
+
template_version: number;
|
|
1829
1983
|
/**
|
|
1830
1984
|
* IANA timezone
|
|
1831
1985
|
*/
|
|
@@ -1885,7 +2039,7 @@ type EventAutomationTemplate = {
|
|
|
1885
2039
|
};
|
|
1886
2040
|
type EventAutomationTrigger = {
|
|
1887
2041
|
offset_minutes?: number;
|
|
1888
|
-
type: 'manual' | 'event.published' | 'before_start' | 'after_end';
|
|
2042
|
+
type: 'manual' | 'event.published' | 'event.state_changed' | 'before_start' | 'after_end';
|
|
1889
2043
|
};
|
|
1890
2044
|
type EventAutomationUpsertInput = {
|
|
1891
2045
|
/**
|
|
@@ -2097,10 +2251,18 @@ type EventPatch = {
|
|
|
2097
2251
|
metadata?: {
|
|
2098
2252
|
[key: string]: unknown;
|
|
2099
2253
|
};
|
|
2254
|
+
/**
|
|
2255
|
+
* New priority value (template-defined semantics).
|
|
2256
|
+
*/
|
|
2257
|
+
priority?: number;
|
|
2100
2258
|
/**
|
|
2101
2259
|
* New start datetime (UTC)
|
|
2102
2260
|
*/
|
|
2103
2261
|
start_dt?: string;
|
|
2262
|
+
/**
|
|
2263
|
+
* Reject-only: must omit. Sending any value returns 409 (template is immutable).
|
|
2264
|
+
*/
|
|
2265
|
+
template?: string;
|
|
2104
2266
|
/**
|
|
2105
2267
|
* New IANA timezone
|
|
2106
2268
|
*/
|
|
@@ -2249,6 +2411,14 @@ type EventSeries = {
|
|
|
2249
2411
|
* Publish status: draft, published, archived
|
|
2250
2412
|
*/
|
|
2251
2413
|
status: 'draft' | 'published' | 'archived';
|
|
2414
|
+
/**
|
|
2415
|
+
* Event template id; every occurrence inherits this.
|
|
2416
|
+
*/
|
|
2417
|
+
template: string;
|
|
2418
|
+
/**
|
|
2419
|
+
* Schema version of the chosen template.
|
|
2420
|
+
*/
|
|
2421
|
+
template_version: number;
|
|
2252
2422
|
/**
|
|
2253
2423
|
* IANA timezone for canonical occurrence
|
|
2254
2424
|
*/
|
|
@@ -3384,6 +3554,65 @@ type PaginatedOccurrences = {
|
|
|
3384
3554
|
*/
|
|
3385
3555
|
total_pages: number;
|
|
3386
3556
|
};
|
|
3557
|
+
type Participant = {
|
|
3558
|
+
/**
|
|
3559
|
+
* A URL to the JSON Schema for this object.
|
|
3560
|
+
*/
|
|
3561
|
+
readonly $schema?: string;
|
|
3562
|
+
/**
|
|
3563
|
+
* Profile id of the participant (people) or service-account id (vendor/courier).
|
|
3564
|
+
*/
|
|
3565
|
+
actor_id: string;
|
|
3566
|
+
/**
|
|
3567
|
+
* Created timestamp.
|
|
3568
|
+
*/
|
|
3569
|
+
created_at: string;
|
|
3570
|
+
/**
|
|
3571
|
+
* Profile id of who added this participant.
|
|
3572
|
+
*/
|
|
3573
|
+
created_by: string;
|
|
3574
|
+
/**
|
|
3575
|
+
* Event scope — set when this row applies to a specific occurrence.
|
|
3576
|
+
*/
|
|
3577
|
+
event_id?: number;
|
|
3578
|
+
/**
|
|
3579
|
+
* Record ID
|
|
3580
|
+
*/
|
|
3581
|
+
id: number;
|
|
3582
|
+
/**
|
|
3583
|
+
* Organisation context.
|
|
3584
|
+
*/
|
|
3585
|
+
org_id?: string;
|
|
3586
|
+
/**
|
|
3587
|
+
* Open string; semantics declared by the parent event's template (e.g. 'audience', 'recipient', 'vendor').
|
|
3588
|
+
*/
|
|
3589
|
+
role: string;
|
|
3590
|
+
/**
|
|
3591
|
+
* Series scope — set when this row applies to every occurrence inherited from the series.
|
|
3592
|
+
*/
|
|
3593
|
+
series_id?: number;
|
|
3594
|
+
};
|
|
3595
|
+
type ParticipantAddInputBody = {
|
|
3596
|
+
/**
|
|
3597
|
+
* A URL to the JSON Schema for this object.
|
|
3598
|
+
*/
|
|
3599
|
+
readonly $schema?: string;
|
|
3600
|
+
/**
|
|
3601
|
+
* Profile id (people) or service-account id (vendor / courier) of the participant.
|
|
3602
|
+
*/
|
|
3603
|
+
actor_id: string;
|
|
3604
|
+
/**
|
|
3605
|
+
* Template-defined role: 'audience', 'recipient', 'vendor', 'courier', etc.
|
|
3606
|
+
*/
|
|
3607
|
+
role: string;
|
|
3608
|
+
};
|
|
3609
|
+
type ParticipantListOutputBody = {
|
|
3610
|
+
/**
|
|
3611
|
+
* A URL to the JSON Schema for this object.
|
|
3612
|
+
*/
|
|
3613
|
+
readonly $schema?: string;
|
|
3614
|
+
items: Array<Participant> | null;
|
|
3615
|
+
};
|
|
3387
3616
|
type PatchMilestoneInputBody = {
|
|
3388
3617
|
/**
|
|
3389
3618
|
* A URL to the JSON Schema for this object.
|
|
@@ -4844,6 +5073,26 @@ type SpaceTreeOutputBody = {
|
|
|
4844
5073
|
*/
|
|
4845
5074
|
items: Array<SpaceTreeNode> | null;
|
|
4846
5075
|
};
|
|
5076
|
+
type TransitionInputBody = {
|
|
5077
|
+
/**
|
|
5078
|
+
* A URL to the JSON Schema for this object.
|
|
5079
|
+
*/
|
|
5080
|
+
readonly $schema?: string;
|
|
5081
|
+
/**
|
|
5082
|
+
* Kind-specific data the state machine's guard inspects (e.g. proof_of_delivery for delivery's final hop).
|
|
5083
|
+
*/
|
|
5084
|
+
payload?: {
|
|
5085
|
+
[key: string]: unknown;
|
|
5086
|
+
};
|
|
5087
|
+
/**
|
|
5088
|
+
* Optional human-readable reason — captured on the activity row.
|
|
5089
|
+
*/
|
|
5090
|
+
reason?: string;
|
|
5091
|
+
/**
|
|
5092
|
+
* Target state, e.g. 'in_transit' or 'delivered'.
|
|
5093
|
+
*/
|
|
5094
|
+
to_state: string;
|
|
5095
|
+
};
|
|
4847
5096
|
type TriggerDefinition = {
|
|
4848
5097
|
category?: string;
|
|
4849
5098
|
description?: string;
|
|
@@ -5111,6 +5360,53 @@ type AcceptSpaceManagerInviteInputBodyWritable = {
|
|
|
5111
5360
|
*/
|
|
5112
5361
|
token: string;
|
|
5113
5362
|
};
|
|
5363
|
+
type ActivityAppendInputBodyWritable = {
|
|
5364
|
+
/**
|
|
5365
|
+
* Activity kind ('state_changed', 'edited', 'attachment_added', …).
|
|
5366
|
+
*/
|
|
5367
|
+
kind: string;
|
|
5368
|
+
/**
|
|
5369
|
+
* Kind-specific payload (free-form JSONB).
|
|
5370
|
+
*/
|
|
5371
|
+
payload?: {
|
|
5372
|
+
[key: string]: unknown;
|
|
5373
|
+
};
|
|
5374
|
+
};
|
|
5375
|
+
type ActivityListOutputBodyWritable = {
|
|
5376
|
+
items: Array<ActivityLogEntryWritable> | null;
|
|
5377
|
+
};
|
|
5378
|
+
type ActivityLogEntryWritable = {
|
|
5379
|
+
/**
|
|
5380
|
+
* Who caused it; nil for system-originated rows (automation, scheduled jobs).
|
|
5381
|
+
*/
|
|
5382
|
+
actor_id?: string;
|
|
5383
|
+
/**
|
|
5384
|
+
* When the activity happened (UTC).
|
|
5385
|
+
*/
|
|
5386
|
+
at: string;
|
|
5387
|
+
/**
|
|
5388
|
+
* Parent event id.
|
|
5389
|
+
*/
|
|
5390
|
+
event_id: number;
|
|
5391
|
+
/**
|
|
5392
|
+
* Record ID (bigserial — activity volume can grow large)
|
|
5393
|
+
*/
|
|
5394
|
+
id: number;
|
|
5395
|
+
/**
|
|
5396
|
+
* Activity kind: 'state_changed', 'attachment_added', 'published', 'edited', etc. Open string — templates declare which kinds are meaningful.
|
|
5397
|
+
*/
|
|
5398
|
+
kind: string;
|
|
5399
|
+
/**
|
|
5400
|
+
* Organisation context.
|
|
5401
|
+
*/
|
|
5402
|
+
org_id?: string;
|
|
5403
|
+
/**
|
|
5404
|
+
* Kind-specific shape. JSONB at the storage layer.
|
|
5405
|
+
*/
|
|
5406
|
+
payload: {
|
|
5407
|
+
[key: string]: unknown;
|
|
5408
|
+
};
|
|
5409
|
+
};
|
|
5114
5410
|
type AddAttendeeInputBodyWritable = {
|
|
5115
5411
|
/**
|
|
5116
5412
|
* Contact UUID
|
|
@@ -5215,15 +5511,15 @@ type AddSpaceAnnouncementInputBodyWritable = {
|
|
|
5215
5511
|
/**
|
|
5216
5512
|
* Rich-text body
|
|
5217
5513
|
*/
|
|
5218
|
-
body
|
|
5514
|
+
body?: string;
|
|
5219
5515
|
/**
|
|
5220
5516
|
* Send email notification to all space contacts
|
|
5221
5517
|
*/
|
|
5222
|
-
send_email
|
|
5518
|
+
send_email?: boolean;
|
|
5223
5519
|
/**
|
|
5224
5520
|
* Send WhatsApp message to all space contacts with a WhatsApp number
|
|
5225
5521
|
*/
|
|
5226
|
-
send_whatsapp
|
|
5522
|
+
send_whatsapp?: boolean;
|
|
5227
5523
|
/**
|
|
5228
5524
|
* Announcement title
|
|
5229
5525
|
*/
|
|
@@ -5231,7 +5527,7 @@ type AddSpaceAnnouncementInputBodyWritable = {
|
|
|
5231
5527
|
/**
|
|
5232
5528
|
* WhatsApp Business phone number ID to send from (required when send_whatsapp is true)
|
|
5233
5529
|
*/
|
|
5234
|
-
whatsapp_sender_id
|
|
5530
|
+
whatsapp_sender_id?: string;
|
|
5235
5531
|
};
|
|
5236
5532
|
type AddSpaceContactInputBodyWritable = {
|
|
5237
5533
|
/**
|
|
@@ -5393,6 +5689,65 @@ type AnnouncementPatchWritable = {
|
|
|
5393
5689
|
*/
|
|
5394
5690
|
title?: string;
|
|
5395
5691
|
};
|
|
5692
|
+
type AttachmentWritable = {
|
|
5693
|
+
/**
|
|
5694
|
+
* Created timestamp
|
|
5695
|
+
*/
|
|
5696
|
+
created_at: string;
|
|
5697
|
+
/**
|
|
5698
|
+
* Profile id of who attached it.
|
|
5699
|
+
*/
|
|
5700
|
+
created_by: string;
|
|
5701
|
+
/**
|
|
5702
|
+
* Event scope — set when this attachment applies to a specific occurrence.
|
|
5703
|
+
*/
|
|
5704
|
+
event_id?: number;
|
|
5705
|
+
/**
|
|
5706
|
+
* Record ID
|
|
5707
|
+
*/
|
|
5708
|
+
id: number;
|
|
5709
|
+
/**
|
|
5710
|
+
* Open string: 'image', 'document', 'signature', 'proof_of_delivery'. Validated against the parent template's AllowedAttachmentKinds.
|
|
5711
|
+
*/
|
|
5712
|
+
kind: string;
|
|
5713
|
+
/**
|
|
5714
|
+
* Kind-specific payload: mime, size, content_hash, dimensions, …
|
|
5715
|
+
*/
|
|
5716
|
+
metadata?: {
|
|
5717
|
+
[key: string]: unknown;
|
|
5718
|
+
};
|
|
5719
|
+
/**
|
|
5720
|
+
* Organisation context.
|
|
5721
|
+
*/
|
|
5722
|
+
org_id?: string;
|
|
5723
|
+
/**
|
|
5724
|
+
* Opaque storage identifier — URL, blob key, document_id depending on kind.
|
|
5725
|
+
*/
|
|
5726
|
+
ref: string;
|
|
5727
|
+
/**
|
|
5728
|
+
* Series scope — set when this attachment is shared across every occurrence in the series (study materials, etc.).
|
|
5729
|
+
*/
|
|
5730
|
+
series_id?: number;
|
|
5731
|
+
};
|
|
5732
|
+
type AttachmentAddInputBodyWritable = {
|
|
5733
|
+
/**
|
|
5734
|
+
* Attachment kind ('image', 'document', 'proof_of_delivery'). Validated against the parent template's AllowedAttachmentKinds.
|
|
5735
|
+
*/
|
|
5736
|
+
kind: string;
|
|
5737
|
+
/**
|
|
5738
|
+
* Kind-specific payload: mime, size, content_hash, …
|
|
5739
|
+
*/
|
|
5740
|
+
metadata?: {
|
|
5741
|
+
[key: string]: unknown;
|
|
5742
|
+
};
|
|
5743
|
+
/**
|
|
5744
|
+
* Opaque storage identifier — URL, blob key, document_id depending on kind.
|
|
5745
|
+
*/
|
|
5746
|
+
ref: string;
|
|
5747
|
+
};
|
|
5748
|
+
type AttachmentListOutputBodyWritable = {
|
|
5749
|
+
items: Array<AttachmentWritable> | null;
|
|
5750
|
+
};
|
|
5396
5751
|
type AttendeeWritable = {
|
|
5397
5752
|
/**
|
|
5398
5753
|
* Check-in time
|
|
@@ -5859,6 +6214,14 @@ type CreateEventInputBodyWritable = {
|
|
|
5859
6214
|
* Start datetime (UTC)
|
|
5860
6215
|
*/
|
|
5861
6216
|
start_dt?: string;
|
|
6217
|
+
/**
|
|
6218
|
+
* Event template id (kind). Server defaults to 'generic' when omitted.
|
|
6219
|
+
*/
|
|
6220
|
+
template?: string;
|
|
6221
|
+
/**
|
|
6222
|
+
* Pin to a specific template version. When omitted, server uses the registry's latest.
|
|
6223
|
+
*/
|
|
6224
|
+
template_version?: number;
|
|
5862
6225
|
/**
|
|
5863
6226
|
* IANA timezone
|
|
5864
6227
|
*/
|
|
@@ -6208,6 +6571,10 @@ type EventWritable = {
|
|
|
6208
6571
|
* Parent event ID (milestones)
|
|
6209
6572
|
*/
|
|
6210
6573
|
parent_event_id?: number;
|
|
6574
|
+
/**
|
|
6575
|
+
* Open numeric priority axis used by priority-aware templates.
|
|
6576
|
+
*/
|
|
6577
|
+
priority?: number;
|
|
6211
6578
|
/**
|
|
6212
6579
|
* When last published
|
|
6213
6580
|
*/
|
|
@@ -6236,10 +6603,22 @@ type EventWritable = {
|
|
|
6236
6603
|
* Start datetime (UTC)
|
|
6237
6604
|
*/
|
|
6238
6605
|
start_dt?: string;
|
|
6606
|
+
/**
|
|
6607
|
+
* Current node of the template's state machine; nil when the template has none.
|
|
6608
|
+
*/
|
|
6609
|
+
state?: string;
|
|
6239
6610
|
/**
|
|
6240
6611
|
* Publish status
|
|
6241
6612
|
*/
|
|
6242
6613
|
status: 'draft' | 'published' | 'archived';
|
|
6614
|
+
/**
|
|
6615
|
+
* Event template id (kind discriminator). Defaults to 'generic'.
|
|
6616
|
+
*/
|
|
6617
|
+
template: string;
|
|
6618
|
+
/**
|
|
6619
|
+
* Schema version of the chosen template. 0 = legacy/pre-template; 1+ = explicit.
|
|
6620
|
+
*/
|
|
6621
|
+
template_version: number;
|
|
6243
6622
|
/**
|
|
6244
6623
|
* IANA timezone
|
|
6245
6624
|
*/
|
|
@@ -6407,10 +6786,18 @@ type EventPatchWritable = {
|
|
|
6407
6786
|
metadata?: {
|
|
6408
6787
|
[key: string]: unknown;
|
|
6409
6788
|
};
|
|
6789
|
+
/**
|
|
6790
|
+
* New priority value (template-defined semantics).
|
|
6791
|
+
*/
|
|
6792
|
+
priority?: number;
|
|
6410
6793
|
/**
|
|
6411
6794
|
* New start datetime (UTC)
|
|
6412
6795
|
*/
|
|
6413
6796
|
start_dt?: string;
|
|
6797
|
+
/**
|
|
6798
|
+
* Reject-only: must omit. Sending any value returns 409 (template is immutable).
|
|
6799
|
+
*/
|
|
6800
|
+
template?: string;
|
|
6414
6801
|
/**
|
|
6415
6802
|
* New IANA timezone
|
|
6416
6803
|
*/
|
|
@@ -6555,6 +6942,14 @@ type EventSeriesWritable = {
|
|
|
6555
6942
|
* Publish status: draft, published, archived
|
|
6556
6943
|
*/
|
|
6557
6944
|
status: 'draft' | 'published' | 'archived';
|
|
6945
|
+
/**
|
|
6946
|
+
* Event template id; every occurrence inherits this.
|
|
6947
|
+
*/
|
|
6948
|
+
template: string;
|
|
6949
|
+
/**
|
|
6950
|
+
* Schema version of the chosen template.
|
|
6951
|
+
*/
|
|
6952
|
+
template_version: number;
|
|
6558
6953
|
/**
|
|
6559
6954
|
* IANA timezone for canonical occurrence
|
|
6560
6955
|
*/
|
|
@@ -7246,6 +7641,53 @@ type PaginatedOccurrencesWritable = {
|
|
|
7246
7641
|
*/
|
|
7247
7642
|
total_pages: number;
|
|
7248
7643
|
};
|
|
7644
|
+
type ParticipantWritable = {
|
|
7645
|
+
/**
|
|
7646
|
+
* Profile id of the participant (people) or service-account id (vendor/courier).
|
|
7647
|
+
*/
|
|
7648
|
+
actor_id: string;
|
|
7649
|
+
/**
|
|
7650
|
+
* Created timestamp.
|
|
7651
|
+
*/
|
|
7652
|
+
created_at: string;
|
|
7653
|
+
/**
|
|
7654
|
+
* Profile id of who added this participant.
|
|
7655
|
+
*/
|
|
7656
|
+
created_by: string;
|
|
7657
|
+
/**
|
|
7658
|
+
* Event scope — set when this row applies to a specific occurrence.
|
|
7659
|
+
*/
|
|
7660
|
+
event_id?: number;
|
|
7661
|
+
/**
|
|
7662
|
+
* Record ID
|
|
7663
|
+
*/
|
|
7664
|
+
id: number;
|
|
7665
|
+
/**
|
|
7666
|
+
* Organisation context.
|
|
7667
|
+
*/
|
|
7668
|
+
org_id?: string;
|
|
7669
|
+
/**
|
|
7670
|
+
* Open string; semantics declared by the parent event's template (e.g. 'audience', 'recipient', 'vendor').
|
|
7671
|
+
*/
|
|
7672
|
+
role: string;
|
|
7673
|
+
/**
|
|
7674
|
+
* Series scope — set when this row applies to every occurrence inherited from the series.
|
|
7675
|
+
*/
|
|
7676
|
+
series_id?: number;
|
|
7677
|
+
};
|
|
7678
|
+
type ParticipantAddInputBodyWritable = {
|
|
7679
|
+
/**
|
|
7680
|
+
* Profile id (people) or service-account id (vendor / courier) of the participant.
|
|
7681
|
+
*/
|
|
7682
|
+
actor_id: string;
|
|
7683
|
+
/**
|
|
7684
|
+
* Template-defined role: 'audience', 'recipient', 'vendor', 'courier', etc.
|
|
7685
|
+
*/
|
|
7686
|
+
role: string;
|
|
7687
|
+
};
|
|
7688
|
+
type ParticipantListOutputBodyWritable = {
|
|
7689
|
+
items: Array<ParticipantWritable> | null;
|
|
7690
|
+
};
|
|
7249
7691
|
type PatchMilestoneInputBodyWritable = {
|
|
7250
7692
|
/**
|
|
7251
7693
|
* Reset milestone lifecycle back to date-driven automatic mode
|
|
@@ -7928,6 +8370,22 @@ type SpaceTreeOutputBodyWritable = {
|
|
|
7928
8370
|
*/
|
|
7929
8371
|
items: Array<SpaceTreeNode> | null;
|
|
7930
8372
|
};
|
|
8373
|
+
type TransitionInputBodyWritable = {
|
|
8374
|
+
/**
|
|
8375
|
+
* Kind-specific data the state machine's guard inspects (e.g. proof_of_delivery for delivery's final hop).
|
|
8376
|
+
*/
|
|
8377
|
+
payload?: {
|
|
8378
|
+
[key: string]: unknown;
|
|
8379
|
+
};
|
|
8380
|
+
/**
|
|
8381
|
+
* Optional human-readable reason — captured on the activity row.
|
|
8382
|
+
*/
|
|
8383
|
+
reason?: string;
|
|
8384
|
+
/**
|
|
8385
|
+
* Target state, e.g. 'in_transit' or 'delivered'.
|
|
8386
|
+
*/
|
|
8387
|
+
to_state: string;
|
|
8388
|
+
};
|
|
7931
8389
|
type UpdateAttendeeStatusInputBodyWritable = {
|
|
7932
8390
|
/**
|
|
7933
8391
|
* New status
|
|
@@ -8376,6 +8834,31 @@ type AnnouncementsPublishResponses = {
|
|
|
8376
8834
|
200: Announcement;
|
|
8377
8835
|
};
|
|
8378
8836
|
type AnnouncementsPublishResponse = AnnouncementsPublishResponses[keyof AnnouncementsPublishResponses];
|
|
8837
|
+
type EventsAttachmentsRemoveData = {
|
|
8838
|
+
body?: never;
|
|
8839
|
+
path: {
|
|
8840
|
+
/**
|
|
8841
|
+
* Attachment record ID
|
|
8842
|
+
*/
|
|
8843
|
+
id: number;
|
|
8844
|
+
};
|
|
8845
|
+
query?: never;
|
|
8846
|
+
url: '/api/v1/attachments/{id}';
|
|
8847
|
+
};
|
|
8848
|
+
type EventsAttachmentsRemoveErrors = {
|
|
8849
|
+
/**
|
|
8850
|
+
* Error
|
|
8851
|
+
*/
|
|
8852
|
+
default: ErrorModel;
|
|
8853
|
+
};
|
|
8854
|
+
type EventsAttachmentsRemoveError = EventsAttachmentsRemoveErrors[keyof EventsAttachmentsRemoveErrors];
|
|
8855
|
+
type EventsAttachmentsRemoveResponses = {
|
|
8856
|
+
/**
|
|
8857
|
+
* No Content
|
|
8858
|
+
*/
|
|
8859
|
+
204: void;
|
|
8860
|
+
};
|
|
8861
|
+
type EventsAttachmentsRemoveResponse = EventsAttachmentsRemoveResponses[keyof EventsAttachmentsRemoveResponses];
|
|
8379
8862
|
type AuditListData = {
|
|
8380
8863
|
body?: never;
|
|
8381
8864
|
path?: never;
|
|
@@ -9284,6 +9767,14 @@ type EventsListData = {
|
|
|
9284
9767
|
* Filter to events belonging to any of these space IDs (repeatable). Omit or pass empty to return events from all spaces.
|
|
9285
9768
|
*/
|
|
9286
9769
|
space_ids?: Array<number> | null;
|
|
9770
|
+
/**
|
|
9771
|
+
* Filter to events of this exact template id (e.g. 'announcement'). Omit for no filter.
|
|
9772
|
+
*/
|
|
9773
|
+
template?: string;
|
|
9774
|
+
/**
|
|
9775
|
+
* Filter to events whose template is in this list (repeatable). Combined with Template via OR if both are set.
|
|
9776
|
+
*/
|
|
9777
|
+
template_in?: Array<string> | null;
|
|
9287
9778
|
};
|
|
9288
9779
|
url: '/api/v1/events';
|
|
9289
9780
|
};
|
|
@@ -9438,6 +9929,179 @@ type EventsCreateWithSeriesResponses = {
|
|
|
9438
9929
|
201: CreateWithSeriesOutputBody;
|
|
9439
9930
|
};
|
|
9440
9931
|
type EventsCreateWithSeriesResponse = EventsCreateWithSeriesResponses[keyof EventsCreateWithSeriesResponses];
|
|
9932
|
+
type EventsActivityListData = {
|
|
9933
|
+
body?: never;
|
|
9934
|
+
path: {
|
|
9935
|
+
/**
|
|
9936
|
+
* Parent event ID
|
|
9937
|
+
*/
|
|
9938
|
+
event_id: number;
|
|
9939
|
+
};
|
|
9940
|
+
query?: {
|
|
9941
|
+
/**
|
|
9942
|
+
* Filter to a single kind. Empty returns all kinds.
|
|
9943
|
+
*/
|
|
9944
|
+
kind?: string;
|
|
9945
|
+
/**
|
|
9946
|
+
* Max rows (default 200, max 1000).
|
|
9947
|
+
*/
|
|
9948
|
+
limit?: number;
|
|
9949
|
+
};
|
|
9950
|
+
url: '/api/v1/events/{event_id}/activity';
|
|
9951
|
+
};
|
|
9952
|
+
type EventsActivityListErrors = {
|
|
9953
|
+
/**
|
|
9954
|
+
* Error
|
|
9955
|
+
*/
|
|
9956
|
+
default: ErrorModel;
|
|
9957
|
+
};
|
|
9958
|
+
type EventsActivityListError = EventsActivityListErrors[keyof EventsActivityListErrors];
|
|
9959
|
+
type EventsActivityListResponses = {
|
|
9960
|
+
/**
|
|
9961
|
+
* OK
|
|
9962
|
+
*/
|
|
9963
|
+
200: ActivityListOutputBody;
|
|
9964
|
+
};
|
|
9965
|
+
type EventsActivityListResponse = EventsActivityListResponses[keyof EventsActivityListResponses];
|
|
9966
|
+
type EventsActivityAppendData = {
|
|
9967
|
+
body: ActivityAppendInputBodyWritable;
|
|
9968
|
+
path: {
|
|
9969
|
+
/**
|
|
9970
|
+
* Parent event ID
|
|
9971
|
+
*/
|
|
9972
|
+
event_id: number;
|
|
9973
|
+
};
|
|
9974
|
+
query?: never;
|
|
9975
|
+
url: '/api/v1/events/{event_id}/activity';
|
|
9976
|
+
};
|
|
9977
|
+
type EventsActivityAppendErrors = {
|
|
9978
|
+
/**
|
|
9979
|
+
* Error
|
|
9980
|
+
*/
|
|
9981
|
+
default: ErrorModel;
|
|
9982
|
+
};
|
|
9983
|
+
type EventsActivityAppendError = EventsActivityAppendErrors[keyof EventsActivityAppendErrors];
|
|
9984
|
+
type EventsActivityAppendResponses = {
|
|
9985
|
+
/**
|
|
9986
|
+
* Created
|
|
9987
|
+
*/
|
|
9988
|
+
201: ActivityLogEntry;
|
|
9989
|
+
};
|
|
9990
|
+
type EventsActivityAppendResponse = EventsActivityAppendResponses[keyof EventsActivityAppendResponses];
|
|
9991
|
+
type EventsAttachmentsListData = {
|
|
9992
|
+
body?: never;
|
|
9993
|
+
path: {
|
|
9994
|
+
/**
|
|
9995
|
+
* Parent event ID
|
|
9996
|
+
*/
|
|
9997
|
+
event_id: number;
|
|
9998
|
+
};
|
|
9999
|
+
query?: {
|
|
10000
|
+
/**
|
|
10001
|
+
* Filter to a single kind. Empty returns all kinds.
|
|
10002
|
+
*/
|
|
10003
|
+
kind?: string;
|
|
10004
|
+
};
|
|
10005
|
+
url: '/api/v1/events/{event_id}/attachments';
|
|
10006
|
+
};
|
|
10007
|
+
type EventsAttachmentsListErrors = {
|
|
10008
|
+
/**
|
|
10009
|
+
* Error
|
|
10010
|
+
*/
|
|
10011
|
+
default: ErrorModel;
|
|
10012
|
+
};
|
|
10013
|
+
type EventsAttachmentsListError = EventsAttachmentsListErrors[keyof EventsAttachmentsListErrors];
|
|
10014
|
+
type EventsAttachmentsListResponses = {
|
|
10015
|
+
/**
|
|
10016
|
+
* OK
|
|
10017
|
+
*/
|
|
10018
|
+
200: AttachmentListOutputBody;
|
|
10019
|
+
};
|
|
10020
|
+
type EventsAttachmentsListResponse = EventsAttachmentsListResponses[keyof EventsAttachmentsListResponses];
|
|
10021
|
+
type EventsAttachmentsAddData = {
|
|
10022
|
+
body: AttachmentAddInputBodyWritable;
|
|
10023
|
+
path: {
|
|
10024
|
+
/**
|
|
10025
|
+
* Parent event ID
|
|
10026
|
+
*/
|
|
10027
|
+
event_id: number;
|
|
10028
|
+
};
|
|
10029
|
+
query?: never;
|
|
10030
|
+
url: '/api/v1/events/{event_id}/attachments';
|
|
10031
|
+
};
|
|
10032
|
+
type EventsAttachmentsAddErrors = {
|
|
10033
|
+
/**
|
|
10034
|
+
* Error
|
|
10035
|
+
*/
|
|
10036
|
+
default: ErrorModel;
|
|
10037
|
+
};
|
|
10038
|
+
type EventsAttachmentsAddError = EventsAttachmentsAddErrors[keyof EventsAttachmentsAddErrors];
|
|
10039
|
+
type EventsAttachmentsAddResponses = {
|
|
10040
|
+
/**
|
|
10041
|
+
* Created
|
|
10042
|
+
*/
|
|
10043
|
+
201: Attachment;
|
|
10044
|
+
};
|
|
10045
|
+
type EventsAttachmentsAddResponse = EventsAttachmentsAddResponses[keyof EventsAttachmentsAddResponses];
|
|
10046
|
+
type EventsParticipantsListData = {
|
|
10047
|
+
body?: never;
|
|
10048
|
+
path: {
|
|
10049
|
+
/**
|
|
10050
|
+
* Parent event ID
|
|
10051
|
+
*/
|
|
10052
|
+
event_id: number;
|
|
10053
|
+
};
|
|
10054
|
+
query?: {
|
|
10055
|
+
/**
|
|
10056
|
+
* Filter to a single role. Empty string returns all roles.
|
|
10057
|
+
*/
|
|
10058
|
+
role?: string;
|
|
10059
|
+
/**
|
|
10060
|
+
* Filter to a single actor across roles. Empty string returns all actors.
|
|
10061
|
+
*/
|
|
10062
|
+
actor_id?: string;
|
|
10063
|
+
};
|
|
10064
|
+
url: '/api/v1/events/{event_id}/participants';
|
|
10065
|
+
};
|
|
10066
|
+
type EventsParticipantsListErrors = {
|
|
10067
|
+
/**
|
|
10068
|
+
* Error
|
|
10069
|
+
*/
|
|
10070
|
+
default: ErrorModel;
|
|
10071
|
+
};
|
|
10072
|
+
type EventsParticipantsListError = EventsParticipantsListErrors[keyof EventsParticipantsListErrors];
|
|
10073
|
+
type EventsParticipantsListResponses = {
|
|
10074
|
+
/**
|
|
10075
|
+
* OK
|
|
10076
|
+
*/
|
|
10077
|
+
200: ParticipantListOutputBody;
|
|
10078
|
+
};
|
|
10079
|
+
type EventsParticipantsListResponse = EventsParticipantsListResponses[keyof EventsParticipantsListResponses];
|
|
10080
|
+
type EventsParticipantsAddData = {
|
|
10081
|
+
body: ParticipantAddInputBodyWritable;
|
|
10082
|
+
path: {
|
|
10083
|
+
/**
|
|
10084
|
+
* Parent event ID
|
|
10085
|
+
*/
|
|
10086
|
+
event_id: number;
|
|
10087
|
+
};
|
|
10088
|
+
query?: never;
|
|
10089
|
+
url: '/api/v1/events/{event_id}/participants';
|
|
10090
|
+
};
|
|
10091
|
+
type EventsParticipantsAddErrors = {
|
|
10092
|
+
/**
|
|
10093
|
+
* Error
|
|
10094
|
+
*/
|
|
10095
|
+
default: ErrorModel;
|
|
10096
|
+
};
|
|
10097
|
+
type EventsParticipantsAddError = EventsParticipantsAddErrors[keyof EventsParticipantsAddErrors];
|
|
10098
|
+
type EventsParticipantsAddResponses = {
|
|
10099
|
+
/**
|
|
10100
|
+
* Created
|
|
10101
|
+
*/
|
|
10102
|
+
201: Participant;
|
|
10103
|
+
};
|
|
10104
|
+
type EventsParticipantsAddResponse = EventsParticipantsAddResponses[keyof EventsParticipantsAddResponses];
|
|
9441
10105
|
type EventsDeleteData = {
|
|
9442
10106
|
body?: never;
|
|
9443
10107
|
path: {
|
|
@@ -10889,6 +11553,31 @@ type EventsRemoveSpaceResponses = {
|
|
|
10889
11553
|
204: void;
|
|
10890
11554
|
};
|
|
10891
11555
|
type EventsRemoveSpaceResponse = EventsRemoveSpaceResponses[keyof EventsRemoveSpaceResponses];
|
|
11556
|
+
type EventsTransitionData = {
|
|
11557
|
+
body: TransitionInputBodyWritable;
|
|
11558
|
+
path: {
|
|
11559
|
+
/**
|
|
11560
|
+
* Event ID
|
|
11561
|
+
*/
|
|
11562
|
+
id: number;
|
|
11563
|
+
};
|
|
11564
|
+
query?: never;
|
|
11565
|
+
url: '/api/v1/events/{id}/transition';
|
|
11566
|
+
};
|
|
11567
|
+
type EventsTransitionErrors = {
|
|
11568
|
+
/**
|
|
11569
|
+
* Error
|
|
11570
|
+
*/
|
|
11571
|
+
default: ErrorModel;
|
|
11572
|
+
};
|
|
11573
|
+
type EventsTransitionError = EventsTransitionErrors[keyof EventsTransitionErrors];
|
|
11574
|
+
type EventsTransitionResponses = {
|
|
11575
|
+
/**
|
|
11576
|
+
* OK
|
|
11577
|
+
*/
|
|
11578
|
+
200: Event;
|
|
11579
|
+
};
|
|
11580
|
+
type EventsTransitionResponse = EventsTransitionResponses[keyof EventsTransitionResponses];
|
|
10892
11581
|
type IntegrationsZitadelWebhookData = {
|
|
10893
11582
|
body: Blob | File;
|
|
10894
11583
|
headers?: {
|
|
@@ -11108,6 +11797,31 @@ type OrganizationsInvitesDeleteResponses = {
|
|
|
11108
11797
|
204: void;
|
|
11109
11798
|
};
|
|
11110
11799
|
type OrganizationsInvitesDeleteResponse = OrganizationsInvitesDeleteResponses[keyof OrganizationsInvitesDeleteResponses];
|
|
11800
|
+
type EventsParticipantsRemoveData = {
|
|
11801
|
+
body?: never;
|
|
11802
|
+
path: {
|
|
11803
|
+
/**
|
|
11804
|
+
* Participant record ID
|
|
11805
|
+
*/
|
|
11806
|
+
id: number;
|
|
11807
|
+
};
|
|
11808
|
+
query?: never;
|
|
11809
|
+
url: '/api/v1/participants/{id}';
|
|
11810
|
+
};
|
|
11811
|
+
type EventsParticipantsRemoveErrors = {
|
|
11812
|
+
/**
|
|
11813
|
+
* Error
|
|
11814
|
+
*/
|
|
11815
|
+
default: ErrorModel;
|
|
11816
|
+
};
|
|
11817
|
+
type EventsParticipantsRemoveError = EventsParticipantsRemoveErrors[keyof EventsParticipantsRemoveErrors];
|
|
11818
|
+
type EventsParticipantsRemoveResponses = {
|
|
11819
|
+
/**
|
|
11820
|
+
* No Content
|
|
11821
|
+
*/
|
|
11822
|
+
204: void;
|
|
11823
|
+
};
|
|
11824
|
+
type EventsParticipantsRemoveResponse = EventsParticipantsRemoveResponses[keyof EventsParticipantsRemoveResponses];
|
|
11111
11825
|
type PermissionsListRolesData = {
|
|
11112
11826
|
body?: never;
|
|
11113
11827
|
path?: never;
|
|
@@ -11550,6 +12264,26 @@ type PublicEventsListData = {
|
|
|
11550
12264
|
* Filter by visibility level: 10=private, 20=members-only, 30=organization, 40=public. Omit or pass 0 to return all visible rows.
|
|
11551
12265
|
*/
|
|
11552
12266
|
visibility?: number;
|
|
12267
|
+
/**
|
|
12268
|
+
* Return only events whose start date is at or after this datetime (UTC ISO-8601). Omit for no lower bound.
|
|
12269
|
+
*/
|
|
12270
|
+
start_dt_after?: string;
|
|
12271
|
+
/**
|
|
12272
|
+
* Return only events whose start date is at or before this datetime (UTC ISO-8601). Omit for no upper bound.
|
|
12273
|
+
*/
|
|
12274
|
+
start_dt_before?: string;
|
|
12275
|
+
/**
|
|
12276
|
+
* Filter to events belonging to any of these space IDs (repeatable). Omit or pass empty to return events from all spaces.
|
|
12277
|
+
*/
|
|
12278
|
+
space_ids?: Array<number> | null;
|
|
12279
|
+
/**
|
|
12280
|
+
* Filter to events of this exact template id (e.g. 'announcement'). Omit for no filter.
|
|
12281
|
+
*/
|
|
12282
|
+
template?: string;
|
|
12283
|
+
/**
|
|
12284
|
+
* Filter to events whose template is in this list (repeatable). Combined with Template via OR if both are set.
|
|
12285
|
+
*/
|
|
12286
|
+
template_in?: Array<string> | null;
|
|
11553
12287
|
};
|
|
11554
12288
|
url: '/api/v1/public/events';
|
|
11555
12289
|
};
|
|
@@ -13515,157 +14249,63 @@ declare class Announcements extends HeyApiClient {
|
|
|
13515
14249
|
*/
|
|
13516
14250
|
publish<ThrowOnError extends boolean = false>(options: Options<AnnouncementsPublishData, ThrowOnError>): RequestResult<AnnouncementsPublishResponses, AnnouncementsPublishErrors, ThrowOnError, "fields">;
|
|
13517
14251
|
}
|
|
13518
|
-
declare class
|
|
14252
|
+
declare class Attachments extends HeyApiClient {
|
|
13519
14253
|
/**
|
|
13520
|
-
*
|
|
14254
|
+
* Remove an attachment
|
|
13521
14255
|
*/
|
|
13522
|
-
|
|
13523
|
-
}
|
|
13524
|
-
declare class Auth extends HeyApiClient {
|
|
14256
|
+
remove<ThrowOnError extends boolean = false>(options: Options<EventsAttachmentsRemoveData, ThrowOnError>): RequestResult<EventsAttachmentsRemoveResponses, EventsAttachmentsRemoveErrors, ThrowOnError, "fields">;
|
|
13525
14257
|
/**
|
|
13526
|
-
*
|
|
14258
|
+
* List attachments on an event
|
|
13527
14259
|
*/
|
|
13528
|
-
|
|
14260
|
+
list<ThrowOnError extends boolean = false>(options: Options<EventsAttachmentsListData, ThrowOnError>): RequestResult<EventsAttachmentsListResponses, EventsAttachmentsListErrors, ThrowOnError, "fields">;
|
|
13529
14261
|
/**
|
|
13530
|
-
*
|
|
14262
|
+
* Attach a file / reference to an event
|
|
14263
|
+
*
|
|
14264
|
+
* 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').
|
|
13531
14265
|
*/
|
|
13532
|
-
|
|
14266
|
+
add<ThrowOnError extends boolean = false>(options: Options<EventsAttachmentsAddData, ThrowOnError>): RequestResult<EventsAttachmentsAddResponses, EventsAttachmentsAddErrors, ThrowOnError, "fields">;
|
|
13533
14267
|
}
|
|
13534
|
-
declare class
|
|
13535
|
-
/**
|
|
13536
|
-
* List available native automation action types
|
|
13537
|
-
*/
|
|
13538
|
-
listActions<ThrowOnError extends boolean = false>(options?: Options<AutomationListActionsData, ThrowOnError>): RequestResult<AutomationListActionsResponses, AutomationListActionsErrors, ThrowOnError, "fields">;
|
|
13539
|
-
/**
|
|
13540
|
-
* List automation rules
|
|
13541
|
-
*/
|
|
13542
|
-
listRules<ThrowOnError extends boolean = false>(options?: Options<AutomationListRulesData, ThrowOnError>): RequestResult<AutomationListRulesResponses, AutomationListRulesErrors, ThrowOnError, "fields">;
|
|
13543
|
-
/**
|
|
13544
|
-
* Create an automation rule
|
|
13545
|
-
*/
|
|
13546
|
-
createRule<ThrowOnError extends boolean = false>(options: Options<AutomationCreateRuleData, ThrowOnError>): RequestResult<AutomationCreateRuleResponses, AutomationCreateRuleErrors, ThrowOnError, "fields">;
|
|
13547
|
-
/**
|
|
13548
|
-
* Delete an automation rule
|
|
13549
|
-
*/
|
|
13550
|
-
deleteRule<ThrowOnError extends boolean = false>(options: Options<AutomationDeleteRuleData, ThrowOnError>): RequestResult<AutomationDeleteRuleResponses, AutomationDeleteRuleErrors, ThrowOnError, "fields">;
|
|
13551
|
-
/**
|
|
13552
|
-
* Get an automation rule
|
|
13553
|
-
*/
|
|
13554
|
-
getRule<ThrowOnError extends boolean = false>(options: Options<AutomationGetRuleData, ThrowOnError>): RequestResult<AutomationGetRuleResponses, AutomationGetRuleErrors, ThrowOnError, "fields">;
|
|
13555
|
-
/**
|
|
13556
|
-
* Update an automation rule
|
|
13557
|
-
*/
|
|
13558
|
-
updateRule<ThrowOnError extends boolean = false>(options: Options<AutomationUpdateRuleData, ThrowOnError>): RequestResult<AutomationUpdateRuleResponses, AutomationUpdateRuleErrors, ThrowOnError, "fields">;
|
|
13559
|
-
/**
|
|
13560
|
-
* Manually trigger an automation rule
|
|
13561
|
-
*/
|
|
13562
|
-
executeRule<ThrowOnError extends boolean = false>(options: Options<AutomationExecuteRuleData, ThrowOnError>): RequestResult<AutomationExecuteRuleResponses, AutomationExecuteRuleErrors, ThrowOnError, "fields">;
|
|
13563
|
-
/**
|
|
13564
|
-
* List execution history for a rule
|
|
13565
|
-
*/
|
|
13566
|
-
listExecutions<ThrowOnError extends boolean = false>(options: Options<AutomationListExecutionsData, ThrowOnError>): RequestResult<AutomationListExecutionsResponses, AutomationListExecutionsErrors, ThrowOnError, "fields">;
|
|
13567
|
-
/**
|
|
13568
|
-
* List available automation trigger types
|
|
13569
|
-
*/
|
|
13570
|
-
listTriggers<ThrowOnError extends boolean = false>(options?: Options<AutomationListTriggersData, ThrowOnError>): RequestResult<AutomationListTriggersResponses, AutomationListTriggersErrors, ThrowOnError, "fields">;
|
|
13571
|
-
}
|
|
13572
|
-
declare class Bookings extends HeyApiClient {
|
|
13573
|
-
/**
|
|
13574
|
-
* List bookings
|
|
13575
|
-
*/
|
|
13576
|
-
list<ThrowOnError extends boolean = false>(options?: Options<BookingsListData, ThrowOnError>): RequestResult<BookingsListResponses, BookingsListErrors, ThrowOnError, "fields">;
|
|
13577
|
-
/**
|
|
13578
|
-
* Create a booking
|
|
13579
|
-
*/
|
|
13580
|
-
create<ThrowOnError extends boolean = false>(options: Options<BookingsCreateData, ThrowOnError>): RequestResult<BookingsCreateResponses, BookingsCreateErrors, ThrowOnError, "fields">;
|
|
13581
|
-
/**
|
|
13582
|
-
* Check place availability for a time slot
|
|
13583
|
-
*/
|
|
13584
|
-
checkAvailability<ThrowOnError extends boolean = false>(options: Options<BookingsCheckAvailabilityData, ThrowOnError>): RequestResult<BookingsCheckAvailabilityResponses, BookingsCheckAvailabilityErrors, ThrowOnError, "fields">;
|
|
13585
|
-
/**
|
|
13586
|
-
* Get all bookings for a place within a date range
|
|
13587
|
-
*/
|
|
13588
|
-
placeSchedule<ThrowOnError extends boolean = false>(options: Options<BookingsPlaceScheduleData, ThrowOnError>): RequestResult<BookingsPlaceScheduleResponses, BookingsPlaceScheduleErrors, ThrowOnError, "fields">;
|
|
13589
|
-
/**
|
|
13590
|
-
* Delete a booking
|
|
13591
|
-
*/
|
|
13592
|
-
delete<ThrowOnError extends boolean = false>(options: Options<BookingsDeleteData, ThrowOnError>): RequestResult<BookingsDeleteResponses, BookingsDeleteErrors, ThrowOnError, "fields">;
|
|
13593
|
-
/**
|
|
13594
|
-
* Get a booking by ID
|
|
13595
|
-
*/
|
|
13596
|
-
get<ThrowOnError extends boolean = false>(options: Options<BookingsGetData, ThrowOnError>): RequestResult<BookingsGetResponses, BookingsGetErrors, ThrowOnError, "fields">;
|
|
13597
|
-
/**
|
|
13598
|
-
* Update a booking
|
|
13599
|
-
*/
|
|
13600
|
-
update<ThrowOnError extends boolean = false>(options: Options<BookingsUpdateData, ThrowOnError>): RequestResult<BookingsUpdateResponses, BookingsUpdateErrors, ThrowOnError, "fields">;
|
|
13601
|
-
}
|
|
13602
|
-
declare class Contacts extends HeyApiClient {
|
|
13603
|
-
/**
|
|
13604
|
-
* List contacts
|
|
13605
|
-
*/
|
|
13606
|
-
list<ThrowOnError extends boolean = false>(options?: Options<ContactsListData, ThrowOnError>): RequestResult<ContactsListResponses, ContactsListErrors, ThrowOnError, "fields">;
|
|
13607
|
-
/**
|
|
13608
|
-
* Create a contact
|
|
13609
|
-
*/
|
|
13610
|
-
create<ThrowOnError extends boolean = false>(options: Options<ContactsCreateData, ThrowOnError>): RequestResult<ContactsCreateResponses, ContactsCreateErrors, ThrowOnError, "fields">;
|
|
13611
|
-
/**
|
|
13612
|
-
* Search contacts
|
|
13613
|
-
*/
|
|
13614
|
-
search<ThrowOnError extends boolean = false>(options?: Options<ContactsSearchData, ThrowOnError>): RequestResult<ContactsSearchResponses, ContactsSearchErrors, ThrowOnError, "fields">;
|
|
13615
|
-
/**
|
|
13616
|
-
* Delete a contact
|
|
13617
|
-
*/
|
|
13618
|
-
delete<ThrowOnError extends boolean = false>(options: Options<ContactsDeleteData, ThrowOnError>): RequestResult<ContactsDeleteResponses, ContactsDeleteErrors, ThrowOnError, "fields">;
|
|
14268
|
+
declare class Activity extends HeyApiClient {
|
|
13619
14269
|
/**
|
|
13620
|
-
*
|
|
13621
|
-
|
|
13622
|
-
|
|
13623
|
-
/**
|
|
13624
|
-
* Update a contact
|
|
13625
|
-
*/
|
|
13626
|
-
update<ThrowOnError extends boolean = false>(options: Options<ContactsUpdateData, ThrowOnError>): RequestResult<ContactsUpdateResponses, ContactsUpdateErrors, ThrowOnError, "fields">;
|
|
13627
|
-
/**
|
|
13628
|
-
* Toggle contact favorite
|
|
13629
|
-
*/
|
|
13630
|
-
toggleFavorite<ThrowOnError extends boolean = false>(options: Options<ContactsToggleFavoriteData, ThrowOnError>): RequestResult<ContactsToggleFavoriteResponses, ContactsToggleFavoriteErrors, ThrowOnError, "fields">;
|
|
13631
|
-
/**
|
|
13632
|
-
* List integration-linked fields for a contact
|
|
13633
|
-
*/
|
|
13634
|
-
listIntegrationFields<ThrowOnError extends boolean = false>(options: Options<ContactsListIntegrationFieldsData, ThrowOnError>): RequestResult<ContactsListIntegrationFieldsResponses, ContactsListIntegrationFieldsErrors, ThrowOnError, "fields">;
|
|
13635
|
-
/**
|
|
13636
|
-
* Create or update an integration-linked field on a contact
|
|
14270
|
+
* List activity for an event
|
|
14271
|
+
*
|
|
14272
|
+
* Returns the append-only activity log: state transitions, attachments added, edits. AI callers: poll this to learn how a delivery has progressed.
|
|
13637
14273
|
*/
|
|
13638
|
-
|
|
14274
|
+
list<ThrowOnError extends boolean = false>(options: Options<EventsActivityListData, ThrowOnError>): RequestResult<EventsActivityListResponses, EventsActivityListErrors, ThrowOnError, "fields">;
|
|
13639
14275
|
/**
|
|
13640
|
-
*
|
|
14276
|
+
* Append an activity row
|
|
13641
14277
|
*/
|
|
13642
|
-
|
|
14278
|
+
append<ThrowOnError extends boolean = false>(options: Options<EventsActivityAppendData, ThrowOnError>): RequestResult<EventsActivityAppendResponses, EventsActivityAppendErrors, ThrowOnError, "fields">;
|
|
13643
14279
|
}
|
|
13644
|
-
declare class
|
|
13645
|
-
/**
|
|
13646
|
-
* List machine credentials
|
|
13647
|
-
*/
|
|
13648
|
-
list<ThrowOnError extends boolean = false>(options?: Options<CredentialsListData, ThrowOnError>): RequestResult<CredentialsListResponses, CredentialsListErrors, ThrowOnError, "fields">;
|
|
14280
|
+
declare class Participants extends HeyApiClient {
|
|
13649
14281
|
/**
|
|
13650
|
-
*
|
|
14282
|
+
* List participants on an event
|
|
14283
|
+
*
|
|
14284
|
+
* Returns every participant on the event. Filter by role (`?role=recipient`) or actor (`?actor_id=u_123`).
|
|
13651
14285
|
*/
|
|
13652
|
-
|
|
14286
|
+
list<ThrowOnError extends boolean = false>(options: Options<EventsParticipantsListData, ThrowOnError>): RequestResult<EventsParticipantsListResponses, EventsParticipantsListErrors, ThrowOnError, "fields">;
|
|
13653
14287
|
/**
|
|
13654
|
-
*
|
|
14288
|
+
* Add a participant to an event
|
|
14289
|
+
*
|
|
14290
|
+
* Adds a participant in a given role (e.g. 'audience' for announcements, 'recipient' or 'vendor' for deliveries). Idempotent: re-adding the same actor+role returns the existing row.
|
|
13655
14291
|
*/
|
|
13656
|
-
|
|
14292
|
+
add<ThrowOnError extends boolean = false>(options: Options<EventsParticipantsAddData, ThrowOnError>): RequestResult<EventsParticipantsAddResponses, EventsParticipantsAddErrors, ThrowOnError, "fields">;
|
|
13657
14293
|
/**
|
|
13658
|
-
*
|
|
14294
|
+
* Remove a participant
|
|
13659
14295
|
*/
|
|
13660
|
-
|
|
14296
|
+
remove<ThrowOnError extends boolean = false>(options: Options<EventsParticipantsRemoveData, ThrowOnError>): RequestResult<EventsParticipantsRemoveResponses, EventsParticipantsRemoveErrors, ThrowOnError, "fields">;
|
|
13661
14297
|
}
|
|
13662
14298
|
declare class Events extends HeyApiClient {
|
|
13663
14299
|
/**
|
|
13664
14300
|
* List events
|
|
14301
|
+
*
|
|
14302
|
+
* Lists events. Filter with `?template=announcement` or `?template_in=delivery&template_in=announcement` to scope by kind.
|
|
13665
14303
|
*/
|
|
13666
14304
|
list<ThrowOnError extends boolean = false>(options?: Options<EventsListData, ThrowOnError>): RequestResult<EventsListResponses, EventsListErrors, ThrowOnError, "fields">;
|
|
13667
14305
|
/**
|
|
13668
14306
|
* Create an event
|
|
14307
|
+
*
|
|
14308
|
+
* 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).
|
|
13669
14309
|
*/
|
|
13670
14310
|
create<ThrowOnError extends boolean = false>(options: Options<EventsCreateData, ThrowOnError>): RequestResult<EventsCreateResponses, EventsCreateErrors, ThrowOnError, "fields">;
|
|
13671
14311
|
/**
|
|
@@ -13910,6 +14550,162 @@ declare class Events extends HeyApiClient {
|
|
|
13910
14550
|
* Remove event from a space
|
|
13911
14551
|
*/
|
|
13912
14552
|
removeSpace<ThrowOnError extends boolean = false>(options: Options<EventsRemoveSpaceData, ThrowOnError>): RequestResult<EventsRemoveSpaceResponses, EventsRemoveSpaceErrors, ThrowOnError, "fields">;
|
|
14553
|
+
/**
|
|
14554
|
+
* Transition an event to a new state per its template's state machine
|
|
14555
|
+
*
|
|
14556
|
+
* 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).
|
|
14557
|
+
*/
|
|
14558
|
+
transition<ThrowOnError extends boolean = false>(options: Options<EventsTransitionData, ThrowOnError>): RequestResult<EventsTransitionResponses, EventsTransitionErrors, ThrowOnError, "fields">;
|
|
14559
|
+
private _attachments?;
|
|
14560
|
+
get attachments(): Attachments;
|
|
14561
|
+
private _activity?;
|
|
14562
|
+
get activity(): Activity;
|
|
14563
|
+
private _participants?;
|
|
14564
|
+
get participants(): Participants;
|
|
14565
|
+
}
|
|
14566
|
+
declare class Audit extends HeyApiClient {
|
|
14567
|
+
/**
|
|
14568
|
+
* List audit log entries for the organisation
|
|
14569
|
+
*/
|
|
14570
|
+
list<ThrowOnError extends boolean = false>(options?: Options<AuditListData, ThrowOnError>): RequestResult<AuditListResponses, AuditListErrors, ThrowOnError, "fields">;
|
|
14571
|
+
}
|
|
14572
|
+
declare class Auth extends HeyApiClient {
|
|
14573
|
+
/**
|
|
14574
|
+
* Get the authenticated caller's identity and permissions
|
|
14575
|
+
*/
|
|
14576
|
+
context<ThrowOnError extends boolean = false>(options?: Options<AuthContextData, ThrowOnError>): RequestResult<AuthContextResponses, AuthContextErrors, ThrowOnError, "fields">;
|
|
14577
|
+
/**
|
|
14578
|
+
* Get the authenticated caller's identity and permissions
|
|
14579
|
+
*/
|
|
14580
|
+
me<ThrowOnError extends boolean = false>(options?: Options<AuthMeData, ThrowOnError>): RequestResult<AuthMeResponses, AuthMeErrors, ThrowOnError, "fields">;
|
|
14581
|
+
}
|
|
14582
|
+
declare class Automation extends HeyApiClient {
|
|
14583
|
+
/**
|
|
14584
|
+
* List available native automation action types
|
|
14585
|
+
*/
|
|
14586
|
+
listActions<ThrowOnError extends boolean = false>(options?: Options<AutomationListActionsData, ThrowOnError>): RequestResult<AutomationListActionsResponses, AutomationListActionsErrors, ThrowOnError, "fields">;
|
|
14587
|
+
/**
|
|
14588
|
+
* List automation rules
|
|
14589
|
+
*/
|
|
14590
|
+
listRules<ThrowOnError extends boolean = false>(options?: Options<AutomationListRulesData, ThrowOnError>): RequestResult<AutomationListRulesResponses, AutomationListRulesErrors, ThrowOnError, "fields">;
|
|
14591
|
+
/**
|
|
14592
|
+
* Create an automation rule
|
|
14593
|
+
*/
|
|
14594
|
+
createRule<ThrowOnError extends boolean = false>(options: Options<AutomationCreateRuleData, ThrowOnError>): RequestResult<AutomationCreateRuleResponses, AutomationCreateRuleErrors, ThrowOnError, "fields">;
|
|
14595
|
+
/**
|
|
14596
|
+
* Delete an automation rule
|
|
14597
|
+
*/
|
|
14598
|
+
deleteRule<ThrowOnError extends boolean = false>(options: Options<AutomationDeleteRuleData, ThrowOnError>): RequestResult<AutomationDeleteRuleResponses, AutomationDeleteRuleErrors, ThrowOnError, "fields">;
|
|
14599
|
+
/**
|
|
14600
|
+
* Get an automation rule
|
|
14601
|
+
*/
|
|
14602
|
+
getRule<ThrowOnError extends boolean = false>(options: Options<AutomationGetRuleData, ThrowOnError>): RequestResult<AutomationGetRuleResponses, AutomationGetRuleErrors, ThrowOnError, "fields">;
|
|
14603
|
+
/**
|
|
14604
|
+
* Update an automation rule
|
|
14605
|
+
*/
|
|
14606
|
+
updateRule<ThrowOnError extends boolean = false>(options: Options<AutomationUpdateRuleData, ThrowOnError>): RequestResult<AutomationUpdateRuleResponses, AutomationUpdateRuleErrors, ThrowOnError, "fields">;
|
|
14607
|
+
/**
|
|
14608
|
+
* Manually trigger an automation rule
|
|
14609
|
+
*/
|
|
14610
|
+
executeRule<ThrowOnError extends boolean = false>(options: Options<AutomationExecuteRuleData, ThrowOnError>): RequestResult<AutomationExecuteRuleResponses, AutomationExecuteRuleErrors, ThrowOnError, "fields">;
|
|
14611
|
+
/**
|
|
14612
|
+
* List execution history for a rule
|
|
14613
|
+
*/
|
|
14614
|
+
listExecutions<ThrowOnError extends boolean = false>(options: Options<AutomationListExecutionsData, ThrowOnError>): RequestResult<AutomationListExecutionsResponses, AutomationListExecutionsErrors, ThrowOnError, "fields">;
|
|
14615
|
+
/**
|
|
14616
|
+
* List available automation trigger types
|
|
14617
|
+
*/
|
|
14618
|
+
listTriggers<ThrowOnError extends boolean = false>(options?: Options<AutomationListTriggersData, ThrowOnError>): RequestResult<AutomationListTriggersResponses, AutomationListTriggersErrors, ThrowOnError, "fields">;
|
|
14619
|
+
}
|
|
14620
|
+
declare class Bookings extends HeyApiClient {
|
|
14621
|
+
/**
|
|
14622
|
+
* List bookings
|
|
14623
|
+
*/
|
|
14624
|
+
list<ThrowOnError extends boolean = false>(options?: Options<BookingsListData, ThrowOnError>): RequestResult<BookingsListResponses, BookingsListErrors, ThrowOnError, "fields">;
|
|
14625
|
+
/**
|
|
14626
|
+
* Create a booking
|
|
14627
|
+
*/
|
|
14628
|
+
create<ThrowOnError extends boolean = false>(options: Options<BookingsCreateData, ThrowOnError>): RequestResult<BookingsCreateResponses, BookingsCreateErrors, ThrowOnError, "fields">;
|
|
14629
|
+
/**
|
|
14630
|
+
* Check place availability for a time slot
|
|
14631
|
+
*/
|
|
14632
|
+
checkAvailability<ThrowOnError extends boolean = false>(options: Options<BookingsCheckAvailabilityData, ThrowOnError>): RequestResult<BookingsCheckAvailabilityResponses, BookingsCheckAvailabilityErrors, ThrowOnError, "fields">;
|
|
14633
|
+
/**
|
|
14634
|
+
* Get all bookings for a place within a date range
|
|
14635
|
+
*/
|
|
14636
|
+
placeSchedule<ThrowOnError extends boolean = false>(options: Options<BookingsPlaceScheduleData, ThrowOnError>): RequestResult<BookingsPlaceScheduleResponses, BookingsPlaceScheduleErrors, ThrowOnError, "fields">;
|
|
14637
|
+
/**
|
|
14638
|
+
* Delete a booking
|
|
14639
|
+
*/
|
|
14640
|
+
delete<ThrowOnError extends boolean = false>(options: Options<BookingsDeleteData, ThrowOnError>): RequestResult<BookingsDeleteResponses, BookingsDeleteErrors, ThrowOnError, "fields">;
|
|
14641
|
+
/**
|
|
14642
|
+
* Get a booking by ID
|
|
14643
|
+
*/
|
|
14644
|
+
get<ThrowOnError extends boolean = false>(options: Options<BookingsGetData, ThrowOnError>): RequestResult<BookingsGetResponses, BookingsGetErrors, ThrowOnError, "fields">;
|
|
14645
|
+
/**
|
|
14646
|
+
* Update a booking
|
|
14647
|
+
*/
|
|
14648
|
+
update<ThrowOnError extends boolean = false>(options: Options<BookingsUpdateData, ThrowOnError>): RequestResult<BookingsUpdateResponses, BookingsUpdateErrors, ThrowOnError, "fields">;
|
|
14649
|
+
}
|
|
14650
|
+
declare class Contacts extends HeyApiClient {
|
|
14651
|
+
/**
|
|
14652
|
+
* List contacts
|
|
14653
|
+
*/
|
|
14654
|
+
list<ThrowOnError extends boolean = false>(options?: Options<ContactsListData, ThrowOnError>): RequestResult<ContactsListResponses, ContactsListErrors, ThrowOnError, "fields">;
|
|
14655
|
+
/**
|
|
14656
|
+
* Create a contact
|
|
14657
|
+
*/
|
|
14658
|
+
create<ThrowOnError extends boolean = false>(options: Options<ContactsCreateData, ThrowOnError>): RequestResult<ContactsCreateResponses, ContactsCreateErrors, ThrowOnError, "fields">;
|
|
14659
|
+
/**
|
|
14660
|
+
* Search contacts
|
|
14661
|
+
*/
|
|
14662
|
+
search<ThrowOnError extends boolean = false>(options?: Options<ContactsSearchData, ThrowOnError>): RequestResult<ContactsSearchResponses, ContactsSearchErrors, ThrowOnError, "fields">;
|
|
14663
|
+
/**
|
|
14664
|
+
* Delete a contact
|
|
14665
|
+
*/
|
|
14666
|
+
delete<ThrowOnError extends boolean = false>(options: Options<ContactsDeleteData, ThrowOnError>): RequestResult<ContactsDeleteResponses, ContactsDeleteErrors, ThrowOnError, "fields">;
|
|
14667
|
+
/**
|
|
14668
|
+
* Get a contact
|
|
14669
|
+
*/
|
|
14670
|
+
get<ThrowOnError extends boolean = false>(options: Options<ContactsGetData, ThrowOnError>): RequestResult<ContactsGetResponses, ContactsGetErrors, ThrowOnError, "fields">;
|
|
14671
|
+
/**
|
|
14672
|
+
* Update a contact
|
|
14673
|
+
*/
|
|
14674
|
+
update<ThrowOnError extends boolean = false>(options: Options<ContactsUpdateData, ThrowOnError>): RequestResult<ContactsUpdateResponses, ContactsUpdateErrors, ThrowOnError, "fields">;
|
|
14675
|
+
/**
|
|
14676
|
+
* Toggle contact favorite
|
|
14677
|
+
*/
|
|
14678
|
+
toggleFavorite<ThrowOnError extends boolean = false>(options: Options<ContactsToggleFavoriteData, ThrowOnError>): RequestResult<ContactsToggleFavoriteResponses, ContactsToggleFavoriteErrors, ThrowOnError, "fields">;
|
|
14679
|
+
/**
|
|
14680
|
+
* List integration-linked fields for a contact
|
|
14681
|
+
*/
|
|
14682
|
+
listIntegrationFields<ThrowOnError extends boolean = false>(options: Options<ContactsListIntegrationFieldsData, ThrowOnError>): RequestResult<ContactsListIntegrationFieldsResponses, ContactsListIntegrationFieldsErrors, ThrowOnError, "fields">;
|
|
14683
|
+
/**
|
|
14684
|
+
* Create or update an integration-linked field on a contact
|
|
14685
|
+
*/
|
|
14686
|
+
upsertIntegrationField<ThrowOnError extends boolean = false>(options: Options<ContactsUpsertIntegrationFieldData, ThrowOnError>): RequestResult<ContactsUpsertIntegrationFieldResponses, ContactsUpsertIntegrationFieldErrors, ThrowOnError, "fields">;
|
|
14687
|
+
/**
|
|
14688
|
+
* Remove an integration-linked field from a contact
|
|
14689
|
+
*/
|
|
14690
|
+
deleteIntegrationField<ThrowOnError extends boolean = false>(options: Options<ContactsDeleteIntegrationFieldData, ThrowOnError>): RequestResult<ContactsDeleteIntegrationFieldResponses, ContactsDeleteIntegrationFieldErrors, ThrowOnError, "fields">;
|
|
14691
|
+
}
|
|
14692
|
+
declare class Credentials extends HeyApiClient {
|
|
14693
|
+
/**
|
|
14694
|
+
* List machine credentials
|
|
14695
|
+
*/
|
|
14696
|
+
list<ThrowOnError extends boolean = false>(options?: Options<CredentialsListData, ThrowOnError>): RequestResult<CredentialsListResponses, CredentialsListErrors, ThrowOnError, "fields">;
|
|
14697
|
+
/**
|
|
14698
|
+
* Create a machine credential
|
|
14699
|
+
*/
|
|
14700
|
+
create<ThrowOnError extends boolean = false>(options: Options<CredentialsCreateData, ThrowOnError>): RequestResult<CredentialsCreateResponses, CredentialsCreateErrors, ThrowOnError, "fields">;
|
|
14701
|
+
/**
|
|
14702
|
+
* Revoke a machine credential
|
|
14703
|
+
*/
|
|
14704
|
+
revoke<ThrowOnError extends boolean = false>(options: Options<CredentialsRevokeData, ThrowOnError>): RequestResult<CredentialsRevokeResponses, CredentialsRevokeErrors, ThrowOnError, "fields">;
|
|
14705
|
+
/**
|
|
14706
|
+
* Get a machine credential
|
|
14707
|
+
*/
|
|
14708
|
+
get<ThrowOnError extends boolean = false>(options: Options<CredentialsGetData, ThrowOnError>): RequestResult<CredentialsGetResponses, CredentialsGetErrors, ThrowOnError, "fields">;
|
|
13913
14709
|
}
|
|
13914
14710
|
declare class Zitadel extends HeyApiClient {
|
|
13915
14711
|
/**
|
|
@@ -14361,6 +15157,8 @@ declare class Linebundle extends HeyApiClient {
|
|
|
14361
15157
|
get analytics(): Analytics;
|
|
14362
15158
|
private _announcements?;
|
|
14363
15159
|
get announcements(): Announcements;
|
|
15160
|
+
private _events?;
|
|
15161
|
+
get events(): Events;
|
|
14364
15162
|
private _audit?;
|
|
14365
15163
|
get audit(): Audit;
|
|
14366
15164
|
private _auth?;
|
|
@@ -14373,8 +15171,6 @@ declare class Linebundle extends HeyApiClient {
|
|
|
14373
15171
|
get contacts(): Contacts;
|
|
14374
15172
|
private _credentials?;
|
|
14375
15173
|
get credentials(): Credentials;
|
|
14376
|
-
private _events?;
|
|
14377
|
-
get events(): Events;
|
|
14378
15174
|
private _integrations?;
|
|
14379
15175
|
get integrations(): Integrations;
|
|
14380
15176
|
private _organizations?;
|
|
@@ -14425,4 +15221,4 @@ type LinebundleOptions = {
|
|
|
14425
15221
|
*/
|
|
14426
15222
|
declare function createLinebundle({ token, orgId, baseUrl, }: LinebundleOptions): Linebundle;
|
|
14427
15223
|
|
|
14428
|
-
export { type AcceptEventManagerInviteInputBody, type AcceptEventManagerInviteInputBodyWritable, type AcceptSeriesManagerInviteInputBody, type AcceptSeriesManagerInviteInputBodyWritable, type AcceptSpaceManagerInviteInputBody, type AcceptSpaceManagerInviteInputBodyWritable, type ActionDefinition, type AddAttendeeInputBody, type AddAttendeeInputBodyWritable, type AddDocumentInputBody, type AddEventLinkInputBody, type AddEventLinkInputBodyWritable, type AddEventManagerInputBody, type AddEventManagerInputBodyWritable, type AddMemberInputBody, type AddMemberInputBodyWritable, type AddMilestoneInputBody, type AddMilestoneInputBodyWritable, type AddSeriesAttendeeInputBody, type AddSeriesAttendeeInputBodyWritable, type AddSeriesDocumentInputBody, type AddSeriesLinkInputBody, type AddSeriesLinkInputBodyWritable, type AddSeriesMilestoneInputBody, type AddSeriesMilestoneInputBodyWritable, type AddSpaceAnnouncementInputBody, type AddSpaceAnnouncementInputBodyWritable, type AddSpaceContactInputBody, type AddSpaceContactInputBodyWritable, type AddSpaceEventInputBody, type AddSpaceEventInputBodyWritable, type AddSpaceInputBody, type AddSpaceInputBodyWritable, type AddSpaceManagerInputBody, type AddSpaceManagerInputBodyWritable, type AddSpaceParentInputBody, type AddSpaceParentInputBodyWritable, Analytics, type AnalyticsCountsData, type AnalyticsCountsError, type AnalyticsCountsErrors, type AnalyticsCountsResponse, type AnalyticsCountsResponses, type AnalyticsDashboardData, type AnalyticsDashboardError, type AnalyticsDashboardErrors, type AnalyticsDashboardResponse, type AnalyticsDashboardResponses, type AnalyticsOverviewData, type AnalyticsOverviewError, type AnalyticsOverviewErrors, type AnalyticsOverviewResponse, type AnalyticsOverviewResponses, type Announcement, type AnnouncementCreate, type AnnouncementCreateWritable, type AnnouncementPatch, type AnnouncementPatchWritable, type AnnouncementSummary, type AnnouncementWritable, Announcements, Announcements2, type AnnouncementsCreateData, type AnnouncementsCreateError, type AnnouncementsCreateErrors, type AnnouncementsCreateResponse, type AnnouncementsCreateResponses, type AnnouncementsDeleteData, type AnnouncementsDeleteError, type AnnouncementsDeleteErrors, type AnnouncementsDeleteResponse, type AnnouncementsDeleteResponses, type AnnouncementsGetData, type AnnouncementsGetError, type AnnouncementsGetErrors, type AnnouncementsGetResponse, type AnnouncementsGetResponses, type AnnouncementsListData, type AnnouncementsListError, type AnnouncementsListErrors, type AnnouncementsListResponse, type AnnouncementsListResponses, type AnnouncementsPatchData, type AnnouncementsPatchError, type AnnouncementsPatchErrors, type AnnouncementsPatchResponse, type AnnouncementsPatchResponses, type AnnouncementsPublishData, type AnnouncementsPublishError, type AnnouncementsPublishErrors, type AnnouncementsPublishResponse, type AnnouncementsPublishResponses, type AnnouncementsUploadCoverData, type AnnouncementsUploadCoverError, type AnnouncementsUploadCoverErrors, type AnnouncementsUploadCoverResponse, type AnnouncementsUploadCoverResponses, type Attendee, type AttendeeDetail, type AttendeeWritable, Audit, type AuditListData, type AuditListError, type AuditListErrors, type AuditListResponse, type AuditListResponses, Auth, type AuthContext, type AuthContextData, type AuthContextError, type AuthContextErrors, type AuthContextResponse, type AuthContextResponses, type AuthContextWritable, type AuthMeData, type AuthMeError, type AuthMeErrors, type AuthMeResponse, type AuthMeResponses, Automation, type AutomationCreateRuleData, type AutomationCreateRuleError, type AutomationCreateRuleErrors, type AutomationCreateRuleResponse, type AutomationCreateRuleResponses, type AutomationDeleteRuleData, type AutomationDeleteRuleError, type AutomationDeleteRuleErrors, type AutomationDeleteRuleResponse, type AutomationDeleteRuleResponses, type AutomationExecuteRuleData, type AutomationExecuteRuleError, type AutomationExecuteRuleErrors, type AutomationExecuteRuleResponse, type AutomationExecuteRuleResponses, type AutomationGetRuleData, type AutomationGetRuleError, type AutomationGetRuleErrors, type AutomationGetRuleResponse, type AutomationGetRuleResponses, type AutomationListActionsData, type AutomationListActionsError, type AutomationListActionsErrors, type AutomationListActionsResponse, type AutomationListActionsResponses, type AutomationListExecutionsData, type AutomationListExecutionsError, type AutomationListExecutionsErrors, type AutomationListExecutionsResponse, type AutomationListExecutionsResponses, type AutomationListRulesData, type AutomationListRulesError, type AutomationListRulesErrors, type AutomationListRulesResponse, type AutomationListRulesResponses, type AutomationListTriggersData, type AutomationListTriggersError, type AutomationListTriggersErrors, type AutomationListTriggersResponse, type AutomationListTriggersResponses, type AutomationUpdateRuleData, type AutomationUpdateRuleError, type AutomationUpdateRuleErrors, type AutomationUpdateRuleResponse, type AutomationUpdateRuleResponses, type AvailabilityOutputBody, type AvailabilityOutputBodyWritable, type Booking, type BookingWritable, Bookings, type BookingsCheckAvailabilityData, type BookingsCheckAvailabilityError, type BookingsCheckAvailabilityErrors, type BookingsCheckAvailabilityResponse, type BookingsCheckAvailabilityResponses, type BookingsCreateData, type BookingsCreateError, type BookingsCreateErrors, type BookingsCreateResponse, type BookingsCreateResponses, type BookingsDeleteData, type BookingsDeleteError, type BookingsDeleteErrors, type BookingsDeleteResponse, type BookingsDeleteResponses, type BookingsGetData, type BookingsGetError, type BookingsGetErrors, type BookingsGetResponse, type BookingsGetResponses, type BookingsListData, type BookingsListError, type BookingsListErrors, type BookingsListResponse, type BookingsListResponses, type BookingsPlaceScheduleData, type BookingsPlaceScheduleError, type BookingsPlaceScheduleErrors, type BookingsPlaceScheduleResponse, type BookingsPlaceScheduleResponses, type BookingsUpdateData, type BookingsUpdateError, type BookingsUpdateErrors, type BookingsUpdateResponse, type BookingsUpdateResponses, type BulkAttendeeBody, type BulkAttendeeBodyWritable, type BulkStatusBody, type BulkStatusBodyWritable, type CalendarEventsOutputBody, type CalendarEventsOutputBodyWritable, type CheckAvailabilityInputBody, type CheckAvailabilityInputBodyWritable, type CheckInInputBody, type CheckInSeriesAttendeeInputBody, type ClientOptions, type Contact, type ContactBody, type ContactBodyWritable, type ContactSummary, type ContactWritable, Contacts, type ContactsCreateData, type ContactsCreateError, type ContactsCreateErrors, type ContactsCreateResponse, type ContactsCreateResponses, type ContactsDeleteData, type ContactsDeleteError, type ContactsDeleteErrors, type ContactsDeleteIntegrationFieldData, type ContactsDeleteIntegrationFieldError, type ContactsDeleteIntegrationFieldErrors, type ContactsDeleteIntegrationFieldResponse, type ContactsDeleteIntegrationFieldResponses, type ContactsDeleteResponse, type ContactsDeleteResponses, type ContactsGetData, type ContactsGetError, type ContactsGetErrors, type ContactsGetResponse, type ContactsGetResponses, type ContactsListData, type ContactsListError, type ContactsListErrors, type ContactsListIntegrationFieldsData, type ContactsListIntegrationFieldsError, type ContactsListIntegrationFieldsErrors, type ContactsListIntegrationFieldsResponse, type ContactsListIntegrationFieldsResponses, type ContactsListResponse, type ContactsListResponses, type ContactsSearchData, type ContactsSearchError, type ContactsSearchErrors, type ContactsSearchResponse, type ContactsSearchResponses, type ContactsToggleFavoriteData, type ContactsToggleFavoriteError, type ContactsToggleFavoriteErrors, type ContactsToggleFavoriteResponse, type ContactsToggleFavoriteResponses, type ContactsUpdateData, type ContactsUpdateError, type ContactsUpdateErrors, type ContactsUpdateResponse, type ContactsUpdateResponses, type ContactsUpsertIntegrationFieldData, type ContactsUpsertIntegrationFieldError, type ContactsUpsertIntegrationFieldErrors, type ContactsUpsertIntegrationFieldResponse, type ContactsUpsertIntegrationFieldResponses, type Counts, type CountsWritable, type CreateBookingInputBody, type CreateBookingInputBodyWritable, type CreateClientConfig, type CreateCredentialInputBody, type CreateCredentialInputBodyWritable, type CreateEventInputBody, type CreateEventInputBodyWritable, type CreateInviteBody, type CreateInviteBodyWritable, type CreateOrgBody, type CreateOrgBodyWritable, type CreatePlaceInputBody, type CreatePlaceInputBodyWritable, type CreateRuleInput, type CreateRuleInputWritable, type CreateSeriesInput, type CreateSeriesInputWritable, type CreateSpaceInputBody, type CreateSpaceInputBodyWritable, type CreateWithSeriesInputBody, type CreateWithSeriesInputBodyWritable, type CreateWithSeriesOutputBody, type CreateWithSeriesOutputBodyWritable, type CredentialView, type CredentialViewWritable, Credentials, type CredentialsCreateData, type CredentialsCreateError, type CredentialsCreateErrors, type CredentialsCreateResponse, type CredentialsCreateResponses, type CredentialsGetData, type CredentialsGetError, type CredentialsGetErrors, type CredentialsGetResponse, type CredentialsGetResponses, type CredentialsListData, type CredentialsListError, type CredentialsListErrors, type CredentialsListResponse, type CredentialsListResponses, type CredentialsRevokeData, type CredentialsRevokeError, type CredentialsRevokeErrors, type CredentialsRevokeResponse, type CredentialsRevokeResponses, type Dashboard, type DashboardWritable, type Entry, type ErrorDetail, type ErrorModel, type ErrorModelWritable, type Event, type EventAutomationAction, type EventAutomationRule, type EventAutomationRuleWritable, type EventAutomationTemplate, type EventAutomationTrigger, type EventAutomationUpsertInput, type EventAutomationUpsertInputWritable, type EventLink, type EventLinkTargetSummary, type EventLinkWithTarget, type EventLinkWritable, type EventListSpace, type EventManager, type EventManagerPermissionsOutputBody, type EventManagerPermissionsOutputBodyWritable, type EventManagerWritable, type EventPatch, type EventPatchWritable, type EventSeries, type EventSeriesWritable, type EventSpaceLink, type EventSpaceLinkDetail, type EventSpaceLinkWritable, type EventSpaceSummary, type EventSummary, type EventWritable, Events, Events2, type EventsAcceptManagerInviteData, type EventsAcceptManagerInviteError, type EventsAcceptManagerInviteErrors, type EventsAcceptManagerInviteResponse, type EventsAcceptManagerInviteResponses, type EventsAddAttendeeData, type EventsAddAttendeeError, type EventsAddAttendeeErrors, type EventsAddAttendeeResponse, type EventsAddAttendeeResponses, type EventsAddDocumentData, type EventsAddDocumentError, type EventsAddDocumentErrors, type EventsAddDocumentResponses, type EventsAddLinkData, type EventsAddLinkError, type EventsAddLinkErrors, type EventsAddLinkResponse, type EventsAddLinkResponses, type EventsAddManagerData, type EventsAddManagerError, type EventsAddManagerErrors, type EventsAddManagerResponse, type EventsAddManagerResponses, type EventsAddMilestoneData, type EventsAddMilestoneError, type EventsAddMilestoneErrors, type EventsAddMilestoneResponse, type EventsAddMilestoneResponses, type EventsAddSpaceData, type EventsAddSpaceError, type EventsAddSpaceErrors, type EventsAddSpaceResponse, type EventsAddSpaceResponses, type EventsArchiveData, type EventsArchiveError, type EventsArchiveErrors, type EventsArchiveResponse, type EventsArchiveResponses, type EventsAutomationTemplatesData, type EventsAutomationTemplatesError, type EventsAutomationTemplatesErrors, type EventsAutomationTemplatesResponse, type EventsAutomationTemplatesResponses, type EventsBulkAddAttendeesData, type EventsBulkAddAttendeesError, type EventsBulkAddAttendeesErrors, type EventsBulkAddAttendeesResponse, type EventsBulkAddAttendeesResponses, type EventsBulkRemoveAttendeesData, type EventsBulkRemoveAttendeesError, type EventsBulkRemoveAttendeesErrors, type EventsBulkRemoveAttendeesResponse, type EventsBulkRemoveAttendeesResponses, type EventsBulkUpdateAttendeeStatusData, type EventsBulkUpdateAttendeeStatusError, type EventsBulkUpdateAttendeeStatusErrors, type EventsBulkUpdateAttendeeStatusResponse, type EventsBulkUpdateAttendeeStatusResponses, type EventsCalendarData, type EventsCalendarError, type EventsCalendarErrors, type EventsCalendarResponse, type EventsCalendarResponses, type EventsCheckInAttendeeData, type EventsCheckInAttendeeError, type EventsCheckInAttendeeErrors, type EventsCheckInAttendeeResponse, type EventsCheckInAttendeeResponses, type EventsCreateAutomationData, type EventsCreateAutomationError, type EventsCreateAutomationErrors, type EventsCreateAutomationResponse, type EventsCreateAutomationResponses, type EventsCreateData, type EventsCreateError, type EventsCreateErrors, type EventsCreateResponse, type EventsCreateResponses, type EventsCreateSeriesData, type EventsCreateSeriesError, type EventsCreateSeriesErrors, type EventsCreateSeriesResponse, type EventsCreateSeriesResponses, type EventsCreateWithSeriesData, type EventsCreateWithSeriesError, type EventsCreateWithSeriesErrors, type EventsCreateWithSeriesResponse, type EventsCreateWithSeriesResponses, type EventsDeleteAutomationData, type EventsDeleteAutomationError, type EventsDeleteAutomationErrors, type EventsDeleteAutomationResponse, type EventsDeleteAutomationResponses, type EventsDeleteData, type EventsDeleteError, type EventsDeleteErrors, type EventsDeleteResponse, type EventsDeleteResponses, type EventsDeleteSeriesData, type EventsDeleteSeriesError, type EventsDeleteSeriesErrors, type EventsDeleteSeriesResponse, type EventsDeleteSeriesResponses, type EventsDiscardData, type EventsDiscardError, type EventsDiscardErrors, type EventsDiscardResponse, type EventsDiscardResponses, type EventsExecuteAutomationData, type EventsExecuteAutomationError, type EventsExecuteAutomationErrors, type EventsExecuteAutomationResponse, type EventsExecuteAutomationResponses, type EventsGetAutomationData, type EventsGetAutomationError, type EventsGetAutomationErrors, type EventsGetAutomationResponse, type EventsGetAutomationResponses, type EventsGetData, type EventsGetDraftData, type EventsGetDraftError, type EventsGetDraftErrors, type EventsGetDraftResponse, type EventsGetDraftResponses, type EventsGetError, type EventsGetErrors, type EventsGetManagerData, type EventsGetManagerError, type EventsGetManagerErrors, type EventsGetManagerResponse, type EventsGetManagerResponses, type EventsGetResponse, type EventsGetResponses, type EventsGetSeriesData, type EventsGetSeriesError, type EventsGetSeriesErrors, type EventsGetSeriesResponse, type EventsGetSeriesResponses, type EventsInviteManagerData, type EventsInviteManagerError, type EventsInviteManagerErrors, type EventsInviteManagerResponse, type EventsInviteManagerResponses, type EventsInviteSeriesManagerData, type EventsInviteSeriesManagerError, type EventsInviteSeriesManagerErrors, type EventsInviteSeriesManagerResponse, type EventsInviteSeriesManagerResponses, type EventsListAttendeesData, type EventsListAttendeesError, type EventsListAttendeesErrors, type EventsListAttendeesResponse, type EventsListAttendeesResponses, type EventsListAutomationExecutionsData, type EventsListAutomationExecutionsError, type EventsListAutomationExecutionsErrors, type EventsListAutomationExecutionsResponse, type EventsListAutomationExecutionsResponses, type EventsListAutomationsData, type EventsListAutomationsError, type EventsListAutomationsErrors, type EventsListAutomationsResponse, type EventsListAutomationsResponses, type EventsListData, type EventsListDocumentsData, type EventsListDocumentsError, type EventsListDocumentsErrors, type EventsListDocumentsResponse, type EventsListDocumentsResponses, type EventsListError, type EventsListErrors, type EventsListLinksData, type EventsListLinksError, type EventsListLinksErrors, type EventsListLinksResponse, type EventsListLinksResponses, type EventsListManagersData, type EventsListManagersError, type EventsListManagersErrors, type EventsListManagersResponse, type EventsListManagersResponses, type EventsListMilestonesData, type EventsListMilestonesError, type EventsListMilestonesErrors, type EventsListMilestonesResponse, type EventsListMilestonesResponses, type EventsListOccurrencesData, type EventsListOccurrencesError, type EventsListOccurrencesErrors, type EventsListOccurrencesResponse, type EventsListOccurrencesResponses, type EventsListPendingManagerInvitesData, type EventsListPendingManagerInvitesError, type EventsListPendingManagerInvitesErrors, type EventsListPendingManagerInvitesResponse, type EventsListPendingManagerInvitesResponses, type EventsListResponse, type EventsListResponses, type EventsListSpacesData, type EventsListSpacesError, type EventsListSpacesErrors, type EventsListSpacesResponse, type EventsListSpacesResponses, type EventsManagerPermissionsData, type EventsManagerPermissionsError, type EventsManagerPermissionsErrors, type EventsManagerPermissionsResponse, type EventsManagerPermissionsResponses, type EventsPatchData, type EventsPatchError, type EventsPatchErrors, type EventsPatchMilestoneLifecycleData, type EventsPatchMilestoneLifecycleError, type EventsPatchMilestoneLifecycleErrors, type EventsPatchMilestoneLifecycleResponse, type EventsPatchMilestoneLifecycleResponses, type EventsPatchResponse, type EventsPatchResponses, type EventsPatchSeriesData, type EventsPatchSeriesError, type EventsPatchSeriesErrors, type EventsPatchSeriesResponse, type EventsPatchSeriesResponses, type EventsPublishData, type EventsPublishError, type EventsPublishErrors, type EventsPublishResponse, type EventsPublishResponses, type EventsPublishSeriesData, type EventsPublishSeriesError, type EventsPublishSeriesErrors, type EventsPublishSeriesResponse, type EventsPublishSeriesResponses, type EventsRemoveAttendeeData, type EventsRemoveAttendeeError, type EventsRemoveAttendeeErrors, type EventsRemoveAttendeeResponse, type EventsRemoveAttendeeResponses, type EventsRemoveDocumentData, type EventsRemoveDocumentError, type EventsRemoveDocumentErrors, type EventsRemoveDocumentResponse, type EventsRemoveDocumentResponses, type EventsRemoveLinkData, type EventsRemoveLinkError, type EventsRemoveLinkErrors, type EventsRemoveLinkResponse, type EventsRemoveLinkResponses, type EventsRemoveManagerData, type EventsRemoveManagerError, type EventsRemoveManagerErrors, type EventsRemoveManagerResponse, type EventsRemoveManagerResponses, type EventsRemoveMilestoneData, type EventsRemoveMilestoneError, type EventsRemoveMilestoneErrors, type EventsRemoveMilestoneResponse, type EventsRemoveMilestoneResponses, type EventsRemoveSpaceData, type EventsRemoveSpaceError, type EventsRemoveSpaceErrors, type EventsRemoveSpaceResponse, type EventsRemoveSpaceResponses, type EventsStartEditData, type EventsStartEditError, type EventsStartEditErrors, type EventsStartEditResponse, type EventsStartEditResponses, type EventsUpdateAttendeeStatusData, type EventsUpdateAttendeeStatusError, type EventsUpdateAttendeeStatusErrors, type EventsUpdateAttendeeStatusResponse, type EventsUpdateAttendeeStatusResponses, type EventsUpdateAutomationData, type EventsUpdateAutomationError, type EventsUpdateAutomationErrors, type EventsUpdateAutomationResponse, type EventsUpdateAutomationResponses, type EventsUpdateData, type EventsUpdateError, type EventsUpdateErrors, type EventsUpdateManagerData, type EventsUpdateManagerError, type EventsUpdateManagerErrors, type EventsUpdateManagerResponse, type EventsUpdateManagerResponses, type EventsUpdateMilestoneData, type EventsUpdateMilestoneError, type EventsUpdateMilestoneErrors, type EventsUpdateMilestoneResponse, type EventsUpdateMilestoneResponses, type EventsUpdateResponse, type EventsUpdateResponses, type EventsUploadCoverData, type EventsUploadCoverError, type EventsUploadCoverErrors, type EventsUploadCoverResponse, type EventsUploadCoverResponses, type ExecuteAutomationResponse, type ExecuteAutomationResponseWritable, type ExecuteOutputBody, type ExecuteOutputBodyWritable, type Execution, type FavoriteInputBody, type FavoriteInputBodyWritable, type IntegrationField, type IntegrationFieldUpsert, type IntegrationFieldUpsertWritable, type IntegrationFieldWritable, Integrations, type IntegrationsZitadelWebhookData, type IntegrationsZitadelWebhookError, type IntegrationsZitadelWebhookErrors, type IntegrationsZitadelWebhookResponses, type Invite, type InviteEventManagerInputBody, type InviteEventManagerInputBodyWritable, type InviteSeriesManagerInputBody, type InviteSeriesManagerInputBodyWritable, type InviteSpaceManagerInputBody, type InviteSpaceManagerInputBodyWritable, type InviteWritable, Invites, Linebundle, type LinebundleOptions, type ListIntegrationFieldsOutputBody, type ListIntegrationFieldsOutputBodyWritable, type ListInvitesOutputBody, type ListInvitesOutputBodyWritable, type ListOrgsOutputBody, type ListOrgsOutputBodyWritable, type ListOutputBody, type ListOutputBodyWritable, type ListPendingEventManagerInvitesOutputBody, type ListPendingEventManagerInvitesOutputBodyWritable, type ListPendingManagerInvitesOutputBody, type ListPendingManagerInvitesOutputBodyWritable, type ListRolesOutputBody, type ListRolesOutputBodyWritable, type ListSpaceParentsOutputBody, type ListSpaceParentsOutputBodyWritable, type LivenessData, type LivenessError, type LivenessErrors, type LivenessOutputBody, type LivenessOutputBodyWritable, type LivenessResponse, type LivenessResponses, Me, type Member, type MemberWritable, type Milestone, type MilestoneDetail, type MilestoneEventSummary, type MilestoneWritable, type NewCredentialView, type NewCredentialViewWritable, type Options$1 as Options, type Options as Options2, type OptionsWritable, type Organization, type OrganizationWritable, Organizations, type OrganizationsArchiveData, type OrganizationsArchiveError, type OrganizationsArchiveErrors, type OrganizationsArchiveResponse, type OrganizationsArchiveResponses, type OrganizationsCreateData, type OrganizationsCreateError, type OrganizationsCreateErrors, type OrganizationsCreateResponse, type OrganizationsCreateResponses, type OrganizationsGetData, type OrganizationsGetError, type OrganizationsGetErrors, type OrganizationsGetResponse, type OrganizationsGetResponses, type OrganizationsInvitesCreateData, type OrganizationsInvitesCreateError, type OrganizationsInvitesCreateErrors, type OrganizationsInvitesCreateResponse, type OrganizationsInvitesCreateResponses, type OrganizationsInvitesDeleteData, type OrganizationsInvitesDeleteError, type OrganizationsInvitesDeleteErrors, type OrganizationsInvitesDeleteResponse, type OrganizationsInvitesDeleteResponses, type OrganizationsInvitesListData, type OrganizationsInvitesListError, type OrganizationsInvitesListErrors, type OrganizationsInvitesListResponse, type OrganizationsInvitesListResponses, type OrganizationsListData, type OrganizationsListError, type OrganizationsListErrors, type OrganizationsListResponse, type OrganizationsListResponses, type OrganizationsUpdateData, type OrganizationsUpdateError, type OrganizationsUpdateErrors, type OrganizationsUpdateResponse, type OrganizationsUpdateResponses, type Overview, type OverviewActivity, type OverviewEvent, type OverviewSpace, type OverviewWritable, type PagedBodyAnnouncement, type PagedBodyAnnouncementWritable, type PagedBodyAttendeeDetail, type PagedBodyAttendeeDetailWritable, type PagedBodyContact, type PagedBodyContactWritable, type PagedBodyEvent, type PagedBodyEventAutomationRule, type PagedBodyEventAutomationRuleWritable, type PagedBodyEventManager, type PagedBodyEventManagerWritable, type PagedBodyEventSpaceLinkDetail, type PagedBodyEventSpaceLinkDetailWritable, type PagedBodyEventWritable, type PagedBodyExecution, type PagedBodyExecutionWritable, type PagedBodyMember, type PagedBodyMemberWritable, type PagedBodyMilestoneDetail, type PagedBodyMilestoneDetailWritable, type PagedBodyPlace, type PagedBodyPlaceWritable, type PagedBodyRule, type PagedBodyRuleWritable, type PagedBodySpace, type PagedBodySpaceActivity, type PagedBodySpaceActivityWritable, type PagedBodySpaceAnnouncementDetail, type PagedBodySpaceAnnouncementDetailWritable, type PagedBodySpaceContactDetail, type PagedBodySpaceContactDetailWritable, type PagedBodySpaceEventLinkDetail, type PagedBodySpaceEventLinkDetailWritable, type PagedBodySpaceManager, type PagedBodySpaceManagerWritable, type PagedBodySpaceWritable, type PaginatedOccurrences, type PaginatedOccurrencesWritable, type PatchMilestoneInputBody, type PatchMilestoneInputBodyWritable, type PatchSeriesMilestoneInputBody, type PatchSeriesMilestoneInputBodyWritable, type PendingEventManagerInvite, type PendingManagerInvite, type PendingManagerInvitesOutputBody, type PendingManagerInvitesOutputBodyWritable, type PendingSeriesManagerInvite, Permissions, type PermissionsListRolesData, type PermissionsListRolesError, type PermissionsListRolesErrors, type PermissionsListRolesResponse, type PermissionsListRolesResponses, type Place, type PlaceWritable, Places, type PlacesArchiveData, type PlacesArchiveError, type PlacesArchiveErrors, type PlacesArchiveResponse, type PlacesArchiveResponses, type PlacesCreateData, type PlacesCreateError, type PlacesCreateErrors, type PlacesCreateResponse, type PlacesCreateResponses, type PlacesDeleteData, type PlacesDeleteError, type PlacesDeleteErrors, type PlacesDeleteResponse, type PlacesDeleteResponses, type PlacesGetData, type PlacesGetError, type PlacesGetErrors, type PlacesGetResponse, type PlacesGetResponses, type PlacesListData, type PlacesListError, type PlacesListErrors, type PlacesListResponse, type PlacesListResponses, type PlacesPublishData, type PlacesPublishError, type PlacesPublishErrors, type PlacesPublishResponse, type PlacesPublishResponses, type PlacesUpdateData, type PlacesUpdateError, type PlacesUpdateErrors, type PlacesUpdateResponse, type PlacesUpdateResponses, type Profile, type ProfileWritable, Profiles, type ProfilesGetData, type ProfilesGetError, type ProfilesGetErrors, type ProfilesGetResponse, type ProfilesGetResponses, type ProfilesListData, type ProfilesListError, type ProfilesListErrors, type ProfilesListResponse, type ProfilesListResponses, type ProfilesMeAcceptTermsData, type ProfilesMeAcceptTermsError, type ProfilesMeAcceptTermsErrors, type ProfilesMeAcceptTermsResponse, type ProfilesMeAcceptTermsResponses, type ProfilesMeGetData, type ProfilesMeGetError, type ProfilesMeGetErrors, type ProfilesMeGetResponse, type ProfilesMeGetResponses, type ProfilesMeUpdateData, type ProfilesMeUpdateError, type ProfilesMeUpdateErrors, type ProfilesMeUpdateResponse, type ProfilesMeUpdateResponses, type ProfilesSearchData, type ProfilesSearchError, type ProfilesSearchErrors, type ProfilesSearchResponse, type ProfilesSearchResponses, Public, type PublicAnnouncementsListData, type PublicAnnouncementsListError, type PublicAnnouncementsListErrors, type PublicAnnouncementsListResponse, type PublicAnnouncementsListResponses, type PublicEventSummary, type PublicEventsGetData, type PublicEventsGetError, type PublicEventsGetErrors, type PublicEventsGetResponse, type PublicEventsGetResponses, type PublicEventsListData, type PublicEventsListError, type PublicEventsListErrors, type PublicEventsListResponse, type PublicEventsListResponses, type PublicOrganizationSummary, type PublicOwnerSummary, type PublicPersonPreview, type PublicSpaceStats, type PublicSpaceSummary, type PublicSpaceTreeOutputBody, type PublicSpaceTreeOutputBodyWritable, type PublicSpacesGetData, type PublicSpacesGetError, type PublicSpacesGetErrors, type PublicSpacesGetResponse, type PublicSpacesGetResponses, type PublicSpacesListData, type PublicSpacesListError, type PublicSpacesListErrors, type PublicSpacesListResponse, type PublicSpacesListResponses, type PublicSpacesTreeData, type PublicSpacesTreeError, type PublicSpacesTreeErrors, type PublicSpacesTreeResponse, type PublicSpacesTreeResponses, type PublicViewerCapabilities, type PublishAnnouncementInputBody, type PublishAnnouncementInputBodyWritable, type Pulse, type ReadinessData, type ReadinessError, type ReadinessErrors, type ReadinessOutputBody, type ReadinessOutputBodyWritable, type ReadinessResponse, type ReadinessResponses, type ResourceStats, type RoleDefinition, type Rule, type RuleWritable, type Schedule, type ScheduleInput, type SearchOutputBody, type SearchOutputBodyWritable, Series, type SeriesAcceptManagerInviteData, type SeriesAcceptManagerInviteError, type SeriesAcceptManagerInviteErrors, type SeriesAcceptManagerInviteResponse, type SeriesAcceptManagerInviteResponses, type SeriesAddAttendeeData, type SeriesAddAttendeeError, type SeriesAddAttendeeErrors, type SeriesAddAttendeeResponse, type SeriesAddAttendeeResponses, type SeriesAddDocumentData, type SeriesAddDocumentError, type SeriesAddDocumentErrors, type SeriesAddDocumentResponses, type SeriesAddLinkData, type SeriesAddLinkError, type SeriesAddLinkErrors, type SeriesAddLinkResponse, type SeriesAddLinkResponses, type SeriesAddMilestoneData, type SeriesAddMilestoneError, type SeriesAddMilestoneErrors, type SeriesAddMilestoneResponse, type SeriesAddMilestoneResponses, type SeriesBulkAddAttendeesData, type SeriesBulkAddAttendeesError, type SeriesBulkAddAttendeesErrors, type SeriesBulkAddAttendeesResponse, type SeriesBulkAddAttendeesResponses, type SeriesCheckInAttendeeData, type SeriesCheckInAttendeeError, type SeriesCheckInAttendeeErrors, type SeriesCheckInAttendeeResponse, type SeriesCheckInAttendeeResponses, type SeriesGetByIdData, type SeriesGetByIdError, type SeriesGetByIdErrors, type SeriesGetByIdResponse, type SeriesGetByIdResponses, type SeriesListAttendeesData, type SeriesListAttendeesError, type SeriesListAttendeesErrors, type SeriesListAttendeesResponse, type SeriesListAttendeesResponses, type SeriesListDocumentsData, type SeriesListDocumentsError, type SeriesListDocumentsErrors, type SeriesListDocumentsResponse, type SeriesListDocumentsResponses, type SeriesListLinksData, type SeriesListLinksError, type SeriesListLinksErrors, type SeriesListLinksResponse, type SeriesListLinksResponses, type SeriesListMilestonesData, type SeriesListMilestonesError, type SeriesListMilestonesErrors, type SeriesListMilestonesResponse, type SeriesListMilestonesResponses, type SeriesListPendingManagerInvitesData, type SeriesListPendingManagerInvitesError, type SeriesListPendingManagerInvitesErrors, type SeriesListPendingManagerInvitesResponse, type SeriesListPendingManagerInvitesResponses, type SeriesPatch, type SeriesPatchMilestoneLifecycleData, type SeriesPatchMilestoneLifecycleError, type SeriesPatchMilestoneLifecycleErrors, type SeriesPatchMilestoneLifecycleResponse, type SeriesPatchMilestoneLifecycleResponses, type SeriesPatchWritable, type SeriesRemoveAttendeeData, type SeriesRemoveAttendeeError, type SeriesRemoveAttendeeErrors, type SeriesRemoveAttendeeResponse, type SeriesRemoveAttendeeResponses, type SeriesRemoveDocumentData, type SeriesRemoveDocumentError, type SeriesRemoveDocumentErrors, type SeriesRemoveDocumentResponse, type SeriesRemoveDocumentResponses, type SeriesRemoveLinkData, type SeriesRemoveLinkError, type SeriesRemoveLinkErrors, type SeriesRemoveLinkResponse, type SeriesRemoveLinkResponses, type SeriesRemoveMilestoneData, type SeriesRemoveMilestoneError, type SeriesRemoveMilestoneErrors, type SeriesRemoveMilestoneResponse, type SeriesRemoveMilestoneResponses, type SeriesUpdateAttendeeStatusData, type SeriesUpdateAttendeeStatusError, type SeriesUpdateAttendeeStatusErrors, type SeriesUpdateAttendeeStatusResponse, type SeriesUpdateAttendeeStatusResponses, type SeriesUpdateMilestoneData, type SeriesUpdateMilestoneError, type SeriesUpdateMilestoneErrors, type SeriesUpdateMilestoneResponse, type SeriesUpdateMilestoneResponses, type SeriesWithOccurrences, type SeriesWithOccurrencesWritable, type Space, type SpaceActivity, type SpaceActivityContributor, type SpaceActivityLogItem, type SpaceActivityLogResult, type SpaceActivityLogResultWritable, type SpaceActivitySummary, type SpaceAnalyticsAttentionRow, type SpaceAnalyticsEventRow, type SpaceAnalyticsGrowthPoint, type SpaceAnalyticsResult, type SpaceAnalyticsResultWritable, type SpaceAnalyticsSummary, type SpaceAnalyticsTrendPoint, type SpaceAnnouncementDetail, type SpaceAnnouncementDetailWritable, type SpaceContact, type SpaceContactDetail, type SpaceContactSummary, type SpaceContactWritable, type SpaceEventLink, type SpaceEventLinkDetail, type SpaceEventLinkWritable, type SpaceEventSummary, type SpaceManager, type SpaceManagerPermissionsOutputBody, type SpaceManagerPermissionsOutputBodyWritable, type SpaceManagerWritable, type SpacePage, type SpacePageWritable, type SpacePatch, type SpacePatchWritable, type SpaceSettings, type SpaceSettingsPatch, type SpaceSettingsPatchWritable, type SpaceSettingsWritable, type SpaceSummary, type SpaceTreeNode, type SpaceTreeOutputBody, type SpaceTreeOutputBodyWritable, type SpaceWritable, Spaces, Spaces2, type SpacesAcceptManagerInviteData, type SpacesAcceptManagerInviteError, type SpacesAcceptManagerInviteErrors, type SpacesAcceptManagerInviteResponse, type SpacesAcceptManagerInviteResponses, type SpacesAddAnnouncementData, type SpacesAddAnnouncementError, type SpacesAddAnnouncementErrors, type SpacesAddAnnouncementResponse, type SpacesAddAnnouncementResponses, type SpacesAddContactData, type SpacesAddContactError, type SpacesAddContactErrors, type SpacesAddContactResponse, type SpacesAddContactResponses, type SpacesAddEventData, type SpacesAddEventError, type SpacesAddEventErrors, type SpacesAddEventResponse, type SpacesAddEventResponses, type SpacesAddManagerData, type SpacesAddManagerError, type SpacesAddManagerErrors, type SpacesAddManagerResponse, type SpacesAddManagerResponses, type SpacesAddMemberData, type SpacesAddMemberError, type SpacesAddMemberErrors, type SpacesAddMemberResponse, type SpacesAddMemberResponses, type SpacesAddParentData, type SpacesAddParentError, type SpacesAddParentErrors, type SpacesAddParentResponse, type SpacesAddParentResponses, type SpacesArchiveData, type SpacesArchiveError, type SpacesArchiveErrors, type SpacesArchiveResponse, type SpacesArchiveResponses, type SpacesCreateData, type SpacesCreateError, type SpacesCreateErrors, type SpacesCreateResponse, type SpacesCreateResponses, type SpacesDeleteData, type SpacesDeleteError, type SpacesDeleteErrors, type SpacesDeleteResponse, type SpacesDeleteResponses, type SpacesDiscardData, type SpacesDiscardError, type SpacesDiscardErrors, type SpacesDiscardResponse, type SpacesDiscardResponses, type SpacesGetAnalyticsData, type SpacesGetAnalyticsError, type SpacesGetAnalyticsErrors, type SpacesGetAnalyticsResponse, type SpacesGetAnalyticsResponses, type SpacesGetData, type SpacesGetDraftData, type SpacesGetDraftError, type SpacesGetDraftErrors, type SpacesGetDraftResponse, type SpacesGetDraftResponses, type SpacesGetError, type SpacesGetErrors, type SpacesGetManagerData, type SpacesGetManagerError, type SpacesGetManagerErrors, type SpacesGetManagerResponse, type SpacesGetManagerResponses, type SpacesGetResponse, type SpacesGetResponses, type SpacesGetSettingsData, type SpacesGetSettingsError, type SpacesGetSettingsErrors, type SpacesGetSettingsResponse, type SpacesGetSettingsResponses, type SpacesInviteManagerData, type SpacesInviteManagerError, type SpacesInviteManagerErrors, type SpacesInviteManagerResponse, type SpacesInviteManagerResponses, type SpacesListActivityData, type SpacesListActivityError, type SpacesListActivityErrors, type SpacesListActivityLogData, type SpacesListActivityLogError, type SpacesListActivityLogErrors, type SpacesListActivityLogResponse, type SpacesListActivityLogResponses, type SpacesListActivityResponse, type SpacesListActivityResponses, type SpacesListAnnouncementsData, type SpacesListAnnouncementsError, type SpacesListAnnouncementsErrors, type SpacesListAnnouncementsResponse, type SpacesListAnnouncementsResponses, type SpacesListChildrenData, type SpacesListChildrenError, type SpacesListChildrenErrors, type SpacesListChildrenResponse, type SpacesListChildrenResponses, type SpacesListContactsData, type SpacesListContactsError, type SpacesListContactsErrors, type SpacesListContactsResponse, type SpacesListContactsResponses, type SpacesListData, type SpacesListError, type SpacesListErrors, type SpacesListEventsData, type SpacesListEventsError, type SpacesListEventsErrors, type SpacesListEventsResponse, type SpacesListEventsResponses, type SpacesListManagersData, type SpacesListManagersError, type SpacesListManagersErrors, type SpacesListManagersResponse, type SpacesListManagersResponses, type SpacesListMembersData, type SpacesListMembersError, type SpacesListMembersErrors, type SpacesListMembersResponse, type SpacesListMembersResponses, type SpacesListParentsData, type SpacesListParentsError, type SpacesListParentsErrors, type SpacesListParentsResponse, type SpacesListParentsResponses, type SpacesListPendingManagerInvitesData, type SpacesListPendingManagerInvitesError, type SpacesListPendingManagerInvitesErrors, type SpacesListPendingManagerInvitesResponse, type SpacesListPendingManagerInvitesResponses, type SpacesListResponse, type SpacesListResponses, type SpacesManagerPermissionsData, type SpacesManagerPermissionsError, type SpacesManagerPermissionsErrors, type SpacesManagerPermissionsResponse, type SpacesManagerPermissionsResponses, type SpacesPatchData, type SpacesPatchError, type SpacesPatchErrors, type SpacesPatchResponse, type SpacesPatchResponses, type SpacesPatchSettingsData, type SpacesPatchSettingsError, type SpacesPatchSettingsErrors, type SpacesPatchSettingsResponse, type SpacesPatchSettingsResponses, type SpacesPublishData, type SpacesPublishError, type SpacesPublishErrors, type SpacesPublishResponse, type SpacesPublishResponses, type SpacesRemoveAnnouncementData, type SpacesRemoveAnnouncementError, type SpacesRemoveAnnouncementErrors, type SpacesRemoveAnnouncementResponse, type SpacesRemoveAnnouncementResponses, type SpacesRemoveContactData, type SpacesRemoveContactError, type SpacesRemoveContactErrors, type SpacesRemoveContactResponse, type SpacesRemoveContactResponses, type SpacesRemoveEventData, type SpacesRemoveEventError, type SpacesRemoveEventErrors, type SpacesRemoveEventResponse, type SpacesRemoveEventResponses, type SpacesRemoveManagerData, type SpacesRemoveManagerError, type SpacesRemoveManagerErrors, type SpacesRemoveManagerResponse, type SpacesRemoveManagerResponses, type SpacesRemoveMemberData, type SpacesRemoveMemberError, type SpacesRemoveMemberErrors, type SpacesRemoveMemberResponse, type SpacesRemoveMemberResponses, type SpacesRemoveParentData, type SpacesRemoveParentError, type SpacesRemoveParentErrors, type SpacesRemoveParentResponse, type SpacesRemoveParentResponses, type SpacesStartEditData, type SpacesStartEditError, type SpacesStartEditErrors, type SpacesStartEditResponse, type SpacesStartEditResponses, type SpacesTreeData, type SpacesTreeError, type SpacesTreeErrors, type SpacesTreeResponse, type SpacesTreeResponses, type SpacesUpdateData, type SpacesUpdateError, type SpacesUpdateErrors, type SpacesUpdateManagerData, type SpacesUpdateManagerError, type SpacesUpdateManagerErrors, type SpacesUpdateManagerResponse, type SpacesUpdateManagerResponses, type SpacesUpdateResponse, type SpacesUpdateResponses, type TriggerDefinition, type UpdateAttendeeStatusInputBody, type UpdateAttendeeStatusInputBodyWritable, type UpdateBookingInputBody, type UpdateBookingInputBodyWritable, type UpdateEventInputBody, type UpdateEventInputBodyWritable, type UpdateEventManagerInputBody, type UpdateEventManagerInputBodyWritable, type UpdateMeInputBody, type UpdateMeInputBodyWritable, type UpdateMilestoneInputBody, type UpdateMilestoneInputBodyWritable, type UpdateOrgBody, type UpdateOrgBodyWritable, type UpdatePlaceInputBody, type UpdatePlaceInputBodyWritable, type UpdateRuleInput, type UpdateRuleInputWritable, type UpdateSeriesAttendeeStatusInputBody, type UpdateSeriesAttendeeStatusInputBodyWritable, type UpdateSeriesMilestoneInputBody, type UpdateSeriesMilestoneInputBodyWritable, type UpdateSpaceInputBody, type UpdateSpaceInputBodyWritable, type UpdateSpaceManagerInputBody, type UpdateSpaceManagerInputBodyWritable, Zitadel, client, createLinebundle };
|
|
15224
|
+
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, 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 EventsParticipantsAddData, type EventsParticipantsAddError, type EventsParticipantsAddErrors, type EventsParticipantsAddResponse, type EventsParticipantsAddResponses, type EventsParticipantsListData, type EventsParticipantsListError, type EventsParticipantsListErrors, type EventsParticipantsListResponse, type EventsParticipantsListResponses, type EventsParticipantsRemoveData, type EventsParticipantsRemoveError, type EventsParticipantsRemoveErrors, type EventsParticipantsRemoveResponse, type EventsParticipantsRemoveResponses, 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 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 Participant, type ParticipantAddInputBody, type ParticipantAddInputBodyWritable, type ParticipantListOutputBody, type ParticipantListOutputBodyWritable, type ParticipantWritable, Participants, 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 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 };
|