api.fluff4.me 1.0.511 → 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 +11 -5
- package/openapi.json +65 -31
- package/package.json +1 -1
package/index.d.ts
CHANGED
|
@@ -446,17 +446,23 @@ export interface CustomTagsDelete {
|
|
|
446
446
|
}
|
|
447
447
|
|
|
448
448
|
export interface TagCustomPromote {
|
|
449
|
-
|
|
450
|
-
|
|
451
|
-
|
|
449
|
+
promoted_from_tags: string[]
|
|
450
|
+
into_existing_tag?:
|
|
451
|
+
| {
|
|
452
|
+
id: string
|
|
453
|
+
aliases?: string[] | null
|
|
454
|
+
}
|
|
455
|
+
| null
|
|
456
|
+
into_new_tag?:
|
|
452
457
|
| {
|
|
453
458
|
name: string
|
|
454
459
|
category: string
|
|
455
460
|
description: string
|
|
461
|
+
aliases?: string[] | null
|
|
462
|
+
relationships_to?: string[] | null
|
|
463
|
+
relationships_from?: string[] | null
|
|
456
464
|
}
|
|
457
465
|
| null
|
|
458
|
-
aliases?: string[] | null
|
|
459
|
-
relationships?: string[] | null
|
|
460
466
|
}
|
|
461
467
|
|
|
462
468
|
export interface TagGlobalDemote {
|
package/openapi.json
CHANGED
|
@@ -2548,23 +2548,44 @@
|
|
|
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
|
-
"type": "
|
|
2560
|
+
"type": "object",
|
|
2561
|
+
"properties": {
|
|
2562
|
+
"id": {
|
|
2563
|
+
"type": "string"
|
|
2564
|
+
},
|
|
2565
|
+
"aliases": {
|
|
2566
|
+
"anyOf": [
|
|
2567
|
+
{
|
|
2568
|
+
"type": "array",
|
|
2569
|
+
"items": {
|
|
2570
|
+
"type": "string"
|
|
2571
|
+
}
|
|
2572
|
+
},
|
|
2573
|
+
{
|
|
2574
|
+
"type": "null"
|
|
2575
|
+
}
|
|
2576
|
+
]
|
|
2577
|
+
}
|
|
2578
|
+
},
|
|
2579
|
+
"required": [
|
|
2580
|
+
"id"
|
|
2581
|
+
]
|
|
2561
2582
|
},
|
|
2562
2583
|
{
|
|
2563
2584
|
"type": "null"
|
|
2564
2585
|
}
|
|
2565
2586
|
]
|
|
2566
2587
|
},
|
|
2567
|
-
"
|
|
2588
|
+
"into_new_tag": {
|
|
2568
2589
|
"anyOf": [
|
|
2569
2590
|
{
|
|
2570
2591
|
"type": "object",
|
|
@@ -2580,6 +2601,45 @@
|
|
|
2580
2601
|
"description": {
|
|
2581
2602
|
"type": "string",
|
|
2582
2603
|
"maxLength": 512
|
|
2604
|
+
},
|
|
2605
|
+
"aliases": {
|
|
2606
|
+
"anyOf": [
|
|
2607
|
+
{
|
|
2608
|
+
"type": "array",
|
|
2609
|
+
"items": {
|
|
2610
|
+
"type": "string"
|
|
2611
|
+
}
|
|
2612
|
+
},
|
|
2613
|
+
{
|
|
2614
|
+
"type": "null"
|
|
2615
|
+
}
|
|
2616
|
+
]
|
|
2617
|
+
},
|
|
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": {
|
|
2632
|
+
"anyOf": [
|
|
2633
|
+
{
|
|
2634
|
+
"type": "array",
|
|
2635
|
+
"items": {
|
|
2636
|
+
"type": "string"
|
|
2637
|
+
}
|
|
2638
|
+
},
|
|
2639
|
+
{
|
|
2640
|
+
"type": "null"
|
|
2641
|
+
}
|
|
2642
|
+
]
|
|
2583
2643
|
}
|
|
2584
2644
|
},
|
|
2585
2645
|
"required": [
|
|
@@ -2592,36 +2652,10 @@
|
|
|
2592
2652
|
"type": "null"
|
|
2593
2653
|
}
|
|
2594
2654
|
]
|
|
2595
|
-
},
|
|
2596
|
-
"aliases": {
|
|
2597
|
-
"anyOf": [
|
|
2598
|
-
{
|
|
2599
|
-
"type": "array",
|
|
2600
|
-
"items": {
|
|
2601
|
-
"type": "string"
|
|
2602
|
-
}
|
|
2603
|
-
},
|
|
2604
|
-
{
|
|
2605
|
-
"type": "null"
|
|
2606
|
-
}
|
|
2607
|
-
]
|
|
2608
|
-
},
|
|
2609
|
-
"relationships": {
|
|
2610
|
-
"anyOf": [
|
|
2611
|
-
{
|
|
2612
|
-
"type": "array",
|
|
2613
|
-
"items": {
|
|
2614
|
-
"type": "string"
|
|
2615
|
-
}
|
|
2616
|
-
},
|
|
2617
|
-
{
|
|
2618
|
-
"type": "null"
|
|
2619
|
-
}
|
|
2620
|
-
]
|
|
2621
2655
|
}
|
|
2622
2656
|
},
|
|
2623
2657
|
"required": [
|
|
2624
|
-
"
|
|
2658
|
+
"promoted_from_tags"
|
|
2625
2659
|
]
|
|
2626
2660
|
},
|
|
2627
2661
|
"TagGlobalDemote": {
|
package/package.json
CHANGED