@nautical-commerce/graphql-schema 1.86.0-17-g37480d832 → 1.86.0-19-g0d693626b
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 +20 -1
- package/package.json +1 -1
package/nautical/schema.graphql
CHANGED
@@ -4783,6 +4783,8 @@ Represents a type of product. It defines what attributes are available to produc
|
|
4783
4783
|
type ProductType implements Node & ObjectWithMetadata {
|
4784
4784
|
"""The ID of the object"""
|
4785
4785
|
id: ID!
|
4786
|
+
description: String!
|
4787
|
+
descriptionHtml: String!
|
4786
4788
|
externalId: String
|
4787
4789
|
|
4788
4790
|
"""External source from which the product type is imported."""
|
@@ -11484,7 +11486,7 @@ type Mutation {
|
|
11484
11486
|
description: String
|
11485
11487
|
|
11486
11488
|
"""
|
11487
|
-
Used when uploading a new document or file in a multipart request that does not exist in the system already. Supported file types:
|
11489
|
+
Used when uploading a new document or file in a multipart request that does not exist in the system already. Supported file types: text/csv, text/x-pdf, application/x-autocad, application/dwg, image/svg+xml, text/x-comma-separated-values, application/vnd.openxmlformats-officedocument.wordprocessingml.document, application/zip, application/x-rar-compressed, application/x-rtf, application/x-tiff, image/heic, application/rtf, application/tif, image/heif-sequence, image/tif, application/x-pdf, application/gzip, text/svg-xml, text/plain, application/excel, application/x-rar, application/svg+xml, application/x-tar, application/msword, image/tiff, application/gzip-compressed, image/x-tif, application/csv, application/vnd.ms-excel, image/eps, image/x-bmp, image/svg, text/comma-separated-values, drawing/dwg, image/jpeg, image/x-eps, application/vnd.oasis.opendocument.text, application/pdf, application/x-eps, image/bmp, application/tiff, application/vnd.ms-word, text/x-csv, application/vnd.pdf, application/x-zip-compressed, text/rtf, image/dxf, image/heif, application/x-dxf, image/x-dwg, image/x-tiff, application/vnd.openxmlformats-officedocument.spreadsheetml.sheet, application/jpg, drawing/x-dwg, application/acrobat, application/eps, application/gzipped, application/x-tif, image/heic-sequence, application/x-dwg, application/x-csv, image/x-dxf, application/x-jpg, image/gif, image/webp, image/png, application/x-acad, application/vnd.openxmlformats-officedocument.presentationml.slideshow, application/vnd.oasis.opendocument.spreadsheet, text/svg, image/x-ms-bmp, image/jpg, application/vnd.openxmlformats-officedocument.presentationml.presentation, application/x-gzip, application/dxf, application/acad, text/pdf, application/vnd.oasis.opendocument.presentation, application/vnd.ms-powerpoint, image/vnd.dwg, application/postscript, drawing/x-dwf, pplication/vnd.rar.
|
11488
11490
|
"""
|
11489
11491
|
file: Upload!
|
11490
11492
|
|
@@ -17389,6 +17391,12 @@ input ProductTypeInput {
|
|
17389
17391
|
"""Product type slug."""
|
17390
17392
|
slug: String
|
17391
17393
|
|
17394
|
+
"""Product type description (plaintext, read-only)."""
|
17395
|
+
description: String
|
17396
|
+
|
17397
|
+
"""Product type description (html)."""
|
17398
|
+
descriptionHtml: String
|
17399
|
+
|
17392
17400
|
"""
|
17393
17401
|
Allow variant price to be overridden for products in this product type in the checkout or in quote and draft orders.
|
17394
17402
|
"""
|
@@ -20408,6 +20416,9 @@ input AttributeUpdateInput {
|
|
20408
20416
|
"""Internal representation of an attribute name."""
|
20409
20417
|
slug: String
|
20410
20418
|
|
20419
|
+
"""Existing values to be updated for this attribute."""
|
20420
|
+
updateValues: [AttributeValueUpdateInput!]
|
20421
|
+
|
20411
20422
|
"""IDs of values to be removed from this attribute."""
|
20412
20423
|
removeValues: [ID!]
|
20413
20424
|
|
@@ -20446,6 +20457,14 @@ input AttributeUpdateInput {
|
|
20446
20457
|
isLocked: Boolean
|
20447
20458
|
}
|
20448
20459
|
|
20460
|
+
input AttributeValueUpdateInput {
|
20461
|
+
"""The ID of the attribute value to update."""
|
20462
|
+
id: ID!
|
20463
|
+
|
20464
|
+
"""Fields to update the attribute value with."""
|
20465
|
+
value: AttributeValueCreateInput!
|
20466
|
+
}
|
20467
|
+
|
20449
20468
|
"""Assign attributes to a given custom field template."""
|
20450
20469
|
type CustomAttributeAssign {
|
20451
20470
|
"""The updated custom field template."""
|