@nautical-commerce/graphql-schema 1.78.0-2-g155259810 → 1.78.0-21-ge1de8a93e

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.
@@ -1576,61 +1576,6 @@ type Query {
1576
1576
  """Return the last n elements from the list."""
1577
1577
  last: Int
1578
1578
  ): EmailEventCountableConnection
1579
- insightsOrdersCustomerSummary(
1580
- """Beginning of the period to filter results"""
1581
- startDate: Date!
1582
-
1583
- """End of the period to filter results"""
1584
- endDate: Date!
1585
- ): InReportOrderCustomerSummaryType @deprecated(reason: "This will be removed on April 13, 2025.")
1586
- insightsOrdersSellerSummary(
1587
- """Beginning of the period to filter results"""
1588
- startDate: Date!
1589
-
1590
- """End of the period to filter results"""
1591
- endDate: Date!
1592
- ): InReportOrderSellerSummaryType @deprecated(reason: "This will be removed on April 13, 2025.")
1593
- insightsOrdersMarketplaceSummary(
1594
- """Beginning of the period to filter results"""
1595
- startDate: Date!
1596
-
1597
- """End of the period to filter results"""
1598
- endDate: Date!
1599
-
1600
- """Period dimension such as DAY, WEEK, MONTH, QUARTER, YEAR"""
1601
- dimension: InsightDimensionEnum = MONTH
1602
- ): InReportOrderMarketplaceSummaryType @deprecated(reason: "This will be removed on April 13, 2025.")
1603
- insightsMarketplacePayoutsSummary(
1604
- """Beginning of the period to filter results"""
1605
- startDate: Date!
1606
-
1607
- """End of the period to filter results"""
1608
- endDate: Date!
1609
- ): InReportMarketplacePayoutsSummaryType @deprecated(reason: "This will be removed on April 13, 2025.")
1610
- insightsMarketplaceTaxSummary(
1611
- """Beginning of the period to filter results"""
1612
- startDate: Date!
1613
-
1614
- """End of the period to filter results"""
1615
- endDate: Date!
1616
-
1617
- """Period dimension such as DAY, WEEK, MONTH, QUARTER, YEAR"""
1618
- dimension: InsightDimensionEnum = YEAR
1619
- ): InReportMarketplaceTaxSummaryType @deprecated(reason: "This will be removed on April 13, 2025.")
1620
- insightsMarketplaceTaxesByCountry(
1621
- """Beginning of the period to filter results"""
1622
- startDate: Date!
1623
-
1624
- """End of the period to filter results"""
1625
- endDate: Date!
1626
- ): InReportMarketplaceTaxesByCountryType @deprecated(reason: "This will be removed on April 13, 2025.")
1627
- insightsMarketplaceTaxesByCountryArea(
1628
- """Beginning of the period to filter results"""
1629
- startDate: Date!
1630
-
1631
- """End of the period to filter results"""
1632
- endDate: Date!
1633
- ): InReportMarketplaceTaxesByCountryType @deprecated(reason: "This will be removed on April 13, 2025.")
1634
1579
  insightsTopPerformingProducts(
1635
1580
  """Beginning of the period to filter results"""
1636
1581
  startDate: Date!
@@ -1663,19 +1608,6 @@ type Query {
1663
1608
  """Top or worst performing"""
1664
1609
  perspective: PerformancePerspective!
1665
1610
  ): InReportTopPerformingCategoriesType
1666
- insightsMarketplacePaymentsSummary(
1667
- """Beginning of the period to filter results"""
1668
- startDate: Date!
1669
-
1670
- """End of the period to filter results"""
1671
- endDate: Date!
1672
-
1673
- """Total number of products to list"""
1674
- limit: Int = 25
1675
-
1676
- """Period dimension such as DAY, WEEK, MONTH, QUARTER, YEAR"""
1677
- dimension: InsightDimensionEnum = DAY
1678
- ): InReportMarketplacePaymentsSummaryType @deprecated(reason: "This will be removed on April 13, 2025.")
1679
1611
  dashboardOrdersSummary(
1680
1612
  """ID of seller for filtering"""
1681
1613
  identifier: ID
@@ -3325,7 +3257,6 @@ type Seller implements Node & ObjectWithMetadata {
3325
3257
  if no order has been created
3326
3258
  """
3327
3259
  firstOrderPlacedDate: DateTime
3328
- fullfilledByMarketplace: Boolean!
3329
3260
  created: DateTime!
3330
3261
  updated: DateTime!
3331
3262
  accountSetupTasksAreDone: Boolean
@@ -8621,11 +8552,6 @@ type Shop {
8621
8552
  """Gets active plugins."""
8622
8553
  activePlugins: [Plugin!]!
8623
8554
 
8624
- """
8625
- None if shop does not use Crisp, otherwise this contains Crisp Website ID.
8626
- """
8627
- crispWebsiteId: String @deprecated(reason: "This will be removed on April 7, 2025.")
8628
-
8629
8555
  """Storefront integrations for the given contexts"""
8630
8556
  storefrontUiIntegrations(
8631
8557
  """
@@ -11907,277 +11833,6 @@ enum EmailEventSortField {
11907
11833
  DATE
11908
11834
  }
11909
11835
 
11910
- type InReportOrderCustomerSummaryType {
11911
- """Category of the metric."""
11912
- category: String!
11913
-
11914
- """Title of the metric."""
11915
- title: String!
11916
-
11917
- """
11918
- Description of main columns in report and summary. Note: report and summary can contain additional columns.
11919
- """
11920
- columns: [ColumnObjectType!]
11921
-
11922
- """Info about applied filters."""
11923
- filters: [FilterObjectType!]
11924
-
11925
- """Total summary for selected period."""
11926
- summary: OrderSellerSummaryType!
11927
-
11928
- """
11929
- Report where each row represent aggregated, by selected (in filters) dimension, summary.
11930
- """
11931
- report: [OrderCustomerReportType!]
11932
- }
11933
-
11934
- type OrderSellerSummaryType {
11935
- gross: Float
11936
- orders: Int
11937
- net: Float
11938
- shipping: Float
11939
- average: Float
11940
- taxes: Float
11941
- discounts: Float
11942
- revenue: Float
11943
- totals: Int
11944
- commission: Float
11945
- payout: Float
11946
- sellers: Float
11947
- }
11948
-
11949
- type OrderCustomerReportType {
11950
- gross: Float
11951
- orders: Int
11952
- net: Float
11953
- shipping: Float
11954
- average: Float
11955
- taxes: Float
11956
- discounts: Float
11957
- revenue: Float
11958
- totals: Int
11959
- commission: Float
11960
- payout: Float
11961
- userId: Int
11962
- user: User
11963
- }
11964
-
11965
- type InReportOrderSellerSummaryType {
11966
- """Category of the metric."""
11967
- category: String!
11968
-
11969
- """Title of the metric."""
11970
- title: String!
11971
-
11972
- """
11973
- Description of main columns in report and summary. Note: report and summary can contain additional columns.
11974
- """
11975
- columns: [ColumnObjectType!]
11976
-
11977
- """Info about applied filters."""
11978
- filters: [FilterObjectType!]
11979
-
11980
- """Total summary for selected period."""
11981
- summary: OrderSellerSummaryType!
11982
-
11983
- """
11984
- Report where each row represent aggregated, by selected (in filters) dimension, summary.
11985
- """
11986
- report: [OrderSellerReportType!]
11987
- }
11988
-
11989
- type OrderSellerReportType {
11990
- gross: Float
11991
- orders: Int
11992
- net: Float
11993
- shipping: Float
11994
- average: Float
11995
- taxes: Float
11996
- discounts: Float
11997
- revenue: Float
11998
- totals: Int
11999
- commission: Float
12000
- payout: Float
12001
- sellerId: Int
12002
- seller: Seller
12003
- }
12004
-
12005
- type InReportOrderMarketplaceSummaryType {
12006
- """Category of the metric."""
12007
- category: String!
12008
-
12009
- """Title of the metric."""
12010
- title: String!
12011
-
12012
- """
12013
- Description of main columns in report and summary. Note: report and summary can contain additional columns.
12014
- """
12015
- columns: [ColumnObjectType!]
12016
-
12017
- """Info about applied filters."""
12018
- filters: [FilterObjectType!]
12019
-
12020
- """Total summary for selected period."""
12021
- summary: OrderSellerSummaryType!
12022
-
12023
- """
12024
- Report where each row represent aggregated, by selected (in filters) dimension, summary.
12025
- """
12026
- report: [OrderMarketplaceReportType!]
12027
- }
12028
-
12029
- type OrderMarketplaceReportType {
12030
- gross: Float
12031
- orders: Int
12032
- net: Float
12033
- shipping: Float
12034
- average: Float
12035
- taxes: Float
12036
- discounts: Float
12037
- revenue: Float
12038
- totals: Int
12039
- commission: Float
12040
- payout: Float
12041
- dimension: Date
12042
- }
12043
-
12044
- enum InsightDimensionEnum {
12045
- DAY
12046
- WEEK
12047
- MONTH
12048
- QUARTER
12049
- YEAR
12050
- }
12051
-
12052
- type InReportMarketplacePayoutsSummaryType {
12053
- """Category of the metric."""
12054
- category: String!
12055
-
12056
- """Title of the metric."""
12057
- title: String!
12058
-
12059
- """
12060
- Description of main columns in report and summary. Note: report and summary can contain additional columns.
12061
- """
12062
- columns: [ColumnObjectType!]
12063
-
12064
- """Info about applied filters."""
12065
- filters: [FilterObjectType!]
12066
-
12067
- """Total summary for selected period."""
12068
- summary: OrderSellerSummaryType!
12069
-
12070
- """
12071
- Report where each row represent aggregated, by selected (in filters) dimension, summary.
12072
- """
12073
- report: [OrderSellerReportType!]
12074
- }
12075
-
12076
- type InReportMarketplaceTaxSummaryType {
12077
- """Category of the metric."""
12078
- category: String!
12079
-
12080
- """Title of the metric."""
12081
- title: String!
12082
-
12083
- """
12084
- Description of main columns in report and summary. Note: report and summary can contain additional columns.
12085
- """
12086
- columns: [ColumnObjectType!]
12087
-
12088
- """Info about applied filters."""
12089
- filters: [FilterObjectType!]
12090
-
12091
- """Total summary for selected period."""
12092
- summary: AbstractOrderSellerReportType!
12093
-
12094
- """
12095
- Report where each row represent aggregated, by selected (in filters) dimension, summary.
12096
- """
12097
- report: [MarketplaceTaxReportType!]
12098
- }
12099
-
12100
- type AbstractOrderSellerReportType {
12101
- gross: Float
12102
- orders: Int
12103
- net: Float
12104
- shipping: Float
12105
- average: Float
12106
- taxes: Float
12107
- discounts: Float
12108
- revenue: Float
12109
- totals: Int
12110
- commission: Float
12111
- payout: Float
12112
- }
12113
-
12114
- type MarketplaceTaxReportType {
12115
- gross: Float
12116
- orders: Int
12117
- net: Float
12118
- shipping: Float
12119
- average: Float
12120
- taxes: Float
12121
- discounts: Float
12122
- revenue: Float
12123
- totals: Int
12124
- commission: Float
12125
- payout: Float
12126
- dimension: Date
12127
- }
12128
-
12129
- type InReportMarketplaceTaxesByCountryType {
12130
- """Category of the metric."""
12131
- category: String!
12132
-
12133
- """Title of the metric."""
12134
- title: String!
12135
-
12136
- """
12137
- Description of main columns in report and summary. Note: report and summary can contain additional columns.
12138
- """
12139
- columns: [ColumnObjectType!]
12140
-
12141
- """Info about applied filters."""
12142
- filters: [FilterObjectType!]
12143
-
12144
- """Total summary for selected period."""
12145
- summary: AbstractOrderSellerReportType!
12146
-
12147
- """
12148
- Report where each row represent aggregated, by selected (in filters) dimension, summary.
12149
- """
12150
- report: [MarketplaceTaxReportByLocaleType!]
12151
- }
12152
-
12153
- type MarketplaceTaxReportByLocaleType {
12154
- gross: Float
12155
- orders: Int
12156
- net: Float
12157
- shipping: Float
12158
- average: Float
12159
- taxes: Float
12160
- discounts: Float
12161
- revenue: Float
12162
- totals: Int
12163
- commission: Float
12164
- payout: Float
12165
- billingAddress_Country: String
12166
- billingAddress_CountryArea: String
12167
- countryArea: String
12168
- country: String
12169
- countryName: String
12170
- countryAreaName: String
12171
- countryState: CountryState
12172
- }
12173
-
12174
- type CountryState {
12175
- area: String
12176
- areaName: String
12177
- country: String
12178
- countryName: String
12179
- }
12180
-
12181
11836
  type InReportTopPerformingProductsType {
12182
11837
  """Category of the metric."""
12183
11838
  category: String!
@@ -12284,46 +11939,6 @@ type ProductCategoryReportType {
12284
11939
  category: Category
12285
11940
  }
12286
11941
 
12287
- type InReportMarketplacePaymentsSummaryType {
12288
- """Category of the metric."""
12289
- category: String!
12290
-
12291
- """Title of the metric."""
12292
- title: String!
12293
-
12294
- """
12295
- Description of main columns in report and summary. Note: report and summary can contain additional columns.
12296
- """
12297
- columns: [ColumnObjectType!]
12298
-
12299
- """Info about applied filters."""
12300
- filters: [FilterObjectType!]
12301
-
12302
- """Total summary for selected period."""
12303
- summary: AbstractPaymentsType!
12304
-
12305
- """
12306
- Report where each row represent aggregated, by selected (in filters) dimension, summary.
12307
- """
12308
- report: [PaymentsDayReportType!]
12309
- }
12310
-
12311
- type AbstractPaymentsType {
12312
- payments: Int
12313
- totalAuthorized: Float
12314
- captured: Float
12315
- average: Float
12316
- }
12317
-
12318
- type PaymentsDayReportType {
12319
- payments: Int
12320
- totalAuthorized: Float
12321
- captured: Float
12322
- average: Float
12323
- dimension: Date
12324
- chargeStatus: String
12325
- }
12326
-
12327
11942
  type DashboardOrdersSummaryType {
12328
11943
  filters: [FilterObjectType!]
12329
11944
  current: AbstractOrderSellerReportType
@@ -12336,6 +11951,20 @@ type DashboardOrdersSummaryType {
12336
11951
  pendingPayouts: Int
12337
11952
  }
12338
11953
 
11954
+ type AbstractOrderSellerReportType {
11955
+ gross: Float
11956
+ orders: Int
11957
+ net: Float
11958
+ shipping: Float
11959
+ average: Float
11960
+ taxes: Float
11961
+ discounts: Float
11962
+ revenue: Float
11963
+ totals: Int
11964
+ commission: Float
11965
+ payout: Float
11966
+ }
11967
+
12339
11968
  type OrderSummaryDeltaDataType {
12340
11969
  percent: AbstractPercentReportType
12341
11970
  values: AbstractOrderSellerReportType
@@ -13161,7 +12790,7 @@ type Mutation {
13161
12790
  description: String
13162
12791
 
13163
12792
  """
13164
- Used when uploading a new document or file in a multipart request that does not exist in the system already. Supported file types: application/dxf, application/vnd.ms-word, text/x-pdf, application/vnd.pdf, application/postscript, image/jpeg, image/x-bmp, text/x-csv, image/bmp, pplication/vnd.rar, application/x-eps, application/x-acad, application/gzip, application/vnd.oasis.opendocument.spreadsheet, text/rtf, application/vnd.ms-excel, image/x-dwg, image/vnd.dwg, application/x-gzip, image/jpg, application/x-rtf, image/x-eps, application/x-dwg, application/x-tif, application/gzip-compressed, text/csv, image/svg, application/x-autocad, application/vnd.ms-powerpoint, application/x-csv, application/gzipped, application/tiff, application/excel, application/csv, application/x-zip-compressed, text/x-comma-separated-values, application/vnd.openxmlformats-officedocument.spreadsheetml.sheet, application/vnd.oasis.opendocument.text, image/gif, application/vnd.openxmlformats-officedocument.presentationml.presentation, drawing/x-dwf, text/svg-xml, image/png, application/vnd.openxmlformats-officedocument.wordprocessingml.document, application/vnd.oasis.opendocument.presentation, image/eps, application/x-rar, text/pdf, application/rtf, application/acrobat, image/heif-sequence, application/dwg, application/x-pdf, image/x-dxf, application/x-tiff, application/svg+xml, image/dxf, application/x-jpg, image/heic, image/heic-sequence, application/jpg, image/x-tiff, application/pdf, application/msword, image/x-tif, image/tif, application/vnd.openxmlformats-officedocument.presentationml.slideshow, drawing/dwg, application/x-dxf, image/svg+xml, image/x-ms-bmp, application/zip, text/comma-separated-values, application/x-rar-compressed, drawing/x-dwg, application/eps, application/tif, application/acad, application/x-tar, image/tiff, text/plain, image/heif, image/webp, text/svg.
12793
+ Used when uploading a new document or file in a multipart request that does not exist in the system already. Supported file types: image/jpg, application/x-dxf, text/csv, text/plain, application/vnd.oasis.opendocument.spreadsheet, application/pdf, application/vnd.openxmlformats-officedocument.wordprocessingml.document, text/x-comma-separated-values, application/postscript, application/x-eps, text/svg, text/x-pdf, image/x-dxf, text/pdf, application/vnd.oasis.opendocument.text, text/svg-xml, application/gzip-compressed, application/excel, image/bmp, pplication/vnd.rar, text/rtf, application/tiff, image/heif, application/gzipped, application/gzip, application/x-acad, application/vnd.openxmlformats-officedocument.presentationml.slideshow, application/svg+xml, application/x-rar, application/jpg, image/jpeg, image/svg, image/x-eps, application/x-autocad, image/dxf, application/x-tiff, image/x-tif, drawing/dwg, image/heic-sequence, application/x-zip-compressed, application/vnd.openxmlformats-officedocument.presentationml.presentation, application/x-jpg, image/x-bmp, image/x-ms-bmp, image/png, image/svg+xml, application/x-gzip, image/x-dwg, application/csv, text/comma-separated-values, application/acrobat, application/vnd.ms-excel, application/zip, application/x-dwg, image/gif, drawing/x-dwg, application/vnd.oasis.opendocument.presentation, application/vnd.ms-word, application/x-pdf, drawing/x-dwf, application/vnd.openxmlformats-officedocument.spreadsheetml.sheet, application/dwg, image/tif, application/dxf, image/eps, image/vnd.dwg, application/x-tar, application/x-rtf, image/webp, application/x-tif, application/x-rar-compressed, image/tiff, application/tif, application/msword, text/x-csv, image/heic, image/heif-sequence, application/rtf, application/x-csv, application/acad, application/eps, application/vnd.pdf, application/vnd.ms-powerpoint, image/x-tiff.
13165
12794
  """
13166
12795
  file: Upload!
13167
12796
 
@@ -14305,6 +13934,17 @@ type Mutation {
14305
13934
  input: ProductImageCreateInput!
14306
13935
  ): ProductImageCreate
14307
13936
 
13937
+ """
13938
+ Create one or more product images. For each image, if URL is present, image will be taken from provided URL. If any image has no URL provided, then this mutation must be sent as a `multipart` request. More detailed specs of the upload format can be found here: https://github.com/jaydenseric/graphql-multipart-request-spec
13939
+ """
13940
+ productImageBulkCreate(
13941
+ """Fields required to create one or more product images"""
13942
+ input: [ProductImageBulkCreateInput!]!
13943
+
13944
+ """ID of a product."""
13945
+ product: ID!
13946
+ ): ProductImageBulkCreate
13947
+
14308
13948
  """
14309
13949
  Reorder the variants of a product. Mutation updates updated_at on product and triggers PRODUCT_UPDATED webhook.
14310
13950
  """
@@ -16295,12 +15935,6 @@ type Mutation {
16295
15935
  isActive: Boolean!
16296
15936
  ): UserBulkSetActive
16297
15937
 
16298
- """Create new permission group."""
16299
- permissionGroupCreate(
16300
- """Input fields to create permission group."""
16301
- input: PermissionGroupCreateInput!
16302
- ): PermissionGroupCreate @deprecated(reason: "This will be removed on April 14, 2025")
16303
-
16304
15938
  """Update permission group."""
16305
15939
  permissionGroupUpdate(
16306
15940
  """ID of the group to update."""
@@ -16309,12 +15943,6 @@ type Mutation {
16309
15943
  """Input fields to create permission group."""
16310
15944
  input: PermissionGroupUpdateInput!
16311
15945
  ): PermissionGroupUpdate
16312
-
16313
- """Delete permission group."""
16314
- permissionGroupDelete(
16315
- """ID of the group to delete."""
16316
- id: ID!
16317
- ): PermissionGroupDelete @deprecated(reason: "This will be removed on April 14, 2025")
16318
15946
  }
16319
15947
 
16320
15948
  """EmailTemplate update mutation."""
@@ -19497,10 +19125,12 @@ input ProductImageCreateInput {
19497
19125
  """Alt text for an image."""
19498
19126
  alt: String
19499
19127
 
19500
- """Represents an image file in a multipart request."""
19128
+ """
19129
+ Represents an image file in a multipart request. Either an image or a url must be provided.
19130
+ """
19501
19131
  image: Upload
19502
19132
 
19503
- """URL of image to upload"""
19133
+ """URL of image to upload. Either an image or a url must be provided."""
19504
19134
  url: String
19505
19135
 
19506
19136
  """ID of an product."""
@@ -19522,6 +19152,64 @@ input ProductImageCreateInput {
19522
19152
  externalSource: String
19523
19153
  }
19524
19154
 
19155
+ """
19156
+ Create one or more product images. For each image, if URL is present, image will be taken from provided URL. If any image has no URL provided, then this mutation must be sent as a `multipart` request. More detailed specs of the upload format can be found here: https://github.com/jaydenseric/graphql-multipart-request-spec
19157
+ """
19158
+ type ProductImageBulkCreate {
19159
+ product: Product
19160
+
19161
+ """List of the created images."""
19162
+ images: [ProductImage!]!
19163
+ bulkProductImageErrors: [BulkProductImageError!]!
19164
+ }
19165
+
19166
+ type BulkProductImageError {
19167
+ """
19168
+ Name of a field that caused the error. A value of `null` indicates that the error isn't associated with a particular field.
19169
+ """
19170
+ field: String
19171
+
19172
+ """The error message."""
19173
+ message: String!
19174
+
19175
+ """The error code."""
19176
+ code: ProductErrorCode!
19177
+
19178
+ """List of attributes IDs which causes the error."""
19179
+ attributes: [ID!]
19180
+
19181
+ """Index of an input list item that caused the error."""
19182
+ index: Int
19183
+ }
19184
+
19185
+ input ProductImageBulkCreateInput {
19186
+ """Alt text for an image."""
19187
+ alt: String
19188
+
19189
+ """
19190
+ Represents an image file in a multipart request. Either an image or a url must be provided.
19191
+ """
19192
+ image: Upload
19193
+
19194
+ """URL of image to upload. Either an image or a url must be provided."""
19195
+ url: String
19196
+
19197
+ """
19198
+ Only for use by Marketplace Operator, if true then the image ownership will transfer to the seller that owns the product it is being assigned to, if false or not provided then image ownership will not transfer.
19199
+ """
19200
+ transferImageOwnership: Boolean = false
19201
+
19202
+ """
19203
+ External ID of the product image if originating from outside the system.
19204
+ """
19205
+ externalId: String
19206
+
19207
+ """
19208
+ External source of the product image if originating from outside the system.
19209
+ """
19210
+ externalSource: String
19211
+ }
19212
+
19525
19213
  """
19526
19214
  Reorder the variants of a product. Mutation updates updated_at on product and triggers PRODUCT_UPDATED webhook.
19527
19215
  """
@@ -23732,8 +23420,8 @@ type UserBulkSetActive {
23732
23420
  accountErrors: [AccountError!]!
23733
23421
  }
23734
23422
 
23735
- """Create new permission group."""
23736
- type PermissionGroupCreate {
23423
+ """Update permission group."""
23424
+ type PermissionGroupUpdate {
23737
23425
  permissionGroupErrors: [PermissionGroupError!]!
23738
23426
  group: Group
23739
23427
  }
@@ -23769,46 +23457,17 @@ enum PermissionGroupErrorCode {
23769
23457
  UNIQUE
23770
23458
  }
23771
23459
 
23772
- input PermissionGroupCreateInput {
23773
- """List of permission code names to assign to this group."""
23774
- addPermissions: [PermissionEnum!] @deprecated(reason: "This will be removed on April 14, 2025")
23775
-
23776
- """List of users to assign to this group."""
23777
- addUsers: [ID!]
23778
-
23779
- """Group name."""
23780
- name: String!
23781
- }
23782
-
23783
- """Update permission group."""
23784
- type PermissionGroupUpdate {
23785
- permissionGroupErrors: [PermissionGroupError!]!
23786
- group: Group
23787
- }
23788
-
23789
23460
  input PermissionGroupUpdateInput {
23790
- """List of permission code names to assign to this group."""
23791
- addPermissions: [PermissionEnum!] @deprecated(reason: "This will be removed on April 14, 2025")
23792
-
23793
23461
  """List of users to assign to this group."""
23794
23462
  addUsers: [ID!]
23795
23463
 
23796
23464
  """Group name."""
23797
23465
  name: String
23798
23466
 
23799
- """List of permission code names to unassign from this group."""
23800
- removePermissions: [PermissionEnum!] @deprecated(reason: "This will be removed on April 14, 2025")
23801
-
23802
23467
  """List of users to unassign from this group."""
23803
23468
  removeUsers: [ID!]
23804
23469
  }
23805
23470
 
23806
- """Delete permission group."""
23807
- type PermissionGroupDelete {
23808
- permissionGroupErrors: [PermissionGroupError!]!
23809
- group: Group
23810
- }
23811
-
23812
23471
  """
23813
23472
  A string-serialized scalar represents a set of fields that's passed to a federated directive, such as @key, @requires, or @provides
23814
23473
  """
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@nautical-commerce/graphql-schema",
3
- "version": "v1.78.0-2-g155259810",
3
+ "version": "v1.78.0-21-ge1de8a93e",
4
4
  "description": "## Getting Started",
5
5
  "main": "./nautical/schema.graphql",
6
6
  "scripts": {