api.fluff4.me 1.0.1119 → 1.0.1120
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 +31 -6
- package/openapi.json +146 -7
- package/package.json +1 -1
package/index.d.ts
CHANGED
|
@@ -402,7 +402,7 @@ export interface ChapterStatistics {
|
|
|
402
402
|
}
|
|
403
403
|
|
|
404
404
|
export interface SupporterReactions {
|
|
405
|
-
reaction_type: "
|
|
405
|
+
reaction_type: "love" | "author_heart" | "guest_heart" | "supporter_love"
|
|
406
406
|
author: string
|
|
407
407
|
}
|
|
408
408
|
|
|
@@ -780,6 +780,7 @@ export interface ManifestReactionTypes {
|
|
|
780
780
|
love: ReactionType
|
|
781
781
|
author_heart: ReactionType
|
|
782
782
|
guest_heart: ReactionType
|
|
783
|
+
supporter_love: ReactionType
|
|
783
784
|
}
|
|
784
785
|
|
|
785
786
|
export interface ReactionType {
|
|
@@ -2019,7 +2020,13 @@ export interface Paths {
|
|
|
2019
2020
|
search?: undefined
|
|
2020
2021
|
response: Response<Bookmarks> | ErrorResponse
|
|
2021
2022
|
},
|
|
2022
|
-
"/v2/reactions/comment/{id}/
|
|
2023
|
+
"/v2/reactions/comment/{id}/{type}/add": {
|
|
2024
|
+
method: "post"
|
|
2025
|
+
body?: undefined
|
|
2026
|
+
search?: undefined
|
|
2027
|
+
response: void | ErrorResponse
|
|
2028
|
+
},
|
|
2029
|
+
"/v2/reactions/comment/{id}/{type}/remove": {
|
|
2023
2030
|
method: "post"
|
|
2024
2031
|
body?: undefined
|
|
2025
2032
|
search?: undefined
|
|
@@ -2031,25 +2038,31 @@ export interface Paths {
|
|
|
2031
2038
|
search?: undefined
|
|
2032
2039
|
response: void | ErrorResponse
|
|
2033
2040
|
},
|
|
2034
|
-
"/v2/reactions/
|
|
2041
|
+
"/v2/reactions/chapter/{author}/{work}/{url}/{type}/add": {
|
|
2042
|
+
method: "post"
|
|
2043
|
+
body?: undefined
|
|
2044
|
+
search?: undefined
|
|
2045
|
+
response: void | ErrorResponse
|
|
2046
|
+
},
|
|
2047
|
+
"/v2/reactions/chapter/{author}/{work}/{url}/{type}/supporter/add": {
|
|
2035
2048
|
method: "post"
|
|
2036
2049
|
body?: undefined
|
|
2037
2050
|
search?: undefined
|
|
2038
2051
|
response: void | ErrorResponse
|
|
2039
2052
|
},
|
|
2040
|
-
"/v2/reactions/
|
|
2053
|
+
"/v2/reactions/chapter/{author}/{work}/{url}/{type}/remove": {
|
|
2041
2054
|
method: "post"
|
|
2042
2055
|
body?: undefined
|
|
2043
2056
|
search?: undefined
|
|
2044
2057
|
response: void | ErrorResponse
|
|
2045
2058
|
},
|
|
2046
|
-
"/v2/reactions/
|
|
2059
|
+
"/v2/reactions/chapter/{author}/{work}/{url}/remove": {
|
|
2047
2060
|
method: "post"
|
|
2048
2061
|
body?: undefined
|
|
2049
2062
|
search?: undefined
|
|
2050
2063
|
response: void | ErrorResponse
|
|
2051
2064
|
},
|
|
2052
|
-
"/v2/reactions/
|
|
2065
|
+
"/v2/reactions/chapter/{author}/{work}/{url}/supporter/remove": {
|
|
2053
2066
|
method: "post"
|
|
2054
2067
|
body?: undefined
|
|
2055
2068
|
search?: undefined
|
|
@@ -3147,6 +3160,18 @@ export interface Paths {
|
|
|
3147
3160
|
search?: undefined
|
|
3148
3161
|
response: Response<Bookmarks> | ErrorResponse
|
|
3149
3162
|
},
|
|
3163
|
+
"/reactions/chapter/{author}/{work}/{url}/{type}/remove": {
|
|
3164
|
+
method: "post"
|
|
3165
|
+
body?: undefined
|
|
3166
|
+
search?: undefined
|
|
3167
|
+
response: void | ErrorResponse
|
|
3168
|
+
},
|
|
3169
|
+
"/reactions/comment/{id}/{type}/remove": {
|
|
3170
|
+
method: "post"
|
|
3171
|
+
body?: undefined
|
|
3172
|
+
search?: undefined
|
|
3173
|
+
response: void | ErrorResponse
|
|
3174
|
+
},
|
|
3150
3175
|
"/supporter/status": {
|
|
3151
3176
|
method: "get"
|
|
3152
3177
|
body?: undefined
|
package/openapi.json
CHANGED
|
@@ -2719,7 +2719,10 @@
|
|
|
2719
2719
|
"reaction_type": {
|
|
2720
2720
|
"type": "string",
|
|
2721
2721
|
"enum": [
|
|
2722
|
-
"
|
|
2722
|
+
"love",
|
|
2723
|
+
"author_heart",
|
|
2724
|
+
"guest_heart",
|
|
2725
|
+
"supporter_love"
|
|
2723
2726
|
]
|
|
2724
2727
|
},
|
|
2725
2728
|
"author": {
|
|
@@ -4664,12 +4667,16 @@
|
|
|
4664
4667
|
},
|
|
4665
4668
|
"guest_heart": {
|
|
4666
4669
|
"$ref": "#/components/schema/ReactionType"
|
|
4670
|
+
},
|
|
4671
|
+
"supporter_love": {
|
|
4672
|
+
"$ref": "#/components/schema/ReactionType"
|
|
4667
4673
|
}
|
|
4668
4674
|
},
|
|
4669
4675
|
"required": [
|
|
4670
4676
|
"love",
|
|
4671
4677
|
"author_heart",
|
|
4672
|
-
"guest_heart"
|
|
4678
|
+
"guest_heart",
|
|
4679
|
+
"supporter_love"
|
|
4673
4680
|
]
|
|
4674
4681
|
},
|
|
4675
4682
|
"ReactionType": {
|
|
@@ -13675,7 +13682,36 @@
|
|
|
13675
13682
|
}
|
|
13676
13683
|
}
|
|
13677
13684
|
},
|
|
13678
|
-
"/v2/reactions/comment/{id}/
|
|
13685
|
+
"/v2/reactions/comment/{id}/{type}/add": {
|
|
13686
|
+
"parameters": [
|
|
13687
|
+
{
|
|
13688
|
+
"name": "id",
|
|
13689
|
+
"in": "path"
|
|
13690
|
+
},
|
|
13691
|
+
{
|
|
13692
|
+
"name": "type",
|
|
13693
|
+
"in": "path"
|
|
13694
|
+
}
|
|
13695
|
+
],
|
|
13696
|
+
"post": {
|
|
13697
|
+
"responses": {
|
|
13698
|
+
"200": {
|
|
13699
|
+
"description": "200 response"
|
|
13700
|
+
},
|
|
13701
|
+
"default": {
|
|
13702
|
+
"description": "Error",
|
|
13703
|
+
"content": {
|
|
13704
|
+
"application/json": {
|
|
13705
|
+
"schema": {
|
|
13706
|
+
"$ref": "#/components/schemas/ErrorResponse"
|
|
13707
|
+
}
|
|
13708
|
+
}
|
|
13709
|
+
}
|
|
13710
|
+
}
|
|
13711
|
+
}
|
|
13712
|
+
}
|
|
13713
|
+
},
|
|
13714
|
+
"/v2/reactions/comment/{id}/{type}/remove": {
|
|
13679
13715
|
"parameters": [
|
|
13680
13716
|
{
|
|
13681
13717
|
"name": "id",
|
|
@@ -13729,7 +13765,44 @@
|
|
|
13729
13765
|
}
|
|
13730
13766
|
}
|
|
13731
13767
|
},
|
|
13732
|
-
"/v2/reactions/
|
|
13768
|
+
"/v2/reactions/chapter/{author}/{work}/{url}/{type}/add": {
|
|
13769
|
+
"parameters": [
|
|
13770
|
+
{
|
|
13771
|
+
"name": "author",
|
|
13772
|
+
"in": "path"
|
|
13773
|
+
},
|
|
13774
|
+
{
|
|
13775
|
+
"name": "work",
|
|
13776
|
+
"in": "path"
|
|
13777
|
+
},
|
|
13778
|
+
{
|
|
13779
|
+
"name": "url",
|
|
13780
|
+
"in": "path"
|
|
13781
|
+
},
|
|
13782
|
+
{
|
|
13783
|
+
"name": "type",
|
|
13784
|
+
"in": "path"
|
|
13785
|
+
}
|
|
13786
|
+
],
|
|
13787
|
+
"post": {
|
|
13788
|
+
"responses": {
|
|
13789
|
+
"200": {
|
|
13790
|
+
"description": "200 response"
|
|
13791
|
+
},
|
|
13792
|
+
"default": {
|
|
13793
|
+
"description": "Error",
|
|
13794
|
+
"content": {
|
|
13795
|
+
"application/json": {
|
|
13796
|
+
"schema": {
|
|
13797
|
+
"$ref": "#/components/schemas/ErrorResponse"
|
|
13798
|
+
}
|
|
13799
|
+
}
|
|
13800
|
+
}
|
|
13801
|
+
}
|
|
13802
|
+
}
|
|
13803
|
+
}
|
|
13804
|
+
},
|
|
13805
|
+
"/v2/reactions/chapter/{author}/{work}/{url}/{type}/supporter/add": {
|
|
13733
13806
|
"parameters": [
|
|
13734
13807
|
{
|
|
13735
13808
|
"name": "author",
|
|
@@ -13766,7 +13839,7 @@
|
|
|
13766
13839
|
}
|
|
13767
13840
|
}
|
|
13768
13841
|
},
|
|
13769
|
-
"/v2/reactions/
|
|
13842
|
+
"/v2/reactions/chapter/{author}/{work}/{url}/{type}/remove": {
|
|
13770
13843
|
"parameters": [
|
|
13771
13844
|
{
|
|
13772
13845
|
"name": "author",
|
|
@@ -13803,7 +13876,7 @@
|
|
|
13803
13876
|
}
|
|
13804
13877
|
}
|
|
13805
13878
|
},
|
|
13806
|
-
"/v2/reactions/
|
|
13879
|
+
"/v2/reactions/chapter/{author}/{work}/{url}/remove": {
|
|
13807
13880
|
"parameters": [
|
|
13808
13881
|
{
|
|
13809
13882
|
"name": "author",
|
|
@@ -13836,7 +13909,7 @@
|
|
|
13836
13909
|
}
|
|
13837
13910
|
}
|
|
13838
13911
|
},
|
|
13839
|
-
"/v2/reactions/
|
|
13912
|
+
"/v2/reactions/chapter/{author}/{work}/{url}/supporter/remove": {
|
|
13840
13913
|
"parameters": [
|
|
13841
13914
|
{
|
|
13842
13915
|
"name": "author",
|
|
@@ -22177,6 +22250,72 @@
|
|
|
22177
22250
|
}
|
|
22178
22251
|
}
|
|
22179
22252
|
},
|
|
22253
|
+
"/reactions/chapter/{author}/{work}/{url}/{type}/remove": {
|
|
22254
|
+
"parameters": [
|
|
22255
|
+
{
|
|
22256
|
+
"name": "author",
|
|
22257
|
+
"in": "path"
|
|
22258
|
+
},
|
|
22259
|
+
{
|
|
22260
|
+
"name": "work",
|
|
22261
|
+
"in": "path"
|
|
22262
|
+
},
|
|
22263
|
+
{
|
|
22264
|
+
"name": "url",
|
|
22265
|
+
"in": "path"
|
|
22266
|
+
},
|
|
22267
|
+
{
|
|
22268
|
+
"name": "type",
|
|
22269
|
+
"in": "path"
|
|
22270
|
+
}
|
|
22271
|
+
],
|
|
22272
|
+
"post": {
|
|
22273
|
+
"responses": {
|
|
22274
|
+
"200": {
|
|
22275
|
+
"description": "200 response"
|
|
22276
|
+
},
|
|
22277
|
+
"default": {
|
|
22278
|
+
"description": "Error",
|
|
22279
|
+
"content": {
|
|
22280
|
+
"application/json": {
|
|
22281
|
+
"schema": {
|
|
22282
|
+
"$ref": "#/components/schemas/ErrorResponse"
|
|
22283
|
+
}
|
|
22284
|
+
}
|
|
22285
|
+
}
|
|
22286
|
+
}
|
|
22287
|
+
}
|
|
22288
|
+
}
|
|
22289
|
+
},
|
|
22290
|
+
"/reactions/comment/{id}/{type}/remove": {
|
|
22291
|
+
"parameters": [
|
|
22292
|
+
{
|
|
22293
|
+
"name": "id",
|
|
22294
|
+
"in": "path"
|
|
22295
|
+
},
|
|
22296
|
+
{
|
|
22297
|
+
"name": "type",
|
|
22298
|
+
"in": "path"
|
|
22299
|
+
}
|
|
22300
|
+
],
|
|
22301
|
+
"post": {
|
|
22302
|
+
"responses": {
|
|
22303
|
+
"200": {
|
|
22304
|
+
"description": "200 response"
|
|
22305
|
+
},
|
|
22306
|
+
"default": {
|
|
22307
|
+
"description": "Error",
|
|
22308
|
+
"content": {
|
|
22309
|
+
"application/json": {
|
|
22310
|
+
"schema": {
|
|
22311
|
+
"$ref": "#/components/schemas/ErrorResponse"
|
|
22312
|
+
}
|
|
22313
|
+
}
|
|
22314
|
+
}
|
|
22315
|
+
}
|
|
22316
|
+
}
|
|
22317
|
+
}
|
|
22318
|
+
},
|
|
22180
22319
|
"/supporter/status": {
|
|
22181
22320
|
"get": {
|
|
22182
22321
|
"responses": {
|
package/package.json
CHANGED