@nautical-commerce/graphql-schema 4.2.1 → 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!
@@ -16080,9 +16080,6 @@ type ProductVariant implements Node & ObjectWithMetadata {
16080
16080
  """Whether to track inventory for this variant"""
16081
16081
  trackInventory: Boolean!
16082
16082
 
16083
- """Currency code for pricing"""
16084
- currency: String!
16085
-
16086
16083
  """Whether to override the default currency"""
16087
16084
  overrideCurrency: Boolean!
16088
16085
 
@@ -16144,6 +16141,11 @@ type ProductVariant implements Node & ObjectWithMetadata {
16144
16141
  """
16145
16142
  timeline(kinds: [TimelineEntryKind!] = null): [TimelineEntry!]!
16146
16143
 
16144
+ """
16145
+ Currency code for pricing. Falls back to the parent product's currency when the variant has none of its own.
16146
+ """
16147
+ currency: String!
16148
+
16147
16149
  """Status of the variant"""
16148
16150
  status: ProductVariantStatus!
16149
16151
 
@@ -21605,7 +21607,7 @@ type Stock implements Node {
21605
21607
  quantityAllocated: Int!
21606
21608
 
21607
21609
  """The warehouse where this stock is located"""
21608
- warehouse: Warehouse
21610
+ warehouse: Warehouse!
21609
21611
 
21610
21612
  """The product variant this stock is for"""
21611
21613
  productVariant: ProductVariant!
@@ -21957,7 +21959,7 @@ type Tenant implements Node {
21957
21959
  trialEndsAt: DateTime
21958
21960
 
21959
21961
  """List of completed onboarding steps"""
21960
- onboardingStepsCompleted: [String!]!
21962
+ onboardingStepsCompleted: [TenantOnboardingStep!]!
21961
21963
 
21962
21964
  """URL of the storefront"""
21963
21965
  storefrontUrl: String!
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@nautical-commerce/graphql-schema",
3
- "version": "4.2.1",
3
+ "version": "4.3.0",
4
4
  "description": "Traide API GraphQL Schema",
5
5
  "main": "./nautical/schema.graphql",
6
6
  "scripts": {