graphlit-client 1.0.20251103001 → 1.0.20251103002

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
@@ -1396,6 +1396,39 @@ export const GetContent = gql `
1396
1396
  type
1397
1397
  labels
1398
1398
  }
1399
+ commit {
1400
+ sha
1401
+ message
1402
+ project
1403
+ team
1404
+ branch
1405
+ parentShas
1406
+ filesChanged
1407
+ additions
1408
+ deletions
1409
+ pullRequestNumber
1410
+ authorDate
1411
+ committerDate
1412
+ labels
1413
+ }
1414
+ pullRequest {
1415
+ identifier
1416
+ title
1417
+ project
1418
+ team
1419
+ status
1420
+ type
1421
+ baseBranch
1422
+ headBranch
1423
+ isDraft
1424
+ isMergeable
1425
+ mergeCommitSha
1426
+ mergedAt
1427
+ filesChanged
1428
+ additions
1429
+ deletions
1430
+ labels
1431
+ }
1399
1432
  message {
1400
1433
  identifier
1401
1434
  conversationIdentifier
@@ -2164,6 +2197,39 @@ export const LookupContents = gql `
2164
2197
  type
2165
2198
  labels
2166
2199
  }
2200
+ commit {
2201
+ sha
2202
+ message
2203
+ project
2204
+ team
2205
+ branch
2206
+ parentShas
2207
+ filesChanged
2208
+ additions
2209
+ deletions
2210
+ pullRequestNumber
2211
+ authorDate
2212
+ committerDate
2213
+ labels
2214
+ }
2215
+ pullRequest {
2216
+ identifier
2217
+ title
2218
+ project
2219
+ team
2220
+ status
2221
+ type
2222
+ baseBranch
2223
+ headBranch
2224
+ isDraft
2225
+ isMergeable
2226
+ mergeCommitSha
2227
+ mergedAt
2228
+ filesChanged
2229
+ additions
2230
+ deletions
2231
+ labels
2232
+ }
2167
2233
  message {
2168
2234
  identifier
2169
2235
  conversationIdentifier
@@ -2769,6 +2835,39 @@ export const QueryContents = gql `
2769
2835
  type
2770
2836
  labels
2771
2837
  }
2838
+ commit {
2839
+ sha
2840
+ message
2841
+ project
2842
+ team
2843
+ branch
2844
+ parentShas
2845
+ filesChanged
2846
+ additions
2847
+ deletions
2848
+ pullRequestNumber
2849
+ authorDate
2850
+ committerDate
2851
+ labels
2852
+ }
2853
+ pullRequest {
2854
+ identifier
2855
+ title
2856
+ project
2857
+ team
2858
+ status
2859
+ type
2860
+ baseBranch
2861
+ headBranch
2862
+ isDraft
2863
+ isMergeable
2864
+ mergeCommitSha
2865
+ mergedAt
2866
+ filesChanged
2867
+ additions
2868
+ deletions
2869
+ labels
2870
+ }
2772
2871
  message {
2773
2872
  identifier
2774
2873
  conversationIdentifier
@@ -3110,6 +3209,39 @@ export const QueryContentsObservations = gql `
3110
3209
  type
3111
3210
  labels
3112
3211
  }
