@nautical-commerce/graphql-schema 1.80.0-43-g1cc4ee91b → 1.80.0-45-g7d8ac868c
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 +9 -9
- package/package.json +1 -1
package/nautical/schema.graphql
CHANGED
@@ -12084,7 +12084,7 @@ type Mutation {
|
|
12084
12084
|
description: String
|
12085
12085
|
|
12086
12086
|
"""
|
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/
|
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/tif, image/tif, text/x-csv, application/x-zip-compressed, image/svg, image/heif-sequence, application/x-tar, application/vnd.oasis.opendocument.spreadsheet, text/x-comma-separated-values, application/gzip, image/x-bmp, application/csv, application/acrobat, image/gif, application/rtf, application/x-acad, image/dxf, image/vnd.dwg, application/postscript, text/x-pdf, application/vnd.pdf, application/dwg, application/vnd.ms-word, text/rtf, application/vnd.oasis.opendocument.text, application/vnd.openxmlformats-officedocument.spreadsheetml.sheet, image/heic-sequence, application/vnd.oasis.opendocument.presentation, application/gzipped, application/x-rar-compressed, application/vnd.openxmlformats-officedocument.wordprocessingml.document, application/jpg, application/x-jpg, image/x-dwg, application/x-tif, image/bmp, application/vnd.ms-powerpoint, application/x-dwg, application/x-rar, application/msword, application/vnd.openxmlformats-officedocument.presentationml.presentation, application/x-tiff, application/zip, image/x-dxf, application/x-autocad, application/x-eps, application/x-csv, text/plain, image/png, image/eps, application/x-rtf, application/acad, image/webp, application/x-dxf, application/svg+xml, pplication/vnd.rar, image/svg+xml, text/svg, image/tiff, image/x-eps, application/vnd.ms-excel, text/comma-separated-values, application/pdf, image/heic, text/svg-xml, text/pdf, drawing/x-dwg, application/tiff, application/vnd.openxmlformats-officedocument.presentationml.slideshow, text/csv, drawing/dwg, drawing/x-dwf, image/heif, image/x-tiff, application/x-gzip, application/dxf, image/jpeg, application/eps, application/x-pdf, image/x-ms-bmp, image/x-tif, image/jpg, application/gzip-compressed, application/excel.
|
12088
12088
|
"""
|
12089
12089
|
file: Upload!
|
12090
12090
|
|
@@ -14875,7 +14875,7 @@ type Mutation {
|
|
14875
14875
|
|
14876
14876
|
"""Password of a user."""
|
14877
14877
|
password: String!
|
14878
|
-
):
|
14878
|
+
): TokenCreate
|
14879
14879
|
|
14880
14880
|
"""Create authorization URL."""
|
14881
14881
|
authUrlGenerate(
|
@@ -14904,16 +14904,16 @@ type Mutation {
|
|
14904
14904
|
|
14905
14905
|
"""Refresh token."""
|
14906
14906
|
refreshToken: String
|
14907
|
-
):
|
14907
|
+
): TokenRefresh
|
14908
14908
|
|
14909
14909
|
"""Verify JWT token."""
|
14910
14910
|
tokenVerify(
|
14911
14911
|
"""JWT token to validate."""
|
14912
14912
|
token: String!
|
14913
|
-
):
|
14913
|
+
): TokenVerify
|
14914
14914
|
|
14915
14915
|
"""Deactivate all JWT tokens of the currently authenticated user."""
|
14916
|
-
tokensDeactivateAll:
|
14916
|
+
tokensDeactivateAll: TokensDeactivateAll
|
14917
14917
|
|
14918
14918
|
"""Sends an email with the account password modification link."""
|
14919
14919
|
passwordRequestReset(
|
@@ -21744,7 +21744,7 @@ enum OauthProviderSourceEnum {
|
|
21744
21744
|
}
|
21745
21745
|
|
21746
21746
|
"""Create JWT token."""
|
21747
|
-
type
|
21747
|
+
type TokenCreate {
|
21748
21748
|
"""JWT token, required to authenticate."""
|
21749
21749
|
token: String
|
21750
21750
|
|
@@ -21845,7 +21845,7 @@ type TokenCreateSSO {
|
|
21845
21845
|
"""
|
21846
21846
|
Refresh JWT token. Mutation tries to take refreshToken from the input.If it fails it will try to take refreshToken from the http-only cookie -refreshToken. csrfToken is required when refreshToken is provided as a cookie.
|
21847
21847
|
"""
|
21848
|
-
type
|
21848
|
+
type TokenRefresh {
|
21849
21849
|
"""JWT token, required to authenticate."""
|
21850
21850
|
token: String
|
21851
21851
|
|
@@ -21855,7 +21855,7 @@ type RefreshToken {
|
|
21855
21855
|
}
|
21856
21856
|
|
21857
21857
|
"""Verify JWT token."""
|
21858
|
-
type
|
21858
|
+
type TokenVerify {
|
21859
21859
|
"""User assigned to token."""
|
21860
21860
|
user: User
|
21861
21861
|
|
@@ -21865,7 +21865,7 @@ type VerifyToken {
|
|
21865
21865
|
}
|
21866
21866
|
|
21867
21867
|
"""Deactivate all JWT tokens of the currently authenticated user."""
|
21868
|
-
type
|
21868
|
+
type TokensDeactivateAll {
|
21869
21869
|
accountErrors: [AccountError!]!
|
21870
21870
|
}
|
21871
21871
|
|