Skip to content
This repository has been archived by the owner on Oct 13, 2022. It is now read-only.

#317 GuestSummary で term に null を指定できるように #318

Open
wants to merge 2 commits into
base: develop
Choose a base branch
from
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@afes-website/docs",
"version": "3.4.0-alpha.1",
"version": "3.4.0-alpha.2",
"description": "CAPPUCCINO API",
"license": "MIT",
"repository": {
Expand Down
5 changes: 4 additions & 1 deletion src/apis/guests/@types.ts
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,10 @@ export interface Guest {
term: Term;
}

export type GuestSummary = Pick<Guest, "id" | "term">;
export type GuestSummary = {
id: string;
term: Term | null;
};

export interface RegisterCredentials {
reservation_id: string;
Expand Down