api.fluff4.me 1.0.359 → 1.0.364
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 +45 -0
- package/openapi.json +723 -130
- package/package.json +1 -1
package/index.d.ts
CHANGED
|
@@ -507,6 +507,26 @@ export interface Feed {
|
|
|
507
507
|
authors: Author[]
|
|
508
508
|
}
|
|
509
509
|
|
|
510
|
+
export interface FeedSearch {
|
|
511
|
+
whitelistTags?: string[] | null
|
|
512
|
+
blacklistTags?: string[] | null
|
|
513
|
+
whitelistTagGroups?: string[] | null
|
|
514
|
+
blacklistTagGroups?: string[] | null
|
|
515
|
+
whitelistAuthors?: string[] | null
|
|
516
|
+
blacklistAuthors?: string[] | null
|
|
517
|
+
}
|
|
518
|
+
|
|
519
|
+
export interface History {
|
|
520
|
+
items: HistoryItem[]
|
|
521
|
+
works: Work[]
|
|
522
|
+
}
|
|
523
|
+
|
|
524
|
+
export interface HistoryItem {
|
|
525
|
+
work: WorkReference
|
|
526
|
+
chapter?: ChapterLite | null
|
|
527
|
+
view_time: string
|
|
528
|
+
}
|
|
529
|
+
|
|
510
530
|
export interface ErrorResponse {
|
|
511
531
|
code: number
|
|
512
532
|
detail?: string | null
|
|
@@ -1059,4 +1079,29 @@ export interface Paths {
|
|
|
1059
1079
|
body?: undefined
|
|
1060
1080
|
response: PaginatedResponse<Feed> | ErrorResponse
|
|
1061
1081
|
},
|
|
1082
|
+
"/history/get": {
|
|
1083
|
+
method: "get"
|
|
1084
|
+
body?: undefined
|
|
1085
|
+
response: PaginatedResponse<History> | ErrorResponse
|
|
1086
|
+
},
|
|
1087
|
+
"/history/add/{author_vanity}/{work_vanity}": {
|
|
1088
|
+
method: "post"
|
|
1089
|
+
body?: undefined
|
|
1090
|
+
response: void | ErrorResponse
|
|
1091
|
+
},
|
|
1092
|
+
"/history/add/{author_vanity}/{work_vanity}/chapter/{chapter_url}": {
|
|
1093
|
+
method: "post"
|
|
1094
|
+
body?: undefined
|
|
1095
|
+
response: void | ErrorResponse
|
|
1096
|
+
},
|
|
1097
|
+
"/history/delete/{author_vanity}/{work_vanity}/chapter/{chapter_url}": {
|
|
1098
|
+
method: "post"
|
|
1099
|
+
body?: undefined
|
|
1100
|
+
response: void | ErrorResponse
|
|
1101
|
+
},
|
|
1102
|
+
"/history/delete/{author_vanity}/{work_vanity}": {
|
|
1103
|
+
method: "post"
|
|
1104
|
+
body?: undefined
|
|
1105
|
+
response: void | ErrorResponse
|
|
1106
|
+
},
|
|
1062
1107
|
}
|
package/openapi.json
CHANGED
|
@@ -2750,6 +2750,135 @@
|
|
|
2750
2750
|
"authors"
|
|
2751
2751
|
]
|
|
2752
2752
|
},
|
|
2753
|
+
"FeedSearch": {
|
|
2754
|
+
"type": "object",
|
|
2755
|
+
"properties": {
|
|
2756
|
+
"whitelistTags": {
|
|
2757
|
+
"anyOf": [
|
|
2758
|
+
{
|
|
2759
|
+
"type": "array",
|
|
2760
|
+
"items": {
|
|
2761
|
+
"type": "string"
|
|
2762
|
+
}
|
|
2763
|
+
},
|
|
2764
|
+
{
|
|
2765
|
+
"type": "null"
|
|
2766
|
+
}
|
|
2767
|
+
]
|
|
2768
|
+
},
|
|
2769
|
+
"blacklistTags": {
|
|
2770
|
+
"anyOf": [
|
|
2771
|
+
{
|
|
2772
|
+
"type": "array",
|
|
2773
|
+
"items": {
|
|
2774
|
+
"type": "string"
|
|
2775
|
+
}
|
|
2776
|
+
},
|
|
2777
|
+
{
|
|
2778
|
+
"type": "null"
|
|
2779
|
+
}
|
|
2780
|
+
]
|
|
2781
|
+
},
|
|
2782
|
+
"whitelistTagGroups": {
|
|
2783
|
+
"anyOf": [
|
|
2784
|
+
{
|
|
2785
|
+
"type": "array",
|
|
2786
|
+
"items": {
|
|
2787
|
+
"type": "string"
|
|
2788
|
+
}
|
|
2789
|
+
},
|
|
2790
|
+
{
|
|
2791
|
+
"type": "null"
|
|
2792
|
+
}
|
|
2793
|
+
]
|
|
2794
|
+
},
|
|
2795
|
+
"blacklistTagGroups": {
|
|
2796
|
+
"anyOf": [
|
|
2797
|
+
{
|
|
2798
|
+
"type": "array",
|
|
2799
|
+
"items": {
|
|
2800
|
+
"type": "string"
|
|
2801
|
+
}
|
|
2802
|
+
},
|
|
2803
|
+
{
|
|
2804
|
+
"type": "null"
|
|
2805
|
+
}
|
|
2806
|
+
]
|
|
2807
|
+
},
|
|
2808
|
+
"whitelistAuthors": {
|
|
2809
|
+
"anyOf": [
|
|
2810
|
+
{
|
|
2811
|
+
"type": "array",
|
|
2812
|
+
"items": {
|
|
2813
|
+
"type": "string"
|
|
2814
|
+
}
|
|
2815
|
+
},
|
|
2816
|
+
{
|
|
2817
|
+
"type": "null"
|
|
2818
|
+
}
|
|
2819
|
+
]
|
|
2820
|
+
},
|
|
2821
|
+
"blacklistAuthors": {
|
|
2822
|
+
"anyOf": [
|
|
2823
|
+
{
|
|
2824
|
+
"type": "array",
|
|
2825
|
+
"items": {
|
|
2826
|
+
"type": "string"
|
|
2827
|
+
}
|
|
2828
|
+
},
|
|
2829
|
+
{
|
|
2830
|
+
"type": "null"
|
|
2831
|
+
}
|
|
2832
|
+
]
|
|
2833
|
+
}
|
|
2834
|
+
}
|
|
2835
|
+
},
|
|
2836
|
+
"History": {
|
|
2837
|
+
"type": "object",
|
|
2838
|
+
"properties": {
|
|
2839
|
+
"items": {
|
|
2840
|
+
"type": "array",
|
|
2841
|
+
"items": {
|
|
2842
|
+
"$ref": "#/components/schema/HistoryItem"
|
|
2843
|
+
}
|
|
2844
|
+
},
|
|
2845
|
+
"works": {
|
|
2846
|
+
"type": "array",
|
|
2847
|
+
"items": {
|
|
2848
|
+
"$ref": "#/components/schema/Work"
|
|
2849
|
+
}
|
|
2850
|
+
}
|
|
2851
|
+
},
|
|
2852
|
+
"required": [
|
|
2853
|
+
"items",
|
|
2854
|
+
"works"
|
|
2855
|
+
]
|
|
2856
|
+
},
|
|
2857
|
+
"HistoryItem": {
|
|
2858
|
+
"type": "object",
|
|
2859
|
+
"properties": {
|
|
2860
|
+
"work": {
|
|
2861
|
+
"$ref": "#/components/schema/WorkReference"
|
|
2862
|
+
},
|
|
2863
|
+
"chapter": {
|
|
2864
|
+
"anyOf": [
|
|
2865
|
+
{
|
|
2866
|
+
"$ref": "#/components/schema/ChapterLite"
|
|
2867
|
+
},
|
|
2868
|
+
{
|
|
2869
|
+
"type": "null"
|
|
2870
|
+
}
|
|
2871
|
+
]
|
|
2872
|
+
},
|
|
2873
|
+
"view_time": {
|
|
2874
|
+
"type": "string"
|
|
2875
|
+
}
|
|
2876
|
+
},
|
|
2877
|
+
"required": [
|
|
2878
|
+
"work",
|
|
2879
|
+
"view_time"
|
|
2880
|
+
]
|
|
2881
|
+
},
|
|
2753
2882
|
"ErrorResponse": {
|
|
2754
2883
|
"type": "object",
|
|
2755
2884
|
"properties": {
|
|
@@ -3505,19 +3634,30 @@
|
|
|
3505
3634
|
{
|
|
3506
3635
|
"name": "url",
|
|
3507
3636
|
"in": "path"
|
|
3508
|
-
},
|
|
3509
|
-
{
|
|
3510
|
-
"name": "page",
|
|
3511
|
-
"in": "query",
|
|
3512
|
-
"description": "The page of data to query from. This endpoint uses a page size of 1 by default."
|
|
3513
|
-
},
|
|
3514
|
-
{
|
|
3515
|
-
"name": "page_size",
|
|
3516
|
-
"in": "query",
|
|
3517
|
-
"description": "The custom page size to return. This endpoint uses a page size of 1 by default. The custom page size cannot be raised above the default."
|
|
3518
3637
|
}
|
|
3519
3638
|
],
|
|
3520
3639
|
"get": {
|
|
3640
|
+
"parameters": [
|
|
3641
|
+
{
|
|
3642
|
+
"name": "page",
|
|
3643
|
+
"in": "query",
|
|
3644
|
+
"description": "The page of data to query from. This endpoint uses a page size of 1 by default.",
|
|
3645
|
+
"schema": {
|
|
3646
|
+
"type": "integer",
|
|
3647
|
+
"minimum": 0
|
|
3648
|
+
}
|
|
3649
|
+
},
|
|
3650
|
+
{
|
|
3651
|
+
"name": "page_size",
|
|
3652
|
+
"in": "query",
|
|
3653
|
+
"description": "The custom page size to return. This endpoint uses a page size of 1 by default. The custom page size cannot be raised above the default.",
|
|
3654
|
+
"schema": {
|
|
3655
|
+
"type": "integer",
|
|
3656
|
+
"minimum": 1,
|
|
3657
|
+
"maximum": 1
|
|
3658
|
+
}
|
|
3659
|
+
}
|
|
3660
|
+
],
|
|
3521
3661
|
"responses": {
|
|
3522
3662
|
"200": {
|
|
3523
3663
|
"description": "200 response",
|
|
@@ -3792,19 +3932,30 @@
|
|
|
3792
3932
|
{
|
|
3793
3933
|
"name": "vanity",
|
|
3794
3934
|
"in": "path"
|
|
3795
|
-
},
|
|
3796
|
-
{
|
|
3797
|
-
"name": "page",
|
|
3798
|
-
"in": "query",
|
|
3799
|
-
"description": "The page of data to query from. This endpoint uses a page size of 25 by default."
|
|
3800
|
-
},
|
|
3801
|
-
{
|
|
3802
|
-
"name": "page_size",
|
|
3803
|
-
"in": "query",
|
|
3804
|
-
"description": "The custom page size to return. This endpoint uses a page size of 25 by default. The custom page size cannot be raised above the default."
|
|
3805
3935
|
}
|
|
3806
3936
|
],
|
|
3807
3937
|
"get": {
|
|
3938
|
+
"parameters": [
|
|
3939
|
+
{
|
|
3940
|
+
"name": "page",
|
|
3941
|
+
"in": "query",
|
|
3942
|
+
"description": "The page of data to query from. This endpoint uses a page size of 25 by default.",
|
|
3943
|
+
"schema": {
|
|
3944
|
+
"type": "integer",
|
|
3945
|
+
"minimum": 0
|
|
3946
|
+
}
|
|
3947
|
+
},
|
|
3948
|
+
{
|
|
3949
|
+
"name": "page_size",
|
|
3950
|
+
"in": "query",
|
|
3951
|
+
"description": "The custom page size to return. This endpoint uses a page size of 25 by default. The custom page size cannot be raised above the default.",
|
|
3952
|
+
"schema": {
|
|
3953
|
+
"type": "integer",
|
|
3954
|
+
"minimum": 1,
|
|
3955
|
+
"maximum": 25
|
|
3956
|
+
}
|
|
3957
|
+
}
|
|
3958
|
+
],
|
|
3808
3959
|
"responses": {
|
|
3809
3960
|
"200": {
|
|
3810
3961
|
"description": "200 response",
|
|
@@ -3877,19 +4028,30 @@
|
|
|
3877
4028
|
{
|
|
3878
4029
|
"name": "vanity",
|
|
3879
4030
|
"in": "path"
|
|
3880
|
-
},
|
|
3881
|
-
{
|
|
3882
|
-
"name": "page",
|
|
3883
|
-
"in": "query",
|
|
3884
|
-
"description": "The page of data to query from. This endpoint uses a page size of 1 by default."
|
|
3885
|
-
},
|
|
3886
|
-
{
|
|
3887
|
-
"name": "page_size",
|
|
3888
|
-
"in": "query",
|
|
3889
|
-
"description": "The custom page size to return. This endpoint uses a page size of 1 by default. The custom page size cannot be raised above the default."
|
|
3890
4031
|
}
|
|
3891
4032
|
],
|
|
3892
4033
|
"get": {
|
|
4034
|
+
"parameters": [
|
|
4035
|
+
{
|
|
4036
|
+
"name": "page",
|
|
4037
|
+
"in": "query",
|
|
4038
|
+
"description": "The page of data to query from. This endpoint uses a page size of 1 by default.",
|
|
4039
|
+
"schema": {
|
|
4040
|
+
"type": "integer",
|
|
4041
|
+
"minimum": 0
|
|
4042
|
+
}
|
|
4043
|
+
},
|
|
4044
|
+
{
|
|
4045
|
+
"name": "page_size",
|
|
4046
|
+
"in": "query",
|
|
4047
|
+
"description": "The custom page size to return. This endpoint uses a page size of 1 by default. The custom page size cannot be raised above the default.",
|
|
4048
|
+
"schema": {
|
|
4049
|
+
"type": "integer",
|
|
4050
|
+
"minimum": 1,
|
|
4051
|
+
"maximum": 1
|
|
4052
|
+
}
|
|
4053
|
+
}
|
|
4054
|
+
],
|
|
3893
4055
|
"responses": {
|
|
3894
4056
|
"200": {
|
|
3895
4057
|
"description": "200 response",
|
|
@@ -3958,19 +4120,30 @@
|
|
|
3958
4120
|
{
|
|
3959
4121
|
"name": "author",
|
|
3960
4122
|
"in": "path"
|
|
3961
|
-
},
|
|
3962
|
-
{
|
|
3963
|
-
"name": "page",
|
|
3964
|
-
"in": "query",
|
|
3965
|
-
"description": "The page of data to query from. This endpoint uses a page size of 25 by default."
|
|
3966
|
-
},
|
|
3967
|
-
{
|
|
3968
|
-
"name": "page_size",
|
|
3969
|
-
"in": "query",
|
|
3970
|
-
"description": "The custom page size to return. This endpoint uses a page size of 25 by default. The custom page size cannot be raised above the default."
|
|
3971
4123
|
}
|
|
3972
4124
|
],
|
|
3973
4125
|
"get": {
|
|
4126
|
+
"parameters": [
|
|
4127
|
+
{
|
|
4128
|
+
"name": "page",
|
|
4129
|
+
"in": "query",
|
|
4130
|
+
"description": "The page of data to query from. This endpoint uses a page size of 25 by default.",
|
|
4131
|
+
"schema": {
|
|
4132
|
+
"type": "integer",
|
|
4133
|
+
"minimum": 0
|
|
4134
|
+
}
|
|
4135
|
+
},
|
|
4136
|
+
{
|
|
4137
|
+
"name": "page_size",
|
|
4138
|
+
"in": "query",
|
|
4139
|
+
"description": "The custom page size to return. This endpoint uses a page size of 25 by default. The custom page size cannot be raised above the default.",
|
|
4140
|
+
"schema": {
|
|
4141
|
+
"type": "integer",
|
|
4142
|
+
"minimum": 1,
|
|
4143
|
+
"maximum": 25
|
|
4144
|
+
}
|
|
4145
|
+
}
|
|
4146
|
+
],
|
|
3974
4147
|
"responses": {
|
|
3975
4148
|
"200": {
|
|
3976
4149
|
"description": "200 response",
|
|
@@ -4484,19 +4657,30 @@
|
|
|
4484
4657
|
{
|
|
4485
4658
|
"name": "type",
|
|
4486
4659
|
"in": "path"
|
|
4487
|
-
},
|
|
4488
|
-
{
|
|
4489
|
-
"name": "page",
|
|
4490
|
-
"in": "query",
|
|
4491
|
-
"description": "The page of data to query from. This endpoint uses a page size of 25 by default."
|
|
4492
|
-
},
|
|
4493
|
-
{
|
|
4494
|
-
"name": "page_size",
|
|
4495
|
-
"in": "query",
|
|
4496
|
-
"description": "The custom page size to return. This endpoint uses a page size of 25 by default. The custom page size cannot be raised above the default."
|
|
4497
4660
|
}
|
|
4498
4661
|
],
|
|
4499
4662
|
"get": {
|
|
4663
|
+
"parameters": [
|
|
4664
|
+
{
|
|
4665
|
+
"name": "page",
|
|
4666
|
+
"in": "query",
|
|
4667
|
+
"description": "The page of data to query from. This endpoint uses a page size of 25 by default.",
|
|
4668
|
+
"schema": {
|
|
4669
|
+
"type": "integer",
|
|
4670
|
+
"minimum": 0
|
|
4671
|
+
}
|
|
4672
|
+
},
|
|
4673
|
+
{
|
|
4674
|
+
"name": "page_size",
|
|
4675
|
+
"in": "query",
|
|
4676
|
+
"description": "The custom page size to return. This endpoint uses a page size of 25 by default. The custom page size cannot be raised above the default.",
|
|
4677
|
+
"schema": {
|
|
4678
|
+
"type": "integer",
|
|
4679
|
+
"minimum": 1,
|
|
4680
|
+
"maximum": 25
|
|
4681
|
+
}
|
|
4682
|
+
}
|
|
4683
|
+
],
|
|
4500
4684
|
"responses": {
|
|
4501
4685
|
"200": {
|
|
4502
4686
|
"description": "200 response",
|
|
@@ -5195,19 +5379,30 @@
|
|
|
5195
5379
|
{
|
|
5196
5380
|
"name": "type",
|
|
5197
5381
|
"in": "path"
|
|
5198
|
-
},
|
|
5199
|
-
{
|
|
5200
|
-
"name": "page",
|
|
5201
|
-
"in": "query",
|
|
5202
|
-
"description": "The page of data to query from. This endpoint uses a page size of 25 by default."
|
|
5203
|
-
},
|
|
5204
|
-
{
|
|
5205
|
-
"name": "page_size",
|
|
5206
|
-
"in": "query",
|
|
5207
|
-
"description": "The custom page size to return. This endpoint uses a page size of 25 by default. The custom page size cannot be raised above the default."
|
|
5208
5382
|
}
|
|
5209
5383
|
],
|
|
5210
5384
|
"get": {
|
|
5385
|
+
"parameters": [
|
|
5386
|
+
{
|
|
5387
|
+
"name": "page",
|
|
5388
|
+
"in": "query",
|
|
5389
|
+
"description": "The page of data to query from. This endpoint uses a page size of 25 by default.",
|
|
5390
|
+
"schema": {
|
|
5391
|
+
"type": "integer",
|
|
5392
|
+
"minimum": 0
|
|
5393
|
+
}
|
|
5394
|
+
},
|
|
5395
|
+
{
|
|
5396
|
+
"name": "page_size",
|
|
5397
|
+
"in": "query",
|
|
5398
|
+
"description": "The custom page size to return. This endpoint uses a page size of 25 by default. The custom page size cannot be raised above the default.",
|
|
5399
|
+
"schema": {
|
|
5400
|
+
"type": "integer",
|
|
5401
|
+
"minimum": 1,
|
|
5402
|
+
"maximum": 25
|
|
5403
|
+
}
|
|
5404
|
+
}
|
|
5405
|
+
],
|
|
5211
5406
|
"responses": {
|
|
5212
5407
|
"200": {
|
|
5213
5408
|
"description": "200 response",
|
|
@@ -6079,19 +6274,30 @@
|
|
|
6079
6274
|
{
|
|
6080
6275
|
"name": "under",
|
|
6081
6276
|
"in": "path"
|
|
6082
|
-
},
|
|
6083
|
-
{
|
|
6084
|
-
"name": "page",
|
|
6085
|
-
"in": "query",
|
|
6086
|
-
"description": "The page of data to query from. This endpoint uses a page size of 25 by default."
|
|
6087
|
-
},
|
|
6088
|
-
{
|
|
6089
|
-
"name": "page_size",
|
|
6090
|
-
"in": "query",
|
|
6091
|
-
"description": "The custom page size to return. This endpoint uses a page size of 25 by default. The custom page size cannot be raised above the default."
|
|
6092
6277
|
}
|
|
6093
6278
|
],
|
|
6094
6279
|
"get": {
|
|
6280
|
+
"parameters": [
|
|
6281
|
+
{
|
|
6282
|
+
"name": "page",
|
|
6283
|
+
"in": "query",
|
|
6284
|
+
"description": "The page of data to query from. This endpoint uses a page size of 25 by default.",
|
|
6285
|
+
"schema": {
|
|
6286
|
+
"type": "integer",
|
|
6287
|
+
"minimum": 0
|
|
6288
|
+
}
|
|
6289
|
+
},
|
|
6290
|
+
{
|
|
6291
|
+
"name": "page_size",
|
|
6292
|
+
"in": "query",
|
|
6293
|
+
"description": "The custom page size to return. This endpoint uses a page size of 25 by default. The custom page size cannot be raised above the default.",
|
|
6294
|
+
"schema": {
|
|
6295
|
+
"type": "integer",
|
|
6296
|
+
"minimum": 1,
|
|
6297
|
+
"maximum": 25
|
|
6298
|
+
}
|
|
6299
|
+
}
|
|
6300
|
+
],
|
|
6095
6301
|
"responses": {
|
|
6096
6302
|
"200": {
|
|
6097
6303
|
"description": "200 response",
|
|
@@ -6705,19 +6911,28 @@
|
|
|
6705
6911
|
}
|
|
6706
6912
|
},
|
|
6707
6913
|
"/notifications/get/unread": {
|
|
6708
|
-
"parameters": [
|
|
6709
|
-
{
|
|
6710
|
-
"name": "page",
|
|
6711
|
-
"in": "query",
|
|
6712
|
-
"description": "The page of data to query from. This endpoint uses a page size of 25 by default."
|
|
6713
|
-
},
|
|
6714
|
-
{
|
|
6715
|
-
"name": "page_size",
|
|
6716
|
-
"in": "query",
|
|
6717
|
-
"description": "The custom page size to return. This endpoint uses a page size of 25 by default. The custom page size cannot be raised above the default."
|
|
6718
|
-
}
|
|
6719
|
-
],
|
|
6720
6914
|
"get": {
|
|
6915
|
+
"parameters": [
|
|
6916
|
+
{
|
|
6917
|
+
"name": "page",
|
|
6918
|
+
"in": "query",
|
|
6919
|
+
"description": "The page of data to query from. This endpoint uses a page size of 25 by default.",
|
|
6920
|
+
"schema": {
|
|
6921
|
+
"type": "integer",
|
|
6922
|
+
"minimum": 0
|
|
6923
|
+
}
|
|
6924
|
+
},
|
|
6925
|
+
{
|
|
6926
|
+
"name": "page_size",
|
|
6927
|
+
"in": "query",
|
|
6928
|
+
"description": "The custom page size to return. This endpoint uses a page size of 25 by default. The custom page size cannot be raised above the default.",
|
|
6929
|
+
"schema": {
|
|
6930
|
+
"type": "integer",
|
|
6931
|
+
"minimum": 1,
|
|
6932
|
+
"maximum": 25
|
|
6933
|
+
}
|
|
6934
|
+
}
|
|
6935
|
+
],
|
|
6721
6936
|
"responses": {
|
|
6722
6937
|
"200": {
|
|
6723
6938
|
"description": "200 response",
|
|
@@ -6782,19 +6997,28 @@
|
|
|
6782
6997
|
}
|
|
6783
6998
|
},
|
|
6784
6999
|
"/notifications/get/all": {
|
|
6785
|
-
"parameters": [
|
|
6786
|
-
{
|
|
6787
|
-
"name": "page",
|
|
6788
|
-
"in": "query",
|
|
6789
|
-
"description": "The page of data to query from. This endpoint uses a page size of 25 by default."
|
|
6790
|
-
},
|
|
6791
|
-
{
|
|
6792
|
-
"name": "page_size",
|
|
6793
|
-
"in": "query",
|
|
6794
|
-
"description": "The custom page size to return. This endpoint uses a page size of 25 by default. The custom page size cannot be raised above the default."
|
|
6795
|
-
}
|
|
6796
|
-
],
|
|
6797
7000
|
"get": {
|
|
7001
|
+
"parameters": [
|
|
7002
|
+
{
|
|
7003
|
+
"name": "page",
|
|
7004
|
+
"in": "query",
|
|
7005
|
+
"description": "The page of data to query from. This endpoint uses a page size of 25 by default.",
|
|
7006
|
+
"schema": {
|
|
7007
|
+
"type": "integer",
|
|
7008
|
+
"minimum": 0
|
|
7009
|
+
}
|
|
7010
|
+
},
|
|
7011
|
+
{
|
|
7012
|
+
"name": "page_size",
|
|
7013
|
+
"in": "query",
|
|
7014
|
+
"description": "The custom page size to return. This endpoint uses a page size of 25 by default. The custom page size cannot be raised above the default.",
|
|
7015
|
+
"schema": {
|
|
7016
|
+
"type": "integer",
|
|
7017
|
+
"minimum": 1,
|
|
7018
|
+
"maximum": 25
|
|
7019
|
+
}
|
|
7020
|
+
}
|
|
7021
|
+
],
|
|
6798
7022
|
"responses": {
|
|
6799
7023
|
"200": {
|
|
6800
7024
|
"description": "200 response",
|
|
@@ -7092,19 +7316,28 @@
|
|
|
7092
7316
|
}
|
|
7093
7317
|
},
|
|
7094
7318
|
"/feed/get": {
|
|
7095
|
-
"parameters": [
|
|
7096
|
-
{
|
|
7097
|
-
"name": "page",
|
|
7098
|
-
"in": "query",
|
|
7099
|
-
"description": "The page of data to query from. This endpoint uses a page size of 25 by default."
|
|
7100
|
-
},
|
|
7101
|
-
{
|
|
7102
|
-
"name": "page_size",
|
|
7103
|
-
"in": "query",
|
|
7104
|
-
"description": "The custom page size to return. This endpoint uses a page size of 25 by default. The custom page size cannot be raised above the default."
|
|
7105
|
-
}
|
|
7106
|
-
],
|
|
7107
7319
|
"get": {
|
|
7320
|
+
"parameters": [
|
|
7321
|
+
{
|
|
7322
|
+
"name": "page",
|
|
7323
|
+
"in": "query",
|
|
7324
|
+
"description": "The page of data to query from. This endpoint uses a page size of 25 by default.",
|
|
7325
|
+
"schema": {
|
|
7326
|
+
"type": "integer",
|
|
7327
|
+
"minimum": 0
|
|
7328
|
+
}
|
|
7329
|
+
},
|
|
7330
|
+
{
|
|
7331
|
+
"name": "page_size",
|
|
7332
|
+
"in": "query",
|
|
7333
|
+
"description": "The custom page size to return. This endpoint uses a page size of 25 by default. The custom page size cannot be raised above the default.",
|
|
7334
|
+
"schema": {
|
|
7335
|
+
"type": "integer",
|
|
7336
|
+
"minimum": 1,
|
|
7337
|
+
"maximum": 25
|
|
7338
|
+
}
|
|
7339
|
+
}
|
|
7340
|
+
],
|
|
7108
7341
|
"responses": {
|
|
7109
7342
|
"200": {
|
|
7110
7343
|
"description": "200 response",
|
|
@@ -7169,19 +7402,160 @@
|
|
|
7169
7402
|
}
|
|
7170
7403
|
},
|
|
7171
7404
|
"/feed/get/authed": {
|
|
7172
|
-
"parameters": [
|
|
7173
|
-
{
|
|
7174
|
-
"name": "page",
|
|
7175
|
-
"in": "query",
|
|
7176
|
-
"description": "The page of data to query from. This endpoint uses a page size of 25 by default."
|
|
7177
|
-
},
|
|
7178
|
-
{
|
|
7179
|
-
"name": "page_size",
|
|
7180
|
-
"in": "query",
|
|
7181
|
-
"description": "The custom page size to return. This endpoint uses a page size of 25 by default. The custom page size cannot be raised above the default."
|
|
7182
|
-
}
|
|
7183
|
-
],
|
|
7184
7405
|
"get": {
|
|
7406
|
+
"parameters": [
|
|
7407
|
+
{
|
|
7408
|
+
"name": "page",
|
|
7409
|
+
"in": "query",
|
|
7410
|
+
"description": "The page of data to query from. This endpoint uses a page size of 25 by default.",
|
|
7411
|
+
"schema": {
|
|
7412
|
+
"type": "integer",
|
|
7413
|
+
"minimum": 0
|
|
7414
|
+
}
|
|
7415
|
+
},
|
|
7416
|
+
{
|
|
7417
|
+
"name": "page_size",
|
|
7418
|
+
"in": "query",
|
|
7419
|
+
"description": "The custom page size to return. This endpoint uses a page size of 25 by default. The custom page size cannot be raised above the default.",
|
|
7420
|
+
"schema": {
|
|
7421
|
+
"type": "integer",
|
|
7422
|
+
"minimum": 1,
|
|
7423
|
+
"maximum": 25
|
|
7424
|
+
}
|
|
7425
|
+
},
|
|
7426
|
+
{
|
|
7427
|
+
"name": "whitelistTags",
|
|
7428
|
+
"in": "query",
|
|
7429
|
+
"required": false,
|
|
7430
|
+
"content": {
|
|
7431
|
+
"application/json": {
|
|
7432
|
+
"schema": {
|
|
7433
|
+
"anyOf": [
|
|
7434
|
+
{
|
|
7435
|
+
"type": "array",
|
|
7436
|
+
"items": {
|
|
7437
|
+
"type": "string"
|
|
7438
|
+
}
|
|
7439
|
+
},
|
|
7440
|
+
{
|
|
7441
|
+
"type": "null"
|
|
7442
|
+
}
|
|
7443
|
+
]
|
|
7444
|
+
}
|
|
7445
|
+
}
|
|
7446
|
+
}
|
|
7447
|
+
},
|
|
7448
|
+
{
|
|
7449
|
+
"name": "blacklistTags",
|
|
7450
|
+
"in": "query",
|
|
7451
|
+
"required": false,
|
|
7452
|
+
"content": {
|
|
7453
|
+
"application/json": {
|
|
7454
|
+
"schema": {
|
|
7455
|
+
"anyOf": [
|
|
7456
|
+
{
|
|
7457
|
+
"type": "array",
|
|
7458
|
+
"items": {
|
|
7459
|
+
"type": "string"
|
|
7460
|
+
}
|
|
7461
|
+
},
|
|
7462
|
+
{
|
|
7463
|
+
"type": "null"
|
|
7464
|
+
}
|
|
7465
|
+
]
|
|
7466
|
+
}
|
|
7467
|
+
}
|
|
7468
|
+
}
|
|
7469
|
+
},
|
|
7470
|
+
{
|
|
7471
|
+
"name": "whitelistTagGroups",
|
|
7472
|
+
"in": "query",
|
|
7473
|
+
"required": false,
|
|
7474
|
+
"content": {
|
|
7475
|
+
"application/json": {
|
|
7476
|
+
"schema": {
|
|
7477
|
+
"anyOf": [
|
|
7478
|
+
{
|
|
7479
|
+
"type": "array",
|
|
7480
|
+
"items": {
|
|
7481
|
+
"type": "string"
|
|
7482
|
+
}
|
|
7483
|
+
},
|
|
7484
|
+
{
|
|
7485
|
+
"type": "null"
|
|
7486
|
+
}
|
|
7487
|
+
]
|
|
7488
|
+
}
|
|
7489
|
+
}
|
|
7490
|
+
}
|
|
7491
|
+
},
|
|
7492
|
+
{
|
|
7493
|
+
"name": "blacklistTagGroups",
|
|
7494
|
+
"in": "query",
|
|
7495
|
+
"required": false,
|
|
7496
|
+
"content": {
|
|
7497
|
+
"application/json": {
|
|
7498
|
+
"schema": {
|
|
7499
|
+
"anyOf": [
|
|
7500
|
+
{
|
|
7501
|
+
"type": "array",
|
|
7502
|
+
"items": {
|
|
7503
|
+
"type": "string"
|
|
7504
|
+
}
|
|
7505
|
+
},
|
|
7506
|
+
{
|
|
7507
|
+
"type": "null"
|
|
7508
|
+
}
|
|
7509
|
+
]
|
|
7510
|
+
}
|
|
7511
|
+
}
|
|
7512
|
+
}
|
|
7513
|
+
},
|
|
7514
|
+
{
|
|
7515
|
+
"name": "whitelistAuthors",
|
|
7516
|
+
"in": "query",
|
|
7517
|
+
"required": false,
|
|
7518
|
+
"content": {
|
|
7519
|
+
"application/json": {
|
|
7520
|
+
"schema": {
|
|
7521
|
+
"anyOf": [
|
|
7522
|
+
{
|
|
7523
|
+
"type": "array",
|
|
7524
|
+
"items": {
|
|
7525
|
+
"type": "string"
|
|
7526
|
+
}
|
|
7527
|
+
},
|
|
7528
|
+
{
|
|
7529
|
+
"type": "null"
|
|
7530
|
+
}
|
|
7531
|
+
]
|
|
7532
|
+
}
|
|
7533
|
+
}
|
|
7534
|
+
}
|
|
7535
|
+
},
|
|
7536
|
+
{
|
|
7537
|
+
"name": "blacklistAuthors",
|
|
7538
|
+
"in": "query",
|
|
7539
|
+
"required": false,
|
|
7540
|
+
"content": {
|
|
7541
|
+
"application/json": {
|
|
7542
|
+
"schema": {
|
|
7543
|
+
"anyOf": [
|
|
7544
|
+
{
|
|
7545
|
+
"type": "array",
|
|
7546
|
+
"items": {
|
|
7547
|
+
"type": "string"
|
|
7548
|
+
}
|
|
7549
|
+
},
|
|
7550
|
+
{
|
|
7551
|
+
"type": "null"
|
|
7552
|
+
}
|
|
7553
|
+
]
|
|
7554
|
+
}
|
|
7555
|
+
}
|
|
7556
|
+
}
|
|
7557
|
+
}
|
|
7558
|
+
],
|
|
7185
7559
|
"responses": {
|
|
7186
7560
|
"200": {
|
|
7187
7561
|
"description": "200 response",
|
|
@@ -7243,19 +7617,28 @@
|
|
|
7243
7617
|
}
|
|
7244
7618
|
},
|
|
7245
7619
|
"/feed/get/followed": {
|
|
7246
|
-
"parameters": [
|
|
7247
|
-
{
|
|
7248
|
-
"name": "page",
|
|
7249
|
-
"in": "query",
|
|
7250
|
-
"description": "The page of data to query from. This endpoint uses a page size of 25 by default."
|
|
7251
|
-
},
|
|
7252
|
-
{
|
|
7253
|
-
"name": "page_size",
|
|
7254
|
-
"in": "query",
|
|
7255
|
-
"description": "The custom page size to return. This endpoint uses a page size of 25 by default. The custom page size cannot be raised above the default."
|
|
7256
|
-
}
|
|
7257
|
-
],
|
|
7258
7620
|
"get": {
|
|
7621
|
+
"parameters": [
|
|
7622
|
+
{
|
|
7623
|
+
"name": "page",
|
|
7624
|
+
"in": "query",
|
|
7625
|
+
"description": "The page of data to query from. This endpoint uses a page size of 25 by default.",
|
|
7626
|
+
"schema": {
|
|
7627
|
+
"type": "integer",
|
|
7628
|
+
"minimum": 0
|
|
7629
|
+
}
|
|
7630
|
+
},
|
|
7631
|
+
{
|
|
7632
|
+
"name": "page_size",
|
|
7633
|
+
"in": "query",
|
|
7634
|
+
"description": "The custom page size to return. This endpoint uses a page size of 25 by default. The custom page size cannot be raised above the default.",
|
|
7635
|
+
"schema": {
|
|
7636
|
+
"type": "integer",
|
|
7637
|
+
"minimum": 1,
|
|
7638
|
+
"maximum": 25
|
|
7639
|
+
}
|
|
7640
|
+
}
|
|
7641
|
+
],
|
|
7259
7642
|
"responses": {
|
|
7260
7643
|
"200": {
|
|
7261
7644
|
"description": "200 response",
|
|
@@ -7315,6 +7698,216 @@
|
|
|
7315
7698
|
}
|
|
7316
7699
|
}
|
|
7317
7700
|
}
|
|
7701
|
+
},
|
|
7702
|
+
"/history/get": {
|
|
7703
|
+
"get": {
|
|
7704
|
+
"parameters": [
|
|
7705
|
+
{
|
|
7706
|
+
"name": "page",
|
|
7707
|
+
"in": "query",
|
|
7708
|
+
"description": "The page of data to query from. This endpoint uses a page size of 25 by default.",
|
|
7709
|
+
"schema": {
|
|
7710
|
+
"type": "integer",
|
|
7711
|
+
"minimum": 0
|
|
7712
|
+
}
|
|
7713
|
+
},
|
|
7714
|
+
{
|
|
7715
|
+
"name": "page_size",
|
|
7716
|
+
"in": "query",
|
|
7717
|
+
"description": "The custom page size to return. This endpoint uses a page size of 25 by default. The custom page size cannot be raised above the default.",
|
|
7718
|
+
"schema": {
|
|
7719
|
+
"type": "integer",
|
|
7720
|
+
"minimum": 1,
|
|
7721
|
+
"maximum": 25
|
|
7722
|
+
}
|
|
7723
|
+
}
|
|
7724
|
+
],
|
|
7725
|
+
"responses": {
|
|
7726
|
+
"200": {
|
|
7727
|
+
"description": "200 response",
|
|
7728
|
+
"content": {
|
|
7729
|
+
"application/json": {
|
|
7730
|
+
"schema": {
|
|
7731
|
+
"type": "object",
|
|
7732
|
+
"properties": {
|
|
7733
|
+
"data": {
|
|
7734
|
+
"$ref": "#/components/schemas/History"
|
|
7735
|
+
},
|
|
7736
|
+
"has_more": {
|
|
7737
|
+
"type": "boolean"
|
|
7738
|
+
},
|
|
7739
|
+
"page": {
|
|
7740
|
+
"type": "number",
|
|
7741
|
+
"minimum": 0
|
|
7742
|
+
},
|
|
7743
|
+
"page_count": {
|
|
7744
|
+
"type": [
|
|
7745
|
+
"boolean",
|
|
7746
|
+
"number"
|
|
7747
|
+
],
|
|
7748
|
+
"anyOf": [
|
|
7749
|
+
{
|
|
7750
|
+
"type": "boolean",
|
|
7751
|
+
"enum": [
|
|
7752
|
+
true
|
|
7753
|
+
]
|
|
7754
|
+
},
|
|
7755
|
+
{
|
|
7756
|
+
"type": "number",
|
|
7757
|
+
"minimum": 0
|
|
7758
|
+
}
|
|
7759
|
+
]
|
|
7760
|
+
}
|
|
7761
|
+
},
|
|
7762
|
+
"required": [
|
|
7763
|
+
"data",
|
|
7764
|
+
"has_more",
|
|
7765
|
+
"page",
|
|
7766
|
+
"page_count"
|
|
7767
|
+
]
|
|
7768
|
+
}
|
|
7769
|
+
}
|
|
7770
|
+
}
|
|
7771
|
+
},
|
|
7772
|
+
"304": {
|
|
7773
|
+
"description": "304 response"
|
|
7774
|
+
},
|
|
7775
|
+
"default": {
|
|
7776
|
+
"description": "Error",
|
|
7777
|
+
"content": {
|
|
7778
|
+
"application/json": {
|
|
7779
|
+
"schema": {
|
|
7780
|
+
"$ref": "#/components/schemas/ErrorResponse"
|
|
7781
|
+
}
|
|
7782
|
+
}
|
|
7783
|
+
}
|
|
7784
|
+
}
|
|
7785
|
+
}
|
|
7786
|
+
}
|
|
7787
|
+
},
|
|
7788
|
+
"/history/add/{author_vanity}/{work_vanity}": {
|
|
7789
|
+
"parameters": [
|
|
7790
|
+
{
|
|
7791
|
+
"name": "author_vanity",
|
|
7792
|
+
"in": "path"
|
|
7793
|
+
},
|
|
7794
|
+
{
|
|
7795
|
+
"name": "work_vanity",
|
|
7796
|
+
"in": "path"
|
|
7797
|
+
}
|
|
7798
|
+
],
|
|
7799
|
+
"post": {
|
|
7800
|
+
"responses": {
|
|
7801
|
+
"200": {
|
|
7802
|
+
"description": "200 response"
|
|
7803
|
+
},
|
|
7804
|
+
"default": {
|
|
7805
|
+
"description": "Error",
|
|
7806
|
+
"content": {
|
|
7807
|
+
"application/json": {
|
|
7808
|
+
"schema": {
|
|
7809
|
+
"$ref": "#/components/schemas/ErrorResponse"
|
|
7810
|
+
}
|
|
7811
|
+
}
|
|
7812
|
+
}
|
|
7813
|
+
}
|
|
7814
|
+
}
|
|
7815
|
+
}
|
|
7816
|
+
},
|
|
7817
|
+
"/history/add/{author_vanity}/{work_vanity}/chapter/{chapter_url}": {
|
|
7818
|
+
"parameters": [
|
|
7819
|
+
{
|
|
7820
|
+
"name": "author_vanity",
|
|
7821
|
+
"in": "path"
|
|
7822
|
+
},
|
|
7823
|
+
{
|
|
7824
|
+
"name": "work_vanity",
|
|
7825
|
+
"in": "path"
|
|
7826
|
+
},
|
|
7827
|
+
{
|
|
7828
|
+
"name": "chapter_url",
|
|
7829
|
+
"in": "path"
|
|
7830
|
+
}
|
|
7831
|
+
],
|
|
7832
|
+
"post": {
|
|
7833
|
+
"responses": {
|
|
7834
|
+
"200": {
|
|
7835
|
+
"description": "200 response"
|
|
7836
|
+
},
|
|
7837
|
+
"default": {
|
|
7838
|
+
"description": "Error",
|
|
7839
|
+
"content": {
|
|
7840
|
+
"application/json": {
|
|
7841
|
+
"schema": {
|
|
7842
|
+
"$ref": "#/components/schemas/ErrorResponse"
|
|
7843
|
+
}
|
|
7844
|
+
}
|
|
7845
|
+
}
|
|
7846
|
+
}
|
|
7847
|
+
}
|
|
7848
|
+
}
|
|
7849
|
+
},
|
|
7850
|
+
"/history/delete/{author_vanity}/{work_vanity}/chapter/{chapter_url}": {
|
|
7851
|
+
"parameters": [
|
|
7852
|
+
{
|
|
7853
|
+
"name": "author_vanity",
|
|
7854
|
+
"in": "path"
|
|
7855
|
+
},
|
|
7856
|
+
{
|
|
7857
|
+
"name": "work_vanity",
|
|
7858
|
+
"in": "path"
|
|
7859
|
+
},
|
|
7860
|
+
{
|
|
7861
|
+
"name": "chapter_url",
|
|
7862
|
+
"in": "path"
|
|
7863
|
+
}
|
|
7864
|
+
],
|
|
7865
|
+
"post": {
|
|
7866
|
+
"responses": {
|
|
7867
|
+
"200": {
|
|
7868
|
+
"description": "200 response"
|
|
7869
|
+
},
|
|
7870
|
+
"default": {
|
|
7871
|
+
"description": "Error",
|
|
7872
|
+
"content": {
|
|
7873
|
+
"application/json": {
|
|
7874
|
+
"schema": {
|
|
7875
|
+
"$ref": "#/components/schemas/ErrorResponse"
|
|
7876
|
+
}
|
|
7877
|
+
}
|
|
7878
|
+
}
|
|
7879
|
+
}
|
|
7880
|
+
}
|
|
7881
|
+
}
|
|
7882
|
+
},
|
|
7883
|
+
"/history/delete/{author_vanity}/{work_vanity}": {
|
|
7884
|
+
"parameters": [
|
|
7885
|
+
{
|
|
7886
|
+
"name": "author_vanity",
|
|
7887
|
+
"in": "path"
|
|
7888
|
+
},
|
|
7889
|
+
{
|
|
7890
|
+
"name": "work_vanity",
|
|
7891
|
+
"in": "path"
|
|
7892
|
+
}
|
|
7893
|
+
],
|
|
7894
|
+
"post": {
|
|
7895
|
+
"responses": {
|
|
7896
|
+
"200": {
|
|
7897
|
+
"description": "200 response"
|
|
7898
|
+
},
|
|
7899
|
+
"default": {
|
|
7900
|
+
"description": "Error",
|
|
7901
|
+
"content": {
|
|
7902
|
+
"application/json": {
|
|
7903
|
+
"schema": {
|
|
7904
|
+
"$ref": "#/components/schemas/ErrorResponse"
|
|
7905
|
+
}
|
|
7906
|
+
}
|
|
7907
|
+
}
|
|
7908
|
+
}
|
|
7909
|
+
}
|
|
7910
|
+
}
|
|
7318
7911
|
}
|
|
7319
7912
|
}
|
|
7320
7913
|
}
|
package/package.json
CHANGED