api.fluff4.me 1.0.728 → 1.0.733
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 +3 -1
- package/openapi.json +34 -2
- package/package.json +1 -1
package/index.d.ts
CHANGED
|
@@ -295,7 +295,7 @@ export interface WorkUpdateBody {
|
|
|
295
295
|
feedback_preference_dont_hold_back?: boolean | null
|
|
296
296
|
feedback_preference_typos?: boolean | null
|
|
297
297
|
card_colours?: number[] | null
|
|
298
|
-
license
|
|
298
|
+
license: WorkLicense | false
|
|
299
299
|
tier_ids?: string[] | null
|
|
300
300
|
}
|
|
301
301
|
|
|
@@ -845,6 +845,7 @@ export interface WorkCensorBody {
|
|
|
845
845
|
vanity?: true | null
|
|
846
846
|
description?: true | null
|
|
847
847
|
synopsis?: true | null
|
|
848
|
+
license?: true | null
|
|
848
849
|
}
|
|
849
850
|
|
|
850
851
|
export interface ChapterCensorBody {
|
|
@@ -865,6 +866,7 @@ export interface AuthorCensorBody {
|
|
|
865
866
|
description?: true | null
|
|
866
867
|
support_link?: true | null
|
|
867
868
|
support_message?: true | null
|
|
869
|
+
license?: true | null
|
|
868
870
|
}
|
|
869
871
|
|
|
870
872
|
export interface ModerationSupporterGrantBody {
|
package/openapi.json
CHANGED
|
@@ -1759,7 +1759,10 @@
|
|
|
1759
1759
|
"$ref": "#/components/schema/WorkLicense"
|
|
1760
1760
|
},
|
|
1761
1761
|
{
|
|
1762
|
-
"type": "
|
|
1762
|
+
"type": "boolean",
|
|
1763
|
+
"enum": [
|
|
1764
|
+
false
|
|
1765
|
+
]
|
|
1763
1766
|
}
|
|
1764
1767
|
]
|
|
1765
1768
|
},
|
|
@@ -1776,7 +1779,10 @@
|
|
|
1776
1779
|
}
|
|
1777
1780
|
]
|
|
1778
1781
|
}
|
|
1779
|
-
}
|
|
1782
|
+
},
|
|
1783
|
+
"required": [
|
|
1784
|
+
"license"
|
|
1785
|
+
]
|
|
1780
1786
|
},
|
|
1781
1787
|
"Feedback": {
|
|
1782
1788
|
"type": "object",
|
|
@@ -4696,6 +4702,19 @@
|
|
|
4696
4702
|
"type": "null"
|
|
4697
4703
|
}
|
|
4698
4704
|
]
|
|
4705
|
+
},
|
|
4706
|
+
"license": {
|
|
4707
|
+
"anyOf": [
|
|
4708
|
+
{
|
|
4709
|
+
"type": "boolean",
|
|
4710
|
+
"enum": [
|
|
4711
|
+
true
|
|
4712
|
+
]
|
|
4713
|
+
},
|
|
4714
|
+
{
|
|
4715
|
+
"type": "null"
|
|
4716
|
+
}
|
|
4717
|
+
]
|
|
4699
4718
|
}
|
|
4700
4719
|
}
|
|
4701
4720
|
},
|
|
@@ -4848,6 +4867,19 @@
|
|
|
4848
4867
|
"type": "null"
|
|
4849
4868
|
}
|
|
4850
4869
|
]
|
|
4870
|
+
},
|
|
4871
|
+
"license": {
|
|
4872
|
+
"anyOf": [
|
|
4873
|
+
{
|
|
4874
|
+
"type": "boolean",
|
|
4875
|
+
"enum": [
|
|
4876
|
+
true
|
|
4877
|
+
]
|
|
4878
|
+
},
|
|
4879
|
+
{
|
|
4880
|
+
"type": "null"
|
|
4881
|
+
}
|
|
4882
|
+
]
|
|
4851
4883
|
}
|
|
4852
4884
|
}
|
|
4853
4885
|
},
|
package/package.json
CHANGED