From 177656b0c799957d4836f64b35ff4d03d400485b Mon Sep 17 00:00:00 2001 From: Takeno-hito <18237819+Takeno-hito@users.noreply.github.com> Date: Sat, 13 Nov 2021 01:01:37 +0900 Subject: [PATCH 1/2] fix: allow null in guest summary --- src/apis/guests/@types.ts | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/src/apis/guests/@types.ts b/src/apis/guests/@types.ts index 8d81c58..b45a164 100644 --- a/src/apis/guests/@types.ts +++ b/src/apis/guests/@types.ts @@ -9,7 +9,10 @@ export interface Guest { term: Term; } -export type GuestSummary = Pick; +export type GuestSummary = { + id: string; + term: Term | null; +}; export interface RegisterCredentials { reservation_id: string; From 89955adaddff3d8a16f718a5c6b5437623296749 Mon Sep 17 00:00:00 2001 From: Takeno-hito <18237819+Takeno-hito@users.noreply.github.com> Date: Sat, 13 Nov 2021 01:06:08 +0900 Subject: [PATCH 2/2] v3.4.0-alpha.2 --- package.json | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/package.json b/package.json index bbdeeab..2d0ca5a 100644 --- a/package.json +++ b/package.json @@ -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": {