@nautical-commerce/graphql-schema 4.2.2 → 4.3.0

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.
@@ -4278,7 +4278,7 @@ type Content implements Node {
4278
4278
  updatedAt: DateTime!
4279
4279
 
4280
4280
  """Publication date"""
4281
- publicationDate: DateTime
4281
+ publicationDate: Date
4282
4282
 
4283
4283
  """Whether the content is published"""
4284
4284
  isPublished: Boolean!
@@ -4881,14 +4881,14 @@ type CustomDomain implements Node {
4881
4881
  """Domain name"""
4882
4882
  domain: String!
4883
4883
 
4884
- """Domain verification status"""
4885
- status: String!
4886
-
4887
4884
  """Error details if verification failed"""
4888
4885
  errorDetails: String!
4889
4886
 
4890
4887
  """SSL certificate name"""
4891
4888
  sslCertName: String!
4889
+
4890
+ """Domain verification status"""
4891
+ status: DomainStatusEnum!
4892
4892
  }
4893
4893
 
4894
4894
  """Result of custom domain create mutation."""
@@ -5365,7 +5365,7 @@ type DefaultSellerChecklist {
5365
5365
  description: String!
5366
5366
 
5367
5367
  """Trigger for completion"""
5368
- completeOn: String
5368
+ completeOn: SellerChecklistCompletionTriggersEnum
5369
5369
 
5370
5370
  """Whether item is enabled"""
5371
5371
  isEnabled: Boolean!
@@ -5883,7 +5883,7 @@ type Document {
5883
5883
  tenant: Tenant!
5884
5884
 
5885
5885
  """The file field."""
5886
- file: String
5886
+ file: String!
5887
5887
 
5888
5888
  """Name of the document."""
5889
5889
  name: String!
@@ -6910,7 +6910,7 @@ type Fulfillment implements Node & ObjectWithMetadata {
6910
6910
  lines: [FulfillmentLine!]!
6911
6911
 
6912
6912
  """Seller order this fulfillment belongs to"""
6913
- order: Order
6913
+ order: Order!
6914
6914
 
6915
6915
  """Marketplace order this fulfillment belongs to"""
6916
6916
  nauticalOrder: NauticalOrder
@@ -8227,7 +8227,7 @@ type MarketplaceConfiguration {
8227
8227
  timezone: String!
8228
8228
 
8229
8229
  """The tenant that owns this marketplace configuration."""
8230
- tenant: Tenant
8230
+ tenant: Tenant!
8231
8231
 
8232
8232
  """Returns list of default checklists for seller."""
8233
8233
  defaultSellerChecklists: [DefaultSellerChecklist!]!
@@ -12667,7 +12667,7 @@ type OrderLine implements Node & ObjectWithMetadata {
12667
12667
  order: Order!
12668
12668
 
12669
12669
  """The nautical order line for this seller order line."""
12670
- nauticalOrderLine: NauticalOrderLine
12670
+ nauticalOrderLine: NauticalOrderLine!
12671
12671
 
12672
12672
  """A purchased product variant."""
12673
12673
  variant: ProductVariant
@@ -14559,10 +14559,10 @@ type Product implements Node & ObjectWithMetadata {
14559
14559
  status: ProductStatus!
14560
14560
 
14561
14561
  """Product sub-status"""
14562
- subStatus: ProductSubStatusEnum
14562
+ subStatus: ProductSubStatusEnum!
14563
14563
 
14564
14564
  """Source of the product"""
14565
- productSource: ProductSourceEnum
14565
+ productSource: ProductSourceEnum!
14566
14566
 
14567
14567
  """Whether the product is published"""
14568
14568
  isPublished: Boolean!
@@ -21607,7 +21607,7 @@ type Stock implements Node {
21607
21607
  quantityAllocated: Int!
21608
21608
 
21609
21609
  """The warehouse where this stock is located"""
21610
- warehouse: Warehouse
21610
+ warehouse: Warehouse!
21611
21611
 
21612
21612
  """The product variant this stock is for"""
21613
21613
  productVariant: ProductVariant!
@@ -21959,7 +21959,7 @@ type Tenant implements Node {
21959
21959
  trialEndsAt: DateTime
21960
21960
 
21961
21961
  """List of completed onboarding steps"""
21962
- onboardingStepsCompleted: [String!]!
21962
+ onboardingStepsCompleted: [TenantOnboardingStep!]!
21963
21963
 
21964
21964
  """URL of the storefront"""
21965
21965
  storefrontUrl: String!
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@nautical-commerce/graphql-schema",
3
- "version": "4.2.2",
3
+ "version": "4.3.0",
4
4
  "description": "Traide API GraphQL Schema",
5
5
  "main": "./nautical/schema.graphql",
6
6
  "scripts": {