graphlit-client 1.0.20251023001 → 1.0.20251103002

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.
@@ -1396,6 +1396,39 @@ export const GetContent = gql `
1396
1396
  type
1397
1397
  labels
1398
1398
  }
1399
+ commit {
1400
+ sha
1401
+ message
1402
+ project
1403
+ team
1404
+ branch
1405
+ parentShas
1406
+ filesChanged
1407
+ additions
1408
+ deletions
1409
+ pullRequestNumber
1410
+ authorDate
1411
+ committerDate
1412
+ labels
1413
+ }
1414
+ pullRequest {
1415
+ identifier
1416
+ title
1417
+ project
1418
+ team
1419
+ status
1420
+ type
1421
+ baseBranch
1422
+ headBranch
1423
+ isDraft
1424
+ isMergeable
1425
+ mergeCommitSha
1426
+ mergedAt
1427
+ filesChanged
1428
+ additions
1429
+ deletions
1430
+ labels
1431
+ }
1399
1432
  message {
1400
1433
  identifier
1401
1434
  conversationIdentifier
@@ -2164,6 +2197,39 @@ export const LookupContents = gql `
2164
2197
  type
2165
2198
  labels
2166
2199
  }
2200
+ commit {
2201
+ sha
2202
+ message
2203
+ project
2204
+ team
2205
+ branch
2206
+ parentShas
2207
+ filesChanged
2208
+ additions
2209
+ deletions
2210
+ pullRequestNumber
2211
+ authorDate
2212
+ committerDate
2213
+ labels
2214
+ }
2215
+ pullRequest {
2216
+ identifier
2217
+ title
2218
+ project
2219
+ team
2220
+ status
2221
+ type
2222
+ baseBranch
2223
+ headBranch
2224
+ isDraft
2225
+ isMergeable
2226
+ mergeCommitSha
2227
+ mergedAt
2228
+ filesChanged
2229
+ additions
2230
+ deletions
2231
+ labels
2232
+ }
2167
2233
  message {
2168
2234
  identifier
2169
2235
  conversationIdentifier
@@ -2769,6 +2835,39 @@ export const QueryContents = gql `
2769
2835
  type
2770
2836
  labels
2771
2837
  }
2838
+ commit {
2839
+ sha
2840
+ message
2841
+ project
2842
+ team
2843
+ branch
2844
+ parentShas
2845
+ filesChanged
2846
+ additions
2847
+ deletions
2848
+ pullRequestNumber
2849
+ authorDate
2850
+ committerDate
2851
+ labels
2852
+ }
2853
+ pullRequest {
2854
+ identifier
2855
+ title
2856
+ project
2857
+ team
2858
+ status
2859
+ type
2860
+ baseBranch
2861
+ headBranch
2862
+ isDraft
2863
+ isMergeable
2864
+ mergeCommitSha
2865
+ mergedAt
2866
+ filesChanged
2867
+ additions
2868
+ deletions
2869
+ labels
2870
+ }
2772
2871
  message {
2773
2872
  identifier
2774
2873
  conversationIdentifier
@@ -3110,6 +3209,39 @@ export const QueryContentsObservations = gql `
3110
3209
  type
3111
3210
  labels
3112
3211
  }
3212
+ commit {
3213
+ sha
3214
+ message
3215
+ project
3216
+ team
3217
+ branch
3218
+ parentShas
3219
+ filesChanged
3220
+ additions
3221
+ deletions
3222
+ pullRequestNumber
3223
+ authorDate
3224
+ committerDate
3225
+ labels
3226
+ }
3227
+ pullRequest {
3228
+ identifier
3229
+ title
3230
+ project
3231
+ team
3232
+ status
3233
+ type
3234
+ baseBranch
3235
+ headBranch
3236
+ isDraft
3237
+ isMergeable
3238
+ mergeCommitSha
3239
+ mergedAt
3240
+ filesChanged
3241
+ additions
3242
+ deletions
3243
+ labels
3244
+ }
3113
3245
  message {
3114
3246
  identifier
3115
3247
  conversationIdentifier
@@ -6907,6 +7039,32 @@ export const GetFeed = gql `
6907
7039
  }
6908
7040
  readLimit
6909
7041
  }
7042
+ commit {
7043
+ type
7044
+ github {
7045
+ authenticationType
7046
+ uri
7047
+ repositoryOwner
7048
+ repositoryName
7049
+ refreshToken
7050
+ personalAccessToken
7051
+ authorizationId
7052
+ }
7053
+ readLimit
7054
+ }
7055
+ pullRequest {
7056
+ type
7057
+ github {
7058
+ authenticationType
7059
+ uri
7060
+ repositoryOwner
7061
+ repositoryName
7062
+ refreshToken
7063
+ personalAccessToken
7064
+ authorizationId
7065
+ }
7066
+ readLimit
7067
+ }
6910
7068
  calendar {
6911
7069
  type
6912
7070
  includeAttachments
@@ -7251,6 +7409,32 @@ export const QueryFeeds = gql `
7251
7409
  }
7252
7410
  readLimit
7253
7411
  }
