api.fluff4.me 1.0.1154 → 1.0.1155

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
@@ -302,6 +302,7 @@ export interface Work {
302
302
  statistics?: WorkStatistics | null
303
303
  recommendation?: Comment | null
304
304
  recommendation_reactions: AttributedReaction[]
305
+ recommendation_reacted?: true | null
305
306
  }
306
307
 
307
308
  export interface WorkCreateBody {
package/openapi.json CHANGED
@@ -1875,6 +1875,19 @@
1875
1875
  "items": {
1876
1876
  "$ref": "#/components/schema/AttributedReaction"
1877
1877
  }
1878
+ },
1879
+ "recommendation_reacted": {
1880
+ "anyOf": [
1881
+ {
1882
+ "type": "boolean",
1883
+ "enum": [
1884
+ true
1885
+ ]
1886
+ },
1887
+ {
1888
+ "type": "null"
1889
+ }
1890
+ ]
1878
1891
  }
1879
1892
  },
1880
1893
  "required": [
package/package.json CHANGED
@@ -1,5 +1,5 @@
1
1
  {
2
2
  "name": "api.fluff4.me",
3
- "version": "1.0.1154",
3
+ "version": "1.0.1155",
4
4
  "types": "index.d.ts"
5
5
  }