api.fluff4.me 1.0.1050 → 1.0.1051
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 -3
- package/openapi.json +18 -4
- package/package.json +1 -1
package/index.d.ts
CHANGED
|
@@ -574,9 +574,11 @@ export interface CommentUpdateBody {
|
|
|
574
574
|
body: string
|
|
575
575
|
}
|
|
576
576
|
|
|
577
|
-
export interface
|
|
577
|
+
export interface AuthorCommentsResponse {
|
|
578
578
|
comments: AuthorComment[]
|
|
579
|
-
|
|
579
|
+
authors: AuthorMetadata[]
|
|
580
|
+
works: WorkMetadata[]
|
|
581
|
+
chapters: ChapterMetadata[]
|
|
580
582
|
}
|
|
581
583
|
|
|
582
584
|
export interface AuthorComment {
|
|
@@ -1738,7 +1740,7 @@ export interface Paths {
|
|
|
1738
1740
|
method: "get"
|
|
1739
1741
|
body?: undefined
|
|
1740
1742
|
search: PaginationSearch
|
|
1741
|
-
response: PaginatedResponse<
|
|
1743
|
+
response: PaginatedResponse<AuthorCommentsResponse> | ErrorResponse
|
|
1742
1744
|
},
|
|
1743
1745
|
"/patreon/campaign/tiers/get": {
|
|
1744
1746
|
method: "get"
|
package/openapi.json
CHANGED
|
@@ -3630,7 +3630,7 @@
|
|
|
3630
3630
|
"body"
|
|
3631
3631
|
]
|
|
3632
3632
|
},
|
|
3633
|
-
"
|
|
3633
|
+
"AuthorCommentsResponse": {
|
|
3634
3634
|
"type": "object",
|
|
3635
3635
|
"properties": {
|
|
3636
3636
|
"comments": {
|
|
@@ -3639,16 +3639,30 @@
|
|
|
3639
3639
|
"$ref": "#/components/schema/AuthorComment"
|
|
3640
3640
|
}
|
|
3641
3641
|
},
|
|
3642
|
-
"
|
|
3642
|
+
"authors": {
|
|
3643
3643
|
"type": "array",
|
|
3644
3644
|
"items": {
|
|
3645
3645
|
"$ref": "#/components/schema/AuthorMetadata"
|
|
3646
3646
|
}
|
|
3647
|
+
},
|
|
3648
|
+
"works": {
|
|
3649
|
+
"type": "array",
|
|
3650
|
+
"items": {
|
|
3651
|
+
"$ref": "#/components/schema/WorkMetadata"
|
|
3652
|
+
}
|
|
3653
|
+
},
|
|
3654
|
+
"chapters": {
|
|
3655
|
+
"type": "array",
|
|
3656
|
+
"items": {
|
|
3657
|
+
"$ref": "#/components/schema/ChapterMetadata"
|
|
3658
|
+
}
|
|
3647
3659
|
}
|
|
3648
3660
|
},
|
|
3649
3661
|
"required": [
|
|
3650
3662
|
"comments",
|
|
3651
|
-
"
|
|
3663
|
+
"authors",
|
|
3664
|
+
"works",
|
|
3665
|
+
"chapters"
|
|
3652
3666
|
]
|
|
3653
3667
|
},
|
|
3654
3668
|
"AuthorComment": {
|
|
@@ -10855,7 +10869,7 @@
|
|
|
10855
10869
|
"type": "object",
|
|
10856
10870
|
"properties": {
|
|
10857
10871
|
"data": {
|
|
10858
|
-
"$ref": "#/components/schemas/
|
|
10872
|
+
"$ref": "#/components/schemas/AuthorCommentsResponse"
|
|
10859
10873
|
},
|
|
10860
10874
|
"has_more": {
|
|
10861
10875
|
"type": "boolean"
|
package/package.json
CHANGED