@k-msg/core 0.29.7 → 0.29.8

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.
@@ -13,10 +13,6 @@ export declare class FieldCryptoError extends KMsgError {
13
13
  readonly openFallback?: FieldCryptoOpenFallback;
14
14
  constructor(kind: FieldCryptoErrorKind, message: string, details?: Record<string, unknown>, metadata?: FieldCryptoErrorMetadata);
15
15
  toJSON(): {
16
- kind: FieldCryptoErrorKind;
17
- fieldPath: string | undefined;
18
- failMode: FieldCryptoFailMode | undefined;
19
- openFallback: FieldCryptoOpenFallback | undefined;
20
16
  name: string;
21
17
  code: KMsgErrorCode;
22
18
  message: string;
@@ -28,5 +24,9 @@ export declare class FieldCryptoError extends KMsgError {
28
24
  retryAfterMs: number | undefined;
29
25
  attempt: number | undefined;
30
26
  causeChain: unknown[] | undefined;
27
+ kind: FieldCryptoErrorKind;
28
+ fieldPath: string | undefined;
29
+ failMode: FieldCryptoFailMode | undefined;
30
+ openFallback: FieldCryptoOpenFallback | undefined;
31
31
  };
32
32
  }
package/package.json CHANGED
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "name": "@k-msg/core",
3
- "version": "0.29.7",
4
- "packageManager": "bun@1.3.11",
3
+ "version": "0.29.8",
4
+ "packageManager": "bun@1.3.13",
5
5
  "description": "Core types and interfaces for K-Message platform",
6
6
  "type": "module",
7
7
  "main": "./dist/index.js",
@@ -30,17 +30,18 @@
30
30
  "test:e2e": "bun test --testPathPattern='.*\\.e2e\\.(ts|js)$' --testTimeout=30000",
31
31
  "test:coverage": "bun test --coverage",
32
32
  "test:watch": "bun test --watch",
33
- "typecheck": "tsc --noEmit",
33
+ "typecheck": "ttsc --noEmit",
34
34
  "clean": "rm -rf dist tsconfig.tsbuildinfo",
35
35
  "pack": "bun pm pack",
36
36
  "publish": "bun publish --access public"
37
37
  },
38
38
  "dependencies": {
39
- "zod": "^4.0.14"
39
+ "zod": "^4.4.3"
40
40
  },
41
41
  "devDependencies": {
42
42
  "@types/bun": "^1.3.14",
43
- "typescript": "^6.0.3"
43
+ "ttsc": "^0.18.1",
44
+ "typescript": "^7.0.2"
44
45
  },
45
46
  "peerDependencies": {},
46
47
  "files": [