@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.
@@ -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-dwg, application/eps, application/x-csv, image/x-tif, application/x-eps, application/svg+xml, application/x-rar-compressed, application/gzip-compressed, application/csv, application/x-zip-compressed, text/rtf, text/x-pdf, application/tiff, image/heic, image/tiff, drawing/x-dwf, application/x-rtf, image/svg+xml, application/zip, application/pdf, image/x-ms-bmp, application/vnd.pdf, application/vnd.ms-powerpoint, image/gif, application/excel, text/plain, application/jpg, image/bmp, application/acrobat, application/vnd.oasis.opendocument.presentation, image/jpg, application/gzip, text/comma-separated-values, image/eps, text/csv, image/x-eps, application/vnd.openxmlformats-officedocument.wordprocessingml.document, drawing/dwg, application/x-tiff, application/x-pdf, application/rtf, application/vnd.ms-word, image/x-bmp, image/png, image/x-dwg, text/x-comma-separated-values, application/dwg, image/tif, application/x-jpg, image/vnd.dwg, application/vnd.openxmlformats-officedocument.presentationml.presentation, application/x-dwg, text/svg, application/vnd.openxmlformats-officedocument.spreadsheetml.sheet, application/vnd.oasis.opendocument.spreadsheet, image/dxf, image/jpeg, application/x-acad, image/heif, application/x-tif, application/vnd.ms-excel, application/dxf, image/heic-sequence, image/svg, text/svg-xml, text/pdf, application/x-gzip, application/postscript, application/acad, application/x-dxf, text/x-csv, application/vnd.oasis.opendocument.text, application/gzipped, application/msword, application/vnd.openxmlformats-officedocument.presentationml.slideshow, image/webp, application/x-rar, image/heif-sequence, image/x-tiff, application/tif, image/x-dxf, application/x-autocad, application/x-tar, pplication/vnd.rar.
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
  """
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@nautical-commerce/graphql-schema",
3
- "version": "v1.71.0-7-g809e4553c",
3
+ "version": "v1.71.0-9-gc494ece9e",
4
4
  "description": "## Getting Started",
5
5
  "main": "./nautical/schema.graphql",
6
6
  "scripts": {