graphlit-client 1.0.20251103002 → 1.0.20251103003
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.
|
@@ -1781,7 +1781,7 @@ export type CommitFeedProperties = {
|
|
|
1781
1781
|
/** Represents commit feed properties. */
|
|
1782
1782
|
export type CommitFeedPropertiesInput = {
|
|
1783
1783
|
/** GitHub Commits properties. */
|
|
1784
|
-
github?: InputMaybe<
|
|
1784
|
+
github?: InputMaybe<GitHubCommitsFeedPropertiesInput>;
|
|
1785
1785
|
/** The limit of items to be read from feed, defaults to 100. */
|
|
1786
1786
|
readLimit?: InputMaybe<Scalars['Int']['input']>;
|
|
1787
1787
|
/** Feed service type. */
|
|
@@ -1790,7 +1790,7 @@ export type CommitFeedPropertiesInput = {
|
|
|
1790
1790
|
/** Represents commit feed properties. */
|
|
1791
1791
|
export type CommitFeedPropertiesUpdateInput = {
|
|
1792
1792
|
/** GitHub Commits properties. */
|
|
1793
|
-
github?: InputMaybe<
|
|
1793
|
+
github?: InputMaybe<GitHubCommitsFeedPropertiesUpdateInput>;
|
|
1794
1794
|
/** The limit of items to be read from feed, defaults to 100. */
|
|
1795
1795
|
readLimit?: InputMaybe<Scalars['Int']['input']>;
|
|
1796
1796
|
};
|
|
@@ -4960,6 +4960,44 @@ export type GitHubCommitsFeedProperties = {
|
|
|
4960
4960
|
/** GitHub Enterprise URI, optional. */
|
|
4961
4961
|
uri?: Maybe<Scalars['URL']['output']>;
|
|
4962
4962
|
};
|
|
4963
|
+
/** Represents GitHub Commits feed properties. */
|
|
4964
|
+
export type GitHubCommitsFeedPropertiesInput = {
|
|
4965
|
+
/** GitHub Commits authentication type, defaults to PersonalAccessToken. */
|
|
4966
|
+
authenticationType?: InputMaybe<GitHubCommitAuthenticationTypes>;
|
|
4967
|
+
/** Authentication identifier, for Connector authentication type. */
|
|
4968
|
+
authorizationId?: InputMaybe<Scalars['String']['input']>;
|
|
4969
|
+
/** GitHub repository branch, defaults to default branch. */
|
|
4970
|
+
branch?: InputMaybe<Scalars['String']['input']>;
|
|
4971
|
+
/** GitHub personal access token, requires PersonalAccessToken authentication type. */
|
|
4972
|
+
personalAccessToken?: InputMaybe<Scalars['String']['input']>;
|
|
4973
|
+
/** GitHub refresh token, requires OAuth authentication type. */
|
|
4974
|
+
refreshToken?: InputMaybe<Scalars['String']['input']>;
|
|
4975
|
+
/** GitHub repository name. */
|
|
4976
|
+
repositoryName: Scalars['String']['input'];
|
|
4977
|
+
/** GitHub repository owner. */
|
|
4978
|
+
repositoryOwner: Scalars['String']['input'];
|
|
4979
|
+
/** GitHub Enterprise URI, optional. */
|
|
4980
|
+
uri?: InputMaybe<Scalars['URL']['input']>;
|
|
4981
|
+
};
|
|
4982
|
+
/** Represents GitHub Commits feed properties. */
|
|
4983
|
+
export type GitHubCommitsFeedPropertiesUpdateInput = {
|
|
4984
|
+
/** GitHub Commits authentication type. */
|
|
4985
|
+
authenticationType?: InputMaybe<GitHubCommitAuthenticationTypes>;
|
|
4986
|
+
/** Authentication identifier, for Connector authentication type. */
|
|
4987
|
+
authorizationId?: InputMaybe<Scalars['String']['input']>;
|
|
4988
|
+
/** GitHub repository branch. */
|
|
4989
|
+
branch?: InputMaybe<Scalars['String']['input']>;
|
|
4990
|
+
/** GitHub personal access token, requires PersonalAccessToken authentication type. */
|
|
4991
|
+
personalAccessToken?: InputMaybe<Scalars['String']['input']>;
|
|
4992
|
+
/** GitHub refresh token, requires OAuth authentication type. */
|
|
4993
|
+
refreshToken?: InputMaybe<Scalars['String']['input']>;
|
|
4994
|
+
/** GitHub repository name. */
|
|
4995
|
+
repositoryName?: InputMaybe<Scalars['String']['input']>;
|
|
4996
|
+
/** GitHub repository owner. */
|
|
4997
|
+
repositoryOwner?: InputMaybe<Scalars['String']['input']>;
|
|
4998
|
+
/** GitHub Enterprise URI. */
|
|
4999
|
+
uri?: InputMaybe<Scalars['URL']['input']>;
|
|
5000
|
+
};
|
|
4963
5001
|
/** Represents GitHub properties. */
|
|
4964
5002
|
export type GitHubFeedProperties = {
|
|
4965
5003
|
__typename?: 'GitHubFeedProperties';
|