api.fluff4.me 1.0.180 → 1.0.181

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,8 @@ export interface Chapter {
158
158
  time_last_update?: string | null
159
159
  body?: string | null
160
160
  index: number
161
- notes_before?: string | null
162
- notes_after?: string | null
161
+ notes_before?: TextBody | null
162
+ notes_after?: TextBody | null
163
163
  }
164
164
 
165
165
  export interface ChapterCreateBody {
package/openapi.json CHANGED
@@ -820,7 +820,7 @@
820
820
  "notes_before": {
821
821
  "anyOf": [
822
822
  {
823
- "type": "string"
823
+ "$ref": "#/components/schema/TextBody"
824
824
  },
825
825
  {
826
826
  "type": "null"
@@ -830,7 +830,7 @@
830
830
  "notes_after": {
831
831
  "anyOf": [
832
832
  {
833
- "type": "string"
833
+ "$ref": "#/components/schema/TextBody"
834
834
  },
835
835
  {
836
836
  "type": "null"
package/package.json CHANGED
@@ -1,5 +1,5 @@
1
1
  {
2
2
  "name": "api.fluff4.me",
3
- "version": "1.0.180",
3
+ "version": "1.0.181",
4
4
  "types": "index.d.ts"
5
5
  }