@dailydotdev/schema 0.2.19 → 0.2.21

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 (37) hide show
  1. package/dist/bragi/pipelines_connect.cjs +1 -1
  2. package/dist/bragi/pipelines_connect.d.cts +23 -1
  3. package/dist/bragi/pipelines_connect.d.ts +23 -1
  4. package/dist/bragi/pipelines_connect.js +1 -1
  5. package/dist/bragi/pipelines_pb.cjs +1 -1
  6. package/dist/bragi/pipelines_pb.d.cts +188 -1
  7. package/dist/bragi/pipelines_pb.d.ts +188 -1
  8. package/dist/bragi/pipelines_pb.js +1 -1
  9. package/dist/daily-api/opportunity_pb.cjs +1 -0
  10. package/dist/daily-api/opportunity_pb.d.cts +166 -0
  11. package/dist/daily-api/opportunity_pb.d.ts +166 -0
  12. package/dist/daily-api/opportunity_pb.js +1 -0
  13. package/dist/daily-api/organization_pb.cjs +1 -0
  14. package/dist/daily-api/organization_pb.d.cts +338 -0
  15. package/dist/daily-api/organization_pb.d.ts +338 -0
  16. package/dist/daily-api/organization_pb.js +1 -0
  17. package/dist/daily-api/pubsub/candidate-accepted-opportunity_pb.cjs +1 -0
  18. package/dist/daily-api/pubsub/candidate-accepted-opportunity_pb.d.cts +65 -0
  19. package/dist/daily-api/pubsub/candidate-accepted-opportunity_pb.d.ts +65 -0
  20. package/dist/daily-api/pubsub/candidate-accepted-opportunity_pb.js +1 -0
  21. package/dist/daily-api/pubsub/opportunity_pb.cjs +1 -0
  22. package/dist/daily-api/pubsub/opportunity_pb.d.cts +28 -0
  23. package/dist/daily-api/pubsub/opportunity_pb.d.ts +28 -0
  24. package/dist/daily-api/pubsub/opportunity_pb.js +1 -0
  25. package/dist/daily-api/user-candidate-preference_pb.cjs +1 -0
  26. package/dist/daily-api/user-candidate-preference_pb.d.cts +185 -0
  27. package/dist/daily-api/user-candidate-preference_pb.d.ts +185 -0
  28. package/dist/daily-api/user-candidate-preference_pb.js +1 -0
  29. package/dist/daily-api/util_pb.cjs +1 -0
  30. package/dist/daily-api/util_pb.d.cts +66 -0
  31. package/dist/daily-api/util_pb.d.ts +66 -0
  32. package/dist/daily-api/util_pb.js +1 -0
  33. package/dist/index.cjs +1 -1
  34. package/dist/index.d.cts +7 -1
  35. package/dist/index.d.ts +7 -1
  36. package/dist/index.js +1 -1
  37. package/package.json +1 -1
