api.fluff4.me 1.0.386 → 1.0.388

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 CHANGED
@@ -246,7 +246,7 @@ export interface ChapterUpdateBody {
246
246
 
247
247
  export interface ChapterReorderBody {
248
248
  relative_to: string
249
- position: string
249
+ position: "before" | "after"
250
250
  }
251
251
 
252
252
  export type Chapters = ChapterLite[]
package/openapi.json CHANGED
@@ -1514,7 +1514,11 @@
1514
1514
  "type": "string"
1515
1515
  },
1516
1516
  "position": {
1517
- "type": "string"
1517
+ "type": "string",
1518
+ "enum": [
1519
+ "before",
1520
+ "after"
1521
+ ]
1518
1522
  }
1519
1523
  },
1520
1524
  "required": [
package/package.json CHANGED
@@ -1,5 +1,5 @@
1
1
  {
2
2
  "name": "api.fluff4.me",
3
- "version": "1.0.386",
3
+ "version": "1.0.388",
4
4
  "types": "index.d.ts"
5
5
  }