Skip to content

Commit 1f98371

Browse files
committed
chore: update metaphysics graphql schema
1 parent db76588 commit 1f98371

File tree

1 file changed

+36
-1
lines changed

1 file changed

+36
-1
lines changed

data/schema.graphql

Lines changed: 36 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12740,6 +12740,11 @@ type FormattedDaySchedules {
1274012740
# The `FormattedNumber` type represents a number that can optionally be returnedas a formatted String. It does not try to coerce the type.
1274112741
scalar FormattedNumber
1274212742

12743+
enum FromParticipantEnum {
12744+
BUYER
12745+
SELLER
12746+
}
12747+
1274312748
# Buyer fulfillment details for order
1274412749
type FulfillmentDetails {
1274512750
# Shipping address line 1
@@ -16950,6 +16955,33 @@ enum NotificationTypesEnum {
1695016955
VIEWING_ROOM_PUBLISHED
1695116956
}
1695216957

16958+
# An offer on an order
16959+
type Offer {
16960+
# The buyer's total amount for this offer
16961+
amount: Money
16962+
16963+
# Offer creation time
16964+
createdAt: String
16965+
16966+
# Who the offer is from
16967+
fromParticipant: FromParticipantEnum!
16968+
16969+
# A globally unique ID.
16970+
id: ID!
16971+
16972+
# A type-specific ID likely used as a database ID.
16973+
internalID: ID!
16974+
16975+
# Optional note for the offer
16976+
note: String
16977+
16978+
# The shipping total for this offer
16979+
shippingTotal: Money
16980+
16981+
# The tax total for this offer
16982+
taxTotal: Money
16983+
}
16984+
1695316985
# Consignment Offer Response
1695416986
type OfferResponse {
1695516987
comments: String
@@ -17033,6 +17065,9 @@ type Order {
1703317065
lineItems: [LineItem]!
1703417066
mode: OrderModeEnum!
1703517067

17068+
# List of offers for this order
17069+
offers: [Offer!]!
17070+
1703617071
# Payment method used for the order
1703717072
paymentMethod: OrderPaymentMethodEnum
1703817073

@@ -17090,7 +17125,7 @@ enum OrderBuyerStateEnum {
1709017125
# Order is incomplete (pending or abandoned)
1709117126
INCOMPLETE
1709217127

17093-
# Order is an offer avaiting responce from the buyer
17128+
# Order is an offer awaiting response from the buyer
1709417129
OFFER_RECEIVED
1709517130

1709617131
# Payment has failed

0 commit comments

Comments
 (0)