@dailydotdev/schema 0.2.66 → 0.2.68

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.
@@ -2,6 +2,7 @@ import { Message, PartialMessage, proto3, FieldList, BinaryReadOptions, JsonValu
2
2
  import { Briefing } from '../feed/briefing/briefing_pb.cjs';
3
3
  import { Screening } from '../daily-api/opportunity-match_pb.cjs';
4
4
  import { Opportunity } from '../daily-api/opportunity_pb.cjs';
5
+ import { UserFeedbackCategory, UserFeedbackClassification } from './feedback_pb.cjs';
5
6
  import '../daily-api/util_pb.cjs';
6
7
 
7
8
  /**
@@ -1104,23 +1105,6 @@ declare class MemoryResponse extends Message<MemoryResponse> {
1104
1105
  static fromJsonString(jsonString: string, options?: Partial<JsonReadOptions>): MemoryResponse;
1105
1106
  static equals(a: MemoryResponse | PlainMessage<MemoryResponse> | undefined, b: MemoryResponse | PlainMessage<MemoryResponse> | undefined): boolean;
1106
1107
  }
1107
- /**
1108
- * @generated from message bragi.pipelines.ProcessClusteredRequest
1109
- */
1110
- declare class ProcessClusteredRequest extends Message<ProcessClusteredRequest> {
1111
- /**
1112
- * @generated from field: string story_article_md = 1;
1113
- */
1114
- storyArticleMd: string;
1115
- constructor(data?: PartialMessage<ProcessClusteredRequest>);
1116
- static readonly runtime: typeof proto3;
1117
- static readonly typeName = "bragi.pipelines.ProcessClusteredRequest";
1118
- static readonly fields: FieldList;
1119
- static fromBinary(bytes: Uint8Array, options?: Partial<BinaryReadOptions>): ProcessClusteredRequest;
1120
- static fromJson(jsonValue: JsonValue, options?: Partial<JsonReadOptions>): ProcessClusteredRequest;
1121
- static fromJsonString(jsonString: string, options?: Partial<JsonReadOptions>): ProcessClusteredRequest;
1122
- static equals(a: ProcessClusteredRequest | PlainMessage<ProcessClusteredRequest> | undefined, b: ProcessClusteredRequest | PlainMessage<ProcessClusteredRequest> | undefined): boolean;
1123
- }
1124
1108
  /**
1125
1109
  * @generated from message bragi.pipelines.ProcessIsolatedRequest
1126
1110
  */
@@ -1443,6 +1427,12 @@ declare class CandidateReasoningRequest extends Message<CandidateReasoningReques
1443
1427
  * @generated from field: string candidate = 2;
1444
1428
  */
1445
1429
  candidate: string;
1430
+ /**
1431
+ * enables fast mode with gemini-2.5-flash-lite
1432
+ *
1433
+ * @generated from field: optional bool preview = 3;
1434
+ */
1435
+ preview?: boolean;
1446
1436
  constructor(data?: PartialMessage<CandidateReasoningRequest>);
1447
1437
  static readonly runtime: typeof proto3;
1448
1438
  static readonly typeName = "bragi.pipelines.CandidateReasoningRequest";
@@ -1855,11 +1845,19 @@ declare class TagSeniorityResponse extends Message<TagSeniorityResponse> {
1855
1845
  */
1856
1846
  id: string;
1857
1847
  /**
1858
- * Tag seniority in key:value pairs
1848
+ * Primary tag seniority
1859
1849
  *
1860
- * @generated from field: map<string, float> tag_seniority = 2;
1850
+ * @generated from field: map<string, float> primary = 2;
1861
1851
  */
1862
- tagSeniority: {
1852
+ primary: {
1853
+ [key: string]: number;
1854
+ };
1855
+ /**
1856
+ * Secondary tag seniority
1857
+ *
1858
+ * @generated from field: map<string, float> secondary = 3;
1859
+ */
1860
+ secondary: {
1863
1861
  [key: string]: number;
1864
1862
  };
1865
1863
  constructor(data?: PartialMessage<TagSeniorityResponse>);
@@ -1887,6 +1885,12 @@ declare class TagSeniorityRequest extends Message<TagSeniorityRequest> {
1887
1885
  * @generated from field: string parsed_json = 2;
1888
1886
  */
1889
1887
  parsedJson: string;
1888
+ /**
1889
+ * enables fast mode with a faster, lower-quality model
1890
+ *
1891
+ * @generated from field: optional bool preview = 3;
1892
+ */
1893
+ preview?: boolean;
1890
1894
  constructor(data?: PartialMessage<TagSeniorityRequest>);
1891
1895
  static readonly runtime: typeof proto3;
1892
1896
  static readonly typeName = "bragi.pipelines.TagSeniorityRequest";
@@ -2027,5 +2031,545 @@ declare class ParseFeedbackResponse extends Message<ParseFeedbackResponse> {
2027
2031
  static fromJsonString(jsonString: string, options?: Partial<JsonReadOptions>): ParseFeedbackResponse;
2028
2032
  static equals(a: ParseFeedbackResponse | PlainMessage<ParseFeedbackResponse> | undefined, b: ParseFeedbackResponse | PlainMessage<ParseFeedbackResponse> | undefined): boolean;
2029
2033
  }
2034
+ /**
2035
+ * Request to classify user feedback from widget
2036
+ *
2037
+ * @generated from message bragi.pipelines.ClassifyUserFeedbackRequest
2038
+ */
2039
+ declare class ClassifyUserFeedbackRequest extends Message<ClassifyUserFeedbackRequest> {
2040
+ /**
2041
+ * Category selected by user
2042
+ *
2043
+ * @generated from field: bragi.feedback.UserFeedbackCategory category = 1;
2044
+ */
2045
+ category: UserFeedbackCategory;
2046
+ /**
2047
+ * User's feedback text (max 2000 chars)
2048
+ *
2049
+ * @generated from field: string description = 2;
2050
+ */
2051
+ description: string;
2052
+ /**
2053
+ * Page where feedback was submitted
2054
+ *
2055
+ * @generated from field: optional string page_url = 3;
2056
+ */
2057
+ pageUrl?: string;
2058
+ /**
2059
+ * Browser/device info
2060
+ *
2061
+ * @generated from field: optional string user_agent = 4;
2062
+ */
2063
+ userAgent?: string;
2064
+ constructor(data?: PartialMessage<ClassifyUserFeedbackRequest>);
2065
+ static readonly runtime: typeof proto3;
2066
+ static readonly typeName = "bragi.pipelines.ClassifyUserFeedbackRequest";
2067
+ static readonly fields: FieldList;
2068
+ static fromBinary(bytes: Uint8Array, options?: Partial<BinaryReadOptions>): ClassifyUserFeedbackRequest;
2069
+ static fromJson(jsonValue: JsonValue, options?: Partial<JsonReadOptions>): ClassifyUserFeedbackRequest;
2070
+ static fromJsonString(jsonString: string, options?: Partial<JsonReadOptions>): ClassifyUserFeedbackRequest;
2071
+ static equals(a: ClassifyUserFeedbackRequest | PlainMessage<ClassifyUserFeedbackRequest> | undefined, b: ClassifyUserFeedbackRequest | PlainMessage<ClassifyUserFeedbackRequest> | undefined): boolean;
2072
+ }
2073
+ /**
2074
+ * Response with classification result
2075
+ *
2076
+ * @generated from message bragi.pipelines.ClassifyUserFeedbackResponse
2077
+ */
2078
+ declare class ClassifyUserFeedbackResponse extends Message<ClassifyUserFeedbackResponse> {
2079
+ /**
2080
+ * Operation id
2081
+ *
2082
+ * @generated from field: string id = 1;
2083
+ */
2084
+ id: string;
2085
+ /**
2086
+ * Classification result
2087
+ *
2088
+ * @generated from field: bragi.feedback.UserFeedbackClassification classification = 2;
2089
+ */
2090
+ classification?: UserFeedbackClassification;
2091
+ constructor(data?: PartialMessage<ClassifyUserFeedbackResponse>);
2092
+ static readonly runtime: typeof proto3;
2093
+ static readonly typeName = "bragi.pipelines.ClassifyUserFeedbackResponse";
2094
+ static readonly fields: FieldList;
2095
+ static fromBinary(bytes: Uint8Array, options?: Partial<BinaryReadOptions>): ClassifyUserFeedbackResponse;
2096
+ static fromJson(jsonValue: JsonValue, options?: Partial<JsonReadOptions>): ClassifyUserFeedbackResponse;
2097
+ static fromJsonString(jsonString: string, options?: Partial<JsonReadOptions>): ClassifyUserFeedbackResponse;
2098
+ static equals(a: ClassifyUserFeedbackResponse | PlainMessage<ClassifyUserFeedbackResponse> | undefined, b: ClassifyUserFeedbackResponse | PlainMessage<ClassifyUserFeedbackResponse> | undefined): boolean;
2099
+ }
2100
+ /**
2101
+ * Represents a job vacancy found on a company website
2102
+ *
2103
+ * @generated from message bragi.pipelines.JobVacancy
2104
+ */
2105
+ declare class JobVacancy extends Message<JobVacancy> {
2106
+ /**
2107
+ * Normalized job title (e.g., "AI Platform Software Engineer")
2108
+ *
2109
+ * @generated from field: string role = 1;
2110
+ */
2111
+ role: string;
2112
+ /**
2113
+ * Seniority level: Intern, Junior, Mid, Senior, Principal, Lead, Manager, VP, Director, C-level
2114
+ *
2115
+ * @generated from field: string seniority = 2;
2116
+ */
2117
+ seniority: string;
2118
+ /**
2119
+ * Up to 3 critical technologies/frameworks
2120
+ *
2121
+ * @generated from field: repeated string stack = 3;
2122
+ */
2123
+ stack: string[];
2124
+ /**
2125
+ * Role summary (max 200 words)
2126
+ *
2127
+ * @generated from field: string description = 4;
2128
+ */
2129
+ description: string;
2130
+ /**
2131
+ * Software engineering involvement score [0..1]
2132
+ *
2133
+ * @generated from field: float swe_score = 5;
2134
+ */
2135
+ sweScore: number;
2136
+ constructor(data?: PartialMessage<JobVacancy>);
2137
+ static readonly runtime: typeof proto3;
2138
+ static readonly typeName = "bragi.pipelines.JobVacancy";
2139
+ static readonly fields: FieldList;
2140
+ static fromBinary(bytes: Uint8Array, options?: Partial<BinaryReadOptions>): JobVacancy;
2141
+ static fromJson(jsonValue: JsonValue, options?: Partial<JsonReadOptions>): JobVacancy;
2142
+ static fromJsonString(jsonString: string, options?: Partial<JsonReadOptions>): JobVacancy;
2143
+ static equals(a: JobVacancy | PlainMessage<JobVacancy> | undefined, b: JobVacancy | PlainMessage<JobVacancy> | undefined): boolean;
2144
+ }
2145
+ /**
2146
+ * Request to find job vacancies at a company
2147
+ *
2148
+ * @generated from message bragi.pipelines.FindJobVacanciesRequest
2149
+ */
2150
+ declare class FindJobVacanciesRequest extends Message<FindJobVacanciesRequest> {
2151
+ /**
2152
+ * Company name to search for
2153
+ *
2154
+ * @generated from field: string company_name = 1;
2155
+ */
2156
+ companyName: string;
2157
+ /**
2158
+ * Company website URL (helps narrow search)
2159
+ *
2160
+ * @generated from field: optional string website = 2;
2161
+ */
2162
+ website?: string;
2163
+ /**
2164
+ * Email domain for fallback identification
2165
+ *
2166
+ * @generated from field: optional string email_domain = 3;
2167
+ */
2168
+ emailDomain?: string;
2169
+ constructor(data?: PartialMessage<FindJobVacanciesRequest>);
2170
+ static readonly runtime: typeof proto3;
2171
+ static readonly typeName = "bragi.pipelines.FindJobVacanciesRequest";
2172
+ static readonly fields: FieldList;
2173
+ static fromBinary(bytes: Uint8Array, options?: Partial<BinaryReadOptions>): FindJobVacanciesRequest;
2174
+ static fromJson(jsonValue: JsonValue, options?: Partial<JsonReadOptions>): FindJobVacanciesRequest;
2175
+ static fromJsonString(jsonString: string, options?: Partial<JsonReadOptions>): FindJobVacanciesRequest;
2176
+ static equals(a: FindJobVacanciesRequest | PlainMessage<FindJobVacanciesRequest> | undefined, b: FindJobVacanciesRequest | PlainMessage<FindJobVacanciesRequest> | undefined): boolean;
2177
+ }
2178
+ /**
2179
+ * Response with found job vacancies
2180
+ *
2181
+ * @generated from message bragi.pipelines.FindJobVacanciesResponse
2182
+ */
2183
+ declare class FindJobVacanciesResponse extends Message<FindJobVacanciesResponse> {
2184
+ /**
2185
+ * Operation id
2186
+ *
2187
+ * @generated from field: string id = 1;
2188
+ */
2189
+ id: string;
2190
+ /**
2191
+ * Found job vacancies (max 3, sorted by swe_score)
2192
+ *
2193
+ * @generated from field: repeated bragi.pipelines.JobVacancy vacancies = 2;
2194
+ */
2195
+ vacancies: JobVacancy[];
2196
+ constructor(data?: PartialMessage<FindJobVacanciesResponse>);
2197
+ static readonly runtime: typeof proto3;
2198
+ static readonly typeName = "bragi.pipelines.FindJobVacanciesResponse";
2199
+ static readonly fields: FieldList;
2200
+ static fromBinary(bytes: Uint8Array, options?: Partial<BinaryReadOptions>): FindJobVacanciesResponse;
2201
+ static fromJson(jsonValue: JsonValue, options?: Partial<JsonReadOptions>): FindJobVacanciesResponse;
2202
+ static fromJsonString(jsonString: string, options?: Partial<JsonReadOptions>): FindJobVacanciesResponse;
2203
+ static equals(a: FindJobVacanciesResponse | PlainMessage<FindJobVacanciesResponse> | undefined, b: FindJobVacanciesResponse | PlainMessage<FindJobVacanciesResponse> | undefined): boolean;
2204
+ }
2205
+ /**
2206
+ * Represents a news item about a company
2207
+ *
2208
+ * @generated from message bragi.pipelines.NewsItem
2209
+ */
2210
+ declare class NewsItem extends Message<NewsItem> {
2211
+ /**
2212
+ * News headline or title
2213
+ *
2214
+ * @generated from field: string headline = 1;
2215
+ */
2216
+ headline: string;
2217
+ /**
2218
+ * 1-2 sentence summary
2219
+ *
2220
+ * @generated from field: string summary = 2;
2221
+ */
2222
+ summary: string;
2223
+ /**
2224
+ * Approximate date (e.g., "January 2024", "Q4 2023")
2225
+ *
2226
+ * @generated from field: optional string date = 3;
2227
+ */
2228
+ date?: string;
2229
+ /**
2230
+ * Type: funding, expansion, product, acquisition, partnership, hire, ipo, award, other
2231
+ *
2232
+ * @generated from field: string news_type = 4;
2233
+ */
2234
+ newsType: string;
2235
+ constructor(data?: PartialMessage<NewsItem>);
2236
+ static readonly runtime: typeof proto3;
2237
+ static readonly typeName = "bragi.pipelines.NewsItem";
2238
+ static readonly fields: FieldList;
2239
+ static fromBinary(bytes: Uint8Array, options?: Partial<BinaryReadOptions>): NewsItem;
2240
+ static fromJson(jsonValue: JsonValue, options?: Partial<JsonReadOptions>): NewsItem;
2241
+ static fromJsonString(jsonString: string, options?: Partial<JsonReadOptions>): NewsItem;
2242
+ static equals(a: NewsItem | PlainMessage<NewsItem> | undefined, b: NewsItem | PlainMessage<NewsItem> | undefined): boolean;
2243
+ }
2244
+ /**
2245
+ * Request to find recent company news
2246
+ *
2247
+ * @generated from message bragi.pipelines.FindCompanyNewsRequest
2248
+ */
2249
+ declare class FindCompanyNewsRequest extends Message<FindCompanyNewsRequest> {
2250
+ /**
2251
+ * Company name to search for
2252
+ *
2253
+ * @generated from field: string company_name = 1;
2254
+ */
2255
+ companyName: string;
2256
+ /**
2257
+ * Company website URL
2258
+ *
2259
+ * @generated from field: optional string website = 2;
2260
+ */
2261
+ website?: string;
2262
+ /**
2263
+ * Company country (helps disambiguate similar names)
2264
+ *
2265
+ * @generated from field: optional string country = 3;
2266
+ */
2267
+ country?: string;
2268
+ /**
2269
+ * Email domain for identification
2270
+ *
2271
+ * @generated from field: optional string email_domain = 4;
2272
+ */
2273
+ emailDomain?: string;
2274
+ constructor(data?: PartialMessage<FindCompanyNewsRequest>);
2275
+ static readonly runtime: typeof proto3;
2276
+ static readonly typeName = "bragi.pipelines.FindCompanyNewsRequest";
2277
+ static readonly fields: FieldList;
2278
+ static fromBinary(bytes: Uint8Array, options?: Partial<BinaryReadOptions>): FindCompanyNewsRequest;
2279
+ static fromJson(jsonValue: JsonValue, options?: Partial<JsonReadOptions>): FindCompanyNewsRequest;
2280
+ static fromJsonString(jsonString: string, options?: Partial<JsonReadOptions>): FindCompanyNewsRequest;
2281
+ static equals(a: FindCompanyNewsRequest | PlainMessage<FindCompanyNewsRequest> | undefined, b: FindCompanyNewsRequest | PlainMessage<FindCompanyNewsRequest> | undefined): boolean;
2282
+ }
2283
+ /**
2284
+ * Response with found company news
2285
+ *
2286
+ * @generated from message bragi.pipelines.FindCompanyNewsResponse
2287
+ */
2288
+ declare class FindCompanyNewsResponse extends Message<FindCompanyNewsResponse> {
2289
+ /**
2290
+ * Operation id
2291
+ *
2292
+ * @generated from field: string id = 1;
2293
+ */
2294
+ id: string;
2295
+ /**
2296
+ * Found news items (max 3, sorted by recency and impact)
2297
+ *
2298
+ * @generated from field: repeated bragi.pipelines.NewsItem news_items = 2;
2299
+ */
2300
+ newsItems: NewsItem[];
2301
+ constructor(data?: PartialMessage<FindCompanyNewsResponse>);
2302
+ static readonly runtime: typeof proto3;
2303
+ static readonly typeName = "bragi.pipelines.FindCompanyNewsResponse";
2304
+ static readonly fields: FieldList;
2305
+ static fromBinary(bytes: Uint8Array, options?: Partial<BinaryReadOptions>): FindCompanyNewsResponse;
2306
+ static fromJson(jsonValue: JsonValue, options?: Partial<JsonReadOptions>): FindCompanyNewsResponse;
2307
+ static fromJsonString(jsonString: string, options?: Partial<JsonReadOptions>): FindCompanyNewsResponse;
2308
+ static equals(a: FindCompanyNewsResponse | PlainMessage<FindCompanyNewsResponse> | undefined, b: FindCompanyNewsResponse | PlainMessage<FindCompanyNewsResponse> | undefined): boolean;
2309
+ }
2310
+ /**
2311
+ * Represents an activity item from a contact's LinkedIn
2312
+ *
2313
+ * @generated from message bragi.pipelines.ActivityItem
2314
+ */
2315
+ declare class ActivityItem extends Message<ActivityItem> {
2316
+ /**
2317
+ * Title or topic of the activity
2318
+ *
2319
+ * @generated from field: string title = 1;
2320
+ */
2321
+ title: string;
2322
+ /**
2323
+ * 1-2 sentence summary of the content
2324
+ *
2325
+ * @generated from field: string summary = 2;
2326
+ */
2327
+ summary: string;
2328
+ /**
2329
+ * Approximate date
2330
+ *
2331
+ * @generated from field: optional string date = 3;
2332
+ */
2333
+ date?: string;
2334
+ /**
2335
+ * Type: linkedin_post, linkedin_article, mention, other
2336
+ *
2337
+ * @generated from field: string activity_type = 4;
2338
+ */
2339
+ activityType: string;
2340
+ /**
2341
+ * URL if available
2342
+ *
2343
+ * @generated from field: optional string url = 5;
2344
+ */
2345
+ url?: string;
2346
+ constructor(data?: PartialMessage<ActivityItem>);
2347
+ static readonly runtime: typeof proto3;
2348
+ static readonly typeName = "bragi.pipelines.ActivityItem";
2349
+ static readonly fields: FieldList;
2350
+ static fromBinary(bytes: Uint8Array, options?: Partial<BinaryReadOptions>): ActivityItem;
2351
+ static fromJson(jsonValue: JsonValue, options?: Partial<JsonReadOptions>): ActivityItem;
2352
+ static fromJsonString(jsonString: string, options?: Partial<JsonReadOptions>): ActivityItem;
2353
+ static equals(a: ActivityItem | PlainMessage<ActivityItem> | undefined, b: ActivityItem | PlainMessage<ActivityItem> | undefined): boolean;
2354
+ }
2355
+ /**
2356
+ * Request to find contact's LinkedIn activity
2357
+ *
2358
+ * @generated from message bragi.pipelines.FindContactActivityRequest
2359
+ */
2360
+ declare class FindContactActivityRequest extends Message<FindContactActivityRequest> {
2361
+ /**
2362
+ * Contact's first name
2363
+ *
2364
+ * @generated from field: string first_name = 1;
2365
+ */
2366
+ firstName: string;
2367
+ /**
2368
+ * Contact's last name
2369
+ *
2370
+ * @generated from field: optional string last_name = 2;
2371
+ */
2372
+ lastName?: string;
2373
+ /**
2374
+ * Contact's company
2375
+ *
2376
+ * @generated from field: string company_name = 3;
2377
+ */
2378
+ companyName: string;
2379
+ /**
2380
+ * Contact's job title (helps identify correct person)
2381
+ *
2382
+ * @generated from field: optional string title = 4;
2383
+ */
2384
+ title?: string;
2385
+ /**
2386
+ * LinkedIn profile URL
2387
+ *
2388
+ * @generated from field: optional string linkedin_url = 5;
2389
+ */
2390
+ linkedinUrl?: string;
2391
+ constructor(data?: PartialMessage<FindContactActivityRequest>);
2392
+ static readonly runtime: typeof proto3;
2393
+ static readonly typeName = "bragi.pipelines.FindContactActivityRequest";
2394
+ static readonly fields: FieldList;
2395
+ static fromBinary(bytes: Uint8Array, options?: Partial<BinaryReadOptions>): FindContactActivityRequest;
2396
+ static fromJson(jsonValue: JsonValue, options?: Partial<JsonReadOptions>): FindContactActivityRequest;
2397
+ static fromJsonString(jsonString: string, options?: Partial<JsonReadOptions>): FindContactActivityRequest;
2398
+ static equals(a: FindContactActivityRequest | PlainMessage<FindContactActivityRequest> | undefined, b: FindContactActivityRequest | PlainMessage<FindContactActivityRequest> | undefined): boolean;
2399
+ }
2400
+ /**
2401
+ * Response with found contact activity
2402
+ *
2403
+ * @generated from message bragi.pipelines.FindContactActivityResponse
2404
+ */
2405
+ declare class FindContactActivityResponse extends Message<FindContactActivityResponse> {
2406
+ /**
2407
+ * Operation id
2408
+ *
2409
+ * @generated from field: string id = 1;
2410
+ */
2411
+ id: string;
2412
+ /**
2413
+ * Found activities (max 2)
2414
+ *
2415
+ * @generated from field: repeated bragi.pipelines.ActivityItem activities = 2;
2416
+ */
2417
+ activities: ActivityItem[];
2418
+ constructor(data?: PartialMessage<FindContactActivityResponse>);
2419
+ static readonly runtime: typeof proto3;
2420
+ static readonly typeName = "bragi.pipelines.FindContactActivityResponse";
2421
+ static readonly fields: FieldList;
2422
+ static fromBinary(bytes: Uint8Array, options?: Partial<BinaryReadOptions>): FindContactActivityResponse;
2423
+ static fromJson(jsonValue: JsonValue, options?: Partial<JsonReadOptions>): FindContactActivityResponse;
2424
+ static fromJsonString(jsonString: string, options?: Partial<JsonReadOptions>): FindContactActivityResponse;
2425
+ static equals(a: FindContactActivityResponse | PlainMessage<FindContactActivityResponse> | undefined, b: FindContactActivityResponse | PlainMessage<FindContactActivityResponse> | undefined): boolean;
2426
+ }
2427
+ /**
2428
+ * Represents a job opportunity for email generation context
2429
+ *
2430
+ * @generated from message bragi.pipelines.RecruiterOpportunity
2431
+ */
2432
+ declare class RecruiterOpportunity extends Message<RecruiterOpportunity> {
2433
+ /**
2434
+ * Job role title
2435
+ *
2436
+ * @generated from field: string role = 1;
2437
+ */
2438
+ role: string;
2439
+ /**
2440
+ * Seniority level
2441
+ *
2442
+ * @generated from field: string seniority = 2;
2443
+ */
2444
+ seniority: string;
2445
+ /**
2446
+ * Tech stack
2447
+ *
2448
+ * @generated from field: repeated string stack = 3;
2449
+ */
2450
+ stack: string[];
2451
+ /**
2452
+ * Number of active candidate matches
2453
+ *
2454
+ * @generated from field: int32 active_matches = 4;
2455
+ */
2456
+ activeMatches: number;
2457
+ constructor(data?: PartialMessage<RecruiterOpportunity>);
2458
+ static readonly runtime: typeof proto3;
2459
+ static readonly typeName = "bragi.pipelines.RecruiterOpportunity";
2460
+ static readonly fields: FieldList;
2461
+ static fromBinary(bytes: Uint8Array, options?: Partial<BinaryReadOptions>): RecruiterOpportunity;
2462
+ static fromJson(jsonValue: JsonValue, options?: Partial<JsonReadOptions>): RecruiterOpportunity;
2463
+ static fromJsonString(jsonString: string, options?: Partial<JsonReadOptions>): RecruiterOpportunity;
2464
+ static equals(a: RecruiterOpportunity | PlainMessage<RecruiterOpportunity> | undefined, b: RecruiterOpportunity | PlainMessage<RecruiterOpportunity> | undefined): boolean;
2465
+ }
2466
+ /**
2467
+ * Request to generate personalized recruiter cold outreach email
2468
+ *
2469
+ * @generated from message bragi.pipelines.GenerateRecruiterEmailRequest
2470
+ */
2471
+ declare class GenerateRecruiterEmailRequest extends Message<GenerateRecruiterEmailRequest> {
2472
+ /**
2473
+ * Contact info
2474
+ *
2475
+ * Contact's first name
2476
+ *
2477
+ * @generated from field: string first_name = 1;
2478
+ */
2479
+ firstName: string;
2480
+ /**
2481
+ * Contact's last name
2482
+ *
2483
+ * @generated from field: optional string last_name = 2;
2484
+ */
2485
+ lastName?: string;
2486
+ /**
2487
+ * Contact's job title (used for role detection)
2488
+ *
2489
+ * @generated from field: optional string title = 3;
2490
+ */
2491
+ title?: string;
2492
+ /**
2493
+ * Contact's company
2494
+ *
2495
+ * @generated from field: string company_name = 4;
2496
+ */
2497
+ companyName: string;
2498
+ /**
2499
+ * Enrichment data (from other pipelines)
2500
+ *
2501
+ * Job opportunities at the company
2502
+ *
2503
+ * @generated from field: repeated bragi.pipelines.RecruiterOpportunity opportunities = 5;
2504
+ */
2505
+ opportunities: RecruiterOpportunity[];
2506
+ /**
2507
+ * Company news (from FindCompanyNews)
2508
+ *
2509
+ * @generated from field: repeated bragi.pipelines.NewsItem news_items = 6;
2510
+ */
2511
+ newsItems: NewsItem[];
2512
+ /**
2513
+ * Contact's LinkedIn activity (from FindContactActivity)
2514
+ *
2515
+ * @generated from field: repeated bragi.pipelines.ActivityItem activities = 7;
2516
+ */
2517
+ activities: ActivityItem[];
2518
+ /**
2519
+ * Context for personalization
2520
+ *
2521
+ * Email of daily.dev user at company (for social proof)
2522
+ *
2523
+ * @generated from field: optional string user_in_company_email = 8;
2524
+ */
2525
+ userInCompanyEmail?: string;
2526
+ /**
2527
+ * Number of daily.dev users at company
2528
+ *
2529
+ * @generated from field: int32 user_count = 9;
2530
+ */
2531
+ userCount: number;
2532
+ /**
2533
+ * Pre-filled job opportunity URL ready to launch
2534
+ *
2535
+ * @generated from field: optional string opportunity_url = 10;
2536
+ */
2537
+ opportunityUrl?: string;
2538
+ constructor(data?: PartialMessage<GenerateRecruiterEmailRequest>);
2539
+ static readonly runtime: typeof proto3;
2540
+ static readonly typeName = "bragi.pipelines.GenerateRecruiterEmailRequest";
2541
+ static readonly fields: FieldList;
2542
+ static fromBinary(bytes: Uint8Array, options?: Partial<BinaryReadOptions>): GenerateRecruiterEmailRequest;
2543
+ static fromJson(jsonValue: JsonValue, options?: Partial<JsonReadOptions>): GenerateRecruiterEmailRequest;
2544
+ static fromJsonString(jsonString: string, options?: Partial<JsonReadOptions>): GenerateRecruiterEmailRequest;
2545
+ static equals(a: GenerateRecruiterEmailRequest | PlainMessage<GenerateRecruiterEmailRequest> | undefined, b: GenerateRecruiterEmailRequest | PlainMessage<GenerateRecruiterEmailRequest> | undefined): boolean;
2546
+ }
2547
+ /**
2548
+ * Response with generated email
2549
+ *
2550
+ * @generated from message bragi.pipelines.GenerateRecruiterEmailResponse
2551
+ */
2552
+ declare class GenerateRecruiterEmailResponse extends Message<GenerateRecruiterEmailResponse> {
2553
+ /**
2554
+ * Operation id
2555
+ *
2556
+ * @generated from field: string id = 1;
2557
+ */
2558
+ id: string;
2559
+ /**
2560
+ * Generated email body (no subject, no signature)
2561
+ *
2562
+ * @generated from field: string email_body = 2;
2563
+ */
2564
+ emailBody: string;
2565
+ constructor(data?: PartialMessage<GenerateRecruiterEmailResponse>);
2566
+ static readonly runtime: typeof proto3;
2567
+ static readonly typeName = "bragi.pipelines.GenerateRecruiterEmailResponse";
2568
+ static readonly fields: FieldList;
2569
+ static fromBinary(bytes: Uint8Array, options?: Partial<BinaryReadOptions>): GenerateRecruiterEmailResponse;
2570
+ static fromJson(jsonValue: JsonValue, options?: Partial<JsonReadOptions>): GenerateRecruiterEmailResponse;
2571
+ static fromJsonString(jsonString: string, options?: Partial<JsonReadOptions>): GenerateRecruiterEmailResponse;
2572
+ static equals(a: GenerateRecruiterEmailResponse | PlainMessage<GenerateRecruiterEmailResponse> | undefined, b: GenerateRecruiterEmailResponse | PlainMessage<GenerateRecruiterEmailResponse> | undefined): boolean;
2573
+ }
2030
2574
 
2031
- export { AggregateMemoryRequest, AlternativeTitleRequest, AlternativeTitleResponse, AnalyzeImageRequest, AnalyzeImageResponse, Applicant, ApplicationEval, ApplicationScreeningRequest, ApplicationScreeningResponse, AudienceFitRequest, AudienceFitResponse, BriefResponse, CandidateReasoningRequest, CandidateReasoningResponse, ClickbaitProbabilityRequest, ClickbaitProbabilityResponse, ClusterReconciliationRequest, ClusterReconciliationResponse, CollectionPostInput, ContentFormat, ContextBuildingStrategy, EnrichRequest, EnrichResponse, EnrichResponseV2, FeedbackCategory, FeedbackClassification, FeedbackPlatform, FeedbackSentiment, FeedbackUrgency, FilterSearchRequest, FilterSearchResponse, GenerateCollectionRequest, GenerateCollectionResponse, GenerateTagsResponse, IsPageInCacheRequest, IsPageInCacheResponse, JobPostDimensions, JobPostEnrichRequest, JobPostEnrichResponse, MemoryRequest, MemoryResponse, MultipleSearchQueriesResponse, ParseCVRequest, ParseCVResponse, ParseError, ParseFeedbackRequest, ParseFeedbackResponse, ParseOpportunityRequest, ParseOpportunityResponse, PersonalizedBriefingRequest, PostDimensions, PostDimensionsV2, ProcessClusteredRequest, ProcessIsolatedRequest, ProcessStoriesResponse, ScrapedPage, ScreeningQuestionsRequest, ScreeningQuestionsResponse, SearchAnswerRequest, SearchPromptRequest, SearchPromptResponse, SearchPromptV2Request, SearchQueryRequest, SearchQueryResponse, SimpleParseCVRequest, SimpleParseCVResponse, SmartPromptRequest, StoryAnalysisRequest, StoryDeduplicationRequest, StoryDeduplicationResponse, Tag, TagSeniorityRequest, TagSeniorityResponse, WarmIntroRequest, WarmIntroResponse };
2575
+ export { ActivityItem, AggregateMemoryRequest, AlternativeTitleRequest, AlternativeTitleResponse, AnalyzeImageRequest, AnalyzeImageResponse, Applicant, ApplicationEval, ApplicationScreeningRequest, ApplicationScreeningResponse, AudienceFitRequest, AudienceFitResponse, BriefResponse, CandidateReasoningRequest, CandidateReasoningResponse, 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, ScrapedPage, ScreeningQuestionsRequest, ScreeningQuestionsResponse, SearchAnswerRequest, SearchPromptRequest, SearchPromptResponse, SearchPromptV2Request, SearchQueryRequest, SearchQueryResponse, SimpleParseCVRequest, SimpleParseCVResponse, SmartPromptRequest, StoryAnalysisRequest, StoryDeduplicationRequest, StoryDeduplicationResponse, Tag, TagSeniorityRequest, TagSeniorityResponse, WarmIntroRequest, WarmIntroResponse };