@dailydotdev/schema 0.2.72 → 0.2.73

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.
@@ -210,6 +210,31 @@ declare enum RejectionReason {
210
210
  */
211
211
  OTHER = 10
212
212
  }
213
+ /**
214
+ * @generated from enum bragi.pipelines.SentimentLabel
215
+ */
216
+ declare enum SentimentLabel {
217
+ /**
218
+ * @generated from enum value: SENTIMENT_LABEL_UNSPECIFIED = 0;
219
+ */
220
+ UNSPECIFIED = 0,
221
+ /**
222
+ * @generated from enum value: SENTIMENT_LABEL_POSITIVE = 1;
223
+ */
224
+ POSITIVE = 1,
225
+ /**
226
+ * @generated from enum value: SENTIMENT_LABEL_NEUTRAL = 2;
227
+ */
228
+ NEUTRAL = 2,
229
+ /**
230
+ * @generated from enum value: SENTIMENT_LABEL_NEGATIVE = 3;
231
+ */
232
+ NEGATIVE = 3,
233
+ /**
234
+ * @generated from enum value: SENTIMENT_LABEL_MIXED = 4;
235
+ */
236
+ MIXED = 4
237
+ }
213
238
  /**
214
239
  * @generated from message bragi.pipelines.EnrichRequest
215
240
  */
