@nautical-commerce/graphql-schema 1.66.1 → 1.67.0-10-g9b23b3220

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.
@@ -499,6 +499,36 @@ type Query {
499
499
  last: Int
500
500
  ): RefundCountableConnection
501
501
 
502
+ """Look up a policy by ID or slug."""
503
+ policy(
504
+ """ID of the policy."""
505
+ id: ID
506
+
507
+ """The slug of the policy."""
508
+ slug: String
509
+ ): Policy
510
+
511
+ """List of the shop's policies."""
512
+ policies(
513
+ """Sort policies."""
514
+ sortBy: PolicySortingInput
515
+
516
+ """Filtering options for policies."""
517
+ filter: PolicyFilterInput
518
+
519
+ """Return the elements in the list that come before the specified cursor."""
520
+ before: String
521
+
522
+ """Return the elements in the list that come after the specified cursor."""
523
+ after: String
524
+
525
+ """Return the first n elements from the list."""
526
+ first: Int
527
+
528
+ """Return the last n elements from the list."""
529
+ last: Int
530
+ ): PolicyCountableConnection
531
+
502
532
  """Look up digital content by ID."""
503
533
  digitalContent(
504
534
  """ID of the digital content."""
@@ -611,9 +641,6 @@ type Query {
611
641
  """
612
642
  identifier: ID
613
643
 
614
- """Microsite ID to filter by"""
615
- microsite: ID
616
-
617
644
  """Return the elements in the list that come before the specified cursor."""
618
645
  before: String
619
646
 
@@ -1441,42 +1468,6 @@ type Query {
1441
1468
  """Return all nautical configuration items"""
1442
1469
  nauticalConfigurationList: [NauticalConfiguration!]
1443
1470
 
1444
- """Look up a microsite by ID or slug"""
1445
- microsite(
1446
- """ID of the microsite."""
1447
- id: ID
1448
-
1449
- """Slug of the microsite"""
1450
- slug: String
1451
- ): Microsite @deprecated(reason: "Microsites will be removed on January 2, 2025.")
1452
-
1453
- """List of microsites"""
1454
- microsites(
1455
- """Filtering options for microsites"""
1456
- filter: MicrositeFilterInput
1457
-
1458
- """Sort microsites"""
1459
- sortBy: MicrositeSortingInput
1460
-
1461
- """Return the elements in the list that come before the specified cursor."""
1462
- before: String
1463
-
1464
- """Return the elements in the list that come after the specified cursor."""
1465
- after: String
1466
-
1467
- """Return the first n elements from the list."""
1468
- first: Int
1469
-
1470
- """Return the last n elements from the list."""
1471
- last: Int
1472
- ): MicrositeCountableConnection @deprecated(reason: "Microsites will be removed on January 2, 2025.")
1473
-
1474
- """Look up microsite by vendor ID"""
1475
- vendorMicrosite(
1476
- """ID of vendor to fetch microsite for."""
1477
- id: ID!
1478
- ): Microsite @deprecated(reason: "Microsites will be removed on January 2, 2025.")
1479
-
1480
1471
  """Look up a navigation menu by ID or name."""
1481
1472
  menu(
1482
1473
  """ID of the menu."""
@@ -1572,14 +1563,14 @@ type Query {
1572
1563
 
1573
1564
  """End of the period to filter results"""
1574
1565
  endDate: Date!
1575
- ): InReportOrderCustomerSummaryType
1566
+ ): InReportOrderCustomerSummaryType @deprecated(reason: "This will be removed on April 13, 2025.")
1576
1567
  insightsOrdersSellerSummary(
1577
1568
  """Beginning of the period to filter results"""
1578
1569
  startDate: Date!
1579
1570
 
1580
1571
  """End of the period to filter results"""
1581
1572
  endDate: Date!
1582
- ): InReportOrderSellerSummaryType
1573
+ ): InReportOrderSellerSummaryType @deprecated(reason: "This will be removed on April 13, 2025.")
1583
1574
  insightsOrdersMarketplaceSummary(
1584
1575
  """Beginning of the period to filter results"""
1585
1576
  startDate: Date!
@@ -1589,14 +1580,14 @@ type Query {
1589
1580
 
1590
1581
  """Period dimension such as DAY, WEEK, MONTH, QUARTER, YEAR"""
1591
1582
  dimension: InsightDimensionEnum = MONTH
1592
- ): InReportOrderMarketplaceSummaryType
1583
+ ): InReportOrderMarketplaceSummaryType @deprecated(reason: "This will be removed on April 13, 2025.")
1593
1584
  insightsMarketplacePayoutsSummary(
1594
1585
  """Beginning of the period to filter results"""
1595
1586
  startDate: Date!
1596
1587
 
1597
1588
  """End of the period to filter results"""
1598
1589
  endDate: Date!
1599
- ): InReportMarketplacePayoutsSummaryType
1590
+ ): InReportMarketplacePayoutsSummaryType @deprecated(reason: "This will be removed on April 13, 2025.")
1600
1591
  insightsMarketplaceTaxSummary(
1601
1592
  """Beginning of the period to filter results"""
1602
1593
  startDate: Date!
@@ -1606,21 +1597,21 @@ type Query {
1606
1597
 
1607
1598
  """Period dimension such as DAY, WEEK, MONTH, QUARTER, YEAR"""
1608
1599
  dimension: InsightDimensionEnum = YEAR
1609
- ): InReportMarketplaceTaxSummaryType
1600
+ ): InReportMarketplaceTaxSummaryType @deprecated(reason: "This will be removed on April 13, 2025.")
1610
1601
  insightsMarketplaceTaxesByCountry(
1611
1602
  """Beginning of the period to filter results"""
1612
1603
  startDate: Date!
1613
1604
 
1614
1605
  """End of the period to filter results"""
1615
1606
  endDate: Date!
1616
- ): InReportMarketplaceTaxesByCountryType
1607
+ ): InReportMarketplaceTaxesByCountryType @deprecated(reason: "This will be removed on April 13, 2025.")
1617
1608
  insightsMarketplaceTaxesByCountryArea(
1618
1609
  """Beginning of the period to filter results"""
1619
1610
  startDate: Date!
1620
1611
 
1621
1612
  """End of the period to filter results"""
1622
1613
  endDate: Date!
1623
- ): InReportMarketplaceTaxesByCountryType
1614
+ ): InReportMarketplaceTaxesByCountryType @deprecated(reason: "This will be removed on April 13, 2025.")
1624
1615
  insightsTopPerformingProducts(
1625
1616
  """Beginning of the period to filter results"""
1626
1617
  startDate: Date!
@@ -1665,7 +1656,7 @@ type Query {
1665
1656
 
1666
1657
  """Period dimension such as DAY, WEEK, MONTH, QUARTER, YEAR"""
1667
1658
  dimension: InsightDimensionEnum = DAY
1668
- ): InReportMarketplacePaymentsSummaryType
1659
+ ): InReportMarketplacePaymentsSummaryType @deprecated(reason: "This will be removed on April 13, 2025.")
1669
1660
  dashboardOrdersSummary(
1670
1661
  """ID of seller for filtering"""
1671
1662
  identifier: ID
@@ -1978,6 +1969,14 @@ type Query {
1978
1969
  id: ID!
1979
1970
  ): App
1980
1971
 
1972
+ """Dashboard integrations for the given contexts"""
1973
+ dashboardUiIntegrations(
1974
+ """
1975
+ Contexts that integrations should be filtered to. If not specified, all contexts will be returned.
1976
+ """
1977
+ contexts: [AppDashboardIntegrationContextEnum!]
1978
+ ): [AppDashboardIntegration!]!
1979
+
1981
1980
  """Look up a marketplace agreement by ID or slug."""
1982
1981
  agreement(
1983
1982
  """ID of the marketplace agreement."""
@@ -2841,7 +2840,9 @@ type ProductVariant implements Node & ObjectWithMetadata {
2841
2840
  id: ID!
2842
2841
  createdAt: DateTime!
2843
2842
  updatedAt: DateTime!
2844
- description: String!
2843
+
2844
+ """Product model code"""
2845
+ description: String @deprecated(reason: "This will be removed on April 15, 2025.")
2845
2846
  descriptionHtml: String!
2846
2847
  externalId: String
2847
2848
  externalSource: String
@@ -2851,7 +2852,6 @@ type ProductVariant implements Node & ObjectWithMetadata {
2851
2852
  name: String!
2852
2853
  nauticalStockNumber: String!
2853
2854
  status: ProductVariantStatus!
2854
- subStatus: ProductVariantSubStatus!
2855
2855
  currency: String
2856
2856
  product: Product!
2857
2857
  trackInventory: Boolean!
@@ -2895,7 +2895,7 @@ type ProductVariant implements Node & ObjectWithMetadata {
2895
2895
  pricing: VariantPricingInfo
2896
2896
 
2897
2897
  """Whether this variant is visible on the buyer side or not"""
2898
- isVisible: Boolean!
2898
+ isVisible: Boolean! @deprecated(reason: "This will be removed on April 15, 2025.")
2899
2899
 
2900
2900
  """Product variant size info."""
2901
2901
  size: VariantSize
@@ -2961,6 +2961,11 @@ type ProductVariant implements Node & ObjectWithMetadata {
2961
2961
 
2962
2962
  """List of vouchers associated with the product."""
2963
2963
  vouchers: [Voucher!]!
2964
+
2965
+ """
2966
+ The sub status of the product variant. This will be the same as product's sub status.
2967
+ """
2968
+ subStatus: ProductSubStatusEnum
2964
2969
  }
2965
2970
 
2966
2971
  """An enumeration."""
@@ -2972,18 +2977,6 @@ enum ProductVariantStatus {
2972
2977
  ACTIVE
2973
2978
  }
2974
2979
 
2975
- """An enumeration."""
2976
- enum ProductVariantSubStatus {
2977
- """In review"""
2978
- IN_REVIEW
2979
-
2980
- """Declined"""
2981
- DECLINED
2982
-
2983
- """Approved"""
2984
- APPROVED
2985
- }
2986
-
2987
2980
  """Represents an individual item for sale in the storefront."""
2988
2981
  type Product implements Node & ObjectWithMetadata {
2989
2982
  """The ID of the object"""
@@ -2996,16 +2989,16 @@ type Product implements Node & ObjectWithMetadata {
2996
2989
  seller: Seller
2997
2990
 
2998
2991
  """Manufacturer Product Number"""
2999
- mpn: String
2992
+ mpn: String @deprecated(reason: "This field will be removed on April 15, 2025.")
3000
2993
 
3001
2994
  """Brand of the product"""
3002
- brand: String
2995
+ brand: String @deprecated(reason: "This field will be removed on April 15, 2025.")
3003
2996
 
3004
2997
  """Manufacturer of the product"""
3005
- manufacturer: String
2998
+ manufacturer: String @deprecated(reason: "This field will be removed on April 15, 2025.")
3006
2999
 
3007
3000
  """Product model code"""
3008
- model: String
3001
+ model: String @deprecated(reason: "This field will be removed on April 15, 2025.")
3009
3002
  seoTitle: String
3010
3003
  seoDescription: String
3011
3004
  productType: ProductType
@@ -3104,7 +3097,7 @@ type Product implements Node & ObjectWithMetadata {
3104
3097
  isAvailableForPurchase: Boolean
3105
3098
 
3106
3099
  """
3107
- Product sort order in the specific collection or in microsite. Make sense only as a part of the parent 'collection(s)' or 'microsite(s)' queries.
3100
+ Product sort order in the specific collection. Make sense only as a part of the parent 'collection(s)' queries.
3108
3101
  """
3109
3102
  sortOrder: Int
3110
3103
 
@@ -3134,7 +3127,7 @@ type Product implements Node & ObjectWithMetadata {
3134
3127
  """
3135
3128
  The product's sorting priority weight in query results. A larger value indicates a higher priority. This field can be used in both ascending and descending sorting methods.
3136
3129
  """
3137
- sortPriorityWeight: Decimal
3130
+ sortPriorityWeight: Decimal @deprecated(reason: "This field will be removed on April 15, 2025.")
3138
3131
 
3139
3132
  """List of logs for product status changes."""
3140
3133
  productStatusLogs: [ProductStatusLog!]
@@ -3209,9 +3202,6 @@ type Seller implements Node & ObjectWithMetadata {
3209
3202
  """Date seller acknowledged their existing agreement."""
3210
3203
  agreementAcknowledged: DateTime
3211
3204
  canUseInStorefront: Boolean
3212
-
3213
- """Microsite of the seller."""
3214
- microsite: Microsite
3215
3205
  pk: Int
3216
3206
  externalPayoutStatus: Boolean
3217
3207
  externalPayoutSchedule: String
@@ -4590,7 +4580,6 @@ input AttributeFilterInput {
4590
4580
  inCollection: ID
4591
4581
  inProductSearch: String
4592
4582
  inVariantSearch: String
4593
- inMicrosite: ID
4594
4583
  inCategory: ID
4595
4584
 
4596
4585
  """
@@ -4708,6 +4697,9 @@ type App implements Node & ObjectWithMetadata {
4708
4697
  """Type of the app."""
4709
4698
  type: AppTypeEnum
4710
4699
 
4700
+ """List of dashboard integrations for this app"""
4701
+ dashboardIntegrations: [AppDashboardIntegration!]
4702
+
4711
4703
  """List of storefront integrations for this app"""
4712
4704
  storefrontIntegrations: [AppStorefrontIntegration!]
4713
4705
 
@@ -4804,6 +4796,31 @@ enum AppTypeEnum {
4804
4796
  THIRDPARTY
4805
4797
  }
4806
4798
 
4799
+ """Represents a dashboard integration for an App."""
4800
+ type AppDashboardIntegration implements Node {
4801
+ """The ID of the object"""
4802
+ id: ID!
4803
+
4804
+ """
4805
+ App this integration is for. This may be null for integrations that come from plugins.
4806
+ """
4807
+ app: App
4808
+
4809
+ """What context this integration should be rendered in"""
4810
+ context: AppDashboardIntegrationContextEnum!
4811
+
4812
+ """The URL to load for this integration"""
4813
+ iframeUrl: String!
4814
+ }
4815
+
4816
+ enum AppDashboardIntegrationContextEnum {
4817
+ """Nautical order details page"""
4818
+ NAUTICAL_ORDER
4819
+
4820
+ """Seller order details page"""
4821
+ ORDER
4822
+ }
4823
+
4807
4824
  """Represents a storefront integration for an App."""
4808
4825
  type AppStorefrontIntegration implements Node {
4809
4826
  """The ID of the object"""
@@ -4879,8 +4896,6 @@ enum WebhookEventTypeEnum {
4879
4896
  INVOICE_DELETED
4880
4897
  INVOICE_REQUESTED
4881
4898
  INVOICE_SENT
4882
- MICROSITE_CREATED
4883
- MICROSITE_UPDATED
4884
4899
  NAUTICAL_ORDER_CANCELLED
4885
4900
  NAUTICAL_ORDER_CREATED
4886
4901
  NAUTICAL_ORDER_FULFILLED
@@ -7161,61 +7176,6 @@ type WarehouseCountableEdge {
7161
7176
  cursor: String!
7162
7177
  }
7163
7178
 
7164
- """Represents a microsite of products."""
7165
- type Microsite implements Node & ObjectWithMetadata {
7166
- """The ID of the object"""
7167
- id: ID!
7168
- publicationDate: Date
7169
- description: String!
7170
- descriptionHtml: String!
7171
- seoTitle: String
7172
- seoDescription: String
7173
- name: String!
7174
- slug: String!
7175
- footerText: String
7176
- seller: Seller
7177
-
7178
- """
7179
- List of private metadata items.Requires proper staff permissions to access.
7180
- """
7181
- privateMetadata: [MetadataItem!]!
7182
-
7183
- """List of public metadata items. Can be accessed without permissions."""
7184
- metadata: [MetadataItem!]!
7185
-
7186
- """List of products in this microsite."""
7187
- products(
7188
- """Filtering options for products."""
7189
- filter: ProductFilterInput
7190
-
7191
- """Sort products."""
7192
- sortBy: ProductOrder
7193
-
7194
- """Return the elements in the list that come before the specified cursor."""
7195
- before: String
7196
-
7197
- """Return the elements in the list that come after the specified cursor."""
7198
- after: String
7199
-
7200
- """Return the first n elements from the list."""
7201
- first: Int
7202
-
7203
- """Return the last n elements from the list."""
7204
- last: Int
7205
- ): ProductCountableConnection
7206
- bannerImage(
7207
- """Size of the image."""
7208
- size: Int
7209
- ): Image
7210
- logoImage(
7211
- """Size of the image."""
7212
- size: Int
7213
- ): Image
7214
-
7215
- """Whether the microsite is published."""
7216
- isPublished: Boolean!
7217
- }
7218
-
7219
7179
  """Document"""
7220
7180
  type Document {
7221
7181
  """Global ID of the Document."""
@@ -8130,8 +8090,6 @@ enum WebhookSampleEventTypeEnum {
8130
8090
  INVOICE_DELETED
8131
8091
  INVOICE_REQUESTED
8132
8092
  INVOICE_SENT
8133
- MICROSITE_CREATED
8134
- MICROSITE_UPDATED
8135
8093
  NAUTICAL_ORDER_CANCELLED
8136
8094
  NAUTICAL_ORDER_CREATED
8137
8095
  NAUTICAL_ORDER_FULFILLED
@@ -9150,6 +9108,98 @@ enum RefundSortField {
9150
9108
  TOKEN
9151
9109
  }
9152
9110
 
9111
+ """
9112
+ A policy that can be manually added by a shop operator through the dashboard.
9113
+ """
9114
+ type Policy implements Node & ObjectWithMetadata {
9115
+ """The ID of the object"""
9116
+ id: ID!
9117
+ publicationDate: Date
9118
+ isPublished: Boolean!
9119
+ createdAt: DateTime!
9120
+ updatedAt: DateTime!
9121
+ content: String!
9122
+ contentHtml: String!
9123
+ seoTitle: String
9124
+ seoDescription: String
9125
+ category: PolicyCategory!
9126
+ slug: String!
9127
+ title: String!
9128
+
9129
+ """
9130
+ List of private metadata items.Requires proper staff permissions to access.
9131
+ """
9132
+ privateMetadata: [MetadataItem!]!
9133
+
9134
+ """List of public metadata items. Can be accessed without permissions."""
9135
+ metadata: [MetadataItem!]!
9136
+ }
9137
+
9138
+ """An enumeration."""
9139
+ enum PolicyCategory {
9140
+ """Terms of Service"""
9141
+ TERMS_OF_SERVICE
9142
+
9143
+ """Privacy Policy"""
9144
+ PRIVACY_POLICY
9145
+
9146
+ """Returns & Refund"""
9147
+ RETURNS_AND_REFUNDS
9148
+
9149
+ """Shipping Policy"""
9150
+ SHIPPING_POLICY
9151
+
9152
+ """Custom"""
9153
+ CUSTOM
9154
+ }
9155
+
9156
+ type PolicyCountableConnection {
9157
+ """Pagination data for this connection."""
9158
+ pageInfo: PageInfo!
9159
+ edges: [PolicyCountableEdge!]!
9160
+
9161
+ """A total count of items in the collection."""
9162
+ totalCount: Int
9163
+ }
9164
+
9165
+ type PolicyCountableEdge {
9166
+ """The item at the end of the edge."""
9167
+ node: Policy!
9168
+
9169
+ """A cursor for use in pagination."""
9170
+ cursor: String!
9171
+ }
9172
+
9173
+ input PolicySortingInput {
9174
+ """Specifies the direction in which to sort products."""
9175
+ direction: OrderDirection!
9176
+
9177
+ """Sort policies by the selected field."""
9178
+ field: PolicySortField!
9179
+ }
9180
+
9181
+ enum PolicySortField {
9182
+ """Sort policies by title."""
9183
+ TITLE
9184
+
9185
+ """Sort policies by slug."""
9186
+ SLUG
9187
+
9188
+ """Sort policies by visibility."""
9189
+ VISIBILITY
9190
+
9191
+ """Sort policies by creation date."""
9192
+ CREATION_DATE
9193
+
9194
+ """Sort policies by publication date."""
9195
+ PUBLICATION_DATE
9196
+ }
9197
+
9198
+ input PolicyFilterInput {
9199
+ search: String
9200
+ isPublished: Boolean
9201
+ }
9202
+
9153
9203
  type DigitalContentCountableConnection {
9154
9204
  """Pagination data for this connection."""
9155
9205
  pageInfo: PageInfo!
@@ -10512,6 +10562,7 @@ type Page implements Node & ObjectWithMetadata {
10512
10562
  """The ID of the object"""
10513
10563
  id: ID!
10514
10564
  publicationDate: Date
10565
+ isPublished: Boolean!
10515
10566
  createdAt: DateTime!
10516
10567
  updatedAt: DateTime!
10517
10568
  content: String!
@@ -10528,9 +10579,6 @@ type Page implements Node & ObjectWithMetadata {
10528
10579
 
10529
10580
  """List of public metadata items. Can be accessed without permissions."""
10530
10581
  metadata: [MetadataItem!]!
10531
-
10532
- """Whether the page is published."""
10533
- isPublished: Boolean!
10534
10582
  image(
10535
10583
  """Featured image for the page."""
10536
10584
  size: Int
@@ -10796,58 +10844,6 @@ type NauticalConfiguration {
10796
10844
  configurationValueString: String
10797
10845
  }
10798
10846
 
10799
- type MicrositeCountableConnection {
10800
- """Pagination data for this connection."""
10801
- pageInfo: PageInfo!
10802
- edges: [MicrositeCountableEdge!]!
10803
-
10804
- """A total count of items in the collection."""
10805
- totalCount: Int
10806
- }
10807
-
10808
- type MicrositeCountableEdge {
10809
- """The item at the end of the edge."""
10810
- node: Microsite!
10811
-
10812
- """A cursor for use in pagination."""
10813
- cursor: String!
10814
- }
10815
-
10816
- input MicrositeFilterInput {
10817
- published: MicrositePublished
10818
- search: String
10819
- ids: [ID]
10820
- metadata: MetadataFilterInput
10821
- privateMetadata: MetadataFilterInput
10822
- }
10823
-
10824
- enum MicrositePublished {
10825
- PUBLISHED
10826
- HIDDEN
10827
- }
10828
-
10829
- input MicrositeSortingInput {
10830
- """Specifies the direction in which to sort products."""
10831
- direction: OrderDirection!
10832
-
10833
- """Sort microsites by the selected field."""
10834
- field: MicrositeSortField!
10835
- }
10836
-
10837
- enum MicrositeSortField {
10838
- """Sort microsites by name."""
10839
- NAME
10840
-
10841
- """Sort microsites by availability."""
10842
- AVAILABILITY
10843
-
10844
- """Sort microsites by product count."""
10845
- PRODUCT_COUNT
10846
-
10847
- """Sort microsites by publication date."""
10848
- PUBLICATION_DATE
10849
- }
10850
-
10851
10847
  """
10852
10848
  Represents a single menu - an object that is used to help navigate through the store.
10853
10849
  """
@@ -10956,7 +10952,9 @@ type MarketplaceConfiguration {
10956
10952
  id: UUID!
10957
10953
  marketplaceName: String!
10958
10954
  requireProductApproval: Boolean!
10959
- requireProductTypes: Boolean!
10955
+
10956
+ """True if products require product types to be created"""
10957
+ requireProductTypes: Boolean @deprecated(reason: "This will be removed on April 15, 2025.")
10960
10958
 
10961
10959
  """Determines payout status transformation strategy"""
10962
10960
  payoutAutomationStrategy: MarketplaceConfigurationPayoutAutomationStrategyEnum
@@ -13169,7 +13167,7 @@ enum StaffMemberStatus {
13169
13167
  DEACTIVATED
13170
13168
  }
13171
13169
 
13172
- union _Entity = WishlistItem | Wishlist | User | Address | ProductVariant | Product | Category | ProductType | App | Collection | Microsite | ProductImage | ProductStatusLog | Group | CatalogImportProcess | CatalogImportProcessLogRecord
13170
+ union _Entity = WishlistItem | Wishlist | User | Address | ProductVariant | Product | Category | ProductType | App | Collection | ProductImage | ProductStatusLog | Group | CatalogImportProcess | CatalogImportProcessLogRecord
13173
13171
 
13174
13172
  scalar _Any
13175
13173
 
@@ -13203,7 +13201,7 @@ type Mutation {
13203
13201
  description: String
13204
13202
 
13205
13203
  """
13206
- 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.openxmlformats-officedocument.presentationml.presentation, drawing/x-dwf, image/x-ms-bmp, image/vnd.dwg, text/x-csv, application/vnd.openxmlformats-officedocument.presentationml.slideshow, application/x-csv, application/x-dxf, image/x-dxf, application/dwg, application/x-zip-compressed, image/x-eps, drawing/x-dwg, application/x-tar, image/x-tif, text/pdf, application/x-eps, image/jpeg, application/vnd.ms-word, application/gzip, application/vnd.openxmlformats-officedocument.wordprocessingml.document, image/jpg, pplication/vnd.rar, application/x-acad, text/plain, image/svg+xml, application/rtf, application/svg+xml, image/svg, application/x-rtf, text/svg-xml, image/tif, application/tif, application/vnd.oasis.opendocument.text, application/eps, application/gzip-compressed, application/x-gzip, application/postscript, application/msword, application/gzipped, text/csv, application/jpg, application/x-dwg, application/x-rar, application/tiff, image/x-bmp, drawing/dwg, application/dxf, image/heic-sequence, application/acad, application/vnd.ms-powerpoint, application/vnd.oasis.opendocument.spreadsheet, image/png, application/zip, image/dxf, application/vnd.pdf, application/excel, text/comma-separated-values, image/heif, text/rtf, application/x-pdf, text/svg, image/heif-sequence, text/x-pdf, application/vnd.openxmlformats-officedocument.spreadsheetml.sheet, application/vnd.oasis.opendocument.presentation, application/csv, application/x-tiff, image/eps, image/bmp, application/pdf, image/gif, application/x-tif, text/x-comma-separated-values, application/acrobat, application/x-jpg, image/x-tiff, application/vnd.ms-excel, application/x-rar-compressed, image/heic, application/x-autocad, image/webp, image/x-dwg, image/tiff.
13204
+ Used when uploading a new document or file in a multipart request that does not exist in the system already. Supported file types: image/tiff, image/x-tiff, image/heic-sequence, image/x-dxf, application/x-acad, drawing/x-dwg, image/x-bmp, image/eps, application/x-dwg, application/x-autocad, application/vnd.ms-powerpoint, image/heic, application/vnd.openxmlformats-officedocument.spreadsheetml.sheet, image/svg+xml, application/x-csv, application/x-eps, application/x-rar, application/vnd.openxmlformats-officedocument.presentationml.presentation, application/vnd.openxmlformats-officedocument.wordprocessingml.document, application/vnd.ms-excel, application/jpg, application/postscript, image/webp, image/x-ms-bmp, application/vnd.pdf, application/x-jpg, image/gif, drawing/dwg, application/vnd.oasis.opendocument.spreadsheet, application/x-rtf, application/x-dxf, application/vnd.ms-word, application/x-tar, text/svg-xml, pplication/vnd.rar, image/x-eps, application/acad, image/bmp, text/comma-separated-values, image/jpeg, application/vnd.oasis.opendocument.text, application/x-pdf, application/tiff, application/vnd.oasis.opendocument.presentation, image/dxf, application/x-tif, image/svg, application/dwg, application/zip, application/vnd.openxmlformats-officedocument.presentationml.slideshow, application/x-tiff, application/pdf, image/png, application/excel, text/pdf, text/x-pdf, text/rtf, text/plain, application/csv, image/jpg, text/svg, image/vnd.dwg, application/gzip-compressed, drawing/x-dwf, text/csv, image/tif, text/x-comma-separated-values, application/dxf, application/acrobat, image/x-dwg, application/rtf, image/heif, application/gzip, text/x-csv, application/svg+xml, image/heif-sequence, application/gzipped, application/x-rar-compressed, application/eps, application/x-zip-compressed, image/x-tif, application/tif, application/msword, application/x-gzip.
13207
13205
  """
13208
13206
  file: Upload!
13209
13207
 
@@ -13471,86 +13469,23 @@ type Mutation {
13471
13469
  wishlistId: ID
13472
13470
  ): WishlistRemoveProductVariant
13473
13471
 
13474
- """Adds products to a microsite."""
13475
- micrositeAddProducts(
13476
- """ID of a microsite."""
13477
- micrositeId: ID!
13478
-
13479
- """List of product IDs."""
13480
- products: [ID!]!
13481
- ): MicrositeAddProducts @deprecated(reason: "Microsites will be removed on January 2, 2025.")
13482
-
13483
- """Creates a new microsite."""
13484
- micrositeCreate(
13485
- """Fields required to create a microsite."""
13486
- input: MicrositeCreateInput!
13487
- ): MicrositeCreate @deprecated(reason: "Microsites will be removed on January 2, 2025.")
13472
+ """Creates a new agreement."""
13473
+ agreementCreate(
13474
+ """Fields required to create a agreement."""
13475
+ input: AgreementInput!
13476
+ ): AgreementCreate
13488
13477
 
13489
- """Deletes a microsite."""
13490
- micrositeDelete(
13491
- """ID of a microsite to delete."""
13478
+ """Deletes a agreement."""
13479
+ agreementDelete(
13480
+ """ID of a agreement to delete."""
13492
13481
  id: ID!
13493
- ): MicrositeDelete @deprecated(reason: "Microsites will be removed on January 2, 2025.")
13494
-
13495
- """Reorder the products of a microsite."""
13496
- micrositeReorderProducts(
13497
- """ID of a microsite."""
13498
- micrositeId: ID!
13499
-
13500
- """The microsite products position operations."""
13501
- moves: [MoveProductInput!]!
13502
- ): MicrositeReorderProducts @deprecated(reason: "Microsites will be removed on January 2, 2025.")
13482
+ ): AgreementDelete
13503
13483
 
13504
- """Deletes microsites."""
13505
- micrositeBulkDelete(
13506
- """List of microsite IDs to delete."""
13484
+ """Deletes agreements."""
13485
+ agreementBulkDelete(
13486
+ """List of agreement IDs to delete."""
13507
13487
  ids: [ID!]!
13508
- ): MicrositeBulkDelete @deprecated(reason: "Microsites will be removed on January 2, 2025.")
13509
-
13510
- """Publish microsites."""
13511
- micrositeBulkPublish(
13512
- """List of microsites IDs to (un)publish."""
13513
- ids: [ID!]!
13514
-
13515
- """Determine if microsites will be published or not."""
13516
- isPublished: Boolean!
13517
- ): MicrositeBulkPublish @deprecated(reason: "Microsites will be removed on January 2, 2025.")
13518
-
13519
- """Remove products from a microsite."""
13520
- micrositeRemoveProducts(
13521
- """ID of a microsite."""
13522
- micrositeId: ID!
13523
-
13524
- """List of product IDs."""
13525
- products: [ID!]!
13526
- ): MicrositeRemoveProducts @deprecated(reason: "Microsites will be removed on January 2, 2025.")
13527
-
13528
- """Updates a microsite."""
13529
- micrositeUpdate(
13530
- """ID of a microsite to update."""
13531
- id: ID!
13532
-
13533
- """Fields required to update a microsite."""
13534
- input: MicrositeInput!
13535
- ): MicrositeUpdate @deprecated(reason: "Microsites will be removed on January 2, 2025.")
13536
-
13537
- """Creates a new agreement."""
13538
- agreementCreate(
13539
- """Fields required to create a agreement."""
13540
- input: AgreementInput!
13541
- ): AgreementCreate
13542
-
13543
- """Deletes a agreement."""
13544
- agreementDelete(
13545
- """ID of a agreement to delete."""
13546
- id: ID!
13547
- ): AgreementDelete
13548
-
13549
- """Deletes agreements."""
13550
- agreementBulkDelete(
13551
- """List of agreement IDs to delete."""
13552
- ids: [ID!]!
13553
- ): AgreementBulkDelete
13488
+ ): AgreementBulkDelete
13554
13489
 
13555
13490
  """Publish agreements."""
13556
13491
  agreementBulkPublish(
@@ -14074,6 +14009,42 @@ type Mutation {
14074
14009
  refundId: ID!
14075
14010
  ): RefundPaymentsDelete
14076
14011
 
14012
+ """Creates a new policy."""
14013
+ policyCreate(
14014
+ """Fields required to create a policy."""
14015
+ input: PolicyInput!
14016
+ ): PolicyCreate
14017
+
14018
+ """Deletes a policy."""
14019
+ policyDelete(
14020
+ """ID of the policy to delete."""
14021
+ id: ID!
14022
+ ): PolicyDelete
14023
+
14024
+ """Deletes policy."""
14025
+ policyBulkDelete(
14026
+ """List of policy IDs to delete."""
14027
+ ids: [ID!]!
14028
+ ): PolicyBulkDelete
14029
+
14030
+ """Publish policy."""
14031
+ policyBulkPublish(
14032
+ """List of policy IDs to (un)publish."""
14033
+ ids: [ID!]!
14034
+
14035
+ """Determine if policy will be published or not."""
14036
+ isPublished: Boolean!
14037
+ ): PolicyBulkPublish
14038
+
14039
+ """Updates an existing policy."""
14040
+ policyUpdate(
14041
+ """ID of the policy to update."""
14042
+ id: ID!
14043
+
14044
+ """Fields required to update a policy."""
14045
+ input: PolicyInput!
14046
+ ): PolicyUpdate
14047
+
14077
14048
  """Creates a new price book."""
14078
14049
  priceBookCreate(
14079
14050
  """Fields required to create a price book."""
@@ -16030,6 +16001,18 @@ type Mutation {
16030
16001
  token: String!
16031
16002
  ): AppTokenVerify
16032
16003
 
16004
+ """Creates a new dashboard integration for an app."""
16005
+ appDashboardIntegrationCreate(
16006
+ """Fields required to create a dashboard integration."""
16007
+ input: AppDashboardIntegrationInput!
16008
+ ): AppDashboardIntegrationCreate
16009
+
16010
+ """Deletes an app storefront integration from the app."""
16011
+ appDashboardIntegrationDelete(
16012
+ """ID of a app dashboard integration to delete."""
16013
+ id: ID!
16014
+ ): AppDashboardIntegrationDelete
16015
+
16033
16016
  """Creates a new storefront integration for an app."""
16034
16017
  appStorefrontIntegrationCreate(
16035
16018
  """Fields required to create a storefront integration."""
@@ -16379,7 +16362,7 @@ type Mutation {
16379
16362
  permissionGroupCreate(
16380
16363
  """Input fields to create permission group."""
16381
16364
  input: PermissionGroupCreateInput!
16382
- ): PermissionGroupCreate
16365
+ ): PermissionGroupCreate @deprecated(reason: "This will be removed on April 14, 2025")
16383
16366
 
16384
16367
  """Update permission group."""
16385
16368
  permissionGroupUpdate(
@@ -16394,7 +16377,7 @@ type Mutation {
16394
16377
  permissionGroupDelete(
16395
16378
  """ID of the group to delete."""
16396
16379
  id: ID!
16397
- ): PermissionGroupDelete
16380
+ ): PermissionGroupDelete @deprecated(reason: "This will be removed on April 14, 2025")
16398
16381
  }
16399
16382
 
16400
16383
  """EmailTemplate update mutation."""
@@ -16620,7 +16603,7 @@ input MarketplaceConfigurationInput {
16620
16603
  requireProductApproval: Boolean
16621
16604
 
16622
16605
  """True if products require product types to be created"""
16623
- requireProductTypes: Boolean
16606
+ requireProductTypes: Boolean @deprecated(reason: "This will be removed on April 15, 2025.")
16624
16607
 
16625
16608
  """Updates status transformation strategy for payout."""
16626
16609
  payoutAutomationStrategy: MarketplaceConfigurationPayoutAutomationStrategyEnum = null
@@ -17033,200 +17016,6 @@ type WishlistRemoveProductVariant {
17033
17016
  wishlistErrors: [WishlistError!]!
17034
17017
  }
17035
17018
 
17036
- """Adds products to a microsite."""
17037
- type MicrositeAddProducts {
17038
- """Microsite to which products will be added."""
17039
- microsite: Microsite
17040
- micrositeErrors: [ProductError!]!
17041
- }
17042
-
17043
- type ProductError {
17044
- """
17045
- Name of a field that caused the error. A value of `null` indicates that the error isn't associated with a particular field.
17046
- """
17047
- field: String
17048
-
17049
- """The error message."""
17050
- message: String!
17051
-
17052
- """The error code."""
17053
- code: ProductErrorCode!
17054
-
17055
- """List of attributes IDs which causes the error."""
17056
- attributes: [ID!]
17057
- }
17058
-
17059
- """An enumeration."""
17060
- enum ProductErrorCode {
17061
- ALREADY_EXISTS
17062
- ATTRIBUTE_ALREADY_ASSIGNED
17063
- ATTRIBUTE_CANNOT_BE_ASSIGNED
17064
- ATTRIBUTE_VARIANTS_DISABLED
17065
- DUPLICATED_INPUT_ITEM
17066
- GRAPHQL_ERROR
17067
- INVALID
17068
- INVALID_PHONE
17069
- NOT_PRODUCTS_IMAGE
17070
- NOT_PRODUCTS_VARIANT
17071
- NOT_FOUND
17072
- REQUIRED
17073
- UNIQUE
17074
- VARIANT_NO_DIGITAL_CONTENT
17075
- VARIANT_IN_ACTIVE_ORDER
17076
- CATEGORY_CANNOT_BE_ASSIGNED
17077
- CATEGORY_CANNOT_BE_DELETED
17078
- COLLECTION_CANNOT_BE_CHANGED
17079
- COLLECTION_ALLOWED_FOR_PRODUCTS_ONLY
17080
- COLLECTION_ALLOWED_FOR_VARIANTS_ONLY
17081
- INVENTORY_FIELD_CANNOT_BE_EDITED
17082
- }
17083
-
17084
- """Creates a new microsite."""
17085
- type MicrositeCreate {
17086
- micrositeErrors: [ProductError!]!
17087
- microsite: Microsite
17088
- }
17089
-
17090
- input MicrositeCreateInput {
17091
- """Informs whether a microsite is published."""
17092
- isPublished: Boolean
17093
-
17094
- """Name of the microsite."""
17095
- name: String
17096
-
17097
- """Text to appear in footer of microsite."""
17098
- footerText: String
17099
-
17100
- """Slug of the microsite."""
17101
- slug: String
17102
-
17103
- """Description of the microsite (plaintext, deprecated for input)."""
17104
- description: String
17105
-
17106
- """Description of the microsite (HTML)."""
17107
- descriptionHtml: String
17108
-
17109
- """Banner image file."""
17110
- bannerImage: Upload
17111
-
17112
- """Alt text for an image."""
17113
- bannerImageAlt: String
17114
-
17115
- """Logo image file."""
17116
- logoImage: Upload
17117
-
17118
- """Alt text for an image."""
17119
- logoImageAlt: String
17120
-
17121
- """Search engine optimization fields."""
17122
- seo: SeoInput
17123
-
17124
- """Publication date. ISO 8601 standard."""
17125
- publicationDate: Date
17126
-
17127
- """List of products to be added to the microsite."""
17128
- products: [ID!]
17129
-
17130
- """Vendor that microsite belongs to"""
17131
- vendor: ID!
17132
- }
17133
-
17134
- input SeoInput {
17135
- """SEO title."""
17136
- title: String
17137
-
17138
- """SEO description."""
17139
- description: String
17140
- }
17141
-
17142
- """Deletes a microsite."""
17143
- type MicrositeDelete {
17144
- micrositeErrors: [ProductError!]!
17145
- microsite: Microsite
17146
- }
17147
-
17148
- """Reorder the products of a microsite."""
17149
- type MicrositeReorderProducts {
17150
- """Microsite from which products are reordered."""
17151
- microsite: Microsite
17152
- micrositeErrors: [ProductError!]!
17153
- }
17154
-
17155
- input MoveProductInput {
17156
- """The ID of the product to move."""
17157
- productId: ID!
17158
-
17159
- """
17160
- The relative sorting position of the product (from -inf to +inf) starting from the first given product's actual position.1 moves the item one position forward, -1 moves the item one position backward, 0 leaves the item unchanged.
17161
- """
17162
- sortOrder: Int
17163
- }
17164
-
17165
- """Deletes microsites."""
17166
- type MicrositeBulkDelete {
17167
- """Returns how many objects were affected."""
17168
- count: Int!
17169
- micrositeErrors: [ProductError!]!
17170
- }
17171
-
17172
- """Publish microsites."""
17173
- type MicrositeBulkPublish {
17174
- """Returns how many objects were affected."""
17175
- count: Int!
17176
- micrositeErrors: [ProductError!]!
17177
- }
17178
-
17179
- """Remove products from a microsite."""
17180
- type MicrositeRemoveProducts {
17181
- """Microsite from which products will be removed."""
17182
- microsite: Microsite
17183
- micrositeErrors: [ProductError!]!
17184
- }
17185
-
17186
- """Updates a microsite."""
17187
- type MicrositeUpdate {
17188
- micrositeErrors: [ProductError!]!
17189
- microsite: Microsite
17190
- }
17191
-
17192
- input MicrositeInput {
17193
- """Informs whether a microsite is published."""
17194
- isPublished: Boolean
17195
-
17196
- """Name of the microsite."""
17197
- name: String
17198
-
17199
- """Text to appear in footer of microsite."""
17200
- footerText: String
17201
-
17202
- """Slug of the microsite."""
17203
- slug: String
17204
-
17205
- """Description of the microsite (plaintext, deprecated for input)."""
17206
- description: String
17207
-
17208
- """Description of the microsite (HTML)."""
17209
- descriptionHtml: String
17210
-
17211
- """Banner image file."""
17212
- bannerImage: Upload
17213
-
17214
- """Alt text for an image."""
17215
- bannerImageAlt: String
17216
-
17217
- """Logo image file."""
17218
- logoImage: Upload
17219
-
17220
- """Alt text for an image."""
17221
- logoImageAlt: String
17222
-
17223
- """Search engine optimization fields."""
17224
- seo: SeoInput
17225
-
17226
- """Publication date. ISO 8601 standard."""
17227
- publicationDate: Date
17228
- }
17229
-
17230
17019
  """Creates a new agreement."""
17231
17020
  type AgreementCreate {
17232
17021
  agreementErrors: [AgreementError!]!
@@ -17298,6 +17087,14 @@ input AgreementInput {
17298
17087
  markupCommissionValue: Decimal
17299
17088
  }
17300
17089
 
17090
+ input SeoInput {
17091
+ """SEO title."""
17092
+ title: String
17093
+
17094
+ """SEO description."""
17095
+ description: String
17096
+ }
17097
+
17301
17098
  """Deletes a agreement."""
17302
17099
  type AgreementDelete {
17303
17100
  agreementErrors: [AgreementError!]!
@@ -18680,6 +18477,80 @@ type RefundPaymentsDelete {
18680
18477
  refundErrors: [RefundError!]!
18681
18478
  }
18682
18479
 
18480
+ """Creates a new policy."""
18481
+ type PolicyCreate {
18482
+ policyErrors: [PolicyError!]!
18483
+ policy: Policy
18484
+ }
18485
+
18486
+ type PolicyError {
18487
+ """
18488
+ Name of a field that caused the error. A value of `null` indicates that the error isn't associated with a particular field.
18489
+ """
18490
+ field: String
18491
+
18492
+ """The error message."""
18493
+ message: String!
18494
+
18495
+ """The error code."""
18496
+ code: PolicyErrorCode!
18497
+ }
18498
+
18499
+ """An enumeration."""
18500
+ enum PolicyErrorCode {
18501
+ GRAPHQL_ERROR
18502
+ INVALID
18503
+ NOT_FOUND
18504
+ REQUIRED
18505
+ UNIQUE
18506
+ }
18507
+
18508
+ input PolicyInput {
18509
+ """Policy internal name."""
18510
+ slug: String
18511
+
18512
+ """Policy title."""
18513
+ title: String
18514
+
18515
+ """Policy content (HTML)."""
18516
+ contentHtml: String
18517
+
18518
+ """Determines if the policy is visible in the storefront."""
18519
+ isPublished: Boolean
18520
+
18521
+ """Publication date. ISO 8601 standard."""
18522
+ publicationDate: String
18523
+
18524
+ """Search engine optimization fields."""
18525
+ seo: SeoInput
18526
+ }
18527
+
18528
+ """Deletes a policy."""
18529
+ type PolicyDelete {
18530
+ policyErrors: [PolicyError!]!
18531
+ policy: Policy
18532
+ }
18533
+
18534
+ """Deletes policy."""
18535
+ type PolicyBulkDelete {
18536
+ """Returns how many objects were affected."""
18537
+ count: Int!
18538
+ policyErrors: [PolicyError!]!
18539
+ }
18540
+
18541
+ """Publish policy."""
18542
+ type PolicyBulkPublish {
18543
+ """Returns how many objects were affected."""
18544
+ count: Int!
18545
+ policyErrors: [PolicyError!]!
18546
+ }
18547
+
18548
+ """Updates an existing policy."""
18549
+ type PolicyUpdate {
18550
+ policyErrors: [PolicyError!]!
18551
+ policy: Policy
18552
+ }
18553
+
18683
18554
  """Creates a new price book."""
18684
18555
  type PriceBookCreate {
18685
18556
  priceBookErrors: [PriceBookError!]!
@@ -18993,6 +18864,47 @@ type CategoryCreate {
18993
18864
  category: Category
18994
18865
  }
18995
18866
 
18867
+ type ProductError {
18868
+ """
18869
+ Name of a field that caused the error. A value of `null` indicates that the error isn't associated with a particular field.
18870
+ """
18871
+ field: String
18872
+
18873
+ """The error message."""
18874
+ message: String!
18875
+
18876
+ """The error code."""
18877
+ code: ProductErrorCode!
18878
+
18879
+ """List of attributes IDs which causes the error."""
18880
+ attributes: [ID!]
18881
+ }
18882
+
18883
+ """An enumeration."""
18884
+ enum ProductErrorCode {
18885
+ ALREADY_EXISTS
18886
+ ATTRIBUTE_ALREADY_ASSIGNED
18887
+ ATTRIBUTE_CANNOT_BE_ASSIGNED
18888
+ ATTRIBUTE_VARIANTS_DISABLED
18889
+ DUPLICATED_INPUT_ITEM
18890
+ GRAPHQL_ERROR
18891
+ INVALID
18892
+ INVALID_PHONE
18893
+ NOT_PRODUCTS_IMAGE
18894
+ NOT_PRODUCTS_VARIANT
18895
+ NOT_FOUND
18896
+ REQUIRED
18897
+ UNIQUE
18898
+ VARIANT_NO_DIGITAL_CONTENT
18899
+ VARIANT_IN_ACTIVE_ORDER
18900
+ CATEGORY_CANNOT_BE_ASSIGNED
18901
+ CATEGORY_CANNOT_BE_DELETED
18902
+ COLLECTION_CANNOT_BE_CHANGED
18903
+ COLLECTION_ALLOWED_FOR_PRODUCTS_ONLY
18904
+ COLLECTION_ALLOWED_FOR_VARIANTS_ONLY
18905
+ INVENTORY_FIELD_CANNOT_BE_EDITED
18906
+ }
18907
+
18996
18908
  input CategoryInput {
18997
18909
  """Category description (plaintext, deprecated as input)."""
18998
18910
  description: String
@@ -19159,6 +19071,16 @@ type CollectionReorderProducts {
19159
19071
  productErrors: [ProductError!]!
19160
19072
  }
19161
19073
 
19074
+ input MoveProductInput {
19075
+ """The ID of the product to move."""
19076
+ productId: ID!
19077
+
19078
+ """
19079
+ The relative sorting position of the product (from -inf to +inf) starting from the first given product's actual position.1 moves the item one position forward, -1 moves the item one position backward, 0 leaves the item unchanged.
19080
+ """
19081
+ sortOrder: Int
19082
+ }
19083
+
19162
19084
  """Deletes collections."""
19163
19085
  type CollectionBulkDelete {
19164
19086
  """Returns how many objects were affected."""
@@ -19314,16 +19236,16 @@ input ProductCreateInput {
19314
19236
  visibleInListings: Boolean
19315
19237
 
19316
19238
  """Manufacturer product number"""
19317
- mpn: String
19239
+ mpn: String @deprecated(reason: "This field will be removed on April 15, 2025.")
19318
19240
 
19319
19241
  """Product brand"""
19320
- brand: String
19242
+ brand: String @deprecated(reason: "This field will be removed on April 15, 2025.")
19321
19243
 
19322
19244
  """Manufacturer of the product"""
19323
- manufacturer: String
19245
+ manufacturer: String @deprecated(reason: "This field will be removed on April 15, 2025.")
19324
19246
 
19325
19247
  """Product model code"""
19326
- model: String
19248
+ model: String @deprecated(reason: "This field will be removed on April 15, 2025.")
19327
19249
 
19328
19250
  """Override price for grouped products"""
19329
19251
  overridePrice: Boolean
@@ -19340,7 +19262,7 @@ input ProductCreateInput {
19340
19262
  subStatusReason: String
19341
19263
 
19342
19264
  """Sort priority for product"""
19343
- sortPriorityWeight: Decimal
19265
+ sortPriorityWeight: Decimal @deprecated(reason: "This field will be removed on April 15, 2025.")
19344
19266
 
19345
19267
  """
19346
19268
  Set whether this product requires shipping by default, will be overridden by product type if provided
@@ -19530,16 +19452,16 @@ input ProductInput {
19530
19452
  visibleInListings: Boolean
19531
19453
 
19532
19454
  """Manufacturer product number"""
19533
- mpn: String
19455
+ mpn: String @deprecated(reason: "This field will be removed on April 15, 2025.")
19534
19456
 
19535
19457
  """Product brand"""
19536
- brand: String
19458
+ brand: String @deprecated(reason: "This field will be removed on April 15, 2025.")
19537
19459
 
19538
19460
  """Manufacturer of the product"""
19539
- manufacturer: String
19461
+ manufacturer: String @deprecated(reason: "This field will be removed on April 15, 2025.")
19540
19462
 
19541
19463
  """Product model code"""
19542
- model: String
19464
+ model: String @deprecated(reason: "This field will be removed on April 15, 2025.")
19543
19465
 
19544
19466
  """Override price for grouped products"""
19545
19467
  overridePrice: Boolean
@@ -19556,7 +19478,7 @@ input ProductInput {
19556
19478
  subStatusReason: String
19557
19479
 
19558
19480
  """Sort priority for product"""
19559
- sortPriorityWeight: Decimal
19481
+ sortPriorityWeight: Decimal @deprecated(reason: "This field will be removed on April 15, 2025.")
19560
19482
 
19561
19483
  """
19562
19484
  Set whether this product requires shipping by default, will be overridden by product type if provided
@@ -19837,7 +19759,7 @@ input ProductVariantCreateInput {
19837
19759
  costPrice: PositiveDecimal
19838
19760
 
19839
19761
  """Description of the product variant."""
19840
- description: String
19762
+ description: String @deprecated(reason: "This will be removed on April 15, 2025.")
19841
19763
 
19842
19764
  """Product variant description (HTML)."""
19843
19765
  descriptionHtml: String
@@ -19880,7 +19802,7 @@ input ProductVariantCreateInput {
19880
19802
  requiresQuote: Boolean
19881
19803
 
19882
19804
  """Substatus the variant is to be changed to."""
19883
- subStatus: ProductVariantSubStatusEnum
19805
+ subStatus: ProductVariantSubStatusEnum @deprecated(reason: "This field will be removed on April 15th, 2025. ProductVariant substatus will be the same as product substatus")
19884
19806
 
19885
19807
  """
19886
19808
  Informs whether a collection is published. All variants are published by default
@@ -19978,7 +19900,7 @@ input ProductVariantBulkCreateInput {
19978
19900
  costPrice: PositiveDecimal
19979
19901
 
19980
19902
  """Description of the product variant."""
19981
- description: String
19903
+ description: String @deprecated(reason: "This will be removed on April 15, 2025.")
19982
19904
 
19983
19905
  """Product variant description (HTML)."""
19984
19906
  descriptionHtml: String
@@ -20021,7 +19943,7 @@ input ProductVariantBulkCreateInput {
20021
19943
  requiresQuote: Boolean
20022
19944
 
20023
19945
  """Substatus the variant is to be changed to."""
20024
- subStatus: ProductVariantSubStatusEnum
19946
+ subStatus: ProductVariantSubStatusEnum @deprecated(reason: "This field will be removed on April 15th, 2025. ProductVariant substatus will be the same as product substatus")
20025
19947
 
20026
19948
  """
20027
19949
  Informs whether a collection is published. All variants are published by default
@@ -20157,7 +20079,7 @@ input ProductVariantInput {
20157
20079
  costPrice: PositiveDecimal
20158
20080
 
20159
20081
  """Description of the product variant."""
20160
- description: String
20082
+ description: String @deprecated(reason: "This will be removed on April 15, 2025.")
20161
20083
 
20162
20084
  """Product variant description (HTML)."""
20163
20085
  descriptionHtml: String
@@ -20200,7 +20122,7 @@ input ProductVariantInput {
20200
20122
  requiresQuote: Boolean
20201
20123
 
20202
20124
  """Substatus the variant is to be changed to."""
20203
- subStatus: ProductVariantSubStatusEnum
20125
+ subStatus: ProductVariantSubStatusEnum @deprecated(reason: "This field will be removed on April 15th, 2025. ProductVariant substatus will be the same as product substatus")
20204
20126
 
20205
20127
  """
20206
20128
  Informs whether a collection is published. All variants are published by default
@@ -23091,6 +23013,29 @@ type AppTokenVerify {
23091
23013
  appErrors: [AppError!]!
23092
23014
  }
23093
23015
 
23016
+ """Creates a new dashboard integration for an app."""
23017
+ type AppDashboardIntegrationCreate {
23018
+ appErrors: [AppError!]!
23019
+ appDashboardIntegration: AppDashboardIntegration
23020
+ }
23021
+
23022
+ input AppDashboardIntegrationInput {
23023
+ """ID of app."""
23024
+ app: ID!
23025
+
23026
+ """URL to the iframe"""
23027
+ iframeUrl: String!
23028
+
23029
+ """Context for where this integration should render"""
23030
+ context: AppDashboardIntegrationContextEnum!
23031
+ }
23032
+
23033
+ """Deletes an app storefront integration from the app."""
23034
+ type AppDashboardIntegrationDelete {
23035
+ appErrors: [AppError!]!
23036
+ appDashboardIntegration: AppDashboardIntegration
23037
+ }
23038
+
23094
23039
  """Creates a new storefront integration for an app."""
23095
23040
  type AppStorefrontIntegrationCreate {
23096
23041
  appErrors: [AppError!]!
@@ -23863,7 +23808,7 @@ enum PermissionGroupErrorCode {
23863
23808
 
23864
23809
  input PermissionGroupCreateInput {
23865
23810
  """List of permission code names to assign to this group."""
23866
- addPermissions: [PermissionEnum!]
23811
+ addPermissions: [PermissionEnum!] @deprecated(reason: "This will be removed on April 14, 2025")
23867
23812
 
23868
23813
  """List of users to assign to this group."""
23869
23814
  addUsers: [ID!]
@@ -23880,7 +23825,7 @@ type PermissionGroupUpdate {
23880
23825
 
23881
23826
  input PermissionGroupUpdateInput {
23882
23827
  """List of permission code names to assign to this group."""
23883
- addPermissions: [PermissionEnum!]
23828
+ addPermissions: [PermissionEnum!] @deprecated(reason: "This will be removed on April 14, 2025")
23884
23829
 
23885
23830
  """List of users to assign to this group."""
23886
23831
  addUsers: [ID!]
@@ -23889,7 +23834,7 @@ input PermissionGroupUpdateInput {
23889
23834
  name: String
23890
23835
 
23891
23836
  """List of permission code names to unassign from this group."""
23892
- removePermissions: [PermissionEnum!]
23837
+ removePermissions: [PermissionEnum!] @deprecated(reason: "This will be removed on April 14, 2025")
23893
23838
 
23894
23839
  """List of users to unassign from this group."""
23895
23840
  removeUsers: [ID!]
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@nautical-commerce/graphql-schema",
3
- "version": "v1.66.1",
3
+ "version": "v1.67.0-10-g9b23b3220",
4
4
  "description": "## Getting Started",
5
5
  "main": "./nautical/schema.graphql",
6
6
  "scripts": {