@nautical-commerce/graphql-schema 1.78.0-17-g32b12f173 → 1.78.0-19-g304dc8f97
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 +3 -44
- package/package.json +1 -1
package/nautical/schema.graphql
CHANGED
@@ -13160,7 +13160,7 @@ type Mutation {
|
|
13160
13160
|
description: String
|
13161
13161
|
|
13162
13162
|
"""
|
13163
|
-
Used when uploading a new document or file in a multipart request that does not exist in the system already. Supported file types:
|
13163
|
+
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-csv, text/rtf, image/heif, application/excel, application/vnd.ms-powerpoint, application/postscript, image/x-ms-bmp, application/x-pdf, application/x-tif, image/dxf, application/vnd.openxmlformats-officedocument.spreadsheetml.sheet, image/png, application/vnd.openxmlformats-officedocument.presentationml.slideshow, application/rtf, text/svg-xml, image/gif, application/gzipped, text/comma-separated-values, image/tif, pplication/vnd.rar, application/vnd.oasis.opendocument.presentation, application/gzip-compressed, application/dxf, application/acrobat, application/vnd.ms-word, application/msword, application/x-gzip, application/gzip, application/x-rar, image/jpeg, image/heic, application/pdf, application/x-acad, image/x-dxf, text/csv, text/plain, application/zip, image/jpg, application/x-zip-compressed, application/eps, image/eps, application/csv, application/x-dxf, application/vnd.ms-excel, image/svg, application/tif, application/x-jpg, image/vnd.dwg, image/tiff, application/svg+xml, application/vnd.pdf, text/pdf, application/dwg, application/x-rar-compressed, image/x-eps, image/heif-sequence, text/svg, drawing/x-dwg, application/x-tar, text/x-pdf, application/x-eps, application/acad, image/x-bmp, application/x-dwg, application/x-autocad, drawing/dwg, image/heic-sequence, image/x-tiff, image/svg+xml, application/jpg, application/x-rtf, application/vnd.openxmlformats-officedocument.wordprocessingml.document, text/x-comma-separated-values, application/x-tiff, application/vnd.openxmlformats-officedocument.presentationml.presentation, application/vnd.oasis.opendocument.spreadsheet, image/webp, image/x-tif, application/vnd.oasis.opendocument.text, application/tiff, image/bmp, image/x-dwg, drawing/x-dwf, application/x-csv.
|
13164
13164
|
"""
|
13165
13165
|
file: Upload!
|
13166
13166
|
|
@@ -16305,12 +16305,6 @@ type Mutation {
|
|
16305
16305
|
isActive: Boolean!
|
16306
16306
|
): UserBulkSetActive
|
16307
16307
|
|
16308
|
-
"""Create new permission group."""
|
16309
|
-
permissionGroupCreate(
|
16310
|
-
"""Input fields to create permission group."""
|
16311
|
-
input: PermissionGroupCreateInput!
|
16312
|
-
): PermissionGroupCreate @deprecated(reason: "This will be removed on April 14, 2025")
|
16313
|
-
|
16314
16308
|
"""Update permission group."""
|
16315
16309
|
permissionGroupUpdate(
|
16316
16310
|
"""ID of the group to update."""
|
@@ -16319,12 +16313,6 @@ type Mutation {
|
|
16319
16313
|
"""Input fields to create permission group."""
|
16320
16314
|
input: PermissionGroupUpdateInput!
|
16321
16315
|
): PermissionGroupUpdate
|
16322
|
-
|
16323
|
-
"""Delete permission group."""
|
16324
|
-
permissionGroupDelete(
|
16325
|
-
"""ID of the group to delete."""
|
16326
|
-
id: ID!
|
16327
|
-
): PermissionGroupDelete @deprecated(reason: "This will be removed on April 14, 2025")
|
16328
16316
|
}
|
16329
16317
|
|
16330
16318
|
"""EmailTemplate update mutation."""
|
@@ -23802,8 +23790,8 @@ type UserBulkSetActive {
|
|
23802
23790
|
accountErrors: [AccountError!]!
|
23803
23791
|
}
|
23804
23792
|
|
23805
|
-
"""
|
23806
|
-
type
|
23793
|
+
"""Update permission group."""
|
23794
|
+
type PermissionGroupUpdate {
|
23807
23795
|
permissionGroupErrors: [PermissionGroupError!]!
|
23808
23796
|
group: Group
|
23809
23797
|
}
|
@@ -23839,46 +23827,17 @@ enum PermissionGroupErrorCode {
|
|
23839
23827
|
UNIQUE
|
23840
23828
|
}
|
23841
23829
|
|
23842
|
-
input PermissionGroupCreateInput {
|
23843
|
-
"""List of permission code names to assign to this group."""
|
23844
|
-
addPermissions: [PermissionEnum!] @deprecated(reason: "This will be removed on April 14, 2025")
|
23845
|
-
|
23846
|
-
"""List of users to assign to this group."""
|
23847
|
-
addUsers: [ID!]
|
23848
|
-
|
23849
|
-
"""Group name."""
|
23850
|
-
name: String!
|
23851
|
-
}
|
23852
|
-
|
23853
|
-
"""Update permission group."""
|
23854
|
-
type PermissionGroupUpdate {
|
23855
|
-
permissionGroupErrors: [PermissionGroupError!]!
|
23856
|
-
group: Group
|
23857
|
-
}
|
23858
|
-
|
23859
23830
|
input PermissionGroupUpdateInput {
|
23860
|
-
"""List of permission code names to assign to this group."""
|
23861
|
-
addPermissions: [PermissionEnum!] @deprecated(reason: "This will be removed on April 14, 2025")
|
23862
|
-
|
23863
23831
|
"""List of users to assign to this group."""
|
23864
23832
|
addUsers: [ID!]
|
23865
23833
|
|
23866
23834
|
"""Group name."""
|
23867
23835
|
name: String
|
23868
23836
|
|
23869
|
-
"""List of permission code names to unassign from this group."""
|
23870
|
-
removePermissions: [PermissionEnum!] @deprecated(reason: "This will be removed on April 14, 2025")
|
23871
|
-
|
23872
23837
|
"""List of users to unassign from this group."""
|
23873
23838
|
removeUsers: [ID!]
|
23874
23839
|
}
|
23875
23840
|
|
23876
|
-
"""Delete permission group."""
|
23877
|
-
type PermissionGroupDelete {
|
23878
|
-
permissionGroupErrors: [PermissionGroupError!]!
|
23879
|
-
group: Group
|
23880
|
-
}
|
23881
|
-
|
23882
23841
|
"""
|
23883
23842
|
A string-serialized scalar represents a set of fields that's passed to a federated directive, such as @key, @requires, or @provides
|
23884
23843
|
"""
|