api.fluff4.me 1.0.930 → 1.0.931
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 +12 -0
- package/openapi.json +44 -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
|
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": {
|
package/package.json
CHANGED