@nautical-commerce/graphql-schema 1.71.0-7-g809e4553c → 1.71.0-9-gc494ece9e
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 +37 -1
- package/package.json +1 -1
package/nautical/schema.graphql
CHANGED
@@ -3359,6 +3359,25 @@ type Tenant implements Node {
|
|
3359
3359
|
id: ID!
|
3360
3360
|
name: String!
|
3361
3361
|
isActive: Boolean!
|
3362
|
+
onboardingStepsCompleted: [TenantOnboardingStep!]!
|
3363
|
+
}
|
3364
|
+
|
3365
|
+
"""The different possible onboarding steps for new tenants."""
|
3366
|
+
enum TenantOnboardingStep {
|
3367
|
+
BUSINESS_DETAILS
|
3368
|
+
SHIPPING_FULFILLMENT
|
3369
|
+
SHIPPING_ZONE
|
3370
|
+
WAREHOUSE
|
3371
|
+
STOREFRONT_BRANDING
|
3372
|
+
PRODUCT
|
3373
|
+
CUSTOM_DOMAIN
|
3374
|
+
TEST_ORDER
|
3375
|
+
FULFILL_ORDER
|
3376
|
+
TEST_PAYOUT
|
3377
|
+
PAYMENT_PROVIDER
|
3378
|
+
PRODUCT_CATEGORIES
|
3379
|
+
PRODUCT_TEMPLATE
|
3380
|
+
SELLER_ONBOARDING
|
3362
3381
|
}
|
3363
3382
|
|
3364
3383
|
type SellerEventTypeCountableConnection {
|
@@ -13117,6 +13136,12 @@ type Mutation {
|
|
13117
13136
|
input: TenantUpdateInput!
|
13118
13137
|
): TenantUpdate
|
13119
13138
|
|
13139
|
+
"""Tenant onboarding update mutation."""
|
13140
|
+
tenantOnboardingUpdate(
|
13141
|
+
"""Field for updating onboarding steps"""
|
13142
|
+
input: TenantOnboardingUpdateInput!
|
13143
|
+
): TenantOnboardingUpdate
|
13144
|
+
|
13120
13145
|
"""
|
13121
13146
|
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
13147
|
"""
|
@@ -13125,7 +13150,7 @@ type Mutation {
|
|
13125
13150
|
description: String
|
13126
13151
|
|
13127
13152
|
"""
|
13128
|
-
Used when uploading a new document or file in a multipart request that does not exist in the system already. Supported file types: drawing/x-
|
13153
|
+
Used when uploading a new document or file in a multipart request that does not exist in the system already. Supported file types: application/svg+xml, drawing/x-dwf, image/heif-sequence, application/msword, application/x-jpg, application/vnd.pdf, application/x-tiff, image/png, application/acrobat, image/x-eps, text/x-pdf, image/x-ms-bmp, application/gzip-compressed, application/vnd.openxmlformats-officedocument.spreadsheetml.sheet, image/heic-sequence, application/gzipped, text/x-csv, text/plain, image/eps, application/x-csv, application/x-autocad, application/jpg, application/x-zip-compressed, application/acad, pplication/vnd.rar, text/svg, application/x-rar, application/gzip, drawing/dwg, application/x-eps, application/tiff, text/svg-xml, image/x-tif, text/x-comma-separated-values, image/gif, application/vnd.openxmlformats-officedocument.presentationml.presentation, application/csv, application/vnd.ms-excel, image/webp, application/tif, application/vnd.openxmlformats-officedocument.wordprocessingml.document, application/pdf, text/csv, application/eps, text/pdf, text/rtf, image/bmp, image/x-tiff, application/vnd.oasis.opendocument.spreadsheet, application/x-dwg, application/vnd.ms-word, application/x-pdf, image/tiff, image/x-dxf, application/vnd.oasis.opendocument.presentation, image/jpg, application/x-rar-compressed, application/vnd.openxmlformats-officedocument.presentationml.slideshow, text/comma-separated-values, image/jpeg, application/dxf, application/x-rtf, image/svg+xml, application/x-tar, application/x-dxf, image/heif, application/excel, application/x-tif, image/svg, image/x-bmp, application/zip, image/tif, image/heic, image/x-dwg, application/vnd.ms-powerpoint, drawing/x-dwg, image/vnd.dwg, application/x-acad, application/x-gzip, application/dwg, application/postscript, application/vnd.oasis.opendocument.text, image/dxf, application/rtf.
|
13129
13154
|
"""
|
13130
13155
|
file: Upload!
|
13131
13156
|
|
@@ -16369,6 +16394,17 @@ input TenantUpdateInput {
|
|
16369
16394
|
slug: String
|
16370
16395
|
}
|
16371
16396
|
|
16397
|
+
"""Tenant onboarding update mutation."""
|
16398
|
+
type TenantOnboardingUpdate {
|
16399
|
+
tenant: Tenant
|
16400
|
+
tenantErrors: [TenantError!]!
|
16401
|
+
}
|
16402
|
+
|
16403
|
+
input TenantOnboardingUpdateInput {
|
16404
|
+
"""List of onboarding steps completed"""
|
16405
|
+
onboardingStepsCompleted: [TenantOnboardingStep!]
|
16406
|
+
}
|
16407
|
+
|
16372
16408
|
"""
|
16373
16409
|
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
16410
|
"""
|