@nautical-commerce/graphql-schema 1.89.0-1-g3b5b6c748 → 1.89.0-11-gced99b931
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 +464 -752
- package/package.json +1 -1
package/nautical/schema.graphql
CHANGED
@@ -1791,10 +1791,14 @@ enum EventTypeEnum {
|
|
1791
1791
|
order_payment_link
|
1792
1792
|
merchant_account_set_password
|
1793
1793
|
account_set_staff_password
|
1794
|
+
account_staff_reset_password
|
1795
|
+
merchant_account_set_staff_password
|
1796
|
+
merchant_account_staff_reset_password
|
1794
1797
|
csv_export_products_success
|
1795
1798
|
csv_export_failed
|
1799
|
+
merchant_csv_export_products_success
|
1800
|
+
merchant_csv_export_failed
|
1796
1801
|
staff_order_confirmation
|
1797
|
-
account_staff_reset_password
|
1798
1802
|
vendor_payout_confirmation
|
1799
1803
|
pending_seller
|
1800
1804
|
updated_status
|
@@ -2457,7 +2461,6 @@ type ProductVariant implements Node & ObjectWithMetadata {
|
|
2457
2461
|
|
2458
2462
|
"""Total quantity ordered."""
|
2459
2463
|
quantityOrdered: Int
|
2460
|
-
features: [VariantFeature!] @deprecated(reason: "Features will be removed on July 2, 2025.")
|
2461
2464
|
|
2462
2465
|
"""
|
2463
2466
|
List of product variant images. When 'strict_product_image_handling' is enabled:- Display only the images owned by the product variant owner.
|
@@ -2645,7 +2648,6 @@ type Product implements Node & ObjectWithMetadata {
|
|
2645
2648
|
|
2646
2649
|
"""Whether the product is published."""
|
2647
2650
|
isPublished: Boolean!
|
2648
|
-
features: [ProductFeature!] @deprecated(reason: "Features will be removed on July 2, 2025.")
|
2649
2651
|
|
2650
2652
|
"""
|
2651
2653
|
Product stock stats combining all variants in all warehouses. Requires MANAGE_PRODUCTS permission.
|
@@ -4608,7 +4610,6 @@ input ProductFilterInput {
|
|
4608
4610
|
sellers: [ID]
|
4609
4611
|
subStatus: ProductSubStatusEnum
|
4610
4612
|
slug: [String!]
|
4611
|
-
features: FeatureFilterInput
|
4612
4613
|
price: PriceRangeInput
|
4613
4614
|
minimalPrice: PriceRangeInput
|
4614
4615
|
createdAt: DateTimeRangeInput
|
@@ -4686,38 +4687,6 @@ enum ProductSubStatusEnum {
|
|
4686
4687
|
APPROVED
|
4687
4688
|
}
|
4688
4689
|
|
4689
|
-
"""
|
4690
|
-
When changed, please update related typing (search by FeatureFilterTypedDict)
|
4691
|
-
"""
|
4692
|
-
input FeatureFilterInput {
|
4693
|
-
connector: FeatureFilterConnector!
|
4694
|
-
operations: [FeatureFilterOperation!]
|
4695
|
-
}
|
4696
|
-
|
4697
|
-
enum FeatureFilterConnector {
|
4698
|
-
AND
|
4699
|
-
OR
|
4700
|
-
}
|
4701
|
-
|
4702
|
-
"""
|
4703
|
-
When changed, please update related typing (search by FeatureFilterOperationTypingDict)
|
4704
|
-
"""
|
4705
|
-
input FeatureFilterOperation {
|
4706
|
-
"""Key for which to search values for in features."""
|
4707
|
-
name: String!
|
4708
|
-
|
4709
|
-
"""
|
4710
|
-
String to search by any value for in metadata. Use null or empty list to return all results where features with `name` key exists
|
4711
|
-
"""
|
4712
|
-
values: [String!]
|
4713
|
-
condition: FeatureFilterOperationCondition!
|
4714
|
-
}
|
4715
|
-
|
4716
|
-
enum FeatureFilterOperationCondition {
|
4717
|
-
AND
|
4718
|
-
OR
|
4719
|
-
}
|
4720
|
-
|
4721
4690
|
input PriceRangeInput {
|
4722
4691
|
"""Price greater than or equal to."""
|
4723
4692
|
gte: Float
|
@@ -4997,12 +4966,6 @@ type ProductType implements Node & ObjectWithMetadata {
|
|
4997
4966
|
last: Int
|
4998
4967
|
): AttributeCountableConnection
|
4999
4968
|
|
5000
|
-
"""Product features of this product type."""
|
5001
|
-
productFeatures: [ProductTypeProductFeature!]! @deprecated(reason: "Features will be removed on July 2, 2025.")
|
5002
|
-
|
5003
|
-
"""Variant features of this product type."""
|
5004
|
-
variantFeatures: [ProductTypeVariantFeature!]! @deprecated(reason: "Features will be removed on July 2, 2025.")
|
5005
|
-
|
5006
4969
|
"""Brand of the product"""
|
5007
4970
|
model: String
|
5008
4971
|
|
@@ -5066,519 +5029,157 @@ input AttributeFilterInput {
|
|
5066
5029
|
showExternal: Boolean
|
5067
5030
|
}
|
5068
5031
|
|
5069
|
-
|
5070
|
-
Represents a single product feature as part of a product type feature template.
|
5071
|
-
"""
|
5072
|
-
type ProductTypeProductFeature implements Node {
|
5073
|
-
"""The ID of the object"""
|
5074
|
-
id: ID!
|
5075
|
-
sortOrder: Int
|
5076
|
-
tenant: Tenant!
|
5077
|
-
|
5078
|
-
"""The type that we expect to render the feature's values as."""
|
5079
|
-
featureType: FeatureTypeEnum!
|
5080
|
-
name: String!
|
5081
|
-
description: String!
|
5082
|
-
|
5083
|
-
"""Available options for this product feature"""
|
5084
|
-
options: [String!]
|
5085
|
-
productType: ProductType!
|
5086
|
-
productFeatures(offset: Int, before: String, after: String, first: Int, last: Int): ProductFeatureCountableConnection!
|
5087
|
-
}
|
5088
|
-
|
5089
|
-
enum FeatureTypeEnum {
|
5032
|
+
enum AttributeInputTypeEnum {
|
5090
5033
|
"""Dropdown"""
|
5091
5034
|
DROPDOWN
|
5092
5035
|
|
5093
5036
|
"""Multi Select"""
|
5094
5037
|
MULTISELECT
|
5095
5038
|
|
5096
|
-
"""
|
5097
|
-
|
5098
|
-
}
|
5039
|
+
"""Date"""
|
5040
|
+
DATE
|
5099
5041
|
|
5100
|
-
|
5101
|
-
|
5102
|
-
pageInfo: PageInfo!
|
5103
|
-
edges: [ProductFeatureCountableEdge!]!
|
5042
|
+
"""Date Time"""
|
5043
|
+
DATE_TIME
|
5104
5044
|
|
5105
|
-
"""
|
5106
|
-
|
5107
|
-
}
|
5045
|
+
"""Rich Text"""
|
5046
|
+
RICH_TEXT
|
5108
5047
|
|
5109
|
-
|
5110
|
-
|
5111
|
-
node: ProductFeature!
|
5048
|
+
"""Plain Text"""
|
5049
|
+
PLAIN_TEXT
|
5112
5050
|
|
5113
|
-
"""
|
5114
|
-
|
5115
|
-
}
|
5051
|
+
"""Reference"""
|
5052
|
+
REFERENCE
|
5116
5053
|
|
5117
|
-
"""
|
5118
|
-
|
5119
|
-
"""The ID of the object"""
|
5120
|
-
id: ID!
|
5121
|
-
sortOrder: Int
|
5122
|
-
deletedAt: DateTime
|
5123
|
-
deletedByUser: User
|
5124
|
-
deletedByApp: App
|
5125
|
-
deletionBatchUuid: UUID
|
5126
|
-
tenant: Tenant!
|
5054
|
+
"""Money"""
|
5055
|
+
MONEY
|
5127
5056
|
|
5128
|
-
"""
|
5129
|
-
|
5130
|
-
name: String!
|
5131
|
-
description: String!
|
5057
|
+
"""Boolean"""
|
5058
|
+
BOOLEAN
|
5132
5059
|
|
5133
|
-
"""
|
5134
|
-
|
5135
|
-
|
5136
|
-
|
5060
|
+
"""Numeric"""
|
5061
|
+
NUMERIC
|
5062
|
+
|
5063
|
+
"""File"""
|
5064
|
+
FILE
|
5065
|
+
|
5066
|
+
"""Swatch"""
|
5067
|
+
SWATCH
|
5137
5068
|
}
|
5138
5069
|
|
5139
|
-
"""Represents
|
5140
|
-
type
|
5070
|
+
"""Represents a value of an attribute."""
|
5071
|
+
type AttributeValue implements Node {
|
5141
5072
|
"""The ID of the object"""
|
5142
5073
|
id: ID!
|
5074
|
+
sortOrder: Int
|
5075
|
+
tenant: Tenant!
|
5143
5076
|
|
5144
|
-
"""
|
5145
|
-
|
5146
|
-
|
5147
|
-
"""The date and time when the app was created."""
|
5148
|
-
created: DateTime
|
5149
|
-
|
5150
|
-
"""Determine if app will be set active or not."""
|
5151
|
-
isActive: Boolean
|
5077
|
+
"""The seller that owns this attribute value"""
|
5078
|
+
seller: Seller!
|
5152
5079
|
|
5153
|
-
"""
|
5154
|
-
|
5080
|
+
"""Name of a value displayed in the interface."""
|
5081
|
+
name: String!
|
5155
5082
|
|
5156
|
-
"""
|
5157
|
-
|
5083
|
+
"""Supporting information like color, links, etc."""
|
5084
|
+
value: String!
|
5158
5085
|
|
5159
|
-
"""
|
5160
|
-
|
5086
|
+
"""Internal representation of a value (unique per attribute)."""
|
5087
|
+
slug: String!
|
5088
|
+
attribute: Attribute!
|
5161
5089
|
|
5162
5090
|
"""
|
5163
|
-
|
5091
|
+
Populated if the attribute has date-time input_type, represent actual datetime for filtering
|
5164
5092
|
"""
|
5165
|
-
|
5166
|
-
|
5167
|
-
|
5168
|
-
|
5169
|
-
|
5170
|
-
|
5171
|
-
|
5172
|
-
|
5173
|
-
|
5174
|
-
|
5093
|
+
dateTime: DateTime
|
5094
|
+
plainText: String!
|
5095
|
+
richText: String!
|
5096
|
+
currency: String!
|
5097
|
+
amount: Decimal!
|
5098
|
+
money: Money
|
5099
|
+
reference: String!
|
5100
|
+
boolean: Boolean!
|
5101
|
+
file: File
|
5102
|
+
fileUrl: String
|
5175
5103
|
|
5176
|
-
"""
|
5177
|
-
|
5104
|
+
"""
|
5105
|
+
Populated if the attribute has date input_type, represent actual date for filtering
|
5106
|
+
"""
|
5107
|
+
date: Date
|
5178
5108
|
|
5179
|
-
"""
|
5180
|
-
|
5109
|
+
"""Type of value (used only when `value` field is set)."""
|
5110
|
+
type: AttributeValueType
|
5181
5111
|
|
5182
|
-
"""
|
5183
|
-
|
5112
|
+
"""The input type to use for entering attribute values in the dashboard."""
|
5113
|
+
inputType: AttributeInputTypeEnum!
|
5184
5114
|
}
|
5185
5115
|
|
5186
|
-
"""Represents
|
5187
|
-
type
|
5188
|
-
"""
|
5189
|
-
|
5190
|
-
|
5191
|
-
"""Describe action(s) allowed to do by permission."""
|
5192
|
-
name: String!
|
5116
|
+
"""Represents an uploaded file."""
|
5117
|
+
type File {
|
5118
|
+
"""The URL of the file."""
|
5119
|
+
url: String!
|
5193
5120
|
}
|
5194
5121
|
|
5195
|
-
enum
|
5196
|
-
|
5197
|
-
|
5198
|
-
|
5199
|
-
|
5200
|
-
MANAGE_DOCUMENTS
|
5201
|
-
MANAGE_EMAILS
|
5202
|
-
MANAGE_PLUGINS
|
5203
|
-
MANAGE_STOREFRONTS
|
5204
|
-
MANAGE_MENUS
|
5205
|
-
MANAGE_ORDERS
|
5206
|
-
MANAGE_DRAFT_AND_QUOTE_ORDERS
|
5207
|
-
MANAGE_FULFILLMENTS
|
5208
|
-
MANAGE_PRODUCTS
|
5209
|
-
MANAGE_INVENTORY
|
5210
|
-
MANAGE_PRODUCT_TYPES_AND_ATTRIBUTES
|
5211
|
-
MANAGE_SHIPPING
|
5212
|
-
MANAGE_SETTINGS
|
5213
|
-
MANAGE_CHECKOUTS
|
5214
|
-
MANAGE_AGREEMENTS
|
5215
|
-
MANAGE_MARKETPLACE
|
5216
|
-
MANAGE_MARKETPLACE_CONFIGURATION
|
5217
|
-
MANAGE_PAYOUTS
|
5218
|
-
MANAGE_PAYMENTS
|
5219
|
-
MANAGE_REFUNDS
|
5220
|
-
MANAGE_COLLECTIONS
|
5122
|
+
enum AttributeValueType {
|
5123
|
+
COLOR
|
5124
|
+
GRADIENT
|
5125
|
+
URL
|
5126
|
+
STRING
|
5221
5127
|
}
|
5222
5128
|
|
5223
|
-
|
5224
|
-
|
5225
|
-
|
5226
|
-
|
5129
|
+
type CollectionCountableConnection {
|
5130
|
+
"""Pagination data for this connection."""
|
5131
|
+
pageInfo: PageInfo!
|
5132
|
+
edges: [CollectionCountableEdge!]!
|
5227
5133
|
|
5228
|
-
"""
|
5229
|
-
|
5134
|
+
"""A total count of items in the collection."""
|
5135
|
+
totalCount: Int
|
5136
|
+
}
|
5230
5137
|
|
5231
|
-
|
5232
|
-
|
5138
|
+
type CollectionCountableEdge {
|
5139
|
+
"""The item at the end of the edge."""
|
5140
|
+
node: Collection!
|
5141
|
+
|
5142
|
+
"""A cursor for use in pagination."""
|
5143
|
+
cursor: String!
|
5233
5144
|
}
|
5234
5145
|
|
5235
|
-
"""Represents a
|
5236
|
-
type
|
5146
|
+
"""Represents a collection of products."""
|
5147
|
+
type Collection implements Node & ObjectWithMetadata {
|
5237
5148
|
"""The ID of the object"""
|
5238
5149
|
id: ID!
|
5150
|
+
publicationDate: Date
|
5239
5151
|
|
5240
5152
|
"""
|
5241
|
-
|
5153
|
+
List of private metadata items.Requires proper staff permissions to access.
|
5242
5154
|
"""
|
5243
|
-
|
5155
|
+
privateMetadata: [MetadataItem!]!
|
5244
5156
|
|
5245
|
-
"""
|
5246
|
-
|
5157
|
+
"""List of public metadata items. Can be accessed without permissions."""
|
5158
|
+
metadata: [MetadataItem!]!
|
5159
|
+
description: String!
|
5160
|
+
descriptionHtml: String!
|
5161
|
+
seoTitle: String
|
5162
|
+
seoDescription: String
|
5163
|
+
isVisible: Boolean!
|
5164
|
+
name: String!
|
5165
|
+
slug: String!
|
5247
5166
|
|
5248
|
-
"""
|
5249
|
-
|
5250
|
-
|
5167
|
+
"""List of products in this collection."""
|
5168
|
+
products(
|
5169
|
+
"""Filtering options for products."""
|
5170
|
+
filter: ProductFilterInput
|
5251
5171
|
|
5252
|
-
|
5253
|
-
|
5254
|
-
NAUTICAL_ORDER
|
5172
|
+
"""Sort products."""
|
5173
|
+
sortBy: ProductOrder
|
5255
5174
|
|
5256
|
-
|
5257
|
-
|
5258
|
-
}
|
5175
|
+
"""Return the elements in the list that come before the specified cursor."""
|
5176
|
+
before: String
|
5259
5177
|
|
5260
|
-
"""
|
5261
|
-
|
5262
|
-
"""The ID of the object"""
|
5263
|
-
id: ID!
|
5178
|
+
"""Return the elements in the list that come after the specified cursor."""
|
5179
|
+
after: String
|
5264
5180
|
|
5265
|
-
|
5266
|
-
|
5267
|
-
"""
|
5268
|
-
app: App
|
5269
|
-
|
5270
|
-
"""What context this integration should be rendered in"""
|
5271
|
-
context: AppStorefrontIntegrationContextEnum!
|
5272
|
-
|
5273
|
-
"""JSON string of params to pass to the remote component"""
|
5274
|
-
params: String!
|
5275
|
-
|
5276
|
-
"""The URL to the remote component to load"""
|
5277
|
-
componentUrl: String!
|
5278
|
-
}
|
5279
|
-
|
5280
|
-
enum AppStorefrontIntegrationContextEnum {
|
5281
|
-
"""Product details page"""
|
5282
|
-
PRODUCT_DETAILS
|
5283
|
-
|
5284
|
-
"""Sitewide"""
|
5285
|
-
SITE
|
5286
|
-
}
|
5287
|
-
|
5288
|
-
"""Webhook."""
|
5289
|
-
type Webhook implements Node {
|
5290
|
-
name: String!
|
5291
|
-
targetUrl: String!
|
5292
|
-
isActive: Boolean!
|
5293
|
-
secretKey: String
|
5294
|
-
connectionString: String
|
5295
|
-
queueName: String
|
5296
|
-
|
5297
|
-
"""The ID of the object"""
|
5298
|
-
id: ID!
|
5299
|
-
|
5300
|
-
"""List of webhook events."""
|
5301
|
-
events: [WebhookEvent!]!
|
5302
|
-
app: App!
|
5303
|
-
}
|
5304
|
-
|
5305
|
-
"""Webhook event."""
|
5306
|
-
type WebhookEvent {
|
5307
|
-
"""Internal name of the event type."""
|
5308
|
-
eventType: WebhookEventTypeEnum!
|
5309
|
-
|
5310
|
-
"""Display name of the event."""
|
5311
|
-
name: String!
|
5312
|
-
}
|
5313
|
-
|
5314
|
-
"""An enumeration."""
|
5315
|
-
enum WebhookEventTypeEnum {
|
5316
|
-
ANY_EVENTS
|
5317
|
-
AGREEMENT_CREATED
|
5318
|
-
AGREEMENT_DELETED
|
5319
|
-
AGREEMENT_UPDATED
|
5320
|
-
CATEGORY_CREATED
|
5321
|
-
CATEGORY_DELETED
|
5322
|
-
CATEGORY_UPDATED
|
5323
|
-
CHECKOUT_CREATED
|
5324
|
-
CHECKOUT_UPDATED
|
5325
|
-
COLLECTION_CREATED
|
5326
|
-
COLLECTION_DELETED
|
5327
|
-
COLLECTION_UPDATED
|
5328
|
-
CUSTOMER_CREATED
|
5329
|
-
CUSTOMER_UPDATED
|
5330
|
-
CUSTOMER_DELETED
|
5331
|
-
FULFILLMENT_CREATED
|
5332
|
-
FULFILLMENT_UPDATED
|
5333
|
-
INVOICE_DELETED
|
5334
|
-
INVOICE_REQUESTED
|
5335
|
-
INVOICE_SENT
|
5336
|
-
NAUTICAL_ORDER_CANCELLED
|
5337
|
-
NAUTICAL_ORDER_CREATED
|
5338
|
-
NAUTICAL_ORDER_FULFILLED
|
5339
|
-
NAUTICAL_ORDER_FULLY_PAID
|
5340
|
-
NAUTICAL_ORDER_UPDATED
|
5341
|
-
ORDER_CANCELLED
|
5342
|
-
ORDER_CREATED
|
5343
|
-
ORDER_FULFILLED
|
5344
|
-
ORDER_FULLY_PAID
|
5345
|
-
ORDER_UPDATED
|
5346
|
-
PAYMENT_CREATED
|
5347
|
-
PAYMENT_UPDATED
|
5348
|
-
PAYOUT_CREATED
|
5349
|
-
PAYOUT_UPDATED
|
5350
|
-
PAYOUT_DELETED
|
5351
|
-
PRODUCT_CREATED
|
5352
|
-
PRODUCT_DELETED
|
5353
|
-
PRODUCT_UPDATED
|
5354
|
-
REFUND_CREATED
|
5355
|
-
REFUND_DELETED
|
5356
|
-
REFUND_UPDATED
|
5357
|
-
SELLER_CREATED
|
5358
|
-
SELLER_UPDATED
|
5359
|
-
SELLER_AGREEMENT_ACKNOWLEDGED
|
5360
|
-
SELLER_AGREEMENT_DECLINED
|
5361
|
-
VARIANT_CREATED
|
5362
|
-
VARIANT_DELETED
|
5363
|
-
VARIANT_UPDATED
|
5364
|
-
STOCK_CREATED
|
5365
|
-
STOCK_DELETED
|
5366
|
-
STOCK_UPDATED
|
5367
|
-
STOCK_ALLOCATED
|
5368
|
-
STOCK_DEALLOCATED
|
5369
|
-
VENDOR_PAYOUT_CREATED
|
5370
|
-
VENDOR_PAYOUT_UPDATED
|
5371
|
-
WAREHOUSE_CREATED
|
5372
|
-
WAREHOUSE_DELETED
|
5373
|
-
WAREHOUSE_UPDATED
|
5374
|
-
}
|
5375
|
-
|
5376
|
-
"""
|
5377
|
-
Represents a single variant feature as part of a product type feature template.
|
5378
|
-
"""
|
5379
|
-
type ProductTypeVariantFeature implements Node {
|
5380
|
-
"""The ID of the object"""
|
5381
|
-
id: ID!
|
5382
|
-
sortOrder: Int
|
5383
|
-
tenant: Tenant!
|
5384
|
-
|
5385
|
-
"""The type that we expect to render the feature's values as."""
|
5386
|
-
featureType: FeatureTypeEnum!
|
5387
|
-
name: String!
|
5388
|
-
description: String!
|
5389
|
-
|
5390
|
-
"""Available options for this variant feature"""
|
5391
|
-
options: [String!]
|
5392
|
-
productType: ProductType!
|
5393
|
-
variantFeatures(offset: Int, before: String, after: String, first: Int, last: Int): VariantFeatureCountableConnection!
|
5394
|
-
}
|
5395
|
-
|
5396
|
-
type VariantFeatureCountableConnection {
|
5397
|
-
"""Pagination data for this connection."""
|
5398
|
-
pageInfo: PageInfo!
|
5399
|
-
edges: [VariantFeatureCountableEdge!]!
|
5400
|
-
|
5401
|
-
"""A total count of items in the collection."""
|
5402
|
-
totalCount: Int
|
5403
|
-
}
|
5404
|
-
|
5405
|
-
type VariantFeatureCountableEdge {
|
5406
|
-
"""The item at the end of the edge."""
|
5407
|
-
node: VariantFeature!
|
5408
|
-
|
5409
|
-
"""A cursor for use in pagination."""
|
5410
|
-
cursor: String!
|
5411
|
-
}
|
5412
|
-
|
5413
|
-
"""Represents a single variant feature."""
|
5414
|
-
type VariantFeature implements Node {
|
5415
|
-
"""The ID of the object"""
|
5416
|
-
id: ID!
|
5417
|
-
sortOrder: Int
|
5418
|
-
tenant: Tenant!
|
5419
|
-
|
5420
|
-
"""The type that we expect to render the feature's values as."""
|
5421
|
-
featureType: FeatureTypeEnum!
|
5422
|
-
name: String!
|
5423
|
-
description: String!
|
5424
|
-
|
5425
|
-
"""Available options for this variant feature"""
|
5426
|
-
options: [String!]
|
5427
|
-
variant: ProductVariant!
|
5428
|
-
productTypeFeature: ProductTypeVariantFeature
|
5429
|
-
}
|
5430
|
-
|
5431
|
-
enum AttributeInputTypeEnum {
|
5432
|
-
"""Dropdown"""
|
5433
|
-
DROPDOWN
|
5434
|
-
|
5435
|
-
"""Multi Select"""
|
5436
|
-
MULTISELECT
|
5437
|
-
|
5438
|
-
"""Date"""
|
5439
|
-
DATE
|
5440
|
-
|
5441
|
-
"""Date Time"""
|
5442
|
-
DATE_TIME
|
5443
|
-
|
5444
|
-
"""Rich Text"""
|
5445
|
-
RICH_TEXT
|
5446
|
-
|
5447
|
-
"""Plain Text"""
|
5448
|
-
PLAIN_TEXT
|
5449
|
-
|
5450
|
-
"""Reference"""
|
5451
|
-
REFERENCE
|
5452
|
-
|
5453
|
-
"""Money"""
|
5454
|
-
MONEY
|
5455
|
-
|
5456
|
-
"""Boolean"""
|
5457
|
-
BOOLEAN
|
5458
|
-
|
5459
|
-
"""Numeric"""
|
5460
|
-
NUMERIC
|
5461
|
-
|
5462
|
-
"""File"""
|
5463
|
-
FILE
|
5464
|
-
|
5465
|
-
"""Swatch"""
|
5466
|
-
SWATCH
|
5467
|
-
}
|
5468
|
-
|
5469
|
-
"""Represents a value of an attribute."""
|
5470
|
-
type AttributeValue implements Node {
|
5471
|
-
"""The ID of the object"""
|
5472
|
-
id: ID!
|
5473
|
-
sortOrder: Int
|
5474
|
-
tenant: Tenant!
|
5475
|
-
|
5476
|
-
"""The seller that owns this attribute value"""
|
5477
|
-
seller: Seller!
|
5478
|
-
|
5479
|
-
"""Name of a value displayed in the interface."""
|
5480
|
-
name: String!
|
5481
|
-
|
5482
|
-
"""Supporting information like color, links, etc."""
|
5483
|
-
value: String!
|
5484
|
-
|
5485
|
-
"""Internal representation of a value (unique per attribute)."""
|
5486
|
-
slug: String!
|
5487
|
-
attribute: Attribute!
|
5488
|
-
|
5489
|
-
"""
|
5490
|
-
Populated if the attribute has date-time input_type, represent actual datetime for filtering
|
5491
|
-
"""
|
5492
|
-
dateTime: DateTime
|
5493
|
-
plainText: String!
|
5494
|
-
richText: String!
|
5495
|
-
currency: String!
|
5496
|
-
amount: Decimal!
|
5497
|
-
money: Money
|
5498
|
-
reference: String!
|
5499
|
-
boolean: Boolean!
|
5500
|
-
file: File
|
5501
|
-
fileUrl: String
|
5502
|
-
|
5503
|
-
"""
|
5504
|
-
Populated if the attribute has date input_type, represent actual date for filtering
|
5505
|
-
"""
|
5506
|
-
date: Date
|
5507
|
-
|
5508
|
-
"""Type of value (used only when `value` field is set)."""
|
5509
|
-
type: AttributeValueType
|
5510
|
-
|
5511
|
-
"""The input type to use for entering attribute values in the dashboard."""
|
5512
|
-
inputType: AttributeInputTypeEnum!
|
5513
|
-
}
|
5514
|
-
|
5515
|
-
"""Represents an uploaded file."""
|
5516
|
-
type File {
|
5517
|
-
"""The URL of the file."""
|
5518
|
-
url: String!
|
5519
|
-
}
|
5520
|
-
|
5521
|
-
enum AttributeValueType {
|
5522
|
-
COLOR
|
5523
|
-
GRADIENT
|
5524
|
-
URL
|
5525
|
-
STRING
|
5526
|
-
}
|
5527
|
-
|
5528
|
-
type CollectionCountableConnection {
|
5529
|
-
"""Pagination data for this connection."""
|
5530
|
-
pageInfo: PageInfo!
|
5531
|
-
edges: [CollectionCountableEdge!]!
|
5532
|
-
|
5533
|
-
"""A total count of items in the collection."""
|
5534
|
-
totalCount: Int
|
5535
|
-
}
|
5536
|
-
|
5537
|
-
type CollectionCountableEdge {
|
5538
|
-
"""The item at the end of the edge."""
|
5539
|
-
node: Collection!
|
5540
|
-
|
5541
|
-
"""A cursor for use in pagination."""
|
5542
|
-
cursor: String!
|
5543
|
-
}
|
5544
|
-
|
5545
|
-
"""Represents a collection of products."""
|
5546
|
-
type Collection implements Node & ObjectWithMetadata {
|
5547
|
-
"""The ID of the object"""
|
5548
|
-
id: ID!
|
5549
|
-
publicationDate: Date
|
5550
|
-
|
5551
|
-
"""
|
5552
|
-
List of private metadata items.Requires proper staff permissions to access.
|
5553
|
-
"""
|
5554
|
-
privateMetadata: [MetadataItem!]!
|
5555
|
-
|
5556
|
-
"""List of public metadata items. Can be accessed without permissions."""
|
5557
|
-
metadata: [MetadataItem!]!
|
5558
|
-
description: String!
|
5559
|
-
descriptionHtml: String!
|
5560
|
-
seoTitle: String
|
5561
|
-
seoDescription: String
|
5562
|
-
isVisible: Boolean!
|
5563
|
-
name: String!
|
5564
|
-
slug: String!
|
5565
|
-
|
5566
|
-
"""List of products in this collection."""
|
5567
|
-
products(
|
5568
|
-
"""Filtering options for products."""
|
5569
|
-
filter: ProductFilterInput
|
5570
|
-
|
5571
|
-
"""Sort products."""
|
5572
|
-
sortBy: ProductOrder
|
5573
|
-
|
5574
|
-
"""Return the elements in the list that come before the specified cursor."""
|
5575
|
-
before: String
|
5576
|
-
|
5577
|
-
"""Return the elements in the list that come after the specified cursor."""
|
5578
|
-
after: String
|
5579
|
-
|
5580
|
-
"""Return the first n elements from the list."""
|
5581
|
-
first: Int
|
5181
|
+
"""Return the first n elements from the list."""
|
5182
|
+
first: Int
|
5582
5183
|
|
5583
5184
|
"""Return the last n elements from the list."""
|
5584
5185
|
last: Int
|
@@ -5643,7 +5244,6 @@ input ProductVariantFilterInput {
|
|
5643
5244
|
customFields: [AttributeInput!]
|
5644
5245
|
metadata: MetadataFilterInput
|
5645
5246
|
privateMetadata: MetadataFilterInput
|
5646
|
-
features: FeatureFilterInput
|
5647
5247
|
advancedSearch: ProductVariantSearchInput
|
5648
5248
|
ids: [ID]
|
5649
5249
|
productIds: [ID]
|
@@ -7901,6 +7501,34 @@ type UserPermission {
|
|
7901
7501
|
): [Group!]!
|
7902
7502
|
}
|
7903
7503
|
|
7504
|
+
enum PermissionEnum {
|
7505
|
+
MANAGE_USERS
|
7506
|
+
MANAGE_STAFF
|
7507
|
+
MANAGE_APPS
|
7508
|
+
MANAGE_DISCOUNTS
|
7509
|
+
MANAGE_DOCUMENTS
|
7510
|
+
MANAGE_EMAILS
|
7511
|
+
MANAGE_PLUGINS
|
7512
|
+
MANAGE_STOREFRONTS
|
7513
|
+
MANAGE_MENUS
|
7514
|
+
MANAGE_ORDERS
|
7515
|
+
MANAGE_DRAFT_AND_QUOTE_ORDERS
|
7516
|
+
MANAGE_FULFILLMENTS
|
7517
|
+
MANAGE_PRODUCTS
|
7518
|
+
MANAGE_INVENTORY
|
7519
|
+
MANAGE_PRODUCT_TYPES_AND_ATTRIBUTES
|
7520
|
+
MANAGE_SHIPPING
|
7521
|
+
MANAGE_SETTINGS
|
7522
|
+
MANAGE_CHECKOUTS
|
7523
|
+
MANAGE_AGREEMENTS
|
7524
|
+
MANAGE_MARKETPLACE
|
7525
|
+
MANAGE_MARKETPLACE_CONFIGURATION
|
7526
|
+
MANAGE_PAYOUTS
|
7527
|
+
MANAGE_PAYMENTS
|
7528
|
+
MANAGE_REFUNDS
|
7529
|
+
MANAGE_COLLECTIONS
|
7530
|
+
}
|
7531
|
+
|
7904
7532
|
"""Represents permission group data."""
|
7905
7533
|
type Group implements Node {
|
7906
7534
|
"""The ID of the object"""
|
@@ -7919,123 +7547,332 @@ type Group implements Node {
|
|
7919
7547
|
userCanManage: Boolean!
|
7920
7548
|
}
|
7921
7549
|
|
7922
|
-
"""
|
7923
|
-
type
|
7550
|
+
"""Represents a permission object in a friendly form."""
|
7551
|
+
type Permission {
|
7552
|
+
"""Internal code for permission."""
|
7553
|
+
code: PermissionEnum!
|
7554
|
+
|
7555
|
+
"""Describe action(s) allowed to do by permission."""
|
7556
|
+
name: String!
|
7557
|
+
}
|
7558
|
+
|
7559
|
+
"""History log of the customer."""
|
7560
|
+
type CustomerEvent implements Node {
|
7561
|
+
"""The ID of the object"""
|
7562
|
+
id: ID!
|
7563
|
+
|
7564
|
+
"""Date when event happened at in ISO 8601 format."""
|
7565
|
+
date: DateTime
|
7566
|
+
|
7567
|
+
"""Customer event type."""
|
7568
|
+
type: CustomerEventsEnum
|
7569
|
+
|
7570
|
+
"""User who performed the action."""
|
7571
|
+
user: User
|
7572
|
+
|
7573
|
+
"""Content of the event."""
|
7574
|
+
message: String
|
7575
|
+
|
7576
|
+
"""Number of objects concerned by the event."""
|
7577
|
+
count: Int
|
7578
|
+
|
7579
|
+
"""The concerned order."""
|
7580
|
+
order: Order
|
7581
|
+
|
7582
|
+
"""The concerned order line."""
|
7583
|
+
orderLine: OrderLine
|
7584
|
+
|
7585
|
+
"""The concerned nautical order."""
|
7586
|
+
nauticalOrder: NauticalOrder
|
7587
|
+
}
|
7588
|
+
|
7589
|
+
enum CustomerEventsEnum {
|
7590
|
+
"""The account was created"""
|
7591
|
+
ACCOUNT_CREATED
|
7592
|
+
|
7593
|
+
"""Password reset link was sent to the customer"""
|
7594
|
+
PASSWORD_RESET_LINK_SENT
|
7595
|
+
|
7596
|
+
"""The account password was reset"""
|
7597
|
+
PASSWORD_RESET
|
7598
|
+
|
7599
|
+
"""The user requested to change the account's email address."""
|
7600
|
+
EMAIL_CHANGED_REQUEST
|
7601
|
+
|
7602
|
+
"""The account password was changed"""
|
7603
|
+
PASSWORD_CHANGED
|
7604
|
+
|
7605
|
+
"""The account email address was changed"""
|
7606
|
+
EMAIL_CHANGED
|
7607
|
+
|
7608
|
+
"""An order was placed"""
|
7609
|
+
PLACED_ORDER
|
7610
|
+
|
7611
|
+
"""A note was added"""
|
7612
|
+
NOTE_ADDED_TO_ORDER
|
7613
|
+
|
7614
|
+
"""A digital good was downloaded"""
|
7615
|
+
DIGITAL_LINK_DOWNLOADED
|
7616
|
+
|
7617
|
+
"""A customer was deleted"""
|
7618
|
+
CUSTOMER_DELETED
|
7619
|
+
|
7620
|
+
"""A customer's name was edited"""
|
7621
|
+
NAME_ASSIGNED
|
7622
|
+
|
7623
|
+
"""A customer's email address was edited"""
|
7624
|
+
EMAIL_ASSIGNED
|
7625
|
+
|
7626
|
+
"""A note was added to the customer"""
|
7627
|
+
NOTE_ADDED
|
7628
|
+
}
|
7629
|
+
|
7630
|
+
"""
|
7631
|
+
Represents a payment source stored for user in payment gateway, such as credit card.
|
7632
|
+
"""
|
7633
|
+
type PaymentSource {
|
7634
|
+
"""Stored payment method ID."""
|
7635
|
+
id: String!
|
7636
|
+
|
7637
|
+
"""Payment gateway name."""
|
7638
|
+
gateway: String!
|
7639
|
+
|
7640
|
+
"""Stored credit card details if available."""
|
7641
|
+
creditCardInfo: CreditCard
|
7642
|
+
}
|
7643
|
+
|
7644
|
+
type WishlistCountableConnection {
|
7645
|
+
"""Pagination data for this connection."""
|
7646
|
+
pageInfo: PageInfo!
|
7647
|
+
edges: [WishlistCountableEdge!]!
|
7648
|
+
|
7649
|
+
"""A total count of items in the collection."""
|
7650
|
+
totalCount: Int
|
7651
|
+
}
|
7652
|
+
|
7653
|
+
type WishlistCountableEdge {
|
7654
|
+
"""The item at the end of the edge."""
|
7655
|
+
node: Wishlist!
|
7656
|
+
|
7657
|
+
"""A cursor for use in pagination."""
|
7658
|
+
cursor: String!
|
7659
|
+
}
|
7660
|
+
|
7661
|
+
input WishlistItemInputFilter {
|
7662
|
+
expiry: DateRangeInput
|
7663
|
+
}
|
7664
|
+
|
7665
|
+
input WishlistItemSortingInput {
|
7666
|
+
"""Specifies the direction in which to sort products."""
|
7667
|
+
direction: OrderDirection!
|
7668
|
+
|
7669
|
+
"""Sort wishlist items by the selected field."""
|
7670
|
+
field: WishlistItemSortField!
|
7671
|
+
}
|
7672
|
+
|
7673
|
+
enum WishlistItemSortField {
|
7674
|
+
"""Sort wishlist items by created at."""
|
7675
|
+
CREATED_AT
|
7676
|
+
}
|
7677
|
+
|
7678
|
+
"""Webhook."""
|
7679
|
+
type Webhook implements Node {
|
7680
|
+
name: String!
|
7681
|
+
targetUrl: String!
|
7682
|
+
isActive: Boolean!
|
7683
|
+
secretKey: String
|
7684
|
+
connectionString: String
|
7685
|
+
queueName: String
|
7686
|
+
|
7687
|
+
"""The ID of the object"""
|
7688
|
+
id: ID!
|
7689
|
+
|
7690
|
+
"""List of webhook events."""
|
7691
|
+
events: [WebhookEvent!]!
|
7692
|
+
app: App!
|
7693
|
+
}
|
7694
|
+
|
7695
|
+
"""Webhook event."""
|
7696
|
+
type WebhookEvent {
|
7697
|
+
"""Internal name of the event type."""
|
7698
|
+
eventType: WebhookEventTypeEnum!
|
7699
|
+
|
7700
|
+
"""Display name of the event."""
|
7701
|
+
name: String!
|
7702
|
+
}
|
7703
|
+
|
7704
|
+
"""An enumeration."""
|
7705
|
+
enum WebhookEventTypeEnum {
|
7706
|
+
ANY_EVENTS
|
7707
|
+
AGREEMENT_CREATED
|
7708
|
+
AGREEMENT_DELETED
|
7709
|
+
AGREEMENT_UPDATED
|
7710
|
+
CATEGORY_CREATED
|
7711
|
+
CATEGORY_DELETED
|
7712
|
+
CATEGORY_UPDATED
|
7713
|
+
CHECKOUT_CREATED
|
7714
|
+
CHECKOUT_UPDATED
|
7715
|
+
COLLECTION_CREATED
|
7716
|
+
COLLECTION_DELETED
|
7717
|
+
COLLECTION_UPDATED
|
7718
|
+
CUSTOMER_CREATED
|
7719
|
+
CUSTOMER_UPDATED
|
7720
|
+
CUSTOMER_DELETED
|
7721
|
+
FULFILLMENT_CREATED
|
7722
|
+
FULFILLMENT_UPDATED
|
7723
|
+
INVOICE_DELETED
|
7724
|
+
INVOICE_REQUESTED
|
7725
|
+
INVOICE_SENT
|
7726
|
+
NAUTICAL_ORDER_CANCELLED
|
7727
|
+
NAUTICAL_ORDER_CREATED
|
7728
|
+
NAUTICAL_ORDER_FULFILLED
|
7729
|
+
NAUTICAL_ORDER_FULLY_PAID
|
7730
|
+
NAUTICAL_ORDER_UPDATED
|
7731
|
+
ORDER_CANCELLED
|
7732
|
+
ORDER_CREATED
|
7733
|
+
ORDER_FULFILLED
|
7734
|
+
ORDER_FULLY_PAID
|
7735
|
+
ORDER_UPDATED
|
7736
|
+
PAYMENT_CREATED
|
7737
|
+
PAYMENT_UPDATED
|
7738
|
+
PAYOUT_CREATED
|
7739
|
+
PAYOUT_UPDATED
|
7740
|
+
PAYOUT_DELETED
|
7741
|
+
PRODUCT_CREATED
|
7742
|
+
PRODUCT_DELETED
|
7743
|
+
PRODUCT_UPDATED
|
7744
|
+
REFUND_CREATED
|
7745
|
+
REFUND_DELETED
|
7746
|
+
REFUND_UPDATED
|
7747
|
+
SELLER_CREATED
|
7748
|
+
SELLER_UPDATED
|
7749
|
+
SELLER_AGREEMENT_ACKNOWLEDGED
|
7750
|
+
SELLER_AGREEMENT_DECLINED
|
7751
|
+
VARIANT_CREATED
|
7752
|
+
VARIANT_DELETED
|
7753
|
+
VARIANT_UPDATED
|
7754
|
+
STOCK_CREATED
|
7755
|
+
STOCK_DELETED
|
7756
|
+
STOCK_UPDATED
|
7757
|
+
STOCK_ALLOCATED
|
7758
|
+
STOCK_DEALLOCATED
|
7759
|
+
VENDOR_PAYOUT_CREATED
|
7760
|
+
VENDOR_PAYOUT_UPDATED
|
7761
|
+
WAREHOUSE_CREATED
|
7762
|
+
WAREHOUSE_DELETED
|
7763
|
+
WAREHOUSE_UPDATED
|
7764
|
+
}
|
7765
|
+
|
7766
|
+
"""Represents app data."""
|
7767
|
+
type App implements Node & ObjectWithMetadata {
|
7924
7768
|
"""The ID of the object"""
|
7925
7769
|
id: ID!
|
7926
7770
|
|
7927
|
-
"""
|
7928
|
-
|
7929
|
-
|
7930
|
-
"""Customer event type."""
|
7931
|
-
type: CustomerEventsEnum
|
7771
|
+
"""Name of the app."""
|
7772
|
+
name: String
|
7932
7773
|
|
7933
|
-
"""
|
7934
|
-
|
7774
|
+
"""The date and time when the app was created."""
|
7775
|
+
created: DateTime
|
7935
7776
|
|
7936
|
-
"""
|
7937
|
-
|
7777
|
+
"""Determine if app will be set active or not."""
|
7778
|
+
isActive: Boolean
|
7938
7779
|
|
7939
|
-
"""
|
7940
|
-
|
7780
|
+
"""List of the app's permissions."""
|
7781
|
+
permissions: [Permission!]
|
7941
7782
|
|
7942
|
-
"""
|
7943
|
-
|
7783
|
+
"""User associated with this app."""
|
7784
|
+
user: User
|
7944
7785
|
|
7945
|
-
"""
|
7946
|
-
|
7786
|
+
"""Last 4 characters of the tokens."""
|
7787
|
+
tokens: [AppToken!]
|
7947
7788
|
|
7948
|
-
"""
|
7949
|
-
|
7950
|
-
|
7789
|
+
"""
|
7790
|
+
List of private metadata items.Requires proper staff permissions to access.
|
7791
|
+
"""
|
7792
|
+
privateMetadata: [MetadataItem!]!
|
7951
7793
|
|
7952
|
-
|
7953
|
-
|
7954
|
-
ACCOUNT_CREATED
|
7794
|
+
"""List of public metadata items. Can be accessed without permissions."""
|
7795
|
+
metadata: [MetadataItem!]!
|
7955
7796
|
|
7956
|
-
"""
|
7957
|
-
|
7797
|
+
"""List of dashboard integrations for this app"""
|
7798
|
+
dashboardIntegrations: [AppDashboardIntegration!]
|
7958
7799
|
|
7959
|
-
"""
|
7960
|
-
|
7800
|
+
"""List of storefront integrations for this app"""
|
7801
|
+
storefrontIntegrations: [AppStorefrontIntegration!]
|
7961
7802
|
|
7962
|
-
"""
|
7963
|
-
|
7803
|
+
"""List of webhooks assigned to this app."""
|
7804
|
+
webhooks: [Webhook!]
|
7964
7805
|
|
7965
|
-
"""
|
7966
|
-
|
7806
|
+
"""Version number of the app."""
|
7807
|
+
version: String
|
7967
7808
|
|
7968
|
-
"""
|
7969
|
-
|
7809
|
+
"""Bearer token used to authenticate by thirdparty app."""
|
7810
|
+
accessToken: String
|
7811
|
+
}
|
7970
7812
|
|
7971
|
-
|
7972
|
-
|
7813
|
+
"""Represents token data."""
|
7814
|
+
type AppToken implements Node {
|
7815
|
+
"""Name of the authenticated token."""
|
7816
|
+
name: String!
|
7973
7817
|
|
7974
|
-
"""
|
7975
|
-
|
7818
|
+
"""Last 4 characters of the token."""
|
7819
|
+
authToken: String!
|
7976
7820
|
|
7977
|
-
"""
|
7978
|
-
|
7821
|
+
"""The ID of the object"""
|
7822
|
+
id: ID!
|
7823
|
+
}
|
7979
7824
|
|
7980
|
-
|
7981
|
-
|
7825
|
+
"""Represents a dashboard integration for an App."""
|
7826
|
+
type AppDashboardIntegration implements Node {
|
7827
|
+
"""The ID of the object"""
|
7828
|
+
id: ID!
|
7982
7829
|
|
7983
|
-
"""
|
7984
|
-
|
7830
|
+
"""
|
7831
|
+
App this integration is for. This may be null for integrations that come from plugins.
|
7832
|
+
"""
|
7833
|
+
app: App
|
7985
7834
|
|
7986
|
-
"""
|
7987
|
-
|
7835
|
+
"""What context this integration should be rendered in"""
|
7836
|
+
context: AppDashboardIntegrationContextEnum!
|
7988
7837
|
|
7989
|
-
"""
|
7990
|
-
|
7838
|
+
"""The URL to load for this integration"""
|
7839
|
+
iframeUrl: String!
|
7991
7840
|
}
|
7992
7841
|
|
7993
|
-
|
7994
|
-
|
7995
|
-
|
7996
|
-
type PaymentSource {
|
7997
|
-
"""Stored payment method ID."""
|
7998
|
-
id: String!
|
7999
|
-
|
8000
|
-
"""Payment gateway name."""
|
8001
|
-
gateway: String!
|
7842
|
+
enum AppDashboardIntegrationContextEnum {
|
7843
|
+
"""Nautical order details page"""
|
7844
|
+
NAUTICAL_ORDER
|
8002
7845
|
|
8003
|
-
"""
|
8004
|
-
|
7846
|
+
"""Seller order details page"""
|
7847
|
+
ORDER
|
8005
7848
|
}
|
8006
7849
|
|
8007
|
-
|
8008
|
-
|
8009
|
-
|
8010
|
-
|
7850
|
+
"""Represents a storefront integration for an App."""
|
7851
|
+
type AppStorefrontIntegration implements Node {
|
7852
|
+
"""The ID of the object"""
|
7853
|
+
id: ID!
|
8011
7854
|
|
8012
|
-
"""
|
8013
|
-
|
8014
|
-
|
7855
|
+
"""
|
7856
|
+
App this integration is for. This may be null for integrations that come from plugins.
|
7857
|
+
"""
|
7858
|
+
app: App
|
8015
7859
|
|
8016
|
-
|
8017
|
-
|
8018
|
-
node: Wishlist!
|
7860
|
+
"""What context this integration should be rendered in"""
|
7861
|
+
context: AppStorefrontIntegrationContextEnum!
|
8019
7862
|
|
8020
|
-
"""
|
8021
|
-
|
8022
|
-
}
|
7863
|
+
"""JSON string of params to pass to the remote component"""
|
7864
|
+
params: String!
|
8023
7865
|
|
8024
|
-
|
8025
|
-
|
7866
|
+
"""The URL to the remote component to load"""
|
7867
|
+
componentUrl: String!
|
8026
7868
|
}
|
8027
7869
|
|
8028
|
-
|
8029
|
-
"""
|
8030
|
-
|
8031
|
-
|
8032
|
-
"""Sort wishlist items by the selected field."""
|
8033
|
-
field: WishlistItemSortField!
|
8034
|
-
}
|
7870
|
+
enum AppStorefrontIntegrationContextEnum {
|
7871
|
+
"""Product details page"""
|
7872
|
+
PRODUCT_DETAILS
|
8035
7873
|
|
8036
|
-
|
8037
|
-
|
8038
|
-
CREATED_AT
|
7874
|
+
"""Sitewide"""
|
7875
|
+
SITE
|
8039
7876
|
}
|
8040
7877
|
|
8041
7878
|
type WebhookEventLogCountableConnection {
|
@@ -8128,8 +7965,8 @@ type WebhookJob implements Node & Job {
|
|
8128
7965
|
requestMeta: JSONString
|
8129
7966
|
source: String
|
8130
7967
|
type: GenericWebhookTransactionType
|
8131
|
-
vendorEntityLink: String
|
8132
|
-
marketplaceEntityLink: String
|
7968
|
+
vendorEntityLink: String @deprecated(reason: "This will be removed on September 26, 2025")
|
7969
|
+
marketplaceEntityLink: String @deprecated(reason: "This will be removed on September 26, 2025")
|
8133
7970
|
seller: Seller
|
8134
7971
|
}
|
8135
7972
|
|
@@ -8267,7 +8104,7 @@ enum GenericWebhookEventsEnum {
|
|
8267
8104
|
SELLER_CREATE
|
8268
8105
|
|
8269
8106
|
"""A payload for vehicles was received"""
|
8270
|
-
VEHICLE_PAYLOAD
|
8107
|
+
VEHICLE_PAYLOAD @deprecated(reason: "This will be removed on September 26, 2025")
|
8271
8108
|
|
8272
8109
|
"""A payload for item shipment that was received"""
|
8273
8110
|
ITEM_SHIP_NOTIFY
|
@@ -10098,18 +9935,30 @@ enum EmailEventMessageType {
|
|
10098
9935
|
"""Account Set Staff Password"""
|
10099
9936
|
ACCOUNT_SET_STAFF_PASSWORD
|
10100
9937
|
|
9938
|
+
"""Account Staff Reset Password"""
|
9939
|
+
ACCOUNT_STAFF_RESET_PASSWORD
|
9940
|
+
|
9941
|
+
"""Merchant Account Set Staff Password"""
|
9942
|
+
MERCHANT_ACCOUNT_SET_STAFF_PASSWORD
|
9943
|
+
|
9944
|
+
"""Merchant Account Staff Reset Password"""
|
9945
|
+
MERCHANT_ACCOUNT_STAFF_RESET_PASSWORD
|
9946
|
+
|
10101
9947
|
"""Csv Export Products Success"""
|
10102
9948
|
CSV_EXPORT_PRODUCTS_SUCCESS
|
10103
9949
|
|
10104
9950
|
"""Csv Export Failed"""
|
10105
9951
|
CSV_EXPORT_FAILED
|
10106
9952
|
|
9953
|
+
"""Merchant Csv Export Products Success"""
|
9954
|
+
MERCHANT_CSV_EXPORT_PRODUCTS_SUCCESS
|
9955
|
+
|
9956
|
+
"""Merchant Csv Export Failed"""
|
9957
|
+
MERCHANT_CSV_EXPORT_FAILED
|
9958
|
+
|
10107
9959
|
"""Staff Order Confirmation"""
|
10108
9960
|
STAFF_ORDER_CONFIRMATION
|
10109
9961
|
|
10110
|
-
"""Account Staff Reset Password"""
|
10111
|
-
ACCOUNT_STAFF_RESET_PASSWORD
|
10112
|
-
|
10113
9962
|
"""Vendor Payout Confirmation"""
|
10114
9963
|
VENDOR_PAYOUT_CONFIRMATION
|
10115
9964
|
|
@@ -10224,18 +10073,30 @@ enum NotifyEventTypeEnum {
|
|
10224
10073
|
"""Account Set Staff Password"""
|
10225
10074
|
ACCOUNT_SET_STAFF_PASSWORD
|
10226
10075
|
|
10076
|
+
"""Account Staff Reset Password"""
|
10077
|
+
ACCOUNT_STAFF_RESET_PASSWORD
|
10078
|
+
|
10079
|
+
"""Merchant Account Set Staff Password"""
|
10080
|
+
MERCHANT_ACCOUNT_SET_STAFF_PASSWORD
|
10081
|
+
|
10082
|
+
"""Merchant Account Staff Reset Password"""
|
10083
|
+
MERCHANT_ACCOUNT_STAFF_RESET_PASSWORD
|
10084
|
+
|
10227
10085
|
"""Csv Export Products Success"""
|
10228
10086
|
CSV_EXPORT_PRODUCTS_SUCCESS
|
10229
10087
|
|
10230
10088
|
"""Csv Export Failed"""
|
10231
10089
|
CSV_EXPORT_FAILED
|
10232
10090
|
|
10091
|
+
"""Merchant Csv Export Products Success"""
|
10092
|
+
MERCHANT_CSV_EXPORT_PRODUCTS_SUCCESS
|
10093
|
+
|
10094
|
+
"""Merchant Csv Export Failed"""
|
10095
|
+
MERCHANT_CSV_EXPORT_FAILED
|
10096
|
+
|
10233
10097
|
"""Staff Order Confirmation"""
|
10234
10098
|
STAFF_ORDER_CONFIRMATION
|
10235
10099
|
|
10236
|
-
"""Account Staff Reset Password"""
|
10237
|
-
ACCOUNT_STAFF_RESET_PASSWORD
|
10238
|
-
|
10239
10100
|
"""Vendor Payout Confirmation"""
|
10240
10101
|
VENDOR_PAYOUT_CONFIRMATION
|
10241
10102
|
|
@@ -11322,7 +11183,7 @@ enum SSOProviderEnum {
|
|
11322
11183
|
KEYCLOAK
|
11323
11184
|
}
|
11324
11185
|
|
11325
|
-
union _Entity = WishlistItem | Wishlist | User | Address | ProductVariant | Product | Category | ProductType |
|
11186
|
+
union _Entity = WishlistItem | Wishlist | User | Address | ProductVariant | Product | Category | ProductType | Collection | ProductImage | ProductStatusLog | Group | App
|
11326
11187
|
|
11327
11188
|
scalar _Any
|
11328
11189
|
|
@@ -11362,7 +11223,7 @@ type Mutation {
|
|
11362
11223
|
description: String
|
11363
11224
|
|
11364
11225
|
"""
|
11365
|
-
Used when uploading a new document or file in a multipart request that does not exist in the system already. Supported file types: image/x-
|
11226
|
+
Used when uploading a new document or file in a multipart request that does not exist in the system already. Supported file types: image/svg, image/tif, application/vnd.openxmlformats-officedocument.presentationml.presentation, image/jpeg, application/x-rar-compressed, application/rtf, text/x-csv, text/x-comma-separated-values, image/heif, text/csv, image/x-eps, application/vnd.openxmlformats-officedocument.spreadsheetml.sheet, application/tiff, application/vnd.ms-excel, pplication/vnd.rar, application/tif, application/vnd.oasis.opendocument.spreadsheet, application/x-tar, application/dxf, application/x-rtf, image/x-ms-bmp, application/vnd.pdf, application/x-pdf, image/x-tif, image/heic-sequence, image/bmp, image/x-bmp, image/dxf, image/png, application/x-acad, application/x-gzip, application/acad, text/comma-separated-values, text/pdf, application/x-csv, text/x-pdf, application/pdf, drawing/dwg, application/msword, text/svg-xml, application/x-zip-compressed, application/x-dxf, application/gzip, application/gzip-compressed, image/heif-sequence, image/jpg, image/svg+xml, application/vnd.openxmlformats-officedocument.presentationml.slideshow, image/vnd.dwg, image/webp, application/eps, application/x-eps, application/postscript, application/acrobat, text/rtf, drawing/x-dwf, image/x-tiff, application/x-tif, image/x-dxf, application/x-dwg, application/svg+xml, application/gzipped, application/excel, image/heic, application/vnd.ms-powerpoint, image/x-dwg, text/svg, application/zip, image/gif, application/x-autocad, application/csv, image/eps, application/vnd.ms-word, image/tiff, application/x-rar, application/vnd.oasis.opendocument.text, text/plain, application/x-jpg, application/dwg, application/jpg, drawing/x-dwg, application/vnd.oasis.opendocument.presentation, application/vnd.openxmlformats-officedocument.wordprocessingml.document, application/x-tiff.
|
11366
11227
|
"""
|
11367
11228
|
file: Upload!
|
11368
11229
|
|
@@ -12615,48 +12476,6 @@ type Mutation {
|
|
12615
12476
|
variantId: ID!
|
12616
12477
|
): ProductVariantImageBulkAssign
|
12617
12478
|
|
12618
|
-
"""Creates a new feature for either a product or a variant."""
|
12619
|
-
featureCreate(
|
12620
|
-
"""Fields required to create a feature"""
|
12621
|
-
input: FeatureCreateInput!
|
12622
|
-
): FeatureCreate @deprecated(reason: "Features will be removed on July 2, 2025.")
|
12623
|
-
|
12624
|
-
"""Updates a feature."""
|
12625
|
-
featureUpdate(
|
12626
|
-
"""ID of a feature to update."""
|
12627
|
-
id: ID!
|
12628
|
-
|
12629
|
-
"""Input required to update a feature."""
|
12630
|
-
input: FeatureInput!
|
12631
|
-
): FeatureUpdate @deprecated(reason: "Features will be removed on July 2, 2025.")
|
12632
|
-
|
12633
|
-
"""Deletes a feature."""
|
12634
|
-
featureDelete(
|
12635
|
-
"""ID of a feature to delete."""
|
12636
|
-
id: ID!
|
12637
|
-
): FeatureDelete @deprecated(reason: "Features will be removed on July 2, 2025.")
|
12638
|
-
|
12639
|
-
"""Creates a new product or variant feature on a product type."""
|
12640
|
-
productTypeFeatureCreate(
|
12641
|
-
"""Fields required to create a feature for a product type."""
|
12642
|
-
input: ProductTypeFeatureCreateInput!
|
12643
|
-
): ProductTypeFeatureCreate @deprecated(reason: "Features will be removed on July 2, 2025.")
|
12644
|
-
|
12645
|
-
"""Updates a product or variant feature on a product type."""
|
12646
|
-
productTypeFeatureUpdate(
|
12647
|
-
"""ID of the product type feature to update."""
|
12648
|
-
id: ID!
|
12649
|
-
|
12650
|
-
"""Fields required to update a feature for a product type."""
|
12651
|
-
input: ProductTypeFeatureInput!
|
12652
|
-
): ProductTypeFeatureUpdate @deprecated(reason: "Features will be removed on July 2, 2025.")
|
12653
|
-
|
12654
|
-
"""Deletes a product or variant feature on a product type."""
|
12655
|
-
productTypeFeatureDelete(
|
12656
|
-
"""ID of the product type feature to delete."""
|
12657
|
-
id: ID!
|
12658
|
-
): ProductTypeFeatureDelete @deprecated(reason: "Features will be removed on July 2, 2025.")
|
12659
|
-
|
12660
12479
|
"""Captures the authorized payment amount."""
|
12661
12480
|
paymentCapture(
|
12662
12481
|
"""Transaction amount."""
|
@@ -13624,7 +13443,7 @@ type Mutation {
|
|
13624
13443
|
"""
|
13625
13444
|
Determines whether the email sent out is catered to carriers instead of customers
|
13626
13445
|
"""
|
13627
|
-
vehicles: Boolean = false
|
13446
|
+
vehicles: Boolean = false @deprecated(reason: "This will be removed on September 26, 2025")
|
13628
13447
|
): CheckoutComplete
|
13629
13448
|
|
13630
13449
|
"""Create a new checkout."""
|
@@ -17817,113 +17636,6 @@ input ProductVariantImageBulkAssignInput {
|
|
17817
17636
|
transferImageOwnership: Boolean
|
17818
17637
|
}
|
17819
17638
|
|
17820
|
-
"""Creates a new feature for either a product or a variant."""
|
17821
|
-
type FeatureCreate {
|
17822
|
-
feature: Feature
|
17823
|
-
productErrors: [ProductError!]!
|
17824
|
-
}
|
17825
|
-
|
17826
|
-
"""Represents a single feature for either product or variant."""
|
17827
|
-
union Feature = ProductFeature | VariantFeature
|
17828
|
-
|
17829
|
-
input FeatureCreateInput {
|
17830
|
-
"""Name (key) of the feature."""
|
17831
|
-
name: String
|
17832
|
-
|
17833
|
-
"""Description (value) of the feature."""
|
17834
|
-
description: String
|
17835
|
-
|
17836
|
-
"""List of available options."""
|
17837
|
-
options: [String]
|
17838
|
-
|
17839
|
-
"""Feature type to assign to the feature."""
|
17840
|
-
featureType: FeatureTypeEnum
|
17841
|
-
|
17842
|
-
"""ID of the product or variant the feature belongs to."""
|
17843
|
-
id: ID!
|
17844
|
-
}
|
17845
|
-
|
17846
|
-
"""Updates a feature."""
|
17847
|
-
type FeatureUpdate {
|
17848
|
-
feature: Feature
|
17849
|
-
productErrors: [ProductError!]!
|
17850
|
-
}
|
17851
|
-
|
17852
|
-
input FeatureInput {
|
17853
|
-
"""Name (key) of the feature."""
|
17854
|
-
name: String
|
17855
|
-
|
17856
|
-
"""Description (value) of the feature."""
|
17857
|
-
description: String
|
17858
|
-
|
17859
|
-
"""List of available options."""
|
17860
|
-
options: [String]
|
17861
|
-
|
17862
|
-
"""Feature type to assign to the feature."""
|
17863
|
-
featureType: FeatureTypeEnum
|
17864
|
-
}
|
17865
|
-
|
17866
|
-
"""Deletes a feature."""
|
17867
|
-
type FeatureDelete {
|
17868
|
-
product: Product
|
17869
|
-
variant: ProductVariant
|
17870
|
-
productErrors: [ProductError!]!
|
17871
|
-
}
|
17872
|
-
|
17873
|
-
"""Creates a new product or variant feature on a product type."""
|
17874
|
-
type ProductTypeFeatureCreate {
|
17875
|
-
productType: ProductType
|
17876
|
-
productErrors: [ProductError!]!
|
17877
|
-
}
|
17878
|
-
|
17879
|
-
input ProductTypeFeatureCreateInput {
|
17880
|
-
"""Name (key) of the feature."""
|
17881
|
-
name: String
|
17882
|
-
|
17883
|
-
"""Description (value) of the feature."""
|
17884
|
-
description: String
|
17885
|
-
|
17886
|
-
"""List of available options."""
|
17887
|
-
options: [String]
|
17888
|
-
|
17889
|
-
"""Feature type to assign to the feature."""
|
17890
|
-
featureType: FeatureTypeEnum
|
17891
|
-
|
17892
|
-
"""ID of the product type for which to create the feature."""
|
17893
|
-
id: ID!
|
17894
|
-
|
17895
|
-
"""
|
17896
|
-
True if feature will be a variant feature, false if feature will be a product feature.
|
17897
|
-
"""
|
17898
|
-
isVariantFeature: Boolean!
|
17899
|
-
}
|
17900
|
-
|
17901
|
-
"""Updates a product or variant feature on a product type."""
|
17902
|
-
type ProductTypeFeatureUpdate {
|
17903
|
-
productType: ProductType
|
17904
|
-
productErrors: [ProductError!]!
|
17905
|
-
}
|
17906
|
-
|
17907
|
-
input ProductTypeFeatureInput {
|
17908
|
-
"""Name (key) of the feature."""
|
17909
|
-
name: String
|
17910
|
-
|
17911
|
-
"""Description (value) of the feature."""
|
17912
|
-
description: String
|
17913
|
-
|
17914
|
-
"""List of available options."""
|
17915
|
-
options: [String]
|
17916
|
-
|
17917
|
-
"""Feature type to assign to the feature."""
|
17918
|
-
featureType: FeatureTypeEnum
|
17919
|
-
}
|
17920
|
-
|
17921
|
-
"""Deletes a product or variant feature on a product type."""
|
17922
|
-
type ProductTypeFeatureDelete {
|
17923
|
-
productType: ProductType
|
17924
|
-
productErrors: [ProductError!]!
|
17925
|
-
}
|
17926
|
-
|
17927
17639
|
"""Captures the authorized payment amount."""
|
17928
17640
|
type PaymentCapture {
|
17929
17641
|
"""Updated payment."""
|