api.fluff4.me 1.0.989 → 1.0.992

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 +20 -0
  2. package/openapi.json +137 -0
  3. package/package.json +1 -1
package/index.d.ts CHANGED
@@ -821,6 +821,7 @@ export interface FeedSearch {
821
821
  maximum_word_count?: number | null
822
822
  blacklisted_work_statuses?: ("Cancelled" | "Hiatus" | "Ongoing" | "Complete")[] | null
823
823
  search?: string | null
824
+ is_following?: boolean | null
824
825
  }
825
826
 
826
827
  export interface HistoryResponse {
@@ -963,6 +964,7 @@ export interface ShelfInsertable {
963
964
  minimum_word_count?: (number | false) | null
964
965
  maximum_word_count?: (number | false) | null
965
966
  blacklisted_work_statuses?: (("Cancelled" | "Hiatus" | "Ongoing" | "Complete")[] | false) | null
967
+ is_following?: boolean | null
966
968
  }
967
969
 
968
970
  export interface Shelf {
@@ -1917,6 +1919,24 @@ export interface Paths {
1917
1919
  search?: undefined
1918
1920
  response: void | ErrorResponse
1919
1921
  },
1922
+ "/history/bookmarks/{author}/{vanity}/delete/all": {
1923
+ method: "post"
1924
+ body?: undefined
1925
+ search?: undefined
1926
+ response: void | ErrorResponse
1927
+ },
1928
+ "/history/bookmarks/{author}/{vanity}/delete/furthest-read": {
1929
+ method: "post"
1930
+ body?: undefined
1931
+ search?: undefined
1932
+ response: void | ErrorResponse
1933
+ },
1934
+ "/history/bookmarks/{author}/{vanity}/delete/last-read": {
1935
+ method: "post"
1936
+ body?: undefined
1937
+ search?: undefined
1938
+ response: void | ErrorResponse
1939
+ },
1920
1940
  "/supporter/status": {
1921
1941
  method: "get"
1922
1942
  body?: undefined
package/openapi.json CHANGED
@@ -4723,6 +4723,16 @@
4723
4723
  "type": "null"
4724
4724
  }
4725
4725
  ]
4726
+ },
4727
+ "is_following": {
4728
+ "anyOf": [
4729
+ {
4730
+ "type": "boolean"
4731
+ },
4732
+ {
4733
+ "type": "null"
4734
+ }
4735
+ ]
4726
4736
  }
4727
4737
  }
4728
4738
  },
@@ -5640,6 +5650,16 @@
5640
5650
  "type": "null"
5641
5651
  }
5642
5652
  ]
5653
+ },
5654
+ "is_following": {
5655
+ "anyOf": [
5656
+ {
5657
+ "type": "boolean"
5658
+ },
5659
+ {
5660
+ "type": "null"
5661
+ }
5662
+ ]
5643
5663
  }
5644
5664
  },
5645
5665
  "required": [
@@ -11694,6 +11714,21 @@
11694
11714
  }
11695
11715
  ]
11696
11716
  }
11717
+ },
11718
+ {
11719
+ "name": "is_following",
11720
+ "in": "query",
11721
+ "required": false,
11722
+ "schema": {
11723
+ "anyOf": [
11724
+ {
11725
+ "type": "boolean"
11726
+ },
11727
+ {
11728
+ "type": "null"
11729
+ }
11730
+ ]
11731
+ }
11697
11732
  }
11698
11733
  ],
11699
11734
  "responses": {
@@ -12039,6 +12074,21 @@
12039
12074
  }
12040
12075
  ]
12041
12076
  }
12077
+ },
12078
+ {
12079
+ "name": "is_following",
12080
+ "in": "query",
12081
+ "required": false,
12082
+ "schema": {
12083
+ "anyOf": [
12084
+ {
12085
+ "type": "boolean"
12086
+ },
12087
+ {
12088
+ "type": "null"
12089
+ }
12090
+ ]
12091
+ }
12042
12092
  }
12043
12093
  ],
12044
12094
  "responses": {
@@ -12491,6 +12541,93 @@
12491
12541
  }
12492
12542
  }
12493
12543
  },
12544
+ "/history/bookmarks/{author}/{vanity}/delete/all": {
12545
+ "parameters": [
12546
+ {
12547
+ "name": "author",
12548
+ "in": "path"
12549
+ },
12550
+ {
12551
+ "name": "vanity",
12552
+ "in": "path"
12553
+ }
12554
+ ],
12555
+ "post": {
12556
+ "responses": {
12557
+ "200": {
12558
+ "description": "200 response"
12559
+ },
12560
+ "default": {
12561
+ "description": "Error",
12562
+ "content": {
12563
+ "application/json": {
12564
+ "schema": {
12565
+ "$ref": "#/components/schemas/ErrorResponse"
12566
+ }
12567
+ }
12568
+ }
12569
+ }
12570
+ }
12571
+ }
12572
+ },
12573
+ "/history/bookmarks/{author}/{vanity}/delete/furthest-read": {
12574
+ "parameters": [
12575
+ {
12576
+ "name": "author",
12577
+ "in": "path"
12578
+ },
12579
+ {
12580
+ "name": "vanity",
12581
+ "in": "path"
12582
+ }
12583
+ ],
12584
+ "post": {
12585
+ "responses": {
12586
+ "200": {
12587
+ "description": "200 response"
12588
+ },
12589
+ "default": {
12590
+ "description": "Error",
12591
+ "content": {
12592
+ "application/json": {
12593
+ "schema": {
12594
+ "$ref": "#/components/schemas/ErrorResponse"
12595
+ }
12596
+ }
12597
+ }
12598
+ }
12599
+ }
12600
+ }
12601
+ },
12602
+ "/history/bookmarks/{author}/{vanity}/delete/last-read": {
12603
+ "parameters": [
12604
+ {
12605
+ "name": "author",
12606
+ "in": "path"
12607
+ },
12608
+ {
12609
+ "name": "vanity",
12610
+ "in": "path"
12611
+ }
12612
+ ],
12613
+ "post": {
12614
+ "responses": {
12615
+ "200": {
12616
+ "description": "200 response"
12617
+ },
12618
+ "default": {
12619
+ "description": "Error",
12620
+ "content": {
12621
+ "application/json": {
12622
+ "schema": {
12623
+ "$ref": "#/components/schemas/ErrorResponse"
12624
+ }
12625
+ }
12626
+ }
12627
+ }
12628
+ }
12629
+ }
12630
+ },
12494
12631
  "/supporter/status": {
12495
12632
  "get": {
12496
12633
  "responses": {
package/package.json CHANGED
@@ -1,5 +1,5 @@
1
1
  {
2
2
  "name": "api.fluff4.me",
3
- "version": "1.0.989",
3
+ "version": "1.0.992",
4
4
  "types": "index.d.ts"
5
5
  }