@carsayo/types 1.1.865 → 1.1.867

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.
@@ -32,6 +32,8 @@ export interface AccidentReportCreateDTO {
32
32
  longitude: number;
33
33
  /** 협력 정비소 아이디 */
34
34
  partner_repairshop_id: string;
35
+ /** 사지 업로드 시 url 리스트 */
36
+ pictures_url: string[];
35
37
  }
36
38
  /** 사고접수 업데이트 */
37
39
  export interface AccidentReportUpdateDTO {
@@ -227,6 +227,8 @@ export type Admin_RepairShop = RepairShop & {
227
227
  };
228
228
  /** 수수료 비율 */
229
229
  commission_rate: number;
230
+ /** 관리자 작성 메모 */
231
+ admin_memo: string;
230
232
  /** 정비소 소유주 정보 */
231
233
  owner: {
232
234
  name: string;
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@carsayo/types",
3
- "version": "1.1.865",
3
+ "version": "1.1.867",
4
4
  "description": "Carsayo app type",
5
5
  "main": "dist/index.js",
6
6
  "types": "dist/index.d.ts",