api.fluff4.me 1.0.313 → 1.0.315
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 +4 -0
- package/openapi.json +17 -1
- package/package.json +1 -1
package/index.d.ts
CHANGED
|
@@ -115,6 +115,7 @@ export interface WorkFull {
|
|
|
115
115
|
description: string
|
|
116
116
|
vanity: string
|
|
117
117
|
status: string
|
|
118
|
+
visibility: string
|
|
118
119
|
chapter_count_public: number
|
|
119
120
|
chapter_count?: number | null
|
|
120
121
|
word_count: number
|
|
@@ -231,6 +232,7 @@ export interface Work {
|
|
|
231
232
|
description: string
|
|
232
233
|
vanity: string
|
|
233
234
|
status: string
|
|
235
|
+
visibility: string
|
|
234
236
|
chapter_count_public: number
|
|
235
237
|
chapter_count?: number | null
|
|
236
238
|
word_count: number
|
|
@@ -426,6 +428,7 @@ export interface ManifestNotificationTypes {
|
|
|
426
428
|
"comment-chapter": NotificationType
|
|
427
429
|
"comment-reply": NotificationType
|
|
428
430
|
roles: NotificationType
|
|
431
|
+
"comment-mention": NotificationType
|
|
429
432
|
}
|
|
430
433
|
|
|
431
434
|
export interface NotificationType {
|
|
@@ -467,6 +470,7 @@ export interface WorkWithAuthor {
|
|
|
467
470
|
description: string
|
|
468
471
|
vanity: string
|
|
469
472
|
status: string
|
|
473
|
+
visibility: string
|
|
470
474
|
chapter_count_public: number
|
|
471
475
|
chapter_count?: number | null
|
|
472
476
|
word_count: number
|
package/openapi.json
CHANGED
|
@@ -542,6 +542,9 @@
|
|
|
542
542
|
"status": {
|
|
543
543
|
"type": "string"
|
|
544
544
|
},
|
|
545
|
+
"visibility": {
|
|
546
|
+
"type": "string"
|
|
547
|
+
},
|
|
545
548
|
"chapter_count_public": {
|
|
546
549
|
"type": "number"
|
|
547
550
|
},
|
|
@@ -616,6 +619,7 @@
|
|
|
616
619
|
"description",
|
|
617
620
|
"vanity",
|
|
618
621
|
"status",
|
|
622
|
+
"visibility",
|
|
619
623
|
"chapter_count_public",
|
|
620
624
|
"word_count",
|
|
621
625
|
"view_count",
|
|
@@ -1346,6 +1350,9 @@
|
|
|
1346
1350
|
"status": {
|
|
1347
1351
|
"type": "string"
|
|
1348
1352
|
},
|
|
1353
|
+
"visibility": {
|
|
1354
|
+
"type": "string"
|
|
1355
|
+
},
|
|
1349
1356
|
"chapter_count_public": {
|
|
1350
1357
|
"type": "number"
|
|
1351
1358
|
},
|
|
@@ -1404,6 +1411,7 @@
|
|
|
1404
1411
|
"description",
|
|
1405
1412
|
"vanity",
|
|
1406
1413
|
"status",
|
|
1414
|
+
"visibility",
|
|
1407
1415
|
"chapter_count_public",
|
|
1408
1416
|
"word_count",
|
|
1409
1417
|
"view_count"
|
|
@@ -2243,13 +2251,17 @@
|
|
|
2243
2251
|
},
|
|
2244
2252
|
"roles": {
|
|
2245
2253
|
"$ref": "#/components/schema/NotificationType"
|
|
2254
|
+
},
|
|
2255
|
+
"comment-mention": {
|
|
2256
|
+
"$ref": "#/components/schema/NotificationType"
|
|
2246
2257
|
}
|
|
2247
2258
|
},
|
|
2248
2259
|
"required": [
|
|
2249
2260
|
"report",
|
|
2250
2261
|
"comment-chapter",
|
|
2251
2262
|
"comment-reply",
|
|
2252
|
-
"roles"
|
|
2263
|
+
"roles",
|
|
2264
|
+
"comment-mention"
|
|
2253
2265
|
]
|
|
2254
2266
|
},
|
|
2255
2267
|
"NotificationType": {
|
|
@@ -2424,6 +2436,9 @@
|
|
|
2424
2436
|
"status": {
|
|
2425
2437
|
"type": "string"
|
|
2426
2438
|
},
|
|
2439
|
+
"visibility": {
|
|
2440
|
+
"type": "string"
|
|
2441
|
+
},
|
|
2427
2442
|
"chapter_count_public": {
|
|
2428
2443
|
"type": "number"
|
|
2429
2444
|
},
|
|
@@ -2492,6 +2507,7 @@
|
|
|
2492
2507
|
"description",
|
|
2493
2508
|
"vanity",
|
|
2494
2509
|
"status",
|
|
2510
|
+
"visibility",
|
|
2495
2511
|
"chapter_count_public",
|
|
2496
2512
|
"word_count",
|
|
2497
2513
|
"view_count"
|
package/package.json
CHANGED