@carsayo/types 1.1.792 → 1.1.793
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.
|
@@ -121,3 +121,32 @@ export interface CarDataPreorderGetListDTO {
|
|
|
121
121
|
export interface CarDataPreorderIdDTO {
|
|
122
122
|
id: number;
|
|
123
123
|
}
|
|
124
|
+
export interface GetCarOptionColorListDTO {
|
|
125
|
+
carGradeId: number;
|
|
126
|
+
}
|
|
127
|
+
export interface ModifyCarModelDTO {
|
|
128
|
+
id: number;
|
|
129
|
+
modelName: string;
|
|
130
|
+
isHidden: boolean;
|
|
131
|
+
}
|
|
132
|
+
export interface ModifyCarTrimDTO {
|
|
133
|
+
id: number;
|
|
134
|
+
trimName: string;
|
|
135
|
+
isHidden: boolean;
|
|
136
|
+
}
|
|
137
|
+
export interface ModifyCarGradeDTO {
|
|
138
|
+
id: number;
|
|
139
|
+
gradeName: string;
|
|
140
|
+
isHidden: boolean;
|
|
141
|
+
}
|
|
142
|
+
export interface ModifyCarOptionDTO {
|
|
143
|
+
id: number;
|
|
144
|
+
optionName: string;
|
|
145
|
+
isHidden: boolean;
|
|
146
|
+
}
|
|
147
|
+
export interface ModifyCarOptionRelationDTO {
|
|
148
|
+
id: number;
|
|
149
|
+
include: number[];
|
|
150
|
+
nessary: number[];
|
|
151
|
+
incompatible: number[];
|
|
152
|
+
}
|