@@ -364,6 +389,20 @@ declare class PostDimensionsV2 extends Message<PostDimensionsV2> {
364
389
  * @generated from field: repeated string channels = 12;
365
390
  */
366
391
  channels: string[];
392
+ /**
393
+ * Topic diversity signals
394
+ *
395
+ * Concise description of the post's specific subject
396
+ *
397
+ * @generated from field: string topic_summary = 13;
398
+ */
399
+ topicSummary: string;
400
+ /**
401
+ * Author's position or perspective on the topic
402
+ *
403
+ * @generated from field: string stance = 14;
404
+ */
405
+ stance: string;
367
406
  constructor(data?: PartialMessage<PostDimensionsV2>);
368
407
  static readonly runtime: typeof proto3;
369
408
  static readonly typeName = "bragi.pipelines.PostDimensionsV2";
@@ -1239,6 +1278,10 @@ declare class PersonalizedBriefingRequest extends Message<PersonalizedBriefingRe
1239
1278
  * @generated from field: optional briefing.Briefing recent_briefing = 4;
1240
1279
  */
1241
1280
  recentBriefing?: Briefing;
1281
+ /**
1282
+ * @generated from field: repeated string blocked_tags = 5;
1283
+ */
1284
+ blockedTags: string[];
1242
1285
  constructor(data?: PartialMessage<PersonalizedBriefingRequest>);
1243
1286
  static readonly runtime: typeof proto3;
1244
1287
  static readonly typeName = "bragi.pipelines.PersonalizedBriefingRequest";
@@ -1969,6 +2012,81 @@ declare class TagSeniorityRequest extends Message<TagSeniorityRequest> {
1969
2012
  static fromJsonString(jsonString: string, options?: Partial<JsonReadOptions>): TagSeniorityRequest;
1970
2013
  static equals(a: TagSeniorityRequest | PlainMessage<TagSeniorityRequest> | undefined, b: TagSeniorityRequest | PlainMessage<TagSeniorityRequest> | undefined): boolean;
1971
2014
  }
2015
+ /**
2016
+ * @generated from message bragi.pipelines.GitHubProfileTagsRequest
2017
+ */
2018
+ declare class GitHubProfileTagsRequest extends Message<GitHubProfileTagsRequest> {
2019
+ /**
2020
+ * GitHub personal access token to fetch profile signals
2021
+ *
2022
+ * @generated from field: string github_personal_token = 1;
2023
+ */
2024
+ githubPersonalToken: string;
2025
+ /**
2026
+ * vocabulary used to extract profile tags
2027
+ *
2028
+ * @generated from field: repeated string tag_vocabulary = 2;
2029
+ */
2030
+ tagVocabulary: string[];
2031
+ constructor(data?: PartialMessage<GitHubProfileTagsRequest>);
2032
+ static readonly runtime: typeof proto3;
2033
+ static readonly typeName = "bragi.pipelines.GitHubProfileTagsRequest";
2034
+ static readonly fields: FieldList;
2035
+ static fromBinary(bytes: Uint8Array, options?: Partial<BinaryReadOptions>): GitHubProfileTagsRequest;
2036
+ static fromJson(jsonValue: JsonValue, options?: Partial<JsonReadOptions>): GitHubProfileTagsRequest;
2037
+ static fromJsonString(jsonString: string, options?: Partial<JsonReadOptions>): GitHubProfileTagsRequest;
2038
+ static equals(a: GitHubProfileTagsRequest | PlainMessage<GitHubProfileTagsRequest> | undefined, b: GitHubProfileTagsRequest | PlainMessage<GitHubProfileTagsRequest> | undefined): boolean;
2039
+ }
2040
+ /**
2041
+ * @generated from message bragi.pipelines.ExtractedProfileTag
2042
+ */
2043
+ declare class ExtractedProfileTag extends Message<ExtractedProfileTag> {
2044
+ /**
2045
+ * extracted tag from the GitHub profile
2046
+ *
2047
+ * @generated from field: string name = 1;
2048
+ */
2049
+ name: string;
2050
+ /**
2051
+ * confidence score [0..1]
2052
+ *
2053
+ * @generated from field: float confidence = 2;
2054
+ */
2055
+ confidence: number;
2056
+ constructor(data?: PartialMessage<ExtractedProfileTag>);
2057
+ static readonly runtime: typeof proto3;
2058
+ static readonly typeName = "bragi.pipelines.ExtractedProfileTag";
2059
+ static readonly fields: FieldList;
2060
+ static fromBinary(bytes: Uint8Array, options?: Partial<BinaryReadOptions>): ExtractedProfileTag;
2061
+ static fromJson(jsonValue: JsonValue, options?: Partial<JsonReadOptions>): ExtractedProfileTag;
2062
+ static fromJsonString(jsonString: string, options?: Partial<JsonReadOptions>): ExtractedProfileTag;
2063
+ static equals(a: ExtractedProfileTag | PlainMessage<ExtractedProfileTag> | undefined, b: ExtractedProfileTag | PlainMessage<ExtractedProfileTag> | undefined): boolean;
2064
+ }
2065
+ /**
2066
+ * @generated from message bragi.pipelines.GitHubProfileTagsResponse
2067
+ */
2068
+ declare class GitHubProfileTagsResponse extends Message<GitHubProfileTagsResponse> {
2069
+ /**
2070
+ * Operation id
2071
+ *
2072
+ * @generated from field: string id = 1;
2073
+ */
2074
+ id: string;
2075
+ /**
2076
+ * tags found in the profile
2077
+ *
2078
+ * @generated from field: repeated bragi.pipelines.ExtractedProfileTag extracted_tags = 2;
2079
+ */
2080
+ extractedTags: ExtractedProfileTag[];
2081
+ constructor(data?: PartialMessage<GitHubProfileTagsResponse>);
2082
+ static readonly runtime: typeof proto3;
2083
+ static readonly typeName = "bragi.pipelines.GitHubProfileTagsResponse";
2084
+ static readonly fields: FieldList;
2085
+ static fromBinary(bytes: Uint8Array, options?: Partial<BinaryReadOptions>): GitHubProfileTagsResponse;
2086
+ static fromJson(jsonValue: JsonValue, options?: Partial<JsonReadOptions>): GitHubProfileTagsResponse;
2087
+ static fromJsonString(jsonString: string, options?: Partial<JsonReadOptions>): GitHubProfileTagsResponse;
2088
+ static equals(a: GitHubProfileTagsResponse | PlainMessage<GitHubProfileTagsResponse> | undefined, b: GitHubProfileTagsResponse | PlainMessage<GitHubProfileTagsResponse> | undefined): boolean;
2089
+ }
1972
2090
  /**
1973
2091
  * @generated from message bragi.pipelines.SimpleParseCVRequest
1974
2092
  */
@@ -2291,6 +2409,93 @@ declare class ClassifyRejectionFeedbackResponse extends Message<ClassifyRejectio
2291
2409
  static fromJsonString(jsonString: string, options?: Partial<JsonReadOptions>): ClassifyRejectionFeedbackResponse;
2292
2410
  static equals(a: ClassifyRejectionFeedbackResponse | PlainMessage<ClassifyRejectionFeedbackResponse> | undefined, b: ClassifyRejectionFeedbackResponse | PlainMessage<ClassifyRejectionFeedbackResponse> | undefined): boolean;
2293
2411
  }
