@teamlearners/clawops 0.5.1 → 0.5.3

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
@@ -183,6 +183,15 @@ const mms = await client.messages.create({
183
183
  subject: '제목',
184
184
  });
185
185
 
186
+ // LMS (장문 문자) 발송
187
+ const lms = await client.messages.create({
188
+ to: '01012345678',
189
+ from: '07052358010',
190
+ body: '긴 내용의 메시지입니다...',
191
+ type: 'lms',
192
+ subject: '알림',
193
+ });
194
+
186
195
  // 메시지 목록 조회 (필터링)
187
196
  const msgPage = await client.messages.list({ type: 'sms', status: 'sent', page: 0, pageSize: 20 });
188
197
  for (const m of msgPage) {