@nautical-commerce/graphql-schema 1.56.0 → 1.56.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 +2 -43
- package/package.json +1 -1
package/nautical/schema.graphql
CHANGED
@@ -9414,22 +9414,11 @@ enum ConfigurationTypeFieldEnum {
|
|
9414
9414
|
OUTPUT
|
9415
9415
|
}
|
9416
9416
|
|
9417
|
-
"""Represents a checkout page's
|
9417
|
+
"""Represents a checkout page's 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
|
-
|
9433
9422
|
"""URL of the confirmation page."""
|
9434
9423
|
confirmationUrl: String!
|
9435
9424
|
}
|
@@ -13912,7 +13901,7 @@ type Mutation {
|
|
13912
13901
|
description: String
|
13913
13902
|
|
13914
13903
|
"""
|
13915
|
-
Used when uploading a new document or file in a multipart request that does not exist in the system already. Supported file types:
|
13904
|
+
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-dwf, application/gzipped, image/tif, application/x-jpg, application/dwg, application/vnd.openxmlformats-officedocument.wordprocessingml.document, application/tiff, application/gzip, text/rtf, image/x-bmp, image/tiff, application/vnd.ms-excel, application/vnd.pdf, application/svg+xml, image/svg+xml, application/x-rar, application/x-rar-compressed, drawing/x-dwg, image/x-eps, text/csv, application/vnd.ms-powerpoint, application/postscript, application/vnd.openxmlformats-officedocument.presentationml.presentation, application/x-pdf, image/jpeg, text/svg, image/bmp, application/acad, application/x-dxf, application/gzip-compressed, application/dxf, image/heif-sequence, image/jpg, application/x-tar, image/heif, image/x-tif, image/heic, text/plain, image/eps, application/zip, application/x-tiff, image/heic-sequence, drawing/dwg, application/x-csv, application/x-dwg, application/vnd.oasis.opendocument.spreadsheet, image/svg, image/png, image/x-dwg, application/csv, text/pdf, application/x-autocad, pplication/vnd.rar, application/jpg, application/excel, application/acrobat, application/vnd.openxmlformats-officedocument.spreadsheetml.sheet, image/x-dxf, text/x-pdf, image/vnd.dwg, application/pdf, application/x-rtf, image/x-ms-bmp, image/gif, application/x-eps, application/vnd.oasis.opendocument.text, text/x-csv, text/comma-separated-values, image/x-tiff, application/eps, text/svg-xml, application/x-gzip, application/vnd.oasis.opendocument.presentation, application/tif, application/vnd.openxmlformats-officedocument.presentationml.slideshow, image/dxf, application/rtf, application/x-zip-compressed, text/x-comma-separated-values, application/msword, application/vnd.ms-word, image/webp, application/x-tif, application/x-acad.
|
13916
13905
|
"""
|
13917
13906
|
file: Upload!
|
13918
13907
|
|
@@ -19693,21 +19682,6 @@ type CheckoutThemeCreate {
|
|
19693
19682
|
}
|
19694
19683
|
|
19695
19684
|
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
|
-
|
19711
19685
|
"""URL of the confirmation page."""
|
19712
19686
|
confirmationUrl: String!
|
19713
19687
|
}
|
@@ -19720,21 +19694,6 @@ type CheckoutThemeUpdate {
|
|
19720
19694
|
}
|
19721
19695
|
|
19722
19696
|
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
|
-
|
19738
19697
|
"""URL of the confirmation page."""
|
19739
19698
|
confirmationUrl: String
|
19740
19699
|
}
|