@carsayo/types 1.1.89085 → 1.1.89087
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.
|
@@ -142,6 +142,12 @@ export interface ModifyCarOptionDTO {
|
|
|
142
142
|
isHidden: boolean;
|
|
143
143
|
isEssential: boolean;
|
|
144
144
|
}
|
|
145
|
+
export declare class ModifyCarColorDTO {
|
|
146
|
+
id: number;
|
|
147
|
+
colorName: string;
|
|
148
|
+
colorPrice: number;
|
|
149
|
+
isHidden: boolean;
|
|
150
|
+
}
|
|
145
151
|
export interface ModifyCarOptionRelationDTO {
|
|
146
152
|
/** 대상 옵션 Id */
|
|
147
153
|
id: number;
|
|
@@ -1,6 +1,9 @@
|
|
|
1
1
|
"use strict";
|
|
2
2
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
3
|
-
exports.DeleteCarColorDataDTO = exports.DeleteCarOptionDataDTO = void 0;
|
|
3
|
+
exports.DeleteCarColorDataDTO = exports.DeleteCarOptionDataDTO = exports.ModifyCarColorDTO = void 0;
|
|
4
|
+
class ModifyCarColorDTO {
|
|
5
|
+
}
|
|
6
|
+
exports.ModifyCarColorDTO = ModifyCarColorDTO;
|
|
4
7
|
class DeleteCarOptionDataDTO {
|
|
5
8
|
}
|
|
6
9
|
exports.DeleteCarOptionDataDTO = DeleteCarOptionDataDTO;
|
|
@@ -45,8 +45,6 @@ export interface InsuranceCompany_Admin extends InsuranceCompany {
|
|
|
45
45
|
* @description 판매중인 상품 조회 시 isSelling=true인 상품만 조회합니다.
|
|
46
46
|
*/
|
|
47
47
|
is_selling: boolean;
|
|
48
|
-
/** 카사요 인슈어런스에서 사용합니다. */
|
|
49
|
-
is_insurance: boolean;
|
|
50
48
|
count: {
|
|
51
49
|
/** 등록된 차량 수(일반회원이 등록한 차량) */
|
|
52
50
|
registeredCar: number;
|