api.fluff4.me 1.0.930 → 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 +18 -0
- package/openapi.json +72 -0
- package/package.json +1 -1
package/index.d.ts
CHANGED
|
@@ -1846,6 +1846,12 @@ export interface Paths {
|
|
|
1846
1846
|
}
|
|
1847
1847
|
response: PaginatedResponse<FeedResponse> | ErrorResponse
|
|
1848
1848
|
},
|
|
1849
|
+
"/feed/get/authed/rss.xml": {
|
|
1850
|
+
method: "get"
|
|
1851
|
+
body?: undefined
|
|
1852
|
+
search?: undefined
|
|
1853
|
+
response: void | ErrorResponse
|
|
1854
|
+
},
|
|
1849
1855
|
"/feed/get/followed": {
|
|
1850
1856
|
method: "get"
|
|
1851
1857
|
body?: undefined
|
|
@@ -1855,6 +1861,12 @@ export interface Paths {
|
|
|
1855
1861
|
}
|
|
1856
1862
|
response: PaginatedResponse<FeedResponse> | ErrorResponse
|
|
1857
1863
|
},
|
|
1864
|
+
"/feed/get/followed/rss.xml": {
|
|
1865
|
+
method: "get"
|
|
1866
|
+
body?: undefined
|
|
1867
|
+
search?: undefined
|
|
1868
|
+
response: void | ErrorResponse
|
|
1869
|
+
},
|
|
1858
1870
|
"/feed/get/rss.xml": {
|
|
1859
1871
|
method: "get"
|
|
1860
1872
|
body?: undefined
|
|
@@ -2005,6 +2017,12 @@ export interface Paths {
|
|
|
2005
2017
|
search?: undefined
|
|
2006
2018
|
response: void | ErrorResponse
|
|
2007
2019
|
},
|
|
2020
|
+
"/shelf/{id}/rss.xml": {
|
|
2021
|
+
method: "get"
|
|
2022
|
+
body?: undefined
|
|
2023
|
+
search?: undefined
|
|
2024
|
+
response: void | ErrorResponse
|
|
2025
|
+
},
|
|
2008
2026
|
"/shelf/{id}": {
|
|
2009
2027
|
method: "get"
|
|
2010
2028
|
body?: undefined
|
package/openapi.json
CHANGED
|
@@ -11439,6 +11439,28 @@
|
|
|
11439
11439
|
}
|
|
11440
11440
|
}
|
|
11441
11441
|
},
|
|
11442
|
+
"/feed/get/authed/rss.xml": {
|
|
11443
|
+
"get": {
|
|
11444
|
+
"responses": {
|
|
11445
|
+
"200": {
|
|
11446
|
+
"description": "200 response",
|
|
11447
|
+
"content": {
|
|
11448
|
+
"application/rss+xml": {}
|
|
11449
|
+
}
|
|
11450
|
+
},
|
|
11451
|
+
"default": {
|
|
11452
|
+
"description": "Error",
|
|
11453
|
+
"content": {
|
|
11454
|
+
"application/json": {
|
|
11455
|
+
"schema": {
|
|
11456
|
+
"$ref": "#/components/schemas/ErrorResponse"
|
|
11457
|
+
}
|
|
11458
|
+
}
|
|
11459
|
+
}
|
|
11460
|
+
}
|
|
11461
|
+
}
|
|
11462
|
+
}
|
|
11463
|
+
},
|
|
11442
11464
|
"/feed/get/followed": {
|
|
11443
11465
|
"get": {
|
|
11444
11466
|
"parameters": [
|
|
@@ -11522,6 +11544,28 @@
|
|
|
11522
11544
|
}
|
|
11523
11545
|
}
|
|
11524
11546
|
},
|
|
11547
|
+
"/feed/get/followed/rss.xml": {
|
|
11548
|
+
"get": {
|
|
11549
|
+
"responses": {
|
|
11550
|
+
"200": {
|
|
11551
|
+
"description": "200 response",
|
|
11552
|
+
"content": {
|
|
11553
|
+
"application/rss+xml": {}
|
|
11554
|
+
}
|
|
11555
|
+
},
|
|
11556
|
+
"default": {
|
|
11557
|
+
"description": "Error",
|
|
11558
|
+
"content": {
|
|
11559
|
+
"application/json": {
|
|
11560
|
+
"schema": {
|
|
11561
|
+
"$ref": "#/components/schemas/ErrorResponse"
|
|
11562
|
+
}
|
|
11563
|
+
}
|
|
11564
|
+
}
|
|
11565
|
+
}
|
|
11566
|
+
}
|
|
11567
|
+
}
|
|
11568
|
+
},
|
|
11525
11569
|
"/feed/get/rss.xml": {
|
|
11526
11570
|
"get": {
|
|
11527
11571
|
"responses": {
|
|
@@ -12414,6 +12458,34 @@
|
|
|
12414
12458
|
}
|
|
12415
12459
|
}
|
|
12416
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
|
+
},
|
|
12417
12489
|
"/shelf/{id}": {
|
|
12418
12490
|
"parameters": [
|
|
12419
12491
|
{
|
package/package.json
CHANGED