@zilfu/sdk 0.0.1 → 0.1.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/README.md +10 -6
- package/dist/index.cjs +685 -663
- package/dist/index.cjs.map +1 -1
- package/dist/index.d.cts +487 -373
- package/dist/index.d.ts +487 -373
- package/dist/index.js +673 -626
- package/dist/index.js.map +1 -1
- package/package.json +2 -3
- package/src/client.ts +12 -9
- package/src/generated/client/client.gen.ts +155 -143
- package/src/generated/client/index.ts +1 -1
- package/src/generated/client/types.gen.ts +21 -72
- package/src/generated/client/utils.gen.ts +20 -33
- package/src/generated/client.gen.ts +1 -3
- package/src/generated/core/auth.gen.ts +1 -2
- package/src/generated/core/bodySerializer.gen.ts +22 -32
- package/src/generated/core/params.gen.ts +38 -22
- package/src/generated/core/pathSerializer.gen.ts +4 -14
- package/src/generated/core/queryKeySerializer.gen.ts +117 -0
- package/src/generated/core/serverSentEvents.gen.ts +12 -34
- package/src/generated/core/types.gen.ts +5 -19
- package/src/generated/core/utils.gen.ts +2 -5
- package/src/generated/index.ts +2 -2
- package/src/generated/sdk.gen.ts +639 -676
- package/src/generated/types.gen.ts +188 -188
- package/src/index.ts +19 -2
|
@@ -289,7 +289,7 @@ export type WebhookResource = {
|
|
|
289
289
|
updated_at: string | null;
|
|
290
290
|
};
|
|
291
291
|
|
|
292
|
-
export type
|
|
292
|
+
export type DeleteSpacesBySpaceAccountsData = {
|
|
293
293
|
body?: never;
|
|
294
294
|
path: {
|
|
295
295
|
/**
|
|
@@ -303,7 +303,7 @@ export type AccountsDestroyManyData = {
|
|
|
303
303
|
url: '/spaces/{space}/accounts';
|
|
304
304
|
};
|
|
305
305
|
|
|
306
|
-
export type
|
|
306
|
+
export type DeleteSpacesBySpaceAccountsErrors = {
|
|
307
307
|
/**
|
|
308
308
|
* Unauthenticated
|
|
309
309
|
*/
|
|
@@ -348,17 +348,17 @@ export type AccountsDestroyManyErrors = {
|
|
|
348
348
|
};
|
|
349
349
|
};
|
|
350
350
|
|
|
351
|
-
export type
|
|
351
|
+
export type DeleteSpacesBySpaceAccountsError = DeleteSpacesBySpaceAccountsErrors[keyof DeleteSpacesBySpaceAccountsErrors];
|
|
352
352
|
|
|
353
|
-
export type
|
|
353
|
+
export type DeleteSpacesBySpaceAccountsResponses = {
|
|
354
354
|
200: {
|
|
355
355
|
[key: string]: unknown;
|
|
356
356
|
};
|
|
357
357
|
};
|
|
358
358
|
|
|
359
|
-
export type
|
|
359
|
+
export type DeleteSpacesBySpaceAccountsResponse = DeleteSpacesBySpaceAccountsResponses[keyof DeleteSpacesBySpaceAccountsResponses];
|
|
360
360
|
|
|
361
|
-
export type
|
|
361
|
+
export type GetSpacesBySpaceAccountsData = {
|
|
362
362
|
body?: never;
|
|
363
363
|
path: {
|
|
364
364
|
/**
|
|
@@ -370,7 +370,7 @@ export type AccountsIndexData = {
|
|
|
370
370
|
url: '/spaces/{space}/accounts';
|
|
371
371
|
};
|
|
372
372
|
|
|
373
|
-
export type
|
|
373
|
+
export type GetSpacesBySpaceAccountsErrors = {
|
|
374
374
|
/**
|
|
375
375
|
* Unauthenticated
|
|
376
376
|
*/
|
|
@@ -400,9 +400,9 @@ export type AccountsIndexErrors = {
|
|
|
400
400
|
};
|
|
401
401
|
};
|
|
402
402
|
|
|
403
|
-
export type
|
|
403
|
+
export type GetSpacesBySpaceAccountsError = GetSpacesBySpaceAccountsErrors[keyof GetSpacesBySpaceAccountsErrors];
|
|
404
404
|
|
|
405
|
-
export type
|
|
405
|
+
export type GetSpacesBySpaceAccountsResponses = {
|
|
406
406
|
/**
|
|
407
407
|
* Array of `AccountResource`
|
|
408
408
|
*/
|
|
@@ -411,9 +411,9 @@ export type AccountsIndexResponses = {
|
|
|
411
411
|
};
|
|
412
412
|
};
|
|
413
413
|
|
|
414
|
-
export type
|
|
414
|
+
export type GetSpacesBySpaceAccountsResponse = GetSpacesBySpaceAccountsResponses[keyof GetSpacesBySpaceAccountsResponses];
|
|
415
415
|
|
|
416
|
-
export type
|
|
416
|
+
export type PatchSpacesBySpaceAccountsByAccountActivateData = {
|
|
417
417
|
body?: never;
|
|
418
418
|
path: {
|
|
419
419
|
/**
|
|
@@ -429,7 +429,7 @@ export type AccountsActivateData = {
|
|
|
429
429
|
url: '/spaces/{space}/accounts/{account}/activate';
|
|
430
430
|
};
|
|
431
431
|
|
|
432
|
-
export type
|
|
432
|
+
export type PatchSpacesBySpaceAccountsByAccountActivateErrors = {
|
|
433
433
|
/**
|
|
434
434
|
* Unauthenticated
|
|
435
435
|
*/
|
|
@@ -459,9 +459,9 @@ export type AccountsActivateErrors = {
|
|
|
459
459
|
};
|
|
460
460
|
};
|
|
461
461
|
|
|
462
|
-
export type
|
|
462
|
+
export type PatchSpacesBySpaceAccountsByAccountActivateError = PatchSpacesBySpaceAccountsByAccountActivateErrors[keyof PatchSpacesBySpaceAccountsByAccountActivateErrors];
|
|
463
463
|
|
|
464
|
-
export type
|
|
464
|
+
export type PatchSpacesBySpaceAccountsByAccountActivateResponses = {
|
|
465
465
|
/**
|
|
466
466
|
* `AccountResource`
|
|
467
467
|
*/
|
|
@@ -472,9 +472,9 @@ export type AccountsActivateResponses = {
|
|
|
472
472
|
};
|
|
473
473
|
};
|
|
474
474
|
|
|
475
|
-
export type
|
|
475
|
+
export type PatchSpacesBySpaceAccountsByAccountActivateResponse = PatchSpacesBySpaceAccountsByAccountActivateResponses[keyof PatchSpacesBySpaceAccountsByAccountActivateResponses];
|
|
476
476
|
|
|
477
|
-
export type
|
|
477
|
+
export type GetSpacesBySpaceAccountsByAccountBoardsData = {
|
|
478
478
|
body?: never;
|
|
479
479
|
path: {
|
|
480
480
|
/**
|
|
@@ -490,7 +490,7 @@ export type AccountsBoardsData = {
|
|
|
490
490
|
url: '/spaces/{space}/accounts/{account}/boards';
|
|
491
491
|
};
|
|
492
492
|
|
|
493
|
-
export type
|
|
493
|
+
export type GetSpacesBySpaceAccountsByAccountBoardsErrors = {
|
|
494
494
|
/**
|
|
495
495
|
* Unauthenticated
|
|
496
496
|
*/
|
|
@@ -520,9 +520,9 @@ export type AccountsBoardsErrors = {
|
|
|
520
520
|
};
|
|
521
521
|
};
|
|
522
522
|
|
|
523
|
-
export type
|
|
523
|
+
export type GetSpacesBySpaceAccountsByAccountBoardsError = GetSpacesBySpaceAccountsByAccountBoardsErrors[keyof GetSpacesBySpaceAccountsByAccountBoardsErrors];
|
|
524
524
|
|
|
525
|
-
export type
|
|
525
|
+
export type GetSpacesBySpaceAccountsByAccountBoardsResponses = {
|
|
526
526
|
200: {
|
|
527
527
|
data: Array<{
|
|
528
528
|
id: string;
|
|
@@ -533,9 +533,9 @@ export type AccountsBoardsResponses = {
|
|
|
533
533
|
};
|
|
534
534
|
};
|
|
535
535
|
|
|
536
|
-
export type
|
|
536
|
+
export type GetSpacesBySpaceAccountsByAccountBoardsResponse = GetSpacesBySpaceAccountsByAccountBoardsResponses[keyof GetSpacesBySpaceAccountsByAccountBoardsResponses];
|
|
537
537
|
|
|
538
|
-
export type
|
|
538
|
+
export type DeleteSpacesBySpaceAccountsByAccountData = {
|
|
539
539
|
body?: never;
|
|
540
540
|
path: {
|
|
541
541
|
/**
|
|
@@ -551,7 +551,7 @@ export type AccountsDestroyData = {
|
|
|
551
551
|
url: '/spaces/{space}/accounts/{account}';
|
|
552
552
|
};
|
|
553
553
|
|
|
554
|
-
export type
|
|
554
|
+
export type DeleteSpacesBySpaceAccountsByAccountErrors = {
|
|
555
555
|
/**
|
|
556
556
|
* Unauthenticated
|
|
557
557
|
*/
|
|
@@ -581,17 +581,17 @@ export type AccountsDestroyErrors = {
|
|
|
581
581
|
};
|
|
582
582
|
};
|
|
583
583
|
|
|
584
|
-
export type
|
|
584
|
+
export type DeleteSpacesBySpaceAccountsByAccountError = DeleteSpacesBySpaceAccountsByAccountErrors[keyof DeleteSpacesBySpaceAccountsByAccountErrors];
|
|
585
585
|
|
|
586
|
-
export type
|
|
586
|
+
export type DeleteSpacesBySpaceAccountsByAccountResponses = {
|
|
587
587
|
200: {
|
|
588
588
|
[key: string]: unknown;
|
|
589
589
|
};
|
|
590
590
|
};
|
|
591
591
|
|
|
592
|
-
export type
|
|
592
|
+
export type DeleteSpacesBySpaceAccountsByAccountResponse = DeleteSpacesBySpaceAccountsByAccountResponses[keyof DeleteSpacesBySpaceAccountsByAccountResponses];
|
|
593
593
|
|
|
594
|
-
export type
|
|
594
|
+
export type PostApiTokensData = {
|
|
595
595
|
body: {
|
|
596
596
|
name: string;
|
|
597
597
|
};
|
|
@@ -600,7 +600,7 @@ export type ApiTokensStoreData = {
|
|
|
600
600
|
url: '/api-tokens';
|
|
601
601
|
};
|
|
602
602
|
|
|
603
|
-
export type
|
|
603
|
+
export type PostApiTokensErrors = {
|
|
604
604
|
/**
|
|
605
605
|
* Unauthenticated
|
|
606
606
|
*/
|
|
@@ -627,13 +627,13 @@ export type ApiTokensStoreErrors = {
|
|
|
627
627
|
};
|
|
628
628
|
};
|
|
629
629
|
|
|
630
|
-
export type
|
|
630
|
+
export type PostApiTokensError = PostApiTokensErrors[keyof PostApiTokensErrors];
|
|
631
631
|
|
|
632
|
-
export type
|
|
632
|
+
export type PostApiTokensResponses = {
|
|
633
633
|
200: unknown;
|
|
634
634
|
};
|
|
635
635
|
|
|
636
|
-
export type
|
|
636
|
+
export type DeleteApiTokensByTokenIdData = {
|
|
637
637
|
body?: never;
|
|
638
638
|
path: {
|
|
639
639
|
tokenId: string;
|
|
@@ -642,7 +642,7 @@ export type ApiTokensDestroyData = {
|
|
|
642
642
|
url: '/api-tokens/{tokenId}';
|
|
643
643
|
};
|
|
644
644
|
|
|
645
|
-
export type
|
|
645
|
+
export type DeleteApiTokensByTokenIdErrors = {
|
|
646
646
|
/**
|
|
647
647
|
* Unauthenticated
|
|
648
648
|
*/
|
|
@@ -654,13 +654,13 @@ export type ApiTokensDestroyErrors = {
|
|
|
654
654
|
};
|
|
655
655
|
};
|
|
656
656
|
|
|
657
|
-
export type
|
|
657
|
+
export type DeleteApiTokensByTokenIdError = DeleteApiTokensByTokenIdErrors[keyof DeleteApiTokensByTokenIdErrors];
|
|
658
658
|
|
|
659
|
-
export type
|
|
659
|
+
export type DeleteApiTokensByTokenIdResponses = {
|
|
660
660
|
200: unknown;
|
|
661
661
|
};
|
|
662
662
|
|
|
663
|
-
export type
|
|
663
|
+
export type GetSpacesBySpaceBioBlocksData = {
|
|
664
664
|
body?: never;
|
|
665
665
|
path: {
|
|
666
666
|
/**
|
|
@@ -672,7 +672,7 @@ export type BioBlocksIndexData = {
|
|
|
672
672
|
url: '/spaces/{space}/bio/blocks';
|
|
673
673
|
};
|
|
674
674
|
|
|
675
|
-
export type
|
|
675
|
+
export type GetSpacesBySpaceBioBlocksErrors = {
|
|
676
676
|
/**
|
|
677
677
|
* Unauthenticated
|
|
678
678
|
*/
|
|
@@ -702,9 +702,9 @@ export type BioBlocksIndexErrors = {
|
|
|
702
702
|
};
|
|
703
703
|
};
|
|
704
704
|
|
|
705
|
-
export type
|
|
705
|
+
export type GetSpacesBySpaceBioBlocksError = GetSpacesBySpaceBioBlocksErrors[keyof GetSpacesBySpaceBioBlocksErrors];
|
|
706
706
|
|
|
707
|
-
export type
|
|
707
|
+
export type GetSpacesBySpaceBioBlocksResponses = {
|
|
708
708
|
/**
|
|
709
709
|
* Array of items
|
|
710
710
|
*/
|
|
@@ -713,9 +713,9 @@ export type BioBlocksIndexResponses = {
|
|
|
713
713
|
};
|
|
714
714
|
};
|
|
715
715
|
|
|
716
|
-
export type
|
|
716
|
+
export type GetSpacesBySpaceBioBlocksResponse = GetSpacesBySpaceBioBlocksResponses[keyof GetSpacesBySpaceBioBlocksResponses];
|
|
717
717
|
|
|
718
|
-
export type
|
|
718
|
+
export type PostSpacesBySpaceBioBlocksData = {
|
|
719
719
|
body: StoreBioBlockRequest;
|
|
720
720
|
path: {
|
|
721
721
|
/**
|
|
@@ -727,7 +727,7 @@ export type BioBlocksStoreData = {
|
|
|
727
727
|
url: '/spaces/{space}/bio/blocks';
|
|
728
728
|
};
|
|
729
729
|
|
|
730
|
-
export type
|
|
730
|
+
export type PostSpacesBySpaceBioBlocksErrors = {
|
|
731
731
|
/**
|
|
732
732
|
* Unauthenticated
|
|
733
733
|
*/
|
|
@@ -772,17 +772,17 @@ export type BioBlocksStoreErrors = {
|
|
|
772
772
|
};
|
|
773
773
|
};
|
|
774
774
|
|
|
775
|
-
export type
|
|
775
|
+
export type PostSpacesBySpaceBioBlocksError = PostSpacesBySpaceBioBlocksErrors[keyof PostSpacesBySpaceBioBlocksErrors];
|
|
776
776
|
|
|
777
|
-
export type
|
|
777
|
+
export type PostSpacesBySpaceBioBlocksResponses = {
|
|
778
778
|
200: {
|
|
779
779
|
[key: string]: unknown;
|
|
780
780
|
};
|
|
781
781
|
};
|
|
782
782
|
|
|
783
|
-
export type
|
|
783
|
+
export type PostSpacesBySpaceBioBlocksResponse = PostSpacesBySpaceBioBlocksResponses[keyof PostSpacesBySpaceBioBlocksResponses];
|
|
784
784
|
|
|
785
|
-
export type
|
|
785
|
+
export type DeleteSpacesBySpaceBioBlocksByBlockData = {
|
|
786
786
|
body?: never;
|
|
787
787
|
path: {
|
|
788
788
|
/**
|
|
@@ -798,7 +798,7 @@ export type BioBlocksDestroyData = {
|
|
|
798
798
|
url: '/spaces/{space}/bio/blocks/{block}';
|
|
799
799
|
};
|
|
800
800
|
|
|
801
|
-
export type
|
|
801
|
+
export type DeleteSpacesBySpaceBioBlocksByBlockErrors = {
|
|
802
802
|
/**
|
|
803
803
|
* Unauthenticated
|
|
804
804
|
*/
|
|
@@ -828,17 +828,17 @@ export type BioBlocksDestroyErrors = {
|
|
|
828
828
|
};
|
|
829
829
|
};
|
|
830
830
|
|
|
831
|
-
export type
|
|
831
|
+
export type DeleteSpacesBySpaceBioBlocksByBlockError = DeleteSpacesBySpaceBioBlocksByBlockErrors[keyof DeleteSpacesBySpaceBioBlocksByBlockErrors];
|
|
832
832
|
|
|
833
|
-
export type
|
|
833
|
+
export type DeleteSpacesBySpaceBioBlocksByBlockResponses = {
|
|
834
834
|
200: {
|
|
835
835
|
[key: string]: unknown;
|
|
836
836
|
};
|
|
837
837
|
};
|
|
838
838
|
|
|
839
|
-
export type
|
|
839
|
+
export type DeleteSpacesBySpaceBioBlocksByBlockResponse = DeleteSpacesBySpaceBioBlocksByBlockResponses[keyof DeleteSpacesBySpaceBioBlocksByBlockResponses];
|
|
840
840
|
|
|
841
|
-
export type
|
|
841
|
+
export type PutSpacesBySpaceBioBlocksByBlockData = {
|
|
842
842
|
body?: UpdateBioBlockRequest;
|
|
843
843
|
path: {
|
|
844
844
|
/**
|
|
@@ -854,7 +854,7 @@ export type BioBlocksUpdateData = {
|
|
|
854
854
|
url: '/spaces/{space}/bio/blocks/{block}';
|
|
855
855
|
};
|
|
856
856
|
|
|
857
|
-
export type
|
|
857
|
+
export type PutSpacesBySpaceBioBlocksByBlockErrors = {
|
|
858
858
|
/**
|
|
859
859
|
* Unauthenticated
|
|
860
860
|
*/
|
|
@@ -899,9 +899,9 @@ export type BioBlocksUpdateErrors = {
|
|
|
899
899
|
};
|
|
900
900
|
};
|
|
901
901
|
|
|
902
|
-
export type
|
|
902
|
+
export type PutSpacesBySpaceBioBlocksByBlockError = PutSpacesBySpaceBioBlocksByBlockErrors[keyof PutSpacesBySpaceBioBlocksByBlockErrors];
|
|
903
903
|
|
|
904
|
-
export type
|
|
904
|
+
export type PutSpacesBySpaceBioBlocksByBlockResponses = {
|
|
905
905
|
/**
|
|
906
906
|
* `BioBlockResource`
|
|
907
907
|
*/
|
|
@@ -912,9 +912,9 @@ export type BioBlocksUpdateResponses = {
|
|
|
912
912
|
};
|
|
913
913
|
};
|
|
914
914
|
|
|
915
|
-
export type
|
|
915
|
+
export type PutSpacesBySpaceBioBlocksByBlockResponse = PutSpacesBySpaceBioBlocksByBlockResponses[keyof PutSpacesBySpaceBioBlocksByBlockResponses];
|
|
916
916
|
|
|
917
|
-
export type
|
|
917
|
+
export type PostSpacesBySpaceBioBlocksByBlockReorderData = {
|
|
918
918
|
body: {
|
|
919
919
|
direction: 'up' | 'down';
|
|
920
920
|
};
|
|
@@ -932,7 +932,7 @@ export type BioBlocksReorderData = {
|
|
|
932
932
|
url: '/spaces/{space}/bio/blocks/{block}/reorder';
|
|
933
933
|
};
|
|
934
934
|
|
|
935
|
-
export type
|
|
935
|
+
export type PostSpacesBySpaceBioBlocksByBlockReorderErrors = {
|
|
936
936
|
/**
|
|
937
937
|
* Unauthenticated
|
|
938
938
|
*/
|
|
@@ -977,17 +977,17 @@ export type BioBlocksReorderErrors = {
|
|
|
977
977
|
};
|
|
978
978
|
};
|
|
979
979
|
|
|
980
|
-
export type
|
|
980
|
+
export type PostSpacesBySpaceBioBlocksByBlockReorderError = PostSpacesBySpaceBioBlocksByBlockReorderErrors[keyof PostSpacesBySpaceBioBlocksByBlockReorderErrors];
|
|
981
981
|
|
|
982
|
-
export type
|
|
982
|
+
export type PostSpacesBySpaceBioBlocksByBlockReorderResponses = {
|
|
983
983
|
200: {
|
|
984
984
|
[key: string]: unknown;
|
|
985
985
|
};
|
|
986
986
|
};
|
|
987
987
|
|
|
988
|
-
export type
|
|
988
|
+
export type PostSpacesBySpaceBioBlocksByBlockReorderResponse = PostSpacesBySpaceBioBlocksByBlockReorderResponses[keyof PostSpacesBySpaceBioBlocksByBlockReorderResponses];
|
|
989
989
|
|
|
990
|
-
export type
|
|
990
|
+
export type GetSpacesBySpaceBioData = {
|
|
991
991
|
body?: never;
|
|
992
992
|
path: {
|
|
993
993
|
/**
|
|
@@ -999,7 +999,7 @@ export type BioShowData = {
|
|
|
999
999
|
url: '/spaces/{space}/bio';
|
|
1000
1000
|
};
|
|
1001
1001
|
|
|
1002
|
-
export type
|
|
1002
|
+
export type GetSpacesBySpaceBioErrors = {
|
|
1003
1003
|
/**
|
|
1004
1004
|
* Unauthenticated
|
|
1005
1005
|
*/
|
|
@@ -1029,9 +1029,9 @@ export type BioShowErrors = {
|
|
|
1029
1029
|
};
|
|
1030
1030
|
};
|
|
1031
1031
|
|
|
1032
|
-
export type
|
|
1032
|
+
export type GetSpacesBySpaceBioError = GetSpacesBySpaceBioErrors[keyof GetSpacesBySpaceBioErrors];
|
|
1033
1033
|
|
|
1034
|
-
export type
|
|
1034
|
+
export type GetSpacesBySpaceBioResponses = {
|
|
1035
1035
|
/**
|
|
1036
1036
|
* `BioPageResource`
|
|
1037
1037
|
*/
|
|
@@ -1040,9 +1040,9 @@ export type BioShowResponses = {
|
|
|
1040
1040
|
};
|
|
1041
1041
|
};
|
|
1042
1042
|
|
|
1043
|
-
export type
|
|
1043
|
+
export type GetSpacesBySpaceBioResponse = GetSpacesBySpaceBioResponses[keyof GetSpacesBySpaceBioResponses];
|
|
1044
1044
|
|
|
1045
|
-
export type
|
|
1045
|
+
export type PostSpacesBySpaceBioData = {
|
|
1046
1046
|
body: StoreBioPageRequest;
|
|
1047
1047
|
path: {
|
|
1048
1048
|
/**
|
|
@@ -1054,7 +1054,7 @@ export type BioStoreData = {
|
|
|
1054
1054
|
url: '/spaces/{space}/bio';
|
|
1055
1055
|
};
|
|
1056
1056
|
|
|
1057
|
-
export type
|
|
1057
|
+
export type PostSpacesBySpaceBioErrors = {
|
|
1058
1058
|
/**
|
|
1059
1059
|
* Unauthenticated
|
|
1060
1060
|
*/
|
|
@@ -1099,17 +1099,17 @@ export type BioStoreErrors = {
|
|
|
1099
1099
|
};
|
|
1100
1100
|
};
|
|
1101
1101
|
|
|
1102
|
-
export type
|
|
1102
|
+
export type PostSpacesBySpaceBioError = PostSpacesBySpaceBioErrors[keyof PostSpacesBySpaceBioErrors];
|
|
1103
1103
|
|
|
1104
|
-
export type
|
|
1104
|
+
export type PostSpacesBySpaceBioResponses = {
|
|
1105
1105
|
200: {
|
|
1106
1106
|
[key: string]: unknown;
|
|
1107
1107
|
};
|
|
1108
1108
|
};
|
|
1109
1109
|
|
|
1110
|
-
export type
|
|
1110
|
+
export type PostSpacesBySpaceBioResponse = PostSpacesBySpaceBioResponses[keyof PostSpacesBySpaceBioResponses];
|
|
1111
1111
|
|
|
1112
|
-
export type
|
|
1112
|
+
export type PutSpacesBySpaceBioData = {
|
|
1113
1113
|
body?: UpdateBioPageRequest;
|
|
1114
1114
|
path: {
|
|
1115
1115
|
/**
|
|
@@ -1121,7 +1121,7 @@ export type BioUpdateData = {
|
|
|
1121
1121
|
url: '/spaces/{space}/bio';
|
|
1122
1122
|
};
|
|
1123
1123
|
|
|
1124
|
-
export type
|
|
1124
|
+
export type PutSpacesBySpaceBioErrors = {
|
|
1125
1125
|
/**
|
|
1126
1126
|
* Unauthenticated
|
|
1127
1127
|
*/
|
|
@@ -1166,9 +1166,9 @@ export type BioUpdateErrors = {
|
|
|
1166
1166
|
};
|
|
1167
1167
|
};
|
|
1168
1168
|
|
|
1169
|
-
export type
|
|
1169
|
+
export type PutSpacesBySpaceBioError = PutSpacesBySpaceBioErrors[keyof PutSpacesBySpaceBioErrors];
|
|
1170
1170
|
|
|
1171
|
-
export type
|
|
1171
|
+
export type PutSpacesBySpaceBioResponses = {
|
|
1172
1172
|
/**
|
|
1173
1173
|
* `BioPageResource`
|
|
1174
1174
|
*/
|
|
@@ -1179,9 +1179,9 @@ export type BioUpdateResponses = {
|
|
|
1179
1179
|
};
|
|
1180
1180
|
};
|
|
1181
1181
|
|
|
1182
|
-
export type
|
|
1182
|
+
export type PutSpacesBySpaceBioResponse = PutSpacesBySpaceBioResponses[keyof PutSpacesBySpaceBioResponses];
|
|
1183
1183
|
|
|
1184
|
-
export type
|
|
1184
|
+
export type PostSpacesBySpaceBioAvatarData = {
|
|
1185
1185
|
body: {
|
|
1186
1186
|
file: Blob | File;
|
|
1187
1187
|
};
|
|
@@ -1195,7 +1195,7 @@ export type BioAvatarData = {
|
|
|
1195
1195
|
url: '/spaces/{space}/bio/avatar';
|
|
1196
1196
|
};
|
|
1197
1197
|
|
|
1198
|
-
export type
|
|
1198
|
+
export type PostSpacesBySpaceBioAvatarErrors = {
|
|
1199
1199
|
/**
|
|
1200
1200
|
* Unauthenticated
|
|
1201
1201
|
*/
|
|
@@ -1240,17 +1240,17 @@ export type BioAvatarErrors = {
|
|
|
1240
1240
|
};
|
|
1241
1241
|
};
|
|
1242
1242
|
|
|
1243
|
-
export type
|
|
1243
|
+
export type PostSpacesBySpaceBioAvatarError = PostSpacesBySpaceBioAvatarErrors[keyof PostSpacesBySpaceBioAvatarErrors];
|
|
1244
1244
|
|
|
1245
|
-
export type
|
|
1245
|
+
export type PostSpacesBySpaceBioAvatarResponses = {
|
|
1246
1246
|
200: {
|
|
1247
1247
|
[key: string]: unknown;
|
|
1248
1248
|
};
|
|
1249
1249
|
};
|
|
1250
1250
|
|
|
1251
|
-
export type
|
|
1251
|
+
export type PostSpacesBySpaceBioAvatarResponse = PostSpacesBySpaceBioAvatarResponses[keyof PostSpacesBySpaceBioAvatarResponses];
|
|
1252
1252
|
|
|
1253
|
-
export type
|
|
1253
|
+
export type PostMediaData = {
|
|
1254
1254
|
body: {
|
|
1255
1255
|
file: Blob | File;
|
|
1256
1256
|
};
|
|
@@ -1259,7 +1259,7 @@ export type MediaStoreData = {
|
|
|
1259
1259
|
url: '/media';
|
|
1260
1260
|
};
|
|
1261
1261
|
|
|
1262
|
-
export type
|
|
1262
|
+
export type PostMediaErrors = {
|
|
1263
1263
|
/**
|
|
1264
1264
|
* Unauthenticated
|
|
1265
1265
|
*/
|
|
@@ -1286,9 +1286,9 @@ export type MediaStoreErrors = {
|
|
|
1286
1286
|
};
|
|
1287
1287
|
};
|
|
1288
1288
|
|
|
1289
|
-
export type
|
|
1289
|
+
export type PostMediaError = PostMediaErrors[keyof PostMediaErrors];
|
|
1290
1290
|
|
|
1291
|
-
export type
|
|
1291
|
+
export type PostMediaResponses = {
|
|
1292
1292
|
/**
|
|
1293
1293
|
* `MediaResource`
|
|
1294
1294
|
*/
|
|
@@ -1297,9 +1297,9 @@ export type MediaStoreResponses = {
|
|
|
1297
1297
|
};
|
|
1298
1298
|
};
|
|
1299
1299
|
|
|
1300
|
-
export type
|
|
1300
|
+
export type PostMediaResponse = PostMediaResponses[keyof PostMediaResponses];
|
|
1301
1301
|
|
|
1302
|
-
export type
|
|
1302
|
+
export type DeleteMediaByMediaData = {
|
|
1303
1303
|
body?: never;
|
|
1304
1304
|
path: {
|
|
1305
1305
|
/**
|
|
@@ -1311,7 +1311,7 @@ export type MediaDestroyData = {
|
|
|
1311
1311
|
url: '/media/{media}';
|
|
1312
1312
|
};
|
|
1313
1313
|
|
|
1314
|
-
export type
|
|
1314
|
+
export type DeleteMediaByMediaErrors = {
|
|
1315
1315
|
/**
|
|
1316
1316
|
* Unauthenticated
|
|
1317
1317
|
*/
|
|
@@ -1341,17 +1341,17 @@ export type MediaDestroyErrors = {
|
|
|
1341
1341
|
};
|
|
1342
1342
|
};
|
|
1343
1343
|
|
|
1344
|
-
export type
|
|
1344
|
+
export type DeleteMediaByMediaError = DeleteMediaByMediaErrors[keyof DeleteMediaByMediaErrors];
|
|
1345
1345
|
|
|
1346
|
-
export type
|
|
1346
|
+
export type DeleteMediaByMediaResponses = {
|
|
1347
1347
|
200: {
|
|
1348
1348
|
[key: string]: unknown;
|
|
1349
1349
|
};
|
|
1350
1350
|
};
|
|
1351
1351
|
|
|
1352
|
-
export type
|
|
1352
|
+
export type DeleteMediaByMediaResponse = DeleteMediaByMediaResponses[keyof DeleteMediaByMediaResponses];
|
|
1353
1353
|
|
|
1354
|
-
export type
|
|
1354
|
+
export type GetSpacesBySpacePostsData = {
|
|
1355
1355
|
body?: never;
|
|
1356
1356
|
path: {
|
|
1357
1357
|
/**
|
|
@@ -1368,7 +1368,7 @@ export type PostsIndexData = {
|
|
|
1368
1368
|
url: '/spaces/{space}/posts';
|
|
1369
1369
|
};
|
|
1370
1370
|
|
|
1371
|
-
export type
|
|
1371
|
+
export type GetSpacesBySpacePostsErrors = {
|
|
1372
1372
|
/**
|
|
1373
1373
|
* Unauthenticated
|
|
1374
1374
|
*/
|
|
@@ -1398,9 +1398,9 @@ export type PostsIndexErrors = {
|
|
|
1398
1398
|
};
|
|
1399
1399
|
};
|
|
1400
1400
|
|
|
1401
|
-
export type
|
|
1401
|
+
export type GetSpacesBySpacePostsError = GetSpacesBySpacePostsErrors[keyof GetSpacesBySpacePostsErrors];
|
|
1402
1402
|
|
|
1403
|
-
export type
|
|
1403
|
+
export type GetSpacesBySpacePostsResponses = {
|
|
1404
1404
|
/**
|
|
1405
1405
|
* Paginated set of `PostResource`
|
|
1406
1406
|
*/
|
|
@@ -1444,9 +1444,9 @@ export type PostsIndexResponses = {
|
|
|
1444
1444
|
};
|
|
1445
1445
|
};
|
|
1446
1446
|
|
|
1447
|
-
export type
|
|
1447
|
+
export type GetSpacesBySpacePostsResponse = GetSpacesBySpacePostsResponses[keyof GetSpacesBySpacePostsResponses];
|
|
1448
1448
|
|
|
1449
|
-
export type
|
|
1449
|
+
export type PostSpacesBySpacePostsData = {
|
|
1450
1450
|
body: StorePostRequest;
|
|
1451
1451
|
path: {
|
|
1452
1452
|
space: string;
|
|
@@ -1455,7 +1455,7 @@ export type PostsStoreData = {
|
|
|
1455
1455
|
url: '/spaces/{space}/posts';
|
|
1456
1456
|
};
|
|
1457
1457
|
|
|
1458
|
-
export type
|
|
1458
|
+
export type PostSpacesBySpacePostsErrors = {
|
|
1459
1459
|
/**
|
|
1460
1460
|
* Unauthenticated
|
|
1461
1461
|
*/
|
|
@@ -1491,17 +1491,17 @@ export type PostsStoreErrors = {
|
|
|
1491
1491
|
};
|
|
1492
1492
|
};
|
|
1493
1493
|
|
|
1494
|
-
export type
|
|
1494
|
+
export type PostSpacesBySpacePostsError = PostSpacesBySpacePostsErrors[keyof PostSpacesBySpacePostsErrors];
|
|
1495
1495
|
|
|
1496
|
-
export type
|
|
1496
|
+
export type PostSpacesBySpacePostsResponses = {
|
|
1497
1497
|
200: {
|
|
1498
1498
|
[key: string]: unknown;
|
|
1499
1499
|
};
|
|
1500
1500
|
};
|
|
1501
1501
|
|
|
1502
|
-
export type
|
|
1502
|
+
export type PostSpacesBySpacePostsResponse = PostSpacesBySpacePostsResponses[keyof PostSpacesBySpacePostsResponses];
|
|
1503
1503
|
|
|
1504
|
-
export type
|
|
1504
|
+
export type DeleteSpacesBySpacePostsByPostData = {
|
|
1505
1505
|
body?: never;
|
|
1506
1506
|
path: {
|
|
1507
1507
|
/**
|
|
@@ -1517,7 +1517,7 @@ export type PostsDestroyData = {
|
|
|
1517
1517
|
url: '/spaces/{space}/posts/{post}';
|
|
1518
1518
|
};
|
|
1519
1519
|
|
|
1520
|
-
export type
|
|
1520
|
+
export type DeleteSpacesBySpacePostsByPostErrors = {
|
|
1521
1521
|
/**
|
|
1522
1522
|
* Unauthenticated
|
|
1523
1523
|
*/
|
|
@@ -1547,17 +1547,17 @@ export type PostsDestroyErrors = {
|
|
|
1547
1547
|
};
|
|
1548
1548
|
};
|
|
1549
1549
|
|
|
1550
|
-
export type
|
|
1550
|
+
export type DeleteSpacesBySpacePostsByPostError = DeleteSpacesBySpacePostsByPostErrors[keyof DeleteSpacesBySpacePostsByPostErrors];
|
|
1551
1551
|
|
|
1552
|
-
export type
|
|
1552
|
+
export type DeleteSpacesBySpacePostsByPostResponses = {
|
|
1553
1553
|
200: {
|
|
1554
1554
|
[key: string]: unknown;
|
|
1555
1555
|
};
|
|
1556
1556
|
};
|
|
1557
1557
|
|
|
1558
|
-
export type
|
|
1558
|
+
export type DeleteSpacesBySpacePostsByPostResponse = DeleteSpacesBySpacePostsByPostResponses[keyof DeleteSpacesBySpacePostsByPostResponses];
|
|
1559
1559
|
|
|
1560
|
-
export type
|
|
1560
|
+
export type GetSpacesBySpacePostsByPostData = {
|
|
1561
1561
|
body?: never;
|
|
1562
1562
|
path: {
|
|
1563
1563
|
/**
|
|
@@ -1573,7 +1573,7 @@ export type PostsShowData = {
|
|
|
1573
1573
|
url: '/spaces/{space}/posts/{post}';
|
|
1574
1574
|
};
|
|
1575
1575
|
|
|
1576
|
-
export type
|
|
1576
|
+
export type GetSpacesBySpacePostsByPostErrors = {
|
|
1577
1577
|
/**
|
|
1578
1578
|
* Unauthenticated
|
|
1579
1579
|
*/
|
|
@@ -1603,9 +1603,9 @@ export type PostsShowErrors = {
|
|
|
1603
1603
|
};
|
|
1604
1604
|
};
|
|
1605
1605
|
|
|
1606
|
-
export type
|
|
1606
|
+
export type GetSpacesBySpacePostsByPostError = GetSpacesBySpacePostsByPostErrors[keyof GetSpacesBySpacePostsByPostErrors];
|
|
1607
1607
|
|
|
1608
|
-
export type
|
|
1608
|
+
export type GetSpacesBySpacePostsByPostResponses = {
|
|
1609
1609
|
/**
|
|
1610
1610
|
* `PostResource`
|
|
1611
1611
|
*/
|
|
@@ -1614,9 +1614,9 @@ export type PostsShowResponses = {
|
|
|
1614
1614
|
};
|
|
1615
1615
|
};
|
|
1616
1616
|
|
|
1617
|
-
export type
|
|
1617
|
+
export type GetSpacesBySpacePostsByPostResponse = GetSpacesBySpacePostsByPostResponses[keyof GetSpacesBySpacePostsByPostResponses];
|
|
1618
1618
|
|
|
1619
|
-
export type
|
|
1619
|
+
export type PutSpacesBySpacePostsByPostData = {
|
|
1620
1620
|
body?: UpdatePostRequest;
|
|
1621
1621
|
path: {
|
|
1622
1622
|
/**
|
|
@@ -1632,7 +1632,7 @@ export type PostsUpdateData = {
|
|
|
1632
1632
|
url: '/spaces/{space}/posts/{post}';
|
|
1633
1633
|
};
|
|
1634
1634
|
|
|
1635
|
-
export type
|
|
1635
|
+
export type PutSpacesBySpacePostsByPostErrors = {
|
|
1636
1636
|
/**
|
|
1637
1637
|
* Unauthenticated
|
|
1638
1638
|
*/
|
|
@@ -1677,9 +1677,9 @@ export type PostsUpdateErrors = {
|
|
|
1677
1677
|
};
|
|
1678
1678
|
};
|
|
1679
1679
|
|
|
1680
|
-
export type
|
|
1680
|
+
export type PutSpacesBySpacePostsByPostError = PutSpacesBySpacePostsByPostErrors[keyof PutSpacesBySpacePostsByPostErrors];
|
|
1681
1681
|
|
|
1682
|
-
export type
|
|
1682
|
+
export type PutSpacesBySpacePostsByPostResponses = {
|
|
1683
1683
|
/**
|
|
1684
1684
|
* `PostResource`
|
|
1685
1685
|
*/
|
|
@@ -1690,9 +1690,9 @@ export type PostsUpdateResponses = {
|
|
|
1690
1690
|
};
|
|
1691
1691
|
};
|
|
1692
1692
|
|
|
1693
|
-
export type
|
|
1693
|
+
export type PutSpacesBySpacePostsByPostResponse = PutSpacesBySpacePostsByPostResponses[keyof PutSpacesBySpacePostsByPostResponses];
|
|
1694
1694
|
|
|
1695
|
-
export type
|
|
1695
|
+
export type PutSpacesBySpaceClustersByClusterIdData = {
|
|
1696
1696
|
body: UpdateClusterRequest;
|
|
1697
1697
|
path: {
|
|
1698
1698
|
/**
|
|
@@ -1705,7 +1705,7 @@ export type ClustersUpdateData = {
|
|
|
1705
1705
|
url: '/spaces/{space}/clusters/{cluster_id}';
|
|
1706
1706
|
};
|
|
1707
1707
|
|
|
1708
|
-
export type
|
|
1708
|
+
export type PutSpacesBySpaceClustersByClusterIdErrors = {
|
|
1709
1709
|
/**
|
|
1710
1710
|
* Unauthenticated
|
|
1711
1711
|
*/
|
|
@@ -1750,9 +1750,9 @@ export type ClustersUpdateErrors = {
|
|
|
1750
1750
|
};
|
|
1751
1751
|
};
|
|
1752
1752
|
|
|
1753
|
-
export type
|
|
1753
|
+
export type PutSpacesBySpaceClustersByClusterIdError = PutSpacesBySpaceClustersByClusterIdErrors[keyof PutSpacesBySpaceClustersByClusterIdErrors];
|
|
1754
1754
|
|
|
1755
|
-
export type
|
|
1755
|
+
export type PutSpacesBySpaceClustersByClusterIdResponses = {
|
|
1756
1756
|
/**
|
|
1757
1757
|
* Array of items
|
|
1758
1758
|
*/
|
|
@@ -1763,9 +1763,9 @@ export type ClustersUpdateResponses = {
|
|
|
1763
1763
|
};
|
|
1764
1764
|
};
|
|
1765
1765
|
|
|
1766
|
-
export type
|
|
1766
|
+
export type PutSpacesBySpaceClustersByClusterIdResponse = PutSpacesBySpaceClustersByClusterIdResponses[keyof PutSpacesBySpaceClustersByClusterIdResponses];
|
|
1767
1767
|
|
|
1768
|
-
export type
|
|
1768
|
+
export type GetSpacesBySpaceQueueData = {
|
|
1769
1769
|
body?: never;
|
|
1770
1770
|
path: {
|
|
1771
1771
|
/**
|
|
@@ -1777,7 +1777,7 @@ export type QueueIndexData = {
|
|
|
1777
1777
|
url: '/spaces/{space}/queue';
|
|
1778
1778
|
};
|
|
1779
1779
|
|
|
1780
|
-
export type
|
|
1780
|
+
export type GetSpacesBySpaceQueueErrors = {
|
|
1781
1781
|
/**
|
|
1782
1782
|
* Unauthenticated
|
|
1783
1783
|
*/
|
|
@@ -1807,9 +1807,9 @@ export type QueueIndexErrors = {
|
|
|
1807
1807
|
};
|
|
1808
1808
|
};
|
|
1809
1809
|
|
|
1810
|
-
export type
|
|
1810
|
+
export type GetSpacesBySpaceQueueError = GetSpacesBySpaceQueueErrors[keyof GetSpacesBySpaceQueueErrors];
|
|
1811
1811
|
|
|
1812
|
-
export type
|
|
1812
|
+
export type GetSpacesBySpaceQueueResponses = {
|
|
1813
1813
|
200: {
|
|
1814
1814
|
data: Array<{
|
|
1815
1815
|
datetime: string;
|
|
@@ -1821,9 +1821,9 @@ export type QueueIndexResponses = {
|
|
|
1821
1821
|
};
|
|
1822
1822
|
};
|
|
1823
1823
|
|
|
1824
|
-
export type
|
|
1824
|
+
export type GetSpacesBySpaceQueueResponse = GetSpacesBySpaceQueueResponses[keyof GetSpacesBySpaceQueueResponses];
|
|
1825
1825
|
|
|
1826
|
-
export type
|
|
1826
|
+
export type GetSpacesBySpaceSlotsData = {
|
|
1827
1827
|
body?: never;
|
|
1828
1828
|
path: {
|
|
1829
1829
|
/**
|
|
@@ -1835,7 +1835,7 @@ export type SlotsIndexData = {
|
|
|
1835
1835
|
url: '/spaces/{space}/slots';
|
|
1836
1836
|
};
|
|
1837
1837
|
|
|
1838
|
-
export type
|
|
1838
|
+
export type GetSpacesBySpaceSlotsErrors = {
|
|
1839
1839
|
/**
|
|
1840
1840
|
* Unauthenticated
|
|
1841
1841
|
*/
|
|
@@ -1865,9 +1865,9 @@ export type SlotsIndexErrors = {
|
|
|
1865
1865
|
};
|
|
1866
1866
|
};
|
|
1867
1867
|
|
|
1868
|
-
export type
|
|
1868
|
+
export type GetSpacesBySpaceSlotsError = GetSpacesBySpaceSlotsErrors[keyof GetSpacesBySpaceSlotsErrors];
|
|
1869
1869
|
|
|
1870
|
-
export type
|
|
1870
|
+
export type GetSpacesBySpaceSlotsResponses = {
|
|
1871
1871
|
/**
|
|
1872
1872
|
* Array of `SlotResource`
|
|
1873
1873
|
*/
|
|
@@ -1876,9 +1876,9 @@ export type SlotsIndexResponses = {
|
|
|
1876
1876
|
};
|
|
1877
1877
|
};
|
|
1878
1878
|
|
|
1879
|
-
export type
|
|
1879
|
+
export type GetSpacesBySpaceSlotsResponse = GetSpacesBySpaceSlotsResponses[keyof GetSpacesBySpaceSlotsResponses];
|
|
1880
1880
|
|
|
1881
|
-
export type
|
|
1881
|
+
export type PostSpacesBySpaceSlotsData = {
|
|
1882
1882
|
body: StoreSlotRequest;
|
|
1883
1883
|
path: {
|
|
1884
1884
|
/**
|
|
@@ -1890,7 +1890,7 @@ export type SlotsStoreData = {
|
|
|
1890
1890
|
url: '/spaces/{space}/slots';
|
|
1891
1891
|
};
|
|
1892
1892
|
|
|
1893
|
-
export type
|
|
1893
|
+
export type PostSpacesBySpaceSlotsErrors = {
|
|
1894
1894
|
/**
|
|
1895
1895
|
* Unauthenticated
|
|
1896
1896
|
*/
|
|
@@ -1935,17 +1935,17 @@ export type SlotsStoreErrors = {
|
|
|
1935
1935
|
};
|
|
1936
1936
|
};
|
|
1937
1937
|
|
|
1938
|
-
export type
|
|
1938
|
+
export type PostSpacesBySpaceSlotsError = PostSpacesBySpaceSlotsErrors[keyof PostSpacesBySpaceSlotsErrors];
|
|
1939
1939
|
|
|
1940
|
-
export type
|
|
1940
|
+
export type PostSpacesBySpaceSlotsResponses = {
|
|
1941
1941
|
200: {
|
|
1942
1942
|
[key: string]: unknown;
|
|
1943
1943
|
};
|
|
1944
1944
|
};
|
|
1945
1945
|
|
|
1946
|
-
export type
|
|
1946
|
+
export type PostSpacesBySpaceSlotsResponse = PostSpacesBySpaceSlotsResponses[keyof PostSpacesBySpaceSlotsResponses];
|
|
1947
1947
|
|
|
1948
|
-
export type
|
|
1948
|
+
export type DeleteSpacesBySpaceSlotsBySlotData = {
|
|
1949
1949
|
body?: never;
|
|
1950
1950
|
path: {
|
|
1951
1951
|
/**
|
|
@@ -1961,7 +1961,7 @@ export type SlotsDestroyData = {
|
|
|
1961
1961
|
url: '/spaces/{space}/slots/{slot}';
|
|
1962
1962
|
};
|
|
1963
1963
|
|
|
1964
|
-
export type
|
|
1964
|
+
export type DeleteSpacesBySpaceSlotsBySlotErrors = {
|
|
1965
1965
|
/**
|
|
1966
1966
|
* Unauthenticated
|
|
1967
1967
|
*/
|
|
@@ -1991,24 +1991,24 @@ export type SlotsDestroyErrors = {
|
|
|
1991
1991
|
};
|
|
1992
1992
|
};
|
|
1993
1993
|
|
|
1994
|
-
export type
|
|
1994
|
+
export type DeleteSpacesBySpaceSlotsBySlotError = DeleteSpacesBySpaceSlotsBySlotErrors[keyof DeleteSpacesBySpaceSlotsBySlotErrors];
|
|
1995
1995
|
|
|
1996
|
-
export type
|
|
1996
|
+
export type DeleteSpacesBySpaceSlotsBySlotResponses = {
|
|
1997
1997
|
200: {
|
|
1998
1998
|
[key: string]: unknown;
|
|
1999
1999
|
};
|
|
2000
2000
|
};
|
|
2001
2001
|
|
|
2002
|
-
export type
|
|
2002
|
+
export type DeleteSpacesBySpaceSlotsBySlotResponse = DeleteSpacesBySpaceSlotsBySlotResponses[keyof DeleteSpacesBySpaceSlotsBySlotResponses];
|
|
2003
2003
|
|
|
2004
|
-
export type
|
|
2004
|
+
export type GetSpacesData = {
|
|
2005
2005
|
body?: never;
|
|
2006
2006
|
path?: never;
|
|
2007
2007
|
query?: never;
|
|
2008
2008
|
url: '/spaces';
|
|
2009
2009
|
};
|
|
2010
2010
|
|
|
2011
|
-
export type
|
|
2011
|
+
export type GetSpacesErrors = {
|
|
2012
2012
|
/**
|
|
2013
2013
|
* Unauthenticated
|
|
2014
2014
|
*/
|
|
@@ -2020,9 +2020,9 @@ export type SpacesIndexErrors = {
|
|
|
2020
2020
|
};
|
|
2021
2021
|
};
|
|
2022
2022
|
|
|
2023
|
-
export type
|
|
2023
|
+
export type GetSpacesError = GetSpacesErrors[keyof GetSpacesErrors];
|
|
2024
2024
|
|
|
2025
|
-
export type
|
|
2025
|
+
export type GetSpacesResponses = {
|
|
2026
2026
|
/**
|
|
2027
2027
|
* Array of `SpaceResource`
|
|
2028
2028
|
*/
|
|
@@ -2031,16 +2031,16 @@ export type SpacesIndexResponses = {
|
|
|
2031
2031
|
};
|
|
2032
2032
|
};
|
|
2033
2033
|
|
|
2034
|
-
export type
|
|
2034
|
+
export type GetSpacesResponse = GetSpacesResponses[keyof GetSpacesResponses];
|
|
2035
2035
|
|
|
2036
|
-
export type
|
|
2036
|
+
export type PostSpacesData = {
|
|
2037
2037
|
body: StoreSpaceRequest;
|
|
2038
2038
|
path?: never;
|
|
2039
2039
|
query?: never;
|
|
2040
2040
|
url: '/spaces';
|
|
2041
2041
|
};
|
|
2042
2042
|
|
|
2043
|
-
export type
|
|
2043
|
+
export type PostSpacesErrors = {
|
|
2044
2044
|
/**
|
|
2045
2045
|
* Unauthenticated
|
|
2046
2046
|
*/
|
|
@@ -2076,17 +2076,17 @@ export type SpacesStoreErrors = {
|
|
|
2076
2076
|
};
|
|
2077
2077
|
};
|
|
2078
2078
|
|
|
2079
|
-
export type
|
|
2079
|
+
export type PostSpacesError = PostSpacesErrors[keyof PostSpacesErrors];
|
|
2080
2080
|
|
|
2081
|
-
export type
|
|
2081
|
+
export type PostSpacesResponses = {
|
|
2082
2082
|
200: {
|
|
2083
2083
|
[key: string]: unknown;
|
|
2084
2084
|
};
|
|
2085
2085
|
};
|
|
2086
2086
|
|
|
2087
|
-
export type
|
|
2087
|
+
export type PostSpacesResponse = PostSpacesResponses[keyof PostSpacesResponses];
|
|
2088
2088
|
|
|
2089
|
-
export type
|
|
2089
|
+
export type DeleteSpacesBySpaceData = {
|
|
2090
2090
|
body?: never;
|
|
2091
2091
|
path: {
|
|
2092
2092
|
/**
|
|
@@ -2098,7 +2098,7 @@ export type SpacesDestroyData = {
|
|
|
2098
2098
|
url: '/spaces/{space}';
|
|
2099
2099
|
};
|
|
2100
2100
|
|
|
2101
|
-
export type
|
|
2101
|
+
export type DeleteSpacesBySpaceErrors = {
|
|
2102
2102
|
/**
|
|
2103
2103
|
* Unauthenticated
|
|
2104
2104
|
*/
|
|
@@ -2128,17 +2128,17 @@ export type SpacesDestroyErrors = {
|
|
|
2128
2128
|
};
|
|
2129
2129
|
};
|
|
2130
2130
|
|
|
2131
|
-
export type
|
|
2131
|
+
export type DeleteSpacesBySpaceError = DeleteSpacesBySpaceErrors[keyof DeleteSpacesBySpaceErrors];
|
|
2132
2132
|
|
|
2133
|
-
export type
|
|
2133
|
+
export type DeleteSpacesBySpaceResponses = {
|
|
2134
2134
|
200: {
|
|
2135
2135
|
[key: string]: unknown;
|
|
2136
2136
|
};
|
|
2137
2137
|
};
|
|
2138
2138
|
|
|
2139
|
-
export type
|
|
2139
|
+
export type DeleteSpacesBySpaceResponse = DeleteSpacesBySpaceResponses[keyof DeleteSpacesBySpaceResponses];
|
|
2140
2140
|
|
|
2141
|
-
export type
|
|
2141
|
+
export type GetSpacesBySpaceData = {
|
|
2142
2142
|
body?: never;
|
|
2143
2143
|
path: {
|
|
2144
2144
|
/**
|
|
@@ -2150,7 +2150,7 @@ export type SpacesShowData = {
|
|
|
2150
2150
|
url: '/spaces/{space}';
|
|
2151
2151
|
};
|
|
2152
2152
|
|
|
2153
|
-
export type
|
|
2153
|
+
export type GetSpacesBySpaceErrors = {
|
|
2154
2154
|
/**
|
|
2155
2155
|
* Unauthenticated
|
|
2156
2156
|
*/
|
|
@@ -2180,9 +2180,9 @@ export type SpacesShowErrors = {
|
|
|
2180
2180
|
};
|
|
2181
2181
|
};
|
|
2182
2182
|
|
|
2183
|
-
export type
|
|
2183
|
+
export type GetSpacesBySpaceError = GetSpacesBySpaceErrors[keyof GetSpacesBySpaceErrors];
|
|
2184
2184
|
|
|
2185
|
-
export type
|
|
2185
|
+
export type GetSpacesBySpaceResponses = {
|
|
2186
2186
|
/**
|
|
2187
2187
|
* `SpaceResource`
|
|
2188
2188
|
*/
|
|
@@ -2191,9 +2191,9 @@ export type SpacesShowResponses = {
|
|
|
2191
2191
|
};
|
|
2192
2192
|
};
|
|
2193
2193
|
|
|
2194
|
-
export type
|
|
2194
|
+
export type GetSpacesBySpaceResponse = GetSpacesBySpaceResponses[keyof GetSpacesBySpaceResponses];
|
|
2195
2195
|
|
|
2196
|
-
export type
|
|
2196
|
+
export type PutSpacesBySpaceData = {
|
|
2197
2197
|
body?: UpdateSpaceRequest;
|
|
2198
2198
|
path: {
|
|
2199
2199
|
/**
|
|
@@ -2205,7 +2205,7 @@ export type SpacesUpdateData = {
|
|
|
2205
2205
|
url: '/spaces/{space}';
|
|
2206
2206
|
};
|
|
2207
2207
|
|
|
2208
|
-
export type
|
|
2208
|
+
export type PutSpacesBySpaceErrors = {
|
|
2209
2209
|
/**
|
|
2210
2210
|
* Unauthenticated
|
|
2211
2211
|
*/
|
|
@@ -2250,9 +2250,9 @@ export type SpacesUpdateErrors = {
|
|
|
2250
2250
|
};
|
|
2251
2251
|
};
|
|
2252
2252
|
|
|
2253
|
-
export type
|
|
2253
|
+
export type PutSpacesBySpaceError = PutSpacesBySpaceErrors[keyof PutSpacesBySpaceErrors];
|
|
2254
2254
|
|
|
2255
|
-
export type
|
|
2255
|
+
export type PutSpacesBySpaceResponses = {
|
|
2256
2256
|
/**
|
|
2257
2257
|
* `SpaceResource`
|
|
2258
2258
|
*/
|
|
@@ -2263,16 +2263,16 @@ export type SpacesUpdateResponses = {
|
|
|
2263
2263
|
};
|
|
2264
2264
|
};
|
|
2265
2265
|
|
|
2266
|
-
export type
|
|
2266
|
+
export type PutSpacesBySpaceResponse = PutSpacesBySpaceResponses[keyof PutSpacesBySpaceResponses];
|
|
2267
2267
|
|
|
2268
|
-
export type
|
|
2268
|
+
export type GetSubscriptionData = {
|
|
2269
2269
|
body?: never;
|
|
2270
2270
|
path?: never;
|
|
2271
2271
|
query?: never;
|
|
2272
2272
|
url: '/subscription';
|
|
2273
2273
|
};
|
|
2274
2274
|
|
|
2275
|
-
export type
|
|
2275
|
+
export type GetSubscriptionErrors = {
|
|
2276
2276
|
/**
|
|
2277
2277
|
* Unauthenticated
|
|
2278
2278
|
*/
|
|
@@ -2284,9 +2284,9 @@ export type SubscriptionShowErrors = {
|
|
|
2284
2284
|
};
|
|
2285
2285
|
};
|
|
2286
2286
|
|
|
2287
|
-
export type
|
|
2287
|
+
export type GetSubscriptionError = GetSubscriptionErrors[keyof GetSubscriptionErrors];
|
|
2288
2288
|
|
|
2289
|
-
export type
|
|
2289
|
+
export type GetSubscriptionResponses = {
|
|
2290
2290
|
200: {
|
|
2291
2291
|
plan: string;
|
|
2292
2292
|
is_gifted: boolean;
|
|
@@ -2307,9 +2307,9 @@ export type SubscriptionShowResponses = {
|
|
|
2307
2307
|
};
|
|
2308
2308
|
};
|
|
2309
2309
|
|
|
2310
|
-
export type
|
|
2310
|
+
export type GetSubscriptionResponse = GetSubscriptionResponses[keyof GetSubscriptionResponses];
|
|
2311
2311
|
|
|
2312
|
-
export type
|
|
2312
|
+
export type GetSpacesBySpaceWebhooksData = {
|
|
2313
2313
|
body?: never;
|
|
2314
2314
|
path: {
|
|
2315
2315
|
/**
|
|
@@ -2321,7 +2321,7 @@ export type WebhooksIndexData = {
|
|
|
2321
2321
|
url: '/spaces/{space}/webhooks';
|
|
2322
2322
|
};
|
|
2323
2323
|
|
|
2324
|
-
export type
|
|
2324
|
+
export type GetSpacesBySpaceWebhooksErrors = {
|
|
2325
2325
|
/**
|
|
2326
2326
|
* Unauthenticated
|
|
2327
2327
|
*/
|
|
@@ -2351,9 +2351,9 @@ export type WebhooksIndexErrors = {
|
|
|
2351
2351
|
};
|
|
2352
2352
|
};
|
|
2353
2353
|
|
|
2354
|
-
export type
|
|
2354
|
+
export type GetSpacesBySpaceWebhooksError = GetSpacesBySpaceWebhooksErrors[keyof GetSpacesBySpaceWebhooksErrors];
|
|
2355
2355
|
|
|
2356
|
-
export type
|
|
2356
|
+
export type GetSpacesBySpaceWebhooksResponses = {
|
|
2357
2357
|
/**
|
|
2358
2358
|
* Array of `WebhookResource`
|
|
2359
2359
|
*/
|
|
@@ -2362,9 +2362,9 @@ export type WebhooksIndexResponses = {
|
|
|
2362
2362
|
};
|
|
2363
2363
|
};
|
|
2364
2364
|
|
|
2365
|
-
export type
|
|
2365
|
+
export type GetSpacesBySpaceWebhooksResponse = GetSpacesBySpaceWebhooksResponses[keyof GetSpacesBySpaceWebhooksResponses];
|
|
2366
2366
|
|
|
2367
|
-
export type
|
|
2367
|
+
export type PostSpacesBySpaceWebhooksData = {
|
|
2368
2368
|
body: StoreWebhookRequest;
|
|
2369
2369
|
path: {
|
|
2370
2370
|
/**
|
|
@@ -2376,7 +2376,7 @@ export type WebhooksStoreData = {
|
|
|
2376
2376
|
url: '/spaces/{space}/webhooks';
|
|
2377
2377
|
};
|
|
2378
2378
|
|
|
2379
|
-
export type
|
|
2379
|
+
export type PostSpacesBySpaceWebhooksErrors = {
|
|
2380
2380
|
/**
|
|
2381
2381
|
* Unauthenticated
|
|
2382
2382
|
*/
|
|
@@ -2421,17 +2421,17 @@ export type WebhooksStoreErrors = {
|
|
|
2421
2421
|
};
|
|
2422
2422
|
};
|
|
2423
2423
|
|
|
2424
|
-
export type
|
|
2424
|
+
export type PostSpacesBySpaceWebhooksError = PostSpacesBySpaceWebhooksErrors[keyof PostSpacesBySpaceWebhooksErrors];
|
|
2425
2425
|
|
|
2426
|
-
export type
|
|
2426
|
+
export type PostSpacesBySpaceWebhooksResponses = {
|
|
2427
2427
|
200: {
|
|
2428
2428
|
[key: string]: unknown;
|
|
2429
2429
|
};
|
|
2430
2430
|
};
|
|
2431
2431
|
|
|
2432
|
-
export type
|
|
2432
|
+
export type PostSpacesBySpaceWebhooksResponse = PostSpacesBySpaceWebhooksResponses[keyof PostSpacesBySpaceWebhooksResponses];
|
|
2433
2433
|
|
|
2434
|
-
export type
|
|
2434
|
+
export type DeleteSpacesBySpaceWebhooksByWebhookData = {
|
|
2435
2435
|
body?: never;
|
|
2436
2436
|
path: {
|
|
2437
2437
|
/**
|
|
@@ -2447,7 +2447,7 @@ export type WebhooksDestroyData = {
|
|
|
2447
2447
|
url: '/spaces/{space}/webhooks/{webhook}';
|
|
2448
2448
|
};
|
|
2449
2449
|
|
|
2450
|
-
export type
|
|
2450
|
+
export type DeleteSpacesBySpaceWebhooksByWebhookErrors = {
|
|
2451
2451
|
/**
|
|
2452
2452
|
* Unauthenticated
|
|
2453
2453
|
*/
|
|
@@ -2477,17 +2477,17 @@ export type WebhooksDestroyErrors = {
|
|
|
2477
2477
|
};
|
|
2478
2478
|
};
|
|
2479
2479
|
|
|
2480
|
-
export type
|
|
2480
|
+
export type DeleteSpacesBySpaceWebhooksByWebhookError = DeleteSpacesBySpaceWebhooksByWebhookErrors[keyof DeleteSpacesBySpaceWebhooksByWebhookErrors];
|
|
2481
2481
|
|
|
2482
|
-
export type
|
|
2482
|
+
export type DeleteSpacesBySpaceWebhooksByWebhookResponses = {
|
|
2483
2483
|
200: {
|
|
2484
2484
|
[key: string]: unknown;
|
|
2485
2485
|
};
|
|
2486
2486
|
};
|
|
2487
2487
|
|
|
2488
|
-
export type
|
|
2488
|
+
export type DeleteSpacesBySpaceWebhooksByWebhookResponse = DeleteSpacesBySpaceWebhooksByWebhookResponses[keyof DeleteSpacesBySpaceWebhooksByWebhookResponses];
|
|
2489
2489
|
|
|
2490
|
-
export type
|
|
2490
|
+
export type PutSpacesBySpaceWebhooksByWebhookData = {
|
|
2491
2491
|
body?: UpdateWebhookRequest;
|
|
2492
2492
|
path: {
|
|
2493
2493
|
/**
|
|
@@ -2503,7 +2503,7 @@ export type WebhooksUpdateData = {
|
|
|
2503
2503
|
url: '/spaces/{space}/webhooks/{webhook}';
|
|
2504
2504
|
};
|
|
2505
2505
|
|
|
2506
|
-
export type
|
|
2506
|
+
export type PutSpacesBySpaceWebhooksByWebhookErrors = {
|
|
2507
2507
|
/**
|
|
2508
2508
|
* Unauthenticated
|
|
2509
2509
|
*/
|
|
@@ -2548,9 +2548,9 @@ export type WebhooksUpdateErrors = {
|
|
|
2548
2548
|
};
|
|
2549
2549
|
};
|
|
2550
2550
|
|
|
2551
|
-
export type
|
|
2551
|
+
export type PutSpacesBySpaceWebhooksByWebhookError = PutSpacesBySpaceWebhooksByWebhookErrors[keyof PutSpacesBySpaceWebhooksByWebhookErrors];
|
|
2552
2552
|
|
|
2553
|
-
export type
|
|
2553
|
+
export type PutSpacesBySpaceWebhooksByWebhookResponses = {
|
|
2554
2554
|
/**
|
|
2555
2555
|
* `WebhookResource`
|
|
2556
2556
|
*/
|
|
@@ -2561,4 +2561,4 @@ export type WebhooksUpdateResponses = {
|
|
|
2561
2561
|
};
|
|
2562
2562
|
};
|
|
2563
2563
|
|
|
2564
|
-
export type
|
|
2564
|
+
export type PutSpacesBySpaceWebhooksByWebhookResponse = PutSpacesBySpaceWebhooksByWebhookResponses[keyof PutSpacesBySpaceWebhooksByWebhookResponses];
|