@nautical-commerce/graphql-schema 1.80.2 → 1.81.0-10-g6039b0522
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/nautical/schema.graphql +109 -729
- package/package.json +1 -1
package/nautical/schema.graphql
CHANGED
@@ -450,36 +450,6 @@ type Query {
|
|
450
450
|
"""Return the last n elements from the list."""
|
451
451
|
last: Int
|
452
452
|
): SellerEventTypeCountableConnection
|
453
|
-
allowedOwners(
|
454
|
-
query: String
|
455
|
-
|
456
|
-
"""Return the elements in the list that come before the specified cursor."""
|
457
|
-
before: String
|
458
|
-
|
459
|
-
"""Return the elements in the list that come after the specified cursor."""
|
460
|
-
after: String
|
461
|
-
|
462
|
-
"""Return the first n elements from the list."""
|
463
|
-
first: Int
|
464
|
-
|
465
|
-
"""Return the last n elements from the list."""
|
466
|
-
last: Int
|
467
|
-
): UserCountableConnection @deprecated(reason: "This will be removed on April 29, 2025.")
|
468
|
-
availablePlans(
|
469
|
-
query: String
|
470
|
-
|
471
|
-
"""Return the elements in the list that come before the specified cursor."""
|
472
|
-
before: String
|
473
|
-
|
474
|
-
"""Return the elements in the list that come after the specified cursor."""
|
475
|
-
after: String
|
476
|
-
|
477
|
-
"""Return the first n elements from the list."""
|
478
|
-
first: Int
|
479
|
-
|
480
|
-
"""Return the last n elements from the list."""
|
481
|
-
last: Int
|
482
|
-
): AgreementCountableConnection @deprecated(reason: "This will be removed on April 29, 2025.")
|
483
453
|
|
484
454
|
"""Look up an refund by ID."""
|
485
455
|
refund(
|
@@ -723,27 +693,6 @@ type Query {
|
|
723
693
|
last: Int
|
724
694
|
): ProductVariantCountableConnection
|
725
695
|
|
726
|
-
"""List of top selling products."""
|
727
|
-
reportProductSales(
|
728
|
-
"""Span of time."""
|
729
|
-
period: ReportingPeriod!
|
730
|
-
|
731
|
-
"""Seller global id to filter by."""
|
732
|
-
identifier: ID
|
733
|
-
|
734
|
-
"""Return the elements in the list that come before the specified cursor."""
|
735
|
-
before: String
|
736
|
-
|
737
|
-
"""Return the elements in the list that come after the specified cursor."""
|
738
|
-
after: String
|
739
|
-
|
740
|
-
"""Return the first n elements from the list."""
|
741
|
-
first: Int
|
742
|
-
|
743
|
-
"""Return the last n elements from the list."""
|
744
|
-
last: Int
|
745
|
-
): ProductVariantCountableConnection @deprecated(reason: "This will be removed on April 29, 2025.")
|
746
|
-
|
747
696
|
"""Look up a price book by ID."""
|
748
697
|
priceBook(
|
749
698
|
"""ID of a price book."""
|
@@ -990,51 +939,6 @@ type Query {
|
|
990
939
|
id: ID!
|
991
940
|
): [TaxCertificate!]
|
992
941
|
|
993
|
-
"""List of third party products"""
|
994
|
-
thirdPartyProducts(
|
995
|
-
"""Third-party source name"""
|
996
|
-
source: String!
|
997
|
-
): GenericScalar @deprecated(reason: "This will be removed on April 29, 2025")
|
998
|
-
|
999
|
-
"""Get third party product in form we can use for import"""
|
1000
|
-
importThirdPartyProduct(
|
1001
|
-
"""Third-party source name"""
|
1002
|
-
source: String!
|
1003
|
-
|
1004
|
-
"""ID of the third party product to import"""
|
1005
|
-
id: ID!
|
1006
|
-
): GenericScalar @deprecated(reason: "This will be removed on April 29, 2025")
|
1007
|
-
|
1008
|
-
"""List of plugins that are available as product import sources"""
|
1009
|
-
availableImportSources: [Plugin!] @deprecated(reason: "This will be removed on April 29, 2025")
|
1010
|
-
|
1011
|
-
"""Look up a catalog import process by ID."""
|
1012
|
-
catalogImportProcess(
|
1013
|
-
"""ID of the catalog import process."""
|
1014
|
-
id: ID!
|
1015
|
-
): CatalogImportProcess @deprecated(reason: "This will be removed on April 29, 2025")
|
1016
|
-
|
1017
|
-
"""List of catalog import processes."""
|
1018
|
-
catalogImportProcesses(
|
1019
|
-
"""Filtering options for catalog import processes."""
|
1020
|
-
filter: CatalogImportProcessFilterInput
|
1021
|
-
|
1022
|
-
"""Sort catalog import processes."""
|
1023
|
-
sortBy: CatalogImportProcessSortInput
|
1024
|
-
|
1025
|
-
"""Return the elements in the list that come before the specified cursor."""
|
1026
|
-
before: String
|
1027
|
-
|
1028
|
-
"""Return the elements in the list that come after the specified cursor."""
|
1029
|
-
after: String
|
1030
|
-
|
1031
|
-
"""Return the first n elements from the list."""
|
1032
|
-
first: Int
|
1033
|
-
|
1034
|
-
"""Return the last n elements from the list."""
|
1035
|
-
last: Int
|
1036
|
-
): CatalogImportProcessCountableConnection @deprecated(reason: "This will be removed on April 29, 2025")
|
1037
|
-
|
1038
942
|
"""
|
1039
943
|
List of tax exempt code supported by Avalara. Required permission: MANAGE_MARKETPLACE. Note: doesn't support app auth.
|
1040
944
|
"""
|
@@ -1183,43 +1087,6 @@ type Query {
|
|
1183
1087
|
last: Int
|
1184
1088
|
): PageCountableConnection
|
1185
1089
|
|
1186
|
-
"""
|
1187
|
-
List of activity events to display on homepage (at the moment it only contains order-events).
|
1188
|
-
"""
|
1189
|
-
homepageEvents(
|
1190
|
-
"""Global ID of a seller to filter to"""
|
1191
|
-
identifier: ID
|
1192
|
-
|
1193
|
-
"""Return the elements in the list that come before the specified cursor."""
|
1194
|
-
before: String
|
1195
|
-
|
1196
|
-
"""Return the elements in the list that come after the specified cursor."""
|
1197
|
-
after: String
|
1198
|
-
|
1199
|
-
"""Return the first n elements from the list."""
|
1200
|
-
first: Int
|
1201
|
-
|
1202
|
-
"""Return the last n elements from the list."""
|
1203
|
-
last: Int
|
1204
|
-
): OrderEventCountableConnection @deprecated(reason: "This will be removed on April 29, 2025.")
|
1205
|
-
|
1206
|
-
"""
|
1207
|
-
List of activity events to display on homepage (at the moment it only contains nautical-order-events).
|
1208
|
-
"""
|
1209
|
-
marketplaceHomepageEvents(
|
1210
|
-
"""Return the elements in the list that come before the specified cursor."""
|
1211
|
-
before: String
|
1212
|
-
|
1213
|
-
"""Return the elements in the list that come after the specified cursor."""
|
1214
|
-
after: String
|
1215
|
-
|
1216
|
-
"""Return the first n elements from the list."""
|
1217
|
-
first: Int
|
1218
|
-
|
1219
|
-
"""Return the last n elements from the list."""
|
1220
|
-
last: Int
|
1221
|
-
): NauticalOrderEventCountableConnection @deprecated(reason: "This will be removed on April 29, 2025.")
|
1222
|
-
|
1223
1090
|
"""Look up an order by ID."""
|
1224
1091
|
order(
|
1225
1092
|
"""ID of an order."""
|
@@ -1427,19 +1294,6 @@ type Query {
|
|
1427
1294
|
"""Return the last n elements from the list."""
|
1428
1295
|
last: Int
|
1429
1296
|
): FulfillmentCountableConnection
|
1430
|
-
optimizedHome(
|
1431
|
-
"""True if getting marketplace view"""
|
1432
|
-
isMarketplace: Boolean!
|
1433
|
-
|
1434
|
-
"""Vendor identifier to scope data to"""
|
1435
|
-
identifier: ID
|
1436
|
-
|
1437
|
-
"""Start date to filter cards and order data"""
|
1438
|
-
startDate: Date!
|
1439
|
-
|
1440
|
-
"""End date to filter cards and order data"""
|
1441
|
-
endDate: Date!
|
1442
|
-
): OptimizedHome @deprecated(reason: "This will be removed on April 29, 2025.")
|
1443
1297
|
|
1444
1298
|
"""Return requested nautical configuration item"""
|
1445
1299
|
nauticalConfiguration(
|
@@ -1793,12 +1647,6 @@ type Query {
|
|
1793
1647
|
last: Int
|
1794
1648
|
): CheckoutCountableConnection
|
1795
1649
|
|
1796
|
-
"""Look up a checkout line by ID."""
|
1797
|
-
checkoutLine(
|
1798
|
-
"""ID of the checkout line."""
|
1799
|
-
id: ID
|
1800
|
-
): CheckoutLine @deprecated(reason: "This will be removed on April 30, 2025.")
|
1801
|
-
|
1802
1650
|
"""List of checkout lines."""
|
1803
1651
|
checkoutLines(
|
1804
1652
|
"""Return the elements in the list that come before the specified cursor."""
|
@@ -1930,21 +1778,6 @@ type Query {
|
|
1930
1778
|
id: ID!
|
1931
1779
|
): [AgreementSellers!]!
|
1932
1780
|
|
1933
|
-
"""Returns address validation rules."""
|
1934
|
-
addressValidationRules(
|
1935
|
-
"""Two-letter ISO 3166-1 country code."""
|
1936
|
-
countryCode: CountryCode!
|
1937
|
-
|
1938
|
-
"""Designation of a region, province or state."""
|
1939
|
-
countryArea: String
|
1940
|
-
|
1941
|
-
"""City or a town name."""
|
1942
|
-
city: String
|
1943
|
-
|
1944
|
-
"""Sublocality like a district."""
|
1945
|
-
cityArea: String
|
1946
|
-
): AddressValidationData! @deprecated(reason: "This will be removed on April 29, 2025.")
|
1947
|
-
|
1948
1781
|
"""Look up an address by ID."""
|
1949
1782
|
address(
|
1950
1783
|
"""ID of an address."""
|
@@ -2026,6 +1859,14 @@ type Query {
|
|
2026
1859
|
last: Int
|
2027
1860
|
): UserCountableConnection!
|
2028
1861
|
|
1862
|
+
"""
|
1863
|
+
List of SSO integrations that are active and can be used to authenticate users.
|
1864
|
+
"""
|
1865
|
+
ssoIntegrations(
|
1866
|
+
"""Whether the SSO integration is for the dashboard."""
|
1867
|
+
isDashboard: Boolean!
|
1868
|
+
): [SSOIntegration!]!
|
1869
|
+
|
2029
1870
|
"""Look up a user by ID."""
|
2030
1871
|
user(
|
2031
1872
|
"""ID of the user."""
|
@@ -2037,6 +1878,15 @@ type Query {
|
|
2037
1878
|
"""Email address of the user."""
|
2038
1879
|
email: String!
|
2039
1880
|
): User
|
1881
|
+
|
1882
|
+
"""Determine if the email token provided is still valid or not."""
|
1883
|
+
isEmailTokenValid(
|
1884
|
+
"""Generated email token."""
|
1885
|
+
token: String!
|
1886
|
+
|
1887
|
+
"""Email address of the user."""
|
1888
|
+
email: String!
|
1889
|
+
): Boolean
|
2040
1890
|
_entities(representations: [_Any!]!): [_Entity]!
|
2041
1891
|
_service: _Service!
|
2042
1892
|
}
|
@@ -2328,7 +2178,6 @@ type User implements Node & ObjectWithMetadata {
|
|
2328
2178
|
email: String!
|
2329
2179
|
firstName: String!
|
2330
2180
|
lastName: String!
|
2331
|
-
isStaff: Boolean!
|
2332
2181
|
isActive: Boolean!
|
2333
2182
|
|
2334
2183
|
"""A note about the customer."""
|
@@ -2481,7 +2330,12 @@ type User implements Node & ObjectWithMetadata {
|
|
2481
2330
|
last: Int
|
2482
2331
|
): WishlistCountableConnection
|
2483
2332
|
seller: Seller
|
2484
|
-
|
2333
|
+
|
2334
|
+
"""If true, the user can be assigned as the owner of a seller"""
|
2335
|
+
isAssignable: Boolean!
|
2336
|
+
|
2337
|
+
"""If true, the user is an MPO or a seller staff member"""
|
2338
|
+
isStaff: Boolean!
|
2485
2339
|
|
2486
2340
|
"""List of documents associated with the user."""
|
2487
2341
|
documents: [Document!]!
|
@@ -2928,7 +2782,6 @@ type ProductVariant implements Node & ObjectWithMetadata {
|
|
2928
2782
|
|
2929
2783
|
"""List of vouchers associated with the product."""
|
2930
2784
|
vouchers: [Voucher!]!
|
2931
|
-
requiresQuote: Boolean @deprecated(reason: "This field will be removed on April 25th, 2025.")
|
2932
2785
|
|
2933
2786
|
"""
|
2934
2787
|
The sub status of the product variant. This will be the same as product's sub status.
|
@@ -3363,7 +3216,7 @@ type MarketplaceConfiguration {
|
|
3363
3216
|
Determines whether shipping methods are available based on marketplace checkout total or seller totals
|
3364
3217
|
"""
|
3365
3218
|
availableShippingStrategy: AvailableShippingStrategyEnum
|
3366
|
-
attributeTemplateStrategy:
|
3219
|
+
attributeTemplateStrategy: AttributeTemplateStrategyEnum @deprecated(reason: "This field will be removed on July 23, 2025.")
|
3367
3220
|
|
3368
3221
|
"""Determines the fulfillment model for the marketplace"""
|
3369
3222
|
fulfillmentModel: FulfillmentModelEnum!
|
@@ -4005,8 +3858,7 @@ enum AvailableShippingStrategyEnum {
|
|
4005
3858
|
MARKETPLACE_LINES
|
4006
3859
|
}
|
4007
3860
|
|
4008
|
-
|
4009
|
-
enum MarketplaceConfigurationAttributeTemplateStrategy {
|
3861
|
+
enum AttributeTemplateStrategyEnum {
|
4010
3862
|
"""
|
4011
3863
|
Assigned attributes may only come from templates (ProductType for PIM-specific attribute usage or CustomFieldTemplate for custom field attribute usage), no non-templated attribute assignment is allowed
|
4012
3864
|
"""
|
@@ -4821,7 +4673,7 @@ input ProductFilterInput {
|
|
4821
4673
|
isSimple: Boolean
|
4822
4674
|
attributes: [AttributeInput!]
|
4823
4675
|
customFields: [AttributeInput!]
|
4824
|
-
dates: CustomDateRangeInput
|
4676
|
+
dates: CustomDateRangeInput @deprecated(reason: "This will be removed on July 29, 2025")
|
4825
4677
|
stockAvailability: StockAvailability
|
4826
4678
|
productType: ID
|
4827
4679
|
stocks: ProductStockFilterInput
|
@@ -5384,9 +5236,6 @@ type App implements Node & ObjectWithMetadata {
|
|
5384
5236
|
"""List of public metadata items. Can be accessed without permissions."""
|
5385
5237
|
metadata: [MetadataItem!]!
|
5386
5238
|
|
5387
|
-
"""Type of the app."""
|
5388
|
-
type: AppTypeEnum @deprecated(reason: "This will be removed on April 30, 2025.")
|
5389
|
-
|
5390
5239
|
"""List of dashboard integrations for this app"""
|
5391
5240
|
dashboardIntegrations: [AppDashboardIntegration!]
|
5392
5241
|
|
@@ -5396,27 +5245,6 @@ type App implements Node & ObjectWithMetadata {
|
|
5396
5245
|
"""List of webhooks assigned to this app."""
|
5397
5246
|
webhooks: [Webhook!]
|
5398
5247
|
|
5399
|
-
"""Description of this app."""
|
5400
|
-
aboutApp: String @deprecated(reason: "This will be removed on April 30, 2025.")
|
5401
|
-
|
5402
|
-
"""Description of the data privacy defined for this app."""
|
5403
|
-
dataPrivacy: String @deprecated(reason: "This will be removed on April 30, 2025.")
|
5404
|
-
|
5405
|
-
"""Url to details about the privacy policy on the app owner page."""
|
5406
|
-
dataPrivacyUrl: String @deprecated(reason: "This will be removed on April 30, 2025.")
|
5407
|
-
|
5408
|
-
"""Homepage of the app."""
|
5409
|
-
homepageUrl: String @deprecated(reason: "This will be removed on April 30, 2025.")
|
5410
|
-
|
5411
|
-
"""Support page for the app."""
|
5412
|
-
supportUrl: String @deprecated(reason: "This will be removed on April 30, 2025.")
|
5413
|
-
|
5414
|
-
"""Url to iframe with the configuration for the app."""
|
5415
|
-
configurationUrl: String @deprecated(reason: "This will be removed on April 30, 2025.")
|
5416
|
-
|
5417
|
-
"""Url to iframe with the app."""
|
5418
|
-
appUrl: String @deprecated(reason: "This will be removed on April 30, 2025.")
|
5419
|
-
|
5420
5248
|
"""Version number of the app."""
|
5421
5249
|
version: String
|
5422
5250
|
|
@@ -5436,7 +5264,6 @@ type Permission {
|
|
5436
5264
|
enum PermissionEnum {
|
5437
5265
|
MANAGE_USERS
|
5438
5266
|
MANAGE_STAFF
|
5439
|
-
MANAGE_PERMISSIONS @deprecated(reason: "This will be removed on April 23, 2025.")
|
5440
5267
|
MANAGE_APPS
|
5441
5268
|
MANAGE_DISCOUNTS
|
5442
5269
|
MANAGE_DOCUMENTS
|
@@ -5453,12 +5280,10 @@ enum PermissionEnum {
|
|
5453
5280
|
MANAGE_PRODUCT_TYPES_AND_ATTRIBUTES
|
5454
5281
|
MANAGE_SHIPPING
|
5455
5282
|
MANAGE_SETTINGS
|
5456
|
-
MANAGE_TRANSLATIONS
|
5457
5283
|
MANAGE_CHECKOUTS
|
5458
5284
|
MANAGE_AGREEMENTS
|
5459
5285
|
MANAGE_MARKETPLACE
|
5460
5286
|
MANAGE_MARKETPLACE_CONFIGURATION
|
5461
|
-
MANAGE_MICROSITES
|
5462
5287
|
MANAGE_PAYOUTS
|
5463
5288
|
MANAGE_PAYMENTS
|
5464
5289
|
MANAGE_REFUNDS
|
@@ -5477,14 +5302,6 @@ type AppToken implements Node {
|
|
5477
5302
|
id: ID!
|
5478
5303
|
}
|
5479
5304
|
|
5480
|
-
enum AppTypeEnum {
|
5481
|
-
"""local"""
|
5482
|
-
LOCAL
|
5483
|
-
|
5484
|
-
"""thirdparty"""
|
5485
|
-
THIRDPARTY
|
5486
|
-
}
|
5487
|
-
|
5488
5305
|
"""Represents a dashboard integration for an App."""
|
5489
5306
|
type AppDashboardIntegration implements Node {
|
5490
5307
|
"""The ID of the object"""
|
@@ -6188,6 +6005,9 @@ type NauticalOrder implements Node & ObjectWithMetadata {
|
|
6188
6005
|
vatIdentificationNumber: String
|
6189
6006
|
mpVatIdentificationNumber: String
|
6190
6007
|
token: String!
|
6008
|
+
|
6009
|
+
"""Token of the checkout instance that this order was created from."""
|
6010
|
+
checkoutToken: String
|
6191
6011
|
voucher: Voucher
|
6192
6012
|
shippingDiscount: Money
|
6193
6013
|
discount: Money
|
@@ -9479,40 +9299,6 @@ enum SellerSortField {
|
|
9479
9299
|
CREATED
|
9480
9300
|
}
|
9481
9301
|
|
9482
|
-
type UserCountableConnection {
|
9483
|
-
"""Pagination data for this connection."""
|
9484
|
-
pageInfo: PageInfo!
|
9485
|
-
edges: [UserCountableEdge!]!
|
9486
|
-
|
9487
|
-
"""A total count of items in the collection."""
|
9488
|
-
totalCount: Int
|
9489
|
-
}
|
9490
|
-
|
9491
|
-
type UserCountableEdge {
|
9492
|
-
"""The item at the end of the edge."""
|
9493
|
-
node: User!
|
9494
|
-
|
9495
|
-
"""A cursor for use in pagination."""
|
9496
|
-
cursor: String!
|
9497
|
-
}
|
9498
|
-
|
9499
|
-
type AgreementCountableConnection {
|
9500
|
-
"""Pagination data for this connection."""
|
9501
|
-
pageInfo: PageInfo!
|
9502
|
-
edges: [AgreementCountableEdge!]!
|
9503
|
-
|
9504
|
-
"""A total count of items in the collection."""
|
9505
|
-
totalCount: Int
|
9506
|
-
}
|
9507
|
-
|
9508
|
-
type AgreementCountableEdge {
|
9509
|
-
"""The item at the end of the edge."""
|
9510
|
-
node: Agreement!
|
9511
|
-
|
9512
|
-
"""A cursor for use in pagination."""
|
9513
|
-
cursor: String!
|
9514
|
-
}
|
9515
|
-
|
9516
9302
|
type RefundCountableConnection {
|
9517
9303
|
"""Pagination data for this connection."""
|
9518
9304
|
pageInfo: PageInfo!
|
@@ -9802,11 +9588,6 @@ enum ProductTypeSortField {
|
|
9802
9588
|
EXTERNAL_SOURCE
|
9803
9589
|
}
|
9804
9590
|
|
9805
|
-
enum ReportingPeriod {
|
9806
|
-
TODAY
|
9807
|
-
THIS_MONTH
|
9808
|
-
}
|
9809
|
-
|
9810
9591
|
type PriceBookCountableConnection {
|
9811
9592
|
"""Pagination data for this connection."""
|
9812
9593
|
pageInfo: PageInfo!
|
@@ -10219,6 +10000,23 @@ enum PriceBookProductTypeHistorySortField {
|
|
10219
10000
|
CREATION_DATE
|
10220
10001
|
}
|
10221
10002
|
|
10003
|
+
type UserCountableConnection {
|
10004
|
+
"""Pagination data for this connection."""
|
10005
|
+
pageInfo: PageInfo!
|
10006
|
+
edges: [UserCountableEdge!]!
|
10007
|
+
|
10008
|
+
"""A total count of items in the collection."""
|
10009
|
+
totalCount: Int
|
10010
|
+
}
|
10011
|
+
|
10012
|
+
type UserCountableEdge {
|
10013
|
+
"""The item at the end of the edge."""
|
10014
|
+
node: User!
|
10015
|
+
|
10016
|
+
"""A cursor for use in pagination."""
|
10017
|
+
cursor: String!
|
10018
|
+
}
|
10019
|
+
|
10222
10020
|
input UserSortingInput {
|
10223
10021
|
"""Specifies the direction in which to sort products."""
|
10224
10022
|
direction: OrderDirection!
|
@@ -10317,225 +10115,6 @@ type TaxCertificate {
|
|
10317
10115
|
exposureZoneName: String
|
10318
10116
|
}
|
10319
10117
|
|
10320
|
-
"""
|
10321
|
-
The `GenericScalar` scalar type represents a generic
|
10322
|
-
GraphQL scalar value that could be:
|
10323
|
-
String, Boolean, Int, Float, List or Object.
|
10324
|
-
"""
|
10325
|
-
scalar GenericScalar
|
10326
|
-
|
10327
|
-
"""
|
10328
|
-
Represents products import process from 3rd party service or integration.
|
10329
|
-
"""
|
10330
|
-
type CatalogImportProcess implements Node {
|
10331
|
-
status: CatalogImportProcessStatus!
|
10332
|
-
message: String
|
10333
|
-
createdAt: DateTime!
|
10334
|
-
updatedAt: DateTime!
|
10335
|
-
|
10336
|
-
"""
|
10337
|
-
Main Celery task ID, that performs action. Can be equal to null, if the process is not started yet. Can be used to revoke running task.
|
10338
|
-
"""
|
10339
|
-
taskId: String
|
10340
|
-
externalSource: String!
|
10341
|
-
finishedAt: DateTime
|
10342
|
-
|
10343
|
-
"""The user who triggered this import process."""
|
10344
|
-
createdBy: User
|
10345
|
-
|
10346
|
-
"""The seller for whom triggered this import process."""
|
10347
|
-
seller: Seller
|
10348
|
-
|
10349
|
-
"""Error message for failed imports."""
|
10350
|
-
internalNotes: String
|
10351
|
-
|
10352
|
-
"""The ID of the object"""
|
10353
|
-
id: ID!
|
10354
|
-
|
10355
|
-
"""List of products in this collection."""
|
10356
|
-
records(
|
10357
|
-
"""Filtering options for products."""
|
10358
|
-
filter: CatalogImportProcessLogRecordFilterInput
|
10359
|
-
|
10360
|
-
"""Sort products."""
|
10361
|
-
sortBy: CatalogImportProcessLogRecordSortInput
|
10362
|
-
|
10363
|
-
"""Return the elements in the list that come before the specified cursor."""
|
10364
|
-
before: String
|
10365
|
-
|
10366
|
-
"""Return the elements in the list that come after the specified cursor."""
|
10367
|
-
after: String
|
10368
|
-
|
10369
|
-
"""Return the first n elements from the list."""
|
10370
|
-
first: Int
|
10371
|
-
|
10372
|
-
"""Return the last n elements from the list."""
|
10373
|
-
last: Int
|
10374
|
-
): CatalogImportProcessLogRecordCountableConnection
|
10375
|
-
}
|
10376
|
-
|
10377
|
-
"""An enumeration."""
|
10378
|
-
enum CatalogImportProcessStatus {
|
10379
|
-
"""Pending"""
|
10380
|
-
PENDING
|
10381
|
-
|
10382
|
-
"""Processing"""
|
10383
|
-
PROCESSING
|
10384
|
-
|
10385
|
-
"""Success"""
|
10386
|
-
SUCCESS
|
10387
|
-
|
10388
|
-
"""Failed"""
|
10389
|
-
FAILED
|
10390
|
-
|
10391
|
-
"""Deleted"""
|
10392
|
-
DELETED
|
10393
|
-
}
|
10394
|
-
|
10395
|
-
type CatalogImportProcessLogRecordCountableConnection {
|
10396
|
-
"""Pagination data for this connection."""
|
10397
|
-
pageInfo: PageInfo!
|
10398
|
-
edges: [CatalogImportProcessLogRecordCountableEdge!]!
|
10399
|
-
|
10400
|
-
"""A total count of items in the collection."""
|
10401
|
-
totalCount: Int
|
10402
|
-
}
|
10403
|
-
|
10404
|
-
type CatalogImportProcessLogRecordCountableEdge {
|
10405
|
-
"""The item at the end of the edge."""
|
10406
|
-
node: CatalogImportProcessLogRecord!
|
10407
|
-
|
10408
|
-
"""A cursor for use in pagination."""
|
10409
|
-
cursor: String!
|
10410
|
-
}
|
10411
|
-
|
10412
|
-
"""History log of each record processed with catalog import process."""
|
10413
|
-
type CatalogImportProcessLogRecord implements Node {
|
10414
|
-
"""The ID of the object"""
|
10415
|
-
id: ID!
|
10416
|
-
createdAt: DateTime!
|
10417
|
-
|
10418
|
-
"""Celery task ID, that created this log"""
|
10419
|
-
taskId: String
|
10420
|
-
objectId: String
|
10421
|
-
operation: CatalogImportProcessLogRecordOperation!
|
10422
|
-
|
10423
|
-
"""The name of a models which was processed with catalog import process."""
|
10424
|
-
relatedObjectName: String
|
10425
|
-
}
|
10426
|
-
|
10427
|
-
"""An enumeration."""
|
10428
|
-
enum CatalogImportProcessLogRecordOperation {
|
10429
|
-
"""Attribute Created"""
|
10430
|
-
ATTRIBUTE_CREATED
|
10431
|
-
|
10432
|
-
"""Attribute Updated"""
|
10433
|
-
ATTRIBUTE_UPDATED
|
10434
|
-
|
10435
|
-
"""Category Created"""
|
10436
|
-
CATEGORY_CREATED
|
10437
|
-
|
10438
|
-
"""Category Updated"""
|
10439
|
-
CATEGORY_UPDATED
|
10440
|
-
|
10441
|
-
"""Product Created"""
|
10442
|
-
PRODUCT_CREATED
|
10443
|
-
|
10444
|
-
"""Product Updated"""
|
10445
|
-
PRODUCT_UPDATED
|
10446
|
-
|
10447
|
-
"""Product Updated or Created"""
|
10448
|
-
PRODUCT_UPDATED_OR_CREATED
|
10449
|
-
|
10450
|
-
"""Product Archived"""
|
10451
|
-
PRODUCT_ARCHIVED
|
10452
|
-
|
10453
|
-
"""Product Type Created"""
|
10454
|
-
PRODUCT_TYPE_CREATED
|
10455
|
-
|
10456
|
-
"""Product Type Updated"""
|
10457
|
-
PRODUCT_TYPE_UPDATED
|
10458
|
-
|
10459
|
-
"""Warehouse Created"""
|
10460
|
-
WAREHOUSE_CREATED
|
10461
|
-
|
10462
|
-
"""Warehouse Updated"""
|
10463
|
-
WAREHOUSE_UPDATED
|
10464
|
-
}
|
10465
|
-
|
10466
|
-
input CatalogImportProcessLogRecordFilterInput {
|
10467
|
-
taskId: String
|
10468
|
-
objectId: String
|
10469
|
-
operation: CatalogImportOperation
|
10470
|
-
}
|
10471
|
-
|
10472
|
-
"""An enumeration."""
|
10473
|
-
enum CatalogImportOperation {
|
10474
|
-
ATTRIBUTE_CREATED
|
10475
|
-
ATTRIBUTE_UPDATED
|
10476
|
-
CATEGORY_CREATED
|
10477
|
-
CATEGORY_UPDATED
|
10478
|
-
PRODUCT_CREATED
|
10479
|
-
PRODUCT_UPDATED
|
10480
|
-
PRODUCT_UPDATED_OR_CREATED
|
10481
|
-
PRODUCT_ARCHIVED
|
10482
|
-
PRODUCT_TYPE_CREATED
|
10483
|
-
PRODUCT_TYPE_UPDATED
|
10484
|
-
WAREHOUSE_CREATED
|
10485
|
-
WAREHOUSE_UPDATED
|
10486
|
-
}
|
10487
|
-
|
10488
|
-
input CatalogImportProcessLogRecordSortInput {
|
10489
|
-
"""Specifies the direction in which to sort products."""
|
10490
|
-
direction: OrderDirection!
|
10491
|
-
|
10492
|
-
"""Sort catalog_import_processes_log_record by the selected field."""
|
10493
|
-
field: CatalogImportProcessLogRecordSortField!
|
10494
|
-
}
|
10495
|
-
|
10496
|
-
enum CatalogImportProcessLogRecordSortField {
|
10497
|
-
"""Sort users by created at."""
|
10498
|
-
CREATED_AT
|
10499
|
-
}
|
10500
|
-
|
10501
|
-
type CatalogImportProcessCountableConnection {
|
10502
|
-
"""Pagination data for this connection."""
|
10503
|
-
pageInfo: PageInfo!
|
10504
|
-
edges: [CatalogImportProcessCountableEdge!]!
|
10505
|
-
|
10506
|
-
"""A total count of items in the collection."""
|
10507
|
-
totalCount: Int
|
10508
|
-
}
|
10509
|
-
|
10510
|
-
type CatalogImportProcessCountableEdge {
|
10511
|
-
"""The item at the end of the edge."""
|
10512
|
-
node: CatalogImportProcess!
|
10513
|
-
|
10514
|
-
"""A cursor for use in pagination."""
|
10515
|
-
cursor: String!
|
10516
|
-
}
|
10517
|
-
|
10518
|
-
input CatalogImportProcessFilterInput {
|
10519
|
-
createdBy: String
|
10520
|
-
seller: String
|
10521
|
-
}
|
10522
|
-
|
10523
|
-
input CatalogImportProcessSortInput {
|
10524
|
-
"""Specifies the direction in which to sort products."""
|
10525
|
-
direction: OrderDirection!
|
10526
|
-
|
10527
|
-
"""Sort catalog_import_processes by the selected field."""
|
10528
|
-
field: CatalogImportProcessSortField!
|
10529
|
-
}
|
10530
|
-
|
10531
|
-
enum CatalogImportProcessSortField {
|
10532
|
-
"""Sort users by created at."""
|
10533
|
-
CREATED_AT
|
10534
|
-
|
10535
|
-
"""Sort users by finished at."""
|
10536
|
-
FINISHED_AT
|
10537
|
-
}
|
10538
|
-
|
10539
10118
|
"""Avalara support tax exemption."""
|
10540
10119
|
type TaxExemptCode {
|
10541
10120
|
"""Tax exempt code."""
|
@@ -10551,6 +10130,13 @@ type TaxExemptCode {
|
|
10551
10130
|
validCountries: [String!]
|
10552
10131
|
}
|
10553
10132
|
|
10133
|
+
"""
|
10134
|
+
The `GenericScalar` scalar type represents a generic
|
10135
|
+
GraphQL scalar value that could be:
|
10136
|
+
String, Boolean, Int, Float, List or Object.
|
10137
|
+
"""
|
10138
|
+
scalar GenericScalar
|
10139
|
+
|
10554
10140
|
input StripeClientPaymentData {
|
10555
10141
|
amount: PositiveDecimal
|
10556
10142
|
currency: String
|
@@ -10991,40 +10577,6 @@ input PageFilterInput {
|
|
10991
10577
|
search: String
|
10992
10578
|
}
|
10993
10579
|
|
10994
|
-
type OrderEventCountableConnection {
|
10995
|
-
"""Pagination data for this connection."""
|
10996
|
-
pageInfo: PageInfo!
|
10997
|
-
edges: [OrderEventCountableEdge!]!
|
10998
|
-
|
10999
|
-
"""A total count of items in the collection."""
|
11000
|
-
totalCount: Int
|
11001
|
-
}
|
11002
|
-
|
11003
|
-
type OrderEventCountableEdge {
|
11004
|
-
"""The item at the end of the edge."""
|
11005
|
-
node: OrderEvent!
|
11006
|
-
|
11007
|
-
"""A cursor for use in pagination."""
|
11008
|
-
cursor: String!
|
11009
|
-
}
|
11010
|
-
|
11011
|
-
type NauticalOrderEventCountableConnection {
|
11012
|
-
"""Pagination data for this connection."""
|
11013
|
-
pageInfo: PageInfo!
|
11014
|
-
edges: [NauticalOrderEventCountableEdge!]!
|
11015
|
-
|
11016
|
-
"""A total count of items in the collection."""
|
11017
|
-
totalCount: Int
|
11018
|
-
}
|
11019
|
-
|
11020
|
-
type NauticalOrderEventCountableEdge {
|
11021
|
-
"""The item at the end of the edge."""
|
11022
|
-
node: NauticalOrderEvent!
|
11023
|
-
|
11024
|
-
"""A cursor for use in pagination."""
|
11025
|
-
cursor: String!
|
11026
|
-
}
|
11027
|
-
|
11028
10580
|
input OrderFilterInput {
|
11029
10581
|
paymentStatus: [PaymentChargeStatusEnum!]
|
11030
10582
|
status: [OrderStatusFilter!]
|
@@ -11108,6 +10660,11 @@ input OrderQuoteFilterInput {
|
|
11108
10660
|
source: [OrderSourceFilter!]
|
11109
10661
|
}
|
11110
10662
|
|
10663
|
+
enum ReportingPeriod {
|
10664
|
+
TODAY
|
10665
|
+
THIS_MONTH
|
10666
|
+
}
|
10667
|
+
|
11111
10668
|
type FulfillmentCountableConnection {
|
11112
10669
|
"""Pagination data for this connection."""
|
11113
10670
|
pageInfo: PageInfo!
|
@@ -11176,17 +10733,6 @@ enum ReturnFulfillmentSortField {
|
|
11176
10733
|
RETURN_STATUS
|
11177
10734
|
}
|
11178
10735
|
|
11179
|
-
type OptimizedHome {
|
11180
|
-
sales: TaxedMoney
|
11181
|
-
orders: Int
|
11182
|
-
toFulfill: Int
|
11183
|
-
toCapture: Int
|
11184
|
-
outOfStock: Int
|
11185
|
-
topProducts: [ProductVariant!]!
|
11186
|
-
sellerActivities: [OrderEvent!]!
|
11187
|
-
marketplaceActivities: [NauticalOrderEvent!]!
|
11188
|
-
}
|
11189
|
-
|
11190
10736
|
"""Represents a nautical configuration resource."""
|
11191
10737
|
type NauticalConfiguration {
|
11192
10738
|
"""Primary key name of the configuration item"""
|
@@ -12389,7 +11935,6 @@ type AppCountableEdge {
|
|
12389
11935
|
input AppFilterInput {
|
12390
11936
|
search: String
|
12391
11937
|
isActive: Boolean
|
12392
|
-
type: AppTypeEnum
|
12393
11938
|
}
|
12394
11939
|
|
12395
11940
|
input AppSortingInput {
|
@@ -12408,6 +11953,23 @@ enum AppSortField {
|
|
12408
11953
|
CREATION_DATE
|
12409
11954
|
}
|
12410
11955
|
|
11956
|
+
type AgreementCountableConnection {
|
11957
|
+
"""Pagination data for this connection."""
|
11958
|
+
pageInfo: PageInfo!
|
11959
|
+
edges: [AgreementCountableEdge!]!
|
11960
|
+
|
11961
|
+
"""A total count of items in the collection."""
|
11962
|
+
totalCount: Int
|
11963
|
+
}
|
11964
|
+
|
11965
|
+
type AgreementCountableEdge {
|
11966
|
+
"""The item at the end of the edge."""
|
11967
|
+
node: Agreement!
|
11968
|
+
|
11969
|
+
"""A cursor for use in pagination."""
|
11970
|
+
cursor: String!
|
11971
|
+
}
|
11972
|
+
|
12411
11973
|
input AgreementOrder {
|
12412
11974
|
"""Specifies the direction in which to sort products."""
|
12413
11975
|
direction: OrderDirection!
|
@@ -12437,31 +11999,6 @@ input AgreementFilterInput {
|
|
12437
11999
|
search: String
|
12438
12000
|
}
|
12439
12001
|
|
12440
|
-
type AddressValidationData {
|
12441
|
-
countryCode: String
|
12442
|
-
countryName: String
|
12443
|
-
addressFormat: String
|
12444
|
-
addressLatinFormat: String
|
12445
|
-
allowedFields: [String!]
|
12446
|
-
requiredFields: [String!]
|
12447
|
-
upperFields: [String!]
|
12448
|
-
countryAreaType: String
|
12449
|
-
countryAreaChoices: [ChoiceValue!]
|
12450
|
-
cityType: String
|
12451
|
-
cityChoices: [ChoiceValue!]
|
12452
|
-
cityAreaType: String
|
12453
|
-
cityAreaChoices: [ChoiceValue!]
|
12454
|
-
postalCodeType: String
|
12455
|
-
postalCodeMatchers: [String!]
|
12456
|
-
postalCodeExamples: [String!]
|
12457
|
-
postalCodePrefix: String
|
12458
|
-
}
|
12459
|
-
|
12460
|
-
type ChoiceValue {
|
12461
|
-
raw: String
|
12462
|
-
verbose: String
|
12463
|
-
}
|
12464
|
-
|
12465
12002
|
input CustomerFilterInput {
|
12466
12003
|
dateJoined: DateRangeInput
|
12467
12004
|
isActive: Boolean
|
@@ -12518,7 +12055,30 @@ enum StaffMemberStatus {
|
|
12518
12055
|
DEACTIVATED
|
12519
12056
|
}
|
12520
12057
|
|
12521
|
-
|
12058
|
+
"""Represents a SSO integration."""
|
12059
|
+
type SSOIntegration implements Node {
|
12060
|
+
"""The ID of the SSO integration."""
|
12061
|
+
id: ID!
|
12062
|
+
|
12063
|
+
"""The name of the SSO integration."""
|
12064
|
+
name: SSOProviderEnum!
|
12065
|
+
|
12066
|
+
"""Whether the SSO integration is enabled."""
|
12067
|
+
isActive: Boolean!
|
12068
|
+
|
12069
|
+
"""The URL to authorize the SSO integration."""
|
12070
|
+
oauthAuthorizationUrl: String!
|
12071
|
+
}
|
12072
|
+
|
12073
|
+
enum SSOProviderEnum {
|
12074
|
+
"""Google"""
|
12075
|
+
GOOGLE
|
12076
|
+
|
12077
|
+
"""Keycloak"""
|
12078
|
+
KEYCLOAK
|
12079
|
+
}
|
12080
|
+
|
12081
|
+
union _Entity = WishlistItem | Wishlist | User | Address | ProductVariant | Product | Category | ProductType | App | Collection | ProductImage | ProductStatusLog | Group
|
12522
12082
|
|
12523
12083
|
scalar _Any
|
12524
12084
|
|
@@ -12558,7 +12118,7 @@ type Mutation {
|
|
12558
12118
|
description: String
|
12559
12119
|
|
12560
12120
|
"""
|
12561
|
-
Used when uploading a new document or file in a multipart request that does not exist in the system already. Supported file types:
|
12121
|
+
Used when uploading a new document or file in a multipart request that does not exist in the system already. Supported file types: application/acrobat, application/svg+xml, image/x-ms-bmp, application/x-dxf, application/excel, image/tif, image/heif-sequence, text/x-comma-separated-values, application/vnd.ms-word, application/gzip-compressed, image/bmp, application/vnd.oasis.opendocument.text, drawing/x-dwf, application/vnd.oasis.opendocument.spreadsheet, application/x-eps, image/x-tif, application/x-tar, application/dwg, application/postscript, application/zip, text/comma-separated-values, image/jpeg, application/x-jpg, image/heif, application/x-dwg, application/msword, image/dxf, image/png, application/jpg, image/x-dwg, text/svg, application/vnd.openxmlformats-officedocument.spreadsheetml.sheet, text/svg-xml, image/x-tiff, image/jpg, application/acad, application/x-gzip, image/tiff, text/pdf, application/x-rtf, image/gif, application/x-autocad, image/x-eps, image/svg+xml, drawing/x-dwg, application/gzipped, application/eps, pplication/vnd.rar, application/x-acad, application/vnd.ms-excel, application/gzip, image/heic-sequence, image/vnd.dwg, application/x-tiff, application/x-csv, application/vnd.openxmlformats-officedocument.presentationml.presentation, application/csv, application/dxf, image/x-bmp, application/vnd.oasis.opendocument.presentation, image/x-dxf, application/vnd.ms-powerpoint, text/csv, application/tiff, application/x-tif, application/vnd.pdf, application/x-zip-compressed, text/rtf, text/plain, text/x-csv, image/svg, application/rtf, image/webp, drawing/dwg, application/x-pdf, image/heic, application/x-rar-compressed, text/x-pdf, application/vnd.openxmlformats-officedocument.presentationml.slideshow, application/x-rar, image/eps, application/vnd.openxmlformats-officedocument.wordprocessingml.document, application/pdf, application/tif.
|
12562
12122
|
"""
|
12563
12123
|
file: Upload!
|
12564
12124
|
|
@@ -12654,15 +12214,6 @@ type Mutation {
|
|
12654
12214
|
input: PayoutStatusInput
|
12655
12215
|
): PayoutStatusUpdate
|
12656
12216
|
|
12657
|
-
"""Modifies the dates of a payout"""
|
12658
|
-
payoutDatesUpdate(
|
12659
|
-
"""ID of the payout to update."""
|
12660
|
-
id: ID!
|
12661
|
-
|
12662
|
-
"""Fields required to update a payout date range."""
|
12663
|
-
input: PayoutDatesInput!
|
12664
|
-
): PayoutDatesUpdate @deprecated(reason: "This will be removed on April 29, 2025.")
|
12665
|
-
|
12666
12217
|
"""Process a payout asynchronously."""
|
12667
12218
|
payoutProcess(input: PayoutProcessInput!): PayoutProcess
|
12668
12219
|
|
@@ -14278,15 +13829,6 @@ type Mutation {
|
|
14278
13829
|
input: NoteInput!
|
14279
13830
|
): NauticalOrderLineAddNote
|
14280
13831
|
|
14281
|
-
"""Adds return notification note to the order."""
|
14282
|
-
orderReturnNotification(
|
14283
|
-
"""ID of the order to add a note for."""
|
14284
|
-
order: ID!
|
14285
|
-
|
14286
|
-
"""Fields required to create a return notification for the order."""
|
14287
|
-
input: OrderReturnNotificationInput!
|
14288
|
-
): OrderReturnNotification @deprecated(reason: "This will be removed on April 29, 2025.")
|
14289
|
-
|
14290
13832
|
"""
|
14291
13833
|
Attempts to force a refresh of the existing taxes on a non-placed nautical order.
|
14292
13834
|
"""
|
@@ -14310,24 +13852,6 @@ type Mutation {
|
|
14310
13852
|
id: ID
|
14311
13853
|
): NauticalOrderUpdateDeleteDiscount
|
14312
13854
|
|
14313
|
-
"""Adds return notification note to the order."""
|
14314
|
-
nauticalOrderReturnNotification(
|
14315
|
-
"""ID of the order to add a note for."""
|
14316
|
-
order: ID!
|
14317
|
-
|
14318
|
-
"""Fields required to create a return notification for the order."""
|
14319
|
-
input: OrderReturnNotificationInput!
|
14320
|
-
): NauticalOrderReturnNotification @deprecated(reason: "This will be removed on April 29, 2025.")
|
14321
|
-
|
14322
|
-
"""Adds return notification note to the order."""
|
14323
|
-
nauticalOrderReturnFromStorefrontNotification(
|
14324
|
-
"""ID of the order to add a note for."""
|
14325
|
-
order: ID!
|
14326
|
-
|
14327
|
-
"""Fields required to create a return notification for the order."""
|
14328
|
-
input: OrderReturnNotificationInput!
|
14329
|
-
): NauticalOrderReturnFromStorefrontNotification @deprecated(reason: "This will be removed on April 29, 2025.")
|
14330
|
-
|
14331
13855
|
"""Cancel an order."""
|
14332
13856
|
orderCancel(
|
14333
13857
|
"""ID of the order to cancel."""
|
@@ -14779,15 +14303,6 @@ type Mutation {
|
|
14779
14303
|
input: PluginUpdateInput!
|
14780
14304
|
): PluginUpdate
|
14781
14305
|
|
14782
|
-
"""Import foreign catalog."""
|
14783
|
-
catalogImport(
|
14784
|
-
"""Plugin ID"""
|
14785
|
-
id: ID
|
14786
|
-
|
14787
|
-
"""Seller ID"""
|
14788
|
-
sellerId: ID
|
14789
|
-
): CatalogImport @deprecated(reason: "This will be removed on April 29, 2025")
|
14790
|
-
|
14791
14306
|
"""Export catalog."""
|
14792
14307
|
catalogExport(
|
14793
14308
|
"""Plugin ID"""
|
@@ -14797,15 +14312,6 @@ type Mutation {
|
|
14797
14312
|
sellerId: ID
|
14798
14313
|
): CatalogExport
|
14799
14314
|
|
14800
|
-
"""Export customer list."""
|
14801
|
-
customersExport(
|
14802
|
-
"""Plugin ID"""
|
14803
|
-
id: ID
|
14804
|
-
|
14805
|
-
"""Seller ID"""
|
14806
|
-
sellerId: ID
|
14807
|
-
): CustomersExport @deprecated(reason: "This will be removed on April 29, 2025")
|
14808
|
-
|
14809
14315
|
"""
|
14810
14316
|
Retrieves an onboarding link for the given vendor from the given gateway if available.
|
14811
14317
|
"""
|
@@ -14949,12 +14455,6 @@ type Mutation {
|
|
14949
14455
|
input: ExportProductsInput!
|
14950
14456
|
): ProductsExport
|
14951
14457
|
|
14952
|
-
"""Import products with csv file."""
|
14953
|
-
productsImport(
|
14954
|
-
"""Represents a file in a multipart request."""
|
14955
|
-
file: Upload!
|
14956
|
-
): ProductsImport @deprecated(reason: "This will be removed on April 29, 2025.")
|
14957
|
-
|
14958
14458
|
"""Adds a gift card or a voucher to a checkout."""
|
14959
14459
|
checkoutAddPromoCode(
|
14960
14460
|
"""Checkout ID."""
|
@@ -15409,7 +14909,7 @@ type Mutation {
|
|
15409
14909
|
|
15410
14910
|
"""Password of a user."""
|
15411
14911
|
password: String!
|
15412
|
-
):
|
14912
|
+
): TokenCreate
|
15413
14913
|
|
15414
14914
|
"""Create authorization URL."""
|
15415
14915
|
authUrlGenerate(
|
@@ -15438,16 +14938,16 @@ type Mutation {
|
|
15438
14938
|
|
15439
14939
|
"""Refresh token."""
|
15440
14940
|
refreshToken: String
|
15441
|
-
):
|
14941
|
+
): TokenRefresh
|
15442
14942
|
|
15443
14943
|
"""Verify JWT token."""
|
15444
14944
|
tokenVerify(
|
15445
14945
|
"""JWT token to validate."""
|
15446
14946
|
token: String!
|
15447
|
-
):
|
14947
|
+
): TokenVerify
|
15448
14948
|
|
15449
14949
|
"""Deactivate all JWT tokens of the currently authenticated user."""
|
15450
|
-
tokensDeactivateAll:
|
14950
|
+
tokensDeactivateAll: TokensDeactivateAll
|
15451
14951
|
|
15452
14952
|
"""Sends an email with the account password modification link."""
|
15453
14953
|
passwordRequestReset(
|
@@ -15940,7 +15440,7 @@ input MarketplaceConfigurationInput {
|
|
15940
15440
|
availableShippingStrategy: AvailableShippingStrategyEnum = null
|
15941
15441
|
|
15942
15442
|
"""Update attribute template strategy"""
|
15943
|
-
attributeTemplateStrategy: AttributeTemplateStrategyEnum = null
|
15443
|
+
attributeTemplateStrategy: AttributeTemplateStrategyEnum = null @deprecated(reason: "This field will be removed on July 23, 2025.")
|
15944
15444
|
|
15945
15445
|
"""
|
15946
15446
|
Updates currency of the marketplace. Marketplace currency will be updated after the cache time (approximately 30 seconds)'
|
@@ -16027,18 +15527,6 @@ input MarketplaceConfigurationInput {
|
|
16027
15527
|
chargeTaxesOnShipping: Boolean
|
16028
15528
|
}
|
16029
15529
|
|
16030
|
-
enum AttributeTemplateStrategyEnum {
|
16031
|
-
"""
|
16032
|
-
Assigned attributes may only come from templates (ProductType for PIM-specific attribute usage or CustomFieldTemplate for custom field attribute usage), no non-templated attribute assignment is allowed
|
16033
|
-
"""
|
16034
|
-
STRICT
|
16035
|
-
|
16036
|
-
"""
|
16037
|
-
Assigned attributes may come from BOTH attribute templates and non-templated attribute assignments
|
16038
|
-
"""
|
16039
|
-
FLEXIBLE
|
16040
|
-
}
|
16041
|
-
|
16042
15530
|
input DefaultSellerChecklistInput {
|
16043
15531
|
title: String!
|
16044
15532
|
description: String!
|
@@ -16139,19 +15627,6 @@ input VendorPayoutDetails {
|
|
16139
15627
|
payout: String
|
16140
15628
|
}
|
16141
15629
|
|
16142
|
-
"""Modifies the dates of a payout"""
|
16143
|
-
type PayoutDatesUpdate {
|
16144
|
-
payoutErrors: [PayoutError!]!
|
16145
|
-
payout: Payout
|
16146
|
-
}
|
16147
|
-
|
16148
|
-
input PayoutDatesInput {
|
16149
|
-
"""
|
16150
|
-
Payout end date. ISO 8601 standard. Can not be greater than current date.
|
16151
|
-
"""
|
16152
|
-
endDate: Date!
|
16153
|
-
}
|
16154
|
-
|
16155
15630
|
"""Process a payout asynchronously."""
|
16156
15631
|
type PayoutProcess {
|
16157
15632
|
payout: Payout
|
@@ -19165,9 +18640,6 @@ input ProductVariantCreateInput {
|
|
19165
18640
|
"""Name for the variant."""
|
19166
18641
|
name: String
|
19167
18642
|
|
19168
|
-
"""True if variant requires quote pricing."""
|
19169
|
-
requiresQuote: Boolean @deprecated(reason: "This field will be removed on April 25th, 2025.")
|
19170
|
-
|
19171
18643
|
"""
|
19172
18644
|
Informs whether a collection is published. All variants are published by default
|
19173
18645
|
"""
|
@@ -19300,9 +18772,6 @@ input ProductVariantBulkCreateInput {
|
|
19300
18772
|
"""Name for the variant."""
|
19301
18773
|
name: String
|
19302
18774
|
|
19303
|
-
"""True if variant requires quote pricing."""
|
19304
|
-
requiresQuote: Boolean @deprecated(reason: "This field will be removed on April 25th, 2025.")
|
19305
|
-
|
19306
18775
|
"""
|
19307
18776
|
Informs whether a collection is published. All variants are published by default
|
19308
18777
|
"""
|
@@ -19470,9 +18939,6 @@ input ProductVariantInput {
|
|
19470
18939
|
"""Name for the variant."""
|
19471
18940
|
name: String
|
19472
18941
|
|
19473
|
-
"""True if variant requires quote pricing."""
|
19474
|
-
requiresQuote: Boolean @deprecated(reason: "This field will be removed on April 25th, 2025.")
|
19475
|
-
|
19476
18942
|
"""
|
19477
18943
|
Informs whether a collection is published. All variants are published by default
|
19478
18944
|
"""
|
@@ -20226,24 +19692,6 @@ type NauticalOrderLineAddNote {
|
|
20226
19692
|
nauticalOrderLine: NauticalOrderLine
|
20227
19693
|
}
|
20228
19694
|
|
20229
|
-
"""Adds return notification note to the order."""
|
20230
|
-
type OrderReturnNotification {
|
20231
|
-
"""Order with return notification note added."""
|
20232
|
-
order: Order
|
20233
|
-
|
20234
|
-
"""Order return notification created."""
|
20235
|
-
event: OrderEvent
|
20236
|
-
orderErrors: [OrderError!]!
|
20237
|
-
}
|
20238
|
-
|
20239
|
-
input OrderReturnNotificationInput {
|
20240
|
-
"""Status of the return."""
|
20241
|
-
returnStatus: String!
|
20242
|
-
|
20243
|
-
"""Status of the return."""
|
20244
|
-
productNames: String
|
20245
|
-
}
|
20246
|
-
|
20247
19695
|
"""
|
20248
19696
|
Attempts to force a refresh of the existing taxes on a non-placed nautical order.
|
20249
19697
|
"""
|
@@ -20267,26 +19715,6 @@ type NauticalOrderUpdateDeleteDiscount {
|
|
20267
19715
|
orderErrors: [OrderError!]!
|
20268
19716
|
}
|
20269
19717
|
|
20270
|
-
"""Adds return notification note to the order."""
|
20271
|
-
type NauticalOrderReturnNotification {
|
20272
|
-
"""Order with return notification note added."""
|
20273
|
-
order: NauticalOrder
|
20274
|
-
|
20275
|
-
"""Order return notification created."""
|
20276
|
-
event: NauticalOrderEvent
|
20277
|
-
orderErrors: [OrderError!]!
|
20278
|
-
}
|
20279
|
-
|
20280
|
-
"""Adds return notification note to the order."""
|
20281
|
-
type NauticalOrderReturnFromStorefrontNotification {
|
20282
|
-
"""Order with return notification note added."""
|
20283
|
-
order: NauticalOrder
|
20284
|
-
|
20285
|
-
"""Order return notification created."""
|
20286
|
-
event: NauticalOrderEvent
|
20287
|
-
orderErrors: [OrderError!]!
|
20288
|
-
}
|
20289
|
-
|
20290
19718
|
"""Cancel an order."""
|
20291
19719
|
type OrderCancel {
|
20292
19720
|
"""Canceled order."""
|
@@ -21239,15 +20667,6 @@ input ConfigurationItemInput {
|
|
21239
20667
|
value: GenericScalar
|
21240
20668
|
}
|
21241
20669
|
|
21242
|
-
"""Import foreign catalog."""
|
21243
|
-
type CatalogImport {
|
21244
|
-
ok: Boolean
|
21245
|
-
|
21246
|
-
"""Plugin ID"""
|
21247
|
-
plugin: ID
|
21248
|
-
pluginsErrors: [PluginError!]!
|
21249
|
-
}
|
21250
|
-
|
21251
20670
|
"""Export catalog."""
|
21252
20671
|
type CatalogExport {
|
21253
20672
|
ok: Boolean
|
@@ -21257,15 +20676,6 @@ type CatalogExport {
|
|
21257
20676
|
pluginsErrors: [PluginError!]!
|
21258
20677
|
}
|
21259
20678
|
|
21260
|
-
"""Export customer list."""
|
21261
|
-
type CustomersExport {
|
21262
|
-
ok: Boolean
|
21263
|
-
|
21264
|
-
"""Plugin ID"""
|
21265
|
-
plugin: ID
|
21266
|
-
pluginsErrors: [PluginError!]!
|
21267
|
-
}
|
21268
|
-
|
21269
20679
|
"""
|
21270
20680
|
Retrieves an onboarding link for the given vendor from the given gateway if available.
|
21271
20681
|
"""
|
@@ -21647,33 +21057,6 @@ enum FileTypesEnum {
|
|
21647
21057
|
XLSX
|
21648
21058
|
}
|
21649
21059
|
|
21650
|
-
"""Import products with csv file."""
|
21651
|
-
type ProductsImport {
|
21652
|
-
"""The newly created import file which is responsible for import data."""
|
21653
|
-
importFile: ImportFile
|
21654
|
-
importErrors: [ImportError!]!
|
21655
|
-
}
|
21656
|
-
|
21657
|
-
type ImportError {
|
21658
|
-
"""
|
21659
|
-
Name of a field that caused the error. A value of `null` indicates that the error isn't associated with a particular field.
|
21660
|
-
"""
|
21661
|
-
field: String
|
21662
|
-
|
21663
|
-
"""The error message."""
|
21664
|
-
message: String!
|
21665
|
-
|
21666
|
-
"""The error code."""
|
21667
|
-
code: ImportErrorCode!
|
21668
|
-
}
|
21669
|
-
|
21670
|
-
"""An enumeration."""
|
21671
|
-
enum ImportErrorCode {
|
21672
|
-
INVALID
|
21673
|
-
NOT_FOUND
|
21674
|
-
REQUIRED
|
21675
|
-
}
|
21676
|
-
|
21677
21060
|
"""Adds a gift card or a voucher to a checkout."""
|
21678
21061
|
type CheckoutAddPromoCode {
|
21679
21062
|
"""The checkout with the added gift card or voucher."""
|
@@ -22395,7 +21778,7 @@ enum OauthProviderSourceEnum {
|
|
22395
21778
|
}
|
22396
21779
|
|
22397
21780
|
"""Create JWT token."""
|
22398
|
-
type
|
21781
|
+
type TokenCreate {
|
22399
21782
|
"""JWT token, required to authenticate."""
|
22400
21783
|
token: String
|
22401
21784
|
|
@@ -22496,7 +21879,7 @@ type TokenCreateSSO {
|
|
22496
21879
|
"""
|
22497
21880
|
Refresh JWT token. Mutation tries to take refreshToken from the input.If it fails it will try to take refreshToken from the http-only cookie -refreshToken. csrfToken is required when refreshToken is provided as a cookie.
|
22498
21881
|
"""
|
22499
|
-
type
|
21882
|
+
type TokenRefresh {
|
22500
21883
|
"""JWT token, required to authenticate."""
|
22501
21884
|
token: String
|
22502
21885
|
|
@@ -22506,20 +21889,17 @@ type RefreshToken {
|
|
22506
21889
|
}
|
22507
21890
|
|
22508
21891
|
"""Verify JWT token."""
|
22509
|
-
type
|
21892
|
+
type TokenVerify {
|
22510
21893
|
"""User assigned to token."""
|
22511
21894
|
user: User
|
22512
21895
|
|
22513
21896
|
"""Determine if token is valid or not."""
|
22514
21897
|
isValid: Boolean!
|
22515
|
-
|
22516
|
-
"""JWT payload."""
|
22517
|
-
payload: GenericScalar @deprecated(reason: "This will be removed on April 29, 2025")
|
22518
21898
|
accountErrors: [AccountError!]!
|
22519
21899
|
}
|
22520
21900
|
|
22521
21901
|
"""Deactivate all JWT tokens of the currently authenticated user."""
|
22522
|
-
type
|
21902
|
+
type TokensDeactivateAll {
|
22523
21903
|
accountErrors: [AccountError!]!
|
22524
21904
|
}
|
22525
21905
|
|