api.fluff4.me 1.0.513 → 1.0.514
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 +4 -2
- package/openapi.json +28 -2
- package/package.json +1 -1
package/index.d.ts
CHANGED
|
@@ -411,7 +411,8 @@ export interface TagCreateGlobal {
|
|
|
411
411
|
description: string
|
|
412
412
|
category: string
|
|
413
413
|
aliases?: string[] | null
|
|
414
|
-
|
|
414
|
+
relationships_to?: string[] | null
|
|
415
|
+
relationships_from?: string[] | null
|
|
415
416
|
}
|
|
416
417
|
|
|
417
418
|
export interface TagCategory {
|
|
@@ -429,7 +430,8 @@ export interface TagGlobalUpdate {
|
|
|
429
430
|
description?: string | null
|
|
430
431
|
category?: string | null
|
|
431
432
|
aliases?: string[] | null
|
|
432
|
-
|
|
433
|
+
relationships_to?: string[] | null
|
|
434
|
+
relationships_from?: string[] | null
|
|
433
435
|
}
|
|
434
436
|
|
|
435
437
|
export interface TagCategoryUpdateBody {
|
package/openapi.json
CHANGED
|
@@ -2372,7 +2372,20 @@
|
|
|
2372
2372
|
}
|
|
2373
2373
|
]
|
|
2374
2374
|
},
|
|
2375
|
-
"
|
|
2375
|
+
"relationships_to": {
|
|
2376
|
+
"anyOf": [
|
|
2377
|
+
{
|
|
2378
|
+
"type": "array",
|
|
2379
|
+
"items": {
|
|
2380
|
+
"type": "string"
|
|
2381
|
+
}
|
|
2382
|
+
},
|
|
2383
|
+
{
|
|
2384
|
+
"type": "null"
|
|
2385
|
+
}
|
|
2386
|
+
]
|
|
2387
|
+
},
|
|
2388
|
+
"relationships_from": {
|
|
2376
2389
|
"anyOf": [
|
|
2377
2390
|
{
|
|
2378
2391
|
"type": "array",
|
|
@@ -2477,7 +2490,20 @@
|
|
|
2477
2490
|
}
|
|
2478
2491
|
]
|
|
2479
2492
|
},
|
|
2480
|
-
"
|
|
2493
|
+
"relationships_to": {
|
|
2494
|
+
"anyOf": [
|
|
2495
|
+
{
|
|
2496
|
+
"type": "array",
|
|
2497
|
+
"items": {
|
|
2498
|
+
"type": "string"
|
|
2499
|
+
}
|
|
2500
|
+
},
|
|
2501
|
+
{
|
|
2502
|
+
"type": "null"
|
|
2503
|
+
}
|
|
2504
|
+
]
|
|
2505
|
+
},
|
|
2506
|
+
"relationships_from": {
|
|
2481
2507
|
"anyOf": [
|
|
2482
2508
|
{
|
|
2483
2509
|
"type": "array",
|
package/package.json
CHANGED