api.fluff4.me 1.0.583 → 1.0.585
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 +2 -2
- package/package.json +1 -1
package/index.d.ts
CHANGED
|
@@ -359,7 +359,7 @@ export interface ChapterLite {
|
|
|
359
359
|
is_numbered: boolean
|
|
360
360
|
}
|
|
361
361
|
|
|
362
|
-
export interface
|
|
362
|
+
export interface ChapterRelativePosition {
|
|
363
363
|
relative_to: string
|
|
364
364
|
position: "before" | "after"
|
|
365
365
|
}
|
|
@@ -905,7 +905,7 @@ export interface Paths {
|
|
|
905
905
|
},
|
|
906
906
|
"/work/{author}/{work}/chapter/{url}/reorder": {
|
|
907
907
|
method: "post"
|
|
908
|
-
body:
|
|
908
|
+
body: ChapterRelativePosition
|
|
909
909
|
search?: undefined
|
|
910
910
|
response: Response<ChapterLite> | ErrorResponse
|
|
911
911
|
},
|
package/openapi.json
CHANGED
|
@@ -2135,7 +2135,7 @@
|
|
|
2135
2135
|
"is_numbered"
|
|
2136
2136
|
]
|
|
2137
2137
|
},
|
|
2138
|
-
"
|
|
2138
|
+
"ChapterRelativePosition": {
|
|
2139
2139
|
"type": "object",
|
|
2140
2140
|
"properties": {
|
|
2141
2141
|
"relative_to": {
|
|
@@ -5014,7 +5014,7 @@
|
|
|
5014
5014
|
"content": {
|
|
5015
5015
|
"application/json": {
|
|
5016
5016
|
"schema": {
|
|
5017
|
-
"$ref": "#/components/schemas/
|
|
5017
|
+
"$ref": "#/components/schemas/ChapterRelativePosition"
|
|
5018
5018
|
}
|
|
5019
5019
|
}
|
|
5020
5020
|
}
|
package/package.json
CHANGED