api.fluff4.me 1.0.949 → 1.0.950

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
@@ -979,8 +979,9 @@ export interface Shelves {
979
979
  }
980
980
 
981
981
  export interface SearchResponse {
982
- authors: AuthorMetadata[]
982
+ authors: string[]
983
983
  works: WorkMetadata[]
984
+ authorData: AuthorMetadata[]
984
985
  }
985
986
 
986
987
  export interface SearchSearch {
package/openapi.json CHANGED
@@ -5572,7 +5572,7 @@
5572
5572
  "authors": {
5573
5573
  "type": "array",
5574
5574
  "items": {
5575
- "$ref": "#/components/schema/AuthorMetadata"
5575
+ "type": "string"
5576
5576
  }
5577
5577
  },
5578
5578
  "works": {
@@ -5580,11 +5580,18 @@
5580
5580
  "items": {
5581
5581
  "$ref": "#/components/schema/WorkMetadata"
5582
5582
  }
5583
+ },
5584
+ "authorData": {
5585
+ "type": "array",
5586
+ "items": {
5587
+ "$ref": "#/components/schema/AuthorMetadata"
5588
+ }
5583
5589
  }
5584
5590
  },
5585
5591
  "required": [
5586
5592
  "authors",
5587
- "works"
5593
+ "works",
5594
+ "authorData"
5588
5595
  ]
5589
5596
  },
5590
5597
  "SearchSearch": {
@@ -5592,7 +5599,8 @@
5592
5599
  "properties": {
5593
5600
  "text": {
5594
5601
  "type": "string",
5595
- "minLength": 3
5602
+ "minLength": 3,
5603
+ "maxLength": 64
5596
5604
  }
5597
5605
  },
5598
5606
  "required": [
@@ -12995,7 +13003,8 @@
12995
13003
  "required": true,
12996
13004
  "schema": {
12997
13005
  "type": "string",
12998
- "minLength": 3
13006
+ "minLength": 3,
13007
+ "maxLength": 64
12999
13008
  }
13000
13009
  }
13001
13010
  ],
package/package.json CHANGED
@@ -1,5 +1,5 @@
1
1
  {
2
2
  "name": "api.fluff4.me",
3
- "version": "1.0.949",
3
+ "version": "1.0.950",
4
4
  "types": "index.d.ts"
5
5
  }