@bolta-io/cli 0.0.12 → 0.0.13
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 +26 -0
- package/package.json +1 -1
package/README.md
CHANGED
|
@@ -129,6 +129,9 @@ bolta invoice amend change-supply-cost <issuanceKey> --data '{
|
|
|
129
129
|
"tax": -20000
|
|
130
130
|
}]
|
|
131
131
|
}'
|
|
132
|
+
|
|
133
|
+
# 수정발행: 착오에 의한 이중발급 (입력 데이터 불필요)
|
|
134
|
+
bolta invoice amend double-issuance <issuanceKey>
|
|
132
135
|
```
|
|
133
136
|
|
|
134
137
|
#### 설정
|
|
@@ -139,6 +142,29 @@ bolta config show # 현재 설정 확인
|
|
|
139
142
|
bolta config test # API 연결 테스트
|
|
140
143
|
```
|
|
141
144
|
|
|
145
|
+
#### 도움말
|
|
146
|
+
|
|
147
|
+
```bash
|
|
148
|
+
# 주요 개념 안내 (customer-key, payment, workflow, glossary)
|
|
149
|
+
bolta guide [topic]
|
|
150
|
+
|
|
151
|
+
# 바로 쓸 수 있는 샘플 JSON
|
|
152
|
+
bolta examples [command]
|
|
153
|
+
|
|
154
|
+
# JSON 입력 스키마 조회
|
|
155
|
+
bolta schema [command]
|
|
156
|
+
```
|
|
157
|
+
|
|
158
|
+
#### 업데이트
|
|
159
|
+
|
|
160
|
+
```bash
|
|
161
|
+
# 최신 버전으로 업데이트
|
|
162
|
+
bolta update
|
|
163
|
+
|
|
164
|
+
# 업데이트 가능 여부 확인
|
|
165
|
+
bolta update check
|
|
166
|
+
```
|
|
167
|
+
|
|
142
168
|
### 입력 방법
|
|
143
169
|
|
|
144
170
|
데이터가 필요한 커맨드는 3가지 입력 방식을 지원합니다.
|