api.fluff4.me 1.0.364 → 1.0.366

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 +6 -6
  2. package/openapi.json +18 -18
  3. package/package.json +1 -1
package/index.d.ts CHANGED
@@ -644,7 +644,7 @@ export interface Paths {
644
644
  body: ChapterCreateBody
645
645
  response: Response<Chapter> | ErrorResponse
646
646
  },
647
- "/work/{author}/{vanity}/chapter/{url}/get": {
647
+ "/work/{author}/{work}/chapter/{url}/get": {
648
648
  method: "get"
649
649
  body?: undefined
650
650
  response: PaginatedResponse<Chapter> | ErrorResponse
@@ -679,7 +679,7 @@ export interface Paths {
679
679
  body?: undefined
680
680
  response: PaginatedResponse<Chapters> | ErrorResponse
681
681
  },
682
- "/work/{author}/{vanity}/chapters/paged": {
682
+ "/work/{author}/{work}/chapters/paged": {
683
683
  method: "get"
684
684
  body?: undefined
685
685
  response: PaginatedResponse<Chapter> | ErrorResponse
@@ -1084,22 +1084,22 @@ export interface Paths {
1084
1084
  body?: undefined
1085
1085
  response: PaginatedResponse<History> | ErrorResponse
1086
1086
  },
1087
- "/history/add/{author_vanity}/{work_vanity}": {
1087
+ "/history/add/{author}/{vanity}": {
1088
1088
  method: "post"
1089
1089
  body?: undefined
1090
1090
  response: void | ErrorResponse
1091
1091
  },
1092
- "/history/add/{author_vanity}/{work_vanity}/chapter/{chapter_url}": {
1092
+ "/history/add/{author}/{work}/chapter/{url}": {
1093
1093
  method: "post"
1094
1094
  body?: undefined
1095
1095
  response: void | ErrorResponse
1096
1096
  },
1097
- "/history/delete/{author_vanity}/{work_vanity}/chapter/{chapter_url}": {
1097
+ "/history/delete/{author}/{work}/chapter/{url}": {
1098
1098
  method: "post"
1099
1099
  body?: undefined
1100
1100
  response: void | ErrorResponse
1101
1101
  },
1102
- "/history/delete/{author_vanity}/{work_vanity}": {
1102
+ "/history/delete/{author}/{vanity}": {
1103
1103
  method: "post"
1104
1104
  body?: undefined
1105
1105
  response: void | ErrorResponse
package/openapi.json CHANGED
@@ -3621,14 +3621,14 @@
3621
3621
  }
3622
3622
  }
3623
3623
  },
3624
- "/work/{author}/{vanity}/chapter/{url}/get": {
3624
+ "/work/{author}/{work}/chapter/{url}/get": {
3625
3625
  "parameters": [
3626
3626
  {
3627
3627
  "name": "author",
3628
3628
  "in": "path"
3629
3629
  },
3630
3630
  {
3631
- "name": "vanity",
3631
+ "name": "work",
3632
3632
  "in": "path"
3633
3633
  },
3634
3634
  {
@@ -4019,14 +4019,14 @@
4019
4019
  }
4020
4020
  }
4021
4021
  },
4022
- "/work/{author}/{vanity}/chapters/paged": {
4022
+ "/work/{author}/{work}/chapters/paged": {
4023
4023
  "parameters": [
4024
4024
  {
4025
4025
  "name": "author",
4026
4026
  "in": "path"
4027
4027
  },
4028
4028
  {
4029
- "name": "vanity",
4029
+ "name": "work",
4030
4030
  "in": "path"
4031
4031
  }
4032
4032
  ],
@@ -7785,14 +7785,14 @@
7785
7785
  }
7786
7786
  }
7787
7787
  },
7788
- "/history/add/{author_vanity}/{work_vanity}": {
7788
+ "/history/add/{author}/{vanity}": {
7789
7789
  "parameters": [
7790
7790
  {
7791
- "name": "author_vanity",
7791
+ "name": "author",
7792
7792
  "in": "path"
7793
7793
  },
7794
7794
  {
7795
- "name": "work_vanity",
7795
+ "name": "vanity",
7796
7796
  "in": "path"
7797
7797
  }
7798
7798
  ],
@@ -7814,18 +7814,18 @@
7814
7814
  }
7815
7815
  }
7816
7816
  },
7817
- "/history/add/{author_vanity}/{work_vanity}/chapter/{chapter_url}": {
7817
+ "/history/add/{author}/{work}/chapter/{url}": {
7818
7818
  "parameters": [
7819
7819
  {
7820
- "name": "author_vanity",
7820
+ "name": "author",
7821
7821
  "in": "path"
7822
7822
  },
7823
7823
  {
7824
- "name": "work_vanity",
7824
+ "name": "work",
7825
7825
  "in": "path"
7826
7826
  },
7827
7827
  {
7828
- "name": "chapter_url",
7828
+ "name": "url",
7829
7829
  "in": "path"
7830
7830
  }
7831
7831
  ],
@@ -7847,18 +7847,18 @@
7847
7847
  }
7848
7848
  }
7849
7849
  },
7850
- "/history/delete/{author_vanity}/{work_vanity}/chapter/{chapter_url}": {
7850
+ "/history/delete/{author}/{work}/chapter/{url}": {
7851
7851
  "parameters": [
7852
7852
  {
7853
- "name": "author_vanity",
7853
+ "name": "author",
7854
7854
  "in": "path"
7855
7855
  },
7856
7856
  {
7857
- "name": "work_vanity",
7857
+ "name": "work",
7858
7858
  "in": "path"
7859
7859
  },
7860
7860
  {
7861
- "name": "chapter_url",
7861
+ "name": "url",
7862
7862
  "in": "path"
7863
7863
  }
7864
7864
  ],
@@ -7880,14 +7880,14 @@
7880
7880
  }
7881
7881
  }
7882
7882
  },
7883
- "/history/delete/{author_vanity}/{work_vanity}": {
7883
+ "/history/delete/{author}/{vanity}": {
7884
7884
  "parameters": [
7885
7885
  {
7886
- "name": "author_vanity",
7886
+ "name": "author",
7887
7887
  "in": "path"
7888
7888
  },
7889
7889
  {
7890
- "name": "work_vanity",
7890
+ "name": "vanity",
7891
7891
  "in": "path"
7892
7892
  }
7893
7893
  ],
package/package.json CHANGED
@@ -1,5 +1,5 @@
1
1
  {
2
2
  "name": "api.fluff4.me",
3
- "version": "1.0.364",
3
+ "version": "1.0.366",
4
4
  "types": "index.d.ts"
5
5
  }