graphlit-client 1.0.20251023001 → 1.0.20251103001

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.
@@ -6907,6 +6907,32 @@ export const GetFeed = gql `
6907
6907
  }
6908
6908
  readLimit
6909
6909
  }
6910
+ commit {
6911
+ type
6912
+ github {
6913
+ authenticationType
6914
+ uri
6915
+ repositoryOwner
6916
+ repositoryName
6917
+ refreshToken
6918
+ personalAccessToken
6919
+ authorizationId
6920
+ }
6921
+ readLimit
6922
+ }
6923
+ pullRequest {
6924
+ type
6925
+ github {
6926
+ authenticationType
6927
+ uri
6928
+ repositoryOwner
6929
+ repositoryName
6930
+ refreshToken
6931
+ personalAccessToken
6932
+ authorizationId
6933
+ }
6934
+ readLimit
6935
+ }
6910
6936
  calendar {
6911
6937
  type
6912
6938
  includeAttachments
@@ -7251,6 +7277,32 @@ export const QueryFeeds = gql `
7251
7277
  }
7252
7278
  readLimit
7253
7279
  }
7280
+ commit {
7281
+ type
7282
+ github {
7283
+ authenticationType
7284
+ uri
7285
+ repositoryOwner
7286
+ repositoryName
7287
+ refreshToken
7288
+ personalAccessToken
7289
+ authorizationId
7290
+ }
7291
+ readLimit
7292
+ }
7293
+ pullRequest {
7294
+ type
7295
+ github {
7296
+ authenticationType
7297
+ uri
7298
+ repositoryOwner
7299
+ repositoryName
7300
+ refreshToken
7301
+ personalAccessToken
7302
+ authorizationId
7303
+ }
7304
+ readLimit
7305
+ }
7254
7306
  calendar {
7255
7307
  type
7256
7308
  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. */
@@ -23644,6 +23880,36 @@ export type GetFeedQuery = {
23644
23880
  type: TrelloTypes;
23645
23881
  } | null;
23646
23882
  } | null;
23883
+ commit?: {
23884
+ __typename?: 'CommitFeedProperties';
23885
+ type: FeedServiceTypes;
23886
+ readLimit?: number | null;
23887
+ github?: {
23888
+ __typename?: 'GitHubCommitsFeedProperties';
23889
+ authenticationType?: GitHubCommitAuthenticationTypes | null;
23890
+ uri?: any | null;
23891
+ repositoryOwner: string;
23892
+ repositoryName: string;
23893
+ refreshToken?: string | null;
23894
+ personalAccessToken?: string | null;
23895
+ authorizationId?: string | null;
23896
+ } | null;
23897
+ } | null;
23898
+ pullRequest?: {
23899
+ __typename?: 'PullRequestFeedProperties';
23900
+ type: FeedServiceTypes;
23901
+ readLimit?: number | null;
23902
+ github?: {
23903
+ __typename?: 'GitHubPullRequestsFeedProperties';
23904
+ authenticationType?: GitHubPullRequestAuthenticationTypes | null;
23905
+ uri?: any | null;
23906
+ repositoryOwner: string;
23907
+ repositoryName: string;
23908
+ refreshToken?: string | null;
23909
+ personalAccessToken?: string | null;
23910
+ authorizationId?: string | null;
23911
+ } | null;
23912
+ } | null;
23647
23913
  calendar?: {
23648
23914
  __typename?: 'CalendarFeedProperties';
23649
23915
  type: FeedServiceTypes;
@@ -24056,6 +24322,36 @@ export type QueryFeedsQuery = {
24056
24322
  type: TrelloTypes;
24057
24323
  } | null;
24058
24324
  } | null;
24325
+ commit?: {
24326
+ __typename?: 'CommitFeedProperties';
24327
+ type: FeedServiceTypes;
24328
+ readLimit?: number | null;
24329
+ github?: {
24330
+ __typename?: 'GitHubCommitsFeedProperties';
24331
+ authenticationType?: GitHubCommitAuthenticationTypes | null;
24332
+ uri?: any | null;
24333
+ repositoryOwner: string;
24334
+ repositoryName: string;
24335
+ refreshToken?: string | null;
24336
+ personalAccessToken?: string | null;
24337
+ authorizationId?: string | null;
24338
+ } | null;
24339
+ } | null;
24340
+ pullRequest?: {
24341
+ __typename?: 'PullRequestFeedProperties';
24342
+ type: FeedServiceTypes;
24343
+ readLimit?: number | null;
24344
+ github?: {
24345
+ __typename?: 'GitHubPullRequestsFeedProperties';
24346
+ authenticationType?: GitHubPullRequestAuthenticationTypes | null;
24347
+ uri?: any | null;
24348
+ repositoryOwner: string;
24349
+ repositoryName: string;
24350
+ refreshToken?: string | null;
24351
+ personalAccessToken?: string | null;
24352
+ authorizationId?: string | null;
24353
+ } | null;
24354
+ } | null;
24059
24355
  calendar?: {
24060
24356
  __typename?: 'CalendarFeedProperties';
24061
24357
  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.20251103001",
4
4
  "description": "Graphlit API Client for TypeScript",
5
5
  "type": "module",
6
6
  "main": "./dist/client.js",