@cmarket/partner-sdk 1.3.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/docs/PartnerV2Api.md +0 -283
- package/package.json +1 -1
|
@@ -75,79 +75,6 @@ export const PartnerV2ApiAxiosParamCreator = function (configuration) {
|
|
|
75
75
|
options: localVarRequestOptions,
|
|
76
76
|
};
|
|
77
77
|
}),
|
|
78
|
-
/**
|
|
79
|
-
* V5 /contractDocumentRec 후속. scope contracts:read.
|
|
80
|
-
* @summary 계약서류 수신 조회
|
|
81
|
-
* @param {string} bidId
|
|
82
|
-
* @param {string} buyerId 공고 명의 회원 ID(b2b_member.member_id).
|
|
83
|
-
* @param {*} [options] Override http request option.
|
|
84
|
-
* @throws {RequiredError}
|
|
85
|
-
*/
|
|
86
|
-
getBidContractDocuments: (bidId_1, buyerId_1, ...args_1) => __awaiter(this, [bidId_1, buyerId_1, ...args_1], void 0, function* (bidId, buyerId, options = {}) {
|
|
87
|
-
// verify required parameter 'bidId' is not null or undefined
|
|
88
|
-
assertParamExists('getBidContractDocuments', 'bidId', bidId);
|
|
89
|
-
// verify required parameter 'buyerId' is not null or undefined
|
|
90
|
-
assertParamExists('getBidContractDocuments', 'buyerId', buyerId);
|
|
91
|
-
const localVarPath = `/v2/bids/{bidId}/contract-documents`
|
|
92
|
-
.replace('{bidId}', encodeURIComponent(String(bidId)));
|
|
93
|
-
// use dummy base URL string because the URL constructor only accepts absolute URLs.
|
|
94
|
-
const localVarUrlObj = new URL(localVarPath, DUMMY_BASE_URL);
|
|
95
|
-
let baseOptions;
|
|
96
|
-
if (configuration) {
|
|
97
|
-
baseOptions = configuration.baseOptions;
|
|
98
|
-
}
|
|
99
|
-
const localVarRequestOptions = Object.assign(Object.assign({ method: 'GET' }, baseOptions), options);
|
|
100
|
-
const localVarHeaderParameter = {};
|
|
101
|
-
const localVarQueryParameter = {};
|
|
102
|
-
// authentication partner-oauth2 required
|
|
103
|
-
// http bearer authentication required
|
|
104
|
-
yield setBearerAuthToObject(localVarHeaderParameter, configuration);
|
|
105
|
-
if (buyerId !== undefined) {
|
|
106
|
-
localVarQueryParameter['buyerId'] = buyerId;
|
|
107
|
-
}
|
|
108
|
-
localVarHeaderParameter['Accept'] = 'application/json';
|
|
109
|
-
setSearchParams(localVarUrlObj, localVarQueryParameter);
|
|
110
|
-
let headersFromBaseOptions = baseOptions && baseOptions.headers ? baseOptions.headers : {};
|
|
111
|
-
localVarRequestOptions.headers = Object.assign(Object.assign(Object.assign({}, localVarHeaderParameter), headersFromBaseOptions), options.headers);
|
|
112
|
-
return {
|
|
113
|
-
url: toPathString(localVarUrlObj),
|
|
114
|
-
options: localVarRequestOptions,
|
|
115
|
-
};
|
|
116
|
-
}),
|
|
117
|
-
/**
|
|
118
|
-
* V5 /contractDocumentRec(bid_puchase_no_list) 후속. 공고번호 리스트를 한 번에 조회. 단건(GET :bidId/contract-documents)은 그대로 유지. scope contracts:read.
|
|
119
|
-
* @summary 계약서류 수신 배치 조회
|
|
120
|
-
* @param {BidContractDocumentsBatchRequestDto} bidContractDocumentsBatchRequestDto
|
|
121
|
-
* @param {*} [options] Override http request option.
|
|
122
|
-
* @throws {RequiredError}
|
|
123
|
-
*/
|
|
124
|
-
getBidContractDocumentsBatch: (bidContractDocumentsBatchRequestDto_1, ...args_1) => __awaiter(this, [bidContractDocumentsBatchRequestDto_1, ...args_1], void 0, function* (bidContractDocumentsBatchRequestDto, options = {}) {
|
|
125
|
-
// verify required parameter 'bidContractDocumentsBatchRequestDto' is not null or undefined
|
|
126
|
-
assertParamExists('getBidContractDocumentsBatch', 'bidContractDocumentsBatchRequestDto', bidContractDocumentsBatchRequestDto);
|
|
127
|
-
const localVarPath = `/v2/bids/contract-documents/batch`;
|
|
128
|
-
// use dummy base URL string because the URL constructor only accepts absolute URLs.
|
|
129
|
-
const localVarUrlObj = new URL(localVarPath, DUMMY_BASE_URL);
|
|
130
|
-
let baseOptions;
|
|
131
|
-
if (configuration) {
|
|
132
|
-
baseOptions = configuration.baseOptions;
|
|
133
|
-
}
|
|
134
|
-
const localVarRequestOptions = Object.assign(Object.assign({ method: 'POST' }, baseOptions), options);
|
|
135
|
-
const localVarHeaderParameter = {};
|
|
136
|
-
const localVarQueryParameter = {};
|
|
137
|
-
// authentication partner-oauth2 required
|
|
138
|
-
// http bearer authentication required
|
|
139
|
-
yield setBearerAuthToObject(localVarHeaderParameter, configuration);
|
|
140
|
-
localVarHeaderParameter['Content-Type'] = 'application/json';
|
|
141
|
-
localVarHeaderParameter['Accept'] = 'application/json';
|
|
142
|
-
setSearchParams(localVarUrlObj, localVarQueryParameter);
|
|
143
|
-
let headersFromBaseOptions = baseOptions && baseOptions.headers ? baseOptions.headers : {};
|
|
144
|
-
localVarRequestOptions.headers = Object.assign(Object.assign(Object.assign({}, localVarHeaderParameter), headersFromBaseOptions), options.headers);
|
|
145
|
-
localVarRequestOptions.data = serializeDataIfNeeded(bidContractDocumentsBatchRequestDto, localVarRequestOptions, configuration);
|
|
146
|
-
return {
|
|
147
|
-
url: toPathString(localVarUrlObj),
|
|
148
|
-
options: localVarRequestOptions,
|
|
149
|
-
};
|
|
150
|
-
}),
|
|
151
78
|
/**
|
|
152
79
|
* V5 /entendrec 후속. scope bids:read.
|
|
153
80
|
* @summary 입찰 결과 조회
|
|
@@ -187,40 +114,6 @@ export const PartnerV2ApiAxiosParamCreator = function (configuration) {
|
|
|
187
114
|
options: localVarRequestOptions,
|
|
188
115
|
};
|
|
189
116
|
}),
|
|
190
|
-
/**
|
|
191
|
-
* V5 entendRec(bid_puchase_no_list) 후속 — 여러 공고 결과를 1회 호출로(additive, 단건 유지). bidIds(공고 식별자) 또는 purchaseNos(구매번호) 중 하나 — purchaseNos 는 각 PO 의 가장 최근 공고로 해소. 입력 순서를 보존한다. scope bids:read.
|
|
192
|
-
* @summary 입찰결과 배치 조회
|
|
193
|
-
* @param {BidResultsBatchRequestDto} bidResultsBatchRequestDto
|
|
194
|
-
* @param {*} [options] Override http request option.
|
|
195
|
-
* @throws {RequiredError}
|
|
196
|
-
*/
|
|
197
|
-
getBidResultsBatch: (bidResultsBatchRequestDto_1, ...args_1) => __awaiter(this, [bidResultsBatchRequestDto_1, ...args_1], void 0, function* (bidResultsBatchRequestDto, options = {}) {
|
|
198
|
-
// verify required parameter 'bidResultsBatchRequestDto' is not null or undefined
|
|
199
|
-
assertParamExists('getBidResultsBatch', 'bidResultsBatchRequestDto', bidResultsBatchRequestDto);
|
|
200
|
-
const localVarPath = `/v2/bids/results/batch`;
|
|
201
|
-
// use dummy base URL string because the URL constructor only accepts absolute URLs.
|
|
202
|
-
const localVarUrlObj = new URL(localVarPath, DUMMY_BASE_URL);
|
|
203
|
-
let baseOptions;
|
|
204
|
-
if (configuration) {
|
|
205
|
-
baseOptions = configuration.baseOptions;
|
|
206
|
-
}
|
|
207
|
-
const localVarRequestOptions = Object.assign(Object.assign({ method: 'POST' }, baseOptions), options);
|
|
208
|
-
const localVarHeaderParameter = {};
|
|
209
|
-
const localVarQueryParameter = {};
|
|
210
|
-
// authentication partner-oauth2 required
|
|
211
|
-
// http bearer authentication required
|
|
212
|
-
yield setBearerAuthToObject(localVarHeaderParameter, configuration);
|
|
213
|
-
localVarHeaderParameter['Content-Type'] = 'application/json';
|
|
214
|
-
localVarHeaderParameter['Accept'] = 'application/json';
|
|
215
|
-
setSearchParams(localVarUrlObj, localVarQueryParameter);
|
|
216
|
-
let headersFromBaseOptions = baseOptions && baseOptions.headers ? baseOptions.headers : {};
|
|
217
|
-
localVarRequestOptions.headers = Object.assign(Object.assign(Object.assign({}, localVarHeaderParameter), headersFromBaseOptions), options.headers);
|
|
218
|
-
localVarRequestOptions.data = serializeDataIfNeeded(bidResultsBatchRequestDto, localVarRequestOptions, configuration);
|
|
219
|
-
return {
|
|
220
|
-
url: toPathString(localVarUrlObj),
|
|
221
|
-
options: localVarRequestOptions,
|
|
222
|
-
};
|
|
223
|
-
}),
|
|
224
117
|
/**
|
|
225
118
|
* V5 /entendrec 정산(사업자·계좌·공급가액/부가세·응찰 품목내역) 후속. scope bids:read. 가격/신원 가시성 매트릭스와 직교한 ERP 정산 데이터 — read-only.
|
|
226
119
|
* @summary 입찰결과 정산정보 조회
|
|
@@ -433,86 +326,6 @@ export const PartnerV2ApiAxiosParamCreator = function (configuration) {
|
|
|
433
326
|
options: localVarRequestOptions,
|
|
434
327
|
};
|
|
435
328
|
}),
|
|
436
|
-
/**
|
|
437
|
-
* 세금계산서 분할 발급 청구를 기록합니다. 발급 엔진이 아니라 \"분할 발급 청구 요청을 접수\"하는 엔드포인트입니다. **V5 대응:** `splitInvoiceRequest` — BidApi.xml `splitInvoice` 액션의 V6 후속. **호출 시점:** 검수완료 후 세금계산서를 분할 발급받고자 할 때. 공급가액과 부가세를 나누어 청구합니다. **부수효과:** - 분할 발급 청구가 기록됩니다(실제 세금계산서 발급은 별도 프로세스). - 작성일자(`issueDate`)는 미래 일자 불가(I5 — V5 `PgBidApiService:220-235` 패리티). 오늘 날짜는 허용. - `issueDate` 미지정 시 backend 기본값 적용. **금액 단위:** 원(KRW) 정수. `supplyAmount`(공급가액) + `vat`(부가세) 합산이 실제 청구 총액. **필수 스코프:** `invoices:write` **멱등성:** `Idempotency-Key` 헤더 필수.
|
|
438
|
-
* @summary 계산서 분할 발급 청구
|
|
439
|
-
* @param {string} idempotencyKey 멱등성 키(1~255자, [A-Za-z0-9_-]). 동일 키 + 동일 body 재전송 시 캐시 응답 반환(24시간). UUID v4 권장.
|
|
440
|
-
* @param {RequestSplitInvoiceRequestDto} requestSplitInvoiceRequestDto
|
|
441
|
-
* @param {*} [options] Override http request option.
|
|
442
|
-
* @throws {RequiredError}
|
|
443
|
-
*/
|
|
444
|
-
requestSplitInvoice: (idempotencyKey_1, requestSplitInvoiceRequestDto_1, ...args_1) => __awaiter(this, [idempotencyKey_1, requestSplitInvoiceRequestDto_1, ...args_1], void 0, function* (idempotencyKey, requestSplitInvoiceRequestDto, options = {}) {
|
|
445
|
-
// verify required parameter 'idempotencyKey' is not null or undefined
|
|
446
|
-
assertParamExists('requestSplitInvoice', 'idempotencyKey', idempotencyKey);
|
|
447
|
-
// verify required parameter 'requestSplitInvoiceRequestDto' is not null or undefined
|
|
448
|
-
assertParamExists('requestSplitInvoice', 'requestSplitInvoiceRequestDto', requestSplitInvoiceRequestDto);
|
|
449
|
-
const localVarPath = `/v2/invoices/split-requests`;
|
|
450
|
-
// use dummy base URL string because the URL constructor only accepts absolute URLs.
|
|
451
|
-
const localVarUrlObj = new URL(localVarPath, DUMMY_BASE_URL);
|
|
452
|
-
let baseOptions;
|
|
453
|
-
if (configuration) {
|
|
454
|
-
baseOptions = configuration.baseOptions;
|
|
455
|
-
}
|
|
456
|
-
const localVarRequestOptions = Object.assign(Object.assign({ method: 'POST' }, baseOptions), options);
|
|
457
|
-
const localVarHeaderParameter = {};
|
|
458
|
-
const localVarQueryParameter = {};
|
|
459
|
-
// authentication partner-oauth2 required
|
|
460
|
-
// http bearer authentication required
|
|
461
|
-
yield setBearerAuthToObject(localVarHeaderParameter, configuration);
|
|
462
|
-
localVarHeaderParameter['Content-Type'] = 'application/json';
|
|
463
|
-
localVarHeaderParameter['Accept'] = 'application/json';
|
|
464
|
-
if (idempotencyKey != null) {
|
|
465
|
-
localVarHeaderParameter['Idempotency-Key'] = String(idempotencyKey);
|
|
466
|
-
}
|
|
467
|
-
setSearchParams(localVarUrlObj, localVarQueryParameter);
|
|
468
|
-
let headersFromBaseOptions = baseOptions && baseOptions.headers ? baseOptions.headers : {};
|
|
469
|
-
localVarRequestOptions.headers = Object.assign(Object.assign(Object.assign({}, localVarHeaderParameter), headersFromBaseOptions), options.headers);
|
|
470
|
-
localVarRequestOptions.data = serializeDataIfNeeded(requestSplitInvoiceRequestDto, localVarRequestOptions, configuration);
|
|
471
|
-
return {
|
|
472
|
-
url: toPathString(localVarUrlObj),
|
|
473
|
-
options: localVarRequestOptions,
|
|
474
|
-
};
|
|
475
|
-
}),
|
|
476
|
-
/**
|
|
477
|
-
* 협상에의한계약(낙찰방법 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` 헤더 필수.
|
|
478
|
-
* @summary 협상(H/K) 점수평가
|
|
479
|
-
* @param {string} idempotencyKey 멱등성 키(1~255자, [A-Za-z0-9_-]). 동일 키 + 동일 body 재전송 시 캐시 응답 반환(24시간). UUID v4 권장.
|
|
480
|
-
* @param {SubmitNegotiationScoresRequestDto} submitNegotiationScoresRequestDto
|
|
481
|
-
* @param {*} [options] Override http request option.
|
|
482
|
-
* @throws {RequiredError}
|
|
483
|
-
*/
|
|
484
|
-
submitNegotiationScores: (idempotencyKey_1, submitNegotiationScoresRequestDto_1, ...args_1) => __awaiter(this, [idempotencyKey_1, submitNegotiationScoresRequestDto_1, ...args_1], void 0, function* (idempotencyKey, submitNegotiationScoresRequestDto, options = {}) {
|
|
485
|
-
// verify required parameter 'idempotencyKey' is not null or undefined
|
|
486
|
-
assertParamExists('submitNegotiationScores', 'idempotencyKey', idempotencyKey);
|
|
487
|
-
// verify required parameter 'submitNegotiationScoresRequestDto' is not null or undefined
|
|
488
|
-
assertParamExists('submitNegotiationScores', 'submitNegotiationScoresRequestDto', submitNegotiationScoresRequestDto);
|
|
489
|
-
const localVarPath = `/v2/awards/nego-eval`;
|
|
490
|
-
// use dummy base URL string because the URL constructor only accepts absolute URLs.
|
|
491
|
-
const localVarUrlObj = new URL(localVarPath, DUMMY_BASE_URL);
|
|
492
|
-
let baseOptions;
|
|
493
|
-
if (configuration) {
|
|
494
|
-
baseOptions = configuration.baseOptions;
|
|
495
|
-
}
|
|
496
|
-
const localVarRequestOptions = Object.assign(Object.assign({ method: 'POST' }, baseOptions), options);
|
|
497
|
-
const localVarHeaderParameter = {};
|
|
498
|
-
const localVarQueryParameter = {};
|
|
499
|
-
// authentication partner-oauth2 required
|
|
500
|
-
// http bearer authentication required
|
|
501
|
-
yield setBearerAuthToObject(localVarHeaderParameter, configuration);
|
|
502
|
-
localVarHeaderParameter['Content-Type'] = 'application/json';
|
|
503
|
-
localVarHeaderParameter['Accept'] = 'application/json';
|
|
504
|
-
if (idempotencyKey != null) {
|
|
505
|
-
localVarHeaderParameter['Idempotency-Key'] = String(idempotencyKey);
|
|
506
|
-
}
|
|
507
|
-
setSearchParams(localVarUrlObj, localVarQueryParameter);
|
|
508
|
-
let headersFromBaseOptions = baseOptions && baseOptions.headers ? baseOptions.headers : {};
|
|
509
|
-
localVarRequestOptions.headers = Object.assign(Object.assign(Object.assign({}, localVarHeaderParameter), headersFromBaseOptions), options.headers);
|
|
510
|
-
localVarRequestOptions.data = serializeDataIfNeeded(submitNegotiationScoresRequestDto, localVarRequestOptions, configuration);
|
|
511
|
-
return {
|
|
512
|
-
url: toPathString(localVarUrlObj),
|
|
513
|
-
options: localVarRequestOptions,
|
|
514
|
-
};
|
|
515
|
-
}),
|
|
516
329
|
/**
|
|
517
330
|
* 스코프 `files:write` + `Idempotency-Key` 헤더 필수. base64 또는 url 중 정확히 하나를 제출한다.
|
|
518
331
|
* @summary 입찰 첨부파일 업로드(base64 또는 url) → fileKey
|
|
@@ -573,39 +386,6 @@ export const PartnerV2ApiFp = function (configuration) {
|
|
|
573
386
|
return (axios, basePath) => createRequestFunction(localVarAxiosArgs, globalAxios, BASE_PATH, configuration)(axios, localVarOperationServerBasePath || basePath);
|
|
574
387
|
});
|
|
575
388
|
},
|
|
576
|
-
/**
|
|
577
|
-
* V5 /contractDocumentRec 후속. scope contracts:read.
|
|
578
|
-
* @summary 계약서류 수신 조회
|
|
579
|
-
* @param {string} bidId
|
|
580
|
-
* @param {string} buyerId 공고 명의 회원 ID(b2b_member.member_id).
|
|
581
|
-
* @param {*} [options] Override http request option.
|
|
582
|
-
* @throws {RequiredError}
|
|
583
|
-
*/
|
|
584
|
-
getBidContractDocuments(bidId, buyerId, options) {
|
|
585
|
-
return __awaiter(this, void 0, void 0, function* () {
|
|
586
|
-
var _a, _b, _c;
|
|
587
|
-
const localVarAxiosArgs = yield localVarAxiosParamCreator.getBidContractDocuments(bidId, buyerId, options);
|
|
588
|
-
const localVarOperationServerIndex = (_a = configuration === null || configuration === void 0 ? void 0 : configuration.serverIndex) !== null && _a !== void 0 ? _a : 0;
|
|
589
|
-
const localVarOperationServerBasePath = (_c = (_b = operationServerMap['PartnerV2Api.getBidContractDocuments']) === null || _b === void 0 ? void 0 : _b[localVarOperationServerIndex]) === null || _c === void 0 ? void 0 : _c.url;
|
|
590
|
-
return (axios, basePath) => createRequestFunction(localVarAxiosArgs, globalAxios, BASE_PATH, configuration)(axios, localVarOperationServerBasePath || basePath);
|
|
591
|
-
});
|
|
592
|
-
},
|
|
593
|
-
/**
|
|
594
|
-
* V5 /contractDocumentRec(bid_puchase_no_list) 후속. 공고번호 리스트를 한 번에 조회. 단건(GET :bidId/contract-documents)은 그대로 유지. scope contracts:read.
|
|
595
|
-
* @summary 계약서류 수신 배치 조회
|
|
596
|
-
* @param {BidContractDocumentsBatchRequestDto} bidContractDocumentsBatchRequestDto
|
|
597
|
-
* @param {*} [options] Override http request option.
|
|
598
|
-
* @throws {RequiredError}
|
|
599
|
-
*/
|
|
600
|
-
getBidContractDocumentsBatch(bidContractDocumentsBatchRequestDto, options) {
|
|
601
|
-
return __awaiter(this, void 0, void 0, function* () {
|
|
602
|
-
var _a, _b, _c;
|
|
603
|
-
const localVarAxiosArgs = yield localVarAxiosParamCreator.getBidContractDocumentsBatch(bidContractDocumentsBatchRequestDto, options);
|
|
604
|
-
const localVarOperationServerIndex = (_a = configuration === null || configuration === void 0 ? void 0 : configuration.serverIndex) !== null && _a !== void 0 ? _a : 0;
|
|
605
|
-
const localVarOperationServerBasePath = (_c = (_b = operationServerMap['PartnerV2Api.getBidContractDocumentsBatch']) === null || _b === void 0 ? void 0 : _b[localVarOperationServerIndex]) === null || _c === void 0 ? void 0 : _c.url;
|
|
606
|
-
return (axios, basePath) => createRequestFunction(localVarAxiosArgs, globalAxios, BASE_PATH, configuration)(axios, localVarOperationServerBasePath || basePath);
|
|
607
|
-
});
|
|
608
|
-
},
|
|
609
389
|
/**
|
|
610
390
|
* V5 /entendrec 후속. scope bids:read.
|
|
611
391
|
* @summary 입찰 결과 조회
|
|
@@ -623,22 +403,6 @@ export const PartnerV2ApiFp = function (configuration) {
|
|
|
623
403
|
return (axios, basePath) => createRequestFunction(localVarAxiosArgs, globalAxios, BASE_PATH, configuration)(axios, localVarOperationServerBasePath || basePath);
|
|
624
404
|
});
|
|
625
405
|
},
|
|
626
|
-
/**
|
|
627
|
-
* V5 entendRec(bid_puchase_no_list) 후속 — 여러 공고 결과를 1회 호출로(additive, 단건 유지). bidIds(공고 식별자) 또는 purchaseNos(구매번호) 중 하나 — purchaseNos 는 각 PO 의 가장 최근 공고로 해소. 입력 순서를 보존한다. scope bids:read.
|
|
628
|
-
* @summary 입찰결과 배치 조회
|
|
629
|
-
* @param {BidResultsBatchRequestDto} bidResultsBatchRequestDto
|
|
630
|
-
* @param {*} [options] Override http request option.
|
|
631
|
-
* @throws {RequiredError}
|
|
632
|
-
*/
|
|
633
|
-
getBidResultsBatch(bidResultsBatchRequestDto, options) {
|
|
634
|
-
return __awaiter(this, void 0, void 0, function* () {
|
|
635
|
-
var _a, _b, _c;
|
|
636
|
-
const localVarAxiosArgs = yield localVarAxiosParamCreator.getBidResultsBatch(bidResultsBatchRequestDto, options);
|
|
637
|
-
const localVarOperationServerIndex = (_a = configuration === null || configuration === void 0 ? void 0 : configuration.serverIndex) !== null && _a !== void 0 ? _a : 0;
|
|
638
|
-
const localVarOperationServerBasePath = (_c = (_b = operationServerMap['PartnerV2Api.getBidResultsBatch']) === null || _b === void 0 ? void 0 : _b[localVarOperationServerIndex]) === null || _c === void 0 ? void 0 : _c.url;
|
|
639
|
-
return (axios, basePath) => createRequestFunction(localVarAxiosArgs, globalAxios, BASE_PATH, configuration)(axios, localVarOperationServerBasePath || basePath);
|
|
640
|
-
});
|
|
641
|
-
},
|
|
642
406
|
/**
|
|
643
407
|
* V5 /entendrec 정산(사업자·계좌·공급가액/부가세·응찰 품목내역) 후속. scope bids:read. 가격/신원 가시성 매트릭스와 직교한 ERP 정산 데이터 — read-only.
|
|
644
408
|
* @summary 입찰결과 정산정보 조회
|
|
@@ -737,40 +501,6 @@ export const PartnerV2ApiFp = function (configuration) {
|
|
|
737
501
|
return (axios, basePath) => createRequestFunction(localVarAxiosArgs, globalAxios, BASE_PATH, configuration)(axios, localVarOperationServerBasePath || basePath);
|
|
738
502
|
});
|
|
739
503
|
},
|
|
740
|
-
/**
|
|
741
|
-
* 세금계산서 분할 발급 청구를 기록합니다. 발급 엔진이 아니라 \"분할 발급 청구 요청을 접수\"하는 엔드포인트입니다. **V5 대응:** `splitInvoiceRequest` — BidApi.xml `splitInvoice` 액션의 V6 후속. **호출 시점:** 검수완료 후 세금계산서를 분할 발급받고자 할 때. 공급가액과 부가세를 나누어 청구합니다. **부수효과:** - 분할 발급 청구가 기록됩니다(실제 세금계산서 발급은 별도 프로세스). - 작성일자(`issueDate`)는 미래 일자 불가(I5 — V5 `PgBidApiService:220-235` 패리티). 오늘 날짜는 허용. - `issueDate` 미지정 시 backend 기본값 적용. **금액 단위:** 원(KRW) 정수. `supplyAmount`(공급가액) + `vat`(부가세) 합산이 실제 청구 총액. **필수 스코프:** `invoices:write` **멱등성:** `Idempotency-Key` 헤더 필수.
|
|
742
|
-
* @summary 계산서 분할 발급 청구
|
|
743
|
-
* @param {string} idempotencyKey 멱등성 키(1~255자, [A-Za-z0-9_-]). 동일 키 + 동일 body 재전송 시 캐시 응답 반환(24시간). UUID v4 권장.
|
|
744
|
-
* @param {RequestSplitInvoiceRequestDto} requestSplitInvoiceRequestDto
|
|
745
|
-
* @param {*} [options] Override http request option.
|
|
746
|
-
* @throws {RequiredError}
|
|
747
|
-
*/
|
|
748
|
-
requestSplitInvoice(idempotencyKey, requestSplitInvoiceRequestDto, options) {
|
|
749
|
-
return __awaiter(this, void 0, void 0, function* () {
|
|
750
|
-
var _a, _b, _c;
|
|
751
|
-
const localVarAxiosArgs = yield localVarAxiosParamCreator.requestSplitInvoice(idempotencyKey, requestSplitInvoiceRequestDto, options);
|
|
752
|
-
const localVarOperationServerIndex = (_a = configuration === null || configuration === void 0 ? void 0 : configuration.serverIndex) !== null && _a !== void 0 ? _a : 0;
|
|
753
|
-
const localVarOperationServerBasePath = (_c = (_b = operationServerMap['PartnerV2Api.requestSplitInvoice']) === null || _b === void 0 ? void 0 : _b[localVarOperationServerIndex]) === null || _c === void 0 ? void 0 : _c.url;
|
|
754
|
-
return (axios, basePath) => createRequestFunction(localVarAxiosArgs, globalAxios, BASE_PATH, configuration)(axios, localVarOperationServerBasePath || basePath);
|
|
755
|
-
});
|
|
756
|
-
},
|
|
757
|
-
/**
|
|
758
|
-
* 협상에의한계약(낙찰방법 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` 헤더 필수.
|
|
759
|
-
* @summary 협상(H/K) 점수평가
|
|
760
|
-
* @param {string} idempotencyKey 멱등성 키(1~255자, [A-Za-z0-9_-]). 동일 키 + 동일 body 재전송 시 캐시 응답 반환(24시간). UUID v4 권장.
|
|
761
|
-
* @param {SubmitNegotiationScoresRequestDto} submitNegotiationScoresRequestDto
|
|
762
|
-
* @param {*} [options] Override http request option.
|
|
763
|
-
* @throws {RequiredError}
|
|
764
|
-
*/
|
|
765
|
-
submitNegotiationScores(idempotencyKey, submitNegotiationScoresRequestDto, options) {
|
|
766
|
-
return __awaiter(this, void 0, void 0, function* () {
|
|
767
|
-
var _a, _b, _c;
|
|
768
|
-
const localVarAxiosArgs = yield localVarAxiosParamCreator.submitNegotiationScores(idempotencyKey, submitNegotiationScoresRequestDto, options);
|
|
769
|
-
const localVarOperationServerIndex = (_a = configuration === null || configuration === void 0 ? void 0 : configuration.serverIndex) !== null && _a !== void 0 ? _a : 0;
|
|
770
|
-
const localVarOperationServerBasePath = (_c = (_b = operationServerMap['PartnerV2Api.submitNegotiationScores']) === null || _b === void 0 ? void 0 : _b[localVarOperationServerIndex]) === null || _c === void 0 ? void 0 : _c.url;
|
|
771
|
-
return (axios, basePath) => createRequestFunction(localVarAxiosArgs, globalAxios, BASE_PATH, configuration)(axios, localVarOperationServerBasePath || basePath);
|
|
772
|
-
});
|
|
773
|
-
},
|
|
774
504
|
/**
|
|
775
505
|
* 스코프 `files:write` + `Idempotency-Key` 헤더 필수. base64 또는 url 중 정확히 하나를 제출한다.
|
|
776
506
|
* @summary 입찰 첨부파일 업로드(base64 또는 url) → fileKey
|
|
@@ -807,27 +537,6 @@ export const PartnerV2ApiFactory = function (configuration, basePath, axios) {
|
|
|
807
537
|
completeAcceptance(bidId, idempotencyKey, completeAcceptanceRequestDto, options) {
|
|
808
538
|
return localVarFp.completeAcceptance(bidId, idempotencyKey, completeAcceptanceRequestDto, options).then((request) => request(axios, basePath));
|
|
809
539
|
},
|
|
810
|
-
/**
|
|
811
|
-
* V5 /contractDocumentRec 후속. scope contracts:read.
|
|
812
|
-
* @summary 계약서류 수신 조회
|
|
813
|
-
* @param {string} bidId
|
|
814
|
-
* @param {string} buyerId 공고 명의 회원 ID(b2b_member.member_id).
|
|
815
|
-
* @param {*} [options] Override http request option.
|
|
816
|
-
* @throws {RequiredError}
|
|
817
|
-
*/
|
|
818
|
-
getBidContractDocuments(bidId, buyerId, options) {
|
|
819
|
-
return localVarFp.getBidContractDocuments(bidId, buyerId, options).then((request) => request(axios, basePath));
|
|
820
|
-
},
|
|
821
|
-
/**
|
|
822
|
-
* V5 /contractDocumentRec(bid_puchase_no_list) 후속. 공고번호 리스트를 한 번에 조회. 단건(GET :bidId/contract-documents)은 그대로 유지. scope contracts:read.
|
|
823
|
-
* @summary 계약서류 수신 배치 조회
|
|
824
|
-
* @param {BidContractDocumentsBatchRequestDto} bidContractDocumentsBatchRequestDto
|
|
825
|
-
* @param {*} [options] Override http request option.
|
|
826
|
-
* @throws {RequiredError}
|
|
827
|
-
*/
|
|
828
|
-
getBidContractDocumentsBatch(bidContractDocumentsBatchRequestDto, options) {
|
|
829
|
-
return localVarFp.getBidContractDocumentsBatch(bidContractDocumentsBatchRequestDto, options).then((request) => request(axios, basePath));
|
|
830
|
-
},
|
|
831
540
|
/**
|
|
832
541
|
* V5 /entendrec 후속. scope bids:read.
|
|
833
542
|
* @summary 입찰 결과 조회
|
|
@@ -839,16 +548,6 @@ export const PartnerV2ApiFactory = function (configuration, basePath, axios) {
|
|
|
839
548
|
getBidResults(bidId, buyerId, options) {
|
|
840
549
|
return localVarFp.getBidResults(bidId, buyerId, options).then((request) => request(axios, basePath));
|
|
841
550
|
},
|
|
842
|
-
/**
|
|
843
|
-
* V5 entendRec(bid_puchase_no_list) 후속 — 여러 공고 결과를 1회 호출로(additive, 단건 유지). bidIds(공고 식별자) 또는 purchaseNos(구매번호) 중 하나 — purchaseNos 는 각 PO 의 가장 최근 공고로 해소. 입력 순서를 보존한다. scope bids:read.
|
|
844
|
-
* @summary 입찰결과 배치 조회
|
|
845
|
-
* @param {BidResultsBatchRequestDto} bidResultsBatchRequestDto
|
|
846
|
-
* @param {*} [options] Override http request option.
|
|
847
|
-
* @throws {RequiredError}
|
|
848
|
-
*/
|
|
849
|
-
getBidResultsBatch(bidResultsBatchRequestDto, options) {
|
|
850
|
-
return localVarFp.getBidResultsBatch(bidResultsBatchRequestDto, options).then((request) => request(axios, basePath));
|
|
851
|
-
},
|
|
852
551
|
/**
|
|
853
552
|
* V5 /entendrec 정산(사업자·계좌·공급가액/부가세·응찰 품목내역) 후속. scope bids:read. 가격/신원 가시성 매트릭스와 직교한 ERP 정산 데이터 — read-only.
|
|
854
553
|
* @summary 입찰결과 정산정보 조회
|
|
@@ -911,28 +610,6 @@ export const PartnerV2ApiFactory = function (configuration, basePath, axios) {
|
|
|
911
610
|
registerBid(createBidRequestDto, options) {
|
|
912
611
|
return localVarFp.registerBid(createBidRequestDto, options).then((request) => request(axios, basePath));
|
|
913
612
|
},
|
|
914
|
-
/**
|
|
915
|
-
* 세금계산서 분할 발급 청구를 기록합니다. 발급 엔진이 아니라 \"분할 발급 청구 요청을 접수\"하는 엔드포인트입니다. **V5 대응:** `splitInvoiceRequest` — BidApi.xml `splitInvoice` 액션의 V6 후속. **호출 시점:** 검수완료 후 세금계산서를 분할 발급받고자 할 때. 공급가액과 부가세를 나누어 청구합니다. **부수효과:** - 분할 발급 청구가 기록됩니다(실제 세금계산서 발급은 별도 프로세스). - 작성일자(`issueDate`)는 미래 일자 불가(I5 — V5 `PgBidApiService:220-235` 패리티). 오늘 날짜는 허용. - `issueDate` 미지정 시 backend 기본값 적용. **금액 단위:** 원(KRW) 정수. `supplyAmount`(공급가액) + `vat`(부가세) 합산이 실제 청구 총액. **필수 스코프:** `invoices:write` **멱등성:** `Idempotency-Key` 헤더 필수.
|
|
916
|
-
* @summary 계산서 분할 발급 청구
|
|
917
|
-
* @param {string} idempotencyKey 멱등성 키(1~255자, [A-Za-z0-9_-]). 동일 키 + 동일 body 재전송 시 캐시 응답 반환(24시간). UUID v4 권장.
|
|
918
|
-
* @param {RequestSplitInvoiceRequestDto} requestSplitInvoiceRequestDto
|
|
919
|
-
* @param {*} [options] Override http request option.
|
|
920
|
-
* @throws {RequiredError}
|
|
921
|
-
*/
|
|
922
|
-
requestSplitInvoice(idempotencyKey, requestSplitInvoiceRequestDto, options) {
|
|
923
|
-
return localVarFp.requestSplitInvoice(idempotencyKey, requestSplitInvoiceRequestDto, options).then((request) => request(axios, basePath));
|
|
924
|
-
},
|
|
925
|
-
/**
|
|
926
|
-
* 협상에의한계약(낙찰방법 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` 헤더 필수.
|
|
927
|
-
* @summary 협상(H/K) 점수평가
|
|
928
|
-
* @param {string} idempotencyKey 멱등성 키(1~255자, [A-Za-z0-9_-]). 동일 키 + 동일 body 재전송 시 캐시 응답 반환(24시간). UUID v4 권장.
|
|
929
|
-
* @param {SubmitNegotiationScoresRequestDto} submitNegotiationScoresRequestDto
|
|
930
|
-
* @param {*} [options] Override http request option.
|
|
931
|
-
* @throws {RequiredError}
|
|
932
|
-
*/
|
|
933
|
-
submitNegotiationScores(idempotencyKey, submitNegotiationScoresRequestDto, options) {
|
|
934
|
-
return localVarFp.submitNegotiationScores(idempotencyKey, submitNegotiationScoresRequestDto, options).then((request) => request(axios, basePath));
|
|
935
|
-
},
|
|
936
613
|
/**
|
|
937
614
|
* 스코프 `files:write` + `Idempotency-Key` 헤더 필수. base64 또는 url 중 정확히 하나를 제출한다.
|
|
938
615
|
* @summary 입찰 첨부파일 업로드(base64 또는 url) → fileKey
|
|
@@ -961,27 +638,6 @@ export class PartnerV2Api extends BaseAPI {
|
|
|
961
638
|
completeAcceptance(bidId, idempotencyKey, completeAcceptanceRequestDto, options) {
|
|
962
639
|
return PartnerV2ApiFp(this.configuration).completeAcceptance(bidId, idempotencyKey, completeAcceptanceRequestDto, options).then((request) => request(this.axios, this.basePath));
|
|
963
640
|
}
|
|
964
|
-
/**
|
|
965
|
-
* V5 /contractDocumentRec 후속. scope contracts:read.
|
|
966
|
-
* @summary 계약서류 수신 조회
|
|
967
|
-
* @param {string} bidId
|
|
968
|
-
* @param {string} buyerId 공고 명의 회원 ID(b2b_member.member_id).
|
|
969
|
-
* @param {*} [options] Override http request option.
|
|
970
|
-
* @throws {RequiredError}
|
|
971
|
-
*/
|
|
972
|
-
getBidContractDocuments(bidId, buyerId, options) {
|
|
973
|
-
return PartnerV2ApiFp(this.configuration).getBidContractDocuments(bidId, buyerId, options).then((request) => request(this.axios, this.basePath));
|
|
974
|
-
}
|
|
975
|
-
/**
|
|
976
|
-
* V5 /contractDocumentRec(bid_puchase_no_list) 후속. 공고번호 리스트를 한 번에 조회. 단건(GET :bidId/contract-documents)은 그대로 유지. scope contracts:read.
|
|
977
|
-
* @summary 계약서류 수신 배치 조회
|
|
978
|
-
* @param {BidContractDocumentsBatchRequestDto} bidContractDocumentsBatchRequestDto
|
|
979
|
-
* @param {*} [options] Override http request option.
|
|
980
|
-
* @throws {RequiredError}
|
|
981
|
-
*/
|
|
982
|
-
getBidContractDocumentsBatch(bidContractDocumentsBatchRequestDto, options) {
|
|
983
|
-
return PartnerV2ApiFp(this.configuration).getBidContractDocumentsBatch(bidContractDocumentsBatchRequestDto, options).then((request) => request(this.axios, this.basePath));
|
|
984
|
-
}
|
|
985
641
|
/**
|
|
986
642
|
* V5 /entendrec 후속. scope bids:read.
|
|
987
643
|
* @summary 입찰 결과 조회
|
|
@@ -993,16 +649,6 @@ export class PartnerV2Api extends BaseAPI {
|
|
|
993
649
|
getBidResults(bidId, buyerId, options) {
|
|
994
650
|
return PartnerV2ApiFp(this.configuration).getBidResults(bidId, buyerId, options).then((request) => request(this.axios, this.basePath));
|
|
995
651
|
}
|
|
996
|
-
/**
|
|
997
|
-
* V5 entendRec(bid_puchase_no_list) 후속 — 여러 공고 결과를 1회 호출로(additive, 단건 유지). bidIds(공고 식별자) 또는 purchaseNos(구매번호) 중 하나 — purchaseNos 는 각 PO 의 가장 최근 공고로 해소. 입력 순서를 보존한다. scope bids:read.
|
|
998
|
-
* @summary 입찰결과 배치 조회
|
|
999
|
-
* @param {BidResultsBatchRequestDto} bidResultsBatchRequestDto
|
|
1000
|
-
* @param {*} [options] Override http request option.
|
|
1001
|
-
* @throws {RequiredError}
|
|
1002
|
-
*/
|
|
1003
|
-
getBidResultsBatch(bidResultsBatchRequestDto, options) {
|
|
1004
|
-
return PartnerV2ApiFp(this.configuration).getBidResultsBatch(bidResultsBatchRequestDto, options).then((request) => request(this.axios, this.basePath));
|
|
1005
|
-
}
|
|
1006
652
|
/**
|
|
1007
653
|
* V5 /entendrec 정산(사업자·계좌·공급가액/부가세·응찰 품목내역) 후속. scope bids:read. 가격/신원 가시성 매트릭스와 직교한 ERP 정산 데이터 — read-only.
|
|
1008
654
|
* @summary 입찰결과 정산정보 조회
|
|
@@ -1065,28 +711,6 @@ export class PartnerV2Api extends BaseAPI {
|
|
|
1065
711
|
registerBid(createBidRequestDto, options) {
|
|
1066
712
|
return PartnerV2ApiFp(this.configuration).registerBid(createBidRequestDto, options).then((request) => request(this.axios, this.basePath));
|
|
1067
713
|
}
|
|
1068
|
-
/**
|
|
1069
|
-
* 세금계산서 분할 발급 청구를 기록합니다. 발급 엔진이 아니라 \"분할 발급 청구 요청을 접수\"하는 엔드포인트입니다. **V5 대응:** `splitInvoiceRequest` — BidApi.xml `splitInvoice` 액션의 V6 후속. **호출 시점:** 검수완료 후 세금계산서를 분할 발급받고자 할 때. 공급가액과 부가세를 나누어 청구합니다. **부수효과:** - 분할 발급 청구가 기록됩니다(실제 세금계산서 발급은 별도 프로세스). - 작성일자(`issueDate`)는 미래 일자 불가(I5 — V5 `PgBidApiService:220-235` 패리티). 오늘 날짜는 허용. - `issueDate` 미지정 시 backend 기본값 적용. **금액 단위:** 원(KRW) 정수. `supplyAmount`(공급가액) + `vat`(부가세) 합산이 실제 청구 총액. **필수 스코프:** `invoices:write` **멱등성:** `Idempotency-Key` 헤더 필수.
|
|
1070
|
-
* @summary 계산서 분할 발급 청구
|
|
1071
|
-
* @param {string} idempotencyKey 멱등성 키(1~255자, [A-Za-z0-9_-]). 동일 키 + 동일 body 재전송 시 캐시 응답 반환(24시간). UUID v4 권장.
|
|
1072
|
-
* @param {RequestSplitInvoiceRequestDto} requestSplitInvoiceRequestDto
|
|
1073
|
-
* @param {*} [options] Override http request option.
|
|
1074
|
-
* @throws {RequiredError}
|
|
1075
|
-
*/
|
|
1076
|
-
requestSplitInvoice(idempotencyKey, requestSplitInvoiceRequestDto, options) {
|
|
1077
|
-
return PartnerV2ApiFp(this.configuration).requestSplitInvoice(idempotencyKey, requestSplitInvoiceRequestDto, options).then((request) => request(this.axios, this.basePath));
|
|
1078
|
-
}
|
|
1079
|
-
/**
|
|
1080
|
-
* 협상에의한계약(낙찰방법 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` 헤더 필수.
|
|
1081
|
-
* @summary 협상(H/K) 점수평가
|
|
1082
|
-
* @param {string} idempotencyKey 멱등성 키(1~255자, [A-Za-z0-9_-]). 동일 키 + 동일 body 재전송 시 캐시 응답 반환(24시간). UUID v4 권장.
|
|
1083
|
-
* @param {SubmitNegotiationScoresRequestDto} submitNegotiationScoresRequestDto
|
|
1084
|
-
* @param {*} [options] Override http request option.
|
|
1085
|
-
* @throws {RequiredError}
|
|
1086
|
-
*/
|
|
1087
|
-
submitNegotiationScores(idempotencyKey, submitNegotiationScoresRequestDto, options) {
|
|
1088
|
-
return PartnerV2ApiFp(this.configuration).submitNegotiationScores(idempotencyKey, submitNegotiationScoresRequestDto, options).then((request) => request(this.axios, this.basePath));
|
|
1089
|
-
}
|
|
1090
714
|
/**
|
|
1091
715
|
* 스코프 `files:write` + `Idempotency-Key` 헤더 필수. base64 또는 url 중 정확히 하나를 제출한다.
|
|
1092
716
|
* @summary 입찰 첨부파일 업로드(base64 또는 url) → fileKey
|