api.fluff4.me 1.0.883 → 1.0.884

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 +2 -4
  2. package/openapi.json +10 -18
  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: number
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
@@ -450,7 +449,6 @@ export interface ChapterMetadata {
450
449
  name: string
451
450
  visibility: ChapterVisibility
452
451
  word_count: number
453
- view_count: string
454
452
  time_last_update?: string | null
455
453
  time_publish?: string | null
456
454
  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": "number"
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",
@@ -2724,9 +2720,6 @@
2724
2720
  "word_count": {
2725
2721
  "type": "number"
2726
2722
  },
2727
- "view_count": {
2728
- "type": "string"
2729
- },
2730
2723
  "time_last_update": {
2731
2724
  "anyOf": [
2732
2725
  {
@@ -2782,7 +2775,6 @@
2782
2775
  "name",
2783
2776
  "visibility",
2784
2777
  "word_count",
2785
- "view_count",
2786
2778
  "author",
2787
2779
  "work",
2788
2780
  "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.884",
4
4
  "types": "index.d.ts"
5
5
  }