대시보드

[GET] stores/dashboard/total

Response

[
	{
		paymentId: string
		companyId: string
		companyName: string
		menus: [
			{
				name: string
				price: number
			}
			...
		]
		createdAt: Date
	}
	...
]

Auth

✅ 회원가입

[POST] /stores

Request

{
	email: string
	password: string
	passwordConfirm: string
	phone: string
	businessName: string
	repName: string
	address: string
	registerNumber: string
	businessType: string
	openDate: Date
}

Response

// 201
{
	id: string
}

✅ 로그인

[POST] /stores/auth

Request

{
	email: string
	password: string
}

Response