@connextable/popbill-spec 1.0.0 → 1.0.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 +33 -0
- package/package.json +1 -1
package/README.md
ADDED
|
@@ -0,0 +1,33 @@
|
|
|
1
|
+
# @connextable/popbill-spec
|
|
2
|
+
|
|
3
|
+
Popbill API 원본 요청/응답 타입 패키지입니다.
|
|
4
|
+
|
|
5
|
+
SDK 내부 구현, adapter, 또는 원본 API 모델을 직접 다루는 고급 사용자를 위한 패키지입니다. 일반 애플리케이션 코드는 보통 `@connextable/popbill` 또는 `@connextable/popbill-compat`부터 사용합니다.
|
|
6
|
+
|
|
7
|
+
## 요구사항
|
|
8
|
+
|
|
9
|
+
- Node.js 20+
|
|
10
|
+
|
|
11
|
+
## 설치
|
|
12
|
+
|
|
13
|
+
```sh
|
|
14
|
+
npm install @connextable/popbill-spec
|
|
15
|
+
```
|
|
16
|
+
|
|
17
|
+
## 사용 예시
|
|
18
|
+
|
|
19
|
+
```ts
|
|
20
|
+
import type { TaxInvoiceSpec } from '@connextable/popbill-spec'
|
|
21
|
+
import { PopbillRequestHeaders } from '@connextable/popbill-spec'
|
|
22
|
+
```
|
|
23
|
+
|
|
24
|
+
## Export Paths
|
|
25
|
+
|
|
26
|
+
- `@connextable/popbill-spec`: 공통 인증, 헤더, 요청, 에러 코드, 전자세금계산서 타입
|
|
27
|
+
- `@connextable/popbill-spec/tax-invoice`: 전자세금계산서 요청/응답 모델
|
|
28
|
+
- `@connextable/popbill-spec/tax-invoice/shims`: 호환 shim 타입
|
|
29
|
+
|
|
30
|
+
## 관련 문서
|
|
31
|
+
|
|
32
|
+
- 저장소 가이드: [../../README.md](../../README.md)
|
|
33
|
+
- 생성 SDK 문서: [../../docs/sdk/README.md](../../docs/sdk/README.md)
|