Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Update metaphysics schema #5664

Merged
merged 1 commit into from
May 28, 2020
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
29 changes: 29 additions & 0 deletions data/schema.graphql
Original file line number Diff line number Diff line change
Expand Up @@ -3168,6 +3168,22 @@ type ConditionReportRequest {
userID: ID
}

# Autogenerated input type of ConfirmPassword
input ConfirmPasswordInput {
# A unique identifier for the client performing the mutation.
clientMutationId: String

# User password to confirm.
password: String!
}

# Autogenerated return type of ConfirmPassword
type ConfirmPasswordPayload {
# A unique identifier for the client performing the mutation.
clientMutationId: String
valid: Boolean!
}

# Consignment Offer
type ConsignmentOffer {
commissionPercentWhole: Int
Expand Down Expand Up @@ -3508,6 +3524,7 @@ type CreateAppSecondFactorPayload {
input CreateBackupSecondFactorsInput {
# A unique identifier for the client performing the mutation.
clientMutationId: String
password: String
}

# Autogenerated return type of CreateBackupSecondFactors
Expand Down Expand Up @@ -3632,12 +3649,21 @@ type CreateSubmissionMutationPayload {

# Autogenerated input type of CreateViewingRoom
input CreateViewingRoomInput {
# Main text
body: String!

# A unique identifier for the client performing the mutation.
clientMutationId: String

# Introduction
introStatement: String!

# Partner Id
partnerId: String!

# Pullquote
pullQuote: String

# Title
title: String!
}
Expand Down Expand Up @@ -3869,6 +3895,7 @@ type dimensions {
input DisableSecondFactorInput {
# A unique identifier for the client performing the mutation.
clientMutationId: String
password: String
secondFactorID: ID!
}

Expand Down Expand Up @@ -3953,6 +3980,7 @@ input EnableSecondFactorInput {
# A unique identifier for the client performing the mutation.
clientMutationId: String
code: String!
password: String
secondFactorID: ID!
}

Expand Down Expand Up @@ -5794,6 +5822,7 @@ type Mutation {
commerceSubmitPendingOffer(
input: CommerceSubmitPendingOfferInput!
): CommerceSubmitPendingOfferPayload
confirmPassword(input: ConfirmPasswordInput!): ConfirmPasswordPayload

# Create an account request
createAccountRequest(
Expand Down

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

1 change: 1 addition & 0 deletions src/v2/__generated__/EnableSecondFactorMutation.graphql.ts

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.