api.fluff4.me 1.0.317 → 1.0.319
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 -0
- package/openapi.json +20 -0
- package/package.json +1 -1
package/index.d.ts
CHANGED
|
@@ -184,6 +184,7 @@ export interface Chapter {
|
|
|
184
184
|
word_count: number
|
|
185
185
|
view_count: string
|
|
186
186
|
time_last_update?: string | null
|
|
187
|
+
time_publish?: string | null
|
|
187
188
|
body?: string | null
|
|
188
189
|
index: number
|
|
189
190
|
notes_before?: string | null
|
|
@@ -233,6 +234,7 @@ export interface ChapterLite {
|
|
|
233
234
|
word_count: number
|
|
234
235
|
view_count: string
|
|
235
236
|
time_last_update?: string | null
|
|
237
|
+
time_publish?: string | null
|
|
236
238
|
}
|
|
237
239
|
|
|
238
240
|
export type Works = Work[]
|
package/openapi.json
CHANGED
|
@@ -1035,6 +1035,16 @@
|
|
|
1035
1035
|
}
|
|
1036
1036
|
]
|
|
1037
1037
|
},
|
|
1038
|
+
"time_publish": {
|
|
1039
|
+
"anyOf": [
|
|
1040
|
+
{
|
|
1041
|
+
"type": "string"
|
|
1042
|
+
},
|
|
1043
|
+
{
|
|
1044
|
+
"type": "null"
|
|
1045
|
+
}
|
|
1046
|
+
]
|
|
1047
|
+
},
|
|
1038
1048
|
"body": {
|
|
1039
1049
|
"anyOf": [
|
|
1040
1050
|
{
|
|
@@ -1398,6 +1408,16 @@
|
|
|
1398
1408
|
"type": "null"
|
|
1399
1409
|
}
|
|
1400
1410
|
]
|
|
1411
|
+
},
|
|
1412
|
+
"time_publish": {
|
|
1413
|
+
"anyOf": [
|
|
1414
|
+
{
|
|
1415
|
+
"type": "string"
|
|
1416
|
+
},
|
|
1417
|
+
{
|
|
1418
|
+
"type": "null"
|
|
1419
|
+
}
|
|
1420
|
+
]
|
|
1401
1421
|
}
|
|
1402
1422
|
},
|
|
1403
1423
|
"required": [
|
package/package.json
CHANGED