@nautical-commerce/graphql-schema 1.80.0-5-gdf649d3bb → 1.80.0-50-gf395c3d2f
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 +73 -713
- 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
|
}
|
@@ -2047,6 +1889,7 @@ type MarketplaceSubscription implements Node {
|
|
2047
1889
|
id: ID!
|
2048
1890
|
providerCustomerId: String!
|
2049
1891
|
isActive: Boolean!
|
1892
|
+
plan: String
|
2050
1893
|
|
2051
1894
|
"""The provider of the marketplace subscription"""
|
2052
1895
|
provider: MarketplaceSubscriptionProviderTypeEnum
|
@@ -2327,7 +2170,6 @@ type User implements Node & ObjectWithMetadata {
|
|
2327
2170
|
email: String!
|
2328
2171
|
firstName: String!
|
2329
2172
|
lastName: String!
|
2330
|
-
isStaff: Boolean!
|
2331
2173
|
isActive: Boolean!
|
2332
2174
|
|
2333
2175
|
"""A note about the customer."""
|
@@ -2480,7 +2322,12 @@ type User implements Node & ObjectWithMetadata {
|
|
2480
2322
|
last: Int
|
2481
2323
|
): WishlistCountableConnection
|
2482
2324
|
seller: Seller
|
2483
|
-
|
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!
|
2484
2331
|
|
2485
2332
|
"""List of documents associated with the user."""
|
2486
2333
|
documents: [Document!]!
|
@@ -2927,7 +2774,6 @@ type ProductVariant implements Node & ObjectWithMetadata {
|
|
2927
2774
|
|
2928
2775
|
"""List of vouchers associated with the product."""
|
2929
2776
|
vouchers: [Voucher!]!
|
2930
|
-
requiresQuote: Boolean @deprecated(reason: "This field will be removed on April 25th, 2025.")
|
2931
2777
|
|
2932
2778
|
"""
|
2933
2779
|
The sub status of the product variant. This will be the same as product's sub status.
|
@@ -4819,7 +4665,7 @@ input ProductFilterInput {
|
|
4819
4665
|
isSimple: Boolean
|
4820
4666
|
attributes: [AttributeInput!]
|
4821
4667
|
customFields: [AttributeInput!]
|
4822
|
-
dates: CustomDateRangeInput
|
4668
|
+
dates: CustomDateRangeInput @deprecated(reason: "This will be removed on July 29, 2025")
|
4823
4669
|
stockAvailability: StockAvailability
|
4824
4670
|
productType: ID
|
4825
4671
|
stocks: ProductStockFilterInput
|
@@ -5382,9 +5228,6 @@ type App implements Node & ObjectWithMetadata {
|
|
5382
5228
|
"""List of public metadata items. Can be accessed without permissions."""
|
5383
5229
|
metadata: [MetadataItem!]!
|
5384
5230
|
|
5385
|
-
"""Type of the app."""
|
5386
|
-
type: AppTypeEnum @deprecated(reason: "This will be removed on April 30, 2025.")
|
5387
|
-
|
5388
5231
|
"""List of dashboard integrations for this app"""
|
5389
5232
|
dashboardIntegrations: [AppDashboardIntegration!]
|
5390
5233
|
|
@@ -5394,27 +5237,6 @@ type App implements Node & ObjectWithMetadata {
|
|
5394
5237
|
"""List of webhooks assigned to this app."""
|
5395
5238
|
webhooks: [Webhook!]
|
5396
5239
|
|
5397
|
-
"""Description of this app."""
|
5398
|
-
aboutApp: String @deprecated(reason: "This will be removed on April 30, 2025.")
|
5399
|
-
|
5400
|
-
"""Description of the data privacy defined for this app."""
|
5401
|
-
dataPrivacy: String @deprecated(reason: "This will be removed on April 30, 2025.")
|
5402
|
-
|
5403
|
-
"""Url to details about the privacy policy on the app owner page."""
|
5404
|
-
dataPrivacyUrl: String @deprecated(reason: "This will be removed on April 30, 2025.")
|
5405
|
-
|
5406
|
-
"""Homepage of the app."""
|
5407
|
-
homepageUrl: String @deprecated(reason: "This will be removed on April 30, 2025.")
|
5408
|
-
|
5409
|
-
"""Support page for the app."""
|
5410
|
-
supportUrl: String @deprecated(reason: "This will be removed on April 30, 2025.")
|
5411
|
-
|
5412
|
-
"""Url to iframe with the configuration for the app."""
|
5413
|
-
configurationUrl: String @deprecated(reason: "This will be removed on April 30, 2025.")
|
5414
|
-
|
5415
|
-
"""Url to iframe with the app."""
|
5416
|
-
appUrl: String @deprecated(reason: "This will be removed on April 30, 2025.")
|
5417
|
-
|
5418
5240
|
"""Version number of the app."""
|
5419
5241
|
version: String
|
5420
5242
|
|
@@ -5434,7 +5256,6 @@ type Permission {
|
|
5434
5256
|
enum PermissionEnum {
|
5435
5257
|
MANAGE_USERS
|
5436
5258
|
MANAGE_STAFF
|
5437
|
-
MANAGE_PERMISSIONS @deprecated(reason: "This will be removed on April 23, 2025.")
|
5438
5259
|
MANAGE_APPS
|
5439
5260
|
MANAGE_DISCOUNTS
|
5440
5261
|
MANAGE_DOCUMENTS
|
@@ -5451,12 +5272,10 @@ enum PermissionEnum {
|
|
5451
5272
|
MANAGE_PRODUCT_TYPES_AND_ATTRIBUTES
|
5452
5273
|
MANAGE_SHIPPING
|
5453
5274
|
MANAGE_SETTINGS
|
5454
|
-
MANAGE_TRANSLATIONS
|
5455
5275
|
MANAGE_CHECKOUTS
|
5456
5276
|
MANAGE_AGREEMENTS
|
5457
5277
|
MANAGE_MARKETPLACE
|
5458
5278
|
MANAGE_MARKETPLACE_CONFIGURATION
|
5459
|
-
MANAGE_MICROSITES
|
5460
5279
|
MANAGE_PAYOUTS
|
5461
5280
|
MANAGE_PAYMENTS
|
5462
5281
|
MANAGE_REFUNDS
|
@@ -5475,14 +5294,6 @@ type AppToken implements Node {
|
|
5475
5294
|
id: ID!
|
5476
5295
|
}
|
5477
5296
|
|
5478
|
-
enum AppTypeEnum {
|
5479
|
-
"""local"""
|
5480
|
-
LOCAL
|
5481
|
-
|
5482
|
-
"""thirdparty"""
|
5483
|
-
THIRDPARTY
|
5484
|
-
}
|
5485
|
-
|
5486
5297
|
"""Represents a dashboard integration for an App."""
|
5487
5298
|
type AppDashboardIntegration implements Node {
|
5488
5299
|
"""The ID of the object"""
|
@@ -9477,40 +9288,6 @@ enum SellerSortField {
|
|
9477
9288
|
CREATED
|
9478
9289
|
}
|
9479
9290
|
|
9480
|
-
type UserCountableConnection {
|
9481
|
-
"""Pagination data for this connection."""
|
9482
|
-
pageInfo: PageInfo!
|
9483
|
-
edges: [UserCountableEdge!]!
|
9484
|
-
|
9485
|
-
"""A total count of items in the collection."""
|
9486
|
-
totalCount: Int
|
9487
|
-
}
|
9488
|
-
|
9489
|
-
type UserCountableEdge {
|
9490
|
-
"""The item at the end of the edge."""
|
9491
|
-
node: User!
|
9492
|
-
|
9493
|
-
"""A cursor for use in pagination."""
|
9494
|
-
cursor: String!
|
9495
|
-
}
|
9496
|
-
|
9497
|
-
type AgreementCountableConnection {
|
9498
|
-
"""Pagination data for this connection."""
|
9499
|
-
pageInfo: PageInfo!
|
9500
|
-
edges: [AgreementCountableEdge!]!
|
9501
|
-
|
9502
|
-
"""A total count of items in the collection."""
|
9503
|
-
totalCount: Int
|
9504
|
-
}
|
9505
|
-
|
9506
|
-
type AgreementCountableEdge {
|
9507
|
-
"""The item at the end of the edge."""
|
9508
|
-
node: Agreement!
|
9509
|
-
|
9510
|
-
"""A cursor for use in pagination."""
|
9511
|
-
cursor: String!
|
9512
|
-
}
|
9513
|
-
|
9514
9291
|
type RefundCountableConnection {
|
9515
9292
|
"""Pagination data for this connection."""
|
9516
9293
|
pageInfo: PageInfo!
|
@@ -9800,11 +9577,6 @@ enum ProductTypeSortField {
|
|
9800
9577
|
EXTERNAL_SOURCE
|
9801
9578
|
}
|
9802
9579
|
|
9803
|
-
enum ReportingPeriod {
|
9804
|
-
TODAY
|
9805
|
-
THIS_MONTH
|
9806
|
-
}
|
9807
|
-
|
9808
9580
|
type PriceBookCountableConnection {
|
9809
9581
|
"""Pagination data for this connection."""
|
9810
9582
|
pageInfo: PageInfo!
|
@@ -10217,6 +9989,23 @@ enum PriceBookProductTypeHistorySortField {
|
|
10217
9989
|
CREATION_DATE
|
10218
9990
|
}
|
10219
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
|
+
|
10220
10009
|
input UserSortingInput {
|
10221
10010
|
"""Specifies the direction in which to sort products."""
|
10222
10011
|
direction: OrderDirection!
|
@@ -10315,225 +10104,6 @@ type TaxCertificate {
|
|
10315
10104
|
exposureZoneName: String
|
10316
10105
|
}
|
10317
10106
|
|
10318
|
-
"""
|
10319
|
-
The `GenericScalar` scalar type represents a generic
|
10320
|
-
GraphQL scalar value that could be:
|
10321
|
-
String, Boolean, Int, Float, List or Object.
|
10322
|
-
"""
|
10323
|
-
scalar GenericScalar
|
10324
|
-
|
10325
|
-
"""
|
10326
|
-
Represents products import process from 3rd party service or integration.
|
10327
|
-
"""
|
10328
|
-
type CatalogImportProcess implements Node {
|
10329
|
-
status: CatalogImportProcessStatus!
|
10330
|
-
message: String
|
10331
|
-
createdAt: DateTime!
|
10332
|
-
updatedAt: DateTime!
|
10333
|
-
|
10334
|
-
"""
|
10335
|
-
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.
|
10336
|
-
"""
|
10337
|
-
taskId: String
|
10338
|
-
externalSource: String!
|
10339
|
-
finishedAt: DateTime
|
10340
|
-
|
10341
|
-
"""The user who triggered this import process."""
|
10342
|
-
createdBy: User
|
10343
|
-
|
10344
|
-
"""The seller for whom triggered this import process."""
|
10345
|
-
seller: Seller
|
10346
|
-
|
10347
|
-
"""Error message for failed imports."""
|
10348
|
-
internalNotes: String
|
10349
|
-
|
10350
|
-
"""The ID of the object"""
|
10351
|
-
id: ID!
|
10352
|
-
|
10353
|
-
"""List of products in this collection."""
|
10354
|
-
records(
|
10355
|
-
"""Filtering options for products."""
|
10356
|
-
filter: CatalogImportProcessLogRecordFilterInput
|
10357
|
-
|
10358
|
-
"""Sort products."""
|
10359
|
-
sortBy: CatalogImportProcessLogRecordSortInput
|
10360
|
-
|
10361
|
-
"""Return the elements in the list that come before the specified cursor."""
|
10362
|
-
before: String
|
10363
|
-
|
10364
|
-
"""Return the elements in the list that come after the specified cursor."""
|
10365
|
-
after: String
|
10366
|
-
|
10367
|
-
"""Return the first n elements from the list."""
|
10368
|
-
first: Int
|
10369
|
-
|
10370
|
-
"""Return the last n elements from the list."""
|
10371
|
-
last: Int
|
10372
|
-
): CatalogImportProcessLogRecordCountableConnection
|
10373
|
-
}
|
10374
|
-
|
10375
|
-
"""An enumeration."""
|
10376
|
-
enum CatalogImportProcessStatus {
|
10377
|
-
"""Pending"""
|
10378
|
-
PENDING
|
10379
|
-
|
10380
|
-
"""Processing"""
|
10381
|
-
PROCESSING
|
10382
|
-
|
10383
|
-
"""Success"""
|
10384
|
-
SUCCESS
|
10385
|
-
|
10386
|
-
"""Failed"""
|
10387
|
-
FAILED
|
10388
|
-
|
10389
|
-
"""Deleted"""
|
10390
|
-
DELETED
|
10391
|
-
}
|
10392
|
-
|
10393
|
-
type CatalogImportProcessLogRecordCountableConnection {
|
10394
|
-
"""Pagination data for this connection."""
|
10395
|
-
pageInfo: PageInfo!
|
10396
|
-
edges: [CatalogImportProcessLogRecordCountableEdge!]!
|
10397
|
-
|
10398
|
-
"""A total count of items in the collection."""
|
10399
|
-
totalCount: Int
|
10400
|
-
}
|
10401
|
-
|
10402
|
-
type CatalogImportProcessLogRecordCountableEdge {
|
10403
|
-
"""The item at the end of the edge."""
|
10404
|
-
node: CatalogImportProcessLogRecord!
|
10405
|
-
|
10406
|
-
"""A cursor for use in pagination."""
|
10407
|
-
cursor: String!
|
10408
|
-
}
|
10409
|
-
|
10410
|
-
"""History log of each record processed with catalog import process."""
|
10411
|
-
type CatalogImportProcessLogRecord implements Node {
|
10412
|
-
"""The ID of the object"""
|
10413
|
-
id: ID!
|
10414
|
-
createdAt: DateTime!
|
10415
|
-
|
10416
|
-
"""Celery task ID, that created this log"""
|
10417
|
-
taskId: String
|
10418
|
-
objectId: String
|
10419
|
-
operation: CatalogImportProcessLogRecordOperation!
|
10420
|
-
|
10421
|
-
"""The name of a models which was processed with catalog import process."""
|
10422
|
-
relatedObjectName: String
|
10423
|
-
}
|
10424
|
-
|
10425
|
-
"""An enumeration."""
|
10426
|
-
enum CatalogImportProcessLogRecordOperation {
|
10427
|
-
"""Attribute Created"""
|
10428
|
-
ATTRIBUTE_CREATED
|
10429
|
-
|
10430
|
-
"""Attribute Updated"""
|
10431
|
-
ATTRIBUTE_UPDATED
|
10432
|
-
|
10433
|
-
"""Category Created"""
|
10434
|
-
CATEGORY_CREATED
|
10435
|
-
|
10436
|
-
"""Category Updated"""
|
10437
|
-
CATEGORY_UPDATED
|
10438
|
-
|
10439
|
-
"""Product Created"""
|
10440
|
-
PRODUCT_CREATED
|
10441
|
-
|
10442
|
-
"""Product Updated"""
|
10443
|
-
PRODUCT_UPDATED
|
10444
|
-
|
10445
|
-
"""Product Updated or Created"""
|
10446
|
-
PRODUCT_UPDATED_OR_CREATED
|
10447
|
-
|
10448
|
-
"""Product Archived"""
|
10449
|
-
PRODUCT_ARCHIVED
|
10450
|
-
|
10451
|
-
"""Product Type Created"""
|
10452
|
-
PRODUCT_TYPE_CREATED
|
10453
|
-
|
10454
|
-
"""Product Type Updated"""
|
10455
|
-
PRODUCT_TYPE_UPDATED
|
10456
|
-
|
10457
|
-
"""Warehouse Created"""
|
10458
|
-
WAREHOUSE_CREATED
|
10459
|
-
|
10460
|
-
"""Warehouse Updated"""
|
10461
|
-
WAREHOUSE_UPDATED
|
10462
|
-
}
|
10463
|
-
|
10464
|
-
input CatalogImportProcessLogRecordFilterInput {
|
10465
|
-
taskId: String
|
10466
|
-
objectId: String
|
10467
|
-
operation: CatalogImportOperation
|
10468
|
-
}
|
10469
|
-
|
10470
|
-
"""An enumeration."""
|
10471
|
-
enum CatalogImportOperation {
|
10472
|
-
ATTRIBUTE_CREATED
|
10473
|
-
ATTRIBUTE_UPDATED
|
10474
|
-
CATEGORY_CREATED
|
10475
|
-
CATEGORY_UPDATED
|
10476
|
-
PRODUCT_CREATED
|
10477
|
-
PRODUCT_UPDATED
|
10478
|
-
PRODUCT_UPDATED_OR_CREATED
|
10479
|
-
PRODUCT_ARCHIVED
|
10480
|
-
PRODUCT_TYPE_CREATED
|
10481
|
-
PRODUCT_TYPE_UPDATED
|
10482
|
-
WAREHOUSE_CREATED
|
10483
|
-
WAREHOUSE_UPDATED
|
10484
|
-
}
|
10485
|
-
|
10486
|
-
input CatalogImportProcessLogRecordSortInput {
|
10487
|
-
"""Specifies the direction in which to sort products."""
|
10488
|
-
direction: OrderDirection!
|
10489
|
-
|
10490
|
-
"""Sort catalog_import_processes_log_record by the selected field."""
|
10491
|
-
field: CatalogImportProcessLogRecordSortField!
|
10492
|
-
}
|
10493
|
-
|
10494
|
-
enum CatalogImportProcessLogRecordSortField {
|
10495
|
-
"""Sort users by created at."""
|
10496
|
-
CREATED_AT
|
10497
|
-
}
|
10498
|
-
|
10499
|
-
type CatalogImportProcessCountableConnection {
|
10500
|
-
"""Pagination data for this connection."""
|
10501
|
-
pageInfo: PageInfo!
|
10502
|
-
edges: [CatalogImportProcessCountableEdge!]!
|
10503
|
-
|
10504
|
-
"""A total count of items in the collection."""
|
10505
|
-
totalCount: Int
|
10506
|
-
}
|
10507
|
-
|
10508
|
-
type CatalogImportProcessCountableEdge {
|
10509
|
-
"""The item at the end of the edge."""
|
10510
|
-
node: CatalogImportProcess!
|
10511
|
-
|
10512
|
-
"""A cursor for use in pagination."""
|
10513
|
-
cursor: String!
|
10514
|
-
}
|
10515
|
-
|
10516
|
-
input CatalogImportProcessFilterInput {
|
10517
|
-
createdBy: String
|
10518
|
-
seller: String
|
10519
|
-
}
|
10520
|
-
|
10521
|
-
input CatalogImportProcessSortInput {
|
10522
|
-
"""Specifies the direction in which to sort products."""
|
10523
|
-
direction: OrderDirection!
|
10524
|
-
|
10525
|
-
"""Sort catalog_import_processes by the selected field."""
|
10526
|
-
field: CatalogImportProcessSortField!
|
10527
|
-
}
|
10528
|
-
|
10529
|
-
enum CatalogImportProcessSortField {
|
10530
|
-
"""Sort users by created at."""
|
10531
|
-
CREATED_AT
|
10532
|
-
|
10533
|
-
"""Sort users by finished at."""
|
10534
|
-
FINISHED_AT
|
10535
|
-
}
|
10536
|
-
|
10537
10107
|
"""Avalara support tax exemption."""
|
10538
10108
|
type TaxExemptCode {
|
10539
10109
|
"""Tax exempt code."""
|
@@ -10549,6 +10119,13 @@ type TaxExemptCode {
|
|
10549
10119
|
validCountries: [String!]
|
10550
10120
|
}
|
10551
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
|
+
|
10552
10129
|
input StripeClientPaymentData {
|
10553
10130
|
amount: PositiveDecimal
|
10554
10131
|
currency: String
|
@@ -10989,40 +10566,6 @@ input PageFilterInput {
|
|
10989
10566
|
search: String
|
10990
10567
|
}
|
10991
10568
|
|
10992
|
-
type OrderEventCountableConnection {
|
10993
|
-
"""Pagination data for this connection."""
|
10994
|
-
pageInfo: PageInfo!
|
10995
|
-
edges: [OrderEventCountableEdge!]!
|
10996
|
-
|
10997
|
-
"""A total count of items in the collection."""
|
10998
|
-
totalCount: Int
|
10999
|
-
}
|
11000
|
-
|
11001
|
-
type OrderEventCountableEdge {
|
11002
|
-
"""The item at the end of the edge."""
|
11003
|
-
node: OrderEvent!
|
11004
|
-
|
11005
|
-
"""A cursor for use in pagination."""
|
11006
|
-
cursor: String!
|
11007
|
-
}
|
11008
|
-
|
11009
|
-
type NauticalOrderEventCountableConnection {
|
11010
|
-
"""Pagination data for this connection."""
|
11011
|
-
pageInfo: PageInfo!
|
11012
|
-
edges: [NauticalOrderEventCountableEdge!]!
|
11013
|
-
|
11014
|
-
"""A total count of items in the collection."""
|
11015
|
-
totalCount: Int
|
11016
|
-
}
|
11017
|
-
|
11018
|
-
type NauticalOrderEventCountableEdge {
|
11019
|
-
"""The item at the end of the edge."""
|
11020
|
-
node: NauticalOrderEvent!
|
11021
|
-
|
11022
|
-
"""A cursor for use in pagination."""
|
11023
|
-
cursor: String!
|
11024
|
-
}
|
11025
|
-
|
11026
10569
|
input OrderFilterInput {
|
11027
10570
|
paymentStatus: [PaymentChargeStatusEnum!]
|
11028
10571
|
status: [OrderStatusFilter!]
|
@@ -11106,6 +10649,11 @@ input OrderQuoteFilterInput {
|
|
11106
10649
|
source: [OrderSourceFilter!]
|
11107
10650
|
}
|
11108
10651
|
|
10652
|
+
enum ReportingPeriod {
|
10653
|
+
TODAY
|
10654
|
+
THIS_MONTH
|
10655
|
+
}
|
10656
|
+
|
11109
10657
|
type FulfillmentCountableConnection {
|
11110
10658
|
"""Pagination data for this connection."""
|
11111
10659
|
pageInfo: PageInfo!
|
@@ -11174,17 +10722,6 @@ enum ReturnFulfillmentSortField {
|
|
11174
10722
|
RETURN_STATUS
|
11175
10723
|
}
|
11176
10724
|
|
11177
|
-
type OptimizedHome {
|
11178
|
-
sales: TaxedMoney
|
11179
|
-
orders: Int
|
11180
|
-
toFulfill: Int
|
11181
|
-
toCapture: Int
|
11182
|
-
outOfStock: Int
|
11183
|
-
topProducts: [ProductVariant!]!
|
11184
|
-
sellerActivities: [OrderEvent!]!
|
11185
|
-
marketplaceActivities: [NauticalOrderEvent!]!
|
11186
|
-
}
|
11187
|
-
|
11188
10725
|
"""Represents a nautical configuration resource."""
|
11189
10726
|
type NauticalConfiguration {
|
11190
10727
|
"""Primary key name of the configuration item"""
|
@@ -12387,7 +11924,6 @@ type AppCountableEdge {
|
|
12387
11924
|
input AppFilterInput {
|
12388
11925
|
search: String
|
12389
11926
|
isActive: Boolean
|
12390
|
-
type: AppTypeEnum
|
12391
11927
|
}
|
12392
11928
|
|
12393
11929
|
input AppSortingInput {
|
@@ -12406,6 +11942,23 @@ enum AppSortField {
|
|
12406
11942
|
CREATION_DATE
|
12407
11943
|
}
|
12408
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
|
+
|
12409
11962
|
input AgreementOrder {
|
12410
11963
|
"""Specifies the direction in which to sort products."""
|
12411
11964
|
direction: OrderDirection!
|
@@ -12435,31 +11988,6 @@ input AgreementFilterInput {
|
|
12435
11988
|
search: String
|
12436
11989
|
}
|
12437
11990
|
|
12438
|
-
type AddressValidationData {
|
12439
|
-
countryCode: String
|
12440
|
-
countryName: String
|
12441
|
-
addressFormat: String
|
12442
|
-
addressLatinFormat: String
|
12443
|
-
allowedFields: [String!]
|
12444
|
-
requiredFields: [String!]
|
12445
|
-
upperFields: [String!]
|
12446
|
-
countryAreaType: String
|
12447
|
-
countryAreaChoices: [ChoiceValue!]
|
12448
|
-
cityType: String
|
12449
|
-
cityChoices: [ChoiceValue!]
|
12450
|
-
cityAreaType: String
|
12451
|
-
cityAreaChoices: [ChoiceValue!]
|
12452
|
-
postalCodeType: String
|
12453
|
-
postalCodeMatchers: [String!]
|
12454
|
-
postalCodeExamples: [String!]
|
12455
|
-
postalCodePrefix: String
|
12456
|
-
}
|
12457
|
-
|
12458
|
-
type ChoiceValue {
|
12459
|
-
raw: String
|
12460
|
-
verbose: String
|
12461
|
-
}
|
12462
|
-
|
12463
11991
|
input CustomerFilterInput {
|
12464
11992
|
dateJoined: DateRangeInput
|
12465
11993
|
isActive: Boolean
|
@@ -12516,7 +12044,7 @@ enum StaffMemberStatus {
|
|
12516
12044
|
DEACTIVATED
|
12517
12045
|
}
|
12518
12046
|
|
12519
|
-
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
|
12520
12048
|
|
12521
12049
|
scalar _Any
|
12522
12050
|
|
@@ -12556,7 +12084,7 @@ type Mutation {
|
|
12556
12084
|
description: String
|
12557
12085
|
|
12558
12086
|
"""
|
12559
|
-
Used when uploading a new document or file in a multipart request that does not exist in the system already. Supported file types: application/
|
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/dwg, application/x-rar, image/heif-sequence, application/vnd.openxmlformats-officedocument.wordprocessingml.document, application/msword, image/svg, application/rtf, application/gzip, application/svg+xml, application/zip, image/x-tif, image/dxf, application/x-dwg, application/excel, application/vnd.openxmlformats-officedocument.spreadsheetml.sheet, application/vnd.ms-excel, application/x-csv, image/x-tiff, application/vnd.oasis.opendocument.text, application/vnd.oasis.opendocument.spreadsheet, image/x-dwg, image/tiff, drawing/x-dwg, application/x-rtf, application/x-gzip, text/svg-xml, image/vnd.dwg, application/vnd.openxmlformats-officedocument.presentationml.presentation, application/x-eps, text/x-csv, image/heic-sequence, application/vnd.pdf, image/heic, application/x-pdf, application/vnd.ms-powerpoint, application/x-tar, application/x-jpg, application/csv, text/x-pdf, text/rtf, application/dxf, pplication/vnd.rar, application/x-dxf, text/svg, image/x-bmp, image/heif, image/x-eps, image/gif, application/acrobat, image/png, image/svg+xml, image/jpeg, application/postscript, application/tif, image/jpg, application/x-autocad, image/tif, text/x-comma-separated-values, application/gzip-compressed, application/pdf, image/bmp, application/gzipped, application/x-acad, image/eps, application/x-rar-compressed, application/vnd.openxmlformats-officedocument.presentationml.slideshow, application/jpg, application/vnd.ms-word, text/plain, application/acad, image/x-dxf, application/x-tiff, application/vnd.oasis.opendocument.presentation, application/tiff, text/comma-separated-values, image/webp, application/x-zip-compressed, application/eps, application/x-tif, text/csv, text/pdf, image/x-ms-bmp, drawing/x-dwf, drawing/dwg.
|
12560
12088
|
"""
|
12561
12089
|
file: Upload!
|
12562
12090
|
|
@@ -12652,15 +12180,6 @@ type Mutation {
|
|
12652
12180
|
input: PayoutStatusInput
|
12653
12181
|
): PayoutStatusUpdate
|
12654
12182
|
|
12655
|
-
"""Modifies the dates of a payout"""
|
12656
|
-
payoutDatesUpdate(
|
12657
|
-
"""ID of the payout to update."""
|
12658
|
-
id: ID!
|
12659
|
-
|
12660
|
-
"""Fields required to update a payout date range."""
|
12661
|
-
input: PayoutDatesInput!
|
12662
|
-
): PayoutDatesUpdate @deprecated(reason: "This will be removed on April 29, 2025.")
|
12663
|
-
|
12664
12183
|
"""Process a payout asynchronously."""
|
12665
12184
|
payoutProcess(input: PayoutProcessInput!): PayoutProcess
|
12666
12185
|
|
@@ -14276,15 +13795,6 @@ type Mutation {
|
|
14276
13795
|
input: NoteInput!
|
14277
13796
|
): NauticalOrderLineAddNote
|
14278
13797
|
|
14279
|
-
"""Adds return notification note to the order."""
|
14280
|
-
orderReturnNotification(
|
14281
|
-
"""ID of the order to add a note for."""
|
14282
|
-
order: ID!
|
14283
|
-
|
14284
|
-
"""Fields required to create a return notification for the order."""
|
14285
|
-
input: OrderReturnNotificationInput!
|
14286
|
-
): OrderReturnNotification @deprecated(reason: "This will be removed on April 29, 2025.")
|
14287
|
-
|
14288
13798
|
"""
|
14289
13799
|
Attempts to force a refresh of the existing taxes on a non-placed nautical order.
|
14290
13800
|
"""
|
@@ -14308,24 +13818,6 @@ type Mutation {
|
|
14308
13818
|
id: ID
|
14309
13819
|
): NauticalOrderUpdateDeleteDiscount
|
14310
13820
|
|
14311
|
-
"""Adds return notification note to the order."""
|
14312
|
-
nauticalOrderReturnNotification(
|
14313
|
-
"""ID of the order to add a note for."""
|
14314
|
-
order: ID!
|
14315
|
-
|
14316
|
-
"""Fields required to create a return notification for the order."""
|
14317
|
-
input: OrderReturnNotificationInput!
|
14318
|
-
): NauticalOrderReturnNotification @deprecated(reason: "This will be removed on April 29, 2025.")
|
14319
|
-
|
14320
|
-
"""Adds return notification note to the order."""
|
14321
|
-
nauticalOrderReturnFromStorefrontNotification(
|
14322
|
-
"""ID of the order to add a note for."""
|
14323
|
-
order: ID!
|
14324
|
-
|
14325
|
-
"""Fields required to create a return notification for the order."""
|
14326
|
-
input: OrderReturnNotificationInput!
|
14327
|
-
): NauticalOrderReturnFromStorefrontNotification @deprecated(reason: "This will be removed on April 29, 2025.")
|
14328
|
-
|
14329
13821
|
"""Cancel an order."""
|
14330
13822
|
orderCancel(
|
14331
13823
|
"""ID of the order to cancel."""
|
@@ -14777,15 +14269,6 @@ type Mutation {
|
|
14777
14269
|
input: PluginUpdateInput!
|
14778
14270
|
): PluginUpdate
|
14779
14271
|
|
14780
|
-
"""Import foreign catalog."""
|
14781
|
-
catalogImport(
|
14782
|
-
"""Plugin ID"""
|
14783
|
-
id: ID
|
14784
|
-
|
14785
|
-
"""Seller ID"""
|
14786
|
-
sellerId: ID
|
14787
|
-
): CatalogImport @deprecated(reason: "This will be removed on April 29, 2025")
|
14788
|
-
|
14789
14272
|
"""Export catalog."""
|
14790
14273
|
catalogExport(
|
14791
14274
|
"""Plugin ID"""
|
@@ -14795,15 +14278,6 @@ type Mutation {
|
|
14795
14278
|
sellerId: ID
|
14796
14279
|
): CatalogExport
|
14797
14280
|
|
14798
|
-
"""Export customer list."""
|
14799
|
-
customersExport(
|
14800
|
-
"""Plugin ID"""
|
14801
|
-
id: ID
|
14802
|
-
|
14803
|
-
"""Seller ID"""
|
14804
|
-
sellerId: ID
|
14805
|
-
): CustomersExport @deprecated(reason: "This will be removed on April 29, 2025")
|
14806
|
-
|
14807
14281
|
"""
|
14808
14282
|
Retrieves an onboarding link for the given vendor from the given gateway if available.
|
14809
14283
|
"""
|
@@ -14947,12 +14421,6 @@ type Mutation {
|
|
14947
14421
|
input: ExportProductsInput!
|
14948
14422
|
): ProductsExport
|
14949
14423
|
|
14950
|
-
"""Import products with csv file."""
|
14951
|
-
productsImport(
|
14952
|
-
"""Represents a file in a multipart request."""
|
14953
|
-
file: Upload!
|
14954
|
-
): ProductsImport @deprecated(reason: "This will be removed on April 29, 2025.")
|
14955
|
-
|
14956
14424
|
"""Adds a gift card or a voucher to a checkout."""
|
14957
14425
|
checkoutAddPromoCode(
|
14958
14426
|
"""Checkout ID."""
|
@@ -15407,7 +14875,7 @@ type Mutation {
|
|
15407
14875
|
|
15408
14876
|
"""Password of a user."""
|
15409
14877
|
password: String!
|
15410
|
-
):
|
14878
|
+
): TokenCreate
|
15411
14879
|
|
15412
14880
|
"""Create authorization URL."""
|
15413
14881
|
authUrlGenerate(
|
@@ -15436,16 +14904,16 @@ type Mutation {
|
|
15436
14904
|
|
15437
14905
|
"""Refresh token."""
|
15438
14906
|
refreshToken: String
|
15439
|
-
):
|
14907
|
+
): TokenRefresh
|
15440
14908
|
|
15441
14909
|
"""Verify JWT token."""
|
15442
14910
|
tokenVerify(
|
15443
14911
|
"""JWT token to validate."""
|
15444
14912
|
token: String!
|
15445
|
-
):
|
14913
|
+
): TokenVerify
|
15446
14914
|
|
15447
14915
|
"""Deactivate all JWT tokens of the currently authenticated user."""
|
15448
|
-
tokensDeactivateAll:
|
14916
|
+
tokensDeactivateAll: TokensDeactivateAll
|
15449
14917
|
|
15450
14918
|
"""Sends an email with the account password modification link."""
|
15451
14919
|
passwordRequestReset(
|
@@ -16125,19 +15593,6 @@ input VendorPayoutDetails {
|
|
16125
15593
|
payout: String
|
16126
15594
|
}
|
16127
15595
|
|
16128
|
-
"""Modifies the dates of a payout"""
|
16129
|
-
type PayoutDatesUpdate {
|
16130
|
-
payoutErrors: [PayoutError!]!
|
16131
|
-
payout: Payout
|
16132
|
-
}
|
16133
|
-
|
16134
|
-
input PayoutDatesInput {
|
16135
|
-
"""
|
16136
|
-
Payout end date. ISO 8601 standard. Can not be greater than current date.
|
16137
|
-
"""
|
16138
|
-
endDate: Date!
|
16139
|
-
}
|
16140
|
-
|
16141
15596
|
"""Process a payout asynchronously."""
|
16142
15597
|
type PayoutProcess {
|
16143
15598
|
payout: Payout
|
@@ -19151,9 +18606,6 @@ input ProductVariantCreateInput {
|
|
19151
18606
|
"""Name for the variant."""
|
19152
18607
|
name: String
|
19153
18608
|
|
19154
|
-
"""True if variant requires quote pricing."""
|
19155
|
-
requiresQuote: Boolean @deprecated(reason: "This field will be removed on April 25th, 2025.")
|
19156
|
-
|
19157
18609
|
"""
|
19158
18610
|
Informs whether a collection is published. All variants are published by default
|
19159
18611
|
"""
|
@@ -19286,9 +18738,6 @@ input ProductVariantBulkCreateInput {
|
|
19286
18738
|
"""Name for the variant."""
|
19287
18739
|
name: String
|
19288
18740
|
|
19289
|
-
"""True if variant requires quote pricing."""
|
19290
|
-
requiresQuote: Boolean @deprecated(reason: "This field will be removed on April 25th, 2025.")
|
19291
|
-
|
19292
18741
|
"""
|
19293
18742
|
Informs whether a collection is published. All variants are published by default
|
19294
18743
|
"""
|
@@ -19456,9 +18905,6 @@ input ProductVariantInput {
|
|
19456
18905
|
"""Name for the variant."""
|
19457
18906
|
name: String
|
19458
18907
|
|
19459
|
-
"""True if variant requires quote pricing."""
|
19460
|
-
requiresQuote: Boolean @deprecated(reason: "This field will be removed on April 25th, 2025.")
|
19461
|
-
|
19462
18908
|
"""
|
19463
18909
|
Informs whether a collection is published. All variants are published by default
|
19464
18910
|
"""
|
@@ -20212,24 +19658,6 @@ type NauticalOrderLineAddNote {
|
|
20212
19658
|
nauticalOrderLine: NauticalOrderLine
|
20213
19659
|
}
|
20214
19660
|
|
20215
|
-
"""Adds return notification note to the order."""
|
20216
|
-
type OrderReturnNotification {
|
20217
|
-
"""Order with return notification note added."""
|
20218
|
-
order: Order
|
20219
|
-
|
20220
|
-
"""Order return notification created."""
|
20221
|
-
event: OrderEvent
|
20222
|
-
orderErrors: [OrderError!]!
|
20223
|
-
}
|
20224
|
-
|
20225
|
-
input OrderReturnNotificationInput {
|
20226
|
-
"""Status of the return."""
|
20227
|
-
returnStatus: String!
|
20228
|
-
|
20229
|
-
"""Status of the return."""
|
20230
|
-
productNames: String
|
20231
|
-
}
|
20232
|
-
|
20233
19661
|
"""
|
20234
19662
|
Attempts to force a refresh of the existing taxes on a non-placed nautical order.
|
20235
19663
|
"""
|
@@ -20253,26 +19681,6 @@ type NauticalOrderUpdateDeleteDiscount {
|
|
20253
19681
|
orderErrors: [OrderError!]!
|
20254
19682
|
}
|
20255
19683
|
|
20256
|
-
"""Adds return notification note to the order."""
|
20257
|
-
type NauticalOrderReturnNotification {
|
20258
|
-
"""Order with return notification note added."""
|
20259
|
-
order: NauticalOrder
|
20260
|
-
|
20261
|
-
"""Order return notification created."""
|
20262
|
-
event: NauticalOrderEvent
|
20263
|
-
orderErrors: [OrderError!]!
|
20264
|
-
}
|
20265
|
-
|
20266
|
-
"""Adds return notification note to the order."""
|
20267
|
-
type NauticalOrderReturnFromStorefrontNotification {
|
20268
|
-
"""Order with return notification note added."""
|
20269
|
-
order: NauticalOrder
|
20270
|
-
|
20271
|
-
"""Order return notification created."""
|
20272
|
-
event: NauticalOrderEvent
|
20273
|
-
orderErrors: [OrderError!]!
|
20274
|
-
}
|
20275
|
-
|
20276
19684
|
"""Cancel an order."""
|
20277
19685
|
type OrderCancel {
|
20278
19686
|
"""Canceled order."""
|
@@ -21225,15 +20633,6 @@ input ConfigurationItemInput {
|
|
21225
20633
|
value: GenericScalar
|
21226
20634
|
}
|
21227
20635
|
|
21228
|
-
"""Import foreign catalog."""
|
21229
|
-
type CatalogImport {
|
21230
|
-
ok: Boolean
|
21231
|
-
|
21232
|
-
"""Plugin ID"""
|
21233
|
-
plugin: ID
|
21234
|
-
pluginsErrors: [PluginError!]!
|
21235
|
-
}
|
21236
|
-
|
21237
20636
|
"""Export catalog."""
|
21238
20637
|
type CatalogExport {
|
21239
20638
|
ok: Boolean
|
@@ -21243,15 +20642,6 @@ type CatalogExport {
|
|
21243
20642
|
pluginsErrors: [PluginError!]!
|
21244
20643
|
}
|
21245
20644
|
|
21246
|
-
"""Export customer list."""
|
21247
|
-
type CustomersExport {
|
21248
|
-
ok: Boolean
|
21249
|
-
|
21250
|
-
"""Plugin ID"""
|
21251
|
-
plugin: ID
|
21252
|
-
pluginsErrors: [PluginError!]!
|
21253
|
-
}
|
21254
|
-
|
21255
20645
|
"""
|
21256
20646
|
Retrieves an onboarding link for the given vendor from the given gateway if available.
|
21257
20647
|
"""
|
@@ -21633,33 +21023,6 @@ enum FileTypesEnum {
|
|
21633
21023
|
XLSX
|
21634
21024
|
}
|
21635
21025
|
|
21636
|
-
"""Import products with csv file."""
|
21637
|
-
type ProductsImport {
|
21638
|
-
"""The newly created import file which is responsible for import data."""
|
21639
|
-
importFile: ImportFile
|
21640
|
-
importErrors: [ImportError!]!
|
21641
|
-
}
|
21642
|
-
|
21643
|
-
type ImportError {
|
21644
|
-
"""
|
21645
|
-
Name of a field that caused the error. A value of `null` indicates that the error isn't associated with a particular field.
|
21646
|
-
"""
|
21647
|
-
field: String
|
21648
|
-
|
21649
|
-
"""The error message."""
|
21650
|
-
message: String!
|
21651
|
-
|
21652
|
-
"""The error code."""
|
21653
|
-
code: ImportErrorCode!
|
21654
|
-
}
|
21655
|
-
|
21656
|
-
"""An enumeration."""
|
21657
|
-
enum ImportErrorCode {
|
21658
|
-
INVALID
|
21659
|
-
NOT_FOUND
|
21660
|
-
REQUIRED
|
21661
|
-
}
|
21662
|
-
|
21663
21026
|
"""Adds a gift card or a voucher to a checkout."""
|
21664
21027
|
type CheckoutAddPromoCode {
|
21665
21028
|
"""The checkout with the added gift card or voucher."""
|
@@ -22381,7 +21744,7 @@ enum OauthProviderSourceEnum {
|
|
22381
21744
|
}
|
22382
21745
|
|
22383
21746
|
"""Create JWT token."""
|
22384
|
-
type
|
21747
|
+
type TokenCreate {
|
22385
21748
|
"""JWT token, required to authenticate."""
|
22386
21749
|
token: String
|
22387
21750
|
|
@@ -22482,7 +21845,7 @@ type TokenCreateSSO {
|
|
22482
21845
|
"""
|
22483
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.
|
22484
21847
|
"""
|
22485
|
-
type
|
21848
|
+
type TokenRefresh {
|
22486
21849
|
"""JWT token, required to authenticate."""
|
22487
21850
|
token: String
|
22488
21851
|
|
@@ -22492,20 +21855,17 @@ type RefreshToken {
|
|
22492
21855
|
}
|
22493
21856
|
|
22494
21857
|
"""Verify JWT token."""
|
22495
|
-
type
|
21858
|
+
type TokenVerify {
|
22496
21859
|
"""User assigned to token."""
|
22497
21860
|
user: User
|
22498
21861
|
|
22499
21862
|
"""Determine if token is valid or not."""
|
22500
21863
|
isValid: Boolean!
|
22501
|
-
|
22502
|
-
"""JWT payload."""
|
22503
|
-
payload: GenericScalar @deprecated(reason: "This will be removed on April 29, 2025")
|
22504
21864
|
accountErrors: [AccountError!]!
|
22505
21865
|
}
|
22506
21866
|
|
22507
21867
|
"""Deactivate all JWT tokens of the currently authenticated user."""
|
22508
|
-
type
|
21868
|
+
type TokensDeactivateAll {
|
22509
21869
|
accountErrors: [AccountError!]!
|
22510
21870
|
}
|
22511
21871
|
|