api.fluff4.me 1.0.210 → 1.0.212

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 {
@@ -609,7 +609,7 @@ export interface Paths {
609
609
  body?: undefined
610
610
  response: Response<Follow> | ErrorResponse
611
611
  },
612
- "/follows/work/{author_vanity}/{work_vanity}": {
612
+ "/follows/work/{author}/{vanity}": {
613
613
  method: "get"
614
614
  body?: undefined
615
615
  response: Response<Follow> | 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": {
@@ -3669,14 +3675,14 @@
3669
3675
  }
3670
3676
  }
3671
3677
  },
3672
- "/follows/work/{author_vanity}/{work_vanity}": {
3678
+ "/follows/work/{author}/{vanity}": {
3673
3679
  "parameters": [
3674
3680
  {
3675
- "name": "author_vanity",
3681
+ "name": "author",
3676
3682
  "in": "path"
3677
3683
  },
3678
3684
  {
3679
- "name": "work_vanity",
3685
+ "name": "vanity",
3680
3686
  "in": "path"
3681
3687
  }
3682
3688
  ],
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.212",
4
4
  "types": "index.d.ts"
5
5
  }