@k-msg/core 0.15.0 → 0.17.0

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/README.md CHANGED
@@ -5,10 +5,10 @@ Core types and utilities for the `k-msg` ecosystem.
5
5
  This package intentionally stays low-level:
6
6
 
7
7
  - Standard message model: `MessageType`, `SendInput`, `SendOptions`, `SendResult`
8
- - Provider interface: `Provider`
8
+ - Provider interfaces: `Provider`, optional capability `BalanceProvider`
9
9
  - Result pattern: `Result`, `ok`, `fail`
10
10
  - Errors: `KMsgError`, `KMsgErrorCode`
11
- - Resilience helpers: retry / circuit-breaker / rate-limit / health monitor
11
+ - Resilience helpers: retry / circuit-breaker / rate-limit / bulk operation
12
12
 
13
13
  If you want the end-user "send" experience, use `KMsg` from `@k-msg/messaging` (or `k-msg`).
14
14
 
@@ -70,4 +70,3 @@ export class MyProvider implements Provider {
70
70
  }
71
71
  }
72
72
  ```
73
-
package/dist/index.d.ts CHANGED
@@ -1,8 +1,7 @@
1
- export * from "./config";
2
1
  export * from "./errors";
3
- export * from "./health";
4
2
  export * from "./logger";
5
3
  export * from "./provider";
6
4
  export * from "./resilience/index";
7
5
  export * from "./result";
6
+ export * from "./runtime/env";
8
7
  export * from "./types/index";