@cmarket/partner-sdk 0.4.0 → 0.6.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 +3 -2
- package/api/partner-v1-api.ts +4 -4
- package/dist/api/partner-v1-api.d.ts +4 -4
- package/dist/api/partner-v1-api.js +4 -4
- package/dist/esm/api/partner-v1-api.d.ts +4 -4
- package/dist/esm/api/partner-v1-api.js +4 -4
- package/dist/esm/models/bid-result-participant-attachment-dto.d.ts +33 -0
- package/dist/esm/models/bid-result-participant-attachment-dto.js +14 -0
- package/dist/esm/models/bid-result-participant-dto.d.ts +9 -0
- package/dist/esm/models/bid-results-batch-request-dto.d.ts +6 -2
- package/dist/esm/models/bid-results-response-dto.d.ts +5 -1
- package/dist/esm/models/contract-document-item-dto.d.ts +4 -0
- package/dist/esm/models/index.d.ts +1 -0
- package/dist/esm/models/index.js +1 -0
- package/dist/esm/models/statement-document-dto.d.ts +4 -0
- package/dist/models/bid-result-participant-attachment-dto.d.ts +33 -0
- package/dist/models/bid-result-participant-attachment-dto.js +15 -0
- package/dist/models/bid-result-participant-dto.d.ts +9 -0
- package/dist/models/bid-results-batch-request-dto.d.ts +6 -2
- package/dist/models/bid-results-response-dto.d.ts +5 -1
- package/dist/models/contract-document-item-dto.d.ts +4 -0
- package/dist/models/index.d.ts +1 -0
- package/dist/models/index.js +1 -0
- package/dist/models/statement-document-dto.d.ts +4 -0
- package/docs/BidResultParticipantAttachmentDto.md +28 -0
- package/docs/BidResultParticipantDto.md +4 -0
- package/docs/BidResultsBatchRequestDto.md +3 -1
- package/docs/BidResultsResponseDto.md +3 -1
- package/docs/ContractDocumentItemDto.md +2 -0
- package/docs/PartnerV1Api.md +1 -1
- package/docs/StatementDocumentDto.md +2 -0
- package/models/bid-result-participant-attachment-dto.ts +39 -0
- package/models/bid-result-participant-dto.ts +11 -0
- package/models/bid-results-batch-request-dto.ts +6 -2
- package/models/bid-results-response-dto.ts +5 -1
- package/models/contract-document-item-dto.ts +4 -0
- package/models/index.ts +1 -0
- package/models/statement-document-dto.ts +4 -0
- package/package.json +1 -1
package/README.md
CHANGED
|
@@ -188,7 +188,7 @@ public class Quickstart {
|
|
|
188
188
|
|
|
189
189
|
---
|
|
190
190
|
|
|
191
|
-
## @cmarket/partner-sdk@0.
|
|
191
|
+
## @cmarket/partner-sdk@0.6.0
|
|
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.
|
|
229
|
+
npm install @cmarket/partner-sdk@0.6.0 --save
|
|
230
230
|
```
|
|
231
231
|
|
|
232
232
|
_unPublished (not recommended):_
|
|
@@ -271,6 +271,7 @@ Class | Method | HTTP request | Description
|
|
|
271
271
|
- [BidFailureReason](docs/BidFailureReason.md)
|
|
272
272
|
- [BidItemDto](docs/BidItemDto.md)
|
|
273
273
|
- [BidManagerDto](docs/BidManagerDto.md)
|
|
274
|
+
- [BidResultParticipantAttachmentDto](docs/BidResultParticipantAttachmentDto.md)
|
|
274
275
|
- [BidResultParticipantDto](docs/BidResultParticipantDto.md)
|
|
275
276
|
- [BidResultProductDto](docs/BidResultProductDto.md)
|
|
276
277
|
- [BidResultWinnerDto](docs/BidResultWinnerDto.md)
|
package/api/partner-v1-api.ts
CHANGED
|
@@ -241,7 +241,7 @@ export const PartnerV1ApiAxiosParamCreator = function (configuration?: Configura
|
|
|
241
241
|
};
|
|
242
242
|
},
|
|
243
243
|
/**
|
|
244
|
-
* V5 entendRec(bid_puchase_no_list) 후속 — 여러 공고 결과를 1회 호출로(additive, 단건 유지). 입력 순서를 보존한다. scope bids:read.
|
|
244
|
+
* V5 entendRec(bid_puchase_no_list) 후속 — 여러 공고 결과를 1회 호출로(additive, 단건 유지). bidIds(공고 식별자) 또는 purchaseNos(구매번호) 중 하나 — purchaseNos 는 각 PO 의 가장 최근 공고로 해소. 입력 순서를 보존한다. scope bids:read.
|
|
245
245
|
* @summary 입찰결과 배치 조회
|
|
246
246
|
* @param {BidResultsBatchRequestDto} bidResultsBatchRequestDto
|
|
247
247
|
* @param {*} [options] Override http request option.
|
|
@@ -691,7 +691,7 @@ export const PartnerV1ApiFp = function(configuration?: Configuration) {
|
|
|
691
691
|
return (axios, basePath) => createRequestFunction(localVarAxiosArgs, globalAxios, BASE_PATH, configuration)(axios, localVarOperationServerBasePath || basePath);
|
|
692
692
|
},
|
|
693
693
|
/**
|
|
694
|
-
* V5 entendRec(bid_puchase_no_list) 후속 — 여러 공고 결과를 1회 호출로(additive, 단건 유지). 입력 순서를 보존한다. scope bids:read.
|
|
694
|
+
* V5 entendRec(bid_puchase_no_list) 후속 — 여러 공고 결과를 1회 호출로(additive, 단건 유지). bidIds(공고 식별자) 또는 purchaseNos(구매번호) 중 하나 — purchaseNos 는 각 PO 의 가장 최근 공고로 해소. 입력 순서를 보존한다. scope bids:read.
|
|
695
695
|
* @summary 입찰결과 배치 조회
|
|
696
696
|
* @param {BidResultsBatchRequestDto} bidResultsBatchRequestDto
|
|
697
697
|
* @param {*} [options] Override http request option.
|
|
@@ -873,7 +873,7 @@ export const PartnerV1ApiFactory = function (configuration?: Configuration, base
|
|
|
873
873
|
return localVarFp.getBidResults(bidId, buyerId, options).then((request) => request(axios, basePath));
|
|
874
874
|
},
|
|
875
875
|
/**
|
|
876
|
-
* V5 entendRec(bid_puchase_no_list) 후속 — 여러 공고 결과를 1회 호출로(additive, 단건 유지). 입력 순서를 보존한다. scope bids:read.
|
|
876
|
+
* V5 entendRec(bid_puchase_no_list) 후속 — 여러 공고 결과를 1회 호출로(additive, 단건 유지). bidIds(공고 식별자) 또는 purchaseNos(구매번호) 중 하나 — purchaseNos 는 각 PO 의 가장 최근 공고로 해소. 입력 순서를 보존한다. scope bids:read.
|
|
877
877
|
* @summary 입찰결과 배치 조회
|
|
878
878
|
* @param {BidResultsBatchRequestDto} bidResultsBatchRequestDto
|
|
879
879
|
* @param {*} [options] Override http request option.
|
|
@@ -1027,7 +1027,7 @@ export class PartnerV1Api extends BaseAPI {
|
|
|
1027
1027
|
}
|
|
1028
1028
|
|
|
1029
1029
|
/**
|
|
1030
|
-
* V5 entendRec(bid_puchase_no_list) 후속 — 여러 공고 결과를 1회 호출로(additive, 단건 유지). 입력 순서를 보존한다. scope bids:read.
|
|
1030
|
+
* V5 entendRec(bid_puchase_no_list) 후속 — 여러 공고 결과를 1회 호출로(additive, 단건 유지). bidIds(공고 식별자) 또는 purchaseNos(구매번호) 중 하나 — purchaseNos 는 각 PO 의 가장 최근 공고로 해소. 입력 순서를 보존한다. scope bids:read.
|
|
1031
1031
|
* @summary 입찰결과 배치 조회
|
|
1032
1032
|
* @param {BidResultsBatchRequestDto} bidResultsBatchRequestDto
|
|
1033
1033
|
* @param {*} [options] Override http request option.
|
|
@@ -73,7 +73,7 @@ export declare const PartnerV1ApiAxiosParamCreator: (configuration?: Configurati
|
|
|
73
73
|
*/
|
|
74
74
|
getBidResults: (bidId: string, buyerId: string, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
|
|
75
75
|
/**
|
|
76
|
-
* V5 entendRec(bid_puchase_no_list) 후속 — 여러 공고 결과를 1회 호출로(additive, 단건 유지). 입력 순서를 보존한다. scope bids:read.
|
|
76
|
+
* V5 entendRec(bid_puchase_no_list) 후속 — 여러 공고 결과를 1회 호출로(additive, 단건 유지). bidIds(공고 식별자) 또는 purchaseNos(구매번호) 중 하나 — purchaseNos 는 각 PO 의 가장 최근 공고로 해소. 입력 순서를 보존한다. scope bids:read.
|
|
77
77
|
* @summary 입찰결과 배치 조회
|
|
78
78
|
* @param {BidResultsBatchRequestDto} bidResultsBatchRequestDto
|
|
79
79
|
* @param {*} [options] Override http request option.
|
|
@@ -193,7 +193,7 @@ export declare const PartnerV1ApiFp: (configuration?: Configuration) => {
|
|
|
193
193
|
*/
|
|
194
194
|
getBidResults(bidId: string, buyerId: string, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<BidResultsResponseDto>>;
|
|
195
195
|
/**
|
|
196
|
-
* V5 entendRec(bid_puchase_no_list) 후속 — 여러 공고 결과를 1회 호출로(additive, 단건 유지). 입력 순서를 보존한다. scope bids:read.
|
|
196
|
+
* V5 entendRec(bid_puchase_no_list) 후속 — 여러 공고 결과를 1회 호출로(additive, 단건 유지). bidIds(공고 식별자) 또는 purchaseNos(구매번호) 중 하나 — purchaseNos 는 각 PO 의 가장 최근 공고로 해소. 입력 순서를 보존한다. scope bids:read.
|
|
197
197
|
* @summary 입찰결과 배치 조회
|
|
198
198
|
* @param {BidResultsBatchRequestDto} bidResultsBatchRequestDto
|
|
199
199
|
* @param {*} [options] Override http request option.
|
|
@@ -313,7 +313,7 @@ export declare const PartnerV1ApiFactory: (configuration?: Configuration, basePa
|
|
|
313
313
|
*/
|
|
314
314
|
getBidResults(bidId: string, buyerId: string, options?: RawAxiosRequestConfig): AxiosPromise<BidResultsResponseDto>;
|
|
315
315
|
/**
|
|
316
|
-
* V5 entendRec(bid_puchase_no_list) 후속 — 여러 공고 결과를 1회 호출로(additive, 단건 유지). 입력 순서를 보존한다. scope bids:read.
|
|
316
|
+
* V5 entendRec(bid_puchase_no_list) 후속 — 여러 공고 결과를 1회 호출로(additive, 단건 유지). bidIds(공고 식별자) 또는 purchaseNos(구매번호) 중 하나 — purchaseNos 는 각 PO 의 가장 최근 공고로 해소. 입력 순서를 보존한다. scope bids:read.
|
|
317
317
|
* @summary 입찰결과 배치 조회
|
|
318
318
|
* @param {BidResultsBatchRequestDto} bidResultsBatchRequestDto
|
|
319
319
|
* @param {*} [options] Override http request option.
|
|
@@ -433,7 +433,7 @@ export declare class PartnerV1Api extends BaseAPI {
|
|
|
433
433
|
*/
|
|
434
434
|
getBidResults(bidId: string, buyerId: string, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<BidResultsResponseDto, any, {}>>;
|
|
435
435
|
/**
|
|
436
|
-
* V5 entendRec(bid_puchase_no_list) 후속 — 여러 공고 결과를 1회 호출로(additive, 단건 유지). 입력 순서를 보존한다. scope bids:read.
|
|
436
|
+
* V5 entendRec(bid_puchase_no_list) 후속 — 여러 공고 결과를 1회 호출로(additive, 단건 유지). bidIds(공고 식별자) 또는 purchaseNos(구매번호) 중 하나 — purchaseNos 는 각 PO 의 가장 최근 공고로 해소. 입력 순서를 보존한다. scope bids:read.
|
|
437
437
|
* @summary 입찰결과 배치 조회
|
|
438
438
|
* @param {BidResultsBatchRequestDto} bidResultsBatchRequestDto
|
|
439
439
|
* @param {*} [options] Override http request option.
|
|
@@ -185,7 +185,7 @@ const PartnerV1ApiAxiosParamCreator = function (configuration) {
|
|
|
185
185
|
};
|
|
186
186
|
}),
|
|
187
187
|
/**
|
|
188
|
-
* V5 entendRec(bid_puchase_no_list) 후속 — 여러 공고 결과를 1회 호출로(additive, 단건 유지). 입력 순서를 보존한다. scope bids:read.
|
|
188
|
+
* V5 entendRec(bid_puchase_no_list) 후속 — 여러 공고 결과를 1회 호출로(additive, 단건 유지). bidIds(공고 식별자) 또는 purchaseNos(구매번호) 중 하나 — purchaseNos 는 각 PO 의 가장 최근 공고로 해소. 입력 순서를 보존한다. scope bids:read.
|
|
189
189
|
* @summary 입찰결과 배치 조회
|
|
190
190
|
* @param {BidResultsBatchRequestDto} bidResultsBatchRequestDto
|
|
191
191
|
* @param {*} [options] Override http request option.
|
|
@@ -597,7 +597,7 @@ const PartnerV1ApiFp = function (configuration) {
|
|
|
597
597
|
});
|
|
598
598
|
},
|
|
599
599
|
/**
|
|
600
|
-
* V5 entendRec(bid_puchase_no_list) 후속 — 여러 공고 결과를 1회 호출로(additive, 단건 유지). 입력 순서를 보존한다. scope bids:read.
|
|
600
|
+
* V5 entendRec(bid_puchase_no_list) 후속 — 여러 공고 결과를 1회 호출로(additive, 단건 유지). bidIds(공고 식별자) 또는 purchaseNos(구매번호) 중 하나 — purchaseNos 는 각 PO 의 가장 최근 공고로 해소. 입력 순서를 보존한다. scope bids:read.
|
|
601
601
|
* @summary 입찰결과 배치 조회
|
|
602
602
|
* @param {BidResultsBatchRequestDto} bidResultsBatchRequestDto
|
|
603
603
|
* @param {*} [options] Override http request option.
|
|
@@ -809,7 +809,7 @@ const PartnerV1ApiFactory = function (configuration, basePath, axios) {
|
|
|
809
809
|
return localVarFp.getBidResults(bidId, buyerId, options).then((request) => request(axios, basePath));
|
|
810
810
|
},
|
|
811
811
|
/**
|
|
812
|
-
* V5 entendRec(bid_puchase_no_list) 후속 — 여러 공고 결과를 1회 호출로(additive, 단건 유지). 입력 순서를 보존한다. scope bids:read.
|
|
812
|
+
* V5 entendRec(bid_puchase_no_list) 후속 — 여러 공고 결과를 1회 호출로(additive, 단건 유지). bidIds(공고 식별자) 또는 purchaseNos(구매번호) 중 하나 — purchaseNos 는 각 PO 의 가장 최근 공고로 해소. 입력 순서를 보존한다. scope bids:read.
|
|
813
813
|
* @summary 입찰결과 배치 조회
|
|
814
814
|
* @param {BidResultsBatchRequestDto} bidResultsBatchRequestDto
|
|
815
815
|
* @param {*} [options] Override http request option.
|
|
@@ -959,7 +959,7 @@ class PartnerV1Api extends base_1.BaseAPI {
|
|
|
959
959
|
return (0, exports.PartnerV1ApiFp)(this.configuration).getBidResults(bidId, buyerId, options).then((request) => request(this.axios, this.basePath));
|
|
960
960
|
}
|
|
961
961
|
/**
|
|
962
|
-
* V5 entendRec(bid_puchase_no_list) 후속 — 여러 공고 결과를 1회 호출로(additive, 단건 유지). 입력 순서를 보존한다. scope bids:read.
|
|
962
|
+
* V5 entendRec(bid_puchase_no_list) 후속 — 여러 공고 결과를 1회 호출로(additive, 단건 유지). bidIds(공고 식별자) 또는 purchaseNos(구매번호) 중 하나 — purchaseNos 는 각 PO 의 가장 최근 공고로 해소. 입력 순서를 보존한다. scope bids:read.
|
|
963
963
|
* @summary 입찰결과 배치 조회
|
|
964
964
|
* @param {BidResultsBatchRequestDto} bidResultsBatchRequestDto
|
|
965
965
|
* @param {*} [options] Override http request option.
|
|
@@ -73,7 +73,7 @@ export declare const PartnerV1ApiAxiosParamCreator: (configuration?: Configurati
|
|
|
73
73
|
*/
|
|
74
74
|
getBidResults: (bidId: string, buyerId: string, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
|
|
75
75
|
/**
|
|
76
|
-
* V5 entendRec(bid_puchase_no_list) 후속 — 여러 공고 결과를 1회 호출로(additive, 단건 유지). 입력 순서를 보존한다. scope bids:read.
|
|
76
|
+
* V5 entendRec(bid_puchase_no_list) 후속 — 여러 공고 결과를 1회 호출로(additive, 단건 유지). bidIds(공고 식별자) 또는 purchaseNos(구매번호) 중 하나 — purchaseNos 는 각 PO 의 가장 최근 공고로 해소. 입력 순서를 보존한다. scope bids:read.
|
|
77
77
|
* @summary 입찰결과 배치 조회
|
|
78
78
|
* @param {BidResultsBatchRequestDto} bidResultsBatchRequestDto
|
|
79
79
|
* @param {*} [options] Override http request option.
|
|
@@ -193,7 +193,7 @@ export declare const PartnerV1ApiFp: (configuration?: Configuration) => {
|
|
|
193
193
|
*/
|
|
194
194
|
getBidResults(bidId: string, buyerId: string, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<BidResultsResponseDto>>;
|
|
195
195
|
/**
|
|
196
|
-
* V5 entendRec(bid_puchase_no_list) 후속 — 여러 공고 결과를 1회 호출로(additive, 단건 유지). 입력 순서를 보존한다. scope bids:read.
|
|
196
|
+
* V5 entendRec(bid_puchase_no_list) 후속 — 여러 공고 결과를 1회 호출로(additive, 단건 유지). bidIds(공고 식별자) 또는 purchaseNos(구매번호) 중 하나 — purchaseNos 는 각 PO 의 가장 최근 공고로 해소. 입력 순서를 보존한다. scope bids:read.
|
|
197
197
|
* @summary 입찰결과 배치 조회
|
|
198
198
|
* @param {BidResultsBatchRequestDto} bidResultsBatchRequestDto
|
|
199
199
|
* @param {*} [options] Override http request option.
|
|
@@ -313,7 +313,7 @@ export declare const PartnerV1ApiFactory: (configuration?: Configuration, basePa
|
|
|
313
313
|
*/
|
|
314
314
|
getBidResults(bidId: string, buyerId: string, options?: RawAxiosRequestConfig): AxiosPromise<BidResultsResponseDto>;
|
|
315
315
|
/**
|
|
316
|
-
* V5 entendRec(bid_puchase_no_list) 후속 — 여러 공고 결과를 1회 호출로(additive, 단건 유지). 입력 순서를 보존한다. scope bids:read.
|
|
316
|
+
* V5 entendRec(bid_puchase_no_list) 후속 — 여러 공고 결과를 1회 호출로(additive, 단건 유지). bidIds(공고 식별자) 또는 purchaseNos(구매번호) 중 하나 — purchaseNos 는 각 PO 의 가장 최근 공고로 해소. 입력 순서를 보존한다. scope bids:read.
|
|
317
317
|
* @summary 입찰결과 배치 조회
|
|
318
318
|
* @param {BidResultsBatchRequestDto} bidResultsBatchRequestDto
|
|
319
319
|
* @param {*} [options] Override http request option.
|
|
@@ -433,7 +433,7 @@ export declare class PartnerV1Api extends BaseAPI {
|
|
|
433
433
|
*/
|
|
434
434
|
getBidResults(bidId: string, buyerId: string, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<BidResultsResponseDto, any, {}>>;
|
|
435
435
|
/**
|
|
436
|
-
* V5 entendRec(bid_puchase_no_list) 후속 — 여러 공고 결과를 1회 호출로(additive, 단건 유지). 입력 순서를 보존한다. scope bids:read.
|
|
436
|
+
* V5 entendRec(bid_puchase_no_list) 후속 — 여러 공고 결과를 1회 호출로(additive, 단건 유지). bidIds(공고 식별자) 또는 purchaseNos(구매번호) 중 하나 — purchaseNos 는 각 PO 의 가장 최근 공고로 해소. 입력 순서를 보존한다. scope bids:read.
|
|
437
437
|
* @summary 입찰결과 배치 조회
|
|
438
438
|
* @param {BidResultsBatchRequestDto} bidResultsBatchRequestDto
|
|
439
439
|
* @param {*} [options] Override http request option.
|
|
@@ -182,7 +182,7 @@ export const PartnerV1ApiAxiosParamCreator = function (configuration) {
|
|
|
182
182
|
};
|
|
183
183
|
}),
|
|
184
184
|
/**
|
|
185
|
-
* V5 entendRec(bid_puchase_no_list) 후속 — 여러 공고 결과를 1회 호출로(additive, 단건 유지). 입력 순서를 보존한다. scope bids:read.
|
|
185
|
+
* V5 entendRec(bid_puchase_no_list) 후속 — 여러 공고 결과를 1회 호출로(additive, 단건 유지). bidIds(공고 식별자) 또는 purchaseNos(구매번호) 중 하나 — purchaseNos 는 각 PO 의 가장 최근 공고로 해소. 입력 순서를 보존한다. scope bids:read.
|
|
186
186
|
* @summary 입찰결과 배치 조회
|
|
187
187
|
* @param {BidResultsBatchRequestDto} bidResultsBatchRequestDto
|
|
188
188
|
* @param {*} [options] Override http request option.
|
|
@@ -593,7 +593,7 @@ export const PartnerV1ApiFp = function (configuration) {
|
|
|
593
593
|
});
|
|
594
594
|
},
|
|
595
595
|
/**
|
|
596
|
-
* V5 entendRec(bid_puchase_no_list) 후속 — 여러 공고 결과를 1회 호출로(additive, 단건 유지). 입력 순서를 보존한다. scope bids:read.
|
|
596
|
+
* V5 entendRec(bid_puchase_no_list) 후속 — 여러 공고 결과를 1회 호출로(additive, 단건 유지). bidIds(공고 식별자) 또는 purchaseNos(구매번호) 중 하나 — purchaseNos 는 각 PO 의 가장 최근 공고로 해소. 입력 순서를 보존한다. scope bids:read.
|
|
597
597
|
* @summary 입찰결과 배치 조회
|
|
598
598
|
* @param {BidResultsBatchRequestDto} bidResultsBatchRequestDto
|
|
599
599
|
* @param {*} [options] Override http request option.
|
|
@@ -804,7 +804,7 @@ export const PartnerV1ApiFactory = function (configuration, basePath, axios) {
|
|
|
804
804
|
return localVarFp.getBidResults(bidId, buyerId, options).then((request) => request(axios, basePath));
|
|
805
805
|
},
|
|
806
806
|
/**
|
|
807
|
-
* V5 entendRec(bid_puchase_no_list) 후속 — 여러 공고 결과를 1회 호출로(additive, 단건 유지). 입력 순서를 보존한다. scope bids:read.
|
|
807
|
+
* V5 entendRec(bid_puchase_no_list) 후속 — 여러 공고 결과를 1회 호출로(additive, 단건 유지). bidIds(공고 식별자) 또는 purchaseNos(구매번호) 중 하나 — purchaseNos 는 각 PO 의 가장 최근 공고로 해소. 입력 순서를 보존한다. scope bids:read.
|
|
808
808
|
* @summary 입찰결과 배치 조회
|
|
809
809
|
* @param {BidResultsBatchRequestDto} bidResultsBatchRequestDto
|
|
810
810
|
* @param {*} [options] Override http request option.
|
|
@@ -953,7 +953,7 @@ export class PartnerV1Api extends BaseAPI {
|
|
|
953
953
|
return PartnerV1ApiFp(this.configuration).getBidResults(bidId, buyerId, options).then((request) => request(this.axios, this.basePath));
|
|
954
954
|
}
|
|
955
955
|
/**
|
|
956
|
-
* V5 entendRec(bid_puchase_no_list) 후속 — 여러 공고 결과를 1회 호출로(additive, 단건 유지). 입력 순서를 보존한다. scope bids:read.
|
|
956
|
+
* V5 entendRec(bid_puchase_no_list) 후속 — 여러 공고 결과를 1회 호출로(additive, 단건 유지). bidIds(공고 식별자) 또는 purchaseNos(구매번호) 중 하나 — purchaseNos 는 각 PO 의 가장 최근 공고로 해소. 입력 순서를 보존한다. scope bids:read.
|
|
957
957
|
* @summary 입찰결과 배치 조회
|
|
958
958
|
* @param {BidResultsBatchRequestDto} bidResultsBatchRequestDto
|
|
959
959
|
* @param {*} [options] Override http request option.
|
|
@@ -0,0 +1,33 @@
|
|
|
1
|
+
/**
|
|
2
|
+
* CMARKET V6 Partner API
|
|
3
|
+
* 외부 ERP 연동용 RESTful API.
|
|
4
|
+
*
|
|
5
|
+
* The version of the OpenAPI document: 1.0
|
|
6
|
+
*
|
|
7
|
+
*
|
|
8
|
+
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
|
|
9
|
+
* https://openapi-generator.tech
|
|
10
|
+
* Do not edit the class manually.
|
|
11
|
+
*/
|
|
12
|
+
export interface BidResultParticipantAttachmentDto {
|
|
13
|
+
/**
|
|
14
|
+
* 파일 일련번호 (V5 f_seq).
|
|
15
|
+
*/
|
|
16
|
+
'fSeq': number;
|
|
17
|
+
/**
|
|
18
|
+
* 파일명 (V5 f_name).
|
|
19
|
+
*/
|
|
20
|
+
'fileName': string;
|
|
21
|
+
/**
|
|
22
|
+
* 파일키 (32자 nanoid) — storage 다운로드 엔드포인트에 전달. 마스킹/비매핑 legacy 시 미발급.
|
|
23
|
+
*/
|
|
24
|
+
'fileKey'?: string;
|
|
25
|
+
/**
|
|
26
|
+
* 미리보기 URL (V5 f_url). 미발급 시 null.
|
|
27
|
+
*/
|
|
28
|
+
'previewUrl'?: string;
|
|
29
|
+
/**
|
|
30
|
+
* 다운로드 URL (V5 f_full_url). 미발급 시 null.
|
|
31
|
+
*/
|
|
32
|
+
'downloadUrl'?: string;
|
|
33
|
+
}
|
|
@@ -0,0 +1,14 @@
|
|
|
1
|
+
/* tslint:disable */
|
|
2
|
+
/* eslint-disable */
|
|
3
|
+
/**
|
|
4
|
+
* CMARKET V6 Partner API
|
|
5
|
+
* 외부 ERP 연동용 RESTful API.
|
|
6
|
+
*
|
|
7
|
+
* The version of the OpenAPI document: 1.0
|
|
8
|
+
*
|
|
9
|
+
*
|
|
10
|
+
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
|
|
11
|
+
* https://openapi-generator.tech
|
|
12
|
+
* Do not edit the class manually.
|
|
13
|
+
*/
|
|
14
|
+
export {};
|
|
@@ -9,6 +9,7 @@
|
|
|
9
9
|
* https://openapi-generator.tech
|
|
10
10
|
* Do not edit the class manually.
|
|
11
11
|
*/
|
|
12
|
+
import type { BidResultParticipantAttachmentDto } from './bid-result-participant-attachment-dto';
|
|
12
13
|
export interface BidResultParticipantDto {
|
|
13
14
|
/**
|
|
14
15
|
* 참여 순번.
|
|
@@ -62,4 +63,12 @@ export interface BidResultParticipantDto {
|
|
|
62
63
|
* 담당자 이메일 (V5 mem_email). 마스킹 시 null.
|
|
63
64
|
*/
|
|
64
65
|
'managerEmail'?: string;
|
|
66
|
+
/**
|
|
67
|
+
* 응찰 알림글 (V5 join_alim). 마스킹 시 null.
|
|
68
|
+
*/
|
|
69
|
+
'joinAlim'?: string;
|
|
70
|
+
/**
|
|
71
|
+
* 응찰 제출 첨부파일 목록 (V5 entend_file_info). 신원 마스킹 시 빈 배열.
|
|
72
|
+
*/
|
|
73
|
+
'attachments'?: Array<BidResultParticipantAttachmentDto>;
|
|
65
74
|
}
|
|
@@ -15,7 +15,11 @@ export interface BidResultsBatchRequestDto {
|
|
|
15
15
|
*/
|
|
16
16
|
'buyerId': string;
|
|
17
17
|
/**
|
|
18
|
-
* 조회할 공고 식별자 목록.
|
|
18
|
+
* 조회할 공고 식별자 목록. purchaseNos 와 상호배타(정확히 하나). 최대 100건.
|
|
19
19
|
*/
|
|
20
|
-
'bidIds'
|
|
20
|
+
'bidIds'?: Array<string>;
|
|
21
|
+
/**
|
|
22
|
+
* 조회할 구매번호(bid_puchase_no) 목록. 각 PO 는 가장 최근 공고로 해소된다(재입찰 패리티). bidIds 와 상호배타(정확히 하나). 최대 100건.
|
|
23
|
+
*/
|
|
24
|
+
'purchaseNos'?: Array<string>;
|
|
21
25
|
}
|
|
@@ -18,7 +18,11 @@ export interface BidResultsResponseDto {
|
|
|
18
18
|
*/
|
|
19
19
|
'bidId': string;
|
|
20
20
|
/**
|
|
21
|
-
*
|
|
21
|
+
* 발주처 지정 조달번호 (V5 bid_puchase_no). 외부 ERP 가 등록 시 보낸 PO 번호. 미설정 시 null.
|
|
22
|
+
*/
|
|
23
|
+
'bidPuchaseNo'?: string;
|
|
24
|
+
/**
|
|
25
|
+
* 공고 상태 코드. V5 /entendrec 은 A(진행중)/B(마감)/C(낙찰·계약진행)/E(유찰) 4종을 문서화했으나, V6 는 D(계약완료)/R(임시저장)을 더한 6종 superset 을 그대로 내려준다 — V5 호환 ERP 는 D 를 C 의 후속 단계로, R 은 미발행 초안으로 처리할 것(코드 매핑 없이 raw 통과).
|
|
22
26
|
*/
|
|
23
27
|
'status': string;
|
|
24
28
|
/**
|
|
@@ -9,6 +9,7 @@ export * from './bid-failed-response-dto';
|
|
|
9
9
|
export * from './bid-failure-reason';
|
|
10
10
|
export * from './bid-item-dto';
|
|
11
11
|
export * from './bid-manager-dto';
|
|
12
|
+
export * from './bid-result-participant-attachment-dto';
|
|
12
13
|
export * from './bid-result-participant-dto';
|
|
13
14
|
export * from './bid-result-product-dto';
|
|
14
15
|
export * from './bid-result-winner-dto';
|
package/dist/esm/models/index.js
CHANGED
|
@@ -9,6 +9,7 @@ export * from './bid-failed-response-dto';
|
|
|
9
9
|
export * from './bid-failure-reason';
|
|
10
10
|
export * from './bid-item-dto';
|
|
11
11
|
export * from './bid-manager-dto';
|
|
12
|
+
export * from './bid-result-participant-attachment-dto';
|
|
12
13
|
export * from './bid-result-participant-dto';
|
|
13
14
|
export * from './bid-result-product-dto';
|
|
14
15
|
export * from './bid-result-winner-dto';
|
|
@@ -0,0 +1,33 @@
|
|
|
1
|
+
/**
|
|
2
|
+
* CMARKET V6 Partner API
|
|
3
|
+
* 외부 ERP 연동용 RESTful API.
|
|
4
|
+
*
|
|
5
|
+
* The version of the OpenAPI document: 1.0
|
|
6
|
+
*
|
|
7
|
+
*
|
|
8
|
+
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
|
|
9
|
+
* https://openapi-generator.tech
|
|
10
|
+
* Do not edit the class manually.
|
|
11
|
+
*/
|
|
12
|
+
export interface BidResultParticipantAttachmentDto {
|
|
13
|
+
/**
|
|
14
|
+
* 파일 일련번호 (V5 f_seq).
|
|
15
|
+
*/
|
|
16
|
+
'fSeq': number;
|
|
17
|
+
/**
|
|
18
|
+
* 파일명 (V5 f_name).
|
|
19
|
+
*/
|
|
20
|
+
'fileName': string;
|
|
21
|
+
/**
|
|
22
|
+
* 파일키 (32자 nanoid) — storage 다운로드 엔드포인트에 전달. 마스킹/비매핑 legacy 시 미발급.
|
|
23
|
+
*/
|
|
24
|
+
'fileKey'?: string;
|
|
25
|
+
/**
|
|
26
|
+
* 미리보기 URL (V5 f_url). 미발급 시 null.
|
|
27
|
+
*/
|
|
28
|
+
'previewUrl'?: string;
|
|
29
|
+
/**
|
|
30
|
+
* 다운로드 URL (V5 f_full_url). 미발급 시 null.
|
|
31
|
+
*/
|
|
32
|
+
'downloadUrl'?: string;
|
|
33
|
+
}
|
|
@@ -0,0 +1,15 @@
|
|
|
1
|
+
"use strict";
|
|
2
|
+
/* tslint:disable */
|
|
3
|
+
/* eslint-disable */
|
|
4
|
+
/**
|
|
5
|
+
* CMARKET V6 Partner API
|
|
6
|
+
* 외부 ERP 연동용 RESTful API.
|
|
7
|
+
*
|
|
8
|
+
* The version of the OpenAPI document: 1.0
|
|
9
|
+
*
|
|
10
|
+
*
|
|
11
|
+
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
|
|
12
|
+
* https://openapi-generator.tech
|
|
13
|
+
* Do not edit the class manually.
|
|
14
|
+
*/
|
|
15
|
+
Object.defineProperty(exports, "__esModule", { value: true });
|
|
@@ -9,6 +9,7 @@
|
|
|
9
9
|
* https://openapi-generator.tech
|
|
10
10
|
* Do not edit the class manually.
|
|
11
11
|
*/
|
|
12
|
+
import type { BidResultParticipantAttachmentDto } from './bid-result-participant-attachment-dto';
|
|
12
13
|
export interface BidResultParticipantDto {
|
|
13
14
|
/**
|
|
14
15
|
* 참여 순번.
|
|
@@ -62,4 +63,12 @@ export interface BidResultParticipantDto {
|
|
|
62
63
|
* 담당자 이메일 (V5 mem_email). 마스킹 시 null.
|
|
63
64
|
*/
|
|
64
65
|
'managerEmail'?: string;
|
|
66
|
+
/**
|
|
67
|
+
* 응찰 알림글 (V5 join_alim). 마스킹 시 null.
|
|
68
|
+
*/
|
|
69
|
+
'joinAlim'?: string;
|
|
70
|
+
/**
|
|
71
|
+
* 응찰 제출 첨부파일 목록 (V5 entend_file_info). 신원 마스킹 시 빈 배열.
|
|
72
|
+
*/
|
|
73
|
+
'attachments'?: Array<BidResultParticipantAttachmentDto>;
|
|
65
74
|
}
|
|
@@ -15,7 +15,11 @@ export interface BidResultsBatchRequestDto {
|
|
|
15
15
|
*/
|
|
16
16
|
'buyerId': string;
|
|
17
17
|
/**
|
|
18
|
-
* 조회할 공고 식별자 목록.
|
|
18
|
+
* 조회할 공고 식별자 목록. purchaseNos 와 상호배타(정확히 하나). 최대 100건.
|
|
19
19
|
*/
|
|
20
|
-
'bidIds'
|
|
20
|
+
'bidIds'?: Array<string>;
|
|
21
|
+
/**
|
|
22
|
+
* 조회할 구매번호(bid_puchase_no) 목록. 각 PO 는 가장 최근 공고로 해소된다(재입찰 패리티). bidIds 와 상호배타(정확히 하나). 최대 100건.
|
|
23
|
+
*/
|
|
24
|
+
'purchaseNos'?: Array<string>;
|
|
21
25
|
}
|
|
@@ -18,7 +18,11 @@ export interface BidResultsResponseDto {
|
|
|
18
18
|
*/
|
|
19
19
|
'bidId': string;
|
|
20
20
|
/**
|
|
21
|
-
*
|
|
21
|
+
* 발주처 지정 조달번호 (V5 bid_puchase_no). 외부 ERP 가 등록 시 보낸 PO 번호. 미설정 시 null.
|
|
22
|
+
*/
|
|
23
|
+
'bidPuchaseNo'?: string;
|
|
24
|
+
/**
|
|
25
|
+
* 공고 상태 코드. V5 /entendrec 은 A(진행중)/B(마감)/C(낙찰·계약진행)/E(유찰) 4종을 문서화했으나, V6 는 D(계약완료)/R(임시저장)을 더한 6종 superset 을 그대로 내려준다 — V5 호환 ERP 는 D 를 C 의 후속 단계로, R 은 미발행 초안으로 처리할 것(코드 매핑 없이 raw 통과).
|
|
22
26
|
*/
|
|
23
27
|
'status': string;
|
|
24
28
|
/**
|
package/dist/models/index.d.ts
CHANGED
|
@@ -9,6 +9,7 @@ export * from './bid-failed-response-dto';
|
|
|
9
9
|
export * from './bid-failure-reason';
|
|
10
10
|
export * from './bid-item-dto';
|
|
11
11
|
export * from './bid-manager-dto';
|
|
12
|
+
export * from './bid-result-participant-attachment-dto';
|
|
12
13
|
export * from './bid-result-participant-dto';
|
|
13
14
|
export * from './bid-result-product-dto';
|
|
14
15
|
export * from './bid-result-winner-dto';
|
package/dist/models/index.js
CHANGED
|
@@ -25,6 +25,7 @@ __exportStar(require("./bid-failed-response-dto"), exports);
|
|
|
25
25
|
__exportStar(require("./bid-failure-reason"), exports);
|
|
26
26
|
__exportStar(require("./bid-item-dto"), exports);
|
|
27
27
|
__exportStar(require("./bid-manager-dto"), exports);
|
|
28
|
+
__exportStar(require("./bid-result-participant-attachment-dto"), exports);
|
|
28
29
|
__exportStar(require("./bid-result-participant-dto"), exports);
|
|
29
30
|
__exportStar(require("./bid-result-product-dto"), exports);
|
|
30
31
|
__exportStar(require("./bid-result-winner-dto"), exports);
|
|
@@ -0,0 +1,28 @@
|
|
|
1
|
+
# BidResultParticipantAttachmentDto
|
|
2
|
+
|
|
3
|
+
|
|
4
|
+
## Properties
|
|
5
|
+
|
|
6
|
+
Name | Type | Description | Notes
|
|
7
|
+
------------ | ------------- | ------------- | -------------
|
|
8
|
+
**fSeq** | **number** | 파일 일련번호 (V5 f_seq). | [default to undefined]
|
|
9
|
+
**fileName** | **string** | 파일명 (V5 f_name). | [default to undefined]
|
|
10
|
+
**fileKey** | **string** | 파일키 (32자 nanoid) — storage 다운로드 엔드포인트에 전달. 마스킹/비매핑 legacy 시 미발급. | [optional] [default to undefined]
|
|
11
|
+
**previewUrl** | **string** | 미리보기 URL (V5 f_url). 미발급 시 null. | [optional] [default to undefined]
|
|
12
|
+
**downloadUrl** | **string** | 다운로드 URL (V5 f_full_url). 미발급 시 null. | [optional] [default to undefined]
|
|
13
|
+
|
|
14
|
+
## Example
|
|
15
|
+
|
|
16
|
+
```typescript
|
|
17
|
+
import { BidResultParticipantAttachmentDto } from '@cmarket/partner-sdk';
|
|
18
|
+
|
|
19
|
+
const instance: BidResultParticipantAttachmentDto = {
|
|
20
|
+
fSeq,
|
|
21
|
+
fileName,
|
|
22
|
+
fileKey,
|
|
23
|
+
previewUrl,
|
|
24
|
+
downloadUrl,
|
|
25
|
+
};
|
|
26
|
+
```
|
|
27
|
+
|
|
28
|
+
[[Back to Model list]](../README.md#documentation-for-models) [[Back to API list]](../README.md#documentation-for-api-endpoints) [[Back to README]](../README.md)
|
|
@@ -18,6 +18,8 @@ Name | Type | Description | Notes
|
|
|
18
18
|
**managerName** | **string** | 담당자명 (V5 mem_name). 마스킹 시 null. | [optional] [default to undefined]
|
|
19
19
|
**managerPhone** | **string** | 담당자 연락처 (V5 mem_tel/mem_phon). 마스킹 시 null. | [optional] [default to undefined]
|
|
20
20
|
**managerEmail** | **string** | 담당자 이메일 (V5 mem_email). 마스킹 시 null. | [optional] [default to undefined]
|
|
21
|
+
**joinAlim** | **string** | 응찰 알림글 (V5 join_alim). 마스킹 시 null. | [optional] [default to undefined]
|
|
22
|
+
**attachments** | [**Array<BidResultParticipantAttachmentDto>**](BidResultParticipantAttachmentDto.md) | 응찰 제출 첨부파일 목록 (V5 entend_file_info). 신원 마스킹 시 빈 배열. | [optional] [default to undefined]
|
|
21
23
|
|
|
22
24
|
## Example
|
|
23
25
|
|
|
@@ -38,6 +40,8 @@ const instance: BidResultParticipantDto = {
|
|
|
38
40
|
managerName,
|
|
39
41
|
managerPhone,
|
|
40
42
|
managerEmail,
|
|
43
|
+
joinAlim,
|
|
44
|
+
attachments,
|
|
41
45
|
};
|
|
42
46
|
```
|
|
43
47
|
|
|
@@ -6,7 +6,8 @@
|
|
|
6
6
|
Name | Type | Description | Notes
|
|
7
7
|
------------ | ------------- | ------------- | -------------
|
|
8
8
|
**buyerId** | **string** | 공고 명의 회원 ID (멀티테넌트). | [default to undefined]
|
|
9
|
-
**bidIds** | **Array<string>** | 조회할 공고 식별자 목록.
|
|
9
|
+
**bidIds** | **Array<string>** | 조회할 공고 식별자 목록. purchaseNos 와 상호배타(정확히 하나). 최대 100건. | [optional] [default to undefined]
|
|
10
|
+
**purchaseNos** | **Array<string>** | 조회할 구매번호(bid_puchase_no) 목록. 각 PO 는 가장 최근 공고로 해소된다(재입찰 패리티). bidIds 와 상호배타(정확히 하나). 최대 100건. | [optional] [default to undefined]
|
|
10
11
|
|
|
11
12
|
## Example
|
|
12
13
|
|
|
@@ -16,6 +17,7 @@ import { BidResultsBatchRequestDto } from '@cmarket/partner-sdk';
|
|
|
16
17
|
const instance: BidResultsBatchRequestDto = {
|
|
17
18
|
buyerId,
|
|
18
19
|
bidIds,
|
|
20
|
+
purchaseNos,
|
|
19
21
|
};
|
|
20
22
|
```
|
|
21
23
|
|
|
@@ -6,7 +6,8 @@
|
|
|
6
6
|
Name | Type | Description | Notes
|
|
7
7
|
------------ | ------------- | ------------- | -------------
|
|
8
8
|
**bidId** | **string** | 공고 식별자. | [default to undefined]
|
|
9
|
-
**
|
|
9
|
+
**bidPuchaseNo** | **string** | 발주처 지정 조달번호 (V5 bid_puchase_no). 외부 ERP 가 등록 시 보낸 PO 번호. 미설정 시 null. | [optional] [default to undefined]
|
|
10
|
+
**status** | **string** | 공고 상태 코드. V5 /entendrec 은 A(진행중)/B(마감)/C(낙찰·계약진행)/E(유찰) 4종을 문서화했으나, V6 는 D(계약완료)/R(임시저장)을 더한 6종 superset 을 그대로 내려준다 — V5 호환 ERP 는 D 를 C 의 후속 단계로, R 은 미발행 초안으로 처리할 것(코드 매핑 없이 raw 통과). | [default to undefined]
|
|
10
11
|
**statusText** | **string** | 공고 상태 한국어 레이블. | [optional] [default to undefined]
|
|
11
12
|
**isCancelled** | **boolean** | 공고 취소 여부 (status 와 직교하는 별도 레이어). | [optional] [default to undefined]
|
|
12
13
|
**failureReasonCode** | **string** | 유찰사유 코드. | [optional] [default to undefined]
|
|
@@ -23,6 +24,7 @@ import { BidResultsResponseDto } from '@cmarket/partner-sdk';
|
|
|
23
24
|
|
|
24
25
|
const instance: BidResultsResponseDto = {
|
|
25
26
|
bidId,
|
|
27
|
+
bidPuchaseNo,
|
|
26
28
|
status,
|
|
27
29
|
statusText,
|
|
28
30
|
isCancelled,
|
|
@@ -5,6 +5,7 @@
|
|
|
5
5
|
|
|
6
6
|
Name | Type | Description | Notes
|
|
7
7
|
------------ | ------------- | ------------- | -------------
|
|
8
|
+
**fSeq** | **number** | 파일 순번 (V5 entd_file_seq) — documents 배열 내 1-indexed 위치(결정적 순서: 인감 3종 → 서식순). | [default to undefined]
|
|
8
9
|
**docType** | **string** | 서류 종류 코드. | [default to undefined]
|
|
9
10
|
**paperCode** | **number** | 서식(paper) 코드. 자동생성 서식이 아니면 null. | [default to undefined]
|
|
10
11
|
**fileName** | **string** | 파일명. 미발급 시 null. | [default to undefined]
|
|
@@ -16,6 +17,7 @@ Name | Type | Description | Notes
|
|
|
16
17
|
import { ContractDocumentItemDto } from '@cmarket/partner-sdk';
|
|
17
18
|
|
|
18
19
|
const instance: ContractDocumentItemDto = {
|
|
20
|
+
fSeq,
|
|
19
21
|
docType,
|
|
20
22
|
paperCode,
|
|
21
23
|
fileName,
|
package/docs/PartnerV1Api.md
CHANGED
|
@@ -237,7 +237,7 @@ const { status, data } = await apiInstance.getBidResults(
|
|
|
237
237
|
# **getBidResultsBatch**
|
|
238
238
|
> Array<BidResultsResponseDto> getBidResultsBatch(bidResultsBatchRequestDto)
|
|
239
239
|
|
|
240
|
-
V5 entendRec(bid_puchase_no_list) 후속 — 여러 공고 결과를 1회 호출로(additive, 단건 유지). 입력 순서를 보존한다. scope bids:read.
|
|
240
|
+
V5 entendRec(bid_puchase_no_list) 후속 — 여러 공고 결과를 1회 호출로(additive, 단건 유지). bidIds(공고 식별자) 또는 purchaseNos(구매번호) 중 하나 — purchaseNos 는 각 PO 의 가장 최근 공고로 해소. 입력 순서를 보존한다. scope bids:read.
|
|
241
241
|
|
|
242
242
|
### Example
|
|
243
243
|
|
|
@@ -5,6 +5,7 @@
|
|
|
5
5
|
|
|
6
6
|
Name | Type | Description | Notes
|
|
7
7
|
------------ | ------------- | ------------- | -------------
|
|
8
|
+
**fSeq** | **number** | 파일 순번 (V5 f_seq) — documents 배열 내 1-indexed 위치(결정적 순서). V5 응답의 f_seq 대응. | [default to undefined]
|
|
8
9
|
**paperCode** | **number** | 문서 종류 코드 (paperCode). | [default to undefined]
|
|
9
10
|
**fileName** | **object** | 파일명. 미발급 시 null. | [default to undefined]
|
|
10
11
|
**fileUrl** | **object** | 파일 다운로드 URL. 미발급 시 null. | [default to undefined]
|
|
@@ -15,6 +16,7 @@ Name | Type | Description | Notes
|
|
|
15
16
|
import { StatementDocumentDto } from '@cmarket/partner-sdk';
|
|
16
17
|
|
|
17
18
|
const instance: StatementDocumentDto = {
|
|
19
|
+
fSeq,
|
|
18
20
|
paperCode,
|
|
19
21
|
fileName,
|
|
20
22
|
fileUrl,
|
|
@@ -0,0 +1,39 @@
|
|
|
1
|
+
/* tslint:disable */
|
|
2
|
+
/* eslint-disable */
|
|
3
|
+
/**
|
|
4
|
+
* CMARKET V6 Partner API
|
|
5
|
+
* 외부 ERP 연동용 RESTful API.
|
|
6
|
+
*
|
|
7
|
+
* The version of the OpenAPI document: 1.0
|
|
8
|
+
*
|
|
9
|
+
*
|
|
10
|
+
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
|
|
11
|
+
* https://openapi-generator.tech
|
|
12
|
+
* Do not edit the class manually.
|
|
13
|
+
*/
|
|
14
|
+
|
|
15
|
+
|
|
16
|
+
|
|
17
|
+
export interface BidResultParticipantAttachmentDto {
|
|
18
|
+
/**
|
|
19
|
+
* 파일 일련번호 (V5 f_seq).
|
|
20
|
+
*/
|
|
21
|
+
'fSeq': number;
|
|
22
|
+
/**
|
|
23
|
+
* 파일명 (V5 f_name).
|
|
24
|
+
*/
|
|
25
|
+
'fileName': string;
|
|
26
|
+
/**
|
|
27
|
+
* 파일키 (32자 nanoid) — storage 다운로드 엔드포인트에 전달. 마스킹/비매핑 legacy 시 미발급.
|
|
28
|
+
*/
|
|
29
|
+
'fileKey'?: string;
|
|
30
|
+
/**
|
|
31
|
+
* 미리보기 URL (V5 f_url). 미발급 시 null.
|
|
32
|
+
*/
|
|
33
|
+
'previewUrl'?: string;
|
|
34
|
+
/**
|
|
35
|
+
* 다운로드 URL (V5 f_full_url). 미발급 시 null.
|
|
36
|
+
*/
|
|
37
|
+
'downloadUrl'?: string;
|
|
38
|
+
}
|
|
39
|
+
|
|
@@ -13,6 +13,9 @@
|
|
|
13
13
|
*/
|
|
14
14
|
|
|
15
15
|
|
|
16
|
+
// May contain unused imports in some cases
|
|
17
|
+
// @ts-ignore
|
|
18
|
+
import type { BidResultParticipantAttachmentDto } from './bid-result-participant-attachment-dto';
|
|
16
19
|
|
|
17
20
|
export interface BidResultParticipantDto {
|
|
18
21
|
/**
|
|
@@ -67,5 +70,13 @@ export interface BidResultParticipantDto {
|
|
|
67
70
|
* 담당자 이메일 (V5 mem_email). 마스킹 시 null.
|
|
68
71
|
*/
|
|
69
72
|
'managerEmail'?: string;
|
|
73
|
+
/**
|
|
74
|
+
* 응찰 알림글 (V5 join_alim). 마스킹 시 null.
|
|
75
|
+
*/
|
|
76
|
+
'joinAlim'?: string;
|
|
77
|
+
/**
|
|
78
|
+
* 응찰 제출 첨부파일 목록 (V5 entend_file_info). 신원 마스킹 시 빈 배열.
|
|
79
|
+
*/
|
|
80
|
+
'attachments'?: Array<BidResultParticipantAttachmentDto>;
|
|
70
81
|
}
|
|
71
82
|
|
|
@@ -20,8 +20,12 @@ export interface BidResultsBatchRequestDto {
|
|
|
20
20
|
*/
|
|
21
21
|
'buyerId': string;
|
|
22
22
|
/**
|
|
23
|
-
* 조회할 공고 식별자 목록.
|
|
23
|
+
* 조회할 공고 식별자 목록. purchaseNos 와 상호배타(정확히 하나). 최대 100건.
|
|
24
24
|
*/
|
|
25
|
-
'bidIds'
|
|
25
|
+
'bidIds'?: Array<string>;
|
|
26
|
+
/**
|
|
27
|
+
* 조회할 구매번호(bid_puchase_no) 목록. 각 PO 는 가장 최근 공고로 해소된다(재입찰 패리티). bidIds 와 상호배타(정확히 하나). 최대 100건.
|
|
28
|
+
*/
|
|
29
|
+
'purchaseNos'?: Array<string>;
|
|
26
30
|
}
|
|
27
31
|
|
|
@@ -29,7 +29,11 @@ export interface BidResultsResponseDto {
|
|
|
29
29
|
*/
|
|
30
30
|
'bidId': string;
|
|
31
31
|
/**
|
|
32
|
-
*
|
|
32
|
+
* 발주처 지정 조달번호 (V5 bid_puchase_no). 외부 ERP 가 등록 시 보낸 PO 번호. 미설정 시 null.
|
|
33
|
+
*/
|
|
34
|
+
'bidPuchaseNo'?: string;
|
|
35
|
+
/**
|
|
36
|
+
* 공고 상태 코드. V5 /entendrec 은 A(진행중)/B(마감)/C(낙찰·계약진행)/E(유찰) 4종을 문서화했으나, V6 는 D(계약완료)/R(임시저장)을 더한 6종 superset 을 그대로 내려준다 — V5 호환 ERP 는 D 를 C 의 후속 단계로, R 은 미발행 초안으로 처리할 것(코드 매핑 없이 raw 통과).
|
|
33
37
|
*/
|
|
34
38
|
'status': string;
|
|
35
39
|
/**
|
package/models/index.ts
CHANGED
|
@@ -9,6 +9,7 @@ export * from './bid-failed-response-dto';
|
|
|
9
9
|
export * from './bid-failure-reason';
|
|
10
10
|
export * from './bid-item-dto';
|
|
11
11
|
export * from './bid-manager-dto';
|
|
12
|
+
export * from './bid-result-participant-attachment-dto';
|
|
12
13
|
export * from './bid-result-participant-dto';
|
|
13
14
|
export * from './bid-result-product-dto';
|
|
14
15
|
export * from './bid-result-winner-dto';
|