2412
+ /**
2413
+ * @generated from message bragi.pipelines.EntitySentimentClassification
2414
+ */
2415
+ declare class EntitySentimentClassification extends Message<EntitySentimentClassification> {
2416
+ /**
2417
+ * Canonical entity selected from request entities
2418
+ *
2419
+ * @generated from field: string entity = 1;
2420
+ */
2421
+ entity: string;
2422
+ /**
2423
+ * Sentiment for this entity in the item text
2424
+ *
2425
+ * @generated from field: bragi.pipelines.SentimentLabel sentiment = 2;
2426
+ */
2427
+ sentiment: SentimentLabel;
2428
+ /**
2429
+ * Confidence estimate [0..1]
2430
+ *
2431
+ * @generated from field: float confidence = 3;
2432
+ */
2433
+ confidence: number;
2434
+ constructor(data?: PartialMessage<EntitySentimentClassification>);
2435
+ static readonly runtime: typeof proto3;
2436
+ static readonly typeName = "bragi.pipelines.EntitySentimentClassification";
2437
+ static readonly fields: FieldList;
2438
+ static fromBinary(bytes: Uint8Array, options?: Partial<BinaryReadOptions>): EntitySentimentClassification;
2439
+ static fromJson(jsonValue: JsonValue, options?: Partial<JsonReadOptions>): EntitySentimentClassification;
2440
+ static fromJsonString(jsonString: string, options?: Partial<JsonReadOptions>): EntitySentimentClassification;
2441
+ static equals(a: EntitySentimentClassification | PlainMessage<EntitySentimentClassification> | undefined, b: EntitySentimentClassification | PlainMessage<EntitySentimentClassification> | undefined): boolean;
2442
+ }
2443
+ /**
2444
+ * @generated from message bragi.pipelines.SentimentAnalysisRequest
2445
+ */
2446
+ declare class SentimentAnalysisRequest extends Message<SentimentAnalysisRequest> {
2447
+ /**
2448
+ * Source text to classify
2449
+ *
2450
+ * @generated from field: string text = 1;
2451
+ */
2452
+ text: string;
2453
+ /**
2454
+ * Candidate entities to classify against
2455
+ *
2456
+ * @generated from field: repeated string entities = 2;
2457
+ */
2458
+ entities: string[];
2459
+ constructor(data?: PartialMessage<SentimentAnalysisRequest>);
2460
+ static readonly runtime: typeof proto3;
2461
+ static readonly typeName = "bragi.pipelines.SentimentAnalysisRequest";
2462
+ static readonly fields: FieldList;
2463
+ static fromBinary(bytes: Uint8Array, options?: Partial<BinaryReadOptions>): SentimentAnalysisRequest;
2464
+ static fromJson(jsonValue: JsonValue, options?: Partial<JsonReadOptions>): SentimentAnalysisRequest;
2465
+ static fromJsonString(jsonString: string, options?: Partial<JsonReadOptions>): SentimentAnalysisRequest;
2466
+ static equals(a: SentimentAnalysisRequest | PlainMessage<SentimentAnalysisRequest> | undefined, b: SentimentAnalysisRequest | PlainMessage<SentimentAnalysisRequest> | undefined): boolean;
2467
+ }
2468
+ /**
2469
+ * @generated from message bragi.pipelines.SentimentAnalysisResponse
2470
+ */
2471
+ declare class SentimentAnalysisResponse extends Message<SentimentAnalysisResponse> {
2472
+ /**
2473
+ * Operation id
2474
+ *
2475
+ * @generated from field: string id = 1;
2476
+ */
2477
+ id: string;
2478
+ /**
2479
+ * Model used for classification
2480
+ *
2481
+ * @generated from field: string model = 2;
2482
+ */
2483
+ model: string;
2484
+ /**
2485
+ * Empty when text is not relevant to any of the provided entities.
2486
+ *
2487
+ * @generated from field: repeated bragi.pipelines.EntitySentimentClassification classifications = 3;
2488
+ */
2489
+ classifications: EntitySentimentClassification[];
2490
+ constructor(data?: PartialMessage<SentimentAnalysisResponse>);
2491
+ static readonly runtime: typeof proto3;
2492
+ static readonly typeName = "bragi.pipelines.SentimentAnalysisResponse";
2493
+ static readonly fields: FieldList;
2494
+ static fromBinary(bytes: Uint8Array, options?: Partial<BinaryReadOptions>): SentimentAnalysisResponse;
2495
+ static fromJson(jsonValue: JsonValue, options?: Partial<JsonReadOptions>): SentimentAnalysisResponse;
2496
+ static fromJsonString(jsonString: string, options?: Partial<JsonReadOptions>): SentimentAnalysisResponse;
2497
+ static equals(a: SentimentAnalysisResponse | PlainMessage<SentimentAnalysisResponse> | undefined, b: SentimentAnalysisResponse | PlainMessage<SentimentAnalysisResponse> | undefined): boolean;
2498
+ }
2294
2499
  /**
2295
2500
  * Represents a job vacancy found on a company website
2296
2501
  *
@@ -2814,4 +3019,4 @@ declare class ValidateCollectionCoherenceResponse extends Message<ValidateCollec
2814
3019
  static equals(a: ValidateCollectionCoherenceResponse | PlainMessage<ValidateCollectionCoherenceResponse> | undefined, b: ValidateCollectionCoherenceResponse | PlainMessage<ValidateCollectionCoherenceResponse> | undefined): boolean;
2815
3020
  }
2816
3021
 
2817
- export { ActivityItem, AggregateMemoryRequest, AlternativeTitleRequest, AlternativeTitleResponse, AnalyzeImageRequest, AnalyzeImageResponse, Applicant, ApplicationEval, ApplicationScreeningRequest, ApplicationScreeningResponse, AudienceFitRequest, AudienceFitResponse, BriefResponse, CandidateReasoningRequest, CandidateReasoningResponse, ClassifyRejectionFeedbackRequest, ClassifyRejectionFeedbackResponse, ClassifyUserFeedbackRequest, ClassifyUserFeedbackResponse, ClickbaitProbabilityRequest, ClickbaitProbabilityResponse, ClusterReconciliationRequest, ClusterReconciliationResponse, CollectionPostInput, ContentFormat, ContextBuildingStrategy, EnrichRequest, EnrichResponse, EnrichResponseV2, FeedbackCategory, FeedbackClassification, FeedbackPlatform, FeedbackSentiment, FeedbackUrgency, FilterSearchRequest, FilterSearchResponse, FindCompanyNewsRequest, FindCompanyNewsResponse, FindContactActivityRequest, FindContactActivityResponse, FindJobVacanciesRequest, FindJobVacanciesResponse, GenerateCollectionRequest, GenerateCollectionResponse, GenerateRecruiterEmailRequest, GenerateRecruiterEmailResponse, GenerateTagsResponse, IsPageInCacheRequest, IsPageInCacheResponse, JobPostDimensions, JobPostEnrichRequest, JobPostEnrichResponse, JobVacancy, MemoryRequest, MemoryResponse, MultipleSearchQueriesResponse, NewsItem, ParseCVRequest, ParseCVResponse, ParseError, ParseFeedbackRequest, ParseFeedbackResponse, ParseOpportunityRequest, ParseOpportunityResponse, PersonalizedBriefingRequest, PostDimensions, PostDimensionsV2, ProcessIsolatedRequest, ProcessStoriesResponse, RecruiterOpportunity, RejectionFeedbackClassification, RejectionReason, RejectionReasonDetail, ScrapedPage, ScreeningQuestionsRequest, ScreeningQuestionsResponse, SearchAnswerRequest, SearchPromptRequest, SearchPromptResponse, SearchPromptV2Request, SearchQueryRequest, SearchQueryResponse, SimpleParseCVRequest, SimpleParseCVResponse, SmartPromptRequest, StoryAnalysisRequest, StoryDeduplicationRequest, StoryDeduplicationResponse, Tag, TagSeniorityRequest, TagSeniorityResponse, ValidateCollectionCoherenceRequest, ValidateCollectionCoherenceResponse, WarmIntroRequest, WarmIntroResponse };
3022
+ export { ActivityItem, AggregateMemoryRequest, AlternativeTitleRequest, AlternativeTitleResponse, AnalyzeImageRequest, AnalyzeImageResponse, Applicant, ApplicationEval, ApplicationScreeningRequest, ApplicationScreeningResponse, AudienceFitRequest, AudienceFitResponse, BriefResponse, CandidateReasoningRequest, CandidateReasoningResponse, ClassifyRejectionFeedbackRequest, ClassifyRejectionFeedbackResponse, ClassifyUserFeedbackRequest, ClassifyUserFeedbackResponse, ClickbaitProbabilityRequest, ClickbaitProbabilityResponse, ClusterReconciliationRequest, ClusterReconciliationResponse, CollectionPostInput, ContentFormat, ContextBuildingStrategy, EnrichRequest, EnrichResponse, EnrichResponseV2, EntitySentimentClassification, ExtractedProfileTag, FeedbackCategory, FeedbackClassification, FeedbackPlatform, FeedbackSentiment, FeedbackUrgency, FilterSearchRequest, FilterSearchResponse, FindCompanyNewsRequest, FindCompanyNewsResponse, FindContactActivityRequest, FindContactActivityResponse, FindJobVacanciesRequest, FindJobVacanciesResponse, GenerateCollectionRequest, GenerateCollectionResponse, GenerateRecruiterEmailRequest, GenerateRecruiterEmailResponse, GenerateTagsResponse, GitHubProfileTagsRequest, GitHubProfileTagsResponse, IsPageInCacheRequest, IsPageInCacheResponse, JobPostDimensions, JobPostEnrichRequest, JobPostEnrichResponse, JobVacancy, MemoryRequest, MemoryResponse, MultipleSearchQueriesResponse, NewsItem, ParseCVRequest, ParseCVResponse, ParseError, ParseFeedbackRequest, ParseFeedbackResponse, ParseOpportunityRequest, ParseOpportunityResponse, PersonalizedBriefingRequest, PostDimensions, PostDimensionsV2, ProcessIsolatedRequest, ProcessStoriesResponse, RecruiterOpportunity, RejectionFeedbackClassification, RejectionReason, RejectionReasonDetail, ScrapedPage, ScreeningQuestionsRequest, ScreeningQuestionsResponse, SearchAnswerRequest, SearchPromptRequest, SearchPromptResponse, SearchPromptV2Request, SearchQueryRequest, SearchQueryResponse, SentimentAnalysisRequest, SentimentAnalysisResponse, SentimentLabel, SimpleParseCVRequest, SimpleParseCVResponse, SmartPromptRequest, StoryAnalysisRequest, StoryDeduplicationRequest, StoryDeduplicationResponse, Tag, TagSeniorityRequest, TagSeniorityResponse, ValidateCollectionCoherenceRequest, ValidateCollectionCoherenceResponse, WarmIntroRequest, WarmIntroResponse };
@@ -210,6 +210,31 @@ declare enum RejectionReason {
210
210
  */
