@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.
- package/nautical/schema.graphql +1 -43
- package/package.json +1 -1
package/nautical/schema.graphql
CHANGED
|
@@ -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:
|
|
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
|