graphlit-client 1.0.20251021001 → 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
@@ -160,6 +160,10 @@ export type AlertFilter = {
160
160
  id?: InputMaybe<Scalars['ID']['input']>;
161
161
  /** Limit the number of alert(s) to be returned. Defaults to 100. */
162
162
  limit?: InputMaybe<Scalars['Int']['input']>;
163
+ /** Filter alert(s) by their modified date range. */
164
+ modifiedDateRange?: InputMaybe<DateRangeFilter>;
165
+ /** Filter by modified date recent timespan. For example, a timespan of one day will return alert(s) modified in the last 24 hours. */
166
+ modifiedInLast?: InputMaybe<Scalars['TimeSpan']['input']>;
163
167
  /** Filter alert(s) by their name. */
164
168
  name?: InputMaybe<Scalars['String']['input']>;
165
169
  /** Skip the specified number of alert(s) from the beginning of the result set. Only supported on keyword search. */
@@ -1447,6 +1451,10 @@ export type CategoryFilter = {
1447
1451
  id?: InputMaybe<Scalars['ID']['input']>;
1448
1452
  /** Limit the number of category(s) to be returned. Defaults to 100. */
1449
1453
  limit?: InputMaybe<Scalars['Int']['input']>;
1454
+ /** Filter category(s) by their modified date range. */
1455
+ modifiedDateRange?: InputMaybe<DateRangeFilter>;
1456
+ /** Filter by modified date recent timespan. For example, a timespan of one day will return category(s) modified in the last 24 hours. */
1457
+ modifiedInLast?: InputMaybe<Scalars['TimeSpan']['input']>;
1450
1458
  /** Filter category(s) by their name. */
1451
1459
  name?: InputMaybe<Scalars['String']['input']>;
1452
1460
  /** Skip the specified number of category(s) from the beginning of the result set. Only supported on keyword search. */
@@ -1700,6 +1708,10 @@ export type CollectionFilter = {
1700
1708
  id?: InputMaybe<Scalars['ID']['input']>;
1701
1709
  /** Limit the number of collection(s) to be returned. Defaults to 100. */
1702
1710
  limit?: InputMaybe<Scalars['Int']['input']>;
1711
+ /** Filter collection(s) by their modified date range. */
1712
+ modifiedDateRange?: InputMaybe<DateRangeFilter>;
1713
+ /** Filter by modified date recent timespan. For example, a timespan of one day will return collection(s) modified in the last 24 hours. */
1714
+ modifiedInLast?: InputMaybe<Scalars['TimeSpan']['input']>;
1703
1715
  /** Filter collection(s) by their name. */
1704
1716
  name?: InputMaybe<Scalars['String']['input']>;
1705
1717
  /** Skip the specified number of collection(s) from the beginning of the result set. Only supported on keyword search. */
@@ -1754,6 +1766,66 @@ export type CollectionUpdateInput = {
1754
1766
  /** The collection type. */
1755
1767
  type?: InputMaybe<CollectionTypes>;
1756
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
+ };
1757
1829
  /** Represents a connector. */
1758
1830
  export type Connector = {
1759
1831
  __typename?: 'Connector';
@@ -1788,6 +1860,10 @@ export type ConnectorFilter = {
1788
1860
  id?: InputMaybe<Scalars['ID']['input']>;
1789
1861
  /** Limit the number of connector(s) to be returned. Defaults to 100. */
1790
1862
  limit?: InputMaybe<Scalars['Int']['input']>;
1863
+ /** Filter connector(s) by their modified date range. */
1864
+ modifiedDateRange?: InputMaybe<DateRangeFilter>;
1865
+ /** Filter by modified date recent timespan. For example, a timespan of one day will return connector(s) modified in the last 24 hours. */
1866
+ modifiedInLast?: InputMaybe<Scalars['TimeSpan']['input']>;
1791
1867
  /** Filter connector(s) by their name. */
1792
1868
  name?: InputMaybe<Scalars['String']['input']>;
1793
1869
  /** Skip the specified number of connector(s) from the beginning of the result set. Only supported on keyword search. */
@@ -1855,6 +1931,8 @@ export type Content = {
1855
1931
  children?: Maybe<Array<Maybe<Content>>>;
1856
1932
  /** The collections this content is contained within. */
1857
1933
  collections?: Maybe<Array<Maybe<Collection>>>;
1934
+ /** The content commit metadata. */
1935
+ commit?: Maybe<CommitMetadata>;
1858
1936
  /** The tenant correlation identifier. */
1859
1937
  correlationId?: Maybe<Scalars['String']['output']>;
1860
1938
  /** The creation date of the content. */
@@ -1966,6 +2044,8 @@ export type Content = {
1966
2044
  post?: Maybe<PostMetadata>;
1967
2045
  /** The summarized content social media posts. */
1968
2046
  posts?: Maybe<Array<Scalars['String']['output']>>;
2047
+ /** The content pull request metadata. */
2048
+ pullRequest?: Maybe<PullRequestMetadata>;
1969
2049
  /** The followup questions which can be asked about the content. */
1970
2050
  questions?: Maybe<Array<Scalars['String']['output']>>;
1971
2051
  /** Quotes extracted from the content. */
@@ -2300,6 +2380,10 @@ export type ContentFilter = {
2300
2380
  limit?: InputMaybe<Scalars['Int']['input']>;
2301
2381
  /** Filter by geo-location. */
2302
2382
  location?: InputMaybe<PointFilter>;
2383
+ /** Filter content(s) by their modified date range. */
2384
+ modifiedDateRange?: InputMaybe<DateRangeFilter>;
2385
+ /** Filter by modified date recent timespan. For example, a timespan of one day will return content(s) modified in the last 24 hours. */
2386
+ modifiedInLast?: InputMaybe<Scalars['TimeSpan']['input']>;
2303
2387
  /** Filter content(s) by their name. */
2304
2388
  name?: InputMaybe<Scalars['String']['input']>;
2305
2389
  /** When using similarity search, the number of similar items to be returned. Defaults to 100. */
@@ -2376,6 +2460,8 @@ export declare enum ContentIndexingServiceTypes {
2376
2460
  }
2377
2461
  /** Represents content. */
2378
2462
  export type ContentInput = {
2463
+ /** The date when the content was created. */
2464
+ creationDate?: InputMaybe<Scalars['DateTime']['input']>;
2379
2465
  /** The content description. */
2380
2466
  description?: InputMaybe<Scalars['String']['input']>;
2381
2467
  /** The date when the file was created. */
@@ -2384,6 +2470,8 @@ export type ContentInput = {
2384
2470
  fileModifiedDate?: InputMaybe<Scalars['DateTime']['input']>;
2385
2471
  /** The content external identifier. */
2386
2472
  identifier?: InputMaybe<Scalars['String']['input']>;
2473
+ /** The date when the content was last modified. */
2474
+ modifiedDate?: InputMaybe<Scalars['DateTime']['input']>;
2387
2475
  /** The name of the content. */
2388
2476
  name: Scalars['String']['input'];
2389
2477
  /** The content text. */
@@ -2520,6 +2608,8 @@ export declare enum ContentSourceTypes {
2520
2608
  }
2521
2609
  /** Content type */
2522
2610
  export declare enum ContentTypes {
2611
+ /** Commit (i.e. GitHub, GitLab, Bitbucket) */
2612
+ Commit = "COMMIT",
2523
2613
  /** Email */
2524
2614
  Email = "EMAIL",
2525
2615
  /** Calendar Event */
@@ -2536,6 +2626,8 @@ export declare enum ContentTypes {
2536
2626
  Page = "PAGE",
2537
2627
  /** Post (i.e. Reddit, RSS) */
2538
2628
  Post = "POST",
2629
+ /** Pull Request (i.e. GitHub, GitLab, Bitbucket) */
2630
+ PullRequest = "PULL_REQUEST",
2539
2631
  /** Text (i.e. Markdown, HTML, plain text) */
2540
2632
  Text = "TEXT"
2541
2633
  }
@@ -2547,6 +2639,8 @@ export type ContentUpdateInput = {
2547
2639
  bullets?: InputMaybe<Array<Scalars['String']['input']>>;
2548
2640
  /** The timestamped chapters summarized from the content transcript. */
2549
2641
  chapters?: InputMaybe<Array<Scalars['String']['input']>>;
2642
+ /** The date when the content was created. */
2643
+ creationDate?: InputMaybe<Scalars['DateTime']['input']>;
2550
2644
  /** The custom content summary. */
2551
2645
  customSummary?: InputMaybe<Scalars['String']['input']>;
2552
2646
  /** The content description. */
@@ -2581,6 +2675,8 @@ export type ContentUpdateInput = {
2581
2675
  language?: InputMaybe<LanguageMetadataInput>;
2582
2676
  /** The content message metadata. */
2583
2677
  message?: InputMaybe<MessageMetadataInput>;
2678
+ /** The date when the content was last modified. */
2679
+ modifiedDate?: InputMaybe<Scalars['DateTime']['input']>;
2584
2680
  /** The name of the content. */
2585
2681
  name?: InputMaybe<Scalars['String']['input']>;
2586
2682
  /** The content package metadata. */
@@ -2714,6 +2810,10 @@ export type ConversationFilter = {
2714
2810
  id?: InputMaybe<Scalars['ID']['input']>;
2715
2811
  /** Limit the number of conversation(s) to be returned. Defaults to 100. */
2716
2812
  limit?: InputMaybe<Scalars['Int']['input']>;
2813
+ /** Filter conversation(s) by their modified date range. */
2814
+ modifiedDateRange?: InputMaybe<DateRangeFilter>;
2815
+ /** Filter by modified date recent timespan. For example, a timespan of one day will return conversation(s) modified in the last 24 hours. */
2816
+ modifiedInLast?: InputMaybe<Scalars['TimeSpan']['input']>;
2717
2817
  /** Filter conversation(s) by their name. */
2718
2818
  name?: InputMaybe<Scalars['String']['input']>;
2719
2819
  /** When using similarity search, the number of similar items to be returned. Defaults to 100. */
@@ -4063,6 +4163,10 @@ export type EventFilter = {
4063
4163
  maxPrice?: InputMaybe<Scalars['Decimal']['input']>;
4064
4164
  /** Filter by the event minimum price. */
4065
4165
  minPrice?: InputMaybe<Scalars['Decimal']['input']>;
4166
+ /** Filter event(s) by their modified date range. */
4167
+ modifiedDateRange?: InputMaybe<DateRangeFilter>;
4168
+ /** Filter by modified date recent timespan. For example, a timespan of one day will return event(s) modified in the last 24 hours. */
4169
+ modifiedInLast?: InputMaybe<Scalars['TimeSpan']['input']>;
4066
4170
  /** Filter event(s) by their name. */
4067
4171
  name?: InputMaybe<Scalars['String']['input']>;
4068
4172
  /** When using similarity search, the number of similar items to be returned. Defaults to 100. */
@@ -4328,6 +4432,8 @@ export type Feed = {
4328
4432
  __typename?: 'Feed';
4329
4433
  /** The calendar feed properties. */
4330
4434
  calendar?: Maybe<CalendarFeedProperties>;
4435
+ /** The commit feed properties. */
4436
+ commit?: Maybe<CommitFeedProperties>;
4331
4437
  /** The contents sourced from the feed. */
4332
4438
  contents?: Maybe<Array<Maybe<Content>>>;
4333
4439
  /** The tenant correlation identifier. */
@@ -4362,6 +4468,8 @@ export type Feed = {
4362
4468
  notion?: Maybe<NotionFeedProperties>;
4363
4469
  /** The owner of the feed. */
4364
4470
  owner: Owner;
4471
+ /** The pull request feed properties. */
4472
+ pullRequest?: Maybe<PullRequestFeedProperties>;
4365
4473
  /** The count of items read from the feed. */
4366
4474
  readCount?: Maybe<Scalars['Int']['output']>;
4367
4475
  /** The Reddit feed properties. */
@@ -4443,6 +4551,10 @@ export type FeedFilter = {
4443
4551
  id?: InputMaybe<Scalars['ID']['input']>;
4444
4552
  /** Limit the number of feed(s) to be returned. Defaults to 100. */
4445
4553
  limit?: InputMaybe<Scalars['Int']['input']>;
4554
+ /** Filter feed(s) by their modified date range. */
4555
+ modifiedDateRange?: InputMaybe<DateRangeFilter>;
4556
+ /** Filter by modified date recent timespan. For example, a timespan of one day will return feed(s) modified in the last 24 hours. */
4557
+ modifiedInLast?: InputMaybe<Scalars['TimeSpan']['input']>;
4446
4558
  /** Filter feed(s) by their name. */
4447
4559
  name?: InputMaybe<Scalars['String']['input']>;
4448
4560
  /** Skip the specified number of feed(s) from the beginning of the result set. Only supported on keyword search. */
@@ -4460,6 +4572,8 @@ export type FeedFilter = {
4460
4572
  export type FeedInput = {
4461
4573
  /** The calendar feed properties. */
4462
4574
  calendar?: InputMaybe<CalendarFeedPropertiesInput>;
4575
+ /** The commit feed properties. */
4576
+ commit?: InputMaybe<CommitFeedPropertiesInput>;
4463
4577
  /** The feed description. */
4464
4578
  description?: InputMaybe<Scalars['String']['input']>;
4465
4579
  /** The Discord feed properties. */
@@ -4476,6 +4590,8 @@ export type FeedInput = {
4476
4590
  name: Scalars['String']['input'];
4477
4591
  /** The Notion feed properties. */
4478
4592
  notion?: InputMaybe<NotionFeedPropertiesInput>;
4593
+ /** The pull request feed properties. */
4594
+ pullRequest?: InputMaybe<PullRequestFeedPropertiesInput>;
4479
4595
  /** The Reddit feed properties. */
4480
4596
  reddit?: InputMaybe<RedditFeedPropertiesInput>;
4481
4597
  /** The RSS feed properties. */
@@ -4545,8 +4661,12 @@ export declare enum FeedServiceTypes {
4545
4661
  Dropbox = "DROPBOX",
4546
4662
  /** GitHub feed service */
4547
4663
  GitHub = "GIT_HUB",
4664
+ /** GitHub Commits feed service */
4665
+ GitHubCommits = "GIT_HUB_COMMITS",
4548
4666
  /** GitHub Issues feed service */
4549
4667
  GitHubIssues = "GIT_HUB_ISSUES",
4668
+ /** GitHub Pull Requests feed service */
4669
+ GitHubPullRequests = "GIT_HUB_PULL_REQUESTS",
4550
4670
  /** Google Cloud Blob feed service */
4551
4671
  GoogleBlob = "GOOGLE_BLOB",
4552
4672
  /** Google Calendar feed service */
@@ -4589,6 +4709,8 @@ export declare enum FeedSyncMode {
4589
4709
  export declare enum FeedTypes {
4590
4710
  /** Calendar feed */
4591
4711
  Calendar = "CALENDAR",
4712
+ /** Commit feed */
4713
+ Commit = "COMMIT",
4592
4714
  /** Discord channel feed */
4593
4715
  Discord = "DISCORD",
4594
4716
  /** Email feed */
@@ -4601,6 +4723,8 @@ export declare enum FeedTypes {
4601
4723
  MicrosoftTeams = "MICROSOFT_TEAMS",
4602
4724
  /** Notion feed */
4603
4725
  Notion = "NOTION",
4726
+ /** Pull Request feed */
4727
+ PullRequest = "PULL_REQUEST",
4604
4728
  /** Reddit feed */
4605
4729
  Reddit = "REDDIT",
4606
4730
  /** RSS feed */
@@ -4624,6 +4748,8 @@ export declare enum FeedTypes {
4624
4748
  export type FeedUpdateInput = {
4625
4749
  /** The calendar feed properties. */
4626
4750
  calendar?: InputMaybe<CalendarFeedPropertiesUpdateInput>;
4751
+ /** The commit feed properties. */
4752
+ commit?: InputMaybe<CommitFeedPropertiesUpdateInput>;
4627
4753
  /** The feed description. */
4628
4754
  description?: InputMaybe<Scalars['String']['input']>;
4629
4755
  /** The Discord feed properties. */
@@ -4642,6 +4768,8 @@ export type FeedUpdateInput = {
4642
4768
  name?: InputMaybe<Scalars['String']['input']>;
4643
4769
  /** The Notion feed properties. */
4644
4770
  notion?: InputMaybe<NotionFeedPropertiesUpdateInput>;
4771
+ /** The pull request feed properties. */
4772
+ pullRequest?: InputMaybe<PullRequestFeedPropertiesUpdateInput>;
4645
4773
  /** The Reddit feed properties. */
4646
4774
  reddit?: InputMaybe<RedditFeedPropertiesUpdateInput>;
4647
4775
  /** The RSS feed properties. */
@@ -4807,6 +4935,31 @@ export declare enum GitHubAuthenticationTypes {
4807
4935
  /** Personal Access Token */
4808
4936
  PersonalAccessToken = "PERSONAL_ACCESS_TOKEN"
4809
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
+ };
4810
4963
  /** Represents GitHub properties. */
4811
4964
  export type GitHubFeedProperties = {
4812
4965
  __typename?: 'GitHubFeedProperties';
@@ -4912,6 +5065,63 @@ export type GitHubIssuesFeedPropertiesUpdateInput = {
4912
5065
  /** GitHub Enterprise URI, optional. */
4913
5066
  uri?: InputMaybe<Scalars['URL']['input']>;
4914
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
+ };
4915
5125
  /** Represents GitHub repositories properties. */
4916
5126
  export type GitHubRepositoriesInput = {
4917
5127
  /** GitHub authentication type. */
@@ -6260,6 +6470,10 @@ export type LabelFilter = {
6260
6470
  id?: InputMaybe<Scalars['ID']['input']>;
6261
6471
  /** Limit the number of label(s) to be returned. Defaults to 100. */
6262
6472
  limit?: InputMaybe<Scalars['Int']['input']>;
6473
+ /** Filter label(s) by their modified date range. */
6474
+ modifiedDateRange?: InputMaybe<DateRangeFilter>;
6475
+ /** Filter by modified date recent timespan. For example, a timespan of one day will return label(s) modified in the last 24 hours. */
6476
+ modifiedInLast?: InputMaybe<Scalars['TimeSpan']['input']>;
6263
6477
  /** Filter label(s) by their name. */
6264
6478
  name?: InputMaybe<Scalars['String']['input']>;
6265
6479
  /** Skip the specified number of label(s) from the beginning of the result set. Only supported on keyword search. */
@@ -6649,6 +6863,10 @@ export type MedicalConditionFilter = {
6649
6863
  limit?: InputMaybe<Scalars['Int']['input']>;
6650
6864
  /** Filter by observable geo-location. */
6651
6865
  location?: InputMaybe<PointFilter>;
6866
+ /** Filter medicalcondition(s) by their modified date range. */
6867
+ modifiedDateRange?: InputMaybe<DateRangeFilter>;
6868
+ /** Filter by modified date recent timespan. For example, a timespan of one day will return medicalcondition(s) modified in the last 24 hours. */
6869
+ modifiedInLast?: InputMaybe<Scalars['TimeSpan']['input']>;
6652
6870
  /** Filter medicalcondition(s) by their name. */
6653
6871
  name?: InputMaybe<Scalars['String']['input']>;
6654
6872
  /** When using similarity search, the number of similar items to be returned. Defaults to 100. */
@@ -6792,6 +7010,10 @@ export type MedicalContraindicationFilter = {
6792
7010
  limit?: InputMaybe<Scalars['Int']['input']>;
6793
7011
  /** Filter by observable geo-location. */
6794
7012
  location?: InputMaybe<PointFilter>;
7013
+ /** Filter medicalcontraindication(s) by their modified date range. */
7014
+ modifiedDateRange?: InputMaybe<DateRangeFilter>;
7015
+ /** Filter by modified date recent timespan. For example, a timespan of one day will return medicalcontraindication(s) modified in the last 24 hours. */
7016
+ modifiedInLast?: InputMaybe<Scalars['TimeSpan']['input']>;
6795
7017
  /** Filter medicalcontraindication(s) by their name. */
6796
7018
  name?: InputMaybe<Scalars['String']['input']>;
6797
7019
  /** When using similarity search, the number of similar items to be returned. Defaults to 100. */
@@ -6935,6 +7157,10 @@ export type MedicalDeviceFilter = {
6935
7157
  limit?: InputMaybe<Scalars['Int']['input']>;
6936
7158
  /** Filter by observable geo-location. */
6937
7159
  location?: InputMaybe<PointFilter>;
7160
+ /** Filter medicaldevice(s) by their modified date range. */
7161
+ modifiedDateRange?: InputMaybe<DateRangeFilter>;
7162
+ /** Filter by modified date recent timespan. For example, a timespan of one day will return medicaldevice(s) modified in the last 24 hours. */
7163
+ modifiedInLast?: InputMaybe<Scalars['TimeSpan']['input']>;
6938
7164
  /** Filter medicaldevice(s) by their name. */
6939
7165
  name?: InputMaybe<Scalars['String']['input']>;
6940
7166
  /** When using similarity search, the number of similar items to be returned. Defaults to 100. */
@@ -7114,6 +7340,10 @@ export type MedicalDrugClassFilter = {
7114
7340
  limit?: InputMaybe<Scalars['Int']['input']>;
7115
7341
  /** Filter by observable geo-location. */
7116
7342
  location?: InputMaybe<PointFilter>;
7343
+ /** Filter medicaldrugclass(s) by their modified date range. */
7344
+ modifiedDateRange?: InputMaybe<DateRangeFilter>;
7345
+ /** Filter by modified date recent timespan. For example, a timespan of one day will return medicaldrugclass(s) modified in the last 24 hours. */
7346
+ modifiedInLast?: InputMaybe<Scalars['TimeSpan']['input']>;
7117
7347
  /** Filter medicaldrugclass(s) by their name. */
7118
7348
  name?: InputMaybe<Scalars['String']['input']>;
7119
7349
  /** When using similarity search, the number of similar items to be returned. Defaults to 100. */
@@ -7221,6 +7451,10 @@ export type MedicalDrugFilter = {
7221
7451
  limit?: InputMaybe<Scalars['Int']['input']>;
7222
7452
  /** Filter by observable geo-location. */
7223
7453
  location?: InputMaybe<PointFilter>;
7454
+ /** Filter medicaldrug(s) by their modified date range. */
7455
+ modifiedDateRange?: InputMaybe<DateRangeFilter>;
7456
+ /** Filter by modified date recent timespan. For example, a timespan of one day will return medicaldrug(s) modified in the last 24 hours. */
7457
+ modifiedInLast?: InputMaybe<Scalars['TimeSpan']['input']>;
7224
7458
  /** Filter medicaldrug(s) by their name. */
7225
7459
  name?: InputMaybe<Scalars['String']['input']>;
7226
7460
  /** When using similarity search, the number of similar items to be returned. Defaults to 100. */
@@ -7364,6 +7598,10 @@ export type MedicalGuidelineFilter = {
7364
7598
  limit?: InputMaybe<Scalars['Int']['input']>;
7365
7599
  /** Filter by observable geo-location. */
7366
7600
  location?: InputMaybe<PointFilter>;
7601
+ /** Filter medicalguideline(s) by their modified date range. */
7602
+ modifiedDateRange?: InputMaybe<DateRangeFilter>;
7603
+ /** Filter by modified date recent timespan. For example, a timespan of one day will return medicalguideline(s) modified in the last 24 hours. */
7604
+ modifiedInLast?: InputMaybe<Scalars['TimeSpan']['input']>;
7367
7605
  /** Filter medicalguideline(s) by their name. */
7368
7606
  name?: InputMaybe<Scalars['String']['input']>;
7369
7607
  /** When using similarity search, the number of similar items to be returned. Defaults to 100. */
@@ -7507,6 +7745,10 @@ export type MedicalIndicationFilter = {
7507
7745
  limit?: InputMaybe<Scalars['Int']['input']>;
7508
7746
  /** Filter by observable geo-location. */
7509
7747
  location?: InputMaybe<PointFilter>;
7748
+ /** Filter medicalindication(s) by their modified date range. */
7749
+ modifiedDateRange?: InputMaybe<DateRangeFilter>;
7750
+ /** Filter by modified date recent timespan. For example, a timespan of one day will return medicalindication(s) modified in the last 24 hours. */
7751
+ modifiedInLast?: InputMaybe<Scalars['TimeSpan']['input']>;
7510
7752
  /** Filter medicalindication(s) by their name. */
7511
7753
  name?: InputMaybe<Scalars['String']['input']>;
7512
7754
  /** When using similarity search, the number of similar items to be returned. Defaults to 100. */
@@ -7650,6 +7892,10 @@ export type MedicalProcedureFilter = {
7650
7892
  limit?: InputMaybe<Scalars['Int']['input']>;
7651
7893
  /** Filter by observable geo-location. */
7652
7894
  location?: InputMaybe<PointFilter>;
7895
+ /** Filter medicalprocedure(s) by their modified date range. */
7896
+ modifiedDateRange?: InputMaybe<DateRangeFilter>;
7897
+ /** Filter by modified date recent timespan. For example, a timespan of one day will return medicalprocedure(s) modified in the last 24 hours. */
7898
+ modifiedInLast?: InputMaybe<Scalars['TimeSpan']['input']>;
7653
7899
  /** Filter medicalprocedure(s) by their name. */
7654
7900
  name?: InputMaybe<Scalars['String']['input']>;
7655
7901
  /** When using similarity search, the number of similar items to be returned. Defaults to 100. */
@@ -7795,6 +8041,10 @@ export type MedicalStudyFilter = {
7795
8041
  limit?: InputMaybe<Scalars['Int']['input']>;
7796
8042
  /** Filter by observable geo-location. */
7797
8043
  location?: InputMaybe<PointFilter>;
8044
+ /** Filter medicalstudy(s) by their modified date range. */
8045
+ modifiedDateRange?: InputMaybe<DateRangeFilter>;
8046
+ /** Filter by modified date recent timespan. For example, a timespan of one day will return medicalstudy(s) modified in the last 24 hours. */
8047
+ modifiedInLast?: InputMaybe<Scalars['TimeSpan']['input']>;
7798
8048
  /** Filter medicalstudy(s) by their name. */
7799
8049
  name?: InputMaybe<Scalars['String']['input']>;
7800
8050
  /** When using similarity search, the number of similar items to be returned. Defaults to 100. */
@@ -7944,6 +8194,10 @@ export type MedicalTestFilter = {
7944
8194
  limit?: InputMaybe<Scalars['Int']['input']>;
7945
8195
  /** Filter by observable geo-location. */
7946
8196
  location?: InputMaybe<PointFilter>;
8197
+ /** Filter medicaltest(s) by their modified date range. */
8198
+ modifiedDateRange?: InputMaybe<DateRangeFilter>;
8199
+ /** Filter by modified date recent timespan. For example, a timespan of one day will return medicaltest(s) modified in the last 24 hours. */
8200
+ modifiedInLast?: InputMaybe<Scalars['TimeSpan']['input']>;
7947
8201
  /** Filter medicaltest(s) by their name. */
7948
8202
  name?: InputMaybe<Scalars['String']['input']>;
7949
8203
  /** When using similarity search, the number of similar items to be returned. Defaults to 100. */
@@ -8087,6 +8341,10 @@ export type MedicalTherapyFilter = {
8087
8341
  limit?: InputMaybe<Scalars['Int']['input']>;
8088
8342
  /** Filter by observable geo-location. */
8089
8343
  location?: InputMaybe<PointFilter>;
8344
+ /** Filter medicaltherapy(s) by their modified date range. */
8345
+ modifiedDateRange?: InputMaybe<DateRangeFilter>;
8346
+ /** Filter by modified date recent timespan. For example, a timespan of one day will return medicaltherapy(s) modified in the last 24 hours. */
8347
+ modifiedInLast?: InputMaybe<Scalars['TimeSpan']['input']>;
8090
8348
  /** Filter medicaltherapy(s) by their name. */
8091
8349
  name?: InputMaybe<Scalars['String']['input']>;
8092
8350
  /** When using similarity search, the number of similar items to be returned. Defaults to 100. */
@@ -8237,6 +8495,10 @@ export type MetadataFilter = {
8237
8495
  limit?: InputMaybe<Scalars['Int']['input']>;
8238
8496
  /** Filter by metadata types. */
8239
8497
  metadataTypes?: InputMaybe<Array<MetadataTypes>>;
8498
+ /** Filter metadata(s) by their modified date range. */
8499
+ modifiedDateRange?: InputMaybe<DateRangeFilter>;
8500
+ /** Filter by modified date recent timespan. For example, a timespan of one day will return metadata(s) modified in the last 24 hours. */
8501
+ modifiedInLast?: InputMaybe<Scalars['TimeSpan']['input']>;
8240
8502
  /** Filter metadata(s) by their name. */
8241
8503
  name?: InputMaybe<Scalars['String']['input']>;
8242
8504
  /** Skip the specified number of metadata(s) from the beginning of the result set. Only supported on keyword search. */
@@ -11030,6 +11292,10 @@ export type OrganizationFilter = {
11030
11292
  limit?: InputMaybe<Scalars['Int']['input']>;
11031
11293
  /** Filter by observable geo-location. */
11032
11294
  location?: InputMaybe<PointFilter>;
11295
+ /** Filter organization(s) by their modified date range. */
11296
+ modifiedDateRange?: InputMaybe<DateRangeFilter>;
11297
+ /** Filter by modified date recent timespan. For example, a timespan of one day will return organization(s) modified in the last 24 hours. */
11298
+ modifiedInLast?: InputMaybe<Scalars['TimeSpan']['input']>;
11033
11299
  /** Filter organization(s) by their name. */
11034
11300
  name?: InputMaybe<Scalars['String']['input']>;
11035
11301
  /** When using similarity search, the number of similar items to be returned. Defaults to 100. */
@@ -11288,6 +11554,10 @@ export type PersonFilter = {
11288
11554
  limit?: InputMaybe<Scalars['Int']['input']>;
11289
11555
  /** Filter by observable geo-location. */
11290
11556
  location?: InputMaybe<PointFilter>;
11557
+ /** Filter person(s) by their modified date range. */
11558
+ modifiedDateRange?: InputMaybe<DateRangeFilter>;
11559
+ /** Filter by modified date recent timespan. For example, a timespan of one day will return person(s) modified in the last 24 hours. */
11560
+ modifiedInLast?: InputMaybe<Scalars['TimeSpan']['input']>;
11291
11561
  /** Filter person(s) by their name. */
11292
11562
  name?: InputMaybe<Scalars['String']['input']>;
11293
11563
  /** When using similarity search, the number of similar items to be returned. Defaults to 100. */
@@ -11498,6 +11768,10 @@ export type PlaceFilter = {
11498
11768
  limit?: InputMaybe<Scalars['Int']['input']>;
11499
11769
  /** Filter by observable geo-location. */
11500
11770
  location?: InputMaybe<PointFilter>;
11771
+ /** Filter place(s) by their modified date range. */
11772
+ modifiedDateRange?: InputMaybe<DateRangeFilter>;
11773
+ /** Filter by modified date recent timespan. For example, a timespan of one day will return place(s) modified in the last 24 hours. */
11774
+ modifiedInLast?: InputMaybe<Scalars['TimeSpan']['input']>;
11501
11775
  /** Filter place(s) by their name. */
11502
11776
  name?: InputMaybe<Scalars['String']['input']>;
11503
11777
  /** When using similarity search, the number of similar items to be returned. Defaults to 100. */
@@ -11799,6 +12073,10 @@ export type ProductFilter = {
11799
12073
  manufacturer?: InputMaybe<Scalars['String']['input']>;
11800
12074
  /** Filter by product model. */
11801
12075
  model?: InputMaybe<Scalars['String']['input']>;
12076
+ /** Filter product(s) by their modified date range. */
12077
+ modifiedDateRange?: InputMaybe<DateRangeFilter>;
12078
+ /** Filter by modified date recent timespan. For example, a timespan of one day will return product(s) modified in the last 24 hours. */
12079
+ modifiedInLast?: InputMaybe<Scalars['TimeSpan']['input']>;
11802
12080
  /** Filter product(s) by their name. */
11803
12081
  name?: InputMaybe<Scalars['String']['input']>;
11804
12082
  /** When using similarity search, the number of similar items to be returned. Defaults to 100. */
@@ -11990,6 +12268,10 @@ export type ProjectFilter = {
11990
12268
  id?: InputMaybe<Scalars['ID']['input']>;
11991
12269
  /** Limit the number of project(s) to be returned. Defaults to 100. */
11992
12270
  limit?: InputMaybe<Scalars['Int']['input']>;
12271
+ /** Filter project(s) by their modified date range. */
12272
+ modifiedDateRange?: InputMaybe<DateRangeFilter>;
12273
+ /** Filter by modified date recent timespan. For example, a timespan of one day will return project(s) modified in the last 24 hours. */
12274
+ modifiedInLast?: InputMaybe<Scalars['TimeSpan']['input']>;
11993
12275
  /** Filter project(s) by their name. */
11994
12276
  name?: InputMaybe<Scalars['String']['input']>;
11995
12277
  /** Skip the specified number of project(s) from the beginning of the result set. Only supported on keyword search. */
@@ -12389,6 +12671,72 @@ export type PublishingDetails = {
12389
12671
  /** The published text type. */
12390
12672
  textType?: Maybe<TextTypes>;
12391
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
+ };
12392
12740
  export type Query = {
12393
12741
  __typename?: 'Query';
12394
12742
  /** Lookup an alert given its ID. */
@@ -13531,6 +13879,10 @@ export type RepoFilter = {
13531
13879
  limit?: InputMaybe<Scalars['Int']['input']>;
13532
13880
  /** Filter by observable geo-location. */
13533
13881
  location?: InputMaybe<PointFilter>;
13882
+ /** Filter repo(s) by their modified date range. */
13883
+ modifiedDateRange?: InputMaybe<DateRangeFilter>;
13884
+ /** Filter by modified date recent timespan. For example, a timespan of one day will return repo(s) modified in the last 24 hours. */
13885
+ modifiedInLast?: InputMaybe<Scalars['TimeSpan']['input']>;
13534
13886
  /** Filter repo(s) by their name. */
13535
13887
  name?: InputMaybe<Scalars['String']['input']>;
13536
13888
  /** When using similarity search, the number of similar items to be returned. Defaults to 100. */
@@ -14181,6 +14533,10 @@ export type SoftwareFilter = {
14181
14533
  limit?: InputMaybe<Scalars['Int']['input']>;
14182
14534
  /** Filter by observable geo-location. */
14183
14535
  location?: InputMaybe<PointFilter>;
14536
+ /** Filter software(s) by their modified date range. */
14537
+ modifiedDateRange?: InputMaybe<DateRangeFilter>;
14538
+ /** Filter by modified date recent timespan. For example, a timespan of one day will return software(s) modified in the last 24 hours. */
14539
+ modifiedInLast?: InputMaybe<Scalars['TimeSpan']['input']>;
14184
14540
  /** Filter software(s) by their name. */
14185
14541
  name?: InputMaybe<Scalars['String']['input']>;
14186
14542
  /** When using similarity search, the number of similar items to be returned. Defaults to 100. */
@@ -14328,6 +14684,10 @@ export type SpecificationFilter = {
14328
14684
  id?: InputMaybe<Scalars['ID']['input']>;
14329
14685
  /** Limit the number of specification(s) to be returned. Defaults to 100. */
14330
14686
  limit?: InputMaybe<Scalars['Int']['input']>;
14687
+ /** Filter specification(s) by their modified date range. */
14688
+ modifiedDateRange?: InputMaybe<DateRangeFilter>;
14689
+ /** Filter by modified date recent timespan. For example, a timespan of one day will return specification(s) modified in the last 24 hours. */
14690
+ modifiedInLast?: InputMaybe<Scalars['TimeSpan']['input']>;
14331
14691
  /** Filter specification(s) by their name. */
14332
14692
  name?: InputMaybe<Scalars['String']['input']>;
14333
14693
  /** Skip the specified number of specification(s) from the beginning of the result set. Only supported on keyword search. */
@@ -15018,6 +15378,10 @@ export type UserFilter = {
15018
15378
  identifier?: InputMaybe<Scalars['String']['input']>;
15019
15379
  /** Limit the number of user(s) to be returned. Defaults to 100. */
15020
15380
  limit?: InputMaybe<Scalars['Int']['input']>;
15381
+ /** Filter user(s) by their modified date range. */
15382
+ modifiedDateRange?: InputMaybe<DateRangeFilter>;
15383
+ /** Filter by modified date recent timespan. For example, a timespan of one day will return user(s) modified in the last 24 hours. */
15384
+ modifiedInLast?: InputMaybe<Scalars['TimeSpan']['input']>;
15021
15385
  /** Filter user(s) by their name. */
15022
15386
  name?: InputMaybe<Scalars['String']['input']>;
15023
15387
  /** Skip the specified number of user(s) from the beginning of the result set. Only supported on keyword search. */
@@ -15158,6 +15522,10 @@ export type ViewFilter = {
15158
15522
  id?: InputMaybe<Scalars['ID']['input']>;
15159
15523
  /** Limit the number of view(s) to be returned. Defaults to 100. */
15160
15524
  limit?: InputMaybe<Scalars['Int']['input']>;
15525
+ /** Filter view(s) by their modified date range. */
15526
+ modifiedDateRange?: InputMaybe<DateRangeFilter>;
15527
+ /** Filter by modified date recent timespan. For example, a timespan of one day will return view(s) modified in the last 24 hours. */
15528
+ modifiedInLast?: InputMaybe<Scalars['TimeSpan']['input']>;
15161
15529
  /** Filter view(s) by their name. */
15162
15530
  name?: InputMaybe<Scalars['String']['input']>;
15163
15531
  /** Skip the specified number of view(s) from the beginning of the result set. Only supported on keyword search. */
@@ -15376,6 +15744,10 @@ export type WorkflowFilter = {
15376
15744
  id?: InputMaybe<Scalars['ID']['input']>;
15377
15745
  /** Limit the number of workflow(s) to be returned. Defaults to 100. */
15378
15746
  limit?: InputMaybe<Scalars['Int']['input']>;
15747
+ /** Filter workflow(s) by their modified date range. */
15748
+ modifiedDateRange?: InputMaybe<DateRangeFilter>;
15749
+ /** Filter by modified date recent timespan. For example, a timespan of one day will return workflow(s) modified in the last 24 hours. */
15750
+ modifiedInLast?: InputMaybe<Scalars['TimeSpan']['input']>;
15379
15751
  /** Filter workflow(s) by their name. */
15380
15752
  name?: InputMaybe<Scalars['String']['input']>;
15381
15753
  /** Skip the specified number of workflow(s) from the beginning of the result set. Only supported on keyword search. */
@@ -23508,6 +23880,36 @@ export type GetFeedQuery = {
23508
23880
  type: TrelloTypes;
23509
23881
  } | null;
23510
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;
23511
23913
  calendar?: {
23512
23914
  __typename?: 'CalendarFeedProperties';
23513
23915
  type: FeedServiceTypes;
@@ -23920,6 +24322,36 @@ export type QueryFeedsQuery = {
23920
24322
  type: TrelloTypes;
23921
24323
  } | null;
23922
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;
23923
24355
  calendar?: {
23924
24356
  __typename?: 'CalendarFeedProperties';
23925
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.20251021001",
3
+ "version": "1.0.20251103001",
4
4
  "description": "Graphlit API Client for TypeScript",
5
5
  "type": "module",
6
6
  "main": "./dist/client.js",