@nautical-commerce/graphql-schema 1.66.0-10-g1b56e8bd5 → 1.66.0-12-gc08baba6c
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 +6 -6
- package/package.json +1 -1
package/nautical/schema.graphql
CHANGED
@@ -13209,7 +13209,7 @@ type Mutation {
|
|
13209
13209
|
description: String
|
13210
13210
|
|
13211
13211
|
"""
|
13212
|
-
Used when uploading a new document or file in a multipart request that does not exist in the system already. Supported file types: application/
|
13212
|
+
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.text, application/svg+xml, application/zip, text/comma-separated-values, application/vnd.openxmlformats-officedocument.presentationml.slideshow, application/vnd.openxmlformats-officedocument.spreadsheetml.sheet, image/vnd.dwg, text/pdf, image/eps, image/heif-sequence, pplication/vnd.rar, image/gif, application/x-dxf, application/vnd.ms-excel, text/x-csv, application/dxf, application/gzipped, application/msword, image/svg+xml, application/x-jpg, drawing/x-dwf, image/dxf, application/x-autocad, application/x-tif, text/csv, image/x-tif, text/rtf, image/bmp, text/plain, text/svg, application/x-gzip, application/x-rar, image/tif, image/x-tiff, application/jpg, application/dwg, image/heif, text/x-comma-separated-values, image/webp, application/excel, application/x-pdf, image/x-dxf, application/x-acad, application/tif, drawing/dwg, text/svg-xml, image/x-ms-bmp, text/x-pdf, application/vnd.openxmlformats-officedocument.presentationml.presentation, application/acad, image/heic, application/vnd.openxmlformats-officedocument.wordprocessingml.document, application/vnd.pdf, image/x-eps, application/x-tar, application/x-zip-compressed, image/x-dwg, application/vnd.ms-word, image/x-bmp, application/rtf, application/x-rar-compressed, image/jpg, application/vnd.oasis.opendocument.spreadsheet, application/vnd.oasis.opendocument.presentation, application/pdf, image/heic-sequence, image/jpeg, application/tiff, image/svg, application/acrobat, drawing/x-dwg, image/tiff, application/eps, application/gzip, application/gzip-compressed, application/x-csv, application/x-eps, application/x-rtf, application/vnd.ms-powerpoint, application/postscript, application/csv, application/x-dwg, application/x-tiff, image/png.
|
13213
13213
|
"""
|
13214
13214
|
file: Upload!
|
13215
13215
|
|
@@ -16370,7 +16370,7 @@ type Mutation {
|
|
16370
16370
|
permissionGroupCreate(
|
16371
16371
|
"""Input fields to create permission group."""
|
16372
16372
|
input: PermissionGroupCreateInput!
|
16373
|
-
): PermissionGroupCreate
|
16373
|
+
): PermissionGroupCreate @deprecated(reason: "This will be removed on April 14, 2025")
|
16374
16374
|
|
16375
16375
|
"""Update permission group."""
|
16376
16376
|
permissionGroupUpdate(
|
@@ -16385,7 +16385,7 @@ type Mutation {
|
|
16385
16385
|
permissionGroupDelete(
|
16386
16386
|
"""ID of the group to delete."""
|
16387
16387
|
id: ID!
|
16388
|
-
): PermissionGroupDelete
|
16388
|
+
): PermissionGroupDelete @deprecated(reason: "This will be removed on April 14, 2025")
|
16389
16389
|
}
|
16390
16390
|
|
16391
16391
|
"""EmailTemplate update mutation."""
|
@@ -23816,7 +23816,7 @@ enum PermissionGroupErrorCode {
|
|
23816
23816
|
|
23817
23817
|
input PermissionGroupCreateInput {
|
23818
23818
|
"""List of permission code names to assign to this group."""
|
23819
|
-
addPermissions: [PermissionEnum!]
|
23819
|
+
addPermissions: [PermissionEnum!] @deprecated(reason: "This will be removed on April 14, 2025")
|
23820
23820
|
|
23821
23821
|
"""List of users to assign to this group."""
|
23822
23822
|
addUsers: [ID!]
|
@@ -23833,7 +23833,7 @@ type PermissionGroupUpdate {
|
|
23833
23833
|
|
23834
23834
|
input PermissionGroupUpdateInput {
|
23835
23835
|
"""List of permission code names to assign to this group."""
|
23836
|
-
addPermissions: [PermissionEnum!]
|
23836
|
+
addPermissions: [PermissionEnum!] @deprecated(reason: "This will be removed on April 14, 2025")
|
23837
23837
|
|
23838
23838
|
"""List of users to assign to this group."""
|
23839
23839
|
addUsers: [ID!]
|
@@ -23842,7 +23842,7 @@ input PermissionGroupUpdateInput {
|
|
23842
23842
|
name: String
|
23843
23843
|
|
23844
23844
|
"""List of permission code names to unassign from this group."""
|
23845
|
-
removePermissions: [PermissionEnum!]
|
23845
|
+
removePermissions: [PermissionEnum!] @deprecated(reason: "This will be removed on April 14, 2025")
|
23846
23846
|
|
23847
23847
|
"""List of users to unassign from this group."""
|
23848
23848
|
removeUsers: [ID!]
|