@nautical-commerce/graphql-schema 1.89.3 → 1.90.0-10-g05d9bedb2

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.
@@ -1762,13 +1762,13 @@ value as specified by
1762
1762
  """
1763
1763
  scalar DateTime
1764
1764
 
1765
- """Represents the recipient type for an email template."""
1765
+ """Temporary recipient type - to be deprecated after September 30, 2025."""
1766
1766
  enum RecipientTypeEnum {
1767
1767
  CUSTOMER
1768
1768
  SELLER_PRIMARY_CONTACT
1769
1769
  STAFF_MEMBER_MARKETPLACE
1770
1770
  STAFF_MEMBER_SELLER
1771
- STAFF_MEMBER_MARKETPLACE_OR_SELLER
1771
+ STAFF_MEMBER_MARKETPLACE_OR_SELLER @deprecated(reason: "Use STAFF_MEMBER_MARKETPLACE or STAFF_MEMBER_SELLER instead. This value will be deprecated on September 30, 2025")
1772
1772
  }
1773
1773
 
1774
1774
  """An enumeration."""
@@ -1791,10 +1791,14 @@ enum EventTypeEnum {
1791
1791
  order_payment_link
1792
1792
  merchant_account_set_password
1793
1793
  account_set_staff_password
1794
+ account_staff_reset_password
1795
+ merchant_account_set_staff_password
1796
+ merchant_account_staff_reset_password
1794
1797
  csv_export_products_success
1795
1798
  csv_export_failed
1799
+ merchant_csv_export_products_success
1800
+ merchant_csv_export_failed
1796
1801
  staff_order_confirmation
1797
- account_staff_reset_password
1798
1802
  vendor_payout_confirmation
1799
1803
  pending_seller
1800
1804
  updated_status
@@ -2457,7 +2461,6 @@ type ProductVariant implements Node & ObjectWithMetadata {
2457
2461
 
2458
2462
  """Total quantity ordered."""
2459
2463
  quantityOrdered: Int
2460
- features: [VariantFeature!] @deprecated(reason: "Features will be removed on July 2, 2025.")
2461
2464
 
2462
2465
  """
2463
2466
  List of product variant images. When 'strict_product_image_handling' is enabled:- Display only the images owned by the product variant owner.
