api.fluff4.me 1.0.182 → 1.0.183
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 -2
- package/openapi.json +15 -2
- package/package.json +1 -1
package/index.d.ts
CHANGED
|
@@ -158,8 +158,9 @@ export interface Chapter {
|
|
|
158
158
|
time_last_update?: string | null
|
|
159
159
|
body?: string | null
|
|
160
160
|
index: number
|
|
161
|
-
notes_before?:
|
|
162
|
-
notes_after?:
|
|
161
|
+
notes_before?: string | null
|
|
162
|
+
notes_after?: string | null
|
|
163
|
+
mentions?: Author[] | null
|
|
163
164
|
global_tags?: string[] | null
|
|
164
165
|
custom_tags?: CustomTag[] | null
|
|
165
166
|
}
|
package/openapi.json
CHANGED
|
@@ -820,7 +820,7 @@
|
|
|
820
820
|
"notes_before": {
|
|
821
821
|
"anyOf": [
|
|
822
822
|
{
|
|
823
|
-
"
|
|
823
|
+
"type": "string"
|
|
824
824
|
},
|
|
825
825
|
{
|
|
826
826
|
"type": "null"
|
|
@@ -830,7 +830,20 @@
|
|
|
830
830
|
"notes_after": {
|
|
831
831
|
"anyOf": [
|
|
832
832
|
{
|
|
833
|
-
"
|
|
833
|
+
"type": "string"
|
|
834
|
+
},
|
|
835
|
+
{
|
|
836
|
+
"type": "null"
|
|
837
|
+
}
|
|
838
|
+
]
|
|
839
|
+
},
|
|
840
|
+
"mentions": {
|
|
841
|
+
"anyOf": [
|
|
842
|
+
{
|
|
843
|
+
"type": "array",
|
|
844
|
+
"items": {
|
|
845
|
+
"$ref": "#/components/schema/Author"
|
|
846
|
+
}
|
|
834
847
|
},
|
|
835
848
|
{
|
|
836
849
|
"type": "null"
|
package/package.json
CHANGED