api.fluff4.me 1.0.439 → 1.0.441
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 +9 -1
- package/package.json +1 -1
package/index.d.ts
CHANGED
|
@@ -218,6 +218,7 @@ export interface Chapter {
|
|
|
218
218
|
time_publish?: string | null
|
|
219
219
|
author: string
|
|
220
220
|
work: string
|
|
221
|
+
is_numbered: boolean
|
|
221
222
|
body?: string | null
|
|
222
223
|
index: number
|
|
223
224
|
notes_before?: string | null
|
|
@@ -270,6 +271,7 @@ export interface ChapterLite {
|
|
|
270
271
|
time_publish?: string | null
|
|
271
272
|
author: string
|
|
272
273
|
work: string
|
|
274
|
+
is_numbered: boolean
|
|
273
275
|
}
|
|
274
276
|
|
|
275
277
|
export type Works = Work[]
|
package/openapi.json
CHANGED
|
@@ -1211,6 +1211,9 @@
|
|
|
1211
1211
|
"work": {
|
|
1212
1212
|
"type": "string"
|
|
1213
1213
|
},
|
|
1214
|
+
"is_numbered": {
|
|
1215
|
+
"type": "boolean"
|
|
1216
|
+
},
|
|
1214
1217
|
"body": {
|
|
1215
1218
|
"anyOf": [
|
|
1216
1219
|
{
|
|
@@ -1325,6 +1328,7 @@
|
|
|
1325
1328
|
"view_count",
|
|
1326
1329
|
"author",
|
|
1327
1330
|
"work",
|
|
1331
|
+
"is_numbered",
|
|
1328
1332
|
"index"
|
|
1329
1333
|
]
|
|
1330
1334
|
},
|
|
@@ -1599,6 +1603,9 @@
|
|
|
1599
1603
|
},
|
|
1600
1604
|
"work": {
|
|
1601
1605
|
"type": "string"
|
|
1606
|
+
},
|
|
1607
|
+
"is_numbered": {
|
|
1608
|
+
"type": "boolean"
|
|
1602
1609
|
}
|
|
1603
1610
|
},
|
|
1604
1611
|
"required": [
|
|
@@ -1608,7 +1615,8 @@
|
|
|
1608
1615
|
"word_count",
|
|
1609
1616
|
"view_count",
|
|
1610
1617
|
"author",
|
|
1611
|
-
"work"
|
|
1618
|
+
"work",
|
|
1619
|
+
"is_numbered"
|
|
1612
1620
|
]
|
|
1613
1621
|
},
|
|
1614
1622
|
"Works": {
|
package/package.json
CHANGED