@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.
- package/dist/cores/types.d.ts +2 -0
- package/dist/modules/contracts/model.d.ts +10 -0
- package/dist/modules/contracts/types.d.ts +2 -0
- package/dist/modules/deals/types.d.ts +2 -0
- package/dist/modules/deals/views.d.ts +2 -0
- package/dist/modules/exams/model.d.ts +2 -0
- package/dist/modules/goods/model.d.ts +4 -0
- package/dist/modules/goods/types.d.ts +1 -0
- package/dist/modules/sites/model.d.ts +3 -1
- package/dist/modules/sites/types.d.ts +21 -0
- package/dist/tsconfig.build.tsbuildinfo +1 -1
- package/package.json +1 -1
package/dist/cores/types.d.ts
CHANGED
|
@@ -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: {
|
|
@@ -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`
|
|
@@ -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
|
*/
|