@shisho/plugin-sdk 0.0.38 → 0.0.40

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 (2) hide show
  1. package/metadata.d.ts +2 -0
  2. package/package.json +2 -2
package/metadata.d.ts CHANGED
@@ -36,6 +36,8 @@ export interface ParsedMetadata {
36
36
  narrators?: string[];
37
37
  series?: string;
38
38
  seriesNumber?: number;
39
+ /** Whether the series number refers to a volume or a chapter. CBZ only. */
40
+ seriesNumberUnit?: "volume" | "chapter";
39
41
  genres?: string[];
40
42
  tags?: string[];
41
43
  description?: string;
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@shisho/plugin-sdk",
3
- "version": "0.0.38",
3
+ "version": "0.0.40",
4
4
  "description": "TypeScript SDK for Shisho plugin development — types, host API declarations, and test utilities",
5
5
  "homepage": "https://github.com/shishobooks/shisho/blob/master/packages/plugin-sdk/README.md",
6
6
  "types": "index.d.ts",
@@ -26,7 +26,7 @@
26
26
  "directory": "packages/plugin-sdk"
27
27
  },
28
28
  "dependencies": {
29
- "fast-xml-parser": "^5.7.1",
29
+ "fast-xml-parser": "^5.7.2",
30
30
  "linkedom": "^0.18.12",
31
31
  "yaml": "^2.6.1"
32
32
  }