Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
36 changes: 30 additions & 6 deletions src/utils/api/cartridge/generated.ts
Original file line number Diff line number Diff line change
Expand Up @@ -35,8 +35,6 @@ export type Account = Node & {
membership: AccountTeamConnection;
name?: Maybe<Scalars['String']>;
oauthConnections?: Maybe<Array<OAuthConnection>>;
phoneNumber?: Maybe<Scalars['String']>;
phoneNumberVerifiedAt?: Maybe<Scalars['String']>;
/** If true, the account is billed for paid slot deployments */
slotBilling: Scalars['Boolean'];
starterpackMint: StarterpackMintConnection;
Expand Down Expand Up @@ -136,6 +134,16 @@ export enum AccountOrderField {
CreatedAt = 'CREATED_AT'
}

export type AccountPrivate = {
__typename?: 'AccountPrivate';
firstName?: Maybe<Scalars['String']>;
lastName?: Maybe<Scalars['String']>;
phoneNumber?: Maybe<Scalars['String']>;
phoneNumberVerifiedAt?: Maybe<Scalars['Time']>;
proveVerifiedAt?: Maybe<Scalars['Time']>;
verificationStatus?: Maybe<Scalars['String']>;
};

export type AccountTeam = Node & {
__typename?: 'AccountTeam';
account: Account;
Expand Down Expand Up @@ -1467,7 +1475,6 @@ export type CreateStripePaymentIntentInput = {
};

export type CreateStripeStarterpackIntentInput = {
chainId: Scalars['String'];
isMainnet?: InputMaybe<Scalars['Boolean']>;
quantity: Scalars['Int'];
referral?: InputMaybe<Scalars['String']>;
Expand Down Expand Up @@ -4474,9 +4481,27 @@ export type ProveVerifyResponse = {
verified?: Maybe<Scalars['Boolean']>;
};

export type PurchaseFulfillment = {
__typename?: 'PurchaseFulfillment';
id: Scalars['ID'];
lastError?: Maybe<Scalars['String']>;
status: PurchaseFulfillmentStatus;
transactionHash?: Maybe<Scalars['String']>;
};

export enum PurchaseFulfillmentStatus {
AwaitingPayment = 'AWAITING_PAYMENT',
Confirmed = 'CONFIRMED',
Failed = 'FAILED',
Processing = 'PROCESSING',
Queued = 'QUEUED',
Submitted = 'SUBMITTED'
}

export type Query = {
__typename?: 'Query';
account?: Maybe<Account>;
accountPrivate?: Maybe<AccountPrivate>;
accounts?: Maybe<AccountConnection>;
achievements: AchievementResult;
activities: ActivityResult;
Expand Down Expand Up @@ -6498,6 +6523,7 @@ export type StripePayment = {
__typename?: 'StripePayment';
id: Scalars['ID'];
paymentStatus: StripePaymentStatus;
purchaseFulfillment?: Maybe<PurchaseFulfillment>;
};

export type StripePaymentIntent = {
Expand Down Expand Up @@ -7326,7 +7352,7 @@ export type FinalizeLoginMutation = { __typename?: 'Mutation', finalizeLogin: st
export type MeQueryVariables = Exact<{ [key: string]: never; }>;


export type MeQuery = { __typename?: 'Query', me?: { __typename?: 'Account', id: string, email?: string | null, phoneNumber?: string | null, phoneNumberVerifiedAt?: string | null } | null };
export type MeQuery = { __typename?: 'Query', me?: { __typename?: 'Account', id: string, email?: string | null } | null };

export type MerkleDropByKeyQueryVariables = Exact<{
key: Scalars['String'];
Expand Down Expand Up @@ -8289,8 +8315,6 @@ export const MeDocument = `
me {
id
email
phoneNumber
phoneNumberVerifiedAt
}
}
`;
Expand Down
2 changes: 0 additions & 2 deletions src/utils/api/cartridge/me.graphql
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,5 @@ query Me {
me {
id
email
phoneNumber
phoneNumberVerifiedAt
}
}
Loading