graphlit-client 1.0.20251103001 → 1.0.20251103003

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
@@ -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
@@ -1781,7 +1781,7 @@ export type CommitFeedProperties = {
1781
1781
  /** Represents commit feed properties. */
1782
1782
  export type CommitFeedPropertiesInput = {
1783
1783
  /** GitHub Commits properties. */
1784
- github?: InputMaybe<GitHubIssuesFeedPropertiesInput>;
1784
+ github?: InputMaybe<GitHubCommitsFeedPropertiesInput>;
1785
1785
  /** The limit of items to be read from feed, defaults to 100. */
1786
1786
  readLimit?: InputMaybe<Scalars['Int']['input']>;
1787
1787
  /** Feed service type. */
@@ -1790,7 +1790,7 @@ export type CommitFeedPropertiesInput = {
1790
1790
  /** Represents commit feed properties. */
1791
1791
  export type CommitFeedPropertiesUpdateInput = {
1792
1792
  /** GitHub Commits properties. */
1793
- github?: InputMaybe<GitHubIssuesFeedPropertiesUpdateInput>;
1793
+ github?: InputMaybe<GitHubCommitsFeedPropertiesUpdateInput>;
1794
1794
  /** The limit of items to be read from feed, defaults to 100. */
1795
1795
  readLimit?: InputMaybe<Scalars['Int']['input']>;
1796
1796
  };
@@ -4960,6 +4960,44 @@ export type GitHubCommitsFeedProperties = {
4960
4960
  /** GitHub Enterprise URI, optional. */
4961
4961
  uri?: Maybe<Scalars['URL']['output']>;
4962
4962
  };
4963
+ /** Represents GitHub Commits feed properties. */
4964
+ export type GitHubCommitsFeedPropertiesInput = {
4965
+ /** GitHub Commits authentication type, defaults to PersonalAccessToken. */
4966
+ authenticationType?: InputMaybe<GitHubCommitAuthenticationTypes>;
4967
+ /** Authentication identifier, for Connector authentication type. */
4968
+ authorizationId?: InputMaybe<Scalars['String']['input']>;
4969
+ /** GitHub repository branch, defaults to default branch. */
4970
+ branch?: InputMaybe<Scalars['String']['input']>;
4971
+ /** GitHub personal access token, requires PersonalAccessToken authentication type. */
4972
+ personalAccessToken?: InputMaybe<Scalars['String']['input']>;
4973
+ /** GitHub refresh token, requires OAuth authentication type. */
4974
+ refreshToken?: InputMaybe<Scalars['String']['input']>;
4975
+ /** GitHub repository name. */
4976
+ repositoryName: Scalars['String']['input'];
4977
+ /** GitHub repository owner. */
4978
+ repositoryOwner: Scalars['String']['input'];
4979
+ /** GitHub Enterprise URI, optional. */
4980
+ uri?: InputMaybe<Scalars['URL']['input']>;
4981
+ };
4982
+ /** Represents GitHub Commits feed properties. */
4983
+ export type GitHubCommitsFeedPropertiesUpdateInput = {
4984
+ /** GitHub Commits authentication type. */
4985
+ authenticationType?: InputMaybe<GitHubCommitAuthenticationTypes>;
4986
+ /** Authentication identifier, for Connector authentication type. */
4987
+ authorizationId?: InputMaybe<Scalars['String']['input']>;
4988
+ /** GitHub repository branch. */
4989
+ branch?: InputMaybe<Scalars['String']['input']>;
4990
+ /** GitHub personal access token, requires PersonalAccessToken authentication type. */
4991
+ personalAccessToken?: InputMaybe<Scalars['String']['input']>;
4992
+ /** GitHub refresh token, requires OAuth authentication type. */
4993
+ refreshToken?: InputMaybe<Scalars['String']['input']>;
4994
+ /** GitHub repository name. */
4995
+ repositoryName?: InputMaybe<Scalars['String']['input']>;
4996
+ /** GitHub repository owner. */
4997
+ repositoryOwner?: InputMaybe<Scalars['String']['input']>;
4998
+ /** GitHub Enterprise URI. */
4999
+ uri?: InputMaybe<Scalars['URL']['input']>;
5000
+ };
4963
5001
  /** Represents GitHub properties. */
4964
5002
  export type GitHubFeedProperties = {
4965
5003
  __typename?: 'GitHubFeedProperties';
@@ -17679,6 +17717,41 @@ export type GetContentQuery = {
17679
17717
  type?: string | null;
17680
17718
  labels?: Array<string | null> | null;
17681
17719
  } | null;
17720
+ commit?: {
17721
+ __typename?: 'CommitMetadata';
17722
+ sha?: string | null;
17723
+ message?: string | null;
17724
+ project?: string | null;
17725
+ team?: string | null;
17726
+ branch?: string | null;
17727
+ parentShas?: Array<string | null> | null;
17728
+ filesChanged?: number | null;
17729
+ additions?: number | null;
17730
+ deletions?: number | null;
17731
+ pullRequestNumber?: string | null;
17732
+ authorDate?: any | null;
17733
+ committerDate?: any | null;
17734
+ labels?: Array<string | null> | null;
17735
+ } | null;
17736
+ pullRequest?: {
17737
+ __typename?: 'PullRequestMetadata';
17738
+ identifier?: string | null;
17739
+ title?: string | null;
17740
+ project?: string | null;
17741
+ team?: string | null;
17742
+ status?: string | null;
17743
+ type?: string | null;
17744
+ baseBranch?: string | null;
17745
+ headBranch?: string | null;
17746
+ isDraft?: boolean | null;
17747
+ isMergeable?: boolean | null;
17748
+ mergeCommitSha?: string | null;
17749
+ mergedAt?: any | null;
17750
+ filesChanged?: number | null;
17751
+ additions?: number | null;
17752
+ deletions?: number | null;
17753
+ labels?: Array<string | null> | null;
17754
+ } | null;
17682
17755
  message?: {
17683
17756
  __typename?: 'MessageMetadata';
17684
17757
  identifier?: string | null;
@@ -18546,6 +18619,41 @@ export type LookupContentsQuery = {
18546
18619
  type?: string | null;
18547
18620
  labels?: Array<string | null> | null;
18548
18621
  } | null;
18622
+ commit?: {
18623
+ __typename?: 'CommitMetadata';
18624
+ sha?: string | null;
18625
+ message?: string | null;
18626
+ project?: string | null;
18627
+ team?: string | null;
18628
+ branch?: string | null;
18629
+ parentShas?: Array<string | null> | null;
18630
+ filesChanged?: number | null;
18631
+ additions?: number | null;
18632
+ deletions?: number | null;
18633
+ pullRequestNumber?: string | null;
18634
+ authorDate?: any | null;
18635
+ committerDate?: any | null;
18636
+ labels?: Array<string | null> | null;
18637
+ } | null;
18638
+ pullRequest?: {
18639
+ __typename?: 'PullRequestMetadata';
18640
+ identifier?: string | null;
18641
+ title?: string | null;
18642
+ project?: string | null;
18643
+ team?: string | null;
18644
+ status?: string | null;
18645
+ type?: string | null;
18646
+ baseBranch?: string | null;
18647
+ headBranch?: string | null;
18648
+ isDraft?: boolean | null;
18649
+ isMergeable?: boolean | null;
18650
+ mergeCommitSha?: string | null;
18651
+ mergedAt?: any | null;
18652
+ filesChanged?: number | null;
18653
+ additions?: number | null;
18654
+ deletions?: number | null;
18655
+ labels?: Array<string | null> | null;
18656
+ } | null;
18549
18657
  message?: {
18550
18658
  __typename?: 'MessageMetadata';
18551
18659
  identifier?: string | null;
@@ -19213,6 +19321,41 @@ export type QueryContentsQuery = {
19213
19321
  type?: string | null;
19214
19322
  labels?: Array<string | null> | null;
19215
19323
  } | null;
19324
+ commit?: {
19325
+ __typename?: 'CommitMetadata';
19326
+ sha?: string | null;
19327
+ message?: string | null;
19328
+ project?: string | null;
19329
+ team?: string | null;
19330
+ branch?: string | null;
19331
+ parentShas?: Array<string | null> | null;
19332
+ filesChanged?: number | null;
19333
+ additions?: number | null;
19334
+ deletions?: number | null;
19335
+ pullRequestNumber?: string | null;
19336
+ authorDate?: any | null;
19337
+ committerDate?: any | null;
19338
+ labels?: Array<string | null> | null;
19339
+ } | null;
19340
+ pullRequest?: {
19341
+ __typename?: 'PullRequestMetadata';
19342
+ identifier?: string | null;
19343
+ title?: string | null;
19344
+ project?: string | null;
19345
+ team?: string | null;
19346
+ status?: string | null;
19347
+ type?: string | null;
19348
+ baseBranch?: string | null;
19349
+ headBranch?: string | null;
19350
+ isDraft?: boolean | null;
19351
+ isMergeable?: boolean | null;
19352
+ mergeCommitSha?: string | null;
19353
+ mergedAt?: any | null;
19354
+ filesChanged?: number | null;
19355
+ additions?: number | null;
19356
+ deletions?: number | null;
19357
+ labels?: Array<string | null> | null;
19358
+ } | null;
19216
19359
  message?: {
19217
19360
  __typename?: 'MessageMetadata';
19218
19361
  identifier?: string | null;
@@ -19609,6 +19752,41 @@ export type QueryContentsObservationsQuery = {
19609
19752
  type?: string | null;
19610
19753
  labels?: Array<string | null> | null;
19611
19754
  } | null;
19755
+ commit?: {
19756
+ __typename?: 'CommitMetadata';
19757
+ sha?: string | null;
19758
+ message?: string | null;
19759
+ project?: string | null;
19760
+ team?: string | null;
19761
+ branch?: string | null;
19762
+ parentShas?: Array<string | null> | null;
19763
+ filesChanged?: number | null;
19764
+ additions?: number | null;
19765
+ deletions?: number | null;
19766
+ pullRequestNumber?: string | null;
19767
+ authorDate?: any | null;
19768
+ committerDate?: any | null;
19769
+ labels?: Array<string | null> | null;
19770
+ } | null;
19771
+ pullRequest?: {
19772
+ __typename?: 'PullRequestMetadata';
19773
+ identifier?: string | null;
19774
+ title?: string | null;
19775
+ project?: string | null;
19776
+ team?: string | null;
19777
+ status?: string | null;
19778
+ type?: string | null;
19779
+ baseBranch?: string | null;
19780
+ headBranch?: string | null;
19781
+ isDraft?: boolean | null;
19782
+ isMergeable?: boolean | null;
19783
+ mergeCommitSha?: string | null;
19784
+ mergedAt?: any | null;
19785
+ filesChanged?: number | null;
19786
+ additions?: number | null;
19787
+ deletions?: number | null;
19788
+ labels?: Array<string | null> | null;
19789
+ } | null;
19612
19790
  message?: {
19613
19791
  __typename?: 'MessageMetadata';
19614
19792
  identifier?: string | null;
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "graphlit-client",
3
- "version": "1.0.20251103001",
3
+ "version": "1.0.20251103003",
4
4
  "description": "Graphlit API Client for TypeScript",
5
5
  "type": "module",
6
6
  "main": "./dist/client.js",