@nautical-commerce/graphql-schema 2.0.5 → 2.0.7-1-g11c731613

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.
@@ -8852,6 +8852,9 @@ type StorefrontTheme implements Node {
8852
8852
 
8853
8853
  """Font color in hex."""
8854
8854
  fontColor: String
8855
+
8856
+ """Whether to use this theme for the dashboard."""
8857
+ useForDashboard: Boolean
8855
8858
  }
8856
8859
 
8857
8860
  """Font for a storefront."""
@@ -11930,7 +11933,7 @@ type Mutation {
11930
11933
  description: String
11931
11934
 
11932
11935
  """
11933
- 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-xml, image/x-ms-bmp, application/vnd.ms-excel, application/vnd.openxmlformats-officedocument.wordprocessingml.document, image/png, text/rtf, application/dxf, application/vnd.ms-powerpoint, text/x-pdf, application/excel, application/msword, application/x-zip-compressed, application/zip, image/heic, application/x-eps, application/vnd.openxmlformats-officedocument.presentationml.presentation, application/csv, image/x-tiff, text/x-comma-separated-values, application/eps, application/x-pdf, text/x-csv, image/bmp, application/vnd.oasis.opendocument.spreadsheet, text/pdf, image/heif-sequence, drawing/x-dwg, application/jpg, application/vnd.ms-word, application/x-rar, application/x-tiff, image/webp, application/x-dxf, text/svg, drawing/x-dwf, application/pdf, image/x-dwg, application/vnd.oasis.opendocument.text, image/gif, image/tiff, image/tif, application/x-rtf, application/tif, application/vnd.openxmlformats-officedocument.presentationml.slideshow, application/gzip, application/gzip-compressed, application/acad, application/rtf, image/svg, image/x-eps, text/comma-separated-values, text/csv, application/tiff, drawing/dwg, image/heif, application/x-acad, application/x-jpg, image/vnd.dwg, application/x-gzip, application/postscript, pplication/vnd.rar, application/x-dwg, application/vnd.oasis.opendocument.presentation, application/acrobat, image/x-dxf, application/dwg, image/heic-sequence, image/x-bmp, application/x-tif, text/plain, application/svg+xml, application/x-csv, image/dxf, image/x-tif, application/vnd.openxmlformats-officedocument.spreadsheetml.sheet, image/eps, application/x-tar, application/vnd.pdf, application/x-rar-compressed, application/x-autocad, image/svg+xml, application/gzipped, image/jpeg, image/jpg.
11936
+ 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, application/zip, application/gzip, application/dxf, image/x-ms-bmp, image/heic, image/tiff, image/x-tiff, image/x-bmp, application/vnd.ms-word, application/x-rtf, drawing/x-dwf, application/x-pdf, image/gif, pplication/vnd.rar, application/x-acad, application/dwg, application/vnd.oasis.opendocument.text, text/x-csv, application/gzip-compressed, text/csv, text/x-comma-separated-values, image/heif-sequence, application/vnd.oasis.opendocument.spreadsheet, drawing/x-dwg, application/vnd.ms-powerpoint, application/jpg, application/vnd.pdf, application/x-autocad, image/png, image/vnd.dwg, image/eps, image/x-eps, application/svg+xml, application/x-tiff, application/gzipped, image/webp, image/heif, image/x-tif, application/vnd.ms-excel, application/tiff, text/x-pdf, application/excel, application/tif, image/heic-sequence, application/x-rar, image/bmp, application/x-rar-compressed, image/svg, application/x-tar, image/x-dwg, application/eps, application/x-dxf, application/csv, text/comma-separated-values, application/x-gzip, image/jpg, application/x-jpg, image/dxf, application/x-csv, application/pdf, text/rtf, application/x-tif, image/svg+xml, image/x-dxf, application/acrobat, application/postscript, text/svg-xml, text/pdf, image/tif, drawing/dwg, application/acad, image/jpeg, application/vnd.oasis.opendocument.presentation, application/vnd.openxmlformats-officedocument.wordprocessingml.document, application/x-dwg, application/vnd.openxmlformats-officedocument.spreadsheetml.sheet, application/x-zip-compressed, text/plain, application/rtf, application/msword, application/x-eps, application/vnd.openxmlformats-officedocument.presentationml.slideshow, application/vnd.openxmlformats-officedocument.presentationml.presentation.
11934
11937
  """
11935
11938
  file: Upload!
11936
11939
 
@@ -14302,7 +14305,7 @@ type Mutation {
14302
14305
  """Deletes a checkout."""
14303
14306
  checkoutDelete(
14304
14307
  """Token of a checkout to delete."""
14305
- token: NauticalUUID!
14308
+ token: UUID!
14306
14309
  ): CheckoutDelete
14307
14310
 
14308
14311
  """Adds purchase order number to a checkout."""
@@ -16538,6 +16541,9 @@ input StorefrontThemeInput {
16538
16541
 
16539
16542
  """Font color in hex."""
16540
16543
  fontColor: String
16544
+
16545
+ """Whether to use this theme for the dashboard."""
16546
+ useForDashboard: Boolean
16541
16547
  }
16542
16548
 
16543
16549
  """Update a storefront theme."""
@@ -21518,9 +21524,6 @@ input UserCreateInput {
21518
21524
  """List of custom fields."""
21519
21525
  customFields: [AttributeValueInput!]
21520
21526
 
21521
- """User is staff member."""
21522
- isStaff: Boolean
21523
-
21524
21527
  """Marketplace VAT identification number"""
21525
21528
  vatIdentificationNumber: String
21526
21529
 
@@ -21529,20 +21532,13 @@ input UserCreateInput {
21529
21532
  """
21530
21533
  sendCustomerSetPasswordEmail: Boolean
21531
21534
 
21532
- """
21533
- Seller to add customer to during staff upgrade, if no seller is supplied a new seller will be created.
21534
- """
21535
- seller: ID
21536
-
21537
- """
21538
- List of permission group IDs to which customer should be assigned during staff upgrade.
21539
- """
21540
- addGroups: [ID!]
21541
-
21542
21535
  """
21543
21536
  URL of a view where users should be redirected to set the password. URL in RFC 1808 format.
21544
21537
  """
21545
21538
  redirectUrl: String
21539
+
21540
+ """Upgrade customer to a staff member"""
21541
+ isStaff: Boolean @deprecated(reason: "Customer creation always produces a customer user, will be removed on January 15, 2026")
21546
21542
  }
21547
21543
 
21548
21544
  """Updates an existing customer."""
@@ -21588,9 +21584,6 @@ input CustomerInput {
21588
21584
  """List of custom fields."""
21589
21585
  customFields: [AttributeValueInput!]
21590
21586
 
21591
- """User is staff member."""
21592
- isStaff: Boolean
21593
-
21594
21587
  """Marketplace VAT identification number"""
21595
21588
  vatIdentificationNumber: String
21596
21589
 
@@ -21608,6 +21601,11 @@ input CustomerInput {
21608
21601
  List of permission group IDs to which customer should be assigned during staff upgrade.
21609
21602
  """
21610
21603
  addGroups: [ID!]
21604
+
21605
+ """
21606
+ Upgrade customer to a staff member, if this is provided you must also provide values for seller and add_groups.
21607
+ """
21608
+ isStaff: Boolean
21611
21609
  }
21612
21610
 
21613
21611
  """Deletes a customer."""
@@ -21682,9 +21680,6 @@ input StaffCreateInput {
21682
21680
  """List of custom fields."""
21683
21681
  customFields: [AttributeValueInput!]
21684
21682
 
21685
- """User is staff member."""
21686
- isStaff: Boolean
21687
-
21688
21683
  """List of permission group IDs to which user should be assigned."""
21689
21684
  addGroups: [ID!]
21690
21685
 
@@ -21695,6 +21690,9 @@ input StaffCreateInput {
21695
21690
  URL of a view where users should be redirected to set the password. URL in RFC 1808 format.
21696
21691
  """
21697
21692
  redirectUrl: String
21693
+
21694
+ """User is staff member."""
21695
+ isStaff: Boolean @deprecated(reason: "Staff creation always produces a staff user, will be removed on January 15, 2026")
21698
21696
  }
21699
21697
 
21700
21698
  """Updates an existing staff user."""
@@ -21734,9 +21732,6 @@ input StaffUpdateInput {
21734
21732
  """List of custom fields."""
21735
21733
  customFields: [AttributeValueInput!]
21736
21734
 
21737
- """User is staff member."""
21738
- isStaff: Boolean
21739
-
21740
21735
  """List of permission group IDs to which user should be assigned."""
21741
21736
  addGroups: [ID!]
21742
21737
 
@@ -21745,6 +21740,9 @@ input StaffUpdateInput {
21745
21740
 
21746
21741
  """List of permission group IDs from which user should be unassigned."""
21747
21742
  removeGroups: [ID!]
21743
+
21744
+ """User is staff member."""
21745
+ isStaff: Boolean @deprecated(reason: "Staff update always produces a staff user, will be removed on January 15, 2026")
21748
21746
  }
21749
21747
 
21750
21748
  """Deletes a staff user."""
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@nautical-commerce/graphql-schema",
3
- "version": "v2.0.5",
3
+ "version": "v2.0.7-1-g11c731613",
4
4
  "description": "## Getting Started",
5
5
  "main": "./nautical/schema.graphql",
6
6
  "scripts": {