@carsayo/types 1.1.798 → 1.1.800
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.
|
@@ -172,7 +172,7 @@ export interface ModifyCarOptionDescriptionDTO {
|
|
|
172
172
|
interface CarOptionDescriptionIncludeDTO {
|
|
173
173
|
id: number;
|
|
174
174
|
car_makerId: number;
|
|
175
|
-
|
|
175
|
+
car_modelIdList: number[];
|
|
176
176
|
/** 옵션 하위 내용 제목 */
|
|
177
177
|
name: string;
|
|
178
178
|
/** 옵션 하위 내용 상세 설명
|
|
@@ -21,6 +21,7 @@ export type MemberGender = "male" | "female";
|
|
|
21
21
|
export declare const MemberType: {
|
|
22
22
|
readonly customer: "customer";
|
|
23
23
|
readonly dealer: "dealer";
|
|
24
|
+
readonly partner: "partner";
|
|
24
25
|
readonly admin: "admin";
|
|
25
26
|
};
|
|
26
27
|
export type MemberType = keyof typeof MemberType;
|