@nautical-commerce/graphql-schema 1.56.1-24-gfd84c81af → 1.56.1-26-g15fe94756
Sign up to get free protection for your applications and to get access to all the features.
- package/nautical/schema.graphql +15 -1
- package/package.json +1 -1
package/nautical/schema.graphql
CHANGED
@@ -5933,6 +5933,9 @@ type Fulfillment implements Node & ObjectWithMetadata {
|
|
5933
5933
|
|
5934
5934
|
"""Total price across all quantities across all lines."""
|
5935
5935
|
totalLinesMoney: Money!
|
5936
|
+
|
5937
|
+
"""List of custom fields assigned to this fulfillment."""
|
5938
|
+
customFields: [SelectedAttribute!]!
|
5936
5939
|
}
|
5937
5940
|
|
5938
5941
|
"""An enumeration."""
|
@@ -9426,6 +9429,9 @@ type StorefrontTheme implements Node {
|
|
9426
9429
|
|
9427
9430
|
"""Primary color in hex."""
|
9428
9431
|
primaryColor: String
|
9432
|
+
|
9433
|
+
"""Background color in hex."""
|
9434
|
+
backgroundColor: String
|
9429
9435
|
logo: Image
|
9430
9436
|
faviconImage: Image
|
9431
9437
|
|
@@ -13647,6 +13653,7 @@ enum CustomFieldTemplateEnum {
|
|
13647
13653
|
VARIANT
|
13648
13654
|
CATEGORY
|
13649
13655
|
COLLECTION
|
13656
|
+
FULFILLMENT
|
13650
13657
|
}
|
13651
13658
|
|
13652
13659
|
"""Represents ongoing installation of app."""
|
@@ -13897,7 +13904,7 @@ type Mutation {
|
|
13897
13904
|
description: String
|
13898
13905
|
|
13899
13906
|
"""
|
13900
|
-
Used when uploading a new document or file in a multipart request that does not exist in the system already. Supported file types:
|
13907
|
+
Used when uploading a new document or file in a multipart request that does not exist in the system already. Supported file types: text/rtf, image/webp, application/dwg, application/x-rar, application/x-rar-compressed, pplication/vnd.rar, application/vnd.ms-powerpoint, drawing/x-dwf, application/x-dxf, application/gzipped, image/jpeg, application/acad, image/heif-sequence, application/x-zip-compressed, image/tiff, application/x-acad, application/excel, text/svg, image/x-dwg, text/pdf, text/x-pdf, image/gif, application/x-dwg, image/x-ms-bmp, image/x-eps, image/x-bmp, image/eps, application/gzip-compressed, image/svg+xml, text/csv, application/vnd.openxmlformats-officedocument.presentationml.presentation, image/x-tiff, application/x-jpg, image/x-tif, application/tif, application/x-csv, text/x-csv, image/dxf, image/bmp, image/heic-sequence, drawing/dwg, application/x-tif, application/x-tiff, application/vnd.oasis.opendocument.presentation, application/tiff, image/tif, application/x-eps, text/svg-xml, application/x-autocad, application/x-pdf, application/jpg, text/comma-separated-values, application/vnd.ms-excel, image/png, application/vnd.openxmlformats-officedocument.spreadsheetml.sheet, application/msword, application/csv, image/vnd.dwg, application/vnd.ms-word, text/plain, application/gzip, application/postscript, application/vnd.openxmlformats-officedocument.wordprocessingml.document, application/eps, image/jpg, image/heic, application/vnd.pdf, application/rtf, application/zip, application/dxf, application/x-gzip, text/x-comma-separated-values, application/x-tar, image/x-dxf, image/svg, application/svg+xml, image/heif, application/vnd.oasis.opendocument.text, application/acrobat, application/x-rtf, application/vnd.oasis.opendocument.spreadsheet, application/vnd.openxmlformats-officedocument.presentationml.slideshow, application/pdf, drawing/x-dwg.
|
13901
13908
|
"""
|
13902
13909
|
file: Upload!
|
13903
13910
|
|
@@ -19705,6 +19712,9 @@ input StorefrontThemeInput {
|
|
19705
19712
|
"""Primary color in hex."""
|
19706
19713
|
primaryColor: String
|
19707
19714
|
|
19715
|
+
"""Background color in hex."""
|
19716
|
+
backgroundColor: String
|
19717
|
+
|
19708
19718
|
"""Logo file."""
|
19709
19719
|
logo: Upload
|
19710
19720
|
|
@@ -21999,6 +22009,7 @@ type OrderError {
|
|
21999
22009
|
|
22000
22010
|
"""An enumeration."""
|
22001
22011
|
enum OrderErrorCode {
|
22012
|
+
ATTRIBUTE_CANNOT_BE_ASSIGNED
|
22002
22013
|
BILLING_ADDRESS_NOT_SET
|
22003
22014
|
CANNOT_ADD_FEE
|
22004
22015
|
CANNOT_CANCEL_FULFILLMENT
|
@@ -22600,6 +22611,9 @@ input OrderFulfillInput {
|
|
22600
22611
|
allow Marketplace Admin users to fulfill order lines with null variants.
|
22601
22612
|
"""
|
22602
22613
|
allowNullVariants: Boolean
|
22614
|
+
|
22615
|
+
"""List of custom fields."""
|
22616
|
+
customFields: [AttributeValueInput!]
|
22603
22617
|
}
|
22604
22618
|
|
22605
22619
|
input OrderFulfillLineInput {
|