api.fluff4.me 1.0.313 → 1.0.316
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 +9 -3
- package/openapi.json +68 -4
- package/package.json +1 -1
package/index.d.ts
CHANGED
|
@@ -114,7 +114,8 @@ export interface WorkFull {
|
|
|
114
114
|
name: string
|
|
115
115
|
description: string
|
|
116
116
|
vanity: string
|
|
117
|
-
status:
|
|
117
|
+
status: "Cancelled" | "Hiatus" | "Ongoing" | "Complete"
|
|
118
|
+
visibility: "Private" | "Public"
|
|
118
119
|
chapter_count_public: number
|
|
119
120
|
chapter_count?: number | null
|
|
120
121
|
word_count: number
|
|
@@ -171,6 +172,7 @@ export interface Chapter {
|
|
|
171
172
|
url: string
|
|
172
173
|
index_public?: number | null
|
|
173
174
|
name: string
|
|
175
|
+
visibility: "Private" | "Public" | "Patreon"
|
|
174
176
|
word_count: number
|
|
175
177
|
view_count: string
|
|
176
178
|
time_last_update?: string | null
|
|
@@ -219,6 +221,7 @@ export interface ChapterLite {
|
|
|
219
221
|
url: string
|
|
220
222
|
index_public?: number | null
|
|
221
223
|
name: string
|
|
224
|
+
visibility: "Private" | "Public" | "Patreon"
|
|
222
225
|
word_count: number
|
|
223
226
|
view_count: string
|
|
224
227
|
time_last_update?: string | null
|
|
@@ -230,7 +233,8 @@ export interface Work {
|
|
|
230
233
|
name: string
|
|
231
234
|
description: string
|
|
232
235
|
vanity: string
|
|
233
|
-
status:
|
|
236
|
+
status: "Cancelled" | "Hiatus" | "Ongoing" | "Complete"
|
|
237
|
+
visibility: "Private" | "Public"
|
|
234
238
|
chapter_count_public: number
|
|
235
239
|
chapter_count?: number | null
|
|
236
240
|
word_count: number
|
|
@@ -426,6 +430,7 @@ export interface ManifestNotificationTypes {
|
|
|
426
430
|
"comment-chapter": NotificationType
|
|
427
431
|
"comment-reply": NotificationType
|
|
428
432
|
roles: NotificationType
|
|
433
|
+
"comment-mention": NotificationType
|
|
429
434
|
}
|
|
430
435
|
|
|
431
436
|
export interface NotificationType {
|
|
@@ -466,7 +471,8 @@ export interface WorkWithAuthor {
|
|
|
466
471
|
name: string
|
|
467
472
|
description: string
|
|
468
473
|
vanity: string
|
|
469
|
-
status:
|
|
474
|
+
status: "Cancelled" | "Hiatus" | "Ongoing" | "Complete"
|
|
475
|
+
visibility: "Private" | "Public"
|
|
470
476
|
chapter_count_public: number
|
|
471
477
|
chapter_count?: number | null
|
|
472
478
|
word_count: number
|
package/openapi.json
CHANGED
|
@@ -540,7 +540,20 @@
|
|
|
540
540
|
"maxLength": 32
|
|
541
541
|
},
|
|
542
542
|
"status": {
|
|
543
|
-
"type": "string"
|
|
543
|
+
"type": "string",
|
|
544
|
+
"enum": [
|
|
545
|
+
"Cancelled",
|
|
546
|
+
"Hiatus",
|
|
547
|
+
"Ongoing",
|
|
548
|
+
"Complete"
|
|
549
|
+
]
|
|
550
|
+
},
|
|
551
|
+
"visibility": {
|
|
552
|
+
"type": "string",
|
|
553
|
+
"enum": [
|
|
554
|
+
"Private",
|
|
555
|
+
"Public"
|
|
556
|
+
]
|
|
544
557
|
},
|
|
545
558
|
"chapter_count_public": {
|
|
546
559
|
"type": "number"
|
|
@@ -616,6 +629,7 @@
|
|
|
616
629
|
"description",
|
|
617
630
|
"vanity",
|
|
618
631
|
"status",
|
|
632
|
+
"visibility",
|
|
619
633
|
"chapter_count_public",
|
|
620
634
|
"word_count",
|
|
621
635
|
"view_count",
|
|
@@ -943,6 +957,14 @@
|
|
|
943
957
|
"type": "string",
|
|
944
958
|
"maxLength": 256
|
|
945
959
|
},
|
|
960
|
+
"visibility": {
|
|
961
|
+
"type": "string",
|
|
962
|
+
"enum": [
|
|
963
|
+
"Private",
|
|
964
|
+
"Public",
|
|
965
|
+
"Patreon"
|
|
966
|
+
]
|
|
967
|
+
},
|
|
946
968
|
"word_count": {
|
|
947
969
|
"type": "number"
|
|
948
970
|
},
|
|
@@ -1068,6 +1090,7 @@
|
|
|
1068
1090
|
"required": [
|
|
1069
1091
|
"url",
|
|
1070
1092
|
"name",
|
|
1093
|
+
"visibility",
|
|
1071
1094
|
"word_count",
|
|
1072
1095
|
"view_count",
|
|
1073
1096
|
"index"
|
|
@@ -1298,6 +1321,14 @@
|
|
|
1298
1321
|
"type": "string",
|
|
1299
1322
|
"maxLength": 256
|
|
1300
1323
|
},
|
|
1324
|
+
"visibility": {
|
|
1325
|
+
"type": "string",
|
|
1326
|
+
"enum": [
|
|
1327
|
+
"Private",
|
|
1328
|
+
"Public",
|
|
1329
|
+
"Patreon"
|
|
1330
|
+
]
|
|
1331
|
+
},
|
|
1301
1332
|
"word_count": {
|
|
1302
1333
|
"type": "number"
|
|
1303
1334
|
},
|
|
@@ -1318,6 +1349,7 @@
|
|
|
1318
1349
|
"required": [
|
|
1319
1350
|
"url",
|
|
1320
1351
|
"name",
|
|
1352
|
+
"visibility",
|
|
1321
1353
|
"word_count",
|
|
1322
1354
|
"view_count"
|
|
1323
1355
|
]
|
|
@@ -1344,7 +1376,20 @@
|
|
|
1344
1376
|
"maxLength": 32
|
|
1345
1377
|
},
|
|
1346
1378
|
"status": {
|
|
1347
|
-
"type": "string"
|
|
1379
|
+
"type": "string",
|
|
1380
|
+
"enum": [
|
|
1381
|
+
"Cancelled",
|
|
1382
|
+
"Hiatus",
|
|
1383
|
+
"Ongoing",
|
|
1384
|
+
"Complete"
|
|
1385
|
+
]
|
|
1386
|
+
},
|
|
1387
|
+
"visibility": {
|
|
1388
|
+
"type": "string",
|
|
1389
|
+
"enum": [
|
|
1390
|
+
"Private",
|
|
1391
|
+
"Public"
|
|
1392
|
+
]
|
|
1348
1393
|
},
|
|
1349
1394
|
"chapter_count_public": {
|
|
1350
1395
|
"type": "number"
|
|
@@ -1404,6 +1449,7 @@
|
|
|
1404
1449
|
"description",
|
|
1405
1450
|
"vanity",
|
|
1406
1451
|
"status",
|
|
1452
|
+
"visibility",
|
|
1407
1453
|
"chapter_count_public",
|
|
1408
1454
|
"word_count",
|
|
1409
1455
|
"view_count"
|
|
@@ -2243,13 +2289,17 @@
|
|
|
2243
2289
|
},
|
|
2244
2290
|
"roles": {
|
|
2245
2291
|
"$ref": "#/components/schema/NotificationType"
|
|
2292
|
+
},
|
|
2293
|
+
"comment-mention": {
|
|
2294
|
+
"$ref": "#/components/schema/NotificationType"
|
|
2246
2295
|
}
|
|
2247
2296
|
},
|
|
2248
2297
|
"required": [
|
|
2249
2298
|
"report",
|
|
2250
2299
|
"comment-chapter",
|
|
2251
2300
|
"comment-reply",
|
|
2252
|
-
"roles"
|
|
2301
|
+
"roles",
|
|
2302
|
+
"comment-mention"
|
|
2253
2303
|
]
|
|
2254
2304
|
},
|
|
2255
2305
|
"NotificationType": {
|
|
@@ -2422,7 +2472,20 @@
|
|
|
2422
2472
|
"maxLength": 32
|
|
2423
2473
|
},
|
|
2424
2474
|
"status": {
|
|
2425
|
-
"type": "string"
|
|
2475
|
+
"type": "string",
|
|
2476
|
+
"enum": [
|
|
2477
|
+
"Cancelled",
|
|
2478
|
+
"Hiatus",
|
|
2479
|
+
"Ongoing",
|
|
2480
|
+
"Complete"
|
|
2481
|
+
]
|
|
2482
|
+
},
|
|
2483
|
+
"visibility": {
|
|
2484
|
+
"type": "string",
|
|
2485
|
+
"enum": [
|
|
2486
|
+
"Private",
|
|
2487
|
+
"Public"
|
|
2488
|
+
]
|
|
2426
2489
|
},
|
|
2427
2490
|
"chapter_count_public": {
|
|
2428
2491
|
"type": "number"
|
|
@@ -2492,6 +2555,7 @@
|
|
|
2492
2555
|
"description",
|
|
2493
2556
|
"vanity",
|
|
2494
2557
|
"status",
|
|
2558
|
+
"visibility",
|
|
2495
2559
|
"chapter_count_public",
|
|
2496
2560
|
"word_count",
|
|
2497
2561
|
"view_count"
|
package/package.json
CHANGED