@nautical-commerce/graphql-schema 1.79.1-14-gc88f54532 → 1.79.1-16-g711370d6d
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 +5 -1
- package/package.json +1 -1
package/nautical/schema.graphql
CHANGED
@@ -5153,6 +5153,7 @@ type ProductType implements Node & ObjectWithMetadata {
|
|
5153
5153
|
name: String!
|
5154
5154
|
slug: String!
|
5155
5155
|
isShippingRequired: Boolean!
|
5156
|
+
isLocked: Boolean!
|
5156
5157
|
isDigital: Boolean!
|
5157
5158
|
weight: Weight
|
5158
5159
|
|
@@ -12556,7 +12557,7 @@ type Mutation {
|
|
12556
12557
|
description: String
|
12557
12558
|
|
12558
12559
|
"""
|
12559
|
-
Used when uploading a new document or file in a multipart request that does not exist in the system already. Supported file types:
|
12560
|
+
Used when uploading a new document or file in a multipart request that does not exist in the system already. Supported file types: text/svg, image/eps, image/heif-sequence, application/gzip-compressed, application/x-zip-compressed, image/svg+xml, image/tiff, application/x-tiff, application/csv, image/heif, image/bmp, image/heic, application/msword, application/vnd.pdf, application/vnd.oasis.opendocument.text, application/tiff, application/vnd.openxmlformats-officedocument.presentationml.slideshow, text/comma-separated-values, application/x-gzip, text/csv, application/eps, text/x-comma-separated-values, application/excel, application/x-dwg, application/vnd.ms-word, text/x-pdf, application/vnd.ms-powerpoint, application/x-dxf, application/vnd.openxmlformats-officedocument.presentationml.presentation, text/plain, image/x-tif, image/svg, image/gif, application/svg+xml, application/postscript, pplication/vnd.rar, image/x-eps, text/svg-xml, application/x-csv, image/webp, application/x-autocad, application/x-acad, drawing/x-dwf, application/zip, image/x-tiff, application/x-jpg, text/rtf, text/x-csv, image/x-ms-bmp, application/x-tif, application/acad, application/x-rar, application/gzipped, drawing/x-dwg, application/rtf, image/x-dxf, image/jpeg, image/png, application/acrobat, image/vnd.dwg, application/vnd.oasis.opendocument.presentation, image/heic-sequence, image/dxf, application/x-rar-compressed, application/vnd.openxmlformats-officedocument.wordprocessingml.document, application/dwg, application/gzip, application/dxf, application/vnd.oasis.opendocument.spreadsheet, application/x-pdf, application/pdf, image/x-bmp, application/vnd.ms-excel, application/vnd.openxmlformats-officedocument.spreadsheetml.sheet, image/x-dwg, application/x-tar, image/jpg, application/x-eps, application/x-rtf, application/tif, application/jpg, text/pdf, image/tif, drawing/dwg.
|
12560
12561
|
"""
|
12561
12562
|
file: Upload!
|
12562
12563
|
|
@@ -18993,6 +18994,9 @@ input ProductTypeInput {
|
|
18993
18994
|
"""Determines if products are digital."""
|
18994
18995
|
isDigital: Boolean
|
18995
18996
|
|
18997
|
+
"""Determines if attributes could be added to the products and variants."""
|
18998
|
+
isLocked: Boolean
|
18999
|
+
|
18996
19000
|
"""Weight of the ProductType items."""
|
18997
19001
|
weight: WeightScalar
|
18998
19002
|
|