@nautical-commerce/graphql-schema 1.68.0-5-g27189790c → 1.68.0-7-g51d39e010
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 +20 -34
- package/package.json +1 -1
package/nautical/schema.graphql
CHANGED
@@ -7080,18 +7080,7 @@ type Agreement implements Node {
|
|
7080
7080
|
seoDescription: String
|
7081
7081
|
slug: String!
|
7082
7082
|
title: String!
|
7083
|
-
|
7084
|
-
"""Commission type"""
|
7085
|
-
commissionType: CommissionTypeEnum! @deprecated(reason: "Markup commissions will be removed on January 23, 2025.")
|
7086
7083
|
defaultCommission: Decimal!
|
7087
|
-
|
7088
|
-
"""Markup commission type"""
|
7089
|
-
markupCommissionType: MarkupCommissionTypeEnum! @deprecated(reason: "Markup commissions will be removed on January 23, 2025.")
|
7090
|
-
|
7091
|
-
"""
|
7092
|
-
If a markup commission is selected, this is the amount of the commission.
|
7093
|
-
"""
|
7094
|
-
markupCommissionValue: Decimal @deprecated(reason: "Markup commissions will be removed on January 23, 2025.")
|
7095
7084
|
isActive: Boolean
|
7096
7085
|
|
7097
7086
|
"""List of granular commissions associated with the agreement."""
|
@@ -7102,22 +7091,6 @@ type Agreement implements Node {
|
|
7102
7091
|
fees: [AgreementFees!]!
|
7103
7092
|
}
|
7104
7093
|
|
7105
|
-
enum CommissionTypeEnum {
|
7106
|
-
"""Gross Price Commission"""
|
7107
|
-
MARKETPLACE
|
7108
|
-
|
7109
|
-
"""Markup Commission"""
|
7110
|
-
WHOLESALE
|
7111
|
-
|
7112
|
-
"""Absolute Price Commission"""
|
7113
|
-
DROPSHIPPING
|
7114
|
-
}
|
7115
|
-
|
7116
|
-
enum MarkupCommissionTypeEnum {
|
7117
|
-
"""Percentage"""
|
7118
|
-
PERCENTAGE
|
7119
|
-
}
|
7120
|
-
|
7121
7094
|
"""An agreement commission"""
|
7122
7095
|
type AgreementCommission implements Node {
|
7123
7096
|
"""The ID of the object"""
|
@@ -13217,7 +13190,7 @@ type Mutation {
|
|
13217
13190
|
description: String
|
13218
13191
|
|
13219
13192
|
"""
|
13220
|
-
Used when uploading a new document or file in a multipart request that does not exist in the system already. Supported file types: text/
|
13193
|
+
Used when uploading a new document or file in a multipart request that does not exist in the system already. Supported file types: text/pdf, application/x-gzip, application/excel, application/gzip-compressed, application/vnd.ms-excel, image/x-tif, application/eps, application/x-tar, application/x-rar, image/bmp, application/vnd.pdf, application/vnd.openxmlformats-officedocument.presentationml.slideshow, application/x-jpg, application/x-dwg, image/webp, application/x-eps, text/rtf, application/x-zip-compressed, image/eps, image/heif, image/x-dwg, application/zip, image/x-ms-bmp, image/heic, application/dwg, application/rtf, image/tiff, image/jpg, image/tif, text/svg-xml, application/vnd.oasis.opendocument.spreadsheet, application/x-autocad, text/plain, application/x-tif, text/csv, application/vnd.oasis.opendocument.presentation, image/heic-sequence, image/svg, application/x-tiff, application/postscript, application/vnd.openxmlformats-officedocument.presentationml.presentation, image/x-dxf, application/csv, application/pdf, drawing/dwg, image/x-eps, application/dxf, text/comma-separated-values, image/jpeg, application/acrobat, application/vnd.ms-word, text/x-comma-separated-values, application/acad, drawing/x-dwg, application/vnd.openxmlformats-officedocument.spreadsheetml.sheet, image/gif, drawing/x-dwf, image/vnd.dwg, application/vnd.ms-powerpoint, application/tif, application/x-acad, application/vnd.oasis.opendocument.text, application/x-dxf, application/gzipped, application/vnd.openxmlformats-officedocument.wordprocessingml.document, application/svg+xml, image/heif-sequence, image/x-bmp, application/msword, image/png, application/x-pdf, application/x-rar-compressed, application/jpg, application/x-csv, image/svg+xml, image/dxf, pplication/vnd.rar, image/x-tiff, application/x-rtf, text/x-pdf, application/gzip, text/x-csv, text/svg, application/tiff.
|
13221
13194
|
"""
|
13222
13195
|
file: Upload!
|
13223
13196
|
|
@@ -15636,9 +15609,6 @@ type Mutation {
|
|
15636
15609
|
"""Checkout ID."""
|
15637
15610
|
checkoutId: ID!
|
15638
15611
|
|
15639
|
-
"""ID of microsite that checkout was completed from"""
|
15640
|
-
microsite: ID @deprecated(reason: "This will be removed on January 24, 2025.")
|
15641
|
-
|
15642
15612
|
"""Client-side generated data required to finalize the payment."""
|
15643
15613
|
paymentData: JSONString
|
15644
15614
|
|
@@ -17089,13 +17059,13 @@ input AgreementInput {
|
|
17089
17059
|
updatedAt: String
|
17090
17060
|
|
17091
17061
|
"""Gross Price, Markup, Absolute etc"""
|
17092
|
-
commissionType: CommissionTypeEnum
|
17062
|
+
commissionType: CommissionTypeEnum @deprecated(reason: "This will be removed on April 23, 2025.")
|
17093
17063
|
|
17094
17064
|
"""Percentage by default"""
|
17095
|
-
markupCommissionType: MarkupCommissionTypeEnum
|
17065
|
+
markupCommissionType: MarkupCommissionTypeEnum @deprecated(reason: "This will be removed on April 23, 2025.")
|
17096
17066
|
|
17097
17067
|
"""Markup commission percentage for all items"""
|
17098
|
-
markupCommissionValue: Decimal
|
17068
|
+
markupCommissionValue: Decimal @deprecated(reason: "This will be removed on April 23, 2025.")
|
17099
17069
|
}
|
17100
17070
|
|
17101
17071
|
input SeoInput {
|
@@ -17106,6 +17076,22 @@ input SeoInput {
|
|
17106
17076
|
description: String
|
17107
17077
|
}
|
17108
17078
|
|
17079
|
+
enum CommissionTypeEnum {
|
17080
|
+
"""Gross Price Commission"""
|
17081
|
+
MARKETPLACE
|
17082
|
+
|
17083
|
+
"""Markup Commission"""
|
17084
|
+
WHOLESALE
|
17085
|
+
|
17086
|
+
"""Absolute Price Commission"""
|
17087
|
+
DROPSHIPPING
|
17088
|
+
}
|
17089
|
+
|
17090
|
+
enum MarkupCommissionTypeEnum {
|
17091
|
+
"""Percentage"""
|
17092
|
+
PERCENTAGE
|
17093
|
+
}
|
17094
|
+
|
17109
17095
|
"""Deletes a agreement."""
|
17110
17096
|
type AgreementDelete {
|
17111
17097
|
agreementErrors: [AgreementError!]!
|