@nautical-commerce/graphql-schema 1.99.3-1-g9ab363c95 → 1.99.3-3-g93c65200f

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.
@@ -11826,7 +11826,7 @@ type Mutation {
11826
11826
  description: String
11827
11827
 
11828
11828
  """
11829
- Used when uploading a new document or file in a multipart request that does not exist in the system already. Supported file types: image/tif, application/x-dxf, text/x-pdf, application/msword, application/vnd.ms-word, application/vnd.oasis.opendocument.text, image/heic, application/x-dwg, application/vnd.openxmlformats-officedocument.wordprocessingml.document, pplication/vnd.rar, application/tiff, image/x-tiff, image/webp, image/gif, application/x-pdf, drawing/dwg, image/x-eps, application/zip, application/gzip, image/x-bmp, application/vnd.openxmlformats-officedocument.presentationml.presentation, image/jpeg, application/x-rar, text/svg-xml, drawing/x-dwf, image/jpg, image/x-dwg, application/x-eps, image/eps, application/x-rtf, image/heic-sequence, application/x-jpg, image/heif-sequence, application/vnd.openxmlformats-officedocument.presentationml.slideshow, application/vnd.ms-excel, application/svg+xml, application/x-gzip, application/x-csv, application/dxf, image/png, application/jpg, text/csv, application/gzipped, application/vnd.oasis.opendocument.presentation, application/x-autocad, application/gzip-compressed, application/acad, application/excel, image/svg, application/acrobat, application/x-acad, text/comma-separated-values, drawing/x-dwg, application/tif, text/rtf, application/eps, application/postscript, image/bmp, application/rtf, image/dxf, application/x-tar, text/x-csv, application/vnd.oasis.opendocument.spreadsheet, text/x-comma-separated-values, application/pdf, image/svg+xml, application/x-tif, application/csv, application/x-zip-compressed, image/x-ms-bmp, application/vnd.openxmlformats-officedocument.spreadsheetml.sheet, image/x-tif, application/x-tiff, application/vnd.pdf, text/pdf, text/svg, image/tiff, image/x-dxf, application/dwg, image/vnd.dwg, application/vnd.ms-powerpoint, application/x-rar-compressed, image/heif, text/plain.
11829
+ Used when uploading a new document or file in a multipart request that does not exist in the system already. Supported file types: application/tif, application/x-rar-compressed, image/x-bmp, application/x-tif, image/svg+xml, application/gzipped, application/x-eps, text/rtf, image/heic, image/bmp, text/pdf, image/x-dwg, application/vnd.ms-excel, image/webp, application/x-csv, text/x-csv, application/vnd.pdf, pplication/vnd.rar, image/vnd.dwg, image/heif, drawing/x-dwf, application/x-tar, application/pdf, drawing/dwg, application/x-rar, application/excel, application/x-pdf, application/acrobat, image/x-eps, application/dwg, application/x-acad, text/svg-xml, application/x-zip-compressed, application/vnd.oasis.opendocument.spreadsheet, application/x-tiff, application/x-gzip, application/gzip, text/x-comma-separated-values, application/eps, image/jpg, application/tiff, application/x-autocad, application/vnd.openxmlformats-officedocument.presentationml.slideshow, application/gzip-compressed, image/x-tif, image/x-tiff, application/vnd.oasis.opendocument.text, application/x-dxf, text/csv, application/rtf, application/vnd.ms-word, application/x-jpg, image/heif-sequence, image/dxf, application/jpg, image/x-ms-bmp, text/plain, application/postscript, image/png, image/gif, drawing/x-dwg, image/svg, image/x-dxf, application/vnd.oasis.opendocument.presentation, application/msword, application/svg+xml, application/vnd.openxmlformats-officedocument.presentationml.presentation, image/tiff, text/x-pdf, application/acad, image/heic-sequence, application/zip, image/eps, image/jpeg, application/vnd.openxmlformats-officedocument.wordprocessingml.document, application/x-rtf, application/csv, text/svg, application/dxf, image/tif, application/x-dwg, text/comma-separated-values, application/vnd.ms-powerpoint, application/vnd.openxmlformats-officedocument.spreadsheetml.sheet.
11830
11830
  """
11831
11831
  file: Upload!
11832
11832
 
@@ -21101,6 +21101,7 @@ enum AccountErrorCode {
21101
21101
  OUT_OF_SCOPE_USER
21102
21102
  OUT_OF_SCOPE_GROUP
21103
21103
  OUT_OF_SCOPE_PERMISSION
21104
+ OUT_OF_SCOPE_SELLER
21104
21105
  PASSWORD_ENTIRELY_NUMERIC
21105
21106
  PASSWORD_IDENTICAL
21106
21107
  PASSWORD_TOO_COMMON
@@ -21400,9 +21401,6 @@ input UserCreateInput {
21400
21401
  """User account is active."""
21401
21402
  isActive: Boolean
21402
21403
 
21403
- """User is staff member."""
21404
- isStaff: Boolean
21405
-
21406
21404
  """A note about the user."""
21407
21405
  note: String
21408
21406
 
@@ -21460,9 +21458,6 @@ input CustomerInput {
21460
21458
  """User account is active."""
21461
21459
  isActive: Boolean
21462
21460
 
21463
- """User is staff member."""
21464
- isStaff: Boolean
21465
-
21466
21461
  """A note about the user."""
21467
21462
  note: String
21468
21463
 
@@ -21488,6 +21483,19 @@ input CustomerInput {
21488
21483
  Indicates whether a 'set password' email should be sent to the customer.
21489
21484
  """
21490
21485
  sendCustomerSetPasswordEmail: Boolean
21486
+
21487
+ """True if the customer is being upraded to a staff member."""
21488
+ isStaff: Boolean
21489
+
21490
+ """
21491
+ Seller to add customer to during staff upgrade, if no seller is supplied a new seller will be created.
21492
+ """
21493
+ seller: ID
21494
+
21495
+ """
21496
+ List of permission group IDs to which customer should be assigned during staff upgrade.
21497
+ """
21498
+ addGroups: [ID!]
21491
21499
  }
21492
21500
 
21493
21501
  """Deletes a customer."""
@@ -21544,9 +21552,6 @@ input StaffCreateInput {
21544
21552
  """User account is active."""
21545
21553
  isActive: Boolean
21546
21554
 
21547
- """User is staff member."""
21548
- isStaff: Boolean
21549
-
21550
21555
  """A note about the user."""
21551
21556
  note: String
21552
21557
 
@@ -21596,9 +21601,6 @@ input StaffUpdateInput {
21596
21601
  """User account is active."""
21597
21602
  isActive: Boolean
21598
21603
 
21599
- """User is staff member."""
21600
- isStaff: Boolean
21601
-
21602
21604
  """A note about the user."""
21603
21605
  note: String
21604
21606
 
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@nautical-commerce/graphql-schema",
3
- "version": "v1.99.3-1-g9ab363c95",
3
+ "version": "v1.99.3-3-g93c65200f",
4
4
  "description": "## Getting Started",
5
5
  "main": "./nautical/schema.graphql",
6
6
  "scripts": {