api.fluff4.me 1.0.210 → 1.0.211

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
@@ -419,7 +419,7 @@ export interface WorkWithAuthor {
419
419
  time_publish?: string | null
420
420
  time_last_update?: string | null
421
421
  global_tags?: string[] | null
422
- author: string
422
+ author?: string | null
423
423
  }
424
424
 
425
425
  export interface ErrorResponse {
package/openapi.json CHANGED
@@ -2158,7 +2158,14 @@
2158
2158
  ]
2159
2159
  },
2160
2160
  "author": {
2161
- "type": "string"
2161
+ "anyOf": [
2162
+ {
2163
+ "type": "string"
2164
+ },
2165
+ {
2166
+ "type": "null"
2167
+ }
2168
+ ]
2162
2169
  }
2163
2170
  },
2164
2171
  "required": [
@@ -2168,8 +2175,7 @@
2168
2175
  "status",
2169
2176
  "chapter_count_public",
2170
2177
  "word_count",
2171
- "view_count",
2172
- "author"
2178
+ "view_count"
2173
2179
  ]
2174
2180
  },
2175
2181
  "ErrorResponse": {
package/package.json CHANGED
@@ -1,5 +1,5 @@
1
1
  {
2
2
  "name": "api.fluff4.me",
3
- "version": "1.0.210",
3
+ "version": "1.0.211",
4
4
  "types": "index.d.ts"
5
5
  }