211
211
  OTHER = 10
212
212
  }
213
+ /**
214
+ * @generated from enum bragi.pipelines.SentimentLabel
215
+ */
216
+ declare enum SentimentLabel {
217
+ /**
218
+ * @generated from enum value: SENTIMENT_LABEL_UNSPECIFIED = 0;
219
+ */
220
+ UNSPECIFIED = 0,
221
+ /**
222
+ * @generated from enum value: SENTIMENT_LABEL_POSITIVE = 1;
223
+ */
224
+ POSITIVE = 1,
225
+ /**
226
+ * @generated from enum value: SENTIMENT_LABEL_NEUTRAL = 2;
227
+ */
228
+ NEUTRAL = 2,
229
+ /**
230
+ * @generated from enum value: SENTIMENT_LABEL_NEGATIVE = 3;
231
+ */
232
+ NEGATIVE = 3,
233
+ /**
234
+ * @generated from enum value: SENTIMENT_LABEL_MIXED = 4;
235
+ */
236
+ MIXED = 4
237
+ }
213
238
  /**
214
239
  * @generated from message bragi.pipelines.EnrichRequest
215
240
  */
@@ -364,6 +389,20 @@ declare class PostDimensionsV2 extends Message<PostDimensionsV2> {
364
389
  * @generated from field: repeated string channels = 12;
365
390
  */
366
391
  channels: string[];
392
+ /**
393
+ * Topic diversity signals
394
+ *
395
+ * Concise description of the post's specific subject
396
+ *
397
+ * @generated from field: string topic_summary = 13;
398
+ */
399
+ topicSummary: string;
400
+ /**
401
+ * Author's position or perspective on the topic
402
+ *
403
+ * @generated from field: string stance = 14;
404
+ */
405
+ stance: string;
367
406
  constructor(data?: PartialMessage<PostDimensionsV2>);
368
407
  static readonly runtime: typeof proto3;
369
408
  static readonly typeName = "bragi.pipelines.PostDimensionsV2";
@@ -1239,6 +1278,10 @@ declare class PersonalizedBriefingRequest extends Message<PersonalizedBriefingRe
1239
1278
  * @generated from field: optional briefing.Briefing recent_briefing = 4;
1240
1279
  */
1241
1280
  recentBriefing?: Briefing;
1281
+ /**
1282
+ * @generated from field: repeated string blocked_tags = 5;
1283
+ */
1284
+ blockedTags: string[];
1242
1285
  constructor(data?: PartialMessage<PersonalizedBriefingRequest>);
1243
1286
  static readonly runtime: typeof proto3;
1244
1287
  static readonly typeName = "bragi.pipelines.PersonalizedBriefingRequest";
@@ -1969,6 +2012,81 @@ declare class TagSeniorityRequest extends Message<TagSeniorityRequest> {
1969
2012
  static fromJsonString(jsonString: string, options?: Partial<JsonReadOptions>): TagSeniorityRequest;
1970
2013
  static equals(a: TagSeniorityRequest | PlainMessage<TagSeniorityRequest> | undefined, b: TagSeniorityRequest | PlainMessage<TagSeniorityRequest> | undefined): boolean;
1971
2014
  }
2015
+ /**
2016
+ * @generated from message bragi.pipelines.GitHubProfileTagsRequest
2017
+ */
2018
+ declare class GitHubProfileTagsRequest extends Message<GitHubProfileTagsRequest> {
2019
+ /**
2020
+ * GitHub personal access token to fetch profile signals
2021
+ *
2022
+ * @generated from field: string github_personal_token = 1;
2023
+ */
2024
+ githubPersonalToken: string;
2025
+ /**
2026
+ * vocabulary used to extract profile tags
2027
+ *
2028
+ * @generated from field: repeated string tag_vocabulary = 2;
2029
+ */
2030
+ tagVocabulary: string[];
2031
+ constructor(data?: PartialMessage<GitHubProfileTagsRequest>);
2032
+ static readonly runtime: typeof proto3;
2033
+ static readonly typeName = "bragi.pipelines.GitHubProfileTagsRequest";
2034
+ static readonly fields: FieldList;
2035
+ static fromBinary(bytes: Uint8Array, options?: Partial<BinaryReadOptions>): GitHubProfileTagsRequest;
2036
+ static fromJson(jsonValue: JsonValue, options?: Partial<JsonReadOptions>): GitHubProfileTagsRequest;
2037
+ static fromJsonString(jsonString: string, options?: Partial<JsonReadOptions>): GitHubProfileTagsRequest;
2038
+ static equals(a: GitHubProfileTagsRequest | PlainMessage<GitHubProfileTagsRequest> | undefined, b: GitHubProfileTagsRequest | PlainMessage<GitHubProfileTagsRequest> | undefined): boolean;
2039
+ }
2040
+ /**
2041
+ * @generated from message bragi.pipelines.ExtractedProfileTag
2042
+ */
2043
+ declare class ExtractedProfileTag extends Message<ExtractedProfileTag> {
2044
+ /**
2045
+ * extracted tag from the GitHub profile
2046
+ *
2047
+ * @generated from field: string name = 1;
2048
+ */
2049
+ name: string;
2050
+ /**
2051
+ * confidence score [0..1]
2052
+ *
2053
+ * @generated from field: float confidence = 2;
2054
+ */
2055
+ confidence: number;
2056
+ constructor(data?: PartialMessage<ExtractedProfileTag>);
2057
+ static readonly runtime: typeof proto3;
2058
+ static readonly typeName = "bragi.pipelines.ExtractedProfileTag";
2059
+ static readonly fields: FieldList;
2060
+ static fromBinary(bytes: Uint8Array, options?: Partial<BinaryReadOptions>): ExtractedProfileTag;
2061
+ static fromJson(jsonValue: JsonValue, options?: Partial<JsonReadOptions>): ExtractedProfileTag;
2062
+ static fromJsonString(jsonString: string, options?: Partial<JsonReadOptions>): ExtractedProfileTag;
2063
+ static equals(a: ExtractedProfileTag | PlainMessage<ExtractedProfileTag> | undefined, b: ExtractedProfileTag | PlainMessage<ExtractedProfileTag> | undefined): boolean;
2064
+ }
2065
+ /**
2066
+ * @generated from message bragi.pipelines.GitHubProfileTagsResponse
2067
+ */
2068
+ declare class GitHubProfileTagsResponse extends Message<GitHubProfileTagsResponse> {
2069
+ /**
2070
+ * Operation id
2071
+ *
2072
+ * @generated from field: string id = 1;
2073
+ */
2074
+ id: string;
2075
+ /**
2076
+ * tags found in the profile
2077
+ *
2078
+ * @generated from field: repeated bragi.pipelines.ExtractedProfileTag extracted_tags = 2;
2079
+ */
2080
+ extractedTags: ExtractedProfileTag[];
2081
+ constructor(data?: PartialMessage<GitHubProfileTagsResponse>);
2082
+ static readonly runtime: typeof proto3;
2083
+ static readonly typeName = "bragi.pipelines.GitHubProfileTagsResponse";
2084
+ static readonly fields: FieldList;
2085
+ static fromBinary(bytes: Uint8Array, options?: Partial<BinaryReadOptions>): GitHubProfileTagsResponse;
2086
+ static fromJson(jsonValue: JsonValue, options?: Partial<JsonReadOptions>): GitHubProfileTagsResponse;
2087
+ static fromJsonString(jsonString: string, options?: Partial<JsonReadOptions>): GitHubProfileTagsResponse;
2088
+ static equals(a: GitHubProfileTagsResponse | PlainMessage<GitHubProfileTagsResponse> | undefined, b: GitHubProfileTagsResponse | PlainMessage<GitHubProfileTagsResponse> | undefined): boolean;
2089
+ }
1972
2090
  /**
1973
2091
  * @generated from message bragi.pipelines.SimpleParseCVRequest
1974
2092
  */
@@ -2291,6 +2409,93 @@ declare class ClassifyRejectionFeedbackResponse extends Message<ClassifyRejectio
2291
2409
  static fromJsonString(jsonString: string, options?: Partial<JsonReadOptions>): ClassifyRejectionFeedbackResponse;
2292
2410
  static equals(a: ClassifyRejectionFeedbackResponse | PlainMessage<ClassifyRejectionFeedbackResponse> | undefined, b: ClassifyRejectionFeedbackResponse | PlainMessage<ClassifyRejectionFeedbackResponse> | undefined): boolean;
2293
2411
  }
