@nautical-commerce/graphql-schema 1.71.0-9-gc494ece9e → 1.71.1
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 +1 -37
- package/package.json +1 -1
package/nautical/schema.graphql
CHANGED
@@ -3359,25 +3359,6 @@ 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
|
3381
3362
|
}
|
3382
3363
|
|
3383
3364
|
type SellerEventTypeCountableConnection {
|
@@ -13136,12 +13117,6 @@ type Mutation {
|
|
13136
13117
|
input: TenantUpdateInput!
|
13137
13118
|
): TenantUpdate
|
13138
13119
|
|
13139
|
-
"""Tenant onboarding update mutation."""
|
13140
|
-
tenantOnboardingUpdate(
|
13141
|
-
"""Field for updating onboarding steps"""
|
13142
|
-
input: TenantOnboardingUpdateInput!
|
13143
|
-
): TenantOnboardingUpdate
|
13144
|
-
|
13145
13120
|
"""
|
13146
13121
|
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.
|
13147
13122
|
"""
|
@@ -13150,7 +13125,7 @@ type Mutation {
|
|
13150
13125
|
description: String
|
13151
13126
|
|
13152
13127
|
"""
|
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,
|
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/rtf, image/svg+xml, application/x-rtf, image/webp, image/svg, application/msword, application/x-acad, application/vnd.openxmlformats-officedocument.wordprocessingml.document, application/vnd.oasis.opendocument.presentation, application/x-tif, text/comma-separated-values, application/x-eps, image/gif, application/x-dwg, drawing/dwg, application/postscript, image/eps, image/jpeg, image/heif-sequence, application/vnd.ms-powerpoint, application/zip, application/eps, text/plain, application/acad, application/vnd.openxmlformats-officedocument.presentationml.slideshow, application/svg+xml, pplication/vnd.rar, application/vnd.openxmlformats-officedocument.presentationml.presentation, image/dxf, application/vnd.oasis.opendocument.spreadsheet, application/vnd.ms-word, application/pdf, application/acrobat, text/svg-xml, application/gzip, application/jpg, application/csv, application/x-dxf, text/pdf, image/x-dwg, image/tif, image/tiff, image/heic-sequence, text/rtf, image/bmp, image/heif, application/vnd.pdf, application/excel, image/vnd.dwg, application/dwg, application/vnd.ms-excel, application/tiff, text/x-csv, application/x-jpg, text/x-comma-separated-values, application/x-zip-compressed, application/x-rar, image/png, application/vnd.oasis.opendocument.text, image/heic, application/x-rar-compressed, image/x-tif, text/csv, application/vnd.openxmlformats-officedocument.spreadsheetml.sheet, drawing/x-dwf, application/x-gzip, application/gzipped, application/x-tiff, application/tif, image/x-eps, drawing/x-dwg, application/gzip-compressed, application/x-csv, application/x-tar, application/dxf, application/x-pdf, image/x-bmp, image/x-ms-bmp, image/jpg, image/x-tiff, text/svg, image/x-dxf, text/x-pdf, application/x-autocad.
|
13154
13129
|
"""
|
13155
13130
|
file: Upload!
|
13156
13131
|
|
@@ -16394,17 +16369,6 @@ input TenantUpdateInput {
|
|
16394
16369
|
slug: String
|
16395
16370
|
}
|
16396
16371
|
|
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
|
-
|
16408
16372
|
"""
|
16409
16373
|
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.
|
16410
16374
|
"""
|