@k-msg/channel 0.28.0 → 0.29.1

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
@@ -60,14 +60,15 @@ if (channels.isSuccess) {
60
60
 
61
61
  ## Toolkit API (`@k-msg/channel/toolkit`)
62
62
 
63
- In-memory channel/sender helpers are now toolkit-only exports:
63
+ In-memory channel/admin helpers are now toolkit-only exports. They are local-state utilities for tests, demos, and admin tooling. They assume the channel record is already approved by the provider and do not model provider approval/review lifecycles, sender verification, or OTP issuance:
64
64
 
65
65
  - `KakaoChannelManager`
66
66
  - `KakaoSenderNumberManager`
67
67
  - `ChannelCRUD`
68
68
  - `PermissionManager`
69
69
  - `ChannelService`
70
- - verification helpers and legacy channel types
70
+ - `BusinessVerifier`
71
+ - legacy channel types
71
72
 
72
73
  ```ts
73
74
  import { KakaoChannelManager } from "@k-msg/channel/toolkit";
@@ -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";