@dailydotdev/schema 0.2.24 → 0.2.26

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.
Files changed (31) hide show
  1. package/dist/daily-api/opportunity_pb.cjs +1 -1
  2. package/dist/daily-api/opportunity_pb.d.cts +213 -68
  3. package/dist/daily-api/opportunity_pb.d.ts +213 -68
  4. package/dist/daily-api/opportunity_pb.js +1 -1
  5. package/dist/daily-api/organization_pb.cjs +1 -1
  6. package/dist/daily-api/organization_pb.d.cts +12 -203
  7. package/dist/daily-api/organization_pb.d.ts +12 -203
  8. package/dist/daily-api/organization_pb.js +1 -1
  9. package/dist/daily-api/pubsub/candidate-accepted-opportunity_pb.d.cts +2 -0
  10. package/dist/daily-api/pubsub/candidate-accepted-opportunity_pb.d.ts +2 -0
  11. package/dist/daily-api/user-candidate-preference_pb.cjs +1 -1
  12. package/dist/daily-api/user-candidate-preference_pb.d.cts +17 -90
  13. package/dist/daily-api/user-candidate-preference_pb.d.ts +17 -90
  14. package/dist/daily-api/user-candidate-preference_pb.js +1 -1
  15. package/dist/daily-api/user_pb.cjs +1 -0
  16. package/dist/daily-api/user_pb.d.cts +29 -0
  17. package/dist/daily-api/user_pb.d.ts +29 -0
  18. package/dist/daily-api/user_pb.js +1 -0
  19. package/dist/daily-api/util_pb.cjs +1 -1
  20. package/dist/daily-api/util_pb.d.cts +25 -25
  21. package/dist/daily-api/util_pb.d.ts +25 -25
  22. package/dist/daily-api/util_pb.js +1 -1
  23. package/dist/gondul/candidates_pb.cjs +1 -0
  24. package/dist/gondul/candidates_pb.d.cts +45 -0
  25. package/dist/gondul/candidates_pb.d.ts +45 -0
  26. package/dist/gondul/candidates_pb.js +1 -0
  27. package/dist/index.cjs +1 -1
  28. package/dist/index.d.cts +5 -3
  29. package/dist/index.d.ts +5 -3
  30. package/dist/index.js +1 -1
  31. package/package.json +1 -1
@@ -1,4 +1,6 @@
1
1
  import { Message, PartialMessage, proto3, FieldList, BinaryReadOptions, JsonValue, JsonReadOptions, PlainMessage } from '@bufbuild/protobuf';
2
+ import { UserCV } from './user_pb.cjs';
3
+ import { EmploymentType, Salary } from './opportunity_pb.cjs';
2
4
  import { Location, LocationType } from './util_pb.cjs';
3
5
  import { CompanyStage, CompanySize } from './organization_pb.cjs';
4
6
 
@@ -23,85 +25,6 @@ declare enum CandidateStatus {
23
25
  */
24
26
  OPEN_TO_OFFERS = 3
25
27
  }
26
- /**
27
- * @generated from enum dailydotdev.api.usercandidatepreference.EmploymentType
28
- */
29
- declare enum EmploymentType {
30
- /**
31
- * @generated from enum value: EMPLOYMENT_TYPE_UNSPECIFIED = 0;
32
- */
33
- UNSPECIFIED = 0,
34
- /**
35
- * @generated from enum value: EMPLOYMENT_TYPE_FULL_TIME = 1;
36
- */
37
- FULL_TIME = 1,
38
- /**
39
- * @generated from enum value: EMPLOYMENT_TYPE_PART_TIME = 2;
40
- */
41
- PART_TIME = 2,
42
- /**
43
- * @generated from enum value: EMPLOYMENT_TYPE_CONTRACT = 3;
44
- */
45
- CONTRACT = 3,
46
- /**
47
- * @generated from enum value: EMPLOYMENT_TYPE_INTERNSHIP = 4;
48
- */
49
- INTERNSHIP = 4
50
- }
51
- /**
52
- * Supporting message types
53
- *
54
- * @generated from message dailydotdev.api.usercandidatepreference.UserCandidateCV
55
- */
56
- declare class UserCandidateCV extends Message<UserCandidateCV> {
57
- /**
58
- * @generated from field: string bucket = 1;
59
- */
60
- bucket: string;
61
- /**
62
- * @generated from field: string blob = 2;
63
- */
64
- blob: string;
65
- /**
66
- * @generated from field: int32 uploaded_at = 3;
67
- */
68
- uploadedAt: number;
69
- constructor(data?: PartialMessage<UserCandidateCV>);
70
- static readonly runtime: typeof proto3;
71
- static readonly typeName = "dailydotdev.api.usercandidatepreference.UserCandidateCV";
72
- static readonly fields: FieldList;
73
- static fromBinary(bytes: Uint8Array, options?: Partial<BinaryReadOptions>): UserCandidateCV;
74
- static fromJson(jsonValue: JsonValue, options?: Partial<JsonReadOptions>): UserCandidateCV;
75
- static fromJsonString(jsonString: string, options?: Partial<JsonReadOptions>): UserCandidateCV;
76
- static equals(a: UserCandidateCV | PlainMessage<UserCandidateCV> | undefined, b: UserCandidateCV | PlainMessage<UserCandidateCV> | undefined): boolean;
77
- }
78
- /**
79
- * @generated from message dailydotdev.api.usercandidatepreference.SalaryExpectation
80
- */
81
- declare class SalaryExpectation extends Message<SalaryExpectation> {
82
- /**
83
- * @generated from field: optional int32 min_salary = 1;
84
- */
85
- minSalary?: number;
86
- /**
87
- * @generated from field: optional string currency = 2;
88
- */
89
- currency?: string;
90
- /**
91
- * "annual", "monthly", "hourly"
92
- *
93
- * @generated from field: optional string period = 3;
94
- */
95
- period?: string;
96
- constructor(data?: PartialMessage<SalaryExpectation>);
97
- static readonly runtime: typeof proto3;
98
- static readonly typeName = "dailydotdev.api.usercandidatepreference.SalaryExpectation";
99
- static readonly fields: FieldList;
100
- static fromBinary(bytes: Uint8Array, options?: Partial<BinaryReadOptions>): SalaryExpectation;
101
- static fromJson(jsonValue: JsonValue, options?: Partial<JsonReadOptions>): SalaryExpectation;
102
- static fromJsonString(jsonString: string, options?: Partial<JsonReadOptions>): SalaryExpectation;
103
- static equals(a: SalaryExpectation | PlainMessage<SalaryExpectation> | undefined, b: SalaryExpectation | PlainMessage<SalaryExpectation> | undefined): boolean;
104
- }
105
28
  /**
106
29
  * @generated from message dailydotdev.api.usercandidatepreference.UserCandidatePreference
107
30
  */
