@cmarket/partner-sdk 0.2.1 → 0.3.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/dist/api.d.ts CHANGED
@@ -11,4 +11,3 @@
11
11
  */
12
12
  export * from './api/oauth-api';
13
13
  export * from './api/partner-v1-api';
14
- export * from './api/partner-v2-api';
package/dist/api.js CHANGED
@@ -29,4 +29,3 @@ var __exportStar = (this && this.__exportStar) || function(m, exports) {
29
29
  Object.defineProperty(exports, "__esModule", { value: true });
30
30
  __exportStar(require("./api/oauth-api"), exports);
31
31
  __exportStar(require("./api/partner-v1-api"), exports);
32
- __exportStar(require("./api/partner-v2-api"), exports);
@@ -12,8 +12,28 @@
12
12
  import type { Configuration } from '../configuration';
13
13
  import type { AxiosPromise, AxiosInstance, RawAxiosRequestConfig } from 'axios';
14
14
  import { type RequestArgs, BaseAPI } from '../base';
15
+ import type { AcceptanceResultResponseDto } from '../models';
16
+ import type { AwardRegisteredResponseDto } from '../models';
17
+ import type { BidContractDocumentsBatchRequestDto } from '../models';
18
+ import type { BidContractDocumentsResponseDto } from '../models';
19
+ import type { BidCreatedResponseDto } from '../models';
20
+ import type { BidFailedResponseDto } from '../models';
21
+ import type { BidResultsBatchRequestDto } from '../models';
22
+ import type { BidResultsResponseDto } from '../models';
23
+ import type { BidSettlementResponseDto } from '../models';
24
+ import type { BidStatementResponseDto } from '../models';
15
25
  import type { BidSummaryResponseDto } from '../models';
26
+ import type { CompleteAcceptanceRequestDto } from '../models';
27
+ import type { CreateBidRequestDto } from '../models';
28
+ import type { FileUploadedResponseDto } from '../models';
16
29
  import type { HealthResponseDto } from '../models';
30
+ import type { MarkBidFailedRequestDto } from '../models';
31
+ import type { NegotiationScoredResponseDto } from '../models';
32
+ import type { RegisterAwardRequestDto } from '../models';
33
+ import type { RequestSplitInvoiceRequestDto } from '../models';
34
+ import type { SplitInvoiceResponseDto } from '../models';
35
+ import type { SubmitNegotiationScoresRequestDto } from '../models';
36
+ import type { UploadFileRequestDto } from '../models';
17
37
  /**
18
38
  * PartnerV1Api - axios parameter creator
19
39
  */
@@ -26,6 +46,66 @@ export declare const PartnerV1ApiAxiosParamCreator: (configuration?: Configurati
26
46
  * @throws {RequiredError}
27
47
  */
28
48
  bidsControllerFindOne: (bidId: string, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
49
+ /**
50
+ * V5 /acceptanceCompleteSend 후속. scope contracts:write + Idempotency-Key.
51
+ * @summary 검수완료 전송
52
+ * @param {string} bidId
53
+ * @param {CompleteAcceptanceRequestDto} completeAcceptanceRequestDto
54
+ * @param {*} [options] Override http request option.
55
+ * @throws {RequiredError}
56
+ */
57
+ completeAcceptance: (bidId: string, completeAcceptanceRequestDto: CompleteAcceptanceRequestDto, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
58
+ /**
59
+ * V5 /contractDocumentRec 후속. scope contracts:read.
60
+ * @summary 계약서류 수신 조회
61
+ * @param {string} bidId
62
+ * @param {string} buyerId
63
+ * @param {*} [options] Override http request option.
64
+ * @throws {RequiredError}
65
+ */
66
+ getBidContractDocuments: (bidId: string, buyerId: string, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
67
+ /**
68
+ * V5 /contractDocumentRec(bid_puchase_no_list) 후속. 공고번호 리스트를 한 번에 조회. 단건(GET :bidId/contract-documents)은 그대로 유지. scope contracts:read.
69
+ * @summary 계약서류 수신 배치 조회
70
+ * @param {BidContractDocumentsBatchRequestDto} bidContractDocumentsBatchRequestDto
71
+ * @param {*} [options] Override http request option.
72
+ * @throws {RequiredError}
73
+ */
74
+ getBidContractDocumentsBatch: (bidContractDocumentsBatchRequestDto: BidContractDocumentsBatchRequestDto, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
75
+ /**
76
+ * V5 /entendrec 후속. scope bids:read.
77
+ * @summary 입찰 결과 조회
78
+ * @param {string} bidId
79
+ * @param {string} buyerId
80
+ * @param {*} [options] Override http request option.
81
+ * @throws {RequiredError}
82
+ */
83
+ getBidResults: (bidId: string, buyerId: string, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
84
+ /**
85
+ * V5 entendRec(bid_puchase_no_list) 후속 — 여러 공고 결과를 1회 호출로(additive, 단건 유지). 입력 순서를 보존한다. scope bids:read.
86
+ * @summary 입찰결과 배치 조회
87
+ * @param {BidResultsBatchRequestDto} bidResultsBatchRequestDto
88
+ * @param {*} [options] Override http request option.
89
+ * @throws {RequiredError}
90
+ */
91
+ getBidResultsBatch: (bidResultsBatchRequestDto: BidResultsBatchRequestDto, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
92
+ /**
93
+ * V5 /entendrec 정산(사업자·계좌·공급가액/부가세·응찰 품목내역) 후속. scope bids:read. 가격/신원 가시성 매트릭스와 직교한 ERP 정산 데이터 — read-only.
94
+ * @summary 입찰결과 정산정보 조회
95
+ * @param {string} bidId
96
+ * @param {*} [options] Override http request option.
97
+ * @throws {RequiredError}
98
+ */
99
+ getBidSettlement: (bidId: string, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
100
+ /**
101
+ * V5 /getGrm 후속. scope contracts:read.
102
+ * @summary 거래명세서 조회
103
+ * @param {string} bidId
104
+ * @param {number} paperCode
105
+ * @param {*} [options] Override http request option.
106
+ * @throws {RequiredError}
107
+ */
108
+ getBidStatement: (bidId: string, paperCode: number, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
29
109
  /**
30
110
  * ERP 연동 직전 회선·인증 endpoint 동작 확인용.
31
111
  * @summary Partner API 헬스체크
@@ -33,6 +113,54 @@ export declare const PartnerV1ApiAxiosParamCreator: (configuration?: Configurati
33
113
  * @throws {RequiredError}
34
114
  */
35
115
  healthControllerCheck: (options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
116
+ /**
117
+ * 유찰 처리(V5 yoochal 패리티). 유찰사유 코드(1~8)·상세를 받아 공고를 유찰 상태로 전환. 스코프 `awards:write` + `Idempotency-Key` 헤더 필수.
118
+ * @summary 유찰 처리
119
+ * @param {MarkBidFailedRequestDto} markBidFailedRequestDto
120
+ * @param {*} [options] Override http request option.
121
+ * @throws {RequiredError}
122
+ */
123
+ markBidFailed: (markBidFailedRequestDto: MarkBidFailedRequestDto, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
124
+ /**
125
+ * 낙찰 결과 등록. 스코프 `awards:write` + `Idempotency-Key` 헤더 필수.
126
+ * @summary 낙찰 결과 전송
127
+ * @param {RegisterAwardRequestDto} registerAwardRequestDto
128
+ * @param {*} [options] Override http request option.
129
+ * @throws {RequiredError}
130
+ */
131
+ registerAward: (registerAwardRequestDto: RegisterAwardRequestDto, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
132
+ /**
133
+ * 입찰 정보 등록. 스코프 `bids:write` + `Idempotency-Key` 헤더 필수.
134
+ * @summary 입찰 정보 전송(등록)
135
+ * @param {CreateBidRequestDto} createBidRequestDto
136
+ * @param {*} [options] Override http request option.
137
+ * @throws {RequiredError}
138
+ */
139
+ registerBid: (createBidRequestDto: CreateBidRequestDto, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
140
+ /**
141
+ * V5 /splitInvoiceRequest 후속. scope invoices:write + Idempotency-Key.
142
+ * @summary 계산서 분할 발급 청구
143
+ * @param {RequestSplitInvoiceRequestDto} requestSplitInvoiceRequestDto
144
+ * @param {*} [options] Override http request option.
145
+ * @throws {RequiredError}
146
+ */
147
+ requestSplitInvoice: (requestSplitInvoiceRequestDto: RequestSplitInvoiceRequestDto, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
148
+ /**
149
+ * 협상에의한계약(H/K) 응찰자별 기술/가격 점수 일괄 입력(V5 nego-eval 패리티). complete=true 면 평가완료 게이트까지 적용해 낙찰 진입 가능. 스코프 `awards:write` + `Idempotency-Key` 헤더 필수.
150
+ * @summary 협상(H/K) 점수평가
151
+ * @param {SubmitNegotiationScoresRequestDto} submitNegotiationScoresRequestDto
152
+ * @param {*} [options] Override http request option.
153
+ * @throws {RequiredError}
154
+ */
155
+ submitNegotiationScores: (submitNegotiationScoresRequestDto: SubmitNegotiationScoresRequestDto, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
156
+ /**
157
+ * 스코프 `files:write` 필수. base64 또는 url 중 하나를 제출한다.
158
+ * @summary 입찰 첨부파일 업로드(base64 또는 url) → fileKey
159
+ * @param {UploadFileRequestDto} uploadFileRequestDto
160
+ * @param {*} [options] Override http request option.
161
+ * @throws {RequiredError}
162
+ */
163
+ uploadFile: (uploadFileRequestDto: UploadFileRequestDto, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
36
164
  };
37
165
  /**
38
166
  * PartnerV1Api - functional programming interface
@@ -46,6 +174,66 @@ export declare const PartnerV1ApiFp: (configuration?: Configuration) => {
46
174
  * @throws {RequiredError}
47
175
  */
48
176
  bidsControllerFindOne(bidId: string, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<BidSummaryResponseDto>>;
177
+ /**
178
+ * V5 /acceptanceCompleteSend 후속. scope contracts:write + Idempotency-Key.
179
+ * @summary 검수완료 전송
180
+ * @param {string} bidId
181
+ * @param {CompleteAcceptanceRequestDto} completeAcceptanceRequestDto
182
+ * @param {*} [options] Override http request option.
183
+ * @throws {RequiredError}
184
+ */
185
+ completeAcceptance(bidId: string, completeAcceptanceRequestDto: CompleteAcceptanceRequestDto, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<AcceptanceResultResponseDto>>;
186
+ /**
187
+ * V5 /contractDocumentRec 후속. scope contracts:read.
188
+ * @summary 계약서류 수신 조회
189
+ * @param {string} bidId
190
+ * @param {string} buyerId
191
+ * @param {*} [options] Override http request option.
192
+ * @throws {RequiredError}
193
+ */
194
+ getBidContractDocuments(bidId: string, buyerId: string, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<BidContractDocumentsResponseDto>>;
195
+ /**
196
+ * V5 /contractDocumentRec(bid_puchase_no_list) 후속. 공고번호 리스트를 한 번에 조회. 단건(GET :bidId/contract-documents)은 그대로 유지. scope contracts:read.
197
+ * @summary 계약서류 수신 배치 조회
198
+ * @param {BidContractDocumentsBatchRequestDto} bidContractDocumentsBatchRequestDto
199
+ * @param {*} [options] Override http request option.
200
+ * @throws {RequiredError}
201
+ */
202
+ getBidContractDocumentsBatch(bidContractDocumentsBatchRequestDto: BidContractDocumentsBatchRequestDto, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<Array<BidContractDocumentsResponseDto>>>;
203
+ /**
204
+ * V5 /entendrec 후속. scope bids:read.
205
+ * @summary 입찰 결과 조회
206
+ * @param {string} bidId
207
+ * @param {string} buyerId
208
+ * @param {*} [options] Override http request option.
209
+ * @throws {RequiredError}
210
+ */
211
+ getBidResults(bidId: string, buyerId: string, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<BidResultsResponseDto>>;
212
+ /**
213
+ * V5 entendRec(bid_puchase_no_list) 후속 — 여러 공고 결과를 1회 호출로(additive, 단건 유지). 입력 순서를 보존한다. scope bids:read.
214
+ * @summary 입찰결과 배치 조회
215
+ * @param {BidResultsBatchRequestDto} bidResultsBatchRequestDto
216
+ * @param {*} [options] Override http request option.
217
+ * @throws {RequiredError}
218
+ */
219
+ getBidResultsBatch(bidResultsBatchRequestDto: BidResultsBatchRequestDto, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<Array<BidResultsResponseDto>>>;
220
+ /**
221
+ * V5 /entendrec 정산(사업자·계좌·공급가액/부가세·응찰 품목내역) 후속. scope bids:read. 가격/신원 가시성 매트릭스와 직교한 ERP 정산 데이터 — read-only.
222
+ * @summary 입찰결과 정산정보 조회
223
+ * @param {string} bidId
224
+ * @param {*} [options] Override http request option.
225
+ * @throws {RequiredError}
226
+ */
227
+ getBidSettlement(bidId: string, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<BidSettlementResponseDto>>;
228
+ /**
229
+ * V5 /getGrm 후속. scope contracts:read.
230
+ * @summary 거래명세서 조회
231
+ * @param {string} bidId
232
+ * @param {number} paperCode
233
+ * @param {*} [options] Override http request option.
234
+ * @throws {RequiredError}
235
+ */
236
+ getBidStatement(bidId: string, paperCode: number, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<BidStatementResponseDto>>;
49
237
  /**
50
238
  * ERP 연동 직전 회선·인증 endpoint 동작 확인용.
51
239
  * @summary Partner API 헬스체크
@@ -53,6 +241,54 @@ export declare const PartnerV1ApiFp: (configuration?: Configuration) => {
53
241
  * @throws {RequiredError}
54
242
  */
55
243
  healthControllerCheck(options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<HealthResponseDto>>;
244
+ /**
245
+ * 유찰 처리(V5 yoochal 패리티). 유찰사유 코드(1~8)·상세를 받아 공고를 유찰 상태로 전환. 스코프 `awards:write` + `Idempotency-Key` 헤더 필수.
246
+ * @summary 유찰 처리
247
+ * @param {MarkBidFailedRequestDto} markBidFailedRequestDto
248
+ * @param {*} [options] Override http request option.
249
+ * @throws {RequiredError}
250
+ */
251
+ markBidFailed(markBidFailedRequestDto: MarkBidFailedRequestDto, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<BidFailedResponseDto>>;
252
+ /**
253
+ * 낙찰 결과 등록. 스코프 `awards:write` + `Idempotency-Key` 헤더 필수.
254
+ * @summary 낙찰 결과 전송
255
+ * @param {RegisterAwardRequestDto} registerAwardRequestDto
256
+ * @param {*} [options] Override http request option.
257
+ * @throws {RequiredError}
258
+ */
259
+ registerAward(registerAwardRequestDto: RegisterAwardRequestDto, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<AwardRegisteredResponseDto>>;
260
+ /**
261
+ * 입찰 정보 등록. 스코프 `bids:write` + `Idempotency-Key` 헤더 필수.
262
+ * @summary 입찰 정보 전송(등록)
263
+ * @param {CreateBidRequestDto} createBidRequestDto
264
+ * @param {*} [options] Override http request option.
265
+ * @throws {RequiredError}
266
+ */
267
+ registerBid(createBidRequestDto: CreateBidRequestDto, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<BidCreatedResponseDto>>;
268
+ /**
269
+ * V5 /splitInvoiceRequest 후속. scope invoices:write + Idempotency-Key.
270
+ * @summary 계산서 분할 발급 청구
271
+ * @param {RequestSplitInvoiceRequestDto} requestSplitInvoiceRequestDto
272
+ * @param {*} [options] Override http request option.
273
+ * @throws {RequiredError}
274
+ */
275
+ requestSplitInvoice(requestSplitInvoiceRequestDto: RequestSplitInvoiceRequestDto, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<SplitInvoiceResponseDto>>;
276
+ /**
277
+ * 협상에의한계약(H/K) 응찰자별 기술/가격 점수 일괄 입력(V5 nego-eval 패리티). complete=true 면 평가완료 게이트까지 적용해 낙찰 진입 가능. 스코프 `awards:write` + `Idempotency-Key` 헤더 필수.
278
+ * @summary 협상(H/K) 점수평가
279
+ * @param {SubmitNegotiationScoresRequestDto} submitNegotiationScoresRequestDto
280
+ * @param {*} [options] Override http request option.
281
+ * @throws {RequiredError}
282
+ */
283
+ submitNegotiationScores(submitNegotiationScoresRequestDto: SubmitNegotiationScoresRequestDto, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<NegotiationScoredResponseDto>>;
284
+ /**
285
+ * 스코프 `files:write` 필수. base64 또는 url 중 하나를 제출한다.
286
+ * @summary 입찰 첨부파일 업로드(base64 또는 url) → fileKey
287
+ * @param {UploadFileRequestDto} uploadFileRequestDto
288
+ * @param {*} [options] Override http request option.
289
+ * @throws {RequiredError}
290
+ */
291
+ uploadFile(uploadFileRequestDto: UploadFileRequestDto, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<FileUploadedResponseDto>>;
56
292
  };
57
293
  /**
58
294
  * PartnerV1Api - factory interface
@@ -66,6 +302,66 @@ export declare const PartnerV1ApiFactory: (configuration?: Configuration, basePa
66
302
  * @throws {RequiredError}
67
303
  */
68
304
  bidsControllerFindOne(bidId: string, options?: RawAxiosRequestConfig): AxiosPromise<BidSummaryResponseDto>;
305
+ /**
306
+ * V5 /acceptanceCompleteSend 후속. scope contracts:write + Idempotency-Key.
307
+ * @summary 검수완료 전송
308
+ * @param {string} bidId
309
+ * @param {CompleteAcceptanceRequestDto} completeAcceptanceRequestDto
310
+ * @param {*} [options] Override http request option.
311
+ * @throws {RequiredError}
312
+ */
313
+ completeAcceptance(bidId: string, completeAcceptanceRequestDto: CompleteAcceptanceRequestDto, options?: RawAxiosRequestConfig): AxiosPromise<AcceptanceResultResponseDto>;
314
+ /**
315
+ * V5 /contractDocumentRec 후속. scope contracts:read.
316
+ * @summary 계약서류 수신 조회
317
+ * @param {string} bidId
318
+ * @param {string} buyerId
319
+ * @param {*} [options] Override http request option.
320
+ * @throws {RequiredError}
321
+ */
322
+ getBidContractDocuments(bidId: string, buyerId: string, options?: RawAxiosRequestConfig): AxiosPromise<BidContractDocumentsResponseDto>;
323
+ /**
324
+ * V5 /contractDocumentRec(bid_puchase_no_list) 후속. 공고번호 리스트를 한 번에 조회. 단건(GET :bidId/contract-documents)은 그대로 유지. scope contracts:read.
325
+ * @summary 계약서류 수신 배치 조회
326
+ * @param {BidContractDocumentsBatchRequestDto} bidContractDocumentsBatchRequestDto
327
+ * @param {*} [options] Override http request option.
328
+ * @throws {RequiredError}
329
+ */
330
+ getBidContractDocumentsBatch(bidContractDocumentsBatchRequestDto: BidContractDocumentsBatchRequestDto, options?: RawAxiosRequestConfig): AxiosPromise<Array<BidContractDocumentsResponseDto>>;
331
+ /**
332
+ * V5 /entendrec 후속. scope bids:read.
333
+ * @summary 입찰 결과 조회
334
+ * @param {string} bidId
335
+ * @param {string} buyerId
336
+ * @param {*} [options] Override http request option.
337
+ * @throws {RequiredError}
338
+ */
339
+ getBidResults(bidId: string, buyerId: string, options?: RawAxiosRequestConfig): AxiosPromise<BidResultsResponseDto>;
340
+ /**
341
+ * V5 entendRec(bid_puchase_no_list) 후속 — 여러 공고 결과를 1회 호출로(additive, 단건 유지). 입력 순서를 보존한다. scope bids:read.
342
+ * @summary 입찰결과 배치 조회
343
+ * @param {BidResultsBatchRequestDto} bidResultsBatchRequestDto
344
+ * @param {*} [options] Override http request option.
345
+ * @throws {RequiredError}
346
+ */
347
+ getBidResultsBatch(bidResultsBatchRequestDto: BidResultsBatchRequestDto, options?: RawAxiosRequestConfig): AxiosPromise<Array<BidResultsResponseDto>>;
348
+ /**
349
+ * V5 /entendrec 정산(사업자·계좌·공급가액/부가세·응찰 품목내역) 후속. scope bids:read. 가격/신원 가시성 매트릭스와 직교한 ERP 정산 데이터 — read-only.
350
+ * @summary 입찰결과 정산정보 조회
351
+ * @param {string} bidId
352
+ * @param {*} [options] Override http request option.
353
+ * @throws {RequiredError}
354
+ */
355
+ getBidSettlement(bidId: string, options?: RawAxiosRequestConfig): AxiosPromise<BidSettlementResponseDto>;
356
+ /**
357
+ * V5 /getGrm 후속. scope contracts:read.
358
+ * @summary 거래명세서 조회
359
+ * @param {string} bidId
360
+ * @param {number} paperCode
361
+ * @param {*} [options] Override http request option.
362
+ * @throws {RequiredError}
363
+ */
364
+ getBidStatement(bidId: string, paperCode: number, options?: RawAxiosRequestConfig): AxiosPromise<BidStatementResponseDto>;
69
365
  /**
70
366
  * ERP 연동 직전 회선·인증 endpoint 동작 확인용.
71
367
  * @summary Partner API 헬스체크
@@ -73,6 +369,54 @@ export declare const PartnerV1ApiFactory: (configuration?: Configuration, basePa
73
369
  * @throws {RequiredError}
74
370
  */
75
371
  healthControllerCheck(options?: RawAxiosRequestConfig): AxiosPromise<HealthResponseDto>;
372
+ /**
373
+ * 유찰 처리(V5 yoochal 패리티). 유찰사유 코드(1~8)·상세를 받아 공고를 유찰 상태로 전환. 스코프 `awards:write` + `Idempotency-Key` 헤더 필수.
374
+ * @summary 유찰 처리
375
+ * @param {MarkBidFailedRequestDto} markBidFailedRequestDto
376
+ * @param {*} [options] Override http request option.
377
+ * @throws {RequiredError}
378
+ */
379
+ markBidFailed(markBidFailedRequestDto: MarkBidFailedRequestDto, options?: RawAxiosRequestConfig): AxiosPromise<BidFailedResponseDto>;
380
+ /**
381
+ * 낙찰 결과 등록. 스코프 `awards:write` + `Idempotency-Key` 헤더 필수.
382
+ * @summary 낙찰 결과 전송
383
+ * @param {RegisterAwardRequestDto} registerAwardRequestDto
384
+ * @param {*} [options] Override http request option.
385
+ * @throws {RequiredError}
386
+ */
387
+ registerAward(registerAwardRequestDto: RegisterAwardRequestDto, options?: RawAxiosRequestConfig): AxiosPromise<AwardRegisteredResponseDto>;
388
+ /**
389
+ * 입찰 정보 등록. 스코프 `bids:write` + `Idempotency-Key` 헤더 필수.
390
+ * @summary 입찰 정보 전송(등록)
391
+ * @param {CreateBidRequestDto} createBidRequestDto
392
+ * @param {*} [options] Override http request option.
393
+ * @throws {RequiredError}
394
+ */
395
+ registerBid(createBidRequestDto: CreateBidRequestDto, options?: RawAxiosRequestConfig): AxiosPromise<BidCreatedResponseDto>;
396
+ /**
397
+ * V5 /splitInvoiceRequest 후속. scope invoices:write + Idempotency-Key.
398
+ * @summary 계산서 분할 발급 청구
399
+ * @param {RequestSplitInvoiceRequestDto} requestSplitInvoiceRequestDto
400
+ * @param {*} [options] Override http request option.
401
+ * @throws {RequiredError}
402
+ */
403
+ requestSplitInvoice(requestSplitInvoiceRequestDto: RequestSplitInvoiceRequestDto, options?: RawAxiosRequestConfig): AxiosPromise<SplitInvoiceResponseDto>;
404
+ /**
405
+ * 협상에의한계약(H/K) 응찰자별 기술/가격 점수 일괄 입력(V5 nego-eval 패리티). complete=true 면 평가완료 게이트까지 적용해 낙찰 진입 가능. 스코프 `awards:write` + `Idempotency-Key` 헤더 필수.
406
+ * @summary 협상(H/K) 점수평가
407
+ * @param {SubmitNegotiationScoresRequestDto} submitNegotiationScoresRequestDto
408
+ * @param {*} [options] Override http request option.
409
+ * @throws {RequiredError}
410
+ */
411
+ submitNegotiationScores(submitNegotiationScoresRequestDto: SubmitNegotiationScoresRequestDto, options?: RawAxiosRequestConfig): AxiosPromise<NegotiationScoredResponseDto>;
412
+ /**
413
+ * 스코프 `files:write` 필수. base64 또는 url 중 하나를 제출한다.
414
+ * @summary 입찰 첨부파일 업로드(base64 또는 url) → fileKey
415
+ * @param {UploadFileRequestDto} uploadFileRequestDto
416
+ * @param {*} [options] Override http request option.
417
+ * @throws {RequiredError}
418
+ */
419
+ uploadFile(uploadFileRequestDto: UploadFileRequestDto, options?: RawAxiosRequestConfig): AxiosPromise<FileUploadedResponseDto>;
76
420
  };
77
421
  /**
78
422
  * PartnerV1Api - object-oriented interface
@@ -86,6 +430,66 @@ export declare class PartnerV1Api extends BaseAPI {
86
430
  * @throws {RequiredError}
87
431
  */
88
432
  bidsControllerFindOne(bidId: string, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<BidSummaryResponseDto, any, {}>>;
433
+ /**
434
+ * V5 /acceptanceCompleteSend 후속. scope contracts:write + Idempotency-Key.
435
+ * @summary 검수완료 전송
436
+ * @param {string} bidId
437
+ * @param {CompleteAcceptanceRequestDto} completeAcceptanceRequestDto
438
+ * @param {*} [options] Override http request option.
439
+ * @throws {RequiredError}
440
+ */
441
+ completeAcceptance(bidId: string, completeAcceptanceRequestDto: CompleteAcceptanceRequestDto, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<AcceptanceResultResponseDto, any, {}>>;
442
+ /**
443
+ * V5 /contractDocumentRec 후속. scope contracts:read.
444
+ * @summary 계약서류 수신 조회
445
+ * @param {string} bidId
446
+ * @param {string} buyerId
447
+ * @param {*} [options] Override http request option.
448
+ * @throws {RequiredError}
449
+ */
450
+ getBidContractDocuments(bidId: string, buyerId: string, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<BidContractDocumentsResponseDto, any, {}>>;
451
+ /**
452
+ * V5 /contractDocumentRec(bid_puchase_no_list) 후속. 공고번호 리스트를 한 번에 조회. 단건(GET :bidId/contract-documents)은 그대로 유지. scope contracts:read.
453
+ * @summary 계약서류 수신 배치 조회
454
+ * @param {BidContractDocumentsBatchRequestDto} bidContractDocumentsBatchRequestDto
455
+ * @param {*} [options] Override http request option.
456
+ * @throws {RequiredError}
457
+ */
458
+ getBidContractDocumentsBatch(bidContractDocumentsBatchRequestDto: BidContractDocumentsBatchRequestDto, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<BidContractDocumentsResponseDto[], any, {}>>;
459
+ /**
460
+ * V5 /entendrec 후속. scope bids:read.
461
+ * @summary 입찰 결과 조회
462
+ * @param {string} bidId
463
+ * @param {string} buyerId
464
+ * @param {*} [options] Override http request option.
465
+ * @throws {RequiredError}
466
+ */
467
+ getBidResults(bidId: string, buyerId: string, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<BidResultsResponseDto, any, {}>>;
468
+ /**
469
+ * V5 entendRec(bid_puchase_no_list) 후속 — 여러 공고 결과를 1회 호출로(additive, 단건 유지). 입력 순서를 보존한다. scope bids:read.
470
+ * @summary 입찰결과 배치 조회
471
+ * @param {BidResultsBatchRequestDto} bidResultsBatchRequestDto
472
+ * @param {*} [options] Override http request option.
473
+ * @throws {RequiredError}
474
+ */
475
+ getBidResultsBatch(bidResultsBatchRequestDto: BidResultsBatchRequestDto, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<BidResultsResponseDto[], any, {}>>;
476
+ /**
477
+ * V5 /entendrec 정산(사업자·계좌·공급가액/부가세·응찰 품목내역) 후속. scope bids:read. 가격/신원 가시성 매트릭스와 직교한 ERP 정산 데이터 — read-only.
478
+ * @summary 입찰결과 정산정보 조회
479
+ * @param {string} bidId
480
+ * @param {*} [options] Override http request option.
481
+ * @throws {RequiredError}
482
+ */
483
+ getBidSettlement(bidId: string, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<BidSettlementResponseDto, any, {}>>;
484
+ /**
485
+ * V5 /getGrm 후속. scope contracts:read.
486
+ * @summary 거래명세서 조회
487
+ * @param {string} bidId
488
+ * @param {number} paperCode
489
+ * @param {*} [options] Override http request option.
490
+ * @throws {RequiredError}
491
+ */
492
+ getBidStatement(bidId: string, paperCode: number, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<BidStatementResponseDto, any, {}>>;
89
493
  /**
90
494
  * ERP 연동 직전 회선·인증 endpoint 동작 확인용.
91
495
  * @summary Partner API 헬스체크
@@ -93,4 +497,52 @@ export declare class PartnerV1Api extends BaseAPI {
93
497
  * @throws {RequiredError}
94
498
  */
95
499
  healthControllerCheck(options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<HealthResponseDto, any, {}>>;
500
+ /**
501
+ * 유찰 처리(V5 yoochal 패리티). 유찰사유 코드(1~8)·상세를 받아 공고를 유찰 상태로 전환. 스코프 `awards:write` + `Idempotency-Key` 헤더 필수.
502
+ * @summary 유찰 처리
503
+ * @param {MarkBidFailedRequestDto} markBidFailedRequestDto
504
+ * @param {*} [options] Override http request option.
505
+ * @throws {RequiredError}
506
+ */
507
+ markBidFailed(markBidFailedRequestDto: MarkBidFailedRequestDto, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<BidFailedResponseDto, any, {}>>;
508
+ /**
509
+ * 낙찰 결과 등록. 스코프 `awards:write` + `Idempotency-Key` 헤더 필수.
510
+ * @summary 낙찰 결과 전송
511
+ * @param {RegisterAwardRequestDto} registerAwardRequestDto
512
+ * @param {*} [options] Override http request option.
513
+ * @throws {RequiredError}
514
+ */
515
+ registerAward(registerAwardRequestDto: RegisterAwardRequestDto, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<AwardRegisteredResponseDto, any, {}>>;
516
+ /**
517
+ * 입찰 정보 등록. 스코프 `bids:write` + `Idempotency-Key` 헤더 필수.
518
+ * @summary 입찰 정보 전송(등록)
519
+ * @param {CreateBidRequestDto} createBidRequestDto
520
+ * @param {*} [options] Override http request option.
521
+ * @throws {RequiredError}
522
+ */
523
+ registerBid(createBidRequestDto: CreateBidRequestDto, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<BidCreatedResponseDto, any, {}>>;
524
+ /**
525
+ * V5 /splitInvoiceRequest 후속. scope invoices:write + Idempotency-Key.
526
+ * @summary 계산서 분할 발급 청구
527
+ * @param {RequestSplitInvoiceRequestDto} requestSplitInvoiceRequestDto
528
+ * @param {*} [options] Override http request option.
529
+ * @throws {RequiredError}
530
+ */
531
+ requestSplitInvoice(requestSplitInvoiceRequestDto: RequestSplitInvoiceRequestDto, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<SplitInvoiceResponseDto, any, {}>>;
532
+ /**
533
+ * 협상에의한계약(H/K) 응찰자별 기술/가격 점수 일괄 입력(V5 nego-eval 패리티). complete=true 면 평가완료 게이트까지 적용해 낙찰 진입 가능. 스코프 `awards:write` + `Idempotency-Key` 헤더 필수.
534
+ * @summary 협상(H/K) 점수평가
535
+ * @param {SubmitNegotiationScoresRequestDto} submitNegotiationScoresRequestDto
536
+ * @param {*} [options] Override http request option.
537
+ * @throws {RequiredError}
538
+ */
539
+ submitNegotiationScores(submitNegotiationScoresRequestDto: SubmitNegotiationScoresRequestDto, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<NegotiationScoredResponseDto, any, {}>>;
540
+ /**
541
+ * 스코프 `files:write` 필수. base64 또는 url 중 하나를 제출한다.
542
+ * @summary 입찰 첨부파일 업로드(base64 또는 url) → fileKey
543
+ * @param {UploadFileRequestDto} uploadFileRequestDto
544
+ * @param {*} [options] Override http request option.
545
+ * @throws {RequiredError}
546
+ */
547
+ uploadFile(uploadFileRequestDto: UploadFileRequestDto, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<FileUploadedResponseDto, any, {}>>;
96
548
  }