@carsayo/types 1.1.864 → 1.1.865

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.
@@ -215,6 +215,10 @@ export type Admin_AccidentReport = Omit<AccidentReport, "repairShop"> & {
215
215
  };
216
216
  /** 관리자가 조회하는 정비소 정보 */
217
217
  export type Admin_RepairShop = RepairShop & {
218
+ /** 사업자등록번호 */
219
+ business_registration_number: string;
220
+ /** 이메일 주소(세금계산서 발행용) */
221
+ business_email: string;
218
222
  /** 정비소 은행 계좌 */
219
223
  bank_account: {
220
224
  bank: string;
@@ -228,6 +232,11 @@ export type Admin_RepairShop = RepairShop & {
228
232
  name: string;
229
233
  contact_number: string;
230
234
  };
235
+ /** 정비소 관리자 정보 */
236
+ manager: {
237
+ name: string;
238
+ contact_number: string;
239
+ };
231
240
  /** 사업자등록증 */
232
241
  businessCertificate: FileInfo | null;
233
242
  /** 자동차관리사업등록증 */
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@carsayo/types",
3
- "version": "1.1.864",
3
+ "version": "1.1.865",
4
4
  "description": "Carsayo app type",
5
5
  "main": "dist/index.js",
6
6
  "types": "dist/index.d.ts",