@nautical-commerce/graphql-schema 1.68.0-6-gc683c68de → 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 -31
- 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: application/x-
|
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
|
|
@@ -17086,13 +17059,13 @@ input AgreementInput {
|
|
17086
17059
|
updatedAt: String
|
17087
17060
|
|
17088
17061
|
"""Gross Price, Markup, Absolute etc"""
|
17089
|
-
commissionType: CommissionTypeEnum
|
17062
|
+
commissionType: CommissionTypeEnum @deprecated(reason: "This will be removed on April 23, 2025.")
|
17090
17063
|
|
17091
17064
|
"""Percentage by default"""
|
17092
|
-
markupCommissionType: MarkupCommissionTypeEnum
|
17065
|
+
markupCommissionType: MarkupCommissionTypeEnum @deprecated(reason: "This will be removed on April 23, 2025.")
|
17093
17066
|
|
17094
17067
|
"""Markup commission percentage for all items"""
|
17095
|
-
markupCommissionValue: Decimal
|
17068
|
+
markupCommissionValue: Decimal @deprecated(reason: "This will be removed on April 23, 2025.")
|
17096
17069
|
}
|
17097
17070
|
|
17098
17071
|
input SeoInput {
|
@@ -17103,6 +17076,22 @@ input SeoInput {
|
|
17103
17076
|
description: String
|
17104
17077
|
}
|
17105
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
|
+
|
17106
17095
|
"""Deletes a agreement."""
|
17107
17096
|
type AgreementDelete {
|
17108
17097
|
agreementErrors: [AgreementError!]!
|