@nautical-commerce/graphql-schema 1.68.2 → 1.69.0-10-g52246944c
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 +117 -209
- package/package.json +1 -1
package/nautical/schema.graphql
CHANGED
@@ -442,7 +442,7 @@ type Query {
|
|
442
442
|
|
443
443
|
"""Return the last n elements from the list."""
|
444
444
|
last: Int
|
445
|
-
): UserCountableConnection
|
445
|
+
): UserCountableConnection @deprecated(reason: "This will be removed on April 29, 2025.")
|
446
446
|
availablePlans(
|
447
447
|
query: String
|
448
448
|
|
@@ -457,7 +457,7 @@ type Query {
|
|
457
457
|
|
458
458
|
"""Return the last n elements from the list."""
|
459
459
|
last: Int
|
460
|
-
): AgreementCountableConnection
|
460
|
+
): AgreementCountableConnection @deprecated(reason: "This will be removed on April 29, 2025.")
|
461
461
|
sellerListCards(period: ReportingPeriod!, identifier: ID): SellerCards @deprecated(reason: "This will be removed on April 16, 2025")
|
462
462
|
sellerDetailCards(period: ReportingPeriod!, identifier: ID!): SellerDetailCards @deprecated(reason: "This will be removed on April 16, 2025")
|
463
463
|
|
@@ -733,7 +733,7 @@ type Query {
|
|
733
733
|
|
734
734
|
"""Return the last n elements from the list."""
|
735
735
|
last: Int
|
736
|
-
): ProductVariantCountableConnection
|
736
|
+
): ProductVariantCountableConnection @deprecated(reason: "This will be removed on April 29, 2025.")
|
737
737
|
|
738
738
|
"""Look up a price book by ID."""
|
739
739
|
priceBook(
|
@@ -985,7 +985,7 @@ type Query {
|
|
985
985
|
thirdPartyProducts(
|
986
986
|
"""Third-party source name"""
|
987
987
|
source: String!
|
988
|
-
): GenericScalar
|
988
|
+
): GenericScalar @deprecated(reason: "This will be removed on April 29, 2025")
|
989
989
|
|
990
990
|
"""Get third party product in form we can use for import"""
|
991
991
|
importThirdPartyProduct(
|
@@ -994,16 +994,16 @@ type Query {
|
|
994
994
|
|
995
995
|
"""ID of the third party product to import"""
|
996
996
|
id: ID!
|
997
|
-
): GenericScalar
|
997
|
+
): GenericScalar @deprecated(reason: "This will be removed on April 29, 2025")
|
998
998
|
|
999
999
|
"""List of plugins that are available as product import sources"""
|
1000
|
-
availableImportSources: [Plugin!]
|
1000
|
+
availableImportSources: [Plugin!] @deprecated(reason: "This will be removed on April 29, 2025")
|
1001
1001
|
|
1002
1002
|
"""Look up a catalog import process by ID."""
|
1003
1003
|
catalogImportProcess(
|
1004
1004
|
"""ID of the catalog import process."""
|
1005
1005
|
id: ID!
|
1006
|
-
): CatalogImportProcess
|
1006
|
+
): CatalogImportProcess @deprecated(reason: "This will be removed on April 29, 2025")
|
1007
1007
|
|
1008
1008
|
"""List of catalog import processes."""
|
1009
1009
|
catalogImportProcesses(
|
@@ -1024,7 +1024,7 @@ type Query {
|
|
1024
1024
|
|
1025
1025
|
"""Return the last n elements from the list."""
|
1026
1026
|
last: Int
|
1027
|
-
): CatalogImportProcessCountableConnection
|
1027
|
+
): CatalogImportProcessCountableConnection @deprecated(reason: "This will be removed on April 29, 2025")
|
1028
1028
|
|
1029
1029
|
"""
|
1030
1030
|
List of tax exempt code supported by Avalara. Required permission: MANAGE_MARKETPLACE. Note: doesn't support app auth.
|
@@ -1143,9 +1143,6 @@ type Query {
|
|
1143
1143
|
payoutId: ID
|
1144
1144
|
): VendorPayoutReport
|
1145
1145
|
vendorPayoutList(
|
1146
|
-
"""Vendor type of the payout"""
|
1147
|
-
vendorType: String @deprecated(reason: "This will be removed on February 1, 2025.")
|
1148
|
-
|
1149
1146
|
"""Vendor ID"""
|
1150
1147
|
vendorId: ID
|
1151
1148
|
): SingleVendorPayoutReport
|
@@ -1219,7 +1216,7 @@ type Query {
|
|
1219
1216
|
|
1220
1217
|
"""Return the last n elements from the list."""
|
1221
1218
|
last: Int
|
1222
|
-
): OrderEventCountableConnection
|
1219
|
+
): OrderEventCountableConnection @deprecated(reason: "This will be removed on April 29, 2025.")
|
1223
1220
|
|
1224
1221
|
"""
|
1225
1222
|
List of activity events to display on homepage (at the moment it only contains nautical-order-events).
|
@@ -1236,7 +1233,7 @@ type Query {
|
|
1236
1233
|
|
1237
1234
|
"""Return the last n elements from the list."""
|
1238
1235
|
last: Int
|
1239
|
-
): NauticalOrderEventCountableConnection
|
1236
|
+
): NauticalOrderEventCountableConnection @deprecated(reason: "This will be removed on April 29, 2025.")
|
1240
1237
|
|
1241
1238
|
"""Look up an order by ID."""
|
1242
1239
|
order(
|
@@ -1457,7 +1454,7 @@ type Query {
|
|
1457
1454
|
|
1458
1455
|
"""End date to filter cards and order data"""
|
1459
1456
|
endDate: Date!
|
1460
|
-
): OptimizedHome
|
1457
|
+
): OptimizedHome @deprecated(reason: "This will be removed on April 29, 2025.")
|
1461
1458
|
|
1462
1459
|
"""Return requested nautical configuration item"""
|
1463
1460
|
nauticalConfiguration(
|
@@ -2032,7 +2029,7 @@ type Query {
|
|
2032
2029
|
|
2033
2030
|
"""Sublocality like a district."""
|
2034
2031
|
cityArea: String
|
2035
|
-
): AddressValidationData!
|
2032
|
+
): AddressValidationData! @deprecated(reason: "This will be removed on April 29, 2025.")
|
2036
2033
|
|
2037
2034
|
"""Look up an address by ID."""
|
2038
2035
|
address(
|
@@ -2823,7 +2820,7 @@ type CheckoutLine implements Node & ObjectWithMetadata {
|
|
2823
2820
|
requiresShipping: Boolean
|
2824
2821
|
|
2825
2822
|
"""User info on the seller's underlying owner."""
|
2826
|
-
seller:
|
2823
|
+
seller: Seller
|
2827
2824
|
|
2828
2825
|
"""
|
2829
2826
|
The unit price of line which is the discounted price after pricebooks and sale application
|
@@ -2862,7 +2859,6 @@ type ProductVariant implements Node & ObjectWithMetadata {
|
|
2862
2859
|
"""Whether the product variant is published."""
|
2863
2860
|
isPublished: Boolean!
|
2864
2861
|
overrideCurrency: Boolean!
|
2865
|
-
requiresQuote: Boolean!
|
2866
2862
|
allowBackorders: Boolean
|
2867
2863
|
|
2868
2864
|
"""
|
@@ -2963,11 +2959,15 @@ type ProductVariant implements Node & ObjectWithMetadata {
|
|
2963
2959
|
|
2964
2960
|
"""List of vouchers associated with the product."""
|
2965
2961
|
vouchers: [Voucher!]!
|
2962
|
+
requiresQuote: Boolean @deprecated(reason: "This field will be removed on April 25th, 2025.")
|
2966
2963
|
|
2967
2964
|
"""
|
2968
2965
|
The sub status of the product variant. This will be the same as product's sub status.
|
2969
2966
|
"""
|
2970
2967
|
subStatus: ProductSubStatusEnum
|
2968
|
+
|
2969
|
+
"""Product dimensions."""
|
2970
|
+
dimensions: ProductDimensions
|
2971
2971
|
}
|
2972
2972
|
|
2973
2973
|
"""An enumeration."""
|
@@ -3133,6 +3133,9 @@ type Product implements Node & ObjectWithMetadata {
|
|
3133
3133
|
|
3134
3134
|
"""List of logs for product status changes."""
|
3135
3135
|
productStatusLogs: [ProductStatusLog!]
|
3136
|
+
|
3137
|
+
"""Product dimensions."""
|
3138
|
+
dimensions: ProductDimensions
|
3136
3139
|
}
|
3137
3140
|
|
3138
3141
|
"""
|
@@ -3821,9 +3824,6 @@ type Order implements Node & ObjectWithMetadata {
|
|
3821
3824
|
"""Seller commission for the order"""
|
3822
3825
|
sellerCommission: Money
|
3823
3826
|
|
3824
|
-
"""Volume discount for the order"""
|
3825
|
-
volumeDiscount: TaxedMoney @deprecated(reason: "This will be removed on February 1, 2025.")
|
3826
|
-
|
3827
3827
|
"""Validation status for the order"""
|
3828
3828
|
validationStatus: [ValidationStatus!]
|
3829
3829
|
|
@@ -4694,7 +4694,7 @@ type App implements Node & ObjectWithMetadata {
|
|
4694
4694
|
metadata: [MetadataItem!]!
|
4695
4695
|
|
4696
4696
|
"""Type of the app."""
|
4697
|
-
type: AppTypeEnum
|
4697
|
+
type: AppTypeEnum @deprecated(reason: "This will be removed on April 30, 2025.")
|
4698
4698
|
|
4699
4699
|
"""List of dashboard integrations for this app"""
|
4700
4700
|
dashboardIntegrations: [AppDashboardIntegration!]
|
@@ -4706,25 +4706,25 @@ type App implements Node & ObjectWithMetadata {
|
|
4706
4706
|
webhooks: [Webhook!]
|
4707
4707
|
|
4708
4708
|
"""Description of this app."""
|
4709
|
-
aboutApp: String
|
4709
|
+
aboutApp: String @deprecated(reason: "This will be removed on April 30, 2025.")
|
4710
4710
|
|
4711
4711
|
"""Description of the data privacy defined for this app."""
|
4712
|
-
dataPrivacy: String
|
4712
|
+
dataPrivacy: String @deprecated(reason: "This will be removed on April 30, 2025.")
|
4713
4713
|
|
4714
4714
|
"""Url to details about the privacy policy on the app owner page."""
|
4715
|
-
dataPrivacyUrl: String
|
4715
|
+
dataPrivacyUrl: String @deprecated(reason: "This will be removed on April 30, 2025.")
|
4716
4716
|
|
4717
4717
|
"""Homepage of the app."""
|
4718
|
-
homepageUrl: String
|
4718
|
+
homepageUrl: String @deprecated(reason: "This will be removed on April 30, 2025.")
|
4719
4719
|
|
4720
4720
|
"""Support page for the app."""
|
4721
|
-
supportUrl: String
|
4721
|
+
supportUrl: String @deprecated(reason: "This will be removed on April 30, 2025.")
|
4722
4722
|
|
4723
4723
|
"""Url to iframe with the configuration for the app."""
|
4724
|
-
configurationUrl: String
|
4724
|
+
configurationUrl: String @deprecated(reason: "This will be removed on April 30, 2025.")
|
4725
4725
|
|
4726
4726
|
"""Url to iframe with the app."""
|
4727
|
-
appUrl: String
|
4727
|
+
appUrl: String @deprecated(reason: "This will be removed on April 30, 2025.")
|
4728
4728
|
|
4729
4729
|
"""Version number of the app."""
|
4730
4730
|
version: String
|
@@ -4745,7 +4745,7 @@ type Permission {
|
|
4745
4745
|
enum PermissionEnum {
|
4746
4746
|
MANAGE_USERS
|
4747
4747
|
MANAGE_STAFF
|
4748
|
-
MANAGE_PERMISSIONS
|
4748
|
+
MANAGE_PERMISSIONS @deprecated(reason: "This will be removed on April 23, 2025.")
|
4749
4749
|
MANAGE_APPS
|
4750
4750
|
MANAGE_DISCOUNTS
|
4751
4751
|
MANAGE_DOCUMENTS
|
@@ -5613,9 +5613,6 @@ type NauticalOrder implements Node & ObjectWithMetadata {
|
|
5613
5613
|
|
5614
5614
|
"""Returns True, if order requires shipping."""
|
5615
5615
|
isShippingRequired: Boolean!
|
5616
|
-
|
5617
|
-
"""Volume discount for the nautical order"""
|
5618
|
-
volumeDiscount: TaxedMoney @deprecated(reason: "This will be removed on February 1, 2025.")
|
5619
5616
|
shippingMethodName: String!
|
5620
5617
|
|
5621
5618
|
"""List of all the vendor orders connected to this marketplace order."""
|
@@ -7080,18 +7077,7 @@ type Agreement implements Node {
|
|
7080
7077
|
seoDescription: String
|
7081
7078
|
slug: String!
|
7082
7079
|
title: String!
|
7083
|
-
|
7084
|
-
"""Commission type"""
|
7085
|
-
commissionType: CommissionTypeEnum! @deprecated(reason: "Markup commissions will be removed on January 23, 2025.")
|
7086
7080
|
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
7081
|
isActive: Boolean
|
7096
7082
|
|
7097
7083
|
"""List of granular commissions associated with the agreement."""
|
@@ -7102,22 +7088,6 @@ type Agreement implements Node {
|
|
7102
7088
|
fees: [AgreementFees!]!
|
7103
7089
|
}
|
7104
7090
|
|
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
7091
|
"""An agreement commission"""
|
7122
7092
|
type AgreementCommission implements Node {
|
7123
7093
|
"""The ID of the object"""
|
@@ -7358,6 +7328,33 @@ type ProductStatusLog implements Node & ObjectWithMetadata {
|
|
7358
7328
|
metadata: [MetadataItem!]!
|
7359
7329
|
}
|
7360
7330
|
|
7331
|
+
"""Product or Variant dimensions."""
|
7332
|
+
type ProductDimensions {
|
7333
|
+
length: PositiveDecimal
|
7334
|
+
width: PositiveDecimal
|
7335
|
+
height: PositiveDecimal
|
7336
|
+
|
7337
|
+
"""measurement unit for length, width and height."""
|
7338
|
+
unit: LengthUnitsStrEnum
|
7339
|
+
}
|
7340
|
+
|
7341
|
+
"""
|
7342
|
+
Positive Decimal scalar implementation.
|
7343
|
+
|
7344
|
+
Should be used in places where value must be positive.
|
7345
|
+
"""
|
7346
|
+
scalar PositiveDecimal
|
7347
|
+
|
7348
|
+
"\n String enum counterpart of the LengthUnits.\n "
|
7349
|
+
enum LengthUnitsStrEnum {
|
7350
|
+
IN
|
7351
|
+
FT
|
7352
|
+
YD
|
7353
|
+
MM
|
7354
|
+
CM
|
7355
|
+
M
|
7356
|
+
}
|
7357
|
+
|
7361
7358
|
"""Represents availability of a variant in the storefront."""
|
7362
7359
|
type VariantPricingInfo {
|
7363
7360
|
"""Whether it is in sale or not."""
|
@@ -7729,61 +7726,6 @@ enum StockEventType {
|
|
7729
7726
|
STOCK_DEALLOCATED
|
7730
7727
|
}
|
7731
7728
|
|
7732
|
-
type SellerType implements Node & ObjectWithMetadata {
|
7733
|
-
"""The ID of the object"""
|
7734
|
-
id: ID!
|
7735
|
-
|
7736
|
-
"""
|
7737
|
-
List of private metadata items.Requires proper staff permissions to access.
|
7738
|
-
"""
|
7739
|
-
privateMetadata: [MetadataItem!]!
|
7740
|
-
|
7741
|
-
"""List of public metadata items. Can be accessed without permissions."""
|
7742
|
-
metadata: [MetadataItem!]!
|
7743
|
-
pk: Int
|
7744
|
-
companyName: String
|
7745
|
-
owner: UserType
|
7746
|
-
}
|
7747
|
-
|
7748
|
-
type UserType implements Node & ObjectWithMetadata {
|
7749
|
-
"""The ID of the object"""
|
7750
|
-
id: ID!
|
7751
|
-
|
7752
|
-
"""
|
7753
|
-
List of private metadata items.Requires proper staff permissions to access.
|
7754
|
-
"""
|
7755
|
-
privateMetadata: [MetadataItem!]!
|
7756
|
-
|
7757
|
-
"""List of public metadata items. Can be accessed without permissions."""
|
7758
|
-
metadata: [MetadataItem!]!
|
7759
|
-
firstName: String
|
7760
|
-
lastName: String
|
7761
|
-
email: String
|
7762
|
-
defaultShippingAddress: AddressType
|
7763
|
-
}
|
7764
|
-
|
7765
|
-
type AddressType implements Node & ObjectWithMetadata {
|
7766
|
-
"""The ID of the object"""
|
7767
|
-
id: ID!
|
7768
|
-
|
7769
|
-
"""
|
7770
|
-
List of private metadata items.Requires proper staff permissions to access.
|
7771
|
-
"""
|
7772
|
-
privateMetadata: [MetadataItem!]!
|
7773
|
-
|
7774
|
-
"""List of public metadata items. Can be accessed without permissions."""
|
7775
|
-
metadata: [MetadataItem!]!
|
7776
|
-
firstName: String
|
7777
|
-
lastName: String
|
7778
|
-
streetAddress1: String
|
7779
|
-
streetAddress2: String
|
7780
|
-
city: String
|
7781
|
-
postalCode: String
|
7782
|
-
country: String
|
7783
|
-
countryArea: String
|
7784
|
-
phone: String
|
7785
|
-
}
|
7786
|
-
|
7787
7729
|
"""Represents an shipping method for a particular seller on a checkout."""
|
7788
7730
|
type CheckoutSellerShipping implements Node {
|
7789
7731
|
tenant: Tenant!
|
@@ -7811,7 +7753,6 @@ input CustomerOrderFilterInput {
|
|
7811
7753
|
search: String
|
7812
7754
|
source: [OrderSourceFilter!]
|
7813
7755
|
isHistorical: Boolean
|
7814
|
-
subStatus: [OfferOrderSubStatusFilter!] @deprecated(reason: "This will be removed on Feb 1, 2025")
|
7815
7756
|
payoutStatus: [OrderPayoutStatusEnum!]
|
7816
7757
|
vendorPayouts: [ID]
|
7817
7758
|
payouts: [ID]
|
@@ -7835,15 +7776,6 @@ enum OrderSourceFilter {
|
|
7835
7776
|
EXTERNAL
|
7836
7777
|
}
|
7837
7778
|
|
7838
|
-
enum OfferOrderSubStatusFilter {
|
7839
|
-
OFFER_APPROVED
|
7840
|
-
OFFER_CANCELLED
|
7841
|
-
OFFER_CREATED
|
7842
|
-
OFFER_EXPIRED
|
7843
|
-
OFFER_NEGOTIATING
|
7844
|
-
OFFER_REJECTED
|
7845
|
-
}
|
7846
|
-
|
7847
7779
|
input OrderSortingInput {
|
7848
7780
|
"""Specifies the direction in which to sort products."""
|
7849
7781
|
direction: OrderDirection!
|
@@ -7915,7 +7847,6 @@ input CustomerNauticalOrderFilterInput {
|
|
7915
7847
|
search: String
|
7916
7848
|
source: [OrderSourceFilter!]
|
7917
7849
|
isHistorical: Boolean
|
7918
|
-
subStatus: [OfferOrderSubStatusFilter!] @deprecated(reason: "This will be removed on Feb 1, 2025")
|
7919
7850
|
}
|
7920
7851
|
|
7921
7852
|
type UserPermission {
|
@@ -8594,7 +8525,7 @@ type Shop {
|
|
8594
8525
|
phonePrefixes: [String!]!
|
8595
8526
|
|
8596
8527
|
"""Include taxes in prices."""
|
8597
|
-
includeTaxesInPrices: Boolean!
|
8528
|
+
includeTaxesInPrices: Boolean! @deprecated(reason: "This will be removed on April 29, 2025.")
|
8598
8529
|
|
8599
8530
|
"""Charge taxes on shipping."""
|
8600
8531
|
chargeTaxesOnShipping: Boolean!
|
@@ -9222,6 +9153,7 @@ input CategoryFilterInput {
|
|
9222
9153
|
customFields: [AttributeInput!]
|
9223
9154
|
metadata: MetadataFilterInput
|
9224
9155
|
privateMetadata: MetadataFilterInput
|
9156
|
+
allowProductAssignment: Boolean
|
9225
9157
|
}
|
9226
9158
|
|
9227
9159
|
input CategorySortingInput {
|
@@ -9257,6 +9189,7 @@ input CollectionFilterInput {
|
|
9257
9189
|
privateMetadata: MetadataFilterInput
|
9258
9190
|
isVisible: CollectionVisible
|
9259
9191
|
customFields: [AttributeInput!]
|
9192
|
+
type: CollectionTypeEnum
|
9260
9193
|
}
|
9261
9194
|
|
9262
9195
|
enum CollectionPublished {
|
@@ -10201,13 +10134,6 @@ input StripeClientPaymentData {
|
|
10201
10134
|
paymentMethodToken: String
|
10202
10135
|
}
|
10203
10136
|
|
10204
|
-
"""
|
10205
|
-
Positive Decimal scalar implementation.
|
10206
|
-
|
10207
|
-
Should be used in places where value must be positive.
|
10208
|
-
"""
|
10209
|
-
scalar PositiveDecimal
|
10210
|
-
|
10211
10137
|
input AddressInput {
|
10212
10138
|
"""Given name."""
|
10213
10139
|
firstName: String
|
@@ -10453,7 +10379,6 @@ type OrderVendorSummaryType {
|
|
10453
10379
|
average: Float
|
10454
10380
|
taxes: Float
|
10455
10381
|
discounts: Float
|
10456
|
-
volumeDiscounts: Float @deprecated(reason: "This will be removed on February 1, 2025.")
|
10457
10382
|
revenue: Float
|
10458
10383
|
totals: Int
|
10459
10384
|
commission: Float
|
@@ -10473,7 +10398,6 @@ type OrderVendorReportType {
|
|
10473
10398
|
average: Float
|
10474
10399
|
taxes: Float
|
10475
10400
|
discounts: Float
|
10476
|
-
volumeDiscounts: Float @deprecated(reason: "This will be removed on February 1, 2025.")
|
10477
10401
|
revenue: Float
|
10478
10402
|
totals: Int
|
10479
10403
|
commission: Float
|
@@ -10502,7 +10426,6 @@ type SingleVendorReportType {
|
|
10502
10426
|
average: Float
|
10503
10427
|
taxes: Float
|
10504
10428
|
discounts: Float
|
10505
|
-
volumeDiscounts: Float @deprecated(reason: "This will be removed on February 1, 2025.")
|
10506
10429
|
revenue: Float
|
10507
10430
|
totals: Int
|
10508
10431
|
commission: Float
|
@@ -10526,7 +10449,6 @@ type SingleVendorSummaryType {
|
|
10526
10449
|
average: Float
|
10527
10450
|
taxes: Float
|
10528
10451
|
discounts: Float
|
10529
|
-
volumeDiscounts: Float @deprecated(reason: "This will be removed on February 1, 2025.")
|
10530
10452
|
revenue: Float
|
10531
10453
|
totals: Int
|
10532
10454
|
commission: Float
|
@@ -10675,7 +10597,6 @@ input OrderFilterInput {
|
|
10675
10597
|
search: String
|
10676
10598
|
source: [OrderSourceFilter!]
|
10677
10599
|
isHistorical: Boolean
|
10678
|
-
subStatus: [OfferOrderSubStatusFilter!] @deprecated(reason: "This will be removed on Feb 1, 2025")
|
10679
10600
|
payoutStatus: [OrderPayoutStatusEnum!]
|
10680
10601
|
vendorPayouts: [ID]
|
10681
10602
|
payouts: [ID]
|
@@ -10692,7 +10613,6 @@ input NauticalOrderFilterInput {
|
|
10692
10613
|
search: String
|
10693
10614
|
source: [OrderSourceFilter!]
|
10694
10615
|
isHistorical: Boolean
|
10695
|
-
subStatus: [OfferOrderSubStatusFilter!] @deprecated(reason: "This will be removed on Feb 1, 2025")
|
10696
10616
|
}
|
10697
10617
|
|
10698
10618
|
input OrderDraftFilterInput {
|
@@ -10704,7 +10624,7 @@ input OrderDraftFilterInput {
|
|
10704
10624
|
search: String
|
10705
10625
|
isHistorical: Boolean
|
10706
10626
|
source: [OrderSourceFilter!]
|
10707
|
-
subStatus:
|
10627
|
+
subStatus: String
|
10708
10628
|
}
|
10709
10629
|
|
10710
10630
|
input NauticalOrderDraftFilterInput {
|
@@ -10716,7 +10636,7 @@ input NauticalOrderDraftFilterInput {
|
|
10716
10636
|
search: String
|
10717
10637
|
isHistorical: Boolean
|
10718
10638
|
source: [OrderSourceFilter!]
|
10719
|
-
subStatus:
|
10639
|
+
subStatus: String
|
10720
10640
|
}
|
10721
10641
|
|
10722
10642
|
input NauticalOrderQuoteFilterInput {
|
@@ -11027,7 +10947,9 @@ type MarketplaceConfiguration {
|
|
11027
10947
|
|
11028
10948
|
"""URL of a view where customers can set their password."""
|
11029
10949
|
customerSetPasswordUrl: String
|
11030
|
-
|
10950
|
+
|
10951
|
+
"""Include taxes in prices."""
|
10952
|
+
includeTaxesInPrices: Boolean! @deprecated(reason: "This will be removed on April 29, 2025.")
|
11031
10953
|
chargeTaxesOnShipping: Boolean!
|
11032
10954
|
|
11033
10955
|
"""
|
@@ -11635,16 +11557,6 @@ enum FulfillmentModelEnum {
|
|
11635
11557
|
HYBRID
|
11636
11558
|
}
|
11637
11559
|
|
11638
|
-
"\n String enum counterpart of the LengthUnits.\n "
|
11639
|
-
enum LengthUnitsStrEnum {
|
11640
|
-
IN
|
11641
|
-
FT
|
11642
|
-
YD
|
11643
|
-
MM
|
11644
|
-
CM
|
11645
|
-
M
|
11646
|
-
}
|
11647
|
-
|
11648
11560
|
type EmailEventCountableConnection {
|
11649
11561
|
"""Pagination data for this connection."""
|
11650
11562
|
pageInfo: PageInfo!
|
@@ -11970,7 +11882,6 @@ type OrderSellerSummaryType {
|
|
11970
11882
|
average: Float
|
11971
11883
|
taxes: Float
|
11972
11884
|
discounts: Float
|
11973
|
-
volumeDiscounts: Float @deprecated(reason: "This will be removed on February 1, 2025.")
|
11974
11885
|
revenue: Float
|
11975
11886
|
totals: Int
|
11976
11887
|
commission: Float
|
@@ -11986,7 +11897,6 @@ type OrderCustomerReportType {
|
|
11986
11897
|
average: Float
|
11987
11898
|
taxes: Float
|
11988
11899
|
discounts: Float
|
11989
|
-
volumeDiscounts: Float @deprecated(reason: "This will be removed on February 1, 2025.")
|
11990
11900
|
revenue: Float
|
11991
11901
|
totals: Int
|
11992
11902
|
commission: Float
|
@@ -12027,7 +11937,6 @@ type OrderSellerReportType {
|
|
12027
11937
|
average: Float
|
12028
11938
|
taxes: Float
|
12029
11939
|
discounts: Float
|
12030
|
-
volumeDiscounts: Float @deprecated(reason: "This will be removed on February 1, 2025.")
|
12031
11940
|
revenue: Float
|
12032
11941
|
totals: Int
|
12033
11942
|
commission: Float
|
@@ -12068,7 +11977,6 @@ type OrderMarketplaceReportType {
|
|
12068
11977
|
average: Float
|
12069
11978
|
taxes: Float
|
12070
11979
|
discounts: Float
|
12071
|
-
volumeDiscounts: Float @deprecated(reason: "This will be removed on February 1, 2025.")
|
12072
11980
|
revenue: Float
|
12073
11981
|
totals: Int
|
12074
11982
|
commission: Float
|
@@ -12140,7 +12048,6 @@ type AbstractOrderSellerReportType {
|
|
12140
12048
|
average: Float
|
12141
12049
|
taxes: Float
|
12142
12050
|
discounts: Float
|
12143
|
-
volumeDiscounts: Float @deprecated(reason: "This will be removed on February 1, 2025.")
|
12144
12051
|
revenue: Float
|
12145
12052
|
totals: Int
|
12146
12053
|
commission: Float
|
@@ -12155,7 +12062,6 @@ type MarketplaceTaxReportType {
|
|
12155
12062
|
average: Float
|
12156
12063
|
taxes: Float
|
12157
12064
|
discounts: Float
|
12158
|
-
volumeDiscounts: Float @deprecated(reason: "This will be removed on February 1, 2025.")
|
12159
12065
|
revenue: Float
|
12160
12066
|
totals: Int
|
12161
12067
|
commission: Float
|
@@ -12195,7 +12101,6 @@ type MarketplaceTaxReportByLocaleType {
|
|
12195
12101
|
average: Float
|
12196
12102
|
taxes: Float
|
12197
12103
|
discounts: Float
|
12198
|
-
volumeDiscounts: Float @deprecated(reason: "This will be removed on February 1, 2025.")
|
12199
12104
|
revenue: Float
|
12200
12105
|
totals: Int
|
12201
12106
|
commission: Float
|
@@ -12387,7 +12292,6 @@ type AbstractPercentReportType {
|
|
12387
12292
|
average: Float
|
12388
12293
|
taxes: Float
|
12389
12294
|
discounts: Float
|
12390
|
-
volumeDiscounts: Float @deprecated(reason: "This will be removed on February 1, 2025.")
|
12391
12295
|
revenue: Float
|
12392
12296
|
totals: Float
|
12393
12297
|
}
|
@@ -12406,7 +12310,6 @@ type DashboardSellerOrderPerformanceType {
|
|
12406
12310
|
average: Float
|
12407
12311
|
taxes: Float
|
12408
12312
|
discounts: Float
|
12409
|
-
volumeDiscounts: Float @deprecated(reason: "This will be removed on February 1, 2025.")
|
12410
12313
|
revenue: Float
|
12411
12314
|
totals: Int
|
12412
12315
|
commission: Float
|
@@ -12428,7 +12331,6 @@ type GraphDataType {
|
|
12428
12331
|
average: Float
|
12429
12332
|
taxes: Float
|
12430
12333
|
discounts: Float
|
12431
|
-
volumeDiscounts: Float @deprecated(reason: "This will be removed on February 1, 2025.")
|
12432
12334
|
revenue: Float
|
12433
12335
|
totals: Int
|
12434
12336
|
commission: Float
|
@@ -13217,7 +13119,7 @@ type Mutation {
|
|
13217
13119
|
description: String
|
13218
13120
|
|
13219
13121
|
"""
|
13220
|
-
Used when uploading a new document or file in a multipart request that does not exist in the system already. Supported file types:
|
13122
|
+
Used when uploading a new document or file in a multipart request that does not exist in the system already. Supported file types: image/x-dwg, image/x-tif, text/x-pdf, application/eps, application/x-csv, image/dxf, text/x-csv, application/vnd.openxmlformats-officedocument.wordprocessingml.document, application/vnd.openxmlformats-officedocument.spreadsheetml.sheet, application/x-tar, image/jpeg, image/bmp, application/x-rar-compressed, application/x-tif, application/acad, application/vnd.oasis.opendocument.spreadsheet, application/jpg, image/jpg, application/x-jpg, application/x-rar, image/webp, application/vnd.ms-word, application/excel, application/vnd.ms-powerpoint, application/x-dxf, application/csv, image/tiff, image/vnd.dwg, application/x-gzip, application/dxf, image/eps, application/tiff, application/x-eps, application/vnd.oasis.opendocument.text, image/png, image/heif, pplication/vnd.rar, application/dwg, application/vnd.oasis.opendocument.presentation, application/vnd.openxmlformats-officedocument.presentationml.presentation, application/gzip, application/vnd.ms-excel, application/zip, image/svg, application/svg+xml, text/pdf, application/msword, text/svg-xml, text/x-comma-separated-values, image/svg+xml, text/csv, application/x-tiff, application/x-acad, image/x-eps, image/tif, text/plain, drawing/x-dwg, application/postscript, application/gzipped, application/vnd.openxmlformats-officedocument.presentationml.slideshow, application/x-pdf, image/x-bmp, image/x-tiff, application/acrobat, application/pdf, image/gif, application/x-dwg, text/rtf, image/heic-sequence, application/tif, application/x-zip-compressed, image/x-dxf, drawing/x-dwf, image/heic, application/gzip-compressed, text/comma-separated-values, drawing/dwg, image/x-ms-bmp, application/x-autocad, application/x-rtf, application/rtf, image/heif-sequence, text/svg, application/vnd.pdf.
|
13221
13123
|
"""
|
13222
13124
|
file: Upload!
|
13223
13125
|
|
@@ -13312,7 +13214,7 @@ type Mutation {
|
|
13312
13214
|
|
13313
13215
|
"""Fields required to update a payout date range."""
|
13314
13216
|
input: PayoutDatesInput!
|
13315
|
-
): PayoutDatesUpdate
|
13217
|
+
): PayoutDatesUpdate @deprecated(reason: "This will be removed on April 29, 2025.")
|
13316
13218
|
|
13317
13219
|
"""Archive payouts."""
|
13318
13220
|
payoutBulkArchive(
|
@@ -14919,7 +14821,7 @@ type Mutation {
|
|
14919
14821
|
|
14920
14822
|
"""Fields required to create a return notification for the order."""
|
14921
14823
|
input: OrderReturnNotificationInput!
|
14922
|
-
): OrderReturnNotification
|
14824
|
+
): OrderReturnNotification @deprecated(reason: "This will be removed on April 29, 2025.")
|
14923
14825
|
|
14924
14826
|
"""
|
14925
14827
|
Attempts to force a refresh of the existing taxes on a non-placed nautical order.
|
@@ -14951,7 +14853,7 @@ type Mutation {
|
|
14951
14853
|
|
14952
14854
|
"""Fields required to create a return notification for the order."""
|
14953
14855
|
input: OrderReturnNotificationInput!
|
14954
|
-
): NauticalOrderReturnNotification
|
14856
|
+
): NauticalOrderReturnNotification @deprecated(reason: "This will be removed on April 29, 2025.")
|
14955
14857
|
|
14956
14858
|
"""Adds return notification note to the order."""
|
14957
14859
|
nauticalOrderReturnFromStorefrontNotification(
|
@@ -14960,16 +14862,7 @@ type Mutation {
|
|
14960
14862
|
|
14961
14863
|
"""Fields required to create a return notification for the order."""
|
14962
14864
|
input: OrderReturnNotificationInput!
|
14963
|
-
): NauticalOrderReturnFromStorefrontNotification
|
14964
|
-
|
14965
|
-
"""Adds return notification note to the order."""
|
14966
|
-
vendorOrderReturnFromStorefrontNotification(
|
14967
|
-
"""ID of the order to add a note for."""
|
14968
|
-
order: ID!
|
14969
|
-
|
14970
|
-
"""Fields required to create a return notification for the order."""
|
14971
|
-
input: OrderReturnNotificationInput!
|
14972
|
-
): VendorOrderReturnFromStorefrontNotification
|
14865
|
+
): NauticalOrderReturnFromStorefrontNotification @deprecated(reason: "This will be removed on April 29, 2025.")
|
14973
14866
|
|
14974
14867
|
"""Cancel an order."""
|
14975
14868
|
orderCancel(
|
@@ -15427,7 +15320,7 @@ type Mutation {
|
|
15427
15320
|
|
15428
15321
|
"""Seller ID"""
|
15429
15322
|
sellerId: ID
|
15430
|
-
): CatalogImport
|
15323
|
+
): CatalogImport @deprecated(reason: "This will be removed on April 29, 2025")
|
15431
15324
|
|
15432
15325
|
"""Export catalog."""
|
15433
15326
|
catalogExport(
|
@@ -15445,7 +15338,7 @@ type Mutation {
|
|
15445
15338
|
|
15446
15339
|
"""Seller ID"""
|
15447
15340
|
sellerId: ID
|
15448
|
-
): CustomersExport
|
15341
|
+
): CustomersExport @deprecated(reason: "This will be removed on April 29, 2025")
|
15449
15342
|
|
15450
15343
|
"""Update plugin flow."""
|
15451
15344
|
pluginFlowUpdate(
|
@@ -15481,11 +15374,6 @@ type Mutation {
|
|
15481
15374
|
|
15482
15375
|
"""ID of the vendor to retrieve an onboarding link for"""
|
15483
15376
|
vendorId: ID!
|
15484
|
-
|
15485
|
-
"""
|
15486
|
-
Whether the vendor to retrieve an onboarding link for is a SELLER or an AFFILIATE
|
15487
|
-
"""
|
15488
|
-
vendorType: String @deprecated(reason: "This will be removed on January 24, 2025.")
|
15489
15377
|
): VendorPayoutOnboardingLinkRequest
|
15490
15378
|
|
15491
15379
|
"""
|
@@ -15614,7 +15502,7 @@ type Mutation {
|
|
15614
15502
|
productsImport(
|
15615
15503
|
"""Represents a file in a multipart request."""
|
15616
15504
|
file: Upload!
|
15617
|
-
): ProductsImport
|
15505
|
+
): ProductsImport @deprecated(reason: "This will be removed on April 29, 2025.")
|
15618
15506
|
|
15619
15507
|
"""Adds a gift card or a voucher to a checkout."""
|
15620
15508
|
checkoutAddPromoCode(
|
@@ -15641,9 +15529,6 @@ type Mutation {
|
|
15641
15529
|
"""Checkout ID."""
|
15642
15530
|
checkoutId: ID!
|
15643
15531
|
|
15644
|
-
"""ID of microsite that checkout was completed from"""
|
15645
|
-
microsite: ID @deprecated(reason: "This will be removed on January 24, 2025.")
|
15646
|
-
|
15647
15532
|
"""Client-side generated data required to finalize the payment."""
|
15648
15533
|
paymentData: JSONString
|
15649
15534
|
|
@@ -15669,7 +15554,6 @@ type Mutation {
|
|
15669
15554
|
Determines whether the email sent out is catered to carriers instead of customers
|
15670
15555
|
"""
|
15671
15556
|
vehicles: Boolean = false
|
15672
|
-
volumeDiscount: Float @deprecated(reason: "This will be removed on February 1, 2025.")
|
15673
15557
|
): CheckoutComplete
|
15674
15558
|
|
15675
15559
|
"""
|
@@ -16715,7 +16599,7 @@ input MarketplaceConfigurationInput {
|
|
16715
16599
|
customerSetPasswordUrl: String
|
16716
16600
|
|
16717
16601
|
"""Include taxes in prices."""
|
16718
|
-
includeTaxesInPrices: Boolean
|
16602
|
+
includeTaxesInPrices: Boolean @deprecated(reason: "This will be removed on April 29, 2025.")
|
16719
16603
|
|
16720
16604
|
"""Charge taxes on shipping."""
|
16721
16605
|
chargeTaxesOnShipping: Boolean
|
@@ -16770,9 +16654,6 @@ enum PayoutErrorCode {
|
|
16770
16654
|
}
|
16771
16655
|
|
16772
16656
|
input PayoutCreateInput {
|
16773
|
-
"""Vendor type for the payout"""
|
16774
|
-
vendorType: String @deprecated(reason: "This will be removed on January 24, 2025")
|
16775
|
-
|
16776
16657
|
"""
|
16777
16658
|
Payout end date. ISO 8601 standard. Can not be greater than current date.
|
16778
16659
|
"""
|
@@ -17097,13 +16978,13 @@ input AgreementInput {
|
|
17097
16978
|
updatedAt: String
|
17098
16979
|
|
17099
16980
|
"""Gross Price, Markup, Absolute etc"""
|
17100
|
-
commissionType: CommissionTypeEnum
|
16981
|
+
commissionType: CommissionTypeEnum @deprecated(reason: "This will be removed on April 23, 2025.")
|
17101
16982
|
|
17102
16983
|
"""Percentage by default"""
|
17103
|
-
markupCommissionType: MarkupCommissionTypeEnum
|
16984
|
+
markupCommissionType: MarkupCommissionTypeEnum @deprecated(reason: "This will be removed on April 23, 2025.")
|
17104
16985
|
|
17105
16986
|
"""Markup commission percentage for all items"""
|
17106
|
-
markupCommissionValue: Decimal
|
16987
|
+
markupCommissionValue: Decimal @deprecated(reason: "This will be removed on April 23, 2025.")
|
17107
16988
|
}
|
17108
16989
|
|
17109
16990
|
input SeoInput {
|
@@ -17114,6 +16995,22 @@ input SeoInput {
|
|
17114
16995
|
description: String
|
17115
16996
|
}
|
17116
16997
|
|
16998
|
+
enum CommissionTypeEnum {
|
16999
|
+
"""Gross Price Commission"""
|
17000
|
+
MARKETPLACE
|
17001
|
+
|
17002
|
+
"""Markup Commission"""
|
17003
|
+
WHOLESALE
|
17004
|
+
|
17005
|
+
"""Absolute Price Commission"""
|
17006
|
+
DROPSHIPPING
|
17007
|
+
}
|
17008
|
+
|
17009
|
+
enum MarkupCommissionTypeEnum {
|
17010
|
+
"""Percentage"""
|
17011
|
+
PERCENTAGE
|
17012
|
+
}
|
17013
|
+
|
17117
17014
|
"""Deletes a agreement."""
|
17118
17015
|
type AgreementDelete {
|
17119
17016
|
agreementErrors: [AgreementError!]!
|
@@ -19298,6 +19195,9 @@ input ProductCreateInput {
|
|
19298
19195
|
"""
|
19299
19196
|
isPriceOverrideAllowed: Boolean
|
19300
19197
|
|
19198
|
+
"""Product dimensions."""
|
19199
|
+
dimensions: ProductDimensionsInput
|
19200
|
+
|
19301
19201
|
"""ID of the seller that product belongs to."""
|
19302
19202
|
seller: ID!
|
19303
19203
|
|
@@ -19340,6 +19240,12 @@ input VariantSizeInput {
|
|
19340
19240
|
sizeUnits: DistanceUnitsEnum
|
19341
19241
|
}
|
19342
19242
|
|
19243
|
+
input ProductDimensionsInput {
|
19244
|
+
length: PositiveDecimal
|
19245
|
+
width: PositiveDecimal
|
19246
|
+
height: PositiveDecimal
|
19247
|
+
}
|
19248
|
+
|
19343
19249
|
input StockInput {
|
19344
19250
|
"""Warehouse in which the stock is located."""
|
19345
19251
|
warehouse: ID!
|
@@ -19513,6 +19419,9 @@ input ProductInput {
|
|
19513
19419
|
Set whether this product allows price overrides by default, will be controlled by product type if provided
|
19514
19420
|
"""
|
19515
19421
|
isPriceOverrideAllowed: Boolean
|
19422
|
+
|
19423
|
+
"""Product dimensions."""
|
19424
|
+
dimensions: ProductDimensionsInput
|
19516
19425
|
}
|
19517
19426
|
|
19518
19427
|
"""Set product availability for purchase date."""
|
@@ -19818,7 +19727,7 @@ input ProductVariantCreateInput {
|
|
19818
19727
|
name: String
|
19819
19728
|
|
19820
19729
|
"""True if variant requires quote pricing."""
|
19821
|
-
requiresQuote: Boolean
|
19730
|
+
requiresQuote: Boolean @deprecated(reason: "This field will be removed on April 25th, 2025.")
|
19822
19731
|
|
19823
19732
|
"""Substatus the variant is to be changed to."""
|
19824
19733
|
subStatus: ProductVariantSubStatusEnum @deprecated(reason: "This field will be removed on April 15th, 2025. ProductVariant substatus will be the same as product substatus")
|
@@ -19853,6 +19762,9 @@ input ProductVariantCreateInput {
|
|
19853
19762
|
"""
|
19854
19763
|
isPriceOverrideAllowed: Boolean
|
19855
19764
|
|
19765
|
+
"""Product dimensions."""
|
19766
|
+
dimensions: ProductDimensionsInput
|
19767
|
+
|
19856
19768
|
"""Stocks of a product available for sale."""
|
19857
19769
|
stocks: [StockInput!]
|
19858
19770
|
|
@@ -19959,7 +19871,7 @@ input ProductVariantBulkCreateInput {
|
|
19959
19871
|
name: String
|
19960
19872
|
|
19961
19873
|
"""True if variant requires quote pricing."""
|
19962
|
-
requiresQuote: Boolean
|
19874
|
+
requiresQuote: Boolean @deprecated(reason: "This field will be removed on April 25th, 2025.")
|
19963
19875
|
|
19964
19876
|
"""Substatus the variant is to be changed to."""
|
19965
19877
|
subStatus: ProductVariantSubStatusEnum @deprecated(reason: "This field will be removed on April 15th, 2025. ProductVariant substatus will be the same as product substatus")
|
@@ -19994,6 +19906,9 @@ input ProductVariantBulkCreateInput {
|
|
19994
19906
|
"""
|
19995
19907
|
isPriceOverrideAllowed: Boolean
|
19996
19908
|
|
19909
|
+
"""Product dimensions."""
|
19910
|
+
dimensions: ProductDimensionsInput
|
19911
|
+
|
19997
19912
|
"""Stocks of a product available for sale."""
|
19998
19913
|
stocks: [StockInput!]
|
19999
19914
|
|
@@ -20138,7 +20053,7 @@ input ProductVariantInput {
|
|
20138
20053
|
name: String
|
20139
20054
|
|
20140
20055
|
"""True if variant requires quote pricing."""
|
20141
|
-
requiresQuote: Boolean
|
20056
|
+
requiresQuote: Boolean @deprecated(reason: "This field will be removed on April 25th, 2025.")
|
20142
20057
|
|
20143
20058
|
"""Substatus the variant is to be changed to."""
|
20144
20059
|
subStatus: ProductVariantSubStatusEnum @deprecated(reason: "This field will be removed on April 15th, 2025. ProductVariant substatus will be the same as product substatus")
|
@@ -20172,6 +20087,9 @@ input ProductVariantInput {
|
|
20172
20087
|
Set whether this variant allows price overrides by default, will be overridden by product type attached to product if available
|
20173
20088
|
"""
|
20174
20089
|
isPriceOverrideAllowed: Boolean
|
20090
|
+
|
20091
|
+
"""Product dimensions."""
|
20092
|
+
dimensions: ProductDimensionsInput
|
20175
20093
|
}
|
20176
20094
|
|
20177
20095
|
"""
|
@@ -21007,16 +20925,6 @@ type NauticalOrderReturnFromStorefrontNotification {
|
|
21007
20925
|
orderErrors: [OrderError!]!
|
21008
20926
|
}
|
21009
20927
|
|
21010
|
-
"""Adds return notification note to the order."""
|
21011
|
-
type VendorOrderReturnFromStorefrontNotification {
|
21012
|
-
"""Order with return notification note added."""
|
21013
|
-
order: Order
|
21014
|
-
|
21015
|
-
"""Order return notification created."""
|
21016
|
-
event: [OrderEvent!]
|
21017
|
-
orderErrors: [OrderError!]!
|
21018
|
-
}
|
21019
|
-
|
21020
20928
|
"""Cancel an order."""
|
21021
20929
|
type OrderCancel {
|
21022
20930
|
"""Canceled order."""
|
@@ -23325,7 +23233,7 @@ type VerifyToken {
|
|
23325
23233
|
isValid: Boolean!
|
23326
23234
|
|
23327
23235
|
"""JWT payload."""
|
23328
|
-
payload: GenericScalar
|
23236
|
+
payload: GenericScalar @deprecated(reason: "This will be removed on April 29, 2025")
|
23329
23237
|
accountErrors: [AccountError!]!
|
23330
23238
|
}
|
23331
23239
|
|