7412
+ commit {
7413
+ type
7414
+ github {
7415
+ authenticationType
7416
+ uri
7417
+ repositoryOwner
7418
+ repositoryName
7419
+ refreshToken
7420
+ personalAccessToken
7421
+ authorizationId
7422
+ }
7423
+ readLimit
7424
+ }
7425
+ pullRequest {
7426
+ type
7427
+ github {
7428
+ authenticationType
7429
+ uri
7430
+ repositoryOwner
7431
+ repositoryName
7432
+ refreshToken
7433
+ personalAccessToken
7434
+ authorizationId
7435
+ }
7436
+ readLimit
7437
+ }
7254
7438
  calendar {
7255
7439
  type
7256
7440
  includeAttachments
@@ -1766,6 +1766,66 @@ export type CollectionUpdateInput = {
1766
1766
  /** The collection type. */
1767
1767
  type?: InputMaybe<CollectionTypes>;
1768
1768
  };
1769
+ /** Represents commit feed properties. */
1770
+ export type CommitFeedProperties = {
1771
+ __typename?: 'CommitFeedProperties';
1772
+ /** Feed connector type. */
1773
+ connectorType: FeedConnectorTypes;
1774
+ /** GitHub Commits properties. */
1775
+ github?: Maybe<GitHubCommitsFeedProperties>;
1776
+ /** The limit of items to be read from feed, defaults to 100. */
1777
+ readLimit?: Maybe<Scalars['Int']['output']>;
1778
+ /** Feed service type. */
1779
+ type: FeedServiceTypes;
1780
+ };
1781
+ /** Represents commit feed properties. */
1782
+ export type CommitFeedPropertiesInput = {
1783
+ /** GitHub Commits properties. */
1784
+ github?: InputMaybe<GitHubIssuesFeedPropertiesInput>;
1785
+ /** The limit of items to be read from feed, defaults to 100. */
1786
+ readLimit?: InputMaybe<Scalars['Int']['input']>;
1787
+ /** Feed service type. */
1788
+ type: FeedServiceTypes;
1789
+ };
1790
+ /** Represents commit feed properties. */
1791
+ export type CommitFeedPropertiesUpdateInput = {
1792
+ /** GitHub Commits properties. */
1793
+ github?: InputMaybe<GitHubIssuesFeedPropertiesUpdateInput>;
1794
+ /** The limit of items to be read from feed, defaults to 100. */
1795
+ readLimit?: InputMaybe<Scalars['Int']['input']>;
1796
+ };
1797
+ /** Represents commit metadata. */
1798
+ export type CommitMetadata = {
1799
+ __typename?: 'CommitMetadata';
1800
+ /** The number of lines added. */
1801
+ additions?: Maybe<Scalars['Int']['output']>;
1802
+ /** The commit author date/time. */
1803
+ authorDate?: Maybe<Scalars['DateTime']['output']>;
1804
+ /** The commit branch. */
1805
+ branch?: Maybe<Scalars['String']['output']>;
1806
+ /** The commit committer date/time. */
1807
+ committerDate?: Maybe<Scalars['DateTime']['output']>;
1808
+ /** The number of lines deleted. */
1809
+ deletions?: Maybe<Scalars['Int']['output']>;
1810
+ /** The number of files changed. */
1811
+ filesChanged?: Maybe<Scalars['Int']['output']>;
1812
+ /** The commit labels. */
1813
+ labels?: Maybe<Array<Maybe<Scalars['String']['output']>>>;
1814
+ /** The commit hyperlinks. */
1815
+ links?: Maybe<Array<Maybe<Scalars['URL']['output']>>>;
1816
+ /** The commit message. */
1817
+ message?: Maybe<Scalars['String']['output']>;
1818
+ /** The parent commit SHAs. */
1819
+ parentShas?: Maybe<Array<Maybe<Scalars['String']['output']>>>;
1820
+ /** The commit project name. */
1821
+ project?: Maybe<Scalars['String']['output']>;
1822
+ /** The associated pull request number. */
1823
+ pullRequestNumber?: Maybe<Scalars['String']['output']>;
1824
+ /** The commit SHA. */
1825
+ sha?: Maybe<Scalars['String']['output']>;
1826
+ /** The commit team name. */
1827
+ team?: Maybe<Scalars['String']['output']>;
1828
+ };
1769
1829
  /** Represents a connector. */
1770
1830
  export type Connector = {
1771
1831
  __typename?: 'Connector';
@@ -1871,6 +1931,8 @@ export type Content = {
1871
1931
  children?: Maybe<Array<Maybe<Content>>>;
1872
1932
  /** The collections this content is contained within. */
1873
1933
  collections?: Maybe<Array<Maybe<Collection>>>;
1934
+ /** The content commit metadata. */
1935
+ commit?: Maybe<CommitMetadata>;
1874
1936
  /** The tenant correlation identifier. */
1875
1937
  correlationId?: Maybe<Scalars['String']['output']>;
1876
1938
  /** The creation date of the content. */
@@ -1982,6 +2044,8 @@ export type Content = {
1982
2044
  post?: Maybe<PostMetadata>;
1983
2045
  /** The summarized content social media posts. */
1984
2046
  posts?: Maybe<Array<Scalars['String']['output']>>;
2047
+ /** The content pull request metadata. */
2048
+ pullRequest?: Maybe<PullRequestMetadata>;
1985
2049
  /** The followup questions which can be asked about the content. */
1986
2050
  questions?: Maybe<Array<Scalars['String']['output']>>;
1987
2051
  /** Quotes extracted from the content. */
@@ -2544,6 +2608,8 @@ export declare enum ContentSourceTypes {
2544
2608
  }
2545
2609
  /** Content type */
2546
2610
  export declare enum ContentTypes {
2611
+ /** Commit (i.e. GitHub, GitLab, Bitbucket) */
2612
+ Commit = "COMMIT",
2547
2613
  /** Email */
2548
2614
  Email = "EMAIL",
2549
2615
  /** Calendar Event */
@@ -2560,6 +2626,8 @@ export declare enum ContentTypes {
2560
2626
  Page = "PAGE",
2561
2627
  /** Post (i.e. Reddit, RSS) */
2562
2628
  Post = "POST",
2629
+ /** Pull Request (i.e. GitHub, GitLab, Bitbucket) */
2630
+ PullRequest = "PULL_REQUEST",
2563
2631
  /** Text (i.e. Markdown, HTML, plain text) */
2564
2632
  Text = "TEXT"
2565
2633
  }
@@ -4364,6 +4432,8 @@ export type Feed = {
4364
4432
  __typename?: 'Feed';
4365
4433
  /** The calendar feed properties. */
4366
4434
  calendar?: Maybe<CalendarFeedProperties>;
4435
+ /** The commit feed properties. */
4436
+ commit?: Maybe<CommitFeedProperties>;
4367
4437
  /** The contents sourced from the feed. */
4368
4438
  contents?: Maybe<Array<Maybe<Content>>>;
4369
4439
  /** The tenant correlation identifier. */
@@ -4398,6 +4468,8 @@ export type Feed = {
4398
4468
  notion?: Maybe<NotionFeedProperties>;
4399
4469
  /** The owner of the feed. */
4400
4470
  owner: Owner;
4471
+ /** The pull request feed properties. */
4472
+ pullRequest?: Maybe<PullRequestFeedProperties>;
4401
4473
  /** The count of items read from the feed. */
4402
4474
  readCount?: Maybe<Scalars['Int']['output']>;
4403
4475
  /** The Reddit feed properties. */
@@ -4500,6 +4572,8 @@ export type FeedFilter = {
4500
4572
  export type FeedInput = {
4501
4573
  /** The calendar feed properties. */
4502
4574
  calendar?: InputMaybe<CalendarFeedPropertiesInput>;
4575
+ /** The commit feed properties. */
4576
+ commit?: InputMaybe<CommitFeedPropertiesInput>;
4503
4577
  /** The feed description. */
4504
4578
  description?: InputMaybe<Scalars['String']['input']>;
4505
4579
  /** The Discord feed properties. */
@@ -4516,6 +4590,8 @@ export type FeedInput = {
4516
4590
  name: Scalars['String']['input'];
4517
4591
  /** The Notion feed properties. */
4518
4592
  notion?: InputMaybe<NotionFeedPropertiesInput>;
4593
+ /** The pull request feed properties. */
4594
+ pullRequest?: InputMaybe<PullRequestFeedPropertiesInput>;
4519
4595
  /** The Reddit feed properties. */
4520
4596
  reddit?: InputMaybe<RedditFeedPropertiesInput>;
4521
4597
  /** The RSS feed properties. */
@@ -4585,8 +4661,12 @@ export declare enum FeedServiceTypes {
4585
4661
  Dropbox = "DROPBOX",
4586
4662
  /** GitHub feed service */
4587
4663
  GitHub = "GIT_HUB",
4664
+ /** GitHub Commits feed service */
4665
+ GitHubCommits = "GIT_HUB_COMMITS",
4588
4666
  /** GitHub Issues feed service */
4589
4667
  GitHubIssues = "GIT_HUB_ISSUES",
4668
+ /** GitHub Pull Requests feed service */
4669
+ GitHubPullRequests = "GIT_HUB_PULL_REQUESTS",
4590
4670
  /** Google Cloud Blob feed service */
4591
4671
  GoogleBlob = "GOOGLE_BLOB",
4592
4672
  /** Google Calendar feed service */
@@ -4629,6 +4709,8 @@ export declare enum FeedSyncMode {
4629
4709
  export declare enum FeedTypes {
4630
4710
  /** Calendar feed */
4631
4711
  Calendar = "CALENDAR",
4712
+ /** Commit feed */
4713
+ Commit = "COMMIT",
4632
4714
  /** Discord channel feed */
4633
4715
  Discord = "DISCORD",
4634
4716
  /** Email feed */
@@ -4641,6 +4723,8 @@ export declare enum FeedTypes {
4641
4723
  MicrosoftTeams = "MICROSOFT_TEAMS",
4642
4724
  /** Notion feed */
4643
4725
  Notion = "NOTION",
4726
+ /** Pull Request feed */
4727
+ PullRequest = "PULL_REQUEST",
4644
4728
  /** Reddit feed */
4645
4729
  Reddit = "REDDIT",
4646
4730
  /** RSS feed */
@@ -4664,6 +4748,8 @@ export declare enum FeedTypes {
4664
4748
  export type FeedUpdateInput = {
4665
4749
  /** The calendar feed properties. */
4666
4750
  calendar?: InputMaybe<CalendarFeedPropertiesUpdateInput>;
4751
+ /** The commit feed properties. */
4752
+ commit?: InputMaybe<CommitFeedPropertiesUpdateInput>;
4667
4753
  /** The feed description. */
4668
4754
  description?: InputMaybe<Scalars['String']['input']>;
4669
4755
  /** The Discord feed properties. */
@@ -4682,6 +4768,8 @@ export type FeedUpdateInput = {
4682
4768
  name?: InputMaybe<Scalars['String']['input']>;
4683
4769
  /** The Notion feed properties. */
4684
4770
  notion?: InputMaybe<NotionFeedPropertiesUpdateInput>;
4771
+ /** The pull request feed properties. */
4772
+ pullRequest?: InputMaybe<PullRequestFeedPropertiesUpdateInput>;
4685
4773
  /** The Reddit feed properties. */
4686
4774
  reddit?: InputMaybe<RedditFeedPropertiesUpdateInput>;
4687
4775
  /** The RSS feed properties. */
@@ -4847,6 +4935,31 @@ export declare enum GitHubAuthenticationTypes {
4847
4935
  /** Personal Access Token */
4848
4936
  PersonalAccessToken = "PERSONAL_ACCESS_TOKEN"
4849
4937
  }
4938
+ export declare enum GitHubCommitAuthenticationTypes {
4939
+ Connector = "CONNECTOR",
4940
+ OAuth = "O_AUTH",
4941
+ PersonalAccessToken = "PERSONAL_ACCESS_TOKEN"
4942
+ }
4943
+ /** Represents GitHub Commits feed properties. */
4944
+ export type GitHubCommitsFeedProperties = {
4945
+ __typename?: 'GitHubCommitsFeedProperties';
4946
+ /** GitHub Commits authentication type, defaults to PersonalAccessToken. */
4947
+ authenticationType?: Maybe<GitHubCommitAuthenticationTypes>;
4948
+ /** Authentication identifier, for Connector authentication type. */
4949
+ authorizationId?: Maybe<Scalars['String']['output']>;
4950
+ /** GitHub repository branch, defaults to default branch. */
4951
+ branch?: Maybe<Scalars['String']['output']>;
4952
+ /** GitHub personal access token. Either refresh token or personal access token is required to avoid GitHub rate-limiting. */
4953
+ personalAccessToken?: Maybe<Scalars['String']['output']>;
4954
+ /** GitHub refresh token. Either refresh token or personal access token is required to avoid GitHub rate-limiting. */
4955
+ refreshToken?: Maybe<Scalars['String']['output']>;
4956
+ /** GitHub repository name. */
4957
+ repositoryName: Scalars['String']['output'];
4958
+ /** GitHub repository owner. */
4959
+ repositoryOwner: Scalars['String']['output'];
4960
+ /** GitHub Enterprise URI, optional. */
4961
+ uri?: Maybe<Scalars['URL']['output']>;
4962
+ };
4850
4963
  /** Represents GitHub properties. */
4851
4964
  export type GitHubFeedProperties = {
4852
4965
  __typename?: 'GitHubFeedProperties';
@@ -4952,6 +5065,63 @@ export type GitHubIssuesFeedPropertiesUpdateInput = {
4952
5065
  /** GitHub Enterprise URI, optional. */
4953
5066
  uri?: InputMaybe<Scalars['URL']['input']>;
4954
5067
  };
5068
+ export declare enum GitHubPullRequestAuthenticationTypes {
5069
+ Connector = "CONNECTOR",
5070
+ OAuth = "O_AUTH",
5071
+ PersonalAccessToken = "PERSONAL_ACCESS_TOKEN"
5072
+ }
5073
+ /** Represents GitHub Pull Requests feed properties. */
5074
+ export type GitHubPullRequestsFeedProperties = {
5075
+ __typename?: 'GitHubPullRequestsFeedProperties';
5076
+ /** GitHub Pull Requests authentication type, defaults to PersonalAccessToken. */
5077
+ authenticationType?: Maybe<GitHubPullRequestAuthenticationTypes>;
5078
+ /** Authentication identifier, for Connector authentication type. */
5079
+ authorizationId?: Maybe<Scalars['String']['output']>;
5080
+ /** GitHub personal access token. Either refresh token or personal access token is required to avoid GitHub rate-limiting. */
5081
+ personalAccessToken?: Maybe<Scalars['String']['output']>;
5082
+ /** GitHub refresh token. Either refresh token or personal access token is required to avoid GitHub rate-limiting. */
5083
+ refreshToken?: Maybe<Scalars['String']['output']>;
5084
+ /** GitHub repository name. */
5085
+ repositoryName: Scalars['String']['output'];
5086
+ /** GitHub repository owner. */
5087
+ repositoryOwner: Scalars['String']['output'];
5088
+ /** GitHub Enterprise URI, optional. */
5089
+ uri?: Maybe<Scalars['URL']['output']>;
5090
+ };
5091
+ /** Represents GitHub Pull Requests feed properties. */
5092
+ export type GitHubPullRequestsFeedPropertiesInput = {
5093
+ /** GitHub Pull Requests authentication type, defaults to PersonalAccessToken. */
5094
+ authenticationType?: InputMaybe<GitHubPullRequestAuthenticationTypes>;
5095
+ /** Authentication identifier, for Connector authentication type. */
5096
+ authorizationId?: InputMaybe<Scalars['String']['input']>;
5097
+ /** GitHub personal access token, requires PersonalAccessToken authentication type. */
5098
+ personalAccessToken?: InputMaybe<Scalars['String']['input']>;
5099
+ /** GitHub refresh token, requires OAuth authentication type. */
5100
+ refreshToken?: InputMaybe<Scalars['String']['input']>;
5101
+ /** GitHub repository name. */
5102
+ repositoryName: Scalars['String']['input'];
5103
+ /** GitHub repository owner. */
5104
+ repositoryOwner: Scalars['String']['input'];
5105
+ /** GitHub Enterprise URI, optional. */
5106
+ uri?: InputMaybe<Scalars['URL']['input']>;
5107
+ };
5108
+ /** Represents GitHub Pull Requests feed properties. */
5109
+ export type GitHubPullRequestsFeedPropertiesUpdateInput = {
5110
+ /** GitHub Pull Requests authentication type. */
5111
+ authenticationType?: InputMaybe<GitHubPullRequestAuthenticationTypes>;
5112
+ /** Authentication identifier, for Connector authentication type. */
5113
+ authorizationId?: InputMaybe<Scalars['String']['input']>;
5114
+ /** GitHub personal access token, requires PersonalAccessToken authentication type. */
5115
+ personalAccessToken?: InputMaybe<Scalars['String']['input']>;
5116
+ /** GitHub refresh token, requires OAuth authentication type. */
5117
+ refreshToken?: InputMaybe<Scalars['String']['input']>;
5118
+ /** GitHub repository name. */
5119
+ repositoryName?: InputMaybe<Scalars['String']['input']>;
5120
+ /** GitHub repository owner. */
5121
+ repositoryOwner?: InputMaybe<Scalars['String']['input']>;
5122
+ /** GitHub Enterprise URI. */
5123
+ uri?: InputMaybe<Scalars['URL']['input']>;
5124
+ };
4955
5125
  /** Represents GitHub repositories properties. */
4956
5126
  export type GitHubRepositoriesInput = {
4957
5127
  /** GitHub authentication type. */
@@ -12501,6 +12671,72 @@ export type PublishingDetails = {
12501
12671
  /** The published text type. */
12502
12672
  textType?: Maybe<TextTypes>;
12503
12673
  };
12674
+ /** Represents pull request feed properties. */
12675
+ export type PullRequestFeedProperties = {
12676
+ __typename?: 'PullRequestFeedProperties';
12677
+ /** Feed connector type. */
12678
+ connectorType: FeedConnectorTypes;
12679
+ /** GitHub Pull Requests properties. */
12680
+ github?: Maybe<GitHubPullRequestsFeedProperties>;
12681
+ /** The limit of items to be read from feed, defaults to 100. */
12682
+ readLimit?: Maybe<Scalars['Int']['output']>;
12683
+ /** Feed service type. */
12684
+ type: FeedServiceTypes;
12685
+ };
12686
+ /** Represents pull request feed properties. */
12687
+ export type PullRequestFeedPropertiesInput = {
12688
+ /** GitHub Pull Requests properties. */
12689
+ github?: InputMaybe<GitHubPullRequestsFeedPropertiesInput>;
12690
+ /** The limit of items to be read from feed, defaults to 100. */
12691
+ readLimit?: InputMaybe<Scalars['Int']['input']>;
12692
+ /** Feed service type. */
12693
+ type: FeedServiceTypes;
12694
+ };
12695
+ /** Represents pull request feed properties. */
12696
+ export type PullRequestFeedPropertiesUpdateInput = {
12697
+ /** GitHub Pull Requests properties. */
12698
+ github?: InputMaybe<GitHubPullRequestsFeedPropertiesUpdateInput>;
12699
+ /** The limit of items to be read from feed, defaults to 100. */
12700
+ readLimit?: InputMaybe<Scalars['Int']['input']>;
12701
+ };
12702
+ /** Represents pull request metadata. */
12703
+ export type PullRequestMetadata = {
12704
+ __typename?: 'PullRequestMetadata';
12705
+ /** The number of lines added. */
12706
+ additions?: Maybe<Scalars['Int']['output']>;
12707
+ /** The pull request base branch. */
12708
+ baseBranch?: Maybe<Scalars['String']['output']>;
12709
+ /** The number of lines deleted. */
12710
+ deletions?: Maybe<Scalars['Int']['output']>;
12711
+ /** The number of files changed. */
12712
+ filesChanged?: Maybe<Scalars['Int']['output']>;
12713
+ /** The pull request head branch. */
12714
+ headBranch?: Maybe<Scalars['String']['output']>;
12715
+ /** The pull request identifier. */
12716
+ identifier?: Maybe<Scalars['String']['output']>;
12717
+ /** Whether the pull request is a draft. */
12718
+ isDraft?: Maybe<Scalars['Boolean']['output']>;
12719
+ /** Whether the pull request is mergeable. */
12720
+ isMergeable?: Maybe<Scalars['Boolean']['output']>;
12721
+ /** The pull request labels. */
12722
+ labels?: Maybe<Array<Maybe<Scalars['String']['output']>>>;
12723
+ /** The pull request hyperlinks. */
12724
+ links?: Maybe<Array<Maybe<Scalars['URL']['output']>>>;
12725
+ /** The pull request merge commit SHA. */
12726
+ mergeCommitSha?: Maybe<Scalars['String']['output']>;
12727
+ /** The pull request merged date/time. */
12728
+ mergedAt?: Maybe<Scalars['DateTime']['output']>;
12729
+ /** The pull request project name. */
12730
+ project?: Maybe<Scalars['String']['output']>;
12731
+ /** The pull request status. */
12732
+ status?: Maybe<Scalars['String']['output']>;
12733
+ /** The pull request team name. */
12734
+ team?: Maybe<Scalars['String']['output']>;
12735
+ /** The pull request title. */
12736
+ title?: Maybe<Scalars['String']['output']>;
12737
+ /** The pull request type. */
12738
+ type?: Maybe<Scalars['String']['output']>;
12739
+ };
12504
12740
  export type Query = {
12505
12741
  __typename?: 'Query';
12506
12742
  /** Lookup an alert given its ID. */
@@ -17443,6 +17679,41 @@ export type GetContentQuery = {
17443
17679
  type?: string | null;
17444
17680
  labels?: Array<string | null> | null;
17445
17681
  } | null;
17682
+ commit?: {
17683
+ __typename?: 'CommitMetadata';
17684
+ sha?: string | null;
17685
+ message?: string | null;
17686
+ project?: string | null;
17687
+ team?: string | null;
17688
+ branch?: string | null;
17689
+ parentShas?: Array<string | null> | null;
17690
+ filesChanged?: number | null;
17691
+ additions?: number | null;
17692
+ deletions?: number | null;
17693
+ pullRequestNumber?: string | null;
17694
+ authorDate?: any | null;
17695
+ committerDate?: any | null;
17696
+ labels?: Array<string | null> | null;
17697
+ } | null;
17698
+ pullRequest?: {
17699
+ __typename?: 'PullRequestMetadata';
17700
+ identifier?: string | null;
17701
+ title?: string | null;
17702
+ project?: string | null;
17703
+ team?: string | null;
17704
+ status?: string | null;
17705
+ type?: string | null;
17706
+ baseBranch?: string | null;
17707
+ headBranch?: string | null;
17708
+ isDraft?: boolean | null;
17709
+ isMergeable?: boolean | null;
17710
+ mergeCommitSha?: string | null;
17711
+ mergedAt?: any | null;
17712
+ filesChanged?: number | null;
17713
+ additions?: number | null;
17714
+ deletions?: number | null;
17715
+ labels?: Array<string | null> | null;
17716
+ } | null;
17446
17717
  message?: {
17447
17718
  __typename?: 'MessageMetadata';
17448
17719
  identifier?: string | null;
@@ -18310,6 +18581,41 @@ export type LookupContentsQuery = {
18310
18581
  type?: string | null;
18311
18582
  labels?: Array<string | null> | null;
18312
18583
  } | null;
18584
+ commit?: {
18585
+ __typename?: 'CommitMetadata';
18586
+ sha?: string | null;
18587
+ message?: string | null;
18588
+ project?: string | null;
18589
+ team?: string | null;
18590
+ branch?: string | null;
18591
+ parentShas?: Array<string | null> | null;
18592
+ filesChanged?: number | null;
18593
+ additions?: number | null;
18594
+ deletions?: number | null;
18595
+ pullRequestNumber?: string | null;
18596
+ authorDate?: any | null;
18597
+ committerDate?: any | null;
18598
+ labels?: Array<string | null> | null;
18599
+ } | null;
18600
+ pullRequest?: {
18601
+ __typename?: 'PullRequestMetadata';
18602
+ identifier?: string | null;
18603
+ title?: string | null;
18604
+ project?: string | null;
18605
+ team?: string | null;
18606
+ status?: string | null;
18607
+ type?: string | null;
18608
+ baseBranch?: string | null;
18609
+ headBranch?: string | null;
18610
+ isDraft?: boolean | null;
18611
+ isMergeable?: boolean | null;
18612
+ mergeCommitSha?: string | null;
18613
+ mergedAt?: any | null;
18614
+ filesChanged?: number | null;
18615
+ additions?: number | null;
18616
+ deletions?: number | null;
18617
+ labels?: Array<string | null> | null;
18618
+ } | null;
18313
18619
  message?: {
18314
18620
  __typename?: 'MessageMetadata';
18315
18621
  identifier?: string | null;
@@ -18977,6 +19283,41 @@ export type QueryContentsQuery = {
18977
19283
  type?: string | null;
18978
19284
  labels?: Array<string | null> | null;
18979
19285
  } | null;
19286
+ commit?: {
19287
+ __typename?: 'CommitMetadata';
19288
+ sha?: string | null;
19289
+ message?: string | null;
19290
+ project?: string | null;
19291
+ team?: string | null;
19292
+ branch?: string | null;
19293
+ parentShas?: Array<string | null> | null;
19294
+ filesChanged?: number | null;
19295
+ additions?: number | null;
19296
+ deletions?: number | null;
19297
+ pullRequestNumber?: string | null;
19298
+ authorDate?: any | null;
19299
+ committerDate?: any | null;
19300
+ labels?: Array<string | null> | null;
19301
+ } | null;
19302
+ pullRequest?: {
19303
+ __typename?: 'PullRequestMetadata';
19304
+ identifier?: string | null;
19305
+ title?: string | null;
19306
+ project?: string | null;
19307
+ team?: string | null;
19308
+ status?: string | null;
19309
+ type?: string | null;
19310
+ baseBranch?: string | null;
19311
+ headBranch?: string | null;
19312
+ isDraft?: boolean | null;
19313
+ isMergeable?: boolean | null;
19314
+ mergeCommitSha?: string | null;
19315
+ mergedAt?: any | null;
19316
+ filesChanged?: number | null;
19317
+ additions?: number | null;
19318
+ deletions?: number | null;
19319
+ labels?: Array<string | null> | null;
19320
+ } | null;
18980
19321
  message?: {
18981
19322
  __typename?: 'MessageMetadata';
18982
19323
  identifier?: string | null;
@@ -19373,6 +19714,41 @@ export type QueryContentsObservationsQuery = {
19373
19714
  type?: string | null;
19374
19715
  labels?: Array<string | null> | null;
19375
19716
  } | null;
19717
+ commit?: {
19718
+ __typename?: 'CommitMetadata';
19719
+ sha?: string | null;
19720
+ message?: string | null;
19721
+ project?: string | null;
19722
+ team?: string | null;
19723
+ branch?: string | null;
19724
+ parentShas?: Array<string | null> | null;
19725
+ filesChanged?: number | null;
19726
+ additions?: number | null;
19727
+ deletions?: number | null;
19728
+ pullRequestNumber?: string | null;
19729
+ authorDate?: any | null;
19730
+ committerDate?: any | null;
19731
+ labels?: Array<string | null> | null;
19732
+ } | null;
19733
+ pullRequest?: {
19734
+ __typename?: 'PullRequestMetadata';
19735
+ identifier?: string | null;
19736
+ title?: string | null;
19737
+ project?: string | null;
19738
+ team?: string | null;
19739
+ status?: string | null;
19740
+ type?: string | null;
19741
+ baseBranch?: string | null;
19742
+ headBranch?: string | null;
19743
+ isDraft?: boolean | null;
19744
+ isMergeable?: boolean | null;
19745
+ mergeCommitSha?: string | null;
19746
+ mergedAt?: any | null;
19747
+ filesChanged?: number | null;
19748
+ additions?: number | null;
19749
+ deletions?: number | null;
19750
+ labels?: Array<string | null> | null;
19751
+ } | null;
19376
19752
  message?: {
19377
19753
  __typename?: 'MessageMetadata';
19378
19754
  identifier?: string | null;
@@ -23644,6 +24020,36 @@ export type GetFeedQuery = {
23644
24020
  type: TrelloTypes;
23645
24021
  } | null;
23646
24022
  } | null;
24023
+ commit?: {
24024
+ __typename?: 'CommitFeedProperties';
24025
+ type: FeedServiceTypes;
24026
+ readLimit?: number | null;
24027
+ github?: {
24028
+ __typename?: 'GitHubCommitsFeedProperties';
24029
+ authenticationType?: GitHubCommitAuthenticationTypes | null;
24030
+ uri?: any | null;
24031
+ repositoryOwner: string;
24032
+ repositoryName: string;
24033
+ refreshToken?: string | null;
24034
+ personalAccessToken?: string | null;
24035
+ authorizationId?: string | null;
24036
+ } | null;
24037
+ } | null;
24038
+ pullRequest?: {
24039
+ __typename?: 'PullRequestFeedProperties';
24040
+ type: FeedServiceTypes;
24041
+ readLimit?: number | null;
24042
+ github?: {
24043
+ __typename?: 'GitHubPullRequestsFeedProperties';
24044
+ authenticationType?: GitHubPullRequestAuthenticationTypes | null;
24045
+ uri?: any | null;
24046
+ repositoryOwner: string;
24047
+ repositoryName: string;
24048
+ refreshToken?: string | null;
24049
+ personalAccessToken?: string | null;
24050
+ authorizationId?: string | null;
24051
+ } | null;
24052
+ } | null;
23647
24053
  calendar?: {
23648
24054
  __typename?: 'CalendarFeedProperties';
23649
24055
  type: FeedServiceTypes;
@@ -24056,6 +24462,36 @@ export type QueryFeedsQuery = {
24056
24462
  type: TrelloTypes;
24057
24463
  } | null;
24058
24464
  } | null;
24465
+ commit?: {
24466
+ __typename?: 'CommitFeedProperties';
24467
+ type: FeedServiceTypes;
24468
+ readLimit?: number | null;
24469
+ github?: {
24470
+ __typename?: 'GitHubCommitsFeedProperties';
24471
+ authenticationType?: GitHubCommitAuthenticationTypes | null;
24472
+ uri?: any | null;
24473
+ repositoryOwner: string;
24474
+ repositoryName: string;
24475
+ refreshToken?: string | null;
24476
+ personalAccessToken?: string | null;
24477
+ authorizationId?: string | null;
24478
+ } | null;
24479
+ } | null;
24480
+ pullRequest?: {
24481
+ __typename?: 'PullRequestFeedProperties';
24482
+ type: FeedServiceTypes;
24483
+ readLimit?: number | null;
24484
+ github?: {
24485
+ __typename?: 'GitHubPullRequestsFeedProperties';
24486
+ authenticationType?: GitHubPullRequestAuthenticationTypes | null;
24487
+ uri?: any | null;
24488
+ repositoryOwner: string;
24489
+ repositoryName: string;
24490
+ refreshToken?: string | null;
24491
+ personalAccessToken?: string | null;
24492
+ authorizationId?: string | null;
24493
+ } | null;
24494
+ } | null;
24059
24495
  calendar?: {
24060
24496
  __typename?: 'CalendarFeedProperties';
24061
24497
  type: FeedServiceTypes;
@@ -475,6 +475,8 @@ export var ContentSourceTypes;
475
475
  /** Content type */
476
476
  export var ContentTypes;
477
477
  (function (ContentTypes) {
478
+ /** Commit (i.e. GitHub, GitLab, Bitbucket) */
479
+ ContentTypes["Commit"] = "COMMIT";
478
480
  /** Email */
479
481
  ContentTypes["Email"] = "EMAIL";
480
482
  /** Calendar Event */
@@ -491,6 +493,8 @@ export var ContentTypes;
491
493
  ContentTypes["Page"] = "PAGE";
492
494
  /** Post (i.e. Reddit, RSS) */
493
495
  ContentTypes["Post"] = "POST";
496
+ /** Pull Request (i.e. GitHub, GitLab, Bitbucket) */
497
+ ContentTypes["PullRequest"] = "PULL_REQUEST";
494
498
  /** Text (i.e. Markdown, HTML, plain text) */
495
499
  ContentTypes["Text"] = "TEXT";
496
500
  })(ContentTypes || (ContentTypes = {}));
@@ -901,8 +905,12 @@ export var FeedServiceTypes;
901
905
  FeedServiceTypes["Dropbox"] = "DROPBOX";
902
906
  /** GitHub feed service */
903
907
  FeedServiceTypes["GitHub"] = "GIT_HUB";
908
+ /** GitHub Commits feed service */
909
+ FeedServiceTypes["GitHubCommits"] = "GIT_HUB_COMMITS";
904
910
  /** GitHub Issues feed service */
905
911
  FeedServiceTypes["GitHubIssues"] = "GIT_HUB_ISSUES";
912
+ /** GitHub Pull Requests feed service */
913
+ FeedServiceTypes["GitHubPullRequests"] = "GIT_HUB_PULL_REQUESTS";
906
914
  /** Google Cloud Blob feed service */
907
915
  FeedServiceTypes["GoogleBlob"] = "GOOGLE_BLOB";
908
916
  /** Google Calendar feed service */
@@ -947,6 +955,8 @@ export var FeedTypes;
947
955
  (function (FeedTypes) {
948
956
  /** Calendar feed */
949
957
  FeedTypes["Calendar"] = "CALENDAR";
958
+ /** Commit feed */
959
+ FeedTypes["Commit"] = "COMMIT";
950
960
  /** Discord channel feed */
951
961
  FeedTypes["Discord"] = "DISCORD";
952
962
  /** Email feed */
@@ -959,6 +969,8 @@ export var FeedTypes;
959
969
  FeedTypes["MicrosoftTeams"] = "MICROSOFT_TEAMS";
960
970
  /** Notion feed */
961
971
  FeedTypes["Notion"] = "NOTION";
972
+ /** Pull Request feed */
973
+ FeedTypes["PullRequest"] = "PULL_REQUEST";
962
974
  /** Reddit feed */
963
975
  FeedTypes["Reddit"] = "REDDIT";
964
976
  /** RSS feed */
@@ -1047,12 +1059,24 @@ export var GitHubAuthenticationTypes;
1047
1059
  /** Personal Access Token */
1048
1060
  GitHubAuthenticationTypes["PersonalAccessToken"] = "PERSONAL_ACCESS_TOKEN";
1049
1061
  })(GitHubAuthenticationTypes || (GitHubAuthenticationTypes = {}));
1062
+ export var GitHubCommitAuthenticationTypes;
1063
+ (function (GitHubCommitAuthenticationTypes) {
1064
+ GitHubCommitAuthenticationTypes["Connector"] = "CONNECTOR";
1065
+ GitHubCommitAuthenticationTypes["OAuth"] = "O_AUTH";
1066
+ GitHubCommitAuthenticationTypes["PersonalAccessToken"] = "PERSONAL_ACCESS_TOKEN";
1067
+ })(GitHubCommitAuthenticationTypes || (GitHubCommitAuthenticationTypes = {}));
1050
1068
  export var GitHubIssueAuthenticationTypes;
1051
1069
  (function (GitHubIssueAuthenticationTypes) {
1052
1070
  GitHubIssueAuthenticationTypes["Connector"] = "CONNECTOR";
1053
1071
  GitHubIssueAuthenticationTypes["OAuth"] = "O_AUTH";
1054
1072
  GitHubIssueAuthenticationTypes["PersonalAccessToken"] = "PERSONAL_ACCESS_TOKEN";
1055
1073
  })(GitHubIssueAuthenticationTypes || (GitHubIssueAuthenticationTypes = {}));
1074
+ export var GitHubPullRequestAuthenticationTypes;
1075
+ (function (GitHubPullRequestAuthenticationTypes) {
1076
+ GitHubPullRequestAuthenticationTypes["Connector"] = "CONNECTOR";
1077
+ GitHubPullRequestAuthenticationTypes["OAuth"] = "O_AUTH";
1078
+ GitHubPullRequestAuthenticationTypes["PersonalAccessToken"] = "PERSONAL_ACCESS_TOKEN";
1079
+ })(GitHubPullRequestAuthenticationTypes || (GitHubPullRequestAuthenticationTypes = {}));
1056
1080
  /** GitHub repository sort type */
1057
1081
  export var GitHubRepositorySortTypes;
1058
1082
  (function (GitHubRepositorySortTypes) {
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "graphlit-client",
3
- "version": "1.0.20251023001",
3
+ "version": "1.0.20251103002",
4
4
  "description": "Graphlit API Client for TypeScript",
5
5
  "type": "module",
6
6
  "main": "./dist/client.js",