@@ -2563,6 +2566,7 @@ type Product implements Node & ObjectWithMetadata {
2563
2566
  isPriceOverrideAllowed: Boolean!
2564
2567
  isShippingRequired: Boolean!
2565
2568
  isDigital: Boolean!
2569
+ productSource: ProductProductSource!
2566
2570
 
2567
2571
  """
2568
2572
  List of private metadata items.Requires proper staff permissions to access.
@@ -2645,7 +2649,6 @@ type Product implements Node & ObjectWithMetadata {
2645
2649
 
2646
2650
  """Whether the product is published."""
2647
2651
  isPublished: Boolean!
2648
- features: [ProductFeature!] @deprecated(reason: "Features will be removed on July 2, 2025.")
2649
2652
 
2650
2653
  """
2651
2654
  Product stock stats combining all variants in all warehouses. Requires MANAGE_PRODUCTS permission.
@@ -4608,7 +4611,6 @@ input ProductFilterInput {
4608
4611
  sellers: [ID]
4609
4612
  subStatus: ProductSubStatusEnum
4610
4613
  slug: [String!]
4611
- features: FeatureFilterInput
4612
4614
  price: PriceRangeInput
4613
4615
  minimalPrice: PriceRangeInput
4614
4616
  createdAt: DateTimeRangeInput
@@ -4686,38 +4688,6 @@ enum ProductSubStatusEnum {
4686
4688
  APPROVED
4687
4689
  }
4688
4690
 
4689
- """
4690
- When changed, please update related typing (search by FeatureFilterTypedDict)
4691
- """
4692
- input FeatureFilterInput {
4693
- connector: FeatureFilterConnector!
4694
- operations: [FeatureFilterOperation!]
4695
- }
4696
-
4697
- enum FeatureFilterConnector {
4698
- AND
4699
- OR
4700
- }
4701
-
4702
- """
4703
- When changed, please update related typing (search by FeatureFilterOperationTypingDict)
4704
- """
4705
- input FeatureFilterOperation {
4706
- """Key for which to search values for in features."""
4707
- name: String!
4708
-
4709
- """
4710
- String to search by any value for in metadata. Use null or empty list to return all results where features with `name` key exists
4711
- """
4712
- values: [String!]
4713
- condition: FeatureFilterOperationCondition!
4714
- }
4715
-
4716
- enum FeatureFilterOperationCondition {
4717
- AND
4718
- OR
4719
- }
4720
-
4721
4691
  input PriceRangeInput {
4722
4692
  """Price greater than or equal to."""
4723
4693
  gte: Float
@@ -4997,12 +4967,6 @@ type ProductType implements Node & ObjectWithMetadata {
4997
4967
  last: Int
4998
4968
  ): AttributeCountableConnection
4999
4969
 
5000
- """Product features of this product type."""
5001
- productFeatures: [ProductTypeProductFeature!]! @deprecated(reason: "Features will be removed on July 2, 2025.")
5002
-
5003
- """Variant features of this product type."""
5004
- variantFeatures: [ProductTypeVariantFeature!]! @deprecated(reason: "Features will be removed on July 2, 2025.")
5005
-
5006
4970
  """Brand of the product"""
5007
4971
  model: String
5008
4972
 
@@ -5066,519 +5030,157 @@ input AttributeFilterInput {
5066
5030
  showExternal: Boolean
5067
5031
  }
5068
5032
 
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
+ enum AttributeInputTypeEnum {
5090
5034
  """Dropdown"""
5091
5035
  DROPDOWN
5092
5036
 
5093
5037
  """Multi Select"""
5094
5038
  MULTISELECT
5095
5039
 
5096
- """Text"""
5097
- TEXT
5098
- }
5040
+ """Date"""
5041
+ DATE
5099
5042
 
5100
- type ProductFeatureCountableConnection {
5101
- """Pagination data for this connection."""
5102
- pageInfo: PageInfo!
5103
- edges: [ProductFeatureCountableEdge!]!
5043
+ """Date Time"""
5044
+ DATE_TIME
5104
5045
 
5105
- """A total count of items in the collection."""
5106
- totalCount: Int
5107
- }
5046
+ """Rich Text"""
5047
+ RICH_TEXT
5108
5048
 
5109
- type ProductFeatureCountableEdge {
5110
- """The item at the end of the edge."""
5111
- node: ProductFeature!
5049
+ """Plain Text"""
5050
+ PLAIN_TEXT
5112
5051
 
5113
- """A cursor for use in pagination."""
5114
- cursor: String!
5115
- }
5052
+ """Reference"""
5053
+ REFERENCE
5116
5054
 
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!
5055
+ """Money"""
5056
+ MONEY
5127
5057
 
5128
- """The type that we expect to render the feature's values as."""
5129
- featureType: FeatureTypeEnum!
5130
- name: String!
5131
- description: String!
5058
+ """Boolean"""
5059
+ BOOLEAN
5132
5060
 
5133
- """Available options for this product feature"""
5134
- options: [String!]
5135
- product: Product!
5136
- productTypeFeature: ProductTypeProductFeature
5061
+ """Numeric"""
5062
+ NUMERIC
5063
+
5064
+ """File"""
5065
+ FILE
5066
+
5067
+ """Swatch"""
5068
+ SWATCH
5137
5069
  }
5138
5070
 
5139
- """Represents app data."""
5140
- type App implements Node & ObjectWithMetadata {
5071
+ """Represents a value of an attribute."""
5072
+ type AttributeValue implements Node {
5141
5073
  """The ID of the object"""
5142
5074
  id: ID!
5075
+ sortOrder: Int
5076
+ tenant: Tenant!
5143
5077
 
5144
- """Name of the app."""
5145
- name: String
5146
-
5147
- """The date and time when the app was created."""
5148
- created: DateTime
5149
-
5150
- """Determine if app will be set active or not."""
5151
- isActive: Boolean
5078
+ """The seller that owns this attribute value"""
5079
+ seller: Seller!
5152
5080
 
5153
- """List of the app's permissions."""
5154
- permissions: [Permission!]
5081
+ """Name of a value displayed in the interface."""
5082
+ name: String!
5155
5083
 
5156
- """User associated with this app."""
5157
- user: User
5084
+ """Supporting information like color, links, etc."""
5085
+ value: String!
5158
5086
 
5159
- """Last 4 characters of the tokens."""
5160
- tokens: [AppToken!]
5087
+ """Internal representation of a value (unique per attribute)."""
5088
+ slug: String!
5089
+ attribute: Attribute!
5161
5090
 
5162
5091
  """
5163
- List of private metadata items.Requires proper staff permissions to access.
5092
+ Populated if the attribute has date-time input_type, represent actual datetime for filtering
5164
5093
  """
5165
- privateMetadata: [MetadataItem!]!
5166
-
5167
- """List of public metadata items. Can be accessed without permissions."""
5168
- metadata: [MetadataItem!]!
5169
-
5170
- """List of dashboard integrations for this app"""
5171
- dashboardIntegrations: [AppDashboardIntegration!]
5172
-
5173
- """List of storefront integrations for this app"""
5174
- storefrontIntegrations: [AppStorefrontIntegration!]
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
5175
5104
 
5176
- """List of webhooks assigned to this app."""
5177
- webhooks: [Webhook!]
5105
+ """
5106
+ Populated if the attribute has date input_type, represent actual date for filtering
5107
+ """
5108
+ date: Date
5178
5109
 
5179
- """Version number of the app."""
5180
- version: String
5110
+ """Type of value (used only when `value` field is set)."""
5111
+ type: AttributeValueType
5181
5112
 
5182
- """Bearer token used to authenticate by thirdparty app."""
5183
- accessToken: String
5113
+ """The input type to use for entering attribute values in the dashboard."""
5114
+ inputType: AttributeInputTypeEnum!
5184
5115
  }
5185
5116
 
5186
- """Represents a permission object in a friendly form."""
5187
- type Permission {
5188
- """Internal code for permission."""
5189
- code: PermissionEnum!
5190
-
5191
- """Describe action(s) allowed to do by permission."""
5192
- name: String!
5117
+ """Represents an uploaded file."""
5118
+ type File {
5119
+ """The URL of the file."""
5120
+ url: String!
5193
5121
  }
5194
5122
 
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
5123
+ enum AttributeValueType {
5124
+ COLOR
5125
+ GRADIENT
5126
+ URL
5127
+ STRING
5221
5128
  }
5222
5129
 
5223
- """Represents token data."""
5224
- type AppToken implements Node {
5225
- """Name of the authenticated token."""
5226
- name: String!
5130
+ type CollectionCountableConnection {
5131
+ """Pagination data for this connection."""
5132
+ pageInfo: PageInfo!
5133
+ edges: [CollectionCountableEdge!]!
5227
5134
 
5228
- """Last 4 characters of the token."""
5229
- authToken: String!
5135
+ """A total count of items in the collection."""
5136
+ totalCount: Int
5137
+ }
5230
5138
 
5231
- """The ID of the object"""
5232
- id: ID!
5139
+ type CollectionCountableEdge {
5140
+ """The item at the end of the edge."""
5141
+ node: Collection!
5142
+
5143
+ """A cursor for use in pagination."""
5144
+ cursor: String!
5233
5145
  }
5234
5146
 
5235
- """Represents a dashboard integration for an App."""
5236
- type AppDashboardIntegration implements Node {
5147
+ """Represents a collection of products."""
5148
+ type Collection implements Node & ObjectWithMetadata {
5237
5149
  """The ID of the object"""
5238
5150
  id: ID!
5151
+ publicationDate: Date
5239
5152
 
5240
5153
  """
5241
- App this integration is for. This may be null for integrations that come from plugins.
5154
+ List of private metadata items.Requires proper staff permissions to access.
5242
5155
  """
5243
- app: App
5156
+ privateMetadata: [MetadataItem!]!
5244
5157
 
5245
- """What context this integration should be rendered in"""
5246
- context: AppDashboardIntegrationContextEnum!
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!
5247
5167
 
5248
- """The URL to load for this integration"""
5249
- iframeUrl: String!
5250
- }
5168
+ """List of products in this collection."""
5169
+ products(
5170
+ """Filtering options for products."""
5171
+ filter: ProductFilterInput
5251
5172
 
5252
- enum AppDashboardIntegrationContextEnum {
5253
- """Nautical order details page"""
5254
- NAUTICAL_ORDER
5173
+ """Sort products."""
5174
+ sortBy: ProductOrder
5255
5175
 
5256
- """Seller order details page"""
5257
- ORDER
5258
- }
5176
+ """Return the elements in the list that come before the specified cursor."""
5177
+ before: String
5259
5178
 
5260
- """Represents a storefront integration for an App."""
5261
- type AppStorefrontIntegration implements Node {
5262
- """The ID of the object"""
5263
- id: ID!
5179
+ """Return the elements in the list that come after the specified cursor."""
5180
+ after: String
5264
5181
 
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
5182
+ """Return the first n elements from the list."""
5183
+ first: Int
5582
5184
 
5583
5185
  """Return the last n elements from the list."""
5584
5186
  last: Int
@@ -5643,7 +5245,6 @@ input ProductVariantFilterInput {
5643
5245
  customFields: [AttributeInput!]
5644
5246
  metadata: MetadataFilterInput
5645
5247
  privateMetadata: MetadataFilterInput
5646
- features: FeatureFilterInput
5647
5248
  advancedSearch: ProductVariantSearchInput
5648
5249
  ids: [ID]
5649
5250
  productIds: [ID]
@@ -7267,6 +6868,21 @@ enum ProductSubStatus {
7267
6868
  APPROVED
7268
6869
  }
7269
6870
 
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
+
7270
6886
  """Represents availability of a product in the storefront."""
7271
6887
  type ProductPricingInfo {
7272
6888
  """Whether it is in sale or not."""
@@ -7901,6 +7517,34 @@ type UserPermission {
7901
7517
  ): [Group!]!
7902
7518
  }
7903
7519
 
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
+
7904
7548
  """Represents permission group data."""
7905
7549
  type Group implements Node {
7906
7550
  """The ID of the object"""
@@ -7919,6 +7563,15 @@ type Group implements Node {
7919
7563
  userCanManage: Boolean!
7920
7564
  }
7921
7565
 
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
+
7922
7575
  """History log of the customer."""
7923
7576
  type CustomerEvent implements Node {
7924
7577
  """The ID of the object"""
@@ -7942,100 +7595,300 @@ type CustomerEvent implements Node {
7942
7595
  """The concerned order."""
7943
7596
  order: Order
7944
7597
 
7945
- """The concerned order line."""
7946
- orderLine: OrderLine
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 {
7784
+ """The ID of the object"""
7785
+ id: ID!
7786
+
7787
+ """Name of the app."""
7788
+ name: String
7789
+
7790
+ """The date and time when the app was created."""
7791
+ created: DateTime
7947
7792
 
7948
- """The concerned nautical order."""
7949
- nauticalOrder: NauticalOrder
7950
- }
7793
+ """Determine if app will be set active or not."""
7794
+ isActive: Boolean
7951
7795
 
7952
- enum CustomerEventsEnum {
7953
- """The account was created"""
7954
- ACCOUNT_CREATED
7796
+ """List of the app's permissions."""
7797
+ permissions: [Permission!]
7955
7798
 
7956
- """Password reset link was sent to the customer"""
7957
- PASSWORD_RESET_LINK_SENT
7799
+ """User associated with this app."""
7800
+ user: User
7958
7801
 
7959
- """The account password was reset"""
7960
- PASSWORD_RESET
7802
+ """Last 4 characters of the tokens."""
7803
+ tokens: [AppToken!]
7961
7804
 
7962
- """The user requested to change the account's email address."""
7963
- EMAIL_CHANGED_REQUEST
7805
+ """
7806
+ List of private metadata items.Requires proper staff permissions to access.
7807
+ """
7808
+ privateMetadata: [MetadataItem!]!
7964
7809
 
7965
- """The account password was changed"""
7966
- PASSWORD_CHANGED
7810
+ """List of public metadata items. Can be accessed without permissions."""
7811
+ metadata: [MetadataItem!]!
7967
7812
 
7968
- """The account email address was changed"""
7969
- EMAIL_CHANGED
7813
+ """List of dashboard integrations for this app"""
7814
+ dashboardIntegrations: [AppDashboardIntegration!]
7970
7815
 
7971
- """An order was placed"""
7972
- PLACED_ORDER
7816
+ """List of storefront integrations for this app"""
7817
+ storefrontIntegrations: [AppStorefrontIntegration!]
7973
7818
 
7974
- """A note was added"""
7975
- NOTE_ADDED_TO_ORDER
7819
+ """List of webhooks assigned to this app."""
7820
+ webhooks: [Webhook!]
7976
7821
 
7977
- """A digital good was downloaded"""
7978
- DIGITAL_LINK_DOWNLOADED
7822
+ """Version number of the app."""
7823
+ version: String
7979
7824
 
7980
- """A customer was deleted"""
7981
- CUSTOMER_DELETED
7825
+ """Bearer token used to authenticate by thirdparty app."""
7826
+ accessToken: String
7827
+ }
7982
7828
 
7983
- """A customer's name was edited"""
7984
- NAME_ASSIGNED
7829
+ """Represents token data."""
7830
+ type AppToken implements Node {
7831
+ """Name of the authenticated token."""
7832
+ name: String!
7985
7833
 
7986
- """A customer's email address was edited"""
7987
- EMAIL_ASSIGNED
7834
+ """Last 4 characters of the token."""
7835
+ authToken: String!
7988
7836
 
7989
- """A note was added to the customer"""
7990
- NOTE_ADDED
7837
+ """The ID of the object"""
7838
+ id: ID!
7991
7839
  }
7992
7840
 
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!
7841
+ """Represents a dashboard integration for an App."""
7842
+ type AppDashboardIntegration implements Node {
7843
+ """The ID of the object"""
7844
+ id: ID!
7999
7845
 
8000
- """Payment gateway name."""
8001
- gateway: String!
7846
+ """
7847
+ App this integration is for. This may be null for integrations that come from plugins.
7848
+ """
7849
+ app: App
8002
7850
 
8003
- """Stored credit card details if available."""
8004
- creditCardInfo: CreditCard
7851
+ """What context this integration should be rendered in"""
7852
+ context: AppDashboardIntegrationContextEnum!
7853
+
7854
+ """The URL to load for this integration"""
7855
+ iframeUrl: String!
8005
7856
  }
8006
7857
 
8007
- type WishlistCountableConnection {
8008
- """Pagination data for this connection."""
8009
- pageInfo: PageInfo!
8010
- edges: [WishlistCountableEdge!]!
7858
+ enum AppDashboardIntegrationContextEnum {
7859
+ """Nautical order details page"""
7860
+ NAUTICAL_ORDER
8011
7861
 
8012
- """A total count of items in the collection."""
8013
- totalCount: Int
7862
+ """Seller order details page"""
7863
+ ORDER
8014
7864
  }
8015
7865
 
8016
- type WishlistCountableEdge {
8017
- """The item at the end of the edge."""
8018
- node: Wishlist!
7866
+ """Represents a storefront integration for an App."""
7867
+ type AppStorefrontIntegration implements Node {
7868
+ """The ID of the object"""
7869
+ id: ID!
8019
7870
 
8020
- """A cursor for use in pagination."""
8021
- cursor: String!
8022
- }
7871
+ """
7872
+ App this integration is for. This may be null for integrations that come from plugins.
7873
+ """
7874
+ app: App
8023
7875
 
8024
- input WishlistItemInputFilter {
8025
- expiry: DateRangeInput
8026
- }
7876
+ """What context this integration should be rendered in"""
7877
+ context: AppStorefrontIntegrationContextEnum!
8027
7878
 
8028
- input WishlistItemSortingInput {
8029
- """Specifies the direction in which to sort products."""
8030
- direction: OrderDirection!
7879
+ """JSON string of params to pass to the remote component"""
7880
+ params: String!
8031
7881
 
8032
- """Sort wishlist items by the selected field."""
8033
- field: WishlistItemSortField!
7882
+ """The URL to the remote component to load"""
7883
+ componentUrl: String!
8034
7884
  }
8035
7885
 
8036
- enum WishlistItemSortField {
8037
- """Sort wishlist items by created at."""
8038
- CREATED_AT
7886
+ enum AppStorefrontIntegrationContextEnum {
7887
+ """Product details page"""
7888
+ PRODUCT_DETAILS
7889
+
7890
+ """Sitewide"""
7891
+ SITE
8039
7892
  }
8040
7893
 
8041
7894
  type WebhookEventLogCountableConnection {
@@ -8128,8 +7981,8 @@ type WebhookJob implements Node & Job {
8128
7981
  requestMeta: JSONString
8129
7982
  source: String
8130
7983
  type: GenericWebhookTransactionType
8131
- vendorEntityLink: String
8132
- marketplaceEntityLink: String
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")
8133
7986
  seller: Seller
8134
7987
  }
8135
7988
 
@@ -8267,7 +8120,7 @@ enum GenericWebhookEventsEnum {
8267
8120
  SELLER_CREATE
8268
8121
 
8269
8122
  """A payload for vehicles was received"""
8270
- VEHICLE_PAYLOAD
8123
+ VEHICLE_PAYLOAD @deprecated(reason: "This will be removed on September 26, 2025")
8271
8124
 
8272
8125
  """A payload for item shipment that was received"""
8273
8126
  ITEM_SHIP_NOTIFY
@@ -10098,18 +9951,30 @@ enum EmailEventMessageType {
10098
9951
  """Account Set Staff Password"""
10099
9952
  ACCOUNT_SET_STAFF_PASSWORD
10100
9953
 
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
+
10101
9963
  """Csv Export Products Success"""
10102
9964
  CSV_EXPORT_PRODUCTS_SUCCESS
10103
9965
 
10104
9966
  """Csv Export Failed"""
10105
9967
  CSV_EXPORT_FAILED
10106
9968
 
9969
+ """Merchant Csv Export Products Success"""
9970
+ MERCHANT_CSV_EXPORT_PRODUCTS_SUCCESS
9971
+
9972
+ """Merchant Csv Export Failed"""
9973
+ MERCHANT_CSV_EXPORT_FAILED
9974
+
10107
9975
  """Staff Order Confirmation"""
10108
9976
  STAFF_ORDER_CONFIRMATION
10109
9977
 
10110
- """Account Staff Reset Password"""
10111
- ACCOUNT_STAFF_RESET_PASSWORD
10112
-
10113
9978
  """Vendor Payout Confirmation"""
10114
9979
  VENDOR_PAYOUT_CONFIRMATION
10115
9980
 
@@ -10224,18 +10089,30 @@ enum NotifyEventTypeEnum {
10224
10089
  """Account Set Staff Password"""
10225
10090
  ACCOUNT_SET_STAFF_PASSWORD
10226
10091
 
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
+
10227
10101
  """Csv Export Products Success"""
10228
10102
  CSV_EXPORT_PRODUCTS_SUCCESS
10229
10103
 
10230
10104
  """Csv Export Failed"""
10231
10105
  CSV_EXPORT_FAILED
10232
10106
 
10107
+ """Merchant Csv Export Products Success"""
10108
+ MERCHANT_CSV_EXPORT_PRODUCTS_SUCCESS
10109
+
10110
+ """Merchant Csv Export Failed"""
10111
+ MERCHANT_CSV_EXPORT_FAILED
10112
+
10233
10113
  """Staff Order Confirmation"""
10234
10114
  STAFF_ORDER_CONFIRMATION
10235
10115
 
10236
- """Account Staff Reset Password"""
10237
- ACCOUNT_STAFF_RESET_PASSWORD
10238
-
10239
10116
  """Vendor Payout Confirmation"""
10240
10117
  VENDOR_PAYOUT_CONFIRMATION
10241
10118
 
@@ -11322,7 +11199,7 @@ enum SSOProviderEnum {
11322
11199
  KEYCLOAK
11323
11200
  }
11324
11201
 
11325
- union _Entity = WishlistItem | Wishlist | User | Address | ProductVariant | Product | Category | ProductType | App | Collection | ProductImage | ProductStatusLog | Group
11202
+ union _Entity = WishlistItem | Wishlist | User | Address | ProductVariant | Product | Category | ProductType | Collection | ProductImage | ProductStatusLog | Group | App
11326
11203
 
11327
11204
  scalar _Any
11328
11205
 
@@ -11362,7 +11239,7 @@ type Mutation {
11362
11239
  description: String
11363
11240
 
11364
11241
  """
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/tif, image/x-ms-bmp, image/heif, text/csv, application/msword, application/gzip-compressed, image/x-dwg, application/vnd.ms-excel, application/jpg, image/heic-sequence, application/pdf, application/x-zip-compressed, application/x-gzip, application/postscript, image/heif-sequence, application/x-rar-compressed, application/x-dwg, application/x-csv, text/comma-separated-values, text/rtf, application/excel, text/plain, image/x-dxf, pplication/vnd.rar, application/x-tiff, application/x-jpg, image/x-tiff, text/x-comma-separated-values, image/webp, application/dwg, application/acad, image/x-bmp, application/dxf, application/eps, application/zip, image/gif, application/acrobat, application/x-rtf, application/x-autocad, application/vnd.pdf, image/bmp, application/x-eps, application/csv, application/x-rar, application/vnd.oasis.opendocument.spreadsheet, application/tif, application/vnd.openxmlformats-officedocument.wordprocessingml.document, application/vnd.openxmlformats-officedocument.presentationml.slideshow, application/gzipped, application/x-acad, text/pdf, image/tiff, application/x-dxf, text/x-pdf, image/heic, application/x-pdf, application/tiff, application/vnd.oasis.opendocument.presentation, image/png, text/svg, application/svg+xml, application/vnd.ms-word, application/vnd.ms-powerpoint, application/gzip, image/x-eps, drawing/x-dwg, text/x-csv, application/vnd.oasis.opendocument.text, image/eps, image/svg+xml, application/x-tar, application/vnd.openxmlformats-officedocument.presentationml.presentation, image/x-tif, image/jpg, application/x-tif, image/jpeg, image/svg, image/dxf, drawing/x-dwf, application/vnd.openxmlformats-officedocument.spreadsheetml.sheet, application/rtf, text/svg-xml, drawing/dwg, image/vnd.dwg.
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/vnd.ms-powerpoint, application/zip, image/webp, application/vnd.openxmlformats-officedocument.spreadsheetml.sheet, application/x-csv, image/jpg, application/dwg, application/x-autocad, application/rtf, application/vnd.oasis.opendocument.spreadsheet, application/csv, application/vnd.ms-excel, application/vnd.openxmlformats-officedocument.presentationml.slideshow, application/x-rar, application/x-rar-compressed, application/acad, image/eps, text/plain, image/svg+xml, application/svg+xml, image/tif, text/comma-separated-values, image/svg, application/x-tif, drawing/x-dwf, application/postscript, application/vnd.ms-word, text/rtf, text/x-csv, application/x-eps, application/msword, application/x-dwg, pplication/vnd.rar, image/heif, application/tiff, application/acrobat, text/svg, image/x-tif, image/x-dwg, application/gzipped, image/x-dxf, image/gif, application/pdf, application/excel, image/dxf, image/x-bmp, application/x-pdf, image/tiff, application/x-tiff, application/tif, application/vnd.oasis.opendocument.text, image/heic, image/x-tiff, text/x-comma-separated-values, application/x-jpg, application/x-tar, image/x-ms-bmp, text/csv, application/dxf, application/vnd.pdf, application/vnd.openxmlformats-officedocument.wordprocessingml.document, image/x-eps, drawing/dwg, image/bmp, text/pdf, image/png, application/eps, application/gzip, image/jpeg, text/svg-xml, image/heic-sequence, application/x-acad, application/x-rtf, application/x-zip-compressed, application/jpg, text/x-pdf, application/gzip-compressed, application/vnd.openxmlformats-officedocument.presentationml.presentation, image/vnd.dwg, application/x-dxf, drawing/x-dwg, image/heif-sequence, application/vnd.oasis.opendocument.presentation, application/x-gzip.
11366
11243
  """
11367
11244
  file: Upload!
11368
11245
 
@@ -12615,48 +12492,6 @@ type Mutation {
12615
12492
  variantId: ID!
12616
12493
  ): ProductVariantImageBulkAssign
12617
12494
 
12618
- """Creates a new feature for either a product or a variant."""
12619
- featureCreate(
12620
- """Fields required to create a feature"""
12621
- input: FeatureCreateInput!
12622
- ): FeatureCreate @deprecated(reason: "Features will be removed on July 2, 2025.")
12623
-
12624
- """Updates a feature."""
12625
- featureUpdate(
12626
- """ID of a feature to update."""
12627
- id: ID!
12628
-
12629
- """Input required to update a feature."""
12630
- input: FeatureInput!
12631
- ): FeatureUpdate @deprecated(reason: "Features will be removed on July 2, 2025.")
12632
-
12633
- """Deletes a feature."""
12634
- featureDelete(
12635
- """ID of a feature to delete."""
12636
- id: ID!
12637
- ): FeatureDelete @deprecated(reason: "Features will be removed on July 2, 2025.")
12638
-
12639
- """Creates a new product or variant feature on a product type."""
12640
- productTypeFeatureCreate(
12641
- """Fields required to create a feature for a product type."""
12642
- input: ProductTypeFeatureCreateInput!
12643
- ): ProductTypeFeatureCreate @deprecated(reason: "Features will be removed on July 2, 2025.")
12644
-
12645
- """Updates a product or variant feature on a product type."""
12646
- productTypeFeatureUpdate(
12647
- """ID of the product type feature to update."""
12648
- id: ID!
12649
-
12650
- """Fields required to update a feature for a product type."""
12651
- input: ProductTypeFeatureInput!
12652
- ): ProductTypeFeatureUpdate @deprecated(reason: "Features will be removed on July 2, 2025.")
12653
-
12654
- """Deletes a product or variant feature on a product type."""
12655
- productTypeFeatureDelete(
12656
- """ID of the product type feature to delete."""
12657
- id: ID!
12658
- ): ProductTypeFeatureDelete @deprecated(reason: "Features will be removed on July 2, 2025.")
12659
-
12660
12495
  """Captures the authorized payment amount."""
12661
12496
  paymentCapture(
12662
12497
  """Transaction amount."""
@@ -13624,7 +13459,7 @@ type Mutation {
13624
13459
  """
13625
13460
  Determines whether the email sent out is catered to carriers instead of customers
13626
13461
  """
13627
- vehicles: Boolean = false
13462
+ vehicles: Boolean = false @deprecated(reason: "This will be removed on September 26, 2025")
13628
13463
  ): CheckoutComplete
13629
13464
 
13630
13465
  """Create a new checkout."""
@@ -13832,16 +13667,28 @@ type Mutation {
13832
13667
 
13833
13668
  """Un-assign attributes from a given product type."""
13834
13669
  attributeUnassign(
13835
- """The IDs of the attributes to assign."""
13670
+ """The IDs of the attributes to unassign."""
13836
13671
  attributeIds: [ID!]!
13837
13672
 
13838
- """ID of the product to which the attribute will be assigned."""
13673
+ """ID of the product to which the attribute will be unassigned."""
13839
13674
  productId: ID
13840
13675
 
13841
- """ID of the product type to assign the attributes into."""
13842
- productTypeId: ID
13676
+ """ID of the product type to unassign the attributes from."""
13677
+ productTypeId: ID @deprecated(reason: "Use AttributeUnassignFromProductType mutation instead to unassign attributes from product type. This will be removed on September 27, 2025.")
13843
13678
  ): AttributeUnassign
13844
13679
 
13680
+ """Un-assign attributes from a given product type."""
13681
+ attributeUnassignFromProductType(
13682
+ """The IDs of the product attributes to unassign."""
13683
+ productAttributeIds: [ID!]
13684
+
13685
+ """ID of the product type to unassign the attributes from."""
13686
+ productTypeId: ID!
13687
+
13688
+ """The IDs of the variant attributes to unassign."""
13689
+ variantAttributeIds: [ID!]
13690
+ ): AttributeUnassignFromProductType
13691
+
13845
13692
  """Updates attribute."""
13846
13693
  attributeUpdate(
13847
13694
  """ID of an attribute to update."""
@@ -16912,6 +16759,9 @@ input ProductCreateInput {
16912
16759
 
16913
16760
  """Represents an image file in a multipart request."""
16914
16761
  image: Upload
16762
+
16763
+ """Where the product was created (e.g dashboard, shopify, csv, api)"""
16764
+ productSource: ProductSourceEnum
16915
16765
  }
16916
16766
 
16917
16767
  input ProductDimensionsInput {
@@ -16938,6 +16788,20 @@ input StockInput {
16938
16788
  includeAllocations: Boolean = false
16939
16789
  }
16940
16790
 
16791
+ enum ProductSourceEnum {
16792
+ """API"""
16793
+ API
16794
+
16795
+ """Dashboard"""
16796
+ DASHBOARD
16797
+
16798
+ """Shopify"""
16799
+ SHOPIFY
16800
+
16801
+ """CSV"""
16802
+ CSV
16803
+ }
16804
+
16941
16805
  """Deletes a product."""
16942
16806
  type ProductDelete {
16943
16807
  productErrors: [ProductError!]!
@@ -17817,113 +17681,6 @@ input ProductVariantImageBulkAssignInput {
17817
17681
  transferImageOwnership: Boolean
17818
17682
  }
17819
17683
 
17820
- """Creates a new feature for either a product or a variant."""
17821
- type FeatureCreate {
17822
- feature: Feature
17823
- productErrors: [ProductError!]!
17824
- }
17825
-
17826
- """Represents a single feature for either product or variant."""
17827
- union Feature = ProductFeature | VariantFeature
17828
-
17829
- input FeatureCreateInput {
17830
- """Name (key) of the feature."""
17831
- name: String
17832
-
17833
- """Description (value) of the feature."""
17834
- description: String
17835
-
17836
- """List of available options."""
17837
- options: [String]
17838
-
17839
- """Feature type to assign to the feature."""
17840
- featureType: FeatureTypeEnum
17841
-
17842
- """ID of the product or variant the feature belongs to."""
17843
- id: ID!
17844
- }
17845
-
17846
- """Updates a feature."""
17847
- type FeatureUpdate {
17848
- feature: Feature
17849
- productErrors: [ProductError!]!
17850
- }
17851
-
17852
- input FeatureInput {
17853
- """Name (key) of the feature."""
17854
- name: String
17855
-
17856
- """Description (value) of the feature."""
17857
- description: String
17858
-
17859
- """List of available options."""
17860
- options: [String]
17861
-
17862
- """Feature type to assign to the feature."""
17863
- featureType: FeatureTypeEnum
17864
- }
17865
-
17866
- """Deletes a feature."""
17867
- type FeatureDelete {
17868
- product: Product
17869
- variant: ProductVariant
17870
- productErrors: [ProductError!]!
17871
- }
17872
-
17873
- """Creates a new product or variant feature on a product type."""
17874
- type ProductTypeFeatureCreate {
17875
- productType: ProductType
17876
- productErrors: [ProductError!]!
17877
- }
17878
-
17879
- input ProductTypeFeatureCreateInput {
17880
- """Name (key) of the feature."""
17881
- name: String
17882
-
17883
- """Description (value) of the feature."""
17884
- description: String
17885
-
17886
- """List of available options."""
17887
- options: [String]
17888
-
17889
- """Feature type to assign to the feature."""
17890
- featureType: FeatureTypeEnum
17891
-
17892
- """ID of the product type for which to create the feature."""
17893
- id: ID!
17894
-
17895
- """
17896
- True if feature will be a variant feature, false if feature will be a product feature.
17897
- """
17898
- isVariantFeature: Boolean!
17899
- }
17900
-
17901
- """Updates a product or variant feature on a product type."""
17902
- type ProductTypeFeatureUpdate {
17903
- productType: ProductType
17904
- productErrors: [ProductError!]!
17905
- }
17906
-
17907
- input ProductTypeFeatureInput {
17908
- """Name (key) of the feature."""
17909
- name: String
17910
-
17911
- """Description (value) of the feature."""
17912
- description: String
17913
-
17914
- """List of available options."""
17915
- options: [String]
17916
-
17917
- """Feature type to assign to the feature."""
17918
- featureType: FeatureTypeEnum
17919
- }
17920
-
17921
- """Deletes a product or variant feature on a product type."""
17922
- type ProductTypeFeatureDelete {
17923
- productType: ProductType
17924
- productErrors: [ProductError!]!
17925
- }
17926
-
17927
17684
  """Captures the authorized payment amount."""
17928
17685
  type PaymentCapture {
17929
17686
  """Updated payment."""
@@ -20316,13 +20073,20 @@ input AttributeAssignInput {
20316
20073
  """Un-assign attributes from a given product type."""
20317
20074
  type AttributeUnassign {
20318
20075
  """The updated product type."""
20319
- productType: ProductType
20076
+ productType: ProductType @deprecated(reason: "Use AttributeUnassignFromProductType mutation instead to unassign attributes from product type. This will be removed on September 27, 2025.")
20320
20077
 
20321
- """The product to which the attribute was assigned."""
20078
+ """The product to which the attribute was unassigned."""
20322
20079
  product: Product
20323
20080
  productErrors: [ProductError!]!
20324
20081
  }
20325
20082
 
20083
+ """Un-assign attributes from a given product type."""
20084
+ type AttributeUnassignFromProductType {
20085
+ """The updated product type."""
20086
+ productType: ProductType
20087
+ productErrors: [ProductError!]!
20088
+ }
20089
+
20326
20090
  """Updates attribute."""
20327
20091
  type AttributeUpdate {
20328
20092
  attribute: Attribute