api.fluff4.me 1.0.516 → 1.0.517
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 -2
- package/openapi.json +24 -7
- package/package.json +1 -1
package/index.d.ts
CHANGED
|
@@ -443,6 +443,10 @@ export interface CustomTagRenameBody {
|
|
|
443
443
|
name: CustomTag
|
|
444
444
|
}
|
|
445
445
|
|
|
446
|
+
export interface GlobalTagsDeleteBody {
|
|
447
|
+
tags: string[]
|
|
448
|
+
}
|
|
449
|
+
|
|
446
450
|
export interface CustomTagsDeleteBody {
|
|
447
451
|
tags: CustomTag[]
|
|
448
452
|
}
|
|
@@ -1193,9 +1197,9 @@ export interface Paths {
|
|
|
1193
1197
|
search?: undefined
|
|
1194
1198
|
response: Response<CustomTag> | ErrorResponse
|
|
1195
1199
|
},
|
|
1196
|
-
"/tag/delete/global
|
|
1200
|
+
"/tag/delete/global": {
|
|
1197
1201
|
method: "post"
|
|
1198
|
-
body
|
|
1202
|
+
body: GlobalTagsDeleteBody
|
|
1199
1203
|
search?: undefined
|
|
1200
1204
|
response: void | ErrorResponse
|
|
1201
1205
|
},
|
package/openapi.json
CHANGED
|
@@ -2557,6 +2557,20 @@
|
|
|
2557
2557
|
"name"
|
|
2558
2558
|
]
|
|
2559
2559
|
},
|
|
2560
|
+
"GlobalTagsDeleteBody": {
|
|
2561
|
+
"type": "object",
|
|
2562
|
+
"properties": {
|
|
2563
|
+
"tags": {
|
|
2564
|
+
"type": "array",
|
|
2565
|
+
"items": {
|
|
2566
|
+
"type": "string"
|
|
2567
|
+
}
|
|
2568
|
+
}
|
|
2569
|
+
},
|
|
2570
|
+
"required": [
|
|
2571
|
+
"tags"
|
|
2572
|
+
]
|
|
2573
|
+
},
|
|
2560
2574
|
"CustomTagsDeleteBody": {
|
|
2561
2575
|
"type": "object",
|
|
2562
2576
|
"properties": {
|
|
@@ -7294,14 +7308,17 @@
|
|
|
7294
7308
|
}
|
|
7295
7309
|
}
|
|
7296
7310
|
},
|
|
7297
|
-
"/tag/delete/global
|
|
7298
|
-
"parameters": [
|
|
7299
|
-
{
|
|
7300
|
-
"name": "vanity",
|
|
7301
|
-
"in": "path"
|
|
7302
|
-
}
|
|
7303
|
-
],
|
|
7311
|
+
"/tag/delete/global": {
|
|
7304
7312
|
"post": {
|
|
7313
|
+
"requestBody": {
|
|
7314
|
+
"content": {
|
|
7315
|
+
"application/json": {
|
|
7316
|
+
"schema": {
|
|
7317
|
+
"$ref": "#/components/schemas/GlobalTagsDeleteBody"
|
|
7318
|
+
}
|
|
7319
|
+
}
|
|
7320
|
+
}
|
|
7321
|
+
},
|
|
7305
7322
|
"responses": {
|
|
7306
7323
|
"200": {
|
|
7307
7324
|
"description": "200 response"
|
package/package.json
CHANGED