@nautical-commerce/graphql-schema 1.61.0 → 1.62.0-1-g7df7dc076

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
@@ -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
@@ -5009,6 +4934,7 @@ enum WebhookEventTypeEnum {
5009
4934
  SELLER_CREATED
5010
4935
  SELLER_UPDATED
5011
4936
  SELLER_AGREEMENT_ACKNOWLEDGED
4937
+ SELLER_AGREEMENT_DECLINED
5012
4938
  VARIANT_CREATED
5013
4939
  VARIANT_DELETED
5014
4940
  VARIANT_UPDATED
@@ -5705,12 +5631,6 @@ type NauticalOrder implements Node & ObjectWithMetadata {
5705
5631
  volumeDiscount: TaxedMoney @deprecated(reason: "This will be removed on February 1, 2025.")
5706
5632
  shippingMethodName: String!
5707
5633
 
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
5634
  """List of all the vendor orders connected to this marketplace order."""
5715
5635
  subOrders: [Order!]
5716
5636
 
@@ -5738,9 +5658,6 @@ enum NauticalOrderOrderSource {
5738
5658
  """quote"""
5739
5659
  QUOTE
5740
5660
 
5741
- """offer"""
5742
- OFFER
5743
-
5744
5661
  """manual"""
5745
5662
  MANUAL
5746
5663
 
@@ -5752,7 +5669,6 @@ enum NauticalOrderOrderSource {
5752
5669
  enum NauticalOrderStatus {
5753
5670
  DRAFT
5754
5671
  QUOTE
5755
- OFFER
5756
5672
  UNFULFILLED
5757
5673
  PARTIALLY_FULFILLED
5758
5674
  FULFILLED
@@ -5778,24 +5694,6 @@ enum NauticalOrderSubStatus {
5778
5694
 
5779
5695
  """Complete"""
5780
5696
  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
5697
  }
5800
5698
 
5801
5699
  enum OrderSubStatusEnum {
@@ -5810,24 +5708,6 @@ enum OrderSubStatusEnum {
5810
5708
 
5811
5709
  """Complete"""
5812
5710
  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
5711
  }
5832
5712
 
5833
5713
  """Represents order line of particular order."""
@@ -6711,12 +6591,6 @@ enum OrderEventsEmailsEnum {
6711
6591
 
6712
6592
  """The quote request email was sent to the marketplace operator"""
6713
6593
  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
6594
  }
6721
6595
 
6722
6596
  type NauticalOrderEventOrderLineObject {
@@ -6730,47 +6604,6 @@ type NauticalOrderEventOrderLineObject {
6730
6604
  itemName: String
6731
6605
  }
6732
6606
 
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
6607
  """
6775
6608
  Represents a refund scoped to an nautical order, a seller order, or a seller order line
6776
6609
  """
@@ -7154,7 +6987,7 @@ enum OrderPayoutStatusEnum {
7154
6987
  READY_FOR_PAYOUT
7155
6988
 
7156
6989
  """Pending final payout"""
7157
- PENDING_FINAL_PAYOUT
6990
+ PENDING_FINAL_PAYOUT @deprecated(reason: "This will be removed on February 26, 2025")
7158
6991
 
7159
6992
  """Paid out"""
7160
6993
  PAID_OUT
@@ -8127,7 +7960,6 @@ enum OrderSourceFilter {
8127
7960
  CHECKOUT
8128
7961
  DRAFT
8129
7962
  QUOTE
8130
- OFFER
8131
7963
  MANUAL
8132
7964
  EXTERNAL
8133
7965
  }
@@ -8414,6 +8246,7 @@ enum WebhookSampleEventTypeEnum {
8414
8246
  SELLER_CREATED
8415
8247
  SELLER_UPDATED
8416
8248
  SELLER_AGREEMENT_ACKNOWLEDGED
8249
+ SELLER_AGREEMENT_DECLINED
8417
8250
  VARIANT_CREATED
8418
8251
  VARIANT_DELETED
8419
8252
  VARIANT_UPDATED
@@ -8701,6 +8534,9 @@ type Content implements Node {
8701
8534
  """
8702
8535
  draftData: JSONString!
8703
8536
 
8537
+ """Revision number of the latest content version."""
8538
+ revision: Int!
8539
+
8704
8540
  """Whether the content has an active draft."""
8705
8541
  hasActiveDraft: Boolean
8706
8542
 
@@ -8877,7 +8713,7 @@ type Shop {
8877
8713
  enableQuoteOrders: Boolean
8878
8714
 
8879
8715
  """Whether the marketplace has enabled offer orders."""
8880
- enableOfferOrders: Boolean
8716
+ enableOfferOrders: Boolean @deprecated(reason: "This will be removed on February 20, 2025.")
8881
8717
 
8882
8718
  """Shop's name."""
8883
8719
  name: String!
@@ -8891,9 +8727,6 @@ type Shop {
8891
8727
  """Include taxes in prices."""
8892
8728
  includeTaxesInPrices: Boolean!
8893
8729
 
8894
- """Display prices with tax in store."""
8895
- displayGrossPrices: Boolean! @deprecated(reason: "This will be removed on November 22, 2024. Use the includeTaxesInPrices setting instead.")
8896
-
8897
8730
  """Charge taxes on shipping."""
8898
8731
  chargeTaxesOnShipping: Boolean!
8899
8732
 
@@ -8924,9 +8757,6 @@ type Shop {
8924
8757
  """Is authenticated user required for to view product price information."""
8925
8758
  loginForPrice: Boolean
8926
8759
 
8927
- """Is authenticated user required to view product listings."""
8928
- loginForProducts: Boolean @deprecated(reason: "This will be removed on November 22, 2024. Use the loginForPrice setting instead.")
8929
-
8930
8760
  """Gets active plugins."""
8931
8761
  activePlugins: [Plugin!]!
8932
8762
 
@@ -11196,11 +11026,6 @@ type MarketplaceConfiguration {
11196
11026
  tenant: Tenant!
11197
11027
  id: UUID!
11198
11028
  marketplaceName: String!
11199
-
11200
- """
11201
- True if marketplace accrues shipping revenue, false if sellers accrue shipping revenue
11202
- """
11203
- marketplaceAccruesShippingRevenue: Boolean @deprecated(reason: "Replaced by fulfillmentModel. This will be removed on November 25, 2024.")
11204
11029
  requireProductApproval: Boolean!
11205
11030
  requireProductTypes: Boolean!
11206
11031
 
@@ -11226,7 +11051,7 @@ type MarketplaceConfiguration {
11226
11051
  """Returns list of default checklists for seller."""
11227
11052
  defaultSellerChecklists: [DefaultSellerChecklist!]!
11228
11053
  enableStockAllocationForQuotes: Boolean!
11229
- enableStockAllocationForOffers: Boolean!
11054
+ enableStockAllocationForOffers: Boolean @deprecated(reason: "This will be removed on February 20, 2025 and will return false until then")
11230
11055
  enableStockAllocationForDrafts: Boolean!
11231
11056
  validateStockOnOrderPaymentCreation: Boolean!
11232
11057
 
@@ -11235,7 +11060,7 @@ type MarketplaceConfiguration {
11235
11060
  enableBackorders: Boolean!
11236
11061
 
11237
11062
  """Determines when revenue is accrued to the marketplace and sellers"""
11238
- revenueAccrualStrategy: RevenueAccrualStrategyEnum
11063
+ revenueAccrualStrategy: RevenueAccrualStrategyEnum @deprecated(reason: "This will be removed on February 20, 2025.")
11239
11064
 
11240
11065
  """
11241
11066
  Determines whether shipping methods are available based on marketplace checkout total or seller totals
@@ -11947,9 +11772,6 @@ enum EmailEventMessageType {
11947
11772
  """Order Fulfillment Update"""
11948
11773
  ORDER_FULFILLMENT_UPDATE
11949
11774
 
11950
- """Order Payment Confirmation"""
11951
- ORDER_PAYMENT_CONFIRMATION
11952
-
11953
11775
  """Order Canceled"""
11954
11776
  ORDER_CANCELED
11955
11777
 
@@ -11959,9 +11781,6 @@ enum EmailEventMessageType {
11959
11781
  """Order Refund Confirmation"""
11960
11782
  ORDER_REFUND_CONFIRMATION
11961
11783
 
11962
- """Seller Bid Action"""
11963
- SELLER_BID_ACTION
11964
-
11965
11784
  """Pending Quote"""
11966
11785
  PENDING_QUOTE
11967
11786
 
@@ -12007,12 +11826,6 @@ enum EmailEventMessageType {
12007
11826
  """Seller Agreement Not Accepted"""
12008
11827
  SELLER_AGREEMENT_NOT_ACCEPTED
12009
11828
 
12010
- """Vin Decode Success"""
12011
- VIN_DECODE_SUCCESS
12012
-
12013
- """Vin Decode Failed"""
12014
- VIN_DECODE_FAILED
12015
-
12016
11829
  """Import Catalog Failed"""
12017
11830
  IMPORT_CATALOG_FAILED
12018
11831
 
@@ -12034,9 +11847,6 @@ enum EmailEventMessageType {
12034
11847
  """Pending Customer"""
12035
11848
  PENDING_CUSTOMER
12036
11849
 
12037
- """Buyer Bid Action"""
12038
- BUYER_BID_ACTION
12039
-
12040
11850
  """Quote Requested"""
12041
11851
  QUOTE_REQUESTED
12042
11852
  }
@@ -12082,9 +11892,6 @@ enum NotifyEventTypeEnum {
12082
11892
  """Order Fulfillment Update"""
12083
11893
  ORDER_FULFILLMENT_UPDATE
12084
11894
 
12085
- """Order Payment Confirmation"""
12086
- ORDER_PAYMENT_CONFIRMATION @deprecated(reason: "Will be removed on Nov 12, 2024")
12087
-
12088
11895
  """Order Canceled"""
12089
11896
  ORDER_CANCELED
12090
11897
 
@@ -12094,9 +11901,6 @@ enum NotifyEventTypeEnum {
12094
11901
  """Order Refund Confirmation"""
12095
11902
  ORDER_REFUND_CONFIRMATION
12096
11903
 
12097
- """Seller Bid Action"""
12098
- SELLER_BID_ACTION @deprecated(reason: "Will be removed on Nov 12, 2024")
12099
-
12100
11904
  """Pending Quote"""
12101
11905
  PENDING_QUOTE
12102
11906
 
@@ -12142,12 +11946,6 @@ enum NotifyEventTypeEnum {
12142
11946
  """Seller Agreement Not Accepted"""
12143
11947
  SELLER_AGREEMENT_NOT_ACCEPTED
12144
11948
 
12145
- """Vin Decode Success"""
12146
- VIN_DECODE_SUCCESS @deprecated(reason: "Will be removed on Nov 12, 2024")
12147
-
12148
- """Vin Decode Failed"""
12149
- VIN_DECODE_FAILED @deprecated(reason: "Will be removed on Nov 12, 2024")
12150
-
12151
11949
  """Import Catalog Failed"""
12152
11950
  IMPORT_CATALOG_FAILED
12153
11951
 
@@ -12169,9 +11967,6 @@ enum NotifyEventTypeEnum {
12169
11967
  """Pending Customer"""
12170
11968
  PENDING_CUSTOMER
12171
11969
 
12172
- """Buyer Bid Action"""
12173
- BUYER_BID_ACTION @deprecated(reason: "Will be removed on Nov 12, 2024")
12174
-
12175
11970
  """Quote Requested"""
12176
11971
  QUOTE_REQUESTED
12177
11972
  }
@@ -13455,7 +13250,7 @@ enum StaffMemberStatus {
13455
13250
  DEACTIVATED
13456
13251
  }
13457
13252
 
13458
- union _Entity = WishlistItem | Wishlist | User | Address | ProductVariant | Product | Category | ProductType | App | Collection | Bid | Microsite | ProductImage | Location | ProductStatusLog | Group | CatalogImportProcess | CatalogImportProcessLogRecord
13253
+ union _Entity = WishlistItem | Wishlist | User | Address | ProductVariant | Product | Category | ProductType | App | Collection | Microsite | ProductImage | Location | ProductStatusLog | Group | CatalogImportProcess | CatalogImportProcessLogRecord
13459
13254
 
13460
13255
  scalar _Any
13461
13256
 
@@ -13489,7 +13284,7 @@ type Mutation {
13489
13284
  description: String
13490
13285
 
13491
13286
  """
13492
- Used when uploading a new document or file in a multipart request that does not exist in the system already. Supported file types: application/x-rar-compressed, text/x-pdf, application/x-rar, application/zip, text/x-csv, text/svg-xml, image/jpg, application/svg+xml, application/x-dxf, application/rtf, application/x-zip-compressed, application/eps, application/vnd.oasis.opendocument.text, image/heif, drawing/x-dwg, image/eps, text/csv, image/x-eps, application/acad, application/tif, application/tiff, application/csv, image/x-tif, image/x-dwg, application/x-acad, application/vnd.openxmlformats-officedocument.wordprocessingml.document, image/tif, image/bmp, text/pdf, drawing/x-dwf, application/x-rtf, image/png, application/excel, application/gzip, application/vnd.openxmlformats-officedocument.presentationml.presentation, image/vnd.dwg, application/vnd.ms-powerpoint, application/vnd.openxmlformats-officedocument.presentationml.slideshow, application/gzip-compressed, drawing/dwg, application/vnd.openxmlformats-officedocument.spreadsheetml.sheet, image/dxf, application/vnd.oasis.opendocument.presentation, application/x-csv, image/heif-sequence, image/x-bmp, pplication/vnd.rar, image/gif, application/postscript, image/heic, application/vnd.oasis.opendocument.spreadsheet, application/acrobat, application/x-tiff, application/x-gzip, image/webp, application/x-dwg, text/rtf, application/x-tif, application/x-jpg, image/svg+xml, image/jpeg, application/x-eps, image/x-dxf, text/plain, application/vnd.ms-word, image/x-ms-bmp, image/heic-sequence, application/vnd.ms-excel, application/x-pdf, application/x-autocad, text/svg, application/msword, application/jpg, text/x-comma-separated-values, application/dxf, application/x-tar, application/pdf, image/tiff, application/vnd.pdf, text/comma-separated-values, application/gzipped, application/dwg, image/svg, image/x-tiff.
13287
+ Used when uploading a new document or file in a multipart request that does not exist in the system already. Supported file types: application/vnd.openxmlformats-officedocument.wordprocessingml.document, application/excel, text/x-pdf, application/acrobat, image/x-ms-bmp, text/pdf, application/x-tar, application/x-acad, image/gif, application/gzipped, image/x-tiff, application/svg+xml, image/heif-sequence, image/x-dxf, application/vnd.openxmlformats-officedocument.presentationml.slideshow, application/x-gzip, text/svg, application/vnd.oasis.opendocument.text, image/bmp, drawing/x-dwg, image/tif, application/x-dxf, image/heif, text/x-comma-separated-values, image/x-dwg, pplication/vnd.rar, text/svg-xml, image/jpg, application/x-eps, application/x-zip-compressed, application/x-jpg, image/dxf, application/x-autocad, application/x-tif, text/comma-separated-values, application/dxf, application/x-dwg, application/x-rar-compressed, application/postscript, application/vnd.oasis.opendocument.spreadsheet, application/vnd.ms-word, image/tiff, text/rtf, application/vnd.openxmlformats-officedocument.presentationml.presentation, application/csv, application/x-rar, text/x-csv, application/jpg, drawing/x-dwf, application/rtf, image/svg, application/pdf, image/x-tif, application/x-pdf, application/eps, image/vnd.dwg, application/acad, application/tiff, image/webp, application/gzip-compressed, drawing/dwg, application/vnd.oasis.opendocument.presentation, text/csv, application/x-csv, image/svg+xml, application/tif, image/heic-sequence, application/dwg, image/eps, application/vnd.ms-powerpoint, image/x-eps, application/vnd.ms-excel, application/gzip, image/png, application/msword, image/jpeg, image/x-bmp, application/vnd.pdf, application/vnd.openxmlformats-officedocument.spreadsheetml.sheet, text/plain, application/x-tiff, application/x-rtf, application/zip, image/heic.
13493
13288
  """
13494
13289
  file: Upload!
13495
13290
 
@@ -13539,24 +13334,6 @@ type Mutation {
13539
13334
  targetIds: [ID!]
13540
13335
  ): DocumentRemove
13541
13336
 
13542
- """Creates a new Bid."""
13543
- bidCreate(
13544
- """Fields required to create a new bid."""
13545
- input: BidInput!
13546
- ): BidCreate @deprecated(reason: "This will be removed alongside bids and offers on November 21, 2024")
13547
-
13548
- """Accepts the specificed bid."""
13549
- bidAccept(
13550
- """ID of the bid to accept."""
13551
- bidId: ID!
13552
- ): BidAccept @deprecated(reason: "This will be removed alongside bids and offers on November 21, 2024")
13553
-
13554
- """Rejects the specificed bid."""
13555
- bidReject(
13556
- """ID of the bid to reject."""
13557
- bidId: ID!
13558
- ): BidReject @deprecated(reason: "This will be removed alongside bids and offers on November 21, 2024")
13559
-
13560
13337
  """Updates nautical configuration."""
13561
13338
  nauticalConfigurationUpdate(input: [NauticalConfigurationInputItem!]): NauticalConfigurationUpdate
13562
13339
 
@@ -15186,7 +14963,7 @@ type Mutation {
15186
14963
  id: ID!
15187
14964
  ): NauticalDraftOrderLineDelete
15188
14965
 
15189
- """Updates an order line of a draft, quote or offer order."""
14966
+ """Updates an order line of a draft or quote order."""
15190
14967
  draftOrderLineUpdate(
15191
14968
  """ID of the order line to update."""
15192
14969
  id: ID!
@@ -15225,9 +15002,7 @@ type Mutation {
15225
15002
  token: String
15226
15003
  ): NauticalDraftOrderUpdate
15227
15004
 
15228
- """
15229
- Overrides unit net price of an order line of a draft, quote, or offer order.
15230
- """
15005
+ """Overrides unit net price of an order line of a draft or quote order."""
15231
15006
  draftOrderLinePriceOverride(
15232
15007
  """ID of the order line to update."""
15233
15008
  id: ID!
@@ -15237,7 +15012,7 @@ type Mutation {
15237
15012
  ): DraftOrderLinePriceOverride
15238
15013
 
15239
15014
  """
15240
- Overrides unit net price of a marketplace order line of a draft, quote, or offer order.
15015
+ Overrides unit net price of a marketplace order line of a draft, or quote order.
15241
15016
  """
15242
15017
  nauticalDraftOrderLinePriceOverride(
15243
15018
  """ID of the marketplace order line to update."""
@@ -15472,7 +15247,7 @@ type Mutation {
15472
15247
  """Target order id."""
15473
15248
  id: ID!
15474
15249
  input: OrderPayoutStatusUpdateInput!
15475
- ): OrderPayoutStatusUpdate
15250
+ ): OrderPayoutStatusUpdate @deprecated(reason: "This will be removed on February 26, 2025.")
15476
15251
 
15477
15252
  """Updates a shipping method of the order."""
15478
15253
  orderUpdateShipping(
@@ -15550,7 +15325,7 @@ type Mutation {
15550
15325
  URL to send customer to for quote confirmation. Whatever URL is sent will have `token` added to the search parameters of the URL, e.g. if you send http://localhost/quote, the generated URL will be http://localhost/quote?token=...
15551
15326
  """
15552
15327
  storefrontUrl: String!
15553
- ): NauticalQuoteOrderSendToCustomer
15328
+ ): NauticalQuoteOrderSendToCustomer @deprecated(reason: "The ability to send Order IDs will be removed on February 26, 2025.")
15554
15329
 
15555
15330
  """Creates a new order fee."""
15556
15331
  orderFeeCreate(
@@ -15564,16 +15339,6 @@ type Mutation {
15564
15339
  id: ID!
15565
15340
  ): OrderFeeDelete
15566
15341
 
15567
- """
15568
- Converts a seller or marketplace offer order to a nautical quote order.
15569
- """
15570
- orderOfferConvertToNauticalQuoteOrder(
15571
- """
15572
- ID of the nautical offer or offer order to be converted to a nautical quote order
15573
- """
15574
- id: ID!
15575
- ): OrderOfferConvertToNauticalQuoteOrder @deprecated(reason: "This will be removed alongside bids and offers on November 21, 2024")
15576
-
15577
15342
  """
15578
15343
  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
15579
15344
  """
@@ -16899,81 +16664,6 @@ type DocumentRemove {
16899
16664
  documentErrors: [DocumentError!]!
16900
16665
  }
16901
16666
 
16902
- """Creates a new Bid."""
16903
- type BidCreate {
16904
- bid: Bid
16905
- bidErrors: [BidError!]!
16906
- }
16907
-
16908
- type BidError {
16909
- """
16910
- Name of a field that caused the error. A value of `null` indicates that the error isn't associated with a particular field.
16911
- """
16912
- field: String
16913
-
16914
- """The error message."""
16915
- message: String!
16916
-
16917
- """The error code."""
16918
- code: BidErrorCode!
16919
- }
16920
-
16921
- """An enumeration."""
16922
- enum BidErrorCode {
16923
- GRAPHQL_ERROR
16924
- INVALID
16925
- NOT_FOUND
16926
- REQUIRED
16927
- UNIQUE
16928
- }
16929
-
16930
- input BidInput {
16931
- """Role of the user creating the bid."""
16932
- role: BidRoleEnum!
16933
-
16934
- """ID of the Nautical Order or Order to associate with this bid."""
16935
- orderId: ID!
16936
-
16937
- """Amount of the bid."""
16938
- bidAmount: PositiveDecimal!
16939
-
16940
- """
16941
- Currency in 3-letter currency code format. If this is omitted, the marketplace currency will be used by default.
16942
- """
16943
- currency: String
16944
-
16945
- """Message to add to the bid."""
16946
- message: String
16947
- }
16948
-
16949
- enum BidRoleEnum {
16950
- """Seller"""
16951
- SELLER
16952
-
16953
- """Buyer"""
16954
- BUYER
16955
- }
16956
-
16957
- """Accepts the specificed bid."""
16958
- type BidAccept {
16959
- """Seller order for which the bid was accepted."""
16960
- order: Order
16961
-
16962
- """Nautical order for which the bid was accepted."""
16963
- nauticalOrder: NauticalOrder
16964
- bidErrors: [BidError!]!
16965
- }
16966
-
16967
- """Rejects the specificed bid."""
16968
- type BidReject {
16969
- """Seller order for which the bid was rejected."""
16970
- order: Order
16971
-
16972
- """Nautical order for which the bid was rejected."""
16973
- nauticalOrder: NauticalOrder
16974
- bidErrors: [BidError!]!
16975
- }
16976
-
16977
16667
  """Updates nautical configuration."""
16978
16668
  type NauticalConfigurationUpdate {
16979
16669
  nauticalConfigurationList: [NauticalConfiguration!]
@@ -17038,11 +16728,6 @@ input MarketplaceConfigurationInput {
17038
16728
  """
17039
16729
  isSellerShippingZoneCreationAllowed: Boolean
17040
16730
 
17041
- """
17042
- True if marketplace accrues shipping revenue, false if sellers accrue shipping revenue
17043
- """
17044
- marketplaceAccruesShippingRevenue: Boolean @deprecated(reason: "Replaced by fulfillmentModel. This will be removed on November 25, 2024.")
17045
-
17046
16731
  """True if seller products require approval"""
17047
16732
  requireProductApproval: Boolean
17048
16733
 
@@ -17053,7 +16738,7 @@ input MarketplaceConfigurationInput {
17053
16738
  payoutAutomationStrategy: MarketplaceConfigurationPayoutAutomationStrategyEnum = null
17054
16739
 
17055
16740
  """Update revenue accrual strategy"""
17056
- revenueAccrualStrategy: RevenueAccrualStrategyEnum = null
16741
+ revenueAccrualStrategy: RevenueAccrualStrategyEnum = null @deprecated(reason: "This will be removed on February 20, 2025.")
17057
16742
 
17058
16743
  """Update available shipping strategy"""
17059
16744
  availableShippingStrategy: AvailableShippingStrategyEnum = null
@@ -17088,7 +16773,7 @@ input MarketplaceConfigurationInput {
17088
16773
  enableStockAllocationForQuotes: Boolean
17089
16774
 
17090
16775
  """True if offer orders trigger stock allocation."""
17091
- enableStockAllocationForOffers: Boolean
16776
+ enableStockAllocationForOffers: Boolean @deprecated(reason: "This will be removed on February 20, 2025.")
17092
16777
 
17093
16778
  """True if draft orders trigger stock allocation."""
17094
16779
  enableStockAllocationForDrafts: Boolean
@@ -18468,6 +18153,7 @@ enum ShopErrorCode {
18468
18153
  REQUIRED
18469
18154
  UNIQUE
18470
18155
  NOT_ALLOWED
18156
+ STALE_DATA
18471
18157
  }
18472
18158
 
18473
18159
  input ContentPageDataCreateInput {
@@ -18519,6 +18205,9 @@ type ContentSave {
18519
18205
  }
18520
18206
 
18521
18207
  input ContentSaveInput {
18208
+ """Revision of the previous content version"""
18209
+ previousRevision: Int!
18210
+
18522
18211
  """Editor data"""
18523
18212
  data: JSONString!
18524
18213
  }
@@ -18536,6 +18225,9 @@ type ContentPublish {
18536
18225
  }
18537
18226
 
18538
18227
  input ContentPublishInput {
18228
+ """Revision of the previous content version"""
18229
+ previousRevision: Int!
18230
+
18539
18231
  """Editor data"""
18540
18232
  data: JSONString!
18541
18233
 
@@ -18642,9 +18334,6 @@ input ShopSettingsInput {
18642
18334
  """Include taxes in prices."""
18643
18335
  includeTaxesInPrices: Boolean
18644
18336
 
18645
- """Display prices with tax in store."""
18646
- displayGrossPrices: Boolean @deprecated(reason: "This will be removed on November 22, 2024.")
18647
-
18648
18337
  """Charge taxes on shipping."""
18649
18338
  chargeTaxesOnShipping: Boolean
18650
18339
 
@@ -20184,7 +19873,7 @@ input ProductTypeInput {
20184
19873
  slug: String
20185
19874
 
20186
19875
  """
20187
- Allow variant price to be overridden for products in this product type in the checkout or in quote, draft and offer orders.
19876
+ Allow variant price to be overridden for products in this product type in the checkout or in quote and draft orders.
20188
19877
  """
20189
19878
  isPriceOverrideAllowed: Boolean
20190
19879
 
@@ -21208,7 +20897,6 @@ input OrderLineCreateInput {
21208
20897
  enum DraftOrderInitialStatus {
21209
20898
  DRAFT
21210
20899
  QUOTE
21211
- OFFER
21212
20900
  }
21213
20901
 
21214
20902
  """Creates a new Nautical draft order."""
@@ -21410,7 +21098,7 @@ type NauticalDraftOrderLineDelete {
21410
21098
  orderErrors: [OrderError!]!
21411
21099
  }
21412
21100
 
21413
- """Updates an order line of a draft, quote or offer order."""
21101
+ """Updates an order line of a draft or quote order."""
21414
21102
  type DraftOrderLineUpdate {
21415
21103
  """A related draft or quote order."""
21416
21104
  order: Order
@@ -21496,11 +21184,9 @@ input NauticalDraftOrderInput {
21496
21184
  poNumbers: [String!]
21497
21185
  }
21498
21186
 
21499
- """
21500
- Overrides unit net price of an order line of a draft, quote, or offer order.
21501
- """
21187
+ """Overrides unit net price of an order line of a draft or quote order."""
21502
21188
  type DraftOrderLinePriceOverride {
21503
- """A related draft, quote, or offer order."""
21189
+ """A related draft, or quote order."""
21504
21190
  order: Order
21505
21191
  orderErrors: [OrderError!]!
21506
21192
  orderLine: OrderLine
@@ -21517,10 +21203,10 @@ input OrderLinePriceOverrideInput {
21517
21203
  }
21518
21204
 
21519
21205
  """
21520
- Overrides unit net price of a marketplace order line of a draft, quote, or offer order.
21206
+ Overrides unit net price of a marketplace order line of a draft, or quote order.
21521
21207
  """
21522
21208
  type NauticalDraftOrderLinePriceOverride {
21523
- """A related draft, quote, or offer marketplace order."""
21209
+ """A related draft, or quote marketplace order."""
21524
21210
  nauticalOrder: NauticalOrder
21525
21211
  orderErrors: [OrderError!]!
21526
21212
  nauticalOrderLine: NauticalOrderLine
@@ -22084,18 +21770,6 @@ type OrderFeeDelete {
22084
21770
  orderErrors: [OrderError!]!
22085
21771
  }
22086
21772
 
22087
- """
22088
- Converts a seller or marketplace offer order to a nautical quote order.
22089
- """
22090
- type OrderOfferConvertToNauticalQuoteOrder {
22091
- """The converted Nautical Quote order (available only for MPO)."""
22092
- nauticalOrder: NauticalOrder
22093
-
22094
- """The converted Quote order"""
22095
- order: Order
22096
- orderErrors: [OrderError!]!
22097
- }
22098
-
22099
21773
  """
22100
21774
  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
22101
21775
  """
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@nautical-commerce/graphql-schema",
3
- "version": "v1.61.0",
3
+ "version": "v1.62.0-1-g7df7dc076",
4
4
  "description": "## Getting Started",
5
5
  "main": "./nautical/schema.graphql",
6
6
  "scripts": {