@nautical-commerce/graphql-schema 1.66.0-7-gdd9a0e711 → 1.66.0-9-gb2c792c73

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.
@@ -1563,14 +1563,14 @@ type Query {
1563
1563
 
1564
1564
  """End of the period to filter results"""
1565
1565
  endDate: Date!
1566
- ): InReportOrderCustomerSummaryType
1566
+ ): InReportOrderCustomerSummaryType @deprecated(reason: "This will be removed on April 13, 2025.")
1567
1567
  insightsOrdersSellerSummary(
1568
1568
  """Beginning of the period to filter results"""
1569
1569
  startDate: Date!
1570
1570
 
1571
1571
  """End of the period to filter results"""
1572
1572
  endDate: Date!
1573
- ): InReportOrderSellerSummaryType
1573
+ ): InReportOrderSellerSummaryType @deprecated(reason: "This will be removed on April 13, 2025.")
1574
1574
  insightsOrdersMarketplaceSummary(
1575
1575
  """Beginning of the period to filter results"""
1576
1576
  startDate: Date!
@@ -1580,14 +1580,14 @@ type Query {
1580
1580
 
1581
1581
  """Period dimension such as DAY, WEEK, MONTH, QUARTER, YEAR"""
1582
1582
  dimension: InsightDimensionEnum = MONTH
1583
- ): InReportOrderMarketplaceSummaryType
1583
+ ): InReportOrderMarketplaceSummaryType @deprecated(reason: "This will be removed on April 13, 2025.")
1584
1584
  insightsMarketplacePayoutsSummary(
1585
1585
  """Beginning of the period to filter results"""
1586
1586
  startDate: Date!
1587
1587
 
1588
1588
  """End of the period to filter results"""
1589
1589
  endDate: Date!
1590
- ): InReportMarketplacePayoutsSummaryType
1590
+ ): InReportMarketplacePayoutsSummaryType @deprecated(reason: "This will be removed on April 13, 2025.")
1591
1591
  insightsMarketplaceTaxSummary(
1592
1592
  """Beginning of the period to filter results"""
1593
1593
  startDate: Date!
@@ -1597,21 +1597,21 @@ type Query {
1597
1597
 
1598
1598
  """Period dimension such as DAY, WEEK, MONTH, QUARTER, YEAR"""
1599
1599
  dimension: InsightDimensionEnum = YEAR
1600
- ): InReportMarketplaceTaxSummaryType
1600
+ ): InReportMarketplaceTaxSummaryType @deprecated(reason: "This will be removed on April 13, 2025.")
1601
1601
  insightsMarketplaceTaxesByCountry(
1602
1602
  """Beginning of the period to filter results"""
1603
1603
  startDate: Date!
1604
1604
 
1605
1605
  """End of the period to filter results"""
1606
1606
  endDate: Date!
1607
- ): InReportMarketplaceTaxesByCountryType
1607
+ ): InReportMarketplaceTaxesByCountryType @deprecated(reason: "This will be removed on April 13, 2025.")
1608
1608
  insightsMarketplaceTaxesByCountryArea(
1609
1609
  """Beginning of the period to filter results"""
1610
1610
  startDate: Date!
1611
1611
 
1612
1612
  """End of the period to filter results"""
1613
1613
  endDate: Date!
1614
- ): InReportMarketplaceTaxesByCountryType
1614
+ ): InReportMarketplaceTaxesByCountryType @deprecated(reason: "This will be removed on April 13, 2025.")
1615
1615
  insightsTopPerformingProducts(
1616
1616
  """Beginning of the period to filter results"""
1617
1617
  startDate: Date!
@@ -1656,7 +1656,7 @@ type Query {
1656
1656
 
1657
1657
  """Period dimension such as DAY, WEEK, MONTH, QUARTER, YEAR"""
1658
1658
  dimension: InsightDimensionEnum = DAY
1659
- ): InReportMarketplacePaymentsSummaryType
1659
+ ): InReportMarketplacePaymentsSummaryType @deprecated(reason: "This will be removed on April 13, 2025.")
1660
1660
  dashboardOrdersSummary(
1661
1661
  """ID of seller for filtering"""
1662
1662
  identifier: ID
@@ -1969,6 +1969,14 @@ type Query {
1969
1969
  id: ID!
1970
1970
  ): App
1971
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
+
1972
1980
  """Look up a marketplace agreement by ID or slug."""
1973
1981
  agreement(
1974
1982
  """ID of the marketplace agreement."""
@@ -4695,6 +4703,9 @@ type App implements Node & ObjectWithMetadata {
4695
4703
  """Type of the app."""
4696
4704
  type: AppTypeEnum
4697
4705
 
4706
+ """List of dashboard integrations for this app"""
4707
+ dashboardIntegrations: [AppDashboardIntegration!]
4708
+
4698
4709
  """List of storefront integrations for this app"""
4699
4710
  storefrontIntegrations: [AppStorefrontIntegration!]
4700
4711
 
@@ -4791,6 +4802,31 @@ enum AppTypeEnum {
4791
4802
  THIRDPARTY
4792
4803
  }
4793
4804
 
4805
+ """Represents a dashboard integration for an App."""
4806
+ type AppDashboardIntegration implements Node {
4807
+ """The ID of the object"""
4808
+ id: ID!
4809
+
4810
+ """
4811
+ App this integration is for. This may be null for integrations that come from plugins.
4812
+ """
4813
+ app: App
4814
+
4815
+ """What context this integration should be rendered in"""
4816
+ context: AppDashboardIntegrationContextEnum!
4817
+
4818
+ """The URL to load for this integration"""
4819
+ iframeUrl: String!
4820
+ }
4821
+
4822
+ enum AppDashboardIntegrationContextEnum {
4823
+ """Nautical order details page"""
4824
+ NAUTICAL_ORDER
4825
+
4826
+ """Seller order details page"""
4827
+ ORDER
4828
+ }
4829
+
4794
4830
  """Represents a storefront integration for an App."""
4795
4831
  type AppStorefrontIntegration implements Node {
4796
4832
  """The ID of the object"""
@@ -13173,7 +13209,7 @@ type Mutation {
13173
13209
  description: String
13174
13210
 
13175
13211
  """
13176
- Used when uploading a new document or file in a multipart request that does not exist in the system already. Supported file types: image/bmp, image/x-dxf, application/vnd.oasis.opendocument.spreadsheet, application/rtf, text/x-comma-separated-values, application/x-jpg, application/vnd.pdf, drawing/x-dwg, application/x-rtf, text/pdf, image/gif, application/tif, application/vnd.oasis.opendocument.text, image/eps, application/vnd.openxmlformats-officedocument.presentationml.presentation, image/jpeg, image/heic, application/x-eps, image/x-eps, application/vnd.ms-excel, text/x-pdf, application/x-tiff, text/plain, image/x-ms-bmp, application/jpg, image/svg+xml, text/comma-separated-values, image/x-tiff, application/vnd.openxmlformats-officedocument.spreadsheetml.sheet, image/vnd.dwg, image/png, text/svg-xml, text/rtf, application/tiff, application/zip, application/x-acad, image/heif-sequence, drawing/x-dwf, application/acad, application/acrobat, application/x-gzip, application/x-dwg, application/x-autocad, image/x-bmp, text/csv, application/vnd.openxmlformats-officedocument.presentationml.slideshow, application/postscript, application/vnd.ms-word, drawing/dwg, application/pdf, application/dxf, application/x-dxf, application/csv, image/jpg, application/x-csv, application/vnd.oasis.opendocument.presentation, application/dwg, application/gzip, application/svg+xml, application/x-zip-compressed, image/x-dwg, image/heif, image/tiff, image/x-tif, pplication/vnd.rar, image/heic-sequence, application/gzipped, application/vnd.openxmlformats-officedocument.wordprocessingml.document, text/svg, application/x-tar, application/gzip-compressed, text/x-csv, application/x-tif, application/x-rar-compressed, application/x-rar, image/svg, image/dxf, application/x-pdf, image/tif, application/excel, application/vnd.ms-powerpoint, application/eps, image/webp, application/msword.
13212
+ Used when uploading a new document or file in a multipart request that does not exist in the system already. Supported file types: image/x-dxf, application/x-acad, image/png, image/heif-sequence, image/dxf, application/x-eps, application/rtf, text/x-pdf, application/gzipped, application/postscript, application/x-rar-compressed, application/x-zip-compressed, application/vnd.ms-word, application/tif, application/x-dxf, image/bmp, application/x-csv, application/x-rar, application/x-dwg, application/vnd.openxmlformats-officedocument.presentationml.slideshow, image/x-eps, drawing/x-dwg, image/heif, application/x-rtf, image/heic-sequence, application/eps, application/gzip, application/vnd.oasis.opendocument.presentation, application/dwg, text/x-comma-separated-values, application/dxf, image/svg, image/x-dwg, application/x-tar, image/svg+xml, drawing/x-dwf, text/pdf, text/x-csv, image/jpeg, image/x-tif, text/svg-xml, application/x-tif, image/x-bmp, application/jpg, image/tiff, application/zip, application/vnd.openxmlformats-officedocument.wordprocessingml.document, image/gif, application/vnd.pdf, text/rtf, image/x-tiff, image/x-ms-bmp, image/eps, application/x-gzip, image/vnd.dwg, application/acrobat, application/msword, application/vnd.oasis.opendocument.text, image/heic, application/gzip-compressed, application/x-pdf, application/x-jpg, application/pdf, image/tif, application/vnd.openxmlformats-officedocument.presentationml.presentation, text/comma-separated-values, application/excel, application/vnd.ms-powerpoint, image/webp, text/csv, application/tiff, image/jpg, text/svg, application/vnd.ms-excel, text/plain, application/x-autocad, drawing/dwg, application/svg+xml, application/x-tiff, application/csv, application/acad, pplication/vnd.rar, application/vnd.openxmlformats-officedocument.spreadsheetml.sheet, application/vnd.oasis.opendocument.spreadsheet.
13177
13213
  """
13178
13214
  file: Upload!
13179
13215
 
@@ -15973,6 +16009,18 @@ type Mutation {
15973
16009
  token: String!
15974
16010
  ): AppTokenVerify
15975
16011
 
16012
+ """Creates a new dashboard integration for an app."""
16013
+ appDashboardIntegrationCreate(
16014
+ """Fields required to create a dashboard integration."""
16015
+ input: AppDashboardIntegrationInput!
16016
+ ): AppDashboardIntegrationCreate
16017
+
16018
+ """Deletes an app storefront integration from the app."""
16019
+ appDashboardIntegrationDelete(
16020
+ """ID of a app dashboard integration to delete."""
16021
+ id: ID!
16022
+ ): AppDashboardIntegrationDelete
16023
+
15976
16024
  """Creates a new storefront integration for an app."""
15977
16025
  appStorefrontIntegrationCreate(
15978
16026
  """Fields required to create a storefront integration."""
@@ -22973,6 +23021,29 @@ type AppTokenVerify {
22973
23021
  appErrors: [AppError!]!
22974
23022
  }
22975
23023
 
23024
+ """Creates a new dashboard integration for an app."""
23025
+ type AppDashboardIntegrationCreate {
23026
+ appErrors: [AppError!]!
23027
+ appDashboardIntegration: AppDashboardIntegration
23028
+ }
23029
+
23030
+ input AppDashboardIntegrationInput {
23031
+ """ID of app."""
23032
+ app: ID!
23033
+
23034
+ """URL to the iframe"""
23035
+ iframeUrl: String!
23036
+
23037
+ """Context for where this integration should render"""
23038
+ context: AppDashboardIntegrationContextEnum!
23039
+ }
23040
+
23041
+ """Deletes an app storefront integration from the app."""
23042
+ type AppDashboardIntegrationDelete {
23043
+ appErrors: [AppError!]!
23044
+ appDashboardIntegration: AppDashboardIntegration
23045
+ }
23046
+
22976
23047
  """Creates a new storefront integration for an app."""
22977
23048
  type AppStorefrontIntegrationCreate {
22978
23049
  appErrors: [AppError!]!
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@nautical-commerce/graphql-schema",
3
- "version": "v1.66.0-7-gdd9a0e711",
3
+ "version": "v1.66.0-9-gb2c792c73",
4
4
  "description": "## Getting Started",
5
5
  "main": "./nautical/schema.graphql",
6
6
  "scripts": {