api.fluff4.me 1.0.512 → 1.0.513
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 +5 -4
- package/openapi.json +18 -5
- package/package.json +1 -1
package/index.d.ts
CHANGED
|
@@ -446,20 +446,21 @@ export interface CustomTagsDelete {
|
|
|
446
446
|
}
|
|
447
447
|
|
|
448
448
|
export interface TagCustomPromote {
|
|
449
|
-
|
|
450
|
-
|
|
449
|
+
promoted_from_tags: string[]
|
|
450
|
+
into_existing_tag?:
|
|
451
451
|
| {
|
|
452
452
|
id: string
|
|
453
453
|
aliases?: string[] | null
|
|
454
454
|
}
|
|
455
455
|
| null
|
|
456
|
-
|
|
456
|
+
into_new_tag?:
|
|
457
457
|
| {
|
|
458
458
|
name: string
|
|
459
459
|
category: string
|
|
460
460
|
description: string
|
|
461
461
|
aliases?: string[] | null
|
|
462
|
-
|
|
462
|
+
relationships_to?: string[] | null
|
|
463
|
+
relationships_from?: string[] | null
|
|
463
464
|
}
|
|
464
465
|
| null
|
|
465
466
|
}
|
package/openapi.json
CHANGED
|
@@ -2548,13 +2548,13 @@
|
|
|
2548
2548
|
"TagCustomPromote": {
|
|
2549
2549
|
"type": "object",
|
|
2550
2550
|
"properties": {
|
|
2551
|
-
"
|
|
2551
|
+
"promoted_from_tags": {
|
|
2552
2552
|
"type": "array",
|
|
2553
2553
|
"items": {
|
|
2554
2554
|
"type": "string"
|
|
2555
2555
|
}
|
|
2556
2556
|
},
|
|
2557
|
-
"
|
|
2557
|
+
"into_existing_tag": {
|
|
2558
2558
|
"anyOf": [
|
|
2559
2559
|
{
|
|
2560
2560
|
"type": "object",
|
|
@@ -2585,7 +2585,7 @@
|
|
|
2585
2585
|
}
|
|
2586
2586
|
]
|
|
2587
2587
|
},
|
|
2588
|
-
"
|
|
2588
|
+
"into_new_tag": {
|
|
2589
2589
|
"anyOf": [
|
|
2590
2590
|
{
|
|
2591
2591
|
"type": "object",
|
|
@@ -2615,7 +2615,20 @@
|
|
|
2615
2615
|
}
|
|
2616
2616
|
]
|
|
2617
2617
|
},
|
|
2618
|
-
"
|
|
2618
|
+
"relationships_to": {
|
|
2619
|
+
"anyOf": [
|
|
2620
|
+
{
|
|
2621
|
+
"type": "array",
|
|
2622
|
+
"items": {
|
|
2623
|
+
"type": "string"
|
|
2624
|
+
}
|
|
2625
|
+
},
|
|
2626
|
+
{
|
|
2627
|
+
"type": "null"
|
|
2628
|
+
}
|
|
2629
|
+
]
|
|
2630
|
+
},
|
|
2631
|
+
"relationships_from": {
|
|
2619
2632
|
"anyOf": [
|
|
2620
2633
|
{
|
|
2621
2634
|
"type": "array",
|
|
@@ -2642,7 +2655,7 @@
|
|
|
2642
2655
|
}
|
|
2643
2656
|
},
|
|
2644
2657
|
"required": [
|
|
2645
|
-
"
|
|
2658
|
+
"promoted_from_tags"
|
|
2646
2659
|
]
|
|
2647
2660
|
},
|
|
2648
2661
|
"TagGlobalDemote": {
|
package/package.json
CHANGED