api.fluff4.me 1.0.978 → 1.0.979
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 +11 -0
- package/openapi.json +45 -1
- package/package.json +1 -1
package/index.d.ts
CHANGED
|
@@ -708,6 +708,17 @@ export interface ManifestFormInputLengths {
|
|
|
708
708
|
name: number
|
|
709
709
|
description: number
|
|
710
710
|
}
|
|
711
|
+
feed_search: {
|
|
712
|
+
search: number
|
|
713
|
+
author_whitelist: number
|
|
714
|
+
author_blacklist: number
|
|
715
|
+
work_whitelist: number
|
|
716
|
+
work_blacklist: number
|
|
717
|
+
tag_whitelist: number
|
|
718
|
+
tag_blacklist: number
|
|
719
|
+
tag_category_whitelist: number
|
|
720
|
+
tag_category_blacklist: number
|
|
721
|
+
}
|
|
711
722
|
}
|
|
712
723
|
|
|
713
724
|
export interface ManifestReactionTypes {
|
package/openapi.json
CHANGED
|
@@ -4078,6 +4078,49 @@
|
|
|
4078
4078
|
"name",
|
|
4079
4079
|
"description"
|
|
4080
4080
|
]
|
|
4081
|
+
},
|
|
4082
|
+
"feed_search": {
|
|
4083
|
+
"type": "object",
|
|
4084
|
+
"properties": {
|
|
4085
|
+
"search": {
|
|
4086
|
+
"type": "number"
|
|
4087
|
+
},
|
|
4088
|
+
"author_whitelist": {
|
|
4089
|
+
"type": "number"
|
|
4090
|
+
},
|
|
4091
|
+
"author_blacklist": {
|
|
4092
|
+
"type": "number"
|
|
4093
|
+
},
|
|
4094
|
+
"work_whitelist": {
|
|
4095
|
+
"type": "number"
|
|
4096
|
+
},
|
|
4097
|
+
"work_blacklist": {
|
|
4098
|
+
"type": "number"
|
|
4099
|
+
},
|
|
4100
|
+
"tag_whitelist": {
|
|
4101
|
+
"type": "number"
|
|
4102
|
+
},
|
|
4103
|
+
"tag_blacklist": {
|
|
4104
|
+
"type": "number"
|
|
4105
|
+
},
|
|
4106
|
+
"tag_category_whitelist": {
|
|
4107
|
+
"type": "number"
|
|
4108
|
+
},
|
|
4109
|
+
"tag_category_blacklist": {
|
|
4110
|
+
"type": "number"
|
|
4111
|
+
}
|
|
4112
|
+
},
|
|
4113
|
+
"required": [
|
|
4114
|
+
"search",
|
|
4115
|
+
"author_whitelist",
|
|
4116
|
+
"author_blacklist",
|
|
4117
|
+
"work_whitelist",
|
|
4118
|
+
"work_blacklist",
|
|
4119
|
+
"tag_whitelist",
|
|
4120
|
+
"tag_blacklist",
|
|
4121
|
+
"tag_category_whitelist",
|
|
4122
|
+
"tag_category_blacklist"
|
|
4123
|
+
]
|
|
4081
4124
|
}
|
|
4082
4125
|
},
|
|
4083
4126
|
"required": [
|
|
@@ -4094,7 +4137,8 @@
|
|
|
4094
4137
|
"report",
|
|
4095
4138
|
"moderation",
|
|
4096
4139
|
"license",
|
|
4097
|
-
"shelf"
|
|
4140
|
+
"shelf",
|
|
4141
|
+
"feed_search"
|
|
4098
4142
|
]
|
|
4099
4143
|
},
|
|
4100
4144
|
"ManifestReactionTypes": {
|
package/package.json
CHANGED