@connextable/popbill-spec 1.0.0

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.
@@ -0,0 +1,2431 @@
1
+ import { $ as TaxInvoiceSearchCloseDownState, A as TaxInvoiceStateCodeDefinitionValue, B as TaxInvoiceApiRequestHeaders, C as TAX_INVOICE_STATE_CODES, D as TaxInvoiceResponseCodeGroups, E as TaxInvoiceNtsResultCodeDefinitionValue, F as IssueType, G as TaxInvoiceDateTypeMap, H as TaxInvoiceBulkIssueRequestHeaders, I as IssueTypeMap, J as TaxInvoiceMgtKeyType, K as TaxInvoiceEmailType, L as PurposeType, M as CloseDownStateMap, N as InvoiceeType, O as TaxInvoiceStateCode, P as InvoiceeTypeMap, Q as TaxInvoiceRequireRequestFields, R as PurposeTypeMap, S as TAX_INVOICE_RESPONSE_CODES, T as TaxInvoiceNtsResultCodeDefinition, U as TaxInvoiceDateString, V as TaxInvoiceApiResponseBase, W as TaxInvoiceDateType, X as TaxInvoiceModifyCode, Y as TaxInvoiceMgtKeyTypeMap, Z as TaxInvoiceModifyCodeMap, _ as TaxInvoiceLogApiModel, a as TaxInvoiceGetInfoApiResponse, b as TaxInvoiceTaxCertInfoApiModel, c as TaxInvoiceApiModel, d as TaxInvoiceBulkSubmitResponseApiModel, et as TaxInvoiceSearchCloseDownStateMap, f as TaxInvoiceDetailApiModel, g as TaxInvoiceIssueResponseApiModel, h as TaxInvoiceInfoApiModel, i as TaxInvoiceGetInfoApiRequestQuery, it as TaxTypeMap, j as CloseDownState, k as TaxInvoiceStateCodeDefinition, l as TaxInvoiceBulkResultApiModel, m as TaxInvoiceFileMetaApiModel, n as TaxInvoiceGetInfoApiRequestBody, nt as TaxInvoiceSortOrderMap, o as TaxInvoiceInfoApiResponse, p as TaxInvoiceEmailConfigApiModel, q as TaxInvoiceEmailTypeMap, r as TaxInvoiceGetInfoApiRequestPath, rt as TaxType, s as TaxInvoiceAdditionalContactApiModel, t as TaxInvoiceGetInfoApiRequest, tt as TaxInvoiceSortOrder, u as TaxInvoiceBulkResultItemApiModel, v as TaxInvoiceSearchResultApiModel, w as TaxInvoiceNtsResultCode, x as TAX_INVOICE_NTS_RESULT_CODES, y as TaxInvoiceSearchResultItemApiModel, z as TaxInvoiceApiRequest } from "./get-info-PUH8dt9f.mjs";
2
+
3
+ //#region \0rolldown/runtime.js
4
+ //#endregion
5
+ //#region src/tax-invoice/issue/regist-issue.d.ts
6
+ /**
7
+ * TaxInvoice RegistIssue Raw Spec
8
+ *
9
+ * Source
10
+ * - https://developers.popbill.com/api-reference/taxinvoice/api/issue
11
+ */
12
+ /**
13
+ * RegistIssue API path 파라미터.
14
+ */
15
+ type TaxInvoiceRegistIssueApiRequestPath = never;
16
+ /**
17
+ * RegistIssue API query 파라미터.
18
+ */
19
+ type TaxInvoiceRegistIssueApiRequestQuery = never;
20
+ /**
21
+ * RegistIssue API body(raw).
22
+ */
23
+ type TaxInvoiceRegistIssueApiRequestBody = TaxInvoiceApiModel & {
24
+ /**
25
+ * 거래명세서 동시작성 여부.
26
+ *
27
+ * 공급받는자 유형이 `사업자`인 경우에만 사용할 수 있다.
28
+ */
29
+ writeSpecification?: boolean;
30
+ /**
31
+ * 지연발행 가능 여부.
32
+ *
33
+ * `true`: 가능
34
+ * `false`: 불가능 (기본값)
35
+ */
36
+ forceIssue?: boolean;
37
+ /**
38
+ * 세금계산서 상태 이력 관리를 위한 메모.
39
+ */
40
+ memo?: string;
41
+ /**
42
+ * 세금계산서 발행 안내메일 제목.
43
+ *
44
+ * 미입력 시 팝빌 기본 제목을 사용한다.
45
+ */
46
+ emailSubject?: string;
47
+ /**
48
+ * 거래명세서 문서번호.
49
+ */
50
+ dealInvoiceMgtKey?: string;
51
+ };
52
+ /**
53
+ * RegistIssue API 요청(raw).
54
+ */
55
+ type TaxInvoiceRegistIssueApiRequest = TaxInvoiceRequireRequestFields<TaxInvoiceApiRequest<TaxInvoiceRegistIssueApiRequestPath, TaxInvoiceRegistIssueApiRequestQuery, TaxInvoiceRegistIssueApiRequestBody>, 'body'>;
56
+ type TaxInvoiceRegistIssueApiResponse = TaxInvoiceIssueResponseApiModel;
57
+ //#endregion
58
+ //#region src/tax-invoice/issue/bulk-submit.d.ts
59
+ /**
60
+ * TaxInvoice BulkSubmit Raw Spec
61
+ *
62
+ * Source
63
+ * - https://developers.popbill.com/api-reference/taxinvoice/api/issue
64
+ */
65
+ /**
66
+ * BulkSubmit API path 파라미터.
67
+ */
68
+ type TaxInvoiceBulkSubmitApiRequestPath = never;
69
+ /**
70
+ * BulkSubmit API query 파라미터.
71
+ */
72
+ type TaxInvoiceBulkSubmitApiRequestQuery = never;
73
+ /**
74
+ * BulkSubmit API header(raw).
75
+ */
76
+ type TaxInvoiceBulkSubmitApiRequestHeaders = TaxInvoiceBulkIssueRequestHeaders;
77
+ /**
78
+ * BulkSubmit API body(raw).
79
+ */
80
+ interface TaxInvoiceBulkSubmitApiRequestBody {
81
+ /**
82
+ * 전자세금계산서 목록.
83
+ *
84
+ * 최대 100건까지 접수할 수 있다.
85
+ */
86
+ invoices: TaxInvoiceApiModel[];
87
+ /**
88
+ * 지연발행 가능 여부.
89
+ *
90
+ * `true`: 가능
91
+ * `false`: 불가능 (기본값)
92
+ */
93
+ forceIssue?: boolean;
94
+ }
95
+ /**
96
+ * BulkSubmit API 요청(raw).
97
+ */
98
+ type TaxInvoiceBulkSubmitApiRequest = TaxInvoiceRequireRequestFields<TaxInvoiceApiRequest<TaxInvoiceBulkSubmitApiRequestPath, TaxInvoiceBulkSubmitApiRequestQuery, TaxInvoiceBulkSubmitApiRequestBody, TaxInvoiceBulkSubmitApiRequestHeaders>, 'body' | 'headers'>;
99
+ type TaxInvoiceBulkSubmitApiResponse = TaxInvoiceBulkSubmitResponseApiModel;
100
+ //#endregion
101
+ //#region src/tax-invoice/issue/get-bulk-result.d.ts
102
+ /**
103
+ * TaxInvoice GetBulkResult Raw Spec
104
+ *
105
+ * Source
106
+ * - https://developers.popbill.com/api-reference/taxinvoice/api/issue
107
+ */
108
+ /**
109
+ * GetBulkResult API path 파라미터.
110
+ */
111
+ interface TaxInvoiceGetBulkResultApiRequestPath {
112
+ /**
113
+ * 파트너가 할당한 제출아이디.
114
+ *
115
+ * 영문, 숫자, `-` 조합으로 최대 36자.
116
+ */
117
+ SubmitID: string;
118
+ }
119
+ /**
120
+ * GetBulkResult API query 파라미터.
121
+ */
122
+ type TaxInvoiceGetBulkResultApiRequestQuery = never;
123
+ /**
124
+ * GetBulkResult API body.
125
+ */
126
+ type TaxInvoiceGetBulkResultApiRequestBody = never;
127
+ /**
128
+ * GetBulkResult API 요청(raw).
129
+ */
130
+ type TaxInvoiceGetBulkResultApiRequest = TaxInvoiceRequireRequestFields<TaxInvoiceApiRequest<TaxInvoiceGetBulkResultApiRequestPath, TaxInvoiceGetBulkResultApiRequestQuery, TaxInvoiceGetBulkResultApiRequestBody>, 'path'>;
131
+ type TaxInvoiceGetBulkResultApiResponse = TaxInvoiceBulkResultApiModel;
132
+ //#endregion
133
+ //#region src/tax-invoice/issue/register.d.ts
134
+ /**
135
+ * TaxInvoice Register Raw Spec
136
+ *
137
+ * Source
138
+ * - https://developers.popbill.com/api-reference/taxinvoice/api/issue
139
+ */
140
+ /**
141
+ * Register API path 파라미터.
142
+ */
143
+ type TaxInvoiceRegisterApiRequestPath = never;
144
+ /**
145
+ * Register API query 파라미터.
146
+ */
147
+ type TaxInvoiceRegisterApiRequestQuery = never;
148
+ /**
149
+ * Register API body(raw).
150
+ */
151
+ type TaxInvoiceRegisterApiRequestBody = TaxInvoiceApiModel & {
152
+ /**
153
+ * 세금계산서 상태 이력 관리를 위한 메모.
154
+ */
155
+ memo?: string;
156
+ /**
157
+ * 세금계산서 발행 안내메일 제목.
158
+ *
159
+ * 미입력 시 팝빌 기본 제목을 사용한다.
160
+ */
161
+ emailSubject?: string;
162
+ /**
163
+ * 거래명세서 동시작성 여부.
164
+ *
165
+ * 공급받는자 유형이 `사업자`인 경우에만 사용할 수 있다.
166
+ */
167
+ writeSpecification?: boolean;
168
+ /**
169
+ * 지연발행 가능 여부.
170
+ *
171
+ * `true`: 가능
172
+ * `false`: 불가능 (기본값)
173
+ */
174
+ forceIssue?: boolean;
175
+ /**
176
+ * 거래명세서 문서번호.
177
+ */
178
+ dealInvoiceMgtKey?: string;
179
+ };
180
+ /**
181
+ * Register API 요청(raw).
182
+ */
183
+ type TaxInvoiceRegisterApiRequest = TaxInvoiceRequireRequestFields<TaxInvoiceApiRequest<TaxInvoiceRegisterApiRequestPath, TaxInvoiceRegisterApiRequestQuery, TaxInvoiceRegisterApiRequestBody>, 'body'>;
184
+ type TaxInvoiceRegisterApiResponse = TaxInvoiceApiResponseBase;
185
+ //#endregion
186
+ //#region src/tax-invoice/issue/update.d.ts
187
+ /**
188
+ * TaxInvoice Update Raw Spec
189
+ *
190
+ * Source
191
+ * - https://developers.popbill.com/api-reference/taxinvoice/api/issue
192
+ */
193
+ /**
194
+ * Update API path 파라미터.
195
+ */
196
+ interface TaxInvoiceUpdateApiRequestPath {
197
+ /**
198
+ * 문서번호 유형.
199
+ *
200
+ * - `SELL`: 매출
201
+ * - `TRUSTEE`: 위수탁
202
+ */
203
+ MgtKeyType: Extract<TaxInvoiceMgtKeyType, 'SELL' | 'TRUSTEE'>;
204
+ /**
205
+ * 파트너가 할당한 문서번호.
206
+ */
207
+ MgtKey: string;
208
+ }
209
+ /**
210
+ * Update API query 파라미터.
211
+ */
212
+ type TaxInvoiceUpdateApiRequestQuery = never;
213
+ /**
214
+ * Update API body(raw).
215
+ */
216
+ type TaxInvoiceUpdateApiRequestBody = TaxInvoiceApiModel & {
217
+ /**
218
+ * 세금계산서 상태 이력 관리를 위한 메모.
219
+ */
220
+ memo?: string;
221
+ /**
222
+ * 세금계산서 발행 안내메일 제목.
223
+ *
224
+ * 미입력 시 팝빌 기본 제목을 사용한다.
225
+ */
226
+ emailSubject?: string;
227
+ /**
228
+ * 거래명세서 동시작성 여부.
229
+ *
230
+ * 공급받는자 유형이 `사업자`인 경우에만 사용할 수 있다.
231
+ */
232
+ writeSpecification?: boolean;
233
+ /**
234
+ * 지연발행 가능 여부.
235
+ *
236
+ * `true`: 가능
237
+ * `false`: 불가능 (기본값)
238
+ */
239
+ forceIssue?: boolean;
240
+ /**
241
+ * 거래명세서 문서번호.
242
+ */
243
+ dealInvoiceMgtKey?: string;
244
+ };
245
+ /**
246
+ * Update API 요청(raw).
247
+ */
248
+ type TaxInvoiceUpdateApiRequest = TaxInvoiceRequireRequestFields<TaxInvoiceApiRequest<TaxInvoiceUpdateApiRequestPath, TaxInvoiceUpdateApiRequestQuery, TaxInvoiceUpdateApiRequestBody>, 'path' | 'body'>;
249
+ type TaxInvoiceUpdateApiResponse = TaxInvoiceApiResponseBase;
250
+ //#endregion
251
+ //#region src/tax-invoice/issue/issue.d.ts
252
+ /**
253
+ * TaxInvoice Issue Raw Spec
254
+ *
255
+ * Source
256
+ * - https://developers.popbill.com/api-reference/taxinvoice/api/issue
257
+ */
258
+ /**
259
+ * Issue API path 파라미터.
260
+ */
261
+ interface TaxInvoiceIssueApiRequestPath {
262
+ /**
263
+ * 문서번호 유형.
264
+ *
265
+ * - `SELL`: 매출
266
+ * - `TRUSTEE`: 위수탁
267
+ */
268
+ MgtKeyType: Extract<TaxInvoiceMgtKeyType, 'SELL' | 'TRUSTEE'>;
269
+ /**
270
+ * 파트너가 할당한 문서번호.
271
+ */
272
+ MgtKey: string;
273
+ }
274
+ /**
275
+ * Issue API query 파라미터.
276
+ */
277
+ type TaxInvoiceIssueApiRequestQuery = never;
278
+ /**
279
+ * Issue API body(raw).
280
+ */
281
+ interface TaxInvoiceIssueApiRequestBody {
282
+ /**
283
+ * 세금계산서 상태 이력 관리를 위한 메모.
284
+ */
285
+ memo?: string;
286
+ /**
287
+ * 세금계산서 발행 안내메일 제목.
288
+ *
289
+ * 미입력 시 팝빌 기본 제목을 사용한다.
290
+ */
291
+ emailSubject?: string;
292
+ /**
293
+ * 지연발행 가능 여부.
294
+ *
295
+ * `true`: 가능
296
+ * `false`: 불가능 (기본값)
297
+ */
298
+ forceIssue?: boolean;
299
+ }
300
+ /**
301
+ * Issue API 요청(raw).
302
+ */
303
+ type TaxInvoiceIssueApiRequest = TaxInvoiceRequireRequestFields<TaxInvoiceApiRequest<TaxInvoiceIssueApiRequestPath, TaxInvoiceIssueApiRequestQuery, TaxInvoiceIssueApiRequestBody>, 'path'>;
304
+ type TaxInvoiceIssueApiResponse = TaxInvoiceIssueResponseApiModel;
305
+ //#endregion
306
+ //#region src/tax-invoice/issue/cancel-issue.d.ts
307
+ /**
308
+ * TaxInvoice CancelIssue Raw Spec
309
+ *
310
+ * Source
311
+ * - https://developers.popbill.com/api-reference/taxinvoice/api/issue
312
+ */
313
+ /**
314
+ * CancelIssue API path 파라미터.
315
+ */
316
+ interface TaxInvoiceCancelIssueApiRequestPath {
317
+ /**
318
+ * 문서번호 유형.
319
+ *
320
+ * - `SELL`: 매출
321
+ * - `TRUSTEE`: 위수탁
322
+ */
323
+ MgtKeyType: Extract<TaxInvoiceMgtKeyType, 'SELL' | 'TRUSTEE'>;
324
+ /**
325
+ * 파트너가 할당한 문서번호.
326
+ */
327
+ MgtKey: string;
328
+ }
329
+ /**
330
+ * CancelIssue API query 파라미터.
331
+ */
332
+ type TaxInvoiceCancelIssueApiRequestQuery = never;
333
+ /**
334
+ * CancelIssue API body(raw).
335
+ */
336
+ interface TaxInvoiceCancelIssueApiRequestBody {
337
+ /**
338
+ * 세금계산서 상태 이력 관리를 위한 메모.
339
+ */
340
+ memo?: string;
341
+ }
342
+ /**
343
+ * CancelIssue API 요청(raw).
344
+ */
345
+ type TaxInvoiceCancelIssueApiRequest = TaxInvoiceRequireRequestFields<TaxInvoiceApiRequest<TaxInvoiceCancelIssueApiRequestPath, TaxInvoiceCancelIssueApiRequestQuery, TaxInvoiceCancelIssueApiRequestBody>, 'path'>;
346
+ type TaxInvoiceCancelIssueApiResponse = TaxInvoiceApiResponseBase;
347
+ //#endregion
348
+ //#region src/tax-invoice/issue/regist-request.d.ts
349
+ /**
350
+ * TaxInvoice RegistRequest Raw Spec
351
+ *
352
+ * Source
353
+ * - https://developers.popbill.com/api-reference/taxinvoice/api/issue
354
+ */
355
+ /**
356
+ * RegistRequest API path 파라미터.
357
+ */
358
+ type TaxInvoiceRegistRequestApiRequestPath = never;
359
+ /**
360
+ * RegistRequest API query 파라미터.
361
+ */
362
+ type TaxInvoiceRegistRequestApiRequestQuery = never;
363
+ /**
364
+ * RegistRequest API body(raw).
365
+ */
366
+ type TaxInvoiceRegistRequestApiRequestBody = TaxInvoiceApiModel & {
367
+ /**
368
+ * 세금계산서 상태 이력 관리를 위한 메모.
369
+ */
370
+ memo?: string;
371
+ /**
372
+ * 세금계산서 발행 안내메일 제목.
373
+ *
374
+ * 미입력 시 팝빌 기본 제목을 사용한다.
375
+ */
376
+ emailSubject?: string;
377
+ /**
378
+ * 거래명세서 동시작성 여부.
379
+ *
380
+ * 공급받는자 유형이 `사업자`인 경우에만 사용할 수 있다.
381
+ */
382
+ writeSpecification?: boolean;
383
+ /**
384
+ * 지연발행 가능 여부.
385
+ *
386
+ * `true`: 가능
387
+ * `false`: 불가능 (기본값)
388
+ */
389
+ forceIssue?: boolean;
390
+ /**
391
+ * 거래명세서 문서번호.
392
+ */
393
+ dealInvoiceMgtKey?: string;
394
+ };
395
+ /**
396
+ * RegistRequest API 요청(raw).
397
+ */
398
+ type TaxInvoiceRegistRequestApiRequest = TaxInvoiceRequireRequestFields<TaxInvoiceApiRequest<TaxInvoiceRegistRequestApiRequestPath, TaxInvoiceRegistRequestApiRequestQuery, TaxInvoiceRegistRequestApiRequestBody>, 'body'>;
399
+ type TaxInvoiceRegistRequestApiResponse = TaxInvoiceApiResponseBase;
400
+ //#endregion
401
+ //#region src/tax-invoice/issue/request.d.ts
402
+ /**
403
+ * TaxInvoice Request Raw Spec
404
+ *
405
+ * Source
406
+ * - https://developers.popbill.com/api-reference/taxinvoice/api/issue
407
+ */
408
+ /**
409
+ * Request API path 파라미터.
410
+ */
411
+ interface TaxInvoiceRequestApiRequestPath {
412
+ /**
413
+ * 문서번호 유형.
414
+ *
415
+ * - `BUY`: 매입
416
+ */
417
+ MgtKeyType: Extract<TaxInvoiceMgtKeyType, 'BUY'>;
418
+ /**
419
+ * 파트너가 할당한 문서번호.
420
+ */
421
+ MgtKey: string;
422
+ }
423
+ /**
424
+ * Request API query 파라미터.
425
+ */
426
+ type TaxInvoiceRequestApiRequestQuery = never;
427
+ /**
428
+ * Request API body(raw).
429
+ */
430
+ interface TaxInvoiceRequestApiRequestBody {
431
+ /**
432
+ * 세금계산서 상태 이력 관리를 위한 메모.
433
+ */
434
+ memo?: string;
435
+ }
436
+ /**
437
+ * Request API 요청(raw).
438
+ */
439
+ type TaxInvoiceRequestApiRequest = TaxInvoiceRequireRequestFields<TaxInvoiceApiRequest<TaxInvoiceRequestApiRequestPath, TaxInvoiceRequestApiRequestQuery, TaxInvoiceRequestApiRequestBody>, 'path'>;
440
+ type TaxInvoiceRequestApiResponse = TaxInvoiceApiResponseBase;
441
+ //#endregion
442
+ //#region src/tax-invoice/issue/cancel-request.d.ts
443
+ /**
444
+ * TaxInvoice CancelRequest Raw Spec
445
+ *
446
+ * Source
447
+ * - https://developers.popbill.com/api-reference/taxinvoice/api/issue
448
+ */
449
+ /**
450
+ * CancelRequest API path 파라미터.
451
+ */
452
+ interface TaxInvoiceCancelRequestApiRequestPath {
453
+ /**
454
+ * 문서번호 유형.
455
+ *
456
+ * - `BUY`: 매입
457
+ */
458
+ MgtKeyType: Extract<TaxInvoiceMgtKeyType, 'BUY'>;
459
+ /**
460
+ * 파트너가 할당한 문서번호.
461
+ */
462
+ MgtKey: string;
463
+ }
464
+ /**
465
+ * CancelRequest API query 파라미터.
466
+ */
467
+ type TaxInvoiceCancelRequestApiRequestQuery = never;
468
+ /**
469
+ * CancelRequest API body(raw).
470
+ */
471
+ interface TaxInvoiceCancelRequestApiRequestBody {
472
+ /**
473
+ * 세금계산서 상태 이력 관리를 위한 메모.
474
+ */
475
+ memo?: string;
476
+ }
477
+ /**
478
+ * CancelRequest API 요청(raw).
479
+ */
480
+ type TaxInvoiceCancelRequestApiRequest = TaxInvoiceRequireRequestFields<TaxInvoiceApiRequest<TaxInvoiceCancelRequestApiRequestPath, TaxInvoiceCancelRequestApiRequestQuery, TaxInvoiceCancelRequestApiRequestBody>, 'path'>;
481
+ type TaxInvoiceCancelRequestApiResponse = TaxInvoiceApiResponseBase;
482
+ //#endregion
483
+ //#region src/tax-invoice/issue/refuse.d.ts
484
+ /**
485
+ * TaxInvoice Refuse Raw Spec
486
+ *
487
+ * Source
488
+ * - https://developers.popbill.com/api-reference/taxinvoice/api/issue
489
+ */
490
+ /**
491
+ * Refuse API path 파라미터.
492
+ */
493
+ interface TaxInvoiceRefuseApiRequestPath {
494
+ /**
495
+ * 문서번호 유형.
496
+ *
497
+ * - `SELL`: 매출
498
+ */
499
+ MgtKeyType: Extract<TaxInvoiceMgtKeyType, 'SELL'>;
500
+ /**
501
+ * 파트너가 할당한 문서번호.
502
+ */
503
+ MgtKey: string;
504
+ }
505
+ /**
506
+ * Refuse API query 파라미터.
507
+ */
508
+ type TaxInvoiceRefuseApiRequestQuery = never;
509
+ /**
510
+ * Refuse API body(raw).
511
+ */
512
+ interface TaxInvoiceRefuseApiRequestBody {
513
+ /**
514
+ * 세금계산서 상태 이력 관리를 위한 메모.
515
+ */
516
+ memo?: string;
517
+ }
518
+ /**
519
+ * Refuse API 요청(raw).
520
+ */
521
+ type TaxInvoiceRefuseApiRequest = TaxInvoiceRequireRequestFields<TaxInvoiceApiRequest<TaxInvoiceRefuseApiRequestPath, TaxInvoiceRefuseApiRequestQuery, TaxInvoiceRefuseApiRequestBody>, 'path'>;
522
+ type TaxInvoiceRefuseApiResponse = TaxInvoiceApiResponseBase;
523
+ //#endregion
524
+ //#region src/tax-invoice/issue/delete.d.ts
525
+ /**
526
+ * TaxInvoice Delete Raw Spec
527
+ *
528
+ * Source
529
+ * - https://developers.popbill.com/api-reference/taxinvoice/api/issue
530
+ */
531
+ /**
532
+ * Delete API path 파라미터.
533
+ */
534
+ interface TaxInvoiceDeleteApiRequestPath {
535
+ /**
536
+ * 문서번호 유형.
537
+ *
538
+ * - `SELL`: 매출
539
+ * - `BUY`: 매입
540
+ * - `TRUSTEE`: 위수탁
541
+ */
542
+ MgtKeyType: TaxInvoiceMgtKeyType;
543
+ /**
544
+ * 파트너가 할당한 문서번호.
545
+ */
546
+ MgtKey: string;
547
+ }
548
+ /**
549
+ * Delete API query 파라미터.
550
+ */
551
+ type TaxInvoiceDeleteApiRequestQuery = never;
552
+ /**
553
+ * Delete API body.
554
+ */
555
+ type TaxInvoiceDeleteApiRequestBody = never;
556
+ /**
557
+ * Delete API 요청(raw).
558
+ */
559
+ type TaxInvoiceDeleteApiRequest = TaxInvoiceRequireRequestFields<TaxInvoiceApiRequest<TaxInvoiceDeleteApiRequestPath, TaxInvoiceDeleteApiRequestQuery, TaxInvoiceDeleteApiRequestBody>, 'path'>;
560
+ type TaxInvoiceDeleteApiResponse = TaxInvoiceApiResponseBase;
561
+ //#endregion
562
+ //#region src/tax-invoice/issue/send-to-nts.d.ts
563
+ /**
564
+ * TaxInvoice SendToNTS Raw Spec
565
+ *
566
+ * Source
567
+ * - https://developers.popbill.com/api-reference/taxinvoice/api/issue
568
+ */
569
+ /**
570
+ * SendToNTS API path 파라미터.
571
+ */
572
+ interface TaxInvoiceSendToNTSApiRequestPath {
573
+ /**
574
+ * 문서번호 유형.
575
+ *
576
+ * - `SELL`: 매출
577
+ * - `TRUSTEE`: 위수탁
578
+ */
579
+ MgtKeyType: Extract<TaxInvoiceMgtKeyType, 'SELL' | 'TRUSTEE'>;
580
+ /**
581
+ * 파트너가 할당한 문서번호.
582
+ */
583
+ MgtKey: string;
584
+ }
585
+ /**
586
+ * SendToNTS API query 파라미터.
587
+ */
588
+ type TaxInvoiceSendToNTSApiRequestQuery = never;
589
+ /**
590
+ * SendToNTS API body.
591
+ */
592
+ type TaxInvoiceSendToNTSApiRequestBody = never;
593
+ /**
594
+ * SendToNTS API 요청(raw).
595
+ */
596
+ type TaxInvoiceSendToNTSApiRequest = TaxInvoiceRequireRequestFields<TaxInvoiceApiRequest<TaxInvoiceSendToNTSApiRequestPath, TaxInvoiceSendToNTSApiRequestQuery, TaxInvoiceSendToNTSApiRequestBody>, 'path'>;
597
+ type TaxInvoiceSendToNTSApiResponse = TaxInvoiceApiResponseBase;
598
+ //#endregion
599
+ //#region src/tax-invoice/info/check-mgt-key-in-use.d.ts
600
+ /**
601
+ * TaxInvoice CheckMgtKeyInUse Raw Spec
602
+ *
603
+ * Source
604
+ * - https://developers.popbill.com/api-reference/taxinvoice/api/info#CheckMgtKeyInUse
605
+ */
606
+ /**
607
+ * CheckMgtKeyInUse API path 파라미터.
608
+ */
609
+ interface TaxInvoiceCheckMgtKeyInUseApiRequestPath {
610
+ /**
611
+ * 문서번호 유형.
612
+ *
613
+ * - `SELL`: 매출
614
+ * - `BUY`: 매입
615
+ * - `TRUSTEE`: 위수탁
616
+ */
617
+ MgtKeyType: TaxInvoiceMgtKeyType;
618
+ /**
619
+ * 파트너가 할당한 문서번호.
620
+ *
621
+ * 최대 24자.
622
+ */
623
+ MgtKey: string;
624
+ }
625
+ /**
626
+ * CheckMgtKeyInUse API query 파라미터.
627
+ */
628
+ type TaxInvoiceCheckMgtKeyInUseApiRequestQuery = never;
629
+ /**
630
+ * CheckMgtKeyInUse API body.
631
+ */
632
+ type TaxInvoiceCheckMgtKeyInUseApiRequestBody = never;
633
+ /**
634
+ * CheckMgtKeyInUse API 요청(raw).
635
+ */
636
+ type TaxInvoiceCheckMgtKeyInUseApiRequest = TaxInvoiceRequireRequestFields<TaxInvoiceApiRequest<TaxInvoiceCheckMgtKeyInUseApiRequestPath, TaxInvoiceCheckMgtKeyInUseApiRequestQuery, TaxInvoiceCheckMgtKeyInUseApiRequestBody>, 'path'>;
637
+ /**
638
+ * CheckMgtKeyInUse API 응답(raw).
639
+ */
640
+ interface TaxInvoiceCheckMgtKeyInUseApiResponse {
641
+ /**
642
+ * 팝빌에서 할당한 식별번호.
643
+ *
644
+ * 값이 존재하면 사용 중인 문서번호, 없으면 사용 가능한 문서번호다.
645
+ */
646
+ itemKey?: string;
647
+ [key: string]: unknown;
648
+ }
649
+ //#endregion
650
+ //#region src/tax-invoice/info/get-infos.d.ts
651
+ /**
652
+ * TaxInvoice GetInfos Raw Spec
653
+ *
654
+ * Source
655
+ * - https://developers.popbill.com/api-reference/taxinvoice/api/info#GetInfos
656
+ */
657
+ /**
658
+ * GetInfos API path 파라미터.
659
+ */
660
+ interface TaxInvoiceGetInfosApiRequestPath {
661
+ /**
662
+ * 문서번호 유형.
663
+ *
664
+ * - `SELL`: 매출
665
+ * - `BUY`: 매입
666
+ * - `TRUSTEE`: 위수탁
667
+ */
668
+ MgtKeyType: TaxInvoiceMgtKeyType;
669
+ }
670
+ /**
671
+ * GetInfos API query 파라미터.
672
+ */
673
+ type TaxInvoiceGetInfosApiRequestQuery = never;
674
+ /**
675
+ * 문서번호 목록.
676
+ *
677
+ * GetInfos API body(raw).
678
+ *
679
+ * 최대 1,000건까지 조회할 수 있다.
680
+ */
681
+ type TaxInvoiceGetInfosApiRequestBody = string[];
682
+ /**
683
+ * GetInfos API 요청(raw).
684
+ */
685
+ type TaxInvoiceGetInfosApiRequest = TaxInvoiceRequireRequestFields<TaxInvoiceApiRequest<TaxInvoiceGetInfosApiRequestPath, TaxInvoiceGetInfosApiRequestQuery, TaxInvoiceGetInfosApiRequestBody>, 'path' | 'body'>;
686
+ /**
687
+ * GetInfos API 응답(raw).
688
+ */
689
+ type TaxInvoiceGetInfosApiResponse = TaxInvoiceInfoApiModel[];
690
+ //#endregion
691
+ //#region src/tax-invoice/info/get-detail-info.d.ts
692
+ /**
693
+ * TaxInvoice GetDetailInfo Raw Spec
694
+ *
695
+ * Source
696
+ * - https://developers.popbill.com/api-reference/taxinvoice/api/info#GetDetailInfo
697
+ */
698
+ /**
699
+ * GetDetailInfo API path 파라미터.
700
+ */
701
+ interface TaxInvoiceGetDetailInfoApiRequestPath {
702
+ /**
703
+ * 문서번호 유형.
704
+ *
705
+ * - `SELL`: 매출
706
+ * - `BUY`: 매입
707
+ * - `TRUSTEE`: 위수탁
708
+ */
709
+ MgtKeyType: TaxInvoiceMgtKeyType;
710
+ /**
711
+ * 파트너가 할당한 문서번호.
712
+ *
713
+ * 최대 24자.
714
+ */
715
+ MgtKey: string;
716
+ }
717
+ /**
718
+ * GetDetailInfo API query 파라미터.
719
+ */
720
+ interface TaxInvoiceGetDetailInfoApiRequestQuery {
721
+ /**
722
+ * 상세 조회 옵션.
723
+ *
724
+ * `?Detail` 형태로 빈값 파라미터를 전달한다.
725
+ */
726
+ Detail: true;
727
+ }
728
+ /**
729
+ * GetDetailInfo API body.
730
+ */
731
+ type TaxInvoiceGetDetailInfoApiRequestBody = never;
732
+ /**
733
+ * GetDetailInfo API 요청(raw).
734
+ */
735
+ type TaxInvoiceGetDetailInfoApiRequest = TaxInvoiceRequireRequestFields<TaxInvoiceApiRequest<TaxInvoiceGetDetailInfoApiRequestPath, TaxInvoiceGetDetailInfoApiRequestQuery, TaxInvoiceGetDetailInfoApiRequestBody>, 'path' | 'query'>;
736
+ type TaxInvoiceGetDetailInfoApiResponse = TaxInvoiceApiModel;
737
+ //#endregion
738
+ //#region src/tax-invoice/info/get-xml.d.ts
739
+ /**
740
+ * TaxInvoice GetXML Raw Spec
741
+ *
742
+ * Source
743
+ * - https://developers.popbill.com/api-reference/taxinvoice/api/info#GetXML
744
+ */
745
+ /**
746
+ * GetXML API path 파라미터.
747
+ */
748
+ interface TaxInvoiceGetXmlApiRequestPath {
749
+ /**
750
+ * 문서번호 유형.
751
+ *
752
+ * - `SELL`: 매출
753
+ * - `BUY`: 매입
754
+ * - `TRUSTEE`: 위수탁
755
+ */
756
+ MgtKeyType: TaxInvoiceMgtKeyType;
757
+ /**
758
+ * 파트너가 할당한 문서번호.
759
+ *
760
+ * 최대 24자.
761
+ */
762
+ MgtKey: string;
763
+ }
764
+ /**
765
+ * GetXML API query 파라미터.
766
+ */
767
+ interface TaxInvoiceGetXmlApiRequestQuery {
768
+ /**
769
+ * XML 조회 옵션.
770
+ *
771
+ * `?XML` 형태로 빈값 파라미터를 전달한다.
772
+ */
773
+ XML: true;
774
+ }
775
+ /**
776
+ * GetXML API body.
777
+ */
778
+ type TaxInvoiceGetXmlApiRequestBody = never;
779
+ /**
780
+ * GetXML API 요청(raw).
781
+ */
782
+ type TaxInvoiceGetXmlApiRequest = TaxInvoiceRequireRequestFields<TaxInvoiceApiRequest<TaxInvoiceGetXmlApiRequestPath, TaxInvoiceGetXmlApiRequestQuery, TaxInvoiceGetXmlApiRequestBody>, 'path' | 'query'>;
783
+ /**
784
+ * GetXML API 응답(raw).
785
+ */
786
+ interface TaxInvoiceGetXmlApiResponse {
787
+ /**
788
+ * 팝빌에서 할당한 식별번호.
789
+ *
790
+ * 일부 응답 호환성을 위해 optional로 유지한다.
791
+ */
792
+ itemKey?: string;
793
+ /**
794
+ * 파트너가 할당한 문서번호.
795
+ *
796
+ * 일부 응답 호환성을 위해 optional로 유지한다.
797
+ */
798
+ mgtKey?: string;
799
+ /**
800
+ * API 처리 결과코드.
801
+ *
802
+ * 성공: `1`
803
+ */
804
+ code?: number;
805
+ /**
806
+ * API 처리 결과메시지.
807
+ */
808
+ message?: string;
809
+ /**
810
+ * 전자세금계산서 XML 원문.
811
+ */
812
+ retObject?: string;
813
+ [key: string]: unknown;
814
+ }
815
+ //#endregion
816
+ //#region src/tax-invoice/info/get-logs.d.ts
817
+ /**
818
+ * TaxInvoice GetLogs Raw Spec
819
+ *
820
+ * Source
821
+ * - https://developers.popbill.com/api-reference/taxinvoice/api/info#GetLogs
822
+ */
823
+ /**
824
+ * GetLogs API path 파라미터.
825
+ */
826
+ interface TaxInvoiceGetLogsApiRequestPath {
827
+ /**
828
+ * 문서번호 유형.
829
+ *
830
+ * - `SELL`: 매출
831
+ * - `BUY`: 매입
832
+ * - `TRUSTEE`: 위수탁
833
+ */
834
+ MgtKeyType: TaxInvoiceMgtKeyType;
835
+ /**
836
+ * 파트너가 할당한 문서번호.
837
+ *
838
+ * 최대 24자.
839
+ */
840
+ MgtKey: string;
841
+ }
842
+ /**
843
+ * GetLogs API query 파라미터.
844
+ */
845
+ type TaxInvoiceGetLogsApiRequestQuery = never;
846
+ /**
847
+ * GetLogs API body.
848
+ */
849
+ type TaxInvoiceGetLogsApiRequestBody = never;
850
+ /**
851
+ * GetLogs API 요청(raw).
852
+ */
853
+ type TaxInvoiceGetLogsApiRequest = TaxInvoiceRequireRequestFields<TaxInvoiceApiRequest<TaxInvoiceGetLogsApiRequestPath, TaxInvoiceGetLogsApiRequestQuery, TaxInvoiceGetLogsApiRequestBody>, 'path'>;
854
+ /**
855
+ * GetLogs API 응답(raw).
856
+ */
857
+ type TaxInvoiceGetLogsApiResponse = TaxInvoiceLogApiModel[];
858
+ //#endregion
859
+ //#region src/tax-invoice/info/search.d.ts
860
+ /**
861
+ * TaxInvoice Search Raw Spec
862
+ *
863
+ * Source
864
+ * - https://developers.popbill.com/api-reference/taxinvoice/api/info#Search
865
+ */
866
+ /**
867
+ * Search 상태코드(raw).
868
+ *
869
+ * 2~3번째 자리에 와일드카드(`*`)를 사용할 수 있다.
870
+ * 예: `3**`, `60*`.
871
+ */
872
+ type TaxInvoiceSearchStateCode = string;
873
+ /**
874
+ * Search 문서유형(raw).
875
+ *
876
+ * - `N`: 세금계산서
877
+ * - `M`: 수정세금계산서
878
+ */
879
+ interface TaxInvoiceSearchDocumentTypeMap {
880
+ /**
881
+ * 세금계산서.
882
+ */
883
+ Normal: 'N';
884
+ /**
885
+ * 수정세금계산서.
886
+ */
887
+ Modified: 'M';
888
+ }
889
+ /**
890
+ * Search 문서유형(raw).
891
+ */
892
+ type TaxInvoiceSearchDocumentType = TaxInvoiceSearchDocumentTypeMap[keyof TaxInvoiceSearchDocumentTypeMap];
893
+ /**
894
+ * Search 과세형태(raw).
895
+ *
896
+ * - `T`: 과세
897
+ * - `N`: 면세
898
+ * - `Z`: 영세
899
+ */
900
+ interface TaxInvoiceSearchTaxTypeMap {
901
+ /**
902
+ * 과세.
903
+ */
904
+ Taxable: 'T';
905
+ /**
906
+ * 면세.
907
+ */
908
+ Exempt: 'N';
909
+ /**
910
+ * 영세.
911
+ */
912
+ ZeroRated: 'Z';
913
+ }
914
+ /**
915
+ * Search 과세형태(raw).
916
+ */
917
+ type TaxInvoiceSearchTaxType = TaxInvoiceSearchTaxTypeMap[keyof TaxInvoiceSearchTaxTypeMap];
918
+ /**
919
+ * Search 발행형태(raw).
920
+ *
921
+ * - `N`: 정발행
922
+ * - `R`: 역발행
923
+ * - `T`: 위수탁
924
+ */
925
+ interface TaxInvoiceSearchIssueTypeMap {
926
+ /**
927
+ * 정발행.
928
+ */
929
+ Normal: 'N';
930
+ /**
931
+ * 역발행.
932
+ */
933
+ Reverse: 'R';
934
+ /**
935
+ * 위수탁.
936
+ */
937
+ Trustee: 'T';
938
+ }
939
+ /**
940
+ * Search 발행형태(raw).
941
+ */
942
+ type TaxInvoiceSearchIssueType = TaxInvoiceSearchIssueTypeMap[keyof TaxInvoiceSearchIssueTypeMap];
943
+ /**
944
+ * Search 종사업장번호 주체(raw).
945
+ *
946
+ * - `S`: 공급자
947
+ * - `B`: 공급받는자
948
+ * - `T`: 수탁자
949
+ */
950
+ interface TaxInvoiceSearchTaxRegIDTypeMap {
951
+ /**
952
+ * 공급자.
953
+ */
954
+ Supplier: 'S';
955
+ /**
956
+ * 공급받는자.
957
+ */
958
+ Buyer: 'B';
959
+ /**
960
+ * 수탁자.
961
+ */
962
+ Trustee: 'T';
963
+ }
964
+ /**
965
+ * Search 종사업장번호 주체(raw).
966
+ */
967
+ type TaxInvoiceSearchTaxRegIDType = TaxInvoiceSearchTaxRegIDTypeMap[keyof TaxInvoiceSearchTaxRegIDTypeMap];
968
+ /**
969
+ * Search 종사업장번호 유무(raw).
970
+ *
971
+ * - `0`: 없음
972
+ * - `1`: 있음
973
+ */
974
+ interface TaxInvoiceSearchTaxRegIDYNMap {
975
+ /**
976
+ * 없음.
977
+ */
978
+ No: '0';
979
+ /**
980
+ * 있음.
981
+ */
982
+ Yes: '1';
983
+ }
984
+ /**
985
+ * Search 종사업장번호 유무(raw).
986
+ */
987
+ type TaxInvoiceSearchTaxRegIDYN = TaxInvoiceSearchTaxRegIDYNMap[keyof TaxInvoiceSearchTaxRegIDYNMap];
988
+ /**
989
+ * Search 등록유형(raw).
990
+ *
991
+ * - `P`: 팝빌 등록(발행)
992
+ * - `H`: 홈택스/ASP 등록(발행)
993
+ */
994
+ interface TaxInvoiceSearchRegTypeMap {
995
+ /**
996
+ * 팝빌 등록(발행).
997
+ */
998
+ Popbill: 'P';
999
+ /**
1000
+ * 홈택스/ASP 등록(발행).
1001
+ */
1002
+ HomeTax: 'H';
1003
+ }
1004
+ /**
1005
+ * Search 등록유형(raw).
1006
+ */
1007
+ type TaxInvoiceSearchRegType = TaxInvoiceSearchRegTypeMap[keyof TaxInvoiceSearchRegTypeMap];
1008
+ /**
1009
+ * Search 세금계산서 작성유형(raw).
1010
+ *
1011
+ * - `0`: 팝빌 사이트 작성
1012
+ * - `1`: API 작성
1013
+ */
1014
+ interface TaxInvoiceSearchInterOPYNMap {
1015
+ /**
1016
+ * 팝빌 사이트 작성.
1017
+ */
1018
+ PopbillWeb: '0';
1019
+ /**
1020
+ * API 작성.
1021
+ */
1022
+ Api: '1';
1023
+ }
1024
+ /**
1025
+ * Search 세금계산서 작성유형(raw).
1026
+ */
1027
+ type TaxInvoiceSearchInterOPYN = TaxInvoiceSearchInterOPYNMap[keyof TaxInvoiceSearchInterOPYNMap];
1028
+ /**
1029
+ * Search API path 파라미터(raw).
1030
+ */
1031
+ interface TaxInvoiceSearchApiRequestPath {
1032
+ /**
1033
+ * 문서번호 유형.
1034
+ *
1035
+ * - `SELL`: 매출
1036
+ * - `BUY`: 매입
1037
+ * - `TRUSTEE`: 위수탁
1038
+ */
1039
+ MgtKeyType: TaxInvoiceMgtKeyType;
1040
+ }
1041
+ /**
1042
+ * Search API query 파라미터(raw).
1043
+ */
1044
+ interface TaxInvoiceSearchApiRequestQuery {
1045
+ /**
1046
+ * 검색일자 유형.
1047
+ *
1048
+ * - `R`: 등록일자
1049
+ * - `W`: 작성일자
1050
+ * - `I`: 발행일자
1051
+ */
1052
+ DType: TaxInvoiceDateType;
1053
+ /**
1054
+ * 검색 시작일자.
1055
+ *
1056
+ * `yyyyMMdd` 형식.
1057
+ */
1058
+ SDate: string;
1059
+ /**
1060
+ * 검색 종료일자.
1061
+ *
1062
+ * `yyyyMMdd` 형식.
1063
+ */
1064
+ EDate: string;
1065
+ /**
1066
+ * 세금계산서 상태코드 목록.
1067
+ *
1068
+ * 기본값은 전체조회다.
1069
+ */
1070
+ State?: TaxInvoiceSearchStateCode[];
1071
+ /**
1072
+ * 세금계산서 문서유형 목록.
1073
+ *
1074
+ * 기본값은 전체조회다.
1075
+ */
1076
+ Type?: TaxInvoiceSearchDocumentType[];
1077
+ /**
1078
+ * 과세형태 목록.
1079
+ *
1080
+ * 기본값은 전체조회다.
1081
+ */
1082
+ TaxType?: TaxInvoiceSearchTaxType[];
1083
+ /**
1084
+ * 발행형태 목록.
1085
+ *
1086
+ * 기본값은 전체조회다.
1087
+ */
1088
+ IssueType?: TaxInvoiceSearchIssueType[];
1089
+ /**
1090
+ * 지연발행 여부.
1091
+ *
1092
+ * - `true`: 지연발행
1093
+ * - `false`: 정상발행
1094
+ *
1095
+ * 기본값은 전체조회다.
1096
+ */
1097
+ LateOnly?: boolean;
1098
+ /**
1099
+ * 종사업장번호 주체.
1100
+ *
1101
+ * 기본값은 전체조회다.
1102
+ */
1103
+ TaxRegIDType?: TaxInvoiceSearchTaxRegIDType;
1104
+ /**
1105
+ * 종사업장번호(다중 조회는 `,` 구분).
1106
+ *
1107
+ * 기본값은 전체조회다.
1108
+ */
1109
+ TaxRegID?: string;
1110
+ /**
1111
+ * 종사업장번호 유무.
1112
+ *
1113
+ * 기본값은 전체조회다.
1114
+ */
1115
+ TaxRegIDYN?: TaxInvoiceSearchTaxRegIDYN;
1116
+ /**
1117
+ * 조회 검색어.
1118
+ *
1119
+ * `-` 없이 입력한다.
1120
+ * 기본값은 전체조회다.
1121
+ */
1122
+ QString?: string;
1123
+ /**
1124
+ * 목록 페이지번호.
1125
+ *
1126
+ * 기본값은 `1`.
1127
+ */
1128
+ Page?: number;
1129
+ /**
1130
+ * 페이지당 표시할 목록 건수.
1131
+ *
1132
+ * 최대 `1,000`, 기본값 `500`.
1133
+ */
1134
+ PerPage?: number;
1135
+ /**
1136
+ * 정렬 방향.
1137
+ *
1138
+ * - `D`: 내림차순 (기본값)
1139
+ * - `A`: 오름차순
1140
+ */
1141
+ Order?: TaxInvoiceSortOrder;
1142
+ /**
1143
+ * 세금계산서 작성유형.
1144
+ *
1145
+ * 기본값은 전체조회다.
1146
+ */
1147
+ InterOPYN?: TaxInvoiceSearchInterOPYN;
1148
+ /**
1149
+ * 전자세금계산서 등록유형 목록.
1150
+ *
1151
+ * 기본값은 전체조회다.
1152
+ */
1153
+ RegType?: TaxInvoiceSearchRegType[];
1154
+ /**
1155
+ * 휴폐업상태 배열.
1156
+ *
1157
+ * 기본값은 전체조회다.
1158
+ */
1159
+ CloseDownState?: TaxInvoiceSearchCloseDownState[];
1160
+ /**
1161
+ * 문서번호 또는 국세청승인번호.
1162
+ *
1163
+ * 기본값은 전체조회다.
1164
+ */
1165
+ MgtKey?: string;
1166
+ }
1167
+ /**
1168
+ * Search API request body.
1169
+ *
1170
+ * Search는 GET query 기반이며 body를 사용하지 않는다.
1171
+ */
1172
+ type TaxInvoiceSearchApiRequestBody = never;
1173
+ /**
1174
+ * Search API 요청(raw).
1175
+ *
1176
+ * `path/query/body`를 분리하여 전송 위치를 명확히 구분한다.
1177
+ */
1178
+ type TaxInvoiceSearchApiRequest = TaxInvoiceRequireRequestFields<TaxInvoiceApiRequest<TaxInvoiceSearchApiRequestPath, TaxInvoiceSearchApiRequestQuery, TaxInvoiceSearchApiRequestBody>, 'path' | 'query'>;
1179
+ /**
1180
+ * Search API 응답(raw).
1181
+ */
1182
+ type TaxInvoiceSearchApiResponse = TaxInvoiceSearchResultApiModel;
1183
+ //#endregion
1184
+ //#region src/tax-invoice/info/get-url.d.ts
1185
+ /**
1186
+ * TaxInvoice GetURL Raw Spec
1187
+ *
1188
+ * Source
1189
+ * - https://developers.popbill.com/api-reference/taxinvoice/api/info#GetURL
1190
+ */
1191
+ /**
1192
+ * GetURL API path 파라미터.
1193
+ */
1194
+ type TaxInvoiceGetUrlApiRequestPath = never;
1195
+ /**
1196
+ * GetURL 접근 메뉴(raw).
1197
+ */
1198
+ type TaxInvoiceGetUrlTogo = 'TBOX' | 'SWBOX' | 'SBOX' | 'PWBOX' | 'PBOX' | 'WRITE';
1199
+ /**
1200
+ * GetURL API query 파라미터.
1201
+ */
1202
+ interface TaxInvoiceGetUrlApiRequestQuery {
1203
+ /**
1204
+ * 접근 메뉴.
1205
+ */
1206
+ TG: TaxInvoiceGetUrlTogo;
1207
+ }
1208
+ /**
1209
+ * GetURL API body.
1210
+ */
1211
+ type TaxInvoiceGetUrlApiRequestBody = never;
1212
+ /**
1213
+ * GetURL API 요청(raw).
1214
+ */
1215
+ type TaxInvoiceGetUrlApiRequest = TaxInvoiceRequireRequestFields<TaxInvoiceApiRequest<TaxInvoiceGetUrlApiRequestPath, TaxInvoiceGetUrlApiRequestQuery, TaxInvoiceGetUrlApiRequestBody>, 'query'>;
1216
+ interface TaxInvoiceGetUrlApiResponse {
1217
+ /**
1218
+ * 전자세금계산서 문서함 팝업 URL.
1219
+ */
1220
+ url: string;
1221
+ }
1222
+ //#endregion
1223
+ //#region src/tax-invoice/view/get-pop-up-url.d.ts
1224
+ /**
1225
+ * TaxInvoice GetPopUpURL Raw Spec
1226
+ *
1227
+ * Source
1228
+ * - https://developers.popbill.com/api-reference/taxinvoice/api/view#GetPopUpURL
1229
+ */
1230
+ /**
1231
+ * GetPopUpURL API path 파라미터.
1232
+ */
1233
+ interface TaxInvoiceGetPopUpUrlApiRequestPath {
1234
+ /**
1235
+ * 문서번호 유형.
1236
+ *
1237
+ * - `SELL`: 매출
1238
+ * - `BUY`: 매입
1239
+ * - `TRUSTEE`: 위수탁
1240
+ */
1241
+ MgtKeyType: TaxInvoiceMgtKeyType;
1242
+ /**
1243
+ * 파트너가 할당한 문서번호.
1244
+ *
1245
+ * 최대 24자.
1246
+ */
1247
+ MgtKey: string;
1248
+ }
1249
+ /**
1250
+ * GetPopUpURL API query 파라미터.
1251
+ */
1252
+ interface TaxInvoiceGetPopUpUrlApiRequestQuery {
1253
+ /**
1254
+ * 보기 타입 고정값.
1255
+ *
1256
+ * - `POPUP`: 전자세금계산서 팝업
1257
+ */
1258
+ TG: 'POPUP';
1259
+ }
1260
+ /**
1261
+ * GetPopUpURL API body.
1262
+ */
1263
+ type TaxInvoiceGetPopUpUrlApiRequestBody = never;
1264
+ /**
1265
+ * GetPopUpURL API 요청(raw).
1266
+ */
1267
+ type TaxInvoiceGetPopUpUrlApiRequest = TaxInvoiceRequireRequestFields<TaxInvoiceApiRequest<TaxInvoiceGetPopUpUrlApiRequestPath, TaxInvoiceGetPopUpUrlApiRequestQuery, TaxInvoiceGetPopUpUrlApiRequestBody>, 'path' | 'query'>;
1268
+ interface TaxInvoiceGetPopUpUrlApiResponse {
1269
+ /**
1270
+ * 전자세금계산서 팝업 URL.
1271
+ */
1272
+ url: string;
1273
+ }
1274
+ //#endregion
1275
+ //#region src/tax-invoice/view/get-view-url.d.ts
1276
+ /**
1277
+ * TaxInvoice GetViewURL Raw Spec
1278
+ *
1279
+ * Source
1280
+ * - https://developers.popbill.com/api-reference/taxinvoice/api/view#GetViewURL
1281
+ */
1282
+ /**
1283
+ * GetViewURL API path 파라미터.
1284
+ */
1285
+ interface TaxInvoiceGetViewUrlApiRequestPath {
1286
+ /**
1287
+ * 문서번호 유형.
1288
+ *
1289
+ * - `SELL`: 매출
1290
+ * - `BUY`: 매입
1291
+ * - `TRUSTEE`: 위수탁
1292
+ */
1293
+ MgtKeyType: TaxInvoiceMgtKeyType;
1294
+ /**
1295
+ * 파트너가 할당한 문서번호.
1296
+ *
1297
+ * 최대 24자.
1298
+ */
1299
+ MgtKey: string;
1300
+ }
1301
+ /**
1302
+ * GetViewURL API query 파라미터.
1303
+ */
1304
+ interface TaxInvoiceGetViewUrlApiRequestQuery {
1305
+ /**
1306
+ * 보기 타입 고정값.
1307
+ *
1308
+ * - `VIEW`: 보기 전용 팝업
1309
+ */
1310
+ TG: 'VIEW';
1311
+ }
1312
+ /**
1313
+ * GetViewURL API body.
1314
+ */
1315
+ type TaxInvoiceGetViewUrlApiRequestBody = never;
1316
+ /**
1317
+ * GetViewURL API 요청(raw).
1318
+ */
1319
+ type TaxInvoiceGetViewUrlApiRequest = TaxInvoiceRequireRequestFields<TaxInvoiceApiRequest<TaxInvoiceGetViewUrlApiRequestPath, TaxInvoiceGetViewUrlApiRequestQuery, TaxInvoiceGetViewUrlApiRequestBody>, 'path' | 'query'>;
1320
+ interface TaxInvoiceGetViewUrlApiResponse {
1321
+ /**
1322
+ * 전자세금계산서 팝업 URL(보기 전용).
1323
+ */
1324
+ url: string;
1325
+ }
1326
+ //#endregion
1327
+ //#region src/tax-invoice/view/get-print-url.d.ts
1328
+ /**
1329
+ * TaxInvoice GetPrintURL Raw Spec
1330
+ *
1331
+ * Source
1332
+ * - https://developers.popbill.com/api-reference/taxinvoice/api/view#GetPrintURL
1333
+ */
1334
+ /**
1335
+ * GetPrintURL API path 파라미터.
1336
+ */
1337
+ interface TaxInvoiceGetPrintUrlApiRequestPath {
1338
+ /**
1339
+ * 문서번호 유형.
1340
+ *
1341
+ * - `SELL`: 매출
1342
+ * - `BUY`: 매입
1343
+ * - `TRUSTEE`: 위수탁
1344
+ */
1345
+ MgtKeyType: TaxInvoiceMgtKeyType;
1346
+ /**
1347
+ * 파트너가 할당한 문서번호.
1348
+ *
1349
+ * 최대 24자.
1350
+ */
1351
+ MgtKey: string;
1352
+ }
1353
+ /**
1354
+ * GetPrintURL API query 파라미터.
1355
+ */
1356
+ interface TaxInvoiceGetPrintUrlApiRequestQuery {
1357
+ /**
1358
+ * 보기 타입 고정값.
1359
+ *
1360
+ * - `PRINT`: 공급자 인쇄 팝업
1361
+ */
1362
+ TG: 'PRINT';
1363
+ }
1364
+ /**
1365
+ * GetPrintURL API body.
1366
+ */
1367
+ type TaxInvoiceGetPrintUrlApiRequestBody = never;
1368
+ /**
1369
+ * GetPrintURL API 요청(raw).
1370
+ */
1371
+ type TaxInvoiceGetPrintUrlApiRequest = TaxInvoiceRequireRequestFields<TaxInvoiceApiRequest<TaxInvoiceGetPrintUrlApiRequestPath, TaxInvoiceGetPrintUrlApiRequestQuery, TaxInvoiceGetPrintUrlApiRequestBody>, 'path' | 'query'>;
1372
+ interface TaxInvoiceGetPrintUrlApiResponse {
1373
+ /**
1374
+ * 전자세금계산서 공급자 인쇄 팝업 URL.
1375
+ */
1376
+ url: string;
1377
+ }
1378
+ //#endregion
1379
+ //#region src/tax-invoice/view/get-pdf-url.d.ts
1380
+ /**
1381
+ * TaxInvoice GetPDFURL Raw Spec
1382
+ *
1383
+ * Source
1384
+ * - https://developers.popbill.com/api-reference/taxinvoice/api/view#GetPDFURL
1385
+ */
1386
+ /**
1387
+ * GetPDFURL API path 파라미터.
1388
+ */
1389
+ interface TaxInvoiceGetPdfUrlApiRequestPath {
1390
+ /**
1391
+ * 문서번호 유형.
1392
+ *
1393
+ * - `SELL`: 매출
1394
+ * - `BUY`: 매입
1395
+ * - `TRUSTEE`: 위수탁
1396
+ */
1397
+ MgtKeyType: TaxInvoiceMgtKeyType;
1398
+ /**
1399
+ * 파트너가 할당한 문서번호.
1400
+ *
1401
+ * 최대 24자.
1402
+ */
1403
+ MgtKey: string;
1404
+ }
1405
+ /**
1406
+ * GetPDFURL API query 파라미터.
1407
+ */
1408
+ interface TaxInvoiceGetPdfUrlApiRequestQuery {
1409
+ /**
1410
+ * 보기 타입 고정값.
1411
+ *
1412
+ * - `PDF`: PDF 다운로드 URL
1413
+ */
1414
+ TG: 'PDF';
1415
+ }
1416
+ /**
1417
+ * GetPDFURL API body.
1418
+ */
1419
+ type TaxInvoiceGetPdfUrlApiRequestBody = never;
1420
+ /**
1421
+ * GetPDFURL API 요청(raw).
1422
+ */
1423
+ type TaxInvoiceGetPdfUrlApiRequest = TaxInvoiceRequireRequestFields<TaxInvoiceApiRequest<TaxInvoiceGetPdfUrlApiRequestPath, TaxInvoiceGetPdfUrlApiRequestQuery, TaxInvoiceGetPdfUrlApiRequestBody>, 'path' | 'query'>;
1424
+ interface TaxInvoiceGetPdfUrlApiResponse {
1425
+ /**
1426
+ * 전자세금계산서 PDF 다운로드 URL.
1427
+ */
1428
+ url: string;
1429
+ }
1430
+ //#endregion
1431
+ //#region src/tax-invoice/view/get-mass-print-url.d.ts
1432
+ /**
1433
+ * TaxInvoice GetMassPrintURL Raw Spec
1434
+ *
1435
+ * Source
1436
+ * - https://developers.popbill.com/api-reference/taxinvoice/api/view#GetMassPrintURL
1437
+ */
1438
+ /**
1439
+ * GetMassPrintURL API path 파라미터.
1440
+ */
1441
+ interface TaxInvoiceGetMassPrintUrlApiRequestPath {
1442
+ /**
1443
+ * 문서번호 유형.
1444
+ *
1445
+ * - `SELL`: 매출
1446
+ * - `BUY`: 매입
1447
+ * - `TRUSTEE`: 위수탁
1448
+ */
1449
+ MgtKeyType: TaxInvoiceMgtKeyType;
1450
+ }
1451
+ /**
1452
+ * GetMassPrintURL API query 파라미터.
1453
+ */
1454
+ interface TaxInvoiceGetMassPrintUrlApiRequestQuery {
1455
+ /**
1456
+ * 다건 인쇄 옵션.
1457
+ *
1458
+ * `?Print` 형태로 빈값 파라미터를 전달한다.
1459
+ */
1460
+ Print: true;
1461
+ }
1462
+ /**
1463
+ * 문서번호 목록.
1464
+ *
1465
+ * GetMassPrintURL API body(raw).
1466
+ *
1467
+ * 최대 100건까지 인쇄할 수 있다.
1468
+ */
1469
+ type TaxInvoiceGetMassPrintUrlApiRequestBody = string[];
1470
+ /**
1471
+ * GetMassPrintURL API 요청(raw).
1472
+ */
1473
+ type TaxInvoiceGetMassPrintUrlApiRequest = TaxInvoiceRequireRequestFields<TaxInvoiceApiRequest<TaxInvoiceGetMassPrintUrlApiRequestPath, TaxInvoiceGetMassPrintUrlApiRequestQuery, TaxInvoiceGetMassPrintUrlApiRequestBody>, 'path' | 'query' | 'body'>;
1474
+ interface TaxInvoiceGetMassPrintUrlApiResponse {
1475
+ /**
1476
+ * 전자세금계산서 다건 인쇄 팝업 URL.
1477
+ */
1478
+ url: string;
1479
+ }
1480
+ //#endregion
1481
+ //#region src/tax-invoice/view/get-e-print-url.d.ts
1482
+ /**
1483
+ * TaxInvoice GetEPrintURL Raw Spec
1484
+ *
1485
+ * Source
1486
+ * - https://developers.popbill.com/api-reference/taxinvoice/api/view#GetEPrintURL
1487
+ */
1488
+ /**
1489
+ * GetEPrintURL API path 파라미터.
1490
+ */
1491
+ interface TaxInvoiceGetEPrintUrlApiRequestPath {
1492
+ /**
1493
+ * 문서번호 유형.
1494
+ *
1495
+ * - `SELL`: 매출
1496
+ * - `BUY`: 매입
1497
+ * - `TRUSTEE`: 위수탁
1498
+ */
1499
+ MgtKeyType: TaxInvoiceMgtKeyType;
1500
+ /**
1501
+ * 파트너가 할당한 문서번호.
1502
+ *
1503
+ * 최대 24자.
1504
+ */
1505
+ MgtKey: string;
1506
+ }
1507
+ /**
1508
+ * GetEPrintURL API query 파라미터.
1509
+ */
1510
+ interface TaxInvoiceGetEPrintUrlApiRequestQuery {
1511
+ /**
1512
+ * 보기 타입 고정값.
1513
+ *
1514
+ * - `EPRINT`: 공급받는자 인쇄 팝업
1515
+ */
1516
+ TG: 'EPRINT';
1517
+ }
1518
+ /**
1519
+ * GetEPrintURL API body.
1520
+ */
1521
+ type TaxInvoiceGetEPrintUrlApiRequestBody = never;
1522
+ /**
1523
+ * GetEPrintURL API 요청(raw).
1524
+ */
1525
+ type TaxInvoiceGetEPrintUrlApiRequest = TaxInvoiceRequireRequestFields<TaxInvoiceApiRequest<TaxInvoiceGetEPrintUrlApiRequestPath, TaxInvoiceGetEPrintUrlApiRequestQuery, TaxInvoiceGetEPrintUrlApiRequestBody>, 'path' | 'query'>;
1526
+ interface TaxInvoiceGetEPrintUrlApiResponse {
1527
+ /**
1528
+ * 전자세금계산서 공급받는자 인쇄 팝업 URL.
1529
+ */
1530
+ url: string;
1531
+ }
1532
+ //#endregion
1533
+ //#region src/tax-invoice/view/get-mail-url.d.ts
1534
+ /**
1535
+ * TaxInvoice GetMailURL Raw Spec
1536
+ *
1537
+ * Source
1538
+ * - https://developers.popbill.com/api-reference/taxinvoice/api/view#GetMailURL
1539
+ */
1540
+ /**
1541
+ * GetMailURL API path 파라미터.
1542
+ */
1543
+ interface TaxInvoiceGetMailUrlApiRequestPath {
1544
+ /**
1545
+ * 문서번호 유형.
1546
+ *
1547
+ * - `SELL`: 매출
1548
+ * - `BUY`: 매입
1549
+ * - `TRUSTEE`: 위수탁
1550
+ */
1551
+ MgtKeyType: TaxInvoiceMgtKeyType;
1552
+ /**
1553
+ * 파트너가 할당한 문서번호.
1554
+ *
1555
+ * 최대 24자.
1556
+ */
1557
+ MgtKey: string;
1558
+ }
1559
+ /**
1560
+ * GetMailURL API query 파라미터.
1561
+ */
1562
+ interface TaxInvoiceGetMailUrlApiRequestQuery {
1563
+ /**
1564
+ * 보기 타입 고정값.
1565
+ *
1566
+ * - `MAIL`: 메일 보기 팝업
1567
+ */
1568
+ TG: 'MAIL';
1569
+ }
1570
+ /**
1571
+ * GetMailURL API body.
1572
+ */
1573
+ type TaxInvoiceGetMailUrlApiRequestBody = never;
1574
+ /**
1575
+ * GetMailURL API 요청(raw).
1576
+ */
1577
+ type TaxInvoiceGetMailUrlApiRequest = TaxInvoiceRequireRequestFields<TaxInvoiceApiRequest<TaxInvoiceGetMailUrlApiRequestPath, TaxInvoiceGetMailUrlApiRequestQuery, TaxInvoiceGetMailUrlApiRequestBody>, 'path' | 'query'>;
1578
+ interface TaxInvoiceGetMailUrlApiResponse {
1579
+ /**
1580
+ * 전자세금계산서 메일 보기 팝업 URL.
1581
+ */
1582
+ url: string;
1583
+ }
1584
+ //#endregion
1585
+ //#region src/tax-invoice/etc/get-seal-url.d.ts
1586
+ /**
1587
+ * TaxInvoice GetSealURL Raw Spec
1588
+ *
1589
+ * Source
1590
+ * - https://developers.popbill.com/api-reference/taxinvoice/api/etc#GetSealURL
1591
+ */
1592
+ /**
1593
+ * GetSealURL API path 파라미터.
1594
+ */
1595
+ type TaxInvoiceGetSealUrlApiRequestPath = never;
1596
+ /**
1597
+ * GetSealURL API query 파라미터.
1598
+ */
1599
+ interface TaxInvoiceGetSealUrlApiRequestQuery {
1600
+ /**
1601
+ * 접근 메뉴 고정값.
1602
+ *
1603
+ * - `SEAL`: 인감 및 첨부문서 등록 팝업
1604
+ */
1605
+ TG: 'SEAL';
1606
+ }
1607
+ /**
1608
+ * GetSealURL API body.
1609
+ */
1610
+ type TaxInvoiceGetSealUrlApiRequestBody = never;
1611
+ /**
1612
+ * GetSealURL API 요청(raw).
1613
+ */
1614
+ type TaxInvoiceGetSealUrlApiRequest = TaxInvoiceRequireRequestFields<TaxInvoiceApiRequest<TaxInvoiceGetSealUrlApiRequestPath, TaxInvoiceGetSealUrlApiRequestQuery, TaxInvoiceGetSealUrlApiRequestBody>, 'query'>;
1615
+ interface TaxInvoiceGetSealUrlApiResponse {
1616
+ /**
1617
+ * 인감 및 첨부문서 등록 팝업 URL.
1618
+ */
1619
+ url: string;
1620
+ }
1621
+ //#endregion
1622
+ //#region src/tax-invoice/etc/attach-file.d.ts
1623
+ /**
1624
+ * TaxInvoice AttachFile Raw Spec
1625
+ *
1626
+ * Source
1627
+ * - https://developers.popbill.com/api-reference/taxinvoice/api/etc#AttachFile
1628
+ */
1629
+ /**
1630
+ * AttachFile API path 파라미터.
1631
+ */
1632
+ interface TaxInvoiceAttachFileApiRequestPath {
1633
+ /**
1634
+ * 문서번호 유형.
1635
+ *
1636
+ * - `SELL`: 매출
1637
+ * - `BUY`: 매입
1638
+ * - `TRUSTEE`: 위수탁
1639
+ */
1640
+ MgtKeyType: TaxInvoiceMgtKeyType;
1641
+ /**
1642
+ * 파트너가 할당한 문서번호.
1643
+ *
1644
+ * 최대 24자.
1645
+ */
1646
+ MgtKey: string;
1647
+ }
1648
+ /**
1649
+ * AttachFile API query 파라미터.
1650
+ */
1651
+ type TaxInvoiceAttachFileApiRequestQuery = never;
1652
+ /**
1653
+ * AttachFile API body(raw form-data form part).
1654
+ */
1655
+ interface TaxInvoiceAttachFileApiRequestBody {
1656
+ /**
1657
+ * 첨부파일 표시명.
1658
+ *
1659
+ * 일부 구현/호환성에서만 사용한다.
1660
+ */
1661
+ DisplayName?: string;
1662
+ }
1663
+ /**
1664
+ * AttachFile API 바이너리 파일 payload.
1665
+ */
1666
+ interface TaxInvoiceAttachFileBinaryPayload {
1667
+ /**
1668
+ * 첨부 파일명.
1669
+ */
1670
+ fileName: string;
1671
+ /**
1672
+ * 첨부 파일 데이터.
1673
+ */
1674
+ fileData: Buffer;
1675
+ }
1676
+ /**
1677
+ * AttachFile API multipart 파일 payload.
1678
+ */
1679
+ interface TaxInvoiceAttachFileMultipartPayload {
1680
+ /**
1681
+ * 첨부할 로컬 파일 경로.
1682
+ */
1683
+ filePath: string;
1684
+ /**
1685
+ * 첨부파일 표시명.
1686
+ */
1687
+ displayName?: string;
1688
+ }
1689
+ /**
1690
+ * AttachFile API 요청(raw).
1691
+ */
1692
+ type TaxInvoiceAttachFileApiRequest = TaxInvoiceRequireRequestFields<TaxInvoiceApiRequest<TaxInvoiceAttachFileApiRequestPath, TaxInvoiceAttachFileApiRequestQuery, TaxInvoiceAttachFileApiRequestBody>, 'path'>;
1693
+ type TaxInvoiceAttachFileApiResponse = TaxInvoiceApiResponseBase;
1694
+ //#endregion
1695
+ //#region src/tax-invoice/etc/get-files.d.ts
1696
+ /**
1697
+ * TaxInvoice GetFiles Raw Spec
1698
+ *
1699
+ * Source
1700
+ * - https://developers.popbill.com/api-reference/taxinvoice/api/etc#GetFiles
1701
+ */
1702
+ /**
1703
+ * GetFiles API path 파라미터.
1704
+ */
1705
+ interface TaxInvoiceGetFilesApiRequestPath {
1706
+ /**
1707
+ * 문서번호 유형.
1708
+ *
1709
+ * - `SELL`: 매출
1710
+ * - `BUY`: 매입
1711
+ * - `TRUSTEE`: 위수탁
1712
+ */
1713
+ MgtKeyType: TaxInvoiceMgtKeyType;
1714
+ /**
1715
+ * 파트너가 할당한 문서번호.
1716
+ *
1717
+ * 최대 24자.
1718
+ */
1719
+ MgtKey: string;
1720
+ }
1721
+ /**
1722
+ * GetFiles API query 파라미터.
1723
+ */
1724
+ type TaxInvoiceGetFilesApiRequestQuery = never;
1725
+ /**
1726
+ * GetFiles API body.
1727
+ */
1728
+ type TaxInvoiceGetFilesApiRequestBody = never;
1729
+ /**
1730
+ * GetFiles API 요청(raw).
1731
+ */
1732
+ type TaxInvoiceGetFilesApiRequest = TaxInvoiceRequireRequestFields<TaxInvoiceApiRequest<TaxInvoiceGetFilesApiRequestPath, TaxInvoiceGetFilesApiRequestQuery, TaxInvoiceGetFilesApiRequestBody>, 'path'>;
1733
+ /**
1734
+ * GetFiles API 응답(raw).
1735
+ */
1736
+ type TaxInvoiceGetFilesApiResponse = TaxInvoiceFileMetaApiModel[];
1737
+ //#endregion
1738
+ //#region src/tax-invoice/etc/delete-file.d.ts
1739
+ /**
1740
+ * TaxInvoice DeleteFile Raw Spec
1741
+ *
1742
+ * Source
1743
+ * - https://developers.popbill.com/api-reference/taxinvoice/api/etc#DeleteFile
1744
+ */
1745
+ /**
1746
+ * DeleteFile API path 파라미터.
1747
+ */
1748
+ interface TaxInvoiceDeleteFileApiRequestPath {
1749
+ /**
1750
+ * 문서번호 유형.
1751
+ *
1752
+ * - `SELL`: 매출
1753
+ * - `BUY`: 매입
1754
+ * - `TRUSTEE`: 위수탁
1755
+ */
1756
+ MgtKeyType: TaxInvoiceMgtKeyType;
1757
+ /**
1758
+ * 파트너가 할당한 문서번호.
1759
+ *
1760
+ * 최대 24자.
1761
+ */
1762
+ MgtKey: string;
1763
+ /**
1764
+ * 팝빌이 할당한 파일 식별번호.
1765
+ *
1766
+ * GetFiles 응답의 `attachedFile` 값을 사용한다.
1767
+ */
1768
+ FileID: string;
1769
+ }
1770
+ /**
1771
+ * DeleteFile API query 파라미터.
1772
+ */
1773
+ type TaxInvoiceDeleteFileApiRequestQuery = never;
1774
+ /**
1775
+ * DeleteFile API body.
1776
+ */
1777
+ type TaxInvoiceDeleteFileApiRequestBody = never;
1778
+ /**
1779
+ * DeleteFile API 요청(raw).
1780
+ */
1781
+ type TaxInvoiceDeleteFileApiRequest = TaxInvoiceRequireRequestFields<TaxInvoiceApiRequest<TaxInvoiceDeleteFileApiRequestPath, TaxInvoiceDeleteFileApiRequestQuery, TaxInvoiceDeleteFileApiRequestBody>, 'path'>;
1782
+ type TaxInvoiceDeleteFileApiResponse = TaxInvoiceApiResponseBase;
1783
+ //#endregion
1784
+ //#region src/tax-invoice/etc/send-email.d.ts
1785
+ /**
1786
+ * TaxInvoice SendEmail Raw Spec
1787
+ *
1788
+ * Source
1789
+ * - https://developers.popbill.com/api-reference/taxinvoice/api/etc#SendEmail
1790
+ */
1791
+ /**
1792
+ * SendEmail API path 파라미터.
1793
+ */
1794
+ interface TaxInvoiceSendEmailApiRequestPath {
1795
+ /**
1796
+ * 문서번호 유형.
1797
+ *
1798
+ * - `SELL`: 매출
1799
+ * - `BUY`: 매입
1800
+ * - `TRUSTEE`: 위수탁
1801
+ */
1802
+ MgtKeyType: TaxInvoiceMgtKeyType;
1803
+ /**
1804
+ * 파트너가 할당한 문서번호.
1805
+ *
1806
+ * 최대 24자.
1807
+ */
1808
+ MgtKey: string;
1809
+ }
1810
+ /**
1811
+ * SendEmail API query 파라미터.
1812
+ */
1813
+ type TaxInvoiceSendEmailApiRequestQuery = never;
1814
+ /**
1815
+ * SendEmail API body(raw).
1816
+ */
1817
+ interface TaxInvoiceSendEmailApiRequestBody {
1818
+ /**
1819
+ * 수신자 메일주소.
1820
+ */
1821
+ receiver: string;
1822
+ }
1823
+ /**
1824
+ * SendEmail API 요청(raw).
1825
+ */
1826
+ type TaxInvoiceSendEmailApiRequest = TaxInvoiceRequireRequestFields<TaxInvoiceApiRequest<TaxInvoiceSendEmailApiRequestPath, TaxInvoiceSendEmailApiRequestQuery, TaxInvoiceSendEmailApiRequestBody>, 'path' | 'body'>;
1827
+ type TaxInvoiceSendEmailApiResponse = TaxInvoiceApiResponseBase;
1828
+ //#endregion
1829
+ //#region src/tax-invoice/etc/send-sms.d.ts
1830
+ /**
1831
+ * TaxInvoice SendSMS Raw Spec
1832
+ *
1833
+ * Source
1834
+ * - https://developers.popbill.com/api-reference/taxinvoice/api/etc#SendSMS
1835
+ */
1836
+ /**
1837
+ * SendSMS API path 파라미터.
1838
+ */
1839
+ interface TaxInvoiceSendSmsApiRequestPath {
1840
+ /**
1841
+ * 문서번호 유형.
1842
+ *
1843
+ * - `SELL`: 매출
1844
+ * - `BUY`: 매입
1845
+ * - `TRUSTEE`: 위수탁
1846
+ */
1847
+ MgtKeyType: TaxInvoiceMgtKeyType;
1848
+ /**
1849
+ * 파트너가 할당한 문서번호.
1850
+ *
1851
+ * 최대 24자.
1852
+ */
1853
+ MgtKey: string;
1854
+ }
1855
+ /**
1856
+ * SendSMS API query 파라미터.
1857
+ */
1858
+ type TaxInvoiceSendSmsApiRequestQuery = never;
1859
+ /**
1860
+ * SendSMS API body(raw).
1861
+ */
1862
+ interface TaxInvoiceSendSmsApiRequestBody {
1863
+ /**
1864
+ * 발신번호.
1865
+ */
1866
+ sender: string;
1867
+ /**
1868
+ * 수신번호.
1869
+ */
1870
+ receiver: string;
1871
+ /**
1872
+ * 메시지 내용.
1873
+ *
1874
+ * 최대 90byte까지 전달되며 초과분은 자동 삭제된다.
1875
+ */
1876
+ contents: string;
1877
+ }
1878
+ /**
1879
+ * SendSMS API 요청(raw).
1880
+ */
1881
+ type TaxInvoiceSendSmsApiRequest = TaxInvoiceRequireRequestFields<TaxInvoiceApiRequest<TaxInvoiceSendSmsApiRequestPath, TaxInvoiceSendSmsApiRequestQuery, TaxInvoiceSendSmsApiRequestBody>, 'path' | 'body'>;
1882
+ type TaxInvoiceSendSmsApiResponse = TaxInvoiceApiResponseBase;
1883
+ //#endregion
1884
+ //#region src/tax-invoice/etc/send-fax.d.ts
1885
+ /**
1886
+ * TaxInvoice SendFAX Raw Spec
1887
+ *
1888
+ * Source
1889
+ * - https://developers.popbill.com/api-reference/taxinvoice/api/etc#SendFAX
1890
+ */
1891
+ /**
1892
+ * SendFAX API path 파라미터.
1893
+ */
1894
+ interface TaxInvoiceSendFaxApiRequestPath {
1895
+ /**
1896
+ * 문서번호 유형.
1897
+ *
1898
+ * - `SELL`: 매출
1899
+ * - `BUY`: 매입
1900
+ * - `TRUSTEE`: 위수탁
1901
+ */
1902
+ MgtKeyType: TaxInvoiceMgtKeyType;
1903
+ /**
1904
+ * 파트너가 할당한 문서번호.
1905
+ *
1906
+ * 최대 24자.
1907
+ */
1908
+ MgtKey: string;
1909
+ }
1910
+ /**
1911
+ * SendFAX API query 파라미터.
1912
+ */
1913
+ type TaxInvoiceSendFaxApiRequestQuery = never;
1914
+ /**
1915
+ * SendFAX API body(raw).
1916
+ */
1917
+ interface TaxInvoiceSendFaxApiRequestBody {
1918
+ /**
1919
+ * 발신번호.
1920
+ */
1921
+ sender: string;
1922
+ /**
1923
+ * 수신번호.
1924
+ */
1925
+ receiver: string;
1926
+ }
1927
+ /**
1928
+ * SendFAX API 요청(raw).
1929
+ */
1930
+ type TaxInvoiceSendFaxApiRequest = TaxInvoiceRequireRequestFields<TaxInvoiceApiRequest<TaxInvoiceSendFaxApiRequestPath, TaxInvoiceSendFaxApiRequestQuery, TaxInvoiceSendFaxApiRequestBody>, 'path' | 'body'>;
1931
+ type TaxInvoiceSendFaxApiResponse = TaxInvoiceApiResponseBase;
1932
+ //#endregion
1933
+ //#region src/tax-invoice/etc/attach-statement.d.ts
1934
+ /**
1935
+ * TaxInvoice AttachStatement Raw Spec
1936
+ *
1937
+ * Source
1938
+ * - https://developers.popbill.com/api-reference/taxinvoice/api/etc#AttachStatement
1939
+ */
1940
+ /**
1941
+ * 전자명세서 문서유형 코드(raw).
1942
+ *
1943
+ * - `121`: 거래명세서
1944
+ * - `122`: 청구서
1945
+ * - `123`: 견적서
1946
+ * - `124`: 발주서
1947
+ * - `125`: 입금표
1948
+ * - `126`: 영수증
1949
+ */
1950
+ interface TaxInvoiceStatementItemCodeMap {
1951
+ /**
1952
+ * 거래명세서.
1953
+ */
1954
+ TradeStatement: 121;
1955
+ /**
1956
+ * 청구서.
1957
+ */
1958
+ Invoice: 122;
1959
+ /**
1960
+ * 견적서.
1961
+ */
1962
+ Estimate: 123;
1963
+ /**
1964
+ * 발주서.
1965
+ */
1966
+ PurchaseOrder: 124;
1967
+ /**
1968
+ * 입금표.
1969
+ */
1970
+ Deposit: 125;
1971
+ /**
1972
+ * 영수증.
1973
+ */
1974
+ Receipt: 126;
1975
+ }
1976
+ /**
1977
+ * 전자명세서 문서유형 코드(raw).
1978
+ */
1979
+ type TaxInvoiceStatementItemCode = TaxInvoiceStatementItemCodeMap[keyof TaxInvoiceStatementItemCodeMap];
1980
+ /**
1981
+ * AttachStatement API path 파라미터.
1982
+ */
1983
+ interface TaxInvoiceAttachStatementApiRequestPath {
1984
+ /**
1985
+ * 문서번호 유형.
1986
+ *
1987
+ * - `SELL`: 매출
1988
+ * - `BUY`: 매입
1989
+ * - `TRUSTEE`: 위수탁
1990
+ */
1991
+ MgtKeyType: TaxInvoiceMgtKeyType;
1992
+ /**
1993
+ * 파트너가 할당한 문서번호.
1994
+ *
1995
+ * 최대 24자.
1996
+ */
1997
+ MgtKey: string;
1998
+ }
1999
+ /**
2000
+ * AttachStatement API query 파라미터.
2001
+ */
2002
+ type TaxInvoiceAttachStatementApiRequestQuery = never;
2003
+ /**
2004
+ * AttachStatement API body(raw).
2005
+ */
2006
+ interface TaxInvoiceAttachStatementApiRequestBody {
2007
+ /**
2008
+ * 첨부할 전자명세서 문서유형 코드.
2009
+ */
2010
+ ItemCode: TaxInvoiceStatementItemCode;
2011
+ /**
2012
+ * 첨부할 전자명세서 문서번호.
2013
+ *
2014
+ * 전자명세서 발행 시 사용한 문서번호와 동일해야 한다.
2015
+ */
2016
+ MgtKey: string;
2017
+ }
2018
+ /**
2019
+ * AttachStatement API 요청(raw).
2020
+ */
2021
+ type TaxInvoiceAttachStatementApiRequest = TaxInvoiceRequireRequestFields<TaxInvoiceApiRequest<TaxInvoiceAttachStatementApiRequestPath, TaxInvoiceAttachStatementApiRequestQuery, TaxInvoiceAttachStatementApiRequestBody>, 'path' | 'body'>;
2022
+ type TaxInvoiceAttachStatementApiResponse = TaxInvoiceApiResponseBase;
2023
+ //#endregion
2024
+ //#region src/tax-invoice/etc/detach-statement.d.ts
2025
+ /**
2026
+ * TaxInvoice DetachStatement Raw Spec
2027
+ *
2028
+ * Source
2029
+ * - https://developers.popbill.com/api-reference/taxinvoice/api/etc#DetachStatement
2030
+ */
2031
+ /**
2032
+ * DetachStatement API path 파라미터.
2033
+ */
2034
+ interface TaxInvoiceDetachStatementApiRequestPath {
2035
+ /**
2036
+ * 문서번호 유형.
2037
+ *
2038
+ * - `SELL`: 매출
2039
+ * - `BUY`: 매입
2040
+ * - `TRUSTEE`: 위수탁
2041
+ */
2042
+ MgtKeyType: TaxInvoiceMgtKeyType;
2043
+ /**
2044
+ * 파트너가 할당한 문서번호.
2045
+ *
2046
+ * 최대 24자.
2047
+ */
2048
+ MgtKey: string;
2049
+ }
2050
+ /**
2051
+ * DetachStatement API query 파라미터.
2052
+ */
2053
+ type TaxInvoiceDetachStatementApiRequestQuery = never;
2054
+ /**
2055
+ * DetachStatement API body(raw).
2056
+ */
2057
+ interface TaxInvoiceDetachStatementApiRequestBody {
2058
+ /**
2059
+ * 첨부해제할 전자명세서 문서유형 코드.
2060
+ */
2061
+ ItemCode: TaxInvoiceStatementItemCode;
2062
+ /**
2063
+ * 첨부해제할 전자명세서 문서번호.
2064
+ *
2065
+ * 전자명세서 발행 시 사용한 문서번호와 동일해야 한다.
2066
+ */
2067
+ MgtKey: string;
2068
+ }
2069
+ /**
2070
+ * DetachStatement API 요청(raw).
2071
+ */
2072
+ type TaxInvoiceDetachStatementApiRequest = TaxInvoiceRequireRequestFields<TaxInvoiceApiRequest<TaxInvoiceDetachStatementApiRequestPath, TaxInvoiceDetachStatementApiRequestQuery, TaxInvoiceDetachStatementApiRequestBody>, 'path' | 'body'>;
2073
+ type TaxInvoiceDetachStatementApiResponse = TaxInvoiceApiResponseBase;
2074
+ //#endregion
2075
+ //#region src/tax-invoice/etc/assign-mgt-key.d.ts
2076
+ /**
2077
+ * TaxInvoice AssignMgtKey Raw Spec
2078
+ *
2079
+ * Source
2080
+ * - https://developers.popbill.com/api-reference/taxinvoice/api/etc#AssignMgtKey
2081
+ */
2082
+ /**
2083
+ * AssignMgtKey API path 파라미터.
2084
+ */
2085
+ interface TaxInvoiceAssignMgtKeyApiRequestPath {
2086
+ /**
2087
+ * 팝빌에서 할당한 식별번호(ItemKey).
2088
+ *
2089
+ * 최대 18자.
2090
+ */
2091
+ ItemKey: string;
2092
+ /**
2093
+ * 문서번호 유형.
2094
+ *
2095
+ * - `SELL`: 매출
2096
+ * - `BUY`: 매입
2097
+ * - `TRUSTEE`: 위수탁
2098
+ */
2099
+ MgtKeyType: TaxInvoiceMgtKeyType;
2100
+ }
2101
+ /**
2102
+ * AssignMgtKey API query 파라미터.
2103
+ */
2104
+ type TaxInvoiceAssignMgtKeyApiRequestQuery = never;
2105
+ /**
2106
+ * AssignMgtKey API body(raw).
2107
+ */
2108
+ interface TaxInvoiceAssignMgtKeyApiRequestBody {
2109
+ /**
2110
+ * 파트너가 할당한 문서번호.
2111
+ *
2112
+ * 최대 24자.
2113
+ */
2114
+ MgtKey: string;
2115
+ }
2116
+ /**
2117
+ * AssignMgtKey API 요청(raw).
2118
+ */
2119
+ type TaxInvoiceAssignMgtKeyApiRequest = TaxInvoiceRequireRequestFields<TaxInvoiceApiRequest<TaxInvoiceAssignMgtKeyApiRequestPath, TaxInvoiceAssignMgtKeyApiRequestQuery, TaxInvoiceAssignMgtKeyApiRequestBody>, 'path' | 'body'>;
2120
+ type TaxInvoiceAssignMgtKeyApiResponse = TaxInvoiceApiResponseBase;
2121
+ //#endregion
2122
+ //#region src/tax-invoice/etc/list-email-config.d.ts
2123
+ /**
2124
+ * TaxInvoice ListEmailConfig Raw Spec
2125
+ *
2126
+ * Source
2127
+ * - https://developers.popbill.com/api-reference/taxinvoice/api/etc#ListEmailConfig
2128
+ */
2129
+ /**
2130
+ * ListEmailConfig API path 파라미터.
2131
+ */
2132
+ type TaxInvoiceListEmailConfigApiRequestPath = never;
2133
+ /**
2134
+ * ListEmailConfig API query 파라미터.
2135
+ */
2136
+ type TaxInvoiceListEmailConfigApiRequestQuery = never;
2137
+ /**
2138
+ * ListEmailConfig API body.
2139
+ */
2140
+ type TaxInvoiceListEmailConfigApiRequestBody = never;
2141
+ /**
2142
+ * ListEmailConfig API 요청(raw).
2143
+ */
2144
+ type TaxInvoiceListEmailConfigApiRequest = TaxInvoiceApiRequest<TaxInvoiceListEmailConfigApiRequestPath, TaxInvoiceListEmailConfigApiRequestQuery, TaxInvoiceListEmailConfigApiRequestBody>;
2145
+ /**
2146
+ * ListEmailConfig API 응답(raw).
2147
+ */
2148
+ type TaxInvoiceListEmailConfigApiResponse = TaxInvoiceEmailConfigApiModel[];
2149
+ //#endregion
2150
+ //#region src/tax-invoice/etc/update-email-config.d.ts
2151
+ /**
2152
+ * TaxInvoice UpdateEmailConfig Raw Spec
2153
+ *
2154
+ * Source
2155
+ * - https://developers.popbill.com/api-reference/taxinvoice/api/etc#UpdateEmailConfig
2156
+ */
2157
+ /**
2158
+ * UpdateEmailConfig API path 파라미터.
2159
+ */
2160
+ type TaxInvoiceUpdateEmailConfigApiRequestPath = never;
2161
+ /**
2162
+ * UpdateEmailConfig API query 파라미터.
2163
+ */
2164
+ interface TaxInvoiceUpdateEmailConfigApiRequestQuery {
2165
+ /**
2166
+ * 메일 전송 유형.
2167
+ */
2168
+ EmailType: TaxInvoiceEmailType;
2169
+ /**
2170
+ * 전송 여부.
2171
+ *
2172
+ * - `true`: 전송
2173
+ * - `false`: 미전송
2174
+ */
2175
+ SendYN: boolean;
2176
+ }
2177
+ /**
2178
+ * UpdateEmailConfig API body.
2179
+ */
2180
+ type TaxInvoiceUpdateEmailConfigApiRequestBody = never;
2181
+ /**
2182
+ * UpdateEmailConfig API 요청(raw).
2183
+ */
2184
+ type TaxInvoiceUpdateEmailConfigApiRequest = TaxInvoiceRequireRequestFields<TaxInvoiceApiRequest<TaxInvoiceUpdateEmailConfigApiRequestPath, TaxInvoiceUpdateEmailConfigApiRequestQuery, TaxInvoiceUpdateEmailConfigApiRequestBody>, 'query'>;
2185
+ type TaxInvoiceUpdateEmailConfigApiResponse = TaxInvoiceApiResponseBase;
2186
+ //#endregion
2187
+ //#region src/tax-invoice/etc/get-send-to-nts-config.d.ts
2188
+ /**
2189
+ * TaxInvoice GetSendToNTSConfig Raw Spec
2190
+ *
2191
+ * Source
2192
+ * - https://developers.popbill.com/api-reference/taxinvoice/api/etc#GetSendToNTSConfig
2193
+ */
2194
+ /**
2195
+ * GetSendToNTSConfig API path 파라미터.
2196
+ */
2197
+ type TaxInvoiceGetSendToNTSConfigApiRequestPath = never;
2198
+ /**
2199
+ * GetSendToNTSConfig API query 파라미터.
2200
+ */
2201
+ type TaxInvoiceGetSendToNTSConfigApiRequestQuery = never;
2202
+ /**
2203
+ * GetSendToNTSConfig API body.
2204
+ */
2205
+ type TaxInvoiceGetSendToNTSConfigApiRequestBody = never;
2206
+ /**
2207
+ * GetSendToNTSConfig API 요청(raw).
2208
+ */
2209
+ type TaxInvoiceGetSendToNTSConfigApiRequest = TaxInvoiceApiRequest<TaxInvoiceGetSendToNTSConfigApiRequestPath, TaxInvoiceGetSendToNTSConfigApiRequestQuery, TaxInvoiceGetSendToNTSConfigApiRequestBody>;
2210
+ interface TaxInvoiceGetSendToNTSConfigApiResponse {
2211
+ /**
2212
+ * 국세청 전송 옵션 설정 상태.
2213
+ *
2214
+ * - `true`: 발행 즉시 전송
2215
+ * - `false`: 익일 자동 전송
2216
+ */
2217
+ sendToNTS: boolean | string;
2218
+ }
2219
+ //#endregion
2220
+ //#region src/tax-invoice/cert/get-tax-cert-url.d.ts
2221
+ /**
2222
+ * TaxInvoice GetTaxCertURL Raw Spec
2223
+ *
2224
+ * Source
2225
+ * - https://developers.popbill.com/api-reference/taxinvoice/api/cert#GetTaxCertURL
2226
+ */
2227
+ /**
2228
+ * GetTaxCertURL API path 파라미터.
2229
+ */
2230
+ type TaxInvoiceGetTaxCertUrlApiRequestPath = never;
2231
+ /**
2232
+ * GetTaxCertURL API query 파라미터.
2233
+ */
2234
+ interface TaxInvoiceGetTaxCertUrlApiRequestQuery {
2235
+ /**
2236
+ * 접근 메뉴 고정값.
2237
+ *
2238
+ * - `CERT`: 인증서 등록 팝업
2239
+ */
2240
+ TG: 'CERT';
2241
+ }
2242
+ /**
2243
+ * GetTaxCertURL API body.
2244
+ */
2245
+ type TaxInvoiceGetTaxCertUrlApiRequestBody = never;
2246
+ /**
2247
+ * GetTaxCertURL API 요청(raw).
2248
+ */
2249
+ type TaxInvoiceGetTaxCertUrlApiRequest = TaxInvoiceRequireRequestFields<TaxInvoiceApiRequest<TaxInvoiceGetTaxCertUrlApiRequestPath, TaxInvoiceGetTaxCertUrlApiRequestQuery, TaxInvoiceGetTaxCertUrlApiRequestBody>, 'query'>;
2250
+ interface TaxInvoiceGetTaxCertUrlApiResponse {
2251
+ /**
2252
+ * 인증서 등록 팝업 URL.
2253
+ */
2254
+ url: string;
2255
+ }
2256
+ //#endregion
2257
+ //#region src/tax-invoice/cert/regist-tax-cert.d.ts
2258
+ /**
2259
+ * TaxInvoice RegistTaxCert Raw Spec
2260
+ *
2261
+ * Source
2262
+ * - https://developers.popbill.com/api-reference/taxinvoice/api/cert#RegistTaxCert
2263
+ */
2264
+ /**
2265
+ * RegistTaxCert API path 파라미터.
2266
+ */
2267
+ type TaxInvoiceRegistTaxCertApiRequestPath = never;
2268
+ /**
2269
+ * RegistTaxCert API query 파라미터.
2270
+ */
2271
+ type TaxInvoiceRegistTaxCertApiRequestQuery = never;
2272
+ /**
2273
+ * RegistTaxCert API body(raw).
2274
+ */
2275
+ interface TaxInvoiceRegistTaxCertApiRequestBody {
2276
+ /**
2277
+ * 공동인증서 공개키.
2278
+ *
2279
+ * 필드 레벨 암호화(FLE)된 값으로 전달한다.
2280
+ */
2281
+ certPublicKey: string;
2282
+ /**
2283
+ * 공동인증서 개인키.
2284
+ *
2285
+ * 필드 레벨 암호화(FLE)된 값으로 전달한다.
2286
+ */
2287
+ certPrivateKey: string;
2288
+ /**
2289
+ * 공동인증서 비밀번호.
2290
+ *
2291
+ * 필드 레벨 암호화(FLE)된 값으로 전달한다.
2292
+ */
2293
+ certCipher: string;
2294
+ }
2295
+ /**
2296
+ * RegistTaxCert API 요청(raw).
2297
+ */
2298
+ type TaxInvoiceRegistTaxCertApiRequest = TaxInvoiceRequireRequestFields<TaxInvoiceApiRequest<TaxInvoiceRegistTaxCertApiRequestPath, TaxInvoiceRegistTaxCertApiRequestQuery, TaxInvoiceRegistTaxCertApiRequestBody>, 'body'>;
2299
+ type TaxInvoiceRegistTaxCertApiResponse = TaxInvoiceApiResponseBase;
2300
+ //#endregion
2301
+ //#region src/tax-invoice/cert/regist-tax-cert2.d.ts
2302
+ /**
2303
+ * TaxInvoice RegistTaxCert2 Raw Spec
2304
+ *
2305
+ * Source
2306
+ * - https://developers.popbill.com/api-reference/taxinvoice/api/cert#RegistTaxCertPFX
2307
+ */
2308
+ /**
2309
+ * RegistTaxCert2 API path 파라미터.
2310
+ */
2311
+ type TaxInvoiceRegistTaxCert2ApiRequestPath = never;
2312
+ /**
2313
+ * RegistTaxCert2 API query 파라미터.
2314
+ */
2315
+ type TaxInvoiceRegistTaxCert2ApiRequestQuery = never;
2316
+ /**
2317
+ * RegistTaxCert2 API body(raw).
2318
+ */
2319
+ interface TaxInvoiceRegistTaxCert2ApiRequestBody {
2320
+ /**
2321
+ * 공동인증서 PFX 파일.
2322
+ *
2323
+ * 필드 레벨 암호화(FLE)된 값으로 전달한다.
2324
+ */
2325
+ pfx: string;
2326
+ /**
2327
+ * 공동인증서 PFX 파일 비밀번호.
2328
+ *
2329
+ * 필드 레벨 암호화(FLE)된 값으로 전달한다.
2330
+ */
2331
+ password: string;
2332
+ }
2333
+ /**
2334
+ * RegistTaxCert2 API 요청(raw).
2335
+ */
2336
+ type TaxInvoiceRegistTaxCert2ApiRequest = TaxInvoiceRequireRequestFields<TaxInvoiceApiRequest<TaxInvoiceRegistTaxCert2ApiRequestPath, TaxInvoiceRegistTaxCert2ApiRequestQuery, TaxInvoiceRegistTaxCert2ApiRequestBody>, 'body'>;
2337
+ type TaxInvoiceRegistTaxCert2ApiResponse = TaxInvoiceApiResponseBase;
2338
+ //#endregion
2339
+ //#region src/tax-invoice/cert/get-certificate-expire-date.d.ts
2340
+ /**
2341
+ * TaxInvoice GetCertificateExpireDate Raw Spec
2342
+ *
2343
+ * Source
2344
+ * - https://developers.popbill.com/api-reference/taxinvoice/api/cert#GetCertificateExpireDate
2345
+ */
2346
+ /**
2347
+ * GetCertificateExpireDate API path 파라미터.
2348
+ */
2349
+ type TaxInvoiceGetCertificateExpireDateApiRequestPath = never;
2350
+ /**
2351
+ * GetCertificateExpireDate API query 파라미터.
2352
+ */
2353
+ interface TaxInvoiceGetCertificateExpireDateApiRequestQuery {
2354
+ /**
2355
+ * 조회 설정 고정값.
2356
+ *
2357
+ * - `CERT`: 인증서 만료일 조회
2358
+ */
2359
+ cfg: 'CERT';
2360
+ }
2361
+ /**
2362
+ * GetCertificateExpireDate API body.
2363
+ */
2364
+ type TaxInvoiceGetCertificateExpireDateApiRequestBody = never;
2365
+ /**
2366
+ * GetCertificateExpireDate API 요청(raw).
2367
+ */
2368
+ type TaxInvoiceGetCertificateExpireDateApiRequest = TaxInvoiceRequireRequestFields<TaxInvoiceApiRequest<TaxInvoiceGetCertificateExpireDateApiRequestPath, TaxInvoiceGetCertificateExpireDateApiRequestQuery, TaxInvoiceGetCertificateExpireDateApiRequestBody>, 'query'>;
2369
+ interface TaxInvoiceGetCertificateExpireDateApiResponse {
2370
+ /**
2371
+ * 공동인증서 만료일시.
2372
+ *
2373
+ * `yyyyMMddHHmmss` 형식.
2374
+ */
2375
+ certificateExpiration: string;
2376
+ }
2377
+ //#endregion
2378
+ //#region src/tax-invoice/cert/check-cert-validation.d.ts
2379
+ /**
2380
+ * TaxInvoice CheckCertValidation Raw Spec
2381
+ *
2382
+ * Source
2383
+ * - https://developers.popbill.com/api-reference/taxinvoice/api/cert#CheckCertValidation
2384
+ */
2385
+ /**
2386
+ * CheckCertValidation API path 파라미터.
2387
+ */
2388
+ type TaxInvoiceCheckCertValidationApiRequestPath = never;
2389
+ /**
2390
+ * CheckCertValidation API query 파라미터.
2391
+ */
2392
+ type TaxInvoiceCheckCertValidationApiRequestQuery = never;
2393
+ /**
2394
+ * CheckCertValidation API body.
2395
+ */
2396
+ type TaxInvoiceCheckCertValidationApiRequestBody = never;
2397
+ /**
2398
+ * CheckCertValidation API 요청(raw).
2399
+ */
2400
+ type TaxInvoiceCheckCertValidationApiRequest = TaxInvoiceApiRequest<TaxInvoiceCheckCertValidationApiRequestPath, TaxInvoiceCheckCertValidationApiRequestQuery, TaxInvoiceCheckCertValidationApiRequestBody>;
2401
+ type TaxInvoiceCheckCertValidationApiResponse = TaxInvoiceApiResponseBase;
2402
+ //#endregion
2403
+ //#region src/tax-invoice/cert/get-tax-cert-info.d.ts
2404
+ /**
2405
+ * TaxInvoice GetTaxCertInfo Raw Spec
2406
+ *
2407
+ * Source
2408
+ * - https://developers.popbill.com/api-reference/taxinvoice/api/cert#GetTaxCertInfo
2409
+ */
2410
+ /**
2411
+ * GetTaxCertInfo API path 파라미터.
2412
+ */
2413
+ type TaxInvoiceGetTaxCertInfoApiRequestPath = never;
2414
+ /**
2415
+ * GetTaxCertInfo API query 파라미터.
2416
+ */
2417
+ type TaxInvoiceGetTaxCertInfoApiRequestQuery = never;
2418
+ /**
2419
+ * GetTaxCertInfo API body.
2420
+ */
2421
+ type TaxInvoiceGetTaxCertInfoApiRequestBody = never;
2422
+ /**
2423
+ * GetTaxCertInfo API 요청(raw).
2424
+ */
2425
+ type TaxInvoiceGetTaxCertInfoApiRequest = TaxInvoiceApiRequest<TaxInvoiceGetTaxCertInfoApiRequestPath, TaxInvoiceGetTaxCertInfoApiRequestQuery, TaxInvoiceGetTaxCertInfoApiRequestBody>;
2426
+ type TaxInvoiceGetTaxCertInfoApiResponse = TaxInvoiceTaxCertInfoApiModel;
2427
+ declare namespace index_d_exports {
2428
+ export { CloseDownState, CloseDownStateMap, InvoiceeType, InvoiceeTypeMap, IssueType, IssueTypeMap, PurposeType, PurposeTypeMap, TAX_INVOICE_NTS_RESULT_CODES, TAX_INVOICE_RESPONSE_CODES, TAX_INVOICE_STATE_CODES, TaxInvoiceAdditionalContactApiModel, TaxInvoiceApiModel, TaxInvoiceApiRequest, TaxInvoiceApiRequestHeaders, TaxInvoiceApiResponseBase, TaxInvoiceAssignMgtKeyApiRequest, TaxInvoiceAssignMgtKeyApiRequestBody, TaxInvoiceAssignMgtKeyApiRequestPath, TaxInvoiceAssignMgtKeyApiRequestQuery, TaxInvoiceAssignMgtKeyApiResponse, TaxInvoiceAttachFileApiRequest, TaxInvoiceAttachFileApiRequestBody, TaxInvoiceAttachFileApiRequestPath, TaxInvoiceAttachFileApiRequestQuery, TaxInvoiceAttachFileApiResponse, TaxInvoiceAttachFileBinaryPayload, TaxInvoiceAttachFileMultipartPayload, TaxInvoiceAttachStatementApiRequest, TaxInvoiceAttachStatementApiRequestBody, TaxInvoiceAttachStatementApiRequestPath, TaxInvoiceAttachStatementApiRequestQuery, TaxInvoiceAttachStatementApiResponse, TaxInvoiceBulkIssueRequestHeaders, TaxInvoiceBulkResultApiModel, TaxInvoiceBulkResultItemApiModel, TaxInvoiceBulkSubmitApiRequest, TaxInvoiceBulkSubmitApiRequestBody, TaxInvoiceBulkSubmitApiRequestHeaders, TaxInvoiceBulkSubmitApiRequestPath, TaxInvoiceBulkSubmitApiRequestQuery, TaxInvoiceBulkSubmitApiResponse, TaxInvoiceBulkSubmitResponseApiModel, TaxInvoiceCancelIssueApiRequest, TaxInvoiceCancelIssueApiRequestBody, TaxInvoiceCancelIssueApiRequestPath, TaxInvoiceCancelIssueApiRequestQuery, TaxInvoiceCancelIssueApiResponse, TaxInvoiceCancelRequestApiRequest, TaxInvoiceCancelRequestApiRequestBody, TaxInvoiceCancelRequestApiRequestPath, TaxInvoiceCancelRequestApiRequestQuery, TaxInvoiceCancelRequestApiResponse, TaxInvoiceCheckCertValidationApiRequest, TaxInvoiceCheckCertValidationApiRequestBody, TaxInvoiceCheckCertValidationApiRequestPath, TaxInvoiceCheckCertValidationApiRequestQuery, TaxInvoiceCheckCertValidationApiResponse, TaxInvoiceCheckMgtKeyInUseApiRequest, TaxInvoiceCheckMgtKeyInUseApiRequestBody, TaxInvoiceCheckMgtKeyInUseApiRequestPath, TaxInvoiceCheckMgtKeyInUseApiRequestQuery, TaxInvoiceCheckMgtKeyInUseApiResponse, TaxInvoiceDateString, TaxInvoiceDateType, TaxInvoiceDateTypeMap, TaxInvoiceDeleteApiRequest, TaxInvoiceDeleteApiRequestBody, TaxInvoiceDeleteApiRequestPath, TaxInvoiceDeleteApiRequestQuery, TaxInvoiceDeleteApiResponse, TaxInvoiceDeleteFileApiRequest, TaxInvoiceDeleteFileApiRequestBody, TaxInvoiceDeleteFileApiRequestPath, TaxInvoiceDeleteFileApiRequestQuery, TaxInvoiceDeleteFileApiResponse, TaxInvoiceDetachStatementApiRequest, TaxInvoiceDetachStatementApiRequestBody, TaxInvoiceDetachStatementApiRequestPath, TaxInvoiceDetachStatementApiRequestQuery, TaxInvoiceDetachStatementApiResponse, TaxInvoiceDetailApiModel, TaxInvoiceEmailConfigApiModel, TaxInvoiceEmailType, TaxInvoiceEmailTypeMap, TaxInvoiceFileMetaApiModel, TaxInvoiceGetBulkResultApiRequest, TaxInvoiceGetBulkResultApiRequestBody, TaxInvoiceGetBulkResultApiRequestPath, TaxInvoiceGetBulkResultApiRequestQuery, TaxInvoiceGetBulkResultApiResponse, TaxInvoiceGetCertificateExpireDateApiRequest, TaxInvoiceGetCertificateExpireDateApiRequestBody, TaxInvoiceGetCertificateExpireDateApiRequestPath, TaxInvoiceGetCertificateExpireDateApiRequestQuery, TaxInvoiceGetCertificateExpireDateApiResponse, TaxInvoiceGetDetailInfoApiRequest, TaxInvoiceGetDetailInfoApiRequestBody, TaxInvoiceGetDetailInfoApiRequestPath, TaxInvoiceGetDetailInfoApiRequestQuery, TaxInvoiceGetDetailInfoApiResponse, TaxInvoiceGetEPrintUrlApiRequest, TaxInvoiceGetEPrintUrlApiRequestBody, TaxInvoiceGetEPrintUrlApiRequestPath, TaxInvoiceGetEPrintUrlApiRequestQuery, TaxInvoiceGetEPrintUrlApiResponse, TaxInvoiceGetFilesApiRequest, TaxInvoiceGetFilesApiRequestBody, TaxInvoiceGetFilesApiRequestPath, TaxInvoiceGetFilesApiRequestQuery, TaxInvoiceGetFilesApiResponse, TaxInvoiceGetInfoApiRequest, TaxInvoiceGetInfoApiRequestBody, TaxInvoiceGetInfoApiRequestPath, TaxInvoiceGetInfoApiRequestQuery, TaxInvoiceGetInfoApiResponse, TaxInvoiceGetInfosApiRequest, TaxInvoiceGetInfosApiRequestBody, TaxInvoiceGetInfosApiRequestPath, TaxInvoiceGetInfosApiRequestQuery, TaxInvoiceGetInfosApiResponse, TaxInvoiceGetLogsApiRequest, TaxInvoiceGetLogsApiRequestBody, TaxInvoiceGetLogsApiRequestPath, TaxInvoiceGetLogsApiRequestQuery, TaxInvoiceGetLogsApiResponse, TaxInvoiceGetMailUrlApiRequest, TaxInvoiceGetMailUrlApiRequestBody, TaxInvoiceGetMailUrlApiRequestPath, TaxInvoiceGetMailUrlApiRequestQuery, TaxInvoiceGetMailUrlApiResponse, TaxInvoiceGetMassPrintUrlApiRequest, TaxInvoiceGetMassPrintUrlApiRequestBody, TaxInvoiceGetMassPrintUrlApiRequestPath, TaxInvoiceGetMassPrintUrlApiRequestQuery, TaxInvoiceGetMassPrintUrlApiResponse, TaxInvoiceGetPdfUrlApiRequest, TaxInvoiceGetPdfUrlApiRequestBody, TaxInvoiceGetPdfUrlApiRequestPath, TaxInvoiceGetPdfUrlApiRequestQuery, TaxInvoiceGetPdfUrlApiResponse, TaxInvoiceGetPopUpUrlApiRequest, TaxInvoiceGetPopUpUrlApiRequestBody, TaxInvoiceGetPopUpUrlApiRequestPath, TaxInvoiceGetPopUpUrlApiRequestQuery, TaxInvoiceGetPopUpUrlApiResponse, TaxInvoiceGetPrintUrlApiRequest, TaxInvoiceGetPrintUrlApiRequestBody, TaxInvoiceGetPrintUrlApiRequestPath, TaxInvoiceGetPrintUrlApiRequestQuery, TaxInvoiceGetPrintUrlApiResponse, TaxInvoiceGetSealUrlApiRequest, TaxInvoiceGetSealUrlApiRequestBody, TaxInvoiceGetSealUrlApiRequestPath, TaxInvoiceGetSealUrlApiRequestQuery, TaxInvoiceGetSealUrlApiResponse, TaxInvoiceGetSendToNTSConfigApiRequest, TaxInvoiceGetSendToNTSConfigApiRequestBody, TaxInvoiceGetSendToNTSConfigApiRequestPath, TaxInvoiceGetSendToNTSConfigApiRequestQuery, TaxInvoiceGetSendToNTSConfigApiResponse, TaxInvoiceGetTaxCertInfoApiRequest, TaxInvoiceGetTaxCertInfoApiRequestBody, TaxInvoiceGetTaxCertInfoApiRequestPath, TaxInvoiceGetTaxCertInfoApiRequestQuery, TaxInvoiceGetTaxCertInfoApiResponse, TaxInvoiceGetTaxCertUrlApiRequest, TaxInvoiceGetTaxCertUrlApiRequestBody, TaxInvoiceGetTaxCertUrlApiRequestPath, TaxInvoiceGetTaxCertUrlApiRequestQuery, TaxInvoiceGetTaxCertUrlApiResponse, TaxInvoiceGetUrlApiRequest, TaxInvoiceGetUrlApiRequestBody, TaxInvoiceGetUrlApiRequestPath, TaxInvoiceGetUrlApiRequestQuery, TaxInvoiceGetUrlApiResponse, TaxInvoiceGetUrlTogo, TaxInvoiceGetViewUrlApiRequest, TaxInvoiceGetViewUrlApiRequestBody, TaxInvoiceGetViewUrlApiRequestPath, TaxInvoiceGetViewUrlApiRequestQuery, TaxInvoiceGetViewUrlApiResponse, TaxInvoiceGetXmlApiRequest, TaxInvoiceGetXmlApiRequestBody, TaxInvoiceGetXmlApiRequestPath, TaxInvoiceGetXmlApiRequestQuery, TaxInvoiceGetXmlApiResponse, TaxInvoiceInfoApiModel, TaxInvoiceInfoApiResponse, TaxInvoiceIssueApiRequest, TaxInvoiceIssueApiRequestBody, TaxInvoiceIssueApiRequestPath, TaxInvoiceIssueApiRequestQuery, TaxInvoiceIssueApiResponse, TaxInvoiceIssueResponseApiModel, TaxInvoiceListEmailConfigApiRequest, TaxInvoiceListEmailConfigApiRequestBody, TaxInvoiceListEmailConfigApiRequestPath, TaxInvoiceListEmailConfigApiRequestQuery, TaxInvoiceListEmailConfigApiResponse, TaxInvoiceLogApiModel, TaxInvoiceMgtKeyType, TaxInvoiceMgtKeyTypeMap, TaxInvoiceModifyCode, TaxInvoiceModifyCodeMap, TaxInvoiceNtsResultCode, TaxInvoiceNtsResultCodeDefinition, TaxInvoiceNtsResultCodeDefinitionValue, TaxInvoiceRefuseApiRequest, TaxInvoiceRefuseApiRequestBody, TaxInvoiceRefuseApiRequestPath, TaxInvoiceRefuseApiRequestQuery, TaxInvoiceRefuseApiResponse, TaxInvoiceRegistIssueApiRequest, TaxInvoiceRegistIssueApiRequestBody, TaxInvoiceRegistIssueApiRequestPath, TaxInvoiceRegistIssueApiRequestQuery, TaxInvoiceRegistIssueApiResponse, TaxInvoiceRegistRequestApiRequest, TaxInvoiceRegistRequestApiRequestBody, TaxInvoiceRegistRequestApiRequestPath, TaxInvoiceRegistRequestApiRequestQuery, TaxInvoiceRegistRequestApiResponse, TaxInvoiceRegistTaxCert2ApiRequest, TaxInvoiceRegistTaxCert2ApiRequestBody, TaxInvoiceRegistTaxCert2ApiRequestPath, TaxInvoiceRegistTaxCert2ApiRequestQuery, TaxInvoiceRegistTaxCert2ApiResponse, TaxInvoiceRegistTaxCertApiRequest, TaxInvoiceRegistTaxCertApiRequestBody, TaxInvoiceRegistTaxCertApiRequestPath, TaxInvoiceRegistTaxCertApiRequestQuery, TaxInvoiceRegistTaxCertApiResponse, TaxInvoiceRegisterApiRequest, TaxInvoiceRegisterApiRequestBody, TaxInvoiceRegisterApiRequestPath, TaxInvoiceRegisterApiRequestQuery, TaxInvoiceRegisterApiResponse, TaxInvoiceRequestApiRequest, TaxInvoiceRequestApiRequestBody, TaxInvoiceRequestApiRequestPath, TaxInvoiceRequestApiRequestQuery, TaxInvoiceRequestApiResponse, TaxInvoiceRequireRequestFields, TaxInvoiceResponseCodeGroups, TaxInvoiceSearchApiRequest, TaxInvoiceSearchApiRequestBody, TaxInvoiceSearchApiRequestPath, TaxInvoiceSearchApiRequestQuery, TaxInvoiceSearchApiResponse, TaxInvoiceSearchCloseDownState, TaxInvoiceSearchCloseDownStateMap, TaxInvoiceSearchDocumentType, TaxInvoiceSearchDocumentTypeMap, TaxInvoiceSearchInterOPYN, TaxInvoiceSearchInterOPYNMap, TaxInvoiceSearchIssueType, TaxInvoiceSearchIssueTypeMap, TaxInvoiceSearchRegType, TaxInvoiceSearchRegTypeMap, TaxInvoiceSearchResultApiModel, TaxInvoiceSearchResultItemApiModel, TaxInvoiceSearchStateCode, TaxInvoiceSearchTaxRegIDType, TaxInvoiceSearchTaxRegIDTypeMap, TaxInvoiceSearchTaxRegIDYN, TaxInvoiceSearchTaxRegIDYNMap, TaxInvoiceSearchTaxType, TaxInvoiceSearchTaxTypeMap, TaxInvoiceSendEmailApiRequest, TaxInvoiceSendEmailApiRequestBody, TaxInvoiceSendEmailApiRequestPath, TaxInvoiceSendEmailApiRequestQuery, TaxInvoiceSendEmailApiResponse, TaxInvoiceSendFaxApiRequest, TaxInvoiceSendFaxApiRequestBody, TaxInvoiceSendFaxApiRequestPath, TaxInvoiceSendFaxApiRequestQuery, TaxInvoiceSendFaxApiResponse, TaxInvoiceSendSmsApiRequest, TaxInvoiceSendSmsApiRequestBody, TaxInvoiceSendSmsApiRequestPath, TaxInvoiceSendSmsApiRequestQuery, TaxInvoiceSendSmsApiResponse, TaxInvoiceSendToNTSApiRequest, TaxInvoiceSendToNTSApiRequestBody, TaxInvoiceSendToNTSApiRequestPath, TaxInvoiceSendToNTSApiRequestQuery, TaxInvoiceSendToNTSApiResponse, TaxInvoiceSortOrder, TaxInvoiceSortOrderMap, TaxInvoiceStateCode, TaxInvoiceStateCodeDefinition, TaxInvoiceStateCodeDefinitionValue, TaxInvoiceStatementItemCode, TaxInvoiceStatementItemCodeMap, TaxInvoiceTaxCertInfoApiModel, TaxInvoiceUpdateApiRequest, TaxInvoiceUpdateApiRequestBody, TaxInvoiceUpdateApiRequestPath, TaxInvoiceUpdateApiRequestQuery, TaxInvoiceUpdateApiResponse, TaxInvoiceUpdateEmailConfigApiRequest, TaxInvoiceUpdateEmailConfigApiRequestBody, TaxInvoiceUpdateEmailConfigApiRequestPath, TaxInvoiceUpdateEmailConfigApiRequestQuery, TaxInvoiceUpdateEmailConfigApiResponse, TaxType, TaxTypeMap };
2429
+ }
2430
+ //#endregion
2431
+ export { TaxInvoiceDetachStatementApiRequestBody as $, TaxInvoiceSearchTaxTypeMap as $n, TaxInvoiceRegistRequestApiRequestQuery as $r, TaxInvoiceGetEPrintUrlApiRequestBody as $t, TaxInvoiceGetTaxCertUrlApiRequestQuery as A, TaxInvoiceBulkSubmitApiRequestQuery as Ai, TaxInvoiceGetUrlApiRequestPath as An, TaxInvoiceDeleteApiRequest as Ar, TaxInvoiceGetFilesApiRequest as At, TaxInvoiceUpdateEmailConfigApiRequestQuery as B, TaxInvoiceSearchDocumentTypeMap as Bn, TaxInvoiceCancelRequestApiRequest as Br, TaxInvoiceAttachFileBinaryPayload as Bt, TaxInvoiceRegistTaxCertApiRequestBody as C, TaxInvoiceGetBulkResultApiRequestPath as Ci, TaxInvoiceGetPopUpUrlApiRequest as Cn, TaxInvoiceCheckMgtKeyInUseApiRequestQuery as Cr, TaxInvoiceSendEmailApiRequestQuery as Ct, TaxInvoiceGetTaxCertUrlApiRequest as D, TaxInvoiceBulkSubmitApiRequestBody as Di, TaxInvoiceGetPopUpUrlApiResponse as Dn, TaxInvoiceSendToNTSApiRequestPath as Dr, TaxInvoiceDeleteFileApiRequestPath as Dt, TaxInvoiceRegistTaxCertApiResponse as E, TaxInvoiceBulkSubmitApiRequest as Ei, TaxInvoiceGetPopUpUrlApiRequestQuery as En, TaxInvoiceSendToNTSApiRequestBody as Er, TaxInvoiceDeleteFileApiRequestBody as Et, TaxInvoiceGetSendToNTSConfigApiRequestQuery as F, TaxInvoiceRegistIssueApiRequestQuery as Fi, TaxInvoiceSearchApiRequestBody as Fn, TaxInvoiceRefuseApiRequest as Fr, TaxInvoiceAttachFileApiRequest as Ft, TaxInvoiceListEmailConfigApiRequestQuery as G, TaxInvoiceSearchRegType as Gn, TaxInvoiceRequestApiRequest as Gr, TaxInvoiceGetSealUrlApiRequestQuery as Gt, TaxInvoiceListEmailConfigApiRequest as H, TaxInvoiceSearchInterOPYNMap as Hn, TaxInvoiceCancelRequestApiRequestPath as Hr, TaxInvoiceGetSealUrlApiRequest as Ht, TaxInvoiceGetSendToNTSConfigApiResponse as I, TaxInvoiceRegistIssueApiResponse as Ii, TaxInvoiceSearchApiRequestPath as In, TaxInvoiceRefuseApiRequestBody as Ir, TaxInvoiceAttachFileApiRequestBody as It, TaxInvoiceAssignMgtKeyApiRequestBody as J, TaxInvoiceSearchTaxRegIDType as Jn, TaxInvoiceRequestApiRequestQuery as Jr, TaxInvoiceGetMailUrlApiRequestBody as Jt, TaxInvoiceListEmailConfigApiResponse as K, TaxInvoiceSearchRegTypeMap as Kn, TaxInvoiceRequestApiRequestBody as Kr, TaxInvoiceGetSealUrlApiResponse as Kt, TaxInvoiceUpdateEmailConfigApiRequest as L, TaxInvoiceSearchApiRequestQuery as Ln, TaxInvoiceRefuseApiRequestPath as Lr, TaxInvoiceAttachFileApiRequestPath as Lt, TaxInvoiceGetSendToNTSConfigApiRequest as M, TaxInvoiceRegistIssueApiRequest as Mi, TaxInvoiceGetUrlApiResponse as Mn, TaxInvoiceDeleteApiRequestPath as Mr, TaxInvoiceGetFilesApiRequestPath as Mt, TaxInvoiceGetSendToNTSConfigApiRequestBody as N, TaxInvoiceRegistIssueApiRequestBody as Ni, TaxInvoiceGetUrlTogo as Nn, TaxInvoiceDeleteApiRequestQuery as Nr, TaxInvoiceGetFilesApiRequestQuery as Nt, TaxInvoiceGetTaxCertUrlApiRequestBody as O, TaxInvoiceBulkSubmitApiRequestHeaders as Oi, TaxInvoiceGetUrlApiRequest as On, TaxInvoiceSendToNTSApiRequestQuery as Or, TaxInvoiceDeleteFileApiRequestQuery as Ot, TaxInvoiceGetSendToNTSConfigApiRequestPath as P, TaxInvoiceRegistIssueApiRequestPath as Pi, TaxInvoiceSearchApiRequest as Pn, TaxInvoiceDeleteApiResponse as Pr, TaxInvoiceGetFilesApiResponse as Pt, TaxInvoiceDetachStatementApiRequest as Q, TaxInvoiceSearchTaxType as Qn, TaxInvoiceRegistRequestApiRequestPath as Qr, TaxInvoiceGetEPrintUrlApiRequest as Qt, TaxInvoiceUpdateEmailConfigApiRequestBody as R, TaxInvoiceSearchApiResponse as Rn, TaxInvoiceRefuseApiRequestQuery as Rr, TaxInvoiceAttachFileApiRequestQuery as Rt, TaxInvoiceRegistTaxCertApiRequest as S, TaxInvoiceGetBulkResultApiRequestBody as Si, TaxInvoiceGetViewUrlApiResponse as Sn, TaxInvoiceCheckMgtKeyInUseApiRequestPath as Sr, TaxInvoiceSendEmailApiRequestPath as St, TaxInvoiceRegistTaxCertApiRequestQuery as T, TaxInvoiceGetBulkResultApiResponse as Ti, TaxInvoiceGetPopUpUrlApiRequestPath as Tn, TaxInvoiceSendToNTSApiRequest as Tr, TaxInvoiceDeleteFileApiRequest as Tt, TaxInvoiceListEmailConfigApiRequestBody as U, TaxInvoiceSearchIssueType as Un, TaxInvoiceCancelRequestApiRequestQuery as Ur, TaxInvoiceGetSealUrlApiRequestBody as Ut, TaxInvoiceUpdateEmailConfigApiResponse as V, TaxInvoiceSearchInterOPYN as Vn, TaxInvoiceCancelRequestApiRequestBody as Vr, TaxInvoiceAttachFileMultipartPayload as Vt, TaxInvoiceListEmailConfigApiRequestPath as W, TaxInvoiceSearchIssueTypeMap as Wn, TaxInvoiceCancelRequestApiResponse as Wr, TaxInvoiceGetSealUrlApiRequestPath as Wt, TaxInvoiceAssignMgtKeyApiRequestQuery as X, TaxInvoiceSearchTaxRegIDYN as Xn, TaxInvoiceRegistRequestApiRequest as Xr, TaxInvoiceGetMailUrlApiRequestQuery as Xt, TaxInvoiceAssignMgtKeyApiRequestPath as Y, TaxInvoiceSearchTaxRegIDTypeMap as Yn, TaxInvoiceRequestApiResponse as Yr, TaxInvoiceGetMailUrlApiRequestPath as Yt, TaxInvoiceAssignMgtKeyApiResponse as Z, TaxInvoiceSearchTaxRegIDYNMap as Zn, TaxInvoiceRegistRequestApiRequestBody as Zr, TaxInvoiceGetMailUrlApiResponse as Zt, TaxInvoiceRegistTaxCert2ApiRequest as _, TaxInvoiceRegisterApiRequestBody as _i, TaxInvoiceGetPrintUrlApiResponse as _n, TaxInvoiceGetInfosApiRequestPath as _r, TaxInvoiceSendSmsApiRequestPath as _t, TaxInvoiceGetTaxCertInfoApiRequestQuery as a, TaxInvoiceCancelIssueApiResponse as ai, TaxInvoiceGetMassPrintUrlApiRequestPath as an, TaxInvoiceGetXmlApiRequest as ar, TaxInvoiceAttachStatementApiRequestPath as at, TaxInvoiceRegistTaxCert2ApiRequestQuery as b, TaxInvoiceRegisterApiResponse as bi, TaxInvoiceGetViewUrlApiRequestPath as bn, TaxInvoiceCheckMgtKeyInUseApiRequest as br, TaxInvoiceSendEmailApiRequest as bt, TaxInvoiceCheckCertValidationApiRequestBody as c, TaxInvoiceIssueApiRequestPath as ci, TaxInvoiceGetPdfUrlApiRequest as cn, TaxInvoiceGetXmlApiRequestQuery as cr, TaxInvoiceStatementItemCode as ct, TaxInvoiceCheckCertValidationApiResponse as d, TaxInvoiceUpdateApiRequest as di, TaxInvoiceGetPdfUrlApiRequestQuery as dn, TaxInvoiceGetDetailInfoApiRequestBody as dr, TaxInvoiceSendFaxApiRequestBody as dt, TaxInvoiceRegistRequestApiResponse as ei, TaxInvoiceGetEPrintUrlApiRequestPath as en, TaxInvoiceGetLogsApiRequest as er, TaxInvoiceDetachStatementApiRequestPath as et, TaxInvoiceGetCertificateExpireDateApiRequest as f, TaxInvoiceUpdateApiRequestBody as fi, TaxInvoiceGetPdfUrlApiResponse as fn, TaxInvoiceGetDetailInfoApiRequestPath as fr, TaxInvoiceSendFaxApiRequestPath as ft, TaxInvoiceGetCertificateExpireDateApiResponse as g, TaxInvoiceRegisterApiRequest as gi, TaxInvoiceGetPrintUrlApiRequestQuery as gn, TaxInvoiceGetInfosApiRequestBody as gr, TaxInvoiceSendSmsApiRequestBody as gt, TaxInvoiceGetCertificateExpireDateApiRequestQuery as h, TaxInvoiceUpdateApiResponse as hi, TaxInvoiceGetPrintUrlApiRequestPath as hn, TaxInvoiceGetInfosApiRequest as hr, TaxInvoiceSendSmsApiRequest as ht, TaxInvoiceGetTaxCertInfoApiRequestPath as i, TaxInvoiceCancelIssueApiRequestQuery as ii, TaxInvoiceGetMassPrintUrlApiRequestBody as in, TaxInvoiceGetLogsApiResponse as ir, TaxInvoiceAttachStatementApiRequestBody as it, TaxInvoiceGetTaxCertUrlApiResponse as j, TaxInvoiceBulkSubmitApiResponse as ji, TaxInvoiceGetUrlApiRequestQuery as jn, TaxInvoiceDeleteApiRequestBody as jr, TaxInvoiceGetFilesApiRequestBody as jt, TaxInvoiceGetTaxCertUrlApiRequestPath as k, TaxInvoiceBulkSubmitApiRequestPath as ki, TaxInvoiceGetUrlApiRequestBody as kn, TaxInvoiceSendToNTSApiResponse as kr, TaxInvoiceDeleteFileApiResponse as kt, TaxInvoiceCheckCertValidationApiRequestPath as l, TaxInvoiceIssueApiRequestQuery as li, TaxInvoiceGetPdfUrlApiRequestBody as ln, TaxInvoiceGetXmlApiResponse as lr, TaxInvoiceStatementItemCodeMap as lt, TaxInvoiceGetCertificateExpireDateApiRequestPath as m, TaxInvoiceUpdateApiRequestQuery as mi, TaxInvoiceGetPrintUrlApiRequestBody as mn, TaxInvoiceGetDetailInfoApiResponse as mr, TaxInvoiceSendFaxApiResponse as mt, TaxInvoiceGetTaxCertInfoApiRequest as n, TaxInvoiceCancelIssueApiRequestBody as ni, TaxInvoiceGetEPrintUrlApiResponse as nn, TaxInvoiceGetLogsApiRequestPath as nr, TaxInvoiceDetachStatementApiResponse as nt, TaxInvoiceGetTaxCertInfoApiResponse as o, TaxInvoiceIssueApiRequest as oi, TaxInvoiceGetMassPrintUrlApiRequestQuery as on, TaxInvoiceGetXmlApiRequestBody as or, TaxInvoiceAttachStatementApiRequestQuery as ot, TaxInvoiceGetCertificateExpireDateApiRequestBody as p, TaxInvoiceUpdateApiRequestPath as pi, TaxInvoiceGetPrintUrlApiRequest as pn, TaxInvoiceGetDetailInfoApiRequestQuery as pr, TaxInvoiceSendFaxApiRequestQuery as pt, TaxInvoiceAssignMgtKeyApiRequest as q, TaxInvoiceSearchStateCode as qn, TaxInvoiceRequestApiRequestPath as qr, TaxInvoiceGetMailUrlApiRequest as qt, TaxInvoiceGetTaxCertInfoApiRequestBody as r, TaxInvoiceCancelIssueApiRequestPath as ri, TaxInvoiceGetMassPrintUrlApiRequest as rn, TaxInvoiceGetLogsApiRequestQuery as rr, TaxInvoiceAttachStatementApiRequest as rt, TaxInvoiceCheckCertValidationApiRequest as s, TaxInvoiceIssueApiRequestBody as si, TaxInvoiceGetMassPrintUrlApiResponse as sn, TaxInvoiceGetXmlApiRequestPath as sr, TaxInvoiceAttachStatementApiResponse as st, index_d_exports as t, TaxInvoiceCancelIssueApiRequest as ti, TaxInvoiceGetEPrintUrlApiRequestQuery as tn, TaxInvoiceGetLogsApiRequestBody as tr, TaxInvoiceDetachStatementApiRequestQuery as tt, TaxInvoiceCheckCertValidationApiRequestQuery as u, TaxInvoiceIssueApiResponse as ui, TaxInvoiceGetPdfUrlApiRequestPath as un, TaxInvoiceGetDetailInfoApiRequest as ur, TaxInvoiceSendFaxApiRequest as ut, TaxInvoiceRegistTaxCert2ApiRequestBody as v, TaxInvoiceRegisterApiRequestPath as vi, TaxInvoiceGetViewUrlApiRequest as vn, TaxInvoiceGetInfosApiRequestQuery as vr, TaxInvoiceSendSmsApiRequestQuery as vt, TaxInvoiceRegistTaxCertApiRequestPath as w, TaxInvoiceGetBulkResultApiRequestQuery as wi, TaxInvoiceGetPopUpUrlApiRequestBody as wn, TaxInvoiceCheckMgtKeyInUseApiResponse as wr, TaxInvoiceSendEmailApiResponse as wt, TaxInvoiceRegistTaxCert2ApiResponse as x, TaxInvoiceGetBulkResultApiRequest as xi, TaxInvoiceGetViewUrlApiRequestQuery as xn, TaxInvoiceCheckMgtKeyInUseApiRequestBody as xr, TaxInvoiceSendEmailApiRequestBody as xt, TaxInvoiceRegistTaxCert2ApiRequestPath as y, TaxInvoiceRegisterApiRequestQuery as yi, TaxInvoiceGetViewUrlApiRequestBody as yn, TaxInvoiceGetInfosApiResponse as yr, TaxInvoiceSendSmsApiResponse as yt, TaxInvoiceUpdateEmailConfigApiRequestPath as z, TaxInvoiceSearchDocumentType as zn, TaxInvoiceRefuseApiResponse as zr, TaxInvoiceAttachFileApiResponse as zt };