@cmarket/partner-sdk 1.2.0 → 2.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.
- package/README.md +2 -7
- package/api/partner-v2-api.ts +0 -406
- package/dist/api/partner-v2-api.d.ts +0 -179
- package/dist/api/partner-v2-api.js +0 -376
- package/dist/esm/api/partner-v2-api.d.ts +0 -179
- package/dist/esm/api/partner-v2-api.js +0 -376
- package/dist/esm/models/create-bid-request-dto.d.ts +9 -0
- package/dist/esm/models/create-bid-request-dto.js +4 -0
- package/dist/models/create-bid-request-dto.d.ts +9 -0
- package/dist/models/create-bid-request-dto.js +5 -1
- package/docs/CreateBidRequestDto.md +2 -0
- package/docs/PartnerV2Api.md +0 -283
- package/models/create-bid-request-dto.ts +10 -0
- package/package.json +1 -1
|
@@ -14,11 +14,8 @@ import type { AxiosPromise, AxiosInstance, RawAxiosRequestConfig } from 'axios';
|
|
|
14
14
|
import { type RequestArgs, BaseAPI } from '../base';
|
|
15
15
|
import type { AcceptanceResultResponseDto } from '../models';
|
|
16
16
|
import type { AwardRegisteredResponseDto } from '../models';
|
|
17
|
-
import type { BidContractDocumentsBatchRequestDto } from '../models';
|
|
18
|
-
import type { BidContractDocumentsResponseDto } from '../models';
|
|
19
17
|
import type { BidCreatedResponseDto } from '../models';
|
|
20
18
|
import type { BidFailedResponseDto } from '../models';
|
|
21
|
-
import type { BidResultsBatchRequestDto } from '../models';
|
|
22
19
|
import type { BidResultsResponseDto } from '../models';
|
|
23
20
|
import type { BidSettlementResponseDto } from '../models';
|
|
24
21
|
import type { BidStatementResponseDto } from '../models';
|
|
@@ -27,11 +24,7 @@ import type { CreateBidRequestDto } from '../models';
|
|
|
27
24
|
import type { FileUploadedResponseDto } from '../models';
|
|
28
25
|
import type { HealthResponseDto } from '../models';
|
|
29
26
|
import type { MarkBidFailedRequestDto } from '../models';
|
|
30
|
-
import type { NegotiationScoredResponseDto } from '../models';
|
|
31
27
|
import type { RegisterAwardRequestDto } from '../models';
|
|
32
|
-
import type { RequestSplitInvoiceRequestDto } from '../models';
|
|
33
|
-
import type { SplitInvoiceResponseDto } from '../models';
|
|
34
|
-
import type { SubmitNegotiationScoresRequestDto } from '../models';
|
|
35
28
|
import type { UploadFileRequestDto } from '../models';
|
|
36
29
|
/**
|
|
37
30
|
* PartnerV2Api - axios parameter creator
|
|
@@ -47,23 +40,6 @@ export declare const PartnerV2ApiAxiosParamCreator: (configuration?: Configurati
|
|
|
47
40
|
* @throws {RequiredError}
|
|
48
41
|
*/
|
|
49
42
|
completeAcceptance: (bidId: string, idempotencyKey: string, completeAcceptanceRequestDto: CompleteAcceptanceRequestDto, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
|
|
50
|
-
/**
|
|
51
|
-
* V5 /contractDocumentRec 후속. scope contracts:read.
|
|
52
|
-
* @summary 계약서류 수신 조회
|
|
53
|
-
* @param {string} bidId
|
|
54
|
-
* @param {string} buyerId 공고 명의 회원 ID(b2b_member.member_id).
|
|
55
|
-
* @param {*} [options] Override http request option.
|
|
56
|
-
* @throws {RequiredError}
|
|
57
|
-
*/
|
|
58
|
-
getBidContractDocuments: (bidId: string, buyerId: string, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
|
|
59
|
-
/**
|
|
60
|
-
* V5 /contractDocumentRec(bid_puchase_no_list) 후속. 공고번호 리스트를 한 번에 조회. 단건(GET :bidId/contract-documents)은 그대로 유지. scope contracts:read.
|
|
61
|
-
* @summary 계약서류 수신 배치 조회
|
|
62
|
-
* @param {BidContractDocumentsBatchRequestDto} bidContractDocumentsBatchRequestDto
|
|
63
|
-
* @param {*} [options] Override http request option.
|
|
64
|
-
* @throws {RequiredError}
|
|
65
|
-
*/
|
|
66
|
-
getBidContractDocumentsBatch: (bidContractDocumentsBatchRequestDto: BidContractDocumentsBatchRequestDto, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
|
|
67
43
|
/**
|
|
68
44
|
* V5 /entendrec 후속. scope bids:read.
|
|
69
45
|
* @summary 입찰 결과 조회
|
|
@@ -73,14 +49,6 @@ export declare const PartnerV2ApiAxiosParamCreator: (configuration?: Configurati
|
|
|
73
49
|
* @throws {RequiredError}
|
|
74
50
|
*/
|
|
75
51
|
getBidResults: (bidId: string, buyerId: string, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
|
|
76
|
-
/**
|
|
77
|
-
* V5 entendRec(bid_puchase_no_list) 후속 — 여러 공고 결과를 1회 호출로(additive, 단건 유지). bidIds(공고 식별자) 또는 purchaseNos(구매번호) 중 하나 — purchaseNos 는 각 PO 의 가장 최근 공고로 해소. 입력 순서를 보존한다. scope bids:read.
|
|
78
|
-
* @summary 입찰결과 배치 조회
|
|
79
|
-
* @param {BidResultsBatchRequestDto} bidResultsBatchRequestDto
|
|
80
|
-
* @param {*} [options] Override http request option.
|
|
81
|
-
* @throws {RequiredError}
|
|
82
|
-
*/
|
|
83
|
-
getBidResultsBatch: (bidResultsBatchRequestDto: BidResultsBatchRequestDto, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
|
|
84
52
|
/**
|
|
85
53
|
* V5 /entendrec 정산(사업자·계좌·공급가액/부가세·응찰 품목내역) 후속. scope bids:read. 가격/신원 가시성 매트릭스와 직교한 ERP 정산 데이터 — read-only.
|
|
86
54
|
* @summary 입찰결과 정산정보 조회
|
|
@@ -131,24 +99,6 @@ export declare const PartnerV2ApiAxiosParamCreator: (configuration?: Configurati
|
|
|
131
99
|
* @throws {RequiredError}
|
|
132
100
|
*/
|
|
133
101
|
registerBid: (createBidRequestDto: CreateBidRequestDto, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
|
|
134
|
-
/**
|
|
135
|
-
* 세금계산서 분할 발급 청구를 기록합니다. 발급 엔진이 아니라 \"분할 발급 청구 요청을 접수\"하는 엔드포인트입니다. **V5 대응:** `splitInvoiceRequest` — BidApi.xml `splitInvoice` 액션의 V6 후속. **호출 시점:** 검수완료 후 세금계산서를 분할 발급받고자 할 때. 공급가액과 부가세를 나누어 청구합니다. **부수효과:** - 분할 발급 청구가 기록됩니다(실제 세금계산서 발급은 별도 프로세스). - 작성일자(`issueDate`)는 미래 일자 불가(I5 — V5 `PgBidApiService:220-235` 패리티). 오늘 날짜는 허용. - `issueDate` 미지정 시 backend 기본값 적용. **금액 단위:** 원(KRW) 정수. `supplyAmount`(공급가액) + `vat`(부가세) 합산이 실제 청구 총액. **필수 스코프:** `invoices:write` **멱등성:** `Idempotency-Key` 헤더 필수.
|
|
136
|
-
* @summary 계산서 분할 발급 청구
|
|
137
|
-
* @param {string} idempotencyKey 멱등성 키(1~255자, [A-Za-z0-9_-]). 동일 키 + 동일 body 재전송 시 캐시 응답 반환(24시간). UUID v4 권장.
|
|
138
|
-
* @param {RequestSplitInvoiceRequestDto} requestSplitInvoiceRequestDto
|
|
139
|
-
* @param {*} [options] Override http request option.
|
|
140
|
-
* @throws {RequiredError}
|
|
141
|
-
*/
|
|
142
|
-
requestSplitInvoice: (idempotencyKey: string, requestSplitInvoiceRequestDto: RequestSplitInvoiceRequestDto, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
|
|
143
|
-
/**
|
|
144
|
-
* 협상에의한계약(낙찰방법 H/K) 응찰자별 기술/가격 점수를 일괄 입력합니다. **V5 대응:** `scsbidSend`(type=nego, 점수입력) — BidApi.xml `nego-eval` 액션의 V6 후속. **호출 시점:** 협상 방식 공고 마감 후 점수 평가를 진행할 때. `complete=true` 를 함께 보내면 평가완료 게이트(V5 `nego_complete_yn=Y`)까지 적용되어 낙찰 진입이 가능합니다. **부수효과:** - 각 응찰자의 기술점수(`techPoint`) 및 가격점수(`bidPoint`, 선택)가 저장됩니다. - `complete=true`인 경우 평가완료 상태로 전환되어 이후 `/v1/awards`로 낙찰 처리가 가능합니다. - 가격점수(`bidPoint`)를 생략하면 backend 가 배점 기준에 따라 자동 계산합니다. **응찰자 식별:** `sequence`(= V5 `buy_seq`, `entendrec` 응답의 `sequence` 필드). **필수 스코프:** `awards:write` **멱등성:** `Idempotency-Key` 헤더 필수.
|
|
145
|
-
* @summary 협상(H/K) 점수평가
|
|
146
|
-
* @param {string} idempotencyKey 멱등성 키(1~255자, [A-Za-z0-9_-]). 동일 키 + 동일 body 재전송 시 캐시 응답 반환(24시간). UUID v4 권장.
|
|
147
|
-
* @param {SubmitNegotiationScoresRequestDto} submitNegotiationScoresRequestDto
|
|
148
|
-
* @param {*} [options] Override http request option.
|
|
149
|
-
* @throws {RequiredError}
|
|
150
|
-
*/
|
|
151
|
-
submitNegotiationScores: (idempotencyKey: string, submitNegotiationScoresRequestDto: SubmitNegotiationScoresRequestDto, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
|
|
152
102
|
/**
|
|
153
103
|
* 스코프 `files:write` + `Idempotency-Key` 헤더 필수. base64 또는 url 중 정확히 하나를 제출한다.
|
|
154
104
|
* @summary 입찰 첨부파일 업로드(base64 또는 url) → fileKey
|
|
@@ -172,23 +122,6 @@ export declare const PartnerV2ApiFp: (configuration?: Configuration) => {
|
|
|
172
122
|
* @throws {RequiredError}
|
|
173
123
|
*/
|
|
174
124
|
completeAcceptance(bidId: string, idempotencyKey: string, completeAcceptanceRequestDto: CompleteAcceptanceRequestDto, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<AcceptanceResultResponseDto>>;
|
|
175
|
-
/**
|
|
176
|
-
* V5 /contractDocumentRec 후속. scope contracts:read.
|
|
177
|
-
* @summary 계약서류 수신 조회
|
|
178
|
-
* @param {string} bidId
|
|
179
|
-
* @param {string} buyerId 공고 명의 회원 ID(b2b_member.member_id).
|
|
180
|
-
* @param {*} [options] Override http request option.
|
|
181
|
-
* @throws {RequiredError}
|
|
182
|
-
*/
|
|
183
|
-
getBidContractDocuments(bidId: string, buyerId: string, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<BidContractDocumentsResponseDto>>;
|
|
184
|
-
/**
|
|
185
|
-
* V5 /contractDocumentRec(bid_puchase_no_list) 후속. 공고번호 리스트를 한 번에 조회. 단건(GET :bidId/contract-documents)은 그대로 유지. scope contracts:read.
|
|
186
|
-
* @summary 계약서류 수신 배치 조회
|
|
187
|
-
* @param {BidContractDocumentsBatchRequestDto} bidContractDocumentsBatchRequestDto
|
|
188
|
-
* @param {*} [options] Override http request option.
|
|
189
|
-
* @throws {RequiredError}
|
|
190
|
-
*/
|
|
191
|
-
getBidContractDocumentsBatch(bidContractDocumentsBatchRequestDto: BidContractDocumentsBatchRequestDto, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<Array<BidContractDocumentsResponseDto>>>;
|
|
192
125
|
/**
|
|
193
126
|
* V5 /entendrec 후속. scope bids:read.
|
|
194
127
|
* @summary 입찰 결과 조회
|
|
@@ -198,14 +131,6 @@ export declare const PartnerV2ApiFp: (configuration?: Configuration) => {
|
|
|
198
131
|
* @throws {RequiredError}
|
|
199
132
|
*/
|
|
200
133
|
getBidResults(bidId: string, buyerId: string, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<BidResultsResponseDto>>;
|
|
201
|
-
/**
|
|
202
|
-
* V5 entendRec(bid_puchase_no_list) 후속 — 여러 공고 결과를 1회 호출로(additive, 단건 유지). bidIds(공고 식별자) 또는 purchaseNos(구매번호) 중 하나 — purchaseNos 는 각 PO 의 가장 최근 공고로 해소. 입력 순서를 보존한다. scope bids:read.
|
|
203
|
-
* @summary 입찰결과 배치 조회
|
|
204
|
-
* @param {BidResultsBatchRequestDto} bidResultsBatchRequestDto
|
|
205
|
-
* @param {*} [options] Override http request option.
|
|
206
|
-
* @throws {RequiredError}
|
|
207
|
-
*/
|
|
208
|
-
getBidResultsBatch(bidResultsBatchRequestDto: BidResultsBatchRequestDto, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<Array<BidResultsResponseDto>>>;
|
|
209
134
|
/**
|
|
210
135
|
* V5 /entendrec 정산(사업자·계좌·공급가액/부가세·응찰 품목내역) 후속. scope bids:read. 가격/신원 가시성 매트릭스와 직교한 ERP 정산 데이터 — read-only.
|
|
211
136
|
* @summary 입찰결과 정산정보 조회
|
|
@@ -256,24 +181,6 @@ export declare const PartnerV2ApiFp: (configuration?: Configuration) => {
|
|
|
256
181
|
* @throws {RequiredError}
|
|
257
182
|
*/
|
|
258
183
|
registerBid(createBidRequestDto: CreateBidRequestDto, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<BidCreatedResponseDto>>;
|
|
259
|
-
/**
|
|
260
|
-
* 세금계산서 분할 발급 청구를 기록합니다. 발급 엔진이 아니라 \"분할 발급 청구 요청을 접수\"하는 엔드포인트입니다. **V5 대응:** `splitInvoiceRequest` — BidApi.xml `splitInvoice` 액션의 V6 후속. **호출 시점:** 검수완료 후 세금계산서를 분할 발급받고자 할 때. 공급가액과 부가세를 나누어 청구합니다. **부수효과:** - 분할 발급 청구가 기록됩니다(실제 세금계산서 발급은 별도 프로세스). - 작성일자(`issueDate`)는 미래 일자 불가(I5 — V5 `PgBidApiService:220-235` 패리티). 오늘 날짜는 허용. - `issueDate` 미지정 시 backend 기본값 적용. **금액 단위:** 원(KRW) 정수. `supplyAmount`(공급가액) + `vat`(부가세) 합산이 실제 청구 총액. **필수 스코프:** `invoices:write` **멱등성:** `Idempotency-Key` 헤더 필수.
|
|
261
|
-
* @summary 계산서 분할 발급 청구
|
|
262
|
-
* @param {string} idempotencyKey 멱등성 키(1~255자, [A-Za-z0-9_-]). 동일 키 + 동일 body 재전송 시 캐시 응답 반환(24시간). UUID v4 권장.
|
|
263
|
-
* @param {RequestSplitInvoiceRequestDto} requestSplitInvoiceRequestDto
|
|
264
|
-
* @param {*} [options] Override http request option.
|
|
265
|
-
* @throws {RequiredError}
|
|
266
|
-
*/
|
|
267
|
-
requestSplitInvoice(idempotencyKey: string, requestSplitInvoiceRequestDto: RequestSplitInvoiceRequestDto, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<SplitInvoiceResponseDto>>;
|
|
268
|
-
/**
|
|
269
|
-
* 협상에의한계약(낙찰방법 H/K) 응찰자별 기술/가격 점수를 일괄 입력합니다. **V5 대응:** `scsbidSend`(type=nego, 점수입력) — BidApi.xml `nego-eval` 액션의 V6 후속. **호출 시점:** 협상 방식 공고 마감 후 점수 평가를 진행할 때. `complete=true` 를 함께 보내면 평가완료 게이트(V5 `nego_complete_yn=Y`)까지 적용되어 낙찰 진입이 가능합니다. **부수효과:** - 각 응찰자의 기술점수(`techPoint`) 및 가격점수(`bidPoint`, 선택)가 저장됩니다. - `complete=true`인 경우 평가완료 상태로 전환되어 이후 `/v1/awards`로 낙찰 처리가 가능합니다. - 가격점수(`bidPoint`)를 생략하면 backend 가 배점 기준에 따라 자동 계산합니다. **응찰자 식별:** `sequence`(= V5 `buy_seq`, `entendrec` 응답의 `sequence` 필드). **필수 스코프:** `awards:write` **멱등성:** `Idempotency-Key` 헤더 필수.
|
|
270
|
-
* @summary 협상(H/K) 점수평가
|
|
271
|
-
* @param {string} idempotencyKey 멱등성 키(1~255자, [A-Za-z0-9_-]). 동일 키 + 동일 body 재전송 시 캐시 응답 반환(24시간). UUID v4 권장.
|
|
272
|
-
* @param {SubmitNegotiationScoresRequestDto} submitNegotiationScoresRequestDto
|
|
273
|
-
* @param {*} [options] Override http request option.
|
|
274
|
-
* @throws {RequiredError}
|
|
275
|
-
*/
|
|
276
|
-
submitNegotiationScores(idempotencyKey: string, submitNegotiationScoresRequestDto: SubmitNegotiationScoresRequestDto, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<NegotiationScoredResponseDto>>;
|
|
277
184
|
/**
|
|
278
185
|
* 스코프 `files:write` + `Idempotency-Key` 헤더 필수. base64 또는 url 중 정확히 하나를 제출한다.
|
|
279
186
|
* @summary 입찰 첨부파일 업로드(base64 또는 url) → fileKey
|
|
@@ -297,23 +204,6 @@ export declare const PartnerV2ApiFactory: (configuration?: Configuration, basePa
|
|
|
297
204
|
* @throws {RequiredError}
|
|
298
205
|
*/
|
|
299
206
|
completeAcceptance(bidId: string, idempotencyKey: string, completeAcceptanceRequestDto: CompleteAcceptanceRequestDto, options?: RawAxiosRequestConfig): AxiosPromise<AcceptanceResultResponseDto>;
|
|
300
|
-
/**
|
|
301
|
-
* V5 /contractDocumentRec 후속. scope contracts:read.
|
|
302
|
-
* @summary 계약서류 수신 조회
|
|
303
|
-
* @param {string} bidId
|
|
304
|
-
* @param {string} buyerId 공고 명의 회원 ID(b2b_member.member_id).
|
|
305
|
-
* @param {*} [options] Override http request option.
|
|
306
|
-
* @throws {RequiredError}
|
|
307
|
-
*/
|
|
308
|
-
getBidContractDocuments(bidId: string, buyerId: string, options?: RawAxiosRequestConfig): AxiosPromise<BidContractDocumentsResponseDto>;
|
|
309
|
-
/**
|
|
310
|
-
* V5 /contractDocumentRec(bid_puchase_no_list) 후속. 공고번호 리스트를 한 번에 조회. 단건(GET :bidId/contract-documents)은 그대로 유지. scope contracts:read.
|
|
311
|
-
* @summary 계약서류 수신 배치 조회
|
|
312
|
-
* @param {BidContractDocumentsBatchRequestDto} bidContractDocumentsBatchRequestDto
|
|
313
|
-
* @param {*} [options] Override http request option.
|
|
314
|
-
* @throws {RequiredError}
|
|
315
|
-
*/
|
|
316
|
-
getBidContractDocumentsBatch(bidContractDocumentsBatchRequestDto: BidContractDocumentsBatchRequestDto, options?: RawAxiosRequestConfig): AxiosPromise<Array<BidContractDocumentsResponseDto>>;
|
|
317
207
|
/**
|
|
318
208
|
* V5 /entendrec 후속. scope bids:read.
|
|
319
209
|
* @summary 입찰 결과 조회
|
|
@@ -323,14 +213,6 @@ export declare const PartnerV2ApiFactory: (configuration?: Configuration, basePa
|
|
|
323
213
|
* @throws {RequiredError}
|
|
324
214
|
*/
|
|
325
215
|
getBidResults(bidId: string, buyerId: string, options?: RawAxiosRequestConfig): AxiosPromise<BidResultsResponseDto>;
|
|
326
|
-
/**
|
|
327
|
-
* V5 entendRec(bid_puchase_no_list) 후속 — 여러 공고 결과를 1회 호출로(additive, 단건 유지). bidIds(공고 식별자) 또는 purchaseNos(구매번호) 중 하나 — purchaseNos 는 각 PO 의 가장 최근 공고로 해소. 입력 순서를 보존한다. scope bids:read.
|
|
328
|
-
* @summary 입찰결과 배치 조회
|
|
329
|
-
* @param {BidResultsBatchRequestDto} bidResultsBatchRequestDto
|
|
330
|
-
* @param {*} [options] Override http request option.
|
|
331
|
-
* @throws {RequiredError}
|
|
332
|
-
*/
|
|
333
|
-
getBidResultsBatch(bidResultsBatchRequestDto: BidResultsBatchRequestDto, options?: RawAxiosRequestConfig): AxiosPromise<Array<BidResultsResponseDto>>;
|
|
334
216
|
/**
|
|
335
217
|
* V5 /entendrec 정산(사업자·계좌·공급가액/부가세·응찰 품목내역) 후속. scope bids:read. 가격/신원 가시성 매트릭스와 직교한 ERP 정산 데이터 — read-only.
|
|
336
218
|
* @summary 입찰결과 정산정보 조회
|
|
@@ -381,24 +263,6 @@ export declare const PartnerV2ApiFactory: (configuration?: Configuration, basePa
|
|
|
381
263
|
* @throws {RequiredError}
|
|
382
264
|
*/
|
|
383
265
|
registerBid(createBidRequestDto: CreateBidRequestDto, options?: RawAxiosRequestConfig): AxiosPromise<BidCreatedResponseDto>;
|
|
384
|
-
/**
|
|
385
|
-
* 세금계산서 분할 발급 청구를 기록합니다. 발급 엔진이 아니라 \"분할 발급 청구 요청을 접수\"하는 엔드포인트입니다. **V5 대응:** `splitInvoiceRequest` — BidApi.xml `splitInvoice` 액션의 V6 후속. **호출 시점:** 검수완료 후 세금계산서를 분할 발급받고자 할 때. 공급가액과 부가세를 나누어 청구합니다. **부수효과:** - 분할 발급 청구가 기록됩니다(실제 세금계산서 발급은 별도 프로세스). - 작성일자(`issueDate`)는 미래 일자 불가(I5 — V5 `PgBidApiService:220-235` 패리티). 오늘 날짜는 허용. - `issueDate` 미지정 시 backend 기본값 적용. **금액 단위:** 원(KRW) 정수. `supplyAmount`(공급가액) + `vat`(부가세) 합산이 실제 청구 총액. **필수 스코프:** `invoices:write` **멱등성:** `Idempotency-Key` 헤더 필수.
|
|
386
|
-
* @summary 계산서 분할 발급 청구
|
|
387
|
-
* @param {string} idempotencyKey 멱등성 키(1~255자, [A-Za-z0-9_-]). 동일 키 + 동일 body 재전송 시 캐시 응답 반환(24시간). UUID v4 권장.
|
|
388
|
-
* @param {RequestSplitInvoiceRequestDto} requestSplitInvoiceRequestDto
|
|
389
|
-
* @param {*} [options] Override http request option.
|
|
390
|
-
* @throws {RequiredError}
|
|
391
|
-
*/
|
|
392
|
-
requestSplitInvoice(idempotencyKey: string, requestSplitInvoiceRequestDto: RequestSplitInvoiceRequestDto, options?: RawAxiosRequestConfig): AxiosPromise<SplitInvoiceResponseDto>;
|
|
393
|
-
/**
|
|
394
|
-
* 협상에의한계약(낙찰방법 H/K) 응찰자별 기술/가격 점수를 일괄 입력합니다. **V5 대응:** `scsbidSend`(type=nego, 점수입력) — BidApi.xml `nego-eval` 액션의 V6 후속. **호출 시점:** 협상 방식 공고 마감 후 점수 평가를 진행할 때. `complete=true` 를 함께 보내면 평가완료 게이트(V5 `nego_complete_yn=Y`)까지 적용되어 낙찰 진입이 가능합니다. **부수효과:** - 각 응찰자의 기술점수(`techPoint`) 및 가격점수(`bidPoint`, 선택)가 저장됩니다. - `complete=true`인 경우 평가완료 상태로 전환되어 이후 `/v1/awards`로 낙찰 처리가 가능합니다. - 가격점수(`bidPoint`)를 생략하면 backend 가 배점 기준에 따라 자동 계산합니다. **응찰자 식별:** `sequence`(= V5 `buy_seq`, `entendrec` 응답의 `sequence` 필드). **필수 스코프:** `awards:write` **멱등성:** `Idempotency-Key` 헤더 필수.
|
|
395
|
-
* @summary 협상(H/K) 점수평가
|
|
396
|
-
* @param {string} idempotencyKey 멱등성 키(1~255자, [A-Za-z0-9_-]). 동일 키 + 동일 body 재전송 시 캐시 응답 반환(24시간). UUID v4 권장.
|
|
397
|
-
* @param {SubmitNegotiationScoresRequestDto} submitNegotiationScoresRequestDto
|
|
398
|
-
* @param {*} [options] Override http request option.
|
|
399
|
-
* @throws {RequiredError}
|
|
400
|
-
*/
|
|
401
|
-
submitNegotiationScores(idempotencyKey: string, submitNegotiationScoresRequestDto: SubmitNegotiationScoresRequestDto, options?: RawAxiosRequestConfig): AxiosPromise<NegotiationScoredResponseDto>;
|
|
402
266
|
/**
|
|
403
267
|
* 스코프 `files:write` + `Idempotency-Key` 헤더 필수. base64 또는 url 중 정확히 하나를 제출한다.
|
|
404
268
|
* @summary 입찰 첨부파일 업로드(base64 또는 url) → fileKey
|
|
@@ -422,23 +286,6 @@ export declare class PartnerV2Api extends BaseAPI {
|
|
|
422
286
|
* @throws {RequiredError}
|
|
423
287
|
*/
|
|
424
288
|
completeAcceptance(bidId: string, idempotencyKey: string, completeAcceptanceRequestDto: CompleteAcceptanceRequestDto, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<AcceptanceResultResponseDto, any, {}>>;
|
|
425
|
-
/**
|
|
426
|
-
* V5 /contractDocumentRec 후속. scope contracts:read.
|
|
427
|
-
* @summary 계약서류 수신 조회
|
|
428
|
-
* @param {string} bidId
|
|
429
|
-
* @param {string} buyerId 공고 명의 회원 ID(b2b_member.member_id).
|
|
430
|
-
* @param {*} [options] Override http request option.
|
|
431
|
-
* @throws {RequiredError}
|
|
432
|
-
*/
|
|
433
|
-
getBidContractDocuments(bidId: string, buyerId: string, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<BidContractDocumentsResponseDto, any, {}>>;
|
|
434
|
-
/**
|
|
435
|
-
* V5 /contractDocumentRec(bid_puchase_no_list) 후속. 공고번호 리스트를 한 번에 조회. 단건(GET :bidId/contract-documents)은 그대로 유지. scope contracts:read.
|
|
436
|
-
* @summary 계약서류 수신 배치 조회
|
|
437
|
-
* @param {BidContractDocumentsBatchRequestDto} bidContractDocumentsBatchRequestDto
|
|
438
|
-
* @param {*} [options] Override http request option.
|
|
439
|
-
* @throws {RequiredError}
|
|
440
|
-
*/
|
|
441
|
-
getBidContractDocumentsBatch(bidContractDocumentsBatchRequestDto: BidContractDocumentsBatchRequestDto, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<BidContractDocumentsResponseDto[], any, {}>>;
|
|
442
289
|
/**
|
|
443
290
|
* V5 /entendrec 후속. scope bids:read.
|
|
444
291
|
* @summary 입찰 결과 조회
|
|
@@ -448,14 +295,6 @@ export declare class PartnerV2Api extends BaseAPI {
|
|
|
448
295
|
* @throws {RequiredError}
|
|
449
296
|
*/
|
|
450
297
|
getBidResults(bidId: string, buyerId: string, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<BidResultsResponseDto, any, {}>>;
|
|
451
|
-
/**
|
|
452
|
-
* V5 entendRec(bid_puchase_no_list) 후속 — 여러 공고 결과를 1회 호출로(additive, 단건 유지). bidIds(공고 식별자) 또는 purchaseNos(구매번호) 중 하나 — purchaseNos 는 각 PO 의 가장 최근 공고로 해소. 입력 순서를 보존한다. scope bids:read.
|
|
453
|
-
* @summary 입찰결과 배치 조회
|
|
454
|
-
* @param {BidResultsBatchRequestDto} bidResultsBatchRequestDto
|
|
455
|
-
* @param {*} [options] Override http request option.
|
|
456
|
-
* @throws {RequiredError}
|
|
457
|
-
*/
|
|
458
|
-
getBidResultsBatch(bidResultsBatchRequestDto: BidResultsBatchRequestDto, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<BidResultsResponseDto[], any, {}>>;
|
|
459
298
|
/**
|
|
460
299
|
* V5 /entendrec 정산(사업자·계좌·공급가액/부가세·응찰 품목내역) 후속. scope bids:read. 가격/신원 가시성 매트릭스와 직교한 ERP 정산 데이터 — read-only.
|
|
461
300
|
* @summary 입찰결과 정산정보 조회
|
|
@@ -506,24 +345,6 @@ export declare class PartnerV2Api extends BaseAPI {
|
|
|
506
345
|
* @throws {RequiredError}
|
|
507
346
|
*/
|
|
508
347
|
registerBid(createBidRequestDto: CreateBidRequestDto, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<BidCreatedResponseDto, any, {}>>;
|
|
509
|
-
/**
|
|
510
|
-
* 세금계산서 분할 발급 청구를 기록합니다. 발급 엔진이 아니라 \"분할 발급 청구 요청을 접수\"하는 엔드포인트입니다. **V5 대응:** `splitInvoiceRequest` — BidApi.xml `splitInvoice` 액션의 V6 후속. **호출 시점:** 검수완료 후 세금계산서를 분할 발급받고자 할 때. 공급가액과 부가세를 나누어 청구합니다. **부수효과:** - 분할 발급 청구가 기록됩니다(실제 세금계산서 발급은 별도 프로세스). - 작성일자(`issueDate`)는 미래 일자 불가(I5 — V5 `PgBidApiService:220-235` 패리티). 오늘 날짜는 허용. - `issueDate` 미지정 시 backend 기본값 적용. **금액 단위:** 원(KRW) 정수. `supplyAmount`(공급가액) + `vat`(부가세) 합산이 실제 청구 총액. **필수 스코프:** `invoices:write` **멱등성:** `Idempotency-Key` 헤더 필수.
|
|
511
|
-
* @summary 계산서 분할 발급 청구
|
|
512
|
-
* @param {string} idempotencyKey 멱등성 키(1~255자, [A-Za-z0-9_-]). 동일 키 + 동일 body 재전송 시 캐시 응답 반환(24시간). UUID v4 권장.
|
|
513
|
-
* @param {RequestSplitInvoiceRequestDto} requestSplitInvoiceRequestDto
|
|
514
|
-
* @param {*} [options] Override http request option.
|
|
515
|
-
* @throws {RequiredError}
|
|
516
|
-
*/
|
|
517
|
-
requestSplitInvoice(idempotencyKey: string, requestSplitInvoiceRequestDto: RequestSplitInvoiceRequestDto, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<SplitInvoiceResponseDto, any, {}>>;
|
|
518
|
-
/**
|
|
519
|
-
* 협상에의한계약(낙찰방법 H/K) 응찰자별 기술/가격 점수를 일괄 입력합니다. **V5 대응:** `scsbidSend`(type=nego, 점수입력) — BidApi.xml `nego-eval` 액션의 V6 후속. **호출 시점:** 협상 방식 공고 마감 후 점수 평가를 진행할 때. `complete=true` 를 함께 보내면 평가완료 게이트(V5 `nego_complete_yn=Y`)까지 적용되어 낙찰 진입이 가능합니다. **부수효과:** - 각 응찰자의 기술점수(`techPoint`) 및 가격점수(`bidPoint`, 선택)가 저장됩니다. - `complete=true`인 경우 평가완료 상태로 전환되어 이후 `/v1/awards`로 낙찰 처리가 가능합니다. - 가격점수(`bidPoint`)를 생략하면 backend 가 배점 기준에 따라 자동 계산합니다. **응찰자 식별:** `sequence`(= V5 `buy_seq`, `entendrec` 응답의 `sequence` 필드). **필수 스코프:** `awards:write` **멱등성:** `Idempotency-Key` 헤더 필수.
|
|
520
|
-
* @summary 협상(H/K) 점수평가
|
|
521
|
-
* @param {string} idempotencyKey 멱등성 키(1~255자, [A-Za-z0-9_-]). 동일 키 + 동일 body 재전송 시 캐시 응답 반환(24시간). UUID v4 권장.
|
|
522
|
-
* @param {SubmitNegotiationScoresRequestDto} submitNegotiationScoresRequestDto
|
|
523
|
-
* @param {*} [options] Override http request option.
|
|
524
|
-
* @throws {RequiredError}
|
|
525
|
-
*/
|
|
526
|
-
submitNegotiationScores(idempotencyKey: string, submitNegotiationScoresRequestDto: SubmitNegotiationScoresRequestDto, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<NegotiationScoredResponseDto, any, {}>>;
|
|
527
348
|
/**
|
|
528
349
|
* 스코프 `files:write` + `Idempotency-Key` 헤더 필수. base64 또는 url 중 정확히 하나를 제출한다.
|
|
529
350
|
* @summary 입찰 첨부파일 업로드(base64 또는 url) → fileKey
|