@carsayo/types 1.1.891707 → 1.1.891708
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.
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
/** DTO는 서버단에 요청을 보낼 때 사용하는 클래스 유형으로 서버단에서 이 곳에 정의된 대로 유효성 검사를 처리합니다. */
|
|
2
2
|
import { CarCategoryId, CarMakerId, CarShapeId, PopularCarCategoryId } from "../../../data";
|
|
3
|
-
import { CarColorInternalSelection, CarColorRestrictions } from "./interface";
|
|
3
|
+
import { CarAdminAdditionalInfo, CarColorInternalSelection, CarColorRestrictions } from "./interface";
|
|
4
4
|
export interface GetCarModelDTO {
|
|
5
5
|
carMakerId: CarMakerId;
|
|
6
6
|
/**
|
|
@@ -66,6 +66,11 @@ export interface CarOptionDTO {
|
|
|
66
66
|
export interface GetCarOptionColorListDTO {
|
|
67
67
|
carGradeId: number;
|
|
68
68
|
}
|
|
69
|
+
export declare class ModifyCarMakerDTO {
|
|
70
|
+
id: number;
|
|
71
|
+
/** 관리자용 추가정보 */
|
|
72
|
+
admin_additional_info?: CarAdminAdditionalInfo[];
|
|
73
|
+
}
|
|
69
74
|
export interface ModifyCarModelDTO {
|
|
70
75
|
id: number;
|
|
71
76
|
modelName: string;
|
|
@@ -80,11 +85,15 @@ export interface ModifyCarModelDTO {
|
|
|
80
85
|
isElectric: boolean;
|
|
81
86
|
/** 카테고리 */
|
|
82
87
|
car_category?: CarCategoryId;
|
|
88
|
+
/** 관리자용 추가정보 */
|
|
89
|
+
admin_additional_info?: CarAdminAdditionalInfo[];
|
|
83
90
|
}
|
|
84
91
|
export interface ModifyCarTrimDTO {
|
|
85
92
|
id: number;
|
|
86
93
|
trimName: string;
|
|
87
94
|
isHidden: boolean;
|
|
95
|
+
/** 관리자용 추가정보 */
|
|
96
|
+
admin_additional_info?: CarAdminAdditionalInfo[];
|
|
88
97
|
}
|
|
89
98
|
export interface ModifyCarGradeDTO {
|
|
90
99
|
id: number;
|
|
@@ -117,6 +126,8 @@ export interface ModifyCarGradeDTO {
|
|
|
117
126
|
*/
|
|
118
127
|
car_trimId?: number;
|
|
119
128
|
isHidden: boolean;
|
|
129
|
+
/** 관리자용 추가정보 */
|
|
130
|
+
admin_additional_info?: CarAdminAdditionalInfo[];
|
|
120
131
|
}
|
|
121
132
|
export interface ModifyCarGradeOptionDTO {
|
|
122
133
|
gradeId: number;
|
|
@@ -1,6 +1,9 @@
|
|
|
1
1
|
"use strict";
|
|
2
2
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
3
|
-
exports.DeleteCarColorDataDTO = exports.DeleteCarOptionDataDTO = exports.ModifyCarColorDTO = void 0;
|
|
3
|
+
exports.DeleteCarColorDataDTO = exports.DeleteCarOptionDataDTO = exports.ModifyCarColorDTO = exports.ModifyCarMakerDTO = void 0;
|
|
4
|
+
class ModifyCarMakerDTO {
|
|
5
|
+
}
|
|
6
|
+
exports.ModifyCarMakerDTO = ModifyCarMakerDTO;
|
|
4
7
|
class ModifyCarColorDTO {
|
|
5
8
|
}
|
|
6
9
|
exports.ModifyCarColorDTO = ModifyCarColorDTO;
|