@carsayo/types 1.1.7707 → 1.1.7708
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.
|
@@ -71,3 +71,14 @@ export interface InsuranceCompanyUpdateDTO extends InsuranceCompanyIdDTO {
|
|
|
71
71
|
/** 정렬용 값 */
|
|
72
72
|
order_index?: number;
|
|
73
73
|
}
|
|
74
|
+
export interface InsuranceCompanyOrderDTO extends InsuranceCompanyIdDTO {
|
|
75
|
+
/** 정렬용 값
|
|
76
|
+
* @notice 큰 값이 먼저 출력됩니다.
|
|
77
|
+
*/
|
|
78
|
+
order_index: number;
|
|
79
|
+
}
|
|
80
|
+
/** 보험사 순서 데이터 일괄변경용 */
|
|
81
|
+
export interface InsuranceCompanyOrderUpdateDTO {
|
|
82
|
+
/** 최소 1개 이상의 값이 존재하여야 합니다 */
|
|
83
|
+
data: InsuranceCompanyOrderDTO[];
|
|
84
|
+
}
|