api.fluff4.me 1.0.1127 → 1.0.1129
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 +11 -6
- package/openapi.json +94 -18
- package/package.json +1 -1
package/index.d.ts
CHANGED
|
@@ -496,8 +496,10 @@ export interface Follow {
|
|
|
496
496
|
}
|
|
497
497
|
|
|
498
498
|
export interface WorkReference {
|
|
499
|
-
author
|
|
500
|
-
vanity
|
|
499
|
+
author?: string | null
|
|
500
|
+
vanity?: string | null
|
|
501
|
+
author_vanity?: string | null
|
|
502
|
+
work_vanity?: string | null
|
|
501
503
|
}
|
|
502
504
|
|
|
503
505
|
export interface FollowsManifest {
|
|
@@ -579,9 +581,12 @@ export interface CommentRootChapter {
|
|
|
579
581
|
}
|
|
580
582
|
|
|
581
583
|
export interface ChapterReference {
|
|
582
|
-
author
|
|
583
|
-
work
|
|
584
|
-
url
|
|
584
|
+
author?: string | null
|
|
585
|
+
work?: string | null
|
|
586
|
+
url?: string | null
|
|
587
|
+
author_vanity?: string | null
|
|
588
|
+
work_vanity?: string | null
|
|
589
|
+
chapter_url?: string | null
|
|
585
590
|
}
|
|
586
591
|
|
|
587
592
|
export interface CommentRootWorkPrivate {
|
|
@@ -1804,7 +1809,7 @@ export interface Paths {
|
|
|
1804
1809
|
search?: undefined
|
|
1805
1810
|
response: Response<CustomTagUsage[]> | ErrorResponse
|
|
1806
1811
|
},
|
|
1807
|
-
"/v2/tags/custom/{
|
|
1812
|
+
"/v2/tags/custom/{custom_tag_name}/rename": {
|
|
1808
1813
|
method: "post"
|
|
1809
1814
|
body: CustomTagRenameBody
|
|
1810
1815
|
search?: undefined
|
package/openapi.json
CHANGED
|
@@ -3368,16 +3368,46 @@
|
|
|
3368
3368
|
"type": "object",
|
|
3369
3369
|
"properties": {
|
|
3370
3370
|
"author": {
|
|
3371
|
-
"
|
|
3371
|
+
"anyOf": [
|
|
3372
|
+
{
|
|
3373
|
+
"type": "string"
|
|
3374
|
+
},
|
|
3375
|
+
{
|
|
3376
|
+
"type": "null"
|
|
3377
|
+
}
|
|
3378
|
+
]
|
|
3372
3379
|
},
|
|
3373
3380
|
"vanity": {
|
|
3374
|
-
"
|
|
3381
|
+
"anyOf": [
|
|
3382
|
+
{
|
|
3383
|
+
"type": "string"
|
|
3384
|
+
},
|
|
3385
|
+
{
|
|
3386
|
+
"type": "null"
|
|
3387
|
+
}
|
|
3388
|
+
]
|
|
3389
|
+
},
|
|
3390
|
+
"author_vanity": {
|
|
3391
|
+
"anyOf": [
|
|
3392
|
+
{
|
|
3393
|
+
"type": "string"
|
|
3394
|
+
},
|
|
3395
|
+
{
|
|
3396
|
+
"type": "null"
|
|
3397
|
+
}
|
|
3398
|
+
]
|
|
3399
|
+
},
|
|
3400
|
+
"work_vanity": {
|
|
3401
|
+
"anyOf": [
|
|
3402
|
+
{
|
|
3403
|
+
"type": "string"
|
|
3404
|
+
},
|
|
3405
|
+
{
|
|
3406
|
+
"type": "null"
|
|
3407
|
+
}
|
|
3408
|
+
]
|
|
3375
3409
|
}
|
|
3376
|
-
}
|
|
3377
|
-
"required": [
|
|
3378
|
-
"author",
|
|
3379
|
-
"vanity"
|
|
3380
|
-
]
|
|
3410
|
+
}
|
|
3381
3411
|
},
|
|
3382
3412
|
"FollowsManifest": {
|
|
3383
3413
|
"type": "object",
|
|
@@ -3755,20 +3785,66 @@
|
|
|
3755
3785
|
"type": "object",
|
|
3756
3786
|
"properties": {
|
|
3757
3787
|
"author": {
|
|
3758
|
-
"
|
|
3788
|
+
"anyOf": [
|
|
3789
|
+
{
|
|
3790
|
+
"type": "string"
|
|
3791
|
+
},
|
|
3792
|
+
{
|
|
3793
|
+
"type": "null"
|
|
3794
|
+
}
|
|
3795
|
+
]
|
|
3759
3796
|
},
|
|
3760
3797
|
"work": {
|
|
3761
|
-
"
|
|
3798
|
+
"anyOf": [
|
|
3799
|
+
{
|
|
3800
|
+
"type": "string"
|
|
3801
|
+
},
|
|
3802
|
+
{
|
|
3803
|
+
"type": "null"
|
|
3804
|
+
}
|
|
3805
|
+
]
|
|
3762
3806
|
},
|
|
3763
3807
|
"url": {
|
|
3764
|
-
"
|
|
3808
|
+
"anyOf": [
|
|
3809
|
+
{
|
|
3810
|
+
"type": "string"
|
|
3811
|
+
},
|
|
3812
|
+
{
|
|
3813
|
+
"type": "null"
|
|
3814
|
+
}
|
|
3815
|
+
]
|
|
3816
|
+
},
|
|
3817
|
+
"author_vanity": {
|
|
3818
|
+
"anyOf": [
|
|
3819
|
+
{
|
|
3820
|
+
"type": "string"
|
|
3821
|
+
},
|
|
3822
|
+
{
|
|
3823
|
+
"type": "null"
|
|
3824
|
+
}
|
|
3825
|
+
]
|
|
3826
|
+
},
|
|
3827
|
+
"work_vanity": {
|
|
3828
|
+
"anyOf": [
|
|
3829
|
+
{
|
|
3830
|
+
"type": "string"
|
|
3831
|
+
},
|
|
3832
|
+
{
|
|
3833
|
+
"type": "null"
|
|
3834
|
+
}
|
|
3835
|
+
]
|
|
3836
|
+
},
|
|
3837
|
+
"chapter_url": {
|
|
3838
|
+
"anyOf": [
|
|
3839
|
+
{
|
|
3840
|
+
"type": "string"
|
|
3841
|
+
},
|
|
3842
|
+
{
|
|
3843
|
+
"type": "null"
|
|
3844
|
+
}
|
|
3845
|
+
]
|
|
3765
3846
|
}
|
|
3766
|
-
}
|
|
3767
|
-
"required": [
|
|
3768
|
-
"author",
|
|
3769
|
-
"work",
|
|
3770
|
-
"url"
|
|
3771
|
-
]
|
|
3847
|
+
}
|
|
3772
3848
|
},
|
|
3773
3849
|
"CommentRootWorkPrivate": {
|
|
3774
3850
|
"type": "object",
|
|
@@ -11734,10 +11810,10 @@
|
|
|
11734
11810
|
}
|
|
11735
11811
|
}
|
|
11736
11812
|
},
|
|
11737
|
-
"/v2/tags/custom/{
|
|
11813
|
+
"/v2/tags/custom/{custom_tag_name}/rename": {
|
|
11738
11814
|
"parameters": [
|
|
11739
11815
|
{
|
|
11740
|
-
"name": "
|
|
11816
|
+
"name": "custom_tag_name",
|
|
11741
11817
|
"in": "path"
|
|
11742
11818
|
}
|
|
11743
11819
|
],
|
package/package.json
CHANGED