Skip to content

Commit

Permalink
chore: update codegen
Browse files Browse the repository at this point in the history
  • Loading branch information
sandipndev committed May 14, 2024
1 parent 542b22f commit bba2970
Showing 1 changed file with 58 additions and 0 deletions.
58 changes: 58 additions & 0 deletions app/graphql/generated.ts
Original file line number Diff line number Diff line change
Expand Up @@ -567,6 +567,61 @@ export type GraphQlApplicationError = Error & {
readonly path?: Maybe<ReadonlyArray<Maybe<Scalars['String']['output']>>>;
};

export const Icon = {
ArrowLeft: 'ARROW_LEFT',
ArrowRight: 'ARROW_RIGHT',
BackSpace: 'BACK_SPACE',
Bank: 'BANK',
Bell: 'BELL',
Bitcoin: 'BITCOIN',
Book: 'BOOK',
BtcBook: 'BTC_BOOK',
CaretDown: 'CARET_DOWN',
CaretLeft: 'CARET_LEFT',
CaretRight: 'CARET_RIGHT',
CaretUp: 'CARET_UP',
Check: 'CHECK',
CheckCircle: 'CHECK_CIRCLE',
Close: 'CLOSE',
CloseCrossWithBackground: 'CLOSE_CROSS_WITH_BACKGROUND',
Coins: 'COINS',
CopyPaste: 'COPY_PASTE',
Dollar: 'DOLLAR',
Eye: 'EYE',
EyeSlash: 'EYE_SLASH',
Filter: 'FILTER',
Globe: 'GLOBE',
Graph: 'GRAPH',
Image: 'IMAGE',
Info: 'INFO',
Lightning: 'LIGHTNING',
Link: 'LINK',
Loading: 'LOADING',
MagnifyingGlass: 'MAGNIFYING_GLASS',
Map: 'MAP',
Menu: 'MENU',
Note: 'NOTE',
PaymentError: 'PAYMENT_ERROR',
PaymentPending: 'PAYMENT_PENDING',
PaymentSuccess: 'PAYMENT_SUCCESS',
Pencil: 'PENCIL',
People: 'PEOPLE',
QrCode: 'QR_CODE',
Question: 'QUESTION',
Rank: 'RANK',
Receive: 'RECEIVE',
Refresh: 'REFRESH',
Send: 'SEND',
Settings: 'SETTINGS',
Share: 'SHARE',
Transfer: 'TRANSFER',
User: 'USER',
Video: 'VIDEO',
Warning: 'WARNING',
WarningWithBackground: 'WARNING_WITH_BACKGROUND'
} as const;

export type Icon = typeof Icon[keyof typeof Icon];
export type InitiationVia = InitiationViaIntraLedger | InitiationViaLn | InitiationViaOnChain;

export type InitiationViaIntraLedger = {
Expand Down Expand Up @@ -1832,6 +1887,7 @@ export type StatefulNotification = {
readonly bulletinEnabled: Scalars['Boolean']['output'];
readonly createdAt: Scalars['Timestamp']['output'];
readonly deepLink?: Maybe<Scalars['String']['output']>;
readonly icon?: Maybe<Icon>;
readonly id: Scalars['ID']['output'];
readonly title: Scalars['String']['output'];
};
Expand Down Expand Up @@ -7959,6 +8015,7 @@ export type ResolversTypes = {
Globals: ResolverTypeWrapper<Globals>;
GraphQLApplicationError: ResolverTypeWrapper<GraphQlApplicationError>;
Hex32Bytes: ResolverTypeWrapper<Scalars['Hex32Bytes']['output']>;
Icon: Icon;
InitiationVia: ResolverTypeWrapper<ResolversUnionTypes<ResolversTypes>['InitiationVia']>;
InitiationViaIntraLedger: ResolverTypeWrapper<InitiationViaIntraLedger>;
InitiationViaLn: ResolverTypeWrapper<InitiationViaLn>;
Expand Down Expand Up @@ -9207,6 +9264,7 @@ export type StatefulNotificationResolvers<ContextType = any, ParentType extends
bulletinEnabled?: Resolver<ResolversTypes['Boolean'], ParentType, ContextType>;
createdAt?: Resolver<ResolversTypes['Timestamp'], ParentType, ContextType>;
deepLink?: Resolver<Maybe<ResolversTypes['String']>, ParentType, ContextType>;
icon?: Resolver<Maybe<ResolversTypes['Icon']>, ParentType, ContextType>;
id?: Resolver<ResolversTypes['ID'], ParentType, ContextType>;
title?: Resolver<ResolversTypes['String'], ParentType, ContextType>;
__isTypeOf?: IsTypeOfResolverFn<ParentType, ContextType>;
Expand Down

0 comments on commit bba2970

Please sign in to comment.