api.fluff4.me 1.0.277 → 1.0.279

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
@@ -164,6 +164,8 @@ export interface Chapter {
164
164
  root_comment?: string | null
165
165
  global_tags?: string[] | null
166
166
  custom_tags?: CustomTag[] | null
167
+ reactions?: number | null
168
+ reacted?: true | null
167
169
  }
168
170
 
169
171
  export interface ChapterCreateBody {
package/openapi.json CHANGED
@@ -885,6 +885,29 @@
885
885
  "type": "null"
886
886
  }
887
887
  ]
888
+ },
889
+ "reactions": {
890
+ "anyOf": [
891
+ {
892
+ "type": "number"
893
+ },
894
+ {
895
+ "type": "null"
896
+ }
897
+ ]
898
+ },
899
+ "reacted": {
900
+ "anyOf": [
901
+ {
902
+ "type": "boolean",
903
+ "enum": [
904
+ true
905
+ ]
906
+ },
907
+ {
908
+ "type": "null"
909
+ }
910
+ ]
888
911
  }
889
912
  },
890
913
  "required": [
package/package.json CHANGED
@@ -1,5 +1,5 @@
1
1
  {
2
2
  "name": "api.fluff4.me",
3
- "version": "1.0.277",
3
+ "version": "1.0.279",
4
4
  "types": "index.d.ts"
5
5
  }