api.fluff4.me 1.0.463 → 1.0.464
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 -0
- package/openapi.json +52 -0
- package/package.json +1 -1
package/index.d.ts
CHANGED
|
@@ -411,6 +411,10 @@ export interface TagGlobalUpdate {
|
|
|
411
411
|
name?: string | null
|
|
412
412
|
description?: string | null
|
|
413
413
|
category?: string | null
|
|
414
|
+
aliases_add?: string[] | null
|
|
415
|
+
aliases_remove?: string[] | null
|
|
416
|
+
relationships_add?: string[] | null
|
|
417
|
+
relationships_remove?: string[] | null
|
|
414
418
|
}
|
|
415
419
|
|
|
416
420
|
export interface TagCategoryUpdateBody {
|
package/openapi.json
CHANGED
|
@@ -2345,6 +2345,58 @@
|
|
|
2345
2345
|
"type": "null"
|
|
2346
2346
|
}
|
|
2347
2347
|
]
|
|
2348
|
+
},
|
|
2349
|
+
"aliases_add": {
|
|
2350
|
+
"anyOf": [
|
|
2351
|
+
{
|
|
2352
|
+
"type": "array",
|
|
2353
|
+
"items": {
|
|
2354
|
+
"type": "string"
|
|
2355
|
+
}
|
|
2356
|
+
},
|
|
2357
|
+
{
|
|
2358
|
+
"type": "null"
|
|
2359
|
+
}
|
|
2360
|
+
]
|
|
2361
|
+
},
|
|
2362
|
+
"aliases_remove": {
|
|
2363
|
+
"anyOf": [
|
|
2364
|
+
{
|
|
2365
|
+
"type": "array",
|
|
2366
|
+
"items": {
|
|
2367
|
+
"type": "string"
|
|
2368
|
+
}
|
|
2369
|
+
},
|
|
2370
|
+
{
|
|
2371
|
+
"type": "null"
|
|
2372
|
+
}
|
|
2373
|
+
]
|
|
2374
|
+
},
|
|
2375
|
+
"relationships_add": {
|
|
2376
|
+
"anyOf": [
|
|
2377
|
+
{
|
|
2378
|
+
"type": "array",
|
|
2379
|
+
"items": {
|
|
2380
|
+
"type": "string"
|
|
2381
|
+
}
|
|
2382
|
+
},
|
|
2383
|
+
{
|
|
2384
|
+
"type": "null"
|
|
2385
|
+
}
|
|
2386
|
+
]
|
|
2387
|
+
},
|
|
2388
|
+
"relationships_remove": {
|
|
2389
|
+
"anyOf": [
|
|
2390
|
+
{
|
|
2391
|
+
"type": "array",
|
|
2392
|
+
"items": {
|
|
2393
|
+
"type": "string"
|
|
2394
|
+
}
|
|
2395
|
+
},
|
|
2396
|
+
{
|
|
2397
|
+
"type": "null"
|
|
2398
|
+
}
|
|
2399
|
+
]
|
|
2348
2400
|
}
|
|
2349
2401
|
}
|
|
2350
2402
|
},
|
package/package.json
CHANGED