api.fluff4.me 1.0.267 → 1.0.269

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
@@ -229,6 +229,7 @@ export interface FollowsMerged {
229
229
  author: Follows
230
230
  work: Follows
231
231
  tag: Follows
232
+ category: Follows
232
233
  }
233
234
 
234
235
  export type Follows = Follow[]
@@ -755,11 +756,6 @@ export interface Paths {
755
756
  body?: undefined
756
757
  response: void | ErrorResponse
757
758
  },
758
- "/comment/{id}": {
759
- method: "get"
760
- body?: undefined
761
- response: Response<CommentResolved> | ErrorResponse
762
- },
763
759
  "/comment/{comment_id}/react/{type}": {
764
760
  method: "post"
765
761
  body?: undefined
package/openapi.json CHANGED
@@ -1263,12 +1263,16 @@
1263
1263
  },
1264
1264
  "tag": {
1265
1265
  "$ref": "#/components/schema/Follows"
1266
+ },
1267
+ "category": {
1268
+ "$ref": "#/components/schema/Follows"
1266
1269
  }
1267
1270
  },
1268
1271
  "required": [
1269
1272
  "author",
1270
1273
  "work",
1271
- "tag"
1274
+ "tag",
1275
+ "category"
1272
1276
  ]
1273
1277
  },
1274
1278
  "Follows": {
@@ -4893,46 +4897,6 @@
4893
4897
  }
4894
4898
  }
4895
4899
  },
4896
- "/comment/{id}": {
4897
- "parameters": [
4898
- {
4899
- "name": "id",
4900
- "in": "path"
4901
- }
4902
- ],
4903
- "get": {
4904
- "responses": {
4905
- "200": {
4906
- "description": "200 response",
4907
- "content": {
4908
- "application/json": {
4909
- "schema": {
4910
- "type": "object",
4911
- "properties": {
4912
- "data": {
4913
- "$ref": "#/components/schemas/CommentResolved"
4914
- }
4915
- },
4916
- "required": [
4917
- "data"
4918
- ]
4919
- }
4920
- }
4921
- }
4922
- },
4923
- "default": {
4924
- "description": "Error",
4925
- "content": {
4926
- "application/json": {
4927
- "schema": {
4928
- "$ref": "#/components/schemas/ErrorResponse"
4929
- }
4930
- }
4931
- }
4932
- }
4933
- }
4934
- }
4935
- },
4936
4900
  "/comment/{comment_id}/react/{type}": {
4937
4901
  "parameters": [
4938
4902
  {
package/package.json CHANGED
@@ -1,5 +1,5 @@
1
1
  {
2
2
  "name": "api.fluff4.me",
3
- "version": "1.0.267",
3
+ "version": "1.0.269",
4
4
  "types": "index.d.ts"
5
5
  }