graphlit-client 1.0.20241007001 → 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 {
|
@@ -4984,7 +4998,6 @@ exports.GetSpecification = (0, graphql_tag_1.default) `
|
|
4984
4998
|
name
|
4985
4999
|
description
|
4986
5000
|
schema
|
4987
|
-
uri
|
4988
5001
|
}
|
4989
5002
|
}
|
4990
5003
|
}
|
@@ -5274,7 +5287,6 @@ exports.QuerySpecifications = (0, graphql_tag_1.default) `
|
|
5274
5287
|
name
|
5275
5288
|
description
|
5276
5289
|
schema
|
5277
|
-
uri
|
5278
5290
|
}
|
5279
5291
|
}
|
5280
5292
|
}
|
@@ -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<
|
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. */
|
@@ -11059,8 +11107,6 @@ export type ToolDefinition = {
|
|
11059
11107
|
name: Scalars['String']['output'];
|
11060
11108
|
/** The tool schema. */
|
11061
11109
|
schema: Scalars['String']['output'];
|
11062
|
-
/** The tool callback URI. */
|
11063
|
-
uri?: Maybe<Scalars['URL']['output']>;
|
11064
11110
|
};
|
11065
11111
|
/** Represents a tool definition. */
|
11066
11112
|
export type ToolDefinitionInput = {
|
@@ -11070,8 +11116,6 @@ export type ToolDefinitionInput = {
|
|
11070
11116
|
name: Scalars['String']['input'];
|
11071
11117
|
/** The tool schema. */
|
11072
11118
|
schema: Scalars['String']['input'];
|
11073
|
-
/** The tool callback URI. */
|
11074
|
-
uri?: InputMaybe<Scalars['URL']['input']>;
|
11075
11119
|
};
|
11076
11120
|
/** Represents a tool definition. */
|
11077
11121
|
export type ToolDefinitionUpdateInput = {
|
@@ -11081,8 +11125,6 @@ export type ToolDefinitionUpdateInput = {
|
|
11081
11125
|
name?: InputMaybe<Scalars['String']['input']>;
|
11082
11126
|
/** The tool schema. */
|
11083
11127
|
schema?: InputMaybe<Scalars['String']['input']>;
|
11084
|
-
/** The tool callback URI. */
|
11085
|
-
uri?: InputMaybe<Scalars['URL']['input']>;
|
11086
11128
|
};
|
11087
11129
|
/** Unit types */
|
11088
11130
|
export declare enum UnitTypes {
|
@@ -14662,6 +14704,14 @@ export type GetFeedQuery = {
|
|
14662
14704
|
clientId: string;
|
14663
14705
|
clientSecret: string;
|
14664
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;
|
14665
14715
|
} | null;
|
14666
14716
|
email?: {
|
14667
14717
|
__typename?: 'EmailFeedProperties';
|
@@ -14875,6 +14925,14 @@ export type QueryFeedsQuery = {
|
|
14875
14925
|
clientId: string;
|
14876
14926
|
clientSecret: string;
|
14877
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;
|
14878
14936
|
} | null;
|
14879
14937
|
email?: {
|
14880
14938
|
__typename?: 'EmailFeedProperties';
|
@@ -17473,7 +17531,6 @@ export type GetSpecificationQuery = {
|
|
17473
17531
|
name: string;
|
17474
17532
|
description?: string | null;
|
17475
17533
|
schema: string;
|
17476
|
-
uri?: any | null;
|
17477
17534
|
}> | null;
|
17478
17535
|
} | null;
|
17479
17536
|
};
|
@@ -17799,7 +17856,6 @@ export type QuerySpecificationsQuery = {
|
|
17799
17856
|
name: string;
|
17800
17857
|
description?: string | null;
|
17801
17858
|
schema: string;
|
17802
|
-
uri?: any | null;
|
17803
17859
|
}> | null;
|
17804
17860
|
} | null> | null;
|
17805
17861
|
} | null;
|
@@ -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 */
|