api.fluff4.me 1.0.1141 → 1.0.1142
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 +5 -10
- package/openapi.json +16 -92
- package/package.json +1 -1
package/index.d.ts
CHANGED
|
@@ -379,10 +379,8 @@ export interface WorkResolveSearch {
|
|
|
379
379
|
}
|
|
380
380
|
|
|
381
381
|
export interface WorkReference {
|
|
382
|
-
|
|
383
|
-
|
|
384
|
-
author_vanity?: string | null
|
|
385
|
-
work_vanity?: string | null
|
|
382
|
+
author_vanity: string
|
|
383
|
+
work_vanity: string
|
|
386
384
|
}
|
|
387
385
|
|
|
388
386
|
export interface Chapter {
|
|
@@ -608,12 +606,9 @@ export interface CommentRootChapter {
|
|
|
608
606
|
}
|
|
609
607
|
|
|
610
608
|
export interface ChapterReference {
|
|
611
|
-
|
|
612
|
-
|
|
613
|
-
|
|
614
|
-
author_vanity?: string | null
|
|
615
|
-
work_vanity?: string | null
|
|
616
|
-
chapter_url?: string | null
|
|
609
|
+
author_vanity: string
|
|
610
|
+
work_vanity: string
|
|
611
|
+
chapter_url: string
|
|
617
612
|
}
|
|
618
613
|
|
|
619
614
|
export interface CommentRootWorkPrivate {
|
package/openapi.json
CHANGED
|
@@ -2433,47 +2433,17 @@
|
|
|
2433
2433
|
"WorkReference": {
|
|
2434
2434
|
"type": "object",
|
|
2435
2435
|
"properties": {
|
|
2436
|
-
"author": {
|
|
2437
|
-
"anyOf": [
|
|
2438
|
-
{
|
|
2439
|
-
"type": "string"
|
|
2440
|
-
},
|
|
2441
|
-
{
|
|
2442
|
-
"type": "null"
|
|
2443
|
-
}
|
|
2444
|
-
]
|
|
2445
|
-
},
|
|
2446
|
-
"vanity": {
|
|
2447
|
-
"anyOf": [
|
|
2448
|
-
{
|
|
2449
|
-
"type": "string"
|
|
2450
|
-
},
|
|
2451
|
-
{
|
|
2452
|
-
"type": "null"
|
|
2453
|
-
}
|
|
2454
|
-
]
|
|
2455
|
-
},
|
|
2456
2436
|
"author_vanity": {
|
|
2457
|
-
"
|
|
2458
|
-
{
|
|
2459
|
-
"type": "string"
|
|
2460
|
-
},
|
|
2461
|
-
{
|
|
2462
|
-
"type": "null"
|
|
2463
|
-
}
|
|
2464
|
-
]
|
|
2437
|
+
"type": "string"
|
|
2465
2438
|
},
|
|
2466
2439
|
"work_vanity": {
|
|
2467
|
-
"
|
|
2468
|
-
{
|
|
2469
|
-
"type": "string"
|
|
2470
|
-
},
|
|
2471
|
-
{
|
|
2472
|
-
"type": "null"
|
|
2473
|
-
}
|
|
2474
|
-
]
|
|
2440
|
+
"type": "string"
|
|
2475
2441
|
}
|
|
2476
|
-
}
|
|
2442
|
+
},
|
|
2443
|
+
"required": [
|
|
2444
|
+
"author_vanity",
|
|
2445
|
+
"work_vanity"
|
|
2446
|
+
]
|
|
2477
2447
|
},
|
|
2478
2448
|
"Chapter": {
|
|
2479
2449
|
"type": "object",
|
|
@@ -3890,67 +3860,21 @@
|
|
|
3890
3860
|
"ChapterReference": {
|
|
3891
3861
|
"type": "object",
|
|
3892
3862
|
"properties": {
|
|
3893
|
-
"author": {
|
|
3894
|
-
"anyOf": [
|
|
3895
|
-
{
|
|
3896
|
-
"type": "string"
|
|
3897
|
-
},
|
|
3898
|
-
{
|
|
3899
|
-
"type": "null"
|
|
3900
|
-
}
|
|
3901
|
-
]
|
|
3902
|
-
},
|
|
3903
|
-
"work": {
|
|
3904
|
-
"anyOf": [
|
|
3905
|
-
{
|
|
3906
|
-
"type": "string"
|
|
3907
|
-
},
|
|
3908
|
-
{
|
|
3909
|
-
"type": "null"
|
|
3910
|
-
}
|
|
3911
|
-
]
|
|
3912
|
-
},
|
|
3913
|
-
"url": {
|
|
3914
|
-
"anyOf": [
|
|
3915
|
-
{
|
|
3916
|
-
"type": "string"
|
|
3917
|
-
},
|
|
3918
|
-
{
|
|
3919
|
-
"type": "null"
|
|
3920
|
-
}
|
|
3921
|
-
]
|
|
3922
|
-
},
|
|
3923
3863
|
"author_vanity": {
|
|
3924
|
-
"
|
|
3925
|
-
{
|
|
3926
|
-
"type": "string"
|
|
3927
|
-
},
|
|
3928
|
-
{
|
|
3929
|
-
"type": "null"
|
|
3930
|
-
}
|
|
3931
|
-
]
|
|
3864
|
+
"type": "string"
|
|
3932
3865
|
},
|
|
3933
3866
|
"work_vanity": {
|
|
3934
|
-
"
|
|
3935
|
-
{
|
|
3936
|
-
"type": "string"
|
|
3937
|
-
},
|
|
3938
|
-
{
|
|
3939
|
-
"type": "null"
|
|
3940
|
-
}
|
|
3941
|
-
]
|
|
3867
|
+
"type": "string"
|
|
3942
3868
|
},
|
|
3943
3869
|
"chapter_url": {
|
|
3944
|
-
"
|
|
3945
|
-
{
|
|
3946
|
-
"type": "string"
|
|
3947
|
-
},
|
|
3948
|
-
{
|
|
3949
|
-
"type": "null"
|
|
3950
|
-
}
|
|
3951
|
-
]
|
|
3870
|
+
"type": "string"
|
|
3952
3871
|
}
|
|
3953
|
-
}
|
|
3872
|
+
},
|
|
3873
|
+
"required": [
|
|
3874
|
+
"author_vanity",
|
|
3875
|
+
"work_vanity",
|
|
3876
|
+
"chapter_url"
|
|
3877
|
+
]
|
|
3954
3878
|
},
|
|
3955
3879
|
"CommentRootWorkPrivate": {
|
|
3956
3880
|
"type": "object",
|
package/package.json
CHANGED