@nautical-commerce/graphql-schema 1.56.1-1-gdf344edd2 → 1.56.1-11-gab1c139df
Sign up to get free protection for your applications and to get access to all the features.
- package/nautical/schema.graphql +11 -5
- 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
|
"""
|
@@ -13901,7 +13897,7 @@ type Mutation {
|
|
13901
13897
|
description: String
|
13902
13898
|
|
13903
13899
|
"""
|
13904
|
-
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/vnd.openxmlformats-officedocument.presentationml.presentation, application/vnd.ms-word, text/rtf, application/vnd.pdf, application/vnd.ms-powerpoint, drawing/x-dwg, image/heif-sequence, application/x-autocad, application/gzipped, application/gzip-compressed, application/acad, application/x-tar, application/acrobat, image/heif, application/tif, drawing/x-dwf, application/tiff, text/svg-xml, application/zip, application/x-zip-compressed, image/heic-sequence, application/vnd.openxmlformats-officedocument.spreadsheetml.sheet, image/x-tif, application/postscript, image/x-ms-bmp, application/x-rar, image/dxf, text/plain, application/x-tif, image/x-tiff, text/pdf, image/eps, text/svg, image/x-bmp, image/svg+xml, image/tiff, image/x-eps, application/vnd.oasis.opendocument.spreadsheet, pplication/vnd.rar, image/tif, image/vnd.dwg, image/svg, application/x-eps, application/jpg, application/x-dwg, application/vnd.openxmlformats-officedocument.wordprocessingml.document, application/rtf, application/svg+xml, drawing/dwg, application/vnd.oasis.opendocument.presentation, application/x-jpg, application/x-rtf, application/vnd.oasis.opendocument.text, application/x-gzip, application/dxf, image/bmp, application/x-csv, image/x-dxf, text/comma-separated-values, application/vnd.openxmlformats-officedocument.presentationml.slideshow, image/jpeg, application/dwg, application/pdf, application/x-pdf, application/x-rar-compressed, application/eps, application/msword, image/png, text/x-comma-separated-values, text/x-csv, image/jpg, application/csv, image/gif, image/heic, application/x-dxf, image/webp, application/vnd.ms-excel, application/gzip, text/csv, application/x-acad, text/x-pdf, image/x-dwg, application/x-tiff, application/excel.
|
13905
13901
|
"""
|
13906
13902
|
file: Upload!
|
13907
13903
|
|
@@ -22076,6 +22072,8 @@ type DraftOrderCreate {
|
|
22076
22072
|
input DraftOrderCreateInput {
|
22077
22073
|
"""Billing address of the customer."""
|
22078
22074
|
billingAddress: AddressInput
|
22075
|
+
|
22076
|
+
"""Customer associated with the draft order."""
|
22079
22077
|
user: ID
|
22080
22078
|
|
22081
22079
|
"""Email address of the customer."""
|
@@ -22130,6 +22128,8 @@ type NauticalDraftOrderCreate {
|
|
22130
22128
|
input NauticalDraftOrderCreateInput {
|
22131
22129
|
"""Billing address of the customer."""
|
22132
22130
|
billingAddress: AddressInput
|
22131
|
+
|
22132
|
+
"""Customer associated with the draft order."""
|
22133
22133
|
user: ID
|
22134
22134
|
|
22135
22135
|
"""Email address of the customer."""
|
@@ -22178,6 +22178,8 @@ input NauticalHistoricalOrderInput {
|
|
22178
22178
|
|
22179
22179
|
"""Shipping address of the customer."""
|
22180
22180
|
shippingAddress: AddressInput
|
22181
|
+
|
22182
|
+
"""Customer associated with the draft order."""
|
22181
22183
|
user: ID
|
22182
22184
|
|
22183
22185
|
"""Email address of the customer."""
|
@@ -22349,6 +22351,8 @@ type DraftOrderUpdate {
|
|
22349
22351
|
input DraftOrderInput {
|
22350
22352
|
"""Billing address of the customer."""
|
22351
22353
|
billingAddress: AddressInput
|
22354
|
+
|
22355
|
+
"""Customer associated with the draft order."""
|
22352
22356
|
user: ID
|
22353
22357
|
|
22354
22358
|
"""Email address of the customer."""
|
@@ -22377,6 +22381,8 @@ type NauticalDraftOrderUpdate {
|
|
22377
22381
|
input NauticalDraftOrderInput {
|
22378
22382
|
"""Billing address of the customer."""
|
22379
22383
|
billingAddress: AddressInput
|
22384
|
+
|
22385
|
+
"""Customer associated with the draft order."""
|
22380
22386
|
user: ID
|
22381
22387
|
|
22382
22388
|
"""Email address of the customer."""
|