api.fluff4.me 1.0.1114 → 1.0.1115

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.
Files changed (3) hide show
  1. package/index.d.ts +8 -8
  2. package/openapi.json +55 -55
  3. package/package.json +1 -1
package/index.d.ts CHANGED
@@ -1341,24 +1341,24 @@ export interface Paths {
1341
1341
  search: PaginationSearch
1342
1342
  response: PaginatedResponse<CommentsResponse> | ErrorResponse
1343
1343
  },
1344
- "/v2/comment/{id}/react/{type}": {
1344
+ "/v2/comments/all/work": {
1345
+ method: "get"
1346
+ body?: undefined
1347
+ search: RecommendationsSearchSchema & PaginationSearch
1348
+ response: PaginatedResponse<ContextualCommentsResponse> | ErrorResponse
1349
+ },
1350
+ "/v2/reactions/comment/{id}/add/{type}": {
1345
1351
  method: "post"
1346
1352
  body?: undefined
1347
1353
  search?: undefined
1348
1354
  response: void | ErrorResponse
1349
1355
  },
1350
- "/v2/comment/{id}/unreact": {
1356
+ "/v2/reactions/comment/{id}/remove": {
1351
1357
  method: "post"
1352
1358
  body?: undefined
1353
1359
  search?: undefined
1354
1360
  response: void | ErrorResponse
1355
1361
  },
1356
- "/v2/comment/all/work": {
1357
- method: "get"
1358
- body?: undefined
1359
- search: RecommendationsSearchSchema & PaginationSearch
1360
- response: PaginatedResponse<ContextualCommentsResponse> | ErrorResponse
1361
- },
1362
1362
  "/work/create": {
1363
1363
  method: "post"
1364
1364
  body: WorkCreateBody
package/openapi.json CHANGED
@@ -7879,61 +7879,7 @@
7879
7879
  }
7880
7880
  }
7881
7881
  },
7882
- "/v2/comment/{id}/react/{type}": {
7883
- "parameters": [
7884
- {
7885
- "name": "id",
7886
- "in": "path"
7887
- },
7888
- {
7889
- "name": "type",
7890
- "in": "path"
7891
- }
7892
- ],
7893
- "post": {
7894
- "responses": {
7895
- "200": {
7896
- "description": "200 response"
7897
- },
7898
- "default": {
7899
- "description": "Error",
7900
- "content": {
7901
- "application/json": {
7902
- "schema": {
7903
- "$ref": "#/components/schemas/ErrorResponse"
7904
- }
7905
- }
7906
- }
7907
- }
7908
- }
7909
- }
7910
- },
7911
- "/v2/comment/{id}/unreact": {
7912
- "parameters": [
7913
- {
7914
- "name": "id",
7915
- "in": "path"
7916
- }
7917
- ],
7918
- "post": {
7919
- "responses": {
7920
- "200": {
7921
- "description": "200 response"
7922
- },
7923
- "default": {
7924
- "description": "Error",
7925
- "content": {
7926
- "application/json": {
7927
- "schema": {
7928
- "$ref": "#/components/schemas/ErrorResponse"
7929
- }
7930
- }
7931
- }
7932
- }
7933
- }
7934
- }
7935
- },
7936
- "/v2/comment/all/work": {
7882
+ "/v2/comments/all/work": {
7937
7883
  "get": {
7938
7884
  "parameters": [
7939
7885
  {
@@ -8034,6 +7980,60 @@
8034
7980
  }
8035
7981
  }
8036
7982
  },
7983
+ "/v2/reactions/comment/{id}/add/{type}": {
7984
+ "parameters": [
7985
+ {
7986
+ "name": "id",
7987
+ "in": "path"
7988
+ },
7989
+ {
7990
+ "name": "type",
7991
+ "in": "path"
7992
+ }
7993
+ ],
7994
+ "post": {
7995
+ "responses": {
7996
+ "200": {
7997
+ "description": "200 response"
7998
+ },
7999
+ "default": {
8000
+ "description": "Error",
8001
+ "content": {
8002
+ "application/json": {
8003
+ "schema": {
8004
+ "$ref": "#/components/schemas/ErrorResponse"
8005
+ }
8006
+ }
8007
+ }
8008
+ }
8009
+ }
8010
+ }
8011
+ },
8012
+ "/v2/reactions/comment/{id}/remove": {
8013
+ "parameters": [
8014
+ {
8015
+ "name": "id",
8016
+ "in": "path"
8017
+ }
8018
+ ],
8019
+ "post": {
8020
+ "responses": {
8021
+ "200": {
8022
+ "description": "200 response"
8023
+ },
8024
+ "default": {
8025
+ "description": "Error",
8026
+ "content": {
8027
+ "application/json": {
8028
+ "schema": {
8029
+ "$ref": "#/components/schemas/ErrorResponse"
8030
+ }
8031
+ }
8032
+ }
8033
+ }
8034
+ }
8035
+ }
8036
+ },
8037
8037
  "/work/create": {
8038
8038
  "post": {
8039
8039
  "requestBody": {
package/package.json CHANGED
@@ -1,5 +1,5 @@
1
1
  {
2
2
  "name": "api.fluff4.me",
3
- "version": "1.0.1114",
3
+ "version": "1.0.1115",
4
4
  "types": "index.d.ts"
5
5
  }