@nautical-commerce/graphql-schema 1.80.1 → 1.81.0
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 +75 -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."""
|
@@ -2037,6 +1870,15 @@ type Query {
|
|
2037
1870
|
"""Email address of the user."""
|
2038
1871
|
email: String!
|
2039
1872
|
): User
|
1873
|
+
|
1874
|
+
"""Determine if the email token provided is still valid or not."""
|
1875
|
+
isEmailTokenValid(
|
1876
|
+
"""Generated email token."""
|
1877
|
+
token: String!
|
1878
|
+
|
1879
|
+
"""Email address of the user."""
|
1880
|
+
email: String!
|
1881
|
+
): Boolean
|
2040
1882
|
_entities(representations: [_Any!]!): [_Entity]!
|
2041
1883
|
_service: _Service!
|
2042
1884
|
}
|
@@ -2328,7 +2170,6 @@ type User implements Node & ObjectWithMetadata {
|
|
2328
2170
|
email: String!
|
2329
2171
|
firstName: String!
|
2330
2172
|
lastName: String!
|
2331
|
-
isStaff: Boolean!
|
2332
2173
|
isActive: Boolean!
|
2333
2174
|
|
2334
2175
|
"""A note about the customer."""
|
@@ -2481,7 +2322,12 @@ type User implements Node & ObjectWithMetadata {
|
|
2481
2322
|
last: Int
|
2482
2323
|
): WishlistCountableConnection
|
2483
2324
|
seller: Seller
|
2484
|
-
|
2325
|
+
|
2326
|
+
"""If true, the user can be assigned as the owner of a seller"""
|
2327
|
+
isAssignable: Boolean!
|
2328
|
+
|
2329
|
+
"""If true, the user is an MPO or a seller staff member"""
|
2330
|
+
isStaff: Boolean!
|
2485
2331
|
|
2486
2332
|
"""List of documents associated with the user."""
|
2487
2333
|
documents: [Document!]!
|
@@ -2928,7 +2774,6 @@ type ProductVariant implements Node & ObjectWithMetadata {
|
|
2928
2774
|
|
2929
2775
|
"""List of vouchers associated with the product."""
|
2930
2776
|
vouchers: [Voucher!]!
|
2931
|
-
requiresQuote: Boolean @deprecated(reason: "This field will be removed on April 25th, 2025.")
|
2932
2777
|
|
2933
2778
|
"""
|
2934
2779
|
The sub status of the product variant. This will be the same as product's sub status.
|
@@ -3363,7 +3208,7 @@ type MarketplaceConfiguration {
|
|
3363
3208
|
Determines whether shipping methods are available based on marketplace checkout total or seller totals
|
3364
3209
|
"""
|
3365
3210
|
availableShippingStrategy: AvailableShippingStrategyEnum
|
3366
|
-
attributeTemplateStrategy:
|
3211
|
+
attributeTemplateStrategy: AttributeTemplateStrategyEnum @deprecated(reason: "This field will be removed on July 23, 2025.")
|
3367
3212
|
|
3368
3213
|
"""Determines the fulfillment model for the marketplace"""
|
3369
3214
|
fulfillmentModel: FulfillmentModelEnum!
|
@@ -4005,8 +3850,7 @@ enum AvailableShippingStrategyEnum {
|
|
4005
3850
|
MARKETPLACE_LINES
|
4006
3851
|
}
|
4007
3852
|
|
4008
|
-
|
4009
|
-
enum MarketplaceConfigurationAttributeTemplateStrategy {
|
3853
|
+
enum AttributeTemplateStrategyEnum {
|
4010
3854
|
"""
|
4011
3855
|
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
3856
|
"""
|
@@ -4821,7 +4665,7 @@ input ProductFilterInput {
|
|
4821
4665
|
isSimple: Boolean
|
4822
4666
|
attributes: [AttributeInput!]
|
4823
4667
|
customFields: [AttributeInput!]
|
4824
|
-
dates: CustomDateRangeInput
|
4668
|
+
dates: CustomDateRangeInput @deprecated(reason: "This will be removed on July 29, 2025")
|
4825
4669
|
stockAvailability: StockAvailability
|
4826
4670
|
productType: ID
|
4827
4671
|
stocks: ProductStockFilterInput
|
@@ -5384,9 +5228,6 @@ type App implements Node & ObjectWithMetadata {
|
|
5384
5228
|
"""List of public metadata items. Can be accessed without permissions."""
|
5385
5229
|
metadata: [MetadataItem!]!
|
5386
5230
|
|
5387
|
-
"""Type of the app."""
|
5388
|
-
type: AppTypeEnum @deprecated(reason: "This will be removed on April 30, 2025.")
|
5389
|
-
|
5390
5231
|
"""List of dashboard integrations for this app"""
|
5391
5232
|
dashboardIntegrations: [AppDashboardIntegration!]
|
5392
5233
|
|
@@ -5396,27 +5237,6 @@ type App implements Node & ObjectWithMetadata {
|
|
5396
5237
|
"""List of webhooks assigned to this app."""
|
5397
5238
|
webhooks: [Webhook!]
|
5398
5239
|
|
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
5240
|
"""Version number of the app."""
|
5421
5241
|
version: String
|
5422
5242
|
|
@@ -5436,7 +5256,6 @@ type Permission {
|
|
5436
5256
|
enum PermissionEnum {
|
5437
5257
|
MANAGE_USERS
|
5438
5258
|
MANAGE_STAFF
|
5439
|
-
MANAGE_PERMISSIONS @deprecated(reason: "This will be removed on April 23, 2025.")
|
5440
5259
|
MANAGE_APPS
|
5441
5260
|
MANAGE_DISCOUNTS
|
5442
5261
|
MANAGE_DOCUMENTS
|
@@ -5453,12 +5272,10 @@ enum PermissionEnum {
|
|
5453
5272
|
MANAGE_PRODUCT_TYPES_AND_ATTRIBUTES
|
5454
5273
|
MANAGE_SHIPPING
|
5455
5274
|
MANAGE_SETTINGS
|
5456
|
-
MANAGE_TRANSLATIONS
|
5457
5275
|
MANAGE_CHECKOUTS
|
5458
5276
|
MANAGE_AGREEMENTS
|
5459
5277
|
MANAGE_MARKETPLACE
|
5460
5278
|
MANAGE_MARKETPLACE_CONFIGURATION
|
5461
|
-
MANAGE_MICROSITES
|
5462
5279
|
MANAGE_PAYOUTS
|
5463
5280
|
MANAGE_PAYMENTS
|
5464
5281
|
MANAGE_REFUNDS
|
@@ -5477,14 +5294,6 @@ type AppToken implements Node {
|
|
5477
5294
|
id: ID!
|
5478
5295
|
}
|
5479
5296
|
|
5480
|
-
enum AppTypeEnum {
|
5481
|
-
"""local"""
|
5482
|
-
LOCAL
|
5483
|
-
|
5484
|
-
"""thirdparty"""
|
5485
|
-
THIRDPARTY
|
5486
|
-
}
|
5487
|
-
|
5488
5297
|
"""Represents a dashboard integration for an App."""
|
5489
5298
|
type AppDashboardIntegration implements Node {
|
5490
5299
|
"""The ID of the object"""
|
@@ -9479,40 +9288,6 @@ enum SellerSortField {
|
|
9479
9288
|
CREATED
|
9480
9289
|
}
|
9481
9290
|
|
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
9291
|
type RefundCountableConnection {
|
9517
9292
|
"""Pagination data for this connection."""
|
9518
9293
|
pageInfo: PageInfo!
|
@@ -9802,11 +9577,6 @@ enum ProductTypeSortField {
|
|
9802
9577
|
EXTERNAL_SOURCE
|
9803
9578
|
}
|
9804
9579
|
|
9805
|
-
enum ReportingPeriod {
|
9806
|
-
TODAY
|
9807
|
-
THIS_MONTH
|
9808
|
-
}
|
9809
|
-
|
9810
9580
|
type PriceBookCountableConnection {
|
9811
9581
|
"""Pagination data for this connection."""
|
9812
9582
|
pageInfo: PageInfo!
|
@@ -10219,6 +9989,23 @@ enum PriceBookProductTypeHistorySortField {
|
|
10219
9989
|
CREATION_DATE
|
10220
9990
|
}
|
10221
9991
|
|
9992
|
+
type UserCountableConnection {
|
9993
|
+
"""Pagination data for this connection."""
|
9994
|
+
pageInfo: PageInfo!
|
9995
|
+
edges: [UserCountableEdge!]!
|
9996
|
+
|
9997
|
+
"""A total count of items in the collection."""
|
9998
|
+
totalCount: Int
|
9999
|
+
}
|
10000
|
+
|
10001
|
+
type UserCountableEdge {
|
10002
|
+
"""The item at the end of the edge."""
|
10003
|
+
node: User!
|
10004
|
+
|
10005
|
+
"""A cursor for use in pagination."""
|
10006
|
+
cursor: String!
|
10007
|
+
}
|
10008
|
+
|
10222
10009
|
input UserSortingInput {
|
10223
10010
|
"""Specifies the direction in which to sort products."""
|
10224
10011
|
direction: OrderDirection!
|
@@ -10317,225 +10104,6 @@ type TaxCertificate {
|
|
10317
10104
|
exposureZoneName: String
|
10318
10105
|
}
|
10319
10106
|
|
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
10107
|
"""Avalara support tax exemption."""
|
10540
10108
|
type TaxExemptCode {
|
10541
10109
|
"""Tax exempt code."""
|
@@ -10551,6 +10119,13 @@ type TaxExemptCode {
|
|
10551
10119
|
validCountries: [String!]
|
10552
10120
|
}
|
10553
10121
|
|
10122
|
+
"""
|
10123
|
+
The `GenericScalar` scalar type represents a generic
|
10124
|
+
GraphQL scalar value that could be:
|
10125
|
+
String, Boolean, Int, Float, List or Object.
|
10126
|
+
"""
|
10127
|
+
scalar GenericScalar
|
10128
|
+
|
10554
10129
|
input StripeClientPaymentData {
|
10555
10130
|
amount: PositiveDecimal
|
10556
10131
|
currency: String
|
@@ -10991,40 +10566,6 @@ input PageFilterInput {
|
|
10991
10566
|
search: String
|
10992
10567
|
}
|
10993
10568
|
|
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
10569
|
input OrderFilterInput {
|
11029
10570
|
paymentStatus: [PaymentChargeStatusEnum!]
|
11030
10571
|
status: [OrderStatusFilter!]
|
@@ -11108,6 +10649,11 @@ input OrderQuoteFilterInput {
|
|
11108
10649
|
source: [OrderSourceFilter!]
|
11109
10650
|
}
|
11110
10651
|
|
10652
|
+
enum ReportingPeriod {
|
10653
|
+
TODAY
|
10654
|
+
THIS_MONTH
|
10655
|
+
}
|
10656
|
+
|
11111
10657
|
type FulfillmentCountableConnection {
|
11112
10658
|
"""Pagination data for this connection."""
|
11113
10659
|
pageInfo: PageInfo!
|
@@ -11176,17 +10722,6 @@ enum ReturnFulfillmentSortField {
|
|
11176
10722
|
RETURN_STATUS
|
11177
10723
|
}
|
11178
10724
|
|
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
10725
|
"""Represents a nautical configuration resource."""
|
11191
10726
|
type NauticalConfiguration {
|
11192
10727
|
"""Primary key name of the configuration item"""
|
@@ -12389,7 +11924,6 @@ type AppCountableEdge {
|
|
12389
11924
|
input AppFilterInput {
|
12390
11925
|
search: String
|
12391
11926
|
isActive: Boolean
|
12392
|
-
type: AppTypeEnum
|
12393
11927
|
}
|
12394
11928
|
|
12395
11929
|
input AppSortingInput {
|
@@ -12408,6 +11942,23 @@ enum AppSortField {
|
|
12408
11942
|
CREATION_DATE
|
12409
11943
|
}
|
12410
11944
|
|
11945
|
+
type AgreementCountableConnection {
|
11946
|
+
"""Pagination data for this connection."""
|
11947
|
+
pageInfo: PageInfo!
|
11948
|
+
edges: [AgreementCountableEdge!]!
|
11949
|
+
|
11950
|
+
"""A total count of items in the collection."""
|
11951
|
+
totalCount: Int
|
11952
|
+
}
|
11953
|
+
|
11954
|
+
type AgreementCountableEdge {
|
11955
|
+
"""The item at the end of the edge."""
|
11956
|
+
node: Agreement!
|
11957
|
+
|
11958
|
+
"""A cursor for use in pagination."""
|
11959
|
+
cursor: String!
|
11960
|
+
}
|
11961
|
+
|
12411
11962
|
input AgreementOrder {
|
12412
11963
|
"""Specifies the direction in which to sort products."""
|
12413
11964
|
direction: OrderDirection!
|
@@ -12437,31 +11988,6 @@ input AgreementFilterInput {
|
|
12437
11988
|
search: String
|
12438
11989
|
}
|
12439
11990
|
|
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
11991
|
input CustomerFilterInput {
|
12466
11992
|
dateJoined: DateRangeInput
|
12467
11993
|
isActive: Boolean
|
@@ -12518,7 +12044,7 @@ enum StaffMemberStatus {
|
|
12518
12044
|
DEACTIVATED
|
12519
12045
|
}
|
12520
12046
|
|
12521
|
-
union _Entity = WishlistItem | Wishlist | User | Address | ProductVariant | Product | Category | ProductType | App | Collection | ProductImage | ProductStatusLog | Group
|
12047
|
+
union _Entity = WishlistItem | Wishlist | User | Address | ProductVariant | Product | Category | ProductType | App | Collection | ProductImage | ProductStatusLog | Group
|
12522
12048
|
|
12523
12049
|
scalar _Any
|
12524
12050
|
|
@@ -12558,7 +12084,7 @@ type Mutation {
|
|
12558
12084
|
description: String
|
12559
12085
|
|
12560
12086
|
"""
|
12561
|
-
Used when uploading a new document or file in a multipart request that does not exist in the system already. Supported file types:
|
12087
|
+
Used when uploading a new document or file in a multipart request that does not exist in the system already. Supported file types: application/vnd.oasis.opendocument.spreadsheet, application/zip, application/jpg, application/dxf, text/csv, image/svg, application/x-dwg, image/tiff, application/x-dxf, text/comma-separated-values, image/heic-sequence, application/acrobat, application/gzipped, application/vnd.ms-excel, application/vnd.ms-word, image/x-eps, text/pdf, application/x-tiff, application/gzip, image/eps, image/x-tiff, image/tif, application/svg+xml, application/vnd.pdf, application/dwg, image/heif-sequence, image/x-ms-bmp, application/acad, application/csv, image/x-bmp, application/rtf, application/x-rtf, image/x-dwg, application/vnd.openxmlformats-officedocument.presentationml.presentation, application/tif, application/x-rar-compressed, image/svg+xml, image/heif, drawing/dwg, application/vnd.openxmlformats-officedocument.presentationml.slideshow, image/png, image/gif, pplication/vnd.rar, application/excel, application/x-tar, text/rtf, application/vnd.ms-powerpoint, application/msword, application/x-zip-compressed, application/x-jpg, text/plain, text/x-pdf, application/x-pdf, application/x-tif, application/postscript, image/dxf, application/x-gzip, application/x-acad, text/svg-xml, image/x-tif, image/jpg, application/tiff, text/svg, image/bmp, application/pdf, application/eps, image/jpeg, drawing/x-dwf, application/x-eps, drawing/x-dwg, application/vnd.oasis.opendocument.text, image/webp, application/vnd.openxmlformats-officedocument.wordprocessingml.document, application/gzip-compressed, text/x-comma-separated-values, text/x-csv, application/vnd.oasis.opendocument.presentation, application/x-autocad, application/vnd.openxmlformats-officedocument.spreadsheetml.sheet, application/x-csv, application/x-rar, image/heic, image/vnd.dwg, image/x-dxf.
|
12562
12088
|
"""
|
12563
12089
|
file: Upload!
|
12564
12090
|
|
@@ -12654,15 +12180,6 @@ type Mutation {
|
|
12654
12180
|
input: PayoutStatusInput
|
12655
12181
|
): PayoutStatusUpdate
|
12656
12182
|
|
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
12183
|
"""Process a payout asynchronously."""
|
12667
12184
|
payoutProcess(input: PayoutProcessInput!): PayoutProcess
|
12668
12185
|
|
@@ -14278,15 +13795,6 @@ type Mutation {
|
|
14278
13795
|
input: NoteInput!
|
14279
13796
|
): NauticalOrderLineAddNote
|
14280
13797
|
|
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
13798
|
"""
|
14291
13799
|
Attempts to force a refresh of the existing taxes on a non-placed nautical order.
|
14292
13800
|
"""
|
@@ -14310,24 +13818,6 @@ type Mutation {
|
|
14310
13818
|
id: ID
|
14311
13819
|
): NauticalOrderUpdateDeleteDiscount
|
14312
13820
|
|
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
13821
|
"""Cancel an order."""
|
14332
13822
|
orderCancel(
|
14333
13823
|
"""ID of the order to cancel."""
|
@@ -14779,15 +14269,6 @@ type Mutation {
|
|
14779
14269
|
input: PluginUpdateInput!
|
14780
14270
|
): PluginUpdate
|
14781
14271
|
|
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
14272
|
"""Export catalog."""
|
14792
14273
|
catalogExport(
|
14793
14274
|
"""Plugin ID"""
|
@@ -14797,15 +14278,6 @@ type Mutation {
|
|
14797
14278
|
sellerId: ID
|
14798
14279
|
): CatalogExport
|
14799
14280
|
|
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
14281
|
"""
|
14810
14282
|
Retrieves an onboarding link for the given vendor from the given gateway if available.
|
14811
14283
|
"""
|
@@ -14949,12 +14421,6 @@ type Mutation {
|
|
14949
14421
|
input: ExportProductsInput!
|
14950
14422
|
): ProductsExport
|
14951
14423
|
|
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
14424
|
"""Adds a gift card or a voucher to a checkout."""
|
14959
14425
|
checkoutAddPromoCode(
|
14960
14426
|
"""Checkout ID."""
|
@@ -15409,7 +14875,7 @@ type Mutation {
|
|
15409
14875
|
|
15410
14876
|
"""Password of a user."""
|
15411
14877
|
password: String!
|
15412
|
-
):
|
14878
|
+
): TokenCreate
|
15413
14879
|
|
15414
14880
|
"""Create authorization URL."""
|
15415
14881
|
authUrlGenerate(
|
@@ -15438,16 +14904,16 @@ type Mutation {
|
|
15438
14904
|
|
15439
14905
|
"""Refresh token."""
|
15440
14906
|
refreshToken: String
|
15441
|
-
):
|
14907
|
+
): TokenRefresh
|
15442
14908
|
|
15443
14909
|
"""Verify JWT token."""
|
15444
14910
|
tokenVerify(
|
15445
14911
|
"""JWT token to validate."""
|
15446
14912
|
token: String!
|
15447
|
-
):
|
14913
|
+
): TokenVerify
|
15448
14914
|
|
15449
14915
|
"""Deactivate all JWT tokens of the currently authenticated user."""
|
15450
|
-
tokensDeactivateAll:
|
14916
|
+
tokensDeactivateAll: TokensDeactivateAll
|
15451
14917
|
|
15452
14918
|
"""Sends an email with the account password modification link."""
|
15453
14919
|
passwordRequestReset(
|
@@ -15940,7 +15406,7 @@ input MarketplaceConfigurationInput {
|
|
15940
15406
|
availableShippingStrategy: AvailableShippingStrategyEnum = null
|
15941
15407
|
|
15942
15408
|
"""Update attribute template strategy"""
|
15943
|
-
attributeTemplateStrategy: AttributeTemplateStrategyEnum = null
|
15409
|
+
attributeTemplateStrategy: AttributeTemplateStrategyEnum = null @deprecated(reason: "This field will be removed on July 23, 2025.")
|
15944
15410
|
|
15945
15411
|
"""
|
15946
15412
|
Updates currency of the marketplace. Marketplace currency will be updated after the cache time (approximately 30 seconds)'
|
@@ -16027,18 +15493,6 @@ input MarketplaceConfigurationInput {
|
|
16027
15493
|
chargeTaxesOnShipping: Boolean
|
16028
15494
|
}
|
16029
15495
|
|
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
15496
|
input DefaultSellerChecklistInput {
|
16043
15497
|
title: String!
|
16044
15498
|
description: String!
|
@@ -16139,19 +15593,6 @@ input VendorPayoutDetails {
|
|
16139
15593
|
payout: String
|
16140
15594
|
}
|
16141
15595
|
|
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
15596
|
"""Process a payout asynchronously."""
|
16156
15597
|
type PayoutProcess {
|
16157
15598
|
payout: Payout
|
@@ -19165,9 +18606,6 @@ input ProductVariantCreateInput {
|
|
19165
18606
|
"""Name for the variant."""
|
19166
18607
|
name: String
|
19167
18608
|
|
19168
|
-
"""True if variant requires quote pricing."""
|
19169
|
-
requiresQuote: Boolean @deprecated(reason: "This field will be removed on April 25th, 2025.")
|
19170
|
-
|
19171
18609
|
"""
|
19172
18610
|
Informs whether a collection is published. All variants are published by default
|
19173
18611
|
"""
|
@@ -19300,9 +18738,6 @@ input ProductVariantBulkCreateInput {
|
|
19300
18738
|
"""Name for the variant."""
|
19301
18739
|
name: String
|
19302
18740
|
|
19303
|
-
"""True if variant requires quote pricing."""
|
19304
|
-
requiresQuote: Boolean @deprecated(reason: "This field will be removed on April 25th, 2025.")
|
19305
|
-
|
19306
18741
|
"""
|
19307
18742
|
Informs whether a collection is published. All variants are published by default
|
19308
18743
|
"""
|
@@ -19470,9 +18905,6 @@ input ProductVariantInput {
|
|
19470
18905
|
"""Name for the variant."""
|
19471
18906
|
name: String
|
19472
18907
|
|
19473
|
-
"""True if variant requires quote pricing."""
|
19474
|
-
requiresQuote: Boolean @deprecated(reason: "This field will be removed on April 25th, 2025.")
|
19475
|
-
|
19476
18908
|
"""
|
19477
18909
|
Informs whether a collection is published. All variants are published by default
|
19478
18910
|
"""
|
@@ -20226,24 +19658,6 @@ type NauticalOrderLineAddNote {
|
|
20226
19658
|
nauticalOrderLine: NauticalOrderLine
|
20227
19659
|
}
|
20228
19660
|
|
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
19661
|
"""
|
20248
19662
|
Attempts to force a refresh of the existing taxes on a non-placed nautical order.
|
20249
19663
|
"""
|
@@ -20267,26 +19681,6 @@ type NauticalOrderUpdateDeleteDiscount {
|
|
20267
19681
|
orderErrors: [OrderError!]!
|
20268
19682
|
}
|
20269
19683
|
|
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
19684
|
"""Cancel an order."""
|
20291
19685
|
type OrderCancel {
|
20292
19686
|
"""Canceled order."""
|
@@ -21239,15 +20633,6 @@ input ConfigurationItemInput {
|
|
21239
20633
|
value: GenericScalar
|
21240
20634
|
}
|
21241
20635
|
|
21242
|
-
"""Import foreign catalog."""
|
21243
|
-
type CatalogImport {
|
21244
|
-
ok: Boolean
|
21245
|
-
|
21246
|
-
"""Plugin ID"""
|
21247
|
-
plugin: ID
|
21248
|
-
pluginsErrors: [PluginError!]!
|
21249
|
-
}
|
21250
|
-
|
21251
20636
|
"""Export catalog."""
|
21252
20637
|
type CatalogExport {
|
21253
20638
|
ok: Boolean
|
@@ -21257,15 +20642,6 @@ type CatalogExport {
|
|
21257
20642
|
pluginsErrors: [PluginError!]!
|
21258
20643
|
}
|
21259
20644
|
|
21260
|
-
"""Export customer list."""
|
21261
|
-
type CustomersExport {
|
21262
|
-
ok: Boolean
|
21263
|
-
|
21264
|
-
"""Plugin ID"""
|
21265
|
-
plugin: ID
|
21266
|
-
pluginsErrors: [PluginError!]!
|
21267
|
-
}
|
21268
|
-
|
21269
20645
|
"""
|
21270
20646
|
Retrieves an onboarding link for the given vendor from the given gateway if available.
|
21271
20647
|
"""
|
@@ -21647,33 +21023,6 @@ enum FileTypesEnum {
|
|
21647
21023
|
XLSX
|
21648
21024
|
}
|
21649
21025
|
|
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
21026
|
"""Adds a gift card or a voucher to a checkout."""
|
21678
21027
|
type CheckoutAddPromoCode {
|
21679
21028
|
"""The checkout with the added gift card or voucher."""
|
@@ -22395,7 +21744,7 @@ enum OauthProviderSourceEnum {
|
|
22395
21744
|
}
|
22396
21745
|
|
22397
21746
|
"""Create JWT token."""
|
22398
|
-
type
|
21747
|
+
type TokenCreate {
|
22399
21748
|
"""JWT token, required to authenticate."""
|
22400
21749
|
token: String
|
22401
21750
|
|
@@ -22496,7 +21845,7 @@ type TokenCreateSSO {
|
|
22496
21845
|
"""
|
22497
21846
|
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
21847
|
"""
|
22499
|
-
type
|
21848
|
+
type TokenRefresh {
|
22500
21849
|
"""JWT token, required to authenticate."""
|
22501
21850
|
token: String
|
22502
21851
|
|
@@ -22506,20 +21855,17 @@ type RefreshToken {
|
|
22506
21855
|
}
|
22507
21856
|
|
22508
21857
|
"""Verify JWT token."""
|
22509
|
-
type
|
21858
|
+
type TokenVerify {
|
22510
21859
|
"""User assigned to token."""
|
22511
21860
|
user: User
|
22512
21861
|
|
22513
21862
|
"""Determine if token is valid or not."""
|
22514
21863
|
isValid: Boolean!
|
22515
|
-
|
22516
|
-
"""JWT payload."""
|
22517
|
-
payload: GenericScalar @deprecated(reason: "This will be removed on April 29, 2025")
|
22518
21864
|
accountErrors: [AccountError!]!
|
22519
21865
|
}
|
22520
21866
|
|
22521
21867
|
"""Deactivate all JWT tokens of the currently authenticated user."""
|
22522
|
-
type
|
21868
|
+
type TokensDeactivateAll {
|
22523
21869
|
accountErrors: [AccountError!]!
|
22524
21870
|
}
|
22525
21871
|
|