api.fluff4.me 1.0.1054 → 1.0.1060
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 +3 -0
- package/openapi.json +39 -0
- package/package.json +1 -1
package/index.d.ts
CHANGED
|
@@ -45,6 +45,7 @@ export interface AuthorMetadata {
|
|
|
45
45
|
pronouns?: string | null
|
|
46
46
|
supporter?: AuthorSupporter | null
|
|
47
47
|
supporter_months_supported: number
|
|
48
|
+
comments_privated?: true | null
|
|
48
49
|
}
|
|
49
50
|
|
|
50
51
|
export interface AuthorSupporter {
|
|
@@ -64,6 +65,7 @@ export interface AuthorSelf {
|
|
|
64
65
|
pronouns?: string | null
|
|
65
66
|
supporter?: AuthorSupporter | null
|
|
66
67
|
supporter_months_supported: number
|
|
68
|
+
comments_privated?: true | null
|
|
67
69
|
description: TextBody
|
|
68
70
|
license?:
|
|
69
71
|
| {
|
|
@@ -236,6 +238,7 @@ export interface Author {
|
|
|
236
238
|
pronouns?: string | null
|
|
237
239
|
supporter?: AuthorSupporter | null
|
|
238
240
|
supporter_months_supported: number
|
|
241
|
+
comments_privated?: true | null
|
|
239
242
|
description: TextBody
|
|
240
243
|
license?:
|
|
241
244
|
| {
|
package/openapi.json
CHANGED
|
@@ -169,6 +169,19 @@
|
|
|
169
169
|
},
|
|
170
170
|
"supporter_months_supported": {
|
|
171
171
|
"type": "number"
|
|
172
|
+
},
|
|
173
|
+
"comments_privated": {
|
|
174
|
+
"anyOf": [
|
|
175
|
+
{
|
|
176
|
+
"type": "boolean",
|
|
177
|
+
"enum": [
|
|
178
|
+
true
|
|
179
|
+
]
|
|
180
|
+
},
|
|
181
|
+
{
|
|
182
|
+
"type": "null"
|
|
183
|
+
}
|
|
184
|
+
]
|
|
172
185
|
}
|
|
173
186
|
},
|
|
174
187
|
"required": [
|
|
@@ -271,6 +284,19 @@
|
|
|
271
284
|
"supporter_months_supported": {
|
|
272
285
|
"type": "number"
|
|
273
286
|
},
|
|
287
|
+
"comments_privated": {
|
|
288
|
+
"anyOf": [
|
|
289
|
+
{
|
|
290
|
+
"type": "boolean",
|
|
291
|
+
"enum": [
|
|
292
|
+
true
|
|
293
|
+
]
|
|
294
|
+
},
|
|
295
|
+
{
|
|
296
|
+
"type": "null"
|
|
297
|
+
}
|
|
298
|
+
]
|
|
299
|
+
},
|
|
274
300
|
"description": {
|
|
275
301
|
"$ref": "#/components/schema/TextBody"
|
|
276
302
|
},
|
|
@@ -1385,6 +1411,19 @@
|
|
|
1385
1411
|
"supporter_months_supported": {
|
|
1386
1412
|
"type": "number"
|
|
1387
1413
|
},
|
|
1414
|
+
"comments_privated": {
|
|
1415
|
+
"anyOf": [
|
|
1416
|
+
{
|
|
1417
|
+
"type": "boolean",
|
|
1418
|
+
"enum": [
|
|
1419
|
+
true
|
|
1420
|
+
]
|
|
1421
|
+
},
|
|
1422
|
+
{
|
|
1423
|
+
"type": "null"
|
|
1424
|
+
}
|
|
1425
|
+
]
|
|
1426
|
+
},
|
|
1388
1427
|
"description": {
|
|
1389
1428
|
"$ref": "#/components/schema/TextBody"
|
|
1390
1429
|
},
|
package/package.json
CHANGED