@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/README.md +205 -15
- package/api/partner-v1-api.ts +1025 -3
- package/api.ts +0 -1
- package/dist/api/partner-v1-api.d.ts +452 -0
- package/dist/api/partner-v1-api.js +974 -34
- package/dist/api.d.ts +0 -1
- package/dist/api.js +0 -1
- package/dist/esm/api/partner-v1-api.d.ts +452 -0
- package/dist/esm/api/partner-v1-api.js +974 -34
- package/dist/esm/api.d.ts +0 -1
- package/dist/esm/api.js +0 -1
- package/dist/esm/models/create-bid-request-dto.d.ts +1 -1
- package/dist/models/create-bid-request-dto.d.ts +1 -1
- package/docs/CreateBidRequestDto.md +1 -1
- package/docs/PartnerV1Api.md +697 -0
- package/models/create-bid-request-dto.ts +1 -1
- package/package.json +1 -1
- package/api/partner-v2-api.ts +0 -1076
- package/dist/api/partner-v2-api.d.ts +0 -486
- package/dist/api/partner-v2-api.js +0 -1003
- package/dist/esm/api/partner-v2-api.d.ts +0 -486
- package/dist/esm/api/partner-v2-api.js +0 -996
- package/docs/PartnerV2Api.md +0 -704
|
@@ -23,7 +23,7 @@ var __awaiter = (this && this.__awaiter) || function (thisArg, _arguments, P, ge
|
|
|
23
23
|
import globalAxios from 'axios';
|
|
24
24
|
// Some imports not used depending on template conditions
|
|
25
25
|
// @ts-ignore
|
|
26
|
-
import { DUMMY_BASE_URL, assertParamExists, setBearerAuthToObject, setSearchParams, toPathString, createRequestFunction } from '../common';
|
|
26
|
+
import { DUMMY_BASE_URL, assertParamExists, setBearerAuthToObject, setSearchParams, serializeDataIfNeeded, toPathString, createRequestFunction } from '../common';
|
|
27
27
|
// @ts-ignore
|
|
28
28
|
import { BASE_PATH, BaseAPI, operationServerMap } from '../base';
|
|
29
29
|
/**
|
|
@@ -64,53 +64,629 @@ export const PartnerV1ApiAxiosParamCreator = function (configuration) {
|
|
|
64
64
|
options: localVarRequestOptions,
|
|
65
65
|
};
|
|
66
66
|
}),
|
|
67
|
+
/**
|
|
68
|
+
* V5 /acceptanceCompleteSend 후속. scope contracts:write + Idempotency-Key.
|
|
69
|
+
* @summary 검수완료 전송
|
|
70
|
+
* @param {string} bidId
|
|
71
|
+
* @param {CompleteAcceptanceRequestDto} completeAcceptanceRequestDto
|
|
72
|
+
* @param {*} [options] Override http request option.
|
|
73
|
+
* @throws {RequiredError}
|
|
74
|
+
*/
|
|
75
|
+
completeAcceptance: (bidId_1, completeAcceptanceRequestDto_1, ...args_1) => __awaiter(this, [bidId_1, completeAcceptanceRequestDto_1, ...args_1], void 0, function* (bidId, completeAcceptanceRequestDto, options = {}) {
|
|
76
|
+
// verify required parameter 'bidId' is not null or undefined
|
|
77
|
+
assertParamExists('completeAcceptance', 'bidId', bidId);
|
|
78
|
+
// verify required parameter 'completeAcceptanceRequestDto' is not null or undefined
|
|
79
|
+
assertParamExists('completeAcceptance', 'completeAcceptanceRequestDto', completeAcceptanceRequestDto);
|
|
80
|
+
const localVarPath = `/v1/bids/{bidId}/acceptance`
|
|
81
|
+
.replace('{bidId}', encodeURIComponent(String(bidId)));
|
|
82
|
+
// use dummy base URL string because the URL constructor only accepts absolute URLs.
|
|
83
|
+
const localVarUrlObj = new URL(localVarPath, DUMMY_BASE_URL);
|
|
84
|
+
let baseOptions;
|
|
85
|
+
if (configuration) {
|
|
86
|
+
baseOptions = configuration.baseOptions;
|
|
87
|
+
}
|
|
88
|
+
const localVarRequestOptions = Object.assign(Object.assign({ method: 'POST' }, baseOptions), options);
|
|
89
|
+
const localVarHeaderParameter = {};
|
|
90
|
+
const localVarQueryParameter = {};
|
|
91
|
+
// authentication partner-oauth2 required
|
|
92
|
+
// http bearer authentication required
|
|
93
|
+
yield setBearerAuthToObject(localVarHeaderParameter, configuration);
|
|
94
|
+
localVarHeaderParameter['Content-Type'] = 'application/json';
|
|
95
|
+
localVarHeaderParameter['Accept'] = 'application/json';
|
|
96
|
+
setSearchParams(localVarUrlObj, localVarQueryParameter);
|
|
97
|
+
let headersFromBaseOptions = baseOptions && baseOptions.headers ? baseOptions.headers : {};
|
|
98
|
+
localVarRequestOptions.headers = Object.assign(Object.assign(Object.assign({}, localVarHeaderParameter), headersFromBaseOptions), options.headers);
|
|
99
|
+
localVarRequestOptions.data = serializeDataIfNeeded(completeAcceptanceRequestDto, localVarRequestOptions, configuration);
|
|
100
|
+
return {
|
|
101
|
+
url: toPathString(localVarUrlObj),
|
|
102
|
+
options: localVarRequestOptions,
|
|
103
|
+
};
|
|
104
|
+
}),
|
|
105
|
+
/**
|
|
106
|
+
* V5 /contractDocumentRec 후속. scope contracts:read.
|
|
107
|
+
* @summary 계약서류 수신 조회
|
|
108
|
+
* @param {string} bidId
|
|
109
|
+
* @param {string} buyerId
|
|
110
|
+
* @param {*} [options] Override http request option.
|
|
111
|
+
* @throws {RequiredError}
|
|
112
|
+
*/
|
|
113
|
+
getBidContractDocuments: (bidId_1, buyerId_1, ...args_1) => __awaiter(this, [bidId_1, buyerId_1, ...args_1], void 0, function* (bidId, buyerId, options = {}) {
|
|
114
|
+
// verify required parameter 'bidId' is not null or undefined
|
|
115
|
+
assertParamExists('getBidContractDocuments', 'bidId', bidId);
|
|
116
|
+
// verify required parameter 'buyerId' is not null or undefined
|
|
117
|
+
assertParamExists('getBidContractDocuments', 'buyerId', buyerId);
|
|
118
|
+
const localVarPath = `/v1/bids/{bidId}/contract-documents`
|
|
119
|
+
.replace('{bidId}', encodeURIComponent(String(bidId)));
|
|
120
|
+
// use dummy base URL string because the URL constructor only accepts absolute URLs.
|
|
121
|
+
const localVarUrlObj = new URL(localVarPath, DUMMY_BASE_URL);
|
|
122
|
+
let baseOptions;
|
|
123
|
+
if (configuration) {
|
|
124
|
+
baseOptions = configuration.baseOptions;
|
|
125
|
+
}
|
|
126
|
+
const localVarRequestOptions = Object.assign(Object.assign({ method: 'GET' }, baseOptions), options);
|
|
127
|
+
const localVarHeaderParameter = {};
|
|
128
|
+
const localVarQueryParameter = {};
|
|
129
|
+
// authentication partner-oauth2 required
|
|
130
|
+
// http bearer authentication required
|
|
131
|
+
yield setBearerAuthToObject(localVarHeaderParameter, configuration);
|
|
132
|
+
if (buyerId !== undefined) {
|
|
133
|
+
localVarQueryParameter['buyerId'] = buyerId;
|
|
134
|
+
}
|
|
135
|
+
localVarHeaderParameter['Accept'] = 'application/json';
|
|
136
|
+
setSearchParams(localVarUrlObj, localVarQueryParameter);
|
|
137
|
+
let headersFromBaseOptions = baseOptions && baseOptions.headers ? baseOptions.headers : {};
|
|
138
|
+
localVarRequestOptions.headers = Object.assign(Object.assign(Object.assign({}, localVarHeaderParameter), headersFromBaseOptions), options.headers);
|
|
139
|
+
return {
|
|
140
|
+
url: toPathString(localVarUrlObj),
|
|
141
|
+
options: localVarRequestOptions,
|
|
142
|
+
};
|
|
143
|
+
}),
|
|
144
|
+
/**
|
|
145
|
+
* V5 /contractDocumentRec(bid_puchase_no_list) 후속. 공고번호 리스트를 한 번에 조회. 단건(GET :bidId/contract-documents)은 그대로 유지. scope contracts:read.
|
|
146
|
+
* @summary 계약서류 수신 배치 조회
|
|
147
|
+
* @param {BidContractDocumentsBatchRequestDto} bidContractDocumentsBatchRequestDto
|
|
148
|
+
* @param {*} [options] Override http request option.
|
|
149
|
+
* @throws {RequiredError}
|
|
150
|
+
*/
|
|
151
|
+
getBidContractDocumentsBatch: (bidContractDocumentsBatchRequestDto_1, ...args_1) => __awaiter(this, [bidContractDocumentsBatchRequestDto_1, ...args_1], void 0, function* (bidContractDocumentsBatchRequestDto, options = {}) {
|
|
152
|
+
// verify required parameter 'bidContractDocumentsBatchRequestDto' is not null or undefined
|
|
153
|
+
assertParamExists('getBidContractDocumentsBatch', 'bidContractDocumentsBatchRequestDto', bidContractDocumentsBatchRequestDto);
|
|
154
|
+
const localVarPath = `/v1/bids/contract-documents/batch`;
|
|
155
|
+
// use dummy base URL string because the URL constructor only accepts absolute URLs.
|
|
156
|
+
const localVarUrlObj = new URL(localVarPath, DUMMY_BASE_URL);
|
|
157
|
+
let baseOptions;
|
|
158
|
+
if (configuration) {
|
|
159
|
+
baseOptions = configuration.baseOptions;
|
|
160
|
+
}
|
|
161
|
+
const localVarRequestOptions = Object.assign(Object.assign({ method: 'POST' }, baseOptions), options);
|
|
162
|
+
const localVarHeaderParameter = {};
|
|
163
|
+
const localVarQueryParameter = {};
|
|
164
|
+
// authentication partner-oauth2 required
|
|
165
|
+
// http bearer authentication required
|
|
166
|
+
yield setBearerAuthToObject(localVarHeaderParameter, configuration);
|
|
167
|
+
localVarHeaderParameter['Content-Type'] = 'application/json';
|
|
168
|
+
localVarHeaderParameter['Accept'] = 'application/json';
|
|
169
|
+
setSearchParams(localVarUrlObj, localVarQueryParameter);
|
|
170
|
+
let headersFromBaseOptions = baseOptions && baseOptions.headers ? baseOptions.headers : {};
|
|
171
|
+
localVarRequestOptions.headers = Object.assign(Object.assign(Object.assign({}, localVarHeaderParameter), headersFromBaseOptions), options.headers);
|
|
172
|
+
localVarRequestOptions.data = serializeDataIfNeeded(bidContractDocumentsBatchRequestDto, localVarRequestOptions, configuration);
|
|
173
|
+
return {
|
|
174
|
+
url: toPathString(localVarUrlObj),
|
|
175
|
+
options: localVarRequestOptions,
|
|
176
|
+
};
|
|
177
|
+
}),
|
|
178
|
+
/**
|
|
179
|
+
* V5 /entendrec 후속. scope bids:read.
|
|
180
|
+
* @summary 입찰 결과 조회
|
|
181
|
+
* @param {string} bidId
|
|
182
|
+
* @param {string} buyerId
|
|
183
|
+
* @param {*} [options] Override http request option.
|
|
184
|
+
* @throws {RequiredError}
|
|
185
|
+
*/
|
|
186
|
+
getBidResults: (bidId_1, buyerId_1, ...args_1) => __awaiter(this, [bidId_1, buyerId_1, ...args_1], void 0, function* (bidId, buyerId, options = {}) {
|
|
187
|
+
// verify required parameter 'bidId' is not null or undefined
|
|
188
|
+
assertParamExists('getBidResults', 'bidId', bidId);
|
|
189
|
+
// verify required parameter 'buyerId' is not null or undefined
|
|
190
|
+
assertParamExists('getBidResults', 'buyerId', buyerId);
|
|
191
|
+
const localVarPath = `/v1/bids/{bidId}/results`
|
|
192
|
+
.replace('{bidId}', encodeURIComponent(String(bidId)));
|
|
193
|
+
// use dummy base URL string because the URL constructor only accepts absolute URLs.
|
|
194
|
+
const localVarUrlObj = new URL(localVarPath, DUMMY_BASE_URL);
|
|
195
|
+
let baseOptions;
|
|
196
|
+
if (configuration) {
|
|
197
|
+
baseOptions = configuration.baseOptions;
|
|
198
|
+
}
|
|
199
|
+
const localVarRequestOptions = Object.assign(Object.assign({ method: 'GET' }, baseOptions), options);
|
|
200
|
+
const localVarHeaderParameter = {};
|
|
201
|
+
const localVarQueryParameter = {};
|
|
202
|
+
// authentication partner-oauth2 required
|
|
203
|
+
// http bearer authentication required
|
|
204
|
+
yield setBearerAuthToObject(localVarHeaderParameter, configuration);
|
|
205
|
+
if (buyerId !== undefined) {
|
|
206
|
+
localVarQueryParameter['buyerId'] = buyerId;
|
|
207
|
+
}
|
|
208
|
+
localVarHeaderParameter['Accept'] = 'application/json';
|
|
209
|
+
setSearchParams(localVarUrlObj, localVarQueryParameter);
|
|
210
|
+
let headersFromBaseOptions = baseOptions && baseOptions.headers ? baseOptions.headers : {};
|
|
211
|
+
localVarRequestOptions.headers = Object.assign(Object.assign(Object.assign({}, localVarHeaderParameter), headersFromBaseOptions), options.headers);
|
|
212
|
+
return {
|
|
213
|
+
url: toPathString(localVarUrlObj),
|
|
214
|
+
options: localVarRequestOptions,
|
|
215
|
+
};
|
|
216
|
+
}),
|
|
217
|
+
/**
|
|
218
|
+
* V5 entendRec(bid_puchase_no_list) 후속 — 여러 공고 결과를 1회 호출로(additive, 단건 유지). 입력 순서를 보존한다. scope bids:read.
|
|
219
|
+
* @summary 입찰결과 배치 조회
|
|
220
|
+
* @param {BidResultsBatchRequestDto} bidResultsBatchRequestDto
|
|
221
|
+
* @param {*} [options] Override http request option.
|
|
222
|
+
* @throws {RequiredError}
|
|
223
|
+
*/
|
|
224
|
+
getBidResultsBatch: (bidResultsBatchRequestDto_1, ...args_1) => __awaiter(this, [bidResultsBatchRequestDto_1, ...args_1], void 0, function* (bidResultsBatchRequestDto, options = {}) {
|
|
225
|
+
// verify required parameter 'bidResultsBatchRequestDto' is not null or undefined
|
|
226
|
+
assertParamExists('getBidResultsBatch', 'bidResultsBatchRequestDto', bidResultsBatchRequestDto);
|
|
227
|
+
const localVarPath = `/v1/bids/results/batch`;
|
|
228
|
+
// use dummy base URL string because the URL constructor only accepts absolute URLs.
|
|
229
|
+
const localVarUrlObj = new URL(localVarPath, DUMMY_BASE_URL);
|
|
230
|
+
let baseOptions;
|
|
231
|
+
if (configuration) {
|
|
232
|
+
baseOptions = configuration.baseOptions;
|
|
233
|
+
}
|
|
234
|
+
const localVarRequestOptions = Object.assign(Object.assign({ method: 'POST' }, baseOptions), options);
|
|
235
|
+
const localVarHeaderParameter = {};
|
|
236
|
+
const localVarQueryParameter = {};
|
|
237
|
+
// authentication partner-oauth2 required
|
|
238
|
+
// http bearer authentication required
|
|
239
|
+
yield setBearerAuthToObject(localVarHeaderParameter, configuration);
|
|
240
|
+
localVarHeaderParameter['Content-Type'] = 'application/json';
|
|
241
|
+
localVarHeaderParameter['Accept'] = 'application/json';
|
|
242
|
+
setSearchParams(localVarUrlObj, localVarQueryParameter);
|
|
243
|
+
let headersFromBaseOptions = baseOptions && baseOptions.headers ? baseOptions.headers : {};
|
|
244
|
+
localVarRequestOptions.headers = Object.assign(Object.assign(Object.assign({}, localVarHeaderParameter), headersFromBaseOptions), options.headers);
|
|
245
|
+
localVarRequestOptions.data = serializeDataIfNeeded(bidResultsBatchRequestDto, localVarRequestOptions, configuration);
|
|
246
|
+
return {
|
|
247
|
+
url: toPathString(localVarUrlObj),
|
|
248
|
+
options: localVarRequestOptions,
|
|
249
|
+
};
|
|
250
|
+
}),
|
|
251
|
+
/**
|
|
252
|
+
* V5 /entendrec 정산(사업자·계좌·공급가액/부가세·응찰 품목내역) 후속. scope bids:read. 가격/신원 가시성 매트릭스와 직교한 ERP 정산 데이터 — read-only.
|
|
253
|
+
* @summary 입찰결과 정산정보 조회
|
|
254
|
+
* @param {string} bidId
|
|
255
|
+
* @param {*} [options] Override http request option.
|
|
256
|
+
* @throws {RequiredError}
|
|
257
|
+
*/
|
|
258
|
+
getBidSettlement: (bidId_1, ...args_1) => __awaiter(this, [bidId_1, ...args_1], void 0, function* (bidId, options = {}) {
|
|
259
|
+
// verify required parameter 'bidId' is not null or undefined
|
|
260
|
+
assertParamExists('getBidSettlement', 'bidId', bidId);
|
|
261
|
+
const localVarPath = `/v1/bids/{bidId}/settlement`
|
|
262
|
+
.replace('{bidId}', encodeURIComponent(String(bidId)));
|
|
263
|
+
// use dummy base URL string because the URL constructor only accepts absolute URLs.
|
|
264
|
+
const localVarUrlObj = new URL(localVarPath, DUMMY_BASE_URL);
|
|
265
|
+
let baseOptions;
|
|
266
|
+
if (configuration) {
|
|
267
|
+
baseOptions = configuration.baseOptions;
|
|
268
|
+
}
|
|
269
|
+
const localVarRequestOptions = Object.assign(Object.assign({ method: 'GET' }, baseOptions), options);
|
|
270
|
+
const localVarHeaderParameter = {};
|
|
271
|
+
const localVarQueryParameter = {};
|
|
272
|
+
// authentication partner-oauth2 required
|
|
273
|
+
// http bearer authentication required
|
|
274
|
+
yield setBearerAuthToObject(localVarHeaderParameter, configuration);
|
|
275
|
+
localVarHeaderParameter['Accept'] = 'application/json';
|
|
276
|
+
setSearchParams(localVarUrlObj, localVarQueryParameter);
|
|
277
|
+
let headersFromBaseOptions = baseOptions && baseOptions.headers ? baseOptions.headers : {};
|
|
278
|
+
localVarRequestOptions.headers = Object.assign(Object.assign(Object.assign({}, localVarHeaderParameter), headersFromBaseOptions), options.headers);
|
|
279
|
+
return {
|
|
280
|
+
url: toPathString(localVarUrlObj),
|
|
281
|
+
options: localVarRequestOptions,
|
|
282
|
+
};
|
|
283
|
+
}),
|
|
284
|
+
/**
|
|
285
|
+
* V5 /getGrm 후속. scope contracts:read.
|
|
286
|
+
* @summary 거래명세서 조회
|
|
287
|
+
* @param {string} bidId
|
|
288
|
+
* @param {number} paperCode
|
|
289
|
+
* @param {*} [options] Override http request option.
|
|
290
|
+
* @throws {RequiredError}
|
|
291
|
+
*/
|
|
292
|
+
getBidStatement: (bidId_1, paperCode_1, ...args_1) => __awaiter(this, [bidId_1, paperCode_1, ...args_1], void 0, function* (bidId, paperCode, options = {}) {
|
|
293
|
+
// verify required parameter 'bidId' is not null or undefined
|
|
294
|
+
assertParamExists('getBidStatement', 'bidId', bidId);
|
|
295
|
+
// verify required parameter 'paperCode' is not null or undefined
|
|
296
|
+
assertParamExists('getBidStatement', 'paperCode', paperCode);
|
|
297
|
+
const localVarPath = `/v1/bids/{bidId}/statement`
|
|
298
|
+
.replace('{bidId}', encodeURIComponent(String(bidId)));
|
|
299
|
+
// use dummy base URL string because the URL constructor only accepts absolute URLs.
|
|
300
|
+
const localVarUrlObj = new URL(localVarPath, DUMMY_BASE_URL);
|
|
301
|
+
let baseOptions;
|
|
302
|
+
if (configuration) {
|
|
303
|
+
baseOptions = configuration.baseOptions;
|
|
304
|
+
}
|
|
305
|
+
const localVarRequestOptions = Object.assign(Object.assign({ method: 'GET' }, baseOptions), options);
|
|
306
|
+
const localVarHeaderParameter = {};
|
|
307
|
+
const localVarQueryParameter = {};
|
|
308
|
+
// authentication partner-oauth2 required
|
|
309
|
+
// http bearer authentication required
|
|
310
|
+
yield setBearerAuthToObject(localVarHeaderParameter, configuration);
|
|
311
|
+
if (paperCode !== undefined) {
|
|
312
|
+
localVarQueryParameter['paperCode'] = paperCode;
|
|
313
|
+
}
|
|
314
|
+
localVarHeaderParameter['Accept'] = 'application/json';
|
|
315
|
+
setSearchParams(localVarUrlObj, localVarQueryParameter);
|
|
316
|
+
let headersFromBaseOptions = baseOptions && baseOptions.headers ? baseOptions.headers : {};
|
|
317
|
+
localVarRequestOptions.headers = Object.assign(Object.assign(Object.assign({}, localVarHeaderParameter), headersFromBaseOptions), options.headers);
|
|
318
|
+
return {
|
|
319
|
+
url: toPathString(localVarUrlObj),
|
|
320
|
+
options: localVarRequestOptions,
|
|
321
|
+
};
|
|
322
|
+
}),
|
|
67
323
|
/**
|
|
68
324
|
* ERP 연동 직전 회선·인증 endpoint 동작 확인용.
|
|
69
325
|
* @summary Partner API 헬스체크
|
|
70
326
|
* @param {*} [options] Override http request option.
|
|
71
327
|
* @throws {RequiredError}
|
|
72
328
|
*/
|
|
73
|
-
healthControllerCheck: (...args_1) => __awaiter(this, [...args_1], void 0, function* (options = {}) {
|
|
74
|
-
const localVarPath = `/v1/health`;
|
|
75
|
-
// use dummy base URL string because the URL constructor only accepts absolute URLs.
|
|
76
|
-
const localVarUrlObj = new URL(localVarPath, DUMMY_BASE_URL);
|
|
77
|
-
let baseOptions;
|
|
78
|
-
if (configuration) {
|
|
79
|
-
baseOptions = configuration.baseOptions;
|
|
80
|
-
}
|
|
81
|
-
const localVarRequestOptions = Object.assign(Object.assign({ method: 'GET' }, baseOptions), options);
|
|
82
|
-
const localVarHeaderParameter = {};
|
|
83
|
-
const localVarQueryParameter = {};
|
|
84
|
-
localVarHeaderParameter['Accept'] = 'application/json';
|
|
85
|
-
setSearchParams(localVarUrlObj, localVarQueryParameter);
|
|
86
|
-
let headersFromBaseOptions = baseOptions && baseOptions.headers ? baseOptions.headers : {};
|
|
87
|
-
localVarRequestOptions.headers = Object.assign(Object.assign(Object.assign({}, localVarHeaderParameter), headersFromBaseOptions), options.headers);
|
|
88
|
-
return {
|
|
89
|
-
url: toPathString(localVarUrlObj),
|
|
90
|
-
options: localVarRequestOptions,
|
|
91
|
-
};
|
|
92
|
-
}),
|
|
93
|
-
|
|
94
|
-
|
|
95
|
-
|
|
96
|
-
|
|
97
|
-
|
|
98
|
-
|
|
99
|
-
|
|
100
|
-
|
|
329
|
+
healthControllerCheck: (...args_1) => __awaiter(this, [...args_1], void 0, function* (options = {}) {
|
|
330
|
+
const localVarPath = `/v1/health`;
|
|
331
|
+
// use dummy base URL string because the URL constructor only accepts absolute URLs.
|
|
332
|
+
const localVarUrlObj = new URL(localVarPath, DUMMY_BASE_URL);
|
|
333
|
+
let baseOptions;
|
|
334
|
+
if (configuration) {
|
|
335
|
+
baseOptions = configuration.baseOptions;
|
|
336
|
+
}
|
|
337
|
+
const localVarRequestOptions = Object.assign(Object.assign({ method: 'GET' }, baseOptions), options);
|
|
338
|
+
const localVarHeaderParameter = {};
|
|
339
|
+
const localVarQueryParameter = {};
|
|
340
|
+
localVarHeaderParameter['Accept'] = 'application/json';
|
|
341
|
+
setSearchParams(localVarUrlObj, localVarQueryParameter);
|
|
342
|
+
let headersFromBaseOptions = baseOptions && baseOptions.headers ? baseOptions.headers : {};
|
|
343
|
+
localVarRequestOptions.headers = Object.assign(Object.assign(Object.assign({}, localVarHeaderParameter), headersFromBaseOptions), options.headers);
|
|
344
|
+
return {
|
|
345
|
+
url: toPathString(localVarUrlObj),
|
|
346
|
+
options: localVarRequestOptions,
|
|
347
|
+
};
|
|
348
|
+
}),
|
|
349
|
+
/**
|
|
350
|
+
* 유찰 처리(V5 yoochal 패리티). 유찰사유 코드(1~8)·상세를 받아 공고를 유찰 상태로 전환. 스코프 `awards:write` + `Idempotency-Key` 헤더 필수.
|
|
351
|
+
* @summary 유찰 처리
|
|
352
|
+
* @param {MarkBidFailedRequestDto} markBidFailedRequestDto
|
|
353
|
+
* @param {*} [options] Override http request option.
|
|
354
|
+
* @throws {RequiredError}
|
|
355
|
+
*/
|
|
356
|
+
markBidFailed: (markBidFailedRequestDto_1, ...args_1) => __awaiter(this, [markBidFailedRequestDto_1, ...args_1], void 0, function* (markBidFailedRequestDto, options = {}) {
|
|
357
|
+
// verify required parameter 'markBidFailedRequestDto' is not null or undefined
|
|
358
|
+
assertParamExists('markBidFailed', 'markBidFailedRequestDto', markBidFailedRequestDto);
|
|
359
|
+
const localVarPath = `/v1/awards/fail`;
|
|
360
|
+
// use dummy base URL string because the URL constructor only accepts absolute URLs.
|
|
361
|
+
const localVarUrlObj = new URL(localVarPath, DUMMY_BASE_URL);
|
|
362
|
+
let baseOptions;
|
|
363
|
+
if (configuration) {
|
|
364
|
+
baseOptions = configuration.baseOptions;
|
|
365
|
+
}
|
|
366
|
+
const localVarRequestOptions = Object.assign(Object.assign({ method: 'POST' }, baseOptions), options);
|
|
367
|
+
const localVarHeaderParameter = {};
|
|
368
|
+
const localVarQueryParameter = {};
|
|
369
|
+
// authentication partner-oauth2 required
|
|
370
|
+
// http bearer authentication required
|
|
371
|
+
yield setBearerAuthToObject(localVarHeaderParameter, configuration);
|
|
372
|
+
localVarHeaderParameter['Content-Type'] = 'application/json';
|
|
373
|
+
localVarHeaderParameter['Accept'] = 'application/json';
|
|
374
|
+
setSearchParams(localVarUrlObj, localVarQueryParameter);
|
|
375
|
+
let headersFromBaseOptions = baseOptions && baseOptions.headers ? baseOptions.headers : {};
|
|
376
|
+
localVarRequestOptions.headers = Object.assign(Object.assign(Object.assign({}, localVarHeaderParameter), headersFromBaseOptions), options.headers);
|
|
377
|
+
localVarRequestOptions.data = serializeDataIfNeeded(markBidFailedRequestDto, localVarRequestOptions, configuration);
|
|
378
|
+
return {
|
|
379
|
+
url: toPathString(localVarUrlObj),
|
|
380
|
+
options: localVarRequestOptions,
|
|
381
|
+
};
|
|
382
|
+
}),
|
|
383
|
+
/**
|
|
384
|
+
* 낙찰 결과 등록. 스코프 `awards:write` + `Idempotency-Key` 헤더 필수.
|
|
385
|
+
* @summary 낙찰 결과 전송
|
|
386
|
+
* @param {RegisterAwardRequestDto} registerAwardRequestDto
|
|
387
|
+
* @param {*} [options] Override http request option.
|
|
388
|
+
* @throws {RequiredError}
|
|
389
|
+
*/
|
|
390
|
+
registerAward: (registerAwardRequestDto_1, ...args_1) => __awaiter(this, [registerAwardRequestDto_1, ...args_1], void 0, function* (registerAwardRequestDto, options = {}) {
|
|
391
|
+
// verify required parameter 'registerAwardRequestDto' is not null or undefined
|
|
392
|
+
assertParamExists('registerAward', 'registerAwardRequestDto', registerAwardRequestDto);
|
|
393
|
+
const localVarPath = `/v1/awards`;
|
|
394
|
+
// use dummy base URL string because the URL constructor only accepts absolute URLs.
|
|
395
|
+
const localVarUrlObj = new URL(localVarPath, DUMMY_BASE_URL);
|
|
396
|
+
let baseOptions;
|
|
397
|
+
if (configuration) {
|
|
398
|
+
baseOptions = configuration.baseOptions;
|
|
399
|
+
}
|
|
400
|
+
const localVarRequestOptions = Object.assign(Object.assign({ method: 'POST' }, baseOptions), options);
|
|
401
|
+
const localVarHeaderParameter = {};
|
|
402
|
+
const localVarQueryParameter = {};
|
|
403
|
+
// authentication partner-oauth2 required
|
|
404
|
+
// http bearer authentication required
|
|
405
|
+
yield setBearerAuthToObject(localVarHeaderParameter, configuration);
|
|
406
|
+
localVarHeaderParameter['Content-Type'] = 'application/json';
|
|
407
|
+
localVarHeaderParameter['Accept'] = 'application/json';
|
|
408
|
+
setSearchParams(localVarUrlObj, localVarQueryParameter);
|
|
409
|
+
let headersFromBaseOptions = baseOptions && baseOptions.headers ? baseOptions.headers : {};
|
|
410
|
+
localVarRequestOptions.headers = Object.assign(Object.assign(Object.assign({}, localVarHeaderParameter), headersFromBaseOptions), options.headers);
|
|
411
|
+
localVarRequestOptions.data = serializeDataIfNeeded(registerAwardRequestDto, localVarRequestOptions, configuration);
|
|
412
|
+
return {
|
|
413
|
+
url: toPathString(localVarUrlObj),
|
|
414
|
+
options: localVarRequestOptions,
|
|
415
|
+
};
|
|
416
|
+
}),
|
|
417
|
+
/**
|
|
418
|
+
* 입찰 정보 등록. 스코프 `bids:write` + `Idempotency-Key` 헤더 필수.
|
|
419
|
+
* @summary 입찰 정보 전송(등록)
|
|
420
|
+
* @param {CreateBidRequestDto} createBidRequestDto
|
|
421
|
+
* @param {*} [options] Override http request option.
|
|
422
|
+
* @throws {RequiredError}
|
|
423
|
+
*/
|
|
424
|
+
registerBid: (createBidRequestDto_1, ...args_1) => __awaiter(this, [createBidRequestDto_1, ...args_1], void 0, function* (createBidRequestDto, options = {}) {
|
|
425
|
+
// verify required parameter 'createBidRequestDto' is not null or undefined
|
|
426
|
+
assertParamExists('registerBid', 'createBidRequestDto', createBidRequestDto);
|
|
427
|
+
const localVarPath = `/v1/bids`;
|
|
428
|
+
// use dummy base URL string because the URL constructor only accepts absolute URLs.
|
|
429
|
+
const localVarUrlObj = new URL(localVarPath, DUMMY_BASE_URL);
|
|
430
|
+
let baseOptions;
|
|
431
|
+
if (configuration) {
|
|
432
|
+
baseOptions = configuration.baseOptions;
|
|
433
|
+
}
|
|
434
|
+
const localVarRequestOptions = Object.assign(Object.assign({ method: 'POST' }, baseOptions), options);
|
|
435
|
+
const localVarHeaderParameter = {};
|
|
436
|
+
const localVarQueryParameter = {};
|
|
437
|
+
// authentication partner-oauth2 required
|
|
438
|
+
// http bearer authentication required
|
|
439
|
+
yield setBearerAuthToObject(localVarHeaderParameter, configuration);
|
|
440
|
+
localVarHeaderParameter['Content-Type'] = 'application/json';
|
|
441
|
+
localVarHeaderParameter['Accept'] = 'application/json';
|
|
442
|
+
setSearchParams(localVarUrlObj, localVarQueryParameter);
|
|
443
|
+
let headersFromBaseOptions = baseOptions && baseOptions.headers ? baseOptions.headers : {};
|
|
444
|
+
localVarRequestOptions.headers = Object.assign(Object.assign(Object.assign({}, localVarHeaderParameter), headersFromBaseOptions), options.headers);
|
|
445
|
+
localVarRequestOptions.data = serializeDataIfNeeded(createBidRequestDto, localVarRequestOptions, configuration);
|
|
446
|
+
return {
|
|
447
|
+
url: toPathString(localVarUrlObj),
|
|
448
|
+
options: localVarRequestOptions,
|
|
449
|
+
};
|
|
450
|
+
}),
|
|
451
|
+
/**
|
|
452
|
+
* V5 /splitInvoiceRequest 후속. scope invoices:write + Idempotency-Key.
|
|
453
|
+
* @summary 계산서 분할 발급 청구
|
|
454
|
+
* @param {RequestSplitInvoiceRequestDto} requestSplitInvoiceRequestDto
|
|
455
|
+
* @param {*} [options] Override http request option.
|
|
456
|
+
* @throws {RequiredError}
|
|
457
|
+
*/
|
|
458
|
+
requestSplitInvoice: (requestSplitInvoiceRequestDto_1, ...args_1) => __awaiter(this, [requestSplitInvoiceRequestDto_1, ...args_1], void 0, function* (requestSplitInvoiceRequestDto, options = {}) {
|
|
459
|
+
// verify required parameter 'requestSplitInvoiceRequestDto' is not null or undefined
|
|
460
|
+
assertParamExists('requestSplitInvoice', 'requestSplitInvoiceRequestDto', requestSplitInvoiceRequestDto);
|
|
461
|
+
const localVarPath = `/v1/invoices/split-requests`;
|
|
462
|
+
// use dummy base URL string because the URL constructor only accepts absolute URLs.
|
|
463
|
+
const localVarUrlObj = new URL(localVarPath, DUMMY_BASE_URL);
|
|
464
|
+
let baseOptions;
|
|
465
|
+
if (configuration) {
|
|
466
|
+
baseOptions = configuration.baseOptions;
|
|
467
|
+
}
|
|
468
|
+
const localVarRequestOptions = Object.assign(Object.assign({ method: 'POST' }, baseOptions), options);
|
|
469
|
+
const localVarHeaderParameter = {};
|
|
470
|
+
const localVarQueryParameter = {};
|
|
471
|
+
// authentication partner-oauth2 required
|
|
472
|
+
// http bearer authentication required
|
|
473
|
+
yield setBearerAuthToObject(localVarHeaderParameter, configuration);
|
|
474
|
+
localVarHeaderParameter['Content-Type'] = 'application/json';
|
|
475
|
+
localVarHeaderParameter['Accept'] = 'application/json';
|
|
476
|
+
setSearchParams(localVarUrlObj, localVarQueryParameter);
|
|
477
|
+
let headersFromBaseOptions = baseOptions && baseOptions.headers ? baseOptions.headers : {};
|
|
478
|
+
localVarRequestOptions.headers = Object.assign(Object.assign(Object.assign({}, localVarHeaderParameter), headersFromBaseOptions), options.headers);
|
|
479
|
+
localVarRequestOptions.data = serializeDataIfNeeded(requestSplitInvoiceRequestDto, localVarRequestOptions, configuration);
|
|
480
|
+
return {
|
|
481
|
+
url: toPathString(localVarUrlObj),
|
|
482
|
+
options: localVarRequestOptions,
|
|
483
|
+
};
|
|
484
|
+
}),
|
|
485
|
+
/**
|
|
486
|
+
* 협상에의한계약(H/K) 응찰자별 기술/가격 점수 일괄 입력(V5 nego-eval 패리티). complete=true 면 평가완료 게이트까지 적용해 낙찰 진입 가능. 스코프 `awards:write` + `Idempotency-Key` 헤더 필수.
|
|
487
|
+
* @summary 협상(H/K) 점수평가
|
|
488
|
+
* @param {SubmitNegotiationScoresRequestDto} submitNegotiationScoresRequestDto
|
|
489
|
+
* @param {*} [options] Override http request option.
|
|
490
|
+
* @throws {RequiredError}
|
|
491
|
+
*/
|
|
492
|
+
submitNegotiationScores: (submitNegotiationScoresRequestDto_1, ...args_1) => __awaiter(this, [submitNegotiationScoresRequestDto_1, ...args_1], void 0, function* (submitNegotiationScoresRequestDto, options = {}) {
|
|
493
|
+
// verify required parameter 'submitNegotiationScoresRequestDto' is not null or undefined
|
|
494
|
+
assertParamExists('submitNegotiationScores', 'submitNegotiationScoresRequestDto', submitNegotiationScoresRequestDto);
|
|
495
|
+
const localVarPath = `/v1/awards/nego-eval`;
|
|
496
|
+
// use dummy base URL string because the URL constructor only accepts absolute URLs.
|
|
497
|
+
const localVarUrlObj = new URL(localVarPath, DUMMY_BASE_URL);
|
|
498
|
+
let baseOptions;
|
|
499
|
+
if (configuration) {
|
|
500
|
+
baseOptions = configuration.baseOptions;
|
|
501
|
+
}
|
|
502
|
+
const localVarRequestOptions = Object.assign(Object.assign({ method: 'POST' }, baseOptions), options);
|
|
503
|
+
const localVarHeaderParameter = {};
|
|
504
|
+
const localVarQueryParameter = {};
|
|
505
|
+
// authentication partner-oauth2 required
|
|
506
|
+
// http bearer authentication required
|
|
507
|
+
yield setBearerAuthToObject(localVarHeaderParameter, configuration);
|
|
508
|
+
localVarHeaderParameter['Content-Type'] = 'application/json';
|
|
509
|
+
localVarHeaderParameter['Accept'] = 'application/json';
|
|
510
|
+
setSearchParams(localVarUrlObj, localVarQueryParameter);
|
|
511
|
+
let headersFromBaseOptions = baseOptions && baseOptions.headers ? baseOptions.headers : {};
|
|
512
|
+
localVarRequestOptions.headers = Object.assign(Object.assign(Object.assign({}, localVarHeaderParameter), headersFromBaseOptions), options.headers);
|
|
513
|
+
localVarRequestOptions.data = serializeDataIfNeeded(submitNegotiationScoresRequestDto, localVarRequestOptions, configuration);
|
|
514
|
+
return {
|
|
515
|
+
url: toPathString(localVarUrlObj),
|
|
516
|
+
options: localVarRequestOptions,
|
|
517
|
+
};
|
|
518
|
+
}),
|
|
519
|
+
/**
|
|
520
|
+
* 스코프 `files:write` 필수. base64 또는 url 중 하나를 제출한다.
|
|
521
|
+
* @summary 입찰 첨부파일 업로드(base64 또는 url) → fileKey
|
|
522
|
+
* @param {UploadFileRequestDto} uploadFileRequestDto
|
|
523
|
+
* @param {*} [options] Override http request option.
|
|
524
|
+
* @throws {RequiredError}
|
|
525
|
+
*/
|
|
526
|
+
uploadFile: (uploadFileRequestDto_1, ...args_1) => __awaiter(this, [uploadFileRequestDto_1, ...args_1], void 0, function* (uploadFileRequestDto, options = {}) {
|
|
527
|
+
// verify required parameter 'uploadFileRequestDto' is not null or undefined
|
|
528
|
+
assertParamExists('uploadFile', 'uploadFileRequestDto', uploadFileRequestDto);
|
|
529
|
+
const localVarPath = `/v1/files`;
|
|
530
|
+
// use dummy base URL string because the URL constructor only accepts absolute URLs.
|
|
531
|
+
const localVarUrlObj = new URL(localVarPath, DUMMY_BASE_URL);
|
|
532
|
+
let baseOptions;
|
|
533
|
+
if (configuration) {
|
|
534
|
+
baseOptions = configuration.baseOptions;
|
|
535
|
+
}
|
|
536
|
+
const localVarRequestOptions = Object.assign(Object.assign({ method: 'POST' }, baseOptions), options);
|
|
537
|
+
const localVarHeaderParameter = {};
|
|
538
|
+
const localVarQueryParameter = {};
|
|
539
|
+
// authentication partner-oauth2 required
|
|
540
|
+
// http bearer authentication required
|
|
541
|
+
yield setBearerAuthToObject(localVarHeaderParameter, configuration);
|
|
542
|
+
localVarHeaderParameter['Content-Type'] = 'application/json';
|
|
543
|
+
localVarHeaderParameter['Accept'] = 'application/json';
|
|
544
|
+
setSearchParams(localVarUrlObj, localVarQueryParameter);
|
|
545
|
+
let headersFromBaseOptions = baseOptions && baseOptions.headers ? baseOptions.headers : {};
|
|
546
|
+
localVarRequestOptions.headers = Object.assign(Object.assign(Object.assign({}, localVarHeaderParameter), headersFromBaseOptions), options.headers);
|
|
547
|
+
localVarRequestOptions.data = serializeDataIfNeeded(uploadFileRequestDto, localVarRequestOptions, configuration);
|
|
548
|
+
return {
|
|
549
|
+
url: toPathString(localVarUrlObj),
|
|
550
|
+
options: localVarRequestOptions,
|
|
551
|
+
};
|
|
552
|
+
}),
|
|
553
|
+
};
|
|
554
|
+
};
|
|
555
|
+
/**
|
|
556
|
+
* PartnerV1Api - functional programming interface
|
|
557
|
+
*/
|
|
558
|
+
export const PartnerV1ApiFp = function (configuration) {
|
|
559
|
+
const localVarAxiosParamCreator = PartnerV1ApiAxiosParamCreator(configuration);
|
|
560
|
+
return {
|
|
561
|
+
/**
|
|
562
|
+
* ERP 가 공고 정보를 조회합니다. 인증 필요 (스코프 `bids:read`).
|
|
563
|
+
* @summary 공고 단건 조회
|
|
564
|
+
* @param {string} bidId
|
|
565
|
+
* @param {*} [options] Override http request option.
|
|
566
|
+
* @throws {RequiredError}
|
|
567
|
+
*/
|
|
568
|
+
bidsControllerFindOne(bidId, options) {
|
|
569
|
+
return __awaiter(this, void 0, void 0, function* () {
|
|
570
|
+
var _a, _b, _c;
|
|
571
|
+
const localVarAxiosArgs = yield localVarAxiosParamCreator.bidsControllerFindOne(bidId, options);
|
|
572
|
+
const localVarOperationServerIndex = (_a = configuration === null || configuration === void 0 ? void 0 : configuration.serverIndex) !== null && _a !== void 0 ? _a : 0;
|
|
573
|
+
const localVarOperationServerBasePath = (_c = (_b = operationServerMap['PartnerV1Api.bidsControllerFindOne']) === null || _b === void 0 ? void 0 : _b[localVarOperationServerIndex]) === null || _c === void 0 ? void 0 : _c.url;
|
|
574
|
+
return (axios, basePath) => createRequestFunction(localVarAxiosArgs, globalAxios, BASE_PATH, configuration)(axios, localVarOperationServerBasePath || basePath);
|
|
575
|
+
});
|
|
576
|
+
},
|
|
577
|
+
/**
|
|
578
|
+
* V5 /acceptanceCompleteSend 후속. scope contracts:write + Idempotency-Key.
|
|
579
|
+
* @summary 검수완료 전송
|
|
580
|
+
* @param {string} bidId
|
|
581
|
+
* @param {CompleteAcceptanceRequestDto} completeAcceptanceRequestDto
|
|
582
|
+
* @param {*} [options] Override http request option.
|
|
583
|
+
* @throws {RequiredError}
|
|
584
|
+
*/
|
|
585
|
+
completeAcceptance(bidId, completeAcceptanceRequestDto, options) {
|
|
586
|
+
return __awaiter(this, void 0, void 0, function* () {
|
|
587
|
+
var _a, _b, _c;
|
|
588
|
+
const localVarAxiosArgs = yield localVarAxiosParamCreator.completeAcceptance(bidId, completeAcceptanceRequestDto, options);
|
|
589
|
+
const localVarOperationServerIndex = (_a = configuration === null || configuration === void 0 ? void 0 : configuration.serverIndex) !== null && _a !== void 0 ? _a : 0;
|
|
590
|
+
const localVarOperationServerBasePath = (_c = (_b = operationServerMap['PartnerV1Api.completeAcceptance']) === null || _b === void 0 ? void 0 : _b[localVarOperationServerIndex]) === null || _c === void 0 ? void 0 : _c.url;
|
|
591
|
+
return (axios, basePath) => createRequestFunction(localVarAxiosArgs, globalAxios, BASE_PATH, configuration)(axios, localVarOperationServerBasePath || basePath);
|
|
592
|
+
});
|
|
593
|
+
},
|
|
594
|
+
/**
|
|
595
|
+
* V5 /contractDocumentRec 후속. scope contracts:read.
|
|
596
|
+
* @summary 계약서류 수신 조회
|
|
597
|
+
* @param {string} bidId
|
|
598
|
+
* @param {string} buyerId
|
|
599
|
+
* @param {*} [options] Override http request option.
|
|
600
|
+
* @throws {RequiredError}
|
|
601
|
+
*/
|
|
602
|
+
getBidContractDocuments(bidId, buyerId, options) {
|
|
603
|
+
return __awaiter(this, void 0, void 0, function* () {
|
|
604
|
+
var _a, _b, _c;
|
|
605
|
+
const localVarAxiosArgs = yield localVarAxiosParamCreator.getBidContractDocuments(bidId, buyerId, options);
|
|
606
|
+
const localVarOperationServerIndex = (_a = configuration === null || configuration === void 0 ? void 0 : configuration.serverIndex) !== null && _a !== void 0 ? _a : 0;
|
|
607
|
+
const localVarOperationServerBasePath = (_c = (_b = operationServerMap['PartnerV1Api.getBidContractDocuments']) === null || _b === void 0 ? void 0 : _b[localVarOperationServerIndex]) === null || _c === void 0 ? void 0 : _c.url;
|
|
608
|
+
return (axios, basePath) => createRequestFunction(localVarAxiosArgs, globalAxios, BASE_PATH, configuration)(axios, localVarOperationServerBasePath || basePath);
|
|
609
|
+
});
|
|
610
|
+
},
|
|
611
|
+
/**
|
|
612
|
+
* V5 /contractDocumentRec(bid_puchase_no_list) 후속. 공고번호 리스트를 한 번에 조회. 단건(GET :bidId/contract-documents)은 그대로 유지. scope contracts:read.
|
|
613
|
+
* @summary 계약서류 수신 배치 조회
|
|
614
|
+
* @param {BidContractDocumentsBatchRequestDto} bidContractDocumentsBatchRequestDto
|
|
615
|
+
* @param {*} [options] Override http request option.
|
|
616
|
+
* @throws {RequiredError}
|
|
617
|
+
*/
|
|
618
|
+
getBidContractDocumentsBatch(bidContractDocumentsBatchRequestDto, options) {
|
|
619
|
+
return __awaiter(this, void 0, void 0, function* () {
|
|
620
|
+
var _a, _b, _c;
|
|
621
|
+
const localVarAxiosArgs = yield localVarAxiosParamCreator.getBidContractDocumentsBatch(bidContractDocumentsBatchRequestDto, options);
|
|
622
|
+
const localVarOperationServerIndex = (_a = configuration === null || configuration === void 0 ? void 0 : configuration.serverIndex) !== null && _a !== void 0 ? _a : 0;
|
|
623
|
+
const localVarOperationServerBasePath = (_c = (_b = operationServerMap['PartnerV1Api.getBidContractDocumentsBatch']) === null || _b === void 0 ? void 0 : _b[localVarOperationServerIndex]) === null || _c === void 0 ? void 0 : _c.url;
|
|
624
|
+
return (axios, basePath) => createRequestFunction(localVarAxiosArgs, globalAxios, BASE_PATH, configuration)(axios, localVarOperationServerBasePath || basePath);
|
|
625
|
+
});
|
|
626
|
+
},
|
|
627
|
+
/**
|
|
628
|
+
* V5 /entendrec 후속. scope bids:read.
|
|
629
|
+
* @summary 입찰 결과 조회
|
|
630
|
+
* @param {string} bidId
|
|
631
|
+
* @param {string} buyerId
|
|
632
|
+
* @param {*} [options] Override http request option.
|
|
633
|
+
* @throws {RequiredError}
|
|
634
|
+
*/
|
|
635
|
+
getBidResults(bidId, buyerId, options) {
|
|
636
|
+
return __awaiter(this, void 0, void 0, function* () {
|
|
637
|
+
var _a, _b, _c;
|
|
638
|
+
const localVarAxiosArgs = yield localVarAxiosParamCreator.getBidResults(bidId, buyerId, options);
|
|
639
|
+
const localVarOperationServerIndex = (_a = configuration === null || configuration === void 0 ? void 0 : configuration.serverIndex) !== null && _a !== void 0 ? _a : 0;
|
|
640
|
+
const localVarOperationServerBasePath = (_c = (_b = operationServerMap['PartnerV1Api.getBidResults']) === null || _b === void 0 ? void 0 : _b[localVarOperationServerIndex]) === null || _c === void 0 ? void 0 : _c.url;
|
|
641
|
+
return (axios, basePath) => createRequestFunction(localVarAxiosArgs, globalAxios, BASE_PATH, configuration)(axios, localVarOperationServerBasePath || basePath);
|
|
642
|
+
});
|
|
643
|
+
},
|
|
644
|
+
/**
|
|
645
|
+
* V5 entendRec(bid_puchase_no_list) 후속 — 여러 공고 결과를 1회 호출로(additive, 단건 유지). 입력 순서를 보존한다. scope bids:read.
|
|
646
|
+
* @summary 입찰결과 배치 조회
|
|
647
|
+
* @param {BidResultsBatchRequestDto} bidResultsBatchRequestDto
|
|
648
|
+
* @param {*} [options] Override http request option.
|
|
649
|
+
* @throws {RequiredError}
|
|
650
|
+
*/
|
|
651
|
+
getBidResultsBatch(bidResultsBatchRequestDto, options) {
|
|
652
|
+
return __awaiter(this, void 0, void 0, function* () {
|
|
653
|
+
var _a, _b, _c;
|
|
654
|
+
const localVarAxiosArgs = yield localVarAxiosParamCreator.getBidResultsBatch(bidResultsBatchRequestDto, options);
|
|
655
|
+
const localVarOperationServerIndex = (_a = configuration === null || configuration === void 0 ? void 0 : configuration.serverIndex) !== null && _a !== void 0 ? _a : 0;
|
|
656
|
+
const localVarOperationServerBasePath = (_c = (_b = operationServerMap['PartnerV1Api.getBidResultsBatch']) === null || _b === void 0 ? void 0 : _b[localVarOperationServerIndex]) === null || _c === void 0 ? void 0 : _c.url;
|
|
657
|
+
return (axios, basePath) => createRequestFunction(localVarAxiosArgs, globalAxios, BASE_PATH, configuration)(axios, localVarOperationServerBasePath || basePath);
|
|
658
|
+
});
|
|
659
|
+
},
|
|
101
660
|
/**
|
|
102
|
-
*
|
|
103
|
-
* @summary
|
|
661
|
+
* V5 /entendrec 정산(사업자·계좌·공급가액/부가세·응찰 품목내역) 후속. scope bids:read. 가격/신원 가시성 매트릭스와 직교한 ERP 정산 데이터 — read-only.
|
|
662
|
+
* @summary 입찰결과 정산정보 조회
|
|
104
663
|
* @param {string} bidId
|
|
105
664
|
* @param {*} [options] Override http request option.
|
|
106
665
|
* @throws {RequiredError}
|
|
107
666
|
*/
|
|
108
|
-
|
|
667
|
+
getBidSettlement(bidId, options) {
|
|
109
668
|
return __awaiter(this, void 0, void 0, function* () {
|
|
110
669
|
var _a, _b, _c;
|
|
111
|
-
const localVarAxiosArgs = yield localVarAxiosParamCreator.
|
|
670
|
+
const localVarAxiosArgs = yield localVarAxiosParamCreator.getBidSettlement(bidId, options);
|
|
112
671
|
const localVarOperationServerIndex = (_a = configuration === null || configuration === void 0 ? void 0 : configuration.serverIndex) !== null && _a !== void 0 ? _a : 0;
|
|
113
|
-
const localVarOperationServerBasePath = (_c = (_b = operationServerMap['PartnerV1Api.
|
|
672
|
+
const localVarOperationServerBasePath = (_c = (_b = operationServerMap['PartnerV1Api.getBidSettlement']) === null || _b === void 0 ? void 0 : _b[localVarOperationServerIndex]) === null || _c === void 0 ? void 0 : _c.url;
|
|
673
|
+
return (axios, basePath) => createRequestFunction(localVarAxiosArgs, globalAxios, BASE_PATH, configuration)(axios, localVarOperationServerBasePath || basePath);
|
|
674
|
+
});
|
|
675
|
+
},
|
|
676
|
+
/**
|
|
677
|
+
* V5 /getGrm 후속. scope contracts:read.
|
|
678
|
+
* @summary 거래명세서 조회
|
|
679
|
+
* @param {string} bidId
|
|
680
|
+
* @param {number} paperCode
|
|
681
|
+
* @param {*} [options] Override http request option.
|
|
682
|
+
* @throws {RequiredError}
|
|
683
|
+
*/
|
|
684
|
+
getBidStatement(bidId, paperCode, options) {
|
|
685
|
+
return __awaiter(this, void 0, void 0, function* () {
|
|
686
|
+
var _a, _b, _c;
|
|
687
|
+
const localVarAxiosArgs = yield localVarAxiosParamCreator.getBidStatement(bidId, paperCode, options);
|
|
688
|
+
const localVarOperationServerIndex = (_a = configuration === null || configuration === void 0 ? void 0 : configuration.serverIndex) !== null && _a !== void 0 ? _a : 0;
|
|
689
|
+
const localVarOperationServerBasePath = (_c = (_b = operationServerMap['PartnerV1Api.getBidStatement']) === null || _b === void 0 ? void 0 : _b[localVarOperationServerIndex]) === null || _c === void 0 ? void 0 : _c.url;
|
|
114
690
|
return (axios, basePath) => createRequestFunction(localVarAxiosArgs, globalAxios, BASE_PATH, configuration)(axios, localVarOperationServerBasePath || basePath);
|
|
115
691
|
});
|
|
116
692
|
},
|
|
@@ -129,6 +705,102 @@ export const PartnerV1ApiFp = function (configuration) {
|
|
|
129
705
|
return (axios, basePath) => createRequestFunction(localVarAxiosArgs, globalAxios, BASE_PATH, configuration)(axios, localVarOperationServerBasePath || basePath);
|
|
130
706
|
});
|
|
131
707
|
},
|
|
708
|
+
/**
|
|
709
|
+
* 유찰 처리(V5 yoochal 패리티). 유찰사유 코드(1~8)·상세를 받아 공고를 유찰 상태로 전환. 스코프 `awards:write` + `Idempotency-Key` 헤더 필수.
|
|
710
|
+
* @summary 유찰 처리
|
|
711
|
+
* @param {MarkBidFailedRequestDto} markBidFailedRequestDto
|
|
712
|
+
* @param {*} [options] Override http request option.
|
|
713
|
+
* @throws {RequiredError}
|
|
714
|
+
*/
|
|
715
|
+
markBidFailed(markBidFailedRequestDto, options) {
|
|
716
|
+
return __awaiter(this, void 0, void 0, function* () {
|
|
717
|
+
var _a, _b, _c;
|
|
718
|
+
const localVarAxiosArgs = yield localVarAxiosParamCreator.markBidFailed(markBidFailedRequestDto, options);
|
|
719
|
+
const localVarOperationServerIndex = (_a = configuration === null || configuration === void 0 ? void 0 : configuration.serverIndex) !== null && _a !== void 0 ? _a : 0;
|
|
720
|
+
const localVarOperationServerBasePath = (_c = (_b = operationServerMap['PartnerV1Api.markBidFailed']) === null || _b === void 0 ? void 0 : _b[localVarOperationServerIndex]) === null || _c === void 0 ? void 0 : _c.url;
|
|
721
|
+
return (axios, basePath) => createRequestFunction(localVarAxiosArgs, globalAxios, BASE_PATH, configuration)(axios, localVarOperationServerBasePath || basePath);
|
|
722
|
+
});
|
|
723
|
+
},
|
|
724
|
+
/**
|
|
725
|
+
* 낙찰 결과 등록. 스코프 `awards:write` + `Idempotency-Key` 헤더 필수.
|
|
726
|
+
* @summary 낙찰 결과 전송
|
|
727
|
+
* @param {RegisterAwardRequestDto} registerAwardRequestDto
|
|
728
|
+
* @param {*} [options] Override http request option.
|
|
729
|
+
* @throws {RequiredError}
|
|
730
|
+
*/
|
|
731
|
+
registerAward(registerAwardRequestDto, options) {
|
|
732
|
+
return __awaiter(this, void 0, void 0, function* () {
|
|
733
|
+
var _a, _b, _c;
|
|
734
|
+
const localVarAxiosArgs = yield localVarAxiosParamCreator.registerAward(registerAwardRequestDto, options);
|
|
735
|
+
const localVarOperationServerIndex = (_a = configuration === null || configuration === void 0 ? void 0 : configuration.serverIndex) !== null && _a !== void 0 ? _a : 0;
|
|
736
|
+
const localVarOperationServerBasePath = (_c = (_b = operationServerMap['PartnerV1Api.registerAward']) === null || _b === void 0 ? void 0 : _b[localVarOperationServerIndex]) === null || _c === void 0 ? void 0 : _c.url;
|
|
737
|
+
return (axios, basePath) => createRequestFunction(localVarAxiosArgs, globalAxios, BASE_PATH, configuration)(axios, localVarOperationServerBasePath || basePath);
|
|
738
|
+
});
|
|
739
|
+
},
|
|
740
|
+
/**
|
|
741
|
+
* 입찰 정보 등록. 스코프 `bids:write` + `Idempotency-Key` 헤더 필수.
|
|
742
|
+
* @summary 입찰 정보 전송(등록)
|
|
743
|
+
* @param {CreateBidRequestDto} createBidRequestDto
|
|
744
|
+
* @param {*} [options] Override http request option.
|
|
745
|
+
* @throws {RequiredError}
|
|
746
|
+
*/
|
|
747
|
+
registerBid(createBidRequestDto, options) {
|
|
748
|
+
return __awaiter(this, void 0, void 0, function* () {
|
|
749
|
+
var _a, _b, _c;
|
|
750
|
+
const localVarAxiosArgs = yield localVarAxiosParamCreator.registerBid(createBidRequestDto, options);
|
|
751
|
+
const localVarOperationServerIndex = (_a = configuration === null || configuration === void 0 ? void 0 : configuration.serverIndex) !== null && _a !== void 0 ? _a : 0;
|
|
752
|
+
const localVarOperationServerBasePath = (_c = (_b = operationServerMap['PartnerV1Api.registerBid']) === null || _b === void 0 ? void 0 : _b[localVarOperationServerIndex]) === null || _c === void 0 ? void 0 : _c.url;
|
|
753
|
+
return (axios, basePath) => createRequestFunction(localVarAxiosArgs, globalAxios, BASE_PATH, configuration)(axios, localVarOperationServerBasePath || basePath);
|
|
754
|
+
});
|
|
755
|
+
},
|
|
756
|
+
/**
|
|
757
|
+
* V5 /splitInvoiceRequest 후속. scope invoices:write + Idempotency-Key.
|
|
758
|
+
* @summary 계산서 분할 발급 청구
|
|
759
|
+
* @param {RequestSplitInvoiceRequestDto} requestSplitInvoiceRequestDto
|
|
760
|
+
* @param {*} [options] Override http request option.
|
|
761
|
+
* @throws {RequiredError}
|
|
762
|
+
*/
|
|
763
|
+
requestSplitInvoice(requestSplitInvoiceRequestDto, options) {
|
|
764
|
+
return __awaiter(this, void 0, void 0, function* () {
|
|
765
|
+
var _a, _b, _c;
|
|
766
|
+
const localVarAxiosArgs = yield localVarAxiosParamCreator.requestSplitInvoice(requestSplitInvoiceRequestDto, options);
|
|
767
|
+
const localVarOperationServerIndex = (_a = configuration === null || configuration === void 0 ? void 0 : configuration.serverIndex) !== null && _a !== void 0 ? _a : 0;
|
|
768
|
+
const localVarOperationServerBasePath = (_c = (_b = operationServerMap['PartnerV1Api.requestSplitInvoice']) === null || _b === void 0 ? void 0 : _b[localVarOperationServerIndex]) === null || _c === void 0 ? void 0 : _c.url;
|
|
769
|
+
return (axios, basePath) => createRequestFunction(localVarAxiosArgs, globalAxios, BASE_PATH, configuration)(axios, localVarOperationServerBasePath || basePath);
|
|
770
|
+
});
|
|
771
|
+
},
|
|
772
|
+
/**
|
|
773
|
+
* 협상에의한계약(H/K) 응찰자별 기술/가격 점수 일괄 입력(V5 nego-eval 패리티). complete=true 면 평가완료 게이트까지 적용해 낙찰 진입 가능. 스코프 `awards:write` + `Idempotency-Key` 헤더 필수.
|
|
774
|
+
* @summary 협상(H/K) 점수평가
|
|
775
|
+
* @param {SubmitNegotiationScoresRequestDto} submitNegotiationScoresRequestDto
|
|
776
|
+
* @param {*} [options] Override http request option.
|
|
777
|
+
* @throws {RequiredError}
|
|
778
|
+
*/
|
|
779
|
+
submitNegotiationScores(submitNegotiationScoresRequestDto, options) {
|
|
780
|
+
return __awaiter(this, void 0, void 0, function* () {
|
|
781
|
+
var _a, _b, _c;
|
|
782
|
+
const localVarAxiosArgs = yield localVarAxiosParamCreator.submitNegotiationScores(submitNegotiationScoresRequestDto, options);
|
|
783
|
+
const localVarOperationServerIndex = (_a = configuration === null || configuration === void 0 ? void 0 : configuration.serverIndex) !== null && _a !== void 0 ? _a : 0;
|
|
784
|
+
const localVarOperationServerBasePath = (_c = (_b = operationServerMap['PartnerV1Api.submitNegotiationScores']) === null || _b === void 0 ? void 0 : _b[localVarOperationServerIndex]) === null || _c === void 0 ? void 0 : _c.url;
|
|
785
|
+
return (axios, basePath) => createRequestFunction(localVarAxiosArgs, globalAxios, BASE_PATH, configuration)(axios, localVarOperationServerBasePath || basePath);
|
|
786
|
+
});
|
|
787
|
+
},
|
|
788
|
+
/**
|
|
789
|
+
* 스코프 `files:write` 필수. base64 또는 url 중 하나를 제출한다.
|
|
790
|
+
* @summary 입찰 첨부파일 업로드(base64 또는 url) → fileKey
|
|
791
|
+
* @param {UploadFileRequestDto} uploadFileRequestDto
|
|
792
|
+
* @param {*} [options] Override http request option.
|
|
793
|
+
* @throws {RequiredError}
|
|
794
|
+
*/
|
|
795
|
+
uploadFile(uploadFileRequestDto, options) {
|
|
796
|
+
return __awaiter(this, void 0, void 0, function* () {
|
|
797
|
+
var _a, _b, _c;
|
|
798
|
+
const localVarAxiosArgs = yield localVarAxiosParamCreator.uploadFile(uploadFileRequestDto, options);
|
|
799
|
+
const localVarOperationServerIndex = (_a = configuration === null || configuration === void 0 ? void 0 : configuration.serverIndex) !== null && _a !== void 0 ? _a : 0;
|
|
800
|
+
const localVarOperationServerBasePath = (_c = (_b = operationServerMap['PartnerV1Api.uploadFile']) === null || _b === void 0 ? void 0 : _b[localVarOperationServerIndex]) === null || _c === void 0 ? void 0 : _c.url;
|
|
801
|
+
return (axios, basePath) => createRequestFunction(localVarAxiosArgs, globalAxios, BASE_PATH, configuration)(axios, localVarOperationServerBasePath || basePath);
|
|
802
|
+
});
|
|
803
|
+
},
|
|
132
804
|
};
|
|
133
805
|
};
|
|
134
806
|
/**
|
|
@@ -147,6 +819,80 @@ export const PartnerV1ApiFactory = function (configuration, basePath, axios) {
|
|
|
147
819
|
bidsControllerFindOne(bidId, options) {
|
|
148
820
|
return localVarFp.bidsControllerFindOne(bidId, options).then((request) => request(axios, basePath));
|
|
149
821
|
},
|
|
822
|
+
/**
|
|
823
|
+
* V5 /acceptanceCompleteSend 후속. scope contracts:write + Idempotency-Key.
|
|
824
|
+
* @summary 검수완료 전송
|
|
825
|
+
* @param {string} bidId
|
|
826
|
+
* @param {CompleteAcceptanceRequestDto} completeAcceptanceRequestDto
|
|
827
|
+
* @param {*} [options] Override http request option.
|
|
828
|
+
* @throws {RequiredError}
|
|
829
|
+
*/
|
|
830
|
+
completeAcceptance(bidId, completeAcceptanceRequestDto, options) {
|
|
831
|
+
return localVarFp.completeAcceptance(bidId, completeAcceptanceRequestDto, options).then((request) => request(axios, basePath));
|
|
832
|
+
},
|
|
833
|
+
/**
|
|
834
|
+
* V5 /contractDocumentRec 후속. scope contracts:read.
|
|
835
|
+
* @summary 계약서류 수신 조회
|
|
836
|
+
* @param {string} bidId
|
|
837
|
+
* @param {string} buyerId
|
|
838
|
+
* @param {*} [options] Override http request option.
|
|
839
|
+
* @throws {RequiredError}
|
|
840
|
+
*/
|
|
841
|
+
getBidContractDocuments(bidId, buyerId, options) {
|
|
842
|
+
return localVarFp.getBidContractDocuments(bidId, buyerId, options).then((request) => request(axios, basePath));
|
|
843
|
+
},
|
|
844
|
+
/**
|
|
845
|
+
* V5 /contractDocumentRec(bid_puchase_no_list) 후속. 공고번호 리스트를 한 번에 조회. 단건(GET :bidId/contract-documents)은 그대로 유지. scope contracts:read.
|
|
846
|
+
* @summary 계약서류 수신 배치 조회
|
|
847
|
+
* @param {BidContractDocumentsBatchRequestDto} bidContractDocumentsBatchRequestDto
|
|
848
|
+
* @param {*} [options] Override http request option.
|
|
849
|
+
* @throws {RequiredError}
|
|
850
|
+
*/
|
|
851
|
+
getBidContractDocumentsBatch(bidContractDocumentsBatchRequestDto, options) {
|
|
852
|
+
return localVarFp.getBidContractDocumentsBatch(bidContractDocumentsBatchRequestDto, options).then((request) => request(axios, basePath));
|
|
853
|
+
},
|
|
854
|
+
/**
|
|
855
|
+
* V5 /entendrec 후속. scope bids:read.
|
|
856
|
+
* @summary 입찰 결과 조회
|
|
857
|
+
* @param {string} bidId
|
|
858
|
+
* @param {string} buyerId
|
|
859
|
+
* @param {*} [options] Override http request option.
|
|
860
|
+
* @throws {RequiredError}
|
|
861
|
+
*/
|
|
862
|
+
getBidResults(bidId, buyerId, options) {
|
|
863
|
+
return localVarFp.getBidResults(bidId, buyerId, options).then((request) => request(axios, basePath));
|
|
864
|
+
},
|
|
865
|
+
/**
|
|
866
|
+
* V5 entendRec(bid_puchase_no_list) 후속 — 여러 공고 결과를 1회 호출로(additive, 단건 유지). 입력 순서를 보존한다. scope bids:read.
|
|
867
|
+
* @summary 입찰결과 배치 조회
|
|
868
|
+
* @param {BidResultsBatchRequestDto} bidResultsBatchRequestDto
|
|
869
|
+
* @param {*} [options] Override http request option.
|
|
870
|
+
* @throws {RequiredError}
|
|
871
|
+
*/
|
|
872
|
+
getBidResultsBatch(bidResultsBatchRequestDto, options) {
|
|
873
|
+
return localVarFp.getBidResultsBatch(bidResultsBatchRequestDto, options).then((request) => request(axios, basePath));
|
|
874
|
+
},
|
|
875
|
+
/**
|
|
876
|
+
* V5 /entendrec 정산(사업자·계좌·공급가액/부가세·응찰 품목내역) 후속. scope bids:read. 가격/신원 가시성 매트릭스와 직교한 ERP 정산 데이터 — read-only.
|
|
877
|
+
* @summary 입찰결과 정산정보 조회
|
|
878
|
+
* @param {string} bidId
|
|
879
|
+
* @param {*} [options] Override http request option.
|
|
880
|
+
* @throws {RequiredError}
|
|
881
|
+
*/
|
|
882
|
+
getBidSettlement(bidId, options) {
|
|
883
|
+
return localVarFp.getBidSettlement(bidId, options).then((request) => request(axios, basePath));
|
|
884
|
+
},
|
|
885
|
+
/**
|
|
886
|
+
* V5 /getGrm 후속. scope contracts:read.
|
|
887
|
+
* @summary 거래명세서 조회
|
|
888
|
+
* @param {string} bidId
|
|
889
|
+
* @param {number} paperCode
|
|
890
|
+
* @param {*} [options] Override http request option.
|
|
891
|
+
* @throws {RequiredError}
|
|
892
|
+
*/
|
|
893
|
+
getBidStatement(bidId, paperCode, options) {
|
|
894
|
+
return localVarFp.getBidStatement(bidId, paperCode, options).then((request) => request(axios, basePath));
|
|
895
|
+
},
|
|
150
896
|
/**
|
|
151
897
|
* ERP 연동 직전 회선·인증 endpoint 동작 확인용.
|
|
152
898
|
* @summary Partner API 헬스체크
|
|
@@ -156,6 +902,66 @@ export const PartnerV1ApiFactory = function (configuration, basePath, axios) {
|
|
|
156
902
|
healthControllerCheck(options) {
|
|
157
903
|
return localVarFp.healthControllerCheck(options).then((request) => request(axios, basePath));
|
|
158
904
|
},
|
|
905
|
+
/**
|
|
906
|
+
* 유찰 처리(V5 yoochal 패리티). 유찰사유 코드(1~8)·상세를 받아 공고를 유찰 상태로 전환. 스코프 `awards:write` + `Idempotency-Key` 헤더 필수.
|
|
907
|
+
* @summary 유찰 처리
|
|
908
|
+
* @param {MarkBidFailedRequestDto} markBidFailedRequestDto
|
|
909
|
+
* @param {*} [options] Override http request option.
|
|
910
|
+
* @throws {RequiredError}
|
|
911
|
+
*/
|
|
912
|
+
markBidFailed(markBidFailedRequestDto, options) {
|
|
913
|
+
return localVarFp.markBidFailed(markBidFailedRequestDto, options).then((request) => request(axios, basePath));
|
|
914
|
+
},
|
|
915
|
+
/**
|
|
916
|
+
* 낙찰 결과 등록. 스코프 `awards:write` + `Idempotency-Key` 헤더 필수.
|
|
917
|
+
* @summary 낙찰 결과 전송
|
|
918
|
+
* @param {RegisterAwardRequestDto} registerAwardRequestDto
|
|
919
|
+
* @param {*} [options] Override http request option.
|
|
920
|
+
* @throws {RequiredError}
|
|
921
|
+
*/
|
|
922
|
+
registerAward(registerAwardRequestDto, options) {
|
|
923
|
+
return localVarFp.registerAward(registerAwardRequestDto, options).then((request) => request(axios, basePath));
|
|
924
|
+
},
|
|
925
|
+
/**
|
|
926
|
+
* 입찰 정보 등록. 스코프 `bids:write` + `Idempotency-Key` 헤더 필수.
|
|
927
|
+
* @summary 입찰 정보 전송(등록)
|
|
928
|
+
* @param {CreateBidRequestDto} createBidRequestDto
|
|
929
|
+
* @param {*} [options] Override http request option.
|
|
930
|
+
* @throws {RequiredError}
|
|
931
|
+
*/
|
|
932
|
+
registerBid(createBidRequestDto, options) {
|
|
933
|
+
return localVarFp.registerBid(createBidRequestDto, options).then((request) => request(axios, basePath));
|
|
934
|
+
},
|
|
935
|
+
/**
|
|
936
|
+
* V5 /splitInvoiceRequest 후속. scope invoices:write + Idempotency-Key.
|
|
937
|
+
* @summary 계산서 분할 발급 청구
|
|
938
|
+
* @param {RequestSplitInvoiceRequestDto} requestSplitInvoiceRequestDto
|
|
939
|
+
* @param {*} [options] Override http request option.
|
|
940
|
+
* @throws {RequiredError}
|
|
941
|
+
*/
|
|
942
|
+
requestSplitInvoice(requestSplitInvoiceRequestDto, options) {
|
|
943
|
+
return localVarFp.requestSplitInvoice(requestSplitInvoiceRequestDto, options).then((request) => request(axios, basePath));
|
|
944
|
+
},
|
|
945
|
+
/**
|
|
946
|
+
* 협상에의한계약(H/K) 응찰자별 기술/가격 점수 일괄 입력(V5 nego-eval 패리티). complete=true 면 평가완료 게이트까지 적용해 낙찰 진입 가능. 스코프 `awards:write` + `Idempotency-Key` 헤더 필수.
|
|
947
|
+
* @summary 협상(H/K) 점수평가
|
|
948
|
+
* @param {SubmitNegotiationScoresRequestDto} submitNegotiationScoresRequestDto
|
|
949
|
+
* @param {*} [options] Override http request option.
|
|
950
|
+
* @throws {RequiredError}
|
|
951
|
+
*/
|
|
952
|
+
submitNegotiationScores(submitNegotiationScoresRequestDto, options) {
|
|
953
|
+
return localVarFp.submitNegotiationScores(submitNegotiationScoresRequestDto, options).then((request) => request(axios, basePath));
|
|
954
|
+
},
|
|
955
|
+
/**
|
|
956
|
+
* 스코프 `files:write` 필수. base64 또는 url 중 하나를 제출한다.
|
|
957
|
+
* @summary 입찰 첨부파일 업로드(base64 또는 url) → fileKey
|
|
958
|
+
* @param {UploadFileRequestDto} uploadFileRequestDto
|
|
959
|
+
* @param {*} [options] Override http request option.
|
|
960
|
+
* @throws {RequiredError}
|
|
961
|
+
*/
|
|
962
|
+
uploadFile(uploadFileRequestDto, options) {
|
|
963
|
+
return localVarFp.uploadFile(uploadFileRequestDto, options).then((request) => request(axios, basePath));
|
|
964
|
+
},
|
|
159
965
|
};
|
|
160
966
|
};
|
|
161
967
|
/**
|
|
@@ -172,6 +978,80 @@ export class PartnerV1Api extends BaseAPI {
|
|
|
172
978
|
bidsControllerFindOne(bidId, options) {
|
|
173
979
|
return PartnerV1ApiFp(this.configuration).bidsControllerFindOne(bidId, options).then((request) => request(this.axios, this.basePath));
|
|
174
980
|
}
|
|
981
|
+
/**
|
|
982
|
+
* V5 /acceptanceCompleteSend 후속. scope contracts:write + Idempotency-Key.
|
|
983
|
+
* @summary 검수완료 전송
|
|
984
|
+
* @param {string} bidId
|
|
985
|
+
* @param {CompleteAcceptanceRequestDto} completeAcceptanceRequestDto
|
|
986
|
+
* @param {*} [options] Override http request option.
|
|
987
|
+
* @throws {RequiredError}
|
|
988
|
+
*/
|
|
989
|
+
completeAcceptance(bidId, completeAcceptanceRequestDto, options) {
|
|
990
|
+
return PartnerV1ApiFp(this.configuration).completeAcceptance(bidId, completeAcceptanceRequestDto, options).then((request) => request(this.axios, this.basePath));
|
|
991
|
+
}
|
|
992
|
+
/**
|
|
993
|
+
* V5 /contractDocumentRec 후속. scope contracts:read.
|
|
994
|
+
* @summary 계약서류 수신 조회
|
|
995
|
+
* @param {string} bidId
|
|
996
|
+
* @param {string} buyerId
|
|
997
|
+
* @param {*} [options] Override http request option.
|
|
998
|
+
* @throws {RequiredError}
|
|
999
|
+
*/
|
|
1000
|
+
getBidContractDocuments(bidId, buyerId, options) {
|
|
1001
|
+
return PartnerV1ApiFp(this.configuration).getBidContractDocuments(bidId, buyerId, options).then((request) => request(this.axios, this.basePath));
|
|
1002
|
+
}
|
|
1003
|
+
/**
|
|
1004
|
+
* V5 /contractDocumentRec(bid_puchase_no_list) 후속. 공고번호 리스트를 한 번에 조회. 단건(GET :bidId/contract-documents)은 그대로 유지. scope contracts:read.
|
|
1005
|
+
* @summary 계약서류 수신 배치 조회
|
|
1006
|
+
* @param {BidContractDocumentsBatchRequestDto} bidContractDocumentsBatchRequestDto
|
|
1007
|
+
* @param {*} [options] Override http request option.
|
|
1008
|
+
* @throws {RequiredError}
|
|
1009
|
+
*/
|
|
1010
|
+
getBidContractDocumentsBatch(bidContractDocumentsBatchRequestDto, options) {
|
|
1011
|
+
return PartnerV1ApiFp(this.configuration).getBidContractDocumentsBatch(bidContractDocumentsBatchRequestDto, options).then((request) => request(this.axios, this.basePath));
|
|
1012
|
+
}
|
|
1013
|
+
/**
|
|
1014
|
+
* V5 /entendrec 후속. scope bids:read.
|
|
1015
|
+
* @summary 입찰 결과 조회
|
|
1016
|
+
* @param {string} bidId
|
|
1017
|
+
* @param {string} buyerId
|
|
1018
|
+
* @param {*} [options] Override http request option.
|
|
1019
|
+
* @throws {RequiredError}
|
|
1020
|
+
*/
|
|
1021
|
+
getBidResults(bidId, buyerId, options) {
|
|
1022
|
+
return PartnerV1ApiFp(this.configuration).getBidResults(bidId, buyerId, options).then((request) => request(this.axios, this.basePath));
|
|
1023
|
+
}
|
|
1024
|
+
/**
|
|
1025
|
+
* V5 entendRec(bid_puchase_no_list) 후속 — 여러 공고 결과를 1회 호출로(additive, 단건 유지). 입력 순서를 보존한다. scope bids:read.
|
|
1026
|
+
* @summary 입찰결과 배치 조회
|
|
1027
|
+
* @param {BidResultsBatchRequestDto} bidResultsBatchRequestDto
|
|
1028
|
+
* @param {*} [options] Override http request option.
|
|
1029
|
+
* @throws {RequiredError}
|
|
1030
|
+
*/
|
|
1031
|
+
getBidResultsBatch(bidResultsBatchRequestDto, options) {
|
|
1032
|
+
return PartnerV1ApiFp(this.configuration).getBidResultsBatch(bidResultsBatchRequestDto, options).then((request) => request(this.axios, this.basePath));
|
|
1033
|
+
}
|
|
1034
|
+
/**
|
|
1035
|
+
* V5 /entendrec 정산(사업자·계좌·공급가액/부가세·응찰 품목내역) 후속. scope bids:read. 가격/신원 가시성 매트릭스와 직교한 ERP 정산 데이터 — read-only.
|
|
1036
|
+
* @summary 입찰결과 정산정보 조회
|
|
1037
|
+
* @param {string} bidId
|
|
1038
|
+
* @param {*} [options] Override http request option.
|
|
1039
|
+
* @throws {RequiredError}
|
|
1040
|
+
*/
|
|
1041
|
+
getBidSettlement(bidId, options) {
|
|
1042
|
+
return PartnerV1ApiFp(this.configuration).getBidSettlement(bidId, options).then((request) => request(this.axios, this.basePath));
|
|
1043
|
+
}
|
|
1044
|
+
/**
|
|
1045
|
+
* V5 /getGrm 후속. scope contracts:read.
|
|
1046
|
+
* @summary 거래명세서 조회
|
|
1047
|
+
* @param {string} bidId
|
|
1048
|
+
* @param {number} paperCode
|
|
1049
|
+
* @param {*} [options] Override http request option.
|
|
1050
|
+
* @throws {RequiredError}
|
|
1051
|
+
*/
|
|
1052
|
+
getBidStatement(bidId, paperCode, options) {
|
|
1053
|
+
return PartnerV1ApiFp(this.configuration).getBidStatement(bidId, paperCode, options).then((request) => request(this.axios, this.basePath));
|
|
1054
|
+
}
|
|
175
1055
|
/**
|
|
176
1056
|
* ERP 연동 직전 회선·인증 endpoint 동작 확인용.
|
|
177
1057
|
* @summary Partner API 헬스체크
|
|
@@ -181,4 +1061,64 @@ export class PartnerV1Api extends BaseAPI {
|
|
|
181
1061
|
healthControllerCheck(options) {
|
|
182
1062
|
return PartnerV1ApiFp(this.configuration).healthControllerCheck(options).then((request) => request(this.axios, this.basePath));
|
|
183
1063
|
}
|
|
1064
|
+
/**
|
|
1065
|
+
* 유찰 처리(V5 yoochal 패리티). 유찰사유 코드(1~8)·상세를 받아 공고를 유찰 상태로 전환. 스코프 `awards:write` + `Idempotency-Key` 헤더 필수.
|
|
1066
|
+
* @summary 유찰 처리
|
|
1067
|
+
* @param {MarkBidFailedRequestDto} markBidFailedRequestDto
|
|
1068
|
+
* @param {*} [options] Override http request option.
|
|
1069
|
+
* @throws {RequiredError}
|
|
1070
|
+
*/
|
|
1071
|
+
markBidFailed(markBidFailedRequestDto, options) {
|
|
1072
|
+
return PartnerV1ApiFp(this.configuration).markBidFailed(markBidFailedRequestDto, options).then((request) => request(this.axios, this.basePath));
|
|
1073
|
+
}
|
|
1074
|
+
/**
|
|
1075
|
+
* 낙찰 결과 등록. 스코프 `awards:write` + `Idempotency-Key` 헤더 필수.
|
|
1076
|
+
* @summary 낙찰 결과 전송
|
|
1077
|
+
* @param {RegisterAwardRequestDto} registerAwardRequestDto
|
|
1078
|
+
* @param {*} [options] Override http request option.
|
|
1079
|
+
* @throws {RequiredError}
|
|
1080
|
+
*/
|
|
1081
|
+
registerAward(registerAwardRequestDto, options) {
|
|
1082
|
+
return PartnerV1ApiFp(this.configuration).registerAward(registerAwardRequestDto, options).then((request) => request(this.axios, this.basePath));
|
|
1083
|
+
}
|
|
1084
|
+
/**
|
|
1085
|
+
* 입찰 정보 등록. 스코프 `bids:write` + `Idempotency-Key` 헤더 필수.
|
|
1086
|
+
* @summary 입찰 정보 전송(등록)
|
|
1087
|
+
* @param {CreateBidRequestDto} createBidRequestDto
|
|
1088
|
+
* @param {*} [options] Override http request option.
|
|
1089
|
+
* @throws {RequiredError}
|
|
1090
|
+
*/
|
|
1091
|
+
registerBid(createBidRequestDto, options) {
|
|
1092
|
+
return PartnerV1ApiFp(this.configuration).registerBid(createBidRequestDto, options).then((request) => request(this.axios, this.basePath));
|
|
1093
|
+
}
|
|
1094
|
+
/**
|
|
1095
|
+
* V5 /splitInvoiceRequest 후속. scope invoices:write + Idempotency-Key.
|
|
1096
|
+
* @summary 계산서 분할 발급 청구
|
|
1097
|
+
* @param {RequestSplitInvoiceRequestDto} requestSplitInvoiceRequestDto
|
|
1098
|
+
* @param {*} [options] Override http request option.
|
|
1099
|
+
* @throws {RequiredError}
|
|
1100
|
+
*/
|
|
1101
|
+
requestSplitInvoice(requestSplitInvoiceRequestDto, options) {
|
|
1102
|
+
return PartnerV1ApiFp(this.configuration).requestSplitInvoice(requestSplitInvoiceRequestDto, options).then((request) => request(this.axios, this.basePath));
|
|
1103
|
+
}
|
|
1104
|
+
/**
|
|
1105
|
+
* 협상에의한계약(H/K) 응찰자별 기술/가격 점수 일괄 입력(V5 nego-eval 패리티). complete=true 면 평가완료 게이트까지 적용해 낙찰 진입 가능. 스코프 `awards:write` + `Idempotency-Key` 헤더 필수.
|
|
1106
|
+
* @summary 협상(H/K) 점수평가
|
|
1107
|
+
* @param {SubmitNegotiationScoresRequestDto} submitNegotiationScoresRequestDto
|
|
1108
|
+
* @param {*} [options] Override http request option.
|
|
1109
|
+
* @throws {RequiredError}
|
|
1110
|
+
*/
|
|
1111
|
+
submitNegotiationScores(submitNegotiationScoresRequestDto, options) {
|
|
1112
|
+
return PartnerV1ApiFp(this.configuration).submitNegotiationScores(submitNegotiationScoresRequestDto, options).then((request) => request(this.axios, this.basePath));
|
|
1113
|
+
}
|
|
1114
|
+
/**
|
|
1115
|
+
* 스코프 `files:write` 필수. base64 또는 url 중 하나를 제출한다.
|
|
1116
|
+
* @summary 입찰 첨부파일 업로드(base64 또는 url) → fileKey
|
|
1117
|
+
* @param {UploadFileRequestDto} uploadFileRequestDto
|
|
1118
|
+
* @param {*} [options] Override http request option.
|
|
1119
|
+
* @throws {RequiredError}
|
|
1120
|
+
*/
|
|
1121
|
+
uploadFile(uploadFileRequestDto, options) {
|
|
1122
|
+
return PartnerV1ApiFp(this.configuration).uploadFile(uploadFileRequestDto, options).then((request) => request(this.axios, this.basePath));
|
|
1123
|
+
}
|
|
184
1124
|
}
|