@@ -119,39 +42,43 @@ declare class UserCandidatePreference extends Message<UserCandidatePreference> {
119
42
  */
120
43
  updatedAt: number;
121
44
  /**
122
- * @generated from field: dailydotdev.api.usercandidatepreference.UserCandidateCV cv = 4;
45
+ * @generated from field: dailydotdev.api.user.UserCV cv = 4;
123
46
  */
124
- cv?: UserCandidateCV;
47
+ cv?: UserCV;
125
48
  /**
126
- * JSON string for flexibility
49
+ * The CV parsed into JSON format, string to avoid schema changes
127
50
  *
128
- * @generated from field: string cv_parsed_json = 5;
51
+ * @generated from field: optional string cv_parsed_json = 5;
129
52
  */
130
- cvParsedJson: string;
53
+ cvParsedJson?: string;
131
54
  /**
55
+ * The description of the user's preferred role
56
+ *
132
57
  * @generated from field: string role = 6;
133
58
  */
134
59
  role: string;
135
60
  /**
61
+ * A float value between 0 and 1 indicating the role type where 0 is IC, 0.5 is auto, and 1 is management
62
+ *
136
63
  * @generated from field: float role_type = 7;
137
64
  */
138
65
  roleType: number;
139
66
  /**
140
- * @generated from field: repeated dailydotdev.api.usercandidatepreference.EmploymentType employment_type = 8;
67
+ * @generated from field: repeated dailydotdev.api.opportunity.EmploymentType employment_type = 8;
141
68
  */
142
69
  employmentType: EmploymentType[];
143
70
  /**
144
- * @generated from field: dailydotdev.api.usercandidatepreference.SalaryExpectation salary_expectation = 9;
71
+ * @generated from field: optional dailydotdev.api.opportunity.Salary salary_expectation = 9;
145
72
  */
146
- salaryExpectation?: SalaryExpectation;
73
+ salaryExpectation?: Salary;
147
74
  /**
148
75
  * @generated from field: repeated dailydotdev.api.util.Location location = 10;
149
76
  */
150
77
  location: Location[];
151
78
  /**
152
- * @generated from field: optional dailydotdev.api.util.LocationType location_type = 11;
79
+ * @generated from field: repeated dailydotdev.api.util.LocationType location_type = 11;
153
80
  */
154
- locationType?: LocationType;
81
+ locationType: LocationType[];
155
82
  /**
156
83
  * @generated from field: repeated dailydotdev.api.organization.CompanyStage company_stage = 12;
157
84
  */
@@ -170,4 +97,4 @@ declare class UserCandidatePreference extends Message<UserCandidatePreference> {
170
97
  static equals(a: UserCandidatePreference | PlainMessage<UserCandidatePreference> | undefined, b: UserCandidatePreference | PlainMessage<UserCandidatePreference> | undefined): boolean;
171
98
  }
172
99
 
173
- export { CandidateStatus, EmploymentType, SalaryExpectation, UserCandidateCV, UserCandidatePreference };
100
+ export { CandidateStatus, UserCandidatePreference };
@@ -1,4 +1,6 @@
1
1
  import { Message, PartialMessage, proto3, FieldList, BinaryReadOptions, JsonValue, JsonReadOptions, PlainMessage } from '@bufbuild/protobuf';
2
+ import { UserCV } from './user_pb.js';
3
+ import { EmploymentType, Salary } from './opportunity_pb.js';
2
4
  import { Location, LocationType } from './util_pb.js';
3
5
  import { CompanyStage, CompanySize } from './organization_pb.js';
4
6
 
@@ -23,85 +25,6 @@ declare enum CandidateStatus {
23
25
  */
24
26
  OPEN_TO_OFFERS = 3
25
27
  }
26
- /**
27
- * @generated from enum dailydotdev.api.usercandidatepreference.EmploymentType
28
- */
29
- declare enum EmploymentType {
30
- /**
31
- * @generated from enum value: EMPLOYMENT_TYPE_UNSPECIFIED = 0;
32
- */
33
- UNSPECIFIED = 0,
34
- /**
35
- * @generated from enum value: EMPLOYMENT_TYPE_FULL_TIME = 1;
36
- */
37
- FULL_TIME = 1,
38
- /**
39
- * @generated from enum value: EMPLOYMENT_TYPE_PART_TIME = 2;
40
- */
41
- PART_TIME = 2,
42
- /**
43
- * @generated from enum value: EMPLOYMENT_TYPE_CONTRACT = 3;
44
- */
45
- CONTRACT = 3,
46
- /**
47
- * @generated from enum value: EMPLOYMENT_TYPE_INTERNSHIP = 4;
48
- */
49
- INTERNSHIP = 4
50
- }
51
- /**
52
- * Supporting message types
53
- *
54
- * @generated from message dailydotdev.api.usercandidatepreference.UserCandidateCV
55
- */
56
- declare class UserCandidateCV extends Message<UserCandidateCV> {
57
- /**
58
- * @generated from field: string bucket = 1;
59
- */
60
- bucket: string;
61
- /**
62
- * @generated from field: string blob = 2;
63
- */
64
- blob: string;
65
- /**
66
- * @generated from field: int32 uploaded_at = 3;
67
- */
68
- uploadedAt: number;
69
- constructor(data?: PartialMessage<UserCandidateCV>);
70
- static readonly runtime: typeof proto3;
71
- static readonly typeName = "dailydotdev.api.usercandidatepreference.UserCandidateCV";
72
- static readonly fields: FieldList;
73
- static fromBinary(bytes: Uint8Array, options?: Partial<BinaryReadOptions>): UserCandidateCV;
74
- static fromJson(jsonValue: JsonValue, options?: Partial<JsonReadOptions>): UserCandidateCV;
75
- static fromJsonString(jsonString: string, options?: Partial<JsonReadOptions>): UserCandidateCV;
76
- static equals(a: UserCandidateCV | PlainMessage<UserCandidateCV> | undefined, b: UserCandidateCV | PlainMessage<UserCandidateCV> | undefined): boolean;
77
- }
78
- /**
79
- * @generated from message dailydotdev.api.usercandidatepreference.SalaryExpectation
80
- */
81
- declare class SalaryExpectation extends Message<SalaryExpectation> {
82
- /**
83
- * @generated from field: optional int32 min_salary = 1;
84
- */
85
- minSalary?: number;
86
- /**
87
- * @generated from field: optional string currency = 2;
88
- */
89
- currency?: string;
90
- /**
91
- * "annual", "monthly", "hourly"
92
- *
93
- * @generated from field: optional string period = 3;
94
- */
95
- period?: string;
96
- constructor(data?: PartialMessage<SalaryExpectation>);
97
- static readonly runtime: typeof proto3;
98
- static readonly typeName = "dailydotdev.api.usercandidatepreference.SalaryExpectation";
99
- static readonly fields: FieldList;
100
- static fromBinary(bytes: Uint8Array, options?: Partial<BinaryReadOptions>): SalaryExpectation;
101
- static fromJson(jsonValue: JsonValue, options?: Partial<JsonReadOptions>): SalaryExpectation;
102
- static fromJsonString(jsonString: string, options?: Partial<JsonReadOptions>): SalaryExpectation;
103
- static equals(a: SalaryExpectation | PlainMessage<SalaryExpectation> | undefined, b: SalaryExpectation | PlainMessage<SalaryExpectation> | undefined): boolean;
104
- }
105
28
  /**
106
29
  * @generated from message dailydotdev.api.usercandidatepreference.UserCandidatePreference
107
30
  */
@@ -119,39 +42,43 @@ declare class UserCandidatePreference extends Message<UserCandidatePreference> {
119
42
  */
120
43
  updatedAt: number;
121
44
  /**
122
- * @generated from field: dailydotdev.api.usercandidatepreference.UserCandidateCV cv = 4;
45
+ * @generated from field: dailydotdev.api.user.UserCV cv = 4;
123
46
  */
124
- cv?: UserCandidateCV;
47
+ cv?: UserCV;
125
48
  /**
126
- * JSON string for flexibility
49
+ * The CV parsed into JSON format, string to avoid schema changes
127
50
  *
128
- * @generated from field: string cv_parsed_json = 5;
51
+ * @generated from field: optional string cv_parsed_json = 5;
129
52
  */
130
- cvParsedJson: string;
53
+ cvParsedJson?: string;
131
54
  /**
55
+ * The description of the user's preferred role
56
+ *
132
57
  * @generated from field: string role = 6;
133
58
  */
134
59
  role: string;
135
60
  /**
61
+ * A float value between 0 and 1 indicating the role type where 0 is IC, 0.5 is auto, and 1 is management
62
+ *
136
63
  * @generated from field: float role_type = 7;
137
64
  */
138
65
  roleType: number;
139
66
  /**
140
- * @generated from field: repeated dailydotdev.api.usercandidatepreference.EmploymentType employment_type = 8;
67
+ * @generated from field: repeated dailydotdev.api.opportunity.EmploymentType employment_type = 8;
141
68
  */
142
69
  employmentType: EmploymentType[];
143
70
  /**
144
- * @generated from field: dailydotdev.api.usercandidatepreference.SalaryExpectation salary_expectation = 9;
71
+ * @generated from field: optional dailydotdev.api.opportunity.Salary salary_expectation = 9;
145
72
  */
146
- salaryExpectation?: SalaryExpectation;
73
+ salaryExpectation?: Salary;
147
74
  /**
148
75
  * @generated from field: repeated dailydotdev.api.util.Location location = 10;
149
76
  */
150
77
  location: Location[];
151
78
  /**
152
- * @generated from field: optional dailydotdev.api.util.LocationType location_type = 11;
79
+ * @generated from field: repeated dailydotdev.api.util.LocationType location_type = 11;
153
80
  */
154
- locationType?: LocationType;
81
+ locationType: LocationType[];
155
82
  /**
156
83
  * @generated from field: repeated dailydotdev.api.organization.CompanyStage company_stage = 12;
157
84
  */
@@ -170,4 +97,4 @@ declare class UserCandidatePreference extends Message<UserCandidatePreference> {
170
97
  static equals(a: UserCandidatePreference | PlainMessage<UserCandidatePreference> | undefined, b: UserCandidatePreference | PlainMessage<UserCandidatePreference> | undefined): boolean;
171
98
  }
172
99
 
173
- export { CandidateStatus, EmploymentType, SalaryExpectation, UserCandidateCV, UserCandidatePreference };
100
+ export { CandidateStatus, UserCandidatePreference };
@@ -1 +1 @@
1
- import{Message as e,proto3 as n}from"@bufbuild/protobuf";import{Location as a,LocationType as t}from"./util_pb.ts";import{CompanySize as r,CompanyStage as i}from"./organization_pb.ts";var o=(e=>(e[e.UNSPECIFIED=0]="UNSPECIFIED",e[e.DISABLED=1]="DISABLED",e[e.ACTIVELY_LOOKING=2]="ACTIVELY_LOOKING",e[e.OPEN_TO_OFFERS=3]="OPEN_TO_OFFERS",e))(o||{});n.util.setEnumType(o,"dailydotdev.api.usercandidatepreference.CandidateStatus",[{no:0,name:"CANDIDATE_STATUS_UNSPECIFIED"},{no:1,name:"CANDIDATE_STATUS_DISABLED"},{no:2,name:"CANDIDATE_STATUS_ACTIVELY_LOOKING"},{no:3,name:"CANDIDATE_STATUS_OPEN_TO_OFFERS"}]);var s=(e=>(e[e.UNSPECIFIED=0]="UNSPECIFIED",e[e.FULL_TIME=1]="FULL_TIME",e[e.PART_TIME=2]="PART_TIME",e[e.CONTRACT=3]="CONTRACT",e[e.INTERNSHIP=4]="INTERNSHIP",e))(s||{});n.util.setEnumType(s,"dailydotdev.api.usercandidatepreference.EmploymentType",[{no:0,name:"EMPLOYMENT_TYPE_UNSPECIFIED"},{no:1,name:"EMPLOYMENT_TYPE_FULL_TIME"},{no:2,name:"EMPLOYMENT_TYPE_PART_TIME"},{no:3,name:"EMPLOYMENT_TYPE_CONTRACT"},{no:4,name:"EMPLOYMENT_TYPE_INTERNSHIP"}]);class m extends e{bucket="";blob="";uploadedAt=0;constructor(e){super(),n.util.initPartial(e,this)}static runtime=n;static typeName="dailydotdev.api.usercandidatepreference.UserCandidateCV";static fields=n.util.newFieldList((()=>[{no:1,name:"bucket",kind:"scalar",T:9},{no:2,name:"blob",kind:"scalar",T:9},{no:3,name:"uploaded_at",kind:"scalar",T:5}]));static fromBinary(e,n){return(new m).fromBinary(e,n)}static fromJson(e,n){return(new m).fromJson(e,n)}static fromJsonString(e,n){return(new m).fromJsonString(e,n)}static equals(e,a){return n.util.equals(m,e,a)}}class d extends e{minSalary;currency;period;constructor(e){super(),n.util.initPartial(e,this)}static runtime=n;static typeName="dailydotdev.api.usercandidatepreference.SalaryExpectation";static fields=n.util.newFieldList((()=>[{no:1,name:"min_salary",kind:"scalar",T:5,opt:!0},{no:2,name:"currency",kind:"scalar",T:9,opt:!0},{no:3,name:"period",kind:"scalar",T:9,opt:!0}]));static fromBinary(e,n){return(new d).fromBinary(e,n)}static fromJson(e,n){return(new d).fromJson(e,n)}static fromJsonString(e,n){return(new d).fromJsonString(e,n)}static equals(e,a){return n.util.equals(d,e,a)}}class T extends e{userId="";status=0;updatedAt=0;cv;cvParsedJson="";role="";roleType=0;employmentType=[];salaryExpectation;location=[];locationType;companyStage=[];companySize=[];constructor(e){super(),n.util.initPartial(e,this)}static runtime=n;static typeName="dailydotdev.api.usercandidatepreference.UserCandidatePreference";static fields=n.util.newFieldList((()=>[{no:1,name:"user_id",kind:"scalar",T:9},{no:2,name:"status",kind:"enum",T:n.getEnumType(o)},{no:3,name:"updated_at",kind:"scalar",T:5},{no:4,name:"cv",kind:"message",T:m},{no:5,name:"cv_parsed_json",kind:"scalar",T:9},{no:6,name:"role",kind:"scalar",T:9},{no:7,name:"role_type",kind:"scalar",T:2},{no:8,name:"employment_type",kind:"enum",T:n.getEnumType(s),repeated:!0},{no:9,name:"salary_expectation",kind:"message",T:d},{no:10,name:"location",kind:"message",T:a,repeated:!0},{no:11,name:"location_type",kind:"message",T:t,opt:!0},{no:12,name:"company_stage",kind:"enum",T:n.getEnumType(i),repeated:!0},{no:13,name:"company_size",kind:"enum",T:n.getEnumType(r),repeated:!0}]));static fromBinary(e,n){return(new T).fromBinary(e,n)}static fromJson(e,n){return(new T).fromJson(e,n)}static fromJsonString(e,n){return(new T).fromJsonString(e,n)}static equals(e,a){return n.util.equals(T,e,a)}}export{o as CandidateStatus,s as EmploymentType,d as SalaryExpectation,m as UserCandidateCV,T as UserCandidatePreference};
1
+ import{Message as e,proto3 as n}from"@bufbuild/protobuf";import{UserCV as t}from"./user_pb.ts";import{EmploymentType as a,Salary as o}from"./opportunity_pb.ts";import{Location as r,LocationType as i}from"./util_pb.ts";import{CompanySize as m,CompanyStage as s}from"./organization_pb.ts";var p=(e=>(e[e.UNSPECIFIED=0]="UNSPECIFIED",e[e.DISABLED=1]="DISABLED",e[e.ACTIVELY_LOOKING=2]="ACTIVELY_LOOKING",e[e.OPEN_TO_OFFERS=3]="OPEN_TO_OFFERS",e))(p||{});n.util.setEnumType(p,"dailydotdev.api.usercandidatepreference.CandidateStatus",[{no:0,name:"CANDIDATE_STATUS_UNSPECIFIED"},{no:1,name:"CANDIDATE_STATUS_DISABLED"},{no:2,name:"CANDIDATE_STATUS_ACTIVELY_LOOKING"},{no:3,name:"CANDIDATE_STATUS_OPEN_TO_OFFERS"}]);class d extends e{userId="";status=0;updatedAt=0;cv;cvParsedJson;role="";roleType=0;employmentType=[];salaryExpectation;location=[];locationType=[];companyStage=[];companySize=[];constructor(e){super(),n.util.initPartial(e,this)}static runtime=n;static typeName="dailydotdev.api.usercandidatepreference.UserCandidatePreference";static fields=n.util.newFieldList((()=>[{no:1,name:"user_id",kind:"scalar",T:9},{no:2,name:"status",kind:"enum",T:n.getEnumType(p)},{no:3,name:"updated_at",kind:"scalar",T:5},{no:4,name:"cv",kind:"message",T:t},{no:5,name:"cv_parsed_json",kind:"scalar",T:9,opt:!0},{no:6,name:"role",kind:"scalar",T:9},{no:7,name:"role_type",kind:"scalar",T:2},{no:8,name:"employment_type",kind:"enum",T:n.getEnumType(a),repeated:!0},{no:9,name:"salary_expectation",kind:"message",T:o,opt:!0},{no:10,name:"location",kind:"message",T:r,repeated:!0},{no:11,name:"location_type",kind:"enum",T:n.getEnumType(i),repeated:!0},{no:12,name:"company_stage",kind:"enum",T:n.getEnumType(s),repeated:!0},{no:13,name:"company_size",kind:"enum",T:n.getEnumType(m),repeated:!0}]));static fromBinary(e,n){return(new d).fromBinary(e,n)}static fromJson(e,n){return(new d).fromJson(e,n)}static fromJsonString(e,n){return(new d).fromJsonString(e,n)}static equals(e,t){return n.util.equals(d,e,t)}}export{p as CandidateStatus,d as UserCandidatePreference};
@@ -0,0 +1 @@
1
+ var e,t=Object.defineProperty,r=Object.getOwnPropertyDescriptor,o=Object.getOwnPropertyNames,n=Object.prototype.hasOwnProperty,a={};((e,r)=>{for(var o in r)t(e,o,{get:r[o],enumerable:!0})})(a,{UserCV:()=>s}),module.exports=(e=a,((e,a,i,s)=>{if(a&&"object"==typeof a||"function"==typeof a)for(let l of o(a))n.call(e,l)||l===i||t(e,l,{get:()=>a[l],enumerable:!(s=r(a,l))||s.enumerable});return e})(t({},"__esModule",{value:!0}),e));var i=require("@bufbuild/protobuf");class s extends i.Message{bucket="";blob="";lastModified=0;constructor(e){super(),i.proto3.util.initPartial(e,this)}static runtime=i.proto3;static typeName="dailydotdev.api.user.UserCV";static fields=i.proto3.util.newFieldList((()=>[{no:1,name:"bucket",kind:"scalar",T:9},{no:2,name:"blob",kind:"scalar",T:9},{no:3,name:"last_modified",kind:"scalar",T:5}]));static fromBinary(e,t){return(new s).fromBinary(e,t)}static fromJson(e,t){return(new s).fromJson(e,t)}static fromJsonString(e,t){return(new s).fromJsonString(e,t)}static equals(e,t){return i.proto3.util.equals(s,e,t)}}
@@ -0,0 +1,29 @@
1
+ import { Message, PartialMessage, proto3, FieldList, BinaryReadOptions, JsonValue, JsonReadOptions, PlainMessage } from '@bufbuild/protobuf';
2
+
3
+ /**
4
+ * @generated from message dailydotdev.api.user.UserCV
5
+ */
6
+ declare class UserCV extends Message<UserCV> {
7
+ /**
8
+ * @generated from field: string bucket = 1;
9
+ */
10
+ bucket: string;
11
+ /**
12
+ * @generated from field: string blob = 2;
13
+ */
14
+ blob: string;
15
+ /**
16
+ * @generated from field: int32 last_modified = 3;
17
+ */
18
+ lastModified: number;
19
+ constructor(data?: PartialMessage<UserCV>);
20
+ static readonly runtime: typeof proto3;
21
+ static readonly typeName = "dailydotdev.api.user.UserCV";
22
+ static readonly fields: FieldList;
23
+ static fromBinary(bytes: Uint8Array, options?: Partial<BinaryReadOptions>): UserCV;
24
+ static fromJson(jsonValue: JsonValue, options?: Partial<JsonReadOptions>): UserCV;
25
+ static fromJsonString(jsonString: string, options?: Partial<JsonReadOptions>): UserCV;
26
+ static equals(a: UserCV | PlainMessage<UserCV> | undefined, b: UserCV | PlainMessage<UserCV> | undefined): boolean;
27
+ }
28
+
29
+ export { UserCV };
@@ -0,0 +1,29 @@
1
+ import { Message, PartialMessage, proto3, FieldList, BinaryReadOptions, JsonValue, JsonReadOptions, PlainMessage } from '@bufbuild/protobuf';
2
+
3
+ /**
4
+ * @generated from message dailydotdev.api.user.UserCV
5
+ */
6
+ declare class UserCV extends Message<UserCV> {
7
+ /**
8
+ * @generated from field: string bucket = 1;
9
+ */
10
+ bucket: string;
11
+ /**
12
+ * @generated from field: string blob = 2;
13
+ */
14
+ blob: string;
15
+ /**
16
+ * @generated from field: int32 last_modified = 3;
17
+ */
18
+ lastModified: number;
19
+ constructor(data?: PartialMessage<UserCV>);
20
+ static readonly runtime: typeof proto3;
21
+ static readonly typeName = "dailydotdev.api.user.UserCV";
22
+ static readonly fields: FieldList;
23
+ static fromBinary(bytes: Uint8Array, options?: Partial<BinaryReadOptions>): UserCV;
24
+ static fromJson(jsonValue: JsonValue, options?: Partial<JsonReadOptions>): UserCV;
25
+ static fromJsonString(jsonString: string, options?: Partial<JsonReadOptions>): UserCV;
26
+ static equals(a: UserCV | PlainMessage<UserCV> | undefined, b: UserCV | PlainMessage<UserCV> | undefined): boolean;
27
+ }
28
+
29
+ export { UserCV };
@@ -0,0 +1 @@
1
+ import{Message as t,proto3 as i}from"@bufbuild/protobuf";class r extends t{bucket="";blob="";lastModified=0;constructor(t){super(),i.util.initPartial(t,this)}static runtime=i;static typeName="dailydotdev.api.user.UserCV";static fields=i.util.newFieldList((()=>[{no:1,name:"bucket",kind:"scalar",T:9},{no:2,name:"blob",kind:"scalar",T:9},{no:3,name:"last_modified",kind:"scalar",T:5}]));static fromBinary(t,i){return(new r).fromBinary(t,i)}static fromJson(t,i){return(new r).fromJson(t,i)}static fromJsonString(t,i){return(new r).fromJsonString(t,i)}static equals(t,e){return i.util.equals(r,t,e)}}export{r as UserCV};
@@ -1 +1 @@
1
- var t,e=Object.defineProperty,o=Object.getOwnPropertyDescriptor,n=Object.getOwnPropertyNames,r=Object.prototype.hasOwnProperty,i={};((t,o)=>{for(var n in o)e(t,n,{get:o[n],enumerable:!0})})(i,{Location:()=>s,LocationType:()=>c}),module.exports=(t=i,((t,i,a,s)=>{if(i&&"object"==typeof i||"function"==typeof i)for(let c of n(i))r.call(t,c)||c===a||e(t,c,{get:()=>i[c],enumerable:!(s=o(i,c))||s.enumerable});return t})(e({},"__esModule",{value:!0}),t));var a=require("@bufbuild/protobuf");class s extends a.Message{city;country;subdivision;continent;latitude;longitude;constructor(t){super(),a.proto3.util.initPartial(t,this)}static runtime=a.proto3;static typeName="dailydotdev.api.util.Location";static fields=a.proto3.util.newFieldList((()=>[{no:1,name:"city",kind:"scalar",T:9,opt:!0},{no:2,name:"country",kind:"scalar",T:9,opt:!0},{no:3,name:"subdivision",kind:"scalar",T:9,opt:!0},{no:4,name:"continent",kind:"scalar",T:9,opt:!0},{no:5,name:"latitude",kind:"scalar",T:2,opt:!0},{no:6,name:"longitude",kind:"scalar",T:2,opt:!0}]));static fromBinary(t,e){return(new s).fromBinary(t,e)}static fromJson(t,e){return(new s).fromJson(t,e)}static fromJsonString(t,e){return(new s).fromJsonString(t,e)}static equals(t,e){return a.proto3.util.equals(s,t,e)}}class c extends a.Message{remote=!1;office=!1;hybrid=!1;constructor(t){super(),a.proto3.util.initPartial(t,this)}static runtime=a.proto3;static typeName="dailydotdev.api.util.LocationType";static fields=a.proto3.util.newFieldList((()=>[{no:1,name:"remote",kind:"scalar",T:8},{no:2,name:"office",kind:"scalar",T:8},{no:3,name:"hybrid",kind:"scalar",T:8}]));static fromBinary(t,e){return(new c).fromBinary(t,e)}static fromJson(t,e){return(new c).fromJson(t,e)}static fromJsonString(t,e){return(new c).fromJsonString(t,e)}static equals(t,e){return a.proto3.util.equals(c,t,e)}}
1
+ var t,e=Object.defineProperty,n=Object.getOwnPropertyDescriptor,o=Object.getOwnPropertyNames,r=Object.prototype.hasOwnProperty,i={};((t,n)=>{for(var o in n)e(t,o,{get:n[o],enumerable:!0})})(i,{Location:()=>u,LocationType:()=>s}),module.exports=(t=i,((t,i,a,s)=>{if(i&&"object"==typeof i||"function"==typeof i)for(let u of o(i))r.call(t,u)||u===a||e(t,u,{get:()=>i[u],enumerable:!(s=n(i,u))||s.enumerable});return t})(e({},"__esModule",{value:!0}),t));var a=require("@bufbuild/protobuf"),s=(t=>(t[t.UNSPECIFIED=0]="UNSPECIFIED",t[t.REMOTE=1]="REMOTE",t[t.OFFICE=2]="OFFICE",t[t.HYBRID=3]="HYBRID",t))(s||{});a.proto3.util.setEnumType(s,"dailydotdev.api.util.LocationType",[{no:0,name:"LOCATION_TYPE_UNSPECIFIED"},{no:1,name:"LOCATION_TYPE_REMOTE"},{no:2,name:"LOCATION_TYPE_OFFICE"},{no:3,name:"LOCATION_TYPE_HYBRID"}]);class u extends a.Message{city;country;subdivision;continent;latitude;longitude;type;constructor(t){super(),a.proto3.util.initPartial(t,this)}static runtime=a.proto3;static typeName="dailydotdev.api.util.Location";static fields=a.proto3.util.newFieldList((()=>[{no:1,name:"city",kind:"scalar",T:9,opt:!0},{no:2,name:"country",kind:"scalar",T:9,opt:!0},{no:3,name:"subdivision",kind:"scalar",T:9,opt:!0},{no:4,name:"continent",kind:"scalar",T:9,opt:!0},{no:5,name:"latitude",kind:"scalar",T:2,opt:!0},{no:6,name:"longitude",kind:"scalar",T:2,opt:!0},{no:7,name:"type",kind:"enum",T:a.proto3.getEnumType(s),opt:!0}]));static fromBinary(t,e){return(new u).fromBinary(t,e)}static fromJson(t,e){return(new u).fromJson(t,e)}static fromJsonString(t,e){return(new u).fromJsonString(t,e)}static equals(t,e){return a.proto3.util.equals(u,t,e)}}
@@ -1,5 +1,26 @@
1
1
  import { Message, PartialMessage, proto3, FieldList, BinaryReadOptions, JsonValue, JsonReadOptions, PlainMessage } from '@bufbuild/protobuf';
2
2
 
3
+ /**
4
+ * @generated from enum dailydotdev.api.util.LocationType
5
+ */
6
+ declare enum LocationType {
7
+ /**
8
+ * @generated from enum value: LOCATION_TYPE_UNSPECIFIED = 0;
9
+ */
10
+ UNSPECIFIED = 0,
11
+ /**
12
+ * @generated from enum value: LOCATION_TYPE_REMOTE = 1;
13
+ */
14
+ REMOTE = 1,
15
+ /**
16
+ * @generated from enum value: LOCATION_TYPE_OFFICE = 2;
17
+ */
18
+ OFFICE = 2,
19
+ /**
20
+ * @generated from enum value: LOCATION_TYPE_HYBRID = 3;
21
+ */
22
+ HYBRID = 3
23
+ }
3
24
  /**
4
25
  * @generated from message dailydotdev.api.util.Location
5
26
  */
@@ -28,6 +49,10 @@ declare class Location extends Message<Location> {
28
49
  * @generated from field: optional float longitude = 6;
29
50
  */
30
51
  longitude?: number;
52
+ /**
53
+ * @generated from field: optional dailydotdev.api.util.LocationType type = 7;
54
+ */
55
+ type?: LocationType;
31
56
  constructor(data?: PartialMessage<Location>);
32
57
  static readonly runtime: typeof proto3;
33
58
  static readonly typeName = "dailydotdev.api.util.Location";
@@ -37,30 +62,5 @@ declare class Location extends Message<Location> {
37
62
  static fromJsonString(jsonString: string, options?: Partial<JsonReadOptions>): Location;
38
63
  static equals(a: Location | PlainMessage<Location> | undefined, b: Location | PlainMessage<Location> | undefined): boolean;
39
64
  }
40
- /**
41
- * @generated from message dailydotdev.api.util.LocationType
42
- */
43
- declare class LocationType extends Message<LocationType> {
44
- /**
45
- * @generated from field: bool remote = 1;
46
- */
47
- remote: boolean;
48
- /**
49
- * @generated from field: bool office = 2;
50
- */
51
- office: boolean;
52
- /**
53
- * @generated from field: bool hybrid = 3;
54
- */
55
- hybrid: boolean;
56
- constructor(data?: PartialMessage<LocationType>);
57
- static readonly runtime: typeof proto3;
58
- static readonly typeName = "dailydotdev.api.util.LocationType";
59
- static readonly fields: FieldList;
60
- static fromBinary(bytes: Uint8Array, options?: Partial<BinaryReadOptions>): LocationType;
61
- static fromJson(jsonValue: JsonValue, options?: Partial<JsonReadOptions>): LocationType;
62
- static fromJsonString(jsonString: string, options?: Partial<JsonReadOptions>): LocationType;
63
- static equals(a: LocationType | PlainMessage<LocationType> | undefined, b: LocationType | PlainMessage<LocationType> | undefined): boolean;
64
- }
65
65
 
66
66
  export { Location, LocationType };
@@ -1,5 +1,26 @@
1
1
  import { Message, PartialMessage, proto3, FieldList, BinaryReadOptions, JsonValue, JsonReadOptions, PlainMessage } from '@bufbuild/protobuf';
2
2
 
3
+ /**
4
+ * @generated from enum dailydotdev.api.util.LocationType
5
+ */
6
+ declare enum LocationType {
7
+ /**
8
+ * @generated from enum value: LOCATION_TYPE_UNSPECIFIED = 0;
9
+ */
10
+ UNSPECIFIED = 0,
11
+ /**
12
+ * @generated from enum value: LOCATION_TYPE_REMOTE = 1;
13
+ */
14
+ REMOTE = 1,
15
+ /**
16
+ * @generated from enum value: LOCATION_TYPE_OFFICE = 2;
17
+ */
18
+ OFFICE = 2,
19
+ /**
20
+ * @generated from enum value: LOCATION_TYPE_HYBRID = 3;
21
+ */
22
+ HYBRID = 3
23
+ }
3
24
  /**
4
25
  * @generated from message dailydotdev.api.util.Location
5
26
  */
@@ -28,6 +49,10 @@ declare class Location extends Message<Location> {
28
49
  * @generated from field: optional float longitude = 6;
29
50
  */
30
51
  longitude?: number;
52
+ /**
53
+ * @generated from field: optional dailydotdev.api.util.LocationType type = 7;
54
+ */
55
+ type?: LocationType;
31
56
  constructor(data?: PartialMessage<Location>);
32
57
  static readonly runtime: typeof proto3;
33
58
  static readonly typeName = "dailydotdev.api.util.Location";
@@ -37,30 +62,5 @@ declare class Location extends Message<Location> {
37
62
  static fromJsonString(jsonString: string, options?: Partial<JsonReadOptions>): Location;
38
63
  static equals(a: Location | PlainMessage<Location> | undefined, b: Location | PlainMessage<Location> | undefined): boolean;
39
64
  }
40
- /**
41
- * @generated from message dailydotdev.api.util.LocationType
42
- */
43
- declare class LocationType extends Message<LocationType> {
44
- /**
45
- * @generated from field: bool remote = 1;
46
- */
47
- remote: boolean;
48
- /**
49
- * @generated from field: bool office = 2;
50
- */
51
- office: boolean;
52
- /**
53
- * @generated from field: bool hybrid = 3;
54
- */
55
- hybrid: boolean;
56
- constructor(data?: PartialMessage<LocationType>);
57
- static readonly runtime: typeof proto3;
58
- static readonly typeName = "dailydotdev.api.util.LocationType";
59
- static readonly fields: FieldList;
60
- static fromBinary(bytes: Uint8Array, options?: Partial<BinaryReadOptions>): LocationType;
61
- static fromJson(jsonValue: JsonValue, options?: Partial<JsonReadOptions>): LocationType;
62
- static fromJsonString(jsonString: string, options?: Partial<JsonReadOptions>): LocationType;
63
- static equals(a: LocationType | PlainMessage<LocationType> | undefined, b: LocationType | PlainMessage<LocationType> | undefined): boolean;
64
- }
65
65
 
66
66
  export { Location, LocationType };
@@ -1 +1 @@
1
- import{Message as t,proto3 as i}from"@bufbuild/protobuf";class n extends t{city;country;subdivision;continent;latitude;longitude;constructor(t){super(),i.util.initPartial(t,this)}static runtime=i;static typeName="dailydotdev.api.util.Location";static fields=i.util.newFieldList((()=>[{no:1,name:"city",kind:"scalar",T:9,opt:!0},{no:2,name:"country",kind:"scalar",T:9,opt:!0},{no:3,name:"subdivision",kind:"scalar",T:9,opt:!0},{no:4,name:"continent",kind:"scalar",T:9,opt:!0},{no:5,name:"latitude",kind:"scalar",T:2,opt:!0},{no:6,name:"longitude",kind:"scalar",T:2,opt:!0}]));static fromBinary(t,i){return(new n).fromBinary(t,i)}static fromJson(t,i){return(new n).fromJson(t,i)}static fromJsonString(t,i){return(new n).fromJsonString(t,i)}static equals(t,a){return i.util.equals(n,t,a)}}class a extends t{remote=!1;office=!1;hybrid=!1;constructor(t){super(),i.util.initPartial(t,this)}static runtime=i;static typeName="dailydotdev.api.util.LocationType";static fields=i.util.newFieldList((()=>[{no:1,name:"remote",kind:"scalar",T:8},{no:2,name:"office",kind:"scalar",T:8},{no:3,name:"hybrid",kind:"scalar",T:8}]));static fromBinary(t,i){return(new a).fromBinary(t,i)}static fromJson(t,i){return(new a).fromJson(t,i)}static fromJsonString(t,i){return(new a).fromJsonString(t,i)}static equals(t,n){return i.util.equals(a,t,n)}}export{n as Location,a as LocationType};
1
+ import{Message as t,proto3 as n}from"@bufbuild/protobuf";var i=(t=>(t[t.UNSPECIFIED=0]="UNSPECIFIED",t[t.REMOTE=1]="REMOTE",t[t.OFFICE=2]="OFFICE",t[t.HYBRID=3]="HYBRID",t))(i||{});n.util.setEnumType(i,"dailydotdev.api.util.LocationType",[{no:0,name:"LOCATION_TYPE_UNSPECIFIED"},{no:1,name:"LOCATION_TYPE_REMOTE"},{no:2,name:"LOCATION_TYPE_OFFICE"},{no:3,name:"LOCATION_TYPE_HYBRID"}]);class o extends t{city;country;subdivision;continent;latitude;longitude;type;constructor(t){super(),n.util.initPartial(t,this)}static runtime=n;static typeName="dailydotdev.api.util.Location";static fields=n.util.newFieldList((()=>[{no:1,name:"city",kind:"scalar",T:9,opt:!0},{no:2,name:"country",kind:"scalar",T:9,opt:!0},{no:3,name:"subdivision",kind:"scalar",T:9,opt:!0},{no:4,name:"continent",kind:"scalar",T:9,opt:!0},{no:5,name:"latitude",kind:"scalar",T:2,opt:!0},{no:6,name:"longitude",kind:"scalar",T:2,opt:!0},{no:7,name:"type",kind:"enum",T:n.getEnumType(i),opt:!0}]));static fromBinary(t,n){return(new o).fromBinary(t,n)}static fromJson(t,n){return(new o).fromJson(t,n)}static fromJsonString(t,n){return(new o).fromJsonString(t,n)}static equals(t,i){return n.util.equals(o,t,i)}}export{o as Location,i as LocationType};
@@ -0,0 +1 @@
1
+ var e,t=Object.defineProperty,r=Object.getOwnPropertyDescriptor,n=Object.getOwnPropertyNames,a=Object.prototype.hasOwnProperty,o={};((e,r)=>{for(var n in r)t(e,n,{get:r[n],enumerable:!0})})(o,{MatchedCandidate:()=>s}),module.exports=(e=o,((e,o,i,s)=>{if(o&&"object"==typeof o||"function"==typeof o)for(let c of n(o))a.call(e,c)||c===i||t(e,c,{get:()=>o[c],enumerable:!(s=r(o,c))||s.enumerable});return e})(t({},"__esModule",{value:!0}),e));var i=require("@bufbuild/protobuf");class s extends i.Message{userId="";opportunityId="";cosineDistance=0;matchScore=0;reasoning="";batchId=0;constructor(e){super(),i.proto3.util.initPartial(e,this)}static runtime=i.proto3;static typeName="gondul.candidates.MatchedCandidate";static fields=i.proto3.util.newFieldList((()=>[{no:1,name:"user_id",kind:"scalar",T:9},{no:2,name:"opportunity_id",kind:"scalar",T:9},{no:3,name:"cosine_distance",kind:"scalar",T:2},{no:4,name:"match_score",kind:"scalar",T:2},{no:5,name:"reasoning",kind:"scalar",T:9},{no:6,name:"batch_id",kind:"scalar",T:5}]));static fromBinary(e,t){return(new s).fromBinary(e,t)}static fromJson(e,t){return(new s).fromJson(e,t)}static fromJsonString(e,t){return(new s).fromJsonString(e,t)}static equals(e,t){return i.proto3.util.equals(s,e,t)}}
@@ -0,0 +1,45 @@
1
+ import { Message, PartialMessage, proto3, FieldList, BinaryReadOptions, JsonValue, JsonReadOptions, PlainMessage } from '@bufbuild/protobuf';
2
+
3
+ /**
4
+ * @generated from message gondul.candidates.MatchedCandidate
5
+ */
6
+ declare class MatchedCandidate extends Message<MatchedCandidate> {
7
+ /**
8
+ * @generated from field: string user_id = 1;
9
+ */
10
+ userId: string;
11
+ /**
12
+ * @generated from field: string opportunity_id = 2;
13
+ */
14
+ opportunityId: string;
15
+ /**
16
+ * 0..2, the smaller the better
17
+ *
18
+ * @generated from field: float cosine_distance = 3;
19
+ */
20
+ cosineDistance: number;
21
+ /**
22
+ * @generated from field: float match_score = 4;
23
+ */
24
+ matchScore: number;
25
+ /**
26
+ * @generated from field: string reasoning = 5;
27
+ */
28
+ reasoning: string;
29
+ /**
30
+ * just in case we need to differentiate between batches later, can be ignored for now
31
+ *
32
+ * @generated from field: int32 batch_id = 6;
33
+ */
34
+ batchId: number;
35
+ constructor(data?: PartialMessage<MatchedCandidate>);
36
+ static readonly runtime: typeof proto3;
37
+ static readonly typeName = "gondul.candidates.MatchedCandidate";
38
+ static readonly fields: FieldList;
39
+ static fromBinary(bytes: Uint8Array, options?: Partial<BinaryReadOptions>): MatchedCandidate;
40
+ static fromJson(jsonValue: JsonValue, options?: Partial<JsonReadOptions>): MatchedCandidate;
41
+ static fromJsonString(jsonString: string, options?: Partial<JsonReadOptions>): MatchedCandidate;
42
+ static equals(a: MatchedCandidate | PlainMessage<MatchedCandidate> | undefined, b: MatchedCandidate | PlainMessage<MatchedCandidate> | undefined): boolean;
43
+ }
44
+
45
+ export { MatchedCandidate };
@@ -0,0 +1,45 @@
1
+ import { Message, PartialMessage, proto3, FieldList, BinaryReadOptions, JsonValue, JsonReadOptions, PlainMessage } from '@bufbuild/protobuf';
2
+
3
+ /**
4
+ * @generated from message gondul.candidates.MatchedCandidate
5
+ */
6
+ declare class MatchedCandidate extends Message<MatchedCandidate> {
7
+ /**
8
+ * @generated from field: string user_id = 1;
9
+ */
10
+ userId: string;
11
+ /**
12
+ * @generated from field: string opportunity_id = 2;
13
+ */
14
+ opportunityId: string;
15
+ /**
16
+ * 0..2, the smaller the better
17
+ *
18
+ * @generated from field: float cosine_distance = 3;
19
+ */
20
+ cosineDistance: number;
21
+ /**
22
+ * @generated from field: float match_score = 4;
23
+ */
24
+ matchScore: number;
25
+ /**
26
+ * @generated from field: string reasoning = 5;
27
+ */
28
+ reasoning: string;
29
+ /**
30
+ * just in case we need to differentiate between batches later, can be ignored for now
31
+ *
32
+ * @generated from field: int32 batch_id = 6;
33
+ */
34
+ batchId: number;
35
+ constructor(data?: PartialMessage<MatchedCandidate>);
36
+ static readonly runtime: typeof proto3;
37
+ static readonly typeName = "gondul.candidates.MatchedCandidate";
38
+ static readonly fields: FieldList;
39
+ static fromBinary(bytes: Uint8Array, options?: Partial<BinaryReadOptions>): MatchedCandidate;
40
+ static fromJson(jsonValue: JsonValue, options?: Partial<JsonReadOptions>): MatchedCandidate;
41
+ static fromJsonString(jsonString: string, options?: Partial<JsonReadOptions>): MatchedCandidate;
42
+ static equals(a: MatchedCandidate | PlainMessage<MatchedCandidate> | undefined, b: MatchedCandidate | PlainMessage<MatchedCandidate> | undefined): boolean;
43
+ }
44
+
45
+ export { MatchedCandidate };
@@ -0,0 +1 @@
1
+ import{Message as n,proto3 as t}from"@bufbuild/protobuf";class a extends n{userId="";opportunityId="";cosineDistance=0;matchScore=0;reasoning="";batchId=0;constructor(n){super(),t.util.initPartial(n,this)}static runtime=t;static typeName="gondul.candidates.MatchedCandidate";static fields=t.util.newFieldList((()=>[{no:1,name:"user_id",kind:"scalar",T:9},{no:2,name:"opportunity_id",kind:"scalar",T:9},{no:3,name:"cosine_distance",kind:"scalar",T:2},{no:4,name:"match_score",kind:"scalar",T:2},{no:5,name:"reasoning",kind:"scalar",T:9},{no:6,name:"batch_id",kind:"scalar",T:5}]));static fromBinary(n,t){return(new a).fromBinary(n,t)}static fromJson(n,t){return(new a).fromJson(n,t)}static fromJsonString(n,t){return(new a).fromJsonString(n,t)}static equals(n,i){return t.util.equals(a,n,i)}}export{a as MatchedCandidate};