api.fluff4.me 1.0.182 → 1.0.184

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 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?: TextBody | null
162
- notes_after?: TextBody | null
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
- "$ref": "#/components/schema/TextBody"
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
- "$ref": "#/components/schema/TextBody"
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
@@ -1,5 +1,5 @@
1
1
  {
2
2
  "name": "api.fluff4.me",
3
- "version": "1.0.182",
3
+ "version": "1.0.184",
4
4
  "types": "index.d.ts"
5
5
  }