@nautical-commerce/graphql-schema 1.56.0 → 1.56.1-10-g62ea1f5c6
Sign up to get free protection for your applications and to get access to all the features.
- package/nautical/schema.graphql +12 -47
- package/package.json +1 -1
package/nautical/schema.graphql
CHANGED
@@ -2580,7 +2580,6 @@ type User implements Node & ObjectWithMetadata {
|
|
2580
2580
|
"""Return the last n elements from the list."""
|
2581
2581
|
last: Int
|
2582
2582
|
): WishlistCountableConnection
|
2583
|
-
isMarketplaceAdmin: Boolean @deprecated(reason: "This is not accurate and will be removed on October 20th, 2024.")
|
2584
2583
|
isAffiliate: Boolean @deprecated(reason: "This will be removed on October 26, 2024 when affiliate support is removed.")
|
2585
2584
|
seller: Seller
|
2586
2585
|
hasMicrosite: Boolean @deprecated(reason: "This will be removed on October 26, 2024 when affiliate support is removed.")
|
@@ -3212,9 +3211,6 @@ type Product implements Node & ObjectWithMetadata {
|
|
3212
3211
|
"""Products primary location."""
|
3213
3212
|
primaryLocation: Location @deprecated(reason: "Locations will be removed on November 28, 2024.")
|
3214
3213
|
|
3215
|
-
"""Product configuration indicator."""
|
3216
|
-
productConfiguration: Int @deprecated(reason: "This will be removed on October 19, 2024.")
|
3217
|
-
|
3218
3214
|
"""
|
3219
3215
|
Product stock stats combining all variants in all warehouses. Requires MANAGE_PRODUCTS permission.
|
3220
3216
|
"""
|
@@ -9414,22 +9410,11 @@ enum ConfigurationTypeFieldEnum {
|
|
9414
9410
|
OUTPUT
|
9415
9411
|
}
|
9416
9412
|
|
9417
|
-
"""Represents a checkout page's
|
9413
|
+
"""Represents a checkout page's options."""
|
9418
9414
|
type CheckoutTheme implements Node {
|
9419
9415
|
"""The ID of the object"""
|
9420
9416
|
id: ID!
|
9421
9417
|
|
9422
|
-
"""Primary color in hex."""
|
9423
|
-
primaryColor: String
|
9424
|
-
|
9425
|
-
"""Secondary color in hex."""
|
9426
|
-
secondaryColor: String
|
9427
|
-
logo: Image
|
9428
|
-
|
9429
|
-
"""URL of favicon"""
|
9430
|
-
faviconUrl: String
|
9431
|
-
faviconImage: Image
|
9432
|
-
|
9433
9418
|
"""URL of the confirmation page."""
|
9434
9419
|
confirmationUrl: String!
|
9435
9420
|
}
|
@@ -13912,7 +13897,7 @@ type Mutation {
|
|
13912
13897
|
description: String
|
13913
13898
|
|
13914
13899
|
"""
|
13915
|
-
Used when uploading a new document or file in a multipart request that does not exist in the system already. Supported file types:
|
13900
|
+
Used when uploading a new document or file in a multipart request that does not exist in the system already. Supported file types: application/x-pdf, application/tif, application/gzip, application/x-eps, application/x-tif, text/x-pdf, application/x-acad, image/jpeg, application/vnd.openxmlformats-officedocument.wordprocessingml.document, application/csv, application/x-rar, image/heif, drawing/x-dwg, application/vnd.openxmlformats-officedocument.spreadsheetml.sheet, image/heic-sequence, application/gzip-compressed, image/svg, image/eps, image/x-tiff, application/tiff, image/bmp, application/zip, application/svg+xml, application/vnd.oasis.opendocument.presentation, image/dxf, application/x-tiff, application/dxf, application/rtf, application/dwg, image/vnd.dwg, application/msword, image/tiff, application/vnd.openxmlformats-officedocument.presentationml.slideshow, application/eps, drawing/dwg, application/x-tar, image/heic, text/rtf, image/x-dwg, application/x-csv, application/x-dwg, application/vnd.ms-powerpoint, image/heif-sequence, application/vnd.ms-word, application/x-autocad, application/vnd.ms-excel, application/vnd.openxmlformats-officedocument.presentationml.presentation, text/comma-separated-values, application/vnd.pdf, text/svg, application/pdf, application/vnd.oasis.opendocument.text, application/x-rtf, text/svg-xml, text/x-comma-separated-values, image/x-ms-bmp, drawing/x-dwf, application/x-jpg, image/svg+xml, image/x-tif, application/x-rar-compressed, image/x-bmp, application/jpg, text/pdf, application/vnd.oasis.opendocument.spreadsheet, application/x-gzip, image/png, pplication/vnd.rar, application/x-zip-compressed, text/plain, text/x-csv, image/tif, application/acrobat, text/csv, application/acad, image/x-eps, application/gzipped, image/x-dxf, application/postscript, application/x-dxf, application/excel, image/gif, image/jpg, image/webp.
|
13916
13901
|
"""
|
13917
13902
|
file: Upload!
|
13918
13903
|
|
@@ -19693,21 +19678,6 @@ type CheckoutThemeCreate {
|
|
19693
19678
|
}
|
19694
19679
|
|
19695
19680
|
input CheckoutThemeCreateInput {
|
19696
|
-
"""Primary color in hex."""
|
19697
|
-
primaryColor: String
|
19698
|
-
|
19699
|
-
"""Secondary color in hex."""
|
19700
|
-
secondaryColor: String
|
19701
|
-
|
19702
|
-
"""Logo file."""
|
19703
|
-
logo: Upload
|
19704
|
-
|
19705
|
-
"""Favicon file."""
|
19706
|
-
faviconImage: Upload
|
19707
|
-
|
19708
|
-
"""URL of the favicon."""
|
19709
|
-
faviconUrl: String
|
19710
|
-
|
19711
19681
|
"""URL of the confirmation page."""
|
19712
19682
|
confirmationUrl: String!
|
19713
19683
|
}
|
@@ -19720,21 +19690,6 @@ type CheckoutThemeUpdate {
|
|
19720
19690
|
}
|
19721
19691
|
|
19722
19692
|
input CheckoutThemeInput {
|
19723
|
-
"""Primary color in hex."""
|
19724
|
-
primaryColor: String
|
19725
|
-
|
19726
|
-
"""Secondary color in hex."""
|
19727
|
-
secondaryColor: String
|
19728
|
-
|
19729
|
-
"""Logo file."""
|
19730
|
-
logo: Upload
|
19731
|
-
|
19732
|
-
"""Favicon file."""
|
19733
|
-
faviconImage: Upload
|
19734
|
-
|
19735
|
-
"""URL of the favicon."""
|
19736
|
-
faviconUrl: String
|
19737
|
-
|
19738
19693
|
"""URL of the confirmation page."""
|
19739
19694
|
confirmationUrl: String
|
19740
19695
|
}
|
@@ -22117,6 +22072,8 @@ type DraftOrderCreate {
|
|
22117
22072
|
input DraftOrderCreateInput {
|
22118
22073
|
"""Billing address of the customer."""
|
22119
22074
|
billingAddress: AddressInput
|
22075
|
+
|
22076
|
+
"""Customer associated with the draft order."""
|
22120
22077
|
user: ID
|
22121
22078
|
|
22122
22079
|
"""Email address of the customer."""
|
@@ -22171,6 +22128,8 @@ type NauticalDraftOrderCreate {
|
|
22171
22128
|
input NauticalDraftOrderCreateInput {
|
22172
22129
|
"""Billing address of the customer."""
|
22173
22130
|
billingAddress: AddressInput
|
22131
|
+
|
22132
|
+
"""Customer associated with the draft order."""
|
22174
22133
|
user: ID
|
22175
22134
|
|
22176
22135
|
"""Email address of the customer."""
|
@@ -22219,6 +22178,8 @@ input NauticalHistoricalOrderInput {
|
|
22219
22178
|
|
22220
22179
|
"""Shipping address of the customer."""
|
22221
22180
|
shippingAddress: AddressInput
|
22181
|
+
|
22182
|
+
"""Customer associated with the draft order."""
|
22222
22183
|
user: ID
|
22223
22184
|
|
22224
22185
|
"""Email address of the customer."""
|
@@ -22390,6 +22351,8 @@ type DraftOrderUpdate {
|
|
22390
22351
|
input DraftOrderInput {
|
22391
22352
|
"""Billing address of the customer."""
|
22392
22353
|
billingAddress: AddressInput
|
22354
|
+
|
22355
|
+
"""Customer associated with the draft order."""
|
22393
22356
|
user: ID
|
22394
22357
|
|
22395
22358
|
"""Email address of the customer."""
|
@@ -22418,6 +22381,8 @@ type NauticalDraftOrderUpdate {
|
|
22418
22381
|
input NauticalDraftOrderInput {
|
22419
22382
|
"""Billing address of the customer."""
|
22420
22383
|
billingAddress: AddressInput
|
22384
|
+
|
22385
|
+
"""Customer associated with the draft order."""
|
22421
22386
|
user: ID
|
22422
22387
|
|
22423
22388
|
"""Email address of the customer."""
|