@nautical-commerce/graphql-schema 1.89.0-9-gba0c2d3b4 → 1.89.0

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
@@ -1791,14 +1791,10 @@ 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
1797
1794
  csv_export_products_success
1798
1795
  csv_export_failed
1799
- merchant_csv_export_products_success
1800
- merchant_csv_export_failed
1801
1796
  staff_order_confirmation
1797
+ account_staff_reset_password
1802
1798
  vendor_payout_confirmation
1803
1799
  pending_seller
1804
1800
  updated_status
@@ -2461,6 +2457,7 @@ type ProductVariant implements Node & ObjectWithMetadata {
2461
2457
 
2462
2458
  """Total quantity ordered."""
2463
2459
  quantityOrdered: Int
2460
+ features: [VariantFeature!] @deprecated(reason: "Features will be removed on July 2, 2025.")
2464
2461
 
2465
2462
  """
2466
2463
  List of product variant images. When 'strict_product_image_handling' is enabled:- Display only the images owned by the product variant owner.
@@ -2648,6 +2645,7 @@ type Product implements Node & ObjectWithMetadata {
2648
2645
 
2649
2646
  """Whether the product is published."""
2650
2647
  isPublished: Boolean!
2648
+ features: [ProductFeature!] @deprecated(reason: "Features will be removed on July 2, 2025.")
2651
2649
 
2652
2650
  """
2653
2651
  Product stock stats combining all variants in all warehouses. Requires MANAGE_PRODUCTS permission.
@@ -4610,6 +4608,7 @@ input ProductFilterInput {
4610
4608
  sellers: [ID]
4611
4609
  subStatus: ProductSubStatusEnum
4612
4610
  slug: [String!]
4611
+ features: FeatureFilterInput
4613
4612
  price: PriceRangeInput
4614
4613
  minimalPrice: PriceRangeInput
4615
4614
  createdAt: DateTimeRangeInput
@@ -4687,6 +4686,38 @@ enum ProductSubStatusEnum {
4687
4686
  APPROVED
4688
4687
  }
4689
4688
 
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
+
4690
4721
  input PriceRangeInput {
4691
4722
  """Price greater than or equal to."""
4692
4723
  gte: Float
@@ -4966,6 +4997,12 @@ type ProductType implements Node & ObjectWithMetadata {
4966
4997
  last: Int
4967
4998
  ): AttributeCountableConnection
4968
4999
 
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
+
4969
5006
  """Brand of the product"""
4970
5007
  model: String
4971
5008
 
@@ -5029,157 +5066,519 @@ input AttributeFilterInput {
5029
5066
  showExternal: Boolean
5030
5067
  }
5031
5068
 
5032
- enum AttributeInputTypeEnum {
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 {
5033
5090
  """Dropdown"""
5034
5091
  DROPDOWN
5035
5092
 
5036
5093
  """Multi Select"""
5037
5094
  MULTISELECT
5038
5095
 
5039
- """Date"""
5040
- DATE
5041
-
5042
- """Date Time"""
5043
- DATE_TIME
5044
-
5045
- """Rich Text"""
5046
- RICH_TEXT
5096
+ """Text"""
5097
+ TEXT
5098
+ }
5047
5099
 
5048
- """Plain Text"""
5049
- PLAIN_TEXT
5100
+ type ProductFeatureCountableConnection {
5101
+ """Pagination data for this connection."""
5102
+ pageInfo: PageInfo!
5103
+ edges: [ProductFeatureCountableEdge!]!
5050
5104
 
5051
- """Reference"""
5052
- REFERENCE
5105
+ """A total count of items in the collection."""
5106
+ totalCount: Int
5107
+ }
5053
5108
 
5054
- """Money"""
5055
- MONEY
5109
+ type ProductFeatureCountableEdge {
5110
+ """The item at the end of the edge."""
5111
+ node: ProductFeature!
5056
5112
 
5057
- """Boolean"""
5058
- BOOLEAN
5113
+ """A cursor for use in pagination."""
5114
+ cursor: String!
5115
+ }
5059
5116
 
5060
- """Numeric"""
5061
- NUMERIC
5117
+ """Represents a single product feature."""
5118
+ type ProductFeature implements Node {
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!
5062
5127
 
5063
- """File"""
5064
- FILE
5128
+ """The type that we expect to render the feature's values as."""
5129
+ featureType: FeatureTypeEnum!
5130
+ name: String!
5131
+ description: String!
5065
5132
 
5066
- """Swatch"""
5067
- SWATCH
5133
+ """Available options for this product feature"""
5134
+ options: [String!]
5135
+ product: Product!
5136
+ productTypeFeature: ProductTypeProductFeature
5068
5137
  }
5069
5138
 
5070
- """Represents a value of an attribute."""
5071
- type AttributeValue implements Node {
5139
+ """Represents app data."""
5140
+ type App implements Node & ObjectWithMetadata {
5072
5141
  """The ID of the object"""
5073
5142
  id: ID!
5074
- sortOrder: Int
5075
- tenant: Tenant!
5076
5143
 
5077
- """The seller that owns this attribute value"""
5078
- seller: Seller!
5144
+ """Name of the app."""
5145
+ name: String
5079
5146
 
5080
- """Name of a value displayed in the interface."""
5081
- name: String!
5147
+ """The date and time when the app was created."""
5148
+ created: DateTime
5082
5149
 
5083
- """Supporting information like color, links, etc."""
5084
- value: String!
5150
+ """Determine if app will be set active or not."""
5151
+ isActive: Boolean
5085
5152
 
5086
- """Internal representation of a value (unique per attribute)."""
5087
- slug: String!
5088
- attribute: Attribute!
5153
+ """List of the app's permissions."""
5154
+ permissions: [Permission!]
5089
5155
 
5090
- """
5091
- Populated if the attribute has date-time input_type, represent actual datetime for filtering
5092
- """
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
5156
+ """User associated with this app."""
5157
+ user: User
5158
+
5159
+ """Last 4 characters of the tokens."""
5160
+ tokens: [AppToken!]
5103
5161
 
5104
5162
  """
5105
- Populated if the attribute has date input_type, represent actual date for filtering
5163
+ List of private metadata items.Requires proper staff permissions to access.
5106
5164
  """
5107
- date: Date
5165
+ privateMetadata: [MetadataItem!]!
5108
5166
 
5109
- """Type of value (used only when `value` field is set)."""
5110
- type: AttributeValueType
5167
+ """List of public metadata items. Can be accessed without permissions."""
5168
+ metadata: [MetadataItem!]!
5111
5169
 
5112
- """The input type to use for entering attribute values in the dashboard."""
5113
- inputType: AttributeInputTypeEnum!
5114
- }
5170
+ """List of dashboard integrations for this app"""
5171
+ dashboardIntegrations: [AppDashboardIntegration!]
5115
5172
 
5116
- """Represents an uploaded file."""
5117
- type File {
5118
- """The URL of the file."""
5119
- url: String!
5120
- }
5173
+ """List of storefront integrations for this app"""
5174
+ storefrontIntegrations: [AppStorefrontIntegration!]
5121
5175
 
5122
- enum AttributeValueType {
5123
- COLOR
5124
- GRADIENT
5125
- URL
5126
- STRING
5176
+ """List of webhooks assigned to this app."""
5177
+ webhooks: [Webhook!]
5178
+
5179
+ """Version number of the app."""
5180
+ version: String
5181
+
5182
+ """Bearer token used to authenticate by thirdparty app."""
5183
+ accessToken: String
5127
5184
  }
5128
5185
 
5129
- type CollectionCountableConnection {
5130
- """Pagination data for this connection."""
5131
- pageInfo: PageInfo!
5132
- edges: [CollectionCountableEdge!]!
5186
+ """Represents a permission object in a friendly form."""
5187
+ type Permission {
5188
+ """Internal code for permission."""
5189
+ code: PermissionEnum!
5133
5190
 
5134
- """A total count of items in the collection."""
5135
- totalCount: Int
5191
+ """Describe action(s) allowed to do by permission."""
5192
+ name: String!
5136
5193
  }
5137
5194
 
5138
- type CollectionCountableEdge {
5139
- """The item at the end of the edge."""
5140
- node: Collection!
5195
+ enum PermissionEnum {
5196
+ MANAGE_USERS
5197
+ MANAGE_STAFF
5198
+ MANAGE_APPS
5199
+ MANAGE_DISCOUNTS
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
5221
+ }
5141
5222
 
5142
- """A cursor for use in pagination."""
5143
- cursor: String!
5223
+ """Represents token data."""
5224
+ type AppToken implements Node {
5225
+ """Name of the authenticated token."""
5226
+ name: String!
5227
+
5228
+ """Last 4 characters of the token."""
5229
+ authToken: String!
5230
+
5231
+ """The ID of the object"""
5232
+ id: ID!
5144
5233
  }
5145
5234
 
5146
- """Represents a collection of products."""
5147
- type Collection implements Node & ObjectWithMetadata {
5235
+ """Represents a dashboard integration for an App."""
5236
+ type AppDashboardIntegration implements Node {
5148
5237
  """The ID of the object"""
5149
5238
  id: ID!
5150
- publicationDate: Date
5151
5239
 
5152
5240
  """
5153
- List of private metadata items.Requires proper staff permissions to access.
5241
+ App this integration is for. This may be null for integrations that come from plugins.
5154
5242
  """
5155
- privateMetadata: [MetadataItem!]!
5243
+ app: App
5156
5244
 
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!
5245
+ """What context this integration should be rendered in"""
5246
+ context: AppDashboardIntegrationContextEnum!
5166
5247
 
5167
- """List of products in this collection."""
5168
- products(
5169
- """Filtering options for products."""
5170
- filter: ProductFilterInput
5248
+ """The URL to load for this integration"""
5249
+ iframeUrl: String!
5250
+ }
5171
5251
 
5172
- """Sort products."""
5173
- sortBy: ProductOrder
5252
+ enum AppDashboardIntegrationContextEnum {
5253
+ """Nautical order details page"""
5254
+ NAUTICAL_ORDER
5174
5255
 
5175
- """Return the elements in the list that come before the specified cursor."""
5176
- before: String
5256
+ """Seller order details page"""
5257
+ ORDER
5258
+ }
5177
5259
 
5178
- """Return the elements in the list that come after the specified cursor."""
5179
- after: String
5260
+ """Represents a storefront integration for an App."""
5261
+ type AppStorefrontIntegration implements Node {
5262
+ """The ID of the object"""
5263
+ id: ID!
5180
5264
 
5181
- """Return the first n elements from the list."""
5182
- first: Int
5265
+ """
5266
+ App this integration is for. This may be null for integrations that come from plugins.
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
5183
5582
 
5184
5583
  """Return the last n elements from the list."""
5185
5584
  last: Int
@@ -5244,6 +5643,7 @@ input ProductVariantFilterInput {
5244
5643
  customFields: [AttributeInput!]
5245
5644
  metadata: MetadataFilterInput
5246
5645
  privateMetadata: MetadataFilterInput
5646
+ features: FeatureFilterInput
5247
5647
  advancedSearch: ProductVariantSearchInput
5248
5648
  ids: [ID]
5249
5649
  productIds: [ID]
@@ -7501,34 +7901,6 @@ type UserPermission {
7501
7901
  ): [Group!]!
7502
7902
  }
7503
7903
 
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
-
7532
7904
  """Represents permission group data."""
7533
7905
  type Group implements Node {
7534
7906
  """The ID of the object"""
@@ -7540,339 +7912,130 @@ type Group implements Node {
7540
7912
 
7541
7913
  """List of group users"""
7542
7914
  users: [User!]!
7543
-
7544
- """
7545
- True, if the currently authenticated user has rights to manage a group.
7546
- """
7547
- userCanManage: Boolean!
7548
- }
7549
-
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
7915
+
7916
+ """
7917
+ True, if the currently authenticated user has rights to manage a group.
7918
+ """
7919
+ userCanManage: Boolean!
7764
7920
  }
7765
7921
 
7766
- """Represents app data."""
7767
- type App implements Node & ObjectWithMetadata {
7922
+ """History log of the customer."""
7923
+ type CustomerEvent implements Node {
7768
7924
  """The ID of the object"""
7769
7925
  id: ID!
7770
7926
 
7771
- """Name of the app."""
7772
- name: String
7927
+ """Date when event happened at in ISO 8601 format."""
7928
+ date: DateTime
7773
7929
 
7774
- """The date and time when the app was created."""
7775
- created: DateTime
7930
+ """Customer event type."""
7931
+ type: CustomerEventsEnum
7776
7932
 
7777
- """Determine if app will be set active or not."""
7778
- isActive: Boolean
7933
+ """User who performed the action."""
7934
+ user: User
7779
7935
 
7780
- """List of the app's permissions."""
7781
- permissions: [Permission!]
7936
+ """Content of the event."""
7937
+ message: String
7782
7938
 
7783
- """User associated with this app."""
7784
- user: User
7939
+ """Number of objects concerned by the event."""
7940
+ count: Int
7785
7941
 
7786
- """Last 4 characters of the tokens."""
7787
- tokens: [AppToken!]
7942
+ """The concerned order."""
7943
+ order: Order
7788
7944
 
7789
- """
7790
- List of private metadata items.Requires proper staff permissions to access.
7791
- """
7792
- privateMetadata: [MetadataItem!]!
7945
+ """The concerned order line."""
7946
+ orderLine: OrderLine
7793
7947
 
7794
- """List of public metadata items. Can be accessed without permissions."""
7795
- metadata: [MetadataItem!]!
7948
+ """The concerned nautical order."""
7949
+ nauticalOrder: NauticalOrder
7950
+ }
7796
7951
 
7797
- """List of dashboard integrations for this app"""
7798
- dashboardIntegrations: [AppDashboardIntegration!]
7952
+ enum CustomerEventsEnum {
7953
+ """The account was created"""
7954
+ ACCOUNT_CREATED
7799
7955
 
7800
- """List of storefront integrations for this app"""
7801
- storefrontIntegrations: [AppStorefrontIntegration!]
7956
+ """Password reset link was sent to the customer"""
7957
+ PASSWORD_RESET_LINK_SENT
7802
7958
 
7803
- """List of webhooks assigned to this app."""
7804
- webhooks: [Webhook!]
7959
+ """The account password was reset"""
7960
+ PASSWORD_RESET
7805
7961
 
7806
- """Version number of the app."""
7807
- version: String
7962
+ """The user requested to change the account's email address."""
7963
+ EMAIL_CHANGED_REQUEST
7808
7964
 
7809
- """Bearer token used to authenticate by thirdparty app."""
7810
- accessToken: String
7811
- }
7965
+ """The account password was changed"""
7966
+ PASSWORD_CHANGED
7812
7967
 
7813
- """Represents token data."""
7814
- type AppToken implements Node {
7815
- """Name of the authenticated token."""
7816
- name: String!
7968
+ """The account email address was changed"""
7969
+ EMAIL_CHANGED
7817
7970
 
7818
- """Last 4 characters of the token."""
7819
- authToken: String!
7971
+ """An order was placed"""
7972
+ PLACED_ORDER
7820
7973
 
7821
- """The ID of the object"""
7822
- id: ID!
7823
- }
7974
+ """A note was added"""
7975
+ NOTE_ADDED_TO_ORDER
7824
7976
 
7825
- """Represents a dashboard integration for an App."""
7826
- type AppDashboardIntegration implements Node {
7827
- """The ID of the object"""
7828
- id: ID!
7977
+ """A digital good was downloaded"""
7978
+ DIGITAL_LINK_DOWNLOADED
7829
7979
 
7830
- """
7831
- App this integration is for. This may be null for integrations that come from plugins.
7832
- """
7833
- app: App
7980
+ """A customer was deleted"""
7981
+ CUSTOMER_DELETED
7834
7982
 
7835
- """What context this integration should be rendered in"""
7836
- context: AppDashboardIntegrationContextEnum!
7983
+ """A customer's name was edited"""
7984
+ NAME_ASSIGNED
7837
7985
 
7838
- """The URL to load for this integration"""
7839
- iframeUrl: String!
7986
+ """A customer's email address was edited"""
7987
+ EMAIL_ASSIGNED
7988
+
7989
+ """A note was added to the customer"""
7990
+ NOTE_ADDED
7840
7991
  }
7841
7992
 
7842
- enum AppDashboardIntegrationContextEnum {
7843
- """Nautical order details page"""
7844
- NAUTICAL_ORDER
7993
+ """
7994
+ Represents a payment source stored for user in payment gateway, such as credit card.
7995
+ """
7996
+ type PaymentSource {
7997
+ """Stored payment method ID."""
7998
+ id: String!
7845
7999
 
7846
- """Seller order details page"""
7847
- ORDER
8000
+ """Payment gateway name."""
8001
+ gateway: String!
8002
+
8003
+ """Stored credit card details if available."""
8004
+ creditCardInfo: CreditCard
7848
8005
  }
7849
8006
 
7850
- """Represents a storefront integration for an App."""
7851
- type AppStorefrontIntegration implements Node {
7852
- """The ID of the object"""
7853
- id: ID!
8007
+ type WishlistCountableConnection {
8008
+ """Pagination data for this connection."""
8009
+ pageInfo: PageInfo!
8010
+ edges: [WishlistCountableEdge!]!
7854
8011
 
7855
- """
7856
- App this integration is for. This may be null for integrations that come from plugins.
7857
- """
7858
- app: App
8012
+ """A total count of items in the collection."""
8013
+ totalCount: Int
8014
+ }
7859
8015
 
7860
- """What context this integration should be rendered in"""
7861
- context: AppStorefrontIntegrationContextEnum!
8016
+ type WishlistCountableEdge {
8017
+ """The item at the end of the edge."""
8018
+ node: Wishlist!
7862
8019
 
7863
- """JSON string of params to pass to the remote component"""
7864
- params: String!
8020
+ """A cursor for use in pagination."""
8021
+ cursor: String!
8022
+ }
7865
8023
 
7866
- """The URL to the remote component to load"""
7867
- componentUrl: String!
8024
+ input WishlistItemInputFilter {
8025
+ expiry: DateRangeInput
7868
8026
  }
7869
8027
 
7870
- enum AppStorefrontIntegrationContextEnum {
7871
- """Product details page"""
7872
- PRODUCT_DETAILS
8028
+ input WishlistItemSortingInput {
8029
+ """Specifies the direction in which to sort products."""
8030
+ direction: OrderDirection!
7873
8031
 
7874
- """Sitewide"""
7875
- SITE
8032
+ """Sort wishlist items by the selected field."""
8033
+ field: WishlistItemSortField!
8034
+ }
8035
+
8036
+ enum WishlistItemSortField {
8037
+ """Sort wishlist items by created at."""
8038
+ CREATED_AT
7876
8039
  }
7877
8040
 
7878
8041
  type WebhookEventLogCountableConnection {
@@ -7965,8 +8128,8 @@ type WebhookJob implements Node & Job {
7965
8128
  requestMeta: JSONString
7966
8129
  source: String
7967
8130
  type: GenericWebhookTransactionType
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")
8131
+ vendorEntityLink: String
8132
+ marketplaceEntityLink: String
7970
8133
  seller: Seller
7971
8134
  }
7972
8135
 
@@ -8104,7 +8267,7 @@ enum GenericWebhookEventsEnum {
8104
8267
  SELLER_CREATE
8105
8268
 
8106
8269
  """A payload for vehicles was received"""
8107
- VEHICLE_PAYLOAD @deprecated(reason: "This will be removed on September 26, 2025")
8270
+ VEHICLE_PAYLOAD
8108
8271
 
8109
8272
  """A payload for item shipment that was received"""
8110
8273
  ITEM_SHIP_NOTIFY
@@ -9935,30 +10098,18 @@ enum EmailEventMessageType {
9935
10098
  """Account Set Staff Password"""
9936
10099
  ACCOUNT_SET_STAFF_PASSWORD
9937
10100
 
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
-
9947
10101
  """Csv Export Products Success"""
9948
10102
  CSV_EXPORT_PRODUCTS_SUCCESS
9949
10103
 
9950
10104
  """Csv Export Failed"""
9951
10105
  CSV_EXPORT_FAILED
9952
10106
 
9953
- """Merchant Csv Export Products Success"""
9954
- MERCHANT_CSV_EXPORT_PRODUCTS_SUCCESS
9955
-
9956
- """Merchant Csv Export Failed"""
9957
- MERCHANT_CSV_EXPORT_FAILED
9958
-
9959
10107
  """Staff Order Confirmation"""
9960
10108
  STAFF_ORDER_CONFIRMATION
9961
10109
 
10110
+ """Account Staff Reset Password"""
10111
+ ACCOUNT_STAFF_RESET_PASSWORD
10112
+
9962
10113
  """Vendor Payout Confirmation"""
9963
10114
  VENDOR_PAYOUT_CONFIRMATION
9964
10115
 
@@ -10073,30 +10224,18 @@ enum NotifyEventTypeEnum {
10073
10224
  """Account Set Staff Password"""
10074
10225
  ACCOUNT_SET_STAFF_PASSWORD
10075
10226
 
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
-
10085
10227
  """Csv Export Products Success"""
10086
10228
  CSV_EXPORT_PRODUCTS_SUCCESS
10087
10229
 
10088
10230
  """Csv Export Failed"""
10089
10231
  CSV_EXPORT_FAILED
10090
10232
 
10091
- """Merchant Csv Export Products Success"""
10092
- MERCHANT_CSV_EXPORT_PRODUCTS_SUCCESS
10093
-
10094
- """Merchant Csv Export Failed"""
10095
- MERCHANT_CSV_EXPORT_FAILED
10096
-
10097
10233
  """Staff Order Confirmation"""
10098
10234
  STAFF_ORDER_CONFIRMATION
10099
10235
 
10236
+ """Account Staff Reset Password"""
10237
+ ACCOUNT_STAFF_RESET_PASSWORD
10238
+
10100
10239
  """Vendor Payout Confirmation"""
10101
10240
  VENDOR_PAYOUT_CONFIRMATION
10102
10241
 
@@ -11183,7 +11322,7 @@ enum SSOProviderEnum {
11183
11322
  KEYCLOAK
11184
11323
  }
11185
11324
 
11186
- union _Entity = WishlistItem | Wishlist | User | Address | ProductVariant | Product | Category | ProductType | Collection | ProductImage | ProductStatusLog | Group | App
11325
+ union _Entity = WishlistItem | Wishlist | User | Address | ProductVariant | Product | Category | ProductType | App | Collection | ProductImage | ProductStatusLog | Group
11187
11326
 
11188
11327
  scalar _Any
11189
11328
 
@@ -11223,7 +11362,7 @@ type Mutation {
11223
11362
  description: String
11224
11363
 
11225
11364
  """
11226
- Used when uploading a new document or file in a multipart request that does not exist in the system already. Supported file types: application/zip, application/vnd.openxmlformats-officedocument.presentationml.presentation, application/vnd.openxmlformats-officedocument.spreadsheetml.sheet, text/csv, text/svg, application/x-zip-compressed, text/x-pdf, image/bmp, image/vnd.dwg, text/x-comma-separated-values, text/comma-separated-values, application/vnd.ms-powerpoint, image/tiff, application/jpg, image/x-bmp, application/vnd.ms-excel, text/rtf, image/x-dwg, application/postscript, application/x-eps, image/svg, application/x-rar-compressed, image/jpeg, image/webp, application/excel, application/x-dwg, pplication/vnd.rar, image/gif, application/gzipped, application/rtf, application/tif, text/plain, application/msword, image/x-ms-bmp, application/tiff, application/dxf, application/gzip, application/x-tiff, application/x-tif, image/svg+xml, application/vnd.oasis.opendocument.text, image/tif, image/eps, application/acrobat, application/svg+xml, image/dxf, application/x-gzip, image/x-tiff, application/vnd.pdf, application/vnd.openxmlformats-officedocument.presentationml.slideshow, application/vnd.ms-word, application/x-rar, application/vnd.oasis.opendocument.presentation, image/heif-sequence, application/acad, application/x-jpg, application/csv, application/x-rtf, image/x-dxf, application/pdf, image/x-eps, text/x-csv, application/x-pdf, image/jpg, application/eps, image/heic, text/svg-xml, application/vnd.openxmlformats-officedocument.wordprocessingml.document, application/x-dxf, application/vnd.oasis.opendocument.spreadsheet, image/heif, application/gzip-compressed, image/x-tif, image/heic-sequence, application/x-autocad, application/x-acad, drawing/dwg, drawing/x-dwf, drawing/x-dwg, image/png, application/x-tar, text/pdf, application/x-csv, application/dwg.
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/png, application/zip, image/webp, image/svg+xml, application/x-autocad, image/x-dwg, application/x-tar, application/x-rar-compressed, image/vnd.dwg, image/tiff, application/vnd.openxmlformats-officedocument.spreadsheetml.sheet, text/svg-xml, application/x-rtf, text/x-comma-separated-values, application/x-tif, application/csv, application/dxf, application/vnd.openxmlformats-officedocument.presentationml.presentation, image/bmp, application/acrobat, text/x-csv, application/x-gzip, text/rtf, image/x-tif, image/x-bmp, image/x-eps, drawing/x-dwf, application/jpg, application/eps, image/jpeg, application/pdf, pplication/vnd.rar, application/acad, application/x-dwg, image/dxf, image/heic, application/x-dxf, text/csv, image/svg, application/vnd.ms-excel, image/eps, application/x-zip-compressed, application/x-pdf, application/vnd.openxmlformats-officedocument.presentationml.slideshow, image/x-ms-bmp, application/vnd.oasis.opendocument.presentation, image/heic-sequence, image/x-tiff, text/svg, image/x-dxf, application/tif, application/vnd.oasis.opendocument.text, application/vnd.ms-powerpoint, application/vnd.pdf, drawing/x-dwg, image/jpg, application/vnd.oasis.opendocument.spreadsheet, application/msword, image/heif, application/dwg, text/pdf, application/tiff, image/gif, application/vnd.ms-word, application/x-eps, text/comma-separated-values, text/x-pdf, image/tif, application/x-rar, application/excel, application/rtf, application/x-csv, image/heif-sequence, application/gzip, application/postscript, drawing/dwg, text/plain, application/gzip-compressed, application/vnd.openxmlformats-officedocument.wordprocessingml.document, application/x-tiff, application/x-jpg, application/svg+xml, application/gzipped, application/x-acad.
11227
11366
  """
11228
11367
  file: Upload!
11229
11368
 
@@ -12476,6 +12615,48 @@ type Mutation {
12476
12615
  variantId: ID!
12477
12616
  ): ProductVariantImageBulkAssign
12478
12617
 
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
+
12479
12660
  """Captures the authorized payment amount."""
12480
12661
  paymentCapture(
12481
12662
  """Transaction amount."""
@@ -13443,7 +13624,7 @@ type Mutation {
13443
13624
  """
13444
13625
  Determines whether the email sent out is catered to carriers instead of customers
13445
13626
  """
13446
- vehicles: Boolean = false @deprecated(reason: "This will be removed on September 26, 2025")
13627
+ vehicles: Boolean = false
13447
13628
  ): CheckoutComplete
13448
13629
 
13449
13630
  """Create a new checkout."""
@@ -17636,6 +17817,113 @@ input ProductVariantImageBulkAssignInput {
17636
17817
  transferImageOwnership: Boolean
17637
17818
  }
17638
17819
 
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
+
17639
17927
  """Captures the authorized payment amount."""
17640
17928
  type PaymentCapture {
17641
17929
  """Updated payment."""