api.fluff4.me 1.0.899 → 1.0.901

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
@@ -365,7 +365,7 @@ export interface Chapter {
365
365
  }
366
366
 
367
367
  export interface ChapterCreateBody {
368
- name?: string | null
368
+ name?: (string | false) | null
369
369
  visibility: ChapterVisibility
370
370
  body: string
371
371
  is_numbered?: boolean | null
package/openapi.json CHANGED
@@ -2177,9 +2177,19 @@
2177
2177
  "name": {
2178
2178
  "anyOf": [
2179
2179
  {
2180
- "type": "string",
2181
- "minLength": 1,
2182
- "maxLength": 256
2180
+ "anyOf": [
2181
+ {
2182
+ "type": "string",
2183
+ "minLength": 1,
2184
+ "maxLength": 256
2185
+ },
2186
+ {
2187
+ "type": "boolean",
2188
+ "enum": [
2189
+ false
2190
+ ]
2191
+ }
2192
+ ]
2183
2193
  },
2184
2194
  {
2185
2195
  "type": "null"
@@ -2423,7 +2433,6 @@
2423
2433
  "anyOf": [
2424
2434
  {
2425
2435
  "type": "string",
2426
- "minLength": 1,
2427
2436
  "maxLength": 256
2428
2437
  },
2429
2438
  {
package/package.json CHANGED
@@ -1,5 +1,5 @@
1
1
  {
2
2
  "name": "api.fluff4.me",
3
- "version": "1.0.899",
3
+ "version": "1.0.901",
4
4
  "types": "index.d.ts"
5
5
  }