@lemoncloud/clipbiz-goods-api 0.25.1210 → 0.25.1212

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.
@@ -22,6 +22,8 @@ export interface IdentityTokenSite {
22
22
  name?: string;
23
23
  /** stereo of site (ex: enterprise) */
24
24
  stereo?: string;
25
+ /** type of company (ex: private) */
26
+ companyType?: string;
25
27
  }
26
28
  /** type: `IdentityTokenUser` */
27
29
  export interface IdentityTokenUser {
@@ -143,6 +143,16 @@ export interface DeliveryModel extends DeliveryHead, Model {
143
143
  memo?: string;
144
144
  /** 비고 */
145
145
  memos?: string[];
146
+ /**
147
+ * no of revision
148
+ * - [parent] no-of-revision
149
+ * - [child] no-in-revision
150
+ */
151
+ revisionNo?: number;
152
+ /** (optional) id of parent */
153
+ parentId?: string;
154
+ /** (optional) partial of parent */
155
+ parent$?: DeliveryHead;
146
156
  }
147
157
  export declare const filterFields: (fields: string[], base?: string[]) => string[];
148
158
  export declare const $HEAD: {
@@ -36,6 +36,8 @@ declare const $LUT: {
36
36
  /** DeliveryStereo */
37
37
  DeliveryStereo: {
38
38
  '': string;
39
+ '#': string;
40
+ '#revision': string;
39
41
  };
40
42
  /** DeliveryState */
41
43
  DeliveryState: {
@@ -94,6 +94,8 @@ declare const $LUT: {
94
94
  * DealStatusOrder
95
95
  */
96
96
  DealStatusOrder: {
97
+ /** [0] 생성 대기중 (내부용) */
98
+ pending: number;
97
99
  /** [step1] 우수사업장 선정 */
98
100
  select: number;
99
101
  /** [step2] 품목 매핑 */
@@ -82,4 +82,6 @@ export interface DealRequestBody {
82
82
  subjectDept$?: DealDeptInfo;
83
83
  /** 발주(계약) 부서 정보 */
84
84
  orderDept$?: DealDeptInfo;
85
+ /** (optional) next status */
86
+ status?: DealStatus;
85
87
  }
@@ -35,6 +35,8 @@ export interface ExamHead {
35
35
  grade?: ExamGrade;
36
36
  /** evaluated timestamp */
37
37
  evaluatedAt?: number;
38
+ /** 종합점수 */
39
+ totalScore?: number;
38
40
  }
39
41
  /**
40
42
  * interface: `ExamModel`
@@ -128,10 +128,14 @@ export interface ItemModel extends ItemHead, Model {
128
128
  availRegionIds?: string[];
129
129
  /** (partial) 납품 가능 지역 정보 */
130
130
  availRegions$$?: CategoryHead[];
131
+ /** (internal) 납품 가능 지역 정보 path (for os2) */
132
+ availRegionPaths?: string[];
131
133
  /** 납품 불가 지역 ID 목록 */
132
134
  excludeRegionIds?: string[];
133
135
  /** (partial) 납품 불가 지역 정보 */
134
136
  excludeRegions$$?: CategoryHead[];
137
+ /** (internal) 납품 불가 지역 정보 path (for os2) */
138
+ excludeRegionPaths?: string[];
135
139
  }
136
140
  /**
137
141
  * interface: `ProdModel`
@@ -56,6 +56,7 @@ declare const $LUT: {
56
56
  */
57
57
  CartStereo: {
58
58
  '': string;
59
+ user: string;
59
60
  };
60
61
  /**
61
62
  * `ItemUnitType`
@@ -10,7 +10,7 @@
10
10
  * @Copyright (C) 2024 LemonCloud Co Ltd. - All Rights Reserved.
11
11
  */
12
12
  import { CoreModel } from 'lemon-model';
13
- import $LUT, { SiteStereo, UserStereo } from './types';
13
+ import $LUT, { CompanyType, SiteStereo, UserStereo } from './types';
14
14
  import { ExamHead } from '../exams/model';
15
15
  /**
16
16
  * type: `ModelType`
@@ -30,6 +30,8 @@ export interface SiteHead {
30
30
  name?: string;
31
31
  /** stereo */
32
32
  stereo?: SiteStereo;
33
+ /** company type */
34
+ companyType?: CompanyType;
33
35
  }
34
36
  /**
35
37
  * `SiteModel`
@@ -49,11 +49,32 @@ declare const $LUT: {
49
49
  /** user */
50
50
  user: string;
51
51
  };
52
+ /**
53
+ * `CompanyType`: 기업형태
54
+ */
55
+ CompanyType: {
56
+ /** no selection */
57
+ '': string;
58
+ /** 민간기업 */
59
+ private: string;
60
+ /** 공기업 */
61
+ public: string;
62
+ /** 공공기관 */
63
+ government: string;
64
+ /** 학교/학원 */
65
+ school: string;
66
+ /** 장애인표준사업장 */
67
+ disabled: string;
68
+ };
52
69
  };
53
70
  /**
54
71
  * type: `SiteStereo`
55
72
  */
56
73
  export declare type SiteStereo = keyof typeof $LUT.SiteStereo;
74
+ /**
75
+ * type: `CompanyType`
76
+ */
77
+ export declare type CompanyType = keyof typeof $LUT.CompanyType;
57
78
  /**
58
79
  * type: `UserStereo`
59
80
  */