api.fluff4.me 1.0.238 → 1.0.240
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 +2 -0
- package/openapi.json +24 -1
- package/package.json +1 -1
package/index.d.ts
CHANGED
|
@@ -313,6 +313,7 @@ export interface Tag {
|
|
|
313
313
|
name: string
|
|
314
314
|
description: TextBody
|
|
315
315
|
category: string
|
|
316
|
+
aliases?: string[] | null
|
|
316
317
|
}
|
|
317
318
|
|
|
318
319
|
export interface TagCreateGlobal {
|
|
@@ -356,6 +357,7 @@ export interface ManifestGlobalTags {
|
|
|
356
357
|
updated_at: number
|
|
357
358
|
tags: Record<string, Tag>
|
|
358
359
|
categories: Record<string, TagCategory>
|
|
360
|
+
relationships: Record<string, string[]>
|
|
359
361
|
}
|
|
360
362
|
|
|
361
363
|
export interface ManifestFormInputLengths {
|
package/openapi.json
CHANGED
|
@@ -1672,6 +1672,19 @@
|
|
|
1672
1672
|
},
|
|
1673
1673
|
"category": {
|
|
1674
1674
|
"type": "string"
|
|
1675
|
+
},
|
|
1676
|
+
"aliases": {
|
|
1677
|
+
"anyOf": [
|
|
1678
|
+
{
|
|
1679
|
+
"type": "array",
|
|
1680
|
+
"items": {
|
|
1681
|
+
"type": "string"
|
|
1682
|
+
}
|
|
1683
|
+
},
|
|
1684
|
+
{
|
|
1685
|
+
"type": "null"
|
|
1686
|
+
}
|
|
1687
|
+
]
|
|
1675
1688
|
}
|
|
1676
1689
|
},
|
|
1677
1690
|
"required": [
|
|
@@ -1847,12 +1860,22 @@
|
|
|
1847
1860
|
"additionalProperties": {
|
|
1848
1861
|
"$ref": "#/components/schema/TagCategory"
|
|
1849
1862
|
}
|
|
1863
|
+
},
|
|
1864
|
+
"relationships": {
|
|
1865
|
+
"type": "object",
|
|
1866
|
+
"additionalProperties": {
|
|
1867
|
+
"type": "array",
|
|
1868
|
+
"items": {
|
|
1869
|
+
"type": "string"
|
|
1870
|
+
}
|
|
1871
|
+
}
|
|
1850
1872
|
}
|
|
1851
1873
|
},
|
|
1852
1874
|
"required": [
|
|
1853
1875
|
"updated_at",
|
|
1854
1876
|
"tags",
|
|
1855
|
-
"categories"
|
|
1877
|
+
"categories",
|
|
1878
|
+
"relationships"
|
|
1856
1879
|
]
|
|
1857
1880
|
},
|
|
1858
1881
|
"ManifestFormInputLengths": {
|
package/package.json
CHANGED