api.fluff4.me 1.0.1059 → 1.0.1061
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 +5 -1
- package/openapi.json +38 -0
- package/package.json +1 -1
package/index.d.ts
CHANGED
|
@@ -584,6 +584,10 @@ export interface AuthorCommentsResponse {
|
|
|
584
584
|
chapters: ChapterMetadata[]
|
|
585
585
|
}
|
|
586
586
|
|
|
587
|
+
export interface CommentGetAllAuthorSearch {
|
|
588
|
+
filter?: ("chapter" | "work") | null
|
|
589
|
+
}
|
|
590
|
+
|
|
587
591
|
export interface AuthorComment {
|
|
588
592
|
comment: Comment
|
|
589
593
|
root_object: CommentRootComment | CommentRootWork | CommentRootChapter | CommentRootWorkPrivate | CommentRootChapterPrivate
|
|
@@ -1772,7 +1776,7 @@ export interface Paths {
|
|
|
1772
1776
|
"/comments/author/{vanity}": {
|
|
1773
1777
|
method: "get"
|
|
1774
1778
|
body?: undefined
|
|
1775
|
-
search: PaginationSearch
|
|
1779
|
+
search: CommentGetAllAuthorSearch & PaginationSearch
|
|
1776
1780
|
response: PaginatedResponse<AuthorCommentsResponse> | ErrorResponse
|
|
1777
1781
|
},
|
|
1778
1782
|
"/patreon/campaign/tiers/get": {
|
package/openapi.json
CHANGED
|
@@ -3704,6 +3704,25 @@
|
|
|
3704
3704
|
"chapters"
|
|
3705
3705
|
]
|
|
3706
3706
|
},
|
|
3707
|
+
"CommentGetAllAuthorSearch": {
|
|
3708
|
+
"type": "object",
|
|
3709
|
+
"properties": {
|
|
3710
|
+
"filter": {
|
|
3711
|
+
"anyOf": [
|
|
3712
|
+
{
|
|
3713
|
+
"type": "string",
|
|
3714
|
+
"enum": [
|
|
3715
|
+
"chapter",
|
|
3716
|
+
"work"
|
|
3717
|
+
]
|
|
3718
|
+
},
|
|
3719
|
+
{
|
|
3720
|
+
"type": "null"
|
|
3721
|
+
}
|
|
3722
|
+
]
|
|
3723
|
+
}
|
|
3724
|
+
}
|
|
3725
|
+
},
|
|
3707
3726
|
"AuthorComment": {
|
|
3708
3727
|
"type": "object",
|
|
3709
3728
|
"properties": {
|
|
@@ -11099,6 +11118,25 @@
|
|
|
11099
11118
|
"minimum": 1,
|
|
11100
11119
|
"maximum": 25
|
|
11101
11120
|
}
|
|
11121
|
+
},
|
|
11122
|
+
{
|
|
11123
|
+
"name": "filter",
|
|
11124
|
+
"in": "query",
|
|
11125
|
+
"required": false,
|
|
11126
|
+
"schema": {
|
|
11127
|
+
"anyOf": [
|
|
11128
|
+
{
|
|
11129
|
+
"type": "string",
|
|
11130
|
+
"enum": [
|
|
11131
|
+
"chapter",
|
|
11132
|
+
"work"
|
|
11133
|
+
]
|
|
11134
|
+
},
|
|
11135
|
+
{
|
|
11136
|
+
"type": "null"
|
|
11137
|
+
}
|
|
11138
|
+
]
|
|
11139
|
+
}
|
|
11102
11140
|
}
|
|
11103
11141
|
],
|
|
11104
11142
|
"responses": {
|
package/package.json
CHANGED