api.fluff4.me 1.0.389 → 1.0.391
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 +4 -4
- package/openapi.json +4 -4
- package/package.json +1 -1
package/index.d.ts
CHANGED
|
@@ -518,8 +518,8 @@ export interface NotificationsBody {
|
|
|
518
518
|
export interface FeedSearch {
|
|
519
519
|
whitelistTags?: string[] | null
|
|
520
520
|
blacklistTags?: string[] | null
|
|
521
|
-
|
|
522
|
-
|
|
521
|
+
whitelistTagCategories?: string[] | null
|
|
522
|
+
blacklistTagCategories?: string[] | null
|
|
523
523
|
whitelistAuthors?: string[] | null
|
|
524
524
|
blacklistAuthors?: string[] | null
|
|
525
525
|
}
|
|
@@ -1239,8 +1239,8 @@ export interface Paths {
|
|
|
1239
1239
|
page_size?: number
|
|
1240
1240
|
whitelistTags?: string[] | null
|
|
1241
1241
|
blacklistTags?: string[] | null
|
|
1242
|
-
|
|
1243
|
-
|
|
1242
|
+
whitelistTagCategories?: string[] | null
|
|
1243
|
+
blacklistTagCategories?: string[] | null
|
|
1244
1244
|
whitelistAuthors?: string[] | null
|
|
1245
1245
|
blacklistAuthors?: string[] | null
|
|
1246
1246
|
}
|
package/openapi.json
CHANGED
|
@@ -2811,7 +2811,7 @@
|
|
|
2811
2811
|
}
|
|
2812
2812
|
]
|
|
2813
2813
|
},
|
|
2814
|
-
"
|
|
2814
|
+
"whitelistTagCategories": {
|
|
2815
2815
|
"anyOf": [
|
|
2816
2816
|
{
|
|
2817
2817
|
"type": "array",
|
|
@@ -2824,7 +2824,7 @@
|
|
|
2824
2824
|
}
|
|
2825
2825
|
]
|
|
2826
2826
|
},
|
|
2827
|
-
"
|
|
2827
|
+
"blacklistTagCategories": {
|
|
2828
2828
|
"anyOf": [
|
|
2829
2829
|
{
|
|
2830
2830
|
"type": "array",
|
|
@@ -7612,7 +7612,7 @@
|
|
|
7612
7612
|
}
|
|
7613
7613
|
},
|
|
7614
7614
|
{
|
|
7615
|
-
"name": "
|
|
7615
|
+
"name": "whitelistTagCategories",
|
|
7616
7616
|
"in": "query",
|
|
7617
7617
|
"required": false,
|
|
7618
7618
|
"content": {
|
|
@@ -7634,7 +7634,7 @@
|
|
|
7634
7634
|
}
|
|
7635
7635
|
},
|
|
7636
7636
|
{
|
|
7637
|
-
"name": "
|
|
7637
|
+
"name": "blacklistTagCategories",
|
|
7638
7638
|
"in": "query",
|
|
7639
7639
|
"required": false,
|
|
7640
7640
|
"content": {
|
package/package.json
CHANGED