@@ -0,0 +1,185 @@
1
+ import { Message, PartialMessage, proto3, FieldList, BinaryReadOptions, JsonValue, JsonReadOptions, PlainMessage } from '@bufbuild/protobuf';
2
+ import { Location, LocationType } from './util_pb.cjs';
3
+ import { CompanyStage, CompanySize } from './organization_pb.cjs';
4
+
5
+ /**
6
+ * @generated from enum dailydotdev.api.usercandidatepreference.OpportunityMatchStatus
7
+ */
8
+ declare enum OpportunityMatchStatus {
9
+ /**
10
+ * @generated from enum value: OPPORTUNITY_MATCH_STATUS_UNSPECIFIED = 0;
11
+ */
12
+ UNSPECIFIED = 0,
13
+ /**
14
+ * @generated from enum value: OPPORTUNITY_MATCH_STATUS_PENDING = 1;
15
+ */
16
+ PENDING = 1,
17
+ /**
18
+ * @generated from enum value: OPPORTUNITY_MATCH_STATUS_CANDIDATE_ACCEPTED = 2;
19
+ */
20
+ CANDIDATE_ACCEPTED = 2,
21
+ /**
22
+ * @generated from enum value: OPPORTUNITY_MATCH_STATUS_CANDIDATE_REJECTED = 3;
23
+ */
24
+ CANDIDATE_REJECTED = 3,
25
+ /**
26
+ * @generated from enum value: OPPORTUNITY_MATCH_STATUS_CANDIDATE_TIMED_OUT = 4;
27
+ */
28
+ CANDIDATE_TIMED_OUT = 4,
29
+ /**
30
+ * @generated from enum value: OPPORTUNITY_MATCH_STATUS_RECRUITER_ACCEPTED = 5;
31
+ */
32
+ RECRUITER_ACCEPTED = 5,
33
+ /**
34
+ * @generated from enum value: OPPORTUNITY_MATCH_STATUS_RECRUITER_REJECTED = 6;
35
+ */
36
+ RECRUITER_REJECTED = 6
37
+ }
38
+ /**
39
+ * @generated from enum dailydotdev.api.usercandidatepreference.EmploymentType
40
+ */
41
+ declare enum EmploymentType {
42
+ /**
43
+ * @generated from enum value: EMPLOYMENT_TYPE_UNSPECIFIED = 0;
44
+ */
45
+ UNSPECIFIED = 0,
46
+ /**
47
+ * @generated from enum value: EMPLOYMENT_TYPE_FULL_TIME = 1;
48
+ */
49
+ FULL_TIME = 1,
50
+ /**
51
+ * @generated from enum value: EMPLOYMENT_TYPE_PART_TIME = 2;
52
+ */
53
+ PART_TIME = 2,
54
+ /**
55
+ * @generated from enum value: EMPLOYMENT_TYPE_CONTRACT = 3;
56
+ */
57
+ CONTRACT = 3,
58
+ /**
59
+ * @generated from enum value: EMPLOYMENT_TYPE_INTERNSHIP = 4;
60
+ */
61
+ INTERNSHIP = 4
62
+ }
63
+ /**
64
+ * Supporting message types
65
+ *
66
+ * @generated from message dailydotdev.api.usercandidatepreference.UserCandidateCV
67
+ */
68
+ declare class UserCandidateCV extends Message<UserCandidateCV> {
69
+ /**
70
+ * @generated from field: string bucket = 1;
71
+ */
72
+ bucket: string;
73
+ /**
74
+ * @generated from field: string blob = 2;
75
+ */
76
+ blob: string;
77
+ /**
78
+ * @generated from field: int32 uploaded_at = 3;
79
+ */
80
+ uploadedAt: number;
81
+ constructor(data?: PartialMessage<UserCandidateCV>);
82
+ static readonly runtime: typeof proto3;
83
+ static readonly typeName = "dailydotdev.api.usercandidatepreference.UserCandidateCV";
84
+ static readonly fields: FieldList;
85
+ static fromBinary(bytes: Uint8Array, options?: Partial<BinaryReadOptions>): UserCandidateCV;
86
+ static fromJson(jsonValue: JsonValue, options?: Partial<JsonReadOptions>): UserCandidateCV;
87
+ static fromJsonString(jsonString: string, options?: Partial<JsonReadOptions>): UserCandidateCV;
88
+ static equals(a: UserCandidateCV | PlainMessage<UserCandidateCV> | undefined, b: UserCandidateCV | PlainMessage<UserCandidateCV> | undefined): boolean;
89
+ }
90
+ /**
91
+ * @generated from message dailydotdev.api.usercandidatepreference.SalaryExpectation
92
+ */
93
+ declare class SalaryExpectation extends Message<SalaryExpectation> {
94
+ /**
95
+ * @generated from field: optional int32 min_salary = 1;
96
+ */
97
+ minSalary?: number;
98
+ /**
99
+ * @generated from field: optional string currency = 2;
100
+ */
101
+ currency?: string;
102
+ /**
103
+ * "annual", "monthly", "hourly"
104
+ *
105
+ * @generated from field: optional string period = 3;
106
+ */
107
+ period?: string;
108
+ constructor(data?: PartialMessage<SalaryExpectation>);
109
+ static readonly runtime: typeof proto3;
110
+ static readonly typeName = "dailydotdev.api.usercandidatepreference.SalaryExpectation";
111
+ static readonly fields: FieldList;
112
+ static fromBinary(bytes: Uint8Array, options?: Partial<BinaryReadOptions>): SalaryExpectation;
113
+ static fromJson(jsonValue: JsonValue, options?: Partial<JsonReadOptions>): SalaryExpectation;
114
+ static fromJsonString(jsonString: string, options?: Partial<JsonReadOptions>): SalaryExpectation;
115
+ static equals(a: SalaryExpectation | PlainMessage<SalaryExpectation> | undefined, b: SalaryExpectation | PlainMessage<SalaryExpectation> | undefined): boolean;
116
+ }
117
+ /**
118
+ * @generated from message dailydotdev.api.usercandidatepreference.UserCandidatePreference
119
+ */
120
+ declare class UserCandidatePreference extends Message<UserCandidatePreference> {
121
+ /**
122
+ * @generated from field: string user_id = 1;
123
+ */
124
+ userId: string;
125
+ /**
126
+ * @generated from field: dailydotdev.api.usercandidatepreference.OpportunityMatchStatus status = 2;
127
+ */
128
+ status: OpportunityMatchStatus;
129
+ /**
130
+ * @generated from field: int32 updated_at = 3;
131
+ */
132
+ updatedAt: number;
133
+ /**
134
+ * @generated from field: dailydotdev.api.usercandidatepreference.UserCandidateCV cv = 4;
135
+ */
136
+ cv?: UserCandidateCV;
137
+ /**
138
+ * JSON string for flexibility
139
+ *
140
+ * @generated from field: string cv_parsed_json = 5;
141
+ */
142
+ cvParsedJson: string;
143
+ /**
144
+ * @generated from field: string role = 6;
145
+ */
146
+ role: string;
147
+ /**
148
+ * @generated from field: float role_type = 7;
149
+ */
150
+ roleType: number;
151
+ /**
152
+ * @generated from field: repeated dailydotdev.api.usercandidatepreference.EmploymentType employment_type = 8;
153
+ */
154
+ employmentType: EmploymentType[];
155
+ /**
156
+ * @generated from field: dailydotdev.api.usercandidatepreference.SalaryExpectation salary_expectation = 9;
157
+ */
158
+ salaryExpectation?: SalaryExpectation;
159
+ /**
160
+ * @generated from field: repeated dailydotdev.api.util.Location location = 10;
161
+ */
162
+ location: Location[];
163
+ /**
164
+ * @generated from field: optional dailydotdev.api.util.LocationType location_type = 11;
165
+ */
166
+ locationType?: LocationType;
167
+ /**
168
+ * @generated from field: optional dailydotdev.api.organization.CompanyStage company_stage = 12;
169
+ */
170
+ companyStage?: CompanyStage;
171
+ /**
172
+ * @generated from field: optional dailydotdev.api.organization.CompanySize company_size = 13;
173
+ */
174
+ companySize?: CompanySize;
175
+ constructor(data?: PartialMessage<UserCandidatePreference>);
176
+ static readonly runtime: typeof proto3;
177
+ static readonly typeName = "dailydotdev.api.usercandidatepreference.UserCandidatePreference";
178
+ static readonly fields: FieldList;
179
+ static fromBinary(bytes: Uint8Array, options?: Partial<BinaryReadOptions>): UserCandidatePreference;
180
+ static fromJson(jsonValue: JsonValue, options?: Partial<JsonReadOptions>): UserCandidatePreference;
181
+ static fromJsonString(jsonString: string, options?: Partial<JsonReadOptions>): UserCandidatePreference;
182
+ static equals(a: UserCandidatePreference | PlainMessage<UserCandidatePreference> | undefined, b: UserCandidatePreference | PlainMessage<UserCandidatePreference> | undefined): boolean;
183
+ }
184
+
185
+ export { EmploymentType, OpportunityMatchStatus, SalaryExpectation, UserCandidateCV, UserCandidatePreference };
@@ -0,0 +1,185 @@
1
+ import { Message, PartialMessage, proto3, FieldList, BinaryReadOptions, JsonValue, JsonReadOptions, PlainMessage } from '@bufbuild/protobuf';
2
+ import { Location, LocationType } from './util_pb.js';
3
+ import { CompanyStage, CompanySize } from './organization_pb.js';
4
+
5
+ /**
6
+ * @generated from enum dailydotdev.api.usercandidatepreference.OpportunityMatchStatus
7
+ */
8
+ declare enum OpportunityMatchStatus {
9
+ /**
10
+ * @generated from enum value: OPPORTUNITY_MATCH_STATUS_UNSPECIFIED = 0;
11
+ */
12
+ UNSPECIFIED = 0,
13
+ /**
14
+ * @generated from enum value: OPPORTUNITY_MATCH_STATUS_PENDING = 1;
15
+ */
16
+ PENDING = 1,
17
+ /**
18
+ * @generated from enum value: OPPORTUNITY_MATCH_STATUS_CANDIDATE_ACCEPTED = 2;
19
+ */
20
+ CANDIDATE_ACCEPTED = 2,
21
+ /**
22
+ * @generated from enum value: OPPORTUNITY_MATCH_STATUS_CANDIDATE_REJECTED = 3;
23
+ */
24
+ CANDIDATE_REJECTED = 3,
25
+ /**
26
+ * @generated from enum value: OPPORTUNITY_MATCH_STATUS_CANDIDATE_TIMED_OUT = 4;
27
+ */
28
+ CANDIDATE_TIMED_OUT = 4,
29
+ /**
30
+ * @generated from enum value: OPPORTUNITY_MATCH_STATUS_RECRUITER_ACCEPTED = 5;
31
+ */
32
+ RECRUITER_ACCEPTED = 5,
33
+ /**
34
+ * @generated from enum value: OPPORTUNITY_MATCH_STATUS_RECRUITER_REJECTED = 6;
35
+ */
36
+ RECRUITER_REJECTED = 6
37
+ }
38
+ /**
39
+ * @generated from enum dailydotdev.api.usercandidatepreference.EmploymentType
40
+ */
41
+ declare enum EmploymentType {
42
+ /**
43
+ * @generated from enum value: EMPLOYMENT_TYPE_UNSPECIFIED = 0;
44
+ */
45
+ UNSPECIFIED = 0,
46
+ /**
47
+ * @generated from enum value: EMPLOYMENT_TYPE_FULL_TIME = 1;
48
+ */
49
+ FULL_TIME = 1,
50
+ /**
51
+ * @generated from enum value: EMPLOYMENT_TYPE_PART_TIME = 2;
52
+ */
53
+ PART_TIME = 2,
54
+ /**
55
+ * @generated from enum value: EMPLOYMENT_TYPE_CONTRACT = 3;
56
+ */
57
+ CONTRACT = 3,
58
+ /**
59
+ * @generated from enum value: EMPLOYMENT_TYPE_INTERNSHIP = 4;
60
+ */
61
+ INTERNSHIP = 4
62
+ }
63
+ /**
64
+ * Supporting message types
65
+ *
66
+ * @generated from message dailydotdev.api.usercandidatepreference.UserCandidateCV
67
+ */
68
+ declare class UserCandidateCV extends Message<UserCandidateCV> {
69
+ /**
70
+ * @generated from field: string bucket = 1;
71
+ */
72
+ bucket: string;
73
+ /**
74
+ * @generated from field: string blob = 2;
75
+ */
76
+ blob: string;
77
+ /**
78
+ * @generated from field: int32 uploaded_at = 3;
79
+ */
80
+ uploadedAt: number;
81
+ constructor(data?: PartialMessage<UserCandidateCV>);
82
+ static readonly runtime: typeof proto3;
83
+ static readonly typeName = "dailydotdev.api.usercandidatepreference.UserCandidateCV";
84
+ static readonly fields: FieldList;
85
+ static fromBinary(bytes: Uint8Array, options?: Partial<BinaryReadOptions>): UserCandidateCV;
86
+ static fromJson(jsonValue: JsonValue, options?: Partial<JsonReadOptions>): UserCandidateCV;
87
+ static fromJsonString(jsonString: string, options?: Partial<JsonReadOptions>): UserCandidateCV;
88
+ static equals(a: UserCandidateCV | PlainMessage<UserCandidateCV> | undefined, b: UserCandidateCV | PlainMessage<UserCandidateCV> | undefined): boolean;
89
+ }
90
+ /**
91
+ * @generated from message dailydotdev.api.usercandidatepreference.SalaryExpectation
92
+ */
93
+ declare class SalaryExpectation extends Message<SalaryExpectation> {
94
+ /**
95
+ * @generated from field: optional int32 min_salary = 1;
96
+ */
97
+ minSalary?: number;
98
+ /**
99
+ * @generated from field: optional string currency = 2;
100
+ */
101
+ currency?: string;
102
+ /**
103
+ * "annual", "monthly", "hourly"
104
+ *
105
+ * @generated from field: optional string period = 3;
106
+ */
107
+ period?: string;
108
+ constructor(data?: PartialMessage<SalaryExpectation>);
109
+ static readonly runtime: typeof proto3;
110
+ static readonly typeName = "dailydotdev.api.usercandidatepreference.SalaryExpectation";
111
+ static readonly fields: FieldList;
112
+ static fromBinary(bytes: Uint8Array, options?: Partial<BinaryReadOptions>): SalaryExpectation;
113
+ static fromJson(jsonValue: JsonValue, options?: Partial<JsonReadOptions>): SalaryExpectation;
114
+ static fromJsonString(jsonString: string, options?: Partial<JsonReadOptions>): SalaryExpectation;
115
+ static equals(a: SalaryExpectation | PlainMessage<SalaryExpectation> | undefined, b: SalaryExpectation | PlainMessage<SalaryExpectation> | undefined): boolean;
116
+ }
117
+ /**
118
+ * @generated from message dailydotdev.api.usercandidatepreference.UserCandidatePreference
119
+ */
120
+ declare class UserCandidatePreference extends Message<UserCandidatePreference> {
121
+ /**
122
+ * @generated from field: string user_id = 1;
123
+ */
124
+ userId: string;
125
+ /**
126
+ * @generated from field: dailydotdev.api.usercandidatepreference.OpportunityMatchStatus status = 2;
127
+ */
128
+ status: OpportunityMatchStatus;
129
+ /**
130
+ * @generated from field: int32 updated_at = 3;
131
+ */
132
+ updatedAt: number;
133
+ /**
134
+ * @generated from field: dailydotdev.api.usercandidatepreference.UserCandidateCV cv = 4;
135
+ */
136
+ cv?: UserCandidateCV;
137
+ /**
138
+ * JSON string for flexibility
139
+ *
140
+ * @generated from field: string cv_parsed_json = 5;
141
+ */
142
+ cvParsedJson: string;
143
+ /**
144
+ * @generated from field: string role = 6;
145
+ */
146
+ role: string;
147
+ /**
148
+ * @generated from field: float role_type = 7;
149
+ */
150
+ roleType: number;
151
+ /**
152
+ * @generated from field: repeated dailydotdev.api.usercandidatepreference.EmploymentType employment_type = 8;
153
+ */
154
+ employmentType: EmploymentType[];
155
+ /**
156
+ * @generated from field: dailydotdev.api.usercandidatepreference.SalaryExpectation salary_expectation = 9;
157
+ */
158
+ salaryExpectation?: SalaryExpectation;
159
+ /**
160
+ * @generated from field: repeated dailydotdev.api.util.Location location = 10;
161
+ */
162
+ location: Location[];
163
+ /**
164
+ * @generated from field: optional dailydotdev.api.util.LocationType location_type = 11;
165
+ */
166
+ locationType?: LocationType;
167
+ /**
168
+ * @generated from field: optional dailydotdev.api.organization.CompanyStage company_stage = 12;
169
+ */
170
+ companyStage?: CompanyStage;
171
+ /**
172
+ * @generated from field: optional dailydotdev.api.organization.CompanySize company_size = 13;
173
+ */
174
+ companySize?: CompanySize;
175
+ constructor(data?: PartialMessage<UserCandidatePreference>);
176
+ static readonly runtime: typeof proto3;
177
+ static readonly typeName = "dailydotdev.api.usercandidatepreference.UserCandidatePreference";
178
+ static readonly fields: FieldList;
179
+ static fromBinary(bytes: Uint8Array, options?: Partial<BinaryReadOptions>): UserCandidatePreference;
180
+ static fromJson(jsonValue: JsonValue, options?: Partial<JsonReadOptions>): UserCandidatePreference;
181
+ static fromJsonString(jsonString: string, options?: Partial<JsonReadOptions>): UserCandidatePreference;
182
+ static equals(a: UserCandidatePreference | PlainMessage<UserCandidatePreference> | undefined, b: UserCandidatePreference | PlainMessage<UserCandidatePreference> | undefined): boolean;
183
+ }
184
+
185
+ export { EmploymentType, OpportunityMatchStatus, SalaryExpectation, UserCandidateCV, UserCandidatePreference };
@@ -0,0 +1 @@
1
+ import{Message as e,proto3 as n}from"@bufbuild/protobuf";import{Location as t,LocationType as a}from"./util_pb.ts";import{CompanySize as r,CompanyStage as i}from"./organization_pb.ts";var T=(e=>(e[e.UNSPECIFIED=0]="UNSPECIFIED",e[e.PENDING=1]="PENDING",e[e.CANDIDATE_ACCEPTED=2]="CANDIDATE_ACCEPTED",e[e.CANDIDATE_REJECTED=3]="CANDIDATE_REJECTED",e[e.CANDIDATE_TIMED_OUT=4]="CANDIDATE_TIMED_OUT",e[e.RECRUITER_ACCEPTED=5]="RECRUITER_ACCEPTED",e[e.RECRUITER_REJECTED=6]="RECRUITER_REJECTED",e))(T||{});n.util.setEnumType(T,"dailydotdev.api.usercandidatepreference.OpportunityMatchStatus",[{no:0,name:"OPPORTUNITY_MATCH_STATUS_UNSPECIFIED"},{no:1,name:"OPPORTUNITY_MATCH_STATUS_PENDING"},{no:2,name:"OPPORTUNITY_MATCH_STATUS_CANDIDATE_ACCEPTED"},{no:3,name:"OPPORTUNITY_MATCH_STATUS_CANDIDATE_REJECTED"},{no:4,name:"OPPORTUNITY_MATCH_STATUS_CANDIDATE_TIMED_OUT"},{no:5,name:"OPPORTUNITY_MATCH_STATUS_RECRUITER_ACCEPTED"},{no:6,name:"OPPORTUNITY_MATCH_STATUS_RECRUITER_REJECTED"}]);var o=(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))(o||{});n.util.setEnumType(o,"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 s 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 s).fromBinary(e,n)}static fromJson(e,n){return(new s).fromJson(e,n)}static fromJsonString(e,n){return(new s).fromJsonString(e,n)}static equals(e,t){return n.util.equals(s,e,t)}}class E 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 E).fromBinary(e,n)}static fromJson(e,n){return(new E).fromJson(e,n)}static fromJsonString(e,n){return(new E).fromJsonString(e,n)}static equals(e,t){return n.util.equals(E,e,t)}}class m 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(T)},{no:3,name:"updated_at",kind:"scalar",T:5},{no:4,name:"cv",kind:"message",T:s},{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(o),repeated:!0},{no:9,name:"salary_expectation",kind:"message",T:E},{no:10,name:"location",kind:"message",T:t,repeated:!0},{no:11,name:"location_type",kind:"message",T:a,opt:!0},{no:12,name:"company_stage",kind:"enum",T:n.getEnumType(i),opt:!0},{no:13,name:"company_size",kind:"enum",T:n.getEnumType(r),opt:!0}]));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,t){return n.util.equals(m,e,t)}}export{o as EmploymentType,T as OpportunityMatchStatus,E as SalaryExpectation,s as UserCandidateCV,m as UserCandidatePreference};
@@ -0,0 +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;onSite;hybrid;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,opt:!0},{no:2,name:"on_site",kind:"scalar",T:8,opt:!0},{no:3,name:"hybrid",kind:"scalar",T:8,opt:!0}]));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)}}
@@ -0,0 +1,66 @@
1
+ import { Message, PartialMessage, proto3, FieldList, BinaryReadOptions, JsonValue, JsonReadOptions, PlainMessage } from '@bufbuild/protobuf';
2
+
3
+ /**
4
+ * @generated from message dailydotdev.api.util.Location
5
+ */
6
+ declare class Location extends Message<Location> {
7
+ /**
8
+ * @generated from field: optional string city = 1;
9
+ */
10
+ city?: string;
11
+ /**
12
+ * @generated from field: optional string country = 2;
13
+ */
14
+ country?: string;
15
+ /**
16
+ * @generated from field: optional string subdivision = 3;
17
+ */
18
+ subdivision?: string;
19
+ /**
20
+ * @generated from field: optional string continent = 4;
21
+ */
22
+ continent?: string;
23
+ /**
24
+ * @generated from field: optional float latitude = 5;
25
+ */
26
+ latitude?: number;
27
+ /**
28
+ * @generated from field: optional float longitude = 6;
29
+ */
30
+ longitude?: number;
31
+ constructor(data?: PartialMessage<Location>);
32
+ static readonly runtime: typeof proto3;
33
+ static readonly typeName = "dailydotdev.api.util.Location";
34
+ static readonly fields: FieldList;
35
+ static fromBinary(bytes: Uint8Array, options?: Partial<BinaryReadOptions>): Location;
36
+ static fromJson(jsonValue: JsonValue, options?: Partial<JsonReadOptions>): Location;
37
+ static fromJsonString(jsonString: string, options?: Partial<JsonReadOptions>): Location;
38
+ static equals(a: Location | PlainMessage<Location> | undefined, b: Location | PlainMessage<Location> | undefined): boolean;
39
+ }
40
+ /**
41
+ * @generated from message dailydotdev.api.util.LocationType
42
+ */
43
+ declare class LocationType extends Message<LocationType> {
44
+ /**
45
+ * @generated from field: optional bool remote = 1;
46
+ */
47
+ remote?: boolean;
48
+ /**
49
+ * @generated from field: optional bool on_site = 2;
50
+ */
51
+ onSite?: boolean;
52
+ /**
53
+ * @generated from field: optional 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
+
66
+ export { Location, LocationType };
@@ -0,0 +1,66 @@
1
+ import { Message, PartialMessage, proto3, FieldList, BinaryReadOptions, JsonValue, JsonReadOptions, PlainMessage } from '@bufbuild/protobuf';
2
+
3
+ /**
4
+ * @generated from message dailydotdev.api.util.Location
5
+ */
6
+ declare class Location extends Message<Location> {
7
+ /**
8
+ * @generated from field: optional string city = 1;
9
+ */
10
+ city?: string;
11
+ /**
12
+ * @generated from field: optional string country = 2;
13
+ */
14
+ country?: string;
15
+ /**
16
+ * @generated from field: optional string subdivision = 3;
17
+ */
18
+ subdivision?: string;
19
+ /**
20
+ * @generated from field: optional string continent = 4;
21
+ */
22
+ continent?: string;
23
+ /**
24
+ * @generated from field: optional float latitude = 5;
25
+ */
26
+ latitude?: number;
27
+ /**
28
+ * @generated from field: optional float longitude = 6;
29
+ */
30
+ longitude?: number;
31
+ constructor(data?: PartialMessage<Location>);
32
+ static readonly runtime: typeof proto3;
33
+ static readonly typeName = "dailydotdev.api.util.Location";
34
+ static readonly fields: FieldList;
35
+ static fromBinary(bytes: Uint8Array, options?: Partial<BinaryReadOptions>): Location;
36
+ static fromJson(jsonValue: JsonValue, options?: Partial<JsonReadOptions>): Location;
37
+ static fromJsonString(jsonString: string, options?: Partial<JsonReadOptions>): Location;
38
+ static equals(a: Location | PlainMessage<Location> | undefined, b: Location | PlainMessage<Location> | undefined): boolean;
39
+ }
40
+ /**
41
+ * @generated from message dailydotdev.api.util.LocationType
42
+ */
43
+ declare class LocationType extends Message<LocationType> {
44
+ /**
45
+ * @generated from field: optional bool remote = 1;
46
+ */
47
+ remote?: boolean;
48
+ /**
49
+ * @generated from field: optional bool on_site = 2;
50
+ */
51
+ onSite?: boolean;
52
+ /**
53
+ * @generated from field: optional 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
+
66
+ export { Location, LocationType };
@@ -0,0 +1 @@
1
+ import{Message as t,proto3 as n}from"@bufbuild/protobuf";class i extends t{city;country;subdivision;continent;latitude;longitude;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}]));static fromBinary(t,n){return(new i).fromBinary(t,n)}static fromJson(t,n){return(new i).fromJson(t,n)}static fromJsonString(t,n){return(new i).fromJsonString(t,n)}static equals(t,a){return n.util.equals(i,t,a)}}class a extends t{remote;onSite;hybrid;constructor(t){super(),n.util.initPartial(t,this)}static runtime=n;static typeName="dailydotdev.api.util.LocationType";static fields=n.util.newFieldList((()=>[{no:1,name:"remote",kind:"scalar",T:8,opt:!0},{no:2,name:"on_site",kind:"scalar",T:8,opt:!0},{no:3,name:"hybrid",kind:"scalar",T:8,opt:!0}]));static fromBinary(t,n){return(new a).fromBinary(t,n)}static fromJson(t,n){return(new a).fromJson(t,n)}static fromJsonString(t,n){return(new a).fromJsonString(t,n)}static equals(t,i){return n.util.equals(a,t,i)}}export{i as Location,a as LocationType};
package/dist/index.cjs CHANGED
@@ -1 +1 @@
1
- var e,r=Object.defineProperty,o=Object.getOwnPropertyDescriptor,s=Object.getOwnPropertyNames,t=Object.prototype.hasOwnProperty,p=(e,p,i,u)=>{if(p&&"object"==typeof p||"function"==typeof p)for(let c of s(p))t.call(e,c)||c===i||r(e,c,{get:()=>p[c],enumerable:!(u=o(p,c))||u.enumerable});return e},i=(e,r,o)=>(p(e,r,"default"),o&&p(o,r,"default")),u={};module.exports=(e=u,p(r({},"__esModule",{value:!0}),e)),i(u,require("./bragi/pipelines_connect.cjs"),module.exports),i(u,require("./bragi/pipelines_pb.cjs"),module.exports),i(u,require("./bragi/proxy_connect.cjs"),module.exports),i(u,require("./bragi/proxy_pb.cjs"),module.exports),i(u,require("./daily-api/posts_connect.cjs"),module.exports),i(u,require("./daily-api/posts_pb.cjs"),module.exports),i(u,require("./daily-api/source-requests_connect.cjs"),module.exports),i(u,require("./daily-api/source-requests_pb.cjs"),module.exports),i(u,require("./daily-api/sources_pb.cjs"),module.exports),i(u,require("./daily-api/pubsub/content-updated_pb.cjs"),module.exports),i(u,require("./feed/briefing/briefing_pb.cjs"),module.exports),i(u,require("./feed/personalised/personalised_pb.cjs"),module.exports),i(u,require("./feed/server_side_event/server_side_event_pb.cjs"),module.exports),i(u,require("./mimir/search/search_pb.cjs"),module.exports),i(u,require("./njord/transactions_connect.cjs"),module.exports),i(u,require("./njord/transactions_pb.cjs"),module.exports),i(u,require("./snotra/engagement/engagement_pb.cjs"),module.exports),i(u,require("./snotra/personalisation/personalisation_pb.cjs"),module.exports),i(u,require("./util/error_pb.cjs"),module.exports);
1
+ var e,r=Object.defineProperty,o=Object.getOwnPropertyDescriptor,s=Object.getOwnPropertyNames,p=Object.prototype.hasOwnProperty,i=(e,i,t,u)=>{if(i&&"object"==typeof i||"function"==typeof i)for(let a of s(i))p.call(e,a)||a===t||r(e,a,{get:()=>i[a],enumerable:!(u=o(i,a))||u.enumerable});return e},t=(e,r,o)=>(i(e,r,"default"),o&&i(o,r,"default")),u={};module.exports=(e=u,i(r({},"__esModule",{value:!0}),e)),t(u,require("./bragi/pipelines_connect.cjs"),module.exports),t(u,require("./bragi/pipelines_pb.cjs"),module.exports),t(u,require("./bragi/proxy_connect.cjs"),module.exports),t(u,require("./bragi/proxy_pb.cjs"),module.exports),t(u,require("./daily-api/opportunity_pb.cjs"),module.exports),t(u,require("./daily-api/organization_pb.cjs"),module.exports),t(u,require("./daily-api/posts_connect.cjs"),module.exports),t(u,require("./daily-api/posts_pb.cjs"),module.exports),t(u,require("./daily-api/source-requests_connect.cjs"),module.exports),t(u,require("./daily-api/source-requests_pb.cjs"),module.exports),t(u,require("./daily-api/sources_pb.cjs"),module.exports),t(u,require("./daily-api/user-candidate-preference_pb.cjs"),module.exports),t(u,require("./daily-api/util_pb.cjs"),module.exports),t(u,require("./daily-api/pubsub/candidate-accepted-opportunity_pb.cjs"),module.exports),t(u,require("./daily-api/pubsub/content-updated_pb.cjs"),module.exports),t(u,require("./daily-api/pubsub/opportunity_pb.cjs"),module.exports),t(u,require("./feed/briefing/briefing_pb.cjs"),module.exports),t(u,require("./feed/personalised/personalised_pb.cjs"),module.exports),t(u,require("./feed/server_side_event/server_side_event_pb.cjs"),module.exports),t(u,require("./mimir/search/search_pb.cjs"),module.exports),t(u,require("./njord/transactions_connect.cjs"),module.exports),t(u,require("./njord/transactions_pb.cjs"),module.exports),t(u,require("./snotra/engagement/engagement_pb.cjs"),module.exports),t(u,require("./snotra/personalisation/personalisation_pb.cjs"),module.exports),t(u,require("./util/error_pb.cjs"),module.exports);
package/dist/index.d.cts CHANGED
@@ -1,13 +1,19 @@
1
1
  export { Pipelines } from './bragi/pipelines_connect.cjs';
2
- export { AggregateMemoryRequest, AlternativeTitleRequest, AlternativeTitleResponse, AnalyzeImageRequest, AnalyzeImageResponse, AudienceFitRequest, AudienceFitResponse, BriefResponse, ClickbaitProbabilityRequest, ClickbaitProbabilityResponse, ClusterReconciliationRequest, ClusterReconciliationResponse, CollectionPostInput, ContentFormat, ContextBuildingStrategy, EnrichRequest, EnrichResponse, EnrichResponseV2, FilterSearchRequest, FilterSearchResponse, GenerateCollectionRequest, GenerateCollectionResponse, GenerateTagsResponse, IsPageInCacheRequest, IsPageInCacheResponse, JobPostDimensions, JobPostEnrichRequest, JobPostEnrichResponse, MemoryRequest, MemoryResponse, MultipleSearchQueriesResponse, PersonalizedBriefingRequest, PostDimensions, PostDimensionsV2, ProcessClusteredRequest, ProcessIsolatedRequest, ProcessStoriesResponse, ScrapedPage, SearchAnswerRequest, SearchPromptRequest, SearchPromptResponse, SearchPromptV2Request, SearchQueryRequest, SearchQueryResponse, SmartPromptRequest, StoryAnalysisRequest, Tag } from './bragi/pipelines_pb.cjs';
2
+ 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, FilterSearchRequest, FilterSearchResponse, GenerateCollectionRequest, GenerateCollectionResponse, GenerateTagsResponse, IsPageInCacheRequest, IsPageInCacheResponse, JobOpportunity, JobPostDimensions, JobPostEnrichRequest, JobPostEnrichResponse, MemoryRequest, MemoryResponse, MultipleSearchQueriesResponse, PersonalizedBriefingRequest, PostDimensions, PostDimensionsV2, ProcessClusteredRequest, ProcessIsolatedRequest, ProcessStoriesResponse, ScrapedPage, SearchAnswerRequest, SearchPromptRequest, SearchPromptResponse, SearchPromptV2Request, SearchQueryRequest, SearchQueryResponse, SmartPromptRequest, StoryAnalysisRequest, Tag } from './bragi/pipelines_pb.cjs';
3
3
  export { LLMProxy } from './bragi/proxy_connect.cjs';
4
4
  export { CacheControl, CacheControlType, ChatAudit, ChatDelta, ChatMessage, ChatRequest, ChatResponse, ChatStreamResponse, CompletionRequest, Embedding, EmbeddingRequest, EmbeddingResponse, ImageUrl, ModelProvider, Usage, VisionContent, VisionMessage, VisionRequest } from './bragi/proxy_pb.cjs';
5
+ export { Opportunity, OpportunityContent, OpportunityMeta, OpportunityState, OpportunityType } from './daily-api/opportunity_pb.cjs';
6
+ export { CompanySize, CompanyStage, Organization, OrganizationCustomLink, OrganizationLink, OrganizationLinkType, OrganizationPressLink, OrganizationSocialLink, SocialMediaType } from './daily-api/organization_pb.cjs';
5
7
  export { PostService } from './daily-api/posts_connect.cjs';
6
8
  export { AIGCDetect, Cleaned, ContentMeta, ContentQuality, CreatePostRequest, CreatePostResponse, Enriched, Language, PostEmbedding, PostRelation, Scraped } from './daily-api/posts_pb.cjs';
7
9
  export { SourceRequestService } from './daily-api/source-requests_connect.cjs';
8
10
  export { CreateSourceRequest, CreateSourceRequestResponse } from './daily-api/source-requests_pb.cjs';
9
11
  export { Source } from './daily-api/sources_pb.cjs';
12
+ export { EmploymentType, OpportunityMatchStatus, SalaryExpectation, UserCandidateCV, UserCandidatePreference } from './daily-api/user-candidate-preference_pb.cjs';
13
+ export { Location, LocationType } from './daily-api/util_pb.cjs';
14
+ export { CandidateAcceptedOpportunityMessage, Screening } from './daily-api/pubsub/candidate-accepted-opportunity_pb.cjs';
10
15
  export { ContentUpdatedMessage } from './daily-api/pubsub/content-updated_pb.cjs';
16
+ export { OpportunityMessage } from './daily-api/pubsub/opportunity_pb.cjs';
11
17
  export { Briefing, BriefingItem, BriefingSection, BriefingStatistics, UserBriefingRequest } from './feed/briefing/briefing_pb.cjs';
12
18
  export { Request, Response } from './feed/personalised/personalised_pb.cjs';
13
19
  export { EntryMetadata, ServerSideEvent } from './feed/server_side_event/server_side_event_pb.cjs';
package/dist/index.d.ts CHANGED
@@ -1,13 +1,19 @@
1
1
  export { Pipelines } from './bragi/pipelines_connect.js';
2
- export { AggregateMemoryRequest, AlternativeTitleRequest, AlternativeTitleResponse, AnalyzeImageRequest, AnalyzeImageResponse, AudienceFitRequest, AudienceFitResponse, BriefResponse, ClickbaitProbabilityRequest, ClickbaitProbabilityResponse, ClusterReconciliationRequest, ClusterReconciliationResponse, CollectionPostInput, ContentFormat, ContextBuildingStrategy, EnrichRequest, EnrichResponse, EnrichResponseV2, FilterSearchRequest, FilterSearchResponse, GenerateCollectionRequest, GenerateCollectionResponse, GenerateTagsResponse, IsPageInCacheRequest, IsPageInCacheResponse, JobPostDimensions, JobPostEnrichRequest, JobPostEnrichResponse, MemoryRequest, MemoryResponse, MultipleSearchQueriesResponse, PersonalizedBriefingRequest, PostDimensions, PostDimensionsV2, ProcessClusteredRequest, ProcessIsolatedRequest, ProcessStoriesResponse, ScrapedPage, SearchAnswerRequest, SearchPromptRequest, SearchPromptResponse, SearchPromptV2Request, SearchQueryRequest, SearchQueryResponse, SmartPromptRequest, StoryAnalysisRequest, Tag } from './bragi/pipelines_pb.js';
2
+ 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, FilterSearchRequest, FilterSearchResponse, GenerateCollectionRequest, GenerateCollectionResponse, GenerateTagsResponse, IsPageInCacheRequest, IsPageInCacheResponse, JobOpportunity, JobPostDimensions, JobPostEnrichRequest, JobPostEnrichResponse, MemoryRequest, MemoryResponse, MultipleSearchQueriesResponse, PersonalizedBriefingRequest, PostDimensions, PostDimensionsV2, ProcessClusteredRequest, ProcessIsolatedRequest, ProcessStoriesResponse, ScrapedPage, SearchAnswerRequest, SearchPromptRequest, SearchPromptResponse, SearchPromptV2Request, SearchQueryRequest, SearchQueryResponse, SmartPromptRequest, StoryAnalysisRequest, Tag } from './bragi/pipelines_pb.js';
3
3
  export { LLMProxy } from './bragi/proxy_connect.js';
4
4
  export { CacheControl, CacheControlType, ChatAudit, ChatDelta, ChatMessage, ChatRequest, ChatResponse, ChatStreamResponse, CompletionRequest, Embedding, EmbeddingRequest, EmbeddingResponse, ImageUrl, ModelProvider, Usage, VisionContent, VisionMessage, VisionRequest } from './bragi/proxy_pb.js';
5
+ export { Opportunity, OpportunityContent, OpportunityMeta, OpportunityState, OpportunityType } from './daily-api/opportunity_pb.js';
6
+ export { CompanySize, CompanyStage, Organization, OrganizationCustomLink, OrganizationLink, OrganizationLinkType, OrganizationPressLink, OrganizationSocialLink, SocialMediaType } from './daily-api/organization_pb.js';
5
7
  export { PostService } from './daily-api/posts_connect.js';
6
8
  export { AIGCDetect, Cleaned, ContentMeta, ContentQuality, CreatePostRequest, CreatePostResponse, Enriched, Language, PostEmbedding, PostRelation, Scraped } from './daily-api/posts_pb.js';
7
9
  export { SourceRequestService } from './daily-api/source-requests_connect.js';
8
10
  export { CreateSourceRequest, CreateSourceRequestResponse } from './daily-api/source-requests_pb.js';
9
11
  export { Source } from './daily-api/sources_pb.js';
12
+ export { EmploymentType, OpportunityMatchStatus, SalaryExpectation, UserCandidateCV, UserCandidatePreference } from './daily-api/user-candidate-preference_pb.js';
13
+ export { Location, LocationType } from './daily-api/util_pb.js';
14
+ export { CandidateAcceptedOpportunityMessage, Screening } from './daily-api/pubsub/candidate-accepted-opportunity_pb.js';
10
15
  export { ContentUpdatedMessage } from './daily-api/pubsub/content-updated_pb.js';
16
+ export { OpportunityMessage } from './daily-api/pubsub/opportunity_pb.js';
11
17
  export { Briefing, BriefingItem, BriefingSection, BriefingStatistics, UserBriefingRequest } from './feed/briefing/briefing_pb.js';
12
18
  export { Request, Response } from './feed/personalised/personalised_pb.js';
13
19
  export { EntryMetadata, ServerSideEvent } from './feed/server_side_event/server_side_event_pb.js';
package/dist/index.js CHANGED
@@ -1 +1 @@
1
- export*from"./bragi/pipelines_connect";export*from"./bragi/pipelines_pb";export*from"./bragi/proxy_connect";export*from"./bragi/proxy_pb";export*from"./daily-api/posts_connect";export*from"./daily-api/posts_pb";export*from"./daily-api/source-requests_connect";export*from"./daily-api/source-requests_pb";export*from"./daily-api/sources_pb";export*from"./daily-api/pubsub/content-updated_pb";export*from"./feed/briefing/briefing_pb";export*from"./feed/personalised/personalised_pb";export*from"./feed/server_side_event/server_side_event_pb";export*from"./mimir/search/search_pb";export*from"./njord/transactions_connect";export*from"./njord/transactions_pb";export*from"./snotra/engagement/engagement_pb";export*from"./snotra/personalisation/personalisation_pb";export*from"./util/error_pb";
1
+ export*from"./bragi/pipelines_connect";export*from"./bragi/pipelines_pb";export*from"./bragi/proxy_connect";export*from"./bragi/proxy_pb";export*from"./daily-api/opportunity_pb";export*from"./daily-api/organization_pb";export*from"./daily-api/posts_connect";export*from"./daily-api/posts_pb";export*from"./daily-api/source-requests_connect";export*from"./daily-api/source-requests_pb";export*from"./daily-api/sources_pb";export*from"./daily-api/user-candidate-preference_pb";export*from"./daily-api/util_pb";export*from"./daily-api/pubsub/candidate-accepted-opportunity_pb";export*from"./daily-api/pubsub/content-updated_pb";export*from"./daily-api/pubsub/opportunity_pb";export*from"./feed/briefing/briefing_pb";export*from"./feed/personalised/personalised_pb";export*from"./feed/server_side_event/server_side_event_pb";export*from"./mimir/search/search_pb";export*from"./njord/transactions_connect";export*from"./njord/transactions_pb";export*from"./snotra/engagement/engagement_pb";export*from"./snotra/personalisation/personalisation_pb";export*from"./util/error_pb";
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@dailydotdev/schema",
3
- "version": "0.2.19",
3
+ "version": "0.2.21",
4
4
  "author": "@dailydotdev",
5
5
  "type": "module",
6
6
  "main": "dist/index.js",