@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.
- package/nautical/schema.graphql +24 -1
- package/package.json +1 -1
package/nautical/schema.graphql
CHANGED
@@ -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:
|
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!]!
|