k-msg 0.14.0 → 0.15.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 +3 -1
- package/package.json +2 -2
package/README.md
CHANGED
|
@@ -7,6 +7,7 @@ Unified package that re-exports the main public API:
|
|
|
7
7
|
Provider implementations and advanced/runtime-specific APIs should be imported directly from their packages:
|
|
8
8
|
|
|
9
9
|
- `@k-msg/provider`
|
|
10
|
+
- `@k-msg/provider/solapi`
|
|
10
11
|
- `@k-msg/messaging/tracking`
|
|
11
12
|
- `@k-msg/messaging/{sender,queue}`
|
|
12
13
|
- `@k-msg/messaging/adapters/*`
|
|
@@ -23,7 +24,8 @@ bun add k-msg
|
|
|
23
24
|
|
|
24
25
|
```ts
|
|
25
26
|
import { KMsg } from "k-msg";
|
|
26
|
-
import { IWINVProvider
|
|
27
|
+
import { IWINVProvider } from "@k-msg/provider";
|
|
28
|
+
import { SolapiProvider } from "@k-msg/provider/solapi";
|
|
27
29
|
|
|
28
30
|
const kmsg = new KMsg({
|
|
29
31
|
providers: [
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "k-msg",
|
|
3
|
-
"version": "0.
|
|
3
|
+
"version": "0.15.0",
|
|
4
4
|
"packageManager": "bun@1.3.8",
|
|
5
5
|
"description": "K-Message: Korean Multi-Channel Messaging Platform - Unified Package",
|
|
6
6
|
"type": "module",
|
|
@@ -42,7 +42,7 @@
|
|
|
42
42
|
"publish": "bun publish --access public"
|
|
43
43
|
},
|
|
44
44
|
"dependencies": {
|
|
45
|
-
"@k-msg/messaging": "0.
|
|
45
|
+
"@k-msg/messaging": "0.15.0"
|
|
46
46
|
},
|
|
47
47
|
"devDependencies": {
|
|
48
48
|
"typescript": "^5.7.2",
|