@nautical-commerce/graphql-schema 1.56.1-9-g2b63b5cbf → 1.57.0-1-g8c65351c2
Sign up to get free protection for your applications and to get access to all the features.
- package/nautical/schema.graphql +29 -82
- package/package.json +1 -1
package/nautical/schema.graphql
CHANGED
@@ -1794,7 +1794,6 @@ type Query {
|
|
1794
1794
|
): VoucherCountableConnection
|
1795
1795
|
designerdata(name: String): DesignerDataType
|
1796
1796
|
designerdatalist: [DesignerDataType!]!
|
1797
|
-
branding: BrandingType! @deprecated(reason: "This will be removed on October 25, 2024")
|
1798
1797
|
|
1799
1798
|
"""Token nexessary for connecting to the embedded integration platform"""
|
1800
1799
|
integrationEmbeddingToken: String
|
@@ -5933,6 +5932,9 @@ type Fulfillment implements Node & ObjectWithMetadata {
|
|
5933
5932
|
|
5934
5933
|
"""Total price across all quantities across all lines."""
|
5935
5934
|
totalLinesMoney: Money!
|
5935
|
+
|
5936
|
+
"""List of custom fields assigned to this fulfillment."""
|
5937
|
+
customFields: [SelectedAttribute!]!
|
5936
5938
|
}
|
5937
5939
|
|
5938
5940
|
"""An enumeration."""
|
@@ -7397,10 +7399,18 @@ type Agreement implements Node & ObjectWithMetadata {
|
|
7397
7399
|
slug: String!
|
7398
7400
|
title: String!
|
7399
7401
|
vendorType: AgreementVendorType!
|
7400
|
-
|
7402
|
+
|
7403
|
+
"""Commission type"""
|
7404
|
+
commissionType: CommissionTypeEnum! @deprecated(reason: "Markup commissions will be removed on January 23, 2025.")
|
7401
7405
|
defaultCommission: Decimal!
|
7402
|
-
|
7403
|
-
|
7406
|
+
|
7407
|
+
"""Markup commission type"""
|
7408
|
+
markupCommissionType: MarkupCommissionTypeEnum! @deprecated(reason: "Markup commissions will be removed on January 23, 2025.")
|
7409
|
+
|
7410
|
+
"""
|
7411
|
+
If a markup commission is selected, this is the amount of the commission.
|
7412
|
+
"""
|
7413
|
+
markupCommissionValue: Decimal @deprecated(reason: "Markup commissions will be removed on January 23, 2025.")
|
7404
7414
|
agreementType: AgreementAgreementType!
|
7405
7415
|
isActive: Boolean
|
7406
7416
|
|
@@ -7429,8 +7439,7 @@ enum AgreementVendorType {
|
|
7429
7439
|
AFFILIATE
|
7430
7440
|
}
|
7431
7441
|
|
7432
|
-
|
7433
|
-
enum AgreementCommissionType {
|
7442
|
+
enum CommissionTypeEnum {
|
7434
7443
|
"""Gross Price Commission"""
|
7435
7444
|
MARKETPLACE
|
7436
7445
|
|
@@ -7441,8 +7450,7 @@ enum AgreementCommissionType {
|
|
7441
7450
|
DROPSHIPPING
|
7442
7451
|
}
|
7443
7452
|
|
7444
|
-
|
7445
|
-
enum AgreementMarkupCommissionType {
|
7453
|
+
enum MarkupCommissionTypeEnum {
|
7446
7454
|
"""Percentage"""
|
7447
7455
|
PERCENTAGE
|
7448
7456
|
}
|
@@ -9141,7 +9149,7 @@ type Shop {
|
|
9141
9149
|
loginForPrice: Boolean
|
9142
9150
|
|
9143
9151
|
"""Is authenticated user required to view product listings."""
|
9144
|
-
loginForProducts: Boolean
|
9152
|
+
loginForProducts: Boolean @deprecated(reason: "This will be removed on November 22, 2024. Use the loginForPrice setting instead.")
|
9145
9153
|
|
9146
9154
|
"""Gets active plugins."""
|
9147
9155
|
activePlugins: [Plugin!]!
|
@@ -9426,6 +9434,9 @@ type StorefrontTheme implements Node {
|
|
9426
9434
|
|
9427
9435
|
"""Primary color in hex."""
|
9428
9436
|
primaryColor: String
|
9437
|
+
|
9438
|
+
"""Background color in hex."""
|
9439
|
+
backgroundColor: String
|
9429
9440
|
logo: Image
|
9430
9441
|
faviconImage: Image
|
9431
9442
|
|
@@ -13369,27 +13380,6 @@ type DesignerDataType {
|
|
13369
13380
|
jsonContent: JSONString!
|
13370
13381
|
}
|
13371
13382
|
|
13372
|
-
type BrandingType {
|
13373
|
-
id: ID!
|
13374
|
-
tenant: Tenant!
|
13375
|
-
jsonContent: JSONString!
|
13376
|
-
logo(
|
13377
|
-
"""Size of the image."""
|
13378
|
-
size: Int
|
13379
|
-
): Image
|
13380
|
-
icon(
|
13381
|
-
"""Size of the image."""
|
13382
|
-
size: Int
|
13383
|
-
): Image
|
13384
|
-
favicon(
|
13385
|
-
"""Size of the image."""
|
13386
|
-
size: Int
|
13387
|
-
): Image
|
13388
|
-
logoHeight: Int
|
13389
|
-
logoWidth: Int
|
13390
|
-
footerText: String!
|
13391
|
-
}
|
13392
|
-
|
13393
13383
|
"""Represents a job data of exported file."""
|
13394
13384
|
type ExportFile implements Node & Job {
|
13395
13385
|
"""The ID of the object"""
|
@@ -13647,6 +13637,7 @@ enum CustomFieldTemplateEnum {
|
|
13647
13637
|
VARIANT
|
13648
13638
|
CATEGORY
|
13649
13639
|
COLLECTION
|
13640
|
+
FULFILLMENT
|
13650
13641
|
}
|
13651
13642
|
|
13652
13643
|
"""Represents ongoing installation of app."""
|
@@ -13897,7 +13888,7 @@ type Mutation {
|
|
13897
13888
|
description: String
|
13898
13889
|
|
13899
13890
|
"""
|
13900
|
-
Used when uploading a new document or file in a multipart request that does not exist in the system already. Supported file types:
|
13891
|
+
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.oasis.opendocument.presentation, image/x-tiff, text/comma-separated-values, application/x-acad, application/vnd.ms-excel, text/plain, application/csv, application/gzip-compressed, application/dxf, application/x-jpg, application/x-tif, application/x-dxf, image/vnd.dwg, image/eps, drawing/dwg, application/excel, application/acrobat, image/gif, image/heic, application/x-rar-compressed, text/x-csv, application/rtf, image/x-tif, application/x-tar, text/svg-xml, image/x-dxf, application/tiff, image/webp, image/heif-sequence, application/vnd.openxmlformats-officedocument.wordprocessingml.document, application/x-eps, application/x-csv, application/vnd.oasis.opendocument.text, image/svg, application/x-rar, image/x-dwg, application/gzipped, application/pdf, image/tiff, image/x-bmp, image/jpg, image/x-eps, application/x-zip-compressed, application/vnd.ms-powerpoint, application/svg+xml, image/x-ms-bmp, application/vnd.openxmlformats-officedocument.presentationml.slideshow, application/eps, image/tif, image/svg+xml, application/x-gzip, text/rtf, image/bmp, application/tif, application/dwg, application/vnd.oasis.opendocument.spreadsheet, application/x-pdf, text/x-comma-separated-values, application/x-tiff, image/jpeg, application/msword, image/png, text/pdf, image/heif, application/postscript, drawing/x-dwf, application/jpg, image/dxf, application/x-autocad, drawing/x-dwg, application/vnd.openxmlformats-officedocument.presentationml.presentation, application/vnd.ms-word, application/zip, application/gzip, text/svg, application/vnd.pdf, application/vnd.openxmlformats-officedocument.spreadsheetml.sheet, text/csv, text/x-pdf, application/acad, image/heic-sequence, application/x-dwg, application/x-rtf, pplication/vnd.rar.
|
13901
13892
|
"""
|
13902
13893
|
file: Upload!
|
13903
13894
|
|
@@ -14573,12 +14564,6 @@ type Mutation {
|
|
14573
14564
|
"""Update existing designer data."""
|
14574
14565
|
designerDataUpdate(input: DesignerDataInput, name: String!): DesignerDataUpdate
|
14575
14566
|
|
14576
|
-
"""Update existing branding."""
|
14577
|
-
brandingUpdate(input: BrandingInput): BrandingUpdate @deprecated(reason: "This will be removed on October 25, 2024")
|
14578
|
-
|
14579
|
-
"""Delete branding images."""
|
14580
|
-
brandingImagesDelete(favicon: Boolean, icon: Boolean, logo: Boolean): BrandingImagesDelete @deprecated(reason: "This will be removed on October 25, 2024")
|
14581
|
-
|
14582
14567
|
"""Create core data."""
|
14583
14568
|
coreDataCreate(input: CoreDataInput!): CoreDataCreate @deprecated(reason: "This will be removed on October 25, 2024")
|
14584
14569
|
|
@@ -18637,22 +18622,6 @@ enum VendorTypeEnum {
|
|
18637
18622
|
AFFILIATE
|
18638
18623
|
}
|
18639
18624
|
|
18640
|
-
enum CommissionTypeEnum {
|
18641
|
-
"""Gross Price Commission"""
|
18642
|
-
MARKETPLACE
|
18643
|
-
|
18644
|
-
"""Markup Commission"""
|
18645
|
-
WHOLESALE
|
18646
|
-
|
18647
|
-
"""Absolute Price Commission"""
|
18648
|
-
DROPSHIPPING
|
18649
|
-
}
|
18650
|
-
|
18651
|
-
enum MarkupCommissionTypeEnum {
|
18652
|
-
"""Percentage"""
|
18653
|
-
PERCENTAGE
|
18654
|
-
}
|
18655
|
-
|
18656
18625
|
"""Deletes a agreement."""
|
18657
18626
|
type AgreementDelete {
|
18658
18627
|
agreementErrors: [AgreementError!]!
|
@@ -19132,35 +19101,6 @@ type DesignerDataUpdate {
|
|
19132
19101
|
designerErrors: [MarketplaceConfigurationError!]!
|
19133
19102
|
}
|
19134
19103
|
|
19135
|
-
"""Update existing branding."""
|
19136
|
-
type BrandingUpdate {
|
19137
|
-
ok: Boolean
|
19138
|
-
branding: BrandingType
|
19139
|
-
brandingErrors: [MarketplaceConfigurationError!]!
|
19140
|
-
}
|
19141
|
-
|
19142
|
-
input BrandingInput {
|
19143
|
-
jsonContent: JSONString
|
19144
|
-
|
19145
|
-
"""Logo file."""
|
19146
|
-
logo: Upload
|
19147
|
-
logoHeight: Int
|
19148
|
-
logoWidth: Int
|
19149
|
-
|
19150
|
-
"""Icon file."""
|
19151
|
-
icon: Upload
|
19152
|
-
footerText: String
|
19153
|
-
|
19154
|
-
"""Favicon file."""
|
19155
|
-
favicon: Upload
|
19156
|
-
}
|
19157
|
-
|
19158
|
-
"""Delete branding images."""
|
19159
|
-
type BrandingImagesDelete {
|
19160
|
-
branding: BrandingType
|
19161
|
-
brandingErrors: [MarketplaceConfigurationError!]!
|
19162
|
-
}
|
19163
|
-
|
19164
19104
|
"""Create core data."""
|
19165
19105
|
type CoreDataCreate {
|
19166
19106
|
ok: Boolean
|
@@ -19705,6 +19645,9 @@ input StorefrontThemeInput {
|
|
19705
19645
|
"""Primary color in hex."""
|
19706
19646
|
primaryColor: String
|
19707
19647
|
|
19648
|
+
"""Background color in hex."""
|
19649
|
+
backgroundColor: String
|
19650
|
+
|
19708
19651
|
"""Logo file."""
|
19709
19652
|
logo: Upload
|
19710
19653
|
|
@@ -21999,6 +21942,7 @@ type OrderError {
|
|
21999
21942
|
|
22000
21943
|
"""An enumeration."""
|
22001
21944
|
enum OrderErrorCode {
|
21945
|
+
ATTRIBUTE_CANNOT_BE_ASSIGNED
|
22002
21946
|
BILLING_ADDRESS_NOT_SET
|
22003
21947
|
CANNOT_ADD_FEE
|
22004
21948
|
CANNOT_CANCEL_FULFILLMENT
|
@@ -22600,6 +22544,9 @@ input OrderFulfillInput {
|
|
22600
22544
|
allow Marketplace Admin users to fulfill order lines with null variants.
|
22601
22545
|
"""
|
22602
22546
|
allowNullVariants: Boolean
|
22547
|
+
|
22548
|
+
"""List of custom fields."""
|
22549
|
+
customFields: [AttributeValueInput!]
|
22603
22550
|
}
|
22604
22551
|
|
22605
22552
|
input OrderFulfillLineInput {
|