We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 4c843a4 commit cbb4405Copy full SHA for cbb4405
src/generated/graphql.ts
@@ -88,6 +88,11 @@ export type BankAccountList = {
88
bankAccounts: Array<BankAccount>;
89
};
90
91
+export enum BankAccountOwnerType {
92
+ Citizen = 'CITIZEN',
93
+ User = 'USER'
94
+}
95
+
96
export type BankAccountResult = BankAccount | NotAuthorized | NotFound;
97
98
export type BankAccountsResult = BankAccountList | NotAuthorized;
@@ -322,7 +327,6 @@ export type Island = {
322
327
name: Scalars['String']['output'];
323
328
owner: User;
324
329
tiles: Array<Tile>;
325
- turn: Scalars['Int']['output'];
326
330
331
332
export type IslandList = {
0 commit comments