@nautical-commerce/graphql-schema 1.80.0-42-g0c9ab5005 → 1.80.0-43-g1cc4ee91b
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 +10 -1
- package/package.json +1 -1
package/nautical/schema.graphql
CHANGED
@@ -1870,6 +1870,15 @@ type Query {
|
|
1870
1870
|
"""Email address of the user."""
|
1871
1871
|
email: String!
|
1872
1872
|
): User
|
1873
|
+
|
1874
|
+
"""Determine if the email token provided is still valid or not."""
|
1875
|
+
isEmailTokenValid(
|
1876
|
+
"""Generated email token."""
|
1877
|
+
token: String!
|
1878
|
+
|
1879
|
+
"""Email address of the user."""
|
1880
|
+
email: String!
|
1881
|
+
): Boolean
|
1873
1882
|
_entities(representations: [_Any!]!): [_Entity]!
|
1874
1883
|
_service: _Service!
|
1875
1884
|
}
|
@@ -12075,7 +12084,7 @@ type Mutation {
|
|
12075
12084
|
description: String
|
12076
12085
|
|
12077
12086
|
"""
|
12078
|
-
Used when uploading a new document or file in a multipart request that does not exist in the system already. Supported file types: application/
|
12087
|
+
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.oasis.opendocument.spreadsheet, pplication/vnd.rar, application/excel, application/vnd.oasis.opendocument.text, application/vnd.openxmlformats-officedocument.wordprocessingml.document, application/x-tiff, image/heif-sequence, image/heif, text/plain, application/jpg, application/gzipped, image/x-tiff, application/x-autocad, application/vnd.pdf, text/comma-separated-values, image/bmp, application/acad, application/vnd.openxmlformats-officedocument.spreadsheetml.sheet, text/rtf, text/svg-xml, application/x-tar, application/x-rtf, image/gif, application/msword, application/x-rar-compressed, application/dwg, image/tiff, application/x-dxf, text/x-csv, application/x-csv, image/webp, image/dxf, application/vnd.openxmlformats-officedocument.presentationml.presentation, application/x-dwg, application/postscript, application/tif, application/svg+xml, application/vnd.openxmlformats-officedocument.presentationml.slideshow, image/tif, application/gzip-compressed, image/svg+xml, application/tiff, drawing/x-dwf, application/eps, image/x-eps, application/zip, application/csv, drawing/dwg, application/x-acad, text/x-comma-separated-values, drawing/x-dwg, image/heic, text/csv, application/vnd.oasis.opendocument.presentation, image/eps, image/svg, application/x-gzip, image/x-dwg, application/acrobat, application/x-tif, text/svg, application/vnd.ms-word, image/x-bmp, application/gzip, application/x-eps, image/vnd.dwg, application/vnd.ms-powerpoint, application/x-jpg, application/x-rar, application/x-zip-compressed, text/pdf, image/jpeg, application/dxf, image/x-tif, image/heic-sequence, image/jpg, application/rtf, image/x-ms-bmp, text/x-pdf, application/vnd.ms-excel, application/pdf, image/png, image/x-dxf, application/x-pdf.
|
12079
12088
|
"""
|
12080
12089
|
file: Upload!
|
12081
12090
|
|