@nautical-commerce/graphql-schema 1.56.0-2-g026050db4 → 1.56.0
Sign up to get free protection for your applications and to get access to all the features.
- package/nautical/schema.graphql +43 -2
- package/package.json +1 -1
package/nautical/schema.graphql
CHANGED
@@ -9414,11 +9414,22 @@ enum ConfigurationTypeFieldEnum {
|
|
9414
9414
|
OUTPUT
|
9415
9415
|
}
|
9416
9416
|
|
9417
|
-
"""Represents a checkout page's options."""
|
9417
|
+
"""Represents a checkout page's theme options."""
|
9418
9418
|
type CheckoutTheme implements Node {
|
9419
9419
|
"""The ID of the object"""
|
9420
9420
|
id: ID!
|
9421
9421
|
|
9422
|
+
"""Primary color in hex."""
|
9423
|
+
primaryColor: String
|
9424
|
+
|
9425
|
+
"""Secondary color in hex."""
|
9426
|
+
secondaryColor: String
|
9427
|
+
logo: Image
|
9428
|
+
|
9429
|
+
"""URL of favicon"""
|
9430
|
+
faviconUrl: String
|
9431
|
+
faviconImage: Image
|
9432
|
+
|
9422
9433
|
"""URL of the confirmation page."""
|
9423
9434
|
confirmationUrl: String!
|
9424
9435
|
}
|
@@ -13901,7 +13912,7 @@ type Mutation {
|
|
13901
13912
|
description: String
|
13902
13913
|
|
13903
13914
|
"""
|
13904
|
-
Used when uploading a new document or file in a multipart request that does not exist in the system already. Supported file types: image/
|
13915
|
+
Used when uploading a new document or file in a multipart request that does not exist in the system already. Supported file types: image/svg+xml, application/x-rtf, application/svg+xml, image/x-tif, application/acad, application/x-rar-compressed, application/zip, image/tif, application/x-eps, drawing/dwg, application/excel, application/rtf, image/jpg, application/msword, image/webp, image/heic, application/vnd.openxmlformats-officedocument.presentationml.presentation, application/vnd.oasis.opendocument.text, text/x-comma-separated-values, application/vnd.ms-excel, image/gif, image/svg, application/x-csv, text/svg, text/pdf, pplication/vnd.rar, application/vnd.openxmlformats-officedocument.spreadsheetml.sheet, image/dxf, image/jpeg, image/x-eps, image/bmp, image/heif-sequence, application/vnd.ms-powerpoint, application/x-gzip, application/x-autocad, image/heic-sequence, text/plain, application/x-zip-compressed, application/acrobat, image/x-bmp, application/x-dwg, application/x-tiff, application/vnd.ms-word, application/vnd.openxmlformats-officedocument.wordprocessingml.document, image/eps, drawing/x-dwg, application/x-tar, text/x-pdf, application/csv, application/gzip-compressed, application/x-acad, application/tiff, application/eps, text/rtf, application/dxf, application/postscript, application/x-tif, image/x-dwg, image/png, image/heif, image/x-dxf, application/tif, application/vnd.openxmlformats-officedocument.presentationml.slideshow, image/x-ms-bmp, application/vnd.oasis.opendocument.spreadsheet, image/tiff, application/gzipped, application/dwg, text/comma-separated-values, text/x-csv, application/gzip, image/vnd.dwg, application/x-dxf, application/pdf, application/vnd.pdf, application/vnd.oasis.opendocument.presentation, application/x-pdf, drawing/x-dwf, application/jpg, application/x-jpg, application/x-rar, text/svg-xml, text/csv, image/x-tiff.
|
13905
13916
|
"""
|
13906
13917
|
file: Upload!
|
13907
13918
|
|
@@ -19682,6 +19693,21 @@ type CheckoutThemeCreate {
|
|
19682
19693
|
}
|
19683
19694
|
|
19684
19695
|
input CheckoutThemeCreateInput {
|
19696
|
+
"""Primary color in hex."""
|
19697
|
+
primaryColor: String
|
19698
|
+
|
19699
|
+
"""Secondary color in hex."""
|
19700
|
+
secondaryColor: String
|
19701
|
+
|
19702
|
+
"""Logo file."""
|
19703
|
+
logo: Upload
|
19704
|
+
|
19705
|
+
"""Favicon file."""
|
19706
|
+
faviconImage: Upload
|
19707
|
+
|
19708
|
+
"""URL of the favicon."""
|
19709
|
+
faviconUrl: String
|
19710
|
+
|
19685
19711
|
"""URL of the confirmation page."""
|
19686
19712
|
confirmationUrl: String!
|
19687
19713
|
}
|
@@ -19694,6 +19720,21 @@ type CheckoutThemeUpdate {
|
|
19694
19720
|
}
|
19695
19721
|
|
19696
19722
|
input CheckoutThemeInput {
|
19723
|
+
"""Primary color in hex."""
|
19724
|
+
primaryColor: String
|
19725
|
+
|
19726
|
+
"""Secondary color in hex."""
|
19727
|
+
secondaryColor: String
|
19728
|
+
|
19729
|
+
"""Logo file."""
|
19730
|
+
logo: Upload
|
19731
|
+
|
19732
|
+
"""Favicon file."""
|
19733
|
+
faviconImage: Upload
|
19734
|
+
|
19735
|
+
"""URL of the favicon."""
|
19736
|
+
faviconUrl: String
|
19737
|
+
|
19697
19738
|
"""URL of the confirmation page."""
|
19698
19739
|
confirmationUrl: String
|
19699
19740
|
}
|