Skip to content

Commit cbb4405

Browse files
Regenerate GraphQL code
1 parent 4c843a4 commit cbb4405

File tree

1 file changed

+5
-1
lines changed

1 file changed

+5
-1
lines changed

src/generated/graphql.ts

Lines changed: 5 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -88,6 +88,11 @@ export type BankAccountList = {
8888
bankAccounts: Array<BankAccount>;
8989
};
9090

91+
export enum BankAccountOwnerType {
92+
Citizen = 'CITIZEN',
93+
User = 'USER'
94+
}
95+
9196
export type BankAccountResult = BankAccount | NotAuthorized | NotFound;
9297

9398
export type BankAccountsResult = BankAccountList | NotAuthorized;
@@ -322,7 +327,6 @@ export type Island = {
322327
name: Scalars['String']['output'];
323328
owner: User;
324329
tiles: Array<Tile>;
325-
turn: Scalars['Int']['output'];
326330
};
327331

328332
export type IslandList = {

0 commit comments

Comments
 (0)