@dailydotdev/schema 0.2.74 → 0.2.76

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.
@@ -159,6 +159,51 @@ declare enum FeedbackUrgency {
159
159
  */
160
160
  CRITICAL = 4
161
161
  }
162
+ /**
163
+ * @generated from enum bragi.pipelines.GearCategory
164
+ */
165
+ declare enum GearCategory {
166
+ /**
167
+ * @generated from enum value: GEAR_CATEGORY_UNSPECIFIED = 0;
168
+ */
169
+ UNSPECIFIED = 0,
170
+ /**
171
+ * @generated from enum value: GEAR_CATEGORY_COMPUTER = 1;
172
+ */
173
+ COMPUTER = 1,
174
+ /**
175
+ * @generated from enum value: GEAR_CATEGORY_MONITOR = 2;
176
+ */
177
+ MONITOR = 2,
178
+ /**
179
+ * @generated from enum value: GEAR_CATEGORY_KEYBOARD = 3;
180
+ */
181
+ KEYBOARD = 3,
182
+ /**
183
+ * @generated from enum value: GEAR_CATEGORY_MOUSE = 4;
184
+ */
185
+ MOUSE = 4,
186
+ /**
187
+ * @generated from enum value: GEAR_CATEGORY_HEADPHONES = 5;
188
+ */
189
+ HEADPHONES = 5,
190
+ /**
191
+ * @generated from enum value: GEAR_CATEGORY_DESK = 6;
192
+ */
193
+ DESK = 6,
194
+ /**
195
+ * @generated from enum value: GEAR_CATEGORY_WEBCAM = 7;
196
+ */
197
+ WEBCAM = 7,
198
+ /**
199
+ * @generated from enum value: GEAR_CATEGORY_MICROPHONE = 8;
200
+ */
201
+ MICROPHONE = 8,
202
+ /**
203
+ * @generated from enum value: GEAR_CATEGORY_OTHER = 9;
204
+ */
205
+ OTHER = 9
206
+ }
162
207
  /**
163
208
  * Standardized reasons for candidate rejection of a job opportunity match
164
209
  *
@@ -2218,6 +2263,56 @@ declare class ParseFeedbackResponse extends Message<ParseFeedbackResponse> {
2218
2263
  static fromJsonString(jsonString: string, options?: Partial<JsonReadOptions>): ParseFeedbackResponse;
2219
2264
  static equals(a: ParseFeedbackResponse | PlainMessage<ParseFeedbackResponse> | undefined, b: ParseFeedbackResponse | PlainMessage<ParseFeedbackResponse> | undefined): boolean;
2220
2265
  }
2266
+ /**
2267
+ * @generated from message bragi.pipelines.ClassifyGearRequest
2268
+ */
2269
+ declare class ClassifyGearRequest extends Message<ClassifyGearRequest> {
2270
+ /**
2271
+ * Raw gear name as entered by user
2272
+ *
2273
+ * @generated from field: string name = 1;
2274
+ */
2275
+ name: string;
2276
+ constructor(data?: PartialMessage<ClassifyGearRequest>);
2277
+ static readonly runtime: typeof proto3;
2278
+ static readonly typeName = "bragi.pipelines.ClassifyGearRequest";
2279
+ static readonly fields: FieldList;
2280
+ static fromBinary(bytes: Uint8Array, options?: Partial<BinaryReadOptions>): ClassifyGearRequest;
2281
+ static fromJson(jsonValue: JsonValue, options?: Partial<JsonReadOptions>): ClassifyGearRequest;
2282
+ static fromJsonString(jsonString: string, options?: Partial<JsonReadOptions>): ClassifyGearRequest;
2283
+ static equals(a: ClassifyGearRequest | PlainMessage<ClassifyGearRequest> | undefined, b: ClassifyGearRequest | PlainMessage<ClassifyGearRequest> | undefined): boolean;
2284
+ }
2285
+ /**
2286
+ * @generated from message bragi.pipelines.ClassifyGearResponse
2287
+ */
2288
+ declare class ClassifyGearResponse extends Message<ClassifyGearResponse> {
2289
+ /**
2290
+ * Operation id
2291
+ *
2292
+ * @generated from field: string id = 1;
2293
+ */
2294
+ id: string;
2295
+ /**
2296
+ * Classified category
2297
+ *
2298
+ * @generated from field: bragi.pipelines.GearCategory category = 2;
2299
+ */
2300
+ category: GearCategory;
2301
+ /**
2302
+ * Canonical product name for matching
2303
+ *
2304
+ * @generated from field: string normalized_name = 3;
2305
+ */
2306
+ normalizedName: string;
2307
+ constructor(data?: PartialMessage<ClassifyGearResponse>);
2308
+ static readonly runtime: typeof proto3;
2309
+ static readonly typeName = "bragi.pipelines.ClassifyGearResponse";
2310
+ static readonly fields: FieldList;
2311
+ static fromBinary(bytes: Uint8Array, options?: Partial<BinaryReadOptions>): ClassifyGearResponse;
2312
+ static fromJson(jsonValue: JsonValue, options?: Partial<JsonReadOptions>): ClassifyGearResponse;
2313
+ static fromJsonString(jsonString: string, options?: Partial<JsonReadOptions>): ClassifyGearResponse;
2314
+ static equals(a: ClassifyGearResponse | PlainMessage<ClassifyGearResponse> | undefined, b: ClassifyGearResponse | PlainMessage<ClassifyGearResponse> | undefined): boolean;
2315
+ }
2221
2316
  /**
2222
2317
  * Request to classify user feedback from widget
2223
2318
  *
@@ -2496,6 +2591,124 @@ declare class SentimentAnalysisResponse extends Message<SentimentAnalysisRespons
2496
2591
  static fromJsonString(jsonString: string, options?: Partial<JsonReadOptions>): SentimentAnalysisResponse;
2497
2592
  static equals(a: SentimentAnalysisResponse | PlainMessage<SentimentAnalysisResponse> | undefined, b: SentimentAnalysisResponse | PlainMessage<SentimentAnalysisResponse> | undefined): boolean;
2498
2593
  }
2594
+ /**
2595
+ * @generated from message bragi.pipelines.SentimentDigestRequest
2596
+ */
2597
+ declare class SentimentDigestRequest extends Message<SentimentDigestRequest> {
2598
+ /**
2599
+ * Date being summarized (YYYY-MM-DD)
2600
+ *
2601
+ * @generated from field: string date = 1;
2602
+ */
2603
+ date: string;
2604
+ /**
2605
+ * Sentiment highlights from the last 24h
2606
+ *
2607
+ * @generated from field: repeated bragi.pipelines.SentimentDigestItem sentiment_items = 2;
2608
+ */
2609
+ sentimentItems: SentimentDigestItem[];
2610
+ /**
2611
+ * Related posts from the last 24h
2612
+ *
2613
+ * @generated from field: repeated bragi.pipelines.SentimentDigestPost posts = 3;
2614
+ */
2615
+ posts: SentimentDigestPost[];
2616
+ constructor(data?: PartialMessage<SentimentDigestRequest>);
2617
+ static readonly runtime: typeof proto3;
2618
+ static readonly typeName = "bragi.pipelines.SentimentDigestRequest";
2619
+ static readonly fields: FieldList;
2620
+ static fromBinary(bytes: Uint8Array, options?: Partial<BinaryReadOptions>): SentimentDigestRequest;
2621
+ static fromJson(jsonValue: JsonValue, options?: Partial<JsonReadOptions>): SentimentDigestRequest;
2622
+ static fromJsonString(jsonString: string, options?: Partial<JsonReadOptions>): SentimentDigestRequest;
2623
+ static equals(a: SentimentDigestRequest | PlainMessage<SentimentDigestRequest> | undefined, b: SentimentDigestRequest | PlainMessage<SentimentDigestRequest> | undefined): boolean;
2624
+ }
2625
+ /**
2626
+ * @generated from message bragi.pipelines.SentimentDigestItem
2627
+ */
2628
+ declare class SentimentDigestItem extends Message<SentimentDigestItem> {
2629
+ /**
2630
+ * Item text content
2631
+ *
2632
+ * @generated from field: string text = 1;
2633
+ */
2634
+ text: string;
2635
+ /**
2636
+ * Source author handle
2637
+ *
2638
+ * @generated from field: string author_handle = 2;
2639
+ */
2640
+ authorHandle: string;
2641
+ /**
2642
+ * Like count
2643
+ *
2644
+ * @generated from field: int32 likes = 3;
2645
+ */
2646
+ likes: number;
2647
+ constructor(data?: PartialMessage<SentimentDigestItem>);
2648
+ static readonly runtime: typeof proto3;
2649
+ static readonly typeName = "bragi.pipelines.SentimentDigestItem";
2650
+ static readonly fields: FieldList;
2651
+ static fromBinary(bytes: Uint8Array, options?: Partial<BinaryReadOptions>): SentimentDigestItem;
2652
+ static fromJson(jsonValue: JsonValue, options?: Partial<JsonReadOptions>): SentimentDigestItem;
2653
+ static fromJsonString(jsonString: string, options?: Partial<JsonReadOptions>): SentimentDigestItem;
2654
+ static equals(a: SentimentDigestItem | PlainMessage<SentimentDigestItem> | undefined, b: SentimentDigestItem | PlainMessage<SentimentDigestItem> | undefined): boolean;
2655
+ }
2656
+ /**
2657
+ * @generated from message bragi.pipelines.SentimentDigestPost
2658
+ */
2659
+ declare class SentimentDigestPost extends Message<SentimentDigestPost> {
2660
+ /**
2661
+ * Post title
2662
+ *
2663
+ * @generated from field: string title = 1;
2664
+ */
2665
+ title: string;
2666
+ /**
2667
+ * Post summary (TLDR)
2668
+ *
2669
+ * @generated from field: string summary = 2;
2670
+ */
2671
+ summary: string;
2672
+ constructor(data?: PartialMessage<SentimentDigestPost>);
2673
+ static readonly runtime: typeof proto3;
2674
+ static readonly typeName = "bragi.pipelines.SentimentDigestPost";
2675
+ static readonly fields: FieldList;
2676
+ static fromBinary(bytes: Uint8Array, options?: Partial<BinaryReadOptions>): SentimentDigestPost;
2677
+ static fromJson(jsonValue: JsonValue, options?: Partial<JsonReadOptions>): SentimentDigestPost;
2678
+ static fromJsonString(jsonString: string, options?: Partial<JsonReadOptions>): SentimentDigestPost;
2679
+ static equals(a: SentimentDigestPost | PlainMessage<SentimentDigestPost> | undefined, b: SentimentDigestPost | PlainMessage<SentimentDigestPost> | undefined): boolean;
2680
+ }
2681
+ /**
2682
+ * @generated from message bragi.pipelines.SentimentDigestResponse
2683
+ */
2684
+ declare class SentimentDigestResponse extends Message<SentimentDigestResponse> {
2685
+ /**
2686
+ * Operation id
2687
+ *
2688
+ * @generated from field: string id = 1;
2689
+ */
2690
+ id: string;
2691
+ /**
2692
+ * Generated digest title
2693
+ *
2694
+ * @generated from field: string title = 2;
2695
+ */
2696
+ title: string;
2697
+ /**
2698
+ * Generated digest content
2699
+ *
2700
+ * @generated from field: string content = 3;
2701
+ */
2702
+ content: string;
2703
+ constructor(data?: PartialMessage<SentimentDigestResponse>);
2704
+ static readonly runtime: typeof proto3;
2705
+ static readonly typeName = "bragi.pipelines.SentimentDigestResponse";
2706
+ static readonly fields: FieldList;
2707
+ static fromBinary(bytes: Uint8Array, options?: Partial<BinaryReadOptions>): SentimentDigestResponse;
2708
+ static fromJson(jsonValue: JsonValue, options?: Partial<JsonReadOptions>): SentimentDigestResponse;
2709
+ static fromJsonString(jsonString: string, options?: Partial<JsonReadOptions>): SentimentDigestResponse;
2710
+ static equals(a: SentimentDigestResponse | PlainMessage<SentimentDigestResponse> | undefined, b: SentimentDigestResponse | PlainMessage<SentimentDigestResponse> | undefined): boolean;
2711
+ }
2499
2712
  /**
2500
2713
  * Represents a job vacancy found on a company website
2501
2714
  *
@@ -3019,4 +3232,4 @@ declare class ValidateCollectionCoherenceResponse extends Message<ValidateCollec
3019
3232
  static equals(a: ValidateCollectionCoherenceResponse | PlainMessage<ValidateCollectionCoherenceResponse> | undefined, b: ValidateCollectionCoherenceResponse | PlainMessage<ValidateCollectionCoherenceResponse> | undefined): boolean;
3020
3233
  }
3021
3234
 
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 };
3235
+ 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, SentimentDigestItem, SentimentDigestPost, SentimentDigestRequest, SentimentDigestResponse, SentimentLabel, SimpleParseCVRequest, SimpleParseCVResponse, SmartPromptRequest, StoryAnalysisRequest, StoryDeduplicationRequest, StoryDeduplicationResponse, Tag, TagSeniorityRequest, TagSeniorityResponse, ValidateCollectionCoherenceRequest, ValidateCollectionCoherenceResponse, WarmIntroRequest, WarmIntroResponse };
@@ -159,6 +159,51 @@ declare enum FeedbackUrgency {
159
159
  */
