File tree Expand file tree Collapse file tree
Expand file tree Collapse file tree Original file line number Diff line number Diff line change @@ -8,24 +8,33 @@ This package is 100% compatible with SOLAPI family services (CoolSMS and etc..).
88
99To use the SDK, simply use npm package manager CLI. Type the following into a terminal window.
1010
11- ### NPM
11+ <details >
12+ <summary ><strong >npm</strong ></summary >
1213
1314``` bash
1415npm install --save solapi
1516```
1617
17- ### Yarn
18+ </details >
19+
20+ <details >
21+ <summary ><strong >yarn</strong ></summary >
1822
1923``` bash
2024yarn add solapi
2125```
2226
23- ### PNPM
27+ </details >
28+
29+ <details >
30+ <summary ><strong >pnpm</strong ></summary >
2431
2532``` bash
2633pnpm add solapi
2734```
2835
36+ </details >
37+
2938## Usage
3039
3140See [ examples folders] ( https://github.com/solapi/solapi-nodejs/tree/master/examples )
Original file line number Diff line number Diff line change @@ -60,7 +60,7 @@ export default class MessageService extends DefaultService {
6060 appId ?: string ,
6161 ) : Promise < SingleMessageSentResponse > {
6262 // Effect-Schema 기반 런타임 검증
63- const parsedMessage = Schema . decodeSync ( requestSendOneMessageSchema ) (
63+ const parsedMessage = Schema . decodeUnknownSync ( requestSendOneMessageSchema ) (
6464 message ,
6565 ) ;
6666
You can’t perform that action at this time.
0 commit comments