api.fluff4.me 1.0.705 → 1.0.706
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 +14 -14
- package/openapi.json +56 -14
- package/package.json +1 -1
package/index.d.ts
CHANGED
|
@@ -831,17 +831,17 @@ export interface Fundraiser {
|
|
|
831
831
|
}
|
|
832
832
|
|
|
833
833
|
export interface WorkCensorBody {
|
|
834
|
-
name?:
|
|
835
|
-
vanity?:
|
|
836
|
-
description?:
|
|
837
|
-
synopsis?:
|
|
834
|
+
name?: true | null
|
|
835
|
+
vanity?: true | null
|
|
836
|
+
description?: true | null
|
|
837
|
+
synopsis?: true | null
|
|
838
838
|
}
|
|
839
839
|
|
|
840
840
|
export interface ChapterCensorBody {
|
|
841
|
-
name?:
|
|
842
|
-
body?:
|
|
843
|
-
notes_before?:
|
|
844
|
-
notes_after?:
|
|
841
|
+
name?: true | null
|
|
842
|
+
body?: true | null
|
|
843
|
+
notes_before?: true | null
|
|
844
|
+
notes_after?: true | null
|
|
845
845
|
}
|
|
846
846
|
|
|
847
847
|
export interface WorkLockBody {
|
|
@@ -849,12 +849,12 @@ export interface WorkLockBody {
|
|
|
849
849
|
}
|
|
850
850
|
|
|
851
851
|
export interface AuthorCensorBody {
|
|
852
|
-
name?:
|
|
853
|
-
vanity?:
|
|
854
|
-
pronouns?:
|
|
855
|
-
description?:
|
|
856
|
-
support_link?:
|
|
857
|
-
support_message?:
|
|
852
|
+
name?: true | null
|
|
853
|
+
vanity?: true | null
|
|
854
|
+
pronouns?: true | null
|
|
855
|
+
description?: true | null
|
|
856
|
+
support_link?: true | null
|
|
857
|
+
support_message?: true | null
|
|
858
858
|
}
|
|
859
859
|
|
|
860
860
|
export interface ModerationSupporterGrantBody {
|
package/openapi.json
CHANGED
|
@@ -4598,7 +4598,10 @@
|
|
|
4598
4598
|
"name": {
|
|
4599
4599
|
"anyOf": [
|
|
4600
4600
|
{
|
|
4601
|
-
"type": "boolean"
|
|
4601
|
+
"type": "boolean",
|
|
4602
|
+
"enum": [
|
|
4603
|
+
true
|
|
4604
|
+
]
|
|
4602
4605
|
},
|
|
4603
4606
|
{
|
|
4604
4607
|
"type": "null"
|
|
@@ -4608,7 +4611,10 @@
|
|
|
4608
4611
|
"vanity": {
|
|
4609
4612
|
"anyOf": [
|
|
4610
4613
|
{
|
|
4611
|
-
"type": "boolean"
|
|
4614
|
+
"type": "boolean",
|
|
4615
|
+
"enum": [
|
|
4616
|
+
true
|
|
4617
|
+
]
|
|
4612
4618
|
},
|
|
4613
4619
|
{
|
|
4614
4620
|
"type": "null"
|
|
@@ -4618,7 +4624,10 @@
|
|
|
4618
4624
|
"description": {
|
|
4619
4625
|
"anyOf": [
|
|
4620
4626
|
{
|
|
4621
|
-
"type": "boolean"
|
|
4627
|
+
"type": "boolean",
|
|
4628
|
+
"enum": [
|
|
4629
|
+
true
|
|
4630
|
+
]
|
|
4622
4631
|
},
|
|
4623
4632
|
{
|
|
4624
4633
|
"type": "null"
|
|
@@ -4628,7 +4637,10 @@
|
|
|
4628
4637
|
"synopsis": {
|
|
4629
4638
|
"anyOf": [
|
|
4630
4639
|
{
|
|
4631
|
-
"type": "boolean"
|
|
4640
|
+
"type": "boolean",
|
|
4641
|
+
"enum": [
|
|
4642
|
+
true
|
|
4643
|
+
]
|
|
4632
4644
|
},
|
|
4633
4645
|
{
|
|
4634
4646
|
"type": "null"
|
|
@@ -4643,7 +4655,10 @@
|
|
|
4643
4655
|
"name": {
|
|
4644
4656
|
"anyOf": [
|
|
4645
4657
|
{
|
|
4646
|
-
"type": "boolean"
|
|
4658
|
+
"type": "boolean",
|
|
4659
|
+
"enum": [
|
|
4660
|
+
true
|
|
4661
|
+
]
|
|
4647
4662
|
},
|
|
4648
4663
|
{
|
|
4649
4664
|
"type": "null"
|
|
@@ -4653,7 +4668,10 @@
|
|
|
4653
4668
|
"body": {
|
|
4654
4669
|
"anyOf": [
|
|
4655
4670
|
{
|
|
4656
|
-
"type": "boolean"
|
|
4671
|
+
"type": "boolean",
|
|
4672
|
+
"enum": [
|
|
4673
|
+
true
|
|
4674
|
+
]
|
|
4657
4675
|
},
|
|
4658
4676
|
{
|
|
4659
4677
|
"type": "null"
|
|
@@ -4663,7 +4681,10 @@
|
|
|
4663
4681
|
"notes_before": {
|
|
4664
4682
|
"anyOf": [
|
|
4665
4683
|
{
|
|
4666
|
-
"type": "boolean"
|
|
4684
|
+
"type": "boolean",
|
|
4685
|
+
"enum": [
|
|
4686
|
+
true
|
|
4687
|
+
]
|
|
4667
4688
|
},
|
|
4668
4689
|
{
|
|
4669
4690
|
"type": "null"
|
|
@@ -4673,7 +4694,10 @@
|
|
|
4673
4694
|
"notes_after": {
|
|
4674
4695
|
"anyOf": [
|
|
4675
4696
|
{
|
|
4676
|
-
"type": "boolean"
|
|
4697
|
+
"type": "boolean",
|
|
4698
|
+
"enum": [
|
|
4699
|
+
true
|
|
4700
|
+
]
|
|
4677
4701
|
},
|
|
4678
4702
|
{
|
|
4679
4703
|
"type": "null"
|
|
@@ -4700,7 +4724,10 @@
|
|
|
4700
4724
|
"name": {
|
|
4701
4725
|
"anyOf": [
|
|
4702
4726
|
{
|
|
4703
|
-
"type": "boolean"
|
|
4727
|
+
"type": "boolean",
|
|
4728
|
+
"enum": [
|
|
4729
|
+
true
|
|
4730
|
+
]
|
|
4704
4731
|
},
|
|
4705
4732
|
{
|
|
4706
4733
|
"type": "null"
|
|
@@ -4710,7 +4737,10 @@
|
|
|
4710
4737
|
"vanity": {
|
|
4711
4738
|
"anyOf": [
|
|
4712
4739
|
{
|
|
4713
|
-
"type": "boolean"
|
|
4740
|
+
"type": "boolean",
|
|
4741
|
+
"enum": [
|
|
4742
|
+
true
|
|
4743
|
+
]
|
|
4714
4744
|
},
|
|
4715
4745
|
{
|
|
4716
4746
|
"type": "null"
|
|
@@ -4720,7 +4750,10 @@
|
|
|
4720
4750
|
"pronouns": {
|
|
4721
4751
|
"anyOf": [
|
|
4722
4752
|
{
|
|
4723
|
-
"type": "boolean"
|
|
4753
|
+
"type": "boolean",
|
|
4754
|
+
"enum": [
|
|
4755
|
+
true
|
|
4756
|
+
]
|
|
4724
4757
|
},
|
|
4725
4758
|
{
|
|
4726
4759
|
"type": "null"
|
|
@@ -4730,7 +4763,10 @@
|
|
|
4730
4763
|
"description": {
|
|
4731
4764
|
"anyOf": [
|
|
4732
4765
|
{
|
|
4733
|
-
"type": "boolean"
|
|
4766
|
+
"type": "boolean",
|
|
4767
|
+
"enum": [
|
|
4768
|
+
true
|
|
4769
|
+
]
|
|
4734
4770
|
},
|
|
4735
4771
|
{
|
|
4736
4772
|
"type": "null"
|
|
@@ -4740,7 +4776,10 @@
|
|
|
4740
4776
|
"support_link": {
|
|
4741
4777
|
"anyOf": [
|
|
4742
4778
|
{
|
|
4743
|
-
"type": "boolean"
|
|
4779
|
+
"type": "boolean",
|
|
4780
|
+
"enum": [
|
|
4781
|
+
true
|
|
4782
|
+
]
|
|
4744
4783
|
},
|
|
4745
4784
|
{
|
|
4746
4785
|
"type": "null"
|
|
@@ -4750,7 +4789,10 @@
|
|
|
4750
4789
|
"support_message": {
|
|
4751
4790
|
"anyOf": [
|
|
4752
4791
|
{
|
|
4753
|
-
"type": "boolean"
|
|
4792
|
+
"type": "boolean",
|
|
4793
|
+
"enum": [
|
|
4794
|
+
true
|
|
4795
|
+
]
|
|
4754
4796
|
},
|
|
4755
4797
|
{
|
|
4756
4798
|
"type": "null"
|
package/package.json
CHANGED