api.fluff4.me 1.0.370 → 1.0.371

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
@@ -519,6 +519,7 @@ export interface FeedSearch {
519
519
  export interface History {
520
520
  items: HistoryItem[]
521
521
  works: Work[]
522
+ authors: Author[]
522
523
  }
523
524
 
524
525
  export interface HistoryItem {
package/openapi.json CHANGED
@@ -2847,11 +2847,18 @@
2847
2847
  "items": {
2848
2848
  "$ref": "#/components/schema/Work"
2849
2849
  }
2850
+ },
2851
+ "authors": {
2852
+ "type": "array",
2853
+ "items": {
2854
+ "$ref": "#/components/schema/Author"
2855
+ }
2850
2856
  }
2851
2857
  },
2852
2858
  "required": [
2853
2859
  "items",
2854
- "works"
2860
+ "works",
2861
+ "authors"
2855
2862
  ]
2856
2863
  },
2857
2864
  "HistoryItem": {
package/package.json CHANGED
@@ -1,5 +1,5 @@
1
1
  {
2
2
  "name": "api.fluff4.me",
3
- "version": "1.0.370",
3
+ "version": "1.0.371",
4
4
  "types": "index.d.ts"
5
5
  }