api.fluff4.me 1.0.210 → 1.0.212
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 +2 -2
- package/openapi.json +12 -6
- package/package.json +1 -1
package/index.d.ts
CHANGED
|
@@ -419,7 +419,7 @@ export interface WorkWithAuthor {
|
|
|
419
419
|
time_publish?: string | null
|
|
420
420
|
time_last_update?: string | null
|
|
421
421
|
global_tags?: string[] | null
|
|
422
|
-
author
|
|
422
|
+
author?: string | null
|
|
423
423
|
}
|
|
424
424
|
|
|
425
425
|
export interface ErrorResponse {
|
|
@@ -609,7 +609,7 @@ export interface Paths {
|
|
|
609
609
|
body?: undefined
|
|
610
610
|
response: Response<Follow> | ErrorResponse
|
|
611
611
|
},
|
|
612
|
-
"/follows/work/{
|
|
612
|
+
"/follows/work/{author}/{vanity}": {
|
|
613
613
|
method: "get"
|
|
614
614
|
body?: undefined
|
|
615
615
|
response: Response<Follow> | ErrorResponse
|
package/openapi.json
CHANGED
|
@@ -2158,7 +2158,14 @@
|
|
|
2158
2158
|
]
|
|
2159
2159
|
},
|
|
2160
2160
|
"author": {
|
|
2161
|
-
"
|
|
2161
|
+
"anyOf": [
|
|
2162
|
+
{
|
|
2163
|
+
"type": "string"
|
|
2164
|
+
},
|
|
2165
|
+
{
|
|
2166
|
+
"type": "null"
|
|
2167
|
+
}
|
|
2168
|
+
]
|
|
2162
2169
|
}
|
|
2163
2170
|
},
|
|
2164
2171
|
"required": [
|
|
@@ -2168,8 +2175,7 @@
|
|
|
2168
2175
|
"status",
|
|
2169
2176
|
"chapter_count_public",
|
|
2170
2177
|
"word_count",
|
|
2171
|
-
"view_count"
|
|
2172
|
-
"author"
|
|
2178
|
+
"view_count"
|
|
2173
2179
|
]
|
|
2174
2180
|
},
|
|
2175
2181
|
"ErrorResponse": {
|
|
@@ -3669,14 +3675,14 @@
|
|
|
3669
3675
|
}
|
|
3670
3676
|
}
|
|
3671
3677
|
},
|
|
3672
|
-
"/follows/work/{
|
|
3678
|
+
"/follows/work/{author}/{vanity}": {
|
|
3673
3679
|
"parameters": [
|
|
3674
3680
|
{
|
|
3675
|
-
"name": "
|
|
3681
|
+
"name": "author",
|
|
3676
3682
|
"in": "path"
|
|
3677
3683
|
},
|
|
3678
3684
|
{
|
|
3679
|
-
"name": "
|
|
3685
|
+
"name": "vanity",
|
|
3680
3686
|
"in": "path"
|
|
3681
3687
|
}
|
|
3682
3688
|
],
|
package/package.json
CHANGED