api.fluff4.me 1.0.883 → 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.
Files changed (3) hide show
  1. package/index.d.ts +3 -4
  2. package/openapi.json +15 -19
  3. package/package.json +1 -1
package/index.d.ts CHANGED
@@ -111,7 +111,6 @@ export interface WorkMetadata {
111
111
  chapter_count_public: number
112
112
  chapter_count?: number | null
113
113
  word_count: number
114
- view_count: string
115
114
  time_publish?: string | null
116
115
  time_last_update?: string | null
117
116
  global_tags?: string[] | null
@@ -261,7 +260,6 @@ export interface Work {
261
260
  chapter_count_public: number
262
261
  chapter_count?: number | null
263
262
  word_count: number
264
- view_count: string
265
263
  time_publish?: string | null
266
264
  time_last_update?: string | null
267
265
  global_tags?: string[] | null
@@ -309,6 +307,8 @@ export interface WorkStatistics {
309
307
  comment_count: number
310
308
  reaction_count: number
311
309
  read_count: number
310
+ visits: string
311
+ chapter_visits: string
312
312
  }
313
313
 
314
314
  export interface WorkUpdateBody {
@@ -340,7 +340,6 @@ export interface Chapter {
340
340
  name: string
341
341
  visibility: ChapterVisibility
342
342
  word_count: number
343
- view_count: string
344
343
  time_last_update?: string | null
345
344
  time_publish?: string | null
346
345
  author: string
@@ -382,6 +381,7 @@ export interface ChapterStatistics {
382
381
  comment_count: number
383
382
  reaction_count: number
384
383
  read_count: number
384
+ visits: string
385
385
  }
386
386
 
387
387
  export interface SupporterReactions {
@@ -450,7 +450,6 @@ export interface ChapterMetadata {
450
450
  name: string
451
451
  visibility: ChapterVisibility
452
452
  word_count: number
453
- view_count: string
454
453
  time_last_update?: string | null
455
454
  time_publish?: string | null
456
455
  author: string
package/openapi.json CHANGED
@@ -524,9 +524,6 @@
524
524
  "word_count": {
525
525
  "type": "number"
526
526
  },
527
- "view_count": {
528
- "type": "string"
529
- },
530
527
  "time_publish": {
531
528
  "anyOf": [
532
529
  {
@@ -634,8 +631,7 @@
634
631
  "status",
635
632
  "visibility",
636
633
  "chapter_count_public",
637
- "word_count",
638
- "view_count"
634
+ "word_count"
639
635
  ]
640
636
  },
641
637
  "WorkStatus": {
@@ -1387,9 +1383,6 @@
1387
1383
  "word_count": {
1388
1384
  "type": "number"
1389
1385
  },
1390
- "view_count": {
1391
- "type": "string"
1392
- },
1393
1386
  "time_publish": {
1394
1387
  "anyOf": [
1395
1388
  {
@@ -1527,7 +1520,6 @@
1527
1520
  "visibility",
1528
1521
  "chapter_count_public",
1529
1522
  "word_count",
1530
- "view_count",
1531
1523
  "synopsis",
1532
1524
  "last_chapter"
1533
1525
  ]
@@ -1718,12 +1710,20 @@
1718
1710
  },
1719
1711
  "read_count": {
1720
1712
  "type": "number"
1713
+ },
1714
+ "visits": {
1715
+ "type": "string"
1716
+ },
1717
+ "chapter_visits": {
1718
+ "type": "string"
1721
1719
  }
1722
1720
  },
1723
1721
  "required": [
1724
1722
  "comment_count",
1725
1723
  "reaction_count",
1726
- "read_count"
1724
+ "read_count",
1725
+ "visits",
1726
+ "chapter_visits"
1727
1727
  ]
1728
1728
  },
1729
1729
  "WorkUpdateBody": {
@@ -1963,9 +1963,6 @@
1963
1963
  "word_count": {
1964
1964
  "type": "number"
1965
1965
  },
1966
- "view_count": {
1967
- "type": "string"
1968
- },
1969
1966
  "time_last_update": {
1970
1967
  "anyOf": [
1971
1968
  {
@@ -2152,7 +2149,6 @@
2152
2149
  "name",
2153
2150
  "visibility",
2154
2151
  "word_count",
2155
- "view_count",
2156
2152
  "author",
2157
2153
  "work",
2158
2154
  "is_numbered",
@@ -2295,12 +2291,16 @@
2295
2291
  },
2296
2292
  "read_count": {
2297
2293
  "type": "number"
2294
+ },
2295
+ "visits": {
2296
+ "type": "string"
2298
2297
  }
2299
2298
  },
2300
2299
  "required": [
2301
2300
  "comment_count",
2302
2301
  "reaction_count",
2303
- "read_count"
2302
+ "read_count",
2303
+ "visits"
2304
2304
  ]
2305
2305
  },
2306
2306
  "SupporterReactions": {
@@ -2724,9 +2724,6 @@
2724
2724
  "word_count": {
2725
2725
  "type": "number"
2726
2726
  },
2727
- "view_count": {
2728
- "type": "string"
2729
- },
2730
2727
  "time_last_update": {
2731
2728
  "anyOf": [
2732
2729
  {
@@ -2782,7 +2779,6 @@
2782
2779
  "name",
2783
2780
  "visibility",
2784
2781
  "word_count",
2785
- "view_count",
2786
2782
  "author",
2787
2783
  "work",
2788
2784
  "is_numbered"
package/package.json CHANGED
@@ -1,5 +1,5 @@
1
1
  {
2
2
  "name": "api.fluff4.me",
3
- "version": "1.0.883",
3
+ "version": "1.0.885",
4
4
  "types": "index.d.ts"
5
5
  }