@carsayo/types 1.1.878 → 1.1.880
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.
- package/dist/types/modules/accidentReport/dto.d.ts +12 -1
- package/dist/types/modules/data/dto.d.ts +4 -0
- package/dist/types/modules/data/dto.js +7 -0
- package/dist/types/modules/data/index.d.ts +2 -0
- package/dist/types/modules/data/index.js +18 -0
- package/dist/types/modules/data/interface.d.ts +6 -0
- package/dist/types/modules/data/interface.js +2 -0
- package/dist/types/modules/index.d.ts +1 -0
- package/dist/types/modules/index.js +1 -0
- package/package.json +1 -1
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
import { MemberGender } from "../member";
|
|
2
2
|
import { AccidentReportData_Cancel, AccidentReportData_In, AccidentReportData_Repair, AccidentReportData_Repair_Finish } from "./interface";
|
|
3
|
-
import { AccidentReportState } from "./type";
|
|
3
|
+
import { AccidentReportCommissionState, AccidentReportState } from "./type";
|
|
4
4
|
/** 사고접수 데이터 조회 */
|
|
5
5
|
export interface AccidentReportGetDTO {
|
|
6
6
|
/** 사고접수 아이디 */
|
|
@@ -60,3 +60,14 @@ export interface AccidentReportReviewDTO {
|
|
|
60
60
|
file_4_id?: string;
|
|
61
61
|
file_5_id?: string;
|
|
62
62
|
}
|
|
63
|
+
export interface UpdatePartnersCommissionDTO {
|
|
64
|
+
/** 사고접수 아이디 */
|
|
65
|
+
accidentReportId: string;
|
|
66
|
+
/** 총 수수료 */
|
|
67
|
+
amount?: number;
|
|
68
|
+
/** 적용 수수료율 */
|
|
69
|
+
rate?: number;
|
|
70
|
+
/** 공임비 */
|
|
71
|
+
labor_cost?: number;
|
|
72
|
+
state?: AccidentReportCommissionState;
|
|
73
|
+
}
|
|
@@ -0,0 +1,18 @@
|
|
|
1
|
+
"use strict";
|
|
2
|
+
var __createBinding = (this && this.__createBinding) || (Object.create ? (function(o, m, k, k2) {
|
|
3
|
+
if (k2 === undefined) k2 = k;
|
|
4
|
+
var desc = Object.getOwnPropertyDescriptor(m, k);
|
|
5
|
+
if (!desc || ("get" in desc ? !m.__esModule : desc.writable || desc.configurable)) {
|
|
6
|
+
desc = { enumerable: true, get: function() { return m[k]; } };
|
|
7
|
+
}
|
|
8
|
+
Object.defineProperty(o, k2, desc);
|
|
9
|
+
}) : (function(o, m, k, k2) {
|
|
10
|
+
if (k2 === undefined) k2 = k;
|
|
11
|
+
o[k2] = m[k];
|
|
12
|
+
}));
|
|
13
|
+
var __exportStar = (this && this.__exportStar) || function(m, exports) {
|
|
14
|
+
for (var p in m) if (p !== "default" && !Object.prototype.hasOwnProperty.call(exports, p)) __createBinding(exports, m, p);
|
|
15
|
+
};
|
|
16
|
+
Object.defineProperty(exports, "__esModule", { value: true });
|
|
17
|
+
__exportStar(require("./dto"), exports);
|
|
18
|
+
__exportStar(require("./interface"), exports);
|