2412
+ /**
2413
+ * @generated from message bragi.pipelines.EntitySentimentClassification
2414
+ */
2415
+ declare class EntitySentimentClassification extends Message<EntitySentimentClassification> {
2416
+ /**
2417
+ * Canonical entity selected from request entities
2418
+ *
2419
+ * @generated from field: string entity = 1;
2420
+ */
2421
+ entity: string;
2422
+ /**
2423
+ * Sentiment for this entity in the item text
2424
+ *
2425
+ * @generated from field: bragi.pipelines.SentimentLabel sentiment = 2;
2426
+ */
2427
+ sentiment: SentimentLabel;
2428
+ /**
2429
+ * Confidence estimate [0..1]
2430
+ *
2431
+ * @generated from field: float confidence = 3;
2432
+ */
2433
+ confidence: number;
2434
+ constructor(data?: PartialMessage<EntitySentimentClassification>);
2435
+ static readonly runtime: typeof proto3;
2436
+ static readonly typeName = "bragi.pipelines.EntitySentimentClassification";
2437
+ static readonly fields: FieldList;
2438
+ static fromBinary(bytes: Uint8Array, options?: Partial<BinaryReadOptions>): EntitySentimentClassification;
2439
+ static fromJson(jsonValue: JsonValue, options?: Partial<JsonReadOptions>): EntitySentimentClassification;
2440
+ static fromJsonString(jsonString: string, options?: Partial<JsonReadOptions>): EntitySentimentClassification;
2441
+ static equals(a: EntitySentimentClassification | PlainMessage<EntitySentimentClassification> | undefined, b: EntitySentimentClassification | PlainMessage<EntitySentimentClassification> | undefined): boolean;
2442
+ }
2443
+ /**
2444
+ * @generated from message bragi.pipelines.SentimentAnalysisRequest
2445
+ */
2446
+ declare class SentimentAnalysisRequest extends Message<SentimentAnalysisRequest> {
2447
+ /**
2448
+ * Source text to classify
2449
+ *
2450
+ * @generated from field: string text = 1;
2451
+ */
2452
+ text: string;
2453
+ /**
2454
+ * Candidate entities to classify against
2455
+ *
2456
+ * @generated from field: repeated string entities = 2;
2457
+ */
2458
+ entities: string[];
2459
+ constructor(data?: PartialMessage<SentimentAnalysisRequest>);
2460
+ static readonly runtime: typeof proto3;
2461
+ static readonly typeName = "bragi.pipelines.SentimentAnalysisRequest";
2462
+ static readonly fields: FieldList;
2463
+ static fromBinary(bytes: Uint8Array, options?: Partial<BinaryReadOptions>): SentimentAnalysisRequest;
2464
+ static fromJson(jsonValue: JsonValue, options?: Partial<JsonReadOptions>): SentimentAnalysisRequest;
2465
+ static fromJsonString(jsonString: string, options?: Partial<JsonReadOptions>): SentimentAnalysisRequest;
2466
+ static equals(a: SentimentAnalysisRequest | PlainMessage<SentimentAnalysisRequest> | undefined, b: SentimentAnalysisRequest | PlainMessage<SentimentAnalysisRequest> | undefined): boolean;
2467
+ }
2468
+ /**
2469
+ * @generated from message bragi.pipelines.SentimentAnalysisResponse
2470
+ */
2471
+ declare class SentimentAnalysisResponse extends Message<SentimentAnalysisResponse> {
2472
+ /**
2473
+ * Operation id
2474
+ *
2475
+ * @generated from field: string id = 1;
2476
+ */
2477
+ id: string;
2478
+ /**
2479
+ * Model used for classification
2480
+ *
2481
+ * @generated from field: string model = 2;
2482
+ */
2483
+ model: string;
2484
+ /**
2485
+ * Empty when text is not relevant to any of the provided entities.
2486
+ *
2487
+ * @generated from field: repeated bragi.pipelines.EntitySentimentClassification classifications = 3;
2488
+ */
2489
+ classifications: EntitySentimentClassification[];
2490
+ constructor(data?: PartialMessage<SentimentAnalysisResponse>);
2491
+ static readonly runtime: typeof proto3;
2492
+ static readonly typeName = "bragi.pipelines.SentimentAnalysisResponse";
2493
+ static readonly fields: FieldList;
2494
+ static fromBinary(bytes: Uint8Array, options?: Partial<BinaryReadOptions>): SentimentAnalysisResponse;
2495
+ static fromJson(jsonValue: JsonValue, options?: Partial<JsonReadOptions>): SentimentAnalysisResponse;
2496
+ static fromJsonString(jsonString: string, options?: Partial<JsonReadOptions>): SentimentAnalysisResponse;
2497
+ static equals(a: SentimentAnalysisResponse | PlainMessage<SentimentAnalysisResponse> | undefined, b: SentimentAnalysisResponse | PlainMessage<SentimentAnalysisResponse> | undefined): boolean;
2498
+ }
2294
2499
  /**
2295
2500
  * Represents a job vacancy found on a company website
2296
2501
  *
@@ -2814,4 +3019,4 @@ declare class ValidateCollectionCoherenceResponse extends Message<ValidateCollec
2814
3019
  static equals(a: ValidateCollectionCoherenceResponse | PlainMessage<ValidateCollectionCoherenceResponse> | undefined, b: ValidateCollectionCoherenceResponse | PlainMessage<ValidateCollectionCoherenceResponse> | undefined): boolean;
2815
3020
  }
2816
3021
 
2817
- export { ActivityItem, AggregateMemoryRequest, AlternativeTitleRequest, AlternativeTitleResponse, AnalyzeImageRequest, AnalyzeImageResponse, Applicant, ApplicationEval, ApplicationScreeningRequest, ApplicationScreeningResponse, AudienceFitRequest, AudienceFitResponse, BriefResponse, CandidateReasoningRequest, CandidateReasoningResponse, ClassifyRejectionFeedbackRequest, ClassifyRejectionFeedbackResponse, ClassifyUserFeedbackRequest, ClassifyUserFeedbackResponse, ClickbaitProbabilityRequest, ClickbaitProbabilityResponse, ClusterReconciliationRequest, ClusterReconciliationResponse, CollectionPostInput, ContentFormat, ContextBuildingStrategy, EnrichRequest, EnrichResponse, EnrichResponseV2, FeedbackCategory, FeedbackClassification, FeedbackPlatform, FeedbackSentiment, FeedbackUrgency, FilterSearchRequest, FilterSearchResponse, FindCompanyNewsRequest, FindCompanyNewsResponse, FindContactActivityRequest, FindContactActivityResponse, FindJobVacanciesRequest, FindJobVacanciesResponse, GenerateCollectionRequest, GenerateCollectionResponse, GenerateRecruiterEmailRequest, GenerateRecruiterEmailResponse, GenerateTagsResponse, IsPageInCacheRequest, IsPageInCacheResponse, JobPostDimensions, JobPostEnrichRequest, JobPostEnrichResponse, JobVacancy, MemoryRequest, MemoryResponse, MultipleSearchQueriesResponse, NewsItem, ParseCVRequest, ParseCVResponse, ParseError, ParseFeedbackRequest, ParseFeedbackResponse, ParseOpportunityRequest, ParseOpportunityResponse, PersonalizedBriefingRequest, PostDimensions, PostDimensionsV2, ProcessIsolatedRequest, ProcessStoriesResponse, RecruiterOpportunity, RejectionFeedbackClassification, RejectionReason, RejectionReasonDetail, ScrapedPage, ScreeningQuestionsRequest, ScreeningQuestionsResponse, SearchAnswerRequest, SearchPromptRequest, SearchPromptResponse, SearchPromptV2Request, SearchQueryRequest, SearchQueryResponse, SimpleParseCVRequest, SimpleParseCVResponse, SmartPromptRequest, StoryAnalysisRequest, StoryDeduplicationRequest, StoryDeduplicationResponse, Tag, TagSeniorityRequest, TagSeniorityResponse, ValidateCollectionCoherenceRequest, ValidateCollectionCoherenceResponse, WarmIntroRequest, WarmIntroResponse };
3022
+ export { ActivityItem, AggregateMemoryRequest, AlternativeTitleRequest, AlternativeTitleResponse, AnalyzeImageRequest, AnalyzeImageResponse, Applicant, ApplicationEval, ApplicationScreeningRequest, ApplicationScreeningResponse, AudienceFitRequest, AudienceFitResponse, BriefResponse, CandidateReasoningRequest, CandidateReasoningResponse, ClassifyRejectionFeedbackRequest, ClassifyRejectionFeedbackResponse, ClassifyUserFeedbackRequest, ClassifyUserFeedbackResponse, ClickbaitProbabilityRequest, ClickbaitProbabilityResponse, ClusterReconciliationRequest, ClusterReconciliationResponse, CollectionPostInput, ContentFormat, ContextBuildingStrategy, EnrichRequest, EnrichResponse, EnrichResponseV2, EntitySentimentClassification, ExtractedProfileTag, FeedbackCategory, FeedbackClassification, FeedbackPlatform, FeedbackSentiment, FeedbackUrgency, FilterSearchRequest, FilterSearchResponse, FindCompanyNewsRequest, FindCompanyNewsResponse, FindContactActivityRequest, FindContactActivityResponse, FindJobVacanciesRequest, FindJobVacanciesResponse, GenerateCollectionRequest, GenerateCollectionResponse, GenerateRecruiterEmailRequest, GenerateRecruiterEmailResponse, GenerateTagsResponse, GitHubProfileTagsRequest, GitHubProfileTagsResponse, IsPageInCacheRequest, IsPageInCacheResponse, JobPostDimensions, JobPostEnrichRequest, JobPostEnrichResponse, JobVacancy, MemoryRequest, MemoryResponse, MultipleSearchQueriesResponse, NewsItem, ParseCVRequest, ParseCVResponse, ParseError, ParseFeedbackRequest, ParseFeedbackResponse, ParseOpportunityRequest, ParseOpportunityResponse, PersonalizedBriefingRequest, PostDimensions, PostDimensionsV2, ProcessIsolatedRequest, ProcessStoriesResponse, RecruiterOpportunity, RejectionFeedbackClassification, RejectionReason, RejectionReasonDetail, ScrapedPage, ScreeningQuestionsRequest, ScreeningQuestionsResponse, SearchAnswerRequest, SearchPromptRequest, SearchPromptResponse, SearchPromptV2Request, SearchQueryRequest, SearchQueryResponse, SentimentAnalysisRequest, SentimentAnalysisResponse, SentimentLabel, SimpleParseCVRequest, SimpleParseCVResponse, SmartPromptRequest, StoryAnalysisRequest, StoryDeduplicationRequest, StoryDeduplicationResponse, Tag, TagSeniorityRequest, TagSeniorityResponse, ValidateCollectionCoherenceRequest, ValidateCollectionCoherenceResponse, WarmIntroRequest, WarmIntroResponse };