@nautical-commerce/graphql-schema 1.89.0-22-g54a7bd345 → 1.89.0-24-g626dc76f1

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.
@@ -11239,7 +11239,7 @@ type Mutation {
11239
11239
  description: String
11240
11240
 
11241
11241
  """
11242
- Used when uploading a new document or file in a multipart request that does not exist in the system already. Supported file types: image/heif, text/csv, image/svg, image/tif, application/zip, application/x-acad, text/comma-separated-values, application/x-rar-compressed, image/dxf, image/x-eps, application/x-dwg, application/vnd.ms-powerpoint, image/svg+xml, application/x-dxf, application/x-csv, image/webp, image/heic, image/png, application/gzipped, application/acrobat, application/vnd.oasis.opendocument.spreadsheet, application/csv, application/x-gzip, application/vnd.openxmlformats-officedocument.presentationml.presentation, image/heic-sequence, application/vnd.openxmlformats-officedocument.spreadsheetml.sheet, text/x-pdf, application/vnd.pdf, text/svg, application/svg+xml, image/x-tif, application/gzip, image/bmp, application/dwg, image/x-ms-bmp, text/plain, application/rtf, text/x-csv, application/x-tif, drawing/x-dwg, application/excel, application/tiff, image/x-bmp, image/jpg, application/pdf, image/vnd.dwg, application/x-eps, text/x-comma-separated-values, application/eps, application/vnd.openxmlformats-officedocument.presentationml.slideshow, application/acad, pplication/vnd.rar, image/x-dxf, image/x-tiff, application/vnd.ms-excel, image/tiff, application/dxf, application/x-rar, application/x-autocad, image/gif, application/jpg, image/heif-sequence, image/x-dwg, application/tif, application/x-pdf, application/vnd.oasis.opendocument.text, application/vnd.oasis.opendocument.presentation, text/svg-xml, application/x-tar, application/gzip-compressed, application/vnd.openxmlformats-officedocument.wordprocessingml.document, application/msword, text/rtf, drawing/x-dwf, application/postscript, application/vnd.ms-word, application/x-jpg, text/pdf, application/x-rtf, image/jpeg, application/x-zip-compressed, image/eps, drawing/dwg, application/x-tiff.
11242
+ 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, image/x-bmp, application/gzip-compressed, application/vnd.ms-word, image/tiff, application/acrobat, application/x-tiff, application/acad, application/vnd.oasis.opendocument.text, image/jpg, application/vnd.oasis.opendocument.presentation, image/svg+xml, image/heif-sequence, image/x-dwg, application/gzipped, application/dwg, pplication/vnd.rar, drawing/dwg, image/gif, application/dxf, application/vnd.ms-powerpoint, text/plain, image/x-tiff, application/x-rtf, text/csv, drawing/x-dwg, application/pdf, text/x-csv, application/x-rar, application/vnd.openxmlformats-officedocument.wordprocessingml.document, image/x-tif, application/vnd.openxmlformats-officedocument.spreadsheetml.sheet, application/x-jpg, application/gzip, application/x-pdf, application/x-dwg, application/tiff, application/eps, application/vnd.oasis.opendocument.spreadsheet, image/jpeg, application/x-rar-compressed, image/heif, image/dxf, text/comma-separated-values, application/vnd.openxmlformats-officedocument.presentationml.slideshow, application/msword, application/x-csv, text/x-pdf, text/x-comma-separated-values, application/x-tif, image/vnd.dwg, application/x-autocad, application/tif, application/vnd.pdf, application/vnd.ms-excel, image/x-ms-bmp, application/jpg, application/x-zip-compressed, application/x-acad, image/tif, application/x-tar, application/zip, application/postscript, text/pdf, image/heic-sequence, application/excel, image/svg, image/png, application/x-dxf, application/rtf, application/csv, image/x-eps, text/svg, image/x-dxf, text/rtf, image/heic, image/eps, image/webp, application/x-gzip, application/vnd.openxmlformats-officedocument.presentationml.presentation, application/svg+xml, drawing/x-dwf, application/x-eps, text/svg-xml.
11243
11243
  """
11244
11244
  file: Upload!
11245
11245
 
@@ -13667,16 +13667,28 @@ type Mutation {
13667
13667
 
13668
13668
  """Un-assign attributes from a given product type."""
13669
13669
  attributeUnassign(
13670
- """The IDs of the attributes to assign."""
13670
+ """The IDs of the attributes to unassign."""
13671
13671
  attributeIds: [ID!]!
13672
13672
 
13673
- """ID of the product to which the attribute will be assigned."""
13673
+ """ID of the product to which the attribute will be unassigned."""
13674
13674
  productId: ID
13675
13675
 
13676
- """ID of the product type to assign the attributes into."""
13677
- productTypeId: ID
13676
+ """ID of the product type to unassign the attributes from."""
13677
+ productTypeId: ID @deprecated(reason: "Use AttributeUnassignFromProductType mutation instead to unassign attributes from product type. This will be removed on September 27, 2025.")
13678
13678
  ): AttributeUnassign
13679
13679
 
13680
+ """Un-assign attributes from a given product type."""
13681
+ attributeUnassignFromProductType(
13682
+ """The IDs of the product attributes to unassign."""
13683
+ productAttributeIds: [ID!]
13684
+
13685
+ """ID of the product type to unassign the attributes from."""
13686
+ productTypeId: ID!
13687
+
13688
+ """The IDs of the variant attributes to unassign."""
13689
+ variantAttributeIds: [ID!]
13690
+ ): AttributeUnassignFromProductType
13691
+
13680
13692
  """Updates attribute."""
13681
13693
  attributeUpdate(
13682
13694
  """ID of an attribute to update."""
@@ -20061,13 +20073,20 @@ input AttributeAssignInput {
20061
20073
  """Un-assign attributes from a given product type."""
20062
20074
  type AttributeUnassign {
20063
20075
  """The updated product type."""
20064
- productType: ProductType
20076
+ productType: ProductType @deprecated(reason: "Use AttributeUnassignFromProductType mutation instead to unassign attributes from product type. This will be removed on September 27, 2025.")
20065
20077
 
20066
- """The product to which the attribute was assigned."""
20078
+ """The product to which the attribute was unassigned."""
20067
20079
  product: Product
20068
20080
  productErrors: [ProductError!]!
20069
20081
  }
20070
20082
 
20083
+ """Un-assign attributes from a given product type."""
20084
+ type AttributeUnassignFromProductType {
20085
+ """The updated product type."""
20086
+ productType: ProductType
20087
+ productErrors: [ProductError!]!
20088
+ }
20089
+
20071
20090
  """Updates attribute."""
20072
20091
  type AttributeUpdate {
20073
20092
  attribute: Attribute
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@nautical-commerce/graphql-schema",
3
- "version": "v1.89.0-22-g54a7bd345",
3
+ "version": "v1.89.0-24-g626dc76f1",
4
4
  "description": "## Getting Started",
5
5
  "main": "./nautical/schema.graphql",
6
6
  "scripts": {