@zilfu/sdk 0.1.6 → 0.1.10
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/dist/index.cjs +104 -18
- package/dist/index.cjs.map +1 -1
- package/dist/index.d.cts +530 -73
- package/dist/index.d.ts +530 -73
- package/dist/index.js +104 -18
- package/dist/index.js.map +1 -1
- package/package.json +1 -2
package/dist/index.d.ts
CHANGED
|
@@ -313,7 +313,7 @@ type OmitKeys<T, K> = Pick<T, Exclude<keyof T, K>>;
|
|
|
313
313
|
type Options$1<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'>);
|
|
314
314
|
|
|
315
315
|
type ClientOptions = {
|
|
316
|
-
baseUrl: '
|
|
316
|
+
baseUrl: 'http://localhost/api' | (string & {});
|
|
317
317
|
};
|
|
318
318
|
/**
|
|
319
319
|
* AccountResource
|
|
@@ -414,6 +414,28 @@ type SlotResource = {
|
|
|
414
414
|
day_of_week: number;
|
|
415
415
|
time: string;
|
|
416
416
|
};
|
|
417
|
+
/**
|
|
418
|
+
* SpaceInvitationResource
|
|
419
|
+
*/
|
|
420
|
+
type SpaceInvitationResource = {
|
|
421
|
+
id: number;
|
|
422
|
+
email: string;
|
|
423
|
+
role: SpaceRole;
|
|
424
|
+
expires_at: string;
|
|
425
|
+
accepted_at: string | null;
|
|
426
|
+
created_at: string | null;
|
|
427
|
+
is_expired: boolean;
|
|
428
|
+
};
|
|
429
|
+
/**
|
|
430
|
+
* SpaceMemberResource
|
|
431
|
+
*/
|
|
432
|
+
type SpaceMemberResource = {
|
|
433
|
+
id: number;
|
|
434
|
+
name: string;
|
|
435
|
+
email: string;
|
|
436
|
+
role?: string;
|
|
437
|
+
joined_at?: string;
|
|
438
|
+
};
|
|
417
439
|
/**
|
|
418
440
|
* SpaceResource
|
|
419
441
|
*/
|
|
@@ -424,6 +446,10 @@ type SpaceResource = {
|
|
|
424
446
|
created_at: string | null;
|
|
425
447
|
updated_at: string | null;
|
|
426
448
|
};
|
|
449
|
+
/**
|
|
450
|
+
* SpaceRole
|
|
451
|
+
*/
|
|
452
|
+
type SpaceRole = 'owner' | 'member' | 'viewer';
|
|
427
453
|
/**
|
|
428
454
|
* StoreBioBlockRequest
|
|
429
455
|
*/
|
|
@@ -488,6 +514,13 @@ type StoreSlotRequest = {
|
|
|
488
514
|
time: string;
|
|
489
515
|
days_of_week: Array<number>;
|
|
490
516
|
};
|
|
517
|
+
/**
|
|
518
|
+
* StoreSpaceInvitationRequest
|
|
519
|
+
*/
|
|
520
|
+
type StoreSpaceInvitationRequest = {
|
|
521
|
+
email: string;
|
|
522
|
+
role: 'member' | 'viewer';
|
|
523
|
+
};
|
|
491
524
|
/**
|
|
492
525
|
* StoreSpaceRequest
|
|
493
526
|
*/
|
|
@@ -551,6 +584,12 @@ type UpdatePostRequest = {
|
|
|
551
584
|
}> | null;
|
|
552
585
|
}> | null;
|
|
553
586
|
};
|
|
587
|
+
/**
|
|
588
|
+
* UpdateSpaceMemberRequest
|
|
589
|
+
*/
|
|
590
|
+
type UpdateSpaceMemberRequest = {
|
|
591
|
+
role: 'member' | 'viewer';
|
|
592
|
+
};
|
|
554
593
|
/**
|
|
555
594
|
* UpdateSpaceRequest
|
|
556
595
|
*/
|
|
@@ -627,62 +666,6 @@ type GetSpacesBySpaceAccountsResponses = {
|
|
|
627
666
|
};
|
|
628
667
|
};
|
|
629
668
|
type GetSpacesBySpaceAccountsResponse = GetSpacesBySpaceAccountsResponses[keyof GetSpacesBySpaceAccountsResponses];
|
|
630
|
-
type PatchSpacesBySpaceAccountsByAccountActivateData = {
|
|
631
|
-
body?: never;
|
|
632
|
-
path: {
|
|
633
|
-
/**
|
|
634
|
-
* The space ID
|
|
635
|
-
*/
|
|
636
|
-
space: number;
|
|
637
|
-
/**
|
|
638
|
-
* The account ID
|
|
639
|
-
*/
|
|
640
|
-
account: number;
|
|
641
|
-
};
|
|
642
|
-
query?: never;
|
|
643
|
-
url: '/spaces/{space}/accounts/{account}/activate';
|
|
644
|
-
};
|
|
645
|
-
type PatchSpacesBySpaceAccountsByAccountActivateErrors = {
|
|
646
|
-
/**
|
|
647
|
-
* Unauthenticated
|
|
648
|
-
*/
|
|
649
|
-
401: {
|
|
650
|
-
/**
|
|
651
|
-
* Error overview.
|
|
652
|
-
*/
|
|
653
|
-
message: string;
|
|
654
|
-
};
|
|
655
|
-
/**
|
|
656
|
-
* Authorization error
|
|
657
|
-
*/
|
|
658
|
-
403: {
|
|
659
|
-
/**
|
|
660
|
-
* Error overview.
|
|
661
|
-
*/
|
|
662
|
-
message: string;
|
|
663
|
-
};
|
|
664
|
-
/**
|
|
665
|
-
* Not found
|
|
666
|
-
*/
|
|
667
|
-
404: {
|
|
668
|
-
/**
|
|
669
|
-
* Error overview.
|
|
670
|
-
*/
|
|
671
|
-
message: string;
|
|
672
|
-
};
|
|
673
|
-
};
|
|
674
|
-
type PatchSpacesBySpaceAccountsByAccountActivateError = PatchSpacesBySpaceAccountsByAccountActivateErrors[keyof PatchSpacesBySpaceAccountsByAccountActivateErrors];
|
|
675
|
-
type PatchSpacesBySpaceAccountsByAccountActivateResponses = {
|
|
676
|
-
/**
|
|
677
|
-
* `AccountResource`
|
|
678
|
-
*/
|
|
679
|
-
200: {
|
|
680
|
-
data: AccountResource;
|
|
681
|
-
} | {
|
|
682
|
-
[key: string]: unknown;
|
|
683
|
-
};
|
|
684
|
-
};
|
|
685
|
-
type PatchSpacesBySpaceAccountsByAccountActivateResponse = PatchSpacesBySpaceAccountsByAccountActivateResponses[keyof PatchSpacesBySpaceAccountsByAccountActivateResponses];
|
|
686
669
|
type GetSpacesBySpaceAccountsByAccountBoardsData = {
|
|
687
670
|
body?: never;
|
|
688
671
|
path: {
|
|
@@ -1574,6 +1557,15 @@ type PostSpacesBySpacePostsErrors = {
|
|
|
1574
1557
|
*/
|
|
1575
1558
|
message: string;
|
|
1576
1559
|
};
|
|
1560
|
+
/**
|
|
1561
|
+
* Authorization error
|
|
1562
|
+
*/
|
|
1563
|
+
403: {
|
|
1564
|
+
/**
|
|
1565
|
+
* Error overview.
|
|
1566
|
+
*/
|
|
1567
|
+
message: string;
|
|
1568
|
+
};
|
|
1577
1569
|
/**
|
|
1578
1570
|
* Validation error
|
|
1579
1571
|
*/
|
|
@@ -2326,6 +2318,439 @@ type PutSpacesBySpaceResponses = {
|
|
|
2326
2318
|
};
|
|
2327
2319
|
};
|
|
2328
2320
|
type PutSpacesBySpaceResponse = PutSpacesBySpaceResponses[keyof PutSpacesBySpaceResponses];
|
|
2321
|
+
type GetSpacesBySpaceInvitationsData = {
|
|
2322
|
+
body?: never;
|
|
2323
|
+
path: {
|
|
2324
|
+
/**
|
|
2325
|
+
* The space ID
|
|
2326
|
+
*/
|
|
2327
|
+
space: number;
|
|
2328
|
+
};
|
|
2329
|
+
query?: never;
|
|
2330
|
+
url: '/spaces/{space}/invitations';
|
|
2331
|
+
};
|
|
2332
|
+
type GetSpacesBySpaceInvitationsErrors = {
|
|
2333
|
+
/**
|
|
2334
|
+
* Unauthenticated
|
|
2335
|
+
*/
|
|
2336
|
+
401: {
|
|
2337
|
+
/**
|
|
2338
|
+
* Error overview.
|
|
2339
|
+
*/
|
|
2340
|
+
message: string;
|
|
2341
|
+
};
|
|
2342
|
+
/**
|
|
2343
|
+
* Authorization error
|
|
2344
|
+
*/
|
|
2345
|
+
403: {
|
|
2346
|
+
/**
|
|
2347
|
+
* Error overview.
|
|
2348
|
+
*/
|
|
2349
|
+
message: string;
|
|
2350
|
+
};
|
|
2351
|
+
/**
|
|
2352
|
+
* Not found
|
|
2353
|
+
*/
|
|
2354
|
+
404: {
|
|
2355
|
+
/**
|
|
2356
|
+
* Error overview.
|
|
2357
|
+
*/
|
|
2358
|
+
message: string;
|
|
2359
|
+
};
|
|
2360
|
+
};
|
|
2361
|
+
type GetSpacesBySpaceInvitationsError = GetSpacesBySpaceInvitationsErrors[keyof GetSpacesBySpaceInvitationsErrors];
|
|
2362
|
+
type GetSpacesBySpaceInvitationsResponses = {
|
|
2363
|
+
/**
|
|
2364
|
+
* Array of `SpaceInvitationResource`
|
|
2365
|
+
*/
|
|
2366
|
+
200: {
|
|
2367
|
+
data: Array<SpaceInvitationResource>;
|
|
2368
|
+
};
|
|
2369
|
+
};
|
|
2370
|
+
type GetSpacesBySpaceInvitationsResponse = GetSpacesBySpaceInvitationsResponses[keyof GetSpacesBySpaceInvitationsResponses];
|
|
2371
|
+
type PostSpacesBySpaceInvitationsData = {
|
|
2372
|
+
body: StoreSpaceInvitationRequest;
|
|
2373
|
+
path: {
|
|
2374
|
+
/**
|
|
2375
|
+
* The space ID
|
|
2376
|
+
*/
|
|
2377
|
+
space: number;
|
|
2378
|
+
};
|
|
2379
|
+
query?: never;
|
|
2380
|
+
url: '/spaces/{space}/invitations';
|
|
2381
|
+
};
|
|
2382
|
+
type PostSpacesBySpaceInvitationsErrors = {
|
|
2383
|
+
/**
|
|
2384
|
+
* Unauthenticated
|
|
2385
|
+
*/
|
|
2386
|
+
401: {
|
|
2387
|
+
/**
|
|
2388
|
+
* Error overview.
|
|
2389
|
+
*/
|
|
2390
|
+
message: string;
|
|
2391
|
+
};
|
|
2392
|
+
/**
|
|
2393
|
+
* Authorization error
|
|
2394
|
+
*/
|
|
2395
|
+
403: {
|
|
2396
|
+
/**
|
|
2397
|
+
* Error overview.
|
|
2398
|
+
*/
|
|
2399
|
+
message: string;
|
|
2400
|
+
};
|
|
2401
|
+
/**
|
|
2402
|
+
* Not found
|
|
2403
|
+
*/
|
|
2404
|
+
404: {
|
|
2405
|
+
/**
|
|
2406
|
+
* Error overview.
|
|
2407
|
+
*/
|
|
2408
|
+
message: string;
|
|
2409
|
+
};
|
|
2410
|
+
/**
|
|
2411
|
+
* Validation error
|
|
2412
|
+
*/
|
|
2413
|
+
422: {
|
|
2414
|
+
/**
|
|
2415
|
+
* Errors overview.
|
|
2416
|
+
*/
|
|
2417
|
+
message: string;
|
|
2418
|
+
/**
|
|
2419
|
+
* A detailed description of each field that failed validation.
|
|
2420
|
+
*/
|
|
2421
|
+
errors: {
|
|
2422
|
+
[key: string]: Array<string>;
|
|
2423
|
+
};
|
|
2424
|
+
};
|
|
2425
|
+
};
|
|
2426
|
+
type PostSpacesBySpaceInvitationsError = PostSpacesBySpaceInvitationsErrors[keyof PostSpacesBySpaceInvitationsErrors];
|
|
2427
|
+
type PostSpacesBySpaceInvitationsResponses = {
|
|
2428
|
+
200: {
|
|
2429
|
+
[key: string]: unknown;
|
|
2430
|
+
};
|
|
2431
|
+
};
|
|
2432
|
+
type PostSpacesBySpaceInvitationsResponse = PostSpacesBySpaceInvitationsResponses[keyof PostSpacesBySpaceInvitationsResponses];
|
|
2433
|
+
type DeleteSpacesBySpaceInvitationsByInvitationData = {
|
|
2434
|
+
body?: never;
|
|
2435
|
+
path: {
|
|
2436
|
+
/**
|
|
2437
|
+
* The space ID
|
|
2438
|
+
*/
|
|
2439
|
+
space: number;
|
|
2440
|
+
/**
|
|
2441
|
+
* The invitation ID
|
|
2442
|
+
*/
|
|
2443
|
+
invitation: number;
|
|
2444
|
+
};
|
|
2445
|
+
query?: never;
|
|
2446
|
+
url: '/spaces/{space}/invitations/{invitation}';
|
|
2447
|
+
};
|
|
2448
|
+
type DeleteSpacesBySpaceInvitationsByInvitationErrors = {
|
|
2449
|
+
/**
|
|
2450
|
+
* Unauthenticated
|
|
2451
|
+
*/
|
|
2452
|
+
401: {
|
|
2453
|
+
/**
|
|
2454
|
+
* Error overview.
|
|
2455
|
+
*/
|
|
2456
|
+
message: string;
|
|
2457
|
+
};
|
|
2458
|
+
/**
|
|
2459
|
+
* Authorization error
|
|
2460
|
+
*/
|
|
2461
|
+
403: {
|
|
2462
|
+
/**
|
|
2463
|
+
* Error overview.
|
|
2464
|
+
*/
|
|
2465
|
+
message: string;
|
|
2466
|
+
};
|
|
2467
|
+
/**
|
|
2468
|
+
* Not found
|
|
2469
|
+
*/
|
|
2470
|
+
404: {
|
|
2471
|
+
/**
|
|
2472
|
+
* Error overview.
|
|
2473
|
+
*/
|
|
2474
|
+
message: string;
|
|
2475
|
+
};
|
|
2476
|
+
};
|
|
2477
|
+
type DeleteSpacesBySpaceInvitationsByInvitationError = DeleteSpacesBySpaceInvitationsByInvitationErrors[keyof DeleteSpacesBySpaceInvitationsByInvitationErrors];
|
|
2478
|
+
type DeleteSpacesBySpaceInvitationsByInvitationResponses = {
|
|
2479
|
+
200: {
|
|
2480
|
+
[key: string]: unknown;
|
|
2481
|
+
};
|
|
2482
|
+
};
|
|
2483
|
+
type DeleteSpacesBySpaceInvitationsByInvitationResponse = DeleteSpacesBySpaceInvitationsByInvitationResponses[keyof DeleteSpacesBySpaceInvitationsByInvitationResponses];
|
|
2484
|
+
type PostSpacesBySpaceInvitationsByInvitationResendData = {
|
|
2485
|
+
body?: never;
|
|
2486
|
+
path: {
|
|
2487
|
+
/**
|
|
2488
|
+
* The space ID
|
|
2489
|
+
*/
|
|
2490
|
+
space: number;
|
|
2491
|
+
/**
|
|
2492
|
+
* The invitation ID
|
|
2493
|
+
*/
|
|
2494
|
+
invitation: number;
|
|
2495
|
+
};
|
|
2496
|
+
query?: never;
|
|
2497
|
+
url: '/spaces/{space}/invitations/{invitation}/resend';
|
|
2498
|
+
};
|
|
2499
|
+
type PostSpacesBySpaceInvitationsByInvitationResendErrors = {
|
|
2500
|
+
/**
|
|
2501
|
+
* Unauthenticated
|
|
2502
|
+
*/
|
|
2503
|
+
401: {
|
|
2504
|
+
/**
|
|
2505
|
+
* Error overview.
|
|
2506
|
+
*/
|
|
2507
|
+
message: string;
|
|
2508
|
+
};
|
|
2509
|
+
/**
|
|
2510
|
+
* Authorization error
|
|
2511
|
+
*/
|
|
2512
|
+
403: {
|
|
2513
|
+
/**
|
|
2514
|
+
* Error overview.
|
|
2515
|
+
*/
|
|
2516
|
+
message: string;
|
|
2517
|
+
};
|
|
2518
|
+
/**
|
|
2519
|
+
* Not found
|
|
2520
|
+
*/
|
|
2521
|
+
404: {
|
|
2522
|
+
/**
|
|
2523
|
+
* Error overview.
|
|
2524
|
+
*/
|
|
2525
|
+
message: string;
|
|
2526
|
+
};
|
|
2527
|
+
};
|
|
2528
|
+
type PostSpacesBySpaceInvitationsByInvitationResendError = PostSpacesBySpaceInvitationsByInvitationResendErrors[keyof PostSpacesBySpaceInvitationsByInvitationResendErrors];
|
|
2529
|
+
type PostSpacesBySpaceInvitationsByInvitationResendResponses = {
|
|
2530
|
+
/**
|
|
2531
|
+
* `SpaceInvitationResource`
|
|
2532
|
+
*/
|
|
2533
|
+
200: {
|
|
2534
|
+
[key: string]: unknown;
|
|
2535
|
+
} | {
|
|
2536
|
+
data: SpaceInvitationResource;
|
|
2537
|
+
};
|
|
2538
|
+
};
|
|
2539
|
+
type PostSpacesBySpaceInvitationsByInvitationResendResponse = PostSpacesBySpaceInvitationsByInvitationResendResponses[keyof PostSpacesBySpaceInvitationsByInvitationResendResponses];
|
|
2540
|
+
type GetSpacesBySpaceMembersData = {
|
|
2541
|
+
body?: never;
|
|
2542
|
+
path: {
|
|
2543
|
+
/**
|
|
2544
|
+
* The space ID
|
|
2545
|
+
*/
|
|
2546
|
+
space: number;
|
|
2547
|
+
};
|
|
2548
|
+
query?: never;
|
|
2549
|
+
url: '/spaces/{space}/members';
|
|
2550
|
+
};
|
|
2551
|
+
type GetSpacesBySpaceMembersErrors = {
|
|
2552
|
+
/**
|
|
2553
|
+
* Unauthenticated
|
|
2554
|
+
*/
|
|
2555
|
+
401: {
|
|
2556
|
+
/**
|
|
2557
|
+
* Error overview.
|
|
2558
|
+
*/
|
|
2559
|
+
message: string;
|
|
2560
|
+
};
|
|
2561
|
+
/**
|
|
2562
|
+
* Authorization error
|
|
2563
|
+
*/
|
|
2564
|
+
403: {
|
|
2565
|
+
/**
|
|
2566
|
+
* Error overview.
|
|
2567
|
+
*/
|
|
2568
|
+
message: string;
|
|
2569
|
+
};
|
|
2570
|
+
/**
|
|
2571
|
+
* Not found
|
|
2572
|
+
*/
|
|
2573
|
+
404: {
|
|
2574
|
+
/**
|
|
2575
|
+
* Error overview.
|
|
2576
|
+
*/
|
|
2577
|
+
message: string;
|
|
2578
|
+
};
|
|
2579
|
+
};
|
|
2580
|
+
type GetSpacesBySpaceMembersError = GetSpacesBySpaceMembersErrors[keyof GetSpacesBySpaceMembersErrors];
|
|
2581
|
+
type GetSpacesBySpaceMembersResponses = {
|
|
2582
|
+
/**
|
|
2583
|
+
* Array of `SpaceMemberResource`
|
|
2584
|
+
*/
|
|
2585
|
+
200: {
|
|
2586
|
+
data: Array<SpaceMemberResource>;
|
|
2587
|
+
};
|
|
2588
|
+
};
|
|
2589
|
+
type GetSpacesBySpaceMembersResponse = GetSpacesBySpaceMembersResponses[keyof GetSpacesBySpaceMembersResponses];
|
|
2590
|
+
type DeleteSpacesBySpaceMembersByUserData = {
|
|
2591
|
+
body?: never;
|
|
2592
|
+
path: {
|
|
2593
|
+
/**
|
|
2594
|
+
* The space ID
|
|
2595
|
+
*/
|
|
2596
|
+
space: number;
|
|
2597
|
+
/**
|
|
2598
|
+
* The user ID
|
|
2599
|
+
*/
|
|
2600
|
+
user: number;
|
|
2601
|
+
};
|
|
2602
|
+
query?: never;
|
|
2603
|
+
url: '/spaces/{space}/members/{user}';
|
|
2604
|
+
};
|
|
2605
|
+
type DeleteSpacesBySpaceMembersByUserErrors = {
|
|
2606
|
+
/**
|
|
2607
|
+
* Unauthenticated
|
|
2608
|
+
*/
|
|
2609
|
+
401: {
|
|
2610
|
+
/**
|
|
2611
|
+
* Error overview.
|
|
2612
|
+
*/
|
|
2613
|
+
message: string;
|
|
2614
|
+
};
|
|
2615
|
+
/**
|
|
2616
|
+
* Authorization error
|
|
2617
|
+
*/
|
|
2618
|
+
403: {
|
|
2619
|
+
/**
|
|
2620
|
+
* Error overview.
|
|
2621
|
+
*/
|
|
2622
|
+
message: string;
|
|
2623
|
+
};
|
|
2624
|
+
/**
|
|
2625
|
+
* Not found
|
|
2626
|
+
*/
|
|
2627
|
+
404: {
|
|
2628
|
+
/**
|
|
2629
|
+
* Error overview.
|
|
2630
|
+
*/
|
|
2631
|
+
message: string;
|
|
2632
|
+
};
|
|
2633
|
+
};
|
|
2634
|
+
type DeleteSpacesBySpaceMembersByUserError = DeleteSpacesBySpaceMembersByUserErrors[keyof DeleteSpacesBySpaceMembersByUserErrors];
|
|
2635
|
+
type DeleteSpacesBySpaceMembersByUserResponses = {
|
|
2636
|
+
200: {
|
|
2637
|
+
[key: string]: unknown;
|
|
2638
|
+
};
|
|
2639
|
+
};
|
|
2640
|
+
type DeleteSpacesBySpaceMembersByUserResponse = DeleteSpacesBySpaceMembersByUserResponses[keyof DeleteSpacesBySpaceMembersByUserResponses];
|
|
2641
|
+
type PatchSpacesBySpaceMembersByUserData = {
|
|
2642
|
+
body: UpdateSpaceMemberRequest;
|
|
2643
|
+
path: {
|
|
2644
|
+
/**
|
|
2645
|
+
* The space ID
|
|
2646
|
+
*/
|
|
2647
|
+
space: number;
|
|
2648
|
+
/**
|
|
2649
|
+
* The user ID
|
|
2650
|
+
*/
|
|
2651
|
+
user: number;
|
|
2652
|
+
};
|
|
2653
|
+
query?: never;
|
|
2654
|
+
url: '/spaces/{space}/members/{user}';
|
|
2655
|
+
};
|
|
2656
|
+
type PatchSpacesBySpaceMembersByUserErrors = {
|
|
2657
|
+
/**
|
|
2658
|
+
* Unauthenticated
|
|
2659
|
+
*/
|
|
2660
|
+
401: {
|
|
2661
|
+
/**
|
|
2662
|
+
* Error overview.
|
|
2663
|
+
*/
|
|
2664
|
+
message: string;
|
|
2665
|
+
};
|
|
2666
|
+
/**
|
|
2667
|
+
* Authorization error
|
|
2668
|
+
*/
|
|
2669
|
+
403: {
|
|
2670
|
+
/**
|
|
2671
|
+
* Error overview.
|
|
2672
|
+
*/
|
|
2673
|
+
message: string;
|
|
2674
|
+
};
|
|
2675
|
+
/**
|
|
2676
|
+
* Not found
|
|
2677
|
+
*/
|
|
2678
|
+
404: {
|
|
2679
|
+
/**
|
|
2680
|
+
* Error overview.
|
|
2681
|
+
*/
|
|
2682
|
+
message: string;
|
|
2683
|
+
};
|
|
2684
|
+
/**
|
|
2685
|
+
* Validation error
|
|
2686
|
+
*/
|
|
2687
|
+
422: {
|
|
2688
|
+
/**
|
|
2689
|
+
* Errors overview.
|
|
2690
|
+
*/
|
|
2691
|
+
message: string;
|
|
2692
|
+
/**
|
|
2693
|
+
* A detailed description of each field that failed validation.
|
|
2694
|
+
*/
|
|
2695
|
+
errors: {
|
|
2696
|
+
[key: string]: Array<string>;
|
|
2697
|
+
};
|
|
2698
|
+
};
|
|
2699
|
+
};
|
|
2700
|
+
type PatchSpacesBySpaceMembersByUserError = PatchSpacesBySpaceMembersByUserErrors[keyof PatchSpacesBySpaceMembersByUserErrors];
|
|
2701
|
+
type PatchSpacesBySpaceMembersByUserResponses = {
|
|
2702
|
+
200: {
|
|
2703
|
+
[key: string]: unknown;
|
|
2704
|
+
};
|
|
2705
|
+
};
|
|
2706
|
+
type PatchSpacesBySpaceMembersByUserResponse = PatchSpacesBySpaceMembersByUserResponses[keyof PatchSpacesBySpaceMembersByUserResponses];
|
|
2707
|
+
type PostSpacesBySpaceMembersLeaveData = {
|
|
2708
|
+
body?: never;
|
|
2709
|
+
path: {
|
|
2710
|
+
/**
|
|
2711
|
+
* The space ID
|
|
2712
|
+
*/
|
|
2713
|
+
space: number;
|
|
2714
|
+
};
|
|
2715
|
+
query?: never;
|
|
2716
|
+
url: '/spaces/{space}/members/leave';
|
|
2717
|
+
};
|
|
2718
|
+
type PostSpacesBySpaceMembersLeaveErrors = {
|
|
2719
|
+
/**
|
|
2720
|
+
* Unauthenticated
|
|
2721
|
+
*/
|
|
2722
|
+
401: {
|
|
2723
|
+
/**
|
|
2724
|
+
* Error overview.
|
|
2725
|
+
*/
|
|
2726
|
+
message: string;
|
|
2727
|
+
};
|
|
2728
|
+
/**
|
|
2729
|
+
* Authorization error
|
|
2730
|
+
*/
|
|
2731
|
+
403: {
|
|
2732
|
+
/**
|
|
2733
|
+
* Error overview.
|
|
2734
|
+
*/
|
|
2735
|
+
message: string;
|
|
2736
|
+
};
|
|
2737
|
+
/**
|
|
2738
|
+
* Not found
|
|
2739
|
+
*/
|
|
2740
|
+
404: {
|
|
2741
|
+
/**
|
|
2742
|
+
* Error overview.
|
|
2743
|
+
*/
|
|
2744
|
+
message: string;
|
|
2745
|
+
};
|
|
2746
|
+
};
|
|
2747
|
+
type PostSpacesBySpaceMembersLeaveError = PostSpacesBySpaceMembersLeaveErrors[keyof PostSpacesBySpaceMembersLeaveErrors];
|
|
2748
|
+
type PostSpacesBySpaceMembersLeaveResponses = {
|
|
2749
|
+
200: {
|
|
2750
|
+
[key: string]: unknown;
|
|
2751
|
+
};
|
|
2752
|
+
};
|
|
2753
|
+
type PostSpacesBySpaceMembersLeaveResponse = PostSpacesBySpaceMembersLeaveResponses[keyof PostSpacesBySpaceMembersLeaveResponses];
|
|
2329
2754
|
type GetSubscriptionData = {
|
|
2330
2755
|
body?: never;
|
|
2331
2756
|
path?: never;
|
|
@@ -2348,14 +2773,14 @@ type GetSubscriptionResponses = {
|
|
|
2348
2773
|
200: {
|
|
2349
2774
|
subscribed: boolean;
|
|
2350
2775
|
is_gifted: boolean;
|
|
2351
|
-
|
|
2776
|
+
plan: string;
|
|
2777
|
+
plans: Array<unknown>;
|
|
2352
2778
|
on_grace_period: string | boolean;
|
|
2353
2779
|
ends_at: string;
|
|
2354
|
-
seat_price_cents: string;
|
|
2355
|
-
free_accounts: 2;
|
|
2356
2780
|
accounts_used: number;
|
|
2357
2781
|
max_connectable_accounts: number | null;
|
|
2358
|
-
|
|
2782
|
+
posts_used_this_month: number;
|
|
2783
|
+
monthly_post_limit: number | null;
|
|
2359
2784
|
};
|
|
2360
2785
|
};
|
|
2361
2786
|
type GetSubscriptionResponse = GetSubscriptionResponses[keyof GetSubscriptionResponses];
|
|
@@ -2624,20 +3049,12 @@ declare class Accounts extends HeyApiClient {
|
|
|
2624
3049
|
* List accounts
|
|
2625
3050
|
*/
|
|
2626
3051
|
list<ThrowOnError extends boolean = false>(options: Options<GetSpacesBySpaceAccountsData, ThrowOnError>): RequestResult<GetSpacesBySpaceAccountsResponses, GetSpacesBySpaceAccountsErrors, ThrowOnError, "fields">;
|
|
2627
|
-
/**
|
|
2628
|
-
* Activate an account
|
|
2629
|
-
*
|
|
2630
|
-
* Deactivates other accounts on the same platform within the space.
|
|
2631
|
-
*/
|
|
2632
|
-
activate<ThrowOnError extends boolean = false>(options: Options<PatchSpacesBySpaceAccountsByAccountActivateData, ThrowOnError>): RequestResult<PatchSpacesBySpaceAccountsByAccountActivateResponses, PatchSpacesBySpaceAccountsByAccountActivateErrors, ThrowOnError, "fields">;
|
|
2633
3052
|
/**
|
|
2634
3053
|
* List Pinterest boards
|
|
2635
3054
|
*/
|
|
2636
3055
|
boards<ThrowOnError extends boolean = false>(options: Options<GetSpacesBySpaceAccountsByAccountBoardsData, ThrowOnError>): RequestResult<GetSpacesBySpaceAccountsByAccountBoardsResponses, GetSpacesBySpaceAccountsByAccountBoardsErrors, ThrowOnError, "fields">;
|
|
2637
3056
|
/**
|
|
2638
3057
|
* Disconnect an account
|
|
2639
|
-
*
|
|
2640
|
-
* Removes every account on the same platform within the space and fires an AccountDisconnected webhook for each.
|
|
2641
3058
|
*/
|
|
2642
3059
|
delete<ThrowOnError extends boolean = false>(options: Options<DeleteSpacesBySpaceAccountsByAccountData, ThrowOnError>): RequestResult<DeleteSpacesBySpaceAccountsByAccountResponses, DeleteSpacesBySpaceAccountsByAccountErrors, ThrowOnError, "fields">;
|
|
2643
3060
|
}
|
|
@@ -2683,7 +3100,7 @@ declare class Bio extends HeyApiClient {
|
|
|
2683
3100
|
/**
|
|
2684
3101
|
* Create the bio page
|
|
2685
3102
|
*
|
|
2686
|
-
* Seeds a social icons block from the space's
|
|
3103
|
+
* Seeds a social icons block from the space's connected accounts.
|
|
2687
3104
|
*/
|
|
2688
3105
|
create<ThrowOnError extends boolean = false>(options: Options<PostSpacesBySpaceBioData, ThrowOnError>): RequestResult<PostSpacesBySpaceBioResponses, PostSpacesBySpaceBioErrors, ThrowOnError, "fields">;
|
|
2689
3106
|
/**
|
|
@@ -2779,7 +3196,7 @@ declare class Slots extends HeyApiClient {
|
|
|
2779
3196
|
}
|
|
2780
3197
|
declare class Spaces extends HeyApiClient {
|
|
2781
3198
|
/**
|
|
2782
|
-
* List spaces
|
|
3199
|
+
* List spaces accessible to the authenticated user (owned and member-of)
|
|
2783
3200
|
*/
|
|
2784
3201
|
list<ThrowOnError extends boolean = false>(options?: Options<GetSpacesData, ThrowOnError>): RequestResult<GetSpacesResponses, GetSpacesErrors, ThrowOnError, "fields">;
|
|
2785
3202
|
/**
|
|
@@ -2801,11 +3218,47 @@ declare class Spaces extends HeyApiClient {
|
|
|
2801
3218
|
*/
|
|
2802
3219
|
update<ThrowOnError extends boolean = false>(options: Options<PutSpacesBySpaceData, ThrowOnError>): RequestResult<PutSpacesBySpaceResponses, PutSpacesBySpaceErrors, ThrowOnError, "fields">;
|
|
2803
3220
|
}
|
|
3221
|
+
declare class Invitations extends HeyApiClient {
|
|
3222
|
+
/**
|
|
3223
|
+
* List pending invitations for a space
|
|
3224
|
+
*/
|
|
3225
|
+
list<ThrowOnError extends boolean = false>(options: Options<GetSpacesBySpaceInvitationsData, ThrowOnError>): RequestResult<GetSpacesBySpaceInvitationsResponses, GetSpacesBySpaceInvitationsErrors, ThrowOnError, "fields">;
|
|
3226
|
+
/**
|
|
3227
|
+
* Send an invitation
|
|
3228
|
+
*/
|
|
3229
|
+
create<ThrowOnError extends boolean = false>(options: Options<PostSpacesBySpaceInvitationsData, ThrowOnError>): RequestResult<PostSpacesBySpaceInvitationsResponses, PostSpacesBySpaceInvitationsErrors, ThrowOnError, "fields">;
|
|
3230
|
+
/**
|
|
3231
|
+
* Revoke a pending invitation
|
|
3232
|
+
*/
|
|
3233
|
+
delete<ThrowOnError extends boolean = false>(options: Options<DeleteSpacesBySpaceInvitationsByInvitationData, ThrowOnError>): RequestResult<DeleteSpacesBySpaceInvitationsByInvitationResponses, DeleteSpacesBySpaceInvitationsByInvitationErrors, ThrowOnError, "fields">;
|
|
3234
|
+
/**
|
|
3235
|
+
* Regenerate token + expiry and resend the invitation email
|
|
3236
|
+
*/
|
|
3237
|
+
resend<ThrowOnError extends boolean = false>(options: Options<PostSpacesBySpaceInvitationsByInvitationResendData, ThrowOnError>): RequestResult<PostSpacesBySpaceInvitationsByInvitationResendResponses, PostSpacesBySpaceInvitationsByInvitationResendErrors, ThrowOnError, "fields">;
|
|
3238
|
+
}
|
|
3239
|
+
declare class Members extends HeyApiClient {
|
|
3240
|
+
/**
|
|
3241
|
+
* List members of a space
|
|
3242
|
+
*/
|
|
3243
|
+
list<ThrowOnError extends boolean = false>(options: Options<GetSpacesBySpaceMembersData, ThrowOnError>): RequestResult<GetSpacesBySpaceMembersResponses, GetSpacesBySpaceMembersErrors, ThrowOnError, "fields">;
|
|
3244
|
+
/**
|
|
3245
|
+
* Remove a member from a space
|
|
3246
|
+
*/
|
|
3247
|
+
delete<ThrowOnError extends boolean = false>(options: Options<DeleteSpacesBySpaceMembersByUserData, ThrowOnError>): RequestResult<DeleteSpacesBySpaceMembersByUserResponses, DeleteSpacesBySpaceMembersByUserErrors, ThrowOnError, "fields">;
|
|
3248
|
+
/**
|
|
3249
|
+
* Update a member's role
|
|
3250
|
+
*/
|
|
3251
|
+
update<ThrowOnError extends boolean = false>(options: Options<PatchSpacesBySpaceMembersByUserData, ThrowOnError>): RequestResult<PatchSpacesBySpaceMembersByUserResponses, PatchSpacesBySpaceMembersByUserErrors, ThrowOnError, "fields">;
|
|
3252
|
+
/**
|
|
3253
|
+
* The authenticated user leaves the space
|
|
3254
|
+
*/
|
|
3255
|
+
leave<ThrowOnError extends boolean = false>(options: Options<PostSpacesBySpaceMembersLeaveData, ThrowOnError>): RequestResult<PostSpacesBySpaceMembersLeaveResponses, PostSpacesBySpaceMembersLeaveErrors, ThrowOnError, "fields">;
|
|
3256
|
+
}
|
|
2804
3257
|
declare class Subscription extends HeyApiClient {
|
|
2805
3258
|
/**
|
|
2806
3259
|
* Get subscription details
|
|
2807
3260
|
*
|
|
2808
|
-
* Returns
|
|
3261
|
+
* Returns the user's current plan, account usage, plan catalog, and billing state.
|
|
2809
3262
|
*/
|
|
2810
3263
|
get<ThrowOnError extends boolean = false>(options?: Options<GetSubscriptionData, ThrowOnError>): RequestResult<GetSubscriptionResponses, GetSubscriptionErrors, ThrowOnError, "fields">;
|
|
2811
3264
|
}
|
|
@@ -2855,6 +3308,10 @@ declare class ZilfuApi extends HeyApiClient {
|
|
|
2855
3308
|
get slots(): Slots;
|
|
2856
3309
|
private _spaces?;
|
|
2857
3310
|
get spaces(): Spaces;
|
|
3311
|
+
private _invitations?;
|
|
3312
|
+
get invitations(): Invitations;
|
|
3313
|
+
private _members?;
|
|
3314
|
+
get members(): Members;
|
|
2858
3315
|
private _subscription?;
|
|
2859
3316
|
get subscription(): Subscription;
|
|
2860
3317
|
private _webhooks?;
|
|
@@ -2891,4 +3348,4 @@ declare class ZilfuApiError extends Error {
|
|
|
2891
3348
|
constructor(init: ZilfuApiErrorInit);
|
|
2892
3349
|
}
|
|
2893
3350
|
|
|
2894
|
-
export { type AccountResource, type BioBlockResource, type BioPageResource, type ClientOptions, type CreateZilfuClientOptions, type DeleteApiTokensByTokenIdData, type DeleteApiTokensByTokenIdError, type DeleteApiTokensByTokenIdErrors, type DeleteApiTokensByTokenIdResponses, type DeleteSpacesBySpaceAccountsByAccountData, type DeleteSpacesBySpaceAccountsByAccountError, type DeleteSpacesBySpaceAccountsByAccountErrors, type DeleteSpacesBySpaceAccountsByAccountResponse, type DeleteSpacesBySpaceAccountsByAccountResponses, type DeleteSpacesBySpaceBioBlocksByBlockData, type DeleteSpacesBySpaceBioBlocksByBlockError, type DeleteSpacesBySpaceBioBlocksByBlockErrors, type DeleteSpacesBySpaceBioBlocksByBlockResponse, type DeleteSpacesBySpaceBioBlocksByBlockResponses, type DeleteSpacesBySpaceData, type DeleteSpacesBySpaceError, type DeleteSpacesBySpaceErrors, type DeleteSpacesBySpacePostsByPostData, type DeleteSpacesBySpacePostsByPostError, type DeleteSpacesBySpacePostsByPostErrors, type DeleteSpacesBySpacePostsByPostResponse, type DeleteSpacesBySpacePostsByPostResponses, type DeleteSpacesBySpaceResponse, type DeleteSpacesBySpaceResponses, type DeleteSpacesBySpaceSlotsBySlotData, type DeleteSpacesBySpaceSlotsBySlotError, type DeleteSpacesBySpaceSlotsBySlotErrors, type DeleteSpacesBySpaceSlotsBySlotResponse, type DeleteSpacesBySpaceSlotsBySlotResponses, type DeleteSpacesBySpaceWebhooksByWebhookData, type DeleteSpacesBySpaceWebhooksByWebhookError, type DeleteSpacesBySpaceWebhooksByWebhookErrors, type DeleteSpacesBySpaceWebhooksByWebhookResponse, type DeleteSpacesBySpaceWebhooksByWebhookResponses, type GetHealthData, type GetHealthError, type GetHealthErrors, type GetHealthResponse, type GetHealthResponses, type GetSessionData, type GetSessionError, type GetSessionErrors, type GetSessionResponse, type GetSessionResponses, type GetSpacesBySpaceAccountsByAccountBoardsData, type GetSpacesBySpaceAccountsByAccountBoardsError, type GetSpacesBySpaceAccountsByAccountBoardsErrors, type GetSpacesBySpaceAccountsByAccountBoardsResponse, type GetSpacesBySpaceAccountsByAccountBoardsResponses, type GetSpacesBySpaceAccountsData, type GetSpacesBySpaceAccountsError, type GetSpacesBySpaceAccountsErrors, type GetSpacesBySpaceAccountsResponse, type GetSpacesBySpaceAccountsResponses, type GetSpacesBySpaceBioBlocksData, type GetSpacesBySpaceBioBlocksError, type GetSpacesBySpaceBioBlocksErrors, type GetSpacesBySpaceBioBlocksResponse, type GetSpacesBySpaceBioBlocksResponses, type GetSpacesBySpaceBioData, type GetSpacesBySpaceBioError, type GetSpacesBySpaceBioErrors, type GetSpacesBySpaceBioResponse, type GetSpacesBySpaceBioResponses, type GetSpacesBySpaceData, type GetSpacesBySpaceError, type GetSpacesBySpaceErrors, type GetSpacesBySpacePostsByPostData, type GetSpacesBySpacePostsByPostError, type GetSpacesBySpacePostsByPostErrors, type GetSpacesBySpacePostsByPostResponse, type GetSpacesBySpacePostsByPostResponses, type GetSpacesBySpacePostsData, type GetSpacesBySpacePostsError, type GetSpacesBySpacePostsErrors, type GetSpacesBySpacePostsResponse, type GetSpacesBySpacePostsResponses, type GetSpacesBySpaceQueueData, type GetSpacesBySpaceQueueError, type GetSpacesBySpaceQueueErrors, type GetSpacesBySpaceQueueResponse, type GetSpacesBySpaceQueueResponses, type GetSpacesBySpaceResponse, type GetSpacesBySpaceResponses, type GetSpacesBySpaceSlotsData, type GetSpacesBySpaceSlotsError, type GetSpacesBySpaceSlotsErrors, type GetSpacesBySpaceSlotsResponse, type GetSpacesBySpaceSlotsResponses, type GetSpacesBySpaceWebhooksData, type GetSpacesBySpaceWebhooksError, type GetSpacesBySpaceWebhooksErrors, type GetSpacesBySpaceWebhooksResponse, type GetSpacesBySpaceWebhooksResponses, type GetSpacesData, type GetSpacesError, type GetSpacesErrors, type GetSpacesResponse, type GetSpacesResponses, type GetSubscriptionData, type GetSubscriptionError, type GetSubscriptionErrors, type GetSubscriptionResponse, type GetSubscriptionResponses, type MediaResource, type
|
|
3351
|
+
export { type AccountResource, type BioBlockResource, type BioPageResource, type ClientOptions, type CreateZilfuClientOptions, type DeleteApiTokensByTokenIdData, type DeleteApiTokensByTokenIdError, type DeleteApiTokensByTokenIdErrors, type DeleteApiTokensByTokenIdResponses, type DeleteSpacesBySpaceAccountsByAccountData, type DeleteSpacesBySpaceAccountsByAccountError, type DeleteSpacesBySpaceAccountsByAccountErrors, type DeleteSpacesBySpaceAccountsByAccountResponse, type DeleteSpacesBySpaceAccountsByAccountResponses, type DeleteSpacesBySpaceBioBlocksByBlockData, type DeleteSpacesBySpaceBioBlocksByBlockError, type DeleteSpacesBySpaceBioBlocksByBlockErrors, type DeleteSpacesBySpaceBioBlocksByBlockResponse, type DeleteSpacesBySpaceBioBlocksByBlockResponses, type DeleteSpacesBySpaceData, type DeleteSpacesBySpaceError, type DeleteSpacesBySpaceErrors, type DeleteSpacesBySpaceInvitationsByInvitationData, type DeleteSpacesBySpaceInvitationsByInvitationError, type DeleteSpacesBySpaceInvitationsByInvitationErrors, type DeleteSpacesBySpaceInvitationsByInvitationResponse, type DeleteSpacesBySpaceInvitationsByInvitationResponses, type DeleteSpacesBySpaceMembersByUserData, type DeleteSpacesBySpaceMembersByUserError, type DeleteSpacesBySpaceMembersByUserErrors, type DeleteSpacesBySpaceMembersByUserResponse, type DeleteSpacesBySpaceMembersByUserResponses, type DeleteSpacesBySpacePostsByPostData, type DeleteSpacesBySpacePostsByPostError, type DeleteSpacesBySpacePostsByPostErrors, type DeleteSpacesBySpacePostsByPostResponse, type DeleteSpacesBySpacePostsByPostResponses, type DeleteSpacesBySpaceResponse, type DeleteSpacesBySpaceResponses, type DeleteSpacesBySpaceSlotsBySlotData, type DeleteSpacesBySpaceSlotsBySlotError, type DeleteSpacesBySpaceSlotsBySlotErrors, type DeleteSpacesBySpaceSlotsBySlotResponse, type DeleteSpacesBySpaceSlotsBySlotResponses, type DeleteSpacesBySpaceWebhooksByWebhookData, type DeleteSpacesBySpaceWebhooksByWebhookError, type DeleteSpacesBySpaceWebhooksByWebhookErrors, type DeleteSpacesBySpaceWebhooksByWebhookResponse, type DeleteSpacesBySpaceWebhooksByWebhookResponses, type GetHealthData, type GetHealthError, type GetHealthErrors, type GetHealthResponse, type GetHealthResponses, type GetSessionData, type GetSessionError, type GetSessionErrors, type GetSessionResponse, type GetSessionResponses, type GetSpacesBySpaceAccountsByAccountBoardsData, type GetSpacesBySpaceAccountsByAccountBoardsError, type GetSpacesBySpaceAccountsByAccountBoardsErrors, type GetSpacesBySpaceAccountsByAccountBoardsResponse, type GetSpacesBySpaceAccountsByAccountBoardsResponses, type GetSpacesBySpaceAccountsData, type GetSpacesBySpaceAccountsError, type GetSpacesBySpaceAccountsErrors, type GetSpacesBySpaceAccountsResponse, type GetSpacesBySpaceAccountsResponses, type GetSpacesBySpaceBioBlocksData, type GetSpacesBySpaceBioBlocksError, type GetSpacesBySpaceBioBlocksErrors, type GetSpacesBySpaceBioBlocksResponse, type GetSpacesBySpaceBioBlocksResponses, type GetSpacesBySpaceBioData, type GetSpacesBySpaceBioError, type GetSpacesBySpaceBioErrors, type GetSpacesBySpaceBioResponse, type GetSpacesBySpaceBioResponses, type GetSpacesBySpaceData, type GetSpacesBySpaceError, type GetSpacesBySpaceErrors, type GetSpacesBySpaceInvitationsData, type GetSpacesBySpaceInvitationsError, type GetSpacesBySpaceInvitationsErrors, type GetSpacesBySpaceInvitationsResponse, type GetSpacesBySpaceInvitationsResponses, type GetSpacesBySpaceMembersData, type GetSpacesBySpaceMembersError, type GetSpacesBySpaceMembersErrors, type GetSpacesBySpaceMembersResponse, type GetSpacesBySpaceMembersResponses, type GetSpacesBySpacePostsByPostData, type GetSpacesBySpacePostsByPostError, type GetSpacesBySpacePostsByPostErrors, type GetSpacesBySpacePostsByPostResponse, type GetSpacesBySpacePostsByPostResponses, type GetSpacesBySpacePostsData, type GetSpacesBySpacePostsError, type GetSpacesBySpacePostsErrors, type GetSpacesBySpacePostsResponse, type GetSpacesBySpacePostsResponses, type GetSpacesBySpaceQueueData, type GetSpacesBySpaceQueueError, type GetSpacesBySpaceQueueErrors, type GetSpacesBySpaceQueueResponse, type GetSpacesBySpaceQueueResponses, type GetSpacesBySpaceResponse, type GetSpacesBySpaceResponses, type GetSpacesBySpaceSlotsData, type GetSpacesBySpaceSlotsError, type GetSpacesBySpaceSlotsErrors, type GetSpacesBySpaceSlotsResponse, type GetSpacesBySpaceSlotsResponses, type GetSpacesBySpaceWebhooksData, type GetSpacesBySpaceWebhooksError, type GetSpacesBySpaceWebhooksErrors, type GetSpacesBySpaceWebhooksResponse, type GetSpacesBySpaceWebhooksResponses, type GetSpacesData, type GetSpacesError, type GetSpacesErrors, type GetSpacesResponse, type GetSpacesResponses, type GetSubscriptionData, type GetSubscriptionError, type GetSubscriptionErrors, type GetSubscriptionResponse, type GetSubscriptionResponses, type MediaResource, type PatchSpacesBySpaceMembersByUserData, type PatchSpacesBySpaceMembersByUserError, type PatchSpacesBySpaceMembersByUserErrors, type PatchSpacesBySpaceMembersByUserResponse, type PatchSpacesBySpaceMembersByUserResponses, type PostApiTokensData, type PostApiTokensError, type PostApiTokensErrors, type PostApiTokensResponses, type PostMediaSignData, type PostMediaSignError, type PostMediaSignErrors, type PostMediaSignResponse, type PostMediaSignResponses, type PostResource, type PostSpacesBySpaceBioAvatarData, type PostSpacesBySpaceBioAvatarError, type PostSpacesBySpaceBioAvatarErrors, type PostSpacesBySpaceBioAvatarResponse, type PostSpacesBySpaceBioAvatarResponses, type PostSpacesBySpaceBioBlocksByBlockReorderData, type PostSpacesBySpaceBioBlocksByBlockReorderError, type PostSpacesBySpaceBioBlocksByBlockReorderErrors, type PostSpacesBySpaceBioBlocksByBlockReorderResponse, type PostSpacesBySpaceBioBlocksByBlockReorderResponses, type PostSpacesBySpaceBioBlocksData, type PostSpacesBySpaceBioBlocksError, type PostSpacesBySpaceBioBlocksErrors, type PostSpacesBySpaceBioBlocksResponse, type PostSpacesBySpaceBioBlocksResponses, type PostSpacesBySpaceBioData, type PostSpacesBySpaceBioError, type PostSpacesBySpaceBioErrors, type PostSpacesBySpaceBioResponse, type PostSpacesBySpaceBioResponses, type PostSpacesBySpaceInvitationsByInvitationResendData, type PostSpacesBySpaceInvitationsByInvitationResendError, type PostSpacesBySpaceInvitationsByInvitationResendErrors, type PostSpacesBySpaceInvitationsByInvitationResendResponse, type PostSpacesBySpaceInvitationsByInvitationResendResponses, type PostSpacesBySpaceInvitationsData, type PostSpacesBySpaceInvitationsError, type PostSpacesBySpaceInvitationsErrors, type PostSpacesBySpaceInvitationsResponse, type PostSpacesBySpaceInvitationsResponses, type PostSpacesBySpaceMembersLeaveData, type PostSpacesBySpaceMembersLeaveError, type PostSpacesBySpaceMembersLeaveErrors, type PostSpacesBySpaceMembersLeaveResponse, type PostSpacesBySpaceMembersLeaveResponses, type PostSpacesBySpacePostsByPostRetryData, type PostSpacesBySpacePostsByPostRetryError, type PostSpacesBySpacePostsByPostRetryErrors, type PostSpacesBySpacePostsByPostRetryResponse, type PostSpacesBySpacePostsByPostRetryResponses, type PostSpacesBySpacePostsData, type PostSpacesBySpacePostsError, type PostSpacesBySpacePostsErrors, type PostSpacesBySpacePostsResponse, type PostSpacesBySpacePostsResponses, type PostSpacesBySpaceSlotsData, type PostSpacesBySpaceSlotsError, type PostSpacesBySpaceSlotsErrors, type PostSpacesBySpaceSlotsResponse, type PostSpacesBySpaceSlotsResponses, type PostSpacesBySpaceWebhooksData, type PostSpacesBySpaceWebhooksError, type PostSpacesBySpaceWebhooksErrors, type PostSpacesBySpaceWebhooksResponse, type PostSpacesBySpaceWebhooksResponses, type PostSpacesData, type PostSpacesError, type PostSpacesErrors, type PostSpacesResponse, type PostSpacesResponses, type PostStatus, type PutSpacesBySpaceBioBlocksByBlockData, type PutSpacesBySpaceBioBlocksByBlockError, type PutSpacesBySpaceBioBlocksByBlockErrors, type PutSpacesBySpaceBioBlocksByBlockResponse, type PutSpacesBySpaceBioBlocksByBlockResponses, type PutSpacesBySpaceBioData, type PutSpacesBySpaceBioError, type PutSpacesBySpaceBioErrors, type PutSpacesBySpaceBioResponse, type PutSpacesBySpaceBioResponses, type PutSpacesBySpaceData, type PutSpacesBySpaceError, type PutSpacesBySpaceErrors, type PutSpacesBySpacePostsByPostData, type PutSpacesBySpacePostsByPostError, type PutSpacesBySpacePostsByPostErrors, type PutSpacesBySpacePostsByPostResponse, type PutSpacesBySpacePostsByPostResponses, type PutSpacesBySpaceResponse, type PutSpacesBySpaceResponses, type PutSpacesBySpaceWebhooksByWebhookData, type PutSpacesBySpaceWebhooksByWebhookError, type PutSpacesBySpaceWebhooksByWebhookErrors, type PutSpacesBySpaceWebhooksByWebhookResponse, type PutSpacesBySpaceWebhooksByWebhookResponses, type SessionResource, type SignMediaRequest, type SlotResource, type SpaceInvitationResource, type SpaceMemberResource, type SpaceResource, type SpaceRole, type StoreBioBlockRequest, type StoreBioPageRequest, type StorePostRequest, type StoreSlotRequest, type StoreSpaceInvitationRequest, type StoreSpaceRequest, type StoreWebhookRequest, type UpdateBioBlockRequest, type UpdateBioPageRequest, type UpdatePostRequest, type UpdateSpaceMemberRequest, type UpdateSpaceRequest, type UpdateWebhookRequest, type WebhookResource, ZilfuApiError, type ZilfuApiErrorInit, type ZilfuClient, type ZilfuFetch, type ZilfuToken, createZilfuClient };
|