@carsayo/types 1.1.851 → 1.1.853

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.
@@ -205,6 +205,8 @@ export type AccidentReport_Commission = {
205
205
  export type Admin_AccidentReport = Omit<AccidentReport, "repairShop"> & {
206
206
  /** 배정 공업사 정보 */
207
207
  repairShop: Admin_RepairShop | null;
208
+ /** 정산 정보 */
209
+ commission: AccidentReport_Commission | null;
208
210
  };
209
211
  /** 관리자가 조회하는 정비소 정보 */
210
212
  export type Admin_RepairShop = RepairShop & {
@@ -1,3 +1,4 @@
1
+ import { Admin_RepairShop } from "../accidentReport";
1
2
  import { PartnersApplicateState } from "./type";
2
3
  export interface PartnersApplicate {
3
4
  id: number;
@@ -20,6 +21,8 @@ export interface PartnersApplicate {
20
21
  updated_at: Date;
21
22
  finished_at: Date | null;
22
23
  canceled_at: Date | null;
24
+ /** 가입된 공업사 정보 */
25
+ repairShop: Admin_RepairShop | null;
23
26
  }
24
27
  export interface PartnerSignupLink {
25
28
  link: string;
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@carsayo/types",
3
- "version": "1.1.851",
3
+ "version": "1.1.853",
4
4
  "description": "Carsayo app type",
5
5
  "main": "dist/index.js",
6
6
  "types": "dist/index.d.ts",