graphlit-client 1.0.20251220001 → 1.0.20251220002

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.
@@ -7471,6 +7471,8 @@ export const GetFeed = gql `
7471
7471
  uri
7472
7472
  repositoryOwner
7473
7473
  repositoryName
7474
+ clientId
7475
+ clientSecret
7474
7476
  refreshToken
7475
7477
  personalAccessToken
7476
7478
  connector {
@@ -7917,6 +7919,8 @@ export const QueryFeeds = gql `
7917
7919
  uri
7918
7920
  repositoryOwner
7919
7921
  repositoryName
7922
+ clientId
7923
+ clientSecret
7920
7924
  refreshToken
7921
7925
  personalAccessToken
7922
7926
  connector {
@@ -13445,17 +13449,12 @@ export const LookupUsage = gql `
13445
13449
  modelService
13446
13450
  modelName
13447
13451
  processorName
13448
- prompt
13449
13452
  promptTokens
13450
- completion
13451
13453
  completionTokens
13452
13454
  tokens
13453
13455
  count
13454
13456
  operation
13455
13457
  operationType
13456
- request
13457
- variables
13458
- response
13459
13458
  }
13460
13459
  }
13461
13460
  `;
@@ -13533,17 +13532,12 @@ export const QueryUsage = gql `
13533
13532
  modelService
13534
13533
  modelName
13535
13534
  processorName
13536
- prompt
13537
13535
  promptTokens
13538
- completion
13539
13536
  completionTokens
13540
13537
  tokens
13541
13538
  count
13542
13539
  operation
13543
13540
  operationType
13544
- request
13545
- variables
13546
- response
13547
13541
  }
13548
13542
  }
13549
13543
  `;
@@ -5406,6 +5406,10 @@ export type GitHubCommitsFeedProperties = {
5406
5406
  authorizationId?: Maybe<Scalars['ID']['output']>;
5407
5407
  /** GitHub repository branch, defaults to default branch. */
5408
5408
  branch?: Maybe<Scalars['String']['output']>;
5409
+ /** GitHub OAuth2 client identifier, requires OAuth authentication type. */
5410
+ clientId?: Maybe<Scalars['String']['output']>;
5411
+ /** GitHub OAuth2 client secret, requires OAuth authentication type. */
5412
+ clientSecret?: Maybe<Scalars['String']['output']>;
5409
5413
  /** Authentication connector reference. */
5410
5414
  connector?: Maybe<EntityReference>;
5411
5415
  /** GitHub personal access token. Either refresh token or personal access token is required to avoid GitHub rate-limiting. */
@@ -5425,6 +5429,10 @@ export type GitHubCommitsFeedPropertiesInput = {
5425
5429
  authenticationType?: InputMaybe<GitHubCommitAuthenticationTypes>;
5426
5430
  /** GitHub repository branch, defaults to default branch. */
5427
5431
  branch?: InputMaybe<Scalars['String']['input']>;
5432
+ /** GitHub OAuth2 client identifier, requires OAuth authentication type. */
5433
+ clientId?: InputMaybe<Scalars['String']['input']>;
5434
+ /** GitHub OAuth2 client secret, requires OAuth authentication type. */
5435
+ clientSecret?: InputMaybe<Scalars['String']['input']>;
5428
5436
  /** The authentication connector reference. */
5429
5437
  connector?: InputMaybe<EntityReferenceInput>;
5430
5438
  /** GitHub personal access token, requires PersonalAccessToken authentication type. */
@@ -5444,6 +5452,10 @@ export type GitHubCommitsFeedPropertiesUpdateInput = {
5444
5452
  authenticationType?: InputMaybe<GitHubCommitAuthenticationTypes>;
5445
5453
  /** GitHub repository branch. */
5446
5454
  branch?: InputMaybe<Scalars['String']['input']>;
5455
+ /** GitHub OAuth2 client identifier, requires OAuth authentication type. */
5456
+ clientId?: InputMaybe<Scalars['String']['input']>;
5457
+ /** GitHub OAuth2 client secret, requires OAuth authentication type. */
5458
+ clientSecret?: InputMaybe<Scalars['String']['input']>;
5447
5459
  /** The authentication connector reference. */
5448
5460
  connector?: InputMaybe<EntityReferenceInput>;
5449
5461
  /** GitHub personal access token, requires PersonalAccessToken authentication type. */
@@ -5460,13 +5472,17 @@ export type GitHubCommitsFeedPropertiesUpdateInput = {
5460
5472
  /** Represents GitHub properties. */
5461
5473
  export type GitHubFeedProperties = {
5462
5474
  __typename?: 'GitHubFeedProperties';
5463
- /** OneDrive authentication type, defaults to User. */
5475
+ /** GitHub authentication type, defaults to PersonalAccessToken. */
5464
5476
  authenticationType?: Maybe<GitHubAuthenticationTypes>;
5465
5477
  /**
5466
5478
  * Arcade authorization identifier.
5467
5479
  * @deprecated Use Connector instead.
5468
5480
  */
5469
5481
  authorizationId?: Maybe<Scalars['ID']['output']>;
5482
+ /** GitHub OAuth2 client identifier, requires OAuth authentication type. */
5483
+ clientId?: Maybe<Scalars['String']['output']>;
5484
+ /** GitHub OAuth2 client secret, requires OAuth authentication type. */
5485
+ clientSecret?: Maybe<Scalars['String']['output']>;
5470
5486
  /** Authentication connector reference. */
5471
5487
  connector?: Maybe<EntityReference>;
5472
5488
  /** GitHub personal access token. Either refresh token or personal access token is required to avoid GitHub rate-limiting. */
@@ -5484,6 +5500,10 @@ export type GitHubFeedProperties = {
5484
5500
  export type GitHubFeedPropertiesInput = {
5485
5501
  /** GitHub authentication type, defaults to PersonalAccessToken. */
5486
5502
  authenticationType?: InputMaybe<GitHubAuthenticationTypes>;
5503
+ /** GitHub OAuth2 client identifier, requires OAuth authentication type. */
5504
+ clientId?: InputMaybe<Scalars['String']['input']>;
5505
+ /** GitHub OAuth2 client secret, requires OAuth authentication type. */
5506
+ clientSecret?: InputMaybe<Scalars['String']['input']>;
5487
5507
  /** The authentication connector reference. */
5488
5508
  connector?: InputMaybe<EntityReferenceInput>;
5489
5509
  /** GitHub personal access token, requires PersonalAccessToken authentication type. */
@@ -5501,6 +5521,10 @@ export type GitHubFeedPropertiesInput = {
5501
5521
  export type GitHubFeedPropertiesUpdateInput = {
5502
5522
  /** GitHub authentication type, defaults to PersonalAccessToken. */
5503
5523
  authenticationType?: InputMaybe<GitHubAuthenticationTypes>;
5524
+ /** GitHub OAuth2 client identifier, requires OAuth authentication type. */
5525
+ clientId?: InputMaybe<Scalars['String']['input']>;
5526
+ /** GitHub OAuth2 client secret, requires OAuth authentication type. */
5527
+ clientSecret?: InputMaybe<Scalars['String']['input']>;
5504
5528
  /** The authentication connector reference. */
5505
5529
  connector?: InputMaybe<EntityReferenceInput>;
5506
5530
  /** GitHub personal access token, requires PersonalAccessToken authentication type. */
@@ -5529,6 +5553,10 @@ export type GitHubIssuesFeedProperties = {
5529
5553
  * @deprecated Use Connector instead.
5530
5554
  */
5531
5555
  authorizationId?: Maybe<Scalars['ID']['output']>;
5556
+ /** GitHub OAuth2 client identifier, requires OAuth authentication type. */
5557
+ clientId?: Maybe<Scalars['String']['output']>;
5558
+ /** GitHub OAuth2 client secret, requires OAuth authentication type. */
5559
+ clientSecret?: Maybe<Scalars['String']['output']>;
5532
5560
  /** Authentication connector reference. */
5533
5561
  connector?: Maybe<EntityReference>;
5534
5562
  /** GitHub personal access token. Either refresh token or personal access token is required to avoid GitHub rate-limiting. */
@@ -5546,6 +5574,10 @@ export type GitHubIssuesFeedProperties = {
5546
5574
  export type GitHubIssuesFeedPropertiesInput = {
5547
5575
  /** GitHub Issues authentication type, defaults to PersonalAccessToken. */
5548
5576
  authenticationType?: InputMaybe<GitHubIssueAuthenticationTypes>;
5577
+ /** GitHub OAuth2 client identifier, requires OAuth authentication type. */
5578
+ clientId?: InputMaybe<Scalars['String']['input']>;
5579
+ /** GitHub OAuth2 client secret, requires OAuth authentication type. */
5580
+ clientSecret?: InputMaybe<Scalars['String']['input']>;
5549
5581
  /** The authentication connector reference. */
5550
5582
  connector?: InputMaybe<EntityReferenceInput>;
5551
5583
  /** GitHub personal access token, requires PersonalAccessToken authentication type. */
@@ -5561,6 +5593,10 @@ export type GitHubIssuesFeedPropertiesInput = {
5561
5593
  };
5562
5594
  /** Represents GitHub Issues feed properties. */
5563
5595
  export type GitHubIssuesFeedPropertiesUpdateInput = {
5596
+ /** GitHub OAuth2 client identifier, requires OAuth authentication type. */
5597
+ clientId?: InputMaybe<Scalars['String']['input']>;
5598
+ /** GitHub OAuth2 client secret, requires OAuth authentication type. */
5599
+ clientSecret?: InputMaybe<Scalars['String']['input']>;
5564
5600
  /** GitHub personal access token. Either refresh token or personal access token is required to avoid GitHub rate-limiting. */
5565
5601
  personalAccessToken?: InputMaybe<Scalars['String']['input']>;
5566
5602
  /** GitHub refresh token. Either refresh token or personal access token is required to avoid GitHub rate-limiting. */
@@ -5587,6 +5623,10 @@ export type GitHubPullRequestsFeedProperties = {
5587
5623
  * @deprecated Use Connector instead.
5588
5624
  */
5589
5625
  authorizationId?: Maybe<Scalars['ID']['output']>;
5626
+ /** GitHub OAuth2 client identifier, requires OAuth authentication type. */
5627
+ clientId?: Maybe<Scalars['String']['output']>;
5628
+ /** GitHub OAuth2 client secret, requires OAuth authentication type. */
5629
+ clientSecret?: Maybe<Scalars['String']['output']>;
5590
5630
  /** Authentication connector reference. */
5591
5631
  connector?: Maybe<EntityReference>;
5592
5632
  /** GitHub personal access token. Either refresh token or personal access token is required to avoid GitHub rate-limiting. */
@@ -5604,6 +5644,10 @@ export type GitHubPullRequestsFeedProperties = {
5604
5644
  export type GitHubPullRequestsFeedPropertiesInput = {
5605
5645
  /** GitHub Pull Requests authentication type, defaults to PersonalAccessToken. */
5606
5646
  authenticationType?: InputMaybe<GitHubPullRequestAuthenticationTypes>;
5647
+ /** GitHub OAuth2 client identifier, requires OAuth authentication type. */
5648
+ clientId?: InputMaybe<Scalars['String']['input']>;
5649
+ /** GitHub OAuth2 client secret, requires OAuth authentication type. */
5650
+ clientSecret?: InputMaybe<Scalars['String']['input']>;
5607
5651
  /** The authentication connector reference. */
5608
5652
  connector?: InputMaybe<EntityReferenceInput>;
5609
5653
  /** GitHub personal access token, requires PersonalAccessToken authentication type. */
@@ -5621,6 +5665,10 @@ export type GitHubPullRequestsFeedPropertiesInput = {
5621
5665
  export type GitHubPullRequestsFeedPropertiesUpdateInput = {
5622
5666
  /** GitHub Pull Requests authentication type. */
5623
5667
  authenticationType?: InputMaybe<GitHubPullRequestAuthenticationTypes>;
5668
+ /** GitHub OAuth2 client identifier, requires OAuth authentication type. */
5669
+ clientId?: InputMaybe<Scalars['String']['input']>;
5670
+ /** GitHub OAuth2 client secret, requires OAuth authentication type. */
5671
+ clientSecret?: InputMaybe<Scalars['String']['input']>;
5624
5672
  /** The authentication connector reference. */
5625
5673
  connector?: InputMaybe<EntityReferenceInput>;
5626
5674
  /** GitHub personal access token, requires PersonalAccessToken authentication type. */
@@ -26699,6 +26747,8 @@ export type GetFeedQuery = {
26699
26747
  uri?: any | null;
26700
26748
  repositoryOwner: string;
26701
26749
  repositoryName: string;
26750
+ clientId?: string | null;
26751
+ clientSecret?: string | null;
26702
26752
  refreshToken?: string | null;
26703
26753
  personalAccessToken?: string | null;
26704
26754
  connector?: {
@@ -27241,6 +27291,8 @@ export type QueryFeedsQuery = {
27241
27291
  uri?: any | null;
27242
27292
  repositoryOwner: string;
27243
27293
  repositoryName: string;
27294
+ clientId?: string | null;
27295
+ clientSecret?: string | null;
27244
27296
  refreshToken?: string | null;
27245
27297
  personalAccessToken?: string | null;
27246
27298
  connector?: {
@@ -33945,17 +33997,12 @@ export type LookupUsageQuery = {
33945
33997
  modelService?: string | null;
33946
33998
  modelName?: string | null;
33947
33999
  processorName?: string | null;
33948
- prompt?: string | null;
33949
34000
  promptTokens?: number | null;
33950
- completion?: string | null;
33951
34001
  completionTokens?: number | null;
33952
34002
  tokens?: number | null;
33953
34003
  count?: number | null;
33954
34004
  operation?: string | null;
33955
34005
  operationType?: OperationTypes | null;
33956
- request?: string | null;
33957
- variables?: string | null;
33958
- response?: string | null;
33959
34006
  } | null> | null;
33960
34007
  };
33961
34008
  export type QueryCreditsQueryVariables = Exact<{
@@ -34042,17 +34089,12 @@ export type QueryUsageQuery = {
34042
34089
  modelService?: string | null;
34043
34090
  modelName?: string | null;
34044
34091
  processorName?: string | null;
34045
- prompt?: string | null;
34046
34092
  promptTokens?: number | null;
34047
- completion?: string | null;
34048
34093
  completionTokens?: number | null;
34049
34094
  tokens?: number | null;
34050
34095
  count?: number | null;
34051
34096
  operation?: string | null;
34052
34097
  operationType?: OperationTypes | null;
34053
- request?: string | null;
34054
- variables?: string | null;
34055
- response?: string | null;
34056
34098
  } | null> | null;
34057
34099
  };
34058
34100
  export type UpdateProjectMutationVariables = Exact<{
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "graphlit-client",
3
- "version": "1.0.20251220001",
3
+ "version": "1.0.20251220002",
4
4
  "description": "Graphlit API Client for TypeScript",
5
5
  "type": "module",
6
6
  "main": "./dist/client.js",