@nautical-commerce/graphql-schema 1.59.0-26-g80f4daa98 → 1.59.0-28-g69563a29e

Sign up to get free protection for your applications and to get access to all the features.
@@ -323,6 +323,9 @@ type Query {
323
323
  """Returns analytics ID (e.g. Google Tag ID)."""
324
324
  analyticsId: String
325
325
 
326
+ """If set, the custom storefront domain"""
327
+ customStorefrontDomain: CustomDomain
328
+
326
329
  """Look up a shipping zone by ID."""
327
330
  shippingZone(
328
331
  """ID of the shipping zone."""
@@ -9159,6 +9162,27 @@ type SellerOnboardingSettings implements Node {
9159
9162
  isProductImportAllowed: Boolean
9160
9163
  }
9161
9164
 
9165
+ type CustomDomain implements Node {
9166
+ """The ID of the object"""
9167
+ id: ID!
9168
+ domain: String!
9169
+ status: DomainStatusEnum!
9170
+ errorDetails: String!
9171
+ sslCertName: String!
9172
+ }
9173
+
9174
+ """An enumeration."""
9175
+ enum DomainStatusEnum {
9176
+ UNVERIFIED
9177
+ DNS_VERIFIED
9178
+ PROVISIONING
9179
+ PROVISIONED
9180
+ ERROR
9181
+ QUEUED_FOR_DELETION
9182
+ DELETING
9183
+ DELETED
9184
+ }
9185
+
9162
9186
  input ShippingZoneFilterInput {
9163
9187
  seller: ID
9164
9188
  search: String
@@ -13445,7 +13469,7 @@ type Mutation {
13445
13469
  description: String
13446
13470
 
13447
13471
  """
13448
- Used when uploading a new document or file in a multipart request that does not exist in the system already. Supported file types: application/x-dwg, text/comma-separated-values, image/x-tiff, image/dxf, application/excel, text/pdf, text/rtf, image/x-ms-bmp, application/vnd.oasis.opendocument.spreadsheet, application/tif, image/svg, image/x-tif, application/vnd.openxmlformats-officedocument.presentationml.slideshow, image/vnd.dwg, application/x-eps, application/zip, application/x-zip-compressed, application/msword, image/heif-sequence, application/tiff, application/jpg, application/x-rtf, text/plain, application/dxf, application/x-rar-compressed, text/csv, application/csv, image/webp, application/pdf, text/x-pdf, text/svg, application/eps, text/x-csv, pplication/vnd.rar, image/x-eps, application/gzip-compressed, application/x-autocad, drawing/x-dwf, drawing/x-dwg, application/vnd.ms-word, image/jpg, image/tiff, application/acad, text/svg-xml, image/bmp, image/x-bmp, application/x-csv, image/heif, application/x-rar, application/gzipped, image/heic-sequence, application/x-dxf, application/acrobat, application/vnd.openxmlformats-officedocument.presentationml.presentation, image/png, image/tif, image/svg+xml, image/x-dwg, application/dwg, application/vnd.openxmlformats-officedocument.spreadsheetml.sheet, text/x-comma-separated-values, application/rtf, image/heic, image/x-dxf, application/vnd.pdf, image/eps, application/x-tar, application/x-tif, application/vnd.ms-powerpoint, application/gzip, application/x-tiff, application/x-gzip, application/svg+xml, application/vnd.ms-excel, image/jpeg, application/x-pdf, application/vnd.openxmlformats-officedocument.wordprocessingml.document, application/postscript, application/vnd.oasis.opendocument.presentation, application/x-jpg, drawing/dwg, image/gif, application/vnd.oasis.opendocument.text, application/x-acad.
13472
+ Used when uploading a new document or file in a multipart request that does not exist in the system already. Supported file types: image/heic, application/tif, application/vnd.openxmlformats-officedocument.presentationml.slideshow, application/vnd.ms-powerpoint, application/vnd.pdf, pplication/vnd.rar, image/x-tif, application/x-rtf, application/tiff, image/x-eps, image/svg, application/x-eps, application/vnd.ms-word, text/csv, application/vnd.oasis.opendocument.presentation, application/jpg, application/gzipped, image/bmp, image/x-tiff, application/acad, image/jpg, application/rtf, drawing/dwg, application/excel, image/heif-sequence, text/pdf, application/x-tiff, application/dxf, application/x-csv, image/vnd.dwg, application/x-dwg, application/vnd.oasis.opendocument.text, application/postscript, image/png, application/gzip-compressed, application/x-acad, application/x-rar-compressed, application/dwg, image/tiff, application/vnd.openxmlformats-officedocument.spreadsheetml.sheet, application/eps, image/x-dwg, application/pdf, application/x-dxf, application/x-rar, image/x-ms-bmp, image/svg+xml, application/msword, application/zip, application/vnd.ms-excel, image/x-dxf, application/csv, text/comma-separated-values, application/gzip, image/jpeg, application/svg+xml, image/eps, application/vnd.openxmlformats-officedocument.presentationml.presentation, application/acrobat, image/dxf, drawing/x-dwf, application/vnd.openxmlformats-officedocument.wordprocessingml.document, application/vnd.oasis.opendocument.spreadsheet, text/x-csv, application/x-gzip, image/gif, image/heic-sequence, text/x-comma-separated-values, text/x-pdf, image/webp, application/x-zip-compressed, application/x-pdf, drawing/x-dwg, text/svg, application/x-jpg, application/x-tif, application/x-tar, text/plain, text/rtf, image/x-bmp, image/heif, application/x-autocad, image/tif, text/svg-xml.
13449
13473
  """
13450
13474
  file: Upload!
13451
13475
 
@@ -14171,6 +14195,15 @@ type Mutation {
14171
14195
  input: CheckoutThemeInput!
14172
14196
  ): CheckoutThemeUpdate
14173
14197
 
14198
+ """Creates a custom domain"""
14199
+ customDomainCreate(input: CustomDomainCreateInput!): CustomDomainCreate
14200
+
14201
+ """Deletes a custom domain"""
14202
+ customDomainDelete(
14203
+ """ID of the domain to delete"""
14204
+ id: ID!
14205
+ ): CustomDomainDelete
14206
+
14174
14207
  """Create a new storefront theme."""
14175
14208
  storefrontThemeCreate(
14176
14209
  """Fields required to create a new storefront theme."""
@@ -18663,6 +18696,25 @@ input CheckoutThemeInput {
18663
18696
  confirmationUrl: String
18664
18697
  }
18665
18698
 
18699
+ """Creates a custom domain"""
18700
+ type CustomDomainCreate {
18701
+ domain: CustomDomain
18702
+ shopErrors: [ShopError!]!
18703
+ }
18704
+
18705
+ input CustomDomainCreateInput {
18706
+ """
18707
+ The domain to connect to the storefront. Must not start with https:// and must have no trailing slash.
18708
+ """
18709
+ domain: String!
18710
+ }
18711
+
18712
+ """Deletes a custom domain"""
18713
+ type CustomDomainDelete {
18714
+ shopErrors: [ShopError!]!
18715
+ domain: CustomDomain
18716
+ }
18717
+
18666
18718
  """Create a new storefront theme."""
18667
18719
  type StorefrontThemeCreate {
18668
18720
  """Updated shop."""
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@nautical-commerce/graphql-schema",
3
- "version": "v1.59.0-26-g80f4daa98",
3
+ "version": "v1.59.0-28-g69563a29e",
4
4
  "description": "## Getting Started",
5
5
  "main": "./nautical/schema.graphql",
6
6
  "scripts": {