@nautical-commerce/graphql-schema 1.81.0-14-gc56a697a5 → 1.81.0-16-gc51033589
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 +26 -1
- package/package.json +1 -1
package/nautical/schema.graphql
CHANGED
@@ -12112,7 +12112,7 @@ type Mutation {
|
|
12112
12112
|
description: String
|
12113
12113
|
|
12114
12114
|
"""
|
12115
|
-
Used when uploading a new document or file in a multipart request that does not exist in the system already. Supported file types: text/x-
|
12115
|
+
Used when uploading a new document or file in a multipart request that does not exist in the system already. Supported file types: text/x-pdf, image/heif, application/vnd.oasis.opendocument.spreadsheet, text/comma-separated-values, image/x-dwg, image/x-tif, image/svg, application/vnd.openxmlformats-officedocument.spreadsheetml.sheet, text/csv, application/vnd.openxmlformats-officedocument.presentationml.presentation, application/csv, application/vnd.openxmlformats-officedocument.presentationml.slideshow, text/svg, application/dwg, image/x-ms-bmp, application/x-tif, image/gif, application/x-acad, application/vnd.pdf, application/svg+xml, image/jpeg, image/webp, image/heif-sequence, text/pdf, application/x-tiff, application/tif, application/rtf, application/x-dwg, drawing/x-dwg, application/dxf, application/msword, pplication/vnd.rar, application/vnd.ms-powerpoint, application/x-jpg, image/x-eps, image/png, application/acrobat, image/tiff, image/svg+xml, text/svg-xml, application/x-autocad, application/pdf, application/acad, image/eps, application/eps, image/tif, application/gzipped, text/x-comma-separated-values, application/vnd.openxmlformats-officedocument.wordprocessingml.document, application/vnd.ms-word, application/x-rar, image/bmp, application/postscript, application/x-eps, image/x-bmp, drawing/x-dwf, image/jpg, application/x-dxf, application/gzip-compressed, image/dxf, application/jpg, application/tiff, application/zip, drawing/dwg, application/vnd.oasis.opendocument.text, text/plain, application/x-pdf, application/vnd.ms-excel, application/gzip, application/x-csv, text/x-csv, image/heic-sequence, application/x-zip-compressed, application/x-rar-compressed, image/heic, image/vnd.dwg, text/rtf, application/excel, image/x-tiff, application/x-rtf, application/x-gzip, image/x-dxf, application/x-tar, application/vnd.oasis.opendocument.presentation.
|
12116
12116
|
"""
|
12117
12117
|
file: Upload!
|
12118
12118
|
|
@@ -15006,6 +15006,18 @@ type Mutation {
|
|
15006
15006
|
token: String!
|
15007
15007
|
): EmailChangeConfirm
|
15008
15008
|
|
15009
|
+
"""Login via SSO."""
|
15010
|
+
ssoLogin(
|
15011
|
+
"""The oauth code"""
|
15012
|
+
code: String!
|
15013
|
+
|
15014
|
+
"""Whether the user is logging in to the dashboard"""
|
15015
|
+
isDashboard: Boolean!
|
15016
|
+
|
15017
|
+
"""The oauth state"""
|
15018
|
+
state: String!
|
15019
|
+
): SSOLogin
|
15020
|
+
|
15009
15021
|
"""Create a new address for the customer."""
|
15010
15022
|
accountAddressCreate(
|
15011
15023
|
"""Fields required to create address."""
|
@@ -21945,6 +21957,19 @@ type EmailChangeConfirm {
|
|
21945
21957
|
accountErrors: [AccountError!]!
|
21946
21958
|
}
|
21947
21959
|
|
21960
|
+
"""Login via SSO."""
|
21961
|
+
type SSOLogin {
|
21962
|
+
"""JWT token, required to authenticate."""
|
21963
|
+
token: String
|
21964
|
+
|
21965
|
+
"""JWT refresh token, required to re-generate access token."""
|
21966
|
+
refreshToken: String
|
21967
|
+
|
21968
|
+
"""A user instance."""
|
21969
|
+
user: User
|
21970
|
+
accountErrors: [AccountError!]!
|
21971
|
+
}
|
21972
|
+
|
21948
21973
|
"""Create a new address for the customer."""
|
21949
21974
|
type AccountAddressCreate {
|
21950
21975
|
"""A user instance for which the address was created."""
|