@nautical-commerce/graphql-schema 1.56.1-24-gfd84c81af → 1.56.1-25-g1a7e57318
Sign up to get free protection for your applications and to get access to all the features.
- package/nautical/schema.graphql +9 -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."""
|
@@ -13647,6 +13650,7 @@ enum CustomFieldTemplateEnum {
|
|
13647
13650
|
VARIANT
|
13648
13651
|
CATEGORY
|
13649
13652
|
COLLECTION
|
13653
|
+
FULFILLMENT
|
13650
13654
|
}
|
13651
13655
|
|
13652
13656
|
"""Represents ongoing installation of app."""
|
@@ -13897,7 +13901,7 @@ type Mutation {
|
|
13897
13901
|
description: String
|
13898
13902
|
|
13899
13903
|
"""
|
13900
|
-
Used when uploading a new document or file in a multipart request that does not exist in the system already. Supported file types: image/
|
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/webp, image/tif, application/vnd.openxmlformats-officedocument.presentationml.slideshow, application/zip, application/x-acad, text/plain, application/x-rar-compressed, application/x-eps, application/x-tiff, application/csv, image/eps, drawing/x-dwf, image/heic-sequence, application/x-csv, application/dwg, pplication/vnd.rar, image/gif, application/x-rtf, application/tif, application/jpg, text/csv, image/svg, application/vnd.oasis.opendocument.presentation, image/x-tiff, image/vnd.dwg, text/rtf, image/x-dwg, application/vnd.ms-powerpoint, application/vnd.ms-excel, application/gzipped, application/vnd.pdf, application/postscript, drawing/x-dwg, application/acad, image/x-bmp, image/jpeg, application/vnd.oasis.opendocument.spreadsheet, application/svg+xml, text/x-comma-separated-values, application/dxf, image/bmp, image/heif, application/vnd.ms-word, text/pdf, image/x-eps, application/eps, application/x-dwg, application/msword, image/svg+xml, application/x-rar, text/svg-xml, text/comma-separated-values, application/rtf, text/x-pdf, application/tiff, image/x-tif, application/vnd.oasis.opendocument.text, image/heif-sequence, application/gzip-compressed, application/vnd.openxmlformats-officedocument.presentationml.presentation, application/x-pdf, application/x-tar, application/gzip, drawing/dwg, image/x-dxf, image/dxf, application/excel, image/jpg, application/pdf, image/png, text/svg, application/x-gzip, image/heic, application/vnd.openxmlformats-officedocument.spreadsheetml.sheet, application/x-jpg, application/x-zip-compressed, image/x-ms-bmp, application/x-autocad, image/tiff, application/acrobat, text/x-csv, application/x-tif, application/vnd.openxmlformats-officedocument.wordprocessingml.document, application/x-dxf.
|
13901
13905
|
"""
|
13902
13906
|
file: Upload!
|
13903
13907
|
|
@@ -21999,6 +22003,7 @@ type OrderError {
|
|
21999
22003
|
|
22000
22004
|
"""An enumeration."""
|
22001
22005
|
enum OrderErrorCode {
|
22006
|
+
ATTRIBUTE_CANNOT_BE_ASSIGNED
|
22002
22007
|
BILLING_ADDRESS_NOT_SET
|
22003
22008
|
CANNOT_ADD_FEE
|
22004
22009
|
CANNOT_CANCEL_FULFILLMENT
|
@@ -22600,6 +22605,9 @@ input OrderFulfillInput {
|
|
22600
22605
|
allow Marketplace Admin users to fulfill order lines with null variants.
|
22601
22606
|
"""
|
22602
22607
|
allowNullVariants: Boolean
|
22608
|
+
|
22609
|
+
"""List of custom fields."""
|
22610
|
+
customFields: [AttributeValueInput!]
|
22603
22611
|
}
|
22604
22612
|
|
22605
22613
|
input OrderFulfillLineInput {
|