@cmarket/partner-sdk 0.3.0 → 0.5.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.
Files changed (43) hide show
  1. package/README.md +3 -5
  2. package/api/partner-v1-api.ts +0 -74
  3. package/dist/api/partner-v1-api.d.ts +0 -33
  4. package/dist/api/partner-v1-api.js +0 -69
  5. package/dist/esm/api/partner-v1-api.d.ts +0 -33
  6. package/dist/esm/api/partner-v1-api.js +0 -69
  7. package/dist/esm/models/bid-result-participant-attachment-dto.d.ts +33 -0
  8. package/dist/esm/models/bid-result-participant-dto.d.ts +9 -0
  9. package/dist/esm/models/bid-results-response-dto.d.ts +4 -0
  10. package/dist/esm/models/create-bid-request-dto.d.ts +1 -2
  11. package/dist/esm/models/create-bid-request-dto.js +0 -1
  12. package/dist/esm/models/index.d.ts +1 -2
  13. package/dist/esm/models/index.js +1 -2
  14. package/dist/models/bid-result-participant-attachment-dto.d.ts +33 -0
  15. package/dist/models/bid-result-participant-dto.d.ts +9 -0
  16. package/dist/models/bid-results-response-dto.d.ts +4 -0
  17. package/dist/models/create-bid-request-dto.d.ts +1 -2
  18. package/dist/models/create-bid-request-dto.js +0 -1
  19. package/dist/models/index.d.ts +1 -2
  20. package/dist/models/index.js +1 -2
  21. package/docs/BidResultParticipantAttachmentDto.md +28 -0
  22. package/docs/BidResultParticipantDto.md +4 -0
  23. package/docs/BidResultsResponseDto.md +2 -0
  24. package/docs/CreateBidRequestDto.md +1 -1
  25. package/docs/PartnerV1Api.md +0 -53
  26. package/models/bid-result-participant-attachment-dto.ts +39 -0
  27. package/models/bid-result-participant-dto.ts +11 -0
  28. package/models/bid-results-response-dto.ts +4 -0
  29. package/models/create-bid-request-dto.ts +1 -2
  30. package/models/index.ts +1 -2
  31. package/package.json +1 -1
  32. package/dist/esm/models/bid-status.d.ts +0 -23
  33. package/dist/esm/models/bid-status.js +0 -24
  34. package/dist/esm/models/bid-summary-response-dto.d.ts +0 -30
  35. package/dist/models/bid-status.d.ts +0 -23
  36. package/dist/models/bid-status.js +0 -27
  37. package/dist/models/bid-summary-response-dto.d.ts +0 -30
  38. package/docs/BidStatus.md +0 -19
  39. package/docs/BidSummaryResponseDto.md +0 -26
  40. package/models/bid-status.ts +0 -33
  41. package/models/bid-summary-response-dto.ts +0 -40
  42. /package/dist/esm/models/{bid-summary-response-dto.js → bid-result-participant-attachment-dto.js} +0 -0
  43. /package/dist/models/{bid-summary-response-dto.js → bid-result-participant-attachment-dto.js} +0 -0
@@ -17,6 +17,10 @@ export interface BidResultsResponseDto {
17
17
  * 공고 식별자.
18
18
  */
19
19
  'bidId': string;
20
+ /**
21
+ * 발주처 지정 조달번호 (V5 bid_puchase_no). 외부 ERP 가 등록 시 보낸 PO 번호. 미설정 시 null.
22
+ */
23
+ 'bidPuchaseNo'?: string;
20
24
  /**
21
25
  * 공고 상태 코드 (BidStatus enum).
22
26
  */
@@ -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',
@@ -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';
@@ -18,8 +19,6 @@ export * from './bid-settlement-line-item-dto';
18
19
  export * from './bid-settlement-participant-dto';
19
20
  export * from './bid-settlement-response-dto';
20
21
  export * from './bid-statement-response-dto';
21
- export * from './bid-status';
22
- export * from './bid-summary-response-dto';
23
22
  export * from './complete-acceptance-request-dto';
24
23
  export * from './contract-document-item-dto';
25
24
  export * from './create-bid-request-dto';
@@ -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);
@@ -34,8 +35,6 @@ __exportStar(require("./bid-settlement-line-item-dto"), exports);
34
35
  __exportStar(require("./bid-settlement-participant-dto"), exports);
