graphlit-client 1.0.20260408013 → 1.0.20260410001
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.
|
@@ -10432,6 +10432,9 @@ export const GetFeed = gql `
|
|
|
10432
10432
|
jobRegion
|
|
10433
10433
|
jobDescription
|
|
10434
10434
|
}
|
|
10435
|
+
linkedin {
|
|
10436
|
+
dateRange
|
|
10437
|
+
}
|
|
10435
10438
|
}
|
|
10436
10439
|
reddit {
|
|
10437
10440
|
readLimit
|
|
@@ -11505,6 +11508,9 @@ export const QueryFeeds = gql `
|
|
|
11505
11508
|
jobRegion
|
|
11506
11509
|
jobDescription
|
|
11507
11510
|
}
|
|
11511
|
+
linkedin {
|
|
11512
|
+
dateRange
|
|
11513
|
+
}
|
|
11508
11514
|
}
|
|
11509
11515
|
reddit {
|
|
11510
11516
|
readLimit
|
|
@@ -12530,6 +12530,24 @@ export declare enum LinkedInPostListingTypes {
|
|
|
12530
12530
|
KeywordSearch = "KEYWORD_SEARCH",
|
|
12531
12531
|
Person = "PERSON"
|
|
12532
12532
|
}
|
|
12533
|
+
export declare enum LinkedInSearchDateTypes {
|
|
12534
|
+
PastDay = "PAST_DAY",
|
|
12535
|
+
PastMonth = "PAST_MONTH",
|
|
12536
|
+
PastQuarter = "PAST_QUARTER",
|
|
12537
|
+
PastWeek = "PAST_WEEK",
|
|
12538
|
+
PastYear = "PAST_YEAR"
|
|
12539
|
+
}
|
|
12540
|
+
/** Represents LinkedIn search properties. */
|
|
12541
|
+
export type LinkedInSearchProperties = {
|
|
12542
|
+
__typename?: 'LinkedInSearchProperties';
|
|
12543
|
+
/** The date range filter, defaults to past month. */
|
|
12544
|
+
dateRange?: Maybe<LinkedInSearchDateTypes>;
|
|
12545
|
+
};
|
|
12546
|
+
/** Represents LinkedIn search properties. */
|
|
12547
|
+
export type LinkedInSearchPropertiesInput = {
|
|
12548
|
+
/** The date range filter, defaults to past month. */
|
|
12549
|
+
dateRange?: InputMaybe<LinkedInSearchDateTypes>;
|
|
12550
|
+
};
|
|
12533
12551
|
/** Represents a long result. */
|
|
12534
12552
|
export type LongResult = {
|
|
12535
12553
|
__typename?: 'LongResult';
|
|
@@ -21524,6 +21542,7 @@ export type QuerySearchWebArgs = {
|
|
|
21524
21542
|
correlationId?: InputMaybe<Scalars['String']['input']>;
|
|
21525
21543
|
exa?: InputMaybe<ExaSearchPropertiesInput>;
|
|
21526
21544
|
limit?: InputMaybe<Scalars['Int']['input']>;
|
|
21545
|
+
linkedin?: InputMaybe<LinkedInSearchPropertiesInput>;
|
|
21527
21546
|
service?: InputMaybe<SearchServiceTypes>;
|
|
21528
21547
|
text: Scalars['String']['input'];
|
|
21529
21548
|
};
|
|
@@ -22546,6 +22565,8 @@ export type SearchFeedProperties = {
|
|
|
22546
22565
|
crustdata?: Maybe<CrustdataSearchFeedProperties>;
|
|
22547
22566
|
/** Exa search properties. */
|
|
22548
22567
|
exa?: Maybe<ExaSearchProperties>;
|
|
22568
|
+
/** LinkedIn search properties. */
|
|
22569
|
+
linkedin?: Maybe<LinkedInSearchProperties>;
|
|
22549
22570
|
/** The limit of items to be read from feed, defaults to 10. */
|
|
22550
22571
|
readLimit?: Maybe<Scalars['Int']['output']>;
|
|
22551
22572
|
/** The web search text. */
|
|
@@ -22559,6 +22580,8 @@ export type SearchFeedPropertiesInput = {
|
|
|
22559
22580
|
crustdata?: InputMaybe<CrustdataSearchFeedPropertiesInput>;
|
|
22560
22581
|
/** Exa search properties. */
|
|
22561
22582
|
exa?: InputMaybe<ExaSearchPropertiesInput>;
|
|
22583
|
+
/** LinkedIn search properties. */
|
|
22584
|
+
linkedin?: InputMaybe<LinkedInSearchPropertiesInput>;
|
|
22562
22585
|
/** The limit of items to be read from feed, defaults to 10. */
|
|
22563
22586
|
readLimit?: InputMaybe<Scalars['Int']['input']>;
|
|
22564
22587
|
/** The web search text. Required for all search services except Crustdata. */
|
|
@@ -22572,6 +22595,8 @@ export type SearchFeedPropertiesUpdateInput = {
|
|
|
22572
22595
|
crustdata?: InputMaybe<CrustdataSearchFeedPropertiesUpdateInput>;
|
|
22573
22596
|
/** Exa search properties. */
|
|
22574
22597
|
exa?: InputMaybe<ExaSearchPropertiesInput>;
|
|
22598
|
+
/** LinkedIn search properties. */
|
|
22599
|
+
linkedin?: InputMaybe<LinkedInSearchPropertiesInput>;
|
|
22575
22600
|
/** The limit of items to be read from feed, defaults to 10. */
|
|
22576
22601
|
readLimit?: InputMaybe<Scalars['Int']['input']>;
|
|
22577
22602
|
/** The web search text. */
|
|
@@ -22594,6 +22619,8 @@ export declare enum SearchServiceTypes {
|
|
|
22594
22619
|
Exa = "EXA",
|
|
22595
22620
|
/** Exa Code context search service */
|
|
22596
22621
|
ExaCode = "EXA_CODE",
|
|
22622
|
+
/** LinkedIn search service, via Crustdata */
|
|
22623
|
+
LinkedIn = "LINKED_IN",
|
|
22597
22624
|
/** Parallel search feed service */
|
|
22598
22625
|
Parallel = "PARALLEL",
|
|
22599
22626
|
/** Perplexity search feed service */
|
|
@@ -22601,7 +22628,9 @@ export declare enum SearchServiceTypes {
|
|
|
22601
22628
|
/** Podscan search feed service */
|
|
22602
22629
|
Podscan = "PODSCAN",
|
|
22603
22630
|
/** Tavily search feed service */
|
|
22604
|
-
Tavily = "TAVILY"
|
|
22631
|
+
Tavily = "TAVILY",
|
|
22632
|
+
/** Twitter/X search service */
|
|
22633
|
+
Twitter = "TWITTER"
|
|
22605
22634
|
}
|
|
22606
22635
|
/** Search type */
|
|
22607
22636
|
export declare enum SearchTypes {
|
|
@@ -37436,6 +37465,10 @@ export type GetFeedQuery = {
|
|
|
37436
37465
|
jobRegion?: string | null;
|
|
37437
37466
|
jobDescription?: string | null;
|
|
37438
37467
|
} | null;
|
|
37468
|
+
linkedin?: {
|
|
37469
|
+
__typename?: 'LinkedInSearchProperties';
|
|
37470
|
+
dateRange?: LinkedInSearchDateTypes | null;
|
|
37471
|
+
} | null;
|
|
37439
37472
|
} | null;
|
|
37440
37473
|
reddit?: {
|
|
37441
37474
|
__typename?: 'RedditFeedProperties';
|
|
@@ -38722,6 +38755,10 @@ export type QueryFeedsQuery = {
|
|
|
38722
38755
|
jobRegion?: string | null;
|
|
38723
38756
|
jobDescription?: string | null;
|
|
38724
38757
|
} | null;
|
|
38758
|
+
linkedin?: {
|
|
38759
|
+
__typename?: 'LinkedInSearchProperties';
|
|
38760
|
+
dateRange?: LinkedInSearchDateTypes | null;
|
|
38761
|
+
} | null;
|
|
38725
38762
|
} | null;
|
|
38726
38763
|
reddit?: {
|
|
38727
38764
|
__typename?: 'RedditFeedProperties';
|
|
@@ -2175,6 +2175,14 @@ export var LinkedInPostListingTypes;
|
|
|
2175
2175
|
LinkedInPostListingTypes["KeywordSearch"] = "KEYWORD_SEARCH";
|
|
2176
2176
|
LinkedInPostListingTypes["Person"] = "PERSON";
|
|
2177
2177
|
})(LinkedInPostListingTypes || (LinkedInPostListingTypes = {}));
|
|
2178
|
+
export var LinkedInSearchDateTypes;
|
|
2179
|
+
(function (LinkedInSearchDateTypes) {
|
|
2180
|
+
LinkedInSearchDateTypes["PastDay"] = "PAST_DAY";
|
|
2181
|
+
LinkedInSearchDateTypes["PastMonth"] = "PAST_MONTH";
|
|
2182
|
+
LinkedInSearchDateTypes["PastQuarter"] = "PAST_QUARTER";
|
|
2183
|
+
LinkedInSearchDateTypes["PastWeek"] = "PAST_WEEK";
|
|
2184
|
+
LinkedInSearchDateTypes["PastYear"] = "PAST_YEAR";
|
|
2185
|
+
})(LinkedInSearchDateTypes || (LinkedInSearchDateTypes = {}));
|
|
2178
2186
|
/** MCP Server Types */
|
|
2179
2187
|
export var McpServerTypes;
|
|
2180
2188
|
(function (McpServerTypes) {
|
|
@@ -3062,6 +3070,8 @@ export var SearchServiceTypes;
|
|
|
3062
3070
|
SearchServiceTypes["Exa"] = "EXA";
|
|
3063
3071
|
/** Exa Code context search service */
|
|
3064
3072
|
SearchServiceTypes["ExaCode"] = "EXA_CODE";
|
|
3073
|
+
/** LinkedIn search service, via Crustdata */
|
|
3074
|
+
SearchServiceTypes["LinkedIn"] = "LINKED_IN";
|
|
3065
3075
|
/** Parallel search feed service */
|
|
3066
3076
|
SearchServiceTypes["Parallel"] = "PARALLEL";
|
|
3067
3077
|
/** Perplexity search feed service */
|
|
@@ -3070,6 +3080,8 @@ export var SearchServiceTypes;
|
|
|
3070
3080
|
SearchServiceTypes["Podscan"] = "PODSCAN";
|
|
3071
3081
|
/** Tavily search feed service */
|
|
3072
3082
|
SearchServiceTypes["Tavily"] = "TAVILY";
|
|
3083
|
+
/** Twitter/X search service */
|
|
3084
|
+
SearchServiceTypes["Twitter"] = "TWITTER";
|
|
3073
3085
|
})(SearchServiceTypes || (SearchServiceTypes = {}));
|
|
3074
3086
|
/** Search type */
|
|
3075
3087
|
export var SearchTypes;
|