@nautical-commerce/graphql-schema 1.79.1-9-g7f14f835e → 1.80.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.
@@ -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
 
@@ -5446,7 +5447,6 @@ enum PermissionEnum {
5446
5447
  MANAGE_ORDERS
5447
5448
  MANAGE_DRAFT_AND_QUOTE_ORDERS
5448
5449
  MANAGE_FULFILLMENTS
5449
- MANAGE_PAGES @deprecated(reason: "This will be removed on March 10, 2025. If you are using MANAGE_PAGES, please use MANAGE_STOREFRONTS instead.")
5450
5450
  MANAGE_PRODUCTS
5451
5451
  MANAGE_INVENTORY
5452
5452
  MANAGE_PRODUCT_TYPES_AND_ATTRIBUTES
@@ -9289,6 +9289,7 @@ enum ConfigurationTypeFieldEnum {
9289
9289
  PASSWORD
9290
9290
  SINGLE_SELECT
9291
9291
  OUTPUT
9292
+ OUTPUT_BOOLEAN
9292
9293
  }
9293
9294
 
9294
9295
  """Represents a checkout page's options."""
@@ -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: image/tiff, application/x-zip-compressed, text/rtf, application/vnd.oasis.opendocument.presentation, image/heif-sequence, image/bmp, application/vnd.oasis.opendocument.spreadsheet, application/gzip-compressed, application/x-gzip, image/eps, image/heic, application/vnd.ms-excel, application/x-dwg, image/x-dwg, image/heif, application/vnd.openxmlformats-officedocument.wordprocessingml.document, application/zip, application/x-tiff, image/x-ms-bmp, application/rtf, image/heic-sequence, image/webp, application/vnd.openxmlformats-officedocument.presentationml.slideshow, application/postscript, image/tif, application/jpg, application/excel, application/x-pdf, image/x-dxf, application/x-dxf, drawing/x-dwg, application/tiff, application/x-acad, application/vnd.openxmlformats-officedocument.spreadsheetml.sheet, application/vnd.ms-word, image/dxf, text/csv, application/svg+xml, application/vnd.ms-powerpoint, application/x-autocad, image/png, application/x-tif, application/x-rar-compressed, text/pdf, application/dwg, application/eps, pplication/vnd.rar, text/x-comma-separated-values, application/tif, text/svg-xml, application/x-rtf, application/vnd.oasis.opendocument.text, image/x-tiff, application/x-eps, application/csv, image/x-bmp, application/vnd.openxmlformats-officedocument.presentationml.presentation, image/gif, application/dxf, application/x-tar, image/vnd.dwg, application/x-csv, application/x-jpg, text/plain, drawing/x-dwf, application/acad, image/jpeg, text/svg, image/jpg, text/comma-separated-values, application/msword, image/x-eps, application/pdf, image/svg, drawing/dwg, application/x-rar, application/gzip, image/x-tif, text/x-csv, image/svg+xml, application/vnd.pdf, application/gzipped, text/x-pdf, application/acrobat.
12560
+ Used when uploading a new document or file in a multipart request that does not exist in the system already. Supported file types: application/gzip-compressed, application/vnd.pdf, image/dxf, application/svg+xml, text/x-comma-separated-values, image/vnd.dwg, drawing/x-dwg, image/tiff, image/heif-sequence, application/tif, image/tif, text/svg-xml, application/x-autocad, application/vnd.oasis.opendocument.spreadsheet, text/plain, application/x-eps, application/gzipped, text/x-csv, application/gzip, application/csv, text/x-pdf, image/eps, application/jpg, application/acad, image/svg, image/jpeg, image/png, text/comma-separated-values, image/webp, image/x-dwg, application/zip, application/x-rtf, application/x-tar, application/x-pdf, application/x-dxf, image/x-dxf, image/gif, application/x-jpg, application/vnd.openxmlformats-officedocument.presentationml.presentation, image/jpg, application/x-tif, application/x-dwg, application/dwg, image/x-bmp, application/postscript, application/x-rar, application/vnd.ms-powerpoint, application/vnd.oasis.opendocument.presentation, image/x-tif, application/x-acad, image/heic, image/x-eps, application/vnd.openxmlformats-officedocument.spreadsheetml.sheet, application/x-gzip, drawing/dwg, application/excel, pplication/vnd.rar, application/vnd.oasis.opendocument.text, application/vnd.ms-word, drawing/x-dwf, image/svg+xml, text/svg, image/heic-sequence, image/bmp, application/pdf, application/msword, application/vnd.openxmlformats-officedocument.wordprocessingml.document, image/heif, application/x-tiff, application/rtf, application/tiff, application/eps, application/dxf, image/x-tiff, text/csv, application/acrobat, text/pdf, application/x-rar-compressed, application/vnd.ms-excel, image/x-ms-bmp, application/vnd.openxmlformats-officedocument.presentationml.slideshow, text/rtf, application/x-zip-compressed, application/x-csv.
12560
12561
  """
12561
12562
  file: Upload!
12562
12563
 
@@ -18231,6 +18232,7 @@ enum ProductErrorCode {
18231
18232
  NOT_PRODUCTS_IMAGE
18232
18233
  NOT_PRODUCTS_VARIANT
18233
18234
  NOT_FOUND
18235
+ PRODUCT_TYPE_CANNOT_BE_DELETED
18234
18236
  REQUIRED
18235
18237
  UNIQUE
18236
18238
  VARIANT_NO_DIGITAL_CONTENT
@@ -18993,6 +18995,9 @@ input ProductTypeInput {
18993
18995
  """Determines if products are digital."""
18994
18996
  isDigital: Boolean
18995
18997
 
18998
+ """Determines if attributes could be added to the products and variants."""
18999
+ isLocked: Boolean
19000
+
18996
19001
  """Weight of the ProductType items."""
18997
19002
  weight: WeightScalar
18998
19003
 
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@nautical-commerce/graphql-schema",
3
- "version": "v1.79.1-9-g7f14f835e",
3
+ "version": "v1.80.0",
4
4
  "description": "## Getting Started",
5
5
  "main": "./nautical/schema.graphql",
6
6
  "scripts": {