github-schema 1.22.12 → 1.22.14
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
CHANGED
|
@@ -833,6 +833,8 @@ type Agentic = {
|
|
|
833
833
|
viewerCopilotAgentCreatesChannel?: Maybe<Scalars['String']['output']>;
|
|
834
834
|
/** Channel value for subscribing to live updates for session log updates. */
|
|
835
835
|
viewerCopilotAgentLogUpdatesChannel?: Maybe<Scalars['String']['output']>;
|
|
836
|
+
/** Channel value for subscribing to live updates for task updates. */
|
|
837
|
+
viewerCopilotAgentTaskUpdatesChannel?: Maybe<Scalars['String']['output']>;
|
|
836
838
|
/** Channel value for subscribing to live updates for session updates. */
|
|
837
839
|
viewerCopilotAgentUpdatesChannel?: Maybe<Scalars['String']['output']>;
|
|
838
840
|
};
|
|
@@ -23796,7 +23798,7 @@ type Repository = Node & PackageOwner & ProjectOwner & ProjectV2Recent & Reposit
|
|
|
23796
23798
|
interactionAbility?: Maybe<RepositoryInteractionAbility>;
|
|
23797
23799
|
/** Indicates if the repository is unmaintained. */
|
|
23798
23800
|
isArchived: Scalars['Boolean']['output'];
|
|
23799
|
-
/** Returns true if blank issue
|
|
23801
|
+
/** Returns true if the viewer can create a blank issue in this repository */
|
|
23800
23802
|
isBlankIssuesEnabled: Scalars['Boolean']['output'];
|
|
23801
23803
|
/** Returns whether or not this repository disabled. */
|
|
23802
23804
|
isDisabled: Scalars['Boolean']['output'];
|
|
@@ -31185,6 +31187,8 @@ type User = Actor & Agentic & Node & PackageOwner & ProfileOwner & ProjectOwner
|
|
|
31185
31187
|
viewerCopilotAgentCreatesChannel?: Maybe<Scalars['String']['output']>;
|
|
31186
31188
|
/** Channel value for subscribing to live updates for session log updates. */
|
|
31187
31189
|
viewerCopilotAgentLogUpdatesChannel?: Maybe<Scalars['String']['output']>;
|
|
31190
|
+
/** Channel value for subscribing to live updates for task updates. */
|
|
31191
|
+
viewerCopilotAgentTaskUpdatesChannel?: Maybe<Scalars['String']['output']>;
|
|
31188
31192
|
/** Channel value for subscribing to live updates for session updates. */
|
|
31189
31193
|
viewerCopilotAgentUpdatesChannel?: Maybe<Scalars['String']['output']>;
|
|
31190
31194
|
/** Whether or not this user is followed by the viewer. Inverse of isFollowingViewer. */
|
package/dist/github-schema.d.mts
CHANGED
|
@@ -833,6 +833,8 @@ type Agentic = {
|
|
|
833
833
|
viewerCopilotAgentCreatesChannel?: Maybe<Scalars['String']['output']>;
|
|
834
834
|
/** Channel value for subscribing to live updates for session log updates. */
|
|
835
835
|
viewerCopilotAgentLogUpdatesChannel?: Maybe<Scalars['String']['output']>;
|
|
836
|
+
/** Channel value for subscribing to live updates for task updates. */
|
|
837
|
+
viewerCopilotAgentTaskUpdatesChannel?: Maybe<Scalars['String']['output']>;
|
|
836
838
|
/** Channel value for subscribing to live updates for session updates. */
|
|
837
839
|
viewerCopilotAgentUpdatesChannel?: Maybe<Scalars['String']['output']>;
|
|
838
840
|
};
|
|
@@ -23796,7 +23798,7 @@ type Repository = Node & PackageOwner & ProjectOwner & ProjectV2Recent & Reposit
|
|
|
23796
23798
|
interactionAbility?: Maybe<RepositoryInteractionAbility>;
|
|
23797
23799
|
/** Indicates if the repository is unmaintained. */
|
|
23798
23800
|
isArchived: Scalars['Boolean']['output'];
|
|
23799
|
-
/** Returns true if blank issue
|
|
23801
|
+
/** Returns true if the viewer can create a blank issue in this repository */
|
|
23800
23802
|
isBlankIssuesEnabled: Scalars['Boolean']['output'];
|
|
23801
23803
|
/** Returns whether or not this repository disabled. */
|
|
23802
23804
|
isDisabled: Scalars['Boolean']['output'];
|
|
@@ -31185,6 +31187,8 @@ type User = Actor & Agentic & Node & PackageOwner & ProfileOwner & ProjectOwner
|
|
|
31185
31187
|
viewerCopilotAgentCreatesChannel?: Maybe<Scalars['String']['output']>;
|
|
31186
31188
|
/** Channel value for subscribing to live updates for session log updates. */
|
|
31187
31189
|
viewerCopilotAgentLogUpdatesChannel?: Maybe<Scalars['String']['output']>;
|
|
31190
|
+
/** Channel value for subscribing to live updates for task updates. */
|
|
31191
|
+
viewerCopilotAgentTaskUpdatesChannel?: Maybe<Scalars['String']['output']>;
|
|
31188
31192
|
/** Channel value for subscribing to live updates for session updates. */
|
|
31189
31193
|
viewerCopilotAgentUpdatesChannel?: Maybe<Scalars['String']['output']>;
|
|
31190
31194
|
/** Whether or not this user is followed by the viewer. Inverse of isFollowingViewer. */
|
package/github-schema.graphql
CHANGED
|
@@ -1408,6 +1408,11 @@ interface Agentic {
|
|
|
1408
1408
|
"""
|
|
1409
1409
|
viewerCopilotAgentLogUpdatesChannel: String
|
|
1410
1410
|
|
|
1411
|
+
"""
|
|
1412
|
+
Channel value for subscribing to live updates for task updates.
|
|
1413
|
+
"""
|
|
1414
|
+
viewerCopilotAgentTaskUpdatesChannel: String
|
|
1415
|
+
|
|
1411
1416
|
"""
|
|
1412
1417
|
Channel value for subscribing to live updates for session updates.
|
|
1413
1418
|
"""
|
|
@@ -47194,7 +47199,7 @@ type Repository implements Node & PackageOwner & ProjectOwner & ProjectV2Recent
|
|
|
47194
47199
|
isArchived: Boolean!
|
|
47195
47200
|
|
|
47196
47201
|
"""
|
|
47197
|
-
Returns true if blank issue
|
|
47202
|
+
Returns true if the viewer can create a blank issue in this repository
|
|
47198
47203
|
"""
|
|
47199
47204
|
isBlankIssuesEnabled: Boolean!
|
|
47200
47205
|
|
|
@@ -64796,6 +64801,11 @@ type User implements Actor & Agentic & Node & PackageOwner & ProfileOwner & Proj
|
|
|
64796
64801
|
"""
|
|
64797
64802
|
viewerCopilotAgentLogUpdatesChannel: String
|
|
64798
64803
|
|
|
64804
|
+
"""
|
|
64805
|
+
Channel value for subscribing to live updates for task updates.
|
|
64806
|
+
"""
|
|
64807
|
+
viewerCopilotAgentTaskUpdatesChannel: String
|
|
64808
|
+
|
|
64799
64809
|
"""
|
|
64800
64810
|
Channel value for subscribing to live updates for session updates.
|
|
64801
64811
|
"""
|