graphlit-client 1.0.20251103004 → 1.0.20251103005

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.
@@ -1427,6 +1427,7 @@ export const GetContent = gql `
1427
1427
  pullRequest {
1428
1428
  identifier
1429
1429
  title
1430
+ description
1430
1431
  project
1431
1432
  team
1432
1433
  status
@@ -2254,6 +2255,7 @@ export const LookupContents = gql `
2254
2255
  pullRequest {
2255
2256
  identifier
2256
2257
  title
2258
+ description
2257
2259
  project
2258
2260
  team
2259
2261
  status
@@ -2918,6 +2920,7 @@ export const QueryContents = gql `
2918
2920
  pullRequest {
2919
2921
  identifier
2920
2922
  title
2923
+ description
2921
2924
  project
2922
2925
  team
2923
2926
  status
@@ -3318,6 +3321,7 @@ export const QueryContentsObservations = gql `
3318
3321
  pullRequest {
3319
3322
  identifier
3320
3323
  title
3324
+ description
3321
3325
  project
3322
3326
  team
3323
3327
  status
@@ -12752,6 +12752,8 @@ export type PullRequestMetadata = {
12752
12752
  baseBranch?: Maybe<Scalars['String']['output']>;
12753
12753
  /** The number of lines deleted. */
12754
12754
  deletions?: Maybe<Scalars['Int']['output']>;
12755
+ /** The pull request description. */
12756
+ description?: Maybe<Scalars['String']['output']>;
12755
12757
  /** The number of files changed. */
12756
12758
  filesChanged?: Maybe<Scalars['Int']['output']>;
12757
12759
  /** The pull request head branch. */
@@ -17760,6 +17762,7 @@ export type GetContentQuery = {
17760
17762
  __typename?: 'PullRequestMetadata';
17761
17763
  identifier?: string | null;
17762
17764
  title?: string | null;
17765
+ description?: string | null;
17763
17766
  project?: string | null;
17764
17767
  team?: string | null;
17765
17768
  status?: string | null;
@@ -18692,6 +18695,7 @@ export type LookupContentsQuery = {
18692
18695
  __typename?: 'PullRequestMetadata';
18693
18696
  identifier?: string | null;
18694
18697
  title?: string | null;
18698
+ description?: string | null;
18695
18699
  project?: string | null;
18696
18700
  team?: string | null;
18697
18701
  status?: string | null;
@@ -19424,6 +19428,7 @@ export type QueryContentsQuery = {
19424
19428
  __typename?: 'PullRequestMetadata';
19425
19429
  identifier?: string | null;
19426
19430
  title?: string | null;
19431
+ description?: string | null;
19427
19432
  project?: string | null;
19428
19433
  team?: string | null;
19429
19434
  status?: string | null;
@@ -19885,6 +19890,7 @@ export type QueryContentsObservationsQuery = {
19885
19890
  __typename?: 'PullRequestMetadata';
19886
19891
  identifier?: string | null;
19887
19892
  title?: string | null;
19893
+ description?: string | null;
19888
19894
  project?: string | null;
19889
19895
  team?: string | null;
19890
19896
  status?: string | null;
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "graphlit-client",
3
- "version": "1.0.20251103004",
3
+ "version": "1.0.20251103005",
4
4
  "description": "Graphlit API Client for TypeScript",
5
5
  "type": "module",
6
6
  "main": "./dist/client.js",