3212
+ commit {
3213
+ sha
3214
+ message
3215
+ project
3216
+ team
3217
+ branch
3218
+ parentShas
3219
+ filesChanged
3220
+ additions
3221
+ deletions
3222
+ pullRequestNumber
3223
+ authorDate
3224
+ committerDate
3225
+ labels
3226
+ }
3227
+ pullRequest {
3228
+ identifier
3229
+ title
3230
+ project
3231
+ team
3232
+ status
3233
+ type
3234
+ baseBranch
3235
+ headBranch
3236
+ isDraft
3237
+ isMergeable
3238
+ mergeCommitSha
3239
+ mergedAt
3240
+ filesChanged
3241
+ additions
3242
+ deletions
3243
+ labels
3244
+ }
3113
3245
  message {
3114
3246
  identifier
3115
3247
  conversationIdentifier
@@ -17679,6 +17679,41 @@ export type GetContentQuery = {
17679
17679
  type?: string | null;
17680
17680
  labels?: Array<string | null> | null;
17681
17681
  } | null;
17682
+ commit?: {
17683
+ __typename?: 'CommitMetadata';
17684
+ sha?: string | null;
17685
+ message?: string | null;
17686
+ project?: string | null;
17687
+ team?: string | null;
17688
+ branch?: string | null;
17689
+ parentShas?: Array<string | null> | null;
17690
+ filesChanged?: number | null;
17691
+ additions?: number | null;
17692
+ deletions?: number | null;
17693
+ pullRequestNumber?: string | null;
17694
+ authorDate?: any | null;
17695
+ committerDate?: any | null;
17696
+ labels?: Array<string | null> | null;
17697
+ } | null;
17698
+ pullRequest?: {
17699
+ __typename?: 'PullRequestMetadata';
17700
+ identifier?: string | null;
17701
+ title?: string | null;
17702
+ project?: string | null;
17703
+ team?: string | null;
17704
+ status?: string | null;
17705
+ type?: string | null;
17706
+ baseBranch?: string | null;
17707
+ headBranch?: string | null;
17708
+ isDraft?: boolean | null;
17709
+ isMergeable?: boolean | null;
17710
+ mergeCommitSha?: string | null;
17711
+ mergedAt?: any | null;
17712
+ filesChanged?: number | null;
17713
+ additions?: number | null;
17714
+ deletions?: number | null;
17715
+ labels?: Array<string | null> | null;
17716
+ } | null;
17682
17717
  message?: {
17683
17718
  __typename?: 'MessageMetadata';
17684
17719
  identifier?: string | null;
@@ -18546,6 +18581,41 @@ export type LookupContentsQuery = {
18546
18581
  type?: string | null;
18547
18582
  labels?: Array<string | null> | null;
18548
18583
  } | null;
18584
+ commit?: {
18585
+ __typename?: 'CommitMetadata';
18586
+ sha?: string | null;
18587
+ message?: string | null;
18588
+ project?: string | null;
18589
+ team?: string | null;
18590
+ branch?: string | null;
18591
+ parentShas?: Array<string | null> | null;
18592
+ filesChanged?: number | null;
18593
+ additions?: number | null;
18594
+ deletions?: number | null;
18595
+ pullRequestNumber?: string | null;
18596
+ authorDate?: any | null;
18597
+ committerDate?: any | null;
18598
+ labels?: Array<string | null> | null;
18599
+ } | null;
18600
+ pullRequest?: {
18601
+ __typename?: 'PullRequestMetadata';
18602
+ identifier?: string | null;
18603
+ title?: string | null;
18604
+ project?: string | null;
18605
+ team?: string | null;
18606
+ status?: string | null;
18607
+ type?: string | null;
18608
+ baseBranch?: string | null;
18609
+ headBranch?: string | null;
18610
+ isDraft?: boolean | null;
18611
+ isMergeable?: boolean | null;
18612
+ mergeCommitSha?: string | null;
18613
+ mergedAt?: any | null;
18614
+ filesChanged?: number | null;
18615
+ additions?: number | null;
18616
+ deletions?: number | null;
18617
+ labels?: Array<string | null> | null;
18618
+ } | null;
18549
18619
  message?: {
18550
18620
  __typename?: 'MessageMetadata';
18551
18621
  identifier?: string | null;
@@ -19213,6 +19283,41 @@ export type QueryContentsQuery = {
19213
19283
  type?: string | null;
19214
19284
  labels?: Array<string | null> | null;
19215
19285
  } | null;
19286
+ commit?: {
19287
+ __typename?: 'CommitMetadata';
19288
+ sha?: string | null;
19289
+ message?: string | null;
19290
+ project?: string | null;
19291
+ team?: string | null;
19292
+ branch?: string | null;
19293
+ parentShas?: Array<string | null> | null;
19294
+ filesChanged?: number | null;
19295
+ additions?: number | null;
19296
+ deletions?: number | null;
19297
+ pullRequestNumber?: string | null;
19298
+ authorDate?: any | null;
19299
+ committerDate?: any | null;
19300
+ labels?: Array<string | null> | null;
19301
+ } | null;
19302
+ pullRequest?: {
19303
+ __typename?: 'PullRequestMetadata';
19304
+ identifier?: string | null;
19305
+ title?: string | null;
19306
+ project?: string | null;
19307
+ team?: string | null;
19308
+ status?: string | null;
19309
+ type?: string | null;
19310
+ baseBranch?: string | null;
19311
+ headBranch?: string | null;
19312
+ isDraft?: boolean | null;
19313
+ isMergeable?: boolean | null;
19314
+ mergeCommitSha?: string | null;
19315
+ mergedAt?: any | null;
19316
+ filesChanged?: number | null;
19317
+ additions?: number | null;
19318
+ deletions?: number | null;
19319
+ labels?: Array<string | null> | null;
19320
+ } | null;
19216
19321
  message?: {
19217
19322
  __typename?: 'MessageMetadata';
19218
19323
  identifier?: string | null;
@@ -19609,6 +19714,41 @@ export type QueryContentsObservationsQuery = {
19609
19714
  type?: string | null;
19610
19715
  labels?: Array<string | null> | null;
19611
19716
  } | null;
19717
+ commit?: {
19718
+ __typename?: 'CommitMetadata';
19719
+ sha?: string | null;
19720
+ message?: string | null;
19721
+ project?: string | null;
19722
+ team?: string | null;
19723
+ branch?: string | null;
19724
+ parentShas?: Array<string | null> | null;
19725
+ filesChanged?: number | null;
19726
+ additions?: number | null;
19727
+ deletions?: number | null;
19728
+ pullRequestNumber?: string | null;
19729
+ authorDate?: any | null;
19730
+ committerDate?: any | null;
19731
+ labels?: Array<string | null> | null;
19732
+ } | null;
19733
+ pullRequest?: {
19734
+ __typename?: 'PullRequestMetadata';
19735
+ identifier?: string | null;
19736
+ title?: string | null;
19737
+ project?: string | null;
19738
+ team?: string | null;
19739
+ status?: string | null;
19740
+ type?: string | null;
19741
+ baseBranch?: string | null;
19742
+ headBranch?: string | null;
19743
+ isDraft?: boolean | null;
19744
+ isMergeable?: boolean | null;
19745
+ mergeCommitSha?: string | null;
19746
+ mergedAt?: any | null;
19747
+ filesChanged?: number | null;
19748
+ additions?: number | null;
19749
+ deletions?: number | null;
19750
+ labels?: Array<string | null> | null;
19751
+ } | null;
19612
19752
  message?: {
19613
19753
  __typename?: 'MessageMetadata';
19614
19754
  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.20251103002",
4
4
  "description": "Graphlit API Client for TypeScript",
5
5
  "type": "module",
6
6
  "main": "./dist/client.js",