@k-msg/channel 0.27.2 → 0.29.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 -2
- package/dist/toolkit/index.d.ts +0 -1
- package/dist/toolkit/index.js +23 -23
- package/dist/toolkit/index.mjs +23 -23
- package/dist/toolkit/kakao/sender-number.d.ts +0 -7
- package/dist/toolkit/services/channel.service.d.ts +1 -2
- package/dist/types/channel.types.d.ts +39 -46
- package/package.json +4 -2
- package/dist/toolkit/verification/number.verify.d.ts +0 -189
package/README.md
CHANGED
|
@@ -60,14 +60,15 @@ if (channels.isSuccess) {
|
|
|
60
60
|
|
|
61
61
|
## Toolkit API (`@k-msg/channel/toolkit`)
|
|
62
62
|
|
|
63
|
-
In-memory channel/
|
|
63
|
+
In-memory channel/admin helpers are now toolkit-only exports. They are local-state utilities for tests, demos, and admin tooling. They do not model provider-backed sender verification or OTP issuance:
|
|
64
64
|
|
|
65
65
|
- `KakaoChannelManager`
|
|
66
66
|
- `KakaoSenderNumberManager`
|
|
67
67
|
- `ChannelCRUD`
|
|
68
68
|
- `PermissionManager`
|
|
69
69
|
- `ChannelService`
|
|
70
|
-
-
|
|
70
|
+
- `BusinessVerifier`
|
|
71
|
+
- legacy channel types
|
|
71
72
|
|
|
72
73
|
```ts
|
|
73
74
|
import { KakaoChannelManager } from "@k-msg/channel/toolkit";
|
package/dist/toolkit/index.d.ts
CHANGED
|
@@ -5,4 +5,3 @@ export { type AuditLogEntry, ChannelCRUD, type ChannelCRUDOptions, type Paginate
|
|
|
5
5
|
export { type AccessContext, ActionType, type Permission, type PermissionCheck, PermissionManager, type PermissionResult, PermissionScope, ResourceType, type Role, type User, } from "./management/permissions";
|
|
6
6
|
export { ChannelService } from "./services/channel.service";
|
|
7
7
|
export { type AutoVerificationResult, type BusinessInfo, BusinessVerifier, type BusinessVerifierOptions, type DocumentValidationResult, type VerificationRequest, } from "./verification/business.verify";
|
|
8
|
-
export { NumberVerifier, type NumberVerifierOptions, type PhoneNumberInfo, type PhoneVerificationRequest, type PhoneVerificationStatus, type SMSProvider, type VerificationAttempt, VerificationMethod, VerificationType, type VoiceProvider, } from "./verification/number.verify";
|