api.fluff4.me 1.0.901 → 1.0.903
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 +6 -0
- package/openapi.json +28 -0
- package/package.json +1 -1
package/index.d.ts
CHANGED
|
@@ -1041,6 +1041,12 @@ export interface Paths {
|
|
|
1041
1041
|
search?: undefined
|
|
1042
1042
|
response: Response<Author> | ErrorResponse
|
|
1043
1043
|
},
|
|
1044
|
+
"/author/{vanity}/rss.xml": {
|
|
1045
|
+
method: "get"
|
|
1046
|
+
body?: undefined
|
|
1047
|
+
search?: undefined
|
|
1048
|
+
response: void | ErrorResponse
|
|
1049
|
+
},
|
|
1044
1050
|
"/author/update": {
|
|
1045
1051
|
method: "post"
|
|
1046
1052
|
body: AuthorInsertBody
|
package/openapi.json
CHANGED
|
@@ -5738,6 +5738,34 @@
|
|
|
5738
5738
|
}
|
|
5739
5739
|
}
|
|
5740
5740
|
},
|
|
5741
|
+
"/author/{vanity}/rss.xml": {
|
|
5742
|
+
"parameters": [
|
|
5743
|
+
{
|
|
5744
|
+
"name": "vanity",
|
|
5745
|
+
"in": "path"
|
|
5746
|
+
}
|
|
5747
|
+
],
|
|
5748
|
+
"get": {
|
|
5749
|
+
"responses": {
|
|
5750
|
+
"200": {
|
|
5751
|
+
"description": "200 response",
|
|
5752
|
+
"content": {
|
|
5753
|
+
"application/rss+xml": {}
|
|
5754
|
+
}
|
|
5755
|
+
},
|
|
5756
|
+
"default": {
|
|
5757
|
+
"description": "Error",
|
|
5758
|
+
"content": {
|
|
5759
|
+
"application/json": {
|
|
5760
|
+
"schema": {
|
|
5761
|
+
"$ref": "#/components/schemas/ErrorResponse"
|
|
5762
|
+
}
|
|
5763
|
+
}
|
|
5764
|
+
}
|
|
5765
|
+
}
|
|
5766
|
+
}
|
|
5767
|
+
}
|
|
5768
|
+
},
|
|
5741
5769
|
"/author/update": {
|
|
5742
5770
|
"post": {
|
|
5743
5771
|
"requestBody": {
|
package/package.json
CHANGED