@nautical-commerce/graphql-schema 1.53.1-2-ga7b9f0ee5 → 1.53.1

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.
@@ -13941,15 +13941,6 @@ type _Service {
13941
13941
  }
13942
13942
 
13943
13943
  type Mutation {
13944
- """EmailTemplate update mutation."""
13945
- emailTemplateUpdate(
13946
- """ID of the email template to update."""
13947
- id: ID!
13948
-
13949
- """Fields to update on the email template."""
13950
- input: EmailTemplateUpdateInput!
13951
- ): EmailTemplateUpdate
13952
-
13953
13944
  """Create a tenant"""
13954
13945
  tenantCreate(
13955
13946
  """Fields required to create Tenant"""
@@ -13972,7 +13963,7 @@ type Mutation {
13972
13963
  description: String
13973
13964
 
13974
13965
  """
13975
- Used when uploading a new document or file in a multipart request that does not exist in the system already. Supported file types: application/pdf, application/x-tiff, image/jpeg, application/dxf, image/tiff, application/jpg, application/vnd.ms-excel, application/vnd.oasis.opendocument.presentation, application/x-acad, application/postscript, application/x-zip-compressed, drawing/x-dwf, application/tiff, application/excel, application/csv, image/heic-sequence, application/gzip, application/vnd.openxmlformats-officedocument.presentationml.slideshow, application/msword, application/x-rar, application/x-rtf, image/dxf, image/x-dxf, image/heif, application/rtf, application/x-pdf, application/x-dwg, image/svg+xml, application/vnd.openxmlformats-officedocument.spreadsheetml.sheet, application/x-rar-compressed, application/acrobat, application/gzip-compressed, application/x-autocad, application/zip, application/x-csv, application/x-eps, text/x-pdf, image/x-tiff, application/vnd.oasis.opendocument.spreadsheet, application/vnd.openxmlformats-officedocument.presentationml.presentation, application/acad, text/x-csv, drawing/dwg, image/webp, image/x-dwg, image/heic, application/dwg, image/heif-sequence, text/rtf, image/png, text/svg, application/eps, image/eps, text/x-comma-separated-values, image/bmp, image/x-ms-bmp, image/svg, application/vnd.ms-word, image/tif, application/tif, text/pdf, application/vnd.ms-powerpoint, image/jpg, application/x-dxf, text/csv, application/x-jpg, image/x-eps, application/x-tif, image/x-tif, application/vnd.openxmlformats-officedocument.wordprocessingml.document, application/vnd.oasis.opendocument.text, application/x-tar, image/gif, application/gzipped, text/svg-xml, drawing/x-dwg, image/x-bmp, text/plain, application/x-gzip, text/comma-separated-values, image/vnd.dwg, pplication/vnd.rar, application/svg+xml, application/vnd.pdf.
13966
+ Used when uploading a new document or file in a multipart request that does not exist in the system already. Supported file types: text/pdf, application/x-tif, image/bmp, image/vnd.dwg, application/postscript, text/x-comma-separated-values, application/vnd.openxmlformats-officedocument.presentationml.presentation, image/svg+xml, application/vnd.ms-excel, application/dwg, application/x-dxf, application/x-csv, application/gzip-compressed, text/rtf, image/x-ms-bmp, drawing/x-dwg, image/png, application/gzipped, image/tiff, image/heic, application/acrobat, application/zip, application/x-rar, application/x-autocad, application/tif, application/svg+xml, application/x-zip-compressed, text/x-pdf, application/vnd.openxmlformats-officedocument.wordprocessingml.document, image/x-dxf, application/vnd.pdf, application/x-dwg, image/x-eps, text/plain, image/jpeg, application/csv, application/x-tar, application/eps, application/vnd.oasis.opendocument.spreadsheet, text/comma-separated-values, drawing/x-dwf, application/x-jpg, application/excel, application/x-pdf, application/rtf, text/svg, application/x-gzip, application/x-rtf, image/heif-sequence, text/csv, application/x-eps, application/x-acad, text/svg-xml, image/x-tif, application/acad, drawing/dwg, application/x-rar-compressed, application/vnd.openxmlformats-officedocument.presentationml.slideshow, application/msword, image/eps, image/tif, image/x-bmp, pplication/vnd.rar, application/tiff, image/svg, application/x-tiff, application/pdf, application/vnd.openxmlformats-officedocument.spreadsheetml.sheet, image/webp, application/vnd.ms-word, image/gif, text/x-csv, image/heic-sequence, image/jpg, image/x-dwg, image/dxf, application/vnd.ms-powerpoint, application/vnd.oasis.opendocument.presentation, application/gzip, image/x-tiff, application/vnd.oasis.opendocument.text, application/dxf, application/jpg, image/heif.
13976
13967
  """
13977
13968
  file: Upload!
13978
13969
 
@@ -17379,39 +17370,6 @@ type Mutation {
17379
17370
  ): PermissionGroupDelete
17380
17371
  }
17381
17372
 
17382
- """EmailTemplate update mutation."""
17383
- type EmailTemplateUpdate {
17384
- emailTemplate: EmailTemplate
17385
- notificationErrors: [NotificationError!]!
17386
- }
17387
-
17388
- type NotificationError {
17389
- """
17390
- Name of a field that caused the error. A value of `null` indicates that the error isn't associated with a particular field.
17391
- """
17392
- field: String
17393
-
17394
- """The error message."""
17395
- message: String!
17396
-
17397
- """The error code."""
17398
- code: NotificationErrorCode!
17399
- }
17400
-
17401
- """An enumeration."""
17402
- enum NotificationErrorCode {
17403
- GRAPHQL_ERROR
17404
- NOT_FOUND
17405
- REQUIRED
17406
- INVALID
17407
- }
17408
-
17409
- """Input type for email template update."""
17410
- input EmailTemplateUpdateInput {
17411
- """The content of the email template."""
17412
- content: String
17413
- }
17414
-
17415
17373
  """Create a tenant"""
17416
17374
  type TenantCreate {
17417
17375
  tenant: Tenant
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@nautical-commerce/graphql-schema",
3
- "version": "v1.53.1-2-ga7b9f0ee5",
3
+ "version": "v1.53.1",
4
4
  "description": "## Getting Started",
5
5
  "main": "./nautical/schema.graphql",
6
6
  "scripts": {