@dailydotdev/schema 0.2.75 → 0.2.77
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/bragi/pipelines_connect.cjs +1 -1
- package/dist/bragi/pipelines_connect.d.cts +23 -1
- package/dist/bragi/pipelines_connect.d.ts +23 -1
- package/dist/bragi/pipelines_connect.js +1 -1
- package/dist/bragi/pipelines_pb.cjs +1 -1
- package/dist/bragi/pipelines_pb.d.cts +163 -1
- package/dist/bragi/pipelines_pb.d.ts +163 -1
- package/dist/bragi/pipelines_pb.js +1 -1
- package/dist/index.d.cts +1 -1
- package/dist/index.d.ts +1 -1
- package/package.json +1 -1
|
@@ -2132,6 +2132,50 @@ declare class GitHubProfileTagsResponse extends Message<GitHubProfileTagsRespons
|
|
|
2132
2132
|
static fromJsonString(jsonString: string, options?: Partial<JsonReadOptions>): GitHubProfileTagsResponse;
|
|
2133
2133
|
static equals(a: GitHubProfileTagsResponse | PlainMessage<GitHubProfileTagsResponse> | undefined, b: GitHubProfileTagsResponse | PlainMessage<GitHubProfileTagsResponse> | undefined): boolean;
|
|
2134
2134
|
}
|
|
2135
|
+
/**
|
|
2136
|
+
* @generated from message bragi.pipelines.OnboardingProfileTagsRequest
|
|
2137
|
+
*/
|
|
2138
|
+
declare class OnboardingProfileTagsRequest extends Message<OnboardingProfileTagsRequest> {
|
|
2139
|
+
/**
|
|
2140
|
+
* User input prompt describing interests and topics
|
|
2141
|
+
*
|
|
2142
|
+
* @generated from field: string onboarding_prompt = 1;
|
|
2143
|
+
*/
|
|
2144
|
+
onboardingPrompt: string;
|
|
2145
|
+
constructor(data?: PartialMessage<OnboardingProfileTagsRequest>);
|
|
2146
|
+
static readonly runtime: typeof proto3;
|
|
2147
|
+
static readonly typeName = "bragi.pipelines.OnboardingProfileTagsRequest";
|
|
2148
|
+
static readonly fields: FieldList;
|
|
2149
|
+
static fromBinary(bytes: Uint8Array, options?: Partial<BinaryReadOptions>): OnboardingProfileTagsRequest;
|
|
2150
|
+
static fromJson(jsonValue: JsonValue, options?: Partial<JsonReadOptions>): OnboardingProfileTagsRequest;
|
|
2151
|
+
static fromJsonString(jsonString: string, options?: Partial<JsonReadOptions>): OnboardingProfileTagsRequest;
|
|
2152
|
+
static equals(a: OnboardingProfileTagsRequest | PlainMessage<OnboardingProfileTagsRequest> | undefined, b: OnboardingProfileTagsRequest | PlainMessage<OnboardingProfileTagsRequest> | undefined): boolean;
|
|
2153
|
+
}
|
|
2154
|
+
/**
|
|
2155
|
+
* @generated from message bragi.pipelines.OnboardingProfileTagsResponse
|
|
2156
|
+
*/
|
|
2157
|
+
declare class OnboardingProfileTagsResponse extends Message<OnboardingProfileTagsResponse> {
|
|
2158
|
+
/**
|
|
2159
|
+
* Operation id
|
|
2160
|
+
*
|
|
2161
|
+
* @generated from field: string id = 1;
|
|
2162
|
+
*/
|
|
2163
|
+
id: string;
|
|
2164
|
+
/**
|
|
2165
|
+
* tags found in the onboarding prompt
|
|
2166
|
+
*
|
|
2167
|
+
* @generated from field: repeated bragi.pipelines.ExtractedProfileTag extracted_tags = 2;
|
|
2168
|
+
*/
|
|
2169
|
+
extractedTags: ExtractedProfileTag[];
|
|
2170
|
+
constructor(data?: PartialMessage<OnboardingProfileTagsResponse>);
|
|
2171
|
+
static readonly runtime: typeof proto3;
|
|
2172
|
+
static readonly typeName = "bragi.pipelines.OnboardingProfileTagsResponse";
|
|
2173
|
+
static readonly fields: FieldList;
|
|
2174
|
+
static fromBinary(bytes: Uint8Array, options?: Partial<BinaryReadOptions>): OnboardingProfileTagsResponse;
|
|
2175
|
+
static fromJson(jsonValue: JsonValue, options?: Partial<JsonReadOptions>): OnboardingProfileTagsResponse;
|
|
2176
|
+
static fromJsonString(jsonString: string, options?: Partial<JsonReadOptions>): OnboardingProfileTagsResponse;
|
|
2177
|
+
static equals(a: OnboardingProfileTagsResponse | PlainMessage<OnboardingProfileTagsResponse> | undefined, b: OnboardingProfileTagsResponse | PlainMessage<OnboardingProfileTagsResponse> | undefined): boolean;
|
|
2178
|
+
}
|
|
2135
2179
|
/**
|
|
2136
2180
|
* @generated from message bragi.pipelines.SimpleParseCVRequest
|
|
2137
2181
|
*/
|
|
@@ -2591,6 +2635,124 @@ declare class SentimentAnalysisResponse extends Message<SentimentAnalysisRespons
|
|
|
2591
2635
|
static fromJsonString(jsonString: string, options?: Partial<JsonReadOptions>): SentimentAnalysisResponse;
|
|
2592
2636
|
static equals(a: SentimentAnalysisResponse | PlainMessage<SentimentAnalysisResponse> | undefined, b: SentimentAnalysisResponse | PlainMessage<SentimentAnalysisResponse> | undefined): boolean;
|
|
2593
2637
|
}
|
|
2638
|
+
/**
|
|
2639
|
+
* @generated from message bragi.pipelines.SentimentDigestRequest
|
|
2640
|
+
*/
|
|
2641
|
+
declare class SentimentDigestRequest extends Message<SentimentDigestRequest> {
|
|
2642
|
+
/**
|
|
2643
|
+
* Date being summarized (YYYY-MM-DD)
|
|
2644
|
+
*
|
|
2645
|
+
* @generated from field: string date = 1;
|
|
2646
|
+
*/
|
|
2647
|
+
date: string;
|
|
2648
|
+
/**
|
|
2649
|
+
* Sentiment highlights from the last 24h
|
|
2650
|
+
*
|
|
2651
|
+
* @generated from field: repeated bragi.pipelines.SentimentDigestItem sentiment_items = 2;
|
|
2652
|
+
*/
|
|
2653
|
+
sentimentItems: SentimentDigestItem[];
|
|
2654
|
+
/**
|
|
2655
|
+
* Related posts from the last 24h
|
|
2656
|
+
*
|
|
2657
|
+
* @generated from field: repeated bragi.pipelines.SentimentDigestPost posts = 3;
|
|
2658
|
+
*/
|
|
2659
|
+
posts: SentimentDigestPost[];
|
|
2660
|
+
constructor(data?: PartialMessage<SentimentDigestRequest>);
|
|
2661
|
+
static readonly runtime: typeof proto3;
|
|
2662
|
+
static readonly typeName = "bragi.pipelines.SentimentDigestRequest";
|
|
2663
|
+
static readonly fields: FieldList;
|
|
2664
|
+
static fromBinary(bytes: Uint8Array, options?: Partial<BinaryReadOptions>): SentimentDigestRequest;
|
|
2665
|
+
static fromJson(jsonValue: JsonValue, options?: Partial<JsonReadOptions>): SentimentDigestRequest;
|
|
2666
|
+
static fromJsonString(jsonString: string, options?: Partial<JsonReadOptions>): SentimentDigestRequest;
|
|
2667
|
+
static equals(a: SentimentDigestRequest | PlainMessage<SentimentDigestRequest> | undefined, b: SentimentDigestRequest | PlainMessage<SentimentDigestRequest> | undefined): boolean;
|
|
2668
|
+
}
|
|
2669
|
+
/**
|
|
2670
|
+
* @generated from message bragi.pipelines.SentimentDigestItem
|
|
2671
|
+
*/
|
|
2672
|
+
declare class SentimentDigestItem extends Message<SentimentDigestItem> {
|
|
2673
|
+
/**
|
|
2674
|
+
* Item text content
|
|
2675
|
+
*
|
|
2676
|
+
* @generated from field: string text = 1;
|
|
2677
|
+
*/
|
|
2678
|
+
text: string;
|
|
2679
|
+
/**
|
|
2680
|
+
* Source author handle
|
|
2681
|
+
*
|
|
2682
|
+
* @generated from field: string author_handle = 2;
|
|
2683
|
+
*/
|
|
2684
|
+
authorHandle: string;
|
|
2685
|
+
/**
|
|
2686
|
+
* Like count
|
|
2687
|
+
*
|
|
2688
|
+
* @generated from field: int32 likes = 3;
|
|
2689
|
+
*/
|
|
2690
|
+
likes: number;
|
|
2691
|
+
constructor(data?: PartialMessage<SentimentDigestItem>);
|
|
2692
|
+
static readonly runtime: typeof proto3;
|
|
2693
|
+
static readonly typeName = "bragi.pipelines.SentimentDigestItem";
|
|
2694
|
+
static readonly fields: FieldList;
|
|
2695
|
+
static fromBinary(bytes: Uint8Array, options?: Partial<BinaryReadOptions>): SentimentDigestItem;
|
|
2696
|
+
static fromJson(jsonValue: JsonValue, options?: Partial<JsonReadOptions>): SentimentDigestItem;
|
|
2697
|
+
static fromJsonString(jsonString: string, options?: Partial<JsonReadOptions>): SentimentDigestItem;
|
|
2698
|
+
static equals(a: SentimentDigestItem | PlainMessage<SentimentDigestItem> | undefined, b: SentimentDigestItem | PlainMessage<SentimentDigestItem> | undefined): boolean;
|
|
2699
|
+
}
|
|
2700
|
+
/**
|
|
2701
|
+
* @generated from message bragi.pipelines.SentimentDigestPost
|
|
2702
|
+
*/
|
|
2703
|
+
declare class SentimentDigestPost extends Message<SentimentDigestPost> {
|
|
2704
|
+
/**
|
|
2705
|
+
* Post title
|
|
2706
|
+
*
|
|
2707
|
+
* @generated from field: string title = 1;
|
|
2708
|
+
*/
|
|
2709
|
+
title: string;
|
|
2710
|
+
/**
|
|
2711
|
+
* Post summary (TLDR)
|
|
2712
|
+
*
|
|
2713
|
+
* @generated from field: string summary = 2;
|
|
2714
|
+
*/
|
|
2715
|
+
summary: string;
|
|
2716
|
+
constructor(data?: PartialMessage<SentimentDigestPost>);
|
|
2717
|
+
static readonly runtime: typeof proto3;
|
|
2718
|
+
static readonly typeName = "bragi.pipelines.SentimentDigestPost";
|
|
2719
|
+
static readonly fields: FieldList;
|
|
2720
|
+
static fromBinary(bytes: Uint8Array, options?: Partial<BinaryReadOptions>): SentimentDigestPost;
|
|
2721
|
+
static fromJson(jsonValue: JsonValue, options?: Partial<JsonReadOptions>): SentimentDigestPost;
|
|
2722
|
+
static fromJsonString(jsonString: string, options?: Partial<JsonReadOptions>): SentimentDigestPost;
|
|
2723
|
+
static equals(a: SentimentDigestPost | PlainMessage<SentimentDigestPost> | undefined, b: SentimentDigestPost | PlainMessage<SentimentDigestPost> | undefined): boolean;
|
|
2724
|
+
}
|
|
2725
|
+
/**
|
|
2726
|
+
* @generated from message bragi.pipelines.SentimentDigestResponse
|
|
2727
|
+
*/
|
|
2728
|
+
declare class SentimentDigestResponse extends Message<SentimentDigestResponse> {
|
|
2729
|
+
/**
|
|
2730
|
+
* Operation id
|
|
2731
|
+
*
|
|
2732
|
+
* @generated from field: string id = 1;
|
|
2733
|
+
*/
|
|
2734
|
+
id: string;
|
|
2735
|
+
/**
|
|
2736
|
+
* Generated digest title
|
|
2737
|
+
*
|
|
2738
|
+
* @generated from field: string title = 2;
|
|
2739
|
+
*/
|
|
2740
|
+
title: string;
|
|
2741
|
+
/**
|
|
2742
|
+
* Generated digest content
|
|
2743
|
+
*
|
|
2744
|
+
* @generated from field: string content = 3;
|
|
2745
|
+
*/
|
|
2746
|
+
content: string;
|
|
2747
|
+
constructor(data?: PartialMessage<SentimentDigestResponse>);
|
|
2748
|
+
static readonly runtime: typeof proto3;
|
|
2749
|
+
static readonly typeName = "bragi.pipelines.SentimentDigestResponse";
|
|
2750
|
+
static readonly fields: FieldList;
|
|
2751
|
+
static fromBinary(bytes: Uint8Array, options?: Partial<BinaryReadOptions>): SentimentDigestResponse;
|
|
2752
|
+
static fromJson(jsonValue: JsonValue, options?: Partial<JsonReadOptions>): SentimentDigestResponse;
|
|
2753
|
+
static fromJsonString(jsonString: string, options?: Partial<JsonReadOptions>): SentimentDigestResponse;
|
|
2754
|
+
static equals(a: SentimentDigestResponse | PlainMessage<SentimentDigestResponse> | undefined, b: SentimentDigestResponse | PlainMessage<SentimentDigestResponse> | undefined): boolean;
|
|
2755
|
+
}
|
|
2594
2756
|
/**
|
|
2595
2757
|
* Represents a job vacancy found on a company website
|
|
2596
2758
|
*
|
|
@@ -3114,4 +3276,4 @@ declare class ValidateCollectionCoherenceResponse extends Message<ValidateCollec
|
|
|
3114
3276
|
static equals(a: ValidateCollectionCoherenceResponse | PlainMessage<ValidateCollectionCoherenceResponse> | undefined, b: ValidateCollectionCoherenceResponse | PlainMessage<ValidateCollectionCoherenceResponse> | undefined): boolean;
|
|
3115
3277
|
}
|
|
3116
3278
|
|
|
3117
|
-
export { ActivityItem, AggregateMemoryRequest, AlternativeTitleRequest, AlternativeTitleResponse, AnalyzeImageRequest, AnalyzeImageResponse, Applicant, ApplicationEval, ApplicationScreeningRequest, ApplicationScreeningResponse, AudienceFitRequest, AudienceFitResponse, BriefResponse, CandidateReasoningRequest, CandidateReasoningResponse, ClassifyGearRequest, ClassifyGearResponse, 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, GearCategory, 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 };
|
|
3279
|
+
export { ActivityItem, AggregateMemoryRequest, AlternativeTitleRequest, AlternativeTitleResponse, AnalyzeImageRequest, AnalyzeImageResponse, Applicant, ApplicationEval, ApplicationScreeningRequest, ApplicationScreeningResponse, AudienceFitRequest, AudienceFitResponse, BriefResponse, CandidateReasoningRequest, CandidateReasoningResponse, ClassifyGearRequest, ClassifyGearResponse, 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, GearCategory, GenerateCollectionRequest, GenerateCollectionResponse, GenerateRecruiterEmailRequest, GenerateRecruiterEmailResponse, GenerateTagsResponse, GitHubProfileTagsRequest, GitHubProfileTagsResponse, IsPageInCacheRequest, IsPageInCacheResponse, JobPostDimensions, JobPostEnrichRequest, JobPostEnrichResponse, JobVacancy, MemoryRequest, MemoryResponse, MultipleSearchQueriesResponse, NewsItem, OnboardingProfileTagsRequest, OnboardingProfileTagsResponse, 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, SentimentDigestItem, SentimentDigestPost, SentimentDigestRequest, SentimentDigestResponse, SentimentLabel, SimpleParseCVRequest, SimpleParseCVResponse, SmartPromptRequest, StoryAnalysisRequest, StoryDeduplicationRequest, StoryDeduplicationResponse, Tag, TagSeniorityRequest, TagSeniorityResponse, ValidateCollectionCoherenceRequest, ValidateCollectionCoherenceResponse, WarmIntroRequest, WarmIntroResponse };
|
|
@@ -2132,6 +2132,50 @@ declare class GitHubProfileTagsResponse extends Message<GitHubProfileTagsRespons
|
|
|
2132
2132
|
static fromJsonString(jsonString: string, options?: Partial<JsonReadOptions>): GitHubProfileTagsResponse;
|
|
2133
2133
|
static equals(a: GitHubProfileTagsResponse | PlainMessage<GitHubProfileTagsResponse> | undefined, b: GitHubProfileTagsResponse | PlainMessage<GitHubProfileTagsResponse> | undefined): boolean;
|
|
2134
2134
|
}
|
|
2135
|
+
/**
|
|
2136
|
+
* @generated from message bragi.pipelines.OnboardingProfileTagsRequest
|
|
2137
|
+
*/
|
|
2138
|
+
declare class OnboardingProfileTagsRequest extends Message<OnboardingProfileTagsRequest> {
|
|
2139
|
+
/**
|
|
2140
|
+
* User input prompt describing interests and topics
|
|
2141
|
+
*
|
|
2142
|
+
* @generated from field: string onboarding_prompt = 1;
|
|
2143
|
+
*/
|
|
2144
|
+
onboardingPrompt: string;
|
|
2145
|
+
constructor(data?: PartialMessage<OnboardingProfileTagsRequest>);
|
|
2146
|
+
static readonly runtime: typeof proto3;
|
|
2147
|
+
static readonly typeName = "bragi.pipelines.OnboardingProfileTagsRequest";
|
|
2148
|
+
static readonly fields: FieldList;
|
|
2149
|
+
static fromBinary(bytes: Uint8Array, options?: Partial<BinaryReadOptions>): OnboardingProfileTagsRequest;
|
|
2150
|
+
static fromJson(jsonValue: JsonValue, options?: Partial<JsonReadOptions>): OnboardingProfileTagsRequest;
|
|
2151
|
+
static fromJsonString(jsonString: string, options?: Partial<JsonReadOptions>): OnboardingProfileTagsRequest;
|
|
2152
|
+
static equals(a: OnboardingProfileTagsRequest | PlainMessage<OnboardingProfileTagsRequest> | undefined, b: OnboardingProfileTagsRequest | PlainMessage<OnboardingProfileTagsRequest> | undefined): boolean;
|
|
2153
|
+
}
|
|
2154
|
+
/**
|
|
2155
|
+
* @generated from message bragi.pipelines.OnboardingProfileTagsResponse
|
|
2156
|
+
*/
|
|
2157
|
+
declare class OnboardingProfileTagsResponse extends Message<OnboardingProfileTagsResponse> {
|
|
2158
|
+
/**
|
|
2159
|
+
* Operation id
|
|
2160
|
+
*
|
|
2161
|
+
* @generated from field: string id = 1;
|
|
2162
|
+
*/
|
|
2163
|
+
id: string;
|
|
2164
|
+
/**
|
|
2165
|
+
* tags found in the onboarding prompt
|
|
2166
|
+
*
|
|
2167
|
+
* @generated from field: repeated bragi.pipelines.ExtractedProfileTag extracted_tags = 2;
|
|
2168
|
+
*/
|
|
2169
|
+
extractedTags: ExtractedProfileTag[];
|
|
2170
|
+
constructor(data?: PartialMessage<OnboardingProfileTagsResponse>);
|
|
2171
|
+
static readonly runtime: typeof proto3;
|
|
2172
|
+
static readonly typeName = "bragi.pipelines.OnboardingProfileTagsResponse";
|
|
2173
|
+
static readonly fields: FieldList;
|
|
2174
|
+
static fromBinary(bytes: Uint8Array, options?: Partial<BinaryReadOptions>): OnboardingProfileTagsResponse;
|
|
2175
|
+
static fromJson(jsonValue: JsonValue, options?: Partial<JsonReadOptions>): OnboardingProfileTagsResponse;
|
|
2176
|
+
static fromJsonString(jsonString: string, options?: Partial<JsonReadOptions>): OnboardingProfileTagsResponse;
|
|
2177
|
+
static equals(a: OnboardingProfileTagsResponse | PlainMessage<OnboardingProfileTagsResponse> | undefined, b: OnboardingProfileTagsResponse | PlainMessage<OnboardingProfileTagsResponse> | undefined): boolean;
|
|
2178
|
+
}
|
|
2135
2179
|
/**
|
|
2136
2180
|
* @generated from message bragi.pipelines.SimpleParseCVRequest
|
|
2137
2181
|
*/
|
|
@@ -2591,6 +2635,124 @@ declare class SentimentAnalysisResponse extends Message<SentimentAnalysisRespons
|
|
|
2591
2635
|
static fromJsonString(jsonString: string, options?: Partial<JsonReadOptions>): SentimentAnalysisResponse;
|
|
2592
2636
|
static equals(a: SentimentAnalysisResponse | PlainMessage<SentimentAnalysisResponse> | undefined, b: SentimentAnalysisResponse | PlainMessage<SentimentAnalysisResponse> | undefined): boolean;
|
|
2593
2637
|
}
|
|
2638
|
+
/**
|
|
2639
|
+
* @generated from message bragi.pipelines.SentimentDigestRequest
|
|
2640
|
+
*/
|
|
2641
|
+
declare class SentimentDigestRequest extends Message<SentimentDigestRequest> {
|
|
2642
|
+
/**
|
|
2643
|
+
* Date being summarized (YYYY-MM-DD)
|
|
2644
|
+
*
|
|
2645
|
+
* @generated from field: string date = 1;
|
|
2646
|
+
*/
|
|
2647
|
+
date: string;
|
|
2648
|
+
/**
|
|
2649
|
+
* Sentiment highlights from the last 24h
|
|
2650
|
+
*
|
|
2651
|
+
* @generated from field: repeated bragi.pipelines.SentimentDigestItem sentiment_items = 2;
|
|
2652
|
+
*/
|
|
2653
|
+
sentimentItems: SentimentDigestItem[];
|
|
2654
|
+
/**
|
|
2655
|
+
* Related posts from the last 24h
|
|
2656
|
+
*
|
|
2657
|
+
* @generated from field: repeated bragi.pipelines.SentimentDigestPost posts = 3;
|
|
2658
|
+
*/
|
|
2659
|
+
posts: SentimentDigestPost[];
|
|
2660
|
+
constructor(data?: PartialMessage<SentimentDigestRequest>);
|
|
2661
|
+
static readonly runtime: typeof proto3;
|
|
2662
|
+
static readonly typeName = "bragi.pipelines.SentimentDigestRequest";
|
|
2663
|
+
static readonly fields: FieldList;
|
|
2664
|
+
static fromBinary(bytes: Uint8Array, options?: Partial<BinaryReadOptions>): SentimentDigestRequest;
|
|
2665
|
+
static fromJson(jsonValue: JsonValue, options?: Partial<JsonReadOptions>): SentimentDigestRequest;
|
|
2666
|
+
static fromJsonString(jsonString: string, options?: Partial<JsonReadOptions>): SentimentDigestRequest;
|
|
2667
|
+
static equals(a: SentimentDigestRequest | PlainMessage<SentimentDigestRequest> | undefined, b: SentimentDigestRequest | PlainMessage<SentimentDigestRequest> | undefined): boolean;
|
|
2668
|
+
}
|
|
2669
|
+
/**
|
|
2670
|
+
* @generated from message bragi.pipelines.SentimentDigestItem
|
|
2671
|
+
*/
|
|
2672
|
+
declare class SentimentDigestItem extends Message<SentimentDigestItem> {
|
|
2673
|
+
/**
|
|
2674
|
+
* Item text content
|
|
2675
|
+
*
|
|
2676
|
+
* @generated from field: string text = 1;
|
|
2677
|
+
*/
|
|
2678
|
+
text: string;
|
|
2679
|
+
/**
|
|
2680
|
+
* Source author handle
|
|
2681
|
+
*
|
|
2682
|
+
* @generated from field: string author_handle = 2;
|
|
2683
|
+
*/
|
|
2684
|
+
authorHandle: string;
|
|
2685
|
+
/**
|
|
2686
|
+
* Like count
|
|
2687
|
+
*
|
|
2688
|
+
* @generated from field: int32 likes = 3;
|
|
2689
|
+
*/
|
|
2690
|
+
likes: number;
|
|
2691
|
+
constructor(data?: PartialMessage<SentimentDigestItem>);
|
|
2692
|
+
static readonly runtime: typeof proto3;
|
|
2693
|
+
static readonly typeName = "bragi.pipelines.SentimentDigestItem";
|
|
2694
|
+
static readonly fields: FieldList;
|
|
2695
|
+
static fromBinary(bytes: Uint8Array, options?: Partial<BinaryReadOptions>): SentimentDigestItem;
|
|
2696
|
+
static fromJson(jsonValue: JsonValue, options?: Partial<JsonReadOptions>): SentimentDigestItem;
|
|
2697
|
+
static fromJsonString(jsonString: string, options?: Partial<JsonReadOptions>): SentimentDigestItem;
|
|
2698
|
+
static equals(a: SentimentDigestItem | PlainMessage<SentimentDigestItem> | undefined, b: SentimentDigestItem | PlainMessage<SentimentDigestItem> | undefined): boolean;
|
|
2699
|
+
}
|
|
2700
|
+
/**
|
|
2701
|
+
* @generated from message bragi.pipelines.SentimentDigestPost
|
|
2702
|
+
*/
|
|
2703
|
+
declare class SentimentDigestPost extends Message<SentimentDigestPost> {
|
|
2704
|
+
/**
|
|
2705
|
+
* Post title
|
|
2706
|
+
*
|
|
2707
|
+
* @generated from field: string title = 1;
|
|
2708
|
+
*/
|
|
2709
|
+
title: string;
|
|
2710
|
+
/**
|
|
2711
|
+
* Post summary (TLDR)
|
|
2712
|
+
*
|
|
2713
|
+
* @generated from field: string summary = 2;
|
|
2714
|
+
*/
|
|
2715
|
+
summary: string;
|
|
2716
|
+
constructor(data?: PartialMessage<SentimentDigestPost>);
|
|
2717
|
+
static readonly runtime: typeof proto3;
|
|
2718
|
+
static readonly typeName = "bragi.pipelines.SentimentDigestPost";
|
|
2719
|
+
static readonly fields: FieldList;
|
|
2720
|
+
static fromBinary(bytes: Uint8Array, options?: Partial<BinaryReadOptions>): SentimentDigestPost;
|
|
2721
|
+
static fromJson(jsonValue: JsonValue, options?: Partial<JsonReadOptions>): SentimentDigestPost;
|
|
2722
|
+
static fromJsonString(jsonString: string, options?: Partial<JsonReadOptions>): SentimentDigestPost;
|
|
2723
|
+
static equals(a: SentimentDigestPost | PlainMessage<SentimentDigestPost> | undefined, b: SentimentDigestPost | PlainMessage<SentimentDigestPost> | undefined): boolean;
|
|
2724
|
+
}
|
|
2725
|
+
/**
|
|
2726
|
+
* @generated from message bragi.pipelines.SentimentDigestResponse
|
|
2727
|
+
*/
|
|
2728
|
+
declare class SentimentDigestResponse extends Message<SentimentDigestResponse> {
|
|
2729
|
+
/**
|
|
2730
|
+
* Operation id
|
|
2731
|
+
*
|
|
2732
|
+
* @generated from field: string id = 1;
|
|
2733
|
+
*/
|
|
2734
|
+
id: string;
|
|
2735
|
+
/**
|
|
2736
|
+
* Generated digest title
|
|
2737
|
+
*
|
|
2738
|
+
* @generated from field: string title = 2;
|
|
2739
|
+
*/
|
|
2740
|
+
title: string;
|
|
2741
|
+
/**
|
|
2742
|
+
* Generated digest content
|
|
2743
|
+
*
|
|
2744
|
+
* @generated from field: string content = 3;
|
|
2745
|
+
*/
|
|
2746
|
+
content: string;
|
|
2747
|
+
constructor(data?: PartialMessage<SentimentDigestResponse>);
|
|
2748
|
+
static readonly runtime: typeof proto3;
|
|
2749
|
+
static readonly typeName = "bragi.pipelines.SentimentDigestResponse";
|
|
2750
|
+
static readonly fields: FieldList;
|
|
2751
|
+
static fromBinary(bytes: Uint8Array, options?: Partial<BinaryReadOptions>): SentimentDigestResponse;
|
|
2752
|
+
static fromJson(jsonValue: JsonValue, options?: Partial<JsonReadOptions>): SentimentDigestResponse;
|
|
2753
|
+
static fromJsonString(jsonString: string, options?: Partial<JsonReadOptions>): SentimentDigestResponse;
|
|
2754
|
+
static equals(a: SentimentDigestResponse | PlainMessage<SentimentDigestResponse> | undefined, b: SentimentDigestResponse | PlainMessage<SentimentDigestResponse> | undefined): boolean;
|
|
2755
|
+
}
|
|
2594
2756
|
/**
|
|
2595
2757
|
* Represents a job vacancy found on a company website
|
|
2596
2758
|
*
|
|
@@ -3114,4 +3276,4 @@ declare class ValidateCollectionCoherenceResponse extends Message<ValidateCollec
|
|
|
3114
3276
|
static equals(a: ValidateCollectionCoherenceResponse | PlainMessage<ValidateCollectionCoherenceResponse> | undefined, b: ValidateCollectionCoherenceResponse | PlainMessage<ValidateCollectionCoherenceResponse> | undefined): boolean;
|
|
3115
3277
|
}
|
|
3116
3278
|
|
|
3117
|
-
export { ActivityItem, AggregateMemoryRequest, AlternativeTitleRequest, AlternativeTitleResponse, AnalyzeImageRequest, AnalyzeImageResponse, Applicant, ApplicationEval, ApplicationScreeningRequest, ApplicationScreeningResponse, AudienceFitRequest, AudienceFitResponse, BriefResponse, CandidateReasoningRequest, CandidateReasoningResponse, ClassifyGearRequest, ClassifyGearResponse, 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, GearCategory, 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 };
|
|
3279
|
+
export { ActivityItem, AggregateMemoryRequest, AlternativeTitleRequest, AlternativeTitleResponse, AnalyzeImageRequest, AnalyzeImageResponse, Applicant, ApplicationEval, ApplicationScreeningRequest, ApplicationScreeningResponse, AudienceFitRequest, AudienceFitResponse, BriefResponse, CandidateReasoningRequest, CandidateReasoningResponse, ClassifyGearRequest, ClassifyGearResponse, 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, GearCategory, GenerateCollectionRequest, GenerateCollectionResponse, GenerateRecruiterEmailRequest, GenerateRecruiterEmailResponse, GenerateTagsResponse, GitHubProfileTagsRequest, GitHubProfileTagsResponse, IsPageInCacheRequest, IsPageInCacheResponse, JobPostDimensions, JobPostEnrichRequest, JobPostEnrichResponse, JobVacancy, MemoryRequest, MemoryResponse, MultipleSearchQueriesResponse, NewsItem, OnboardingProfileTagsRequest, OnboardingProfileTagsResponse, 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, SentimentDigestItem, SentimentDigestPost, SentimentDigestRequest, SentimentDigestResponse, SentimentLabel, SimpleParseCVRequest, SimpleParseCVResponse, SmartPromptRequest, StoryAnalysisRequest, StoryDeduplicationRequest, StoryDeduplicationResponse, Tag, TagSeniorityRequest, TagSeniorityResponse, ValidateCollectionCoherenceRequest, ValidateCollectionCoherenceResponse, WarmIntroRequest, WarmIntroResponse };
|