graphlit-client 1.0.20241007002 → 1.0.20241009001

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.
@@ -2751,6 +2751,13 @@ exports.GetFeed = (0, graphql_tag_1.default) `
2751
2751
  clientId
2752
2752
  clientSecret
2753
2753
  }
2754
+ github {
2755
+ uri
2756
+ repositoryOwner
2757
+ repositoryName
2758
+ refreshToken
2759
+ personalAccessToken
2760
+ }
2754
2761
  readLimit
2755
2762
  }
2756
2763
  email {
@@ -2928,6 +2935,13 @@ exports.QueryFeeds = (0, graphql_tag_1.default) `
2928
2935
  clientId
2929
2936
  clientSecret
2930
2937
  }
2938
+ github {
2939
+ uri
2940
+ repositoryOwner
2941
+ repositoryName
2942
+ refreshToken
2943
+ personalAccessToken
2944
+ }
2931
2945
  readLimit
2932
2946
  }
2933
2947
  email {
@@ -3187,6 +3187,8 @@ export declare enum FeedServiceTypes {
3187
3187
  AzureBlob = "AZURE_BLOB",
3188
3188
  /** Azure File feed service */
3189
3189
  AzureFile = "AZURE_FILE",
3190
+ /** GitHub feed service */
3191
+ GitHub = "GIT_HUB",
3190
3192
  /** GitHub Issues feed service */
3191
3193
  GitHubIssues = "GIT_HUB_ISSUES",
3192
3194
  /** Google Cloud Blob feed service */
@@ -3303,7 +3305,7 @@ export type FilePreparationConnectorInput = {
3303
3305
  /** The file types to be prepared. */
3304
3306
  fileTypes?: InputMaybe<Array<FileTypes>>;
3305
3307
  /** The specific properties for LLM document preparation. */
3306
- modelDocument?: InputMaybe<ModelDocumentPreparationInputProperties>;
3308
+ modelDocument?: InputMaybe<ModelDocumentPreparationPropertiesInput>;
3307
3309
  /** The file preparation service type. */
3308
3310
  type: FilePreparationServiceTypes;
3309
3311
  };
@@ -3374,6 +3376,46 @@ export type GeometryMetadataInput = {
3374
3376
  /** The geometry vertex count. */
3375
3377
  vertexCount?: InputMaybe<Scalars['Long']['input']>;
3376
3378
  };
3379
+ /** Represents GitHub properties. */
3380
+ export type GitHubFeedProperties = {
3381
+ __typename?: 'GitHubFeedProperties';
3382
+ /** GitHub personal access token. Either refresh token or personal access token is required to avoid GitHub rate-limiting. */
3383
+ personalAccessToken?: Maybe<Scalars['String']['output']>;
3384
+ /** GitHub refresh token. Either refresh token or personal access token is required to avoid GitHub rate-limiting. */
3385
+ refreshToken?: Maybe<Scalars['String']['output']>;
3386
+ /** GitHub repository name. */
3387
+ repositoryName: Scalars['String']['output'];
3388
+ /** GitHub repository owner. */
3389
+ repositoryOwner: Scalars['String']['output'];
3390
+ /** GitHub Enterprise URI, optional. */
3391
+ uri?: Maybe<Scalars['URL']['output']>;
3392
+ };
3393
+ /** Represents GitHub properties. */
3394
+ export type GitHubFeedPropertiesInput = {
3395
+ /** GitHub personal access token. Either refresh token or personal access token is required to avoid GitHub rate-limiting. */
3396
+ personalAccessToken?: InputMaybe<Scalars['String']['input']>;
3397
+ /** GitHub refresh token. Either refresh token or personal access token is required to avoid GitHub rate-limiting. */
3398
+ refreshToken?: InputMaybe<Scalars['String']['input']>;
3399
+ /** GitHub repository name. */
3400
+ repositoryName: Scalars['String']['input'];
3401
+ /** GitHub repository owner. */
3402
+ repositoryOwner: Scalars['String']['input'];
3403
+ /** GitHub Enterprise URI, optional. */
3404
+ uri?: InputMaybe<Scalars['URL']['input']>;
3405
+ };
3406
+ /** Represents GitHub properties. */
3407
+ export type GitHubFeedPropertiesUpdateInput = {
3408
+ /** GitHub personal access token. Either refresh token or personal access token is required to avoid GitHub rate-limiting. */
3409
+ personalAccessToken?: InputMaybe<Scalars['String']['input']>;
3410
+ /** GitHub refresh token. Either refresh token or personal access token is required to avoid GitHub rate-limiting. */
3411
+ refreshToken?: InputMaybe<Scalars['String']['input']>;
3412
+ /** GitHub repository name. */
3413
+ repositoryName?: InputMaybe<Scalars['String']['input']>;
3414
+ /** GitHub repository owner. */
3415
+ repositoryOwner?: InputMaybe<Scalars['String']['input']>;
3416
+ /** GitHub Enterprise URI, optional. */
3417
+ uri?: InputMaybe<Scalars['URL']['input']>;
3418
+ };
3377
3419
  /** Represents GitHub Issues feed properties. */
3378
3420
  export type GitHubIssuesFeedProperties = {
3379
3421
  __typename?: 'GitHubIssuesFeedProperties';
@@ -6285,16 +6327,16 @@ export declare enum MistralModels {
6285
6327
  Pixtral_12B_2409 = "PIXTRAL_12B_2409"
6286
6328
  }
6287
6329
  /** Represents the LLM document preparation properties. */
6288
- export type ModelDocumentPreparationInputProperties = {
6289
- /** The LLM specification, optional. */
6290
- specification?: InputMaybe<EntityReferenceInput>;
6291
- };
6292
- /** Represents the LLM document preparation properties. */
6293
6330
  export type ModelDocumentPreparationProperties = {
6294
6331
  __typename?: 'ModelDocumentPreparationProperties';
6295
6332
  /** The LLM specification, optional. */
6296
6333
  specification?: Maybe<EntityReference>;
6297
6334
  };
6335
+ /** Represents the LLM document preparation properties. */
6336
+ export type ModelDocumentPreparationPropertiesInput = {
6337
+ /** The LLM specification, optional. */
6338
+ specification?: InputMaybe<EntityReferenceInput>;
6339
+ };
6298
6340
  /** Represents an LLM image entity extraction connector. */
6299
6341
  export type ModelImageExtractionProperties = {
6300
6342
  __typename?: 'ModelImageExtractionProperties';
@@ -10331,6 +10373,8 @@ export type SiteFeedProperties = {
10331
10373
  azureFile?: Maybe<AzureFileFeedProperties>;
10332
10374
  /** Feed connector type. */
10333
10375
  connectorType: FeedConnectorTypes;
10376
+ /** GitHub properties. */
10377
+ github?: Maybe<GitHubFeedProperties>;
10334
10378
  /** Google Cloud blob properties. */
10335
10379
  google?: Maybe<GoogleFeedProperties>;
10336
10380
  /** Google Drive properties. */
@@ -10356,6 +10400,8 @@ export type SiteFeedPropertiesInput = {
10356
10400
  azureBlob?: InputMaybe<AzureBlobFeedPropertiesInput>;
10357
10401
  /** Microsoft Azure file share properties. */
10358
10402
  azureFile?: InputMaybe<AzureFileFeedPropertiesInput>;
10403
+ /** GitHub properties. */
10404
+ github?: InputMaybe<GitHubFeedPropertiesInput>;
10359
10405
  /** Google Cloud blob properties. */
10360
10406
  google?: InputMaybe<GoogleFeedPropertiesInput>;
10361
10407
  /** Google Drive properties. */
@@ -10379,6 +10425,8 @@ export type SiteFeedPropertiesUpdateInput = {
10379
10425
  azureBlob?: InputMaybe<AzureBlobFeedPropertiesUpdateInput>;
10380
10426
  /** Microsoft Azure file share properties. */
10381
10427
  azureFile?: InputMaybe<AzureFileFeedPropertiesUpdateInput>;
10428
+ /** GitHub properties. */
10429
+ github?: InputMaybe<GitHubFeedPropertiesUpdateInput>;
10382
10430
  /** Google Cloud blob properties. */
10383
10431
  google?: InputMaybe<GoogleFeedPropertiesUpdateInput>;
10384
10432
  /** Google Drive properties. */
@@ -14656,6 +14704,14 @@ export type GetFeedQuery = {
14656
14704
  clientId: string;
14657
14705
  clientSecret: string;
14658
14706
  } | null;
14707
+ github?: {
14708
+ __typename?: 'GitHubFeedProperties';
14709
+ uri?: any | null;
14710
+ repositoryOwner: string;
14711
+ repositoryName: string;
14712
+ refreshToken?: string | null;
14713
+ personalAccessToken?: string | null;
14714
+ } | null;
14659
14715
  } | null;
14660
14716
  email?: {
14661
14717
  __typename?: 'EmailFeedProperties';
@@ -14869,6 +14925,14 @@ export type QueryFeedsQuery = {
14869
14925
  clientId: string;
14870
14926
  clientSecret: string;
14871
14927
  } | null;
14928
+ github?: {
14929
+ __typename?: 'GitHubFeedProperties';
14930
+ uri?: any | null;
14931
+ repositoryOwner: string;
14932
+ repositoryName: string;
14933
+ refreshToken?: string | null;
14934
+ personalAccessToken?: string | null;
14935
+ } | null;
14872
14936
  } | null;
14873
14937
  email?: {
14874
14938
  __typename?: 'EmailFeedProperties';
@@ -600,6 +600,8 @@ var FeedServiceTypes;
600
600
  FeedServiceTypes["AzureBlob"] = "AZURE_BLOB";
601
601
  /** Azure File feed service */
602
602
  FeedServiceTypes["AzureFile"] = "AZURE_FILE";
603
+ /** GitHub feed service */
604
+ FeedServiceTypes["GitHub"] = "GIT_HUB";
603
605
  /** GitHub Issues feed service */
604
606
  FeedServiceTypes["GitHubIssues"] = "GIT_HUB_ISSUES";
605
607
  /** Google Cloud Blob feed service */
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "graphlit-client",
3
- "version": "1.0.20241007002",
3
+ "version": "1.0.20241009001",
4
4
  "description": "Graphlit API TypeScript Client",
5
5
  "main": "dist/client.js",
6
6
  "types": "dist/client.d.ts",