Add new properties

* Added guidebooks to RaidGroup
* Added auto_summon to Party
This commit is contained in:
Justin Edmund 2023-06-17 23:42:32 -07:00
parent 33c7e7b28c
commit 3097cbe728
4 changed files with 4 additions and 0 deletions

View file

@ -135,6 +135,7 @@ const Party = (props: Props) => {
chargeAttack: 'charge_attack', chargeAttack: 'charge_attack',
fullAuto: 'full_auto', fullAuto: 'full_auto',
autoGuard: 'auto_guard', autoGuard: 'auto_guard',
autoSummon: 'auto_summon',
clearTime: 'clear_time', clearTime: 'clear_time',
buttonCount: 'button_count', buttonCount: 'button_count',
chainCount: 'chain_count', chainCount: 'chain_count',

1
types/Party.d.ts vendored
View file

@ -20,6 +20,7 @@ interface Party {
raid: Raid raid: Raid
full_auto: boolean full_auto: boolean
auto_guard: boolean auto_guard: boolean
auto_summon: boolean
charge_attack: boolean charge_attack: boolean
clear_time: number clear_time: number
button_count?: number button_count?: number

View file

@ -10,5 +10,6 @@ interface RaidGroup {
section: number section: number
order: number order: number
extra: boolean extra: boolean
guidebooks: boolean
hl: boolean hl: boolean
} }

1
types/index.d.ts vendored
View file

@ -29,6 +29,7 @@ export type DetailsObject = {
[key: string]: boolean | number | string | string[] | Raid | undefined [key: string]: boolean | number | string | string[] | Raid | undefined
fullAuto?: boolean fullAuto?: boolean
autoGuard?: boolean autoGuard?: boolean
autoSummon?: boolean
chargeAttack?: boolean chargeAttack?: boolean
clearTime?: number clearTime?: number
buttonCount?: number buttonCount?: number