@nautical-commerce/graphql-schema 1.89.0-19-g47e00d269 → 1.89.0-2-g231b59db6

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.
@@ -2566,7 +2563,6 @@ type Product implements Node & ObjectWithMetadata {
2566
2563
  isPriceOverrideAllowed: Boolean!
2567
2564
  isShippingRequired: Boolean!
2568
2565
  isDigital: Boolean!
2569
- productSource: ProductProductSource!
2570
2566
 
2571
2567
  """
2572
2568
  List of private metadata items.Requires proper staff permissions to access.
@@ -2649,6 +2645,7 @@ type Product implements Node & ObjectWithMetadata {
2649
2645
 
2650
2646
  """Whether the product is published."""
2651
2647
  isPublished: Boolean!
2648
+ features: [ProductFeature!] @deprecated(reason: "Features will be removed on July 2, 2025.")
2652
2649
 
2653
2650
  """
2654
2651
  Product stock stats combining all variants in all warehouses. Requires MANAGE_PRODUCTS permission.
@@ -4611,6 +4608,7 @@ input ProductFilterInput {
4611
4608
  sellers: [ID]
4612
4609
  subStatus: ProductSubStatusEnum
4613
4610
  slug: [String!]
4611
+ features: FeatureFilterInput
4614
4612
  price: PriceRangeInput
4615
4613
  minimalPrice: PriceRangeInput
4616
4614
  createdAt: DateTimeRangeInput
@@ -4688,6 +4686,38 @@ enum ProductSubStatusEnum {
4688
4686
  APPROVED
4689
4687
  }
4690
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
+
4691
4721
  input PriceRangeInput {
4692
4722
  """Price greater than or equal to."""
4693
4723
  gte: Float
@@ -4967,6 +4997,12 @@ type ProductType implements Node & ObjectWithMetadata {
4967
4997
  last: Int
4968
4998
  ): AttributeCountableConnection
4969
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
+
4970
5006
  """Brand of the product"""
4971
5007
  model: String
4972
5008
 
@@ -5030,157 +5066,519 @@ input AttributeFilterInput {
5030
5066
  showExternal: Boolean
5031
5067
  }
5032
5068
 
5033
- 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 {
5034
5090
  """Dropdown"""
5035
5091
  DROPDOWN
5036
5092
 
5037
5093
  """Multi Select"""
5038
5094
  MULTISELECT
5039
5095
 
5040
- """Date"""
5041
- DATE
5042
-
5043
- """Date Time"""
5044
- DATE_TIME
5045
-
5046
- """Rich Text"""
5047
- RICH_TEXT
5096
+ """Text"""
5097
+ TEXT
5098
+ }
5048
5099
 
5049
- """Plain Text"""
5050
- PLAIN_TEXT
5100
+ type ProductFeatureCountableConnection {
5101
+ """Pagination data for this connection."""
5102
+ pageInfo: PageInfo!
5103
+ edges: [ProductFeatureCountableEdge!]!
5051
5104
 
5052
- """Reference"""
5053
- REFERENCE
5105
+ """A total count of items in the collection."""
5106
+ totalCount: Int
5107
+ }
5054
5108
 
5055
- """Money"""
5056
- MONEY
5109
+ type ProductFeatureCountableEdge {
5110
+ """The item at the end of the edge."""
5111
+ node: ProductFeature!
5057
5112
 
5058
- """Boolean"""
5059
- BOOLEAN
5113
+ """A cursor for use in pagination."""
5114
+ cursor: String!
5115
+ }
5060
5116
 
5061
- """Numeric"""
5062
- 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!
5063
5127
 
5064
- """File"""
5065
- FILE
5128
+ """The type that we expect to render the feature's values as."""
5129
+ featureType: FeatureTypeEnum!
5130
+ name: String!
5131
+ description: String!
5066
5132
 
5067
- """Swatch"""
5068
- SWATCH
5133
+ """Available options for this product feature"""
5134
+ options: [String!]
5135
+ product: Product!
5136
+ productTypeFeature: ProductTypeProductFeature
5069
5137
  }
5070
5138
 
5071
- """Represents a value of an attribute."""
5072
- type AttributeValue implements Node {
5139
+ """Represents app data."""
5140
+ type App implements Node & ObjectWithMetadata {
5073
5141
  """The ID of the object"""
5074
5142
  id: ID!
5075
- sortOrder: Int
5076
- tenant: Tenant!
5077
5143
 
5078
- """The seller that owns this attribute value"""
5079
- seller: Seller!
5144
+ """Name of the app."""
5145
+ name: String
5080
5146
 
5081
- """Name of a value displayed in the interface."""
5082
- name: String!
5147
+ """The date and time when the app was created."""
5148
+ created: DateTime
5083
5149
 
5084
- """Supporting information like color, links, etc."""
5085
- value: String!
5150
+ """Determine if app will be set active or not."""
5151
+ isActive: Boolean
5086
5152
 
5087
- """Internal representation of a value (unique per attribute)."""
5088
- slug: String!
5089
- attribute: Attribute!
5153
+ """List of the app's permissions."""
5154
+ permissions: [Permission!]
5090
5155
 
5091
- """
5092
- Populated if the attribute has date-time input_type, represent actual datetime for filtering
5093
- """
5094
- dateTime: DateTime
5095
- plainText: String!
5096
- richText: String!
5097
- currency: String!
5098
- amount: Decimal!
5099
- money: Money
5100
- reference: String!
5101
- boolean: Boolean!
5102
- file: File
5103
- fileUrl: String
5156
+ """User associated with this app."""
5157
+ user: User
5158
+
5159
+ """Last 4 characters of the tokens."""
5160
+ tokens: [AppToken!]
5104
5161
 
5105
5162
  """
5106
- 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.
5107
5164
  """
5108
- date: Date
5165
+ privateMetadata: [MetadataItem!]!
5109
5166
 
5110
- """Type of value (used only when `value` field is set)."""
5111
- type: AttributeValueType
5167
+ """List of public metadata items. Can be accessed without permissions."""
5168
+ metadata: [MetadataItem!]!
5112
5169
 
5113
- """The input type to use for entering attribute values in the dashboard."""
5114
- inputType: AttributeInputTypeEnum!
5115
- }
5170
+ """List of dashboard integrations for this app"""
5171
+ dashboardIntegrations: [AppDashboardIntegration!]
5116
5172
 
5117
- """Represents an uploaded file."""
5118
- type File {
5119
- """The URL of the file."""
5120
- url: String!
5121
- }
5173
+ """List of storefront integrations for this app"""
5174
+ storefrontIntegrations: [AppStorefrontIntegration!]
5122
5175
 
5123
- enum AttributeValueType {
5124
- COLOR
5125
- GRADIENT
5126
- URL
5127
- 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
5128
5184
  }
5129
5185
 
5130
- type CollectionCountableConnection {
5131
- """Pagination data for this connection."""
5132
- pageInfo: PageInfo!
5133
- edges: [CollectionCountableEdge!]!
5186
+ """Represents a permission object in a friendly form."""
5187
+ type Permission {
5188
+ """Internal code for permission."""
5189
+ code: PermissionEnum!
5134
5190
 
5135
- """A total count of items in the collection."""
5136
- totalCount: Int
5191
+ """Describe action(s) allowed to do by permission."""
5192
+ name: String!
5137
5193
  }
5138
5194
 
5139
- type CollectionCountableEdge {
5140
- """The item at the end of the edge."""
5141
- 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
+ }
5142
5222
 
5143
- """A cursor for use in pagination."""
5144
- 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!
5145
5233
  }
5146
5234
 
5147
- """Represents a collection of products."""
5148
- type Collection implements Node & ObjectWithMetadata {
5235
+ """Represents a dashboard integration for an App."""
5236
+ type AppDashboardIntegration implements Node {
5149
5237
  """The ID of the object"""
5150
5238
  id: ID!
5151
- publicationDate: Date
5152
5239
 
5153
5240
  """
5154
- 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.
5155
5242
  """
5156
- privateMetadata: [MetadataItem!]!
5243
+ app: App
5157
5244
 
5158
- """List of public metadata items. Can be accessed without permissions."""
5159
- metadata: [MetadataItem!]!
5160
- description: String!
5161
- descriptionHtml: String!
5162
- seoTitle: String
5163
- seoDescription: String
5164
- isVisible: Boolean!
5165
- name: String!
5166
- slug: String!
5245
+ """What context this integration should be rendered in"""
5246
+ context: AppDashboardIntegrationContextEnum!
5167
5247
 
5168
- """List of products in this collection."""
5169
- products(
5170
- """Filtering options for products."""
5171
- filter: ProductFilterInput
5248
+ """The URL to load for this integration"""
5249
+ iframeUrl: String!
5250
+ }
5172
5251
 
5173
- """Sort products."""
5174
- sortBy: ProductOrder
5252
+ enum AppDashboardIntegrationContextEnum {
5253
+ """Nautical order details page"""
5254
+ NAUTICAL_ORDER
5175
5255
 
5176
- """Return the elements in the list that come before the specified cursor."""
5177
- before: String
5256
+ """Seller order details page"""
5257
+ ORDER
5258
+ }
5178
5259
 
5179
- """Return the elements in the list that come after the specified cursor."""
5180
- after: String
5260
+ """Represents a storefront integration for an App."""
5261
+ type AppStorefrontIntegration implements Node {
5262
+ """The ID of the object"""
5263
+ id: ID!
5181
5264
 
5182
- """Return the first n elements from the list."""
5183
- 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
5184
5582
 
5185
5583
  """Return the last n elements from the list."""
5186
5584
  last: Int
@@ -5245,6 +5643,7 @@ input ProductVariantFilterInput {
5245
5643
  customFields: [AttributeInput!]
5246
5644
  metadata: MetadataFilterInput
5247
5645
  privateMetadata: MetadataFilterInput
5646
+ features: FeatureFilterInput
5248
5647
  advancedSearch: ProductVariantSearchInput
5249
5648
  ids: [ID]
5250
5649
  productIds: [ID]
@@ -6868,21 +7267,6 @@ enum ProductSubStatus {
6868
7267
  APPROVED
6869
7268
  }
6870
7269
 
6871
- """An enumeration."""
6872
- enum ProductProductSource {
6873
- """API"""
6874
- API
6875
-
6876
- """Dashboard"""
6877
- DASHBOARD
6878
-
6879
- """Shopify"""
6880
- SHOPIFY
6881
-
6882
- """CSV"""
6883
- CSV
6884
- }
6885
-
6886
7270
  """Represents availability of a product in the storefront."""
6887
7271
  type ProductPricingInfo {
6888
7272
  """Whether it is in sale or not."""
@@ -7517,34 +7901,6 @@ type UserPermission {
7517
7901
  ): [Group!]!
7518
7902
  }
7519
7903
 
7520
- enum PermissionEnum {
7521
- MANAGE_USERS
7522
- MANAGE_STAFF
7523
- MANAGE_APPS
7524
- MANAGE_DISCOUNTS
7525
- MANAGE_DOCUMENTS
7526
- MANAGE_EMAILS
7527
- MANAGE_PLUGINS
7528
- MANAGE_STOREFRONTS
7529
- MANAGE_MENUS
7530
- MANAGE_ORDERS
7531
- MANAGE_DRAFT_AND_QUOTE_ORDERS
7532
- MANAGE_FULFILLMENTS
7533
- MANAGE_PRODUCTS
7534
- MANAGE_INVENTORY
7535
- MANAGE_PRODUCT_TYPES_AND_ATTRIBUTES
7536
- MANAGE_SHIPPING
7537
- MANAGE_SETTINGS
7538
- MANAGE_CHECKOUTS
7539
- MANAGE_AGREEMENTS
7540
- MANAGE_MARKETPLACE
7541
- MANAGE_MARKETPLACE_CONFIGURATION
7542
- MANAGE_PAYOUTS
7543
- MANAGE_PAYMENTS
7544
- MANAGE_REFUNDS
7545
- MANAGE_COLLECTIONS
7546
- }
7547
-
7548
7904
  """Represents permission group data."""
7549
7905
  type Group implements Node {
7550
7906
  """The ID of the object"""
@@ -7563,332 +7919,123 @@ type Group implements Node {
7563
7919
  userCanManage: Boolean!
7564
7920
  }
7565
7921
 
7566
- """Represents a permission object in a friendly form."""
7567
- type Permission {
7568
- """Internal code for permission."""
7569
- code: PermissionEnum!
7570
-
7571
- """Describe action(s) allowed to do by permission."""
7572
- name: String!
7573
- }
7574
-
7575
7922
  """History log of the customer."""
7576
- type CustomerEvent implements Node {
7577
- """The ID of the object"""
7578
- id: ID!
7579
-
7580
- """Date when event happened at in ISO 8601 format."""
7581
- date: DateTime
7582
-
7583
- """Customer event type."""
7584
- type: CustomerEventsEnum
7585
-
7586
- """User who performed the action."""
7587
- user: User
7588
-
7589
- """Content of the event."""
7590
- message: String
7591
-
7592
- """Number of objects concerned by the event."""
7593
- count: Int
7594
-
7595
- """The concerned order."""
7596
- order: Order
7597
-
7598
- """The concerned order line."""
7599
- orderLine: OrderLine
7600
-
7601
- """The concerned nautical order."""
7602
- nauticalOrder: NauticalOrder
7603
- }
7604
-
7605
- enum CustomerEventsEnum {
7606
- """The account was created"""
7607
- ACCOUNT_CREATED
7608
-
7609
- """Password reset link was sent to the customer"""
7610
- PASSWORD_RESET_LINK_SENT
7611
-
7612
- """The account password was reset"""
7613
- PASSWORD_RESET
7614
-
7615
- """The user requested to change the account's email address."""
7616
- EMAIL_CHANGED_REQUEST
7617
-
7618
- """The account password was changed"""
7619
- PASSWORD_CHANGED
7620
-
7621
- """The account email address was changed"""
7622
- EMAIL_CHANGED
7623
-
7624
- """An order was placed"""
7625
- PLACED_ORDER
7626
-
7627
- """A note was added"""
7628
- NOTE_ADDED_TO_ORDER
7629
-
7630
- """A digital good was downloaded"""
7631
- DIGITAL_LINK_DOWNLOADED
7632
-
7633
- """A customer was deleted"""
7634
- CUSTOMER_DELETED
7635
-
7636
- """A customer's name was edited"""
7637
- NAME_ASSIGNED
7638
-
7639
- """A customer's email address was edited"""
7640
- EMAIL_ASSIGNED
7641
-
7642
- """A note was added to the customer"""
7643
- NOTE_ADDED
7644
- }
7645
-
7646
- """
7647
- Represents a payment source stored for user in payment gateway, such as credit card.
7648
- """
7649
- type PaymentSource {
7650
- """Stored payment method ID."""
7651
- id: String!
7652
-
7653
- """Payment gateway name."""
7654
- gateway: String!
7655
-
7656
- """Stored credit card details if available."""
7657
- creditCardInfo: CreditCard
7658
- }
7659
-
7660
- type WishlistCountableConnection {
7661
- """Pagination data for this connection."""
7662
- pageInfo: PageInfo!
7663
- edges: [WishlistCountableEdge!]!
7664
-
7665
- """A total count of items in the collection."""
7666
- totalCount: Int
7667
- }
7668
-
7669
- type WishlistCountableEdge {
7670
- """The item at the end of the edge."""
7671
- node: Wishlist!
7672
-
7673
- """A cursor for use in pagination."""
7674
- cursor: String!
7675
- }
7676
-
7677
- input WishlistItemInputFilter {
7678
- expiry: DateRangeInput
7679
- }
7680
-
7681
- input WishlistItemSortingInput {
7682
- """Specifies the direction in which to sort products."""
7683
- direction: OrderDirection!
7684
-
7685
- """Sort wishlist items by the selected field."""
7686
- field: WishlistItemSortField!
7687
- }
7688
-
7689
- enum WishlistItemSortField {
7690
- """Sort wishlist items by created at."""
7691
- CREATED_AT
7692
- }
7693
-
7694
- """Webhook."""
7695
- type Webhook implements Node {
7696
- name: String!
7697
- targetUrl: String!
7698
- isActive: Boolean!
7699
- secretKey: String
7700
- connectionString: String
7701
- queueName: String
7702
-
7703
- """The ID of the object"""
7704
- id: ID!
7705
-
7706
- """List of webhook events."""
7707
- events: [WebhookEvent!]!
7708
- app: App!
7709
- }
7710
-
7711
- """Webhook event."""
7712
- type WebhookEvent {
7713
- """Internal name of the event type."""
7714
- eventType: WebhookEventTypeEnum!
7715
-
7716
- """Display name of the event."""
7717
- name: String!
7718
- }
7719
-
7720
- """An enumeration."""
7721
- enum WebhookEventTypeEnum {
7722
- ANY_EVENTS
7723
- AGREEMENT_CREATED
7724
- AGREEMENT_DELETED
7725
- AGREEMENT_UPDATED
7726
- CATEGORY_CREATED
7727
- CATEGORY_DELETED
7728
- CATEGORY_UPDATED
7729
- CHECKOUT_CREATED
7730
- CHECKOUT_UPDATED
7731
- COLLECTION_CREATED
7732
- COLLECTION_DELETED
7733
- COLLECTION_UPDATED
7734
- CUSTOMER_CREATED
7735
- CUSTOMER_UPDATED
7736
- CUSTOMER_DELETED
7737
- FULFILLMENT_CREATED
7738
- FULFILLMENT_UPDATED
7739
- INVOICE_DELETED
7740
- INVOICE_REQUESTED
7741
- INVOICE_SENT
7742
- NAUTICAL_ORDER_CANCELLED
7743
- NAUTICAL_ORDER_CREATED
7744
- NAUTICAL_ORDER_FULFILLED
7745
- NAUTICAL_ORDER_FULLY_PAID
7746
- NAUTICAL_ORDER_UPDATED
7747
- ORDER_CANCELLED
7748
- ORDER_CREATED
7749
- ORDER_FULFILLED
7750
- ORDER_FULLY_PAID
7751
- ORDER_UPDATED
7752
- PAYMENT_CREATED
7753
- PAYMENT_UPDATED
7754
- PAYOUT_CREATED
7755
- PAYOUT_UPDATED
7756
- PAYOUT_DELETED
7757
- PRODUCT_CREATED
7758
- PRODUCT_DELETED
7759
- PRODUCT_UPDATED
7760
- REFUND_CREATED
7761
- REFUND_DELETED
7762
- REFUND_UPDATED
7763
- SELLER_CREATED
7764
- SELLER_UPDATED
7765
- SELLER_AGREEMENT_ACKNOWLEDGED
7766
- SELLER_AGREEMENT_DECLINED
7767
- VARIANT_CREATED
7768
- VARIANT_DELETED
7769
- VARIANT_UPDATED
7770
- STOCK_CREATED
7771
- STOCK_DELETED
7772
- STOCK_UPDATED
7773
- STOCK_ALLOCATED
7774
- STOCK_DEALLOCATED
7775
- VENDOR_PAYOUT_CREATED
7776
- VENDOR_PAYOUT_UPDATED
7777
- WAREHOUSE_CREATED
7778
- WAREHOUSE_DELETED
7779
- WAREHOUSE_UPDATED
7780
- }
7781
-
7782
- """Represents app data."""
7783
- type App implements Node & ObjectWithMetadata {
7923
+ type CustomerEvent implements Node {
7784
7924
  """The ID of the object"""
7785
7925
  id: ID!
7786
7926
 
7787
- """Name of the app."""
7788
- name: String
7927
+ """Date when event happened at in ISO 8601 format."""
7928
+ date: DateTime
7789
7929
 
7790
- """The date and time when the app was created."""
7791
- created: DateTime
7930
+ """Customer event type."""
7931
+ type: CustomerEventsEnum
7792
7932
 
7793
- """Determine if app will be set active or not."""
7794
- isActive: Boolean
7933
+ """User who performed the action."""
7934
+ user: User
7795
7935
 
7796
- """List of the app's permissions."""
7797
- permissions: [Permission!]
7936
+ """Content of the event."""
7937
+ message: String
7798
7938
 
7799
- """User associated with this app."""
7800
- user: User
7939
+ """Number of objects concerned by the event."""
7940
+ count: Int
7801
7941
 
7802
- """Last 4 characters of the tokens."""
7803
- tokens: [AppToken!]
7942
+ """The concerned order."""
7943
+ order: Order
7804
7944
 
7805
- """
7806
- List of private metadata items.Requires proper staff permissions to access.
7807
- """
7808
- privateMetadata: [MetadataItem!]!
7945
+ """The concerned order line."""
7946
+ orderLine: OrderLine
7809
7947
 
7810
- """List of public metadata items. Can be accessed without permissions."""
7811
- metadata: [MetadataItem!]!
7948
+ """The concerned nautical order."""
7949
+ nauticalOrder: NauticalOrder
7950
+ }
7812
7951
 
7813
- """List of dashboard integrations for this app"""
7814
- dashboardIntegrations: [AppDashboardIntegration!]
7952
+ enum CustomerEventsEnum {
7953
+ """The account was created"""
7954
+ ACCOUNT_CREATED
7815
7955
 
7816
- """List of storefront integrations for this app"""
7817
- storefrontIntegrations: [AppStorefrontIntegration!]
7956
+ """Password reset link was sent to the customer"""
7957
+ PASSWORD_RESET_LINK_SENT
7818
7958
 
7819
- """List of webhooks assigned to this app."""
7820
- webhooks: [Webhook!]
7959
+ """The account password was reset"""
7960
+ PASSWORD_RESET
7821
7961
 
7822
- """Version number of the app."""
7823
- version: String
7962
+ """The user requested to change the account's email address."""
7963
+ EMAIL_CHANGED_REQUEST
7824
7964
 
7825
- """Bearer token used to authenticate by thirdparty app."""
7826
- accessToken: String
7827
- }
7965
+ """The account password was changed"""
7966
+ PASSWORD_CHANGED
7828
7967
 
7829
- """Represents token data."""
7830
- type AppToken implements Node {
7831
- """Name of the authenticated token."""
7832
- name: String!
7968
+ """The account email address was changed"""
7969
+ EMAIL_CHANGED
7833
7970
 
7834
- """Last 4 characters of the token."""
7835
- authToken: String!
7971
+ """An order was placed"""
7972
+ PLACED_ORDER
7836
7973
 
7837
- """The ID of the object"""
7838
- id: ID!
7839
- }
7974
+ """A note was added"""
7975
+ NOTE_ADDED_TO_ORDER
7840
7976
 
7841
- """Represents a dashboard integration for an App."""
7842
- type AppDashboardIntegration implements Node {
7843
- """The ID of the object"""
7844
- id: ID!
7977
+ """A digital good was downloaded"""
7978
+ DIGITAL_LINK_DOWNLOADED
7845
7979
 
7846
- """
7847
- App this integration is for. This may be null for integrations that come from plugins.
7848
- """
7849
- app: App
7980
+ """A customer was deleted"""
7981
+ CUSTOMER_DELETED
7850
7982
 
7851
- """What context this integration should be rendered in"""
7852
- context: AppDashboardIntegrationContextEnum!
7983
+ """A customer's name was edited"""
7984
+ NAME_ASSIGNED
7853
7985
 
7854
- """The URL to load for this integration"""
7855
- 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
7856
7991
  }
7857
7992
 
7858
- enum AppDashboardIntegrationContextEnum {
7859
- """Nautical order details page"""
7860
- 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!
7861
7999
 
7862
- """Seller order details page"""
7863
- ORDER
8000
+ """Payment gateway name."""
8001
+ gateway: String!
8002
+
8003
+ """Stored credit card details if available."""
8004
+ creditCardInfo: CreditCard
7864
8005
  }
7865
8006
 
7866
- """Represents a storefront integration for an App."""
7867
- type AppStorefrontIntegration implements Node {
7868
- """The ID of the object"""
7869
- id: ID!
8007
+ type WishlistCountableConnection {
8008
+ """Pagination data for this connection."""
8009
+ pageInfo: PageInfo!
8010
+ edges: [WishlistCountableEdge!]!
7870
8011
 
7871
- """
7872
- App this integration is for. This may be null for integrations that come from plugins.
7873
- """
7874
- app: App
8012
+ """A total count of items in the collection."""
8013
+ totalCount: Int
8014
+ }
7875
8015
 
7876
- """What context this integration should be rendered in"""
7877
- context: AppStorefrontIntegrationContextEnum!
8016
+ type WishlistCountableEdge {
8017
+ """The item at the end of the edge."""
8018
+ node: Wishlist!
7878
8019
 
7879
- """JSON string of params to pass to the remote component"""
7880
- params: String!
8020
+ """A cursor for use in pagination."""
8021
+ cursor: String!
8022
+ }
7881
8023
 
7882
- """The URL to the remote component to load"""
7883
- componentUrl: String!
8024
+ input WishlistItemInputFilter {
8025
+ expiry: DateRangeInput
7884
8026
  }
7885
8027
 
7886
- enum AppStorefrontIntegrationContextEnum {
7887
- """Product details page"""
7888
- PRODUCT_DETAILS
8028
+ input WishlistItemSortingInput {
8029
+ """Specifies the direction in which to sort products."""
8030
+ direction: OrderDirection!
7889
8031
 
7890
- """Sitewide"""
7891
- 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
7892
8039
  }
7893
8040
 
7894
8041
  type WebhookEventLogCountableConnection {
@@ -7981,8 +8128,8 @@ type WebhookJob implements Node & Job {
7981
8128
  requestMeta: JSONString
7982
8129
  source: String
7983
8130
  type: GenericWebhookTransactionType
7984
- vendorEntityLink: String @deprecated(reason: "This will be removed on September 26, 2025")
7985
- marketplaceEntityLink: String @deprecated(reason: "This will be removed on September 26, 2025")
8131
+ vendorEntityLink: String
8132
+ marketplaceEntityLink: String
7986
8133
  seller: Seller
7987
8134
  }
7988
8135
 
@@ -8120,7 +8267,7 @@ enum GenericWebhookEventsEnum {
8120
8267
  SELLER_CREATE
8121
8268
 
8122
8269
  """A payload for vehicles was received"""
8123
- VEHICLE_PAYLOAD @deprecated(reason: "This will be removed on September 26, 2025")
8270
+ VEHICLE_PAYLOAD
8124
8271
 
8125
8272
  """A payload for item shipment that was received"""
8126
8273
  ITEM_SHIP_NOTIFY
@@ -9951,30 +10098,18 @@ enum EmailEventMessageType {
9951
10098
  """Account Set Staff Password"""
9952
10099
  ACCOUNT_SET_STAFF_PASSWORD
9953
10100
 
9954
- """Account Staff Reset Password"""
9955
- ACCOUNT_STAFF_RESET_PASSWORD
9956
-
9957
- """Merchant Account Set Staff Password"""
9958
- MERCHANT_ACCOUNT_SET_STAFF_PASSWORD
9959
-
9960
- """Merchant Account Staff Reset Password"""
9961
- MERCHANT_ACCOUNT_STAFF_RESET_PASSWORD
9962
-
9963
10101
  """Csv Export Products Success"""
9964
10102
  CSV_EXPORT_PRODUCTS_SUCCESS
9965
10103
 
9966
10104
  """Csv Export Failed"""
9967
10105
  CSV_EXPORT_FAILED
9968
10106
 
9969
- """Merchant Csv Export Products Success"""
9970
- MERCHANT_CSV_EXPORT_PRODUCTS_SUCCESS
9971
-
9972
- """Merchant Csv Export Failed"""
9973
- MERCHANT_CSV_EXPORT_FAILED
9974
-
9975
10107
  """Staff Order Confirmation"""
9976
10108
  STAFF_ORDER_CONFIRMATION
9977
10109
 
10110
+ """Account Staff Reset Password"""
10111
+ ACCOUNT_STAFF_RESET_PASSWORD
10112
+
9978
10113
  """Vendor Payout Confirmation"""
9979
10114
  VENDOR_PAYOUT_CONFIRMATION
9980
10115
 
@@ -10089,30 +10224,18 @@ enum NotifyEventTypeEnum {
10089
10224
  """Account Set Staff Password"""
10090
10225
  ACCOUNT_SET_STAFF_PASSWORD
10091
10226
 
10092
- """Account Staff Reset Password"""
10093
- ACCOUNT_STAFF_RESET_PASSWORD
10094
-
10095
- """Merchant Account Set Staff Password"""
10096
- MERCHANT_ACCOUNT_SET_STAFF_PASSWORD
10097
-
10098
- """Merchant Account Staff Reset Password"""
10099
- MERCHANT_ACCOUNT_STAFF_RESET_PASSWORD
10100
-
10101
10227
  """Csv Export Products Success"""
10102
10228
  CSV_EXPORT_PRODUCTS_SUCCESS
10103
10229
 
10104
10230
  """Csv Export Failed"""
10105
10231
  CSV_EXPORT_FAILED
10106
10232
 
10107
- """Merchant Csv Export Products Success"""
10108
- MERCHANT_CSV_EXPORT_PRODUCTS_SUCCESS
10109
-
10110
- """Merchant Csv Export Failed"""
10111
- MERCHANT_CSV_EXPORT_FAILED
10112
-
10113
10233
  """Staff Order Confirmation"""
10114
10234
  STAFF_ORDER_CONFIRMATION
10115
10235
 
10236
+ """Account Staff Reset Password"""
10237
+ ACCOUNT_STAFF_RESET_PASSWORD
10238
+
10116
10239
  """Vendor Payout Confirmation"""
10117
10240
  VENDOR_PAYOUT_CONFIRMATION
10118
10241
 
@@ -11199,7 +11322,7 @@ enum SSOProviderEnum {
11199
11322
  KEYCLOAK
11200
11323
  }
11201
11324
 
11202
- 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
11203
11326
 
11204
11327
  scalar _Any
11205
11328
 
@@ -11239,7 +11362,7 @@ type Mutation {
11239
11362
  description: String
11240
11363
 
11241
11364
  """
11242
- Used when uploading a new document or file in a multipart request that does not exist in the system already. Supported file types: application/x-gzip, text/x-comma-separated-values, application/x-dxf, application/vnd.ms-word, image/gif, application/vnd.openxmlformats-officedocument.spreadsheetml.sheet, image/tif, image/x-ms-bmp, image/webp, application/x-rtf, text/csv, application/x-eps, application/x-acad, application/x-tiff, text/rtf, image/jpg, application/vnd.openxmlformats-officedocument.wordprocessingml.document, application/x-rar-compressed, image/x-dwg, application/x-tif, image/x-tiff, drawing/dwg, application/gzip, application/vnd.openxmlformats-officedocument.presentationml.presentation, application/eps, application/pdf, application/x-csv, application/x-dwg, text/svg, application/msword, application/jpg, image/vnd.dwg, image/bmp, application/tiff, application/vnd.pdf, text/x-pdf, pplication/vnd.rar, image/svg, application/vnd.oasis.opendocument.spreadsheet, application/gzipped, application/svg+xml, application/tif, text/x-csv, image/x-eps, application/acrobat, application/excel, image/x-tif, application/dxf, image/x-dxf, application/x-zip-compressed, drawing/x-dwg, application/postscript, application/x-rar, image/x-bmp, application/csv, application/zip, text/plain, image/eps, image/tiff, application/vnd.openxmlformats-officedocument.presentationml.slideshow, image/jpeg, application/vnd.oasis.opendocument.text, application/vnd.ms-powerpoint, application/x-jpg, image/heif-sequence, application/dwg, application/x-tar, application/gzip-compressed, text/pdf, text/svg-xml, image/heic, drawing/x-dwf, application/x-autocad, image/dxf, application/vnd.ms-excel, application/x-pdf, application/rtf, image/heic-sequence, text/comma-separated-values, image/png, image/svg+xml, image/heif, application/vnd.oasis.opendocument.presentation, application/acad.
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-tif, application/excel, application/eps, application/tif, image/svg+xml, text/pdf, image/tiff, application/x-tiff, application/acad, image/bmp, application/x-csv, text/csv, image/heic-sequence, application/x-rar-compressed, image/dxf, application/vnd.oasis.opendocument.text, drawing/x-dwg, application/vnd.openxmlformats-officedocument.spreadsheetml.sheet, application/vnd.oasis.opendocument.spreadsheet, application/jpg, image/jpeg, text/x-comma-separated-values, application/x-pdf, application/csv, image/x-dxf, application/vnd.openxmlformats-officedocument.presentationml.slideshow, image/png, application/vnd.ms-word, application/vnd.ms-powerpoint, application/rtf, pplication/vnd.rar, image/eps, application/x-dxf, text/comma-separated-values, application/vnd.openxmlformats-officedocument.presentationml.presentation, application/x-zip-compressed, drawing/dwg, text/x-csv, application/dwg, image/x-ms-bmp, text/svg, application/vnd.ms-excel, image/webp, application/x-gzip, image/gif, application/x-dwg, application/vnd.openxmlformats-officedocument.wordprocessingml.document, application/svg+xml, application/x-tif, application/gzip, application/gzipped, image/heif-sequence, application/postscript, image/tif, application/x-tar, image/svg, application/acrobat, image/x-bmp, application/pdf, application/gzip-compressed, application/tiff, image/x-eps, application/x-autocad, application/vnd.pdf, application/x-eps, application/msword, image/x-dwg, application/x-acad, text/rtf, image/heic, application/x-jpg, drawing/x-dwf, text/x-pdf, image/heif, application/x-rtf, image/vnd.dwg, application/dxf, application/zip, application/x-rar, image/jpg, image/x-tiff, text/svg-xml, text/plain, application/vnd.oasis.opendocument.presentation.
11243
11366
  """
11244
11367
  file: Upload!
11245
11368
 
@@ -12492,6 +12615,48 @@ type Mutation {
12492
12615
  variantId: ID!
12493
12616
  ): ProductVariantImageBulkAssign
12494
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
+
12495
12660
  """Captures the authorized payment amount."""
12496
12661
  paymentCapture(
12497
12662
  """Transaction amount."""
@@ -13459,7 +13624,7 @@ type Mutation {
13459
13624
  """
13460
13625
  Determines whether the email sent out is catered to carriers instead of customers
13461
13626
  """
13462
- vehicles: Boolean = false @deprecated(reason: "This will be removed on September 26, 2025")
13627
+ vehicles: Boolean = false
13463
13628
  ): CheckoutComplete
13464
13629
 
13465
13630
  """Create a new checkout."""
@@ -16747,9 +16912,6 @@ input ProductCreateInput {
16747
16912
 
16748
16913
  """Represents an image file in a multipart request."""
16749
16914
  image: Upload
16750
-
16751
- """Where the product was created (e.g dashboard, shopify, csv, api)"""
16752
- productSource: ProductSourceEnum
16753
16915
  }
16754
16916
 
16755
16917
  input ProductDimensionsInput {
@@ -16776,20 +16938,6 @@ input StockInput {
16776
16938
  includeAllocations: Boolean = false
16777
16939
  }
16778
16940
 
16779
- enum ProductSourceEnum {
16780
- """API"""
16781
- API
16782
-
16783
- """Dashboard"""
16784
- DASHBOARD
16785
-
16786
- """Shopify"""
16787
- SHOPIFY
16788
-
16789
- """CSV"""
16790
- CSV
16791
- }
16792
-
16793
16941
  """Deletes a product."""
16794
16942
  type ProductDelete {
16795
16943
  productErrors: [ProductError!]!
@@ -17669,6 +17817,113 @@ input ProductVariantImageBulkAssignInput {
17669
17817
  transferImageOwnership: Boolean
17670
17818
  }
17671
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
+
17672
17927
  """Captures the authorized payment amount."""
17673
17928
  type PaymentCapture {
17674
17929
  """Updated payment."""