@nautical-commerce/graphql-schema 1.76.0-6-g0675f35bd → 1.76.0-8-gf37ac0869

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.
@@ -13155,7 +13155,7 @@ type Mutation {
13155
13155
  description: String
13156
13156
 
13157
13157
  """
13158
- Used when uploading a new document or file in a multipart request that does not exist in the system already. Supported file types: image/gif, application/acad, image/jpeg, application/msword, image/heif, image/x-bmp, image/webp, application/x-jpg, application/tiff, application/x-acad, image/x-ms-bmp, application/gzipped, image/heif-sequence, image/x-tif, image/x-dxf, application/x-tar, image/png, application/vnd.oasis.opendocument.text, text/plain, image/heic, text/x-csv, application/x-autocad, text/x-comma-separated-values, application/vnd.ms-powerpoint, application/gzip-compressed, image/tif, drawing/dwg, application/x-dwg, application/x-gzip, application/svg+xml, application/pdf, application/acrobat, application/rtf, text/x-pdf, text/comma-separated-values, text/csv, application/jpg, application/vnd.oasis.opendocument.presentation, text/svg-xml, application/csv, text/pdf, application/eps, image/svg+xml, application/postscript, application/x-rar-compressed, application/x-csv, pplication/vnd.rar, application/x-zip-compressed, application/x-dxf, application/x-eps, image/jpg, application/vnd.openxmlformats-officedocument.spreadsheetml.sheet, application/vnd.ms-word, image/bmp, application/x-tiff, application/vnd.ms-excel, application/x-rar, image/eps, application/vnd.openxmlformats-officedocument.presentationml.slideshow, image/dxf, image/tiff, image/x-eps, application/dxf, application/zip, image/svg, application/vnd.openxmlformats-officedocument.wordprocessingml.document, text/svg, image/vnd.dwg, image/x-tiff, text/rtf, application/dwg, drawing/x-dwg, application/vnd.pdf, application/x-tif, drawing/x-dwf, image/heic-sequence, application/vnd.openxmlformats-officedocument.presentationml.presentation, application/tif, application/vnd.oasis.opendocument.spreadsheet, application/gzip, application/excel, image/x-dwg, application/x-rtf, application/x-pdf.
13158
+ Used when uploading a new document or file in a multipart request that does not exist in the system already. Supported file types: application/vnd.ms-word, application/x-gzip, image/x-tif, application/vnd.oasis.opendocument.spreadsheet, image/tif, image/svg+xml, application/vnd.ms-excel, application/vnd.ms-powerpoint, application/x-acad, image/webp, application/x-zip-compressed, application/x-tar, pplication/vnd.rar, application/x-csv, drawing/x-dwf, application/svg+xml, application/vnd.openxmlformats-officedocument.presentationml.presentation, application/dxf, application/acrobat, image/x-dwg, drawing/dwg, application/tif, image/x-eps, image/x-dxf, application/jpg, application/msword, application/vnd.openxmlformats-officedocument.spreadsheetml.sheet, image/heif, application/dwg, application/gzip-compressed, text/comma-separated-values, application/zip, text/plain, image/jpg, image/svg, application/x-dxf, application/vnd.openxmlformats-officedocument.wordprocessingml.document, application/x-rar, image/eps, image/dxf, image/x-tiff, application/x-rar-compressed, image/vnd.dwg, application/gzipped, application/pdf, image/heic-sequence, application/vnd.oasis.opendocument.text, application/vnd.pdf, image/gif, application/tiff, application/x-pdf, application/x-dwg, image/jpeg, application/acad, application/x-eps, text/pdf, application/postscript, image/heif-sequence, image/png, application/x-jpg, image/bmp, text/svg, application/csv, text/svg-xml, image/tiff, application/gzip, application/x-tiff, drawing/x-dwg, image/heic, text/csv, text/rtf, application/x-autocad, image/x-ms-bmp, application/vnd.oasis.opendocument.presentation, text/x-csv, application/eps, application/excel, application/vnd.openxmlformats-officedocument.presentationml.slideshow, application/rtf, application/x-rtf, image/x-bmp, text/x-pdf, application/x-tif, text/x-comma-separated-values.
13159
13159
  """
13160
13160
  file: Upload!
13161
13161
 
@@ -16251,6 +16251,20 @@ type Mutation {
16251
16251
  input: StaffUpdateInput!
16252
16252
  ): StaffUpdate
16253
16253
 
16254
+ """
16255
+ Sets the user's email from the token sent by email using the StaffUpdate mutation.
16256
+ """
16257
+ staffEmailSet(
16258
+ """Existing email of the staff member."""
16259
+ email: String!
16260
+
16261
+ """New email of the staff member."""
16262
+ newEmail: String!
16263
+
16264
+ """A one-time token required to set the email."""
16265
+ token: String!
16266
+ ): StaffEmailSet
16267
+
16254
16268
  """Deletes a staff user."""
16255
16269
  staffDelete(
16256
16270
  """ID of a staff user to delete."""
@@ -23690,6 +23704,15 @@ input StaffUpdateInput {
23690
23704
  removeGroups: [ID!]
23691
23705
  }
23692
23706
 
23707
+ """
23708
+ Sets the user's email from the token sent by email using the StaffUpdate mutation.
23709
+ """
23710
+ type StaffEmailSet {
23711
+ """A user instance."""
23712
+ user: User
23713
+ staffErrors: [StaffError!]!
23714
+ }
23715
+
23693
23716
  """Deletes a staff user."""
23694
23717
  type StaffDelete {
23695
23718
  staffErrors: [StaffError!]!
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@nautical-commerce/graphql-schema",
3
- "version": "v1.76.0-6-g0675f35bd",
3
+ "version": "v1.76.0-8-gf37ac0869",
4
4
  "description": "## Getting Started",
5
5
  "main": "./nautical/schema.graphql",
6
6
  "scripts": {