@nautical-commerce/graphql-schema 1.56.1-3-g974c7fd01 → 1.56.1-31-ge24327658
Sign up to get free protection for your applications and to get access to all the features.
- package/nautical/schema.graphql +39 -29
- 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
|
"""
|
@@ -5937,6 +5933,9 @@ type Fulfillment implements Node & ObjectWithMetadata {
|
|
5937
5933
|
|
5938
5934
|
"""Total price across all quantities across all lines."""
|
5939
5935
|
totalLinesMoney: Money!
|
5936
|
+
|
5937
|
+
"""List of custom fields assigned to this fulfillment."""
|
5938
|
+
customFields: [SelectedAttribute!]!
|
5940
5939
|
}
|
5941
5940
|
|
5942
5941
|
"""An enumeration."""
|
@@ -7401,10 +7400,18 @@ type Agreement implements Node & ObjectWithMetadata {
|
|
7401
7400
|
slug: String!
|
7402
7401
|
title: String!
|
7403
7402
|
vendorType: AgreementVendorType!
|
7404
|
-
|
7403
|
+
|
7404
|
+
"""Commission type"""
|
7405
|
+
commissionType: CommissionTypeEnum! @deprecated(reason: "Markup commissions will be removed on January 23, 2025.")
|
7405
7406
|
defaultCommission: Decimal!
|
7406
|
-
|
7407
|
-
|
7407
|
+
|
7408
|
+
"""Markup commission type"""
|
7409
|
+
markupCommissionType: MarkupCommissionTypeEnum! @deprecated(reason: "Markup commissions will be removed on January 23, 2025.")
|
7410
|
+
|
7411
|
+
"""
|
7412
|
+
If a markup commission is selected, this is the amount of the commission.
|
7413
|
+
"""
|
7414
|
+
markupCommissionValue: Decimal @deprecated(reason: "Markup commissions will be removed on January 23, 2025.")
|
7408
7415
|
agreementType: AgreementAgreementType!
|
7409
7416
|
isActive: Boolean
|
7410
7417
|
|
@@ -7433,8 +7440,7 @@ enum AgreementVendorType {
|
|
7433
7440
|
AFFILIATE
|
7434
7441
|
}
|
7435
7442
|
|
7436
|
-
|
7437
|
-
enum AgreementCommissionType {
|
7443
|
+
enum CommissionTypeEnum {
|
7438
7444
|
"""Gross Price Commission"""
|
7439
7445
|
MARKETPLACE
|
7440
7446
|
|
@@ -7445,8 +7451,7 @@ enum AgreementCommissionType {
|
|
7445
7451
|
DROPSHIPPING
|
7446
7452
|
}
|
7447
7453
|
|
7448
|
-
|
7449
|
-
enum AgreementMarkupCommissionType {
|
7454
|
+
enum MarkupCommissionTypeEnum {
|
7450
7455
|
"""Percentage"""
|
7451
7456
|
PERCENTAGE
|
7452
7457
|
}
|
@@ -9145,7 +9150,7 @@ type Shop {
|
|
9145
9150
|
loginForPrice: Boolean
|
9146
9151
|
|
9147
9152
|
"""Is authenticated user required to view product listings."""
|
9148
|
-
loginForProducts: Boolean
|
9153
|
+
loginForProducts: Boolean @deprecated(reason: "This will be removed on November 22, 2024. Use the loginForPrice setting instead.")
|
9149
9154
|
|
9150
9155
|
"""Gets active plugins."""
|
9151
9156
|
activePlugins: [Plugin!]!
|
@@ -9430,6 +9435,9 @@ type StorefrontTheme implements Node {
|
|
9430
9435
|
|
9431
9436
|
"""Primary color in hex."""
|
9432
9437
|
primaryColor: String
|
9438
|
+
|
9439
|
+
"""Background color in hex."""
|
9440
|
+
backgroundColor: String
|
9433
9441
|
logo: Image
|
9434
9442
|
faviconImage: Image
|
9435
9443
|
|
@@ -13651,6 +13659,7 @@ enum CustomFieldTemplateEnum {
|
|
13651
13659
|
VARIANT
|
13652
13660
|
CATEGORY
|
13653
13661
|
COLLECTION
|
13662
|
+
FULFILLMENT
|
13654
13663
|
}
|
13655
13664
|
|
13656
13665
|
"""Represents ongoing installation of app."""
|
@@ -13901,7 +13910,7 @@ type Mutation {
|
|
13901
13910
|
description: String
|
13902
13911
|
|
13903
13912
|
"""
|
13904
|
-
Used when uploading a new document or file in a multipart request that does not exist in the system already. Supported file types: application/
|
13913
|
+
Used when uploading a new document or file in a multipart request that does not exist in the system already. Supported file types: application/acrobat, text/svg, image/eps, application/x-gzip, application/x-rar-compressed, application/gzipped, application/x-eps, application/x-dwg, application/svg+xml, text/rtf, image/svg, application/x-pdf, application/vnd.oasis.opendocument.presentation, application/dxf, application/x-rar, application/x-zip-compressed, drawing/dwg, application/vnd.oasis.opendocument.text, image/x-tif, image/vnd.dwg, application/x-tar, application/x-tiff, image/png, application/gzip, image/x-dwg, text/comma-separated-values, application/eps, application/msword, application/x-acad, image/x-dxf, image/jpeg, application/x-autocad, text/csv, application/x-rtf, application/tiff, image/tif, application/x-tif, application/dwg, text/pdf, text/svg-xml, pplication/vnd.rar, image/tiff, drawing/x-dwf, text/x-csv, application/pdf, application/vnd.openxmlformats-officedocument.presentationml.presentation, application/vnd.ms-powerpoint, application/jpg, application/x-csv, image/x-bmp, text/plain, drawing/x-dwg, application/vnd.ms-word, image/svg+xml, image/heif, image/heif-sequence, image/heic-sequence, application/zip, image/gif, application/x-dxf, image/x-tiff, application/vnd.openxmlformats-officedocument.spreadsheetml.sheet, application/excel, application/tif, application/rtf, text/x-comma-separated-values, image/heic, image/x-ms-bmp, image/dxf, text/x-pdf, image/jpg, application/vnd.openxmlformats-officedocument.presentationml.slideshow, application/gzip-compressed, image/x-eps, application/csv, image/bmp, application/vnd.oasis.opendocument.spreadsheet, application/vnd.pdf, application/vnd.ms-excel, application/postscript, application/vnd.openxmlformats-officedocument.wordprocessingml.document, application/acad, image/webp, application/x-jpg.
|
13905
13914
|
"""
|
13906
13915
|
file: Upload!
|
13907
13916
|
|
@@ -18641,22 +18650,6 @@ enum VendorTypeEnum {
|
|
18641
18650
|
AFFILIATE
|
18642
18651
|
}
|
18643
18652
|
|
18644
|
-
enum CommissionTypeEnum {
|
18645
|
-
"""Gross Price Commission"""
|
18646
|
-
MARKETPLACE
|
18647
|
-
|
18648
|
-
"""Markup Commission"""
|
18649
|
-
WHOLESALE
|
18650
|
-
|
18651
|
-
"""Absolute Price Commission"""
|
18652
|
-
DROPSHIPPING
|
18653
|
-
}
|
18654
|
-
|
18655
|
-
enum MarkupCommissionTypeEnum {
|
18656
|
-
"""Percentage"""
|
18657
|
-
PERCENTAGE
|
18658
|
-
}
|
18659
|
-
|
18660
18653
|
"""Deletes a agreement."""
|
18661
18654
|
type AgreementDelete {
|
18662
18655
|
agreementErrors: [AgreementError!]!
|
@@ -19709,6 +19702,9 @@ input StorefrontThemeInput {
|
|
19709
19702
|
"""Primary color in hex."""
|
19710
19703
|
primaryColor: String
|
19711
19704
|
|
19705
|
+
"""Background color in hex."""
|
19706
|
+
backgroundColor: String
|
19707
|
+
|
19712
19708
|
"""Logo file."""
|
19713
19709
|
logo: Upload
|
19714
19710
|
|
@@ -22003,6 +21999,7 @@ type OrderError {
|
|
22003
21999
|
|
22004
22000
|
"""An enumeration."""
|
22005
22001
|
enum OrderErrorCode {
|
22002
|
+
ATTRIBUTE_CANNOT_BE_ASSIGNED
|
22006
22003
|
BILLING_ADDRESS_NOT_SET
|
22007
22004
|
CANNOT_ADD_FEE
|
22008
22005
|
CANNOT_CANCEL_FULFILLMENT
|
@@ -22076,6 +22073,8 @@ type DraftOrderCreate {
|
|
22076
22073
|
input DraftOrderCreateInput {
|
22077
22074
|
"""Billing address of the customer."""
|
22078
22075
|
billingAddress: AddressInput
|
22076
|
+
|
22077
|
+
"""Customer associated with the draft order."""
|
22079
22078
|
user: ID
|
22080
22079
|
|
22081
22080
|
"""Email address of the customer."""
|
@@ -22130,6 +22129,8 @@ type NauticalDraftOrderCreate {
|
|
22130
22129
|
input NauticalDraftOrderCreateInput {
|
22131
22130
|
"""Billing address of the customer."""
|
22132
22131
|
billingAddress: AddressInput
|
22132
|
+
|
22133
|
+
"""Customer associated with the draft order."""
|
22133
22134
|
user: ID
|
22134
22135
|
|
22135
22136
|
"""Email address of the customer."""
|
@@ -22178,6 +22179,8 @@ input NauticalHistoricalOrderInput {
|
|
22178
22179
|
|
22179
22180
|
"""Shipping address of the customer."""
|
22180
22181
|
shippingAddress: AddressInput
|
22182
|
+
|
22183
|
+
"""Customer associated with the draft order."""
|
22181
22184
|
user: ID
|
22182
22185
|
|
22183
22186
|
"""Email address of the customer."""
|
@@ -22349,6 +22352,8 @@ type DraftOrderUpdate {
|
|
22349
22352
|
input DraftOrderInput {
|
22350
22353
|
"""Billing address of the customer."""
|
22351
22354
|
billingAddress: AddressInput
|
22355
|
+
|
22356
|
+
"""Customer associated with the draft order."""
|
22352
22357
|
user: ID
|
22353
22358
|
|
22354
22359
|
"""Email address of the customer."""
|
@@ -22377,6 +22382,8 @@ type NauticalDraftOrderUpdate {
|
|
22377
22382
|
input NauticalDraftOrderInput {
|
22378
22383
|
"""Billing address of the customer."""
|
22379
22384
|
billingAddress: AddressInput
|
22385
|
+
|
22386
|
+
"""Customer associated with the draft order."""
|
22380
22387
|
user: ID
|
22381
22388
|
|
22382
22389
|
"""Email address of the customer."""
|
@@ -22594,6 +22601,9 @@ input OrderFulfillInput {
|
|
22594
22601
|
allow Marketplace Admin users to fulfill order lines with null variants.
|
22595
22602
|
"""
|
22596
22603
|
allowNullVariants: Boolean
|
22604
|
+
|
22605
|
+
"""List of custom fields."""
|
22606
|
+
customFields: [AttributeValueInput!]
|
22597
22607
|
}
|
22598
22608
|
|
22599
22609
|
input OrderFulfillLineInput {
|