@cmarket/partner-sdk 0.6.0 → 0.6.2

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 CHANGED
@@ -188,7 +188,7 @@ public class Quickstart {
188
188
 
189
189
  ---
190
190
 
191
- ## @cmarket/partner-sdk@0.6.0
191
+ ## @cmarket/partner-sdk@0.6.2
192
192
 
193
193
  This generator creates TypeScript/JavaScript client that utilizes [axios](https://github.com/axios/axios). The generated Node module can be used in the following environments:
194
194
 
@@ -226,7 +226,7 @@ navigate to the folder of your consuming project and run one of the following co
226
226
  _published:_
227
227
 
228
228
  ```
229
- npm install @cmarket/partner-sdk@0.6.0 --save
229
+ npm install @cmarket/partner-sdk@0.6.2 --save
230
230
  ```
231
231
 
232
232
  _unPublished (not recommended):_
@@ -251,6 +251,7 @@ Class | Method | HTTP request | Description
251
251
  *PartnerV1Api* | [**getBidStatement**](docs/PartnerV1Api.md#getbidstatement) | **GET** /v1/bids/{bidId}/statement | 거래명세서 조회
252
252
  *PartnerV1Api* | [**healthControllerCheck**](docs/PartnerV1Api.md#healthcontrollercheck) | **GET** /v1/health | Partner API 헬스체크
253
253
  *PartnerV1Api* | [**markBidFailed**](docs/PartnerV1Api.md#markbidfailed) | **POST** /v1/awards/fail | 유찰 처리
254
+ *PartnerV1Api* | [**recordParityResult**](docs/PartnerV1Api.md#recordparityresult) | **POST** /v1/parity-results | V5→V6 마이그레이션 패리티 결과 기록
254
255
  *PartnerV1Api* | [**registerAward**](docs/PartnerV1Api.md#registeraward) | **POST** /v1/awards | 낙찰 결과 전송
255
256
  *PartnerV1Api* | [**registerBid**](docs/PartnerV1Api.md#registerbid) | **POST** /v1/bids | 입찰 정보 전송(등록)
256
257
  *PartnerV1Api* | [**requestSplitInvoice**](docs/PartnerV1Api.md#requestsplitinvoice) | **POST** /v1/invoices/split-requests | 계산서 분할 발급 청구
@@ -115,7 +115,7 @@ export const PartnerV1ApiAxiosParamCreator = function (configuration?: Configura
115
115
  * V5 /contractDocumentRec 후속. scope contracts:read.
116
116
  * @summary 계약서류 수신 조회
117
117
  * @param {string} bidId
118
- * @param {string} buyerId
118
+ * @param {string} buyerId 공고 명의 회원 ID(b2b_member.member_id).
119
119
  * @param {*} [options] Override http request option.
120
120
  * @throws {RequiredError}
121
121
  */
@@ -199,7 +199,7 @@ export const PartnerV1ApiAxiosParamCreator = function (configuration?: Configura
199
199
  * V5 /entendrec 후속. scope bids:read.
200
200
  * @summary 입찰 결과 조회
201
201
  * @param {string} bidId
202
- * @param {string} buyerId
202
+ * @param {string} buyerId 공고 명의 회원 ID (멀티테넌트 가시성 키).
203
203
  * @param {*} [options] Override http request option.
204
204
  * @throws {RequiredError}
205
205
  */
@@ -431,6 +431,44 @@ export const PartnerV1ApiAxiosParamCreator = function (configuration?: Configura
431
431
  options: localVarRequestOptions,
432
432
  };
433
433
  },
434
+ /**
435
+ * V5↔V6 응답 비교 불일치(verdict)를 적재한다. scope parity:write. V5 cutover 시 제거 예정(한시적 계약).
436
+ * @summary V5→V6 마이그레이션 패리티 결과 기록
437
+ * @param {object} body
438
+ * @param {*} [options] Override http request option.
439
+ * @throws {RequiredError}
440
+ */
441
+ recordParityResult: async (body: object, options: RawAxiosRequestConfig = {}): Promise<RequestArgs> => {
442
+ // verify required parameter 'body' is not null or undefined
443
+ assertParamExists('recordParityResult', 'body', body)
444
+ const localVarPath = `/v1/parity-results`;
445
+ // use dummy base URL string because the URL constructor only accepts absolute URLs.
446
+ const localVarUrlObj = new URL(localVarPath, DUMMY_BASE_URL);
447
+ let baseOptions;
448
+ if (configuration) {
449
+ baseOptions = configuration.baseOptions;
450
+ }
451
+
452
+ const localVarRequestOptions = { method: 'POST', ...baseOptions, ...options};
453
+ const localVarHeaderParameter = {} as any;
454
+ const localVarQueryParameter = {} as any;
455
+
456
+ // authentication partner-oauth2 required
457
+ // http bearer authentication required
458
+ await setBearerAuthToObject(localVarHeaderParameter, configuration)
459
+
460
+ localVarHeaderParameter['Content-Type'] = 'application/json';
461
+
462
+ setSearchParams(localVarUrlObj, localVarQueryParameter);
463
+ let headersFromBaseOptions = baseOptions && baseOptions.headers ? baseOptions.headers : {};
464
+ localVarRequestOptions.headers = {...localVarHeaderParameter, ...headersFromBaseOptions, ...options.headers};
465
+ localVarRequestOptions.data = serializeDataIfNeeded(body, localVarRequestOptions, configuration)
466
+
467
+ return {
468
+ url: toPathString(localVarUrlObj),
469
+ options: localVarRequestOptions,
470
+ };
471
+ },
434
472
  /**
435
473
  * 낙찰 결과 등록. 스코프 `awards:write` + `Idempotency-Key` 헤더 필수.
436
474
  * @summary 낙찰 결과 전송
@@ -588,7 +626,7 @@ export const PartnerV1ApiAxiosParamCreator = function (configuration?: Configura
588
626
  };
589
627
  },
590
628
  /**
591
- * 스코프 `files:write` 필수. base64 또는 url 중 하나를 제출한다.
629
+ * 스코프 `files:write` + `Idempotency-Key` 헤더 필수. base64 또는 url 중 정확히 하나를 제출한다.
592
630
  * @summary 입찰 첨부파일 업로드(base64 또는 url) → fileKey
593
631
  * @param {UploadFileRequestDto} uploadFileRequestDto
594
632
  * @param {*} [options] Override http request option.
@@ -653,7 +691,7 @@ export const PartnerV1ApiFp = function(configuration?: Configuration) {
653
691
  * V5 /contractDocumentRec 후속. scope contracts:read.
654
692
  * @summary 계약서류 수신 조회
655
693
  * @param {string} bidId
656
- * @param {string} buyerId
694
+ * @param {string} buyerId 공고 명의 회원 ID(b2b_member.member_id).
657
695
  * @param {*} [options] Override http request option.
658
696
  * @throws {RequiredError}
659
697
  */
@@ -680,7 +718,7 @@ export const PartnerV1ApiFp = function(configuration?: Configuration) {
680
718
  * V5 /entendrec 후속. scope bids:read.
681
719
  * @summary 입찰 결과 조회
682
720
  * @param {string} bidId
683
- * @param {string} buyerId
721
+ * @param {string} buyerId 공고 명의 회원 ID (멀티테넌트 가시성 키).
684
722
  * @param {*} [options] Override http request option.
685
723
  * @throws {RequiredError}
686
724
  */
@@ -755,6 +793,19 @@ export const PartnerV1ApiFp = function(configuration?: Configuration) {
755
793
  const localVarOperationServerBasePath = operationServerMap['PartnerV1Api.markBidFailed']?.[localVarOperationServerIndex]?.url;
756
794
  return (axios, basePath) => createRequestFunction(localVarAxiosArgs, globalAxios, BASE_PATH, configuration)(axios, localVarOperationServerBasePath || basePath);
757
795
  },
796
+ /**
797
+ * V5↔V6 응답 비교 불일치(verdict)를 적재한다. scope parity:write. V5 cutover 시 제거 예정(한시적 계약).
798
+ * @summary V5→V6 마이그레이션 패리티 결과 기록
799
+ * @param {object} body
800
+ * @param {*} [options] Override http request option.
801
+ * @throws {RequiredError}
802
+ */
803
+ async recordParityResult(body: object, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<void>> {
804
+ const localVarAxiosArgs = await localVarAxiosParamCreator.recordParityResult(body, options);
805
+ const localVarOperationServerIndex = configuration?.serverIndex ?? 0;
806
+ const localVarOperationServerBasePath = operationServerMap['PartnerV1Api.recordParityResult']?.[localVarOperationServerIndex]?.url;
807
+ return (axios, basePath) => createRequestFunction(localVarAxiosArgs, globalAxios, BASE_PATH, configuration)(axios, localVarOperationServerBasePath || basePath);
808
+ },
758
809
  /**
759
810
  * 낙찰 결과 등록. 스코프 `awards:write` + `Idempotency-Key` 헤더 필수.
760
811
  * @summary 낙찰 결과 전송
@@ -808,7 +859,7 @@ export const PartnerV1ApiFp = function(configuration?: Configuration) {
808
859
  return (axios, basePath) => createRequestFunction(localVarAxiosArgs, globalAxios, BASE_PATH, configuration)(axios, localVarOperationServerBasePath || basePath);
809
860
  },
810
861
  /**
811
- * 스코프 `files:write` 필수. base64 또는 url 중 하나를 제출한다.
862
+ * 스코프 `files:write` + `Idempotency-Key` 헤더 필수. base64 또는 url 중 정확히 하나를 제출한다.
812
863
  * @summary 입찰 첨부파일 업로드(base64 또는 url) → fileKey
813
864
  * @param {UploadFileRequestDto} uploadFileRequestDto
814
865
  * @param {*} [options] Override http request option.
@@ -844,7 +895,7 @@ export const PartnerV1ApiFactory = function (configuration?: Configuration, base
844
895
  * V5 /contractDocumentRec 후속. scope contracts:read.
845
896
  * @summary 계약서류 수신 조회
846
897
  * @param {string} bidId
847
- * @param {string} buyerId
898
+ * @param {string} buyerId 공고 명의 회원 ID(b2b_member.member_id).
848
899
  * @param {*} [options] Override http request option.
849
900
  * @throws {RequiredError}
850
901
  */
@@ -865,7 +916,7 @@ export const PartnerV1ApiFactory = function (configuration?: Configuration, base
865
916
  * V5 /entendrec 후속. scope bids:read.
866
917
  * @summary 입찰 결과 조회
867
918
  * @param {string} bidId
868
- * @param {string} buyerId
919
+ * @param {string} buyerId 공고 명의 회원 ID (멀티테넌트 가시성 키).
869
920
  * @param {*} [options] Override http request option.
870
921
  * @throws {RequiredError}
871
922
  */
@@ -922,6 +973,16 @@ export const PartnerV1ApiFactory = function (configuration?: Configuration, base
922
973
  markBidFailed(markBidFailedRequestDto: MarkBidFailedRequestDto, options?: RawAxiosRequestConfig): AxiosPromise<BidFailedResponseDto> {
923
974
  return localVarFp.markBidFailed(markBidFailedRequestDto, options).then((request) => request(axios, basePath));
924
975
  },
976
+ /**
977
+ * V5↔V6 응답 비교 불일치(verdict)를 적재한다. scope parity:write. V5 cutover 시 제거 예정(한시적 계약).
978
+ * @summary V5→V6 마이그레이션 패리티 결과 기록
979
+ * @param {object} body
980
+ * @param {*} [options] Override http request option.
981
+ * @throws {RequiredError}
982
+ */
983
+ recordParityResult(body: object, options?: RawAxiosRequestConfig): AxiosPromise<void> {
984
+ return localVarFp.recordParityResult(body, options).then((request) => request(axios, basePath));
985
+ },
925
986
  /**
926
987
  * 낙찰 결과 등록. 스코프 `awards:write` + `Idempotency-Key` 헤더 필수.
927
988
  * @summary 낙찰 결과 전송
@@ -963,7 +1024,7 @@ export const PartnerV1ApiFactory = function (configuration?: Configuration, base
963
1024
  return localVarFp.submitNegotiationScores(submitNegotiationScoresRequestDto, options).then((request) => request(axios, basePath));
964
1025
  },
965
1026
  /**
966
- * 스코프 `files:write` 필수. base64 또는 url 중 하나를 제출한다.
1027
+ * 스코프 `files:write` + `Idempotency-Key` 헤더 필수. base64 또는 url 중 정확히 하나를 제출한다.
967
1028
  * @summary 입찰 첨부파일 업로드(base64 또는 url) → fileKey
968
1029
  * @param {UploadFileRequestDto} uploadFileRequestDto
969
1030
  * @param {*} [options] Override http request option.
@@ -995,7 +1056,7 @@ export class PartnerV1Api extends BaseAPI {
995
1056
  * V5 /contractDocumentRec 후속. scope contracts:read.
996
1057
  * @summary 계약서류 수신 조회
997
1058
  * @param {string} bidId
998
- * @param {string} buyerId
1059
+ * @param {string} buyerId 공고 명의 회원 ID(b2b_member.member_id).
999
1060
  * @param {*} [options] Override http request option.
1000
1061
  * @throws {RequiredError}
1001
1062
  */
@@ -1018,7 +1079,7 @@ export class PartnerV1Api extends BaseAPI {
1018
1079
  * V5 /entendrec 후속. scope bids:read.
1019
1080
  * @summary 입찰 결과 조회
1020
1081
  * @param {string} bidId
1021
- * @param {string} buyerId
1082
+ * @param {string} buyerId 공고 명의 회원 ID (멀티테넌트 가시성 키).
1022
1083
  * @param {*} [options] Override http request option.
1023
1084
  * @throws {RequiredError}
1024
1085
  */
@@ -1081,6 +1142,17 @@ export class PartnerV1Api extends BaseAPI {
1081
1142
  return PartnerV1ApiFp(this.configuration).markBidFailed(markBidFailedRequestDto, options).then((request) => request(this.axios, this.basePath));
1082
1143
  }
1083
1144
 
1145
+ /**
1146
+ * V5↔V6 응답 비교 불일치(verdict)를 적재한다. scope parity:write. V5 cutover 시 제거 예정(한시적 계약).
1147
+ * @summary V5→V6 마이그레이션 패리티 결과 기록
1148
+ * @param {object} body
1149
+ * @param {*} [options] Override http request option.
1150
+ * @throws {RequiredError}
1151
+ */
1152
+ public recordParityResult(body: object, options?: RawAxiosRequestConfig) {
1153
+ return PartnerV1ApiFp(this.configuration).recordParityResult(body, options).then((request) => request(this.axios, this.basePath));
1154
+ }
1155
+
1084
1156
  /**
1085
1157
  * 낙찰 결과 등록. 스코프 `awards:write` + `Idempotency-Key` 헤더 필수.
1086
1158
  * @summary 낙찰 결과 전송
@@ -1126,7 +1198,7 @@ export class PartnerV1Api extends BaseAPI {
1126
1198
  }
1127
1199
 
1128
1200
  /**
1129
- * 스코프 `files:write` 필수. base64 또는 url 중 하나를 제출한다.
1201
+ * 스코프 `files:write` + `Idempotency-Key` 헤더 필수. base64 또는 url 중 정확히 하나를 제출한다.
1130
1202
  * @summary 입찰 첨부파일 업로드(base64 또는 url) → fileKey
1131
1203
  * @param {UploadFileRequestDto} uploadFileRequestDto
1132
1204
  * @param {*} [options] Override http request option.
@@ -50,7 +50,7 @@ export declare const PartnerV1ApiAxiosParamCreator: (configuration?: Configurati
50
50
  * V5 /contractDocumentRec 후속. scope contracts:read.
51
51
  * @summary 계약서류 수신 조회
52
52
  * @param {string} bidId
53
- * @param {string} buyerId
53
+ * @param {string} buyerId 공고 명의 회원 ID(b2b_member.member_id).
54
54
  * @param {*} [options] Override http request option.
55
55
  * @throws {RequiredError}
56
56
  */
@@ -67,7 +67,7 @@ export declare const PartnerV1ApiAxiosParamCreator: (configuration?: Configurati
67
67
  * V5 /entendrec 후속. scope bids:read.
68
68
  * @summary 입찰 결과 조회
69
69
  * @param {string} bidId
70
- * @param {string} buyerId
70
+ * @param {string} buyerId 공고 명의 회원 ID (멀티테넌트 가시성 키).
71
71
  * @param {*} [options] Override http request option.
72
72
  * @throws {RequiredError}
73
73
  */
@@ -112,6 +112,14 @@ export declare const PartnerV1ApiAxiosParamCreator: (configuration?: Configurati
112
112
  * @throws {RequiredError}
113
113
  */
114
114
  markBidFailed: (markBidFailedRequestDto: MarkBidFailedRequestDto, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
115
+ /**
116
+ * V5↔V6 응답 비교 불일치(verdict)를 적재한다. scope parity:write. V5 cutover 시 제거 예정(한시적 계약).
117
+ * @summary V5→V6 마이그레이션 패리티 결과 기록
118
+ * @param {object} body
119
+ * @param {*} [options] Override http request option.
120
+ * @throws {RequiredError}
121
+ */
122
+ recordParityResult: (body: object, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
115
123
  /**
116
124
  * 낙찰 결과 등록. 스코프 `awards:write` + `Idempotency-Key` 헤더 필수.
117
125
  * @summary 낙찰 결과 전송
@@ -145,7 +153,7 @@ export declare const PartnerV1ApiAxiosParamCreator: (configuration?: Configurati
145
153
  */
146
154
  submitNegotiationScores: (submitNegotiationScoresRequestDto: SubmitNegotiationScoresRequestDto, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
147
155
  /**
148
- * 스코프 `files:write` 필수. base64 또는 url 중 하나를 제출한다.
156
+ * 스코프 `files:write` + `Idempotency-Key` 헤더 필수. base64 또는 url 중 정확히 하나를 제출한다.
149
157
  * @summary 입찰 첨부파일 업로드(base64 또는 url) → fileKey
150
158
  * @param {UploadFileRequestDto} uploadFileRequestDto
151
159
  * @param {*} [options] Override http request option.
@@ -170,7 +178,7 @@ export declare const PartnerV1ApiFp: (configuration?: Configuration) => {
170
178
  * V5 /contractDocumentRec 후속. scope contracts:read.
171
179
  * @summary 계약서류 수신 조회
172
180
  * @param {string} bidId
173
- * @param {string} buyerId
181
+ * @param {string} buyerId 공고 명의 회원 ID(b2b_member.member_id).
174
182
  * @param {*} [options] Override http request option.
175
183
  * @throws {RequiredError}
176
184
  */
@@ -187,7 +195,7 @@ export declare const PartnerV1ApiFp: (configuration?: Configuration) => {
187
195
  * V5 /entendrec 후속. scope bids:read.
188
196
  * @summary 입찰 결과 조회
189
197
  * @param {string} bidId
190
- * @param {string} buyerId
198
+ * @param {string} buyerId 공고 명의 회원 ID (멀티테넌트 가시성 키).
191
199
  * @param {*} [options] Override http request option.
192
200
  * @throws {RequiredError}
193
201
  */
@@ -232,6 +240,14 @@ export declare const PartnerV1ApiFp: (configuration?: Configuration) => {
232
240
  * @throws {RequiredError}
233
241
  */
234
242
  markBidFailed(markBidFailedRequestDto: MarkBidFailedRequestDto, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<BidFailedResponseDto>>;
243
+ /**
244
+ * V5↔V6 응답 비교 불일치(verdict)를 적재한다. scope parity:write. V5 cutover 시 제거 예정(한시적 계약).
245
+ * @summary V5→V6 마이그레이션 패리티 결과 기록
246
+ * @param {object} body
247
+ * @param {*} [options] Override http request option.
248
+ * @throws {RequiredError}
249
+ */
250
+ recordParityResult(body: object, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<void>>;
235
251
  /**
236
252
  * 낙찰 결과 등록. 스코프 `awards:write` + `Idempotency-Key` 헤더 필수.
237
253
  * @summary 낙찰 결과 전송
@@ -265,7 +281,7 @@ export declare const PartnerV1ApiFp: (configuration?: Configuration) => {
265
281
  */
266
282
  submitNegotiationScores(submitNegotiationScoresRequestDto: SubmitNegotiationScoresRequestDto, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<NegotiationScoredResponseDto>>;
267
283
  /**
268
- * 스코프 `files:write` 필수. base64 또는 url 중 하나를 제출한다.
284
+ * 스코프 `files:write` + `Idempotency-Key` 헤더 필수. base64 또는 url 중 정확히 하나를 제출한다.
269
285
  * @summary 입찰 첨부파일 업로드(base64 또는 url) → fileKey
270
286
  * @param {UploadFileRequestDto} uploadFileRequestDto
271
287
  * @param {*} [options] Override http request option.
@@ -290,7 +306,7 @@ export declare const PartnerV1ApiFactory: (configuration?: Configuration, basePa
290
306
  * V5 /contractDocumentRec 후속. scope contracts:read.
291
307
  * @summary 계약서류 수신 조회
292
308
  * @param {string} bidId
293
- * @param {string} buyerId
309
+ * @param {string} buyerId 공고 명의 회원 ID(b2b_member.member_id).
294
310
  * @param {*} [options] Override http request option.
295
311
  * @throws {RequiredError}
296
312
  */
@@ -307,7 +323,7 @@ export declare const PartnerV1ApiFactory: (configuration?: Configuration, basePa
307
323
  * V5 /entendrec 후속. scope bids:read.
308
324
  * @summary 입찰 결과 조회
309
325
  * @param {string} bidId
310
- * @param {string} buyerId
326
+ * @param {string} buyerId 공고 명의 회원 ID (멀티테넌트 가시성 키).
311
327
  * @param {*} [options] Override http request option.
312
328
  * @throws {RequiredError}
313
329
  */
@@ -352,6 +368,14 @@ export declare const PartnerV1ApiFactory: (configuration?: Configuration, basePa
352
368
  * @throws {RequiredError}
353
369
  */
354
370
  markBidFailed(markBidFailedRequestDto: MarkBidFailedRequestDto, options?: RawAxiosRequestConfig): AxiosPromise<BidFailedResponseDto>;
371
+ /**
372
+ * V5↔V6 응답 비교 불일치(verdict)를 적재한다. scope parity:write. V5 cutover 시 제거 예정(한시적 계약).
373
+ * @summary V5→V6 마이그레이션 패리티 결과 기록
374
+ * @param {object} body
375
+ * @param {*} [options] Override http request option.
376
+ * @throws {RequiredError}
377
+ */
378
+ recordParityResult(body: object, options?: RawAxiosRequestConfig): AxiosPromise<void>;
355
379
  /**
356
380
  * 낙찰 결과 등록. 스코프 `awards:write` + `Idempotency-Key` 헤더 필수.
357
381
  * @summary 낙찰 결과 전송
@@ -385,7 +409,7 @@ export declare const PartnerV1ApiFactory: (configuration?: Configuration, basePa
385
409
  */
386
410
  submitNegotiationScores(submitNegotiationScoresRequestDto: SubmitNegotiationScoresRequestDto, options?: RawAxiosRequestConfig): AxiosPromise<NegotiationScoredResponseDto>;
387
411
  /**
388
- * 스코프 `files:write` 필수. base64 또는 url 중 하나를 제출한다.
412
+ * 스코프 `files:write` + `Idempotency-Key` 헤더 필수. base64 또는 url 중 정확히 하나를 제출한다.
389
413
  * @summary 입찰 첨부파일 업로드(base64 또는 url) → fileKey
390
414
  * @param {UploadFileRequestDto} uploadFileRequestDto
391
415
  * @param {*} [options] Override http request option.
@@ -410,7 +434,7 @@ export declare class PartnerV1Api extends BaseAPI {
410
434
  * V5 /contractDocumentRec 후속. scope contracts:read.
411
435
  * @summary 계약서류 수신 조회
412
436
  * @param {string} bidId
413
- * @param {string} buyerId
437
+ * @param {string} buyerId 공고 명의 회원 ID(b2b_member.member_id).
414
438
  * @param {*} [options] Override http request option.
415
439
  * @throws {RequiredError}
416
440
  */
@@ -427,7 +451,7 @@ export declare class PartnerV1Api extends BaseAPI {
427
451
  * V5 /entendrec 후속. scope bids:read.
428
452
  * @summary 입찰 결과 조회
429
453
  * @param {string} bidId
430
- * @param {string} buyerId
454
+ * @param {string} buyerId 공고 명의 회원 ID (멀티테넌트 가시성 키).
431
455
  * @param {*} [options] Override http request option.
432
456
  * @throws {RequiredError}
433
457
  */
@@ -472,6 +496,14 @@ export declare class PartnerV1Api extends BaseAPI {
472
496
  * @throws {RequiredError}
473
497
  */
474
498
  markBidFailed(markBidFailedRequestDto: MarkBidFailedRequestDto, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<BidFailedResponseDto, any, {}>>;
499
+ /**
500
+ * V5↔V6 응답 비교 불일치(verdict)를 적재한다. scope parity:write. V5 cutover 시 제거 예정(한시적 계약).
501
+ * @summary V5→V6 마이그레이션 패리티 결과 기록
502
+ * @param {object} body
503
+ * @param {*} [options] Override http request option.
504
+ * @throws {RequiredError}
505
+ */
506
+ recordParityResult(body: object, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<void, any, {}>>;
475
507
  /**
476
508
  * 낙찰 결과 등록. 스코프 `awards:write` + `Idempotency-Key` 헤더 필수.
477
509
  * @summary 낙찰 결과 전송
@@ -505,7 +537,7 @@ export declare class PartnerV1Api extends BaseAPI {
505
537
  */
506
538
  submitNegotiationScores(submitNegotiationScoresRequestDto: SubmitNegotiationScoresRequestDto, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<NegotiationScoredResponseDto, any, {}>>;
507
539
  /**
508
- * 스코프 `files:write` 필수. base64 또는 url 중 하나를 제출한다.
540
+ * 스코프 `files:write` + `Idempotency-Key` 헤더 필수. base64 또는 url 중 정확히 하나를 제출한다.
509
541
  * @summary 입찰 첨부파일 업로드(base64 또는 url) → fileKey
510
542
  * @param {UploadFileRequestDto} uploadFileRequestDto
511
543
  * @param {*} [options] Override http request option.
@@ -76,7 +76,7 @@ const PartnerV1ApiAxiosParamCreator = function (configuration) {
76
76
  * V5 /contractDocumentRec 후속. scope contracts:read.
77
77
  * @summary 계약서류 수신 조회
78
78
  * @param {string} bidId
79
- * @param {string} buyerId
79
+ * @param {string} buyerId 공고 명의 회원 ID(b2b_member.member_id).
80
80
  * @param {*} [options] Override http request option.
81
81
  * @throws {RequiredError}
82
82
  */
@@ -149,7 +149,7 @@ const PartnerV1ApiAxiosParamCreator = function (configuration) {
149
149
  * V5 /entendrec 후속. scope bids:read.
150
150
  * @summary 입찰 결과 조회
151
151
  * @param {string} bidId
152
- * @param {string} buyerId
152
+ * @param {string} buyerId 공고 명의 회원 ID (멀티테넌트 가시성 키).
153
153
  * @param {*} [options] Override http request option.
154
154
  * @throws {RequiredError}
155
155
  */
@@ -350,6 +350,39 @@ const PartnerV1ApiAxiosParamCreator = function (configuration) {
350
350
  options: localVarRequestOptions,
351
351
  };
352
352
  }),
353
+ /**
354
+ * V5↔V6 응답 비교 불일치(verdict)를 적재한다. scope parity:write. V5 cutover 시 제거 예정(한시적 계약).
355
+ * @summary V5→V6 마이그레이션 패리티 결과 기록
356
+ * @param {object} body
357
+ * @param {*} [options] Override http request option.
358
+ * @throws {RequiredError}
359
+ */
360
+ recordParityResult: (body_1, ...args_1) => __awaiter(this, [body_1, ...args_1], void 0, function* (body, options = {}) {
361
+ // verify required parameter 'body' is not null or undefined
362
+ (0, common_1.assertParamExists)('recordParityResult', 'body', body);
363
+ const localVarPath = `/v1/parity-results`;
364
+ // use dummy base URL string because the URL constructor only accepts absolute URLs.
365
+ const localVarUrlObj = new URL(localVarPath, common_1.DUMMY_BASE_URL);
366
+ let baseOptions;
367
+ if (configuration) {
368
+ baseOptions = configuration.baseOptions;
369
+ }
370
+ const localVarRequestOptions = Object.assign(Object.assign({ method: 'POST' }, baseOptions), options);
371
+ const localVarHeaderParameter = {};
372
+ const localVarQueryParameter = {};
373
+ // authentication partner-oauth2 required
374
+ // http bearer authentication required
375
+ yield (0, common_1.setBearerAuthToObject)(localVarHeaderParameter, configuration);
376
+ localVarHeaderParameter['Content-Type'] = 'application/json';
377
+ (0, common_1.setSearchParams)(localVarUrlObj, localVarQueryParameter);
378
+ let headersFromBaseOptions = baseOptions && baseOptions.headers ? baseOptions.headers : {};
379
+ localVarRequestOptions.headers = Object.assign(Object.assign(Object.assign({}, localVarHeaderParameter), headersFromBaseOptions), options.headers);
380
+ localVarRequestOptions.data = (0, common_1.serializeDataIfNeeded)(body, localVarRequestOptions, configuration);
381
+ return {
382
+ url: (0, common_1.toPathString)(localVarUrlObj),
383
+ options: localVarRequestOptions,
384
+ };
385
+ }),
353
386
  /**
354
387
  * 낙찰 결과 등록. 스코프 `awards:write` + `Idempotency-Key` 헤더 필수.
355
388
  * @summary 낙찰 결과 전송
@@ -487,7 +520,7 @@ const PartnerV1ApiAxiosParamCreator = function (configuration) {
487
520
  };
488
521
  }),
489
522
  /**
490
- * 스코프 `files:write` 필수. base64 또는 url 중 하나를 제출한다.
523
+ * 스코프 `files:write` + `Idempotency-Key` 헤더 필수. base64 또는 url 중 정확히 하나를 제출한다.
491
524
  * @summary 입찰 첨부파일 업로드(base64 또는 url) → fileKey
492
525
  * @param {UploadFileRequestDto} uploadFileRequestDto
493
526
  * @param {*} [options] Override http request option.
@@ -550,7 +583,7 @@ const PartnerV1ApiFp = function (configuration) {
550
583
  * V5 /contractDocumentRec 후속. scope contracts:read.
551
584
  * @summary 계약서류 수신 조회
552
585
  * @param {string} bidId
553
- * @param {string} buyerId
586
+ * @param {string} buyerId 공고 명의 회원 ID(b2b_member.member_id).
554
587
  * @param {*} [options] Override http request option.
555
588
  * @throws {RequiredError}
556
589
  */
@@ -583,7 +616,7 @@ const PartnerV1ApiFp = function (configuration) {
583
616
  * V5 /entendrec 후속. scope bids:read.
584
617
  * @summary 입찰 결과 조회
585
618
  * @param {string} bidId
586
- * @param {string} buyerId
619
+ * @param {string} buyerId 공고 명의 회원 ID (멀티테넌트 가시성 키).
587
620
  * @param {*} [options] Override http request option.
588
621
  * @throws {RequiredError}
589
622
  */
@@ -676,6 +709,22 @@ const PartnerV1ApiFp = function (configuration) {
676
709
  return (axios, basePath) => (0, common_1.createRequestFunction)(localVarAxiosArgs, axios_1.default, base_1.BASE_PATH, configuration)(axios, localVarOperationServerBasePath || basePath);
677
710
  });
678
711
  },
712
+ /**
713
+ * V5↔V6 응답 비교 불일치(verdict)를 적재한다. scope parity:write. V5 cutover 시 제거 예정(한시적 계약).
714
+ * @summary V5→V6 마이그레이션 패리티 결과 기록
715
+ * @param {object} body
716
+ * @param {*} [options] Override http request option.
717
+ * @throws {RequiredError}
718
+ */
719
+ recordParityResult(body, options) {
720
+ return __awaiter(this, void 0, void 0, function* () {
721
+ var _a, _b, _c;
722
+ const localVarAxiosArgs = yield localVarAxiosParamCreator.recordParityResult(body, options);
723
+ const localVarOperationServerIndex = (_a = configuration === null || configuration === void 0 ? void 0 : configuration.serverIndex) !== null && _a !== void 0 ? _a : 0;
724
+ const localVarOperationServerBasePath = (_c = (_b = base_1.operationServerMap['PartnerV1Api.recordParityResult']) === null || _b === void 0 ? void 0 : _b[localVarOperationServerIndex]) === null || _c === void 0 ? void 0 : _c.url;
725
+ return (axios, basePath) => (0, common_1.createRequestFunction)(localVarAxiosArgs, axios_1.default, base_1.BASE_PATH, configuration)(axios, localVarOperationServerBasePath || basePath);
726
+ });
727
+ },
679
728
  /**
680
729
  * 낙찰 결과 등록. 스코프 `awards:write` + `Idempotency-Key` 헤더 필수.
681
730
  * @summary 낙찰 결과 전송
@@ -741,7 +790,7 @@ const PartnerV1ApiFp = function (configuration) {
741
790
  });
742
791
  },
743
792
  /**
744
- * 스코프 `files:write` 필수. base64 또는 url 중 하나를 제출한다.
793
+ * 스코프 `files:write` + `Idempotency-Key` 헤더 필수. base64 또는 url 중 정확히 하나를 제출한다.
745
794
  * @summary 입찰 첨부파일 업로드(base64 또는 url) → fileKey
746
795
  * @param {UploadFileRequestDto} uploadFileRequestDto
747
796
  * @param {*} [options] Override http request option.
@@ -780,7 +829,7 @@ const PartnerV1ApiFactory = function (configuration, basePath, axios) {
780
829
  * V5 /contractDocumentRec 후속. scope contracts:read.
781
830
  * @summary 계약서류 수신 조회
782
831
  * @param {string} bidId
783
- * @param {string} buyerId
832
+ * @param {string} buyerId 공고 명의 회원 ID(b2b_member.member_id).
784
833
  * @param {*} [options] Override http request option.
785
834
  * @throws {RequiredError}
786
835
  */
@@ -801,7 +850,7 @@ const PartnerV1ApiFactory = function (configuration, basePath, axios) {
801
850
  * V5 /entendrec 후속. scope bids:read.
802
851
  * @summary 입찰 결과 조회
803
852
  * @param {string} bidId
804
- * @param {string} buyerId
853
+ * @param {string} buyerId 공고 명의 회원 ID (멀티테넌트 가시성 키).
805
854
  * @param {*} [options] Override http request option.
806
855
  * @throws {RequiredError}
807
856
  */
@@ -858,6 +907,16 @@ const PartnerV1ApiFactory = function (configuration, basePath, axios) {
858
907
  markBidFailed(markBidFailedRequestDto, options) {
859
908
  return localVarFp.markBidFailed(markBidFailedRequestDto, options).then((request) => request(axios, basePath));
860
909
  },
910
+ /**
911
+ * V5↔V6 응답 비교 불일치(verdict)를 적재한다. scope parity:write. V5 cutover 시 제거 예정(한시적 계약).
912
+ * @summary V5→V6 마이그레이션 패리티 결과 기록
913
+ * @param {object} body
914
+ * @param {*} [options] Override http request option.
915
+ * @throws {RequiredError}
916
+ */
917
+ recordParityResult(body, options) {
918
+ return localVarFp.recordParityResult(body, options).then((request) => request(axios, basePath));
919
+ },
861
920
  /**
862
921
  * 낙찰 결과 등록. 스코프 `awards:write` + `Idempotency-Key` 헤더 필수.
863
922
  * @summary 낙찰 결과 전송
@@ -899,7 +958,7 @@ const PartnerV1ApiFactory = function (configuration, basePath, axios) {
899
958
  return localVarFp.submitNegotiationScores(submitNegotiationScoresRequestDto, options).then((request) => request(axios, basePath));
900
959
  },
901
960
  /**
902
- * 스코프 `files:write` 필수. base64 또는 url 중 하나를 제출한다.
961
+ * 스코프 `files:write` + `Idempotency-Key` 헤더 필수. base64 또는 url 중 정확히 하나를 제출한다.
903
962
  * @summary 입찰 첨부파일 업로드(base64 또는 url) → fileKey
904
963
  * @param {UploadFileRequestDto} uploadFileRequestDto
905
964
  * @param {*} [options] Override http request option.
@@ -930,7 +989,7 @@ class PartnerV1Api extends base_1.BaseAPI {
930
989
  * V5 /contractDocumentRec 후속. scope contracts:read.
931
990
  * @summary 계약서류 수신 조회
932
991
  * @param {string} bidId
933
- * @param {string} buyerId
992
+ * @param {string} buyerId 공고 명의 회원 ID(b2b_member.member_id).
934
993
  * @param {*} [options] Override http request option.
935
994
  * @throws {RequiredError}
936
995
  */
@@ -951,7 +1010,7 @@ class PartnerV1Api extends base_1.BaseAPI {
951
1010
  * V5 /entendrec 후속. scope bids:read.
952
1011
  * @summary 입찰 결과 조회
953
1012
  * @param {string} bidId
954
- * @param {string} buyerId
1013
+ * @param {string} buyerId 공고 명의 회원 ID (멀티테넌트 가시성 키).
955
1014
  * @param {*} [options] Override http request option.
956
1015
  * @throws {RequiredError}
957
1016
  */
@@ -1008,6 +1067,16 @@ class PartnerV1Api extends base_1.BaseAPI {
1008
1067
  markBidFailed(markBidFailedRequestDto, options) {
1009
1068
  return (0, exports.PartnerV1ApiFp)(this.configuration).markBidFailed(markBidFailedRequestDto, options).then((request) => request(this.axios, this.basePath));
1010
1069
  }
1070
+ /**
1071
+ * V5↔V6 응답 비교 불일치(verdict)를 적재한다. scope parity:write. V5 cutover 시 제거 예정(한시적 계약).
1072
+ * @summary V5→V6 마이그레이션 패리티 결과 기록
1073
+ * @param {object} body
1074
+ * @param {*} [options] Override http request option.
1075
+ * @throws {RequiredError}
1076
+ */
1077
+ recordParityResult(body, options) {
1078
+ return (0, exports.PartnerV1ApiFp)(this.configuration).recordParityResult(body, options).then((request) => request(this.axios, this.basePath));
1079
+ }
1011
1080
  /**
1012
1081
  * 낙찰 결과 등록. 스코프 `awards:write` + `Idempotency-Key` 헤더 필수.
1013
1082
  * @summary 낙찰 결과 전송
@@ -1049,7 +1118,7 @@ class PartnerV1Api extends base_1.BaseAPI {
1049
1118
  return (0, exports.PartnerV1ApiFp)(this.configuration).submitNegotiationScores(submitNegotiationScoresRequestDto, options).then((request) => request(this.axios, this.basePath));
1050
1119
  }
1051
1120
  /**
1052
- * 스코프 `files:write` 필수. base64 또는 url 중 하나를 제출한다.
1121
+ * 스코프 `files:write` + `Idempotency-Key` 헤더 필수. base64 또는 url 중 정확히 하나를 제출한다.
1053
1122
  * @summary 입찰 첨부파일 업로드(base64 또는 url) → fileKey
1054
1123
  * @param {UploadFileRequestDto} uploadFileRequestDto
1055
1124
  * @param {*} [options] Override http request option.
@@ -50,7 +50,7 @@ export declare const PartnerV1ApiAxiosParamCreator: (configuration?: Configurati
50
50
  * V5 /contractDocumentRec 후속. scope contracts:read.
51
51
  * @summary 계약서류 수신 조회
52
52
  * @param {string} bidId
53
- * @param {string} buyerId
53
+ * @param {string} buyerId 공고 명의 회원 ID(b2b_member.member_id).
54
54
  * @param {*} [options] Override http request option.
55
55
  * @throws {RequiredError}
56
56
  */
@@ -67,7 +67,7 @@ export declare const PartnerV1ApiAxiosParamCreator: (configuration?: Configurati
67
67
  * V5 /entendrec 후속. scope bids:read.
68
68
  * @summary 입찰 결과 조회
69
69
  * @param {string} bidId
70
- * @param {string} buyerId
70
+ * @param {string} buyerId 공고 명의 회원 ID (멀티테넌트 가시성 키).
71
71
  * @param {*} [options] Override http request option.
72
72
  * @throws {RequiredError}
73
73
  */
@@ -112,6 +112,14 @@ export declare const PartnerV1ApiAxiosParamCreator: (configuration?: Configurati
112
112
  * @throws {RequiredError}
113
113
  */
114
114
  markBidFailed: (markBidFailedRequestDto: MarkBidFailedRequestDto, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
115
+ /**
116
+ * V5↔V6 응답 비교 불일치(verdict)를 적재한다. scope parity:write. V5 cutover 시 제거 예정(한시적 계약).
117
+ * @summary V5→V6 마이그레이션 패리티 결과 기록
118
+ * @param {object} body
119
+ * @param {*} [options] Override http request option.
120
+ * @throws {RequiredError}
121
+ */
122
+ recordParityResult: (body: object, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
115
123
  /**
116
124
  * 낙찰 결과 등록. 스코프 `awards:write` + `Idempotency-Key` 헤더 필수.
117
125
  * @summary 낙찰 결과 전송
@@ -145,7 +153,7 @@ export declare const PartnerV1ApiAxiosParamCreator: (configuration?: Configurati
145
153
  */
146
154
  submitNegotiationScores: (submitNegotiationScoresRequestDto: SubmitNegotiationScoresRequestDto, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
147
155
  /**
148
- * 스코프 `files:write` 필수. base64 또는 url 중 하나를 제출한다.
156
+ * 스코프 `files:write` + `Idempotency-Key` 헤더 필수. base64 또는 url 중 정확히 하나를 제출한다.
149
157
  * @summary 입찰 첨부파일 업로드(base64 또는 url) → fileKey
150
158
  * @param {UploadFileRequestDto} uploadFileRequestDto
151
159
  * @param {*} [options] Override http request option.
@@ -170,7 +178,7 @@ export declare const PartnerV1ApiFp: (configuration?: Configuration) => {
170
178
  * V5 /contractDocumentRec 후속. scope contracts:read.
171
179
  * @summary 계약서류 수신 조회
172
180
  * @param {string} bidId
173
- * @param {string} buyerId
181
+ * @param {string} buyerId 공고 명의 회원 ID(b2b_member.member_id).
174
182
  * @param {*} [options] Override http request option.
175
183
  * @throws {RequiredError}
176
184
  */
@@ -187,7 +195,7 @@ export declare const PartnerV1ApiFp: (configuration?: Configuration) => {
187
195
  * V5 /entendrec 후속. scope bids:read.
188
196
  * @summary 입찰 결과 조회
189
197
  * @param {string} bidId
190
- * @param {string} buyerId
198
+ * @param {string} buyerId 공고 명의 회원 ID (멀티테넌트 가시성 키).
191
199
  * @param {*} [options] Override http request option.
192
200
  * @throws {RequiredError}
193
201
  */
@@ -232,6 +240,14 @@ export declare const PartnerV1ApiFp: (configuration?: Configuration) => {
232
240
  * @throws {RequiredError}
233
241
  */
234
242
  markBidFailed(markBidFailedRequestDto: MarkBidFailedRequestDto, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<BidFailedResponseDto>>;
243
+ /**
244
+ * V5↔V6 응답 비교 불일치(verdict)를 적재한다. scope parity:write. V5 cutover 시 제거 예정(한시적 계약).
245
+ * @summary V5→V6 마이그레이션 패리티 결과 기록
246
+ * @param {object} body
247
+ * @param {*} [options] Override http request option.
248
+ * @throws {RequiredError}
249
+ */
250
+ recordParityResult(body: object, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<void>>;
235
251
  /**
236
252
  * 낙찰 결과 등록. 스코프 `awards:write` + `Idempotency-Key` 헤더 필수.
237
253
  * @summary 낙찰 결과 전송
@@ -265,7 +281,7 @@ export declare const PartnerV1ApiFp: (configuration?: Configuration) => {
265
281
  */
266
282
  submitNegotiationScores(submitNegotiationScoresRequestDto: SubmitNegotiationScoresRequestDto, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<NegotiationScoredResponseDto>>;
267
283
  /**
268
- * 스코프 `files:write` 필수. base64 또는 url 중 하나를 제출한다.
284
+ * 스코프 `files:write` + `Idempotency-Key` 헤더 필수. base64 또는 url 중 정확히 하나를 제출한다.
269
285
  * @summary 입찰 첨부파일 업로드(base64 또는 url) → fileKey
270
286
  * @param {UploadFileRequestDto} uploadFileRequestDto
271
287
  * @param {*} [options] Override http request option.
@@ -290,7 +306,7 @@ export declare const PartnerV1ApiFactory: (configuration?: Configuration, basePa
290
306
  * V5 /contractDocumentRec 후속. scope contracts:read.
291
307
  * @summary 계약서류 수신 조회
292
308
  * @param {string} bidId
293
- * @param {string} buyerId
309
+ * @param {string} buyerId 공고 명의 회원 ID(b2b_member.member_id).
294
310
  * @param {*} [options] Override http request option.
295
311
  * @throws {RequiredError}
296
312
  */
@@ -307,7 +323,7 @@ export declare const PartnerV1ApiFactory: (configuration?: Configuration, basePa
307
323
  * V5 /entendrec 후속. scope bids:read.
308
324
  * @summary 입찰 결과 조회
309
325
  * @param {string} bidId
310
- * @param {string} buyerId
326
+ * @param {string} buyerId 공고 명의 회원 ID (멀티테넌트 가시성 키).
311
327
  * @param {*} [options] Override http request option.
312
328
  * @throws {RequiredError}
313
329
  */
@@ -352,6 +368,14 @@ export declare const PartnerV1ApiFactory: (configuration?: Configuration, basePa
352
368
  * @throws {RequiredError}
353
369
  */
354
370
  markBidFailed(markBidFailedRequestDto: MarkBidFailedRequestDto, options?: RawAxiosRequestConfig): AxiosPromise<BidFailedResponseDto>;
371
+ /**
372
+ * V5↔V6 응답 비교 불일치(verdict)를 적재한다. scope parity:write. V5 cutover 시 제거 예정(한시적 계약).
373
+ * @summary V5→V6 마이그레이션 패리티 결과 기록
374
+ * @param {object} body
375
+ * @param {*} [options] Override http request option.
376
+ * @throws {RequiredError}
377
+ */
378
+ recordParityResult(body: object, options?: RawAxiosRequestConfig): AxiosPromise<void>;
355
379
  /**
356
380
  * 낙찰 결과 등록. 스코프 `awards:write` + `Idempotency-Key` 헤더 필수.
357
381
  * @summary 낙찰 결과 전송
@@ -385,7 +409,7 @@ export declare const PartnerV1ApiFactory: (configuration?: Configuration, basePa
385
409
  */
386
410
  submitNegotiationScores(submitNegotiationScoresRequestDto: SubmitNegotiationScoresRequestDto, options?: RawAxiosRequestConfig): AxiosPromise<NegotiationScoredResponseDto>;
387
411
  /**
388
- * 스코프 `files:write` 필수. base64 또는 url 중 하나를 제출한다.
412
+ * 스코프 `files:write` + `Idempotency-Key` 헤더 필수. base64 또는 url 중 정확히 하나를 제출한다.
389
413
  * @summary 입찰 첨부파일 업로드(base64 또는 url) → fileKey
390
414
  * @param {UploadFileRequestDto} uploadFileRequestDto
391
415
  * @param {*} [options] Override http request option.
@@ -410,7 +434,7 @@ export declare class PartnerV1Api extends BaseAPI {
410
434
  * V5 /contractDocumentRec 후속. scope contracts:read.
411
435
  * @summary 계약서류 수신 조회
412
436
  * @param {string} bidId
413
- * @param {string} buyerId
437
+ * @param {string} buyerId 공고 명의 회원 ID(b2b_member.member_id).
414
438
  * @param {*} [options] Override http request option.
415
439
  * @throws {RequiredError}
416
440
  */
@@ -427,7 +451,7 @@ export declare class PartnerV1Api extends BaseAPI {
427
451
  * V5 /entendrec 후속. scope bids:read.
428
452
  * @summary 입찰 결과 조회
429
453
  * @param {string} bidId
430
- * @param {string} buyerId
454
+ * @param {string} buyerId 공고 명의 회원 ID (멀티테넌트 가시성 키).
431
455
  * @param {*} [options] Override http request option.
432
456
  * @throws {RequiredError}
433
457
  */
@@ -472,6 +496,14 @@ export declare class PartnerV1Api extends BaseAPI {
472
496
  * @throws {RequiredError}
473
497
  */
474
498
  markBidFailed(markBidFailedRequestDto: MarkBidFailedRequestDto, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<BidFailedResponseDto, any, {}>>;
499
+ /**
500
+ * V5↔V6 응답 비교 불일치(verdict)를 적재한다. scope parity:write. V5 cutover 시 제거 예정(한시적 계약).
501
+ * @summary V5→V6 마이그레이션 패리티 결과 기록
502
+ * @param {object} body
503
+ * @param {*} [options] Override http request option.
504
+ * @throws {RequiredError}
505
+ */
506
+ recordParityResult(body: object, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<void, any, {}>>;
475
507
  /**
476
508
  * 낙찰 결과 등록. 스코프 `awards:write` + `Idempotency-Key` 헤더 필수.
477
509
  * @summary 낙찰 결과 전송
@@ -505,7 +537,7 @@ export declare class PartnerV1Api extends BaseAPI {
505
537
  */
506
538
  submitNegotiationScores(submitNegotiationScoresRequestDto: SubmitNegotiationScoresRequestDto, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<NegotiationScoredResponseDto, any, {}>>;
507
539
  /**
508
- * 스코프 `files:write` 필수. base64 또는 url 중 하나를 제출한다.
540
+ * 스코프 `files:write` + `Idempotency-Key` 헤더 필수. base64 또는 url 중 정확히 하나를 제출한다.
509
541
  * @summary 입찰 첨부파일 업로드(base64 또는 url) → fileKey
510
542
  * @param {UploadFileRequestDto} uploadFileRequestDto
511
543
  * @param {*} [options] Override http request option.
@@ -73,7 +73,7 @@ export const PartnerV1ApiAxiosParamCreator = function (configuration) {
73
73
  * V5 /contractDocumentRec 후속. scope contracts:read.
74
74
  * @summary 계약서류 수신 조회
75
75
  * @param {string} bidId
76
- * @param {string} buyerId
76
+ * @param {string} buyerId 공고 명의 회원 ID(b2b_member.member_id).
77
77
  * @param {*} [options] Override http request option.
78
78
  * @throws {RequiredError}
79
79
  */
@@ -146,7 +146,7 @@ export const PartnerV1ApiAxiosParamCreator = function (configuration) {
146
146
  * V5 /entendrec 후속. scope bids:read.
147
147
  * @summary 입찰 결과 조회
148
148
  * @param {string} bidId
149
- * @param {string} buyerId
149
+ * @param {string} buyerId 공고 명의 회원 ID (멀티테넌트 가시성 키).
150
150
  * @param {*} [options] Override http request option.
151
151
  * @throws {RequiredError}
152
152
  */
@@ -347,6 +347,39 @@ export const PartnerV1ApiAxiosParamCreator = function (configuration) {
347
347
  options: localVarRequestOptions,
348
348
  };
349
349
  }),
350
+ /**
351
+ * V5↔V6 응답 비교 불일치(verdict)를 적재한다. scope parity:write. V5 cutover 시 제거 예정(한시적 계약).
352
+ * @summary V5→V6 마이그레이션 패리티 결과 기록
353
+ * @param {object} body
354
+ * @param {*} [options] Override http request option.
355
+ * @throws {RequiredError}
356
+ */
357
+ recordParityResult: (body_1, ...args_1) => __awaiter(this, [body_1, ...args_1], void 0, function* (body, options = {}) {
358
+ // verify required parameter 'body' is not null or undefined
359
+ assertParamExists('recordParityResult', 'body', body);
360
+ const localVarPath = `/v1/parity-results`;
361
+ // use dummy base URL string because the URL constructor only accepts absolute URLs.
362
+ const localVarUrlObj = new URL(localVarPath, DUMMY_BASE_URL);
363
+ let baseOptions;
364
+ if (configuration) {
365
+ baseOptions = configuration.baseOptions;
366
+ }
367
+ const localVarRequestOptions = Object.assign(Object.assign({ method: 'POST' }, baseOptions), options);
368
+ const localVarHeaderParameter = {};
369
+ const localVarQueryParameter = {};
370
+ // authentication partner-oauth2 required
371
+ // http bearer authentication required
372
+ yield setBearerAuthToObject(localVarHeaderParameter, configuration);
373
+ localVarHeaderParameter['Content-Type'] = '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(body, localVarRequestOptions, configuration);
378
+ return {
379
+ url: toPathString(localVarUrlObj),
380
+ options: localVarRequestOptions,
381
+ };
382
+ }),
350
383
  /**
351
384
  * 낙찰 결과 등록. 스코프 `awards:write` + `Idempotency-Key` 헤더 필수.
352
385
  * @summary 낙찰 결과 전송
@@ -484,7 +517,7 @@ export const PartnerV1ApiAxiosParamCreator = function (configuration) {
484
517
  };
485
518
  }),
486
519
  /**
487
- * 스코프 `files:write` 필수. base64 또는 url 중 하나를 제출한다.
520
+ * 스코프 `files:write` + `Idempotency-Key` 헤더 필수. base64 또는 url 중 정확히 하나를 제출한다.
488
521
  * @summary 입찰 첨부파일 업로드(base64 또는 url) → fileKey
489
522
  * @param {UploadFileRequestDto} uploadFileRequestDto
490
523
  * @param {*} [options] Override http request option.
@@ -546,7 +579,7 @@ export const PartnerV1ApiFp = function (configuration) {
546
579
  * V5 /contractDocumentRec 후속. scope contracts:read.
547
580
  * @summary 계약서류 수신 조회
548
581
  * @param {string} bidId
549
- * @param {string} buyerId
582
+ * @param {string} buyerId 공고 명의 회원 ID(b2b_member.member_id).
550
583
  * @param {*} [options] Override http request option.
551
584
  * @throws {RequiredError}
552
585
  */
@@ -579,7 +612,7 @@ export const PartnerV1ApiFp = function (configuration) {
579
612
  * V5 /entendrec 후속. scope bids:read.
580
613
  * @summary 입찰 결과 조회
581
614
  * @param {string} bidId
582
- * @param {string} buyerId
615
+ * @param {string} buyerId 공고 명의 회원 ID (멀티테넌트 가시성 키).
583
616
  * @param {*} [options] Override http request option.
584
617
  * @throws {RequiredError}
585
618
  */
@@ -672,6 +705,22 @@ export const PartnerV1ApiFp = function (configuration) {
672
705
  return (axios, basePath) => createRequestFunction(localVarAxiosArgs, globalAxios, BASE_PATH, configuration)(axios, localVarOperationServerBasePath || basePath);
673
706
  });
674
707
  },
708
+ /**
709
+ * V5↔V6 응답 비교 불일치(verdict)를 적재한다. scope parity:write. V5 cutover 시 제거 예정(한시적 계약).
710
+ * @summary V5→V6 마이그레이션 패리티 결과 기록
711
+ * @param {object} body
712
+ * @param {*} [options] Override http request option.
713
+ * @throws {RequiredError}
714
+ */
715
+ recordParityResult(body, options) {
716
+ return __awaiter(this, void 0, void 0, function* () {
717
+ var _a, _b, _c;
718
+ const localVarAxiosArgs = yield localVarAxiosParamCreator.recordParityResult(body, 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.recordParityResult']) === 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
+ },
675
724
  /**
676
725
  * 낙찰 결과 등록. 스코프 `awards:write` + `Idempotency-Key` 헤더 필수.
677
726
  * @summary 낙찰 결과 전송
@@ -737,7 +786,7 @@ export const PartnerV1ApiFp = function (configuration) {
737
786
  });
738
787
  },
739
788
  /**
740
- * 스코프 `files:write` 필수. base64 또는 url 중 하나를 제출한다.
789
+ * 스코프 `files:write` + `Idempotency-Key` 헤더 필수. base64 또는 url 중 정확히 하나를 제출한다.
741
790
  * @summary 입찰 첨부파일 업로드(base64 또는 url) → fileKey
742
791
  * @param {UploadFileRequestDto} uploadFileRequestDto
743
792
  * @param {*} [options] Override http request option.
@@ -775,7 +824,7 @@ export const PartnerV1ApiFactory = function (configuration, basePath, axios) {
775
824
  * V5 /contractDocumentRec 후속. scope contracts:read.
776
825
  * @summary 계약서류 수신 조회
777
826
  * @param {string} bidId
778
- * @param {string} buyerId
827
+ * @param {string} buyerId 공고 명의 회원 ID(b2b_member.member_id).
779
828
  * @param {*} [options] Override http request option.
780
829
  * @throws {RequiredError}
781
830
  */
@@ -796,7 +845,7 @@ export const PartnerV1ApiFactory = function (configuration, basePath, axios) {
796
845
  * V5 /entendrec 후속. scope bids:read.
797
846
  * @summary 입찰 결과 조회
798
847
  * @param {string} bidId
799
- * @param {string} buyerId
848
+ * @param {string} buyerId 공고 명의 회원 ID (멀티테넌트 가시성 키).
800
849
  * @param {*} [options] Override http request option.
801
850
  * @throws {RequiredError}
802
851
  */
@@ -853,6 +902,16 @@ export const PartnerV1ApiFactory = function (configuration, basePath, axios) {
853
902
  markBidFailed(markBidFailedRequestDto, options) {
854
903
  return localVarFp.markBidFailed(markBidFailedRequestDto, options).then((request) => request(axios, basePath));
855
904
  },
905
+ /**
906
+ * V5↔V6 응답 비교 불일치(verdict)를 적재한다. scope parity:write. V5 cutover 시 제거 예정(한시적 계약).
907
+ * @summary V5→V6 마이그레이션 패리티 결과 기록
908
+ * @param {object} body
909
+ * @param {*} [options] Override http request option.
910
+ * @throws {RequiredError}
911
+ */
912
+ recordParityResult(body, options) {
913
+ return localVarFp.recordParityResult(body, options).then((request) => request(axios, basePath));
914
+ },
856
915
  /**
857
916
  * 낙찰 결과 등록. 스코프 `awards:write` + `Idempotency-Key` 헤더 필수.
858
917
  * @summary 낙찰 결과 전송
@@ -894,7 +953,7 @@ export const PartnerV1ApiFactory = function (configuration, basePath, axios) {
894
953
  return localVarFp.submitNegotiationScores(submitNegotiationScoresRequestDto, options).then((request) => request(axios, basePath));
895
954
  },
896
955
  /**
897
- * 스코프 `files:write` 필수. base64 또는 url 중 하나를 제출한다.
956
+ * 스코프 `files:write` + `Idempotency-Key` 헤더 필수. base64 또는 url 중 정확히 하나를 제출한다.
898
957
  * @summary 입찰 첨부파일 업로드(base64 또는 url) → fileKey
899
958
  * @param {UploadFileRequestDto} uploadFileRequestDto
900
959
  * @param {*} [options] Override http request option.
@@ -924,7 +983,7 @@ export class PartnerV1Api extends BaseAPI {
924
983
  * V5 /contractDocumentRec 후속. scope contracts:read.
925
984
  * @summary 계약서류 수신 조회
926
985
  * @param {string} bidId
927
- * @param {string} buyerId
986
+ * @param {string} buyerId 공고 명의 회원 ID(b2b_member.member_id).
928
987
  * @param {*} [options] Override http request option.
929
988
  * @throws {RequiredError}
930
989
  */
@@ -945,7 +1004,7 @@ export class PartnerV1Api extends BaseAPI {
945
1004
  * V5 /entendrec 후속. scope bids:read.
946
1005
  * @summary 입찰 결과 조회
947
1006
  * @param {string} bidId
948
- * @param {string} buyerId
1007
+ * @param {string} buyerId 공고 명의 회원 ID (멀티테넌트 가시성 키).
949
1008
  * @param {*} [options] Override http request option.
950
1009
  * @throws {RequiredError}
951
1010
  */
@@ -1002,6 +1061,16 @@ export class PartnerV1Api extends BaseAPI {
1002
1061
  markBidFailed(markBidFailedRequestDto, options) {
1003
1062
  return PartnerV1ApiFp(this.configuration).markBidFailed(markBidFailedRequestDto, options).then((request) => request(this.axios, this.basePath));
1004
1063
  }
1064
+ /**
1065
+ * V5↔V6 응답 비교 불일치(verdict)를 적재한다. scope parity:write. V5 cutover 시 제거 예정(한시적 계약).
1066
+ * @summary V5→V6 마이그레이션 패리티 결과 기록
1067
+ * @param {object} body
1068
+ * @param {*} [options] Override http request option.
1069
+ * @throws {RequiredError}
1070
+ */
1071
+ recordParityResult(body, options) {
1072
+ return PartnerV1ApiFp(this.configuration).recordParityResult(body, options).then((request) => request(this.axios, this.basePath));
1073
+ }
1005
1074
  /**
1006
1075
  * 낙찰 결과 등록. 스코프 `awards:write` + `Idempotency-Key` 헤더 필수.
1007
1076
  * @summary 낙찰 결과 전송
@@ -1043,7 +1112,7 @@ export class PartnerV1Api extends BaseAPI {
1043
1112
  return PartnerV1ApiFp(this.configuration).submitNegotiationScores(submitNegotiationScoresRequestDto, options).then((request) => request(this.axios, this.basePath));
1044
1113
  }
1045
1114
  /**
1046
- * 스코프 `files:write` 필수. base64 또는 url 중 하나를 제출한다.
1115
+ * 스코프 `files:write` + `Idempotency-Key` 헤더 필수. base64 또는 url 중 정확히 하나를 제출한다.
1047
1116
  * @summary 입찰 첨부파일 업로드(base64 또는 url) → fileKey
1048
1117
  * @param {UploadFileRequestDto} uploadFileRequestDto
1049
1118
  * @param {*} [options] Override http request option.
@@ -15,7 +15,7 @@ export interface UploadFileRequestDto {
15
15
  */
16
16
  'fileName': string;
17
17
  /**
18
- * Base64 인코딩된 파일 데이터. url 이 없을 때 필수.
18
+ * Base64 인코딩된 파일 데이터. url 이 없을 때 필수. 디코딩 후 최대 30MB.
19
19
  */
20
20
  'base64'?: string;
21
21
  /**
@@ -15,7 +15,7 @@ export interface UploadFileRequestDto {
15
15
  */
16
16
  'fileName': string;
17
17
  /**
18
- * Base64 인코딩된 파일 데이터. url 이 없을 때 필수.
18
+ * Base64 인코딩된 파일 데이터. url 이 없을 때 필수. 디코딩 후 최대 30MB.
19
19
  */
20
20
  'base64'?: string;
21
21
  /**
@@ -13,6 +13,7 @@ All URIs are relative to *http://localhost*
13
13
  |[**getBidStatement**](#getbidstatement) | **GET** /v1/bids/{bidId}/statement | 거래명세서 조회|
14
14
  |[**healthControllerCheck**](#healthcontrollercheck) | **GET** /v1/health | Partner API 헬스체크|
15
15
  |[**markBidFailed**](#markbidfailed) | **POST** /v1/awards/fail | 유찰 처리|
16
+ |[**recordParityResult**](#recordparityresult) | **POST** /v1/parity-results | V5→V6 마이그레이션 패리티 결과 기록|
16
17
  |[**registerAward**](#registeraward) | **POST** /v1/awards | 낙찰 결과 전송|
17
18
  |[**registerBid**](#registerbid) | **POST** /v1/bids | 입찰 정보 전송(등록)|
18
19
  |[**requestSplitInvoice**](#requestsplitinvoice) | **POST** /v1/invoices/split-requests | 계산서 분할 발급 청구|
@@ -91,7 +92,7 @@ const configuration = new Configuration();
91
92
  const apiInstance = new PartnerV1Api(configuration);
92
93
 
93
94
  let bidId: string; // (default to undefined)
94
- let buyerId: string; // (default to undefined)
95
+ let buyerId: string; //공고 명의 회원 ID(b2b_member.member_id). (default to undefined)
95
96
 
96
97
  const { status, data } = await apiInstance.getBidContractDocuments(
97
98
  bidId,
@@ -104,7 +105,7 @@ const { status, data } = await apiInstance.getBidContractDocuments(
104
105
  |Name | Type | Description | Notes|
105
106
  |------------- | ------------- | ------------- | -------------|
106
107
  | **bidId** | [**string**] | | defaults to undefined|
107
- | **buyerId** | [**string**] | | defaults to undefined|
108
+ | **buyerId** | [**string**] | 공고 명의 회원 ID(b2b_member.member_id). | defaults to undefined|
108
109
 
109
110
 
110
111
  ### Return type
@@ -197,7 +198,7 @@ const configuration = new Configuration();
197
198
  const apiInstance = new PartnerV1Api(configuration);
198
199
 
199
200
  let bidId: string; // (default to undefined)
200
- let buyerId: string; // (default to undefined)
201
+ let buyerId: string; //공고 명의 회원 ID (멀티테넌트 가시성 키). (default to undefined)
201
202
 
202
203
  const { status, data } = await apiInstance.getBidResults(
203
204
  bidId,
@@ -210,7 +211,7 @@ const { status, data } = await apiInstance.getBidResults(
210
211
  |Name | Type | Description | Notes|
211
212
  |------------- | ------------- | ------------- | -------------|
212
213
  | **bidId** | [**string**] | | defaults to undefined|
213
- | **buyerId** | [**string**] | | defaults to undefined|
214
+ | **buyerId** | [**string**] | 공고 명의 회원 ID (멀티테넌트 가시성 키). | defaults to undefined|
214
215
 
215
216
 
216
217
  ### Return type
@@ -487,6 +488,57 @@ const { status, data } = await apiInstance.markBidFailed(
487
488
 
488
489
  [[Back to top]](#) [[Back to API list]](../README.md#documentation-for-api-endpoints) [[Back to Model list]](../README.md#documentation-for-models) [[Back to README]](../README.md)
489
490
 
491
+ # **recordParityResult**
492
+ > recordParityResult(body)
493
+
494
+ V5↔V6 응답 비교 불일치(verdict)를 적재한다. scope parity:write. V5 cutover 시 제거 예정(한시적 계약).
495
+
496
+ ### Example
497
+
498
+ ```typescript
499
+ import {
500
+ PartnerV1Api,
501
+ Configuration
502
+ } from '@cmarket/partner-sdk';
503
+
504
+ const configuration = new Configuration();
505
+ const apiInstance = new PartnerV1Api(configuration);
506
+
507
+ let body: object; //
508
+
509
+ const { status, data } = await apiInstance.recordParityResult(
510
+ body
511
+ );
512
+ ```
513
+
514
+ ### Parameters
515
+
516
+ |Name | Type | Description | Notes|
517
+ |------------- | ------------- | ------------- | -------------|
518
+ | **body** | **object**| | |
519
+
520
+
521
+ ### Return type
522
+
523
+ void (empty response body)
524
+
525
+ ### Authorization
526
+
527
+ [partner-oauth2](../README.md#partner-oauth2)
528
+
529
+ ### HTTP request headers
530
+
531
+ - **Content-Type**: application/json
532
+ - **Accept**: Not defined
533
+
534
+
535
+ ### HTTP response details
536
+ | Status code | Description | Response headers |
537
+ |-------------|-------------|------------------|
538
+ |**204** | 적재 완료(본문 없음). | - |
539
+
540
+ [[Back to top]](#) [[Back to API list]](../README.md#documentation-for-api-endpoints) [[Back to Model list]](../README.md#documentation-for-models) [[Back to README]](../README.md)
541
+
490
542
  # **registerAward**
491
543
  > AwardRegisteredResponseDto registerAward(registerAwardRequestDto)
492
544
 
@@ -698,7 +750,7 @@ const { status, data } = await apiInstance.submitNegotiationScores(
698
750
  # **uploadFile**
699
751
  > FileUploadedResponseDto uploadFile(uploadFileRequestDto)
700
752
 
701
- 스코프 `files:write` 필수. base64 또는 url 중 하나를 제출한다.
753
+ 스코프 `files:write` + `Idempotency-Key` 헤더 필수. base64 또는 url 중 정확히 하나를 제출한다.
702
754
 
703
755
  ### Example
704
756
 
@@ -6,7 +6,7 @@
6
6
  Name | Type | Description | Notes
7
7
  ------------ | ------------- | ------------- | -------------
8
8
  **fileName** | **string** | 파일명 (확장자 포함). 최대 255자. | [default to undefined]
9
- **base64** | **string** | Base64 인코딩된 파일 데이터. url 이 없을 때 필수. | [optional] [default to undefined]
9
+ **base64** | **string** | Base64 인코딩된 파일 데이터. url 이 없을 때 필수. 디코딩 후 최대 30MB. | [optional] [default to undefined]
10
10
  **url** | **string** | 다운로드 가능한 파일 URL. base64 가 없을 때 필수. | [optional] [default to undefined]
11
11
 
12
12
  ## Example
@@ -20,7 +20,7 @@ export interface UploadFileRequestDto {
20
20
  */
21
21
  'fileName': string;
22
22
  /**
23
- * Base64 인코딩된 파일 데이터. url 이 없을 때 필수.
23
+ * Base64 인코딩된 파일 데이터. url 이 없을 때 필수. 디코딩 후 최대 30MB.
24
24
  */
25
25
  'base64'?: string;
26
26
  /**
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@cmarket/partner-sdk",
3
- "version": "0.6.0",
3
+ "version": "0.6.2",
4
4
  "description": "OpenAPI client for @cmarket/partner-sdk",
5
5
  "author": "OpenAPI-Generator Contributors",
6
6
  "repository": {