api.fluff4.me 1.0.589 → 1.0.591
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 +0 -2
- package/openapi.json +1 -11
- package/package.json +1 -1
package/index.d.ts
CHANGED
|
@@ -303,7 +303,6 @@ export interface QueuedChapter {
|
|
|
303
303
|
name: string
|
|
304
304
|
visibility: "Private" | "Public" | "Patreon"
|
|
305
305
|
body: string
|
|
306
|
-
queue_index: string
|
|
307
306
|
is_numbered: boolean
|
|
308
307
|
notes_before?: string | null
|
|
309
308
|
notes_after?: string | null
|
|
@@ -327,7 +326,6 @@ export interface QueuedChapterFinaliseFull {
|
|
|
327
326
|
}
|
|
328
327
|
|
|
329
328
|
export interface QueuedChapterFinalise {
|
|
330
|
-
queue_index: string
|
|
331
329
|
global_tags?: string[] | null
|
|
332
330
|
custom_tags?: CustomTag[] | null
|
|
333
331
|
tier_ids?: string[] | null
|
package/openapi.json
CHANGED
|
@@ -1756,9 +1756,6 @@
|
|
|
1756
1756
|
"body": {
|
|
1757
1757
|
"type": "string"
|
|
1758
1758
|
},
|
|
1759
|
-
"queue_index": {
|
|
1760
|
-
"type": "string"
|
|
1761
|
-
},
|
|
1762
1759
|
"is_numbered": {
|
|
1763
1760
|
"type": "boolean"
|
|
1764
1761
|
},
|
|
@@ -1806,7 +1803,6 @@
|
|
|
1806
1803
|
"name",
|
|
1807
1804
|
"visibility",
|
|
1808
1805
|
"body",
|
|
1809
|
-
"queue_index",
|
|
1810
1806
|
"is_numbered",
|
|
1811
1807
|
"work",
|
|
1812
1808
|
"author"
|
|
@@ -1895,9 +1891,6 @@
|
|
|
1895
1891
|
"QueuedChapterFinalise": {
|
|
1896
1892
|
"type": "object",
|
|
1897
1893
|
"properties": {
|
|
1898
|
-
"queue_index": {
|
|
1899
|
-
"type": "string"
|
|
1900
|
-
},
|
|
1901
1894
|
"global_tags": {
|
|
1902
1895
|
"anyOf": [
|
|
1903
1896
|
{
|
|
@@ -1937,10 +1930,7 @@
|
|
|
1937
1930
|
}
|
|
1938
1931
|
]
|
|
1939
1932
|
}
|
|
1940
|
-
}
|
|
1941
|
-
"required": [
|
|
1942
|
-
"queue_index"
|
|
1943
|
-
]
|
|
1933
|
+
}
|
|
1944
1934
|
},
|
|
1945
1935
|
"ChapterRelativePosition": {
|
|
1946
1936
|
"type": "object",
|
package/package.json
CHANGED