@dailydotdev/schema 0.2.23 → 0.2.25
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/dist/daily-api/opportunity_pb.cjs +1 -1
- package/dist/daily-api/opportunity_pb.d.cts +213 -68
- package/dist/daily-api/opportunity_pb.d.ts +213 -68
- package/dist/daily-api/opportunity_pb.js +1 -1
- package/dist/daily-api/organization_pb.cjs +1 -1
- package/dist/daily-api/organization_pb.d.cts +12 -203
- package/dist/daily-api/organization_pb.d.ts +12 -203
- package/dist/daily-api/organization_pb.js +1 -1
- package/dist/daily-api/pubsub/candidate-accepted-opportunity_pb.d.cts +2 -0
- package/dist/daily-api/pubsub/candidate-accepted-opportunity_pb.d.ts +2 -0
- package/dist/daily-api/user-candidate-preference_pb.cjs +1 -1
- package/dist/daily-api/user-candidate-preference_pb.d.cts +17 -90
- package/dist/daily-api/user-candidate-preference_pb.d.ts +17 -90
- package/dist/daily-api/user-candidate-preference_pb.js +1 -1
- package/dist/daily-api/user_pb.cjs +1 -0
- package/dist/daily-api/user_pb.d.cts +29 -0
- package/dist/daily-api/user_pb.d.ts +29 -0
- package/dist/daily-api/user_pb.js +1 -0
- package/dist/daily-api/util_pb.cjs +1 -1
- package/dist/daily-api/util_pb.d.cts +25 -25
- package/dist/daily-api/util_pb.d.ts +25 -25
- package/dist/daily-api/util_pb.js +1 -1
- package/dist/index.cjs +1 -1
- package/dist/index.d.cts +4 -3
- package/dist/index.d.ts +4 -3
- package/dist/index.js +1 -1
- 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.
|
|
45
|
+
* @generated from field: dailydotdev.api.user.UserCV cv = 4;
|
|
123
46
|
*/
|
|
124
|
-
cv?:
|
|
47
|
+
cv?: UserCV;
|
|
125
48
|
/**
|
|
126
|
-
* JSON string
|
|
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
|
|
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.
|
|
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.
|
|
71
|
+
* @generated from field: optional dailydotdev.api.opportunity.Salary salary_expectation = 9;
|
|
145
72
|
*/
|
|
146
|
-
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:
|
|
79
|
+
* @generated from field: repeated dailydotdev.api.util.LocationType location_type = 11;
|
|
153
80
|
*/
|
|
154
|
-
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,
|
|
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.
|
|
45
|
+
* @generated from field: dailydotdev.api.user.UserCV cv = 4;
|
|
123
46
|
*/
|
|
124
|
-
cv?:
|
|
47
|
+
cv?: UserCV;
|
|
125
48
|
/**
|
|
126
|
-
* JSON string
|
|
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
|
|
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.
|
|
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.
|
|
71
|
+
* @generated from field: optional dailydotdev.api.opportunity.Salary salary_expectation = 9;
|
|
145
72
|
*/
|
|
146
|
-
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:
|
|
79
|
+
* @generated from field: repeated dailydotdev.api.util.LocationType location_type = 11;
|
|
153
80
|
*/
|
|
154
|
-
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,
|
|
100
|
+
export { CandidateStatus, UserCandidatePreference };
|
|
@@ -1 +1 @@
|
|
|
1
|
-
import{Message as e,proto3 as n}from"@bufbuild/protobuf";import{
|
|
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,
|
|
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: 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
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: 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
65
|
|
|
66
66
|
export { Location, LocationType };
|
|
@@ -1 +1 @@
|
|
|
1
|
-
import{Message as t,proto3 as n}from"@bufbuild/protobuf";
|
|
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};
|
package/dist/index.cjs
CHANGED
|
@@ -1 +1 @@
|
|
|
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);
|
|
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/user_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
|
@@ -2,14 +2,15 @@ export { Pipelines } from './bragi/pipelines_connect.cjs';
|
|
|
2
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
|
|
5
|
+
export { EmploymentType, Opportunity, OpportunityContent, OpportunityContent_ContentBlock, OpportunityMeta, OpportunityState, OpportunityType, Salary, SalaryPeriod, SeniorityLevel } from './daily-api/opportunity_pb.cjs';
|
|
6
|
+
export { CompanySize, CompanyStage, Organization } from './daily-api/organization_pb.cjs';
|
|
7
7
|
export { PostService } from './daily-api/posts_connect.cjs';
|
|
8
8
|
export { AIGCDetect, Cleaned, ContentMeta, ContentQuality, CreatePostRequest, CreatePostResponse, Enriched, Language, PostEmbedding, PostRelation, Scraped } from './daily-api/posts_pb.cjs';
|
|
9
9
|
export { SourceRequestService } from './daily-api/source-requests_connect.cjs';
|
|
10
10
|
export { CreateSourceRequest, CreateSourceRequestResponse } from './daily-api/source-requests_pb.cjs';
|
|
11
11
|
export { Source } from './daily-api/sources_pb.cjs';
|
|
12
|
-
export { CandidateStatus,
|
|
12
|
+
export { CandidateStatus, UserCandidatePreference } from './daily-api/user-candidate-preference_pb.cjs';
|
|
13
|
+
export { UserCV } from './daily-api/user_pb.cjs';
|
|
13
14
|
export { Location, LocationType } from './daily-api/util_pb.cjs';
|
|
14
15
|
export { CandidateAcceptedOpportunityMessage, Screening } from './daily-api/pubsub/candidate-accepted-opportunity_pb.cjs';
|
|
15
16
|
export { ContentUpdatedMessage } from './daily-api/pubsub/content-updated_pb.cjs';
|
package/dist/index.d.ts
CHANGED
|
@@ -2,14 +2,15 @@ export { Pipelines } from './bragi/pipelines_connect.js';
|
|
|
2
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
|
|
5
|
+
export { EmploymentType, Opportunity, OpportunityContent, OpportunityContent_ContentBlock, OpportunityMeta, OpportunityState, OpportunityType, Salary, SalaryPeriod, SeniorityLevel } from './daily-api/opportunity_pb.js';
|
|
6
|
+
export { CompanySize, CompanyStage, Organization } from './daily-api/organization_pb.js';
|
|
7
7
|
export { PostService } from './daily-api/posts_connect.js';
|
|
8
8
|
export { AIGCDetect, Cleaned, ContentMeta, ContentQuality, CreatePostRequest, CreatePostResponse, Enriched, Language, PostEmbedding, PostRelation, Scraped } from './daily-api/posts_pb.js';
|
|
9
9
|
export { SourceRequestService } from './daily-api/source-requests_connect.js';
|
|
10
10
|
export { CreateSourceRequest, CreateSourceRequestResponse } from './daily-api/source-requests_pb.js';
|
|
11
11
|
export { Source } from './daily-api/sources_pb.js';
|
|
12
|
-
export { CandidateStatus,
|
|
12
|
+
export { CandidateStatus, UserCandidatePreference } from './daily-api/user-candidate-preference_pb.js';
|
|
13
|
+
export { UserCV } from './daily-api/user_pb.js';
|
|
13
14
|
export { Location, LocationType } from './daily-api/util_pb.js';
|
|
14
15
|
export { CandidateAcceptedOpportunityMessage, Screening } from './daily-api/pubsub/candidate-accepted-opportunity_pb.js';
|
|
15
16
|
export { ContentUpdatedMessage } from './daily-api/pubsub/content-updated_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/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";
|
|
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/user_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";
|