github-schema 1.6.2 → 1.6.3
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
|
@@ -24635,6 +24635,8 @@ type UnpinIssuePayload = {
|
|
|
24635
24635
|
__typename?: 'UnpinIssuePayload';
|
|
24636
24636
|
/** A unique identifier for the client performing the mutation. */
|
|
24637
24637
|
clientMutationId?: Maybe<Scalars['String']['output']>;
|
|
24638
|
+
/** The id of the pinned issue that was unpinned */
|
|
24639
|
+
id?: Maybe<Scalars['ID']['output']>;
|
|
24638
24640
|
/** The issue that was unpinned */
|
|
24639
24641
|
issue?: Maybe<Issue>;
|
|
24640
24642
|
};
|
package/dist/github-schema.d.ts
CHANGED
|
@@ -24635,6 +24635,8 @@ type UnpinIssuePayload = {
|
|
|
24635
24635
|
__typename?: 'UnpinIssuePayload';
|
|
24636
24636
|
/** A unique identifier for the client performing the mutation. */
|
|
24637
24637
|
clientMutationId?: Maybe<Scalars['String']['output']>;
|
|
24638
|
+
/** The id of the pinned issue that was unpinned */
|
|
24639
|
+
id?: Maybe<Scalars['ID']['output']>;
|
|
24638
24640
|
/** The issue that was unpinned */
|
|
24639
24641
|
issue?: Maybe<Issue>;
|
|
24640
24642
|
};
|
package/github-schema.graphql
CHANGED
|
@@ -54766,6 +54766,11 @@ type UnpinIssuePayload {
|
|
|
54766
54766
|
"""
|
|
54767
54767
|
clientMutationId: String
|
|
54768
54768
|
|
|
54769
|
+
"""
|
|
54770
|
+
The id of the pinned issue that was unpinned
|
|
54771
|
+
"""
|
|
54772
|
+
id: ID
|
|
54773
|
+
|
|
54769
54774
|
"""
|
|
54770
54775
|
The issue that was unpinned
|
|
54771
54776
|
"""
|