@nautical-commerce/graphql-schema 1.78.0-2-g155259810 → 1.78.0-20-g242b007a1

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
@@ -11907,277 +11838,6 @@ enum EmailEventSortField {
11907
11838
  DATE
11908
11839
  }
11909
11840
 
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
11841
  type InReportTopPerformingProductsType {
12182
11842
  """Category of the metric."""
12183
11843
  category: String!
@@ -12284,46 +11944,6 @@ type ProductCategoryReportType {
12284
11944
  category: Category
12285
11945
  }
12286
11946
 
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
11947
  type DashboardOrdersSummaryType {
12328
11948
  filters: [FilterObjectType!]
12329
11949
  current: AbstractOrderSellerReportType
@@ -12336,6 +11956,20 @@ type DashboardOrdersSummaryType {
12336
11956
  pendingPayouts: Int
12337
11957
  }
12338
11958
 
11959
+ type AbstractOrderSellerReportType {
11960
+ gross: Float
11961
+ orders: Int
11962
+ net: Float
11963
+ shipping: Float
11964
+ average: Float
11965
+ taxes: Float
11966
+ discounts: Float
11967
+ revenue: Float
11968
+ totals: Int
11969
+ commission: Float
11970
+ payout: Float
11971
+ }
11972
+
12339
11973
  type OrderSummaryDeltaDataType {
12340
11974
  percent: AbstractPercentReportType
12341
11975
  values: AbstractOrderSellerReportType
@@ -13161,7 +12795,7 @@ type Mutation {
13161
12795
  description: String
13162
12796
 
13163
12797
  """
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.
12798
+ Used when uploading a new document or file in a multipart request that does not exist in the system already. Supported file types: image/x-tif, text/svg, image/x-dwg, application/x-rtf, drawing/x-dwf, application/x-tiff, application/msword, application/vnd.pdf, text/x-pdf, image/x-eps, application/x-csv, application/x-rar-compressed, image/webp, application/gzip, application/vnd.ms-excel, image/heic-sequence, image/svg, application/x-tar, application/vnd.ms-powerpoint, application/postscript, image/png, application/x-acad, image/heif, application/vnd.openxmlformats-officedocument.wordprocessingml.document, text/svg-xml, application/vnd.oasis.opendocument.presentation, application/acrobat, application/x-pdf, text/x-csv, application/dwg, application/eps, application/gzipped, application/x-autocad, application/x-gzip, application/dxf, application/svg+xml, image/jpeg, image/vnd.dwg, application/vnd.openxmlformats-officedocument.presentationml.presentation, image/heif-sequence, image/svg+xml, application/vnd.oasis.opendocument.spreadsheet, image/x-ms-bmp, drawing/x-dwg, text/pdf, application/csv, image/heic, application/x-dxf, image/x-dxf, application/zip, text/plain, image/bmp, text/x-comma-separated-values, application/x-jpg, text/comma-separated-values, application/vnd.openxmlformats-officedocument.presentationml.slideshow, application/x-tif, image/jpg, application/tiff, application/jpg, pplication/vnd.rar, application/gzip-compressed, application/excel, application/vnd.oasis.opendocument.text, application/vnd.ms-word, image/eps, application/pdf, image/x-bmp, application/acad, drawing/dwg, image/tiff, image/dxf, application/tif, application/vnd.openxmlformats-officedocument.spreadsheetml.sheet, application/rtf, text/csv, application/x-zip-compressed, image/tif, image/gif, image/x-tiff, application/x-eps, application/x-dwg, text/rtf, application/x-rar.
13165
12799
  """
13166
12800
  file: Upload!
13167
12801
 
@@ -14305,6 +13939,17 @@ type Mutation {
14305
13939
  input: ProductImageCreateInput!
14306
13940
  ): ProductImageCreate
14307
13941
 
13942
+ """
13943
+ 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
13944
+ """
13945
+ productImageBulkCreate(
13946
+ """Fields required to create one or more product images"""
13947
+ input: [ProductImageBulkCreateInput!]!
13948
+
13949
+ """ID of a product."""
13950
+ product: ID!
13951
+ ): ProductImageBulkCreate
13952
+
14308
13953
  """
14309
13954
  Reorder the variants of a product. Mutation updates updated_at on product and triggers PRODUCT_UPDATED webhook.
14310
13955
  """
@@ -16295,12 +15940,6 @@ type Mutation {
16295
15940
  isActive: Boolean!
16296
15941
  ): UserBulkSetActive
16297
15942
 
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
15943
  """Update permission group."""
16305
15944
  permissionGroupUpdate(
16306
15945
  """ID of the group to update."""
@@ -16309,12 +15948,6 @@ type Mutation {
16309
15948
  """Input fields to create permission group."""
16310
15949
  input: PermissionGroupUpdateInput!
16311
15950
  ): 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
15951
  }
16319
15952
 
16320
15953
  """EmailTemplate update mutation."""
@@ -19497,10 +19130,12 @@ input ProductImageCreateInput {
19497
19130
  """Alt text for an image."""
19498
19131
  alt: String
19499
19132
 
19500
- """Represents an image file in a multipart request."""
19133
+ """
19134
+ Represents an image file in a multipart request. Either an image or a url must be provided.
19135
+ """
19501
19136
  image: Upload
19502
19137
 
19503
- """URL of image to upload"""
19138
+ """URL of image to upload. Either an image or a url must be provided."""
19504
19139
  url: String
19505
19140
 
19506
19141
  """ID of an product."""
@@ -19522,6 +19157,64 @@ input ProductImageCreateInput {
19522
19157
  externalSource: String
19523
19158
  }
19524
19159
 
19160
+ """
19161
+ 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
19162
+ """
19163
+ type ProductImageBulkCreate {
19164
+ product: Product
19165
+
19166
+ """List of the created images."""
19167
+ images: [ProductImage!]!
19168
+ bulkProductImageErrors: [BulkProductImageError!]!
19169
+ }
19170
+
19171
+ type BulkProductImageError {
19172
+ """
19173
+ Name of a field that caused the error. A value of `null` indicates that the error isn't associated with a particular field.
19174
+ """
19175
+ field: String
19176
+
19177
+ """The error message."""
19178
+ message: String!
19179
+
19180
+ """The error code."""
19181
+ code: ProductErrorCode!
19182
+
19183
+ """List of attributes IDs which causes the error."""
19184
+ attributes: [ID!]
19185
+
19186
+ """Index of an input list item that caused the error."""
19187
+ index: Int
19188
+ }
19189
+
19190
+ input ProductImageBulkCreateInput {
19191
+ """Alt text for an image."""
19192
+ alt: String
19193
+
19194
+ """
19195
+ Represents an image file in a multipart request. Either an image or a url must be provided.
19196
+ """
19197
+ image: Upload
19198
+
19199
+ """URL of image to upload. Either an image or a url must be provided."""
19200
+ url: String
19201
+
19202
+ """
19203
+ 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.
19204
+ """
19205
+ transferImageOwnership: Boolean = false
19206
+
19207
+ """
19208
+ External ID of the product image if originating from outside the system.
19209
+ """
19210
+ externalId: String
19211
+
19212
+ """
19213
+ External source of the product image if originating from outside the system.
19214
+ """
19215
+ externalSource: String
19216
+ }
19217
+
19525
19218
  """
19526
19219
  Reorder the variants of a product. Mutation updates updated_at on product and triggers PRODUCT_UPDATED webhook.
19527
19220
  """
@@ -23732,8 +23425,8 @@ type UserBulkSetActive {
23732
23425
  accountErrors: [AccountError!]!
23733
23426
  }
23734
23427
 
23735
- """Create new permission group."""
23736
- type PermissionGroupCreate {
23428
+ """Update permission group."""
23429
+ type PermissionGroupUpdate {
23737
23430
  permissionGroupErrors: [PermissionGroupError!]!
23738
23431
  group: Group
23739
23432
  }
@@ -23769,46 +23462,17 @@ enum PermissionGroupErrorCode {
23769
23462
  UNIQUE
23770
23463
  }
23771
23464
 
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
23465
  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
23466
  """List of users to assign to this group."""
23794
23467
  addUsers: [ID!]
23795
23468
 
23796
23469
  """Group name."""
23797
23470
  name: String
23798
23471
 
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
23472
  """List of users to unassign from this group."""
23803
23473
  removeUsers: [ID!]
23804
23474
  }
23805
23475
 
23806
- """Delete permission group."""
23807
- type PermissionGroupDelete {
23808
- permissionGroupErrors: [PermissionGroupError!]!
23809
- group: Group
23810
- }
23811
-
23812
23476
  """
23813
23477
  A string-serialized scalar represents a set of fields that's passed to a federated directive, such as @key, @requires, or @provides
23814
23478
  """
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-20-g242b007a1",
4
4
  "description": "## Getting Started",
5
5
  "main": "./nautical/schema.graphql",
6
6
  "scripts": {