api.fluff4.me 1.0.884 → 1.0.885
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 -1
- package/openapi.json +6 -2
- package/package.json +1 -1
package/index.d.ts
CHANGED
|
@@ -308,7 +308,7 @@ export interface WorkStatistics {
|
|
|
308
308
|
reaction_count: number
|
|
309
309
|
read_count: number
|
|
310
310
|
visits: string
|
|
311
|
-
chapter_visits:
|
|
311
|
+
chapter_visits: string
|
|
312
312
|
}
|
|
313
313
|
|
|
314
314
|
export interface WorkUpdateBody {
|
|
@@ -381,6 +381,7 @@ export interface ChapterStatistics {
|
|
|
381
381
|
comment_count: number
|
|
382
382
|
reaction_count: number
|
|
383
383
|
read_count: number
|
|
384
|
+
visits: string
|
|
384
385
|
}
|
|
385
386
|
|
|
386
387
|
export interface SupporterReactions {
|
package/openapi.json
CHANGED
|
@@ -1715,7 +1715,7 @@
|
|
|
1715
1715
|
"type": "string"
|
|
1716
1716
|
},
|
|
1717
1717
|
"chapter_visits": {
|
|
1718
|
-
"type": "
|
|
1718
|
+
"type": "string"
|
|
1719
1719
|
}
|
|
1720
1720
|
},
|
|
1721
1721
|
"required": [
|
|
@@ -2291,12 +2291,16 @@
|
|
|
2291
2291
|
},
|
|
2292
2292
|
"read_count": {
|
|
2293
2293
|
"type": "number"
|
|
2294
|
+
},
|
|
2295
|
+
"visits": {
|
|
2296
|
+
"type": "string"
|
|
2294
2297
|
}
|
|
2295
2298
|
},
|
|
2296
2299
|
"required": [
|
|
2297
2300
|
"comment_count",
|
|
2298
2301
|
"reaction_count",
|
|
2299
|
-
"read_count"
|
|
2302
|
+
"read_count",
|
|
2303
|
+
"visits"
|
|
2300
2304
|
]
|
|
2301
2305
|
},
|
|
2302
2306
|
"SupporterReactions": {
|
package/package.json
CHANGED