github-schema 1.7.1 → 1.7.2

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.
@@ -19283,6 +19283,41 @@ type MarkFileAsViewedPayload {
19283
19283
  pullRequest: PullRequest
19284
19284
  }
19285
19285
 
19286
+ """
19287
+ Autogenerated input type of MarkNotificationAsDone
19288
+ """
19289
+ input MarkNotificationAsDoneInput {
19290
+ """
19291
+ A unique identifier for the client performing the mutation.
19292
+ """
19293
+ clientMutationId: String
19294
+
19295
+ """
19296
+ The NotificationThread id.
19297
+ """
19298
+ id: ID!
19299
+ }
19300
+
19301
+ """
19302
+ Autogenerated return type of MarkNotificationAsDone
19303
+ """
19304
+ type MarkNotificationAsDonePayload {
19305
+ """
19306
+ A unique identifier for the client performing the mutation.
19307
+ """
19308
+ clientMutationId: String
19309
+
19310
+ """
19311
+ Did the operation succeed?
19312
+ """
19313
+ success: Boolean
19314
+
19315
+ """
19316
+ The user that the notification belongs to.
19317
+ """
19318
+ viewer: User
19319
+ }
19320
+
19286
19321
  """
19287
19322
  Autogenerated input type of MarkProjectV2AsTemplate
19288
19323
  """
@@ -20702,7 +20737,7 @@ interface Migration {
20702
20737
 
20703
20738
  """
20704
20739
  The number of warnings encountered for this migration. To review the warnings,
20705
- check the [Migration Log](https://docs.github.com/en/migrations/using-github-enterprise-importer/completing-your-migration-with-github-enterprise-importer/accessing-your-migration-logs-for-github-enterprise-importer).
20740
+ check the [Migration Log](https://docs.github.com/migrations/using-github-enterprise-importer/completing-your-migration-with-github-enterprise-importer/accessing-your-migration-logs-for-github-enterprise-importer).
20706
20741
  """
20707
20742
  warningsCount: Int!
20708
20743
  }
@@ -22398,6 +22433,16 @@ type Mutation {
22398
22433
  input: MarkFileAsViewedInput!
22399
22434
  ): MarkFileAsViewedPayload
22400
22435
 
22436
+ """
22437
+ Marks a notification as done
22438
+ """
22439
+ markNotificationAsDone(
22440
+ """
22441
+ Parameters for MarkNotificationAsDone
22442
+ """
22443
+ input: MarkNotificationAsDoneInput!
22444
+ ): MarkNotificationAsDonePayload
22445
+
22401
22446
  """
22402
22447
  Mark a project as a template. Note that only projects which are owned by an Organization can be marked as a template.
22403
22448
  """
@@ -44484,7 +44529,7 @@ type RepositoryMigration implements Migration & Node {
44484
44529
 
44485
44530
  """
44486
44531
  The number of warnings encountered for this migration. To review the warnings,
44487
- check the [Migration Log](https://docs.github.com/en/migrations/using-github-enterprise-importer/completing-your-migration-with-github-enterprise-importer/accessing-your-migration-logs-for-github-enterprise-importer).
44532
+ check the [Migration Log](https://docs.github.com/migrations/using-github-enterprise-importer/completing-your-migration-with-github-enterprise-importer/accessing-your-migration-logs-for-github-enterprise-importer).
44488
44533
  """
44489
44534
  warningsCount: Int!
44490
44535
  }
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "github-schema",
3
- "version": "1.7.1",
3
+ "version": "1.7.2",
4
4
  "description": "GitHub's GraphQL schema",
5
5
  "type": "module",
6
6
  "author": {