@nautical-commerce/graphql-schema 1.80.0-4-g4cf8f12ff → 1.80.0-40-g16a826736
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 +54 -704
- 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."""
|
@@ -2327,7 +2160,6 @@ type User implements Node & ObjectWithMetadata {
|
|
2327
2160
|
email: String!
|
2328
2161
|
firstName: String!
|
2329
2162
|
lastName: String!
|
2330
|
-
isStaff: Boolean!
|
2331
2163
|
isActive: Boolean!
|
2332
2164
|
|
2333
2165
|
"""A note about the customer."""
|
@@ -2480,7 +2312,12 @@ type User implements Node & ObjectWithMetadata {
|
|
2480
2312
|
last: Int
|
2481
2313
|
): WishlistCountableConnection
|
2482
2314
|
seller: Seller
|
2483
|
-
|
2315
|
+
|
2316
|
+
"""If true, the user can be assigned as the owner of a seller"""
|
2317
|
+
isAssignable: Boolean!
|
2318
|
+
|
2319
|
+
"""If true, the user is an MPO or a seller staff member"""
|
2320
|
+
isStaff: Boolean!
|
2484
2321
|
|
2485
2322
|
"""List of documents associated with the user."""
|
2486
2323
|
documents: [Document!]!
|
@@ -2927,7 +2764,6 @@ type ProductVariant implements Node & ObjectWithMetadata {
|
|
2927
2764
|
|
2928
2765
|
"""List of vouchers associated with the product."""
|
2929
2766
|
vouchers: [Voucher!]!
|
2930
|
-
requiresQuote: Boolean @deprecated(reason: "This field will be removed on April 25th, 2025.")
|
2931
2767
|
|
2932
2768
|
"""
|
2933
2769
|
The sub status of the product variant. This will be the same as product's sub status.
|
@@ -5382,9 +5218,6 @@ type App implements Node & ObjectWithMetadata {
|
|
5382
5218
|
"""List of public metadata items. Can be accessed without permissions."""
|
5383
5219
|
metadata: [MetadataItem!]!
|
5384
5220
|
|
5385
|
-
"""Type of the app."""
|
5386
|
-
type: AppTypeEnum @deprecated(reason: "This will be removed on April 30, 2025.")
|
5387
|
-
|
5388
5221
|
"""List of dashboard integrations for this app"""
|
5389
5222
|
dashboardIntegrations: [AppDashboardIntegration!]
|
5390
5223
|
|
@@ -5394,27 +5227,6 @@ type App implements Node & ObjectWithMetadata {
|
|
5394
5227
|
"""List of webhooks assigned to this app."""
|
5395
5228
|
webhooks: [Webhook!]
|
5396
5229
|
|
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
5230
|
"""Version number of the app."""
|
5419
5231
|
version: String
|
5420
5232
|
|
@@ -5434,7 +5246,6 @@ type Permission {
|
|
5434
5246
|
enum PermissionEnum {
|
5435
5247
|
MANAGE_USERS
|
5436
5248
|
MANAGE_STAFF
|
5437
|
-
MANAGE_PERMISSIONS @deprecated(reason: "This will be removed on April 23, 2025.")
|
5438
5249
|
MANAGE_APPS
|
5439
5250
|
MANAGE_DISCOUNTS
|
5440
5251
|
MANAGE_DOCUMENTS
|
@@ -5451,12 +5262,10 @@ enum PermissionEnum {
|
|
5451
5262
|
MANAGE_PRODUCT_TYPES_AND_ATTRIBUTES
|
5452
5263
|
MANAGE_SHIPPING
|
5453
5264
|
MANAGE_SETTINGS
|
5454
|
-
MANAGE_TRANSLATIONS
|
5455
5265
|
MANAGE_CHECKOUTS
|
5456
5266
|
MANAGE_AGREEMENTS
|
5457
5267
|
MANAGE_MARKETPLACE
|
5458
5268
|
MANAGE_MARKETPLACE_CONFIGURATION
|
5459
|
-
MANAGE_MICROSITES
|
5460
5269
|
MANAGE_PAYOUTS
|
5461
5270
|
MANAGE_PAYMENTS
|
5462
5271
|
MANAGE_REFUNDS
|
@@ -5475,14 +5284,6 @@ type AppToken implements Node {
|
|
5475
5284
|
id: ID!
|
5476
5285
|
}
|
5477
5286
|
|
5478
|
-
enum AppTypeEnum {
|
5479
|
-
"""local"""
|
5480
|
-
LOCAL
|
5481
|
-
|
5482
|
-
"""thirdparty"""
|
5483
|
-
THIRDPARTY
|
5484
|
-
}
|
5485
|
-
|
5486
5287
|
"""Represents a dashboard integration for an App."""
|
5487
5288
|
type AppDashboardIntegration implements Node {
|
5488
5289
|
"""The ID of the object"""
|
@@ -9477,40 +9278,6 @@ enum SellerSortField {
|
|
9477
9278
|
CREATED
|
9478
9279
|
}
|
9479
9280
|
|
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
9281
|
type RefundCountableConnection {
|
9515
9282
|
"""Pagination data for this connection."""
|
9516
9283
|
pageInfo: PageInfo!
|
@@ -9800,11 +9567,6 @@ enum ProductTypeSortField {
|
|
9800
9567
|
EXTERNAL_SOURCE
|
9801
9568
|
}
|
9802
9569
|
|
9803
|
-
enum ReportingPeriod {
|
9804
|
-
TODAY
|
9805
|
-
THIS_MONTH
|
9806
|
-
}
|
9807
|
-
|
9808
9570
|
type PriceBookCountableConnection {
|
9809
9571
|
"""Pagination data for this connection."""
|
9810
9572
|
pageInfo: PageInfo!
|
@@ -10217,6 +9979,23 @@ enum PriceBookProductTypeHistorySortField {
|
|
10217
9979
|
CREATION_DATE
|
10218
9980
|
}
|
10219
9981
|
|
9982
|
+
type UserCountableConnection {
|
9983
|
+
"""Pagination data for this connection."""
|
9984
|
+
pageInfo: PageInfo!
|
9985
|
+
edges: [UserCountableEdge!]!
|
9986
|
+
|
9987
|
+
"""A total count of items in the collection."""
|
9988
|
+
totalCount: Int
|
9989
|
+
}
|
9990
|
+
|
9991
|
+
type UserCountableEdge {
|
9992
|
+
"""The item at the end of the edge."""
|
9993
|
+
node: User!
|
9994
|
+
|
9995
|
+
"""A cursor for use in pagination."""
|
9996
|
+
cursor: String!
|
9997
|
+
}
|
9998
|
+
|
10220
9999
|
input UserSortingInput {
|
10221
10000
|
"""Specifies the direction in which to sort products."""
|
10222
10001
|
direction: OrderDirection!
|
@@ -10315,225 +10094,6 @@ type TaxCertificate {
|
|
10315
10094
|
exposureZoneName: String
|
10316
10095
|
}
|
10317
10096
|
|
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
10097
|
"""Avalara support tax exemption."""
|
10538
10098
|
type TaxExemptCode {
|
10539
10099
|
"""Tax exempt code."""
|
@@ -10549,6 +10109,13 @@ type TaxExemptCode {
|
|
10549
10109
|
validCountries: [String!]
|
10550
10110
|
}
|
10551
10111
|
|
10112
|
+
"""
|
10113
|
+
The `GenericScalar` scalar type represents a generic
|
10114
|
+
GraphQL scalar value that could be:
|
10115
|
+
String, Boolean, Int, Float, List or Object.
|
10116
|
+
"""
|
10117
|
+
scalar GenericScalar
|
10118
|
+
|
10552
10119
|
input StripeClientPaymentData {
|
10553
10120
|
amount: PositiveDecimal
|
10554
10121
|
currency: String
|
@@ -10989,40 +10556,6 @@ input PageFilterInput {
|
|
10989
10556
|
search: String
|
10990
10557
|
}
|
10991
10558
|
|
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
10559
|
input OrderFilterInput {
|
11027
10560
|
paymentStatus: [PaymentChargeStatusEnum!]
|
11028
10561
|
status: [OrderStatusFilter!]
|
@@ -11106,6 +10639,11 @@ input OrderQuoteFilterInput {
|
|
11106
10639
|
source: [OrderSourceFilter!]
|
11107
10640
|
}
|
11108
10641
|
|
10642
|
+
enum ReportingPeriod {
|
10643
|
+
TODAY
|
10644
|
+
THIS_MONTH
|
10645
|
+
}
|
10646
|
+
|
11109
10647
|
type FulfillmentCountableConnection {
|
11110
10648
|
"""Pagination data for this connection."""
|
11111
10649
|
pageInfo: PageInfo!
|
@@ -11174,17 +10712,6 @@ enum ReturnFulfillmentSortField {
|
|
11174
10712
|
RETURN_STATUS
|
11175
10713
|
}
|
11176
10714
|
|
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
10715
|
"""Represents a nautical configuration resource."""
|
11189
10716
|
type NauticalConfiguration {
|
11190
10717
|
"""Primary key name of the configuration item"""
|
@@ -12387,7 +11914,6 @@ type AppCountableEdge {
|
|
12387
11914
|
input AppFilterInput {
|
12388
11915
|
search: String
|
12389
11916
|
isActive: Boolean
|
12390
|
-
type: AppTypeEnum
|
12391
11917
|
}
|
12392
11918
|
|
12393
11919
|
input AppSortingInput {
|
@@ -12406,6 +11932,23 @@ enum AppSortField {
|
|
12406
11932
|
CREATION_DATE
|
12407
11933
|
}
|
12408
11934
|
|
11935
|
+
type AgreementCountableConnection {
|
11936
|
+
"""Pagination data for this connection."""
|
11937
|
+
pageInfo: PageInfo!
|
11938
|
+
edges: [AgreementCountableEdge!]!
|
11939
|
+
|
11940
|
+
"""A total count of items in the collection."""
|
11941
|
+
totalCount: Int
|
11942
|
+
}
|
11943
|
+
|
11944
|
+
type AgreementCountableEdge {
|
11945
|
+
"""The item at the end of the edge."""
|
11946
|
+
node: Agreement!
|
11947
|
+
|
11948
|
+
"""A cursor for use in pagination."""
|
11949
|
+
cursor: String!
|
11950
|
+
}
|
11951
|
+
|
12409
11952
|
input AgreementOrder {
|
12410
11953
|
"""Specifies the direction in which to sort products."""
|
12411
11954
|
direction: OrderDirection!
|
@@ -12435,31 +11978,6 @@ input AgreementFilterInput {
|
|
12435
11978
|
search: String
|
12436
11979
|
}
|
12437
11980
|
|
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
11981
|
input CustomerFilterInput {
|
12464
11982
|
dateJoined: DateRangeInput
|
12465
11983
|
isActive: Boolean
|
@@ -12516,7 +12034,7 @@ enum StaffMemberStatus {
|
|
12516
12034
|
DEACTIVATED
|
12517
12035
|
}
|
12518
12036
|
|
12519
|
-
union _Entity = WishlistItem | Wishlist | User | Address | ProductVariant | Product | Category | ProductType | App | Collection | ProductImage | ProductStatusLog | Group
|
12037
|
+
union _Entity = WishlistItem | Wishlist | User | Address | ProductVariant | Product | Category | ProductType | App | Collection | ProductImage | ProductStatusLog | Group
|
12520
12038
|
|
12521
12039
|
scalar _Any
|
12522
12040
|
|
@@ -12556,7 +12074,7 @@ type Mutation {
|
|
12556
12074
|
description: String
|
12557
12075
|
|
12558
12076
|
"""
|
12559
|
-
Used when uploading a new document or file in a multipart request that does not exist in the system already. Supported file types: image/
|
12077
|
+
Used when uploading a new document or file in a multipart request that does not exist in the system already. Supported file types: image/tiff, application/msword, image/svg+xml, drawing/x-dwg, text/x-comma-separated-values, image/jpeg, application/x-tif, application/vnd.oasis.opendocument.spreadsheet, application/x-gzip, text/csv, application/vnd.openxmlformats-officedocument.spreadsheetml.sheet, image/x-bmp, image/tif, image/heif, image/svg, application/x-dxf, application/gzip-compressed, image/x-tiff, text/pdf, image/x-dxf, application/csv, image/x-eps, image/dxf, application/x-pdf, application/vnd.oasis.opendocument.presentation, application/vnd.oasis.opendocument.text, image/x-dwg, application/postscript, image/x-tif, image/vnd.dwg, application/vnd.pdf, image/eps, application/gzipped, text/comma-separated-values, image/x-ms-bmp, application/x-tiff, application/vnd.ms-word, application/x-zip-compressed, application/svg+xml, application/excel, application/tiff, image/jpg, pplication/vnd.rar, text/plain, application/zip, image/bmp, application/x-dwg, image/gif, application/vnd.ms-powerpoint, application/pdf, application/x-eps, application/x-autocad, image/heic, text/x-pdf, application/x-rar-compressed, application/jpg, application/x-rar, application/acad, application/acrobat, application/dwg, application/tif, image/heic-sequence, application/vnd.openxmlformats-officedocument.wordprocessingml.document, drawing/x-dwf, text/svg, application/vnd.openxmlformats-officedocument.presentationml.slideshow, application/x-csv, image/png, drawing/dwg, application/x-acad, application/x-rtf, application/vnd.openxmlformats-officedocument.presentationml.presentation, application/gzip, application/x-tar, text/svg-xml, text/x-csv, application/dxf, text/rtf, application/x-jpg, application/eps, application/vnd.ms-excel, application/rtf, image/heif-sequence, image/webp.
|
12560
12078
|
"""
|
12561
12079
|
file: Upload!
|
12562
12080
|
|
@@ -12652,15 +12170,6 @@ type Mutation {
|
|
12652
12170
|
input: PayoutStatusInput
|
12653
12171
|
): PayoutStatusUpdate
|
12654
12172
|
|
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
12173
|
"""Process a payout asynchronously."""
|
12665
12174
|
payoutProcess(input: PayoutProcessInput!): PayoutProcess
|
12666
12175
|
|
@@ -14276,15 +13785,6 @@ type Mutation {
|
|
14276
13785
|
input: NoteInput!
|
14277
13786
|
): NauticalOrderLineAddNote
|
14278
13787
|
|
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
13788
|
"""
|
14289
13789
|
Attempts to force a refresh of the existing taxes on a non-placed nautical order.
|
14290
13790
|
"""
|
@@ -14308,24 +13808,6 @@ type Mutation {
|
|
14308
13808
|
id: ID
|
14309
13809
|
): NauticalOrderUpdateDeleteDiscount
|
14310
13810
|
|
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
13811
|
"""Cancel an order."""
|
14330
13812
|
orderCancel(
|
14331
13813
|
"""ID of the order to cancel."""
|
@@ -14777,15 +14259,6 @@ type Mutation {
|
|
14777
14259
|
input: PluginUpdateInput!
|
14778
14260
|
): PluginUpdate
|
14779
14261
|
|
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
14262
|
"""Export catalog."""
|
14790
14263
|
catalogExport(
|
14791
14264
|
"""Plugin ID"""
|
@@ -14795,15 +14268,6 @@ type Mutation {
|
|
14795
14268
|
sellerId: ID
|
14796
14269
|
): CatalogExport
|
14797
14270
|
|
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
14271
|
"""
|
14808
14272
|
Retrieves an onboarding link for the given vendor from the given gateway if available.
|
14809
14273
|
"""
|
@@ -14947,12 +14411,6 @@ type Mutation {
|
|
14947
14411
|
input: ExportProductsInput!
|
14948
14412
|
): ProductsExport
|
14949
14413
|
|
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
14414
|
"""Adds a gift card or a voucher to a checkout."""
|
14957
14415
|
checkoutAddPromoCode(
|
14958
14416
|
"""Checkout ID."""
|
@@ -16125,19 +15583,6 @@ input VendorPayoutDetails {
|
|
16125
15583
|
payout: String
|
16126
15584
|
}
|
16127
15585
|
|
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
15586
|
"""Process a payout asynchronously."""
|
16142
15587
|
type PayoutProcess {
|
16143
15588
|
payout: Payout
|
@@ -19151,9 +18596,6 @@ input ProductVariantCreateInput {
|
|
19151
18596
|
"""Name for the variant."""
|
19152
18597
|
name: String
|
19153
18598
|
|
19154
|
-
"""True if variant requires quote pricing."""
|
19155
|
-
requiresQuote: Boolean @deprecated(reason: "This field will be removed on April 25th, 2025.")
|
19156
|
-
|
19157
18599
|
"""
|
19158
18600
|
Informs whether a collection is published. All variants are published by default
|
19159
18601
|
"""
|
@@ -19286,9 +18728,6 @@ input ProductVariantBulkCreateInput {
|
|
19286
18728
|
"""Name for the variant."""
|
19287
18729
|
name: String
|
19288
18730
|
|
19289
|
-
"""True if variant requires quote pricing."""
|
19290
|
-
requiresQuote: Boolean @deprecated(reason: "This field will be removed on April 25th, 2025.")
|
19291
|
-
|
19292
18731
|
"""
|
19293
18732
|
Informs whether a collection is published. All variants are published by default
|
19294
18733
|
"""
|
@@ -19456,9 +18895,6 @@ input ProductVariantInput {
|
|
19456
18895
|
"""Name for the variant."""
|
19457
18896
|
name: String
|
19458
18897
|
|
19459
|
-
"""True if variant requires quote pricing."""
|
19460
|
-
requiresQuote: Boolean @deprecated(reason: "This field will be removed on April 25th, 2025.")
|
19461
|
-
|
19462
18898
|
"""
|
19463
18899
|
Informs whether a collection is published. All variants are published by default
|
19464
18900
|
"""
|
@@ -20212,24 +19648,6 @@ type NauticalOrderLineAddNote {
|
|
20212
19648
|
nauticalOrderLine: NauticalOrderLine
|
20213
19649
|
}
|
20214
19650
|
|
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
19651
|
"""
|
20234
19652
|
Attempts to force a refresh of the existing taxes on a non-placed nautical order.
|
20235
19653
|
"""
|
@@ -20253,26 +19671,6 @@ type NauticalOrderUpdateDeleteDiscount {
|
|
20253
19671
|
orderErrors: [OrderError!]!
|
20254
19672
|
}
|
20255
19673
|
|
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
19674
|
"""Cancel an order."""
|
20277
19675
|
type OrderCancel {
|
20278
19676
|
"""Canceled order."""
|
@@ -21225,15 +20623,6 @@ input ConfigurationItemInput {
|
|
21225
20623
|
value: GenericScalar
|
21226
20624
|
}
|
21227
20625
|
|
21228
|
-
"""Import foreign catalog."""
|
21229
|
-
type CatalogImport {
|
21230
|
-
ok: Boolean
|
21231
|
-
|
21232
|
-
"""Plugin ID"""
|
21233
|
-
plugin: ID
|
21234
|
-
pluginsErrors: [PluginError!]!
|
21235
|
-
}
|
21236
|
-
|
21237
20626
|
"""Export catalog."""
|
21238
20627
|
type CatalogExport {
|
21239
20628
|
ok: Boolean
|
@@ -21243,15 +20632,6 @@ type CatalogExport {
|
|
21243
20632
|
pluginsErrors: [PluginError!]!
|
21244
20633
|
}
|
21245
20634
|
|
21246
|
-
"""Export customer list."""
|
21247
|
-
type CustomersExport {
|
21248
|
-
ok: Boolean
|
21249
|
-
|
21250
|
-
"""Plugin ID"""
|
21251
|
-
plugin: ID
|
21252
|
-
pluginsErrors: [PluginError!]!
|
21253
|
-
}
|
21254
|
-
|
21255
20635
|
"""
|
21256
20636
|
Retrieves an onboarding link for the given vendor from the given gateway if available.
|
21257
20637
|
"""
|
@@ -21633,33 +21013,6 @@ enum FileTypesEnum {
|
|
21633
21013
|
XLSX
|
21634
21014
|
}
|
21635
21015
|
|
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
21016
|
"""Adds a gift card or a voucher to a checkout."""
|
21664
21017
|
type CheckoutAddPromoCode {
|
21665
21018
|
"""The checkout with the added gift card or voucher."""
|
@@ -22498,9 +21851,6 @@ type VerifyToken {
|
|
22498
21851
|
|
22499
21852
|
"""Determine if token is valid or not."""
|
22500
21853
|
isValid: Boolean!
|
22501
|
-
|
22502
|
-
"""JWT payload."""
|
22503
|
-
payload: GenericScalar @deprecated(reason: "This will be removed on April 29, 2025")
|
22504
21854
|
accountErrors: [AccountError!]!
|
22505
21855
|
}
|
22506
21856
|
|