@nautical-commerce/graphql-schema 1.71.0 → 1.72.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.
- package/nautical/schema.graphql +46 -1
- package/package.json +1 -1
package/nautical/schema.graphql
CHANGED
@@ -3142,6 +3142,9 @@ type Product implements Node & ObjectWithMetadata {
|
|
3142
3142
|
|
3143
3143
|
"""Product dimensions."""
|
3144
3144
|
dimensions: ProductDimensions
|
3145
|
+
|
3146
|
+
"""Whether this product allows creating variants."""
|
3147
|
+
hasVariantOptions: Boolean!
|
3145
3148
|
}
|
3146
3149
|
|
3147
3150
|
"""
|
@@ -3359,6 +3362,25 @@ type Tenant implements Node {
|
|
3359
3362
|
id: ID!
|
3360
3363
|
name: String!
|
3361
3364
|
isActive: Boolean!
|
3365
|
+
onboardingStepsCompleted: [TenantOnboardingStep!]!
|
3366
|
+
}
|
3367
|
+
|
3368
|
+
"""The different possible onboarding steps for new tenants."""
|
3369
|
+
enum TenantOnboardingStep {
|
3370
|
+
BUSINESS_DETAILS
|
3371
|
+
SHIPPING_FULFILLMENT
|
3372
|
+
SHIPPING_ZONE
|
3373
|
+
WAREHOUSE
|
3374
|
+
STOREFRONT_BRANDING
|
3375
|
+
PRODUCT
|
3376
|
+
CUSTOM_DOMAIN
|
3377
|
+
TEST_ORDER
|
3378
|
+
FULFILL_ORDER
|
3379
|
+
TEST_PAYOUT
|
3380
|
+
PAYMENT_PROVIDER
|
3381
|
+
PRODUCT_CATEGORIES
|
3382
|
+
PRODUCT_TEMPLATE
|
3383
|
+
SELLER_ONBOARDING
|
3362
3384
|
}
|
3363
3385
|
|
3364
3386
|
type SellerEventTypeCountableConnection {
|
@@ -13117,6 +13139,12 @@ type Mutation {
|
|
13117
13139
|
input: TenantUpdateInput!
|
13118
13140
|
): TenantUpdate
|
13119
13141
|
|
13142
|
+
"""Tenant onboarding update mutation."""
|
13143
|
+
tenantOnboardingUpdate(
|
13144
|
+
"""Field for updating onboarding steps"""
|
13145
|
+
input: TenantOnboardingUpdateInput!
|
13146
|
+
): TenantOnboardingUpdate
|
13147
|
+
|
13120
13148
|
"""
|
13121
13149
|
Add or attach a document to any allowed entity (note: consider to use DocumentAttach for 'attach' action). Must only receive one of either file or document_id in input.
|
13122
13150
|
"""
|
@@ -13125,7 +13153,7 @@ type Mutation {
|
|
13125
13153
|
description: String
|
13126
13154
|
|
13127
13155
|
"""
|
13128
|
-
Used when uploading a new document or file in a multipart request that does not exist in the system already. Supported file types: application/eps, application/x-tar,
|
13156
|
+
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.pdf, text/x-comma-separated-values, application/eps, application/x-tar, text/csv, application/vnd.openxmlformats-officedocument.spreadsheetml.sheet, application/x-dxf, application/gzipped, image/heic, drawing/dwg, image/vnd.dwg, image/svg, application/tiff, image/jpeg, application/vnd.ms-word, application/x-csv, image/heif, application/acrobat, text/comma-separated-values, text/rtf, application/zip, application/x-pdf, image/heic-sequence, application/x-tiff, application/vnd.openxmlformats-officedocument.presentationml.slideshow, text/svg-xml, application/vnd.oasis.opendocument.presentation, application/x-rar, image/x-bmp, pplication/vnd.rar, application/pdf, application/x-dwg, drawing/x-dwf, application/x-zip-compressed, application/x-acad, application/rtf, application/x-tif, application/svg+xml, image/bmp, text/pdf, application/vnd.oasis.opendocument.text, image/png, image/x-dwg, application/gzip, application/jpg, application/vnd.ms-powerpoint, drawing/x-dwg, text/x-csv, application/x-jpg, application/msword, application/csv, image/eps, application/x-rar-compressed, image/jpg, application/dwg, image/heif-sequence, text/x-pdf, application/x-autocad, application/excel, image/tiff, image/gif, application/vnd.ms-excel, text/svg, application/dxf, application/acad, application/x-rtf, image/x-tiff, application/gzip-compressed, image/x-tif, application/vnd.openxmlformats-officedocument.wordprocessingml.document, image/x-dxf, image/svg+xml, application/vnd.oasis.opendocument.spreadsheet, image/x-ms-bmp, image/dxf, application/postscript, application/vnd.openxmlformats-officedocument.presentationml.presentation, application/x-eps, image/webp, image/x-eps, application/tif, text/plain, image/tif, application/x-gzip.
|
13129
13157
|
"""
|
13130
13158
|
file: Upload!
|
13131
13159
|
|
@@ -16369,6 +16397,17 @@ input TenantUpdateInput {
|
|
16369
16397
|
slug: String
|
16370
16398
|
}
|
16371
16399
|
|
16400
|
+
"""Tenant onboarding update mutation."""
|
16401
|
+
type TenantOnboardingUpdate {
|
16402
|
+
tenant: Tenant
|
16403
|
+
tenantErrors: [TenantError!]!
|
16404
|
+
}
|
16405
|
+
|
16406
|
+
input TenantOnboardingUpdateInput {
|
16407
|
+
"""List of onboarding steps completed"""
|
16408
|
+
onboardingStepsCompleted: [TenantOnboardingStep!]
|
16409
|
+
}
|
16410
|
+
|
16372
16411
|
"""
|
16373
16412
|
Add or attach a document to any allowed entity (note: consider to use DocumentAttach for 'attach' action). Must only receive one of either file or document_id in input.
|
16374
16413
|
"""
|
@@ -19793,6 +19832,9 @@ input ProductVariantCreateInput {
|
|
19793
19832
|
The external ID from a foreign system if a product variant originated from that system, used in combination with provided externalSource. If submitting externalId, you must also provide an externalSource argument. If these two are provided, the productVariantCreate mutation will attempt to perform an upsert instead of a creation.
|
19794
19833
|
"""
|
19795
19834
|
externalId: String
|
19835
|
+
|
19836
|
+
"""Initial image to associate with the variant."""
|
19837
|
+
image: Upload
|
19796
19838
|
}
|
19797
19839
|
|
19798
19840
|
"""Deletes a product variant."""
|
@@ -22685,6 +22727,9 @@ input AttributeValueCreateInput {
|
|
22685
22727
|
"""Name of a value displayed in the interface."""
|
22686
22728
|
name: String!
|
22687
22729
|
|
22730
|
+
"""Internal representation of a value (unique per attribute)."""
|
22731
|
+
slug: String
|
22732
|
+
|
22688
22733
|
"""Supporting information like color, links, etc."""
|
22689
22734
|
value: String
|
22690
22735
|
|