Skip to content

Commit

Permalink
chore: codegen
Browse files Browse the repository at this point in the history
  • Loading branch information
bigint committed Mar 20, 2024
1 parent 7ca0817 commit ff98ac1
Showing 1 changed file with 36 additions and 0 deletions.
36 changes: 36 additions & 0 deletions packages/lens/generated.ts
Original file line number Diff line number Diff line change
Expand Up @@ -356,12 +356,25 @@ export type ClaimProfileWithHandleResult =
| ClaimProfileWithHandleErrorResult
| RelaySuccess;

export type ClaimTokensRequest = {
for: ClaimableTokenType;
};

export type ClaimableProfilesResult = {
__typename?: 'ClaimableProfilesResult';
canMintProfileWithFreeTextHandle: Scalars['Boolean']['output'];
reserved: Array<ReservedClaimable>;
};

export enum ClaimableTokenType {
Bonsai = 'BONSAI'
}

export type ClaimableTokensResult = {
__typename?: 'ClaimableTokensResult';
bonsai: Amount;
};

export type CollectActionModuleInput = {
multirecipientCollectOpenAction?: InputMaybe<MultirecipientFeeCollectModuleInput>;
simpleCollectOpenAction?: InputMaybe<SimpleCollectOpenActionModuleInput>;
Expand Down Expand Up @@ -1717,6 +1730,13 @@ export type HidePublicationRequest = {
for: Scalars['PublicationId']['input'];
};

export type IphResult = {
__typename?: 'IPHResult';
h?: Maybe<Scalars['Handle']['output']>;
hda: Scalars['Boolean']['output'];
hs: Scalars['Boolean']['output'];
};

export type IdKitPhoneVerifyWebhookRequest = {
sharedSecret: Scalars['String']['input'];
worldcoin?: InputMaybe<WorldcoinPhoneVerifyWebhookRequest>;
Expand Down Expand Up @@ -1868,6 +1888,11 @@ export type InternalNftVerifyRequest = {
secret: Scalars['String']['input'];
};

export type InternalPaymentHandleInfoRequest = {
p: Scalars['String']['input'];
secret: Scalars['String']['input'];
};

export type InternalProfileStatusRequest = {
hhh: Scalars['String']['input'];
secret: Scalars['String']['input'];
Expand Down Expand Up @@ -4503,8 +4528,10 @@ export type Query = {
approvedModuleAllowanceAmount: Array<ApprovedAllowanceAmountResult>;
canClaim: Array<CanClaimResult>;
challenge: AuthChallengeResult;
claimTokens: LensProfileManagerRelayResult;
claimableProfiles: ClaimableProfilesResult;
claimableStatus: ClaimProfileStatusType;
claimableTokens: ClaimableTokensResult;
/** Get all enabled currencies */
currencies: PaginatedCurrenciesResult;
currentSession: ApprovedAuthentication;
Expand All @@ -4528,6 +4555,7 @@ export type Query = {
internalCuratedHandles: Array<Scalars['String']['output']>;
internalCuratedTags: Array<Scalars['String']['output']>;
internalInvites: Scalars['Int']['output'];
internalPaymentHandleInfo?: Maybe<IphResult>;
internalProfileStatus: PrfResult;
invitedProfiles: Array<InvitedResult>;
lastLoggedInProfile?: Maybe<Profile>;
Expand Down Expand Up @@ -4609,6 +4637,10 @@ export type QueryChallengeArgs = {
request: ChallengeRequest;
};

export type QueryClaimTokensArgs = {
request: ClaimTokensRequest;
};

export type QueryCurrenciesArgs = {
request: PaginatedOffsetRequest;
};
Expand Down Expand Up @@ -4681,6 +4713,10 @@ export type QueryInternalInvitesArgs = {
request: InternalInvitesRequest;
};

export type QueryInternalPaymentHandleInfoArgs = {
request: InternalPaymentHandleInfoRequest;
};

export type QueryInternalProfileStatusArgs = {
request: InternalProfileStatusRequest;
};
Expand Down

1 comment on commit ff98ac1

@vercel
Copy link

@vercel vercel bot commented on ff98ac1 Mar 20, 2024

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Successfully deployed to the following URLs:

web – ./apps/web

web-git-main-heyxyz.vercel.app
web-heyxyz.vercel.app
hey.xyz
heyxyz.vercel.app

Please sign in to comment.