@nautical-commerce/graphql-schema 1.80.0-43-g1cc4ee91b → 1.80.0-44-g081739b71

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.
@@ -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/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.
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/x-tif, application/csv, text/csv, application/pdf, application/vnd.openxmlformats-officedocument.presentationml.presentation, application/dwg, application/x-gzip, application/x-tiff, image/heif, text/plain, application/x-tar, application/vnd.pdf, application/x-dwg, application/postscript, application/x-rtf, image/tiff, application/vnd.ms-excel, image/eps, image/x-eps, text/pdf, application/gzip, text/x-pdf, text/comma-separated-values, text/x-comma-separated-values, application/msword, drawing/x-dwg, application/vnd.ms-word, application/vnd.ms-powerpoint, image/x-dwg, image/x-dxf, text/rtf, image/heic, application/x-eps, application/tif, text/svg, application/svg+xml, text/x-csv, application/vnd.oasis.opendocument.presentation, application/jpg, image/png, image/dxf, image/vnd.dwg, image/x-ms-bmp, image/svg, image/gif, text/svg-xml, application/x-csv, application/gzipped, image/svg+xml, application/vnd.openxmlformats-officedocument.wordprocessingml.document, application/vnd.oasis.opendocument.spreadsheet, image/jpeg, application/x-acad, application/x-rar, application/rtf, image/x-tif, pplication/vnd.rar, application/dxf, application/gzip-compressed, application/acrobat, drawing/dwg, application/excel, image/x-tiff, application/tiff, image/webp, application/vnd.oasis.opendocument.text, application/acad, image/x-bmp, application/zip, application/x-dxf, image/heif-sequence, image/bmp, application/x-jpg, application/x-zip-compressed, image/heic-sequence, application/x-autocad, drawing/x-dwf, image/jpg, application/vnd.openxmlformats-officedocument.spreadsheetml.sheet, application/x-rar-compressed, image/tif, application/vnd.openxmlformats-officedocument.presentationml.slideshow, application/x-pdf, application/eps.
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
- ): CreateToken
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
- ): RefreshToken
14907
+ ): TokenRefresh
14908
14908
 
14909
14909
  """Verify JWT token."""
14910
14910
  tokenVerify(
14911
14911
  """JWT token to validate."""
14912
14912
  token: String!
14913
- ): VerifyToken
14913
+ ): TokenVerify
14914
14914
 
14915
14915
  """Deactivate all JWT tokens of the currently authenticated user."""
14916
- tokensDeactivateAll: DeactivateAllUserTokens
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 CreateToken {
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 RefreshToken {
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 VerifyToken {
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 DeactivateAllUserTokens {
21868
+ type TokensDeactivateAll {
21869
21869
  accountErrors: [AccountError!]!
21870
21870
  }
21871
21871
 
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@nautical-commerce/graphql-schema",
3
- "version": "v1.80.0-43-g1cc4ee91b",
3
+ "version": "v1.80.0-44-g081739b71",
4
4
  "description": "## Getting Started",
5
5
  "main": "./nautical/schema.graphql",
6
6
  "scripts": {