api.fluff4.me 1.0.900 → 1.0.902
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 +7 -1
- package/openapi.json +38 -4
- package/package.json +1 -1
package/index.d.ts
CHANGED
|
@@ -365,7 +365,7 @@ export interface Chapter {
|
|
|
365
365
|
}
|
|
366
366
|
|
|
367
367
|
export interface ChapterCreateBody {
|
|
368
|
-
name?: string | null
|
|
368
|
+
name?: (string | false) | null
|
|
369
369
|
visibility: ChapterVisibility
|
|
370
370
|
body: string
|
|
371
371
|
is_numbered?: boolean | null
|
|
@@ -1041,6 +1041,12 @@ export interface Paths {
|
|
|
1041
1041
|
search?: undefined
|
|
1042
1042
|
response: Response<Author> | ErrorResponse
|
|
1043
1043
|
},
|
|
1044
|
+
"/author/{vanity}/rss.xml": {
|
|
1045
|
+
method: "get"
|
|
1046
|
+
body?: undefined
|
|
1047
|
+
search?: undefined
|
|
1048
|
+
response: void | ErrorResponse
|
|
1049
|
+
},
|
|
1044
1050
|
"/author/update": {
|
|
1045
1051
|
method: "post"
|
|
1046
1052
|
body: AuthorInsertBody
|
package/openapi.json
CHANGED
|
@@ -2177,9 +2177,19 @@
|
|
|
2177
2177
|
"name": {
|
|
2178
2178
|
"anyOf": [
|
|
2179
2179
|
{
|
|
2180
|
-
"
|
|
2181
|
-
|
|
2182
|
-
|
|
2180
|
+
"anyOf": [
|
|
2181
|
+
{
|
|
2182
|
+
"type": "string",
|
|
2183
|
+
"minLength": 1,
|
|
2184
|
+
"maxLength": 256
|
|
2185
|
+
},
|
|
2186
|
+
{
|
|
2187
|
+
"type": "boolean",
|
|
2188
|
+
"enum": [
|
|
2189
|
+
false
|
|
2190
|
+
]
|
|
2191
|
+
}
|
|
2192
|
+
]
|
|
2183
2193
|
},
|
|
2184
2194
|
{
|
|
2185
2195
|
"type": "null"
|
|
@@ -2423,7 +2433,6 @@
|
|
|
2423
2433
|
"anyOf": [
|
|
2424
2434
|
{
|
|
2425
2435
|
"type": "string",
|
|
2426
|
-
"minLength": 1,
|
|
2427
2436
|
"maxLength": 256
|
|
2428
2437
|
},
|
|
2429
2438
|
{
|
|
@@ -5729,6 +5738,31 @@
|
|
|
5729
5738
|
}
|
|
5730
5739
|
}
|
|
5731
5740
|
},
|
|
5741
|
+
"/author/{vanity}/rss.xml": {
|
|
5742
|
+
"parameters": [
|
|
5743
|
+
{
|
|
5744
|
+
"name": "vanity",
|
|
5745
|
+
"in": "path"
|
|
5746
|
+
}
|
|
5747
|
+
],
|
|
5748
|
+
"get": {
|
|
5749
|
+
"responses": {
|
|
5750
|
+
"200": {
|
|
5751
|
+
"description": "200 response"
|
|
5752
|
+
},
|
|
5753
|
+
"default": {
|
|
5754
|
+
"description": "Error",
|
|
5755
|
+
"content": {
|
|
5756
|
+
"application/json": {
|
|
5757
|
+
"schema": {
|
|
5758
|
+
"$ref": "#/components/schemas/ErrorResponse"
|
|
5759
|
+
}
|
|
5760
|
+
}
|
|
5761
|
+
}
|
|
5762
|
+
}
|
|
5763
|
+
}
|
|
5764
|
+
}
|
|
5765
|
+
},
|
|
5732
5766
|
"/author/update": {
|
|
5733
5767
|
"post": {
|
|
5734
5768
|
"requestBody": {
|
package/package.json
CHANGED