api.fluff4.me 1.0.931 → 1.0.932
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
|
@@ -2017,6 +2017,12 @@ export interface Paths {
|
|
|
2017
2017
|
search?: undefined
|
|
2018
2018
|
response: void | ErrorResponse
|
|
2019
2019
|
},
|
|
2020
|
+
"/shelf/{id}/rss.xml": {
|
|
2021
|
+
method: "get"
|
|
2022
|
+
body?: undefined
|
|
2023
|
+
search?: undefined
|
|
2024
|
+
response: void | ErrorResponse
|
|
2025
|
+
},
|
|
2020
2026
|
"/shelf/{id}": {
|
|
2021
2027
|
method: "get"
|
|
2022
2028
|
body?: undefined
|
package/openapi.json
CHANGED
|
@@ -12458,6 +12458,34 @@
|
|
|
12458
12458
|
}
|
|
12459
12459
|
}
|
|
12460
12460
|
},
|
|
12461
|
+
"/shelf/{id}/rss.xml": {
|
|
12462
|
+
"parameters": [
|
|
12463
|
+
{
|
|
12464
|
+
"name": "id",
|
|
12465
|
+
"in": "path"
|
|
12466
|
+
}
|
|
12467
|
+
],
|
|
12468
|
+
"get": {
|
|
12469
|
+
"responses": {
|
|
12470
|
+
"200": {
|
|
12471
|
+
"description": "200 response",
|
|
12472
|
+
"content": {
|
|
12473
|
+
"application/rss+xml": {}
|
|
12474
|
+
}
|
|
12475
|
+
},
|
|
12476
|
+
"default": {
|
|
12477
|
+
"description": "Error",
|
|
12478
|
+
"content": {
|
|
12479
|
+
"application/json": {
|
|
12480
|
+
"schema": {
|
|
12481
|
+
"$ref": "#/components/schemas/ErrorResponse"
|
|
12482
|
+
}
|
|
12483
|
+
}
|
|
12484
|
+
}
|
|
12485
|
+
}
|
|
12486
|
+
}
|
|
12487
|
+
}
|
|
12488
|
+
},
|
|
12461
12489
|
"/shelf/{id}": {
|
|
12462
12490
|
"parameters": [
|
|
12463
12491
|
{
|
package/package.json
CHANGED