api.fluff4.me 1.0.224 → 1.0.225
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 +6 -1
- package/openapi.json +30 -2
- package/package.json +1 -1
package/index.d.ts
CHANGED
|
@@ -367,10 +367,15 @@ export interface ManifestFormInputLengths {
|
|
|
367
367
|
support_message: number
|
|
368
368
|
pronouns: number
|
|
369
369
|
}
|
|
370
|
-
|
|
370
|
+
global_tag: {
|
|
371
371
|
name: number
|
|
372
372
|
description: number
|
|
373
373
|
}
|
|
374
|
+
global_tag_category: {
|
|
375
|
+
name: number
|
|
376
|
+
description: number
|
|
377
|
+
}
|
|
378
|
+
custom_tag: { name: number }
|
|
374
379
|
work: {
|
|
375
380
|
name: number
|
|
376
381
|
vanity: number
|
package/openapi.json
CHANGED
|
@@ -1889,7 +1889,22 @@
|
|
|
1889
1889
|
"pronouns"
|
|
1890
1890
|
]
|
|
1891
1891
|
},
|
|
1892
|
-
"
|
|
1892
|
+
"global_tag": {
|
|
1893
|
+
"type": "object",
|
|
1894
|
+
"properties": {
|
|
1895
|
+
"name": {
|
|
1896
|
+
"type": "number"
|
|
1897
|
+
},
|
|
1898
|
+
"description": {
|
|
1899
|
+
"type": "number"
|
|
1900
|
+
}
|
|
1901
|
+
},
|
|
1902
|
+
"required": [
|
|
1903
|
+
"name",
|
|
1904
|
+
"description"
|
|
1905
|
+
]
|
|
1906
|
+
},
|
|
1907
|
+
"global_tag_category": {
|
|
1893
1908
|
"type": "object",
|
|
1894
1909
|
"properties": {
|
|
1895
1910
|
"name": {
|
|
@@ -1904,6 +1919,17 @@
|
|
|
1904
1919
|
"description"
|
|
1905
1920
|
]
|
|
1906
1921
|
},
|
|
1922
|
+
"custom_tag": {
|
|
1923
|
+
"type": "object",
|
|
1924
|
+
"properties": {
|
|
1925
|
+
"name": {
|
|
1926
|
+
"type": "number"
|
|
1927
|
+
}
|
|
1928
|
+
},
|
|
1929
|
+
"required": [
|
|
1930
|
+
"name"
|
|
1931
|
+
]
|
|
1932
|
+
},
|
|
1907
1933
|
"work": {
|
|
1908
1934
|
"type": "object",
|
|
1909
1935
|
"properties": {
|
|
@@ -1990,7 +2016,9 @@
|
|
|
1990
2016
|
},
|
|
1991
2017
|
"required": [
|
|
1992
2018
|
"author",
|
|
1993
|
-
"
|
|
2019
|
+
"global_tag",
|
|
2020
|
+
"global_tag_category",
|
|
2021
|
+
"custom_tag",
|
|
1994
2022
|
"work",
|
|
1995
2023
|
"chapter",
|
|
1996
2024
|
"role",
|
package/package.json
CHANGED