@carsayo/types 1.1.8903 → 1.1.8905

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.
@@ -225,4 +225,21 @@ export interface DeleteCarDataDTO {
225
225
  id: number;
226
226
  key: "model" | "trim" | "grade";
227
227
  }
228
+ export interface CopyCarGradeDTO {
229
+ id: number;
230
+ }
231
+ export interface CreateCarOptionDTO {
232
+ gradeId: number;
233
+ /** 옵션 이름 */
234
+ name: string;
235
+ price: number;
236
+ }
237
+ export interface ConnectCarOptionDTO {
238
+ gradeId: number;
239
+ optionId: number;
240
+ }
241
+ /** 특정 모델 내 유효한 모든 옵션을 조회합니다. */
242
+ export interface GetCarModelOptionDTO {
243
+ modelId: number;
244
+ }
228
245
  export {};
@@ -350,3 +350,9 @@ export type Admin_WholeSellingCar = Omit<WholeSellingCar, "car_model"> & {
350
350
  })[];
351
351
  })[];
352
352
  };
353
+ export interface CarModelOption {
354
+ id: number;
355
+ name: string;
356
+ price: number;
357
+ isDescription: boolean;
358
+ }
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@carsayo/types",
3
- "version": "1.1.8903",
3
+ "version": "1.1.8905",
4
4
  "description": "Carsayo app type",
5
5
  "main": "dist/index.js",
6
6
  "types": "dist/index.d.ts",