Skip to content

Commit

Permalink
chore: update metaphysics graphql schema (#10425)
Browse files Browse the repository at this point in the history
  • Loading branch information
artsyit committed Jun 24, 2024
1 parent 8d95f53 commit 50ab386
Showing 1 changed file with 32 additions and 0 deletions.
32 changes: 32 additions & 0 deletions data/schema.graphql
Original file line number Diff line number Diff line change
Expand Up @@ -4200,6 +4200,14 @@ type CollectorProfileType implements Node {
isEmailConfirmed: Boolean
isIdentityVerified: Boolean
isProfileComplete: Boolean
lastUpdatePromptAt(
format: String

# A tz database time zone, otherwise falls back to "X-TIMEZONE" header. See
# http://www.iana.org/time-zones,
# https://en.wikipedia.org/wiki/List_of_tz_database_time_zones
timezone: String
): String
location: MyLocation
loyaltyApplicantAt(
format: String
Expand Down Expand Up @@ -4274,6 +4282,10 @@ type CollectorProfileTypeEdge {
node: CollectorProfileType
}

type CollectorProfileUpdatePromptNotificationItem {
collectorProfile: CollectorProfileType!
}

type CollectorResume {
buyerActivity: CommerceBuyerActivity
collectorProfile: CollectorProfileType!
Expand Down Expand Up @@ -11373,6 +11385,14 @@ type InquirerCollectorProfile {
isEmailConfirmed: Boolean
isIdentityVerified: Boolean
isProfileComplete: Boolean
lastUpdatePromptAt(
format: String

# A tz database time zone, otherwise falls back to "X-TIMEZONE" header. See
# http://www.iana.org/time-zones,
# https://en.wikipedia.org/wiki/List_of_tz_database_time_zones
timezone: String
): String
location: MyLocation
loyaltyApplicantAt(
format: String
Expand Down Expand Up @@ -13802,6 +13822,7 @@ union NotificationItem =
AlertNotificationItem
| ArticleFeaturedArtistNotificationItem
| ArtworkPublishedNotificationItem
| CollectorProfileUpdatePromptNotificationItem
| PartnerOfferCreatedNotificationItem
| ShowOpenedNotificationItem
| ViewingRoomPublishedNotificationItem
Expand Down Expand Up @@ -18997,6 +19018,9 @@ input UpdateCollectorProfileInput {
loyaltyApplicant: Boolean
professionalBuyer: Boolean

# Since we don't want to ask a collector to update their profile too often, set this to record they've been prompted
promptedForUpdate: Boolean

# Free-form text of purchases the collector has indicated.
selfReportedPurchases: String
}
Expand Down Expand Up @@ -19048,6 +19072,14 @@ type UpdateCollectorProfilePayload {
isEmailConfirmed: Boolean
isIdentityVerified: Boolean
isProfileComplete: Boolean
lastUpdatePromptAt(
format: String

# A tz database time zone, otherwise falls back to "X-TIMEZONE" header. See
# http://www.iana.org/time-zones,
# https://en.wikipedia.org/wiki/List_of_tz_database_time_zones
timezone: String
): String
location: MyLocation
loyaltyApplicantAt(
format: String
Expand Down

0 comments on commit 50ab386

Please sign in to comment.