api.fluff4.me 1.0.889 → 1.0.891

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 CHANGED
@@ -124,6 +124,7 @@ export interface WorkMetadata {
124
124
  interval: number
125
125
  }
126
126
  | null
127
+ recently_updated: boolean
127
128
  }
128
129
 
129
130
  export type WorkStatus = "Cancelled" | "Hiatus" | "Ongoing" | "Complete"
@@ -273,6 +274,7 @@ export interface Work {
273
274
  interval: number
274
275
  }
275
276
  | null
277
+ recently_updated: boolean
276
278
  synopsis: MentionsBody
277
279
  custom_tags?: CustomTag[] | null
278
280
  last_chapter: string
package/openapi.json CHANGED
@@ -621,6 +621,9 @@
621
621
  "type": "null"
622
622
  }
623
623
  ]
624
+ },
625
+ "recently_updated": {
626
+ "type": "boolean"
624
627
  }
625
628
  },
626
629
  "required": [
@@ -631,7 +634,8 @@
631
634
  "status",
632
635
  "visibility",
633
636
  "chapter_count_public",
634
- "word_count"
637
+ "word_count",
638
+ "recently_updated"
635
639
  ]
636
640
  },
637
641
  "WorkStatus": {
@@ -1481,6 +1485,9 @@
1481
1485
  }
1482
1486
  ]
1483
1487
  },
1488
+ "recently_updated": {
1489
+ "type": "boolean"
1490
+ },
1484
1491
  "synopsis": {
1485
1492
  "$ref": "#/components/schema/MentionsBody"
1486
1493
  },
@@ -1520,6 +1527,7 @@
1520
1527
  "visibility",
1521
1528
  "chapter_count_public",
1522
1529
  "word_count",
1530
+ "recently_updated",
1523
1531
  "synopsis",
1524
1532
  "last_chapter"
1525
1533
  ]
package/package.json CHANGED
@@ -1,5 +1,5 @@
1
1
  {
2
2
  "name": "api.fluff4.me",
3
- "version": "1.0.889",
3
+ "version": "1.0.891",
4
4
  "types": "index.d.ts"
5
5
  }