@nautical-commerce/graphql-schema 2.0.5 → 2.0.7-1-g11c731613
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 +22 -24
- package/package.json +1 -1
package/nautical/schema.graphql
CHANGED
|
@@ -8852,6 +8852,9 @@ type StorefrontTheme implements Node {
|
|
|
8852
8852
|
|
|
8853
8853
|
"""Font color in hex."""
|
|
8854
8854
|
fontColor: String
|
|
8855
|
+
|
|
8856
|
+
"""Whether to use this theme for the dashboard."""
|
|
8857
|
+
useForDashboard: Boolean
|
|
8855
8858
|
}
|
|
8856
8859
|
|
|
8857
8860
|
"""Font for a storefront."""
|
|
@@ -11930,7 +11933,7 @@ type Mutation {
|
|
|
11930
11933
|
description: String
|
|
11931
11934
|
|
|
11932
11935
|
"""
|
|
11933
|
-
Used when uploading a new document or file in a multipart request that does not exist in the system already. Supported file types: text/svg
|
|
11936
|
+
Used when uploading a new document or file in a multipart request that does not exist in the system already. Supported file types: text/svg, application/zip, application/gzip, application/dxf, image/x-ms-bmp, image/heic, image/tiff, image/x-tiff, image/x-bmp, application/vnd.ms-word, application/x-rtf, drawing/x-dwf, application/x-pdf, image/gif, pplication/vnd.rar, application/x-acad, application/dwg, application/vnd.oasis.opendocument.text, text/x-csv, application/gzip-compressed, text/csv, text/x-comma-separated-values, image/heif-sequence, application/vnd.oasis.opendocument.spreadsheet, drawing/x-dwg, application/vnd.ms-powerpoint, application/jpg, application/vnd.pdf, application/x-autocad, image/png, image/vnd.dwg, image/eps, image/x-eps, application/svg+xml, application/x-tiff, application/gzipped, image/webp, image/heif, image/x-tif, application/vnd.ms-excel, application/tiff, text/x-pdf, application/excel, application/tif, image/heic-sequence, application/x-rar, image/bmp, application/x-rar-compressed, image/svg, application/x-tar, image/x-dwg, application/eps, application/x-dxf, application/csv, text/comma-separated-values, application/x-gzip, image/jpg, application/x-jpg, image/dxf, application/x-csv, application/pdf, text/rtf, application/x-tif, image/svg+xml, image/x-dxf, application/acrobat, application/postscript, text/svg-xml, text/pdf, image/tif, drawing/dwg, application/acad, image/jpeg, application/vnd.oasis.opendocument.presentation, application/vnd.openxmlformats-officedocument.wordprocessingml.document, application/x-dwg, application/vnd.openxmlformats-officedocument.spreadsheetml.sheet, application/x-zip-compressed, text/plain, application/rtf, application/msword, application/x-eps, application/vnd.openxmlformats-officedocument.presentationml.slideshow, application/vnd.openxmlformats-officedocument.presentationml.presentation.
|
|
11934
11937
|
"""
|
|
11935
11938
|
file: Upload!
|
|
11936
11939
|
|
|
@@ -14302,7 +14305,7 @@ type Mutation {
|
|
|
14302
14305
|
"""Deletes a checkout."""
|
|
14303
14306
|
checkoutDelete(
|
|
14304
14307
|
"""Token of a checkout to delete."""
|
|
14305
|
-
token:
|
|
14308
|
+
token: UUID!
|
|
14306
14309
|
): CheckoutDelete
|
|
14307
14310
|
|
|
14308
14311
|
"""Adds purchase order number to a checkout."""
|
|
@@ -16538,6 +16541,9 @@ input StorefrontThemeInput {
|
|
|
16538
16541
|
|
|
16539
16542
|
"""Font color in hex."""
|
|
16540
16543
|
fontColor: String
|
|
16544
|
+
|
|
16545
|
+
"""Whether to use this theme for the dashboard."""
|
|
16546
|
+
useForDashboard: Boolean
|
|
16541
16547
|
}
|
|
16542
16548
|
|
|
16543
16549
|
"""Update a storefront theme."""
|
|
@@ -21518,9 +21524,6 @@ input UserCreateInput {
|
|
|
21518
21524
|
"""List of custom fields."""
|
|
21519
21525
|
customFields: [AttributeValueInput!]
|
|
21520
21526
|
|
|
21521
|
-
"""User is staff member."""
|
|
21522
|
-
isStaff: Boolean
|
|
21523
|
-
|
|
21524
21527
|
"""Marketplace VAT identification number"""
|
|
21525
21528
|
vatIdentificationNumber: String
|
|
21526
21529
|
|
|
@@ -21529,20 +21532,13 @@ input UserCreateInput {
|
|
|
21529
21532
|
"""
|
|
21530
21533
|
sendCustomerSetPasswordEmail: Boolean
|
|
21531
21534
|
|
|
21532
|
-
"""
|
|
21533
|
-
Seller to add customer to during staff upgrade, if no seller is supplied a new seller will be created.
|
|
21534
|
-
"""
|
|
21535
|
-
seller: ID
|
|
21536
|
-
|
|
21537
|
-
"""
|
|
21538
|
-
List of permission group IDs to which customer should be assigned during staff upgrade.
|
|
21539
|
-
"""
|
|
21540
|
-
addGroups: [ID!]
|
|
21541
|
-
|
|
21542
21535
|
"""
|
|
21543
21536
|
URL of a view where users should be redirected to set the password. URL in RFC 1808 format.
|
|
21544
21537
|
"""
|
|
21545
21538
|
redirectUrl: String
|
|
21539
|
+
|
|
21540
|
+
"""Upgrade customer to a staff member"""
|
|
21541
|
+
isStaff: Boolean @deprecated(reason: "Customer creation always produces a customer user, will be removed on January 15, 2026")
|
|
21546
21542
|
}
|
|
21547
21543
|
|
|
21548
21544
|
"""Updates an existing customer."""
|
|
@@ -21588,9 +21584,6 @@ input CustomerInput {
|
|
|
21588
21584
|
"""List of custom fields."""
|
|
21589
21585
|
customFields: [AttributeValueInput!]
|
|
21590
21586
|
|
|
21591
|
-
"""User is staff member."""
|
|
21592
|
-
isStaff: Boolean
|
|
21593
|
-
|
|
21594
21587
|
"""Marketplace VAT identification number"""
|
|
21595
21588
|
vatIdentificationNumber: String
|
|
21596
21589
|
|
|
@@ -21608,6 +21601,11 @@ input CustomerInput {
|
|
|
21608
21601
|
List of permission group IDs to which customer should be assigned during staff upgrade.
|
|
21609
21602
|
"""
|
|
21610
21603
|
addGroups: [ID!]
|
|
21604
|
+
|
|
21605
|
+
"""
|
|
21606
|
+
Upgrade customer to a staff member, if this is provided you must also provide values for seller and add_groups.
|
|
21607
|
+
"""
|
|
21608
|
+
isStaff: Boolean
|
|
21611
21609
|
}
|
|
21612
21610
|
|
|
21613
21611
|
"""Deletes a customer."""
|
|
@@ -21682,9 +21680,6 @@ input StaffCreateInput {
|
|
|
21682
21680
|
"""List of custom fields."""
|
|
21683
21681
|
customFields: [AttributeValueInput!]
|
|
21684
21682
|
|
|
21685
|
-
"""User is staff member."""
|
|
21686
|
-
isStaff: Boolean
|
|
21687
|
-
|
|
21688
21683
|
"""List of permission group IDs to which user should be assigned."""
|
|
21689
21684
|
addGroups: [ID!]
|
|
21690
21685
|
|
|
@@ -21695,6 +21690,9 @@ input StaffCreateInput {
|
|
|
21695
21690
|
URL of a view where users should be redirected to set the password. URL in RFC 1808 format.
|
|
21696
21691
|
"""
|
|
21697
21692
|
redirectUrl: String
|
|
21693
|
+
|
|
21694
|
+
"""User is staff member."""
|
|
21695
|
+
isStaff: Boolean @deprecated(reason: "Staff creation always produces a staff user, will be removed on January 15, 2026")
|
|
21698
21696
|
}
|
|
21699
21697
|
|
|
21700
21698
|
"""Updates an existing staff user."""
|
|
@@ -21734,9 +21732,6 @@ input StaffUpdateInput {
|
|
|
21734
21732
|
"""List of custom fields."""
|
|
21735
21733
|
customFields: [AttributeValueInput!]
|
|
21736
21734
|
|
|
21737
|
-
"""User is staff member."""
|
|
21738
|
-
isStaff: Boolean
|
|
21739
|
-
|
|
21740
21735
|
"""List of permission group IDs to which user should be assigned."""
|
|
21741
21736
|
addGroups: [ID!]
|
|
21742
21737
|
|
|
@@ -21745,6 +21740,9 @@ input StaffUpdateInput {
|
|
|
21745
21740
|
|
|
21746
21741
|
"""List of permission group IDs from which user should be unassigned."""
|
|
21747
21742
|
removeGroups: [ID!]
|
|
21743
|
+
|
|
21744
|
+
"""User is staff member."""
|
|
21745
|
+
isStaff: Boolean @deprecated(reason: "Staff update always produces a staff user, will be removed on January 15, 2026")
|
|
21748
21746
|
}
|
|
21749
21747
|
|
|
21750
21748
|
"""Deletes a staff user."""
|