api.fluff4.me 1.0.1084 → 1.0.1085

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.
Files changed (3) hide show
  1. package/index.d.ts +12 -0
  2. package/openapi.json +184 -0
  3. package/package.json +1 -1
package/index.d.ts CHANGED
@@ -1828,6 +1828,18 @@ export interface Paths {
1828
1828
  search: CommentGetAllAuthorSearch & PaginationSearch
1829
1829
  response: PaginatedResponse<AuthorCommentsResponse> | ErrorResponse
1830
1830
  },
1831
+ "/comments/author/{vanity}/chapter": {
1832
+ method: "get"
1833
+ body?: undefined
1834
+ search: PaginationSearch
1835
+ response: PaginatedResponse<AuthorCommentsResponse> | ErrorResponse
1836
+ },
1837
+ "/comments/author/{vanity}/work": {
1838
+ method: "get"
1839
+ body?: undefined
1840
+ search: PaginationSearch
1841
+ response: PaginatedResponse<AuthorCommentsResponse> | ErrorResponse
1842
+ },
1831
1843
  "/patreon/campaign/tiers/get": {
1832
1844
  method: "get"
1833
1845
  body?: undefined
package/openapi.json CHANGED
@@ -11532,6 +11532,190 @@
11532
11532
  }
11533
11533
  }
11534
11534
  },
11535
+ "/comments/author/{vanity}/chapter": {
11536
+ "parameters": [
11537
+ {
11538
+ "name": "vanity",
11539
+ "in": "path"
11540
+ }
11541
+ ],
11542
+ "get": {
11543
+ "parameters": [
11544
+ {
11545
+ "name": "page",
11546
+ "in": "query",
11547
+ "description": "The page of data to query from. This endpoint uses a page size of 25 by default.",
11548
+ "schema": {
11549
+ "type": "integer",
11550
+ "minimum": 0
11551
+ }
11552
+ },
11553
+ {
11554
+ "name": "page_size",
11555
+ "in": "query",
11556
+ "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.",
11557
+ "schema": {
11558
+ "type": "integer",
11559
+ "minimum": 1,
11560
+ "maximum": 25
11561
+ }
11562
+ }
11563
+ ],
11564
+ "responses": {
11565
+ "200": {
11566
+ "description": "200 response",
11567
+ "content": {
11568
+ "application/json": {
11569
+ "schema": {
11570
+ "type": "object",
11571
+ "properties": {
11572
+ "data": {
11573
+ "$ref": "#/components/schemas/AuthorCommentsResponse"
11574
+ },
11575
+ "has_more": {
11576
+ "type": "boolean"
11577
+ },
11578
+ "page": {
11579
+ "type": "number",
11580
+ "minimum": 0
11581
+ },
11582
+ "page_count": {
11583
+ "type": [
11584
+ "boolean",
11585
+ "number"
11586
+ ],
11587
+ "anyOf": [
11588
+ {
11589
+ "type": "boolean",
11590
+ "enum": [
11591
+ true
11592
+ ]
11593
+ },
11594
+ {
11595
+ "type": "number",
11596
+ "minimum": 0
11597
+ }
11598
+ ]
11599
+ }
11600
+ },
11601
+ "required": [
11602
+ "data",
11603
+ "has_more",
11604
+ "page",
11605
+ "page_count"
11606
+ ]
11607
+ }
11608
+ }
11609
+ }
11610
+ },
11611
+ "304": {
11612
+ "description": "304 response"
11613
+ },
11614
+ "default": {
11615
+ "description": "Error",
11616
+ "content": {
11617
+ "application/json": {
11618
+ "schema": {
11619
+ "$ref": "#/components/schemas/ErrorResponse"
11620
+ }
11621
+ }
11622
+ }
11623
+ }
11624
+ }
11625
+ }
11626
+ },
11627
+ "/comments/author/{vanity}/work": {
11628
+ "parameters": [
11629
+ {
11630
+ "name": "vanity",
11631
+ "in": "path"
11632
+ }
11633
+ ],
11634
+ "get": {
11635
+ "parameters": [
11636
+ {
11637
+ "name": "page",
11638
+ "in": "query",
11639
+ "description": "The page of data to query from. This endpoint uses a page size of 25 by default.",
11640
+ "schema": {
11641
+ "type": "integer",
11642
+ "minimum": 0
11643
+ }
11644
+ },
11645
+ {
11646
+ "name": "page_size",
11647
+ "in": "query",
11648
+ "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.",
11649
+ "schema": {
11650
+ "type": "integer",
11651
+ "minimum": 1,
11652
+ "maximum": 25
11653
+ }
11654
+ }
11655
+ ],
11656
+ "responses": {
11657
+ "200": {
11658
+ "description": "200 response",
11659
+ "content": {
11660
+ "application/json": {
11661
+ "schema": {
11662
+ "type": "object",
11663
+ "properties": {
11664
+ "data": {
11665
+ "$ref": "#/components/schemas/AuthorCommentsResponse"
11666
+ },
11667
+ "has_more": {
11668
+ "type": "boolean"
11669
+ },
11670
+ "page": {
11671
+ "type": "number",
11672
+ "minimum": 0
11673
+ },
11674
+ "page_count": {
11675
+ "type": [
11676
+ "boolean",
11677
+ "number"
11678
+ ],
11679
+ "anyOf": [
11680
+ {
11681
+ "type": "boolean",
11682
+ "enum": [
11683
+ true
11684
+ ]
11685
+ },
11686
+ {
11687
+ "type": "number",
11688
+ "minimum": 0
11689
+ }
11690
+ ]
11691
+ }
11692
+ },
11693
+ "required": [
11694
+ "data",
11695
+ "has_more",
11696
+ "page",
11697
+ "page_count"
11698
+ ]
11699
+ }
11700
+ }
11701
+ }
11702
+ },
11703
+ "304": {
11704
+ "description": "304 response"
11705
+ },
11706
+ "default": {
11707
+ "description": "Error",
11708
+ "content": {
11709
+ "application/json": {
11710
+ "schema": {
11711
+ "$ref": "#/components/schemas/ErrorResponse"
11712
+ }
11713
+ }
11714
+ }
11715
+ }
11716
+ }
11717
+ }
11718
+ },
11535
11719
  "/patreon/campaign/tiers/get": {
11536
11720
  "get": {
11537
11721
  "responses": {
package/package.json CHANGED
@@ -1,5 +1,5 @@
1
1
  {
2
2
  "name": "api.fluff4.me",
3
- "version": "1.0.1084",
3
+ "version": "1.0.1085",
4
4
  "types": "index.d.ts"
5
5
  }