From 3097cbe72891d8935d28e976258ce7c35d14f5e7 Mon Sep 17 00:00:00 2001 From: Justin Edmund Date: Sat, 17 Jun 2023 23:42:32 -0700 Subject: [PATCH] Add new properties * Added guidebooks to RaidGroup * Added auto_summon to Party --- components/party/Party/index.tsx | 1 + types/Party.d.ts | 1 + types/RaidGroup.d.ts | 1 + types/index.d.ts | 1 + 4 files changed, 4 insertions(+) diff --git a/components/party/Party/index.tsx b/components/party/Party/index.tsx index 6015c2b5..348a3c9b 100644 --- a/components/party/Party/index.tsx +++ b/components/party/Party/index.tsx @@ -135,6 +135,7 @@ const Party = (props: Props) => { chargeAttack: 'charge_attack', fullAuto: 'full_auto', autoGuard: 'auto_guard', + autoSummon: 'auto_summon', clearTime: 'clear_time', buttonCount: 'button_count', chainCount: 'chain_count', diff --git a/types/Party.d.ts b/types/Party.d.ts index 4e86c21e..e2b4d23c 100644 --- a/types/Party.d.ts +++ b/types/Party.d.ts @@ -20,6 +20,7 @@ interface Party { raid: Raid full_auto: boolean auto_guard: boolean + auto_summon: boolean charge_attack: boolean clear_time: number button_count?: number diff --git a/types/RaidGroup.d.ts b/types/RaidGroup.d.ts index d6290a3f..f4dc72f9 100644 --- a/types/RaidGroup.d.ts +++ b/types/RaidGroup.d.ts @@ -10,5 +10,6 @@ interface RaidGroup { section: number order: number extra: boolean + guidebooks: boolean hl: boolean } diff --git a/types/index.d.ts b/types/index.d.ts index 77a721b2..97a81308 100644 --- a/types/index.d.ts +++ b/types/index.d.ts @@ -29,6 +29,7 @@ export type DetailsObject = { [key: string]: boolean | number | string | string[] | Raid | undefined fullAuto?: boolean autoGuard?: boolean + autoSummon?: boolean chargeAttack?: boolean clearTime?: number buttonCount?: number