api.fluff4.me 1.0.204 → 1.0.207

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
@@ -95,7 +95,7 @@ export interface AuthorFull {
95
95
  description: TextBody
96
96
  }
97
97
 
98
- export interface AuthorUpdateBody {
98
+ export interface AuthorInsert {
99
99
  name?: string | null
100
100
  vanity?: string | null
101
101
  description?: string | null
@@ -483,7 +483,7 @@ export interface Paths {
483
483
  },
484
484
  "/author/update": {
485
485
  method: "post"
486
- body: AuthorUpdateBody
486
+ body: AuthorInsert
487
487
  response: Response<AuthorAuthorised> | ErrorResponse
488
488
  },
489
489
  "/author/delete": {
package/openapi.json CHANGED
@@ -393,7 +393,7 @@
393
393
  "description"
394
394
  ]
395
395
  },
396
- "AuthorUpdateBody": {
396
+ "AuthorInsert": {
397
397
  "type": "object",
398
398
  "properties": {
399
399
  "name": {
@@ -2486,7 +2486,7 @@
2486
2486
  "content": {
2487
2487
  "application/json": {
2488
2488
  "schema": {
2489
- "$ref": "#/components/schemas/AuthorUpdateBody"
2489
+ "$ref": "#/components/schemas/AuthorInsert"
2490
2490
  }
2491
2491
  }
2492
2492
  }
package/package.json CHANGED
@@ -1,5 +1,5 @@
1
1
  {
2
2
  "name": "api.fluff4.me",
3
- "version": "1.0.204",
3
+ "version": "1.0.207",
4
4
  "types": "index.d.ts"
5
5
  }