api.fluff4.me 1.0.1144 → 1.0.1146

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 +10 -0
  2. package/openapi.json +41 -1
  3. package/package.json +1 -1
package/index.d.ts CHANGED
@@ -110,6 +110,8 @@ export interface WorkMetadata {
110
110
  description: string
111
111
  vanity: string
112
112
  author: string
113
+ author_vanity: string
114
+ work_vanity: string
113
115
  status: WorkStatus
114
116
  visibility: WorkVisibility
115
117
  chapter_count_public: number
@@ -276,6 +278,8 @@ export interface Work {
276
278
  description: string
277
279
  vanity: string
278
280
  author: string
281
+ author_vanity: string
282
+ work_vanity: string
279
283
  status: WorkStatus
280
284
  visibility: WorkVisibility
281
285
  chapter_count_public: number
@@ -396,6 +400,9 @@ export interface Chapter {
396
400
  patreon?: PatreonRestriction | null
397
401
  is_numbered: boolean
398
402
  statistics?: ChapterStatistics | null
403
+ author_vanity: string
404
+ work_vanity: string
405
+ chapter_url: string
399
406
  body: string
400
407
  index: number
401
408
  notes_before?: string | null
@@ -464,6 +471,9 @@ export interface ChapterMetadata {
464
471
  patreon?: PatreonRestriction | null
465
472
  is_numbered: boolean
466
473
  statistics?: ChapterStatistics | null
474
+ author_vanity: string
475
+ work_vanity: string
476
+ chapter_url: string
467
477
  }
468
478
 
469
479
  export interface ChapterRelativePosition {
package/openapi.json CHANGED
@@ -651,6 +651,12 @@
651
651
  "author": {
652
652
  "type": "string"
653
653
  },
654
+ "author_vanity": {
655
+ "type": "string"
656
+ },
657
+ "work_vanity": {
658
+ "type": "string"
659
+ },
654
660
  "status": {
655
661
  "$ref": "#/components/schema/WorkStatus"
656
662
  },
@@ -781,6 +787,8 @@
781
787
  "description",
782
788
  "vanity",
783
789
  "author",
790
+ "author_vanity",
791
+ "work_vanity",
784
792
  "status",
785
793
  "visibility",
786
794
  "chapter_count_public",
@@ -1693,6 +1701,12 @@
1693
1701
  "author": {
1694
1702
  "type": "string"
1695
1703
  },
1704
+ "author_vanity": {
1705
+ "type": "string"
1706
+ },
1707
+ "work_vanity": {
1708
+ "type": "string"
1709
+ },
1696
1710
  "status": {
1697
1711
  "$ref": "#/components/schema/WorkStatus"
1698
1712
  },
@@ -1862,6 +1876,8 @@
1862
1876
  "description",
1863
1877
  "vanity",
1864
1878
  "author",
1879
+ "author_vanity",
1880
+ "work_vanity",
1865
1881
  "status",
1866
1882
  "visibility",
1867
1883
  "chapter_count_public",
@@ -2528,6 +2544,15 @@
2528
2544
  }
2529
2545
  ]
2530
2546
  },
2547
+ "author_vanity": {
2548
+ "type": "string"
2549
+ },
2550
+ "work_vanity": {
2551
+ "type": "string"
2552
+ },
2553
+ "chapter_url": {
2554
+ "type": "string"
2555
+ },
2531
2556
  "body": {
2532
2557
  "type": "string"
2533
2558
  },
@@ -2667,6 +2692,9 @@
2667
2692
  "author",
2668
2693
  "work",
2669
2694
  "is_numbered",
2695
+ "author_vanity",
2696
+ "work_vanity",
2697
+ "chapter_url",
2670
2698
  "body",
2671
2699
  "index",
2672
2700
  "supporter_reactions"
@@ -3095,6 +3123,15 @@
3095
3123
  "type": "null"
3096
3124
  }
3097
3125
  ]
3126
+ },
3127
+ "author_vanity": {
3128
+ "type": "string"
3129
+ },
3130
+ "work_vanity": {
3131
+ "type": "string"
3132
+ },
3133
+ "chapter_url": {
3134
+ "type": "string"
3098
3135
  }
3099
3136
  },
3100
3137
  "required": [
@@ -3103,7 +3140,10 @@
3103
3140
  "word_count",
3104
3141
  "author",
3105
3142
  "work",
3106
- "is_numbered"
3143
+ "is_numbered",
3144
+ "author_vanity",
3145
+ "work_vanity",
3146
+ "chapter_url"
3107
3147
  ]
3108
3148
  },
3109
3149
  "ChapterRelativePosition": {
package/package.json CHANGED
@@ -1,5 +1,5 @@
1
1
  {
2
2
  "name": "api.fluff4.me",
3
- "version": "1.0.1144",
3
+ "version": "1.0.1146",
4
4
  "types": "index.d.ts"
5
5
  }