api.fluff4.me 1.0.511 → 1.0.512
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 +8 -3
- package/openapi.json +48 -27
- package/package.json +1 -1
package/index.d.ts
CHANGED
|
@@ -447,16 +447,21 @@ export interface CustomTagsDelete {
|
|
|
447
447
|
|
|
448
448
|
export interface TagCustomPromote {
|
|
449
449
|
customTags: string[]
|
|
450
|
-
existingGlobalTag?:
|
|
450
|
+
existingGlobalTag?:
|
|
451
|
+
| {
|
|
452
|
+
id: string
|
|
453
|
+
aliases?: string[] | null
|
|
454
|
+
}
|
|
455
|
+
| null
|
|
451
456
|
newGlobalTag?:
|
|
452
457
|
| {
|
|
453
458
|
name: string
|
|
454
459
|
category: string
|
|
455
460
|
description: string
|
|
461
|
+
aliases?: string[] | null
|
|
462
|
+
relationships?: string[] | null
|
|
456
463
|
}
|
|
457
464
|
| null
|
|
458
|
-
aliases?: string[] | null
|
|
459
|
-
relationships?: string[] | null
|
|
460
465
|
}
|
|
461
466
|
|
|
462
467
|
export interface TagGlobalDemote {
|
package/openapi.json
CHANGED
|
@@ -2557,7 +2557,28 @@
|
|
|
2557
2557
|
"existingGlobalTag": {
|
|
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"
|
|
@@ -2580,6 +2601,32 @@
|
|
|
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": {
|
|
2619
|
+
"anyOf": [
|
|
2620
|
+
{
|
|
2621
|
+
"type": "array",
|
|
2622
|
+
"items": {
|
|
2623
|
+
"type": "string"
|
|
2624
|
+
}
|
|
2625
|
+
},
|
|
2626
|
+
{
|
|
2627
|
+
"type": "null"
|
|
2628
|
+
}
|
|
2629
|
+
]
|
|
2583
2630
|
}
|
|
2584
2631
|
},
|
|
2585
2632
|
"required": [
|
|
@@ -2592,32 +2639,6 @@
|
|
|
2592
2639
|
"type": "null"
|
|
2593
2640
|
}
|
|
2594
2641
|
]
|
|
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
2642
|
}
|
|
2622
2643
|
},
|
|
2623
2644
|
"required": [
|
package/package.json
CHANGED