api.fluff4.me 1.0.1134 → 1.0.1135
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 +2 -2
- package/openapi.json +4 -4
- package/package.json +1 -1
package/index.d.ts
CHANGED
|
@@ -1461,13 +1461,13 @@ export interface Paths {
|
|
|
1461
1461
|
search?: undefined
|
|
1462
1462
|
response: Response<Follow> | ErrorResponse
|
|
1463
1463
|
},
|
|
1464
|
-
"/v2/follows/author/{
|
|
1464
|
+
"/v2/follows/author/{id}/work-comments/ignore": {
|
|
1465
1465
|
method: "post"
|
|
1466
1466
|
body?: undefined
|
|
1467
1467
|
search?: undefined
|
|
1468
1468
|
response: void | ErrorResponse
|
|
1469
1469
|
},
|
|
1470
|
-
"/v2/follows/author/{
|
|
1470
|
+
"/v2/follows/author/{id}/work-comments/unignore": {
|
|
1471
1471
|
method: "post"
|
|
1472
1472
|
body?: undefined
|
|
1473
1473
|
search?: undefined
|
package/openapi.json
CHANGED
|
@@ -8946,10 +8946,10 @@
|
|
|
8946
8946
|
}
|
|
8947
8947
|
}
|
|
8948
8948
|
},
|
|
8949
|
-
"/v2/follows/author/{
|
|
8949
|
+
"/v2/follows/author/{id}/work-comments/ignore": {
|
|
8950
8950
|
"parameters": [
|
|
8951
8951
|
{
|
|
8952
|
-
"name": "
|
|
8952
|
+
"name": "id",
|
|
8953
8953
|
"in": "path"
|
|
8954
8954
|
}
|
|
8955
8955
|
],
|
|
@@ -8971,10 +8971,10 @@
|
|
|
8971
8971
|
}
|
|
8972
8972
|
}
|
|
8973
8973
|
},
|
|
8974
|
-
"/v2/follows/author/{
|
|
8974
|
+
"/v2/follows/author/{id}/work-comments/unignore": {
|
|
8975
8975
|
"parameters": [
|
|
8976
8976
|
{
|
|
8977
|
-
"name": "
|
|
8977
|
+
"name": "id",
|
|
8978
8978
|
"in": "path"
|
|
8979
8979
|
}
|
|
8980
8980
|
],
|
package/package.json
CHANGED