Skip to content

Commit

Permalink
Fix: Align after rebase
Browse files Browse the repository at this point in the history
Fix: Align after rebase
  • Loading branch information
mmioana committed Sep 19, 2024
1 parent 2a9543c commit f0e9fb9
Show file tree
Hide file tree
Showing 2 changed files with 7 additions and 11 deletions.
4 changes: 0 additions & 4 deletions amplify/backend/api/colonycdapp/schema/schema.graphql
Original file line number Diff line number Diff line change
Expand Up @@ -1088,10 +1088,6 @@ enum SupportedCurrencies {
CLNY # Colony Network Token
}

enum ExtendedSupportedCurrencies {
USDC
}

enum ExtendedSupportedCurrencies {
USD # US Dollar
JPY # Japanese Yen
Expand Down
14 changes: 7 additions & 7 deletions src/graphql/generated.ts
Original file line number Diff line number Diff line change
Expand Up @@ -6488,9 +6488,9 @@ export type Query = {
getCurrentVersion?: Maybe<CurrentVersion>;
getCurrentVersionByKey?: Maybe<ModelCurrentVersionConnection>;
getDomain?: Maybe<Domain>;
getDomainByNativeSkillId?: Maybe<ModelDomainConnection>;
/** Fetch a domain total balance */
getDomainBalance?: Maybe<DomainBalanceReturn>;
getDomainByNativeSkillId?: Maybe<ModelDomainConnection>;
getDomainMetadata?: Maybe<DomainMetadata>;
getDomainsByColony?: Maybe<ModelDomainConnection>;
getExpenditure?: Maybe<Expenditure>;
Expand Down Expand Up @@ -6911,6 +6911,12 @@ export type QueryGetDomainArgs = {
};


/** Root query type */
export type QueryGetDomainBalanceArgs = {
input: DomainBalanceArguments;
};


/** Root query type */
export type QueryGetDomainByNativeSkillIdArgs = {
filter?: InputMaybe<ModelDomainFilterInput>;
Expand All @@ -6922,12 +6928,6 @@ export type QueryGetDomainByNativeSkillIdArgs = {
};


/** Root query type */
export type QueryGetDomainBalanceArgs = {
input: DomainBalanceArguments;
};


/** Root query type */
export type QueryGetDomainMetadataArgs = {
id: Scalars['ID'];
Expand Down

0 comments on commit f0e9fb9

Please sign in to comment.