api.fluff4.me 1.0.549 → 1.0.552
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 +7 -1
- package/openapi.json +20 -1
- package/package.json +1 -1
package/index.d.ts
CHANGED
|
@@ -475,6 +475,12 @@ export interface TagGlobalDemoteBody {
|
|
|
475
475
|
name: string
|
|
476
476
|
}
|
|
477
477
|
|
|
478
|
+
export interface CustomTagData {
|
|
479
|
+
name: CustomTag
|
|
480
|
+
last_used: string
|
|
481
|
+
count: number
|
|
482
|
+
}
|
|
483
|
+
|
|
478
484
|
export interface GlobalTagsRecategoriseBody {
|
|
479
485
|
tags: string[]
|
|
480
486
|
category: string
|
|
@@ -1236,7 +1242,7 @@ export interface Paths {
|
|
|
1236
1242
|
method: "get"
|
|
1237
1243
|
body?: undefined
|
|
1238
1244
|
search?: undefined
|
|
1239
|
-
response: Response<
|
|
1245
|
+
response: Response<CustomTagData[]> | ErrorResponse
|
|
1240
1246
|
},
|
|
1241
1247
|
"/tags/global/recategorise": {
|
|
1242
1248
|
method: "post"
|
package/openapi.json
CHANGED
|
@@ -2717,6 +2717,25 @@
|
|
|
2717
2717
|
"name"
|
|
2718
2718
|
]
|
|
2719
2719
|
},
|
|
2720
|
+
"CustomTagData": {
|
|
2721
|
+
"type": "object",
|
|
2722
|
+
"properties": {
|
|
2723
|
+
"name": {
|
|
2724
|
+
"$ref": "#/components/schema/CustomTag"
|
|
2725
|
+
},
|
|
2726
|
+
"last_used": {
|
|
2727
|
+
"type": "string"
|
|
2728
|
+
},
|
|
2729
|
+
"count": {
|
|
2730
|
+
"type": "number"
|
|
2731
|
+
}
|
|
2732
|
+
},
|
|
2733
|
+
"required": [
|
|
2734
|
+
"name",
|
|
2735
|
+
"last_used",
|
|
2736
|
+
"count"
|
|
2737
|
+
]
|
|
2738
|
+
},
|
|
2720
2739
|
"GlobalTagsRecategoriseBody": {
|
|
2721
2740
|
"type": "object",
|
|
2722
2741
|
"properties": {
|
|
@@ -7518,7 +7537,7 @@
|
|
|
7518
7537
|
"data": {
|
|
7519
7538
|
"type": "array",
|
|
7520
7539
|
"items": {
|
|
7521
|
-
"$ref": "#/components/schema/
|
|
7540
|
+
"$ref": "#/components/schema/CustomTagData"
|
|
7522
7541
|
}
|
|
7523
7542
|
}
|
|
7524
7543
|
},
|
package/package.json
CHANGED