160
160
  CRITICAL = 4
161
161
  }
162
+ /**
163
+ * @generated from enum bragi.pipelines.GearCategory
164
+ */
165
+ declare enum GearCategory {
166
+ /**
167
+ * @generated from enum value: GEAR_CATEGORY_UNSPECIFIED = 0;
168
+ */
169
+ UNSPECIFIED = 0,
170
+ /**
171
+ * @generated from enum value: GEAR_CATEGORY_COMPUTER = 1;
172
+ */
173
+ COMPUTER = 1,
174
+ /**
175
+ * @generated from enum value: GEAR_CATEGORY_MONITOR = 2;
176
+ */
177
+ MONITOR = 2,
178
+ /**
179
+ * @generated from enum value: GEAR_CATEGORY_KEYBOARD = 3;
180
+ */
181
+ KEYBOARD = 3,
182
+ /**
183
+ * @generated from enum value: GEAR_CATEGORY_MOUSE = 4;
184
+ */
185
+ MOUSE = 4,
186
+ /**
187
+ * @generated from enum value: GEAR_CATEGORY_HEADPHONES = 5;
188
+ */
189
+ HEADPHONES = 5,
190
+ /**
191
+ * @generated from enum value: GEAR_CATEGORY_DESK = 6;
192
+ */
193
+ DESK = 6,
194
+ /**
195
+ * @generated from enum value: GEAR_CATEGORY_WEBCAM = 7;
196
+ */
197
+ WEBCAM = 7,
198
+ /**
199
+ * @generated from enum value: GEAR_CATEGORY_MICROPHONE = 8;
200
+ */
201
+ MICROPHONE = 8,
202
+ /**
203
+ * @generated from enum value: GEAR_CATEGORY_OTHER = 9;
204
+ */
205
+ OTHER = 9
206
+ }
162
207
  /**
163
208
  * Standardized reasons for candidate rejection of a job opportunity match
164
209
  *
@@ -2218,6 +2263,56 @@ declare class ParseFeedbackResponse extends Message<ParseFeedbackResponse> {
2218
2263
  static fromJsonString(jsonString: string, options?: Partial<JsonReadOptions>): ParseFeedbackResponse;
2219
2264
  static equals(a: ParseFeedbackResponse | PlainMessage<ParseFeedbackResponse> | undefined, b: ParseFeedbackResponse | PlainMessage<ParseFeedbackResponse> | undefined): boolean;
2220
2265
  }
2266
+ /**
2267
+ * @generated from message bragi.pipelines.ClassifyGearRequest
2268
+ */
2269
+ declare class ClassifyGearRequest extends Message<ClassifyGearRequest> {
2270
+ /**
2271
+ * Raw gear name as entered by user
2272
+ *
2273
+ * @generated from field: string name = 1;
2274
+ */
2275
+ name: string;
2276
+ constructor(data?: PartialMessage<ClassifyGearRequest>);
2277
+ static readonly runtime: typeof proto3;
2278
+ static readonly typeName = "bragi.pipelines.ClassifyGearRequest";
2279
+ static readonly fields: FieldList;
2280
+ static fromBinary(bytes: Uint8Array, options?: Partial<BinaryReadOptions>): ClassifyGearRequest;
2281
+ static fromJson(jsonValue: JsonValue, options?: Partial<JsonReadOptions>): ClassifyGearRequest;
2282
+ static fromJsonString(jsonString: string, options?: Partial<JsonReadOptions>): ClassifyGearRequest;
2283
+ static equals(a: ClassifyGearRequest | PlainMessage<ClassifyGearRequest> | undefined, b: ClassifyGearRequest | PlainMessage<ClassifyGearRequest> | undefined): boolean;
2284
+ }
2285
+ /**
2286
+ * @generated from message bragi.pipelines.ClassifyGearResponse
2287
+ */
2288
+ declare class ClassifyGearResponse extends Message<ClassifyGearResponse> {
2289
+ /**
2290
+ * Operation id
2291
+ *
2292
+ * @generated from field: string id = 1;
2293
+ */
2294
+ id: string;
2295
+ /**
2296
+ * Classified category
2297
+ *
2298
+ * @generated from field: bragi.pipelines.GearCategory category = 2;
2299
+ */
2300
+ category: GearCategory;
2301
+ /**
2302
+ * Canonical product name for matching
2303
+ *
2304
+ * @generated from field: string normalized_name = 3;
2305
+ */
2306
+ normalizedName: string;
2307
+ constructor(data?: PartialMessage<ClassifyGearResponse>);
2308
+ static readonly runtime: typeof proto3;
2309
+ static readonly typeName = "bragi.pipelines.ClassifyGearResponse";
2310
+ static readonly fields: FieldList;
2311
+ static fromBinary(bytes: Uint8Array, options?: Partial<BinaryReadOptions>): ClassifyGearResponse;
2312
+ static fromJson(jsonValue: JsonValue, options?: Partial<JsonReadOptions>): ClassifyGearResponse;
2313
+ static fromJsonString(jsonString: string, options?: Partial<JsonReadOptions>): ClassifyGearResponse;
2314
+ static equals(a: ClassifyGearResponse | PlainMessage<ClassifyGearResponse> | undefined, b: ClassifyGearResponse | PlainMessage<ClassifyGearResponse> | undefined): boolean;
2315
+ }
2221
2316
  /**
2222
2317
  * Request to classify user feedback from widget
2223
2318
  *
@@ -2496,6 +2591,124 @@ declare class SentimentAnalysisResponse extends Message<SentimentAnalysisRespons
2496
2591
  static fromJsonString(jsonString: string, options?: Partial<JsonReadOptions>): SentimentAnalysisResponse;
2497
2592
  static equals(a: SentimentAnalysisResponse | PlainMessage<SentimentAnalysisResponse> | undefined, b: SentimentAnalysisResponse | PlainMessage<SentimentAnalysisResponse> | undefined): boolean;
2498
2593
  }
2594
+ /**
2595
+ * @generated from message bragi.pipelines.SentimentDigestRequest
2596
+ */
2597
+ declare class SentimentDigestRequest extends Message<SentimentDigestRequest> {
2598
+ /**
2599
+ * Date being summarized (YYYY-MM-DD)
2600
+ *
2601
+ * @generated from field: string date = 1;
2602
+ */
2603
+ date: string;
2604
+ /**
2605
+ * Sentiment highlights from the last 24h
2606
+ *
2607
+ * @generated from field: repeated bragi.pipelines.SentimentDigestItem sentiment_items = 2;
2608
+ */
2609
+ sentimentItems: SentimentDigestItem[];
2610
+ /**
2611
+ * Related posts from the last 24h
2612
+ *
2613
+ * @generated from field: repeated bragi.pipelines.SentimentDigestPost posts = 3;
2614
+ */
2615
+ posts: SentimentDigestPost[];
2616
+ constructor(data?: PartialMessage<SentimentDigestRequest>);
2617
+ static readonly runtime: typeof proto3;
2618
+ static readonly typeName = "bragi.pipelines.SentimentDigestRequest";
2619
+ static readonly fields: FieldList;
2620
+ static fromBinary(bytes: Uint8Array, options?: Partial<BinaryReadOptions>): SentimentDigestRequest;
2621
+ static fromJson(jsonValue: JsonValue, options?: Partial<JsonReadOptions>): SentimentDigestRequest;
2622
+ static fromJsonString(jsonString: string, options?: Partial<JsonReadOptions>): SentimentDigestRequest;
2623
+ static equals(a: SentimentDigestRequest | PlainMessage<SentimentDigestRequest> | undefined, b: SentimentDigestRequest | PlainMessage<SentimentDigestRequest> | undefined): boolean;
2624
+ }
2625
+ /**
2626
+ * @generated from message bragi.pipelines.SentimentDigestItem
2627
+ */
2628
+ declare class SentimentDigestItem extends Message<SentimentDigestItem> {
2629
+ /**
2630
+ * Item text content
2631
+ *
2632
+ * @generated from field: string text = 1;
2633
+ */
2634
+ text: string;
2635
+ /**
2636
+ * Source author handle
2637
+ *
2638
+ * @generated from field: string author_handle = 2;
2639
+ */
2640
+ authorHandle: string;
2641
+ /**
2642
+ * Like count
2643
+ *
2644
+ * @generated from field: int32 likes = 3;
2645
+ */
2646
+ likes: number;
2647
+ constructor(data?: PartialMessage<SentimentDigestItem>);
2648
+ static readonly runtime: typeof proto3;
2649
+ static readonly typeName = "bragi.pipelines.SentimentDigestItem";
2650
+ static readonly fields: FieldList;
2651
+ static fromBinary(bytes: Uint8Array, options?: Partial<BinaryReadOptions>): SentimentDigestItem;
2652
+ static fromJson(jsonValue: JsonValue, options?: Partial<JsonReadOptions>): SentimentDigestItem;
2653
+ static fromJsonString(jsonString: string, options?: Partial<JsonReadOptions>): SentimentDigestItem;
2654
+ static equals(a: SentimentDigestItem | PlainMessage<SentimentDigestItem> | undefined, b: SentimentDigestItem | PlainMessage<SentimentDigestItem> | undefined): boolean;
2655
+ }
2656
+ /**
2657
+ * @generated from message bragi.pipelines.SentimentDigestPost
2658
+ */
2659
+ declare class SentimentDigestPost extends Message<SentimentDigestPost> {
2660
+ /**
2661
+ * Post title
2662
+ *
2663
+ * @generated from field: string title = 1;
2664
+ */
2665
+ title: string;
2666
+ /**
2667
+ * Post summary (TLDR)
2668
+ *
2669
+ * @generated from field: string summary = 2;
2670
+ */
2671
+ summary: string;
2672
+ constructor(data?: PartialMessage<SentimentDigestPost>);
2673
+ static readonly runtime: typeof proto3;
2674
+ static readonly typeName = "bragi.pipelines.SentimentDigestPost";
2675
+ static readonly fields: FieldList;
2676
+ static fromBinary(bytes: Uint8Array, options?: Partial<BinaryReadOptions>): SentimentDigestPost;
2677
+ static fromJson(jsonValue: JsonValue, options?: Partial<JsonReadOptions>): SentimentDigestPost;
2678
+ static fromJsonString(jsonString: string, options?: Partial<JsonReadOptions>): SentimentDigestPost;
2679
+ static equals(a: SentimentDigestPost | PlainMessage<SentimentDigestPost> | undefined, b: SentimentDigestPost | PlainMessage<SentimentDigestPost> | undefined): boolean;
2680
+ }
2681
+ /**
2682
+ * @generated from message bragi.pipelines.SentimentDigestResponse
2683
+ */
2684
+ declare class SentimentDigestResponse extends Message<SentimentDigestResponse> {
2685
+ /**
2686
+ * Operation id
2687
+ *
2688
+ * @generated from field: string id = 1;
2689
+ */
2690
+ id: string;
2691
+ /**
2692
+ * Generated digest title
2693
+ *
2694
+ * @generated from field: string title = 2;
2695
+ */
2696
+ title: string;
2697
+ /**
2698
+ * Generated digest content
2699
+ *
2700
+ * @generated from field: string content = 3;
2701
+ */
2702
+ content: string;
2703
+ constructor(data?: PartialMessage<SentimentDigestResponse>);
2704
+ static readonly runtime: typeof proto3;
2705
+ static readonly typeName = "bragi.pipelines.SentimentDigestResponse";
2706
+ static readonly fields: FieldList;
2707
+ static fromBinary(bytes: Uint8Array, options?: Partial<BinaryReadOptions>): SentimentDigestResponse;
2708
+ static fromJson(jsonValue: JsonValue, options?: Partial<JsonReadOptions>): SentimentDigestResponse;
2709
+ static fromJsonString(jsonString: string, options?: Partial<JsonReadOptions>): SentimentDigestResponse;
2710
+ static equals(a: SentimentDigestResponse | PlainMessage<SentimentDigestResponse> | undefined, b: SentimentDigestResponse | PlainMessage<SentimentDigestResponse> | undefined): boolean;
2711
+ }
2499
2712
  /**
2500
2713
  * Represents a job vacancy found on a company website
2501
2714
  *
@@ -3019,4 +3232,4 @@ declare class ValidateCollectionCoherenceResponse extends Message<ValidateCollec
3019
3232
  static equals(a: ValidateCollectionCoherenceResponse | PlainMessage<ValidateCollectionCoherenceResponse> | undefined, b: ValidateCollectionCoherenceResponse | PlainMessage<ValidateCollectionCoherenceResponse> | undefined): boolean;
3020
3233
  }
3021
3234
 
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 };
3235
+ 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, SentimentDigestItem, SentimentDigestPost, SentimentDigestRequest, SentimentDigestResponse, SentimentLabel, SimpleParseCVRequest, SimpleParseCVResponse, SmartPromptRequest, StoryAnalysisRequest, StoryDeduplicationRequest, StoryDeduplicationResponse, Tag, TagSeniorityRequest, TagSeniorityResponse, ValidateCollectionCoherenceRequest, ValidateCollectionCoherenceResponse, WarmIntroRequest, WarmIntroResponse };