@nautical-commerce/graphql-schema 1.57.0 → 1.58.0-2-g82a9b0e4c
Sign up to get free protection for your applications and to get access to all the features.
- package/nautical/schema.graphql +448 -1334
- package/package.json +1 -1
package/nautical/schema.graphql
CHANGED
@@ -1051,16 +1051,10 @@ type Query {
|
|
1051
1051
|
"""End of the period to filter results"""
|
1052
1052
|
endDate: Date
|
1053
1053
|
|
1054
|
-
"""Vendor type of the payout"""
|
1055
|
-
vendorType: String @deprecated(reason: "This will be removed on October 26, 2024 when affiliate support is removed.")
|
1056
|
-
|
1057
1054
|
"""Payout ID"""
|
1058
1055
|
payoutId: ID
|
1059
1056
|
): VendorPayoutReport
|
1060
1057
|
vendorPayoutList(
|
1061
|
-
"""Vendor type of the payout"""
|
1062
|
-
vendorType: String
|
1063
|
-
|
1064
1058
|
"""Vendor ID"""
|
1065
1059
|
vendorId: ID
|
1066
1060
|
): SingleVendorPayoutReport
|
@@ -1551,13 +1545,6 @@ type Query {
|
|
1551
1545
|
"""End of the period to filter results"""
|
1552
1546
|
endDate: Date!
|
1553
1547
|
): InReportMarketplacePayoutsSummaryType
|
1554
|
-
insightsMarketplaceAffiliatePayoutsSummary(
|
1555
|
-
"""Beginning of the period to filter results"""
|
1556
|
-
startDate: Date!
|
1557
|
-
|
1558
|
-
"""End of the period to filter results"""
|
1559
|
-
endDate: Date!
|
1560
|
-
): InReportMarketplaceAffiliatePayoutsSummaryType @deprecated(reason: "This will be removed on October 26, 2024 when affiliate support is removed.")
|
1561
1548
|
insightsMarketplaceTaxSummary(
|
1562
1549
|
"""Beginning of the period to filter results"""
|
1563
1550
|
startDate: Date!
|
@@ -1794,7 +1781,6 @@ type Query {
|
|
1794
1781
|
): VoucherCountableConnection
|
1795
1782
|
designerdata(name: String): DesignerDataType
|
1796
1783
|
designerdatalist: [DesignerDataType!]!
|
1797
|
-
branding: BrandingType! @deprecated(reason: "This will be removed on October 25, 2024")
|
1798
1784
|
|
1799
1785
|
"""Token nexessary for connecting to the embedded integration platform"""
|
1800
1786
|
integrationEmbeddingToken: String
|
@@ -1828,8 +1814,6 @@ type Query {
|
|
1828
1814
|
|
1829
1815
|
"""List of all tax rates available from tax gateway."""
|
1830
1816
|
taxTypes: [TaxType!]!
|
1831
|
-
coredata(name: String): CoreDataType @deprecated(reason: "This will be removed on October 25, 2024")
|
1832
|
-
coredatalist: [CoreDataType!]! @deprecated(reason: "This will be removed on October 25, 2024")
|
1833
1817
|
|
1834
1818
|
"""Look up a checkout by token."""
|
1835
1819
|
checkout(
|
@@ -1873,27 +1857,6 @@ type Query {
|
|
1873
1857
|
last: Int
|
1874
1858
|
): CheckoutLineCountableConnection
|
1875
1859
|
|
1876
|
-
"""List of webhook jobs"""
|
1877
|
-
channels(
|
1878
|
-
"""Filtering options for webhook jobs"""
|
1879
|
-
filter: ChannelFilterInput
|
1880
|
-
|
1881
|
-
"""Sort webhook jobs"""
|
1882
|
-
sortBy: ChannelSortingInput
|
1883
|
-
|
1884
|
-
"""Return the elements in the list that come before the specified cursor."""
|
1885
|
-
before: String
|
1886
|
-
|
1887
|
-
"""Return the elements in the list that come after the specified cursor."""
|
1888
|
-
after: String
|
1889
|
-
|
1890
|
-
"""Return the first n elements from the list."""
|
1891
|
-
first: Int
|
1892
|
-
|
1893
|
-
"""Return the last n elements from the list."""
|
1894
|
-
last: Int
|
1895
|
-
): ChannelCountableConnection @deprecated(reason: "This will be removed on October 29, 2024 when channel support is removed.")
|
1896
|
-
|
1897
1860
|
"""List of the shop's attributes."""
|
1898
1861
|
attributes(
|
1899
1862
|
"""Filtering options for attributes."""
|
@@ -2005,55 +1968,6 @@ type Query {
|
|
2005
1968
|
id: ID!
|
2006
1969
|
): [AgreementSellers!]!
|
2007
1970
|
|
2008
|
-
"""List of the shop's affiliates"""
|
2009
|
-
affiliates(
|
2010
|
-
"""Filtering options for affiliates."""
|
2011
|
-
filter: AffiliateFilterInput
|
2012
|
-
|
2013
|
-
"""Sort affiliates."""
|
2014
|
-
sortBy: UserSortingInput
|
2015
|
-
|
2016
|
-
"""Return the elements in the list that come before the specified cursor."""
|
2017
|
-
before: String
|
2018
|
-
|
2019
|
-
"""Return the elements in the list that come after the specified cursor."""
|
2020
|
-
after: String
|
2021
|
-
|
2022
|
-
"""Return the first n elements from the list."""
|
2023
|
-
first: Int
|
2024
|
-
|
2025
|
-
"""Return the last n elements from the list."""
|
2026
|
-
last: Int
|
2027
|
-
): UserCountableConnection @deprecated(reason: "This will be removed on October 26, 2024 when affiliate support is removed.")
|
2028
|
-
affiliate(
|
2029
|
-
"""ID of the affiliate you are querying"""
|
2030
|
-
id: ID
|
2031
|
-
): OptimizedAffiliate @deprecated(reason: "This will be removed on October 26, 2024 when affiliate support is removed.")
|
2032
|
-
|
2033
|
-
"""List of affiliates' codes"""
|
2034
|
-
affiliateCodes(
|
2035
|
-
"""Affiliate ID to get codes for"""
|
2036
|
-
id: ID!
|
2037
|
-
|
2038
|
-
"""Filtering options for affiliate codes"""
|
2039
|
-
filter: AffiliateCodeFilterInput
|
2040
|
-
|
2041
|
-
"""Sort affiliate codes"""
|
2042
|
-
sortBy: AffiliateCodeSortingInput
|
2043
|
-
|
2044
|
-
"""Return the elements in the list that come before the specified cursor."""
|
2045
|
-
before: String
|
2046
|
-
|
2047
|
-
"""Return the elements in the list that come after the specified cursor."""
|
2048
|
-
after: String
|
2049
|
-
|
2050
|
-
"""Return the first n elements from the list."""
|
2051
|
-
first: Int
|
2052
|
-
|
2053
|
-
"""Return the last n elements from the list."""
|
2054
|
-
last: Int
|
2055
|
-
): AffiliateCodesCountableConnection @deprecated(reason: "This will be removed on October 26, 2024 when affiliate support is removed.")
|
2056
|
-
|
2057
1971
|
"""Returns address validation rules."""
|
2058
1972
|
addressValidationRules(
|
2059
1973
|
"""Two-letter ISO 3166-1 country code."""
|
@@ -2580,22 +2494,9 @@ type User implements Node & ObjectWithMetadata {
|
|
2580
2494
|
"""Return the last n elements from the list."""
|
2581
2495
|
last: Int
|
2582
2496
|
): WishlistCountableConnection
|
2583
|
-
isAffiliate: Boolean @deprecated(reason: "This will be removed on October 26, 2024 when affiliate support is removed.")
|
2584
2497
|
seller: Seller
|
2585
|
-
hasMicrosite: Boolean @deprecated(reason: "This will be removed on October 26, 2024 when affiliate support is removed.")
|
2586
|
-
micrositeId: ID @deprecated(reason: "This will be removed on October 26, 2024 when affiliate support is removed.")
|
2587
2498
|
isAssignable: Boolean
|
2588
2499
|
|
2589
|
-
"""Date of last affiliate referral."""
|
2590
|
-
lastReferral: DateTime @deprecated(reason: "This will be removed on October 26, 2024 when affiliate support is removed.")
|
2591
|
-
|
2592
|
-
"""Date of last affiliate confirmed order."""
|
2593
|
-
lastOrder: DateTime @deprecated(reason: "This will be removed on October 26, 2024 when affiliate support is removed.")
|
2594
|
-
affiliateReferrals: Int @deprecated(reason: "This will be removed on October 26, 2024 when affiliate support is removed.")
|
2595
|
-
affiliateOrders: Int @deprecated(reason: "This will be removed on October 26, 2024 when affiliate support is removed.")
|
2596
|
-
affiliateEarnings: Money @deprecated(reason: "This will be removed on October 26, 2024 when affiliate support is removed.")
|
2597
|
-
agreement: Agreement
|
2598
|
-
|
2599
2500
|
"""List of documents associated with the user."""
|
2600
2501
|
documents: [Document!]!
|
2601
2502
|
|
@@ -3636,7 +3537,6 @@ type VendorPayout implements Node & ObjectWithMetadata {
|
|
3636
3537
|
gateway: String!
|
3637
3538
|
payout: Payout!
|
3638
3539
|
seller: Seller
|
3639
|
-
affiliate: User
|
3640
3540
|
currency: String!
|
3641
3541
|
average: Decimal!
|
3642
3542
|
discounts: Decimal!
|
@@ -3694,7 +3594,6 @@ type Payout implements Node & ObjectWithMetadata {
|
|
3694
3594
|
endDate: String!
|
3695
3595
|
status: PayoutStatus!
|
3696
3596
|
name: String
|
3697
|
-
vendorType: PayoutVendorType!
|
3698
3597
|
currency: String!
|
3699
3598
|
vendorPayouts(offset: Int, before: String, after: String, first: Int, last: Int): VendorPayoutCountableConnection!
|
3700
3599
|
vendors: Int!
|
@@ -3726,15 +3625,6 @@ enum PayoutStatus {
|
|
3726
3625
|
ERROR
|
3727
3626
|
}
|
3728
3627
|
|
3729
|
-
"""An enumeration."""
|
3730
|
-
enum PayoutVendorType {
|
3731
|
-
"""Sellers"""
|
3732
|
-
SELLERS
|
3733
|
-
|
3734
|
-
"""Affiliates"""
|
3735
|
-
AFFILIATES
|
3736
|
-
}
|
3737
|
-
|
3738
3628
|
"""An enumeration."""
|
3739
3629
|
enum VendorPayoutStatus {
|
3740
3630
|
"""Paid"""
|
@@ -3852,8 +3742,6 @@ type Order implements Node & ObjectWithMetadata {
|
|
3852
3742
|
displayGrossPrices: Boolean!
|
3853
3743
|
customerNote: String!
|
3854
3744
|
weight: Weight
|
3855
|
-
affiliate: User @deprecated(reason: "This will be removed on October 26, 2024 when affiliate support is removed.")
|
3856
|
-
affiliateCode: AffiliateCodes @deprecated(reason: "This will be removed on October 26, 2024 when affiliate support is removed.")
|
3857
3745
|
|
3858
3746
|
"""Data time when the order was imported from another platform."""
|
3859
3747
|
importedAt: DateTime
|
@@ -3942,18 +3830,9 @@ type Order implements Node & ObjectWithMetadata {
|
|
3942
3830
|
"""Seller commission for the order"""
|
3943
3831
|
sellerCommission: Money
|
3944
3832
|
|
3945
|
-
"""Affiliate commission for the order"""
|
3946
|
-
affiliateCommission: Money @deprecated(reason: "This will be removed on October 26, 2024 when affiliate support is removed.")
|
3947
|
-
|
3948
|
-
"""Volume discount for the order"""
|
3949
|
-
volumeDiscount: TaxedMoney
|
3950
|
-
|
3951
3833
|
"""Validation status for the order"""
|
3952
3834
|
validationStatus: [ValidationStatus!]
|
3953
3835
|
|
3954
|
-
"""Channel the order is associated with"""
|
3955
|
-
channel: Channel @deprecated(reason: "This will be removed on October 29, 2024 when channel support is removed.")
|
3956
|
-
|
3957
3836
|
"""Latest bid made against the order."""
|
3958
3837
|
currentBid: Bid @deprecated(reason: "This will be removed alongside bids and offers on November 21, 2024")
|
3959
3838
|
|
@@ -4785,6 +4664,8 @@ input AttributeFilterInput {
|
|
4785
4664
|
have NO variant or product associated to it
|
4786
4665
|
"""
|
4787
4666
|
hasAssignedProductOrVariant: Boolean
|
4667
|
+
metadata: MetadataFilterInput
|
4668
|
+
privateMetadata: MetadataFilterInput
|
4788
4669
|
showExternal: Boolean
|
4789
4670
|
}
|
4790
4671
|
|
@@ -4963,7 +4844,6 @@ enum PermissionEnum {
|
|
4963
4844
|
MANAGE_PAYOUTS
|
4964
4845
|
MANAGE_PAYMENTS
|
4965
4846
|
MANAGE_REFUNDS
|
4966
|
-
MANAGE_CHANNELS
|
4967
4847
|
MANAGE_COLLECTIONS
|
4968
4848
|
}
|
4969
4849
|
|
@@ -5559,83 +5439,61 @@ enum SaleTypeEnum {
|
|
5559
5439
|
SPECIFIC_PRODUCT
|
5560
5440
|
}
|
5561
5441
|
|
5562
|
-
"""Represents
|
5563
|
-
type
|
5442
|
+
"""Represents order fulfillment."""
|
5443
|
+
type Fulfillment implements Node & ObjectWithMetadata {
|
5564
5444
|
"""The ID of the object"""
|
5565
5445
|
id: ID!
|
5566
|
-
|
5567
|
-
|
5568
|
-
|
5446
|
+
fulfillmentOrder: Int!
|
5447
|
+
relatedTo: Fulfillment
|
5448
|
+
order: Order!
|
5569
5449
|
|
5570
|
-
"""
|
5571
|
-
|
5450
|
+
"""Nautical order via order mapping"""
|
5451
|
+
nauticalOrder: NauticalOrder
|
5452
|
+
status: FulfillmentStatus!
|
5572
5453
|
|
5573
|
-
"""
|
5574
|
-
|
5575
|
-
"""
|
5576
|
-
uses: Int
|
5454
|
+
"""Fulfillment tracking company"""
|
5455
|
+
trackingCompany: String
|
5577
5456
|
|
5578
|
-
"""
|
5579
|
-
|
5457
|
+
"""Fulfillment tracking number"""
|
5458
|
+
trackingNumber: String
|
5580
5459
|
|
5581
|
-
"""
|
5582
|
-
|
5460
|
+
"""Fulfillment tracking url"""
|
5461
|
+
trackingUrl: String
|
5462
|
+
shippingLabelUrl: String
|
5463
|
+
created: DateTime!
|
5464
|
+
updated: DateTime!
|
5583
5465
|
|
5584
|
-
"""
|
5585
|
-
|
5586
|
-
createdAt: DateTime!
|
5587
|
-
updatedAt: DateTime!
|
5588
|
-
affiliateNauticalOrders(offset: Int, before: String, after: String, first: Int, last: Int): NauticalOrderCountableConnection!
|
5589
|
-
affiliateOrders(offset: Int, before: String, after: String, first: Int, last: Int): OrderCountableConnection!
|
5590
|
-
earnings: Money
|
5591
|
-
orders: Int
|
5592
|
-
}
|
5466
|
+
"""User who made the fulfillment. Requires MANAGE_STAFF permission."""
|
5467
|
+
user: User
|
5593
5468
|
|
5594
|
-
"""
|
5595
|
-
|
5596
|
-
"""
|
5597
|
-
|
5598
|
-
tenant: Tenant!
|
5599
|
-
createdAt: DateTime
|
5600
|
-
updatedAt: DateTime
|
5601
|
-
channel: String!
|
5602
|
-
affiliateCodes(offset: Int, before: String, after: String, first: Int, last: Int): AffiliateCodesCountableConnection!
|
5603
|
-
nauticalOrders(offset: Int, before: String, after: String, first: Int, last: Int): NauticalOrderCountableConnection!
|
5604
|
-
orders(offset: Int, before: String, after: String, first: Int, last: Int): OrderCountableConnection!
|
5605
|
-
}
|
5469
|
+
"""
|
5470
|
+
List of private metadata items.Requires proper staff permissions to access.
|
5471
|
+
"""
|
5472
|
+
privateMetadata: [MetadataItem!]!
|
5606
5473
|
|
5607
|
-
|
5608
|
-
|
5609
|
-
pageInfo: PageInfo!
|
5610
|
-
edges: [AffiliateCodesCountableEdge!]!
|
5474
|
+
"""List of public metadata items. Can be accessed without permissions."""
|
5475
|
+
metadata: [MetadataItem!]!
|
5611
5476
|
|
5612
|
-
"""
|
5613
|
-
|
5614
|
-
}
|
5477
|
+
"""List of lines for the fulfillment."""
|
5478
|
+
lines: [FulfillmentLine!]
|
5615
5479
|
|
5616
|
-
|
5617
|
-
|
5618
|
-
node: AffiliateCodes!
|
5480
|
+
"""Seller who made the fulfillment."""
|
5481
|
+
seller: Seller
|
5619
5482
|
|
5620
|
-
"""
|
5621
|
-
|
5622
|
-
}
|
5483
|
+
"""User-friendly fulfillment status."""
|
5484
|
+
statusDisplay: String
|
5623
5485
|
|
5624
|
-
|
5625
|
-
|
5626
|
-
pageInfo: PageInfo!
|
5627
|
-
edges: [NauticalOrderCountableEdge!]!
|
5486
|
+
"""Warehouse from fulfillment was fulfilled."""
|
5487
|
+
warehouse: Warehouse
|
5628
5488
|
|
5629
|
-
"""
|
5630
|
-
|
5631
|
-
}
|
5489
|
+
"""Sum of quantities across all lines."""
|
5490
|
+
totalLinesQuantity: Int
|
5632
5491
|
|
5633
|
-
|
5634
|
-
|
5635
|
-
node: NauticalOrder!
|
5492
|
+
"""Total price across all quantities across all lines."""
|
5493
|
+
totalLinesMoney: Money!
|
5636
5494
|
|
5637
|
-
"""
|
5638
|
-
|
5495
|
+
"""List of custom fields assigned to this fulfillment."""
|
5496
|
+
customFields: [SelectedAttribute!]!
|
5639
5497
|
}
|
5640
5498
|
|
5641
5499
|
"""Represents a nautical order in the shop."""
|
@@ -5677,8 +5535,6 @@ type NauticalOrder implements Node & ObjectWithMetadata {
|
|
5677
5535
|
displayGrossPrices: Boolean!
|
5678
5536
|
customerNote: String!
|
5679
5537
|
weight: Weight
|
5680
|
-
affiliate: User @deprecated(reason: "This will be removed on October 26, 2024 when affiliate support is removed.")
|
5681
|
-
affiliateCode: AffiliateCodes @deprecated(reason: "This will be removed on October 26, 2024 when affiliate support is removed.")
|
5682
5538
|
|
5683
5539
|
"""Data time when the order was imported from another platform."""
|
5684
5540
|
importedAt: DateTime
|
@@ -5777,12 +5633,6 @@ type NauticalOrder implements Node & ObjectWithMetadata {
|
|
5777
5633
|
|
5778
5634
|
"""Returns True, if order requires shipping."""
|
5779
5635
|
isShippingRequired: Boolean!
|
5780
|
-
|
5781
|
-
"""Channel the marketplace order is associated with"""
|
5782
|
-
channel: Channel @deprecated(reason: "This will be removed on October 29, 2024 when channel support is removed.")
|
5783
|
-
|
5784
|
-
"""Volume discount for the nautical order"""
|
5785
|
-
volumeDiscount: TaxedMoney
|
5786
5636
|
shippingMethodName: String!
|
5787
5637
|
|
5788
5638
|
"""Latest bid made against the order."""
|
@@ -5878,32 +5728,42 @@ enum NauticalOrderSubStatus {
|
|
5878
5728
|
OFFER_REJECTED
|
5879
5729
|
}
|
5880
5730
|
|
5881
|
-
|
5882
|
-
|
5883
|
-
|
5884
|
-
id: ID!
|
5885
|
-
fulfillmentOrder: Int!
|
5886
|
-
relatedTo: Fulfillment
|
5887
|
-
order: Order!
|
5731
|
+
enum OrderSubStatusEnum {
|
5732
|
+
"""In Review"""
|
5733
|
+
IN_REVIEW
|
5888
5734
|
|
5889
|
-
"""
|
5890
|
-
|
5891
|
-
status: FulfillmentStatus!
|
5735
|
+
"""Quote Requested"""
|
5736
|
+
QUOTE_REQUESTED
|
5892
5737
|
|
5893
|
-
"""
|
5894
|
-
|
5738
|
+
"""Awaiting Payment"""
|
5739
|
+
AWAITING_PAYMENT
|
5895
5740
|
|
5896
|
-
"""
|
5897
|
-
|
5741
|
+
"""Complete"""
|
5742
|
+
COMPLETE
|
5898
5743
|
|
5899
|
-
"""
|
5900
|
-
|
5901
|
-
shippingLabelUrl: String
|
5902
|
-
created: DateTime!
|
5903
|
-
updated: DateTime!
|
5744
|
+
"""Offer Approved"""
|
5745
|
+
OFFER_APPROVED
|
5904
5746
|
|
5905
|
-
"""
|
5906
|
-
|
5747
|
+
"""Offer Cancelled"""
|
5748
|
+
OFFER_CANCELLED
|
5749
|
+
|
5750
|
+
"""Offer Created"""
|
5751
|
+
OFFER_CREATED
|
5752
|
+
|
5753
|
+
"""Offer Expired"""
|
5754
|
+
OFFER_EXPIRED
|
5755
|
+
|
5756
|
+
"""Offer Negotiating"""
|
5757
|
+
OFFER_NEGOTIATING
|
5758
|
+
|
5759
|
+
"""Offer Rejected"""
|
5760
|
+
OFFER_REJECTED
|
5761
|
+
}
|
5762
|
+
|
5763
|
+
"""Represents order line of particular order."""
|
5764
|
+
type OrderLine implements Node & ObjectWithMetadata {
|
5765
|
+
"""The ID of the object"""
|
5766
|
+
id: ID!
|
5907
5767
|
|
5908
5768
|
"""
|
5909
5769
|
List of private metadata items.Requires proper staff permissions to access.
|
@@ -5912,130 +5772,48 @@ type Fulfillment implements Node & ObjectWithMetadata {
|
|
5912
5772
|
|
5913
5773
|
"""List of public metadata items. Can be accessed without permissions."""
|
5914
5774
|
metadata: [MetadataItem!]!
|
5775
|
+
isLinePriceOverridden: Boolean!
|
5776
|
+
unitPriceOverriddenNote: String
|
5777
|
+
note: String
|
5778
|
+
productName: String!
|
5779
|
+
variantName: String!
|
5780
|
+
productSku: String
|
5781
|
+
isShippingRequired: Boolean!
|
5782
|
+
quantityFulfilled: Int!
|
5783
|
+
quantityDeclined: Int!
|
5784
|
+
digitalContentUrl: DigitalContentUrl
|
5915
5785
|
|
5916
|
-
"""
|
5917
|
-
|
5918
|
-
|
5919
|
-
"""Seller who made the fulfillment."""
|
5920
|
-
seller: Seller
|
5786
|
+
"""The seller order for this line"""
|
5787
|
+
order: Order!
|
5921
5788
|
|
5922
|
-
"""
|
5923
|
-
|
5789
|
+
"""The nautical order line for this seller order line"""
|
5790
|
+
nauticalOrderLine: NauticalOrderLine!
|
5924
5791
|
|
5925
|
-
"""
|
5926
|
-
|
5792
|
+
"""The main thumbnail for the ordered product."""
|
5793
|
+
thumbnail(
|
5794
|
+
"""Size of thumbnail."""
|
5795
|
+
size: Int
|
5796
|
+
): Image
|
5927
5797
|
|
5928
|
-
"""
|
5929
|
-
|
5798
|
+
"""Price of the single item in the order line."""
|
5799
|
+
unitPrice: TaxedMoney
|
5930
5800
|
|
5931
|
-
"""
|
5932
|
-
|
5801
|
+
"""Price of the order line."""
|
5802
|
+
totalPrice: TaxedMoney
|
5933
5803
|
|
5934
|
-
"""
|
5935
|
-
|
5804
|
+
"""
|
5805
|
+
A purchased product variant. Note: this field may be null if the variant has been removed from stock at all.
|
5806
|
+
"""
|
5807
|
+
variant: ProductVariant
|
5936
5808
|
|
5937
|
-
"""
|
5938
|
-
|
5939
|
-
}
|
5809
|
+
"""Product name in the customer's language."""
|
5810
|
+
translatedProductName: String!
|
5940
5811
|
|
5941
|
-
"""
|
5942
|
-
|
5943
|
-
"""Fulfilled"""
|
5944
|
-
FULFILLED
|
5812
|
+
"""Variant name in the customer's language."""
|
5813
|
+
translatedVariantName: String!
|
5945
5814
|
|
5946
|
-
"""
|
5947
|
-
|
5948
|
-
|
5949
|
-
"""Returned"""
|
5950
|
-
RETURNED
|
5951
|
-
|
5952
|
-
"""Declined"""
|
5953
|
-
DECLINED
|
5954
|
-
|
5955
|
-
"""Return requested"""
|
5956
|
-
RETURN_REQUESTED
|
5957
|
-
|
5958
|
-
"""Return authorized"""
|
5959
|
-
RETURN_AUTHORIZED
|
5960
|
-
|
5961
|
-
"""Return declined"""
|
5962
|
-
RETURN_DECLINED
|
5963
|
-
|
5964
|
-
"""Return received"""
|
5965
|
-
RETURN_RECEIVED
|
5966
|
-
|
5967
|
-
"""Return complete"""
|
5968
|
-
RETURN_COMPLETE
|
5969
|
-
|
5970
|
-
"""Return cancelled"""
|
5971
|
-
RETURN_CANCELLED
|
5972
|
-
}
|
5973
|
-
|
5974
|
-
"""Represents line of the fulfillment."""
|
5975
|
-
type FulfillmentLine implements Node {
|
5976
|
-
"""The ID of the object"""
|
5977
|
-
id: ID!
|
5978
|
-
quantity: Int!
|
5979
|
-
orderLine: OrderLine
|
5980
|
-
|
5981
|
-
"""Reason customer requested item return."""
|
5982
|
-
returnReason: String
|
5983
|
-
}
|
5984
|
-
|
5985
|
-
"""Represents order line of particular order."""
|
5986
|
-
type OrderLine implements Node & ObjectWithMetadata {
|
5987
|
-
"""The ID of the object"""
|
5988
|
-
id: ID!
|
5989
|
-
|
5990
|
-
"""
|
5991
|
-
List of private metadata items.Requires proper staff permissions to access.
|
5992
|
-
"""
|
5993
|
-
privateMetadata: [MetadataItem!]!
|
5994
|
-
|
5995
|
-
"""List of public metadata items. Can be accessed without permissions."""
|
5996
|
-
metadata: [MetadataItem!]!
|
5997
|
-
isLinePriceOverridden: Boolean!
|
5998
|
-
unitPriceOverriddenNote: String
|
5999
|
-
note: String
|
6000
|
-
productName: String!
|
6001
|
-
variantName: String!
|
6002
|
-
productSku: String
|
6003
|
-
isShippingRequired: Boolean!
|
6004
|
-
quantityFulfilled: Int!
|
6005
|
-
quantityDeclined: Int!
|
6006
|
-
digitalContentUrl: DigitalContentUrl
|
6007
|
-
|
6008
|
-
"""The seller order for this line"""
|
6009
|
-
order: Order!
|
6010
|
-
|
6011
|
-
"""The nautical order line for this seller order line"""
|
6012
|
-
nauticalOrderLine: NauticalOrderLine!
|
6013
|
-
|
6014
|
-
"""The main thumbnail for the ordered product."""
|
6015
|
-
thumbnail(
|
6016
|
-
"""Size of thumbnail."""
|
6017
|
-
size: Int
|
6018
|
-
): Image
|
6019
|
-
|
6020
|
-
"""Price of the single item in the order line."""
|
6021
|
-
unitPrice: TaxedMoney
|
6022
|
-
|
6023
|
-
"""Price of the order line."""
|
6024
|
-
totalPrice: TaxedMoney
|
6025
|
-
|
6026
|
-
"""
|
6027
|
-
A purchased product variant. Note: this field may be null if the variant has been removed from stock at all.
|
6028
|
-
"""
|
6029
|
-
variant: ProductVariant
|
6030
|
-
|
6031
|
-
"""Product name in the customer's language."""
|
6032
|
-
translatedProductName: String!
|
6033
|
-
|
6034
|
-
"""Variant name in the customer's language."""
|
6035
|
-
translatedVariantName: String!
|
6036
|
-
|
6037
|
-
"""List of allocations across warehouses."""
|
6038
|
-
allocations: [Allocation!]
|
5815
|
+
"""List of allocations across warehouses."""
|
5816
|
+
allocations: [Allocation!]
|
6039
5817
|
|
6040
5818
|
"""The pricebook, if any, that changed the price of this line."""
|
6041
5819
|
priceBook: PriceBook
|
@@ -6409,38 +6187,6 @@ type ShippingZoneCountryArea implements Node {
|
|
6409
6187
|
countryArea: CountryArea!
|
6410
6188
|
}
|
6411
6189
|
|
6412
|
-
enum OrderSubStatusEnum {
|
6413
|
-
"""In Review"""
|
6414
|
-
IN_REVIEW
|
6415
|
-
|
6416
|
-
"""Quote Requested"""
|
6417
|
-
QUOTE_REQUESTED
|
6418
|
-
|
6419
|
-
"""Awaiting Payment"""
|
6420
|
-
AWAITING_PAYMENT
|
6421
|
-
|
6422
|
-
"""Complete"""
|
6423
|
-
COMPLETE
|
6424
|
-
|
6425
|
-
"""Offer Approved"""
|
6426
|
-
OFFER_APPROVED
|
6427
|
-
|
6428
|
-
"""Offer Cancelled"""
|
6429
|
-
OFFER_CANCELLED
|
6430
|
-
|
6431
|
-
"""Offer Created"""
|
6432
|
-
OFFER_CREATED
|
6433
|
-
|
6434
|
-
"""Offer Expired"""
|
6435
|
-
OFFER_EXPIRED
|
6436
|
-
|
6437
|
-
"""Offer Negotiating"""
|
6438
|
-
OFFER_NEGOTIATING
|
6439
|
-
|
6440
|
-
"""Offer Rejected"""
|
6441
|
-
OFFER_REJECTED
|
6442
|
-
}
|
6443
|
-
|
6444
6190
|
enum OrderAction {
|
6445
6191
|
"""Represents the capture action."""
|
6446
6192
|
CAPTURE
|
@@ -7190,6 +6936,50 @@ enum RefundTypeEnum {
|
|
7190
6936
|
ORDERLINEREFUND
|
7191
6937
|
}
|
7192
6938
|
|
6939
|
+
"""An enumeration."""
|
6940
|
+
enum FulfillmentStatus {
|
6941
|
+
"""Fulfilled"""
|
6942
|
+
FULFILLED
|
6943
|
+
|
6944
|
+
"""Canceled"""
|
6945
|
+
CANCELED
|
6946
|
+
|
6947
|
+
"""Returned"""
|
6948
|
+
RETURNED
|
6949
|
+
|
6950
|
+
"""Declined"""
|
6951
|
+
DECLINED
|
6952
|
+
|
6953
|
+
"""Return requested"""
|
6954
|
+
RETURN_REQUESTED
|
6955
|
+
|
6956
|
+
"""Return authorized"""
|
6957
|
+
RETURN_AUTHORIZED
|
6958
|
+
|
6959
|
+
"""Return declined"""
|
6960
|
+
RETURN_DECLINED
|
6961
|
+
|
6962
|
+
"""Return received"""
|
6963
|
+
RETURN_RECEIVED
|
6964
|
+
|
6965
|
+
"""Return complete"""
|
6966
|
+
RETURN_COMPLETE
|
6967
|
+
|
6968
|
+
"""Return cancelled"""
|
6969
|
+
RETURN_CANCELLED
|
6970
|
+
}
|
6971
|
+
|
6972
|
+
"""Represents line of the fulfillment."""
|
6973
|
+
type FulfillmentLine implements Node {
|
6974
|
+
"""The ID of the object"""
|
6975
|
+
id: ID!
|
6976
|
+
quantity: Int!
|
6977
|
+
orderLine: OrderLine
|
6978
|
+
|
6979
|
+
"""Reason customer requested item return."""
|
6980
|
+
returnReason: String
|
6981
|
+
}
|
6982
|
+
|
7193
6983
|
"""Extra fee associated with an order"""
|
7194
6984
|
type OrderFee implements Node {
|
7195
6985
|
"""The ID of the object"""
|
@@ -7399,7 +7189,6 @@ type Agreement implements Node & ObjectWithMetadata {
|
|
7399
7189
|
seoDescription: String
|
7400
7190
|
slug: String!
|
7401
7191
|
title: String!
|
7402
|
-
vendorType: AgreementVendorType!
|
7403
7192
|
|
7404
7193
|
"""Commission type"""
|
7405
7194
|
commissionType: CommissionTypeEnum! @deprecated(reason: "Markup commissions will be removed on January 23, 2025.")
|
@@ -7412,7 +7201,6 @@ type Agreement implements Node & ObjectWithMetadata {
|
|
7412
7201
|
If a markup commission is selected, this is the amount of the commission.
|
7413
7202
|
"""
|
7414
7203
|
markupCommissionValue: Decimal @deprecated(reason: "Markup commissions will be removed on January 23, 2025.")
|
7415
|
-
agreementType: AgreementAgreementType!
|
7416
7204
|
isActive: Boolean
|
7417
7205
|
|
7418
7206
|
"""List of granular commissions associated with the agreement."""
|
@@ -7431,15 +7219,6 @@ type Agreement implements Node & ObjectWithMetadata {
|
|
7431
7219
|
metadata: [MetadataItem!]!
|
7432
7220
|
}
|
7433
7221
|
|
7434
|
-
"""An enumeration."""
|
7435
|
-
enum AgreementVendorType {
|
7436
|
-
"""Seller"""
|
7437
|
-
SELLER
|
7438
|
-
|
7439
|
-
"""Affiliate"""
|
7440
|
-
AFFILIATE
|
7441
|
-
}
|
7442
|
-
|
7443
7222
|
enum CommissionTypeEnum {
|
7444
7223
|
"""Gross Price Commission"""
|
7445
7224
|
MARKETPLACE
|
@@ -7456,15 +7235,6 @@ enum MarkupCommissionTypeEnum {
|
|
7456
7235
|
PERCENTAGE
|
7457
7236
|
}
|
7458
7237
|
|
7459
|
-
"""An enumeration."""
|
7460
|
-
enum AgreementAgreementType {
|
7461
|
-
"""Seller"""
|
7462
|
-
A_1
|
7463
|
-
|
7464
|
-
"""Affiliate"""
|
7465
|
-
A_2
|
7466
|
-
}
|
7467
|
-
|
7468
7238
|
"""An agreement commission"""
|
7469
7239
|
type AgreementCommission implements Node & ObjectWithMetadata {
|
7470
7240
|
"""The ID of the object"""
|
@@ -7542,7 +7312,6 @@ type Microsite implements Node & ObjectWithMetadata {
|
|
7542
7312
|
name: String!
|
7543
7313
|
slug: String!
|
7544
7314
|
footerText: String
|
7545
|
-
affiliate: User @deprecated(reason: "This will be removed on October 26, 2024 when affiliate support is removed.")
|
7546
7315
|
seller: Seller
|
7547
7316
|
|
7548
7317
|
"""
|
@@ -8255,7 +8024,6 @@ input CustomerOrderFilterInput {
|
|
8255
8024
|
paymentStatus: [PaymentChargeStatusEnum!]
|
8256
8025
|
status: [OrderStatusFilter!]
|
8257
8026
|
customer: String
|
8258
|
-
channel: String
|
8259
8027
|
created: DateRangeInput
|
8260
8028
|
metadata: MetadataFilterInput
|
8261
8029
|
privateMetadata: MetadataFilterInput
|
@@ -8327,9 +8095,6 @@ enum OrderSortField {
|
|
8327
8095
|
"""Sort orders by fulfillment status."""
|
8328
8096
|
FULFILLMENT_STATUS
|
8329
8097
|
|
8330
|
-
"""Sort orders by channel."""
|
8331
|
-
CHANNEL
|
8332
|
-
|
8333
8098
|
"""Sort orders by total."""
|
8334
8099
|
TOTAL
|
8335
8100
|
|
@@ -8343,11 +8108,27 @@ enum OrderSortField {
|
|
8343
8108
|
EXTERNAL_SOURCE
|
8344
8109
|
}
|
8345
8110
|
|
8111
|
+
type NauticalOrderCountableConnection {
|
8112
|
+
"""Pagination data for this connection."""
|
8113
|
+
pageInfo: PageInfo!
|
8114
|
+
edges: [NauticalOrderCountableEdge!]!
|
8115
|
+
|
8116
|
+
"""A total count of items in the collection."""
|
8117
|
+
totalCount: Int
|
8118
|
+
}
|
8119
|
+
|
8120
|
+
type NauticalOrderCountableEdge {
|
8121
|
+
"""The item at the end of the edge."""
|
8122
|
+
node: NauticalOrder!
|
8123
|
+
|
8124
|
+
"""A cursor for use in pagination."""
|
8125
|
+
cursor: String!
|
8126
|
+
}
|
8127
|
+
|
8346
8128
|
input CustomerNauticalOrderFilterInput {
|
8347
8129
|
paymentStatus: [PaymentChargeStatusEnum!]
|
8348
8130
|
status: [OrderStatusFilter!]
|
8349
8131
|
customer: String
|
8350
|
-
channel: String
|
8351
8132
|
created: DateRangeInput
|
8352
8133
|
metadata: MetadataFilterInput
|
8353
8134
|
privateMetadata: MetadataFilterInput
|
@@ -9095,24 +8876,15 @@ type Shop {
|
|
9095
8876
|
"""Whether the marketplace has enabled offer orders."""
|
9096
8877
|
enableOfferOrders: Boolean
|
9097
8878
|
|
9098
|
-
"""List of the shops's supported languages."""
|
9099
|
-
languages: [LanguageDisplay!]! @deprecated(reason: "This will be removed on October 29, 2024")
|
9100
|
-
|
9101
8879
|
"""Shop's name."""
|
9102
8880
|
name: String!
|
9103
8881
|
|
9104
|
-
"""Shop's navigation."""
|
9105
|
-
navigation: Navigation @deprecated(reason: "Fetch menus using the `menu` query with `slug` parameter. This will be removed on October 29, 2024.")
|
9106
|
-
|
9107
8882
|
"""List of available permissions."""
|
9108
8883
|
permissions: [Permission!]!
|
9109
8884
|
|
9110
8885
|
"""List of possible phone prefixes."""
|
9111
8886
|
phonePrefixes: [String!]!
|
9112
8887
|
|
9113
|
-
"""Header text."""
|
9114
|
-
headerText: String @deprecated(reason: "This will be removed on October 29, 2024")
|
9115
|
-
|
9116
8888
|
"""Include taxes in prices."""
|
9117
8889
|
includeTaxesInPrices: Boolean!
|
9118
8890
|
|
@@ -9155,11 +8927,6 @@ type Shop {
|
|
9155
8927
|
"""Gets active plugins."""
|
9156
8928
|
activePlugins: [Plugin!]!
|
9157
8929
|
|
9158
|
-
"""
|
9159
|
-
None if shop does not use Builder, otherwise this contains Builder public api key.
|
9160
|
-
"""
|
9161
|
-
builderKey: String @deprecated(reason: "This will be removed on October 29, 2024")
|
9162
|
-
|
9163
8930
|
"""
|
9164
8931
|
None if shop does not use Crisp, otherwise this contains Crisp Website ID.
|
9165
8932
|
"""
|
@@ -9253,110 +9020,35 @@ type Domain {
|
|
9253
9020
|
url: String!
|
9254
9021
|
}
|
9255
9022
|
|
9256
|
-
|
9257
|
-
|
9258
|
-
code: LanguageCodeEnum!
|
9259
|
-
|
9260
|
-
"""Full name of the language."""
|
9261
|
-
language: String!
|
9262
|
-
}
|
9263
|
-
|
9264
|
-
"""Represents shop's navigation menus."""
|
9265
|
-
type Navigation {
|
9266
|
-
"""Main navigation bar."""
|
9267
|
-
main: Menu
|
9268
|
-
|
9269
|
-
"""Secondary navigation bar."""
|
9270
|
-
secondary: Menu
|
9271
|
-
}
|
9272
|
-
|
9273
|
-
"""
|
9274
|
-
Represents a single menu - an object that is used to help navigate through the store.
|
9275
|
-
"""
|
9276
|
-
type Menu implements Node {
|
9277
|
-
"""The ID of the object"""
|
9023
|
+
"""Plugin."""
|
9024
|
+
type Plugin implements Node {
|
9278
9025
|
id: ID!
|
9026
|
+
privateMetadata: JSONString!
|
9027
|
+
metadata: JSONString!
|
9028
|
+
company: String
|
9029
|
+
category: PluginConfigurationCategory
|
9030
|
+
descriptionShort: String!
|
9031
|
+
logoUrl: String
|
9032
|
+
created: DateTime!
|
9033
|
+
externalUrl: String
|
9034
|
+
supportUrl: String
|
9035
|
+
allowSellers: Boolean
|
9036
|
+
allowManyActivePluginsInCategory: Boolean!
|
9037
|
+
tenant: Tenant!
|
9038
|
+
identifier: String!
|
9279
9039
|
name: String!
|
9280
|
-
|
9281
|
-
|
9040
|
+
description: String!
|
9041
|
+
active: Boolean!
|
9042
|
+
configuration: [ConfigurationItem!]
|
9043
|
+
defaultConfiguration: [ConfigurationItem!]
|
9044
|
+
supportSellerConfiguration: Boolean
|
9045
|
+
version: String!
|
9282
9046
|
}
|
9283
9047
|
|
9284
|
-
"""
|
9285
|
-
|
9286
|
-
"""
|
9287
|
-
|
9288
|
-
"""The ID of the object"""
|
9289
|
-
id: ID!
|
9290
|
-
menu: Menu!
|
9291
|
-
name: String!
|
9292
|
-
parent: MenuItem
|
9293
|
-
category: Category
|
9294
|
-
collection: Collection
|
9295
|
-
page: Page
|
9296
|
-
level: Int!
|
9297
|
-
children: [MenuItem!]!
|
9298
|
-
|
9299
|
-
"""URL to the menu item."""
|
9300
|
-
url: String
|
9301
|
-
}
|
9302
|
-
|
9303
|
-
"""
|
9304
|
-
A static page that can be manually added by a shop operator through the dashboard.
|
9305
|
-
"""
|
9306
|
-
type Page implements Node & ObjectWithMetadata {
|
9307
|
-
"""The ID of the object"""
|
9308
|
-
id: ID!
|
9309
|
-
publicationDate: Date
|
9310
|
-
createdAt: DateTime!
|
9311
|
-
updatedAt: DateTime!
|
9312
|
-
content: String!
|
9313
|
-
contentHtml: String!
|
9314
|
-
seoTitle: String
|
9315
|
-
seoDescription: String
|
9316
|
-
slug: String!
|
9317
|
-
title: String!
|
9318
|
-
|
9319
|
-
"""
|
9320
|
-
List of private metadata items.Requires proper staff permissions to access.
|
9321
|
-
"""
|
9322
|
-
privateMetadata: [MetadataItem!]!
|
9323
|
-
|
9324
|
-
"""List of public metadata items. Can be accessed without permissions."""
|
9325
|
-
metadata: [MetadataItem!]!
|
9326
|
-
|
9327
|
-
"""Whether the page is published."""
|
9328
|
-
isPublished: Boolean!
|
9329
|
-
}
|
9330
|
-
|
9331
|
-
"""Plugin."""
|
9332
|
-
type Plugin implements Node {
|
9333
|
-
id: ID!
|
9334
|
-
privateMetadata: JSONString!
|
9335
|
-
metadata: JSONString!
|
9336
|
-
company: String
|
9337
|
-
category: PluginConfigurationCategory
|
9338
|
-
descriptionShort: String!
|
9339
|
-
logoUrl: String
|
9340
|
-
created: DateTime!
|
9341
|
-
externalUrl: String
|
9342
|
-
supportUrl: String
|
9343
|
-
allowSellers: Boolean
|
9344
|
-
allowManyActivePluginsInCategory: Boolean!
|
9345
|
-
tenant: Tenant!
|
9346
|
-
identifier: String!
|
9347
|
-
name: String!
|
9348
|
-
description: String!
|
9349
|
-
active: Boolean!
|
9350
|
-
configuration: [ConfigurationItem!]
|
9351
|
-
defaultConfiguration: [ConfigurationItem!]
|
9352
|
-
supportSellerConfiguration: Boolean
|
9353
|
-
version: String!
|
9354
|
-
}
|
9355
|
-
|
9356
|
-
"""An enumeration."""
|
9357
|
-
enum PluginConfigurationCategory {
|
9358
|
-
"""Auth"""
|
9359
|
-
AUTH
|
9048
|
+
"""An enumeration."""
|
9049
|
+
enum PluginConfigurationCategory {
|
9050
|
+
"""Auth"""
|
9051
|
+
AUTH
|
9360
9052
|
|
9361
9053
|
"""Fulfillment"""
|
9362
9054
|
FULFILLMENT
|
@@ -9700,6 +9392,8 @@ input CategoryFilterInput {
|
|
9700
9392
|
search: String
|
9701
9393
|
ids: [ID]
|
9702
9394
|
customFields: [AttributeInput!]
|
9395
|
+
metadata: MetadataFilterInput
|
9396
|
+
privateMetadata: MetadataFilterInput
|
9703
9397
|
}
|
9704
9398
|
|
9705
9399
|
input CategorySortingInput {
|
@@ -9775,6 +9469,8 @@ input ProductTypeFilterInput {
|
|
9775
9469
|
configurable: ProductTypeConfigurable
|
9776
9470
|
ids: [ID]
|
9777
9471
|
showExternal: Boolean
|
9472
|
+
metadata: MetadataFilterInput
|
9473
|
+
privateMetadata: MetadataFilterInput
|
9778
9474
|
}
|
9779
9475
|
|
9780
9476
|
enum ProductTypeEnum {
|
@@ -10929,11 +10625,9 @@ type OrderVendorSummaryType {
|
|
10929
10625
|
average: Float
|
10930
10626
|
taxes: Float
|
10931
10627
|
discounts: Float
|
10932
|
-
volumeDiscounts: Float
|
10933
10628
|
revenue: Float
|
10934
10629
|
totals: Int
|
10935
10630
|
commission: Float
|
10936
|
-
affiliateCommission: Float @deprecated(reason: "This will be removed on October 26, 2024 when affiliate support is removed.")
|
10937
10631
|
payout: Float
|
10938
10632
|
vendors: Int
|
10939
10633
|
adjustments: Decimal
|
@@ -10950,11 +10644,9 @@ type OrderVendorReportType {
|
|
10950
10644
|
average: Float
|
10951
10645
|
taxes: Float
|
10952
10646
|
discounts: Float
|
10953
|
-
volumeDiscounts: Float
|
10954
10647
|
revenue: Float
|
10955
10648
|
totals: Int
|
10956
10649
|
commission: Float
|
10957
|
-
affiliateCommission: Float @deprecated(reason: "This will be removed on October 26, 2024 when affiliate support is removed.")
|
10958
10650
|
payout: Float
|
10959
10651
|
vendorId: Int
|
10960
10652
|
vendor: Vendor
|
@@ -10980,11 +10672,9 @@ type SingleVendorReportType {
|
|
10980
10672
|
average: Float
|
10981
10673
|
taxes: Float
|
10982
10674
|
discounts: Float
|
10983
|
-
volumeDiscounts: Float
|
10984
10675
|
revenue: Float
|
10985
10676
|
totals: Int
|
10986
10677
|
commission: Float
|
10987
|
-
affiliateCommission: Float @deprecated(reason: "This will be removed on October 26, 2024 when affiliate support is removed.")
|
10988
10678
|
payout: Decimal
|
10989
10679
|
adjustments: Decimal
|
10990
10680
|
penalties: Decimal
|
@@ -11005,11 +10695,9 @@ type SingleVendorSummaryType {
|
|
11005
10695
|
average: Float
|
11006
10696
|
taxes: Float
|
11007
10697
|
discounts: Float
|
11008
|
-
volumeDiscounts: Float
|
11009
10698
|
revenue: Float
|
11010
10699
|
totals: Int
|
11011
10700
|
commission: Float
|
11012
|
-
affiliateCommission: Float @deprecated(reason: "This will be removed on October 26, 2024 when affiliate support is removed.")
|
11013
10701
|
payout: Float
|
11014
10702
|
adjustments: Decimal
|
11015
10703
|
penalties: Decimal
|
@@ -11034,6 +10722,34 @@ type PaymentCountableEdge {
|
|
11034
10722
|
cursor: String!
|
11035
10723
|
}
|
11036
10724
|
|
10725
|
+
"""
|
10726
|
+
A static page that can be manually added by a shop operator through the dashboard.
|
10727
|
+
"""
|
10728
|
+
type Page implements Node & ObjectWithMetadata {
|
10729
|
+
"""The ID of the object"""
|
10730
|
+
id: ID!
|
10731
|
+
publicationDate: Date
|
10732
|
+
createdAt: DateTime!
|
10733
|
+
updatedAt: DateTime!
|
10734
|
+
content: String!
|
10735
|
+
contentHtml: String!
|
10736
|
+
seoTitle: String
|
10737
|
+
seoDescription: String
|
10738
|
+
slug: String!
|
10739
|
+
title: String!
|
10740
|
+
|
10741
|
+
"""
|
10742
|
+
List of private metadata items.Requires proper staff permissions to access.
|
10743
|
+
"""
|
10744
|
+
privateMetadata: [MetadataItem!]!
|
10745
|
+
|
10746
|
+
"""List of public metadata items. Can be accessed without permissions."""
|
10747
|
+
metadata: [MetadataItem!]!
|
10748
|
+
|
10749
|
+
"""Whether the page is published."""
|
10750
|
+
isPublished: Boolean!
|
10751
|
+
}
|
10752
|
+
|
11037
10753
|
type PageCountableConnection {
|
11038
10754
|
"""Pagination data for this connection."""
|
11039
10755
|
pageInfo: PageInfo!
|
@@ -11118,7 +10834,6 @@ input OrderFilterInput {
|
|
11118
10834
|
paymentStatus: [PaymentChargeStatusEnum!]
|
11119
10835
|
status: [OrderStatusFilter!]
|
11120
10836
|
customer: String
|
11121
|
-
channel: String
|
11122
10837
|
created: DateRangeInput
|
11123
10838
|
metadata: MetadataFilterInput
|
11124
10839
|
privateMetadata: MetadataFilterInput
|
@@ -11136,7 +10851,6 @@ input NauticalOrderFilterInput {
|
|
11136
10851
|
paymentStatus: [PaymentChargeStatusEnum!]
|
11137
10852
|
status: [OrderStatusFilter!]
|
11138
10853
|
customer: String
|
11139
|
-
channel: String
|
11140
10854
|
created: DateRangeInput
|
11141
10855
|
metadata: MetadataFilterInput
|
11142
10856
|
privateMetadata: MetadataFilterInput
|
@@ -11149,7 +10863,6 @@ input NauticalOrderFilterInput {
|
|
11149
10863
|
|
11150
10864
|
input OrderDraftFilterInput {
|
11151
10865
|
customer: String
|
11152
|
-
channel: String
|
11153
10866
|
created: DateRangeInput
|
11154
10867
|
metadata: MetadataFilterInput
|
11155
10868
|
privateMetadata: MetadataFilterInput
|
@@ -11162,7 +10875,6 @@ input OrderDraftFilterInput {
|
|
11162
10875
|
|
11163
10876
|
input NauticalOrderDraftFilterInput {
|
11164
10877
|
customer: String
|
11165
|
-
channel: String
|
11166
10878
|
created: DateRangeInput
|
11167
10879
|
metadata: MetadataFilterInput
|
11168
10880
|
privateMetadata: MetadataFilterInput
|
@@ -11175,7 +10887,6 @@ input NauticalOrderDraftFilterInput {
|
|
11175
10887
|
|
11176
10888
|
input NauticalOrderQuoteFilterInput {
|
11177
10889
|
customer: String
|
11178
|
-
channel: String
|
11179
10890
|
created: DateRangeInput
|
11180
10891
|
metadata: MetadataFilterInput
|
11181
10892
|
privateMetadata: MetadataFilterInput
|
@@ -11194,7 +10905,6 @@ enum QuoteOrderSubStatusFilter {
|
|
11194
10905
|
|
11195
10906
|
input OrderQuoteFilterInput {
|
11196
10907
|
customer: String
|
11197
|
-
channel: String
|
11198
10908
|
created: DateRangeInput
|
11199
10909
|
metadata: MetadataFilterInput
|
11200
10910
|
privateMetadata: MetadataFilterInput
|
@@ -11319,7 +11029,6 @@ type MicrositeCountableEdge {
|
|
11319
11029
|
input MicrositeFilterInput {
|
11320
11030
|
published: MicrositePublished
|
11321
11031
|
search: String
|
11322
|
-
vendorType: MicrositeVendorType
|
11323
11032
|
ids: [ID]
|
11324
11033
|
metadata: MetadataFilterInput
|
11325
11034
|
privateMetadata: MetadataFilterInput
|
@@ -11330,11 +11039,6 @@ enum MicrositePublished {
|
|
11330
11039
|
HIDDEN
|
11331
11040
|
}
|
11332
11041
|
|
11333
|
-
enum MicrositeVendorType {
|
11334
|
-
SELLER
|
11335
|
-
AFFILIATE
|
11336
|
-
}
|
11337
|
-
|
11338
11042
|
input MicrositeSortingInput {
|
11339
11043
|
"""Specifies the direction in which to sort products."""
|
11340
11044
|
direction: OrderDirection!
|
@@ -11357,6 +11061,36 @@ enum MicrositeSortField {
|
|
11357
11061
|
PUBLICATION_DATE
|
11358
11062
|
}
|
11359
11063
|
|
11064
|
+
"""
|
11065
|
+
Represents a single menu - an object that is used to help navigate through the store.
|
11066
|
+
"""
|
11067
|
+
type Menu implements Node {
|
11068
|
+
"""The ID of the object"""
|
11069
|
+
id: ID!
|
11070
|
+
name: String!
|
11071
|
+
slug: String!
|
11072
|
+
items: [MenuItem!]!
|
11073
|
+
}
|
11074
|
+
|
11075
|
+
"""
|
11076
|
+
Represents a single item of the related menu. Can store categories, collection or pages.
|
11077
|
+
"""
|
11078
|
+
type MenuItem implements Node {
|
11079
|
+
"""The ID of the object"""
|
11080
|
+
id: ID!
|
11081
|
+
menu: Menu!
|
11082
|
+
name: String!
|
11083
|
+
parent: MenuItem
|
11084
|
+
category: Category
|
11085
|
+
collection: Collection
|
11086
|
+
page: Page
|
11087
|
+
level: Int!
|
11088
|
+
children: [MenuItem!]!
|
11089
|
+
|
11090
|
+
"""URL to the menu item."""
|
11091
|
+
url: String
|
11092
|
+
}
|
11093
|
+
|
11360
11094
|
type MenuCountableConnection {
|
11361
11095
|
"""Pagination data for this connection."""
|
11362
11096
|
pageInfo: PageInfo!
|
@@ -12143,9 +11877,9 @@ type EmailEvent implements Node {
|
|
12143
11877
|
"""
|
12144
11878
|
date: DateTime!
|
12145
11879
|
fromEmail: String!
|
12146
|
-
toEmails: [String!]
|
12147
|
-
bccEmails: [String!]
|
12148
|
-
ccEmails: [String!]
|
11880
|
+
toEmails: [String!]
|
11881
|
+
bccEmails: [String!]
|
11882
|
+
ccEmails: [String!]
|
12149
11883
|
messageType: EmailEventMessageType!
|
12150
11884
|
|
12151
11885
|
"""Plugin id (Plugin.PLUGIN_ID attribute) of email plugin"""
|
@@ -12485,11 +12219,9 @@ type OrderSellerSummaryType {
|
|
12485
12219
|
average: Float
|
12486
12220
|
taxes: Float
|
12487
12221
|
discounts: Float
|
12488
|
-
volumeDiscounts: Float
|
12489
12222
|
revenue: Float
|
12490
12223
|
totals: Int
|
12491
12224
|
commission: Float
|
12492
|
-
affiliateCommission: Float @deprecated(reason: "This will be removed on October 26, 2024 when affiliate support is removed.")
|
12493
12225
|
payout: Float
|
12494
12226
|
sellers: Float
|
12495
12227
|
}
|
@@ -12502,11 +12234,9 @@ type OrderCustomerReportType {
|
|
12502
12234
|
average: Float
|
12503
12235
|
taxes: Float
|
12504
12236
|
discounts: Float
|
12505
|
-
volumeDiscounts: Float
|
12506
12237
|
revenue: Float
|
12507
12238
|
totals: Int
|
12508
12239
|
commission: Float
|
12509
|
-
affiliateCommission: Float @deprecated(reason: "This will be removed on October 26, 2024 when affiliate support is removed.")
|
12510
12240
|
payout: Float
|
12511
12241
|
userId: Int
|
12512
12242
|
user: User
|
@@ -12544,11 +12274,9 @@ type OrderSellerReportType {
|
|
12544
12274
|
average: Float
|
12545
12275
|
taxes: Float
|
12546
12276
|
discounts: Float
|
12547
|
-
volumeDiscounts: Float
|
12548
12277
|
revenue: Float
|
12549
12278
|
totals: Int
|
12550
12279
|
commission: Float
|
12551
|
-
affiliateCommission: Float @deprecated(reason: "This will be removed on October 26, 2024 when affiliate support is removed.")
|
12552
12280
|
payout: Float
|
12553
12281
|
sellerId: Int
|
12554
12282
|
seller: Seller
|
@@ -12586,11 +12314,9 @@ type OrderMarketplaceReportType {
|
|
12586
12314
|
average: Float
|
12587
12315
|
taxes: Float
|
12588
12316
|
discounts: Float
|
12589
|
-
volumeDiscounts: Float
|
12590
12317
|
revenue: Float
|
12591
12318
|
totals: Int
|
12592
12319
|
commission: Float
|
12593
|
-
affiliateCommission: Float @deprecated(reason: "This will be removed on October 26, 2024 when affiliate support is removed.")
|
12594
12320
|
payout: Float
|
12595
12321
|
dimension: Date
|
12596
12322
|
}
|
@@ -12627,65 +12353,6 @@ type InReportMarketplacePayoutsSummaryType {
|
|
12627
12353
|
report: [OrderSellerReportType!]
|
12628
12354
|
}
|
12629
12355
|
|
12630
|
-
type InReportMarketplaceAffiliatePayoutsSummaryType {
|
12631
|
-
"""Category of the metric."""
|
12632
|
-
category: String!
|
12633
|
-
|
12634
|
-
"""Title of the metric."""
|
12635
|
-
title: String!
|
12636
|
-
|
12637
|
-
"""
|
12638
|
-
Description of main columns in report and summary. Note: report and summary can contain additional columns.
|
12639
|
-
"""
|
12640
|
-
columns: [ColumnObjectType!]
|
12641
|
-
|
12642
|
-
"""Info about applied filters."""
|
12643
|
-
filters: [FilterObjectType!]
|
12644
|
-
|
12645
|
-
"""Total summary for selected period."""
|
12646
|
-
summary: OrderAffiliateSummaryType!
|
12647
|
-
|
12648
|
-
"""
|
12649
|
-
Report where each row represent aggregated, by selected (in filters) dimension, summary.
|
12650
|
-
"""
|
12651
|
-
report: [OrderAffiliateReportType!]
|
12652
|
-
}
|
12653
|
-
|
12654
|
-
type OrderAffiliateSummaryType {
|
12655
|
-
gross: Float
|
12656
|
-
orders: Int
|
12657
|
-
net: Float
|
12658
|
-
shipping: Float
|
12659
|
-
average: Float
|
12660
|
-
taxes: Float
|
12661
|
-
discounts: Float
|
12662
|
-
volumeDiscounts: Float
|
12663
|
-
revenue: Float
|
12664
|
-
totals: Int
|
12665
|
-
commission: Float
|
12666
|
-
affiliateCommission: Float @deprecated(reason: "This will be removed on October 26, 2024 when affiliate support is removed.")
|
12667
|
-
payout: Float
|
12668
|
-
affiliates: Float
|
12669
|
-
}
|
12670
|
-
|
12671
|
-
type OrderAffiliateReportType {
|
12672
|
-
gross: Float
|
12673
|
-
orders: Int
|
12674
|
-
net: Float
|
12675
|
-
shipping: Float
|
12676
|
-
average: Float
|
12677
|
-
taxes: Float
|
12678
|
-
discounts: Float
|
12679
|
-
volumeDiscounts: Float
|
12680
|
-
revenue: Float
|
12681
|
-
totals: Int
|
12682
|
-
commission: Float
|
12683
|
-
affiliateCommission: Float @deprecated(reason: "This will be removed on October 26, 2024 when affiliate support is removed.")
|
12684
|
-
payout: Float
|
12685
|
-
affiliateId: Int
|
12686
|
-
affiliate: User
|
12687
|
-
}
|
12688
|
-
|
12689
12356
|
type InReportMarketplaceTaxSummaryType {
|
12690
12357
|
"""Category of the metric."""
|
12691
12358
|
category: String!
|
@@ -12718,11 +12385,9 @@ type AbstractOrderSellerReportType {
|
|
12718
12385
|
average: Float
|
12719
12386
|
taxes: Float
|
12720
12387
|
discounts: Float
|
12721
|
-
volumeDiscounts: Float
|
12722
12388
|
revenue: Float
|
12723
12389
|
totals: Int
|
12724
12390
|
commission: Float
|
12725
|
-
affiliateCommission: Float @deprecated(reason: "This will be removed on October 26, 2024 when affiliate support is removed.")
|
12726
12391
|
payout: Float
|
12727
12392
|
}
|
12728
12393
|
|
@@ -12734,11 +12399,9 @@ type MarketplaceTaxReportType {
|
|
12734
12399
|
average: Float
|
12735
12400
|
taxes: Float
|
12736
12401
|
discounts: Float
|
12737
|
-
volumeDiscounts: Float
|
12738
12402
|
revenue: Float
|
12739
12403
|
totals: Int
|
12740
12404
|
commission: Float
|
12741
|
-
affiliateCommission: Float @deprecated(reason: "This will be removed on October 26, 2024 when affiliate support is removed.")
|
12742
12405
|
payout: Float
|
12743
12406
|
dimension: Date
|
12744
12407
|
}
|
@@ -12775,11 +12438,9 @@ type MarketplaceTaxReportByLocaleType {
|
|
12775
12438
|
average: Float
|
12776
12439
|
taxes: Float
|
12777
12440
|
discounts: Float
|
12778
|
-
volumeDiscounts: Float
|
12779
12441
|
revenue: Float
|
12780
12442
|
totals: Int
|
12781
12443
|
commission: Float
|
12782
|
-
affiliateCommission: Float @deprecated(reason: "This will be removed on October 26, 2024 when affiliate support is removed.")
|
12783
12444
|
payout: Float
|
12784
12445
|
billingAddress_Country: String
|
12785
12446
|
billingAddress_CountryArea: String
|
@@ -12968,7 +12629,6 @@ type AbstractPercentReportType {
|
|
12968
12629
|
average: Float
|
12969
12630
|
taxes: Float
|
12970
12631
|
discounts: Float
|
12971
|
-
volumeDiscounts: Float
|
12972
12632
|
revenue: Float
|
12973
12633
|
totals: Float
|
12974
12634
|
}
|
@@ -12987,11 +12647,9 @@ type DashboardSellerOrderPerformanceType {
|
|
12987
12647
|
average: Float
|
12988
12648
|
taxes: Float
|
12989
12649
|
discounts: Float
|
12990
|
-
volumeDiscounts: Float
|
12991
12650
|
revenue: Float
|
12992
12651
|
totals: Int
|
12993
12652
|
commission: Float
|
12994
|
-
affiliateCommission: Float @deprecated(reason: "This will be removed on October 26, 2024 when affiliate support is removed.")
|
12995
12653
|
payout: Float
|
12996
12654
|
sellerId: Int
|
12997
12655
|
seller: Seller
|
@@ -13010,11 +12668,9 @@ type GraphDataType {
|
|
13010
12668
|
average: Float
|
13011
12669
|
taxes: Float
|
13012
12670
|
discounts: Float
|
13013
|
-
volumeDiscounts: Float
|
13014
12671
|
revenue: Float
|
13015
12672
|
totals: Int
|
13016
12673
|
commission: Float
|
13017
|
-
affiliateCommission: Float @deprecated(reason: "This will be removed on October 26, 2024 when affiliate support is removed.")
|
13018
12674
|
payout: Float
|
13019
12675
|
dimension: DateTime
|
13020
12676
|
}
|
@@ -13381,27 +13037,6 @@ type DesignerDataType {
|
|
13381
13037
|
jsonContent: JSONString!
|
13382
13038
|
}
|
13383
13039
|
|
13384
|
-
type BrandingType {
|
13385
|
-
id: ID!
|
13386
|
-
tenant: Tenant!
|
13387
|
-
jsonContent: JSONString!
|
13388
|
-
logo(
|
13389
|
-
"""Size of the image."""
|
13390
|
-
size: Int
|
13391
|
-
): Image
|
13392
|
-
icon(
|
13393
|
-
"""Size of the image."""
|
13394
|
-
size: Int
|
13395
|
-
): Image
|
13396
|
-
favicon(
|
13397
|
-
"""Size of the image."""
|
13398
|
-
size: Int
|
13399
|
-
): Image
|
13400
|
-
logoHeight: Int
|
13401
|
-
logoWidth: Int
|
13402
|
-
footerText: String!
|
13403
|
-
}
|
13404
|
-
|
13405
13040
|
"""Represents a job data of exported file."""
|
13406
13041
|
type ExportFile implements Node & Job {
|
13407
13042
|
"""The ID of the object"""
|
@@ -13513,12 +13148,6 @@ enum ExportFileSortField {
|
|
13513
13148
|
UPDATED_AT
|
13514
13149
|
}
|
13515
13150
|
|
13516
|
-
type CoreDataType {
|
13517
|
-
tenant: Tenant!
|
13518
|
-
name: String!
|
13519
|
-
jsonContent: JSONString!
|
13520
|
-
}
|
13521
|
-
|
13522
13151
|
type CheckoutCountableConnection {
|
13523
13152
|
"""Pagination data for this connection."""
|
13524
13153
|
pageInfo: PageInfo!
|
@@ -13553,45 +13182,6 @@ type CheckoutLineCountableEdge {
|
|
13553
13182
|
cursor: String!
|
13554
13183
|
}
|
13555
13184
|
|
13556
|
-
type ChannelCountableConnection {
|
13557
|
-
"""Pagination data for this connection."""
|
13558
|
-
pageInfo: PageInfo!
|
13559
|
-
edges: [ChannelCountableEdge!]!
|
13560
|
-
|
13561
|
-
"""A total count of items in the collection."""
|
13562
|
-
totalCount: Int
|
13563
|
-
}
|
13564
|
-
|
13565
|
-
type ChannelCountableEdge {
|
13566
|
-
"""The item at the end of the edge."""
|
13567
|
-
node: Channel!
|
13568
|
-
|
13569
|
-
"""A cursor for use in pagination."""
|
13570
|
-
cursor: String!
|
13571
|
-
}
|
13572
|
-
|
13573
|
-
input ChannelFilterInput {
|
13574
|
-
search: String
|
13575
|
-
createdAt: DateTime
|
13576
|
-
created: DateRangeInput
|
13577
|
-
}
|
13578
|
-
|
13579
|
-
input ChannelSortingInput {
|
13580
|
-
"""Specifies the direction in which to sort products."""
|
13581
|
-
direction: OrderDirection!
|
13582
|
-
|
13583
|
-
"""Sort channels by the selected field."""
|
13584
|
-
field: ChannelSortField!
|
13585
|
-
}
|
13586
|
-
|
13587
|
-
enum ChannelSortField {
|
13588
|
-
"""Sort channels by channel."""
|
13589
|
-
CHANNEL
|
13590
|
-
|
13591
|
-
"""Sort channels by created at."""
|
13592
|
-
CREATED_AT
|
13593
|
-
}
|
13594
|
-
|
13595
13185
|
input AttributeSortingInput {
|
13596
13186
|
"""Specifies the direction in which to sort products."""
|
13597
13187
|
direction: OrderDirection!
|
@@ -13751,50 +13341,6 @@ input AgreementFilterInput {
|
|
13751
13341
|
search: String
|
13752
13342
|
}
|
13753
13343
|
|
13754
|
-
input AffiliateFilterInput {
|
13755
|
-
dateJoined: DateRangeInput
|
13756
|
-
moneySpent: PriceRangeInput
|
13757
|
-
numberOfOrders: IntRangeInput
|
13758
|
-
placedOrders: DateRangeInput
|
13759
|
-
search: String
|
13760
|
-
}
|
13761
|
-
|
13762
|
-
type OptimizedAffiliate {
|
13763
|
-
affiliate: User
|
13764
|
-
channels: [OptimizedAffiliateChannels!] @deprecated(reason: "This will be removed on October 29, 2024 when channel support is removed.")
|
13765
|
-
topCodes: [AffiliateCodes!]
|
13766
|
-
agreement: Agreement
|
13767
|
-
}
|
13768
|
-
|
13769
|
-
type OptimizedAffiliateChannels {
|
13770
|
-
channelName: String
|
13771
|
-
totalReferrals: Int
|
13772
|
-
}
|
13773
|
-
|
13774
|
-
input AffiliateCodeFilterInput {
|
13775
|
-
search: String
|
13776
|
-
isActive: Boolean
|
13777
|
-
}
|
13778
|
-
|
13779
|
-
input AffiliateCodeSortingInput {
|
13780
|
-
"""Specifies the direction in which to sort products."""
|
13781
|
-
direction: OrderDirection!
|
13782
|
-
|
13783
|
-
"""Sort affiliate_codes by the selected field."""
|
13784
|
-
field: AffiliateCodeSortField!
|
13785
|
-
}
|
13786
|
-
|
13787
|
-
enum AffiliateCodeSortField {
|
13788
|
-
"""Sort affiliate codes by code."""
|
13789
|
-
CODE
|
13790
|
-
|
13791
|
-
"""Sort affiliate codes by status."""
|
13792
|
-
STATUS
|
13793
|
-
|
13794
|
-
"""Sort affiliate codes by referrals."""
|
13795
|
-
REFERRALS
|
13796
|
-
}
|
13797
|
-
|
13798
13344
|
type AddressValidationData {
|
13799
13345
|
countryCode: String
|
13800
13346
|
countryName: String
|
@@ -13910,7 +13456,7 @@ type Mutation {
|
|
13910
13456
|
description: String
|
13911
13457
|
|
13912
13458
|
"""
|
13913
|
-
Used when uploading a new document or file in a multipart request that does not exist in the system already. Supported file types:
|
13459
|
+
Used when uploading a new document or file in a multipart request that does not exist in the system already. Supported file types: application/gzip, application/x-pdf, application/vnd.openxmlformats-officedocument.presentationml.slideshow, application/x-rar, application/vnd.ms-excel, application/x-tar, application/x-dxf, image/x-eps, image/webp, image/dxf, image/x-ms-bmp, text/x-pdf, text/comma-separated-values, application/x-zip-compressed, text/svg, text/svg-xml, text/plain, pplication/vnd.rar, application/x-rtf, image/tif, image/heic, application/acad, image/jpg, image/svg, application/dwg, application/x-rar-compressed, image/heif-sequence, application/x-dwg, image/x-tiff, image/jpeg, application/x-jpg, text/x-csv, application/acrobat, application/tif, application/gzip-compressed, application/vnd.oasis.opendocument.spreadsheet, image/vnd.dwg, image/x-tif, drawing/x-dwf, application/x-acad, text/pdf, application/gzipped, application/vnd.oasis.opendocument.text, image/heic-sequence, drawing/x-dwg, application/vnd.oasis.opendocument.presentation, application/vnd.ms-word, application/x-eps, image/eps, application/eps, text/rtf, image/bmp, image/tiff, application/svg+xml, application/zip, application/postscript, application/x-autocad, application/rtf, application/vnd.pdf, image/svg+xml, application/vnd.openxmlformats-officedocument.presentationml.presentation, application/vnd.openxmlformats-officedocument.wordprocessingml.document, application/x-tif, image/x-dxf, application/jpg, image/x-dwg, application/vnd.ms-powerpoint, text/x-comma-separated-values, application/csv, application/tiff, image/gif, image/heif, application/vnd.openxmlformats-officedocument.spreadsheetml.sheet, application/pdf, image/x-bmp, application/excel, application/x-csv, application/dxf, application/x-gzip, text/csv, application/x-tiff, application/msword, drawing/dwg, image/png.
|
13914
13460
|
"""
|
13915
13461
|
file: Upload!
|
13916
13462
|
|
@@ -13986,53 +13532,11 @@ type Mutation {
|
|
13986
13532
|
"""
|
13987
13533
|
updatePeriodicTaskEnabled(enabled: Boolean): PeriodicTaskEnabledUpdate @deprecated(reason: "This will be removed on November 9, 2024")
|
13988
13534
|
|
13989
|
-
"""
|
13990
|
-
|
13991
|
-
"""Fields required to
|
13992
|
-
input:
|
13993
|
-
):
|
13994
|
-
|
13995
|
-
"""Updates a channel."""
|
13996
|
-
channelUpdate(
|
13997
|
-
"""ID of a channel to update."""
|
13998
|
-
id: ID!
|
13999
|
-
|
14000
|
-
"""Fields required to update a channel."""
|
14001
|
-
input: ChannelInput!
|
14002
|
-
): ChannelUpdate @deprecated(reason: "This will be removed on October 29, 2024 when channel support is removed.")
|
14003
|
-
|
14004
|
-
"""Updates an order channel"""
|
14005
|
-
orderChannelUpdate(
|
14006
|
-
"""ID of the channel to associate with the order"""
|
14007
|
-
channel: ID
|
14008
|
-
|
14009
|
-
"""ID of the order to update channel for"""
|
14010
|
-
id: ID!
|
14011
|
-
): OrderChannelUpdate @deprecated(reason: "This will be removed on October 29, 2024 when channel support is removed.")
|
14012
|
-
|
14013
|
-
"""Updates a marketplace order channel."""
|
14014
|
-
nauticalOrderChannelUpdate(
|
14015
|
-
"""ID of the channel to associate with the marketplace order"""
|
14016
|
-
channel: ID
|
14017
|
-
|
14018
|
-
"""ID of the marketplace order to update channel for"""
|
14019
|
-
id: ID!
|
14020
|
-
): NauticalOrderChannelUpdate @deprecated(reason: "This will be removed on October 29, 2024 when channel support is removed.")
|
14021
|
-
|
14022
|
-
"""Updates an affiliate code channel"""
|
14023
|
-
affiliateCodeChannelUpdate(
|
14024
|
-
"""ID of the channel to associate with the affiliate code"""
|
14025
|
-
channel: ID
|
14026
|
-
|
14027
|
-
"""ID of the affiliate code to update channel for"""
|
14028
|
-
id: ID!
|
14029
|
-
): AffiliateCodeChannelUpdate @deprecated(reason: "This will be removed on October 26, 2024 when affiliate support is removed.")
|
14030
|
-
|
14031
|
-
"""Updates marketplace configuration."""
|
14032
|
-
marketplaceConfigurationUpdate(
|
14033
|
-
"""Fields required to update marketplace configuration."""
|
14034
|
-
input: MarketplaceConfigurationInput!
|
14035
|
-
): MarketplaceConfigurationUpdate
|
13535
|
+
"""Updates marketplace configuration."""
|
13536
|
+
marketplaceConfigurationUpdate(
|
13537
|
+
"""Fields required to update marketplace configuration."""
|
13538
|
+
input: MarketplaceConfigurationInput!
|
13539
|
+
): MarketplaceConfigurationUpdate
|
14036
13540
|
|
14037
13541
|
"""Creates a new payout."""
|
14038
13542
|
payoutCreate(
|
@@ -14306,70 +13810,6 @@ type Mutation {
|
|
14306
13810
|
input: MicrositeInput!
|
14307
13811
|
): MicrositeUpdate @deprecated(reason: "Microsites will be removed on January 2, 2025.")
|
14308
13812
|
|
14309
|
-
"""Creates a new affiliate code"""
|
14310
|
-
affiliateCodeCreate(
|
14311
|
-
"""Fields required to create an affiliate code."""
|
14312
|
-
input: AffiliateCodeCreateInput
|
14313
|
-
): AffiliateCodeCreate @deprecated(reason: "This will be removed on October 26, 2024 when affiliate support is removed.")
|
14314
|
-
|
14315
|
-
"""Increments affiliate code uses"""
|
14316
|
-
affiliateCodeUse(
|
14317
|
-
"""Affiliate code to increment use for"""
|
14318
|
-
code: String
|
14319
|
-
): AffiliateCodeUse @deprecated(reason: "This will be removed on October 26, 2024 when affiliate support is removed.")
|
14320
|
-
|
14321
|
-
"""Sets whether code is active"""
|
14322
|
-
affiliateCodeSetActive(
|
14323
|
-
"""Whether the code is active or not"""
|
14324
|
-
isActive: Boolean
|
14325
|
-
): AffiliateCodeSetActive @deprecated(reason: "This will be removed on October 26, 2024 when affiliate support is removed.")
|
14326
|
-
|
14327
|
-
"""Activate or deactivate affiliate codes."""
|
14328
|
-
affiliateCodeBulkSetActive(
|
14329
|
-
"""List of code IDs to (de)activate)."""
|
14330
|
-
ids: [ID!]!
|
14331
|
-
|
14332
|
-
"""Determine if codes will be set active or not."""
|
14333
|
-
isActive: Boolean!
|
14334
|
-
): AffiliateCodeBulkSetActive @deprecated(reason: "This will be removed on October 26, 2024 when affiliate support is removed.")
|
14335
|
-
|
14336
|
-
"""
|
14337
|
-
Create an affiliate avatar. This mutation must be sent as a `multipart` request. More detailed specs of the upload format can be found here: https://github.com/jaydenseric/graphql-multipart-request-spec
|
14338
|
-
"""
|
14339
|
-
affiliateAvatarUpdate(
|
14340
|
-
affiliate: ID
|
14341
|
-
|
14342
|
-
"""Represents an image file in a multipart request."""
|
14343
|
-
image: Upload!
|
14344
|
-
): AffiliateAvatarUpdate @deprecated(reason: "This will be removed on October 26, 2024 when affiliate support is removed.")
|
14345
|
-
|
14346
|
-
"""Creates a new affiliate."""
|
14347
|
-
affiliateCreate(
|
14348
|
-
"""Fields required to create a affiliate."""
|
14349
|
-
input: UserCreateInput!
|
14350
|
-
): AffiliateCreate @deprecated(reason: "This will be removed on October 26, 2024 when affiliate support is removed.")
|
14351
|
-
|
14352
|
-
"""Updates an existing affiliate."""
|
14353
|
-
affiliateUpdate(
|
14354
|
-
"""ID of a affiliate to update."""
|
14355
|
-
id: ID!
|
14356
|
-
|
14357
|
-
"""Fields required to update a affiliate."""
|
14358
|
-
input: AffiliateInput!
|
14359
|
-
): AffiliateUpdate @deprecated(reason: "This will be removed on October 26, 2024 when affiliate support is removed.")
|
14360
|
-
|
14361
|
-
"""Deletes a affiliate."""
|
14362
|
-
affiliateDelete(
|
14363
|
-
"""ID of a affiliate to delete."""
|
14364
|
-
id: ID!
|
14365
|
-
): AffiliateDelete @deprecated(reason: "This will be removed on October 26, 2024 when affiliate support is removed.")
|
14366
|
-
|
14367
|
-
"""Deletes affiliates."""
|
14368
|
-
affiliateBulkDelete(
|
14369
|
-
"""List of user IDs to delete."""
|
14370
|
-
ids: [ID!]!
|
14371
|
-
): AffiliateBulkDelete @deprecated(reason: "This will be removed on October 26, 2024 when affiliate support is removed.")
|
14372
|
-
|
14373
13813
|
"""Creates a new agreement."""
|
14374
13814
|
agreementCreate(
|
14375
13815
|
"""Fields required to create a agreement."""
|
@@ -14586,20 +14026,6 @@ type Mutation {
|
|
14586
14026
|
"""Update existing designer data."""
|
14587
14027
|
designerDataUpdate(input: DesignerDataInput, name: String!): DesignerDataUpdate
|
14588
14028
|
|
14589
|
-
"""Update existing branding."""
|
14590
|
-
brandingUpdate(input: BrandingInput): BrandingUpdate @deprecated(reason: "This will be removed on October 25, 2024")
|
14591
|
-
|
14592
|
-
"""Delete branding images."""
|
14593
|
-
brandingImagesDelete(favicon: Boolean, icon: Boolean, logo: Boolean): BrandingImagesDelete @deprecated(reason: "This will be removed on October 25, 2024")
|
14594
|
-
|
14595
|
-
"""Create core data."""
|
14596
|
-
coreDataCreate(input: CoreDataInput!): CoreDataCreate @deprecated(reason: "This will be removed on October 25, 2024")
|
14597
|
-
|
14598
|
-
"""
|
14599
|
-
Update existing core data instance, return ok = True and coredata = None if no matching core data instance found.
|
14600
|
-
"""
|
14601
|
-
coreDataUpdate(input: CoreDataInput!, name: String!): CoreDataUpdate @deprecated(reason: "This will be removed on October 25, 2024")
|
14602
|
-
|
14603
14029
|
"""Creates a new webhook subscription."""
|
14604
14030
|
webhookCreate(
|
14605
14031
|
"""Fields required to create a webhook."""
|
@@ -15589,9 +15015,6 @@ type Mutation {
|
|
15589
15015
|
|
15590
15016
|
"""Completes creating an order."""
|
15591
15017
|
draftOrderComplete(
|
15592
|
-
"""ID of the channel to attach the order to"""
|
15593
|
-
channel: ID @deprecated(reason: "This will be removed on October 29, 2024 when channel support is removed.")
|
15594
|
-
|
15595
15018
|
"""ID of the order that will be completed."""
|
15596
15019
|
id: ID!
|
15597
15020
|
|
@@ -15606,9 +15029,6 @@ type Mutation {
|
|
15606
15029
|
|
15607
15030
|
"""Completes creating an order."""
|
15608
15031
|
nauticalDraftOrderComplete(
|
15609
|
-
"""ID of the channel to attach to nautical order"""
|
15610
|
-
channel: ID @deprecated(reason: "This will be removed on October 29, 2024 when channel support is removed.")
|
15611
|
-
|
15612
15032
|
"""
|
15613
15033
|
Optional ID of the Nautical Order to be completed. Either 'id' or 'token' must be provided to identify the Nautical Order. If both are provided, only the 'id' field will be used.
|
15614
15034
|
"""
|
@@ -16179,15 +15599,6 @@ type Mutation {
|
|
16179
15599
|
input: [MetadataInput!]!
|
16180
15600
|
): PrivateMetadataUpdate
|
16181
15601
|
|
16182
|
-
"""Assigns storefront's navigation menus."""
|
16183
|
-
assignNavigation(
|
16184
|
-
"""ID of the menu."""
|
16185
|
-
menu: ID
|
16186
|
-
|
16187
|
-
"""Type of the navigation bar to assign the menu to."""
|
16188
|
-
navigationType: NavigationType!
|
16189
|
-
): AssignNavigation @deprecated(reason: "This will be removed on October 29, 2024")
|
16190
|
-
|
16191
15602
|
"""Creates a new Menu."""
|
16192
15603
|
menuCreate(
|
16193
15604
|
"""Fields required to create a menu."""
|
@@ -16409,7 +15820,7 @@ type Mutation {
|
|
16409
15820
|
"""
|
16410
15821
|
Whether the vendor to retrieve an onboarding link for is a SELLER or an AFFILIATE
|
16411
15822
|
"""
|
16412
|
-
vendorType: String
|
15823
|
+
vendorType: String @deprecated(reason: "This will be removed on January 24, 2025.")
|
16413
15824
|
): VendorPayoutOnboardingLinkRequest
|
16414
15825
|
|
16415
15826
|
"""
|
@@ -16562,14 +15973,11 @@ type Mutation {
|
|
16562
15973
|
Completes the checkout. As a result a new order is created and a payment charge is made. This action requires a successful payment before it can be performed. In case additional confirmation step as 3D secure is required confirmationNeeded flag will be set to True and no order created until payment is confirmed with second call of this mutation.
|
16563
15974
|
"""
|
16564
15975
|
checkoutComplete(
|
16565
|
-
"""ID of affiliate code used for checkout completion"""
|
16566
|
-
affiliate: ID @deprecated(reason: "This will be removed on October 26, 2024 when affiliate support is removed.")
|
16567
|
-
|
16568
15976
|
"""Checkout ID."""
|
16569
15977
|
checkoutId: ID!
|
16570
15978
|
|
16571
15979
|
"""ID of microsite that checkout was completed from"""
|
16572
|
-
microsite: ID
|
15980
|
+
microsite: ID @deprecated(reason: "This will be removed on January 24, 2025.")
|
16573
15981
|
|
16574
15982
|
"""Client-side generated data required to finalize the payment."""
|
16575
15983
|
paymentData: JSONString
|
@@ -16596,7 +16004,6 @@ type Mutation {
|
|
16596
16004
|
Determines whether the email sent out is catered to carriers instead of customers
|
16597
16005
|
"""
|
16598
16006
|
vehicles: Boolean = false
|
16599
|
-
volumeDiscount: Float!
|
16600
16007
|
): CheckoutComplete
|
16601
16008
|
|
16602
16009
|
"""
|
@@ -17569,71 +16976,6 @@ type PeriodicTaskEnabledUpdate {
|
|
17569
16976
|
task: WebhookPeriodicTask
|
17570
16977
|
}
|
17571
16978
|
|
17572
|
-
"""Creates a new channel"""
|
17573
|
-
type ChannelCreate {
|
17574
|
-
channelErrors: [ChannelError!]!
|
17575
|
-
channel: Channel
|
17576
|
-
}
|
17577
|
-
|
17578
|
-
type ChannelError {
|
17579
|
-
"""
|
17580
|
-
Name of a field that caused the error. A value of `null` indicates that the error isn't associated with a particular field.
|
17581
|
-
"""
|
17582
|
-
field: String
|
17583
|
-
|
17584
|
-
"""The error message."""
|
17585
|
-
message: String!
|
17586
|
-
|
17587
|
-
"""The error code."""
|
17588
|
-
code: ChannelErrorCode!
|
17589
|
-
}
|
17590
|
-
|
17591
|
-
"""An enumeration."""
|
17592
|
-
enum ChannelErrorCode {
|
17593
|
-
GRAPHQL_ERROR
|
17594
|
-
INVALID
|
17595
|
-
NOT_FOUND
|
17596
|
-
REQUIRED
|
17597
|
-
UNIQUE
|
17598
|
-
JWT_SIGNATURE_EXPIRED
|
17599
|
-
JWT_INVALID_TOKEN
|
17600
|
-
JWT_DECODE_ERROR
|
17601
|
-
JWT_MISSING_TOKEN
|
17602
|
-
JWT_INVALID_CSRF_TOKEN
|
17603
|
-
}
|
17604
|
-
|
17605
|
-
input ChannelInput {
|
17606
|
-
"""Name of the channel."""
|
17607
|
-
channel: String
|
17608
|
-
}
|
17609
|
-
|
17610
|
-
"""Updates a channel."""
|
17611
|
-
type ChannelUpdate {
|
17612
|
-
channelErrors: [ChannelError!]!
|
17613
|
-
channel: Channel
|
17614
|
-
}
|
17615
|
-
|
17616
|
-
"""Updates an order channel"""
|
17617
|
-
type OrderChannelUpdate {
|
17618
|
-
"""Updated order instance"""
|
17619
|
-
order: Order
|
17620
|
-
channelErrors: [ChannelError!]!
|
17621
|
-
}
|
17622
|
-
|
17623
|
-
"""Updates a marketplace order channel."""
|
17624
|
-
type NauticalOrderChannelUpdate {
|
17625
|
-
"""Updated marketplace order instance"""
|
17626
|
-
order: NauticalOrder
|
17627
|
-
channelErrors: [ChannelError!]!
|
17628
|
-
}
|
17629
|
-
|
17630
|
-
"""Updates an affiliate code channel"""
|
17631
|
-
type AffiliateCodeChannelUpdate {
|
17632
|
-
"""Updated affiliate code instance"""
|
17633
|
-
affiliateCode: AffiliateCodes
|
17634
|
-
channelErrors: [ChannelError!]!
|
17635
|
-
}
|
17636
|
-
|
17637
16979
|
"""Updates marketplace configuration."""
|
17638
16980
|
type MarketplaceConfigurationUpdate {
|
17639
16981
|
"""Updated marketplace configuration."""
|
@@ -17824,7 +17166,7 @@ enum PayoutErrorCode {
|
|
17824
17166
|
|
17825
17167
|
input PayoutCreateInput {
|
17826
17168
|
"""Vendor type for the payout"""
|
17827
|
-
vendorType: String
|
17169
|
+
vendorType: String @deprecated(reason: "This will be removed on January 24, 2025")
|
17828
17170
|
|
17829
17171
|
"""
|
17830
17172
|
Payout end date. ISO 8601 standard. Can not be greater than current date.
|
@@ -18233,339 +17575,53 @@ type MicrositeBulkPublish {
|
|
18233
17575
|
|
18234
17576
|
"""Remove products from a microsite."""
|
18235
17577
|
type MicrositeRemoveProducts {
|
18236
|
-
"""Microsite from which products will be removed."""
|
18237
|
-
microsite: Microsite
|
18238
|
-
micrositeErrors: [ProductError!]!
|
18239
|
-
}
|
18240
|
-
|
18241
|
-
"""Updates a microsite."""
|
18242
|
-
type MicrositeUpdate {
|
18243
|
-
micrositeErrors: [ProductError!]!
|
18244
|
-
microsite: Microsite
|
18245
|
-
}
|
18246
|
-
|
18247
|
-
input MicrositeInput {
|
18248
|
-
"""Informs whether a microsite is published."""
|
18249
|
-
isPublished: Boolean
|
18250
|
-
|
18251
|
-
"""Name of the microsite."""
|
18252
|
-
name: String
|
18253
|
-
|
18254
|
-
"""Text to appear in footer of microsite."""
|
18255
|
-
footerText: String
|
18256
|
-
|
18257
|
-
"""Slug of the microsite."""
|
18258
|
-
slug: String
|
18259
|
-
|
18260
|
-
"""Description of the microsite (plaintext, deprecated for input)."""
|
18261
|
-
description: String
|
18262
|
-
|
18263
|
-
"""Description of the microsite (HTML)."""
|
18264
|
-
descriptionHtml: String
|
18265
|
-
|
18266
|
-
"""Banner image file."""
|
18267
|
-
bannerImage: Upload
|
18268
|
-
|
18269
|
-
"""Alt text for an image."""
|
18270
|
-
bannerImageAlt: String
|
18271
|
-
|
18272
|
-
"""Logo image file."""
|
18273
|
-
logoImage: Upload
|
18274
|
-
|
18275
|
-
"""Alt text for an image."""
|
18276
|
-
logoImageAlt: String
|
18277
|
-
|
18278
|
-
"""Search engine optimization fields."""
|
18279
|
-
seo: SeoInput
|
18280
|
-
|
18281
|
-
"""Publication date. ISO 8601 standard."""
|
18282
|
-
publicationDate: Date
|
18283
|
-
}
|
18284
|
-
|
18285
|
-
"""Creates a new affiliate code"""
|
18286
|
-
type AffiliateCodeCreate {
|
18287
|
-
affiliateErrors: [AffiliateError!]!
|
18288
|
-
affiliateCodes: AffiliateCodes
|
18289
|
-
}
|
18290
|
-
|
18291
|
-
type AffiliateError {
|
18292
|
-
"""
|
18293
|
-
Name of a field that caused the error. A value of `null` indicates that the error isn't associated with a particular field.
|
18294
|
-
"""
|
18295
|
-
field: String
|
18296
|
-
|
18297
|
-
"""The error message."""
|
18298
|
-
message: String!
|
18299
|
-
|
18300
|
-
"""The error code."""
|
18301
|
-
code: AffiliateErrorCode!
|
18302
|
-
}
|
18303
|
-
|
18304
|
-
"""An enumeration."""
|
18305
|
-
enum AffiliateErrorCode {
|
18306
|
-
UNIQUE
|
18307
|
-
REQUIRED
|
18308
|
-
NOT_FOUND
|
18309
|
-
}
|
18310
|
-
|
18311
|
-
input AffiliateCodeCreateInput {
|
18312
|
-
"""The id of the affiliate that the code belongs to"""
|
18313
|
-
affiliate: ID!
|
18314
|
-
|
18315
|
-
"""The new affiliate code"""
|
18316
|
-
code: String
|
18317
|
-
|
18318
|
-
"""ID of the channel code is used for"""
|
18319
|
-
channel: ID @deprecated(reason: "This will be removed on October 29, 2024 when channel support is removed.")
|
18320
|
-
}
|
18321
|
-
|
18322
|
-
"""Increments affiliate code uses"""
|
18323
|
-
type AffiliateCodeUse {
|
18324
|
-
affiliateErrors: [AffiliateError!]!
|
18325
|
-
affiliateCodes: AffiliateCodes
|
18326
|
-
}
|
18327
|
-
|
18328
|
-
"""Sets whether code is active"""
|
18329
|
-
type AffiliateCodeSetActive {
|
18330
|
-
affiliateErrors: [AffiliateError!]!
|
18331
|
-
affiliateCodes: AffiliateCodes
|
18332
|
-
}
|
18333
|
-
|
18334
|
-
"""Activate or deactivate affiliate codes."""
|
18335
|
-
type AffiliateCodeBulkSetActive {
|
18336
|
-
"""Returns how many objects were affected."""
|
18337
|
-
count: Int!
|
18338
|
-
codeErrors: [AccountError!]!
|
18339
|
-
}
|
18340
|
-
|
18341
|
-
type AccountError {
|
18342
|
-
"""
|
18343
|
-
Name of a field that caused the error. A value of `null` indicates that the error isn't associated with a particular field.
|
18344
|
-
"""
|
18345
|
-
field: String
|
18346
|
-
|
18347
|
-
"""The error message."""
|
18348
|
-
message: String!
|
18349
|
-
|
18350
|
-
"""The error code."""
|
18351
|
-
code: AccountErrorCode!
|
18352
|
-
}
|
18353
|
-
|
18354
|
-
"""An enumeration."""
|
18355
|
-
enum AccountErrorCode {
|
18356
|
-
ACTIVATE_OWN_ACCOUNT
|
18357
|
-
ACTIVATE_SUPERUSER_ACCOUNT
|
18358
|
-
ACCOUNT_NOT_ACTIVE
|
18359
|
-
ATTRIBUTE_CANNOT_BE_ASSIGNED
|
18360
|
-
DUPLICATED_INPUT_ITEM
|
18361
|
-
DEACTIVATE_OWN_ACCOUNT
|
18362
|
-
DEACTIVATE_SUPERUSER_ACCOUNT
|
18363
|
-
DELETE_NON_STAFF_USER
|
18364
|
-
DELETE_OWN_ACCOUNT
|
18365
|
-
DELETE_STAFF_ACCOUNT
|
18366
|
-
DELETE_SUPERUSER_ACCOUNT
|
18367
|
-
GRAPHQL_ERROR
|
18368
|
-
INVALID
|
18369
|
-
INVALID_PHONE
|
18370
|
-
INVALID_PASSWORD
|
18371
|
-
LEFT_NOT_MANAGEABLE_PERMISSION
|
18372
|
-
MUST_CHOOSE_PERMISSION_GROUP
|
18373
|
-
INVALID_CREDENTIALS
|
18374
|
-
NO_SELLER
|
18375
|
-
NOT_FOUND
|
18376
|
-
OUT_OF_SCOPE_SERVICE_ACCOUNT
|
18377
|
-
OUT_OF_SCOPE_USER
|
18378
|
-
OUT_OF_SCOPE_GROUP
|
18379
|
-
OUT_OF_SCOPE_PERMISSION
|
18380
|
-
PASSWORD_ENTIRELY_NUMERIC
|
18381
|
-
PASSWORD_IDENTICAL
|
18382
|
-
PASSWORD_TOO_COMMON
|
18383
|
-
PASSWORD_TOO_SHORT
|
18384
|
-
PASSWORD_TOO_SIMILAR
|
18385
|
-
REQUIRED
|
18386
|
-
UNIQUE
|
18387
|
-
JWT_SIGNATURE_EXPIRED
|
18388
|
-
JWT_INVALID_TOKEN
|
18389
|
-
JWT_DECODE_ERROR
|
18390
|
-
JWT_MISSING_TOKEN
|
18391
|
-
JWT_INVALID_CSRF_TOKEN
|
18392
|
-
}
|
18393
|
-
|
18394
|
-
"""
|
18395
|
-
Create an affiliate avatar. This mutation must be sent as a `multipart` request. More detailed specs of the upload format can be found here: https://github.com/jaydenseric/graphql-multipart-request-spec
|
18396
|
-
"""
|
18397
|
-
type AffiliateAvatarUpdate {
|
18398
|
-
"""An updated affiliate instance."""
|
18399
|
-
affiliate: User
|
18400
|
-
accountErrors: [AccountError!]!
|
18401
|
-
}
|
18402
|
-
|
18403
|
-
"""Creates a new affiliate."""
|
18404
|
-
type AffiliateCreate {
|
18405
|
-
accountErrors: [AccountError!]!
|
18406
|
-
user: User
|
18407
|
-
}
|
18408
|
-
|
18409
|
-
input UserCreateInput {
|
18410
|
-
"""Billing address of the customer."""
|
18411
|
-
defaultBillingAddress: AddressInput
|
18412
|
-
|
18413
|
-
"""Shipping address of the customer."""
|
18414
|
-
defaultShippingAddress: AddressInput
|
18415
|
-
|
18416
|
-
"""Given name."""
|
18417
|
-
firstName: String
|
18418
|
-
|
18419
|
-
"""Family name."""
|
18420
|
-
lastName: String
|
18421
|
-
|
18422
|
-
"""The unique email address of the user."""
|
18423
|
-
email: String
|
18424
|
-
|
18425
|
-
"""User account is active."""
|
18426
|
-
isActive: Boolean
|
18427
|
-
|
18428
|
-
"""User is staff member."""
|
18429
|
-
isStaff: Boolean
|
18430
|
-
|
18431
|
-
"""User account is affiliate."""
|
18432
|
-
isAffiliate: Boolean @deprecated(reason: "This will be removed on October 26, 2024 when affiliate support is removed.")
|
18433
|
-
|
18434
|
-
"""A note about the user."""
|
18435
|
-
note: String
|
18436
|
-
|
18437
|
-
"""Only filled out if the account is a business account."""
|
18438
|
-
companyName: String
|
18439
|
-
|
18440
|
-
"""Personal phone number."""
|
18441
|
-
personalPhone: String
|
18442
|
-
|
18443
|
-
"""Password url"""
|
18444
|
-
passwordUrl: String
|
18445
|
-
|
18446
|
-
"""Tax exempt code"""
|
18447
|
-
taxExemptCode: String
|
18448
|
-
|
18449
|
-
"""List of custom fields."""
|
18450
|
-
customFields: [AttributeValueInput!]
|
18451
|
-
|
18452
|
-
"""Marketplace VAT identification number"""
|
18453
|
-
vatIdentificationNumber: String
|
18454
|
-
|
18455
|
-
"""
|
18456
|
-
URL of a view where users should be redirected to set the password. URL in RFC 1808 format.
|
18457
|
-
"""
|
18458
|
-
redirectUrl: String
|
18459
|
-
}
|
18460
|
-
|
18461
|
-
input AttributeValueInput {
|
18462
|
-
"""ID of the selected attribute."""
|
18463
|
-
id: ID
|
18464
|
-
|
18465
|
-
"""
|
18466
|
-
The value or slug of an attribute to resolve. If the passed value is non-existent, it will be created.
|
18467
|
-
"""
|
18468
|
-
values: [String!]
|
18469
|
-
|
18470
|
-
"""
|
18471
|
-
Value representation of the attribute value (e.g. color value for swatch attributes).
|
18472
|
-
"""
|
18473
|
-
value: String
|
18474
|
-
|
18475
|
-
"""Date and time representation of attribute value."""
|
18476
|
-
dateTime: DateTime
|
18477
|
-
|
18478
|
-
"""Supports attribute values with long text (plain text)."""
|
18479
|
-
plainText: String
|
18480
|
-
|
18481
|
-
"""Supports attribute values with long text (html)."""
|
18482
|
-
richText: String
|
18483
|
-
|
18484
|
-
"""Numeric value to support money or numeric attribute values."""
|
18485
|
-
amount: Decimal
|
18486
|
-
|
18487
|
-
"""Currency to support money attribute values."""
|
18488
|
-
currency: String
|
18489
|
-
|
18490
|
-
"""
|
18491
|
-
Supports attribute values to reference any other nautical object (should be base64 ID)
|
18492
|
-
"""
|
18493
|
-
reference: String
|
18494
|
-
|
18495
|
-
"""Supports boolean attribute values."""
|
18496
|
-
boolean: Boolean
|
18497
|
-
|
18498
|
-
"""Supports file type attribute values."""
|
18499
|
-
file: Upload
|
18500
|
-
|
18501
|
-
"""URL type to support external links as attribute values."""
|
18502
|
-
fileUrl: String
|
18503
|
-
}
|
18504
|
-
|
18505
|
-
"""Updates an existing affiliate."""
|
18506
|
-
type AffiliateUpdate {
|
18507
|
-
accountErrors: [AccountError!]!
|
18508
|
-
user: User
|
18509
|
-
}
|
18510
|
-
|
18511
|
-
input AffiliateInput {
|
18512
|
-
"""Billing address of the customer."""
|
18513
|
-
defaultBillingAddress: AddressInput
|
18514
|
-
|
18515
|
-
"""Shipping address of the customer."""
|
18516
|
-
defaultShippingAddress: AddressInput
|
18517
|
-
|
18518
|
-
"""Given name."""
|
18519
|
-
firstName: String
|
18520
|
-
|
18521
|
-
"""Family name."""
|
18522
|
-
lastName: String
|
17578
|
+
"""Microsite from which products will be removed."""
|
17579
|
+
microsite: Microsite
|
17580
|
+
micrositeErrors: [ProductError!]!
|
17581
|
+
}
|
18523
17582
|
|
18524
|
-
|
18525
|
-
|
17583
|
+
"""Updates a microsite."""
|
17584
|
+
type MicrositeUpdate {
|
17585
|
+
micrositeErrors: [ProductError!]!
|
17586
|
+
microsite: Microsite
|
17587
|
+
}
|
18526
17588
|
|
18527
|
-
|
18528
|
-
|
17589
|
+
input MicrositeInput {
|
17590
|
+
"""Informs whether a microsite is published."""
|
17591
|
+
isPublished: Boolean
|
18529
17592
|
|
18530
|
-
"""
|
18531
|
-
|
17593
|
+
"""Name of the microsite."""
|
17594
|
+
name: String
|
18532
17595
|
|
18533
|
-
"""
|
18534
|
-
|
17596
|
+
"""Text to appear in footer of microsite."""
|
17597
|
+
footerText: String
|
18535
17598
|
|
18536
|
-
"""
|
18537
|
-
|
17599
|
+
"""Slug of the microsite."""
|
17600
|
+
slug: String
|
18538
17601
|
|
18539
|
-
"""
|
18540
|
-
|
17602
|
+
"""Description of the microsite (plaintext, deprecated for input)."""
|
17603
|
+
description: String
|
18541
17604
|
|
18542
|
-
"""
|
18543
|
-
|
17605
|
+
"""Description of the microsite (HTML)."""
|
17606
|
+
descriptionHtml: String
|
18544
17607
|
|
18545
|
-
"""
|
18546
|
-
|
17608
|
+
"""Banner image file."""
|
17609
|
+
bannerImage: Upload
|
18547
17610
|
|
18548
|
-
"""
|
18549
|
-
|
17611
|
+
"""Alt text for an image."""
|
17612
|
+
bannerImageAlt: String
|
18550
17613
|
|
18551
|
-
"""
|
18552
|
-
|
17614
|
+
"""Logo image file."""
|
17615
|
+
logoImage: Upload
|
18553
17616
|
|
18554
|
-
"""
|
18555
|
-
|
18556
|
-
}
|
17617
|
+
"""Alt text for an image."""
|
17618
|
+
logoImageAlt: String
|
18557
17619
|
|
18558
|
-
"""
|
18559
|
-
|
18560
|
-
accountErrors: [AccountError!]!
|
18561
|
-
user: User
|
18562
|
-
}
|
17620
|
+
"""Search engine optimization fields."""
|
17621
|
+
seo: SeoInput
|
18563
17622
|
|
18564
|
-
"""
|
18565
|
-
|
18566
|
-
"""Returns how many objects were affected."""
|
18567
|
-
count: Int!
|
18568
|
-
affiliateErrors: [AccountError!]!
|
17623
|
+
"""Publication date. ISO 8601 standard."""
|
17624
|
+
publicationDate: Date
|
18569
17625
|
}
|
18570
17626
|
|
18571
17627
|
"""Creates a new agreement."""
|
@@ -18629,9 +17685,6 @@ input AgreementInput {
|
|
18629
17685
|
"""Last update date. ISO 8601 standard."""
|
18630
17686
|
updatedAt: String
|
18631
17687
|
|
18632
|
-
"""Seller or Affiliate"""
|
18633
|
-
vendorType: VendorTypeEnum @deprecated(reason: "This will be removed on October 26, 2024 when affiliate support is removed.")
|
18634
|
-
|
18635
17688
|
"""Gross Price, Markup, Absolute etc"""
|
18636
17689
|
commissionType: CommissionTypeEnum
|
18637
17690
|
|
@@ -18642,14 +17695,6 @@ input AgreementInput {
|
|
18642
17695
|
markupCommissionValue: Decimal
|
18643
17696
|
}
|
18644
17697
|
|
18645
|
-
enum VendorTypeEnum {
|
18646
|
-
"""Seller"""
|
18647
|
-
SELLER
|
18648
|
-
|
18649
|
-
"""Affiliate"""
|
18650
|
-
AFFILIATE
|
18651
|
-
}
|
18652
|
-
|
18653
17698
|
"""Deletes a agreement."""
|
18654
17699
|
type AgreementDelete {
|
18655
17700
|
agreementErrors: [AgreementError!]!
|
@@ -19129,56 +18174,6 @@ type DesignerDataUpdate {
|
|
19129
18174
|
designerErrors: [MarketplaceConfigurationError!]!
|
19130
18175
|
}
|
19131
18176
|
|
19132
|
-
"""Update existing branding."""
|
19133
|
-
type BrandingUpdate {
|
19134
|
-
ok: Boolean
|
19135
|
-
branding: BrandingType
|
19136
|
-
brandingErrors: [MarketplaceConfigurationError!]!
|
19137
|
-
}
|
19138
|
-
|
19139
|
-
input BrandingInput {
|
19140
|
-
jsonContent: JSONString
|
19141
|
-
|
19142
|
-
"""Logo file."""
|
19143
|
-
logo: Upload
|
19144
|
-
logoHeight: Int
|
19145
|
-
logoWidth: Int
|
19146
|
-
|
19147
|
-
"""Icon file."""
|
19148
|
-
icon: Upload
|
19149
|
-
footerText: String
|
19150
|
-
|
19151
|
-
"""Favicon file."""
|
19152
|
-
favicon: Upload
|
19153
|
-
}
|
19154
|
-
|
19155
|
-
"""Delete branding images."""
|
19156
|
-
type BrandingImagesDelete {
|
19157
|
-
branding: BrandingType
|
19158
|
-
brandingErrors: [MarketplaceConfigurationError!]!
|
19159
|
-
}
|
19160
|
-
|
19161
|
-
"""Create core data."""
|
19162
|
-
type CoreDataCreate {
|
19163
|
-
ok: Boolean
|
19164
|
-
coredata: CoreDataType
|
19165
|
-
}
|
19166
|
-
|
19167
|
-
input CoreDataInput {
|
19168
|
-
name: String
|
19169
|
-
jsonContent: JSONString
|
19170
|
-
}
|
19171
|
-
|
19172
|
-
"""
|
19173
|
-
Update existing core data instance, return ok = True and coredata = None if no matching core data instance found.
|
19174
|
-
"""
|
19175
|
-
type CoreDataUpdate {
|
19176
|
-
ok: Boolean
|
19177
|
-
coredata: CoreDataType
|
19178
|
-
name: String
|
19179
|
-
jsonContent: JSONString
|
19180
|
-
}
|
19181
|
-
|
19182
18177
|
"""Creates a new webhook subscription."""
|
19183
18178
|
type WebhookCreate {
|
19184
18179
|
webhookErrors: [WebhookError!]!
|
@@ -20476,6 +19471,50 @@ input CategoryInput {
|
|
20476
19471
|
customFields: [AttributeValueInput!]
|
20477
19472
|
}
|
20478
19473
|
|
19474
|
+
input AttributeValueInput {
|
19475
|
+
"""ID of the selected attribute."""
|
19476
|
+
id: ID
|
19477
|
+
|
19478
|
+
"""
|
19479
|
+
The value or slug of an attribute to resolve. If the passed value is non-existent, it will be created.
|
19480
|
+
"""
|
19481
|
+
values: [String!]
|
19482
|
+
|
19483
|
+
"""
|
19484
|
+
Value representation of the attribute value (e.g. color value for swatch attributes).
|
19485
|
+
"""
|
19486
|
+
value: String
|
19487
|
+
|
19488
|
+
"""Date and time representation of attribute value."""
|
19489
|
+
dateTime: DateTime
|
19490
|
+
|
19491
|
+
"""Supports attribute values with long text (plain text)."""
|
19492
|
+
plainText: String
|
19493
|
+
|
19494
|
+
"""Supports attribute values with long text (html)."""
|
19495
|
+
richText: String
|
19496
|
+
|
19497
|
+
"""Numeric value to support money or numeric attribute values."""
|
19498
|
+
amount: Decimal
|
19499
|
+
|
19500
|
+
"""Currency to support money attribute values."""
|
19501
|
+
currency: String
|
19502
|
+
|
19503
|
+
"""
|
19504
|
+
Supports attribute values to reference any other nautical object (should be base64 ID)
|
19505
|
+
"""
|
19506
|
+
reference: String
|
19507
|
+
|
19508
|
+
"""Supports boolean attribute values."""
|
19509
|
+
boolean: Boolean
|
19510
|
+
|
19511
|
+
"""Supports file type attribute values."""
|
19512
|
+
file: Upload
|
19513
|
+
|
19514
|
+
"""URL type to support external links as attribute values."""
|
19515
|
+
fileUrl: String
|
19516
|
+
}
|
19517
|
+
|
20479
19518
|
"""Deletes a category."""
|
20480
19519
|
type CategoryDelete {
|
20481
19520
|
productErrors: [ProductError!]!
|
@@ -22211,9 +21250,6 @@ input NauticalHistoricalOrderInput {
|
|
22211
21250
|
lines: [HistoricalOrderLineInput!]
|
22212
21251
|
seller: ID
|
22213
21252
|
|
22214
|
-
"""ID of the channel to attach the order to"""
|
22215
|
-
channel: ID
|
22216
|
-
|
22217
21253
|
"""Created date time of historical order in ISO 8601 format."""
|
22218
21254
|
created: DateTime
|
22219
21255
|
|
@@ -23153,11 +22189,10 @@ type PrivateMetadataUpdate {
|
|
23153
22189
|
item: ObjectWithMetadata
|
23154
22190
|
}
|
23155
22191
|
|
23156
|
-
"""
|
23157
|
-
type
|
23158
|
-
"""Assigned navigation menu."""
|
23159
|
-
menu: Menu
|
22192
|
+
"""Creates a new Menu."""
|
22193
|
+
type MenuCreate {
|
23160
22194
|
menuErrors: [MenuError!]!
|
22195
|
+
menu: Menu
|
23161
22196
|
}
|
23162
22197
|
|
23163
22198
|
type MenuError {
|
@@ -23186,20 +22221,6 @@ enum MenuErrorCode {
|
|
23186
22221
|
UNIQUE
|
23187
22222
|
}
|
23188
22223
|
|
23189
|
-
enum NavigationType {
|
23190
|
-
"""Main storefront navigation."""
|
23191
|
-
MAIN
|
23192
|
-
|
23193
|
-
"""Secondary storefront navigation."""
|
23194
|
-
SECONDARY
|
23195
|
-
}
|
23196
|
-
|
23197
|
-
"""Creates a new Menu."""
|
23198
|
-
type MenuCreate {
|
23199
|
-
menuErrors: [MenuError!]!
|
23200
|
-
menu: Menu
|
23201
|
-
}
|
23202
|
-
|
23203
22224
|
input MenuCreateInput {
|
23204
22225
|
"""Name of the menu."""
|
23205
22226
|
name: String!
|
@@ -24681,6 +23702,59 @@ type CreateToken {
|
|
24681
23702
|
accountErrors: [AccountError!]!
|
24682
23703
|
}
|
24683
23704
|
|
23705
|
+
type AccountError {
|
23706
|
+
"""
|
23707
|
+
Name of a field that caused the error. A value of `null` indicates that the error isn't associated with a particular field.
|
23708
|
+
"""
|
23709
|
+
field: String
|
23710
|
+
|
23711
|
+
"""The error message."""
|
23712
|
+
message: String!
|
23713
|
+
|
23714
|
+
"""The error code."""
|
23715
|
+
code: AccountErrorCode!
|
23716
|
+
}
|
23717
|
+
|
23718
|
+
"""An enumeration."""
|
23719
|
+
enum AccountErrorCode {
|
23720
|
+
ACTIVATE_OWN_ACCOUNT
|
23721
|
+
ACTIVATE_SUPERUSER_ACCOUNT
|
23722
|
+
ACCOUNT_NOT_ACTIVE
|
23723
|
+
ATTRIBUTE_CANNOT_BE_ASSIGNED
|
23724
|
+
DUPLICATED_INPUT_ITEM
|
23725
|
+
DEACTIVATE_OWN_ACCOUNT
|
23726
|
+
DEACTIVATE_SUPERUSER_ACCOUNT
|
23727
|
+
DELETE_NON_STAFF_USER
|
23728
|
+
DELETE_OWN_ACCOUNT
|
23729
|
+
DELETE_STAFF_ACCOUNT
|
23730
|
+
DELETE_SUPERUSER_ACCOUNT
|
23731
|
+
GRAPHQL_ERROR
|
23732
|
+
INVALID
|
23733
|
+
INVALID_PHONE
|
23734
|
+
INVALID_PASSWORD
|
23735
|
+
LEFT_NOT_MANAGEABLE_PERMISSION
|
23736
|
+
MUST_CHOOSE_PERMISSION_GROUP
|
23737
|
+
INVALID_CREDENTIALS
|
23738
|
+
NO_SELLER
|
23739
|
+
NOT_FOUND
|
23740
|
+
OUT_OF_SCOPE_SERVICE_ACCOUNT
|
23741
|
+
OUT_OF_SCOPE_USER
|
23742
|
+
OUT_OF_SCOPE_GROUP
|
23743
|
+
OUT_OF_SCOPE_PERMISSION
|
23744
|
+
PASSWORD_ENTIRELY_NUMERIC
|
23745
|
+
PASSWORD_IDENTICAL
|
23746
|
+
PASSWORD_TOO_COMMON
|
23747
|
+
PASSWORD_TOO_SHORT
|
23748
|
+
PASSWORD_TOO_SIMILAR
|
23749
|
+
REQUIRED
|
23750
|
+
UNIQUE
|
23751
|
+
JWT_SIGNATURE_EXPIRED
|
23752
|
+
JWT_INVALID_TOKEN
|
23753
|
+
JWT_DECODE_ERROR
|
23754
|
+
JWT_MISSING_TOKEN
|
23755
|
+
JWT_INVALID_CSRF_TOKEN
|
23756
|
+
}
|
23757
|
+
|
24684
23758
|
"""Create authorization URL."""
|
24685
23759
|
type AuthURLGenerate {
|
24686
23760
|
"""Generated auth URL for google login."""
|
@@ -24937,6 +24011,55 @@ type CustomerCreate {
|
|
24937
24011
|
user: User
|
24938
24012
|
}
|
24939
24013
|
|
24014
|
+
input UserCreateInput {
|
24015
|
+
"""Billing address of the customer."""
|
24016
|
+
defaultBillingAddress: AddressInput
|
24017
|
+
|
24018
|
+
"""Shipping address of the customer."""
|
24019
|
+
defaultShippingAddress: AddressInput
|
24020
|
+
|
24021
|
+
"""Given name."""
|
24022
|
+
firstName: String
|
24023
|
+
|
24024
|
+
"""Family name."""
|
24025
|
+
lastName: String
|
24026
|
+
|
24027
|
+
"""The unique email address of the user."""
|
24028
|
+
email: String
|
24029
|
+
|
24030
|
+
"""User account is active."""
|
24031
|
+
isActive: Boolean
|
24032
|
+
|
24033
|
+
"""User is staff member."""
|
24034
|
+
isStaff: Boolean
|
24035
|
+
|
24036
|
+
"""A note about the user."""
|
24037
|
+
note: String
|
24038
|
+
|
24039
|
+
"""Only filled out if the account is a business account."""
|
24040
|
+
companyName: String
|
24041
|
+
|
24042
|
+
"""Personal phone number."""
|
24043
|
+
personalPhone: String
|
24044
|
+
|
24045
|
+
"""Password url"""
|
24046
|
+
passwordUrl: String
|
24047
|
+
|
24048
|
+
"""Tax exempt code"""
|
24049
|
+
taxExemptCode: String
|
24050
|
+
|
24051
|
+
"""List of custom fields."""
|
24052
|
+
customFields: [AttributeValueInput!]
|
24053
|
+
|
24054
|
+
"""Marketplace VAT identification number"""
|
24055
|
+
vatIdentificationNumber: String
|
24056
|
+
|
24057
|
+
"""
|
24058
|
+
URL of a view where users should be redirected to set the password. URL in RFC 1808 format.
|
24059
|
+
"""
|
24060
|
+
redirectUrl: String
|
24061
|
+
}
|
24062
|
+
|
24940
24063
|
"""Updates an existing customer."""
|
24941
24064
|
type CustomerUpdate {
|
24942
24065
|
accountErrors: [AccountError!]!
|
@@ -24965,9 +24088,6 @@ input CustomerInput {
|
|
24965
24088
|
"""User is staff member."""
|
24966
24089
|
isStaff: Boolean
|
24967
24090
|
|
24968
|
-
"""User account is affiliate."""
|
24969
|
-
isAffiliate: Boolean @deprecated(reason: "This will be removed on October 26, 2024 when affiliate support is removed.")
|
24970
|
-
|
24971
24091
|
"""A note about the user."""
|
24972
24092
|
note: String
|
24973
24093
|
|
@@ -25047,9 +24167,6 @@ input StaffCreateInput {
|
|
25047
24167
|
"""User is staff member."""
|
25048
24168
|
isStaff: Boolean
|
25049
24169
|
|
25050
|
-
"""User account is affiliate."""
|
25051
|
-
isAffiliate: Boolean @deprecated(reason: "This will be removed on October 26, 2024 when affiliate support is removed.")
|
25052
|
-
|
25053
24170
|
"""A note about the user."""
|
25054
24171
|
note: String
|
25055
24172
|
|
@@ -25102,9 +24219,6 @@ input StaffUpdateInput {
|
|
25102
24219
|
"""User is staff member."""
|
25103
24220
|
isStaff: Boolean
|
25104
24221
|
|
25105
|
-
"""User account is affiliate."""
|
25106
|
-
isAffiliate: Boolean @deprecated(reason: "This will be removed on October 26, 2024 when affiliate support is removed.")
|
25107
|
-
|
25108
24222
|
"""A note about the user."""
|
25109
24223
|
note: String
|
25110
24224
|
|