@nautical-commerce/graphql-schema 1.89.0-17-g673be75e5 → 1.89.0-19-g47e00d269

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.
@@ -2566,6 +2566,7 @@ type Product implements Node & ObjectWithMetadata {
2566
2566
  isPriceOverrideAllowed: Boolean!
2567
2567
  isShippingRequired: Boolean!
2568
2568
  isDigital: Boolean!
2569
+ productSource: ProductProductSource!
2569
2570
 
2570
2571
  """
2571
2572
  List of private metadata items.Requires proper staff permissions to access.
@@ -6867,6 +6868,21 @@ enum ProductSubStatus {
6867
6868
  APPROVED
6868
6869
  }
6869
6870
 
6871
+ """An enumeration."""
6872
+ enum ProductProductSource {
6873
+ """API"""
6874
+ API
6875
+
6876
+ """Dashboard"""
6877
+ DASHBOARD
6878
+
6879
+ """Shopify"""
6880
+ SHOPIFY
6881
+
6882
+ """CSV"""
6883
+ CSV
6884
+ }
6885
+
6870
6886
  """Represents availability of a product in the storefront."""
6871
6887
  type ProductPricingInfo {
6872
6888
  """Whether it is in sale or not."""
@@ -11223,7 +11239,7 @@ type Mutation {
11223
11239
  description: String
11224
11240
 
11225
11241
  """
11226
- Used when uploading a new document or file in a multipart request that does not exist in the system already. Supported file types: image/x-dxf, text/rtf, text/plain, image/eps, application/x-csv, text/x-comma-separated-values, image/heic, application/x-acad, text/comma-separated-values, image/gif, drawing/x-dwg, application/x-pdf, application/dwg, application/vnd.ms-word, image/x-bmp, application/x-tif, application/vnd.openxmlformats-officedocument.wordprocessingml.document, image/svg, image/x-eps, application/vnd.oasis.opendocument.text, application/zip, application/tiff, application/vnd.openxmlformats-officedocument.presentationml.presentation, application/vnd.pdf, pplication/vnd.rar, application/vnd.openxmlformats-officedocument.presentationml.slideshow, image/webp, application/x-autocad, application/excel, image/vnd.dwg, application/jpg, text/csv, application/acad, text/svg, image/jpg, application/gzipped, image/x-ms-bmp, application/x-rar-compressed, image/jpeg, application/pdf, application/x-dwg, application/x-tiff, application/csv, text/x-pdf, application/x-gzip, drawing/x-dwf, application/vnd.oasis.opendocument.spreadsheet, application/vnd.ms-excel, drawing/dwg, image/dxf, application/acrobat, text/x-csv, text/svg-xml, application/svg+xml, application/x-rar, image/x-tif, application/x-eps, application/x-rtf, image/x-tiff, application/eps, application/x-jpg, application/vnd.openxmlformats-officedocument.spreadsheetml.sheet, application/tif, image/heif-sequence, application/x-zip-compressed, application/dxf, application/vnd.oasis.opendocument.presentation, application/vnd.ms-powerpoint, application/x-tar, application/x-dxf, image/heif, application/gzip, application/postscript, application/msword, image/x-dwg, image/png, application/rtf, image/svg+xml, application/gzip-compressed, image/bmp, text/pdf, image/heic-sequence, image/tiff, image/tif.
11242
+ Used when uploading a new document or file in a multipart request that does not exist in the system already. Supported file types: application/x-gzip, text/x-comma-separated-values, application/x-dxf, application/vnd.ms-word, image/gif, application/vnd.openxmlformats-officedocument.spreadsheetml.sheet, image/tif, image/x-ms-bmp, image/webp, application/x-rtf, text/csv, application/x-eps, application/x-acad, application/x-tiff, text/rtf, image/jpg, application/vnd.openxmlformats-officedocument.wordprocessingml.document, application/x-rar-compressed, image/x-dwg, application/x-tif, image/x-tiff, drawing/dwg, application/gzip, application/vnd.openxmlformats-officedocument.presentationml.presentation, application/eps, application/pdf, application/x-csv, application/x-dwg, text/svg, application/msword, application/jpg, image/vnd.dwg, image/bmp, application/tiff, application/vnd.pdf, text/x-pdf, pplication/vnd.rar, image/svg, application/vnd.oasis.opendocument.spreadsheet, application/gzipped, application/svg+xml, application/tif, text/x-csv, image/x-eps, application/acrobat, application/excel, image/x-tif, application/dxf, image/x-dxf, application/x-zip-compressed, drawing/x-dwg, application/postscript, application/x-rar, image/x-bmp, application/csv, application/zip, text/plain, image/eps, image/tiff, application/vnd.openxmlformats-officedocument.presentationml.slideshow, image/jpeg, application/vnd.oasis.opendocument.text, application/vnd.ms-powerpoint, application/x-jpg, image/heif-sequence, application/dwg, application/x-tar, application/gzip-compressed, text/pdf, text/svg-xml, image/heic, drawing/x-dwf, application/x-autocad, image/dxf, application/vnd.ms-excel, application/x-pdf, application/rtf, image/heic-sequence, text/comma-separated-values, image/png, image/svg+xml, image/heif, application/vnd.oasis.opendocument.presentation, application/acad.
11227
11243
  """
11228
11244
  file: Upload!
11229
11245
 
@@ -16731,6 +16747,9 @@ input ProductCreateInput {
16731
16747
 
16732
16748
  """Represents an image file in a multipart request."""
16733
16749
  image: Upload
16750
+
16751
+ """Where the product was created (e.g dashboard, shopify, csv, api)"""
16752
+ productSource: ProductSourceEnum
16734
16753
  }
16735
16754
 
16736
16755
  input ProductDimensionsInput {
@@ -16757,6 +16776,20 @@ input StockInput {
16757
16776
  includeAllocations: Boolean = false
16758
16777
  }
16759
16778
 
16779
+ enum ProductSourceEnum {
16780
+ """API"""
16781
+ API
16782
+
16783
+ """Dashboard"""
16784
+ DASHBOARD
16785
+
16786
+ """Shopify"""
16787
+ SHOPIFY
16788
+
16789
+ """CSV"""
16790
+ CSV
16791
+ }
16792
+
16760
16793
  """Deletes a product."""
16761
16794
  type ProductDelete {
16762
16795
  productErrors: [ProductError!]!
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@nautical-commerce/graphql-schema",
3
- "version": "v1.89.0-17-g673be75e5",
3
+ "version": "v1.89.0-19-g47e00d269",
4
4
  "description": "## Getting Started",
5
5
  "main": "./nautical/schema.graphql",
6
6
  "scripts": {