@linebundle-sdk/ts 1.0.0-rc.11 → 1.0.0-rc.12
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 +661 -20
- package/esm/index.js +1277 -854
- package/esm/index.js.map +1 -1
- package/package.json +1 -1
package/esm/index.d.ts
CHANGED
|
@@ -284,14 +284,14 @@ interface ClientOptions$1 {
|
|
|
284
284
|
throwOnError?: boolean;
|
|
285
285
|
}
|
|
286
286
|
type MethodFn = <TData = unknown, TError = unknown, ThrowOnError extends boolean = false, TResponseStyle extends ResponseStyle = 'fields'>(options: Omit<RequestOptions<TData, TResponseStyle, ThrowOnError>, 'method'>) => RequestResult<TData, TError, ThrowOnError, TResponseStyle>;
|
|
287
|
-
type SseFn = <TData = unknown, TError = unknown, ThrowOnError extends boolean = false, TResponseStyle extends ResponseStyle = 'fields'>(options: Omit<RequestOptions<
|
|
287
|
+
type SseFn = <TData = unknown, TError = unknown, ThrowOnError extends boolean = false, TResponseStyle extends ResponseStyle = 'fields'>(options: Omit<RequestOptions<never, TResponseStyle, ThrowOnError>, 'method'>) => Promise<ServerSentEventsResult<TData, TError>>;
|
|
288
288
|
type RequestFn = <TData = unknown, TError = unknown, ThrowOnError extends boolean = false, TResponseStyle extends ResponseStyle = 'fields'>(options: Omit<RequestOptions<TData, TResponseStyle, ThrowOnError>, 'method'> & Pick<Required<RequestOptions<TData, TResponseStyle, ThrowOnError>>, 'method'>) => RequestResult<TData, TError, ThrowOnError, TResponseStyle>;
|
|
289
289
|
type BuildUrlFn = <TData extends {
|
|
290
290
|
body?: unknown;
|
|
291
291
|
path?: Record<string, unknown>;
|
|
292
292
|
query?: Record<string, unknown>;
|
|
293
293
|
url: string;
|
|
294
|
-
}>(options: TData & Options$
|
|
294
|
+
}>(options: TData & Options$2<TData>) => string;
|
|
295
295
|
type Client = Client$1<RequestFn, Config, MethodFn, BuildUrlFn, SseFn> & {
|
|
296
296
|
interceptors: Middleware<Request, Response, unknown, ResolvedRequestOptions>;
|
|
297
297
|
};
|
|
@@ -303,7 +303,7 @@ interface TDataShape {
|
|
|
303
303
|
url: string;
|
|
304
304
|
}
|
|
305
305
|
type OmitKeys<T, K> = Pick<T, Exclude<keyof T, K>>;
|
|
306
|
-
type Options$
|
|
306
|
+
type Options$2<TData extends TDataShape = TDataShape, ThrowOnError extends boolean = boolean, TResponse = unknown, TResponseStyle extends ResponseStyle = 'fields'> = OmitKeys<RequestOptions<TResponse, TResponseStyle, ThrowOnError>, 'body' | 'path' | 'query' | 'url'> & ([TData] extends [never] ? unknown : Omit<TData, 'url'>);
|
|
307
307
|
|
|
308
308
|
type ClientOptions = {
|
|
309
309
|
baseUrl: 'https://api.linebundle.com' | 'https://staging-api.linebundle.com' | (string & {});
|
|
@@ -326,15 +326,37 @@ type AddAttendeeInputBody = {
|
|
|
326
326
|
*/
|
|
327
327
|
status?: 'invited' | 'confirmed' | 'declined' | 'tentative' | 'checked_in';
|
|
328
328
|
};
|
|
329
|
+
type AddDocumentInputBody = {
|
|
330
|
+
/**
|
|
331
|
+
* A URL to the JSON Schema for this object.
|
|
332
|
+
*/
|
|
333
|
+
readonly $schema?: string;
|
|
334
|
+
};
|
|
329
335
|
type AddEventManagerInputBody = {
|
|
330
336
|
/**
|
|
331
337
|
* A URL to the JSON Schema for this object.
|
|
332
338
|
*/
|
|
333
339
|
readonly $schema?: string;
|
|
340
|
+
/**
|
|
341
|
+
* Override delivery channels (email/push/sms); service defaults apply if omitted
|
|
342
|
+
*/
|
|
343
|
+
channels?: Array<string> | null;
|
|
344
|
+
/**
|
|
345
|
+
* Custom message; omit to use the service default
|
|
346
|
+
*/
|
|
347
|
+
message?: string;
|
|
348
|
+
/**
|
|
349
|
+
* Send a notification to affected parties (default: false)
|
|
350
|
+
*/
|
|
351
|
+
notify?: boolean;
|
|
334
352
|
/**
|
|
335
353
|
* Permissions to grant
|
|
336
354
|
*/
|
|
337
355
|
permissions: Array<string> | null;
|
|
356
|
+
/**
|
|
357
|
+
* Notification priority: normal (default) or high
|
|
358
|
+
*/
|
|
359
|
+
priority?: string;
|
|
338
360
|
/**
|
|
339
361
|
* Profile ID of the manager
|
|
340
362
|
*/
|
|
@@ -403,10 +425,26 @@ type AddSpaceManagerInputBody = {
|
|
|
403
425
|
* A URL to the JSON Schema for this object.
|
|
404
426
|
*/
|
|
405
427
|
readonly $schema?: string;
|
|
428
|
+
/**
|
|
429
|
+
* Override delivery channels (email/push/sms); service defaults apply if omitted
|
|
430
|
+
*/
|
|
431
|
+
channels?: Array<string> | null;
|
|
432
|
+
/**
|
|
433
|
+
* Custom message; omit to use the service default
|
|
434
|
+
*/
|
|
435
|
+
message?: string;
|
|
436
|
+
/**
|
|
437
|
+
* Send a notification to affected parties (default: false)
|
|
438
|
+
*/
|
|
439
|
+
notify?: boolean;
|
|
406
440
|
/**
|
|
407
441
|
* Permissions to grant
|
|
408
442
|
*/
|
|
409
443
|
permissions: Array<string> | null;
|
|
444
|
+
/**
|
|
445
|
+
* Notification priority: normal (default) or high
|
|
446
|
+
*/
|
|
447
|
+
priority?: string;
|
|
410
448
|
/**
|
|
411
449
|
* Profile ID of the manager
|
|
412
450
|
*/
|
|
@@ -512,9 +550,9 @@ type Booking = {
|
|
|
512
550
|
*/
|
|
513
551
|
id: number;
|
|
514
552
|
/**
|
|
515
|
-
* Organization (tenant) ID
|
|
553
|
+
* Organization (tenant) ID; nil = personal context
|
|
516
554
|
*/
|
|
517
|
-
org_id
|
|
555
|
+
org_id?: string;
|
|
518
556
|
/**
|
|
519
557
|
* Place being reserved
|
|
520
558
|
*/
|
|
@@ -540,6 +578,44 @@ type Booking = {
|
|
|
540
578
|
*/
|
|
541
579
|
user_id: string;
|
|
542
580
|
};
|
|
581
|
+
type BulkAttendeeBody = {
|
|
582
|
+
/**
|
|
583
|
+
* A URL to the JSON Schema for this object.
|
|
584
|
+
*/
|
|
585
|
+
readonly $schema?: string;
|
|
586
|
+
/**
|
|
587
|
+
* List of contact UUIDs
|
|
588
|
+
*/
|
|
589
|
+
contact_ids: Array<string> | null;
|
|
590
|
+
/**
|
|
591
|
+
* Attendance status
|
|
592
|
+
*/
|
|
593
|
+
status?: 'invited' | 'confirmed' | 'declined' | 'tentative' | 'checked_in';
|
|
594
|
+
};
|
|
595
|
+
type BulkStatusBody = {
|
|
596
|
+
/**
|
|
597
|
+
* A URL to the JSON Schema for this object.
|
|
598
|
+
*/
|
|
599
|
+
readonly $schema?: string;
|
|
600
|
+
/**
|
|
601
|
+
* List of contact UUIDs
|
|
602
|
+
*/
|
|
603
|
+
contact_ids: Array<string> | null;
|
|
604
|
+
/**
|
|
605
|
+
* New status
|
|
606
|
+
*/
|
|
607
|
+
status: 'invited' | 'confirmed' | 'declined' | 'tentative' | 'checked_in';
|
|
608
|
+
};
|
|
609
|
+
type CalendarEventsOutputBody = {
|
|
610
|
+
/**
|
|
611
|
+
* A URL to the JSON Schema for this object.
|
|
612
|
+
*/
|
|
613
|
+
readonly $schema?: string;
|
|
614
|
+
/**
|
|
615
|
+
* Events overlapping the requested date range
|
|
616
|
+
*/
|
|
617
|
+
items: Array<Event> | null;
|
|
618
|
+
};
|
|
543
619
|
type CheckAvailabilityInputBody = {
|
|
544
620
|
/**
|
|
545
621
|
* A URL to the JSON Schema for this object.
|
|
@@ -562,6 +638,12 @@ type CheckAvailabilityInputBody = {
|
|
|
562
638
|
*/
|
|
563
639
|
start_dt: string;
|
|
564
640
|
};
|
|
641
|
+
type CheckInInputBody = {
|
|
642
|
+
/**
|
|
643
|
+
* A URL to the JSON Schema for this object.
|
|
644
|
+
*/
|
|
645
|
+
readonly $schema?: string;
|
|
646
|
+
};
|
|
565
647
|
type Contact = {
|
|
566
648
|
/**
|
|
567
649
|
* A URL to the JSON Schema for this object.
|
|
@@ -1070,7 +1152,7 @@ type Entry = {
|
|
|
1070
1152
|
metadata?: {
|
|
1071
1153
|
[key: string]: unknown;
|
|
1072
1154
|
};
|
|
1073
|
-
org_id
|
|
1155
|
+
org_id?: string;
|
|
1074
1156
|
resource_id: string;
|
|
1075
1157
|
resource_type: string;
|
|
1076
1158
|
user_agent?: string;
|
|
@@ -1214,10 +1296,6 @@ type Event = {
|
|
|
1214
1296
|
* Updated timestamp
|
|
1215
1297
|
*/
|
|
1216
1298
|
updated_at: string;
|
|
1217
|
-
/**
|
|
1218
|
-
* Vanity URL slug
|
|
1219
|
-
*/
|
|
1220
|
-
url_shortcut?: string;
|
|
1221
1299
|
/**
|
|
1222
1300
|
* Version counter, incremented on each publish
|
|
1223
1301
|
*/
|
|
@@ -1271,6 +1349,58 @@ type EventManagerPermissionsOutputBody = {
|
|
|
1271
1349
|
*/
|
|
1272
1350
|
permissions: Array<string> | null;
|
|
1273
1351
|
};
|
|
1352
|
+
type EventPatch = {
|
|
1353
|
+
/**
|
|
1354
|
+
* A URL to the JSON Schema for this object.
|
|
1355
|
+
*/
|
|
1356
|
+
readonly $schema?: string;
|
|
1357
|
+
/**
|
|
1358
|
+
* New venue address
|
|
1359
|
+
*/
|
|
1360
|
+
address?: string;
|
|
1361
|
+
/**
|
|
1362
|
+
* New description
|
|
1363
|
+
*/
|
|
1364
|
+
description?: string;
|
|
1365
|
+
/**
|
|
1366
|
+
* New end datetime (UTC)
|
|
1367
|
+
*/
|
|
1368
|
+
end_dt?: string;
|
|
1369
|
+
/**
|
|
1370
|
+
* Replace keyword list (omit to keep existing)
|
|
1371
|
+
*/
|
|
1372
|
+
keywords?: Array<string> | null;
|
|
1373
|
+
/**
|
|
1374
|
+
* New venue latitude
|
|
1375
|
+
*/
|
|
1376
|
+
latitude?: number;
|
|
1377
|
+
/**
|
|
1378
|
+
* New venue longitude
|
|
1379
|
+
*/
|
|
1380
|
+
longitude?: number;
|
|
1381
|
+
/**
|
|
1382
|
+
* Merge into event metadata (omit to keep existing)
|
|
1383
|
+
*/
|
|
1384
|
+
metadata?: {
|
|
1385
|
+
[key: string]: unknown;
|
|
1386
|
+
};
|
|
1387
|
+
/**
|
|
1388
|
+
* New start datetime (UTC)
|
|
1389
|
+
*/
|
|
1390
|
+
start_dt?: string;
|
|
1391
|
+
/**
|
|
1392
|
+
* New IANA timezone
|
|
1393
|
+
*/
|
|
1394
|
+
timezone?: string;
|
|
1395
|
+
/**
|
|
1396
|
+
* New title
|
|
1397
|
+
*/
|
|
1398
|
+
title?: string;
|
|
1399
|
+
/**
|
|
1400
|
+
* New visibility: 10=private, 20=members-only, 30=tenant, 40=public
|
|
1401
|
+
*/
|
|
1402
|
+
visibility?: number;
|
|
1403
|
+
};
|
|
1274
1404
|
type EventSpaceLink = {
|
|
1275
1405
|
/**
|
|
1276
1406
|
* A URL to the JSON Schema for this object.
|
|
@@ -1555,6 +1685,28 @@ type Milestone = {
|
|
|
1555
1685
|
*/
|
|
1556
1686
|
updated_at: string;
|
|
1557
1687
|
};
|
|
1688
|
+
type Options$1 = {
|
|
1689
|
+
/**
|
|
1690
|
+
* A URL to the JSON Schema for this object.
|
|
1691
|
+
*/
|
|
1692
|
+
readonly $schema?: string;
|
|
1693
|
+
/**
|
|
1694
|
+
* Override delivery channels (email/push/sms); service defaults apply if omitted
|
|
1695
|
+
*/
|
|
1696
|
+
channels?: Array<string> | null;
|
|
1697
|
+
/**
|
|
1698
|
+
* Custom message; omit to use the service default
|
|
1699
|
+
*/
|
|
1700
|
+
message?: string;
|
|
1701
|
+
/**
|
|
1702
|
+
* Send a notification to affected parties (default: false)
|
|
1703
|
+
*/
|
|
1704
|
+
notify?: boolean;
|
|
1705
|
+
/**
|
|
1706
|
+
* Notification priority: normal (default) or high
|
|
1707
|
+
*/
|
|
1708
|
+
priority?: string;
|
|
1709
|
+
};
|
|
1558
1710
|
type Organization = {
|
|
1559
1711
|
/**
|
|
1560
1712
|
* A URL to the JSON Schema for this object.
|
|
@@ -2307,6 +2459,32 @@ type SpaceManagerPermissionsOutputBody = {
|
|
|
2307
2459
|
*/
|
|
2308
2460
|
permissions: Array<string> | null;
|
|
2309
2461
|
};
|
|
2462
|
+
type SpacePatch = {
|
|
2463
|
+
/**
|
|
2464
|
+
* A URL to the JSON Schema for this object.
|
|
2465
|
+
*/
|
|
2466
|
+
readonly $schema?: string;
|
|
2467
|
+
/**
|
|
2468
|
+
* New description
|
|
2469
|
+
*/
|
|
2470
|
+
description?: string;
|
|
2471
|
+
/**
|
|
2472
|
+
* New order within parent
|
|
2473
|
+
*/
|
|
2474
|
+
position?: number;
|
|
2475
|
+
/**
|
|
2476
|
+
* New IANA timezone
|
|
2477
|
+
*/
|
|
2478
|
+
timezone?: string;
|
|
2479
|
+
/**
|
|
2480
|
+
* New title
|
|
2481
|
+
*/
|
|
2482
|
+
title?: string;
|
|
2483
|
+
/**
|
|
2484
|
+
* New visibility: 10=public, 20=tenant, 40=members-only
|
|
2485
|
+
*/
|
|
2486
|
+
visibility?: number;
|
|
2487
|
+
};
|
|
2310
2488
|
type SpaceSummary = {
|
|
2311
2489
|
/**
|
|
2312
2490
|
* Up to 3 active (ongoing/upcoming) events
|
|
@@ -2617,10 +2795,26 @@ type AddAttendeeInputBodyWritable = {
|
|
|
2617
2795
|
status?: 'invited' | 'confirmed' | 'declined' | 'tentative' | 'checked_in';
|
|
2618
2796
|
};
|
|
2619
2797
|
type AddEventManagerInputBodyWritable = {
|
|
2798
|
+
/**
|
|
2799
|
+
* Override delivery channels (email/push/sms); service defaults apply if omitted
|
|
2800
|
+
*/
|
|
2801
|
+
channels?: Array<string> | null;
|
|
2802
|
+
/**
|
|
2803
|
+
* Custom message; omit to use the service default
|
|
2804
|
+
*/
|
|
2805
|
+
message?: string;
|
|
2806
|
+
/**
|
|
2807
|
+
* Send a notification to affected parties (default: false)
|
|
2808
|
+
*/
|
|
2809
|
+
notify?: boolean;
|
|
2620
2810
|
/**
|
|
2621
2811
|
* Permissions to grant
|
|
2622
2812
|
*/
|
|
2623
2813
|
permissions: Array<string> | null;
|
|
2814
|
+
/**
|
|
2815
|
+
* Notification priority: normal (default) or high
|
|
2816
|
+
*/
|
|
2817
|
+
priority?: string;
|
|
2624
2818
|
/**
|
|
2625
2819
|
* Profile ID of the manager
|
|
2626
2820
|
*/
|
|
@@ -2665,10 +2859,26 @@ type AddSpaceInputBodyWritable = {
|
|
|
2665
2859
|
space_id: number;
|
|
2666
2860
|
};
|
|
2667
2861
|
type AddSpaceManagerInputBodyWritable = {
|
|
2862
|
+
/**
|
|
2863
|
+
* Override delivery channels (email/push/sms); service defaults apply if omitted
|
|
2864
|
+
*/
|
|
2865
|
+
channels?: Array<string> | null;
|
|
2866
|
+
/**
|
|
2867
|
+
* Custom message; omit to use the service default
|
|
2868
|
+
*/
|
|
2869
|
+
message?: string;
|
|
2870
|
+
/**
|
|
2871
|
+
* Send a notification to affected parties (default: false)
|
|
2872
|
+
*/
|
|
2873
|
+
notify?: boolean;
|
|
2668
2874
|
/**
|
|
2669
2875
|
* Permissions to grant
|
|
2670
2876
|
*/
|
|
2671
2877
|
permissions: Array<string> | null;
|
|
2878
|
+
/**
|
|
2879
|
+
* Notification priority: normal (default) or high
|
|
2880
|
+
*/
|
|
2881
|
+
priority?: string;
|
|
2672
2882
|
/**
|
|
2673
2883
|
* Profile ID of the manager
|
|
2674
2884
|
*/
|
|
@@ -2758,9 +2968,9 @@ type BookingWritable = {
|
|
|
2758
2968
|
*/
|
|
2759
2969
|
id: number;
|
|
2760
2970
|
/**
|
|
2761
|
-
* Organization (tenant) ID
|
|
2971
|
+
* Organization (tenant) ID; nil = personal context
|
|
2762
2972
|
*/
|
|
2763
|
-
org_id
|
|
2973
|
+
org_id?: string;
|
|
2764
2974
|
/**
|
|
2765
2975
|
* Place being reserved
|
|
2766
2976
|
*/
|
|
@@ -2786,6 +2996,32 @@ type BookingWritable = {
|
|
|
2786
2996
|
*/
|
|
2787
2997
|
user_id: string;
|
|
2788
2998
|
};
|
|
2999
|
+
type BulkAttendeeBodyWritable = {
|
|
3000
|
+
/**
|
|
3001
|
+
* List of contact UUIDs
|
|
3002
|
+
*/
|
|
3003
|
+
contact_ids: Array<string> | null;
|
|
3004
|
+
/**
|
|
3005
|
+
* Attendance status
|
|
3006
|
+
*/
|
|
3007
|
+
status?: 'invited' | 'confirmed' | 'declined' | 'tentative' | 'checked_in';
|
|
3008
|
+
};
|
|
3009
|
+
type BulkStatusBodyWritable = {
|
|
3010
|
+
/**
|
|
3011
|
+
* List of contact UUIDs
|
|
3012
|
+
*/
|
|
3013
|
+
contact_ids: Array<string> | null;
|
|
3014
|
+
/**
|
|
3015
|
+
* New status
|
|
3016
|
+
*/
|
|
3017
|
+
status: 'invited' | 'confirmed' | 'declined' | 'tentative' | 'checked_in';
|
|
3018
|
+
};
|
|
3019
|
+
type CalendarEventsOutputBodyWritable = {
|
|
3020
|
+
/**
|
|
3021
|
+
* Events overlapping the requested date range
|
|
3022
|
+
*/
|
|
3023
|
+
items: Array<EventWritable> | null;
|
|
3024
|
+
};
|
|
2789
3025
|
type CheckAvailabilityInputBodyWritable = {
|
|
2790
3026
|
/**
|
|
2791
3027
|
* End datetime (RFC3339)
|
|
@@ -3371,10 +3607,6 @@ type EventWritable = {
|
|
|
3371
3607
|
* Updated timestamp
|
|
3372
3608
|
*/
|
|
3373
3609
|
updated_at: string;
|
|
3374
|
-
/**
|
|
3375
|
-
* Vanity URL slug
|
|
3376
|
-
*/
|
|
3377
|
-
url_shortcut?: string;
|
|
3378
3610
|
/**
|
|
3379
3611
|
* Version counter, incremented on each publish
|
|
3380
3612
|
*/
|
|
@@ -3420,6 +3652,54 @@ type EventManagerPermissionsOutputBodyWritable = {
|
|
|
3420
3652
|
*/
|
|
3421
3653
|
permissions: Array<string> | null;
|
|
3422
3654
|
};
|
|
3655
|
+
type EventPatchWritable = {
|
|
3656
|
+
/**
|
|
3657
|
+
* New venue address
|
|
3658
|
+
*/
|
|
3659
|
+
address?: string;
|
|
3660
|
+
/**
|
|
3661
|
+
* New description
|
|
3662
|
+
*/
|
|
3663
|
+
description?: string;
|
|
3664
|
+
/**
|
|
3665
|
+
* New end datetime (UTC)
|
|
3666
|
+
*/
|
|
3667
|
+
end_dt?: string;
|
|
3668
|
+
/**
|
|
3669
|
+
* Replace keyword list (omit to keep existing)
|
|
3670
|
+
*/
|
|
3671
|
+
keywords?: Array<string> | null;
|
|
3672
|
+
/**
|
|
3673
|
+
* New venue latitude
|
|
3674
|
+
*/
|
|
3675
|
+
latitude?: number;
|
|
3676
|
+
/**
|
|
3677
|
+
* New venue longitude
|
|
3678
|
+
*/
|
|
3679
|
+
longitude?: number;
|
|
3680
|
+
/**
|
|
3681
|
+
* Merge into event metadata (omit to keep existing)
|
|
3682
|
+
*/
|
|
3683
|
+
metadata?: {
|
|
3684
|
+
[key: string]: unknown;
|
|
3685
|
+
};
|
|
3686
|
+
/**
|
|
3687
|
+
* New start datetime (UTC)
|
|
3688
|
+
*/
|
|
3689
|
+
start_dt?: string;
|
|
3690
|
+
/**
|
|
3691
|
+
* New IANA timezone
|
|
3692
|
+
*/
|
|
3693
|
+
timezone?: string;
|
|
3694
|
+
/**
|
|
3695
|
+
* New title
|
|
3696
|
+
*/
|
|
3697
|
+
title?: string;
|
|
3698
|
+
/**
|
|
3699
|
+
* New visibility: 10=private, 20=members-only, 30=tenant, 40=public
|
|
3700
|
+
*/
|
|
3701
|
+
visibility?: number;
|
|
3702
|
+
};
|
|
3423
3703
|
type EventSpaceLinkWritable = {
|
|
3424
3704
|
/**
|
|
3425
3705
|
* Created timestamp
|
|
@@ -3595,6 +3875,24 @@ type MilestoneWritable = {
|
|
|
3595
3875
|
*/
|
|
3596
3876
|
updated_at: string;
|
|
3597
3877
|
};
|
|
3878
|
+
type OptionsWritable = {
|
|
3879
|
+
/**
|
|
3880
|
+
* Override delivery channels (email/push/sms); service defaults apply if omitted
|
|
3881
|
+
*/
|
|
3882
|
+
channels?: Array<string> | null;
|
|
3883
|
+
/**
|
|
3884
|
+
* Custom message; omit to use the service default
|
|
3885
|
+
*/
|
|
3886
|
+
message?: string;
|
|
3887
|
+
/**
|
|
3888
|
+
* Send a notification to affected parties (default: false)
|
|
3889
|
+
*/
|
|
3890
|
+
notify?: boolean;
|
|
3891
|
+
/**
|
|
3892
|
+
* Notification priority: normal (default) or high
|
|
3893
|
+
*/
|
|
3894
|
+
priority?: string;
|
|
3895
|
+
};
|
|
3598
3896
|
type OrganizationWritable = {
|
|
3599
3897
|
/**
|
|
3600
3898
|
* Allow public resource visibility
|
|
@@ -4200,6 +4498,28 @@ type SpaceManagerPermissionsOutputBodyWritable = {
|
|
|
4200
4498
|
*/
|
|
4201
4499
|
permissions: Array<string> | null;
|
|
4202
4500
|
};
|
|
4501
|
+
type SpacePatchWritable = {
|
|
4502
|
+
/**
|
|
4503
|
+
* New description
|
|
4504
|
+
*/
|
|
4505
|
+
description?: string;
|
|
4506
|
+
/**
|
|
4507
|
+
* New order within parent
|
|
4508
|
+
*/
|
|
4509
|
+
position?: number;
|
|
4510
|
+
/**
|
|
4511
|
+
* New IANA timezone
|
|
4512
|
+
*/
|
|
4513
|
+
timezone?: string;
|
|
4514
|
+
/**
|
|
4515
|
+
* New title
|
|
4516
|
+
*/
|
|
4517
|
+
title?: string;
|
|
4518
|
+
/**
|
|
4519
|
+
* New visibility: 10=public, 20=tenant, 40=members-only
|
|
4520
|
+
*/
|
|
4521
|
+
visibility?: number;
|
|
4522
|
+
};
|
|
4203
4523
|
type UpdateAttendeeStatusInputBodyWritable = {
|
|
4204
4524
|
/**
|
|
4205
4525
|
* New status
|
|
@@ -5113,6 +5433,43 @@ type EventsCreateResponses = {
|
|
|
5113
5433
|
201: Event;
|
|
5114
5434
|
};
|
|
5115
5435
|
type EventsCreateResponse = EventsCreateResponses[keyof EventsCreateResponses];
|
|
5436
|
+
type EventsCalendarData = {
|
|
5437
|
+
body?: never;
|
|
5438
|
+
path?: never;
|
|
5439
|
+
query: {
|
|
5440
|
+
/**
|
|
5441
|
+
* Range start date (YYYY-MM-DD)
|
|
5442
|
+
*/
|
|
5443
|
+
start_date: string;
|
|
5444
|
+
/**
|
|
5445
|
+
* Range end date (YYYY-MM-DD, inclusive)
|
|
5446
|
+
*/
|
|
5447
|
+
end_date: string;
|
|
5448
|
+
/**
|
|
5449
|
+
* Field to sort by (start_dt, title)
|
|
5450
|
+
*/
|
|
5451
|
+
sort_by?: string;
|
|
5452
|
+
/**
|
|
5453
|
+
* Sort direction
|
|
5454
|
+
*/
|
|
5455
|
+
sort_order?: 'asc' | 'desc';
|
|
5456
|
+
};
|
|
5457
|
+
url: '/api/v1/events/calendar';
|
|
5458
|
+
};
|
|
5459
|
+
type EventsCalendarErrors = {
|
|
5460
|
+
/**
|
|
5461
|
+
* Error
|
|
5462
|
+
*/
|
|
5463
|
+
default: ErrorModel;
|
|
5464
|
+
};
|
|
5465
|
+
type EventsCalendarError = EventsCalendarErrors[keyof EventsCalendarErrors];
|
|
5466
|
+
type EventsCalendarResponses = {
|
|
5467
|
+
/**
|
|
5468
|
+
* OK
|
|
5469
|
+
*/
|
|
5470
|
+
200: CalendarEventsOutputBody;
|
|
5471
|
+
};
|
|
5472
|
+
type EventsCalendarResponse = EventsCalendarResponses[keyof EventsCalendarResponses];
|
|
5116
5473
|
type EventsManagerPermissionsData = {
|
|
5117
5474
|
body?: never;
|
|
5118
5475
|
path?: never;
|
|
@@ -5183,6 +5540,31 @@ type EventsGetResponses = {
|
|
|
5183
5540
|
200: Event;
|
|
5184
5541
|
};
|
|
5185
5542
|
type EventsGetResponse = EventsGetResponses[keyof EventsGetResponses];
|
|
5543
|
+
type EventsPatchData = {
|
|
5544
|
+
body: EventPatchWritable;
|
|
5545
|
+
path: {
|
|
5546
|
+
/**
|
|
5547
|
+
* Event ID
|
|
5548
|
+
*/
|
|
5549
|
+
id: number;
|
|
5550
|
+
};
|
|
5551
|
+
query?: never;
|
|
5552
|
+
url: '/api/v1/events/{id}';
|
|
5553
|
+
};
|
|
5554
|
+
type EventsPatchErrors = {
|
|
5555
|
+
/**
|
|
5556
|
+
* Error
|
|
5557
|
+
*/
|
|
5558
|
+
default: ErrorModel;
|
|
5559
|
+
};
|
|
5560
|
+
type EventsPatchError = EventsPatchErrors[keyof EventsPatchErrors];
|
|
5561
|
+
type EventsPatchResponses = {
|
|
5562
|
+
/**
|
|
5563
|
+
* OK
|
|
5564
|
+
*/
|
|
5565
|
+
200: Event;
|
|
5566
|
+
};
|
|
5567
|
+
type EventsPatchResponse = EventsPatchResponses[keyof EventsPatchResponses];
|
|
5186
5568
|
type EventsUpdateData = {
|
|
5187
5569
|
body: UpdateEventInputBodyWritable;
|
|
5188
5570
|
path: {
|
|
@@ -5292,6 +5674,72 @@ type EventsAddAttendeeResponses = {
|
|
|
5292
5674
|
201: Attendee;
|
|
5293
5675
|
};
|
|
5294
5676
|
type EventsAddAttendeeResponse = EventsAddAttendeeResponses[keyof EventsAddAttendeeResponses];
|
|
5677
|
+
type EventsBulkRemoveAttendeesData = {
|
|
5678
|
+
body: BulkAttendeeBodyWritable;
|
|
5679
|
+
path: {
|
|
5680
|
+
id: number;
|
|
5681
|
+
};
|
|
5682
|
+
query?: never;
|
|
5683
|
+
url: '/api/v1/events/{id}/attendees/bulk';
|
|
5684
|
+
};
|
|
5685
|
+
type EventsBulkRemoveAttendeesErrors = {
|
|
5686
|
+
/**
|
|
5687
|
+
* Error
|
|
5688
|
+
*/
|
|
5689
|
+
default: ErrorModel;
|
|
5690
|
+
};
|
|
5691
|
+
type EventsBulkRemoveAttendeesError = EventsBulkRemoveAttendeesErrors[keyof EventsBulkRemoveAttendeesErrors];
|
|
5692
|
+
type EventsBulkRemoveAttendeesResponses = {
|
|
5693
|
+
/**
|
|
5694
|
+
* No Content
|
|
5695
|
+
*/
|
|
5696
|
+
204: void;
|
|
5697
|
+
};
|
|
5698
|
+
type EventsBulkRemoveAttendeesResponse = EventsBulkRemoveAttendeesResponses[keyof EventsBulkRemoveAttendeesResponses];
|
|
5699
|
+
type EventsBulkAddAttendeesData = {
|
|
5700
|
+
body: BulkAttendeeBodyWritable;
|
|
5701
|
+
path: {
|
|
5702
|
+
id: number;
|
|
5703
|
+
};
|
|
5704
|
+
query?: never;
|
|
5705
|
+
url: '/api/v1/events/{id}/attendees/bulk';
|
|
5706
|
+
};
|
|
5707
|
+
type EventsBulkAddAttendeesErrors = {
|
|
5708
|
+
/**
|
|
5709
|
+
* Error
|
|
5710
|
+
*/
|
|
5711
|
+
default: ErrorModel;
|
|
5712
|
+
};
|
|
5713
|
+
type EventsBulkAddAttendeesError = EventsBulkAddAttendeesErrors[keyof EventsBulkAddAttendeesErrors];
|
|
5714
|
+
type EventsBulkAddAttendeesResponses = {
|
|
5715
|
+
/**
|
|
5716
|
+
* No Content
|
|
5717
|
+
*/
|
|
5718
|
+
204: void;
|
|
5719
|
+
};
|
|
5720
|
+
type EventsBulkAddAttendeesResponse = EventsBulkAddAttendeesResponses[keyof EventsBulkAddAttendeesResponses];
|
|
5721
|
+
type EventsBulkUpdateAttendeeStatusData = {
|
|
5722
|
+
body: BulkStatusBodyWritable;
|
|
5723
|
+
path: {
|
|
5724
|
+
id: number;
|
|
5725
|
+
};
|
|
5726
|
+
query?: never;
|
|
5727
|
+
url: '/api/v1/events/{id}/attendees/bulk/status';
|
|
5728
|
+
};
|
|
5729
|
+
type EventsBulkUpdateAttendeeStatusErrors = {
|
|
5730
|
+
/**
|
|
5731
|
+
* Error
|
|
5732
|
+
*/
|
|
5733
|
+
default: ErrorModel;
|
|
5734
|
+
};
|
|
5735
|
+
type EventsBulkUpdateAttendeeStatusError = EventsBulkUpdateAttendeeStatusErrors[keyof EventsBulkUpdateAttendeeStatusErrors];
|
|
5736
|
+
type EventsBulkUpdateAttendeeStatusResponses = {
|
|
5737
|
+
/**
|
|
5738
|
+
* No Content
|
|
5739
|
+
*/
|
|
5740
|
+
204: void;
|
|
5741
|
+
};
|
|
5742
|
+
type EventsBulkUpdateAttendeeStatusResponse = EventsBulkUpdateAttendeeStatusResponses[keyof EventsBulkUpdateAttendeeStatusResponses];
|
|
5295
5743
|
type EventsRemoveAttendeeData = {
|
|
5296
5744
|
body?: never;
|
|
5297
5745
|
path: {
|
|
@@ -5350,6 +5798,57 @@ type EventsUpdateAttendeeStatusResponses = {
|
|
|
5350
5798
|
200: Attendee;
|
|
5351
5799
|
};
|
|
5352
5800
|
type EventsUpdateAttendeeStatusResponse = EventsUpdateAttendeeStatusResponses[keyof EventsUpdateAttendeeStatusResponses];
|
|
5801
|
+
type EventsCheckInAttendeeData = {
|
|
5802
|
+
body: CheckInInputBody;
|
|
5803
|
+
path: {
|
|
5804
|
+
id: number;
|
|
5805
|
+
contact_id: string;
|
|
5806
|
+
};
|
|
5807
|
+
query?: never;
|
|
5808
|
+
url: '/api/v1/events/{id}/attendees/{contact_id}/check-in';
|
|
5809
|
+
};
|
|
5810
|
+
type EventsCheckInAttendeeErrors = {
|
|
5811
|
+
/**
|
|
5812
|
+
* Error
|
|
5813
|
+
*/
|
|
5814
|
+
default: ErrorModel;
|
|
5815
|
+
};
|
|
5816
|
+
type EventsCheckInAttendeeError = EventsCheckInAttendeeErrors[keyof EventsCheckInAttendeeErrors];
|
|
5817
|
+
type EventsCheckInAttendeeResponses = {
|
|
5818
|
+
/**
|
|
5819
|
+
* No Content
|
|
5820
|
+
*/
|
|
5821
|
+
204: void;
|
|
5822
|
+
};
|
|
5823
|
+
type EventsCheckInAttendeeResponse = EventsCheckInAttendeeResponses[keyof EventsCheckInAttendeeResponses];
|
|
5824
|
+
type EventsUploadCoverData = {
|
|
5825
|
+
body: Blob | File;
|
|
5826
|
+
headers?: {
|
|
5827
|
+
'Content-Type'?: string;
|
|
5828
|
+
};
|
|
5829
|
+
path: {
|
|
5830
|
+
/**
|
|
5831
|
+
* Event ID
|
|
5832
|
+
*/
|
|
5833
|
+
id: number;
|
|
5834
|
+
};
|
|
5835
|
+
query?: never;
|
|
5836
|
+
url: '/api/v1/events/{id}/cover';
|
|
5837
|
+
};
|
|
5838
|
+
type EventsUploadCoverErrors = {
|
|
5839
|
+
/**
|
|
5840
|
+
* Error
|
|
5841
|
+
*/
|
|
5842
|
+
default: ErrorModel;
|
|
5843
|
+
};
|
|
5844
|
+
type EventsUploadCoverError = EventsUploadCoverErrors[keyof EventsUploadCoverErrors];
|
|
5845
|
+
type EventsUploadCoverResponses = {
|
|
5846
|
+
/**
|
|
5847
|
+
* OK
|
|
5848
|
+
*/
|
|
5849
|
+
200: Event;
|
|
5850
|
+
};
|
|
5851
|
+
type EventsUploadCoverResponse = EventsUploadCoverResponses[keyof EventsUploadCoverResponses];
|
|
5353
5852
|
type EventsDiscardData = {
|
|
5354
5853
|
body?: never;
|
|
5355
5854
|
path: {
|
|
@@ -5375,6 +5874,73 @@ type EventsDiscardResponses = {
|
|
|
5375
5874
|
204: void;
|
|
5376
5875
|
};
|
|
5377
5876
|
type EventsDiscardResponse = EventsDiscardResponses[keyof EventsDiscardResponses];
|
|
5877
|
+
type EventsListDocumentsData = {
|
|
5878
|
+
body?: never;
|
|
5879
|
+
path: {
|
|
5880
|
+
id: number;
|
|
5881
|
+
};
|
|
5882
|
+
query?: never;
|
|
5883
|
+
url: '/api/v1/events/{id}/documents';
|
|
5884
|
+
};
|
|
5885
|
+
type EventsListDocumentsErrors = {
|
|
5886
|
+
/**
|
|
5887
|
+
* Error
|
|
5888
|
+
*/
|
|
5889
|
+
default: ErrorModel;
|
|
5890
|
+
};
|
|
5891
|
+
type EventsListDocumentsError = EventsListDocumentsErrors[keyof EventsListDocumentsErrors];
|
|
5892
|
+
type EventsListDocumentsResponses = {
|
|
5893
|
+
/**
|
|
5894
|
+
* OK
|
|
5895
|
+
*/
|
|
5896
|
+
200: Array<string> | null;
|
|
5897
|
+
};
|
|
5898
|
+
type EventsListDocumentsResponse = EventsListDocumentsResponses[keyof EventsListDocumentsResponses];
|
|
5899
|
+
type EventsRemoveDocumentData = {
|
|
5900
|
+
body?: never;
|
|
5901
|
+
path: {
|
|
5902
|
+
id: number;
|
|
5903
|
+
document_id: string;
|
|
5904
|
+
};
|
|
5905
|
+
query?: never;
|
|
5906
|
+
url: '/api/v1/events/{id}/documents/{document_id}';
|
|
5907
|
+
};
|
|
5908
|
+
type EventsRemoveDocumentErrors = {
|
|
5909
|
+
/**
|
|
5910
|
+
* Error
|
|
5911
|
+
*/
|
|
5912
|
+
default: ErrorModel;
|
|
5913
|
+
};
|
|
5914
|
+
type EventsRemoveDocumentError = EventsRemoveDocumentErrors[keyof EventsRemoveDocumentErrors];
|
|
5915
|
+
type EventsRemoveDocumentResponses = {
|
|
5916
|
+
/**
|
|
5917
|
+
* No Content
|
|
5918
|
+
*/
|
|
5919
|
+
204: void;
|
|
5920
|
+
};
|
|
5921
|
+
type EventsRemoveDocumentResponse = EventsRemoveDocumentResponses[keyof EventsRemoveDocumentResponses];
|
|
5922
|
+
type EventsAddDocumentData = {
|
|
5923
|
+
body: AddDocumentInputBody;
|
|
5924
|
+
path: {
|
|
5925
|
+
id: number;
|
|
5926
|
+
document_id: string;
|
|
5927
|
+
};
|
|
5928
|
+
query?: never;
|
|
5929
|
+
url: '/api/v1/events/{id}/documents/{document_id}';
|
|
5930
|
+
};
|
|
5931
|
+
type EventsAddDocumentErrors = {
|
|
5932
|
+
/**
|
|
5933
|
+
* Error
|
|
5934
|
+
*/
|
|
5935
|
+
default: ErrorModel;
|
|
5936
|
+
};
|
|
5937
|
+
type EventsAddDocumentError = EventsAddDocumentErrors[keyof EventsAddDocumentErrors];
|
|
5938
|
+
type EventsAddDocumentResponses = {
|
|
5939
|
+
/**
|
|
5940
|
+
* Created
|
|
5941
|
+
*/
|
|
5942
|
+
201: unknown;
|
|
5943
|
+
};
|
|
5378
5944
|
type EventsGetDraftData = {
|
|
5379
5945
|
body?: never;
|
|
5380
5946
|
path: {
|
|
@@ -5689,7 +6255,7 @@ type EventsUpdateMilestoneResponses = {
|
|
|
5689
6255
|
};
|
|
5690
6256
|
type EventsUpdateMilestoneResponse = EventsUpdateMilestoneResponses[keyof EventsUpdateMilestoneResponses];
|
|
5691
6257
|
type EventsPublishData = {
|
|
5692
|
-
body?:
|
|
6258
|
+
body?: OptionsWritable;
|
|
5693
6259
|
path: {
|
|
5694
6260
|
/**
|
|
5695
6261
|
* Event ID
|
|
@@ -6751,6 +7317,31 @@ type SpacesGetResponses = {
|
|
|
6751
7317
|
200: Space;
|
|
6752
7318
|
};
|
|
6753
7319
|
type SpacesGetResponse = SpacesGetResponses[keyof SpacesGetResponses];
|
|
7320
|
+
type SpacesPatchData = {
|
|
7321
|
+
body: SpacePatchWritable;
|
|
7322
|
+
path: {
|
|
7323
|
+
/**
|
|
7324
|
+
* Space ID
|
|
7325
|
+
*/
|
|
7326
|
+
id: number;
|
|
7327
|
+
};
|
|
7328
|
+
query?: never;
|
|
7329
|
+
url: '/api/v1/spaces/{id}';
|
|
7330
|
+
};
|
|
7331
|
+
type SpacesPatchErrors = {
|
|
7332
|
+
/**
|
|
7333
|
+
* Error
|
|
7334
|
+
*/
|
|
7335
|
+
default: ErrorModel;
|
|
7336
|
+
};
|
|
7337
|
+
type SpacesPatchError = SpacesPatchErrors[keyof SpacesPatchErrors];
|
|
7338
|
+
type SpacesPatchResponses = {
|
|
7339
|
+
/**
|
|
7340
|
+
* OK
|
|
7341
|
+
*/
|
|
7342
|
+
200: Space;
|
|
7343
|
+
};
|
|
7344
|
+
type SpacesPatchResponse = SpacesPatchResponses[keyof SpacesPatchResponses];
|
|
6754
7345
|
type SpacesUpdateData = {
|
|
6755
7346
|
body: UpdateSpaceInputBodyWritable;
|
|
6756
7347
|
path: {
|
|
@@ -7287,7 +7878,7 @@ type SpacesRemoveMemberResponses = {
|
|
|
7287
7878
|
};
|
|
7288
7879
|
type SpacesRemoveMemberResponse = SpacesRemoveMemberResponses[keyof SpacesRemoveMemberResponses];
|
|
7289
7880
|
type SpacesPublishData = {
|
|
7290
|
-
body?:
|
|
7881
|
+
body?: OptionsWritable;
|
|
7291
7882
|
path: {
|
|
7292
7883
|
/**
|
|
7293
7884
|
* Space ID
|
|
@@ -7363,7 +7954,7 @@ type ReadinessResponse = ReadinessResponses[keyof ReadinessResponses];
|
|
|
7363
7954
|
type CreateClientConfig<T extends ClientOptions$1 = ClientOptions> = (override?: Config<ClientOptions$1 & T>) => Config<Required<ClientOptions$1> & T>;
|
|
7364
7955
|
declare const client: Client;
|
|
7365
7956
|
|
|
7366
|
-
type Options<TData extends TDataShape = TDataShape, ThrowOnError extends boolean = boolean> = Options$
|
|
7957
|
+
type Options<TData extends TDataShape = TDataShape, ThrowOnError extends boolean = boolean, TResponse = unknown> = Options$2<TData, ThrowOnError, TResponse> & {
|
|
7367
7958
|
/**
|
|
7368
7959
|
* You can provide a client instance returned by `createClient()` instead of
|
|
7369
7960
|
* individual options. This might be also useful if you want to implement a
|
|
@@ -7509,6 +8100,10 @@ declare class Events extends HeyApiClient {
|
|
|
7509
8100
|
* Create an event
|
|
7510
8101
|
*/
|
|
7511
8102
|
create<ThrowOnError extends boolean = false>(options: Options<EventsCreateData, ThrowOnError>): RequestResult<EventsCreateResponses, EventsCreateErrors, ThrowOnError, "fields">;
|
|
8103
|
+
/**
|
|
8104
|
+
* List events overlapping a date range (calendar view)
|
|
8105
|
+
*/
|
|
8106
|
+
calendar<ThrowOnError extends boolean = false>(options: Options<EventsCalendarData, ThrowOnError>): RequestResult<EventsCalendarResponses, EventsCalendarErrors, ThrowOnError, "fields">;
|
|
7512
8107
|
/**
|
|
7513
8108
|
* List all assignable event manager permissions
|
|
7514
8109
|
*/
|
|
@@ -7521,6 +8116,12 @@ declare class Events extends HeyApiClient {
|
|
|
7521
8116
|
* Get an event
|
|
7522
8117
|
*/
|
|
7523
8118
|
get<ThrowOnError extends boolean = false>(options: Options<EventsGetData, ThrowOnError>): RequestResult<EventsGetResponses, EventsGetErrors, ThrowOnError, "fields">;
|
|
8119
|
+
/**
|
|
8120
|
+
* Partial-update an event (merge-patch)
|
|
8121
|
+
*
|
|
8122
|
+
* Updates only the fields present in the request body. Absent fields are left unchanged. Allows individual form sections to auto-save without submitting the full event payload.
|
|
8123
|
+
*/
|
|
8124
|
+
patch<ThrowOnError extends boolean = false>(options: Options<EventsPatchData, ThrowOnError>): RequestResult<EventsPatchResponses, EventsPatchErrors, ThrowOnError, "fields">;
|
|
7524
8125
|
/**
|
|
7525
8126
|
* Update an event (draft only)
|
|
7526
8127
|
*/
|
|
@@ -7537,6 +8138,18 @@ declare class Events extends HeyApiClient {
|
|
|
7537
8138
|
* Add an attendee to an event
|
|
7538
8139
|
*/
|
|
7539
8140
|
addAttendee<ThrowOnError extends boolean = false>(options: Options<EventsAddAttendeeData, ThrowOnError>): RequestResult<EventsAddAttendeeResponses, EventsAddAttendeeErrors, ThrowOnError, "fields">;
|
|
8141
|
+
/**
|
|
8142
|
+
* Bulk remove attendees from an event
|
|
8143
|
+
*/
|
|
8144
|
+
bulkRemoveAttendees<ThrowOnError extends boolean = false>(options: Options<EventsBulkRemoveAttendeesData, ThrowOnError>): RequestResult<EventsBulkRemoveAttendeesResponses, EventsBulkRemoveAttendeesErrors, ThrowOnError, "fields">;
|
|
8145
|
+
/**
|
|
8146
|
+
* Bulk add attendees to an event
|
|
8147
|
+
*/
|
|
8148
|
+
bulkAddAttendees<ThrowOnError extends boolean = false>(options: Options<EventsBulkAddAttendeesData, ThrowOnError>): RequestResult<EventsBulkAddAttendeesResponses, EventsBulkAddAttendeesErrors, ThrowOnError, "fields">;
|
|
8149
|
+
/**
|
|
8150
|
+
* Bulk update attendee statuses
|
|
8151
|
+
*/
|
|
8152
|
+
bulkUpdateAttendeeStatus<ThrowOnError extends boolean = false>(options: Options<EventsBulkUpdateAttendeeStatusData, ThrowOnError>): RequestResult<EventsBulkUpdateAttendeeStatusResponses, EventsBulkUpdateAttendeeStatusErrors, ThrowOnError, "fields">;
|
|
7540
8153
|
/**
|
|
7541
8154
|
* Remove an attendee from an event
|
|
7542
8155
|
*/
|
|
@@ -7545,10 +8158,30 @@ declare class Events extends HeyApiClient {
|
|
|
7545
8158
|
* Update attendee status
|
|
7546
8159
|
*/
|
|
7547
8160
|
updateAttendeeStatus<ThrowOnError extends boolean = false>(options: Options<EventsUpdateAttendeeStatusData, ThrowOnError>): RequestResult<EventsUpdateAttendeeStatusResponses, EventsUpdateAttendeeStatusErrors, ThrowOnError, "fields">;
|
|
8161
|
+
/**
|
|
8162
|
+
* Check in an attendee
|
|
8163
|
+
*/
|
|
8164
|
+
checkInAttendee<ThrowOnError extends boolean = false>(options: Options<EventsCheckInAttendeeData, ThrowOnError>): RequestResult<EventsCheckInAttendeeResponses, EventsCheckInAttendeeErrors, ThrowOnError, "fields">;
|
|
8165
|
+
/**
|
|
8166
|
+
* Upload event cover image (multipart/form-data, field: file)
|
|
8167
|
+
*/
|
|
8168
|
+
uploadCover<ThrowOnError extends boolean = false>(options: Options<EventsUploadCoverData, ThrowOnError>): RequestResult<EventsUploadCoverResponses, EventsUploadCoverErrors, ThrowOnError, "fields">;
|
|
7548
8169
|
/**
|
|
7549
8170
|
* Discard draft, keep published version
|
|
7550
8171
|
*/
|
|
7551
8172
|
discard<ThrowOnError extends boolean = false>(options: Options<EventsDiscardData, ThrowOnError>): RequestResult<EventsDiscardResponses, EventsDiscardErrors, ThrowOnError, "fields">;
|
|
8173
|
+
/**
|
|
8174
|
+
* List documents linked to an event
|
|
8175
|
+
*/
|
|
8176
|
+
listDocuments<ThrowOnError extends boolean = false>(options: Options<EventsListDocumentsData, ThrowOnError>): RequestResult<EventsListDocumentsResponses, EventsListDocumentsErrors, ThrowOnError, "fields">;
|
|
8177
|
+
/**
|
|
8178
|
+
* Unlink a document from an event
|
|
8179
|
+
*/
|
|
8180
|
+
removeDocument<ThrowOnError extends boolean = false>(options: Options<EventsRemoveDocumentData, ThrowOnError>): RequestResult<EventsRemoveDocumentResponses, EventsRemoveDocumentErrors, ThrowOnError, "fields">;
|
|
8181
|
+
/**
|
|
8182
|
+
* Link a document to an event
|
|
8183
|
+
*/
|
|
8184
|
+
addDocument<ThrowOnError extends boolean = false>(options: Options<EventsAddDocumentData, ThrowOnError>): RequestResult<EventsAddDocumentResponses, EventsAddDocumentErrors, ThrowOnError, "fields">;
|
|
7552
8185
|
/**
|
|
7553
8186
|
* Get draft version of an event
|
|
7554
8187
|
*/
|
|
@@ -7595,6 +8228,8 @@ declare class Events extends HeyApiClient {
|
|
|
7595
8228
|
updateMilestone<ThrowOnError extends boolean = false>(options: Options<EventsUpdateMilestoneData, ThrowOnError>): RequestResult<EventsUpdateMilestoneResponses, EventsUpdateMilestoneErrors, ThrowOnError, "fields">;
|
|
7596
8229
|
/**
|
|
7597
8230
|
* Publish an event
|
|
8231
|
+
*
|
|
8232
|
+
* Promotes a draft event to published. Optionally sends a notification to the creator by providing a JSON body with notification options.
|
|
7598
8233
|
*/
|
|
7599
8234
|
publish<ThrowOnError extends boolean = false>(options: Options<EventsPublishData, ThrowOnError>): RequestResult<EventsPublishResponses, EventsPublishErrors, ThrowOnError, "fields">;
|
|
7600
8235
|
/**
|
|
@@ -7803,6 +8438,10 @@ declare class Spaces2 extends HeyApiClient {
|
|
|
7803
8438
|
* Get a space
|
|
7804
8439
|
*/
|
|
7805
8440
|
get<ThrowOnError extends boolean = false>(options: Options<SpacesGetData, ThrowOnError>): RequestResult<SpacesGetResponses, SpacesGetErrors, ThrowOnError, "fields">;
|
|
8441
|
+
/**
|
|
8442
|
+
* Partially update a space (draft only, merge-patch)
|
|
8443
|
+
*/
|
|
8444
|
+
patch<ThrowOnError extends boolean = false>(options: Options<SpacesPatchData, ThrowOnError>): RequestResult<SpacesPatchResponses, SpacesPatchErrors, ThrowOnError, "fields">;
|
|
7806
8445
|
/**
|
|
7807
8446
|
* Update a space (draft only)
|
|
7808
8447
|
*/
|
|
@@ -7881,6 +8520,8 @@ declare class Spaces2 extends HeyApiClient {
|
|
|
7881
8520
|
removeMember<ThrowOnError extends boolean = false>(options: Options<SpacesRemoveMemberData, ThrowOnError>): RequestResult<SpacesRemoveMemberResponses, SpacesRemoveMemberErrors, ThrowOnError, "fields">;
|
|
7882
8521
|
/**
|
|
7883
8522
|
* Publish a space
|
|
8523
|
+
*
|
|
8524
|
+
* Promotes a draft space to published. Optionally sends a notification to the creator by providing a JSON body with notification options.
|
|
7884
8525
|
*/
|
|
7885
8526
|
publish<ThrowOnError extends boolean = false>(options: Options<SpacesPublishData, ThrowOnError>): RequestResult<SpacesPublishResponses, SpacesPublishErrors, ThrowOnError, "fields">;
|
|
7886
8527
|
}
|
|
@@ -7934,4 +8575,4 @@ declare class Linebundle extends HeyApiClient {
|
|
|
7934
8575
|
get spaces(): Spaces2;
|
|
7935
8576
|
}
|
|
7936
8577
|
|
|
7937
|
-
export { type AddAttendeeInputBody, type AddAttendeeInputBodyWritable, type AddEventManagerInputBody, type AddEventManagerInputBodyWritable, type AddMemberInputBody, type AddMemberInputBodyWritable, type AddMilestoneInputBody, type AddMilestoneInputBodyWritable, type AddSpaceContactInputBody, type AddSpaceContactInputBodyWritable, type AddSpaceEventInputBody, type AddSpaceEventInputBodyWritable, type AddSpaceInputBody, type AddSpaceInputBodyWritable, type AddSpaceManagerInputBody, type AddSpaceManagerInputBodyWritable, Analytics, type AnalyticsCountsData, type AnalyticsCountsError, type AnalyticsCountsErrors, type AnalyticsCountsResponse, type AnalyticsCountsResponses, type AnalyticsDashboardData, type AnalyticsDashboardError, type AnalyticsDashboardErrors, type AnalyticsDashboardResponse, type AnalyticsDashboardResponses, type Attendee, 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, 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 AutomationListExecutionsData, type AutomationListExecutionsError, type AutomationListExecutionsErrors, type AutomationListExecutionsResponse, type AutomationListExecutionsResponses, type AutomationListRulesData, type AutomationListRulesError, type AutomationListRulesErrors, type AutomationListRulesResponse, type AutomationListRulesResponses, 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 CheckAvailabilityInputBody, type CheckAvailabilityInputBodyWritable, type ClientOptions, type Contact, type ContactBody, type ContactBodyWritable, type ContactWritable, Contacts, type ContactsCreateData, type ContactsCreateError, type ContactsCreateErrors, type ContactsCreateResponse, type ContactsCreateResponses, type ContactsDeleteData, type ContactsDeleteError, type ContactsDeleteErrors, type ContactsDeleteResponse, type ContactsDeleteResponses, type ContactsGetData, type ContactsGetError, type ContactsGetErrors, type ContactsGetResponse, type ContactsGetResponses, type ContactsListData, type ContactsListError, type ContactsListErrors, type ContactsListResponse, type ContactsListResponses, type ContactsSearchData, type ContactsSearchError, type ContactsSearchErrors, type ContactsSearchResponse, type ContactsSearchResponses, type ContactsToggleFavoriteData, type ContactsToggleFavoriteError, type ContactsToggleFavoriteErrors, type ContactsToggleFavoriteResponse, type ContactsToggleFavoriteResponses, type ContactsUpdateData, type ContactsUpdateError, type ContactsUpdateErrors, type ContactsUpdateResponse, type ContactsUpdateResponses, type Counts, type CountsWritable, type CreateBookingInputBody, type CreateBookingInputBodyWritable, type CreateClientConfig, type CreateEventInputBody, type CreateEventInputBodyWritable, type CreateInviteBody, type CreateInviteBodyWritable, type CreateOrgBody, type CreateOrgBodyWritable, type CreatePlaceInputBody, type CreatePlaceInputBodyWritable, type CreateRuleInput, type CreateRuleInputWritable, type CreateSpaceInputBody, type CreateSpaceInputBodyWritable, type CustomRole, type CustomRoleWritable, type Dashboard, type DashboardWritable, type Entry, type ErrorDetail, type ErrorModel, type ErrorModelWritable, type Event, type EventManager, type EventManagerPermissionsOutputBody, type EventManagerPermissionsOutputBodyWritable, type EventManagerWritable, type EventSpaceLink, type EventSpaceLinkWritable, type EventSummary, type EventWritable, Events, Events2, type EventsAddAttendeeData, type EventsAddAttendeeError, type EventsAddAttendeeErrors, type EventsAddAttendeeResponse, type EventsAddAttendeeResponses, 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 EventsCreateData, type EventsCreateError, type EventsCreateErrors, type EventsCreateResponse, type EventsCreateResponses, type EventsDeleteData, type EventsDeleteError, type EventsDeleteErrors, type EventsDeleteResponse, type EventsDeleteResponses, type EventsDiscardData, type EventsDiscardError, type EventsDiscardErrors, type EventsDiscardResponse, type EventsDiscardResponses, 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 EventsListAttendeesData, type EventsListAttendeesError, type EventsListAttendeesErrors, type EventsListAttendeesResponse, type EventsListAttendeesResponses, type EventsListData, type EventsListError, type EventsListErrors, type EventsListManagersData, type EventsListManagersError, type EventsListManagersErrors, type EventsListManagersResponse, type EventsListManagersResponses, type EventsListMilestonesData, type EventsListMilestonesError, type EventsListMilestonesErrors, type EventsListMilestonesResponse, type EventsListMilestonesResponses, 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 EventsPublishData, type EventsPublishError, type EventsPublishErrors, type EventsPublishResponse, type EventsPublishResponses, type EventsRemoveAttendeeData, type EventsRemoveAttendeeError, type EventsRemoveAttendeeErrors, type EventsRemoveAttendeeResponse, type EventsRemoveAttendeeResponses, 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 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 ExecuteOutputBody, type ExecuteOutputBodyWritable, type Execution, type FavoriteInputBody, type FavoriteInputBodyWritable, Integrations, type IntegrationsZitadelWebhookData, type IntegrationsZitadelWebhookError, type IntegrationsZitadelWebhookErrors, type IntegrationsZitadelWebhookResponses, type Invite, type InviteWritable, Invites, Linebundle, type ListInvitesOutputBody, type ListInvitesOutputBodyWritable, type ListOrgsOutputBody, type ListOrgsOutputBodyWritable, type ListOutputBody, type ListOutputBodyWritable, type ListPermissionsOutputBody, type ListPermissionsOutputBodyWritable, type ListRolesOutputBody, type ListRolesOutputBodyWritable, type LivenessData, type LivenessError, type LivenessErrors, type LivenessOutputBody, type LivenessOutputBodyWritable, type LivenessResponse, type LivenessResponses, Me, type Member, type MemberWritable, type Milestone, type MilestoneWritable, type Options, 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 PagedBodyAttendee, type PagedBodyAttendeeWritable, type PagedBodyContact, type PagedBodyContactWritable, type PagedBodyEvent, type PagedBodyEventManager, type PagedBodyEventManagerWritable, type PagedBodyEventSpaceLink, type PagedBodyEventSpaceLinkWritable, type PagedBodyEventWritable, type PagedBodyExecution, type PagedBodyExecutionWritable, type PagedBodyMember, type PagedBodyMemberWritable, type PagedBodyMilestone, type PagedBodyMilestoneWritable, type PagedBodyPlace, type PagedBodyPlaceWritable, type PagedBodyRule, type PagedBodyRuleWritable, type PagedBodySpace, type PagedBodySpaceContact, type PagedBodySpaceContactWritable, type PagedBodySpaceEventLink, type PagedBodySpaceEventLinkWritable, type PagedBodySpaceManager, type PagedBodySpaceManagerWritable, type PagedBodySpaceWritable, Permissions, type PermissionsListData, type PermissionsListError, type PermissionsListErrors, type PermissionsListResponse, type PermissionsListResponses, 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 PublicEventsGetData, type PublicEventsGetError, type PublicEventsGetErrors, type PublicEventsGetResponse, type PublicEventsGetResponses, type PublicEventsListData, type PublicEventsListError, type PublicEventsListErrors, type PublicEventsListResponse, type PublicEventsListResponses, type PublicSpacesGetData, type PublicSpacesGetError, type PublicSpacesGetErrors, type PublicSpacesGetResponse, type PublicSpacesGetResponses, type PublicSpacesListData, type PublicSpacesListError, type PublicSpacesListErrors, type PublicSpacesListResponse, type PublicSpacesListResponses, type Pulse, type ReadinessData, type ReadinessError, type ReadinessErrors, type ReadinessOutputBody, type ReadinessOutputBodyWritable, type ReadinessResponse, type ReadinessResponses, type ResourceStats, type RoleBody, type RoleBodyWritable, Roles, type RolesCreateData, type RolesCreateError, type RolesCreateErrors, type RolesCreateResponse, type RolesCreateResponses, type RolesDeleteData, type RolesDeleteError, type RolesDeleteErrors, type RolesDeleteResponse, type RolesDeleteResponses, type RolesGetData, type RolesGetError, type RolesGetErrors, type RolesGetResponse, type RolesGetResponses, type RolesListData, type RolesListError, type RolesListErrors, type RolesListResponse, type RolesListResponses, type RolesUpdateData, type RolesUpdateError, type RolesUpdateErrors, type RolesUpdateResponse, type RolesUpdateResponses, type Rule, type RuleWritable, type Schedule, type ScheduleInput, type SearchOutputBody, type SearchOutputBodyWritable, type Space, type SpaceContact, type SpaceContactWritable, type SpaceEventLink, type SpaceEventLinkWritable, type SpaceManager, type SpaceManagerPermissionsOutputBody, type SpaceManagerPermissionsOutputBodyWritable, type SpaceManagerWritable, type SpaceSummary, type SpaceWritable, Spaces, Spaces2, type SpacesAddContactData, type SpacesAddContactError, type SpacesAddContactErrors, type SpacesAddContactResponse, type SpacesAddContactResponses, type SpacesAddEventData, type SpacesAddEventError, type SpacesAddEventErrors, type SpacesAddEventResponse, type SpacesAddEventResponses, type SpacesAddManagerData, type SpacesAddManagerError, type SpacesAddManagerErrors, type SpacesAddManagerResponse, type SpacesAddManagerResponses, type SpacesAddMemberData, type SpacesAddMemberError, type SpacesAddMemberErrors, type SpacesAddMemberResponse, type SpacesAddMemberResponses, type SpacesArchiveData, type SpacesArchiveError, type SpacesArchiveErrors, type SpacesArchiveResponse, type SpacesArchiveResponses, type SpacesCreateData, type SpacesCreateError, type SpacesCreateErrors, type SpacesCreateResponse, type SpacesCreateResponses, type SpacesDeleteData, type SpacesDeleteError, type SpacesDeleteErrors, type SpacesDeleteResponse, type SpacesDeleteResponses, type SpacesDiscardData, type SpacesDiscardError, type SpacesDiscardErrors, type SpacesDiscardResponse, type SpacesDiscardResponses, type 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 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 SpacesListResponse, type SpacesListResponses, type SpacesManagerPermissionsData, type SpacesManagerPermissionsError, type SpacesManagerPermissionsErrors, type SpacesManagerPermissionsResponse, type SpacesManagerPermissionsResponses, type SpacesPublishData, type SpacesPublishError, type SpacesPublishErrors, type SpacesPublishResponse, type SpacesPublishResponses, type SpacesRemoveContactData, type SpacesRemoveContactError, type SpacesRemoveContactErrors, type SpacesRemoveContactResponse, type SpacesRemoveContactResponses, type SpacesRemoveEventData, type SpacesRemoveEventError, type SpacesRemoveEventErrors, type SpacesRemoveEventResponse, type SpacesRemoveEventResponses, type SpacesRemoveManagerData, type SpacesRemoveManagerError, type SpacesRemoveManagerErrors, type SpacesRemoveManagerResponse, type SpacesRemoveManagerResponses, type SpacesRemoveMemberData, type SpacesRemoveMemberError, type SpacesRemoveMemberErrors, type SpacesRemoveMemberResponse, type SpacesRemoveMemberResponses, type SpacesStartEditData, type SpacesStartEditError, type SpacesStartEditErrors, type SpacesStartEditResponse, type SpacesStartEditResponses, type SpacesUpdateData, type SpacesUpdateError, type SpacesUpdateErrors, type SpacesUpdateManagerData, type SpacesUpdateManagerError, type SpacesUpdateManagerErrors, type SpacesUpdateManagerResponse, type SpacesUpdateManagerResponses, type SpacesUpdateResponse, type SpacesUpdateResponses, type 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 UpdateRoleBody, type UpdateRoleBodyWritable, type UpdateRuleInput, type UpdateRuleInputWritable, type UpdateSpaceInputBody, type UpdateSpaceInputBodyWritable, type UpdateSpaceManagerInputBody, type UpdateSpaceManagerInputBodyWritable, Zitadel, client };
|
|
8578
|
+
export { type AddAttendeeInputBody, type AddAttendeeInputBodyWritable, type AddDocumentInputBody, type AddEventManagerInputBody, type AddEventManagerInputBodyWritable, type AddMemberInputBody, type AddMemberInputBodyWritable, type AddMilestoneInputBody, type AddMilestoneInputBodyWritable, type AddSpaceContactInputBody, type AddSpaceContactInputBodyWritable, type AddSpaceEventInputBody, type AddSpaceEventInputBodyWritable, type AddSpaceInputBody, type AddSpaceInputBodyWritable, type AddSpaceManagerInputBody, type AddSpaceManagerInputBodyWritable, Analytics, type AnalyticsCountsData, type AnalyticsCountsError, type AnalyticsCountsErrors, type AnalyticsCountsResponse, type AnalyticsCountsResponses, type AnalyticsDashboardData, type AnalyticsDashboardError, type AnalyticsDashboardErrors, type AnalyticsDashboardResponse, type AnalyticsDashboardResponses, type Attendee, 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, 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 AutomationListExecutionsData, type AutomationListExecutionsError, type AutomationListExecutionsErrors, type AutomationListExecutionsResponse, type AutomationListExecutionsResponses, type AutomationListRulesData, type AutomationListRulesError, type AutomationListRulesErrors, type AutomationListRulesResponse, type AutomationListRulesResponses, 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 ClientOptions, type Contact, type ContactBody, type ContactBodyWritable, type ContactWritable, Contacts, type ContactsCreateData, type ContactsCreateError, type ContactsCreateErrors, type ContactsCreateResponse, type ContactsCreateResponses, type ContactsDeleteData, type ContactsDeleteError, type ContactsDeleteErrors, type ContactsDeleteResponse, type ContactsDeleteResponses, type ContactsGetData, type ContactsGetError, type ContactsGetErrors, type ContactsGetResponse, type ContactsGetResponses, type ContactsListData, type ContactsListError, type ContactsListErrors, type ContactsListResponse, type ContactsListResponses, type ContactsSearchData, type ContactsSearchError, type ContactsSearchErrors, type ContactsSearchResponse, type ContactsSearchResponses, type ContactsToggleFavoriteData, type ContactsToggleFavoriteError, type ContactsToggleFavoriteErrors, type ContactsToggleFavoriteResponse, type ContactsToggleFavoriteResponses, type ContactsUpdateData, type ContactsUpdateError, type ContactsUpdateErrors, type ContactsUpdateResponse, type ContactsUpdateResponses, type Counts, type CountsWritable, type CreateBookingInputBody, type CreateBookingInputBodyWritable, type CreateClientConfig, type CreateEventInputBody, type CreateEventInputBodyWritable, type CreateInviteBody, type CreateInviteBodyWritable, type CreateOrgBody, type CreateOrgBodyWritable, type CreatePlaceInputBody, type CreatePlaceInputBodyWritable, type CreateRuleInput, type CreateRuleInputWritable, type CreateSpaceInputBody, type CreateSpaceInputBodyWritable, type CustomRole, type CustomRoleWritable, type Dashboard, type DashboardWritable, type Entry, type ErrorDetail, type ErrorModel, type ErrorModelWritable, type Event, type EventManager, type EventManagerPermissionsOutputBody, type EventManagerPermissionsOutputBodyWritable, type EventManagerWritable, type EventPatch, type EventPatchWritable, type EventSpaceLink, type EventSpaceLinkWritable, type EventSummary, type EventWritable, Events, Events2, type EventsAddAttendeeData, type EventsAddAttendeeError, type EventsAddAttendeeErrors, type EventsAddAttendeeResponse, type EventsAddAttendeeResponses, type EventsAddDocumentData, type EventsAddDocumentError, type EventsAddDocumentErrors, type EventsAddDocumentResponses, 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 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 EventsCreateData, type EventsCreateError, type EventsCreateErrors, type EventsCreateResponse, type EventsCreateResponses, type EventsDeleteData, type EventsDeleteError, type EventsDeleteErrors, type EventsDeleteResponse, type EventsDeleteResponses, type EventsDiscardData, type EventsDiscardError, type EventsDiscardErrors, type EventsDiscardResponse, type EventsDiscardResponses, 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 EventsListAttendeesData, type EventsListAttendeesError, type EventsListAttendeesErrors, type EventsListAttendeesResponse, type EventsListAttendeesResponses, type EventsListData, type EventsListDocumentsData, type EventsListDocumentsError, type EventsListDocumentsErrors, type EventsListDocumentsResponse, type EventsListDocumentsResponses, type EventsListError, type EventsListErrors, type EventsListManagersData, type EventsListManagersError, type EventsListManagersErrors, type EventsListManagersResponse, type EventsListManagersResponses, type EventsListMilestonesData, type EventsListMilestonesError, type EventsListMilestonesErrors, type EventsListMilestonesResponse, type EventsListMilestonesResponses, 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 EventsPatchResponse, type EventsPatchResponses, type EventsPublishData, type EventsPublishError, type EventsPublishErrors, type EventsPublishResponse, type EventsPublishResponses, type EventsRemoveAttendeeData, type EventsRemoveAttendeeError, type EventsRemoveAttendeeErrors, type EventsRemoveAttendeeResponse, type EventsRemoveAttendeeResponses, type EventsRemoveDocumentData, type EventsRemoveDocumentError, type EventsRemoveDocumentErrors, type EventsRemoveDocumentResponse, type EventsRemoveDocumentResponses, 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 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 ExecuteOutputBody, type ExecuteOutputBodyWritable, type Execution, type FavoriteInputBody, type FavoriteInputBodyWritable, Integrations, type IntegrationsZitadelWebhookData, type IntegrationsZitadelWebhookError, type IntegrationsZitadelWebhookErrors, type IntegrationsZitadelWebhookResponses, type Invite, type InviteWritable, Invites, Linebundle, type ListInvitesOutputBody, type ListInvitesOutputBodyWritable, type ListOrgsOutputBody, type ListOrgsOutputBodyWritable, type ListOutputBody, type ListOutputBodyWritable, type ListPermissionsOutputBody, type ListPermissionsOutputBodyWritable, type ListRolesOutputBody, type ListRolesOutputBodyWritable, type LivenessData, type LivenessError, type LivenessErrors, type LivenessOutputBody, type LivenessOutputBodyWritable, type LivenessResponse, type LivenessResponses, Me, type Member, type MemberWritable, type Milestone, type MilestoneWritable, 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 PagedBodyAttendee, type PagedBodyAttendeeWritable, type PagedBodyContact, type PagedBodyContactWritable, type PagedBodyEvent, type PagedBodyEventManager, type PagedBodyEventManagerWritable, type PagedBodyEventSpaceLink, type PagedBodyEventSpaceLinkWritable, type PagedBodyEventWritable, type PagedBodyExecution, type PagedBodyExecutionWritable, type PagedBodyMember, type PagedBodyMemberWritable, type PagedBodyMilestone, type PagedBodyMilestoneWritable, type PagedBodyPlace, type PagedBodyPlaceWritable, type PagedBodyRule, type PagedBodyRuleWritable, type PagedBodySpace, type PagedBodySpaceContact, type PagedBodySpaceContactWritable, type PagedBodySpaceEventLink, type PagedBodySpaceEventLinkWritable, type PagedBodySpaceManager, type PagedBodySpaceManagerWritable, type PagedBodySpaceWritable, Permissions, type PermissionsListData, type PermissionsListError, type PermissionsListErrors, type PermissionsListResponse, type PermissionsListResponses, 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 PublicEventsGetData, type PublicEventsGetError, type PublicEventsGetErrors, type PublicEventsGetResponse, type PublicEventsGetResponses, type PublicEventsListData, type PublicEventsListError, type PublicEventsListErrors, type PublicEventsListResponse, type PublicEventsListResponses, type PublicSpacesGetData, type PublicSpacesGetError, type PublicSpacesGetErrors, type PublicSpacesGetResponse, type PublicSpacesGetResponses, type PublicSpacesListData, type PublicSpacesListError, type PublicSpacesListErrors, type PublicSpacesListResponse, type PublicSpacesListResponses, type Pulse, type ReadinessData, type ReadinessError, type ReadinessErrors, type ReadinessOutputBody, type ReadinessOutputBodyWritable, type ReadinessResponse, type ReadinessResponses, type ResourceStats, type RoleBody, type RoleBodyWritable, Roles, type RolesCreateData, type RolesCreateError, type RolesCreateErrors, type RolesCreateResponse, type RolesCreateResponses, type RolesDeleteData, type RolesDeleteError, type RolesDeleteErrors, type RolesDeleteResponse, type RolesDeleteResponses, type RolesGetData, type RolesGetError, type RolesGetErrors, type RolesGetResponse, type RolesGetResponses, type RolesListData, type RolesListError, type RolesListErrors, type RolesListResponse, type RolesListResponses, type RolesUpdateData, type RolesUpdateError, type RolesUpdateErrors, type RolesUpdateResponse, type RolesUpdateResponses, type Rule, type RuleWritable, type Schedule, type ScheduleInput, type SearchOutputBody, type SearchOutputBodyWritable, type Space, type SpaceContact, type SpaceContactWritable, type SpaceEventLink, type SpaceEventLinkWritable, type SpaceManager, type SpaceManagerPermissionsOutputBody, type SpaceManagerPermissionsOutputBodyWritable, type SpaceManagerWritable, type SpacePatch, type SpacePatchWritable, type SpaceSummary, type SpaceWritable, Spaces, Spaces2, type SpacesAddContactData, type SpacesAddContactError, type SpacesAddContactErrors, type SpacesAddContactResponse, type SpacesAddContactResponses, type SpacesAddEventData, type SpacesAddEventError, type SpacesAddEventErrors, type SpacesAddEventResponse, type SpacesAddEventResponses, type SpacesAddManagerData, type SpacesAddManagerError, type SpacesAddManagerErrors, type SpacesAddManagerResponse, type SpacesAddManagerResponses, type SpacesAddMemberData, type SpacesAddMemberError, type SpacesAddMemberErrors, type SpacesAddMemberResponse, type SpacesAddMemberResponses, type SpacesArchiveData, type SpacesArchiveError, type SpacesArchiveErrors, type SpacesArchiveResponse, type SpacesArchiveResponses, type SpacesCreateData, type SpacesCreateError, type SpacesCreateErrors, type SpacesCreateResponse, type SpacesCreateResponses, type SpacesDeleteData, type SpacesDeleteError, type SpacesDeleteErrors, type SpacesDeleteResponse, type SpacesDeleteResponses, type SpacesDiscardData, type SpacesDiscardError, type SpacesDiscardErrors, type SpacesDiscardResponse, type SpacesDiscardResponses, type 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 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 SpacesListResponse, type SpacesListResponses, type SpacesManagerPermissionsData, type SpacesManagerPermissionsError, type SpacesManagerPermissionsErrors, type SpacesManagerPermissionsResponse, type SpacesManagerPermissionsResponses, type SpacesPatchData, type SpacesPatchError, type SpacesPatchErrors, type SpacesPatchResponse, type SpacesPatchResponses, type SpacesPublishData, type SpacesPublishError, type SpacesPublishErrors, type SpacesPublishResponse, type SpacesPublishResponses, type SpacesRemoveContactData, type SpacesRemoveContactError, type SpacesRemoveContactErrors, type SpacesRemoveContactResponse, type SpacesRemoveContactResponses, type SpacesRemoveEventData, type SpacesRemoveEventError, type SpacesRemoveEventErrors, type SpacesRemoveEventResponse, type SpacesRemoveEventResponses, type SpacesRemoveManagerData, type SpacesRemoveManagerError, type SpacesRemoveManagerErrors, type SpacesRemoveManagerResponse, type SpacesRemoveManagerResponses, type SpacesRemoveMemberData, type SpacesRemoveMemberError, type SpacesRemoveMemberErrors, type SpacesRemoveMemberResponse, type SpacesRemoveMemberResponses, type SpacesStartEditData, type SpacesStartEditError, type SpacesStartEditErrors, type SpacesStartEditResponse, type SpacesStartEditResponses, type SpacesUpdateData, type SpacesUpdateError, type SpacesUpdateErrors, type SpacesUpdateManagerData, type SpacesUpdateManagerError, type SpacesUpdateManagerErrors, type SpacesUpdateManagerResponse, type SpacesUpdateManagerResponses, type SpacesUpdateResponse, type SpacesUpdateResponses, type 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 UpdateRoleBody, type UpdateRoleBodyWritable, type UpdateRuleInput, type UpdateRuleInputWritable, type UpdateSpaceInputBody, type UpdateSpaceInputBodyWritable, type UpdateSpaceManagerInputBody, type UpdateSpaceManagerInputBodyWritable, Zitadel, client };
|