github-schema 1.2.0 → 1.2.4
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.
- package/dist/github-schema.d.cts +30 -2
- package/dist/github-schema.d.ts +30 -2
- package/dist/index.d.cts +1 -1
- package/dist/index.d.ts +1 -1
- package/github-schema.graphql +46 -1
- package/package.json +7 -2
package/github-schema.graphql
CHANGED
|
@@ -21307,7 +21307,12 @@ type Mutation {
|
|
|
21307
21307
|
): CreateDiscussionPayload
|
|
21308
21308
|
|
|
21309
21309
|
"""
|
|
21310
|
-
Creates an organization as part of an enterprise account.
|
|
21310
|
+
Creates an organization as part of an enterprise account. A personal access
|
|
21311
|
+
token used to create an organization is implicitly permitted to update the
|
|
21312
|
+
organization it created, if the organization is part of an enterprise that has
|
|
21313
|
+
SAML enabled or uses Enterprise Managed Users. If the organization is not part
|
|
21314
|
+
of such an enterprise, and instead has SAML enabled for it individually, the
|
|
21315
|
+
token will then require SAML authorization to continue working against that organization.
|
|
21311
21316
|
"""
|
|
21312
21317
|
createEnterpriseOrganization(
|
|
21313
21318
|
"""
|
|
@@ -22478,6 +22483,16 @@ type Mutation {
|
|
|
22478
22483
|
input: UnresolveReviewThreadInput!
|
|
22479
22484
|
): UnresolveReviewThreadPayload
|
|
22480
22485
|
|
|
22486
|
+
"""
|
|
22487
|
+
Unsubscribes from notifications
|
|
22488
|
+
"""
|
|
22489
|
+
unsubscribeFromNotifications(
|
|
22490
|
+
"""
|
|
22491
|
+
Parameters for UnsubscribeFromNotifications
|
|
22492
|
+
"""
|
|
22493
|
+
input: UnsubscribeFromNotificationsInput!
|
|
22494
|
+
): UnsubscribeFromNotificationsPayload
|
|
22495
|
+
|
|
22481
22496
|
"""
|
|
22482
22497
|
Update a branch protection rule
|
|
22483
22498
|
"""
|
|
@@ -53616,6 +53631,36 @@ type UnresolveReviewThreadPayload {
|
|
|
53616
53631
|
thread: PullRequestReviewThread
|
|
53617
53632
|
}
|
|
53618
53633
|
|
|
53634
|
+
"""
|
|
53635
|
+
Autogenerated input type of UnsubscribeFromNotifications
|
|
53636
|
+
"""
|
|
53637
|
+
input UnsubscribeFromNotificationsInput {
|
|
53638
|
+
"""
|
|
53639
|
+
A unique identifier for the client performing the mutation.
|
|
53640
|
+
"""
|
|
53641
|
+
clientMutationId: String
|
|
53642
|
+
|
|
53643
|
+
"""
|
|
53644
|
+
The NotificationThread IDs of the objects to unsubscribe from.
|
|
53645
|
+
"""
|
|
53646
|
+
ids: [ID!]!
|
|
53647
|
+
}
|
|
53648
|
+
|
|
53649
|
+
"""
|
|
53650
|
+
Autogenerated return type of UnsubscribeFromNotifications
|
|
53651
|
+
"""
|
|
53652
|
+
type UnsubscribeFromNotificationsPayload {
|
|
53653
|
+
"""
|
|
53654
|
+
A unique identifier for the client performing the mutation.
|
|
53655
|
+
"""
|
|
53656
|
+
clientMutationId: String
|
|
53657
|
+
|
|
53658
|
+
"""
|
|
53659
|
+
Did the operation succeed?
|
|
53660
|
+
"""
|
|
53661
|
+
success: Boolean
|
|
53662
|
+
}
|
|
53663
|
+
|
|
53619
53664
|
"""
|
|
53620
53665
|
Represents an 'unsubscribed' event on a given `Subscribable`.
|
|
53621
53666
|
"""
|
package/package.json
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "github-schema",
|
|
3
3
|
"type": "module",
|
|
4
|
-
"version": "1.2.
|
|
4
|
+
"version": "1.2.4",
|
|
5
5
|
"packageManager": "bun@1.0.13",
|
|
6
6
|
"description": "GitHub's GraphQL schema",
|
|
7
7
|
"author": {
|
|
@@ -18,6 +18,12 @@
|
|
|
18
18
|
"bugs": {
|
|
19
19
|
"url": "https://github.com/luxass/github-schema/issues"
|
|
20
20
|
},
|
|
21
|
+
"keywords": [
|
|
22
|
+
"github graphql",
|
|
23
|
+
"github",
|
|
24
|
+
"graphql",
|
|
25
|
+
"github schema"
|
|
26
|
+
],
|
|
21
27
|
"exports": {
|
|
22
28
|
".": {
|
|
23
29
|
"import": {
|
|
@@ -74,7 +80,6 @@
|
|
|
74
80
|
"build": "tsup",
|
|
75
81
|
"schema:download": "bun run scripts/download.ts",
|
|
76
82
|
"schema:codegen": "graphql-codegen",
|
|
77
|
-
"pkg:bump": "bun run --silent scripts/bump.ts",
|
|
78
83
|
"prepublishOnly": "bun run schema:download && bun run schema:codegen && bun run build",
|
|
79
84
|
"lint": "eslint .",
|
|
80
85
|
"typecheck": "tsc --noEmit"
|