35
36
  __exportStar(require("./bid-settlement-response-dto"), exports);
36
37
  __exportStar(require("./bid-statement-response-dto"), exports);
37
- __exportStar(require("./bid-status"), exports);
38
- __exportStar(require("./bid-summary-response-dto"), exports);
39
38
  __exportStar(require("./complete-acceptance-request-dto"), exports);
40
39
  __exportStar(require("./contract-document-item-dto"), exports);
41
40
  __exportStar(require("./create-bid-request-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,6 +6,7 @@
6
6
  Name | Type | Description | Notes
7
7
  ------------ | ------------- | ------------- | -------------
8
8
  **bidId** | **string** | 공고 식별자. | [default to undefined]
9
+ **bidPuchaseNo** | **string** | 발주처 지정 조달번호 (V5 bid_puchase_no). 외부 ERP 가 등록 시 보낸 PO 번호. 미설정 시 null. | [optional] [default to undefined]
9
10
  **status** | **string** | 공고 상태 코드 (BidStatus enum). | [default to undefined]
10
11
  **statusText** | **string** | 공고 상태 한국어 레이블. | [optional] [default to undefined]
11
12
  **isCancelled** | **boolean** | 공고 취소 여부 (status 와 직교하는 별도 레이어). | [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,
@@ -30,7 +30,7 @@ Name | Type | Description | Notes
30
30
  **deliveryDateType** | **string** | 납품기한 유형. A=직접설정(deliveryDate 필요), B=계약후지정(deliveryPeriodDays 필요), C=계약후협의. backend BidDeliveryDateType mirror. | [optional] [default to undefined]
31
31
  **deliveryDate** | **string** | 납품기한 일자 (deliveryDateType=A 시 사용). 형식: YYYY-MM-DD. | [optional] [default to undefined]
32
32
  **deliveryPeriodDays** | **number** | 납품소요일(일) (deliveryDateType=B 시 사용). 최대 999일(backend deliveryDays 3자리 제한). | [optional] [default to undefined]
33
- **deliveryMethod** | **string** | 납품 방법. A=택배(직납가능), B=직접납품, C=납품및설치, D=픽업. backend BidDeliveryMethod mirror. | [optional] [default to undefined]
33
+ **deliveryMethod** | **string** | 납품 방법. A=택배(직납가능), B=직접납품, C=납품및설치. backend BidDeliveryMethod mirror. | [optional] [default to undefined]
34
34
  **deliveryAddress** | **string** | 납품지 주소. | [default to undefined]
35
35
  **paymentMethod** | **string** | 결제 방법. A=현금, B=카드. 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
 
@@ -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
 
@@ -28,6 +28,10 @@ export interface BidResultsResponseDto {
28
28
  * 공고 식별자.
29
29
  */
30
30
  'bidId': string;
31
+ /**
32
+ * 발주처 지정 조달번호 (V5 bid_puchase_no). 외부 ERP 가 등록 시 보낸 PO 번호. 미설정 시 null.
33
+ */
34
+ 'bidPuchaseNo'?: string;
31
35
  /**
32
36
  * 공고 상태 코드 (BidStatus enum).
33
37
  */
@@ -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
@@ -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';
@@ -18,8 +19,6 @@ export * from './bid-settlement-line-item-dto';
18
19
  export * from './bid-settlement-participant-dto';
19
20
  export * from './bid-settlement-response-dto';
20
21
  export * from './bid-statement-response-dto';
21
- export * from './bid-status';
22
- export * from './bid-summary-response-dto';
23
22
  export * from './complete-acceptance-request-dto';
24
23
  export * from './contract-document-item-dto';
25
24
  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.5.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,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
- }
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
-