@nautical-commerce/graphql-schema 1.82.2 → 1.83.0
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 +8 -1
- package/package.json +1 -1
package/nautical/schema.graphql
CHANGED
@@ -4914,6 +4914,7 @@ type Attribute implements Node & ObjectWithMetadata {
|
|
4914
4914
|
externalSource: String
|
4915
4915
|
productTypes(offset: Int, before: String, after: String, first: Int, last: Int): ProductTypeCountableConnection!
|
4916
4916
|
productVariantTypes(offset: Int, before: String, after: String, first: Int, last: Int): ProductTypeCountableConnection!
|
4917
|
+
isLocked: Boolean!
|
4917
4918
|
|
4918
4919
|
"""
|
4919
4920
|
List of private metadata items.Requires proper staff permissions to access.
|
@@ -12194,7 +12195,7 @@ type Mutation {
|
|
12194
12195
|
description: String
|
12195
12196
|
|
12196
12197
|
"""
|
12197
|
-
Used when uploading a new document or file in a multipart request that does not exist in the system already. Supported file types: image/
|
12198
|
+
Used when uploading a new document or file in a multipart request that does not exist in the system already. Supported file types: image/bmp, application/vnd.openxmlformats-officedocument.spreadsheetml.sheet, text/rtf, application/pdf, application/x-acad, application/eps, application/x-tiff, application/x-csv, application/x-dxf, image/x-tif, application/gzip-compressed, application/excel, text/csv, application/postscript, application/vnd.ms-excel, drawing/x-dwf, text/pdf, application/vnd.ms-powerpoint, application/x-jpg, application/vnd.ms-word, application/vnd.oasis.opendocument.presentation, image/heic, application/vnd.openxmlformats-officedocument.presentationml.slideshow, application/x-rar, application/x-tar, image/x-dxf, application/gzipped, application/acad, application/csv, text/x-comma-separated-values, application/x-pdf, image/eps, application/tiff, image/dxf, application/vnd.openxmlformats-officedocument.presentationml.presentation, image/x-eps, image/svg+xml, image/x-bmp, application/x-eps, image/svg, application/msword, application/gzip, application/vnd.oasis.opendocument.text, application/dwg, image/heif, image/vnd.dwg, image/png, text/svg, application/tif, image/x-dwg, application/x-rtf, image/tiff, application/vnd.pdf, application/x-rar-compressed, text/comma-separated-values, drawing/dwg, drawing/x-dwg, text/svg-xml, image/heic-sequence, pplication/vnd.rar, application/x-dwg, image/heif-sequence, application/vnd.oasis.opendocument.spreadsheet, application/svg+xml, application/vnd.openxmlformats-officedocument.wordprocessingml.document, application/x-gzip, application/x-autocad, application/rtf, text/x-csv, image/webp, application/x-tif, application/x-zip-compressed, image/jpg, application/dxf, text/x-pdf, application/jpg, image/x-ms-bmp, application/zip, image/tif, image/jpeg, text/plain, image/x-tiff, application/acrobat, image/gif.
|
12198
12199
|
"""
|
12199
12200
|
file: Upload!
|
12200
12201
|
|
@@ -21457,6 +21458,9 @@ input AttributeCreateInput {
|
|
21457
21458
|
ID of the Seller that created the Attribute, or null if Marketplace Operator
|
21458
21459
|
"""
|
21459
21460
|
createdBy: String
|
21461
|
+
|
21462
|
+
"""Determines if sellers can create values for this attribute."""
|
21463
|
+
isLocked: Boolean
|
21460
21464
|
}
|
21461
21465
|
|
21462
21466
|
input AttributeValueCreateInput {
|
@@ -21586,6 +21590,9 @@ input AttributeUpdateInput {
|
|
21586
21590
|
ID of the Seller that created the Attribute, or null if Marketplace Operator
|
21587
21591
|
"""
|
21588
21592
|
createdBy: String
|
21593
|
+
|
21594
|
+
"""Determines if sellers can create values for this attribute."""
|
21595
|
+
isLocked: Boolean
|
21589
21596
|
}
|
21590
21597
|
|
21591
21598
|
"""Assign attributes to a given custom field template."""
|