api.fluff4.me 1.0.341 → 1.0.345
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/index.d.ts +108 -15
- package/openapi.json +931 -210
- package/package.json +1 -1
package/index.d.ts
CHANGED
|
@@ -276,11 +276,19 @@ export interface WorkReference {
|
|
|
276
276
|
vanity: string
|
|
277
277
|
}
|
|
278
278
|
|
|
279
|
-
export interface
|
|
280
|
-
|
|
281
|
-
|
|
282
|
-
|
|
283
|
-
|
|
279
|
+
export interface FollowsManifest {
|
|
280
|
+
following: {
|
|
281
|
+
author: Follow[]
|
|
282
|
+
work: Follow[]
|
|
283
|
+
tag: Follow[]
|
|
284
|
+
category: Follow[]
|
|
285
|
+
}
|
|
286
|
+
ignoring: {
|
|
287
|
+
author: Follow[]
|
|
288
|
+
work: Follow[]
|
|
289
|
+
tag: Follow[]
|
|
290
|
+
category: Follow[]
|
|
291
|
+
}
|
|
284
292
|
}
|
|
285
293
|
|
|
286
294
|
export interface Privileges {
|
|
@@ -661,7 +669,12 @@ export interface Paths {
|
|
|
661
669
|
body?: undefined
|
|
662
670
|
response: PaginatedResponse<Works> | ErrorResponse
|
|
663
671
|
},
|
|
664
|
-
"/follow/
|
|
672
|
+
"/follow/author/{vanity}": {
|
|
673
|
+
method: "post"
|
|
674
|
+
body?: undefined
|
|
675
|
+
response: Response<Follow> | ErrorResponse
|
|
676
|
+
},
|
|
677
|
+
"/follow/work/{vanity}": {
|
|
665
678
|
method: "post"
|
|
666
679
|
body?: undefined
|
|
667
680
|
response: Response<Follow> | ErrorResponse
|
|
@@ -671,7 +684,22 @@ export interface Paths {
|
|
|
671
684
|
body?: undefined
|
|
672
685
|
response: Response<Follow> | ErrorResponse
|
|
673
686
|
},
|
|
674
|
-
"/
|
|
687
|
+
"/follow/tag/{vanity}": {
|
|
688
|
+
method: "post"
|
|
689
|
+
body?: undefined
|
|
690
|
+
response: Response<Follow> | ErrorResponse
|
|
691
|
+
},
|
|
692
|
+
"/follow/category/{vanity}": {
|
|
693
|
+
method: "post"
|
|
694
|
+
body?: undefined
|
|
695
|
+
response: Response<Follow> | ErrorResponse
|
|
696
|
+
},
|
|
697
|
+
"/unfollow/author/{vanity}": {
|
|
698
|
+
method: "post"
|
|
699
|
+
body?: undefined
|
|
700
|
+
response: Response<Follow> | ErrorResponse
|
|
701
|
+
},
|
|
702
|
+
"/unfollow/work/{vanity}": {
|
|
675
703
|
method: "post"
|
|
676
704
|
body?: undefined
|
|
677
705
|
response: Response<Follow> | ErrorResponse
|
|
@@ -681,17 +709,32 @@ export interface Paths {
|
|
|
681
709
|
body?: undefined
|
|
682
710
|
response: Response<Follow> | ErrorResponse
|
|
683
711
|
},
|
|
712
|
+
"/unfollow/tag/{vanity}": {
|
|
713
|
+
method: "post"
|
|
714
|
+
body?: undefined
|
|
715
|
+
response: Response<Follow> | ErrorResponse
|
|
716
|
+
},
|
|
717
|
+
"/unfollow/category/{vanity}": {
|
|
718
|
+
method: "post"
|
|
719
|
+
body?: undefined
|
|
720
|
+
response: Response<Follow> | ErrorResponse
|
|
721
|
+
},
|
|
684
722
|
"/following": {
|
|
685
723
|
method: "get"
|
|
686
724
|
body?: undefined
|
|
687
|
-
response: Response<
|
|
725
|
+
response: Response<FollowsManifest> | ErrorResponse
|
|
688
726
|
},
|
|
689
727
|
"/following/{type}": {
|
|
690
728
|
method: "get"
|
|
691
729
|
body?: undefined
|
|
692
730
|
response: PaginatedResponse<Follow[]> | ErrorResponse
|
|
693
731
|
},
|
|
694
|
-
"/follows/
|
|
732
|
+
"/follows/author/{vanity}": {
|
|
733
|
+
method: "get"
|
|
734
|
+
body?: undefined
|
|
735
|
+
response: Response<Follow> | ErrorResponse
|
|
736
|
+
},
|
|
737
|
+
"/follows/work/{vanity}": {
|
|
695
738
|
method: "get"
|
|
696
739
|
body?: undefined
|
|
697
740
|
response: Response<Follow> | ErrorResponse
|
|
@@ -701,7 +744,22 @@ export interface Paths {
|
|
|
701
744
|
body?: undefined
|
|
702
745
|
response: Response<Follow> | ErrorResponse
|
|
703
746
|
},
|
|
704
|
-
"/
|
|
747
|
+
"/follows/tag/{vanity}": {
|
|
748
|
+
method: "get"
|
|
749
|
+
body?: undefined
|
|
750
|
+
response: Response<Follow> | ErrorResponse
|
|
751
|
+
},
|
|
752
|
+
"/follows/category/{vanity}": {
|
|
753
|
+
method: "get"
|
|
754
|
+
body?: undefined
|
|
755
|
+
response: Response<Follow> | ErrorResponse
|
|
756
|
+
},
|
|
757
|
+
"/ignore/author/{vanity}": {
|
|
758
|
+
method: "post"
|
|
759
|
+
body?: undefined
|
|
760
|
+
response: Response<Follow> | ErrorResponse
|
|
761
|
+
},
|
|
762
|
+
"/ignore/work/{vanity}": {
|
|
705
763
|
method: "post"
|
|
706
764
|
body?: undefined
|
|
707
765
|
response: Response<Follow> | ErrorResponse
|
|
@@ -711,7 +769,22 @@ export interface Paths {
|
|
|
711
769
|
body?: undefined
|
|
712
770
|
response: Response<Follow> | ErrorResponse
|
|
713
771
|
},
|
|
714
|
-
"/
|
|
772
|
+
"/ignore/tag/{vanity}": {
|
|
773
|
+
method: "post"
|
|
774
|
+
body?: undefined
|
|
775
|
+
response: Response<Follow> | ErrorResponse
|
|
776
|
+
},
|
|
777
|
+
"/ignore/category/{vanity}": {
|
|
778
|
+
method: "post"
|
|
779
|
+
body?: undefined
|
|
780
|
+
response: Response<Follow> | ErrorResponse
|
|
781
|
+
},
|
|
782
|
+
"/unignore/author/{vanity}": {
|
|
783
|
+
method: "post"
|
|
784
|
+
body?: undefined
|
|
785
|
+
response: Response<Follow> | ErrorResponse
|
|
786
|
+
},
|
|
787
|
+
"/unignore/work/{vanity}": {
|
|
715
788
|
method: "post"
|
|
716
789
|
body?: undefined
|
|
717
790
|
response: Response<Follow> | ErrorResponse
|
|
@@ -721,17 +794,27 @@ export interface Paths {
|
|
|
721
794
|
body?: undefined
|
|
722
795
|
response: Response<Follow> | ErrorResponse
|
|
723
796
|
},
|
|
724
|
-
"/
|
|
725
|
-
method: "
|
|
797
|
+
"/unignore/tag/{vanity}": {
|
|
798
|
+
method: "post"
|
|
726
799
|
body?: undefined
|
|
727
|
-
response: Response<
|
|
800
|
+
response: Response<Follow> | ErrorResponse
|
|
801
|
+
},
|
|
802
|
+
"/unignore/category/{vanity}": {
|
|
803
|
+
method: "post"
|
|
804
|
+
body?: undefined
|
|
805
|
+
response: Response<Follow> | ErrorResponse
|
|
728
806
|
},
|
|
729
807
|
"/ignoring/{type}": {
|
|
730
808
|
method: "get"
|
|
731
809
|
body?: undefined
|
|
732
810
|
response: PaginatedResponse<Follow[]> | ErrorResponse
|
|
733
811
|
},
|
|
734
|
-
"/ignores/
|
|
812
|
+
"/ignores/author/{vanity}": {
|
|
813
|
+
method: "get"
|
|
814
|
+
body?: undefined
|
|
815
|
+
response: Response<Follow> | ErrorResponse
|
|
816
|
+
},
|
|
817
|
+
"/ignores/work/{vanity}": {
|
|
735
818
|
method: "get"
|
|
736
819
|
body?: undefined
|
|
737
820
|
response: Response<Follow> | ErrorResponse
|
|
@@ -741,6 +824,16 @@ export interface Paths {
|
|
|
741
824
|
body?: undefined
|
|
742
825
|
response: Response<Follow> | ErrorResponse
|
|
743
826
|
},
|
|
827
|
+
"/ignores/tag/{vanity}": {
|
|
828
|
+
method: "get"
|
|
829
|
+
body?: undefined
|
|
830
|
+
response: Response<Follow> | ErrorResponse
|
|
831
|
+
},
|
|
832
|
+
"/ignores/category/{vanity}": {
|
|
833
|
+
method: "get"
|
|
834
|
+
body?: undefined
|
|
835
|
+
response: Response<Follow> | ErrorResponse
|
|
836
|
+
},
|
|
744
837
|
"/privilege/get/{vanity}": {
|
|
745
838
|
method: "get"
|
|
746
839
|
body?: undefined
|