graphlit-client 1.0.20251204001 → 1.0.20251210001
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.
package/dist/client.d.ts
CHANGED
|
@@ -161,7 +161,7 @@ declare class Graphlit {
|
|
|
161
161
|
publishText(text: string, textType: Types.TextTypes, connector: Types.ContentPublishingConnectorInput, name?: string, workflow?: Types.EntityReferenceInput, isSynchronous?: boolean, correlationId?: string): Promise<Types.PublishTextMutation>;
|
|
162
162
|
researchContents(connector: Types.ContentPublishingConnectorInput, filter?: Types.ContentFilter, name?: string, summarySpecification?: Types.EntityReferenceInput, publishSpecification?: Types.EntityReferenceInput, workflow?: Types.EntityReferenceInput, correlationId?: string): Promise<Types.ResearchContentsMutation>;
|
|
163
163
|
getContent(id: string): Promise<Types.GetContentQuery>;
|
|
164
|
-
lookupContents(ids: string[]): Promise<Types.
|
|
164
|
+
lookupContents(ids: string[]): Promise<Types.LookupContentsQuery>;
|
|
165
165
|
queryObservables(filter?: Types.ContentFilter): Promise<Types.QueryObservablesQuery>;
|
|
166
166
|
queryContents(filter?: Types.ContentFilter): Promise<Types.QueryContentsQuery>;
|
|
167
167
|
queryContentsObservations(filter?: Types.ContentFilter): Promise<Types.QueryContentsObservationsQuery>;
|
|
@@ -220,7 +220,7 @@ declare class Graphlit {
|
|
|
220
220
|
deleteAllFeeds(filter?: Types.FeedFilter, isSynchronous?: boolean, correlationId?: string): Promise<Types.DeleteAllFeedsMutation>;
|
|
221
221
|
triggerFeed(id: string): Promise<Types.TriggerFeedMutation>;
|
|
222
222
|
enableFeed(id: string): Promise<Types.EnableFeedMutation>;
|
|
223
|
-
disableFeed(id: string): Promise<Types.
|
|
223
|
+
disableFeed(id: string): Promise<Types.DisableFeedMutation>;
|
|
224
224
|
getFeed(id: string): Promise<Types.GetFeedQuery>;
|
|
225
225
|
queryFeeds(filter?: Types.FeedFilter): Promise<Types.QueryFeedsQuery>;
|
|
226
226
|
countFeeds(filter?: Types.FeedFilter): Promise<Types.CountFeedsQuery>;
|
|
@@ -272,7 +272,7 @@ declare class Graphlit {
|
|
|
272
272
|
queryUsers(filter?: Types.UserFilter): Promise<Types.QueryUsersQuery>;
|
|
273
273
|
countUsers(filter?: Types.UserFilter): Promise<Types.CountUsersQuery>;
|
|
274
274
|
enableUser(id: string): Promise<Types.EnableUserMutation>;
|
|
275
|
-
disableUser(id: string): Promise<Types.
|
|
275
|
+
disableUser(id: string): Promise<Types.DisableUserMutation>;
|
|
276
276
|
createCategory(category: Types.CategoryInput): Promise<Types.CreateCategoryMutation>;
|
|
277
277
|
updateCategory(category: Types.CategoryUpdateInput): Promise<Types.UpdateCategoryMutation>;
|
|
278
278
|
upsertCategory(category: Types.CategoryInput): Promise<Types.UpsertCategoryMutation>;
|
|
@@ -170,6 +170,8 @@ export type AlertFilter = {
|
|
|
170
170
|
offset?: InputMaybe<Scalars['Int']['input']>;
|
|
171
171
|
/** The sort order for query results. */
|
|
172
172
|
orderBy?: InputMaybe<OrderByTypes>;
|
|
173
|
+
/** The relevance score threshold for vector and hybrid search. Results below this threshold will be filtered out. Hybrid search defaults to 0.006. Vector search defaults to 0.54, or 0.78 for OpenAI Ada-002, or 0.61 for Google embedding models. Not applicable to keyword search. */
|
|
174
|
+
relevanceThreshold?: InputMaybe<Scalars['Float']['input']>;
|
|
173
175
|
/** Filter alert(s) by searching for similar text. */
|
|
174
176
|
search?: InputMaybe<Scalars['String']['input']>;
|
|
175
177
|
/** Filter alert(s) by their states. */
|
|
@@ -1587,6 +1589,8 @@ export type CategoryFilter = {
|
|
|
1587
1589
|
offset?: InputMaybe<Scalars['Int']['input']>;
|
|
1588
1590
|
/** The sort order for query results. */
|
|
1589
1591
|
orderBy?: InputMaybe<OrderByTypes>;
|
|
1592
|
+
/** The relevance score threshold for vector and hybrid search. Results below this threshold will be filtered out. Hybrid search defaults to 0.006. Vector search defaults to 0.54, or 0.78 for OpenAI Ada-002, or 0.61 for Google embedding models. Not applicable to keyword search. */
|
|
1593
|
+
relevanceThreshold?: InputMaybe<Scalars['Float']['input']>;
|
|
1590
1594
|
/** Filter category(s) by searching for similar text. */
|
|
1591
1595
|
search?: InputMaybe<Scalars['String']['input']>;
|
|
1592
1596
|
/** Filter category(s) by their states. */
|
|
@@ -1847,6 +1851,8 @@ export type CollectionFilter = {
|
|
|
1847
1851
|
offset?: InputMaybe<Scalars['Int']['input']>;
|
|
1848
1852
|
/** The sort order for query results. */
|
|
1849
1853
|
orderBy?: InputMaybe<OrderByTypes>;
|
|
1854
|
+
/** The relevance score threshold for vector and hybrid search. Results below this threshold will be filtered out. Hybrid search defaults to 0.006. Vector search defaults to 0.54, or 0.78 for OpenAI Ada-002, or 0.61 for Google embedding models. Not applicable to keyword search. */
|
|
1855
|
+
relevanceThreshold?: InputMaybe<Scalars['Float']['input']>;
|
|
1850
1856
|
/** Filter collection(s) by searching for similar text. */
|
|
1851
1857
|
search?: InputMaybe<Scalars['String']['input']>;
|
|
1852
1858
|
/** Filter collection(s) by their states. */
|
|
@@ -2003,6 +2009,8 @@ export type ConnectorFilter = {
|
|
|
2003
2009
|
offset?: InputMaybe<Scalars['Int']['input']>;
|
|
2004
2010
|
/** The sort order for query results. */
|
|
2005
2011
|
orderBy?: InputMaybe<OrderByTypes>;
|
|
2012
|
+
/** The relevance score threshold for vector and hybrid search. Results below this threshold will be filtered out. Hybrid search defaults to 0.006. Vector search defaults to 0.54, or 0.78 for OpenAI Ada-002, or 0.61 for Google embedding models. Not applicable to keyword search. */
|
|
2013
|
+
relevanceThreshold?: InputMaybe<Scalars['Float']['input']>;
|
|
2006
2014
|
/** Filter connector(s) by searching for similar text. */
|
|
2007
2015
|
search?: InputMaybe<Scalars['String']['input']>;
|
|
2008
2016
|
/** Filter connector(s) by their states. */
|
|
@@ -2547,6 +2555,8 @@ export type ContentFilter = {
|
|
|
2547
2555
|
originalDateRange?: InputMaybe<DateRangeFilter>;
|
|
2548
2556
|
/** The query syntax for the search text. Defaults to Simple. */
|
|
2549
2557
|
queryType?: InputMaybe<SearchQueryTypes>;
|
|
2558
|
+
/** The relevance score threshold for vector and hybrid search. Results below this threshold will be filtered out. Hybrid search defaults to 0.006. Vector search defaults to 0.54, or 0.78 for OpenAI Ada-002, or 0.61 for Google embedding models. Not applicable to keyword search. */
|
|
2559
|
+
relevanceThreshold?: InputMaybe<Scalars['Float']['input']>;
|
|
2550
2560
|
/** Filter content(s) by searching for similar text. */
|
|
2551
2561
|
search?: InputMaybe<Scalars['String']['input']>;
|
|
2552
2562
|
/** The type of search to be used. Defaults to Vector. */
|
|
@@ -2979,6 +2989,8 @@ export type ConversationFilter = {
|
|
|
2979
2989
|
orderBy?: InputMaybe<OrderByTypes>;
|
|
2980
2990
|
/** The query syntax for the search text. Defaults to Simple. */
|
|
2981
2991
|
queryType?: InputMaybe<SearchQueryTypes>;
|
|
2992
|
+
/** The relevance score threshold for vector and hybrid search. Results below this threshold will be filtered out. Hybrid search defaults to 0.006. Vector search defaults to 0.54, or 0.78 for OpenAI Ada-002, or 0.61 for Google embedding models. Not applicable to keyword search. */
|
|
2993
|
+
relevanceThreshold?: InputMaybe<Scalars['Float']['input']>;
|
|
2982
2994
|
/** Filter conversation(s) by searching for similar text. */
|
|
2983
2995
|
search?: InputMaybe<Scalars['String']['input']>;
|
|
2984
2996
|
/** The type of search to be used. Defaults to Vector. */
|
|
@@ -4540,6 +4552,8 @@ export type EventFilter = {
|
|
|
4540
4552
|
priceCurrency?: InputMaybe<Scalars['String']['input']>;
|
|
4541
4553
|
/** The query syntax for the search text. Defaults to Simple. */
|
|
4542
4554
|
queryType?: InputMaybe<SearchQueryTypes>;
|
|
4555
|
+
/** The relevance score threshold for vector and hybrid search. Results below this threshold will be filtered out. Hybrid search defaults to 0.006. Vector search defaults to 0.54, or 0.78 for OpenAI Ada-002, or 0.61 for Google embedding models. Not applicable to keyword search. */
|
|
4556
|
+
relevanceThreshold?: InputMaybe<Scalars['Float']['input']>;
|
|
4543
4557
|
/** Filter event(s) by searching for similar text. */
|
|
4544
4558
|
search?: InputMaybe<Scalars['String']['input']>;
|
|
4545
4559
|
/** The type of search to be used. Defaults to Vector. */
|
|
@@ -4954,6 +4968,8 @@ export type FeedFilter = {
|
|
|
4954
4968
|
offset?: InputMaybe<Scalars['Int']['input']>;
|
|
4955
4969
|
/** The sort order for query results. */
|
|
4956
4970
|
orderBy?: InputMaybe<OrderByTypes>;
|
|
4971
|
+
/** The relevance score threshold for vector and hybrid search. Results below this threshold will be filtered out. Hybrid search defaults to 0.006. Vector search defaults to 0.54, or 0.78 for OpenAI Ada-002, or 0.61 for Google embedding models. Not applicable to keyword search. */
|
|
4972
|
+
relevanceThreshold?: InputMaybe<Scalars['Float']['input']>;
|
|
4957
4973
|
/** Filter feed(s) by searching for similar text. */
|
|
4958
4974
|
search?: InputMaybe<Scalars['String']['input']>;
|
|
4959
4975
|
/** Filter feed(s) by their states. */
|
|
@@ -6958,6 +6974,8 @@ export type InvestmentFilter = {
|
|
|
6958
6974
|
orderBy?: InputMaybe<OrderByTypes>;
|
|
6959
6975
|
/** The query syntax for the search text. Defaults to Simple. */
|
|
6960
6976
|
queryType?: InputMaybe<SearchQueryTypes>;
|
|
6977
|
+
/** The relevance score threshold for vector and hybrid search. Results below this threshold will be filtered out. Hybrid search defaults to 0.006. Vector search defaults to 0.54, or 0.78 for OpenAI Ada-002, or 0.61 for Google embedding models. Not applicable to keyword search. */
|
|
6978
|
+
relevanceThreshold?: InputMaybe<Scalars['Float']['input']>;
|
|
6961
6979
|
/** Filter investment(s) by searching for similar text. */
|
|
6962
6980
|
search?: InputMaybe<Scalars['String']['input']>;
|
|
6963
6981
|
/** The type of search to be used. Defaults to Vector. */
|
|
@@ -7101,6 +7119,8 @@ export type InvestmentFundFilter = {
|
|
|
7101
7119
|
orderBy?: InputMaybe<OrderByTypes>;
|
|
7102
7120
|
/** The query syntax for the search text. Defaults to Simple. */
|
|
7103
7121
|
queryType?: InputMaybe<SearchQueryTypes>;
|
|
7122
|
+
/** The relevance score threshold for vector and hybrid search. Results below this threshold will be filtered out. Hybrid search defaults to 0.006. Vector search defaults to 0.54, or 0.78 for OpenAI Ada-002, or 0.61 for Google embedding models. Not applicable to keyword search. */
|
|
7123
|
+
relevanceThreshold?: InputMaybe<Scalars['Float']['input']>;
|
|
7104
7124
|
/** Filter investmentfund(s) by searching for similar text. */
|
|
7105
7125
|
search?: InputMaybe<Scalars['String']['input']>;
|
|
7106
7126
|
/** The type of search to be used. Defaults to Vector. */
|
|
@@ -7528,6 +7548,8 @@ export type LabelFilter = {
|
|
|
7528
7548
|
offset?: InputMaybe<Scalars['Int']['input']>;
|
|
7529
7549
|
/** The sort order for query results. */
|
|
7530
7550
|
orderBy?: InputMaybe<OrderByTypes>;
|
|
7551
|
+
/** The relevance score threshold for vector and hybrid search. Results below this threshold will be filtered out. Hybrid search defaults to 0.006. Vector search defaults to 0.54, or 0.78 for OpenAI Ada-002, or 0.61 for Google embedding models. Not applicable to keyword search. */
|
|
7552
|
+
relevanceThreshold?: InputMaybe<Scalars['Float']['input']>;
|
|
7531
7553
|
/** Filter label(s) by searching for similar text. */
|
|
7532
7554
|
search?: InputMaybe<Scalars['String']['input']>;
|
|
7533
7555
|
/** Filter label(s) by their states. */
|
|
@@ -7955,6 +7977,8 @@ export type MedicalConditionFilter = {
|
|
|
7955
7977
|
orderBy?: InputMaybe<OrderByTypes>;
|
|
7956
7978
|
/** The query syntax for the search text. Defaults to Simple. */
|
|
7957
7979
|
queryType?: InputMaybe<SearchQueryTypes>;
|
|
7980
|
+
/** The relevance score threshold for vector and hybrid search. Results below this threshold will be filtered out. Hybrid search defaults to 0.006. Vector search defaults to 0.54, or 0.78 for OpenAI Ada-002, or 0.61 for Google embedding models. Not applicable to keyword search. */
|
|
7981
|
+
relevanceThreshold?: InputMaybe<Scalars['Float']['input']>;
|
|
7958
7982
|
/** Filter medicalcondition(s) by searching for similar text. */
|
|
7959
7983
|
search?: InputMaybe<Scalars['String']['input']>;
|
|
7960
7984
|
/** The type of search to be used. Defaults to Vector. */
|
|
@@ -8122,6 +8146,8 @@ export type MedicalContraindicationFilter = {
|
|
|
8122
8146
|
orderBy?: InputMaybe<OrderByTypes>;
|
|
8123
8147
|
/** The query syntax for the search text. Defaults to Simple. */
|
|
8124
8148
|
queryType?: InputMaybe<SearchQueryTypes>;
|
|
8149
|
+
/** The relevance score threshold for vector and hybrid search. Results below this threshold will be filtered out. Hybrid search defaults to 0.006. Vector search defaults to 0.54, or 0.78 for OpenAI Ada-002, or 0.61 for Google embedding models. Not applicable to keyword search. */
|
|
8150
|
+
relevanceThreshold?: InputMaybe<Scalars['Float']['input']>;
|
|
8125
8151
|
/** Filter medicalcontraindication(s) by searching for similar text. */
|
|
8126
8152
|
search?: InputMaybe<Scalars['String']['input']>;
|
|
8127
8153
|
/** The type of search to be used. Defaults to Vector. */
|
|
@@ -8289,6 +8315,8 @@ export type MedicalDeviceFilter = {
|
|
|
8289
8315
|
orderBy?: InputMaybe<OrderByTypes>;
|
|
8290
8316
|
/** The query syntax for the search text. Defaults to Simple. */
|
|
8291
8317
|
queryType?: InputMaybe<SearchQueryTypes>;
|
|
8318
|
+
/** The relevance score threshold for vector and hybrid search. Results below this threshold will be filtered out. Hybrid search defaults to 0.006. Vector search defaults to 0.54, or 0.78 for OpenAI Ada-002, or 0.61 for Google embedding models. Not applicable to keyword search. */
|
|
8319
|
+
relevanceThreshold?: InputMaybe<Scalars['Float']['input']>;
|
|
8292
8320
|
/** Filter medicaldevice(s) by searching for similar text. */
|
|
8293
8321
|
search?: InputMaybe<Scalars['String']['input']>;
|
|
8294
8322
|
/** The type of search to be used. Defaults to Vector. */
|
|
@@ -8500,6 +8528,8 @@ export type MedicalDrugClassFilter = {
|
|
|
8500
8528
|
orderBy?: InputMaybe<OrderByTypes>;
|
|
8501
8529
|
/** The query syntax for the search text. Defaults to Simple. */
|
|
8502
8530
|
queryType?: InputMaybe<SearchQueryTypes>;
|
|
8531
|
+
/** The relevance score threshold for vector and hybrid search. Results below this threshold will be filtered out. Hybrid search defaults to 0.006. Vector search defaults to 0.54, or 0.78 for OpenAI Ada-002, or 0.61 for Google embedding models. Not applicable to keyword search. */
|
|
8532
|
+
relevanceThreshold?: InputMaybe<Scalars['Float']['input']>;
|
|
8503
8533
|
/** Filter medicaldrugclass(s) by searching for similar text. */
|
|
8504
8534
|
search?: InputMaybe<Scalars['String']['input']>;
|
|
8505
8535
|
/** The type of search to be used. Defaults to Vector. */
|
|
@@ -8623,6 +8653,8 @@ export type MedicalDrugFilter = {
|
|
|
8623
8653
|
orderBy?: InputMaybe<OrderByTypes>;
|
|
8624
8654
|
/** The query syntax for the search text. Defaults to Simple. */
|
|
8625
8655
|
queryType?: InputMaybe<SearchQueryTypes>;
|
|
8656
|
+
/** The relevance score threshold for vector and hybrid search. Results below this threshold will be filtered out. Hybrid search defaults to 0.006. Vector search defaults to 0.54, or 0.78 for OpenAI Ada-002, or 0.61 for Google embedding models. Not applicable to keyword search. */
|
|
8657
|
+
relevanceThreshold?: InputMaybe<Scalars['Float']['input']>;
|
|
8626
8658
|
/** Filter medicaldrug(s) by searching for similar text. */
|
|
8627
8659
|
search?: InputMaybe<Scalars['String']['input']>;
|
|
8628
8660
|
/** The type of search to be used. Defaults to Vector. */
|
|
@@ -8790,6 +8822,8 @@ export type MedicalGuidelineFilter = {
|
|
|
8790
8822
|
orderBy?: InputMaybe<OrderByTypes>;
|
|
8791
8823
|
/** The query syntax for the search text. Defaults to Simple. */
|
|
8792
8824
|
queryType?: InputMaybe<SearchQueryTypes>;
|
|
8825
|
+
/** The relevance score threshold for vector and hybrid search. Results below this threshold will be filtered out. Hybrid search defaults to 0.006. Vector search defaults to 0.54, or 0.78 for OpenAI Ada-002, or 0.61 for Google embedding models. Not applicable to keyword search. */
|
|
8826
|
+
relevanceThreshold?: InputMaybe<Scalars['Float']['input']>;
|
|
8793
8827
|
/** Filter medicalguideline(s) by searching for similar text. */
|
|
8794
8828
|
search?: InputMaybe<Scalars['String']['input']>;
|
|
8795
8829
|
/** The type of search to be used. Defaults to Vector. */
|
|
@@ -8957,6 +8991,8 @@ export type MedicalIndicationFilter = {
|
|
|
8957
8991
|
orderBy?: InputMaybe<OrderByTypes>;
|
|
8958
8992
|
/** The query syntax for the search text. Defaults to Simple. */
|
|
8959
8993
|
queryType?: InputMaybe<SearchQueryTypes>;
|
|
8994
|
+
/** The relevance score threshold for vector and hybrid search. Results below this threshold will be filtered out. Hybrid search defaults to 0.006. Vector search defaults to 0.54, or 0.78 for OpenAI Ada-002, or 0.61 for Google embedding models. Not applicable to keyword search. */
|
|
8995
|
+
relevanceThreshold?: InputMaybe<Scalars['Float']['input']>;
|
|
8960
8996
|
/** Filter medicalindication(s) by searching for similar text. */
|
|
8961
8997
|
search?: InputMaybe<Scalars['String']['input']>;
|
|
8962
8998
|
/** The type of search to be used. Defaults to Vector. */
|
|
@@ -9124,6 +9160,8 @@ export type MedicalProcedureFilter = {
|
|
|
9124
9160
|
orderBy?: InputMaybe<OrderByTypes>;
|
|
9125
9161
|
/** The query syntax for the search text. Defaults to Simple. */
|
|
9126
9162
|
queryType?: InputMaybe<SearchQueryTypes>;
|
|
9163
|
+
/** The relevance score threshold for vector and hybrid search. Results below this threshold will be filtered out. Hybrid search defaults to 0.006. Vector search defaults to 0.54, or 0.78 for OpenAI Ada-002, or 0.61 for Google embedding models. Not applicable to keyword search. */
|
|
9164
|
+
relevanceThreshold?: InputMaybe<Scalars['Float']['input']>;
|
|
9127
9165
|
/** Filter medicalprocedure(s) by searching for similar text. */
|
|
9128
9166
|
search?: InputMaybe<Scalars['String']['input']>;
|
|
9129
9167
|
/** The type of search to be used. Defaults to Vector. */
|
|
@@ -9293,6 +9331,8 @@ export type MedicalStudyFilter = {
|
|
|
9293
9331
|
orderBy?: InputMaybe<OrderByTypes>;
|
|
9294
9332
|
/** The query syntax for the search text. Defaults to Simple. */
|
|
9295
9333
|
queryType?: InputMaybe<SearchQueryTypes>;
|
|
9334
|
+
/** The relevance score threshold for vector and hybrid search. Results below this threshold will be filtered out. Hybrid search defaults to 0.006. Vector search defaults to 0.54, or 0.78 for OpenAI Ada-002, or 0.61 for Google embedding models. Not applicable to keyword search. */
|
|
9335
|
+
relevanceThreshold?: InputMaybe<Scalars['Float']['input']>;
|
|
9296
9336
|
/** Filter medicalstudy(s) by searching for similar text. */
|
|
9297
9337
|
search?: InputMaybe<Scalars['String']['input']>;
|
|
9298
9338
|
/** The type of search to be used. Defaults to Vector. */
|
|
@@ -9464,6 +9504,8 @@ export type MedicalTestFilter = {
|
|
|
9464
9504
|
orderBy?: InputMaybe<OrderByTypes>;
|
|
9465
9505
|
/** The query syntax for the search text. Defaults to Simple. */
|
|
9466
9506
|
queryType?: InputMaybe<SearchQueryTypes>;
|
|
9507
|
+
/** The relevance score threshold for vector and hybrid search. Results below this threshold will be filtered out. Hybrid search defaults to 0.006. Vector search defaults to 0.54, or 0.78 for OpenAI Ada-002, or 0.61 for Google embedding models. Not applicable to keyword search. */
|
|
9508
|
+
relevanceThreshold?: InputMaybe<Scalars['Float']['input']>;
|
|
9467
9509
|
/** Filter medicaltest(s) by searching for similar text. */
|
|
9468
9510
|
search?: InputMaybe<Scalars['String']['input']>;
|
|
9469
9511
|
/** The type of search to be used. Defaults to Vector. */
|
|
@@ -9631,6 +9673,8 @@ export type MedicalTherapyFilter = {
|
|
|
9631
9673
|
orderBy?: InputMaybe<OrderByTypes>;
|
|
9632
9674
|
/** The query syntax for the search text. Defaults to Simple. */
|
|
9633
9675
|
queryType?: InputMaybe<SearchQueryTypes>;
|
|
9676
|
+
/** The relevance score threshold for vector and hybrid search. Results below this threshold will be filtered out. Hybrid search defaults to 0.006. Vector search defaults to 0.54, or 0.78 for OpenAI Ada-002, or 0.61 for Google embedding models. Not applicable to keyword search. */
|
|
9677
|
+
relevanceThreshold?: InputMaybe<Scalars['Float']['input']>;
|
|
9634
9678
|
/** Filter medicaltherapy(s) by searching for similar text. */
|
|
9635
9679
|
search?: InputMaybe<Scalars['String']['input']>;
|
|
9636
9680
|
/** The type of search to be used. Defaults to Vector. */
|
|
@@ -9785,6 +9829,8 @@ export type MetadataFilter = {
|
|
|
9785
9829
|
offset?: InputMaybe<Scalars['Int']['input']>;
|
|
9786
9830
|
/** The sort order for query results. */
|
|
9787
9831
|
orderBy?: InputMaybe<OrderByTypes>;
|
|
9832
|
+
/** The relevance score threshold for vector and hybrid search. Results below this threshold will be filtered out. Hybrid search defaults to 0.006. Vector search defaults to 0.54, or 0.78 for OpenAI Ada-002, or 0.61 for Google embedding models. Not applicable to keyword search. */
|
|
9833
|
+
relevanceThreshold?: InputMaybe<Scalars['Float']['input']>;
|
|
9788
9834
|
/** Filter metadata(s) by searching for similar text. */
|
|
9789
9835
|
search?: InputMaybe<Scalars['String']['input']>;
|
|
9790
9836
|
/** Filter metadata(s) by their states. */
|
|
@@ -12031,7 +12077,13 @@ export declare enum OAuthProviders {
|
|
|
12031
12077
|
/** Box authentication provider */
|
|
12032
12078
|
Box = "BOX",
|
|
12033
12079
|
/** Dropbox authentication provider */
|
|
12034
|
-
Dropbox = "DROPBOX"
|
|
12080
|
+
Dropbox = "DROPBOX",
|
|
12081
|
+
/** GitHub authentication provider */
|
|
12082
|
+
GitHub = "GIT_HUB",
|
|
12083
|
+
/** Google authentication provider */
|
|
12084
|
+
Google = "GOOGLE",
|
|
12085
|
+
/** Microsoft authentication provider */
|
|
12086
|
+
Microsoft = "MICROSOFT"
|
|
12035
12087
|
}
|
|
12036
12088
|
/** Represents an extracted observable entity. */
|
|
12037
12089
|
export type Observable = {
|
|
@@ -12875,6 +12927,8 @@ export type OrganizationFilter = {
|
|
|
12875
12927
|
organizations?: InputMaybe<Array<EntityReferenceFilter>>;
|
|
12876
12928
|
/** The query syntax for the search text. Defaults to Simple. */
|
|
12877
12929
|
queryType?: InputMaybe<SearchQueryTypes>;
|
|
12930
|
+
/** The relevance score threshold for vector and hybrid search. Results below this threshold will be filtered out. Hybrid search defaults to 0.006. Vector search defaults to 0.54, or 0.78 for OpenAI Ada-002, or 0.61 for Google embedding models. Not applicable to keyword search. */
|
|
12931
|
+
relevanceThreshold?: InputMaybe<Scalars['Float']['input']>;
|
|
12878
12932
|
/** Filter organization(s) by searching for similar text. */
|
|
12879
12933
|
search?: InputMaybe<Scalars['String']['input']>;
|
|
12880
12934
|
/** The type of search to be used. Defaults to Vector. */
|
|
@@ -13269,6 +13323,8 @@ export type PersonFilter = {
|
|
|
13269
13323
|
phoneNumber?: InputMaybe<Scalars['String']['input']>;
|
|
13270
13324
|
/** The query syntax for the search text. Defaults to Simple. */
|
|
13271
13325
|
queryType?: InputMaybe<SearchQueryTypes>;
|
|
13326
|
+
/** The relevance score threshold for vector and hybrid search. Results below this threshold will be filtered out. Hybrid search defaults to 0.006. Vector search defaults to 0.54, or 0.78 for OpenAI Ada-002, or 0.61 for Google embedding models. Not applicable to keyword search. */
|
|
13327
|
+
relevanceThreshold?: InputMaybe<Scalars['Float']['input']>;
|
|
13272
13328
|
/** Filter person(s) by searching for similar text. */
|
|
13273
13329
|
search?: InputMaybe<Scalars['String']['input']>;
|
|
13274
13330
|
/** The type of search to be used. Defaults to Vector. */
|
|
@@ -13505,6 +13561,8 @@ export type PlaceFilter = {
|
|
|
13505
13561
|
places?: InputMaybe<Array<EntityReferenceFilter>>;
|
|
13506
13562
|
/** The query syntax for the search text. Defaults to Simple. */
|
|
13507
13563
|
queryType?: InputMaybe<SearchQueryTypes>;
|
|
13564
|
+
/** The relevance score threshold for vector and hybrid search. Results below this threshold will be filtered out. Hybrid search defaults to 0.006. Vector search defaults to 0.54, or 0.78 for OpenAI Ada-002, or 0.61 for Google embedding models. Not applicable to keyword search. */
|
|
13565
|
+
relevanceThreshold?: InputMaybe<Scalars['Float']['input']>;
|
|
13508
13566
|
/** Filter place(s) by searching for similar text. */
|
|
13509
13567
|
search?: InputMaybe<Scalars['String']['input']>;
|
|
13510
13568
|
/** The type of search to be used. Defaults to Vector. */
|
|
@@ -13848,6 +13906,8 @@ export type ProductFilter = {
|
|
|
13848
13906
|
queryType?: InputMaybe<SearchQueryTypes>;
|
|
13849
13907
|
/** Filter by release date range. */
|
|
13850
13908
|
releaseDateRange?: InputMaybe<DateRangeFilter>;
|
|
13909
|
+
/** The relevance score threshold for vector and hybrid search. Results below this threshold will be filtered out. Hybrid search defaults to 0.006. Vector search defaults to 0.54, or 0.78 for OpenAI Ada-002, or 0.61 for Google embedding models. Not applicable to keyword search. */
|
|
13910
|
+
relevanceThreshold?: InputMaybe<Scalars['Float']['input']>;
|
|
13851
13911
|
/** Filter product(s) by searching for similar text. */
|
|
13852
13912
|
search?: InputMaybe<Scalars['String']['input']>;
|
|
13853
13913
|
/** The type of search to be used. Defaults to Vector. */
|
|
@@ -14045,6 +14105,8 @@ export type ProjectFilter = {
|
|
|
14045
14105
|
offset?: InputMaybe<Scalars['Int']['input']>;
|
|
14046
14106
|
/** The sort order for query results. */
|
|
14047
14107
|
orderBy?: InputMaybe<OrderByTypes>;
|
|
14108
|
+
/** The relevance score threshold for vector and hybrid search. Results below this threshold will be filtered out. Hybrid search defaults to 0.006. Vector search defaults to 0.54, or 0.78 for OpenAI Ada-002, or 0.61 for Google embedding models. Not applicable to keyword search. */
|
|
14109
|
+
relevanceThreshold?: InputMaybe<Scalars['Float']['input']>;
|
|
14048
14110
|
/** Filter project(s) by searching for similar text. */
|
|
14049
14111
|
search?: InputMaybe<Scalars['String']['input']>;
|
|
14050
14112
|
/** Filter project(s) by their states. */
|
|
@@ -15770,6 +15832,8 @@ export type RepoFilter = {
|
|
|
15770
15832
|
orderBy?: InputMaybe<OrderByTypes>;
|
|
15771
15833
|
/** The query syntax for the search text. Defaults to Simple. */
|
|
15772
15834
|
queryType?: InputMaybe<SearchQueryTypes>;
|
|
15835
|
+
/** The relevance score threshold for vector and hybrid search. Results below this threshold will be filtered out. Hybrid search defaults to 0.006. Vector search defaults to 0.54, or 0.78 for OpenAI Ada-002, or 0.61 for Google embedding models. Not applicable to keyword search. */
|
|
15836
|
+
relevanceThreshold?: InputMaybe<Scalars['Float']['input']>;
|
|
15773
15837
|
/** Filter by code repositories. */
|
|
15774
15838
|
repos?: InputMaybe<Array<EntityReferenceFilter>>;
|
|
15775
15839
|
/** Filter repo(s) by searching for similar text. */
|
|
@@ -16528,6 +16592,8 @@ export type SoftwareFilter = {
|
|
|
16528
16592
|
orderBy?: InputMaybe<OrderByTypes>;
|
|
16529
16593
|
/** The query syntax for the search text. Defaults to Simple. */
|
|
16530
16594
|
queryType?: InputMaybe<SearchQueryTypes>;
|
|
16595
|
+
/** The relevance score threshold for vector and hybrid search. Results below this threshold will be filtered out. Hybrid search defaults to 0.006. Vector search defaults to 0.54, or 0.78 for OpenAI Ada-002, or 0.61 for Google embedding models. Not applicable to keyword search. */
|
|
16596
|
+
relevanceThreshold?: InputMaybe<Scalars['Float']['input']>;
|
|
16531
16597
|
/** Filter software(s) by searching for similar text. */
|
|
16532
16598
|
search?: InputMaybe<Scalars['String']['input']>;
|
|
16533
16599
|
/** The type of search to be used. Defaults to Vector. */
|
|
@@ -16687,6 +16753,8 @@ export type SpecificationFilter = {
|
|
|
16687
16753
|
offset?: InputMaybe<Scalars['Int']['input']>;
|
|
16688
16754
|
/** The sort order for query results. */
|
|
16689
16755
|
orderBy?: InputMaybe<OrderByTypes>;
|
|
16756
|
+
/** The relevance score threshold for vector and hybrid search. Results below this threshold will be filtered out. Hybrid search defaults to 0.006. Vector search defaults to 0.54, or 0.78 for OpenAI Ada-002, or 0.61 for Google embedding models. Not applicable to keyword search. */
|
|
16757
|
+
relevanceThreshold?: InputMaybe<Scalars['Float']['input']>;
|
|
16690
16758
|
/** Filter specification(s) by searching for similar text. */
|
|
16691
16759
|
search?: InputMaybe<Scalars['String']['input']>;
|
|
16692
16760
|
/** Filter by LLM service types. */
|
|
@@ -17389,6 +17457,8 @@ export type UserFilter = {
|
|
|
17389
17457
|
offset?: InputMaybe<Scalars['Int']['input']>;
|
|
17390
17458
|
/** The sort order for query results. */
|
|
17391
17459
|
orderBy?: InputMaybe<OrderByTypes>;
|
|
17460
|
+
/** The relevance score threshold for vector and hybrid search. Results below this threshold will be filtered out. Hybrid search defaults to 0.006. Vector search defaults to 0.54, or 0.78 for OpenAI Ada-002, or 0.61 for Google embedding models. Not applicable to keyword search. */
|
|
17461
|
+
relevanceThreshold?: InputMaybe<Scalars['Float']['input']>;
|
|
17392
17462
|
/** Filter user(s) by searching for similar text. */
|
|
17393
17463
|
search?: InputMaybe<Scalars['String']['input']>;
|
|
17394
17464
|
/** Filter user(s) by their states. */
|
|
@@ -17533,6 +17603,8 @@ export type ViewFilter = {
|
|
|
17533
17603
|
offset?: InputMaybe<Scalars['Int']['input']>;
|
|
17534
17604
|
/** The sort order for query results. */
|
|
17535
17605
|
orderBy?: InputMaybe<OrderByTypes>;
|
|
17606
|
+
/** The relevance score threshold for vector and hybrid search. Results below this threshold will be filtered out. Hybrid search defaults to 0.006. Vector search defaults to 0.54, or 0.78 for OpenAI Ada-002, or 0.61 for Google embedding models. Not applicable to keyword search. */
|
|
17607
|
+
relevanceThreshold?: InputMaybe<Scalars['Float']['input']>;
|
|
17536
17608
|
/** Filter view(s) by searching for similar text. */
|
|
17537
17609
|
search?: InputMaybe<Scalars['String']['input']>;
|
|
17538
17610
|
/** Filter view(s) by their states. */
|
|
@@ -17755,6 +17827,8 @@ export type WorkflowFilter = {
|
|
|
17755
17827
|
offset?: InputMaybe<Scalars['Int']['input']>;
|
|
17756
17828
|
/** The sort order for query results. */
|
|
17757
17829
|
orderBy?: InputMaybe<OrderByTypes>;
|
|
17830
|
+
/** The relevance score threshold for vector and hybrid search. Results below this threshold will be filtered out. Hybrid search defaults to 0.006. Vector search defaults to 0.54, or 0.78 for OpenAI Ada-002, or 0.61 for Google embedding models. Not applicable to keyword search. */
|
|
17831
|
+
relevanceThreshold?: InputMaybe<Scalars['Float']['input']>;
|
|
17758
17832
|
/** Filter workflow(s) by searching for similar text. */
|
|
17759
17833
|
search?: InputMaybe<Scalars['String']['input']>;
|
|
17760
17834
|
/** Filter workflow(s) by their states. */
|
|
@@ -1732,6 +1732,12 @@ export var OAuthProviders;
|
|
|
1732
1732
|
OAuthProviders["Box"] = "BOX";
|
|
1733
1733
|
/** Dropbox authentication provider */
|
|
1734
1734
|
OAuthProviders["Dropbox"] = "DROPBOX";
|
|
1735
|
+
/** GitHub authentication provider */
|
|
1736
|
+
OAuthProviders["GitHub"] = "GIT_HUB";
|
|
1737
|
+
/** Google authentication provider */
|
|
1738
|
+
OAuthProviders["Google"] = "GOOGLE";
|
|
1739
|
+
/** Microsoft authentication provider */
|
|
1740
|
+
OAuthProviders["Microsoft"] = "MICROSOFT";
|
|
1735
1741
|
})(OAuthProviders || (OAuthProviders = {}));
|
|
1736
1742
|
/** Observable type */
|
|
1737
1743
|
export var ObservableTypes;
|