@@ -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.
1274112741scalar FormattedNumber
1274212742
12743+ enum FromParticipantEnum {
12744+ BUYER
12745+ SELLER
12746+ }
12747+
1274312748# Buyer fulfillment details for order
1274412749type FulfillmentDetails {
1274512750 # Shipping address line 1
@@ -13352,7 +13357,6 @@ type HomeViewCard {
1335213357 href: String
1335313358 image: Image
1335413359 images: [Image]
13355- ownerType: String
1335613360 subtitle: String
1335713361 title: String!
1335813362}
@@ -16950,6 +16954,33 @@ enum NotificationTypesEnum {
1695016954 VIEWING_ROOM_PUBLISHED
1695116955}
1695216956
16957+ # An offer on an order
16958+ type Offer {
16959+ # The buyer's total amount for this offer
16960+ amount: Money
16961+
16962+ # Offer creation time
16963+ createdAt: String
16964+
16965+ # Who the offer is from
16966+ fromParticipant: FromParticipantEnum!
16967+
16968+ # A globally unique ID.
16969+ id: ID!
16970+
16971+ # A type-specific ID likely used as a database ID.
16972+ internalID: ID!
16973+
16974+ # Optional note for the offer
16975+ note: String
16976+
16977+ # The shipping total for this offer
16978+ shippingTotal: Money
16979+
16980+ # The tax total for this offer
16981+ taxTotal: Money
16982+ }
16983+
1695316984# Consignment Offer Response
1695416985type OfferResponse {
1695516986 comments: String
@@ -17033,6 +17064,9 @@ type Order {
1703317064 lineItems: [LineItem]!
1703417065 mode: OrderModeEnum!
1703517066
17067+ # List of offers for this order
17068+ offers: [Offer!]!
17069+
1703617070 # Payment method used for the order
1703717071 paymentMethod: OrderPaymentMethodEnum
1703817072
@@ -17090,7 +17124,7 @@ enum OrderBuyerStateEnum {
1709017124 # Order is incomplete (pending or abandoned)
1709117125 INCOMPLETE
1709217126
17093- # Order is an offer avaiting responce from the buyer
17127+ # Order is an offer awaiting response from the buyer
1709417128 OFFER_RECEIVED
1709517129
1709617130 # Payment has failed
0 commit comments