api.fluff4.me 1.0.206 → 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 +2 -2
- package/openapi.json +4 -2
- package/package.json +1 -1
package/index.d.ts
CHANGED
|
@@ -79,7 +79,7 @@ export interface AuthorCreateBody {
|
|
|
79
79
|
name: string
|
|
80
80
|
vanity: string
|
|
81
81
|
description?: string | null
|
|
82
|
-
support_link?: null
|
|
82
|
+
support_link?: string | null
|
|
83
83
|
support_message?: string | null
|
|
84
84
|
pronouns?: string | null
|
|
85
85
|
}
|
|
@@ -99,7 +99,7 @@ export interface AuthorInsert {
|
|
|
99
99
|
name?: string | null
|
|
100
100
|
vanity?: string | null
|
|
101
101
|
description?: string | null
|
|
102
|
-
support_link?: null
|
|
102
|
+
support_link?: string | null
|
|
103
103
|
support_message?: string | null
|
|
104
104
|
pronouns?: string | null
|
|
105
105
|
}
|
package/openapi.json
CHANGED
|
@@ -308,7 +308,8 @@
|
|
|
308
308
|
"support_link": {
|
|
309
309
|
"anyOf": [
|
|
310
310
|
{
|
|
311
|
-
"
|
|
311
|
+
"type": "string",
|
|
312
|
+
"maxLength": 128
|
|
312
313
|
},
|
|
313
314
|
{
|
|
314
315
|
"type": "null"
|
|
@@ -431,7 +432,8 @@
|
|
|
431
432
|
"support_link": {
|
|
432
433
|
"anyOf": [
|
|
433
434
|
{
|
|
434
|
-
"
|
|
435
|
+
"type": "string",
|
|
436
|
+
"maxLength": 128
|
|
435
437
|
},
|
|
436
438
|
{
|
|
437
439
|
"type": "null"
|
package/package.json
CHANGED