@nautical-commerce/graphql-schema 1.99.3-1-g9ab363c95 → 1.99.3-2-ge51e3a892
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 +15 -13
- package/package.json +1 -1
package/nautical/schema.graphql
CHANGED
@@ -11826,7 +11826,7 @@ type Mutation {
|
|
11826
11826
|
description: String
|
11827
11827
|
|
11828
11828
|
"""
|
11829
|
-
Used when uploading a new document or file in a multipart request that does not exist in the system already. Supported file types: image/
|
11829
|
+
Used when uploading a new document or file in a multipart request that does not exist in the system already. Supported file types: application/excel, image/x-bmp, application/x-csv, application/x-jpg, application/gzipped, image/x-ms-bmp, text/x-pdf, drawing/x-dwf, application/vnd.oasis.opendocument.text, application/vnd.oasis.opendocument.spreadsheet, image/x-tiff, application/pdf, image/webp, image/heic, application/vnd.pdf, application/csv, application/x-rar, drawing/dwg, application/x-rar-compressed, application/jpg, application/x-tar, image/x-tif, application/zip, text/plain, application/acrobat, image/svg, image/vnd.dwg, image/gif, image/eps, application/x-rtf, application/vnd.openxmlformats-officedocument.wordprocessingml.document, image/png, image/jpeg, application/dwg, text/csv, application/vnd.openxmlformats-officedocument.presentationml.presentation, drawing/x-dwg, application/vnd.ms-word, application/x-zip-compressed, application/x-tif, image/bmp, application/vnd.ms-powerpoint, application/x-dwg, image/jpg, text/x-csv, application/svg+xml, application/rtf, text/comma-separated-values, image/dxf, application/x-autocad, text/svg-xml, application/gzip, application/postscript, text/pdf, application/x-tiff, application/eps, text/x-comma-separated-values, application/gzip-compressed, image/tif, application/x-eps, application/vnd.oasis.opendocument.presentation, image/heic-sequence, application/x-acad, image/heif-sequence, application/x-gzip, application/msword, application/x-dxf, text/svg, application/dxf, image/heif, text/rtf, image/x-eps, image/x-dwg, application/vnd.openxmlformats-officedocument.spreadsheetml.sheet, image/tiff, application/tiff, application/vnd.openxmlformats-officedocument.presentationml.slideshow, application/x-pdf, application/acad, application/tif, pplication/vnd.rar, image/x-dxf, application/vnd.ms-excel, image/svg+xml.
|
11830
11830
|
"""
|
11831
11831
|
file: Upload!
|
11832
11832
|
|
@@ -21101,6 +21101,7 @@ enum AccountErrorCode {
|
|
21101
21101
|
OUT_OF_SCOPE_USER
|
21102
21102
|
OUT_OF_SCOPE_GROUP
|
21103
21103
|
OUT_OF_SCOPE_PERMISSION
|
21104
|
+
OUT_OF_SCOPE_SELLER
|
21104
21105
|
PASSWORD_ENTIRELY_NUMERIC
|
21105
21106
|
PASSWORD_IDENTICAL
|
21106
21107
|
PASSWORD_TOO_COMMON
|
@@ -21400,9 +21401,6 @@ input UserCreateInput {
|
|
21400
21401
|
"""User account is active."""
|
21401
21402
|
isActive: Boolean
|
21402
21403
|
|
21403
|
-
"""User is staff member."""
|
21404
|
-
isStaff: Boolean
|
21405
|
-
|
21406
21404
|
"""A note about the user."""
|
21407
21405
|
note: String
|
21408
21406
|
|
@@ -21460,9 +21458,6 @@ input CustomerInput {
|
|
21460
21458
|
"""User account is active."""
|
21461
21459
|
isActive: Boolean
|
21462
21460
|
|
21463
|
-
"""User is staff member."""
|
21464
|
-
isStaff: Boolean
|
21465
|
-
|
21466
21461
|
"""A note about the user."""
|
21467
21462
|
note: String
|
21468
21463
|
|
@@ -21488,6 +21483,19 @@ input CustomerInput {
|
|
21488
21483
|
Indicates whether a 'set password' email should be sent to the customer.
|
21489
21484
|
"""
|
21490
21485
|
sendCustomerSetPasswordEmail: Boolean
|
21486
|
+
|
21487
|
+
"""True if the customer is being upraded to a staff member."""
|
21488
|
+
isStaff: Boolean
|
21489
|
+
|
21490
|
+
"""
|
21491
|
+
Seller to add customer to during staff upgrade, if no seller is supplied a new seller will be created.
|
21492
|
+
"""
|
21493
|
+
seller: ID
|
21494
|
+
|
21495
|
+
"""
|
21496
|
+
List of permission group IDs to which customer should be assigned during staff upgrade.
|
21497
|
+
"""
|
21498
|
+
addGroups: [ID!]
|
21491
21499
|
}
|
21492
21500
|
|
21493
21501
|
"""Deletes a customer."""
|
@@ -21544,9 +21552,6 @@ input StaffCreateInput {
|
|
21544
21552
|
"""User account is active."""
|
21545
21553
|
isActive: Boolean
|
21546
21554
|
|
21547
|
-
"""User is staff member."""
|
21548
|
-
isStaff: Boolean
|
21549
|
-
|
21550
21555
|
"""A note about the user."""
|
21551
21556
|
note: String
|
21552
21557
|
|
@@ -21596,9 +21601,6 @@ input StaffUpdateInput {
|
|
21596
21601
|
"""User account is active."""
|
21597
21602
|
isActive: Boolean
|
21598
21603
|
|
21599
|
-
"""User is staff member."""
|
21600
|
-
isStaff: Boolean
|
21601
|
-
|
21602
21604
|
"""A note about the user."""
|
21603
21605
|
note: String
|
21604
21606
|
|