api.fluff4.me 1.0.1119 → 1.0.1121
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 +30 -5
- package/openapi.json +142 -6
- package/package.json +1 -1
package/index.d.ts
CHANGED
|
@@ -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
|
@@ -4664,12 +4664,16 @@
|
|
|
4664
4664
|
},
|
|
4665
4665
|
"guest_heart": {
|
|
4666
4666
|
"$ref": "#/components/schema/ReactionType"
|
|
4667
|
+
},
|
|
4668
|
+
"supporter_love": {
|
|
4669
|
+
"$ref": "#/components/schema/ReactionType"
|
|
4667
4670
|
}
|
|
4668
4671
|
},
|
|
4669
4672
|
"required": [
|
|
4670
4673
|
"love",
|
|
4671
4674
|
"author_heart",
|
|
4672
|
-
"guest_heart"
|
|
4675
|
+
"guest_heart",
|
|
4676
|
+
"supporter_love"
|
|
4673
4677
|
]
|
|
4674
4678
|
},
|
|
4675
4679
|
"ReactionType": {
|
|
@@ -13675,7 +13679,36 @@
|
|
|
13675
13679
|
}
|
|
13676
13680
|
}
|
|
13677
13681
|
},
|
|
13678
|
-
"/v2/reactions/comment/{id}/
|
|
13682
|
+
"/v2/reactions/comment/{id}/{type}/add": {
|
|
13683
|
+
"parameters": [
|
|
13684
|
+
{
|
|
13685
|
+
"name": "id",
|
|
13686
|
+
"in": "path"
|
|
13687
|
+
},
|
|
13688
|
+
{
|
|
13689
|
+
"name": "type",
|
|
13690
|
+
"in": "path"
|
|
13691
|
+
}
|
|
13692
|
+
],
|
|
13693
|
+
"post": {
|
|
13694
|
+
"responses": {
|
|
13695
|
+
"200": {
|
|
13696
|
+
"description": "200 response"
|
|
13697
|
+
},
|
|
13698
|
+
"default": {
|
|
13699
|
+
"description": "Error",
|
|
13700
|
+
"content": {
|
|
13701
|
+
"application/json": {
|
|
13702
|
+
"schema": {
|
|
13703
|
+
"$ref": "#/components/schemas/ErrorResponse"
|
|
13704
|
+
}
|
|
13705
|
+
}
|
|
13706
|
+
}
|
|
13707
|
+
}
|
|
13708
|
+
}
|
|
13709
|
+
}
|
|
13710
|
+
},
|
|
13711
|
+
"/v2/reactions/comment/{id}/{type}/remove": {
|
|
13679
13712
|
"parameters": [
|
|
13680
13713
|
{
|
|
13681
13714
|
"name": "id",
|
|
@@ -13729,7 +13762,44 @@
|
|
|
13729
13762
|
}
|
|
13730
13763
|
}
|
|
13731
13764
|
},
|
|
13732
|
-
"/v2/reactions/
|
|
13765
|
+
"/v2/reactions/chapter/{author}/{work}/{url}/{type}/add": {
|
|
13766
|
+
"parameters": [
|
|
13767
|
+
{
|
|
13768
|
+
"name": "author",
|
|
13769
|
+
"in": "path"
|
|
13770
|
+
},
|
|
13771
|
+
{
|
|
13772
|
+
"name": "work",
|
|
13773
|
+
"in": "path"
|
|
13774
|
+
},
|
|
13775
|
+
{
|
|
13776
|
+
"name": "url",
|
|
13777
|
+
"in": "path"
|
|
13778
|
+
},
|
|
13779
|
+
{
|
|
13780
|
+
"name": "type",
|
|
13781
|
+
"in": "path"
|
|
13782
|
+
}
|
|
13783
|
+
],
|
|
13784
|
+
"post": {
|
|
13785
|
+
"responses": {
|
|
13786
|
+
"200": {
|
|
13787
|
+
"description": "200 response"
|
|
13788
|
+
},
|
|
13789
|
+
"default": {
|
|
13790
|
+
"description": "Error",
|
|
13791
|
+
"content": {
|
|
13792
|
+
"application/json": {
|
|
13793
|
+
"schema": {
|
|
13794
|
+
"$ref": "#/components/schemas/ErrorResponse"
|
|
13795
|
+
}
|
|
13796
|
+
}
|
|
13797
|
+
}
|
|
13798
|
+
}
|
|
13799
|
+
}
|
|
13800
|
+
}
|
|
13801
|
+
},
|
|
13802
|
+
"/v2/reactions/chapter/{author}/{work}/{url}/{type}/supporter/add": {
|
|
13733
13803
|
"parameters": [
|
|
13734
13804
|
{
|
|
13735
13805
|
"name": "author",
|
|
@@ -13766,7 +13836,7 @@
|
|
|
13766
13836
|
}
|
|
13767
13837
|
}
|
|
13768
13838
|
},
|
|
13769
|
-
"/v2/reactions/
|
|
13839
|
+
"/v2/reactions/chapter/{author}/{work}/{url}/{type}/remove": {
|
|
13770
13840
|
"parameters": [
|
|
13771
13841
|
{
|
|
13772
13842
|
"name": "author",
|
|
@@ -13803,7 +13873,7 @@
|
|
|
13803
13873
|
}
|
|
13804
13874
|
}
|
|
13805
13875
|
},
|
|
13806
|
-
"/v2/reactions/
|
|
13876
|
+
"/v2/reactions/chapter/{author}/{work}/{url}/remove": {
|
|
13807
13877
|
"parameters": [
|
|
13808
13878
|
{
|
|
13809
13879
|
"name": "author",
|
|
@@ -13836,7 +13906,7 @@
|
|
|
13836
13906
|
}
|
|
13837
13907
|
}
|
|
13838
13908
|
},
|
|
13839
|
-
"/v2/reactions/
|
|
13909
|
+
"/v2/reactions/chapter/{author}/{work}/{url}/supporter/remove": {
|
|
13840
13910
|
"parameters": [
|
|
13841
13911
|
{
|
|
13842
13912
|
"name": "author",
|
|
@@ -22177,6 +22247,72 @@
|
|
|
22177
22247
|
}
|
|
22178
22248
|
}
|
|
22179
22249
|
},
|
|
22250
|
+
"/reactions/chapter/{author}/{work}/{url}/{type}/remove": {
|
|
22251
|
+
"parameters": [
|
|
22252
|
+
{
|
|
22253
|
+
"name": "author",
|
|
22254
|
+
"in": "path"
|
|
22255
|
+
},
|
|
22256
|
+
{
|
|
22257
|
+
"name": "work",
|
|
22258
|
+
"in": "path"
|
|
22259
|
+
},
|
|
22260
|
+
{
|
|
22261
|
+
"name": "url",
|
|
22262
|
+
"in": "path"
|
|
22263
|
+
},
|
|
22264
|
+
{
|
|
22265
|
+
"name": "type",
|
|
22266
|
+
"in": "path"
|
|
22267
|
+
}
|
|
22268
|
+
],
|
|
22269
|
+
"post": {
|
|
22270
|
+
"responses": {
|
|
22271
|
+
"200": {
|
|
22272
|
+
"description": "200 response"
|
|
22273
|
+
},
|
|
22274
|
+
"default": {
|
|
22275
|
+
"description": "Error",
|
|
22276
|
+
"content": {
|
|
22277
|
+
"application/json": {
|
|
22278
|
+
"schema": {
|
|
22279
|
+
"$ref": "#/components/schemas/ErrorResponse"
|
|
22280
|
+
}
|
|
22281
|
+
}
|
|
22282
|
+
}
|
|
22283
|
+
}
|
|
22284
|
+
}
|
|
22285
|
+
}
|
|
22286
|
+
},
|
|
22287
|
+
"/reactions/comment/{id}/{type}/remove": {
|
|
22288
|
+
"parameters": [
|
|
22289
|
+
{
|
|
22290
|
+
"name": "id",
|
|
22291
|
+
"in": "path"
|
|
22292
|
+
},
|
|
22293
|
+
{
|
|
22294
|
+
"name": "type",
|
|
22295
|
+
"in": "path"
|
|
22296
|
+
}
|
|
22297
|
+
],
|
|
22298
|
+
"post": {
|
|
22299
|
+
"responses": {
|
|
22300
|
+
"200": {
|
|
22301
|
+
"description": "200 response"
|
|
22302
|
+
},
|
|
22303
|
+
"default": {
|
|
22304
|
+
"description": "Error",
|
|
22305
|
+
"content": {
|
|
22306
|
+
"application/json": {
|
|
22307
|
+
"schema": {
|
|
22308
|
+
"$ref": "#/components/schemas/ErrorResponse"
|
|
22309
|
+
}
|
|
22310
|
+
}
|
|
22311
|
+
}
|
|
22312
|
+
}
|
|
22313
|
+
}
|
|
22314
|
+
}
|
|
22315
|
+
},
|
|
22180
22316
|
"/supporter/status": {
|
|
22181
22317
|
"get": {
|
|
22182
22318
|
"responses": {
|
package/package.json
CHANGED