@cmarket/partner-sdk 0.3.0 → 0.4.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 CHANGED
@@ -188,7 +188,7 @@ public class Quickstart {
188
188
 
189
189
  ---
190
190
 
191
- ## @cmarket/partner-sdk@0.3.0
191
+ ## @cmarket/partner-sdk@0.4.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.3.0 --save
229
+ npm install @cmarket/partner-sdk@0.4.0 --save
230
230
  ```
231
231
 
232
232
  _unPublished (not recommended):_
@@ -242,7 +242,6 @@ All URIs are relative to *http://localhost*
242
242
  Class | Method | HTTP request | Description
243
243
  ------------ | ------------- | ------------- | -------------
244
244
  *OauthApi* | [**token**](docs/OauthApi.md#token) | **POST** /v1/oauth/token | OAuth 2.0 access token 발급 (client_credentials)
245
- *PartnerV1Api* | [**bidsControllerFindOne**](docs/PartnerV1Api.md#bidscontrollerfindone) | **GET** /v1/bids/{bidId} | 공고 단건 조회
246
245
  *PartnerV1Api* | [**completeAcceptance**](docs/PartnerV1Api.md#completeacceptance) | **POST** /v1/bids/{bidId}/acceptance | 검수완료 전송
247
246
  *PartnerV1Api* | [**getBidContractDocuments**](docs/PartnerV1Api.md#getbidcontractdocuments) | **GET** /v1/bids/{bidId}/contract-documents | 계약서류 수신 조회
248
247
  *PartnerV1Api* | [**getBidContractDocumentsBatch**](docs/PartnerV1Api.md#getbidcontractdocumentsbatch) | **POST** /v1/bids/contract-documents/batch | 계약서류 수신 배치 조회
@@ -281,8 +280,6 @@ Class | Method | HTTP request | Description
281
280
  - [BidSettlementParticipantDto](docs/BidSettlementParticipantDto.md)
282
281
  - [BidSettlementResponseDto](docs/BidSettlementResponseDto.md)
283
282
  - [BidStatementResponseDto](docs/BidStatementResponseDto.md)
284
- - [BidStatus](docs/BidStatus.md)
285
- - [BidSummaryResponseDto](docs/BidSummaryResponseDto.md)
286
283
  - [CompleteAcceptanceRequestDto](docs/CompleteAcceptanceRequestDto.md)
287
284
  - [ContractDocumentItemDto](docs/ContractDocumentItemDto.md)
288
285
  - [CreateBidRequestDto](docs/CreateBidRequestDto.md)
@@ -42,8 +42,6 @@ import type { BidSettlementResponseDto } from '../models';
42
42
  // @ts-ignore
43
43
  import type { BidStatementResponseDto } from '../models';
44
44
  // @ts-ignore
45
- import type { BidSummaryResponseDto } from '../models';
46
- // @ts-ignore
47
45
  import type { CompleteAcceptanceRequestDto } from '../models';
48
46
  // @ts-ignore
49
47
  import type { CreateBidRequestDto } from '../models';
@@ -70,44 +68,6 @@ import type { UploadFileRequestDto } from '../models';
70
68
  */
71
69
  export const PartnerV1ApiAxiosParamCreator = function (configuration?: Configuration) {
72
70
  return {
73
- /**
74
- * ERP 가 공고 정보를 조회합니다. 인증 필요 (스코프 `bids:read`).
75
- * @summary 공고 단건 조회
76
- * @param {string} bidId
77
- * @param {*} [options] Override http request option.
78
- * @throws {RequiredError}
79
- */
80
- bidsControllerFindOne: async (bidId: string, options: RawAxiosRequestConfig = {}): Promise<RequestArgs> => {
81
- // verify required parameter 'bidId' is not null or undefined
82
- assertParamExists('bidsControllerFindOne', 'bidId', bidId)
83
- const localVarPath = `/v1/bids/{bidId}`
84
- .replace('{bidId}', encodeURIComponent(String(bidId)));
85
- // use dummy base URL string because the URL constructor only accepts absolute URLs.
86
- const localVarUrlObj = new URL(localVarPath, DUMMY_BASE_URL);
87
- let baseOptions;
88
- if (configuration) {
89
- baseOptions = configuration.baseOptions;
90
- }
91
-
92
- const localVarRequestOptions = { method: 'GET', ...baseOptions, ...options};
93
- const localVarHeaderParameter = {} as any;
94
- const localVarQueryParameter = {} as any;
95
-
96
- // authentication partner-oauth2 required
97
- // http bearer authentication required
98
- await setBearerAuthToObject(localVarHeaderParameter, configuration)
99
-
100
- localVarHeaderParameter['Accept'] = 'application/json';
101
-
102
- setSearchParams(localVarUrlObj, localVarQueryParameter);
103
- let headersFromBaseOptions = baseOptions && baseOptions.headers ? baseOptions.headers : {};
104
- localVarRequestOptions.headers = {...localVarHeaderParameter, ...headersFromBaseOptions, ...options.headers};
105
-
106
- return {
107
- url: toPathString(localVarUrlObj),
108
- options: localVarRequestOptions,
109
- };
110
- },
111
71
  /**
112
72
  * V5 /acceptanceCompleteSend 후속. scope contracts:write + Idempotency-Key.
113
73
  * @summary 검수완료 전송
@@ -675,19 +635,6 @@ export const PartnerV1ApiAxiosParamCreator = function (configuration?: Configura
675
635
  export const PartnerV1ApiFp = function(configuration?: Configuration) {
676
636
  const localVarAxiosParamCreator = PartnerV1ApiAxiosParamCreator(configuration)
677
637
  return {
678
- /**
679
- * ERP 가 공고 정보를 조회합니다. 인증 필요 (스코프 `bids:read`).
680
- * @summary 공고 단건 조회
681
- * @param {string} bidId
682
- * @param {*} [options] Override http request option.
683
- * @throws {RequiredError}
684
- */
685
- async bidsControllerFindOne(bidId: string, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<BidSummaryResponseDto>> {
686
- const localVarAxiosArgs = await localVarAxiosParamCreator.bidsControllerFindOne(bidId, options);
687
- const localVarOperationServerIndex = configuration?.serverIndex ?? 0;
688
- const localVarOperationServerBasePath = operationServerMap['PartnerV1Api.bidsControllerFindOne']?.[localVarOperationServerIndex]?.url;
689
- return (axios, basePath) => createRequestFunction(localVarAxiosArgs, globalAxios, BASE_PATH, configuration)(axios, localVarOperationServerBasePath || basePath);
690
- },
691
638
  /**
692
639
  * V5 /acceptanceCompleteSend 후속. scope contracts:write + Idempotency-Key.
693
640
  * @summary 검수완료 전송
@@ -882,16 +829,6 @@ export const PartnerV1ApiFp = function(configuration?: Configuration) {
882
829
  export const PartnerV1ApiFactory = function (configuration?: Configuration, basePath?: string, axios?: AxiosInstance) {
883
830
  const localVarFp = PartnerV1ApiFp(configuration)
884
831
  return {
885
- /**
886
- * ERP 가 공고 정보를 조회합니다. 인증 필요 (스코프 `bids:read`).
887
- * @summary 공고 단건 조회
888
- * @param {string} bidId
889
- * @param {*} [options] Override http request option.
890
- * @throws {RequiredError}
891
- */
892
- bidsControllerFindOne(bidId: string, options?: RawAxiosRequestConfig): AxiosPromise<BidSummaryResponseDto> {
893
- return localVarFp.bidsControllerFindOne(bidId, options).then((request) => request(axios, basePath));
894
- },
895
832
  /**
896
833
  * V5 /acceptanceCompleteSend 후속. scope contracts:write + Idempotency-Key.
897
834
  * @summary 검수완료 전송
@@ -1042,17 +979,6 @@ export const PartnerV1ApiFactory = function (configuration?: Configuration, base
1042
979
  * PartnerV1Api - object-oriented interface
1043
980
  */
1044
981
  export class PartnerV1Api extends BaseAPI {
1045
- /**
1046
- * ERP 가 공고 정보를 조회합니다. 인증 필요 (스코프 `bids:read`).
1047
- * @summary 공고 단건 조회
1048
- * @param {string} bidId
1049
- * @param {*} [options] Override http request option.
1050
- * @throws {RequiredError}
1051
- */
1052
- public bidsControllerFindOne(bidId: string, options?: RawAxiosRequestConfig) {
1053
- return PartnerV1ApiFp(this.configuration).bidsControllerFindOne(bidId, options).then((request) => request(this.axios, this.basePath));
1054
- }
1055
-
1056
982
  /**
1057
983
  * V5 /acceptanceCompleteSend 후속. scope contracts:write + Idempotency-Key.
1058
984
  * @summary 검수완료 전송
@@ -22,7 +22,6 @@ import type { BidResultsBatchRequestDto } from '../models';
22
22
  import type { BidResultsResponseDto } from '../models';
23
23
  import type { BidSettlementResponseDto } from '../models';
24
24
  import type { BidStatementResponseDto } from '../models';
25
- import type { BidSummaryResponseDto } from '../models';
26
25
  import type { CompleteAcceptanceRequestDto } from '../models';
27
26
  import type { CreateBidRequestDto } from '../models';
28
27
  import type { FileUploadedResponseDto } from '../models';
@@ -38,14 +37,6 @@ import type { UploadFileRequestDto } from '../models';
38
37
  * PartnerV1Api - axios parameter creator
39
38
  */
40
39
  export declare const PartnerV1ApiAxiosParamCreator: (configuration?: Configuration) => {
41
- /**
42
- * ERP 가 공고 정보를 조회합니다. 인증 필요 (스코프 `bids:read`).
43
- * @summary 공고 단건 조회
44
- * @param {string} bidId
45
- * @param {*} [options] Override http request option.
46
- * @throws {RequiredError}
47
- */
48
- bidsControllerFindOne: (bidId: string, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
49
40
  /**
50
41
  * V5 /acceptanceCompleteSend 후속. scope contracts:write + Idempotency-Key.
51
42
  * @summary 검수완료 전송
@@ -166,14 +157,6 @@ export declare const PartnerV1ApiAxiosParamCreator: (configuration?: Configurati
166
157
  * PartnerV1Api - functional programming interface
167
158
  */
168
159
  export declare const PartnerV1ApiFp: (configuration?: Configuration) => {
169
- /**
170
- * ERP 가 공고 정보를 조회합니다. 인증 필요 (스코프 `bids:read`).
171
- * @summary 공고 단건 조회
172
- * @param {string} bidId
173
- * @param {*} [options] Override http request option.
174
- * @throws {RequiredError}
175
- */
176
- bidsControllerFindOne(bidId: string, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<BidSummaryResponseDto>>;
177
160
  /**
178
161
  * V5 /acceptanceCompleteSend 후속. scope contracts:write + Idempotency-Key.
179
162
  * @summary 검수완료 전송
@@ -294,14 +277,6 @@ export declare const PartnerV1ApiFp: (configuration?: Configuration) => {
294
277
  * PartnerV1Api - factory interface
295
278
  */
296
279
  export declare const PartnerV1ApiFactory: (configuration?: Configuration, basePath?: string, axios?: AxiosInstance) => {
297
- /**
298
- * ERP 가 공고 정보를 조회합니다. 인증 필요 (스코프 `bids:read`).
299
- * @summary 공고 단건 조회
300
- * @param {string} bidId
301
- * @param {*} [options] Override http request option.
302
- * @throws {RequiredError}
303
- */
304
- bidsControllerFindOne(bidId: string, options?: RawAxiosRequestConfig): AxiosPromise<BidSummaryResponseDto>;
305
280
  /**
306
281
  * V5 /acceptanceCompleteSend 후속. scope contracts:write + Idempotency-Key.
307
282
  * @summary 검수완료 전송
@@ -422,14 +397,6 @@ export declare const PartnerV1ApiFactory: (configuration?: Configuration, basePa
422
397
  * PartnerV1Api - object-oriented interface
423
398
  */
424
399
  export declare class PartnerV1Api extends BaseAPI {
425
- /**
426
- * ERP 가 공고 정보를 조회합니다. 인증 필요 (스코프 `bids:read`).
427
- * @summary 공고 단건 조회
428
- * @param {string} bidId
429
- * @param {*} [options] Override http request option.
430
- * @throws {RequiredError}
431
- */
432
- bidsControllerFindOne(bidId: string, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<BidSummaryResponseDto, any, {}>>;
433
400
  /**
434
401
  * V5 /acceptanceCompleteSend 후속. scope contracts:write + Idempotency-Key.
435
402
  * @summary 검수완료 전송
@@ -34,39 +34,6 @@ const base_1 = require("../base");
34
34
  */
35
35
  const PartnerV1ApiAxiosParamCreator = function (configuration) {
36
36
  return {
37
- /**
38
- * ERP 가 공고 정보를 조회합니다. 인증 필요 (스코프 `bids:read`).
39
- * @summary 공고 단건 조회
40
- * @param {string} bidId
41
- * @param {*} [options] Override http request option.
42
- * @throws {RequiredError}
43
- */
44
- bidsControllerFindOne: (bidId_1, ...args_1) => __awaiter(this, [bidId_1, ...args_1], void 0, function* (bidId, options = {}) {
45
- // verify required parameter 'bidId' is not null or undefined
46
- (0, common_1.assertParamExists)('bidsControllerFindOne', 'bidId', bidId);
47
- const localVarPath = `/v1/bids/{bidId}`
48
- .replace('{bidId}', encodeURIComponent(String(bidId)));
49
- // use dummy base URL string because the URL constructor only accepts absolute URLs.
50
- const localVarUrlObj = new URL(localVarPath, common_1.DUMMY_BASE_URL);
51
- let baseOptions;
52
- if (configuration) {
53
- baseOptions = configuration.baseOptions;
54
- }
55
- const localVarRequestOptions = Object.assign(Object.assign({ method: 'GET' }, baseOptions), options);
56
- const localVarHeaderParameter = {};
57
- const localVarQueryParameter = {};
58
- // authentication partner-oauth2 required
59
- // http bearer authentication required
60
- yield (0, common_1.setBearerAuthToObject)(localVarHeaderParameter, configuration);
61
- localVarHeaderParameter['Accept'] = 'application/json';
62
- (0, common_1.setSearchParams)(localVarUrlObj, localVarQueryParameter);
63
- let headersFromBaseOptions = baseOptions && baseOptions.headers ? baseOptions.headers : {};
64
- localVarRequestOptions.headers = Object.assign(Object.assign(Object.assign({}, localVarHeaderParameter), headersFromBaseOptions), options.headers);
65
- return {
66
- url: (0, common_1.toPathString)(localVarUrlObj),
67
- options: localVarRequestOptions,
68
- };
69
- }),
70
37
  /**
71
38
  * V5 /acceptanceCompleteSend 후속. scope contracts:write + Idempotency-Key.
72
39
  * @summary 검수완료 전송
@@ -562,22 +529,6 @@ exports.PartnerV1ApiAxiosParamCreator = PartnerV1ApiAxiosParamCreator;
562
529
  const PartnerV1ApiFp = function (configuration) {
563
530
  const localVarAxiosParamCreator = (0, exports.PartnerV1ApiAxiosParamCreator)(configuration);
564
531
  return {
565
- /**
566
- * ERP 가 공고 정보를 조회합니다. 인증 필요 (스코프 `bids:read`).
567
- * @summary 공고 단건 조회
568
- * @param {string} bidId
569
- * @param {*} [options] Override http request option.
570
- * @throws {RequiredError}
571
- */
572
- bidsControllerFindOne(bidId, options) {
573
- return __awaiter(this, void 0, void 0, function* () {
574
- var _a, _b, _c;
575
- const localVarAxiosArgs = yield localVarAxiosParamCreator.bidsControllerFindOne(bidId, options);
576
- const localVarOperationServerIndex = (_a = configuration === null || configuration === void 0 ? void 0 : configuration.serverIndex) !== null && _a !== void 0 ? _a : 0;
577
- const localVarOperationServerBasePath = (_c = (_b = base_1.operationServerMap['PartnerV1Api.bidsControllerFindOne']) === null || _b === void 0 ? void 0 : _b[localVarOperationServerIndex]) === null || _c === void 0 ? void 0 : _c.url;
578
- return (axios, basePath) => (0, common_1.createRequestFunction)(localVarAxiosArgs, axios_1.default, base_1.BASE_PATH, configuration)(axios, localVarOperationServerBasePath || basePath);
579
- });
580
- },
581
532
  /**
582
533
  * V5 /acceptanceCompleteSend 후속. scope contracts:write + Idempotency-Key.
583
534
  * @summary 검수완료 전송
@@ -814,16 +765,6 @@ exports.PartnerV1ApiFp = PartnerV1ApiFp;
814
765
  const PartnerV1ApiFactory = function (configuration, basePath, axios) {
815
766
  const localVarFp = (0, exports.PartnerV1ApiFp)(configuration);
816
767
  return {
817
- /**
818
- * ERP 가 공고 정보를 조회합니다. 인증 필요 (스코프 `bids:read`).
819
- * @summary 공고 단건 조회
820
- * @param {string} bidId
821
- * @param {*} [options] Override http request option.
822
- * @throws {RequiredError}
823
- */
824
- bidsControllerFindOne(bidId, options) {
825
- return localVarFp.bidsControllerFindOne(bidId, options).then((request) => request(axios, basePath));
826
- },
827
768
  /**
828
769
  * V5 /acceptanceCompleteSend 후속. scope contracts:write + Idempotency-Key.
829
770
  * @summary 검수완료 전송
@@ -974,16 +915,6 @@ exports.PartnerV1ApiFactory = PartnerV1ApiFactory;
974
915
  * PartnerV1Api - object-oriented interface
975
916
  */
976
917
  class PartnerV1Api extends base_1.BaseAPI {
977
- /**
978
- * ERP 가 공고 정보를 조회합니다. 인증 필요 (스코프 `bids:read`).
979
- * @summary 공고 단건 조회
980
- * @param {string} bidId
981
- * @param {*} [options] Override http request option.
982
- * @throws {RequiredError}
983
- */
984
- bidsControllerFindOne(bidId, options) {
985
- return (0, exports.PartnerV1ApiFp)(this.configuration).bidsControllerFindOne(bidId, options).then((request) => request(this.axios, this.basePath));
986
- }
987
918
  /**
988
919
  * V5 /acceptanceCompleteSend 후속. scope contracts:write + Idempotency-Key.
989
920
  * @summary 검수완료 전송
@@ -22,7 +22,6 @@ import type { BidResultsBatchRequestDto } from '../models';
22
22
  import type { BidResultsResponseDto } from '../models';
23
23
  import type { BidSettlementResponseDto } from '../models';
24
24
  import type { BidStatementResponseDto } from '../models';
25
- import type { BidSummaryResponseDto } from '../models';
26
25
  import type { CompleteAcceptanceRequestDto } from '../models';
27
26
  import type { CreateBidRequestDto } from '../models';
28
27
  import type { FileUploadedResponseDto } from '../models';
@@ -38,14 +37,6 @@ import type { UploadFileRequestDto } from '../models';
38
37
  * PartnerV1Api - axios parameter creator
39
38
  */
40
39
  export declare const PartnerV1ApiAxiosParamCreator: (configuration?: Configuration) => {
41
- /**
42
- * ERP 가 공고 정보를 조회합니다. 인증 필요 (스코프 `bids:read`).
43
- * @summary 공고 단건 조회
44
- * @param {string} bidId
45
- * @param {*} [options] Override http request option.
46
- * @throws {RequiredError}
47
- */
48
- bidsControllerFindOne: (bidId: string, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
49
40
  /**
50
41
  * V5 /acceptanceCompleteSend 후속. scope contracts:write + Idempotency-Key.
51
42
  * @summary 검수완료 전송
@@ -166,14 +157,6 @@ export declare const PartnerV1ApiAxiosParamCreator: (configuration?: Configurati
166
157
  * PartnerV1Api - functional programming interface
167
158
  */
168
159
  export declare const PartnerV1ApiFp: (configuration?: Configuration) => {
169
- /**
170
- * ERP 가 공고 정보를 조회합니다. 인증 필요 (스코프 `bids:read`).
171
- * @summary 공고 단건 조회
172
- * @param {string} bidId
173
- * @param {*} [options] Override http request option.
174
- * @throws {RequiredError}
175
- */
176
- bidsControllerFindOne(bidId: string, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<BidSummaryResponseDto>>;
177
160
  /**
178
161
  * V5 /acceptanceCompleteSend 후속. scope contracts:write + Idempotency-Key.
179
162
  * @summary 검수완료 전송
@@ -294,14 +277,6 @@ export declare const PartnerV1ApiFp: (configuration?: Configuration) => {
294
277
  * PartnerV1Api - factory interface
295
278
  */
296
279
  export declare const PartnerV1ApiFactory: (configuration?: Configuration, basePath?: string, axios?: AxiosInstance) => {
297
- /**
298
- * ERP 가 공고 정보를 조회합니다. 인증 필요 (스코프 `bids:read`).
299
- * @summary 공고 단건 조회
300
- * @param {string} bidId
301
- * @param {*} [options] Override http request option.
302
- * @throws {RequiredError}
303
- */
304
- bidsControllerFindOne(bidId: string, options?: RawAxiosRequestConfig): AxiosPromise<BidSummaryResponseDto>;
305
280
  /**
306
281
  * V5 /acceptanceCompleteSend 후속. scope contracts:write + Idempotency-Key.
307
282
  * @summary 검수완료 전송
@@ -422,14 +397,6 @@ export declare const PartnerV1ApiFactory: (configuration?: Configuration, basePa
422
397
  * PartnerV1Api - object-oriented interface
423
398
  */
424
399
  export declare class PartnerV1Api extends BaseAPI {
425
- /**
426
- * ERP 가 공고 정보를 조회합니다. 인증 필요 (스코프 `bids:read`).
427
- * @summary 공고 단건 조회
428
- * @param {string} bidId
429
- * @param {*} [options] Override http request option.
430
- * @throws {RequiredError}
431
- */
432
- bidsControllerFindOne(bidId: string, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<BidSummaryResponseDto, any, {}>>;
433
400
  /**
434
401
  * V5 /acceptanceCompleteSend 후속. scope contracts:write + Idempotency-Key.
435
402
  * @summary 검수완료 전송
@@ -31,39 +31,6 @@ import { BASE_PATH, BaseAPI, operationServerMap } from '../base';
31
31
  */
32
32
  export const PartnerV1ApiAxiosParamCreator = function (configuration) {
33
33
  return {
34
- /**
35
- * ERP 가 공고 정보를 조회합니다. 인증 필요 (스코프 `bids:read`).
36
- * @summary 공고 단건 조회
37
- * @param {string} bidId
38
- * @param {*} [options] Override http request option.
39
- * @throws {RequiredError}
40
- */
41
- bidsControllerFindOne: (bidId_1, ...args_1) => __awaiter(this, [bidId_1, ...args_1], void 0, function* (bidId, options = {}) {
42
- // verify required parameter 'bidId' is not null or undefined
43
- assertParamExists('bidsControllerFindOne', 'bidId', bidId);
44
- const localVarPath = `/v1/bids/{bidId}`
45
- .replace('{bidId}', encodeURIComponent(String(bidId)));
46
- // use dummy base URL string because the URL constructor only accepts absolute URLs.
47
- const localVarUrlObj = new URL(localVarPath, DUMMY_BASE_URL);
48
- let baseOptions;
49
- if (configuration) {
50
- baseOptions = configuration.baseOptions;
51
- }
52
- const localVarRequestOptions = Object.assign(Object.assign({ method: 'GET' }, baseOptions), options);
53
- const localVarHeaderParameter = {};
54
- const localVarQueryParameter = {};
55
- // authentication partner-oauth2 required
56
- // http bearer authentication required
57
- yield setBearerAuthToObject(localVarHeaderParameter, configuration);
58
- localVarHeaderParameter['Accept'] = 'application/json';
59
- setSearchParams(localVarUrlObj, localVarQueryParameter);
60
- let headersFromBaseOptions = baseOptions && baseOptions.headers ? baseOptions.headers : {};
61
- localVarRequestOptions.headers = Object.assign(Object.assign(Object.assign({}, localVarHeaderParameter), headersFromBaseOptions), options.headers);
62
- return {
63
- url: toPathString(localVarUrlObj),
64
- options: localVarRequestOptions,
65
- };
66
- }),
67
34
  /**
68
35
  * V5 /acceptanceCompleteSend 후속. scope contracts:write + Idempotency-Key.
69
36
  * @summary 검수완료 전송
@@ -558,22 +525,6 @@ export const PartnerV1ApiAxiosParamCreator = function (configuration) {
558
525
  export const PartnerV1ApiFp = function (configuration) {
559
526
  const localVarAxiosParamCreator = PartnerV1ApiAxiosParamCreator(configuration);
560
527
  return {
561
- /**
562
- * ERP 가 공고 정보를 조회합니다. 인증 필요 (스코프 `bids:read`).
563
- * @summary 공고 단건 조회
564
- * @param {string} bidId
565
- * @param {*} [options] Override http request option.
566
- * @throws {RequiredError}
567
- */
568
- bidsControllerFindOne(bidId, options) {
569
- return __awaiter(this, void 0, void 0, function* () {
570
- var _a, _b, _c;
571
- const localVarAxiosArgs = yield localVarAxiosParamCreator.bidsControllerFindOne(bidId, options);
572
- const localVarOperationServerIndex = (_a = configuration === null || configuration === void 0 ? void 0 : configuration.serverIndex) !== null && _a !== void 0 ? _a : 0;
573
- const localVarOperationServerBasePath = (_c = (_b = operationServerMap['PartnerV1Api.bidsControllerFindOne']) === null || _b === void 0 ? void 0 : _b[localVarOperationServerIndex]) === null || _c === void 0 ? void 0 : _c.url;
574
- return (axios, basePath) => createRequestFunction(localVarAxiosArgs, globalAxios, BASE_PATH, configuration)(axios, localVarOperationServerBasePath || basePath);
575
- });
576
- },
577
528
  /**
578
529
  * V5 /acceptanceCompleteSend 후속. scope contracts:write + Idempotency-Key.
579
530
  * @summary 검수완료 전송
@@ -809,16 +760,6 @@ export const PartnerV1ApiFp = function (configuration) {
809
760
  export const PartnerV1ApiFactory = function (configuration, basePath, axios) {
810
761
  const localVarFp = PartnerV1ApiFp(configuration);
811
762
  return {
812
- /**
813
- * ERP 가 공고 정보를 조회합니다. 인증 필요 (스코프 `bids:read`).
814
- * @summary 공고 단건 조회
815
- * @param {string} bidId
816
- * @param {*} [options] Override http request option.
817
- * @throws {RequiredError}
818
- */
819
- bidsControllerFindOne(bidId, options) {
820
- return localVarFp.bidsControllerFindOne(bidId, options).then((request) => request(axios, basePath));
821
- },
822
763
  /**
823
764
  * V5 /acceptanceCompleteSend 후속. scope contracts:write + Idempotency-Key.
824
765
  * @summary 검수완료 전송
@@ -968,16 +909,6 @@ export const PartnerV1ApiFactory = function (configuration, basePath, axios) {
968
909
  * PartnerV1Api - object-oriented interface
969
910
  */
970
911
  export class PartnerV1Api extends BaseAPI {
971
- /**
972
- * ERP 가 공고 정보를 조회합니다. 인증 필요 (스코프 `bids:read`).
973
- * @summary 공고 단건 조회
974
- * @param {string} bidId
975
- * @param {*} [options] Override http request option.
976
- * @throws {RequiredError}
977
- */
978
- bidsControllerFindOne(bidId, options) {
979
- return PartnerV1ApiFp(this.configuration).bidsControllerFindOne(bidId, options).then((request) => request(this.axios, this.basePath));
980
- }
981
912
  /**
982
913
  * V5 /acceptanceCompleteSend 후속. scope contracts:write + Idempotency-Key.
983
914
  * @summary 검수완료 전송
@@ -116,7 +116,7 @@ export interface CreateBidRequestDto {
116
116
  */
117
117
  'deliveryPeriodDays'?: number;
118
118
  /**
119
- * 납품 방법. A=택배(직납가능), B=직접납품, C=납품및설치, D=픽업. backend BidDeliveryMethod mirror.
119
+ * 납품 방법. A=택배(직납가능), B=직접납품, C=납품및설치. backend BidDeliveryMethod mirror.
120
120
  */
121
121
  'deliveryMethod'?: CreateBidRequestDtoDeliveryMethodEnum;
122
122
  /**
@@ -259,7 +259,6 @@ export declare const CreateBidRequestDtoDeliveryMethodEnum: {
259
259
  readonly A: "A";
260
260
  readonly B: "B";
261
261
  readonly C: "C";
262
- readonly D: "D";
263
262
  };
264
263
  export type CreateBidRequestDtoDeliveryMethodEnum = typeof CreateBidRequestDtoDeliveryMethodEnum[keyof typeof CreateBidRequestDtoDeliveryMethodEnum];
265
264
  export declare const CreateBidRequestDtoPaymentMethodEnum: {
@@ -76,7 +76,6 @@ export const CreateBidRequestDtoDeliveryMethodEnum = {
76
76
  A: 'A',
77
77
  B: 'B',
78
78
  C: 'C',
79
- D: 'D',
80
79
  };
81
80
  export const CreateBidRequestDtoPaymentMethodEnum = {
82
81
  A: 'A',
@@ -18,8 +18,6 @@ export * from './bid-settlement-line-item-dto';
18
18
  export * from './bid-settlement-participant-dto';
19
19
  export * from './bid-settlement-response-dto';
20
20
  export * from './bid-statement-response-dto';
21
- export * from './bid-status';
22
- export * from './bid-summary-response-dto';
23
21
  export * from './complete-acceptance-request-dto';
24
22
  export * from './contract-document-item-dto';
25
23
  export * from './create-bid-request-dto';
@@ -18,8 +18,6 @@ export * from './bid-settlement-line-item-dto';
18
18
  export * from './bid-settlement-participant-dto';
19
19
  export * from './bid-settlement-response-dto';
20
20
  export * from './bid-statement-response-dto';
21
- export * from './bid-status';
22
- export * from './bid-summary-response-dto';
23
21
  export * from './complete-acceptance-request-dto';
24
22
  export * from './contract-document-item-dto';
25
23
  export * from './create-bid-request-dto';
@@ -116,7 +116,7 @@ export interface CreateBidRequestDto {
116
116
  */
117
117
  'deliveryPeriodDays'?: number;
118
118
  /**
119
- * 납품 방법. A=택배(직납가능), B=직접납품, C=납품및설치, D=픽업. backend BidDeliveryMethod mirror.
119
+ * 납품 방법. A=택배(직납가능), B=직접납품, C=납품및설치. backend BidDeliveryMethod mirror.
120
120
  */
121
121
  'deliveryMethod'?: CreateBidRequestDtoDeliveryMethodEnum;
122
122
  /**
@@ -259,7 +259,6 @@ export declare const CreateBidRequestDtoDeliveryMethodEnum: {
259
259
  readonly A: "A";
260
260
  readonly B: "B";
261
261
  readonly C: "C";
262
- readonly D: "D";
263
262
  };
264
263
  export type CreateBidRequestDtoDeliveryMethodEnum = typeof CreateBidRequestDtoDeliveryMethodEnum[keyof typeof CreateBidRequestDtoDeliveryMethodEnum];
265
264
  export declare const CreateBidRequestDtoPaymentMethodEnum: {
@@ -79,7 +79,6 @@ exports.CreateBidRequestDtoDeliveryMethodEnum = {
79
79
  A: 'A',
80
80
  B: 'B',
81
81
  C: 'C',
82
- D: 'D',
83
82
  };
84
83
  exports.CreateBidRequestDtoPaymentMethodEnum = {
85
84
  A: 'A',
@@ -18,8 +18,6 @@ export * from './bid-settlement-line-item-dto';
18
18
  export * from './bid-settlement-participant-dto';
19
19
  export * from './bid-settlement-response-dto';
20
20
  export * from './bid-statement-response-dto';
21
- export * from './bid-status';
22
- export * from './bid-summary-response-dto';
23
21
  export * from './complete-acceptance-request-dto';
24
22
  export * from './contract-document-item-dto';
25
23
  export * from './create-bid-request-dto';
@@ -34,8 +34,6 @@ __exportStar(require("./bid-settlement-line-item-dto"), exports);
34
34
  __exportStar(require("./bid-settlement-participant-dto"), exports);
35
35
  __exportStar(require("./bid-settlement-response-dto"), exports);
36
36
  __exportStar(require("./bid-statement-response-dto"), exports);
37
- __exportStar(require("./bid-status"), exports);
38
- __exportStar(require("./bid-summary-response-dto"), exports);
39
37
  __exportStar(require("./complete-acceptance-request-dto"), exports);
40
38
  __exportStar(require("./contract-document-item-dto"), exports);
41
39
  __exportStar(require("./create-bid-request-dto"), exports);
@@ -30,7 +30,7 @@ Name | Type | Description | Notes
30
30
  **deliveryDateType** | **string** | 납품기한 유형. A&#x3D;직접설정(deliveryDate 필요), B&#x3D;계약후지정(deliveryPeriodDays 필요), C&#x3D;계약후협의. backend BidDeliveryDateType mirror. | [optional] [default to undefined]
31
31
  **deliveryDate** | **string** | 납품기한 일자 (deliveryDateType&#x3D;A 시 사용). 형식: YYYY-MM-DD. | [optional] [default to undefined]
32
32
  **deliveryPeriodDays** | **number** | 납품소요일(일) (deliveryDateType&#x3D;B 시 사용). 최대 999일(backend deliveryDays 3자리 제한). | [optional] [default to undefined]
33
- **deliveryMethod** | **string** | 납품 방법. A&#x3D;택배(직납가능), B&#x3D;직접납품, C&#x3D;납품및설치, D&#x3D;픽업. backend BidDeliveryMethod mirror. | [optional] [default to undefined]
33
+ **deliveryMethod** | **string** | 납품 방법. A&#x3D;택배(직납가능), B&#x3D;직접납품, C&#x3D;납품및설치. backend BidDeliveryMethod mirror. | [optional] [default to undefined]
34
34
  **deliveryAddress** | **string** | 납품지 주소. | [default to undefined]
35
35
  **paymentMethod** | **string** | 결제 방법. A&#x3D;현금, B&#x3D;카드. backend BidPaymentMethod mirror. | [optional] [default to undefined]
36
36
  **paymentDays** | **string** | 대금지급 기한(일). | [default to undefined]
@@ -4,7 +4,6 @@ All URIs are relative to *http://localhost*
4
4
 
5
5
  |Method | HTTP request | Description|
6
6
  |------------- | ------------- | -------------|
7
- |[**bidsControllerFindOne**](#bidscontrollerfindone) | **GET** /v1/bids/{bidId} | 공고 단건 조회|
8
7
  |[**completeAcceptance**](#completeacceptance) | **POST** /v1/bids/{bidId}/acceptance | 검수완료 전송|
9
8
  |[**getBidContractDocuments**](#getbidcontractdocuments) | **GET** /v1/bids/{bidId}/contract-documents | 계약서류 수신 조회|
10
9
  |[**getBidContractDocumentsBatch**](#getbidcontractdocumentsbatch) | **POST** /v1/bids/contract-documents/batch | 계약서류 수신 배치 조회|
@@ -20,58 +19,6 @@ All URIs are relative to *http://localhost*
20
19
  |[**submitNegotiationScores**](#submitnegotiationscores) | **POST** /v1/awards/nego-eval | 협상(H/K) 점수평가|
21
20
  |[**uploadFile**](#uploadfile) | **POST** /v1/files | 입찰 첨부파일 업로드(base64 또는 url) → fileKey|
22
21
 
23
- # **bidsControllerFindOne**
24
- > BidSummaryResponseDto bidsControllerFindOne()
25
-
26
- ERP 가 공고 정보를 조회합니다. 인증 필요 (스코프 `bids:read`).
27
-
28
- ### Example
29
-
30
- ```typescript
31
- import {
32
- PartnerV1Api,
33
- Configuration
34
- } from '@cmarket/partner-sdk';
35
-
36
- const configuration = new Configuration();
37
- const apiInstance = new PartnerV1Api(configuration);
38
-
39
- let bidId: string; // (default to undefined)
40
-
41
- const { status, data } = await apiInstance.bidsControllerFindOne(
42
- bidId
43
- );
44
- ```
45
-
46
- ### Parameters
47
-
48
- |Name | Type | Description | Notes|
49
- |------------- | ------------- | ------------- | -------------|
50
- | **bidId** | [**string**] | | defaults to undefined|
51
-
52
-
53
- ### Return type
54
-
55
- **BidSummaryResponseDto**
56
-
57
- ### Authorization
58
-
59
- [partner-oauth2](../README.md#partner-oauth2)
60
-
61
- ### HTTP request headers
62
-
63
- - **Content-Type**: Not defined
64
- - **Accept**: application/json
65
-
66
-
67
- ### HTTP response details
68
- | Status code | Description | Response headers |
69
- |-------------|-------------|------------------|
70
- |**200** | | - |
71
- |**401** | invalid_token / insufficient_scope / ip_not_allowed | - |
72
-
73
- [[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)
74
-
75
22
  # **completeAcceptance**
76
23
  > AcceptanceResultResponseDto completeAcceptance(completeAcceptanceRequestDto)
77
24
 
@@ -131,7 +131,7 @@ export interface CreateBidRequestDto {
131
131
  */
132
132
  'deliveryPeriodDays'?: number;
133
133
  /**
134
- * 납품 방법. A=택배(직납가능), B=직접납품, C=납품및설치, D=픽업. backend BidDeliveryMethod mirror.
134
+ * 납품 방법. A=택배(직납가능), B=직접납품, C=납품및설치. backend BidDeliveryMethod mirror.
135
135
  */
136
136
  'deliveryMethod'?: CreateBidRequestDtoDeliveryMethodEnum;
137
137
  /**
@@ -285,7 +285,6 @@ export const CreateBidRequestDtoDeliveryMethodEnum = {
285
285
  A: 'A',
286
286
  B: 'B',
287
287
  C: 'C',
288
- D: 'D',
289
288
  } as const;
290
289
 
291
290
  export type CreateBidRequestDtoDeliveryMethodEnum = typeof CreateBidRequestDtoDeliveryMethodEnum[keyof typeof CreateBidRequestDtoDeliveryMethodEnum];
package/models/index.ts CHANGED
@@ -18,8 +18,6 @@ export * from './bid-settlement-line-item-dto';
18
18
  export * from './bid-settlement-participant-dto';
19
19
  export * from './bid-settlement-response-dto';
20
20
  export * from './bid-statement-response-dto';
21
- export * from './bid-status';
22
- export * from './bid-summary-response-dto';
23
21
  export * from './complete-acceptance-request-dto';
24
22
  export * from './contract-document-item-dto';
25
23
  export * from './create-bid-request-dto';
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@cmarket/partner-sdk",
3
- "version": "0.3.0",
3
+ "version": "0.4.0",
4
4
  "description": "OpenAPI client for @cmarket/partner-sdk",
5
5
  "author": "OpenAPI-Generator Contributors",
6
6
  "repository": {
@@ -1,23 +0,0 @@
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
- /**
13
- * 공고 상태 (b2b_buy.status SSOT enum)
14
- */
15
- export declare const BidStatus: {
16
- readonly A: "A";
17
- readonly B: "B";
18
- readonly C: "C";
19
- readonly D: "D";
20
- readonly E: "E";
21
- readonly R: "R";
22
- };
23
- export type BidStatus = typeof BidStatus[keyof typeof BidStatus];
@@ -1,24 +0,0 @@
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
- * 공고 상태 (b2b_buy.status SSOT enum)
16
- */
17
- export const BidStatus = {
18
- A: 'A',
19
- B: 'B',
20
- C: 'C',
21
- D: 'D',
22
- E: 'E',
23
- R: 'R',
24
- };
@@ -1,30 +0,0 @@
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
- import type { BidStatus } from './bid-status';
13
- export interface BidSummaryResponseDto {
14
- /**
15
- * 공고 식별자 (b2b_buy.buy_idx).
16
- */
17
- 'bidId': string;
18
- /**
19
- * 공고 제목 (b2b_buy.buy_title).
20
- */
21
- 'title': string;
22
- /**
23
- * 공고 상태 (b2b_buy.status SSOT enum)
24
- */
25
- 'status': BidStatus;
26
- /**
27
- * 예산 가격 (원, b2b_buy.buy_price).
28
- */
29
- 'budget': number;
30
- }
@@ -1,14 +0,0 @@
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 {};
@@ -1,23 +0,0 @@
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
- /**
13
- * 공고 상태 (b2b_buy.status SSOT enum)
14
- */
15
- export declare const BidStatus: {
16
- readonly A: "A";
17
- readonly B: "B";
18
- readonly C: "C";
19
- readonly D: "D";
20
- readonly E: "E";
21
- readonly R: "R";
22
- };
23
- export type BidStatus = typeof BidStatus[keyof typeof BidStatus];
@@ -1,27 +0,0 @@
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 });
16
- exports.BidStatus = void 0;
17
- /**
18
- * 공고 상태 (b2b_buy.status SSOT enum)
19
- */
20
- exports.BidStatus = {
21
- A: 'A',
22
- B: 'B',
23
- C: 'C',
24
- D: 'D',
25
- E: 'E',
26
- R: 'R',
27
- };
@@ -1,30 +0,0 @@
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
- import type { BidStatus } from './bid-status';
13
- export interface BidSummaryResponseDto {
14
- /**
15
- * 공고 식별자 (b2b_buy.buy_idx).
16
- */
17
- 'bidId': string;
18
- /**
19
- * 공고 제목 (b2b_buy.buy_title).
20
- */
21
- 'title': string;
22
- /**
23
- * 공고 상태 (b2b_buy.status SSOT enum)
24
- */
25
- 'status': BidStatus;
26
- /**
27
- * 예산 가격 (원, b2b_buy.buy_price).
28
- */
29
- 'budget': number;
30
- }
@@ -1,15 +0,0 @@
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 });
package/docs/BidStatus.md DELETED
@@ -1,19 +0,0 @@
1
- # BidStatus
2
-
3
- 공고 상태 (b2b_buy.status SSOT enum)
4
-
5
- ## Enum
6
-
7
- * `A` (value: `'A'`)
8
-
9
- * `B` (value: `'B'`)
10
-
11
- * `C` (value: `'C'`)
12
-
13
- * `D` (value: `'D'`)
14
-
15
- * `E` (value: `'E'`)
16
-
17
- * `R` (value: `'R'`)
18
-
19
- [[Back to Model list]](../README.md#documentation-for-models) [[Back to API list]](../README.md#documentation-for-api-endpoints) [[Back to README]](../README.md)
@@ -1,26 +0,0 @@
1
- # BidSummaryResponseDto
2
-
3
-
4
- ## Properties
5
-
6
- Name | Type | Description | Notes
7
- ------------ | ------------- | ------------- | -------------
8
- **bidId** | **string** | 공고 식별자 (b2b_buy.buy_idx). | [default to undefined]
9
- **title** | **string** | 공고 제목 (b2b_buy.buy_title). | [default to undefined]
10
- **status** | [**BidStatus**](BidStatus.md) | 공고 상태 (b2b_buy.status SSOT enum) | [default to undefined]
11
- **budget** | **number** | 예산 가격 (원, b2b_buy.buy_price). | [default to undefined]
12
-
13
- ## Example
14
-
15
- ```typescript
16
- import { BidSummaryResponseDto } from '@cmarket/partner-sdk';
17
-
18
- const instance: BidSummaryResponseDto = {
19
- bidId,
20
- title,
21
- status,
22
- budget,
23
- };
24
- ```
25
-
26
- [[Back to Model list]](../README.md#documentation-for-models) [[Back to API list]](../README.md#documentation-for-api-endpoints) [[Back to README]](../README.md)
@@ -1,33 +0,0 @@
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
- /**
18
- * 공고 상태 (b2b_buy.status SSOT enum)
19
- */
20
-
21
- export const BidStatus = {
22
- A: 'A',
23
- B: 'B',
24
- C: 'C',
25
- D: 'D',
26
- E: 'E',
27
- R: 'R',
28
- } as const;
29
-
30
- export type BidStatus = typeof BidStatus[keyof typeof BidStatus];
31
-
32
-
33
-
@@ -1,40 +0,0 @@
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
- // May contain unused imports in some cases
17
- // @ts-ignore
18
- import type { BidStatus } from './bid-status';
19
-
20
- export interface BidSummaryResponseDto {
21
- /**
22
- * 공고 식별자 (b2b_buy.buy_idx).
23
- */
24
- 'bidId': string;
25
- /**
26
- * 공고 제목 (b2b_buy.buy_title).
27
- */
28
- 'title': string;
29
- /**
30
- * 공고 상태 (b2b_buy.status SSOT enum)
31
- */
32
- 'status': BidStatus;
33
- /**
34
- * 예산 가격 (원, b2b_buy.buy_price).
35
- */
36
- 'budget': number;
37
- }
38
-
39
-
40
-