@book000/pixivts 0.56.5 → 0.56.7

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/dist/index.cjs CHANGED
@@ -5,6 +5,7 @@ var OkResultImpl = class _OkResultImpl {
5
5
  constructor(value) {
6
6
  this.value = value;
7
7
  }
8
+ value;
8
9
  isOk = true;
9
10
  isErr = false;
10
11
  map(fn) {
@@ -31,6 +32,7 @@ var ErrResultImpl = class _ErrResultImpl {
31
32
  constructor(error) {
32
33
  this.error = error;
33
34
  }
35
+ error;
34
36
  isOk = false;
35
37
  isErr = true;
36
38
  // eslint-disable-next-line @typescript-eslint/no-unnecessary-type-parameters, @typescript-eslint/no-unused-vars -- U is part of the public API contract; _fn is intentionally unused (ErrResult.map is a no-op)
package/dist/index.js CHANGED
@@ -3,6 +3,7 @@ var OkResultImpl = class _OkResultImpl {
3
3
  constructor(value) {
4
4
  this.value = value;
5
5
  }
6
+ value;
6
7
  isOk = true;
7
8
  isErr = false;
8
9
  map(fn) {
@@ -29,6 +30,7 @@ var ErrResultImpl = class _ErrResultImpl {
29
30
  constructor(error) {
30
31
  this.error = error;
31
32
  }
33
+ error;
32
34
  isOk = false;
33
35
  isErr = true;
34
36
  // eslint-disable-next-line @typescript-eslint/no-unnecessary-type-parameters, @typescript-eslint/no-unused-vars -- U is part of the public API contract; _fn is intentionally unused (ErrResult.map is a no-op)
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@book000/pixivts",
3
- "version": "0.56.5",
3
+ "version": "0.56.7",
4
4
  "description": "pixiv Unofficial API Library for TypeScript",
5
5
  "keywords": [
6
6
  "pixiv",
@@ -43,11 +43,11 @@
43
43
  "@types/node": "24.13.2",
44
44
  "@vitest/coverage-v8": "3.2.6",
45
45
  "msw": "2.14.6",
46
- "tsup": "8.5.0",
46
+ "tsup": "8.5.1",
47
47
  "typedoc": "0.28.19",
48
48
  "typescript": "6.0.3",
49
49
  "vitest": "3.2.6",
50
- "zod": "3.24.1"
50
+ "zod": "3.25.76"
51
51
  },
52
52
  "scripts": {
53
53
  "build": "tsup",