api.fluff4.me 1.0.251 → 1.0.255
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 -1
- package/openapi.json +49 -1
- package/package.json +1 -1
package/index.d.ts
CHANGED
|
@@ -161,6 +161,7 @@ export interface Chapter {
|
|
|
161
161
|
notes_before?: string | null
|
|
162
162
|
notes_after?: string | null
|
|
163
163
|
mentions?: Author[] | null
|
|
164
|
+
root_comment?: string | null
|
|
164
165
|
global_tags?: string[] | null
|
|
165
166
|
custom_tags?: CustomTag[] | null
|
|
166
167
|
}
|
|
@@ -749,7 +750,7 @@ export interface Paths {
|
|
|
749
750
|
"/comments/{under}": {
|
|
750
751
|
method: "get"
|
|
751
752
|
body?: undefined
|
|
752
|
-
response:
|
|
753
|
+
response: PaginatedResponse<Comments> | ErrorResponse
|
|
753
754
|
},
|
|
754
755
|
"/patreon/campaign/tiers/get": {
|
|
755
756
|
method: "get"
|
package/openapi.json
CHANGED
|
@@ -850,6 +850,16 @@
|
|
|
850
850
|
}
|
|
851
851
|
]
|
|
852
852
|
},
|
|
853
|
+
"root_comment": {
|
|
854
|
+
"anyOf": [
|
|
855
|
+
{
|
|
856
|
+
"type": "string"
|
|
857
|
+
},
|
|
858
|
+
{
|
|
859
|
+
"type": "null"
|
|
860
|
+
}
|
|
861
|
+
]
|
|
862
|
+
},
|
|
853
863
|
"global_tags": {
|
|
854
864
|
"anyOf": [
|
|
855
865
|
{
|
|
@@ -4867,6 +4877,16 @@
|
|
|
4867
4877
|
{
|
|
4868
4878
|
"name": "under",
|
|
4869
4879
|
"in": "path"
|
|
4880
|
+
},
|
|
4881
|
+
{
|
|
4882
|
+
"name": "page",
|
|
4883
|
+
"in": "query",
|
|
4884
|
+
"description": "The page of data to query from. This endpoint uses a page size of 25 by default."
|
|
4885
|
+
},
|
|
4886
|
+
{
|
|
4887
|
+
"name": "page_size",
|
|
4888
|
+
"in": "query",
|
|
4889
|
+
"description": "The custom page size to return. This endpoint uses a page size of 25 by default. The custom page size cannot be raised above the default."
|
|
4870
4890
|
}
|
|
4871
4891
|
],
|
|
4872
4892
|
"get": {
|
|
@@ -4880,10 +4900,38 @@
|
|
|
4880
4900
|
"properties": {
|
|
4881
4901
|
"data": {
|
|
4882
4902
|
"$ref": "#/components/schemas/Comments"
|
|
4903
|
+
},
|
|
4904
|
+
"has_more": {
|
|
4905
|
+
"type": "boolean"
|
|
4906
|
+
},
|
|
4907
|
+
"page": {
|
|
4908
|
+
"type": "number",
|
|
4909
|
+
"minimum": 0
|
|
4910
|
+
},
|
|
4911
|
+
"page_count": {
|
|
4912
|
+
"type": [
|
|
4913
|
+
"boolean",
|
|
4914
|
+
"number"
|
|
4915
|
+
],
|
|
4916
|
+
"anyOf": [
|
|
4917
|
+
{
|
|
4918
|
+
"type": "boolean",
|
|
4919
|
+
"enum": [
|
|
4920
|
+
true
|
|
4921
|
+
]
|
|
4922
|
+
},
|
|
4923
|
+
{
|
|
4924
|
+
"type": "number",
|
|
4925
|
+
"minimum": 0
|
|
4926
|
+
}
|
|
4927
|
+
]
|
|
4883
4928
|
}
|
|
4884
4929
|
},
|
|
4885
4930
|
"required": [
|
|
4886
|
-
"data"
|
|
4931
|
+
"data",
|
|
4932
|
+
"has_more",
|
|
4933
|
+
"page",
|
|
4934
|
+
"page_count"
|
|
4887
4935
|
]
|
|
4888
4936
|
}
|
|
4889
4937
|
}
|
package/package.json
CHANGED