api.fluff4.me 1.0.1036 → 1.0.1038
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 -0
- package/openapi.json +20 -0
- package/package.json +1 -1
package/index.d.ts
CHANGED
|
@@ -222,6 +222,7 @@ export interface AuthorCreateBody {
|
|
|
222
222
|
card_colours?: number[] | null
|
|
223
223
|
age: "sixteen_plus" | "eighteen_plus"
|
|
224
224
|
license?: (WorkLicense | false) | null
|
|
225
|
+
comments_privated?: boolean | null
|
|
225
226
|
}
|
|
226
227
|
|
|
227
228
|
export interface Author {
|
|
@@ -259,6 +260,7 @@ export interface AuthorInsertBody {
|
|
|
259
260
|
card_colours?: number[] | null
|
|
260
261
|
age: "sixteen_plus" | "eighteen_plus"
|
|
261
262
|
license?: (WorkLicense | false) | null
|
|
263
|
+
comments_privated?: boolean | null
|
|
262
264
|
}
|
|
263
265
|
|
|
264
266
|
export interface AuthorUpdateSettingsBody {
|
package/openapi.json
CHANGED
|
@@ -1315,6 +1315,16 @@
|
|
|
1315
1315
|
"type": "null"
|
|
1316
1316
|
}
|
|
1317
1317
|
]
|
|
1318
|
+
},
|
|
1319
|
+
"comments_privated": {
|
|
1320
|
+
"anyOf": [
|
|
1321
|
+
{
|
|
1322
|
+
"type": "boolean"
|
|
1323
|
+
},
|
|
1324
|
+
{
|
|
1325
|
+
"type": "null"
|
|
1326
|
+
}
|
|
1327
|
+
]
|
|
1318
1328
|
}
|
|
1319
1329
|
},
|
|
1320
1330
|
"required": [
|
|
@@ -1575,6 +1585,16 @@
|
|
|
1575
1585
|
"type": "null"
|
|
1576
1586
|
}
|
|
1577
1587
|
]
|
|
1588
|
+
},
|
|
1589
|
+
"comments_privated": {
|
|
1590
|
+
"anyOf": [
|
|
1591
|
+
{
|
|
1592
|
+
"type": "boolean"
|
|
1593
|
+
},
|
|
1594
|
+
{
|
|
1595
|
+
"type": "null"
|
|
1596
|
+
}
|
|
1597
|
+
]
|
|
1578
1598
|
}
|
|
1579
1599
|
},
|
|
1580
1600
|
"required": [
|
package/package.json
CHANGED