@nautical-commerce/graphql-schema 1.61.0-3-g8ae73ad47 → 1.61.0-30-g8c7918d32

Sign up to get free protection for your applications and to get access to all the features.
@@ -2202,11 +2202,9 @@ enum EventTypeEnum {
2202
2202
  order_fulfillment_confirmation
2203
2203
  order_fulfillment_denied
2204
2204
  order_fulfillment_update
2205
- order_payment_confirmation
2206
2205
  order_canceled
2207
2206
  partial_order_cancel
2208
2207
  order_refund_confirmation
2209
- seller_bid_action
2210
2208
  pending_quote
2211
2209
  account_set_staff_password
2212
2210
  csv_export_products_success
@@ -2222,8 +2220,6 @@ enum EventTypeEnum {
2222
2220
  seller_status_paused
2223
2221
  seller_agreement_accepted
2224
2222
  seller_agreement_not_accepted
2225
- vin_decode_success
2226
- vin_decode_failed
2227
2223
  import_catalog_failed
2228
2224
  import_catalog_success
2229
2225
  account_activate_request
@@ -2231,7 +2227,6 @@ enum EventTypeEnum {
2231
2227
  account_deactivated
2232
2228
  pending_order
2233
2229
  pending_customer
2234
- buyer_bid_action
2235
2230
  quote_requested
2236
2231
  }
2237
2232
 
@@ -2434,27 +2429,6 @@ type User implements Node & ObjectWithMetadata {
2434
2429
  """Return the last n elements from the list."""
2435
2430
  last: Int
2436
2431
  ): OrderCountableConnection
2437
-
2438
- """List of user's offer seller orders."""
2439
- offerOrders(
2440
- """Filtering options for orders."""
2441
- filter: CustomerOrderFilterInput
2442
-
2443
- """Sort orders."""
2444
- sortBy: OrderSortingInput
2445
-
2446
- """Return the elements in the list that come before the specified cursor."""
2447
- before: String
2448
-
2449
- """Return the elements in the list that come after the specified cursor."""
2450
- after: String
2451
-
2452
- """Return the first n elements from the list."""
2453
- first: Int
2454
-
2455
- """Return the last n elements from the list."""
2456
- last: Int
2457
- ): OrderCountableConnection @deprecated(reason: "This will be removed alongside bids and offers on November 21, 2024")
2458
2432
  numOrders: Int
2459
2433
 
2460
2434
  """List of user's nautical orders."""
@@ -2499,27 +2473,6 @@ type User implements Node & ObjectWithMetadata {
2499
2473
  last: Int
2500
2474
  ): NauticalOrderCountableConnection
2501
2475
 
2502
- """List of user's nautical offer orders."""
2503
- nauticalOfferOrders(
2504
- """Filtering options for orders."""
2505
- filter: CustomerNauticalOrderFilterInput
2506
-
2507
- """Sort orders."""
2508
- sortBy: OrderSortingInput
2509
-
2510
- """Return the elements in the list that come before the specified cursor."""
2511
- before: String
2512
-
2513
- """Return the elements in the list that come after the specified cursor."""
2514
- after: String
2515
-
2516
- """Return the first n elements from the list."""
2517
- first: Int
2518
-
2519
- """Return the last n elements from the list."""
2520
- last: Int
2521
- ): NauticalOrderCountableConnection @deprecated(reason: "This will be removed alongside bids and offers on November 21, 2024")
2522
-
2523
2476
  """List of user's permissions."""
2524
2477
  userPermissions: [UserPermission!]!
2525
2478
 
@@ -2932,7 +2885,7 @@ type ProductVariant implements Node & ObjectWithMetadata {
2932
2885
  allowBackorders: Boolean
2933
2886
 
2934
2887
  """
2935
- indicates whether we allow overriding the unit_price of variants in checkout and draft, quote, offer order lines
2888
+ indicates whether we allow overriding the unit_price of variants in checkout and draft, quote order lines
2936
2889
  """
2937
2890
  isPriceOverrideAllowed: Boolean!
2938
2891
  isShippingRequired: Boolean!
@@ -3088,7 +3041,7 @@ type Product implements Node & ObjectWithMetadata {
3088
3041
  subStatus: ProductSubStatus!
3089
3042
 
3090
3043
  """
3091
- indicates whether we allow overriding the unit_price of variants in checkout and draft, quote, offer order lines
3044
+ indicates whether we allow overriding the unit_price of variants in checkout and draft, quote order lines
3092
3045
  """
3093
3046
  isPriceOverrideAllowed: Boolean!
3094
3047
  isShippingRequired: Boolean!
@@ -3908,12 +3861,6 @@ type Order implements Node & ObjectWithMetadata {
3908
3861
  """Validation status for the order"""
3909
3862
  validationStatus: [ValidationStatus!]
3910
3863
 
3911
- """Latest bid made against the order."""
3912
- currentBid: Bid @deprecated(reason: "This will be removed alongside bids and offers on November 21, 2024")
3913
-
3914
- """List of all bids made against the order."""
3915
- bids: [Bid!] @deprecated(reason: "This will be removed alongside bids and offers on November 21, 2024")
3916
-
3917
3864
  """
3918
3865
  Determines if seller is the only seller on the related nautical order. Note: if nautical order doesn't exist - will return None.
3919
3866
  """
@@ -3940,9 +3887,6 @@ enum OrderOrderSource {
3940
3887
  """quote"""
3941
3888
  QUOTE
3942
3889
 
3943
- """offer"""
3944
- OFFER
3945
-
3946
3890
  """manual"""
3947
3891
  MANUAL
3948
3892
 
@@ -3954,7 +3898,6 @@ enum OrderOrderSource {
3954
3898
  enum OrderStatus {
3955
3899
  DRAFT
3956
3900
  QUOTE
3957
- OFFER
3958
3901
  UNFULFILLED
3959
3902
  PARTIALLY_FULFILLED
3960
3903
  FULFILLED
@@ -3980,24 +3923,6 @@ enum OrderSubStatus {
3980
3923
 
3981
3924
  """Complete"""
3982
3925
  COMPLETE
3983
-
3984
- """Offer Approved"""
3985
- OFFER_APPROVED
3986
-
3987
- """Offer Cancelled"""
3988
- OFFER_CANCELLED
3989
-
3990
- """Offer Created"""
3991
- OFFER_CREATED
3992
-
3993
- """Offer Expired"""
3994
- OFFER_EXPIRED
3995
-
3996
- """Offer Negotiating"""
3997
- OFFER_NEGOTIATING
3998
-
3999
- """Offer Rejected"""
4000
- OFFER_REJECTED
4001
3926
  }
4002
3927
 
4003
3928
  """
@@ -4619,7 +4544,7 @@ type ProductType implements Node & ObjectWithMetadata {
4619
4544
  weight: Weight
4620
4545
 
4621
4546
  """
4622
- indicates whether we allow overriding the unit_price of variants in checkout and draft, quote, offer order lines
4547
+ indicates whether we allow overriding the unit_price of variants in checkout and draft, quote order lines
4623
4548
  """
4624
4549
  isPriceOverrideAllowed: Boolean!
4625
4550
  createdBy: Seller
@@ -5705,12 +5630,6 @@ type NauticalOrder implements Node & ObjectWithMetadata {
5705
5630
  volumeDiscount: TaxedMoney @deprecated(reason: "This will be removed on February 1, 2025.")
5706
5631
  shippingMethodName: String!
5707
5632
 
5708
- """Latest bid made against the order."""
5709
- currentBid: Bid @deprecated(reason: "This will be removed alongside bids and offers on November 21, 2024")
5710
-
5711
- """List of all bids made against the order."""
5712
- bids: [Bid!] @deprecated(reason: "This will be removed alongside bids and offers on November 21, 2024")
5713
-
5714
5633
  """List of all the vendor orders connected to this marketplace order."""
5715
5634
  subOrders: [Order!]
5716
5635
 
@@ -5738,9 +5657,6 @@ enum NauticalOrderOrderSource {
5738
5657
  """quote"""
5739
5658
  QUOTE
5740
5659
 
5741
- """offer"""
5742
- OFFER
5743
-
5744
5660
  """manual"""
5745
5661
  MANUAL
5746
5662
 
@@ -5752,7 +5668,6 @@ enum NauticalOrderOrderSource {
5752
5668
  enum NauticalOrderStatus {
5753
5669
  DRAFT
5754
5670
  QUOTE
5755
- OFFER
5756
5671
  UNFULFILLED
5757
5672
  PARTIALLY_FULFILLED
5758
5673
  FULFILLED
@@ -5778,24 +5693,6 @@ enum NauticalOrderSubStatus {
5778
5693
 
5779
5694
  """Complete"""
5780
5695
  COMPLETE
5781
-
5782
- """Offer Approved"""
5783
- OFFER_APPROVED
5784
-
5785
- """Offer Cancelled"""
5786
- OFFER_CANCELLED
5787
-
5788
- """Offer Created"""
5789
- OFFER_CREATED
5790
-
5791
- """Offer Expired"""
5792
- OFFER_EXPIRED
5793
-
5794
- """Offer Negotiating"""
5795
- OFFER_NEGOTIATING
5796
-
5797
- """Offer Rejected"""
5798
- OFFER_REJECTED
5799
5696
  }
5800
5697
 
5801
5698
  enum OrderSubStatusEnum {
@@ -5810,24 +5707,6 @@ enum OrderSubStatusEnum {
5810
5707
 
5811
5708
  """Complete"""
5812
5709
  COMPLETE
5813
-
5814
- """Offer Approved"""
5815
- OFFER_APPROVED
5816
-
5817
- """Offer Cancelled"""
5818
- OFFER_CANCELLED
5819
-
5820
- """Offer Created"""
5821
- OFFER_CREATED
5822
-
5823
- """Offer Expired"""
5824
- OFFER_EXPIRED
5825
-
5826
- """Offer Negotiating"""
5827
- OFFER_NEGOTIATING
5828
-
5829
- """Offer Rejected"""
5830
- OFFER_REJECTED
5831
5710
  }
5832
5711
 
5833
5712
  """Represents order line of particular order."""
@@ -6711,12 +6590,6 @@ enum OrderEventsEmailsEnum {
6711
6590
 
6712
6591
  """The quote request email was sent to the marketplace operator"""
6713
6592
  QUOTE_REQUESTED
6714
-
6715
- """A bid action performed by the seller triggered email to be sent"""
6716
- SELLER_BID_ACTION
6717
-
6718
- """A bid action performed by the buyer triggered email to be sent"""
6719
- BUYER_BID_ACTION
6720
6593
  }
6721
6594
 
6722
6595
  type NauticalOrderEventOrderLineObject {
@@ -6730,47 +6603,6 @@ type NauticalOrderEventOrderLineObject {
6730
6603
  itemName: String
6731
6604
  }
6732
6605
 
6733
- """Represents a bid."""
6734
- type Bid implements Node {
6735
- """The ID of the object"""
6736
- id: ID!
6737
- privateMetadata: JSONString!
6738
- metadata: JSONString!
6739
- tenant: Tenant!
6740
- createdAt: DateTime!
6741
- updatedAt: DateTime!
6742
- status: BidStatus!
6743
- user: User
6744
- role: BidRole!
6745
- order: Order
6746
- nauticalOrder: NauticalOrder
6747
- bidAmount: Decimal!
6748
- currency: String!
6749
- amount: Money
6750
- message: String
6751
- }
6752
-
6753
- """An enumeration."""
6754
- enum BidStatus {
6755
- """Submitted"""
6756
- SUBMITTED
6757
-
6758
- """Accepted"""
6759
- ACCEPTED
6760
-
6761
- """Rejected"""
6762
- REJECTED
6763
- }
6764
-
6765
- """An enumeration."""
6766
- enum BidRole {
6767
- """Seller"""
6768
- SELLER
6769
-
6770
- """Buyer"""
6771
- BUYER
6772
- }
6773
-
6774
6606
  """
6775
6607
  Represents a refund scoped to an nautical order, a seller order, or a seller order line
6776
6608
  """
@@ -8127,7 +7959,6 @@ enum OrderSourceFilter {
8127
7959
  CHECKOUT
8128
7960
  DRAFT
8129
7961
  QUOTE
8130
- OFFER
8131
7962
  MANUAL
8132
7963
  EXTERNAL
8133
7964
  }
@@ -8877,7 +8708,7 @@ type Shop {
8877
8708
  enableQuoteOrders: Boolean
8878
8709
 
8879
8710
  """Whether the marketplace has enabled offer orders."""
8880
- enableOfferOrders: Boolean
8711
+ enableOfferOrders: Boolean @deprecated(reason: "This will be removed on February 20, 2025.")
8881
8712
 
8882
8713
  """Shop's name."""
8883
8714
  name: String!
@@ -11215,7 +11046,7 @@ type MarketplaceConfiguration {
11215
11046
  """Returns list of default checklists for seller."""
11216
11047
  defaultSellerChecklists: [DefaultSellerChecklist!]!
11217
11048
  enableStockAllocationForQuotes: Boolean!
11218
- enableStockAllocationForOffers: Boolean!
11049
+ enableStockAllocationForOffers: Boolean @deprecated(reason: "This will be removed on February 20, 2025 and will return false until then")
11219
11050
  enableStockAllocationForDrafts: Boolean!
11220
11051
  validateStockOnOrderPaymentCreation: Boolean!
11221
11052
 
@@ -11224,7 +11055,7 @@ type MarketplaceConfiguration {
11224
11055
  enableBackorders: Boolean!
11225
11056
 
11226
11057
  """Determines when revenue is accrued to the marketplace and sellers"""
11227
- revenueAccrualStrategy: RevenueAccrualStrategyEnum
11058
+ revenueAccrualStrategy: RevenueAccrualStrategyEnum @deprecated(reason: "This will be removed on February 20, 2025.")
11228
11059
 
11229
11060
  """
11230
11061
  Determines whether shipping methods are available based on marketplace checkout total or seller totals
@@ -11936,9 +11767,6 @@ enum EmailEventMessageType {
11936
11767
  """Order Fulfillment Update"""
11937
11768
  ORDER_FULFILLMENT_UPDATE
11938
11769
 
11939
- """Order Payment Confirmation"""
11940
- ORDER_PAYMENT_CONFIRMATION
11941
-
11942
11770
  """Order Canceled"""
11943
11771
  ORDER_CANCELED
11944
11772
 
@@ -11948,9 +11776,6 @@ enum EmailEventMessageType {
11948
11776
  """Order Refund Confirmation"""
11949
11777
  ORDER_REFUND_CONFIRMATION
11950
11778
 
11951
- """Seller Bid Action"""
11952
- SELLER_BID_ACTION
11953
-
11954
11779
  """Pending Quote"""
11955
11780
  PENDING_QUOTE
11956
11781
 
@@ -11996,12 +11821,6 @@ enum EmailEventMessageType {
11996
11821
  """Seller Agreement Not Accepted"""
11997
11822
  SELLER_AGREEMENT_NOT_ACCEPTED
11998
11823
 
11999
- """Vin Decode Success"""
12000
- VIN_DECODE_SUCCESS
12001
-
12002
- """Vin Decode Failed"""
12003
- VIN_DECODE_FAILED
12004
-
12005
11824
  """Import Catalog Failed"""
12006
11825
  IMPORT_CATALOG_FAILED
12007
11826
 
@@ -12023,9 +11842,6 @@ enum EmailEventMessageType {
12023
11842
  """Pending Customer"""
12024
11843
  PENDING_CUSTOMER
12025
11844
 
12026
- """Buyer Bid Action"""
12027
- BUYER_BID_ACTION
12028
-
12029
11845
  """Quote Requested"""
12030
11846
  QUOTE_REQUESTED
12031
11847
  }
@@ -12071,9 +11887,6 @@ enum NotifyEventTypeEnum {
12071
11887
  """Order Fulfillment Update"""
12072
11888
  ORDER_FULFILLMENT_UPDATE
12073
11889
 
12074
- """Order Payment Confirmation"""
12075
- ORDER_PAYMENT_CONFIRMATION @deprecated(reason: "Will be removed on Nov 12, 2024")
12076
-
12077
11890
  """Order Canceled"""
12078
11891
  ORDER_CANCELED
12079
11892
 
@@ -12083,9 +11896,6 @@ enum NotifyEventTypeEnum {
12083
11896
  """Order Refund Confirmation"""
12084
11897
  ORDER_REFUND_CONFIRMATION
12085
11898
 
12086
- """Seller Bid Action"""
12087
- SELLER_BID_ACTION @deprecated(reason: "Will be removed on Nov 12, 2024")
12088
-
12089
11899
  """Pending Quote"""
12090
11900
  PENDING_QUOTE
12091
11901
 
@@ -12131,12 +11941,6 @@ enum NotifyEventTypeEnum {
12131
11941
  """Seller Agreement Not Accepted"""
12132
11942
  SELLER_AGREEMENT_NOT_ACCEPTED
12133
11943
 
12134
- """Vin Decode Success"""
12135
- VIN_DECODE_SUCCESS @deprecated(reason: "Will be removed on Nov 12, 2024")
12136
-
12137
- """Vin Decode Failed"""
12138
- VIN_DECODE_FAILED @deprecated(reason: "Will be removed on Nov 12, 2024")
12139
-
12140
11944
  """Import Catalog Failed"""
12141
11945
  IMPORT_CATALOG_FAILED
12142
11946
 
@@ -12158,9 +11962,6 @@ enum NotifyEventTypeEnum {
12158
11962
  """Pending Customer"""
12159
11963
  PENDING_CUSTOMER
12160
11964
 
12161
- """Buyer Bid Action"""
12162
- BUYER_BID_ACTION @deprecated(reason: "Will be removed on Nov 12, 2024")
12163
-
12164
11965
  """Quote Requested"""
12165
11966
  QUOTE_REQUESTED
12166
11967
  }
@@ -13444,7 +13245,7 @@ enum StaffMemberStatus {
13444
13245
  DEACTIVATED
13445
13246
  }
13446
13247
 
13447
- union _Entity = WishlistItem | Wishlist | User | Address | ProductVariant | Product | Category | ProductType | App | Collection | Bid | Microsite | ProductImage | Location | ProductStatusLog | Group | CatalogImportProcess | CatalogImportProcessLogRecord
13248
+ union _Entity = WishlistItem | Wishlist | User | Address | ProductVariant | Product | Category | ProductType | App | Collection | Microsite | ProductImage | Location | ProductStatusLog | Group | CatalogImportProcess | CatalogImportProcessLogRecord
13448
13249
 
13449
13250
  scalar _Any
13450
13251
 
@@ -13478,7 +13279,7 @@ type Mutation {
13478
13279
  description: String
13479
13280
 
13480
13281
  """
13481
- Used when uploading a new document or file in a multipart request that does not exist in the system already. Supported file types: image/heif, text/x-comma-separated-values, application/x-acad, application/x-rar-compressed, application/svg+xml, application/x-tif, image/vnd.dwg, application/x-dxf, application/vnd.pdf, application/vnd.openxmlformats-officedocument.wordprocessingml.document, image/x-dwg, application/vnd.ms-word, image/dxf, text/rtf, text/x-pdf, application/zip, image/png, application/x-zip-compressed, image/svg+xml, application/x-pdf, drawing/dwg, application/tif, text/x-csv, image/x-tif, application/x-dwg, application/gzip, application/vnd.oasis.opendocument.spreadsheet, application/vnd.openxmlformats-officedocument.presentationml.slideshow, application/postscript, application/acad, image/heic, application/gzipped, image/tiff, image/webp, application/x-rar, text/pdf, application/acrobat, image/jpg, image/x-dxf, application/gzip-compressed, application/vnd.openxmlformats-officedocument.presentationml.presentation, pplication/vnd.rar, drawing/x-dwg, image/x-ms-bmp, application/vnd.ms-powerpoint, application/tiff, application/x-jpg, image/svg, application/x-rtf, image/tif, application/jpg, image/x-eps, application/pdf, application/eps, application/excel, image/jpeg, application/x-gzip, text/plain, image/heif-sequence, application/rtf, application/csv, image/heic-sequence, image/eps, text/svg, drawing/x-dwf, text/svg-xml, image/x-tiff, application/x-eps, application/dxf, application/x-autocad, text/csv, image/bmp, text/comma-separated-values, application/x-tar, application/vnd.oasis.opendocument.presentation, application/vnd.ms-excel, image/x-bmp, application/vnd.openxmlformats-officedocument.spreadsheetml.sheet, application/dwg, image/gif, application/msword, application/x-csv, application/vnd.oasis.opendocument.text, application/x-tiff.
13282
+ Used when uploading a new document or file in a multipart request that does not exist in the system already. Supported file types: application/gzipped, application/x-eps, application/gzip, application/msword, image/jpeg, application/vnd.ms-powerpoint, text/comma-separated-values, application/x-acad, drawing/dwg, image/x-ms-bmp, application/excel, image/x-tiff, image/x-dwg, application/vnd.pdf, application/x-pdf, application/x-zip-compressed, application/svg+xml, application/gzip-compressed, application/vnd.oasis.opendocument.spreadsheet, text/svg-xml, application/x-tar, application/x-autocad, image/x-tif, application/x-dwg, image/tif, image/tiff, text/pdf, image/heic-sequence, image/png, application/postscript, application/eps, application/dxf, application/csv, text/rtf, text/x-csv, application/jpg, text/csv, application/vnd.oasis.opendocument.text, pplication/vnd.rar, image/x-bmp, application/x-jpg, image/vnd.dwg, image/dxf, application/x-rtf, image/svg, application/x-rar, application/vnd.openxmlformats-officedocument.spreadsheetml.sheet, application/rtf, text/x-comma-separated-values, application/pdf, application/x-tiff, application/dwg, drawing/x-dwf, application/vnd.ms-excel, text/plain, image/eps, application/tiff, drawing/x-dwg, application/x-dxf, text/x-pdf, image/heif-sequence, application/x-gzip, image/svg+xml, image/heif, application/x-rar-compressed, application/x-csv, application/acrobat, image/bmp, image/heic, application/tif, application/zip, image/gif, text/svg, application/vnd.openxmlformats-officedocument.wordprocessingml.document, image/x-eps, application/x-tif, application/vnd.openxmlformats-officedocument.presentationml.presentation, application/vnd.openxmlformats-officedocument.presentationml.slideshow, application/acad, image/webp, image/x-dxf, application/vnd.oasis.opendocument.presentation, image/jpg, application/vnd.ms-word.
13482
13283
  """
13483
13284
  file: Upload!
13484
13285
 
@@ -13528,24 +13329,6 @@ type Mutation {
13528
13329
  targetIds: [ID!]
13529
13330
  ): DocumentRemove
13530
13331
 
13531
- """Creates a new Bid."""
13532
- bidCreate(
13533
- """Fields required to create a new bid."""
13534
- input: BidInput!
13535
- ): BidCreate @deprecated(reason: "This will be removed alongside bids and offers on November 21, 2024")
13536
-
13537
- """Accepts the specificed bid."""
13538
- bidAccept(
13539
- """ID of the bid to accept."""
13540
- bidId: ID!
13541
- ): BidAccept @deprecated(reason: "This will be removed alongside bids and offers on November 21, 2024")
13542
-
13543
- """Rejects the specificed bid."""
13544
- bidReject(
13545
- """ID of the bid to reject."""
13546
- bidId: ID!
13547
- ): BidReject @deprecated(reason: "This will be removed alongside bids and offers on November 21, 2024")
13548
-
13549
13332
  """Updates nautical configuration."""
13550
13333
  nauticalConfigurationUpdate(input: [NauticalConfigurationInputItem!]): NauticalConfigurationUpdate
13551
13334
 
@@ -15175,7 +14958,7 @@ type Mutation {
15175
14958
  id: ID!
15176
14959
  ): NauticalDraftOrderLineDelete
15177
14960
 
15178
- """Updates an order line of a draft, quote or offer order."""
14961
+ """Updates an order line of a draft or quote order."""
15179
14962
  draftOrderLineUpdate(
15180
14963
  """ID of the order line to update."""
15181
14964
  id: ID!
@@ -15214,9 +14997,7 @@ type Mutation {
15214
14997
  token: String
15215
14998
  ): NauticalDraftOrderUpdate
15216
14999
 
15217
- """
15218
- Overrides unit net price of an order line of a draft, quote, or offer order.
15219
- """
15000
+ """Overrides unit net price of an order line of a draft or quote order."""
15220
15001
  draftOrderLinePriceOverride(
15221
15002
  """ID of the order line to update."""
15222
15003
  id: ID!
@@ -15226,7 +15007,7 @@ type Mutation {
15226
15007
  ): DraftOrderLinePriceOverride
15227
15008
 
15228
15009
  """
15229
- Overrides unit net price of a marketplace order line of a draft, quote, or offer order.
15010
+ Overrides unit net price of a marketplace order line of a draft, or quote order.
15230
15011
  """
15231
15012
  nauticalDraftOrderLinePriceOverride(
15232
15013
  """ID of the marketplace order line to update."""
@@ -15553,16 +15334,6 @@ type Mutation {
15553
15334
  id: ID!
15554
15335
  ): OrderFeeDelete
15555
15336
 
15556
- """
15557
- Converts a seller or marketplace offer order to a nautical quote order.
15558
- """
15559
- orderOfferConvertToNauticalQuoteOrder(
15560
- """
15561
- ID of the nautical offer or offer order to be converted to a nautical quote order
15562
- """
15563
- id: ID!
15564
- ): OrderOfferConvertToNauticalQuoteOrder @deprecated(reason: "This will be removed alongside bids and offers on November 21, 2024")
15565
-
15566
15337
  """
15567
15338
  Uploads lines for a draft order via CSV. This mutation must be sent as a `multipart` request. More detailed specs of the upload format can be found here: https://github.com/jaydenseric/graphql-multipart-request-spec
15568
15339
  """
@@ -16888,81 +16659,6 @@ type DocumentRemove {
16888
16659
  documentErrors: [DocumentError!]!
16889
16660
  }
16890
16661
 
16891
- """Creates a new Bid."""
16892
- type BidCreate {
16893
- bid: Bid
16894
- bidErrors: [BidError!]!
16895
- }
16896
-
16897
- type BidError {
16898
- """
16899
- Name of a field that caused the error. A value of `null` indicates that the error isn't associated with a particular field.
16900
- """
16901
- field: String
16902
-
16903
- """The error message."""
16904
- message: String!
16905
-
16906
- """The error code."""
16907
- code: BidErrorCode!
16908
- }
16909
-
16910
- """An enumeration."""
16911
- enum BidErrorCode {
16912
- GRAPHQL_ERROR
16913
- INVALID
16914
- NOT_FOUND
16915
- REQUIRED
16916
- UNIQUE
16917
- }
16918
-
16919
- input BidInput {
16920
- """Role of the user creating the bid."""
16921
- role: BidRoleEnum!
16922
-
16923
- """ID of the Nautical Order or Order to associate with this bid."""
16924
- orderId: ID!
16925
-
16926
- """Amount of the bid."""
16927
- bidAmount: PositiveDecimal!
16928
-
16929
- """
16930
- Currency in 3-letter currency code format. If this is omitted, the marketplace currency will be used by default.
16931
- """
16932
- currency: String
16933
-
16934
- """Message to add to the bid."""
16935
- message: String
16936
- }
16937
-
16938
- enum BidRoleEnum {
16939
- """Seller"""
16940
- SELLER
16941
-
16942
- """Buyer"""
16943
- BUYER
16944
- }
16945
-
16946
- """Accepts the specificed bid."""
16947
- type BidAccept {
16948
- """Seller order for which the bid was accepted."""
16949
- order: Order
16950
-
16951
- """Nautical order for which the bid was accepted."""
16952
- nauticalOrder: NauticalOrder
16953
- bidErrors: [BidError!]!
16954
- }
16955
-
16956
- """Rejects the specificed bid."""
16957
- type BidReject {
16958
- """Seller order for which the bid was rejected."""
16959
- order: Order
16960
-
16961
- """Nautical order for which the bid was rejected."""
16962
- nauticalOrder: NauticalOrder
16963
- bidErrors: [BidError!]!
16964
- }
16965
-
16966
16662
  """Updates nautical configuration."""
16967
16663
  type NauticalConfigurationUpdate {
16968
16664
  nauticalConfigurationList: [NauticalConfiguration!]
@@ -17037,7 +16733,7 @@ input MarketplaceConfigurationInput {
17037
16733
  payoutAutomationStrategy: MarketplaceConfigurationPayoutAutomationStrategyEnum = null
17038
16734
 
17039
16735
  """Update revenue accrual strategy"""
17040
- revenueAccrualStrategy: RevenueAccrualStrategyEnum = null
16736
+ revenueAccrualStrategy: RevenueAccrualStrategyEnum = null @deprecated(reason: "This will be removed on February 20, 2025.")
17041
16737
 
17042
16738
  """Update available shipping strategy"""
17043
16739
  availableShippingStrategy: AvailableShippingStrategyEnum = null
@@ -17072,7 +16768,7 @@ input MarketplaceConfigurationInput {
17072
16768
  enableStockAllocationForQuotes: Boolean
17073
16769
 
17074
16770
  """True if offer orders trigger stock allocation."""
17075
- enableStockAllocationForOffers: Boolean
16771
+ enableStockAllocationForOffers: Boolean @deprecated(reason: "This will be removed on February 20, 2025.")
17076
16772
 
17077
16773
  """True if draft orders trigger stock allocation."""
17078
16774
  enableStockAllocationForDrafts: Boolean
@@ -20165,7 +19861,7 @@ input ProductTypeInput {
20165
19861
  slug: String
20166
19862
 
20167
19863
  """
20168
- Allow variant price to be overridden for products in this product type in the checkout or in quote, draft and offer orders.
19864
+ Allow variant price to be overridden for products in this product type in the checkout or in quote and draft orders.
20169
19865
  """
20170
19866
  isPriceOverrideAllowed: Boolean
20171
19867
 
@@ -21189,7 +20885,6 @@ input OrderLineCreateInput {
21189
20885
  enum DraftOrderInitialStatus {
21190
20886
  DRAFT
21191
20887
  QUOTE
21192
- OFFER
21193
20888
  }
21194
20889
 
21195
20890
  """Creates a new Nautical draft order."""
@@ -21391,7 +21086,7 @@ type NauticalDraftOrderLineDelete {
21391
21086
  orderErrors: [OrderError!]!
21392
21087
  }
21393
21088
 
21394
- """Updates an order line of a draft, quote or offer order."""
21089
+ """Updates an order line of a draft or quote order."""
21395
21090
  type DraftOrderLineUpdate {
21396
21091
  """A related draft or quote order."""
21397
21092
  order: Order
@@ -21477,11 +21172,9 @@ input NauticalDraftOrderInput {
21477
21172
  poNumbers: [String!]
21478
21173
  }
21479
21174
 
21480
- """
21481
- Overrides unit net price of an order line of a draft, quote, or offer order.
21482
- """
21175
+ """Overrides unit net price of an order line of a draft or quote order."""
21483
21176
  type DraftOrderLinePriceOverride {
21484
- """A related draft, quote, or offer order."""
21177
+ """A related draft, or quote order."""
21485
21178
  order: Order
21486
21179
  orderErrors: [OrderError!]!
21487
21180
  orderLine: OrderLine
@@ -21498,10 +21191,10 @@ input OrderLinePriceOverrideInput {
21498
21191
  }
21499
21192
 
21500
21193
  """
21501
- Overrides unit net price of a marketplace order line of a draft, quote, or offer order.
21194
+ Overrides unit net price of a marketplace order line of a draft, or quote order.
21502
21195
  """
21503
21196
  type NauticalDraftOrderLinePriceOverride {
21504
- """A related draft, quote, or offer marketplace order."""
21197
+ """A related draft, or quote marketplace order."""
21505
21198
  nauticalOrder: NauticalOrder
21506
21199
  orderErrors: [OrderError!]!
21507
21200
  nauticalOrderLine: NauticalOrderLine
@@ -22065,18 +21758,6 @@ type OrderFeeDelete {
22065
21758
  orderErrors: [OrderError!]!
22066
21759
  }
22067
21760
 
22068
- """
22069
- Converts a seller or marketplace offer order to a nautical quote order.
22070
- """
22071
- type OrderOfferConvertToNauticalQuoteOrder {
22072
- """The converted Nautical Quote order (available only for MPO)."""
22073
- nauticalOrder: NauticalOrder
22074
-
22075
- """The converted Quote order"""
22076
- order: Order
22077
- orderErrors: [OrderError!]!
22078
- }
22079
-
22080
21761
  """
22081
21762
  Uploads lines for a draft order via CSV. This mutation must be sent as a `multipart` request. More detailed specs of the upload format can be found here: https://github.com/jaydenseric/graphql-multipart-request-spec
22082
21763
  """
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@nautical-commerce/graphql-schema",
3
- "version": "v1.61.0-3-g8ae73ad47",
3
+ "version": "v1.61.0-30-g8c7918d32",
4
4
  "description": "## Getting Started",
5
5
  "main": "./nautical/schema.graphql",
6
6
  "scripts": {