@in-human-resources/backend-proto 0.1.3 → 0.1.5
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/README.md +85 -84
- package/api/v1/README.md +7 -0
- package/api/v1/auth.proto +11 -2
- package/api/v1/candidate.proto +8 -1
- package/api/v1/common.proto +3 -0
- package/api/v1/company.proto +8 -1
- package/api/v1/hiring.proto +345 -0
- package/api/v1/pipeline.proto +156 -0
- package/auth/v1/service.proto +824 -824
- package/common/v1/common.proto +10 -10
- package/gen/ts/api/v1/auth_connect.ts +8 -2
- package/gen/ts/api/v1/candidate_connect.ts +6 -1
- package/gen/ts/api/v1/company_connect.ts +6 -1
- package/gen/ts/api/v1/hiring_connect.ts +235 -0
- package/gen/ts/api/v1/hiring_pb.ts +2061 -0
- package/gen/ts/auth/v1/service_connect.ts +14 -14
- package/gen/ts/auth/v1/service_pb.ts +5 -5
- package/gen/ts/hiring/v1/service_connect.ts +191 -0
- package/gen/ts/hiring/v1/service_pb.ts +2079 -0
- package/gen/ts/workflow/v1/service_connect.ts +87 -0
- package/gen/ts/workflow/v1/service_pb.ts +580 -0
- package/hiring/v1/pipeline.proto +156 -0
- package/hiring/v1/service.proto +310 -0
- package/package.json +4 -2
- package/workflow/v1/service.proto +87 -0
|
@@ -0,0 +1,2061 @@
|
|
|
1
|
+
// @generated by protoc-gen-es v1.10.1 with parameter "target=ts,import_extension=none"
|
|
2
|
+
// @generated from file api/v1/hiring.proto (package api.v1, syntax proto3)
|
|
3
|
+
/* eslint-disable */
|
|
4
|
+
// @ts-nocheck
|
|
5
|
+
|
|
6
|
+
import type { BinaryReadOptions, FieldList, JsonReadOptions, JsonValue, PartialMessage, PlainMessage } from "@bufbuild/protobuf";
|
|
7
|
+
import { Message, proto3 } from "@bufbuild/protobuf";
|
|
8
|
+
|
|
9
|
+
/**
|
|
10
|
+
* @generated from message api.v1.PageRequest
|
|
11
|
+
*/
|
|
12
|
+
export class PageRequest extends Message<PageRequest> {
|
|
13
|
+
/**
|
|
14
|
+
* @generated from field: int32 page_size = 1;
|
|
15
|
+
*/
|
|
16
|
+
pageSize = 0;
|
|
17
|
+
|
|
18
|
+
/**
|
|
19
|
+
* @generated from field: string page_token = 2;
|
|
20
|
+
*/
|
|
21
|
+
pageToken = "";
|
|
22
|
+
|
|
23
|
+
constructor(data?: PartialMessage<PageRequest>) {
|
|
24
|
+
super();
|
|
25
|
+
proto3.util.initPartial(data, this);
|
|
26
|
+
}
|
|
27
|
+
|
|
28
|
+
static readonly runtime: typeof proto3 = proto3;
|
|
29
|
+
static readonly typeName = "api.v1.PageRequest";
|
|
30
|
+
static readonly fields: FieldList = proto3.util.newFieldList(() => [
|
|
31
|
+
{ no: 1, name: "page_size", kind: "scalar", T: 5 /* ScalarType.INT32 */ },
|
|
32
|
+
{ no: 2, name: "page_token", kind: "scalar", T: 9 /* ScalarType.STRING */ },
|
|
33
|
+
]);
|
|
34
|
+
|
|
35
|
+
static fromBinary(bytes: Uint8Array, options?: Partial<BinaryReadOptions>): PageRequest {
|
|
36
|
+
return new PageRequest().fromBinary(bytes, options);
|
|
37
|
+
}
|
|
38
|
+
|
|
39
|
+
static fromJson(jsonValue: JsonValue, options?: Partial<JsonReadOptions>): PageRequest {
|
|
40
|
+
return new PageRequest().fromJson(jsonValue, options);
|
|
41
|
+
}
|
|
42
|
+
|
|
43
|
+
static fromJsonString(jsonString: string, options?: Partial<JsonReadOptions>): PageRequest {
|
|
44
|
+
return new PageRequest().fromJsonString(jsonString, options);
|
|
45
|
+
}
|
|
46
|
+
|
|
47
|
+
static equals(a: PageRequest | PlainMessage<PageRequest> | undefined, b: PageRequest | PlainMessage<PageRequest> | undefined): boolean {
|
|
48
|
+
return proto3.util.equals(PageRequest, a, b);
|
|
49
|
+
}
|
|
50
|
+
}
|
|
51
|
+
|
|
52
|
+
/**
|
|
53
|
+
* @generated from message api.v1.PageResponse
|
|
54
|
+
*/
|
|
55
|
+
export class PageResponse extends Message<PageResponse> {
|
|
56
|
+
/**
|
|
57
|
+
* @generated from field: string next_page_token = 1;
|
|
58
|
+
*/
|
|
59
|
+
nextPageToken = "";
|
|
60
|
+
|
|
61
|
+
constructor(data?: PartialMessage<PageResponse>) {
|
|
62
|
+
super();
|
|
63
|
+
proto3.util.initPartial(data, this);
|
|
64
|
+
}
|
|
65
|
+
|
|
66
|
+
static readonly runtime: typeof proto3 = proto3;
|
|
67
|
+
static readonly typeName = "api.v1.PageResponse";
|
|
68
|
+
static readonly fields: FieldList = proto3.util.newFieldList(() => [
|
|
69
|
+
{ no: 1, name: "next_page_token", kind: "scalar", T: 9 /* ScalarType.STRING */ },
|
|
70
|
+
]);
|
|
71
|
+
|
|
72
|
+
static fromBinary(bytes: Uint8Array, options?: Partial<BinaryReadOptions>): PageResponse {
|
|
73
|
+
return new PageResponse().fromBinary(bytes, options);
|
|
74
|
+
}
|
|
75
|
+
|
|
76
|
+
static fromJson(jsonValue: JsonValue, options?: Partial<JsonReadOptions>): PageResponse {
|
|
77
|
+
return new PageResponse().fromJson(jsonValue, options);
|
|
78
|
+
}
|
|
79
|
+
|
|
80
|
+
static fromJsonString(jsonString: string, options?: Partial<JsonReadOptions>): PageResponse {
|
|
81
|
+
return new PageResponse().fromJsonString(jsonString, options);
|
|
82
|
+
}
|
|
83
|
+
|
|
84
|
+
static equals(a: PageResponse | PlainMessage<PageResponse> | undefined, b: PageResponse | PlainMessage<PageResponse> | undefined): boolean {
|
|
85
|
+
return proto3.util.equals(PageResponse, a, b);
|
|
86
|
+
}
|
|
87
|
+
}
|
|
88
|
+
|
|
89
|
+
/**
|
|
90
|
+
* @generated from message api.v1.CreateJobRequest
|
|
91
|
+
*/
|
|
92
|
+
export class CreateJobRequest extends Message<CreateJobRequest> {
|
|
93
|
+
/**
|
|
94
|
+
* @generated from field: string title = 1;
|
|
95
|
+
*/
|
|
96
|
+
title = "";
|
|
97
|
+
|
|
98
|
+
/**
|
|
99
|
+
* @generated from field: string description = 2;
|
|
100
|
+
*/
|
|
101
|
+
description = "";
|
|
102
|
+
|
|
103
|
+
/**
|
|
104
|
+
* @generated from field: string public_slug = 3;
|
|
105
|
+
*/
|
|
106
|
+
publicSlug = "";
|
|
107
|
+
|
|
108
|
+
constructor(data?: PartialMessage<CreateJobRequest>) {
|
|
109
|
+
super();
|
|
110
|
+
proto3.util.initPartial(data, this);
|
|
111
|
+
}
|
|
112
|
+
|
|
113
|
+
static readonly runtime: typeof proto3 = proto3;
|
|
114
|
+
static readonly typeName = "api.v1.CreateJobRequest";
|
|
115
|
+
static readonly fields: FieldList = proto3.util.newFieldList(() => [
|
|
116
|
+
{ no: 1, name: "title", kind: "scalar", T: 9 /* ScalarType.STRING */ },
|
|
117
|
+
{ no: 2, name: "description", kind: "scalar", T: 9 /* ScalarType.STRING */ },
|
|
118
|
+
{ no: 3, name: "public_slug", kind: "scalar", T: 9 /* ScalarType.STRING */ },
|
|
119
|
+
]);
|
|
120
|
+
|
|
121
|
+
static fromBinary(bytes: Uint8Array, options?: Partial<BinaryReadOptions>): CreateJobRequest {
|
|
122
|
+
return new CreateJobRequest().fromBinary(bytes, options);
|
|
123
|
+
}
|
|
124
|
+
|
|
125
|
+
static fromJson(jsonValue: JsonValue, options?: Partial<JsonReadOptions>): CreateJobRequest {
|
|
126
|
+
return new CreateJobRequest().fromJson(jsonValue, options);
|
|
127
|
+
}
|
|
128
|
+
|
|
129
|
+
static fromJsonString(jsonString: string, options?: Partial<JsonReadOptions>): CreateJobRequest {
|
|
130
|
+
return new CreateJobRequest().fromJsonString(jsonString, options);
|
|
131
|
+
}
|
|
132
|
+
|
|
133
|
+
static equals(a: CreateJobRequest | PlainMessage<CreateJobRequest> | undefined, b: CreateJobRequest | PlainMessage<CreateJobRequest> | undefined): boolean {
|
|
134
|
+
return proto3.util.equals(CreateJobRequest, a, b);
|
|
135
|
+
}
|
|
136
|
+
}
|
|
137
|
+
|
|
138
|
+
/**
|
|
139
|
+
* @generated from message api.v1.CreateJobResponse
|
|
140
|
+
*/
|
|
141
|
+
export class CreateJobResponse extends Message<CreateJobResponse> {
|
|
142
|
+
/**
|
|
143
|
+
* @generated from field: string job_id = 1;
|
|
144
|
+
*/
|
|
145
|
+
jobId = "";
|
|
146
|
+
|
|
147
|
+
constructor(data?: PartialMessage<CreateJobResponse>) {
|
|
148
|
+
super();
|
|
149
|
+
proto3.util.initPartial(data, this);
|
|
150
|
+
}
|
|
151
|
+
|
|
152
|
+
static readonly runtime: typeof proto3 = proto3;
|
|
153
|
+
static readonly typeName = "api.v1.CreateJobResponse";
|
|
154
|
+
static readonly fields: FieldList = proto3.util.newFieldList(() => [
|
|
155
|
+
{ no: 1, name: "job_id", kind: "scalar", T: 9 /* ScalarType.STRING */ },
|
|
156
|
+
]);
|
|
157
|
+
|
|
158
|
+
static fromBinary(bytes: Uint8Array, options?: Partial<BinaryReadOptions>): CreateJobResponse {
|
|
159
|
+
return new CreateJobResponse().fromBinary(bytes, options);
|
|
160
|
+
}
|
|
161
|
+
|
|
162
|
+
static fromJson(jsonValue: JsonValue, options?: Partial<JsonReadOptions>): CreateJobResponse {
|
|
163
|
+
return new CreateJobResponse().fromJson(jsonValue, options);
|
|
164
|
+
}
|
|
165
|
+
|
|
166
|
+
static fromJsonString(jsonString: string, options?: Partial<JsonReadOptions>): CreateJobResponse {
|
|
167
|
+
return new CreateJobResponse().fromJsonString(jsonString, options);
|
|
168
|
+
}
|
|
169
|
+
|
|
170
|
+
static equals(a: CreateJobResponse | PlainMessage<CreateJobResponse> | undefined, b: CreateJobResponse | PlainMessage<CreateJobResponse> | undefined): boolean {
|
|
171
|
+
return proto3.util.equals(CreateJobResponse, a, b);
|
|
172
|
+
}
|
|
173
|
+
}
|
|
174
|
+
|
|
175
|
+
/**
|
|
176
|
+
* @generated from message api.v1.PublishJobRequest
|
|
177
|
+
*/
|
|
178
|
+
export class PublishJobRequest extends Message<PublishJobRequest> {
|
|
179
|
+
/**
|
|
180
|
+
* @generated from field: string job_id = 1;
|
|
181
|
+
*/
|
|
182
|
+
jobId = "";
|
|
183
|
+
|
|
184
|
+
constructor(data?: PartialMessage<PublishJobRequest>) {
|
|
185
|
+
super();
|
|
186
|
+
proto3.util.initPartial(data, this);
|
|
187
|
+
}
|
|
188
|
+
|
|
189
|
+
static readonly runtime: typeof proto3 = proto3;
|
|
190
|
+
static readonly typeName = "api.v1.PublishJobRequest";
|
|
191
|
+
static readonly fields: FieldList = proto3.util.newFieldList(() => [
|
|
192
|
+
{ no: 1, name: "job_id", kind: "scalar", T: 9 /* ScalarType.STRING */ },
|
|
193
|
+
]);
|
|
194
|
+
|
|
195
|
+
static fromBinary(bytes: Uint8Array, options?: Partial<BinaryReadOptions>): PublishJobRequest {
|
|
196
|
+
return new PublishJobRequest().fromBinary(bytes, options);
|
|
197
|
+
}
|
|
198
|
+
|
|
199
|
+
static fromJson(jsonValue: JsonValue, options?: Partial<JsonReadOptions>): PublishJobRequest {
|
|
200
|
+
return new PublishJobRequest().fromJson(jsonValue, options);
|
|
201
|
+
}
|
|
202
|
+
|
|
203
|
+
static fromJsonString(jsonString: string, options?: Partial<JsonReadOptions>): PublishJobRequest {
|
|
204
|
+
return new PublishJobRequest().fromJsonString(jsonString, options);
|
|
205
|
+
}
|
|
206
|
+
|
|
207
|
+
static equals(a: PublishJobRequest | PlainMessage<PublishJobRequest> | undefined, b: PublishJobRequest | PlainMessage<PublishJobRequest> | undefined): boolean {
|
|
208
|
+
return proto3.util.equals(PublishJobRequest, a, b);
|
|
209
|
+
}
|
|
210
|
+
}
|
|
211
|
+
|
|
212
|
+
/**
|
|
213
|
+
* @generated from message api.v1.PublishJobResponse
|
|
214
|
+
*/
|
|
215
|
+
export class PublishJobResponse extends Message<PublishJobResponse> {
|
|
216
|
+
/**
|
|
217
|
+
* @generated from field: string status = 1;
|
|
218
|
+
*/
|
|
219
|
+
status = "";
|
|
220
|
+
|
|
221
|
+
constructor(data?: PartialMessage<PublishJobResponse>) {
|
|
222
|
+
super();
|
|
223
|
+
proto3.util.initPartial(data, this);
|
|
224
|
+
}
|
|
225
|
+
|
|
226
|
+
static readonly runtime: typeof proto3 = proto3;
|
|
227
|
+
static readonly typeName = "api.v1.PublishJobResponse";
|
|
228
|
+
static readonly fields: FieldList = proto3.util.newFieldList(() => [
|
|
229
|
+
{ no: 1, name: "status", kind: "scalar", T: 9 /* ScalarType.STRING */ },
|
|
230
|
+
]);
|
|
231
|
+
|
|
232
|
+
static fromBinary(bytes: Uint8Array, options?: Partial<BinaryReadOptions>): PublishJobResponse {
|
|
233
|
+
return new PublishJobResponse().fromBinary(bytes, options);
|
|
234
|
+
}
|
|
235
|
+
|
|
236
|
+
static fromJson(jsonValue: JsonValue, options?: Partial<JsonReadOptions>): PublishJobResponse {
|
|
237
|
+
return new PublishJobResponse().fromJson(jsonValue, options);
|
|
238
|
+
}
|
|
239
|
+
|
|
240
|
+
static fromJsonString(jsonString: string, options?: Partial<JsonReadOptions>): PublishJobResponse {
|
|
241
|
+
return new PublishJobResponse().fromJsonString(jsonString, options);
|
|
242
|
+
}
|
|
243
|
+
|
|
244
|
+
static equals(a: PublishJobResponse | PlainMessage<PublishJobResponse> | undefined, b: PublishJobResponse | PlainMessage<PublishJobResponse> | undefined): boolean {
|
|
245
|
+
return proto3.util.equals(PublishJobResponse, a, b);
|
|
246
|
+
}
|
|
247
|
+
}
|
|
248
|
+
|
|
249
|
+
/**
|
|
250
|
+
* @generated from message api.v1.ApplyToJobRequest
|
|
251
|
+
*/
|
|
252
|
+
export class ApplyToJobRequest extends Message<ApplyToJobRequest> {
|
|
253
|
+
/**
|
|
254
|
+
* @generated from field: string job_id = 1;
|
|
255
|
+
*/
|
|
256
|
+
jobId = "";
|
|
257
|
+
|
|
258
|
+
constructor(data?: PartialMessage<ApplyToJobRequest>) {
|
|
259
|
+
super();
|
|
260
|
+
proto3.util.initPartial(data, this);
|
|
261
|
+
}
|
|
262
|
+
|
|
263
|
+
static readonly runtime: typeof proto3 = proto3;
|
|
264
|
+
static readonly typeName = "api.v1.ApplyToJobRequest";
|
|
265
|
+
static readonly fields: FieldList = proto3.util.newFieldList(() => [
|
|
266
|
+
{ no: 1, name: "job_id", kind: "scalar", T: 9 /* ScalarType.STRING */ },
|
|
267
|
+
]);
|
|
268
|
+
|
|
269
|
+
static fromBinary(bytes: Uint8Array, options?: Partial<BinaryReadOptions>): ApplyToJobRequest {
|
|
270
|
+
return new ApplyToJobRequest().fromBinary(bytes, options);
|
|
271
|
+
}
|
|
272
|
+
|
|
273
|
+
static fromJson(jsonValue: JsonValue, options?: Partial<JsonReadOptions>): ApplyToJobRequest {
|
|
274
|
+
return new ApplyToJobRequest().fromJson(jsonValue, options);
|
|
275
|
+
}
|
|
276
|
+
|
|
277
|
+
static fromJsonString(jsonString: string, options?: Partial<JsonReadOptions>): ApplyToJobRequest {
|
|
278
|
+
return new ApplyToJobRequest().fromJsonString(jsonString, options);
|
|
279
|
+
}
|
|
280
|
+
|
|
281
|
+
static equals(a: ApplyToJobRequest | PlainMessage<ApplyToJobRequest> | undefined, b: ApplyToJobRequest | PlainMessage<ApplyToJobRequest> | undefined): boolean {
|
|
282
|
+
return proto3.util.equals(ApplyToJobRequest, a, b);
|
|
283
|
+
}
|
|
284
|
+
}
|
|
285
|
+
|
|
286
|
+
/**
|
|
287
|
+
* @generated from message api.v1.ApplyToJobResponse
|
|
288
|
+
*/
|
|
289
|
+
export class ApplyToJobResponse extends Message<ApplyToJobResponse> {
|
|
290
|
+
/**
|
|
291
|
+
* @generated from field: string application_id = 1;
|
|
292
|
+
*/
|
|
293
|
+
applicationId = "";
|
|
294
|
+
|
|
295
|
+
constructor(data?: PartialMessage<ApplyToJobResponse>) {
|
|
296
|
+
super();
|
|
297
|
+
proto3.util.initPartial(data, this);
|
|
298
|
+
}
|
|
299
|
+
|
|
300
|
+
static readonly runtime: typeof proto3 = proto3;
|
|
301
|
+
static readonly typeName = "api.v1.ApplyToJobResponse";
|
|
302
|
+
static readonly fields: FieldList = proto3.util.newFieldList(() => [
|
|
303
|
+
{ no: 1, name: "application_id", kind: "scalar", T: 9 /* ScalarType.STRING */ },
|
|
304
|
+
]);
|
|
305
|
+
|
|
306
|
+
static fromBinary(bytes: Uint8Array, options?: Partial<BinaryReadOptions>): ApplyToJobResponse {
|
|
307
|
+
return new ApplyToJobResponse().fromBinary(bytes, options);
|
|
308
|
+
}
|
|
309
|
+
|
|
310
|
+
static fromJson(jsonValue: JsonValue, options?: Partial<JsonReadOptions>): ApplyToJobResponse {
|
|
311
|
+
return new ApplyToJobResponse().fromJson(jsonValue, options);
|
|
312
|
+
}
|
|
313
|
+
|
|
314
|
+
static fromJsonString(jsonString: string, options?: Partial<JsonReadOptions>): ApplyToJobResponse {
|
|
315
|
+
return new ApplyToJobResponse().fromJsonString(jsonString, options);
|
|
316
|
+
}
|
|
317
|
+
|
|
318
|
+
static equals(a: ApplyToJobResponse | PlainMessage<ApplyToJobResponse> | undefined, b: ApplyToJobResponse | PlainMessage<ApplyToJobResponse> | undefined): boolean {
|
|
319
|
+
return proto3.util.equals(ApplyToJobResponse, a, b);
|
|
320
|
+
}
|
|
321
|
+
}
|
|
322
|
+
|
|
323
|
+
/**
|
|
324
|
+
* @generated from message api.v1.GetJobRequest
|
|
325
|
+
*/
|
|
326
|
+
export class GetJobRequest extends Message<GetJobRequest> {
|
|
327
|
+
/**
|
|
328
|
+
* @generated from field: string job_id = 1;
|
|
329
|
+
*/
|
|
330
|
+
jobId = "";
|
|
331
|
+
|
|
332
|
+
constructor(data?: PartialMessage<GetJobRequest>) {
|
|
333
|
+
super();
|
|
334
|
+
proto3.util.initPartial(data, this);
|
|
335
|
+
}
|
|
336
|
+
|
|
337
|
+
static readonly runtime: typeof proto3 = proto3;
|
|
338
|
+
static readonly typeName = "api.v1.GetJobRequest";
|
|
339
|
+
static readonly fields: FieldList = proto3.util.newFieldList(() => [
|
|
340
|
+
{ no: 1, name: "job_id", kind: "scalar", T: 9 /* ScalarType.STRING */ },
|
|
341
|
+
]);
|
|
342
|
+
|
|
343
|
+
static fromBinary(bytes: Uint8Array, options?: Partial<BinaryReadOptions>): GetJobRequest {
|
|
344
|
+
return new GetJobRequest().fromBinary(bytes, options);
|
|
345
|
+
}
|
|
346
|
+
|
|
347
|
+
static fromJson(jsonValue: JsonValue, options?: Partial<JsonReadOptions>): GetJobRequest {
|
|
348
|
+
return new GetJobRequest().fromJson(jsonValue, options);
|
|
349
|
+
}
|
|
350
|
+
|
|
351
|
+
static fromJsonString(jsonString: string, options?: Partial<JsonReadOptions>): GetJobRequest {
|
|
352
|
+
return new GetJobRequest().fromJsonString(jsonString, options);
|
|
353
|
+
}
|
|
354
|
+
|
|
355
|
+
static equals(a: GetJobRequest | PlainMessage<GetJobRequest> | undefined, b: GetJobRequest | PlainMessage<GetJobRequest> | undefined): boolean {
|
|
356
|
+
return proto3.util.equals(GetJobRequest, a, b);
|
|
357
|
+
}
|
|
358
|
+
}
|
|
359
|
+
|
|
360
|
+
/**
|
|
361
|
+
* @generated from message api.v1.Job
|
|
362
|
+
*/
|
|
363
|
+
export class Job extends Message<Job> {
|
|
364
|
+
/**
|
|
365
|
+
* @generated from field: string job_id = 1;
|
|
366
|
+
*/
|
|
367
|
+
jobId = "";
|
|
368
|
+
|
|
369
|
+
/**
|
|
370
|
+
* @generated from field: string company_id = 2;
|
|
371
|
+
*/
|
|
372
|
+
companyId = "";
|
|
373
|
+
|
|
374
|
+
/**
|
|
375
|
+
* @generated from field: string title = 3;
|
|
376
|
+
*/
|
|
377
|
+
title = "";
|
|
378
|
+
|
|
379
|
+
/**
|
|
380
|
+
* @generated from field: string description = 4;
|
|
381
|
+
*/
|
|
382
|
+
description = "";
|
|
383
|
+
|
|
384
|
+
/**
|
|
385
|
+
* @generated from field: string status = 5;
|
|
386
|
+
*/
|
|
387
|
+
status = "";
|
|
388
|
+
|
|
389
|
+
/**
|
|
390
|
+
* @generated from field: string public_slug = 6;
|
|
391
|
+
*/
|
|
392
|
+
publicSlug = "";
|
|
393
|
+
|
|
394
|
+
/**
|
|
395
|
+
* @generated from field: string requirements = 7;
|
|
396
|
+
*/
|
|
397
|
+
requirements = "";
|
|
398
|
+
|
|
399
|
+
/**
|
|
400
|
+
* @generated from field: string team_metadata_json = 8;
|
|
401
|
+
*/
|
|
402
|
+
teamMetadataJson = "";
|
|
403
|
+
|
|
404
|
+
/**
|
|
405
|
+
* @generated from field: string created_at = 9;
|
|
406
|
+
*/
|
|
407
|
+
createdAt = "";
|
|
408
|
+
|
|
409
|
+
/**
|
|
410
|
+
* @generated from field: string updated_at = 10;
|
|
411
|
+
*/
|
|
412
|
+
updatedAt = "";
|
|
413
|
+
|
|
414
|
+
constructor(data?: PartialMessage<Job>) {
|
|
415
|
+
super();
|
|
416
|
+
proto3.util.initPartial(data, this);
|
|
417
|
+
}
|
|
418
|
+
|
|
419
|
+
static readonly runtime: typeof proto3 = proto3;
|
|
420
|
+
static readonly typeName = "api.v1.Job";
|
|
421
|
+
static readonly fields: FieldList = proto3.util.newFieldList(() => [
|
|
422
|
+
{ no: 1, name: "job_id", kind: "scalar", T: 9 /* ScalarType.STRING */ },
|
|
423
|
+
{ no: 2, name: "company_id", kind: "scalar", T: 9 /* ScalarType.STRING */ },
|
|
424
|
+
{ no: 3, name: "title", kind: "scalar", T: 9 /* ScalarType.STRING */ },
|
|
425
|
+
{ no: 4, name: "description", kind: "scalar", T: 9 /* ScalarType.STRING */ },
|
|
426
|
+
{ no: 5, name: "status", kind: "scalar", T: 9 /* ScalarType.STRING */ },
|
|
427
|
+
{ no: 6, name: "public_slug", kind: "scalar", T: 9 /* ScalarType.STRING */ },
|
|
428
|
+
{ no: 7, name: "requirements", kind: "scalar", T: 9 /* ScalarType.STRING */ },
|
|
429
|
+
{ no: 8, name: "team_metadata_json", kind: "scalar", T: 9 /* ScalarType.STRING */ },
|
|
430
|
+
{ no: 9, name: "created_at", kind: "scalar", T: 9 /* ScalarType.STRING */ },
|
|
431
|
+
{ no: 10, name: "updated_at", kind: "scalar", T: 9 /* ScalarType.STRING */ },
|
|
432
|
+
]);
|
|
433
|
+
|
|
434
|
+
static fromBinary(bytes: Uint8Array, options?: Partial<BinaryReadOptions>): Job {
|
|
435
|
+
return new Job().fromBinary(bytes, options);
|
|
436
|
+
}
|
|
437
|
+
|
|
438
|
+
static fromJson(jsonValue: JsonValue, options?: Partial<JsonReadOptions>): Job {
|
|
439
|
+
return new Job().fromJson(jsonValue, options);
|
|
440
|
+
}
|
|
441
|
+
|
|
442
|
+
static fromJsonString(jsonString: string, options?: Partial<JsonReadOptions>): Job {
|
|
443
|
+
return new Job().fromJsonString(jsonString, options);
|
|
444
|
+
}
|
|
445
|
+
|
|
446
|
+
static equals(a: Job | PlainMessage<Job> | undefined, b: Job | PlainMessage<Job> | undefined): boolean {
|
|
447
|
+
return proto3.util.equals(Job, a, b);
|
|
448
|
+
}
|
|
449
|
+
}
|
|
450
|
+
|
|
451
|
+
/**
|
|
452
|
+
* @generated from message api.v1.GetJobResponse
|
|
453
|
+
*/
|
|
454
|
+
export class GetJobResponse extends Message<GetJobResponse> {
|
|
455
|
+
/**
|
|
456
|
+
* @generated from field: string job_id = 1;
|
|
457
|
+
*/
|
|
458
|
+
jobId = "";
|
|
459
|
+
|
|
460
|
+
/**
|
|
461
|
+
* @generated from field: string company_id = 2;
|
|
462
|
+
*/
|
|
463
|
+
companyId = "";
|
|
464
|
+
|
|
465
|
+
/**
|
|
466
|
+
* @generated from field: string title = 3;
|
|
467
|
+
*/
|
|
468
|
+
title = "";
|
|
469
|
+
|
|
470
|
+
/**
|
|
471
|
+
* @generated from field: string description = 4;
|
|
472
|
+
*/
|
|
473
|
+
description = "";
|
|
474
|
+
|
|
475
|
+
/**
|
|
476
|
+
* @generated from field: string status = 5;
|
|
477
|
+
*/
|
|
478
|
+
status = "";
|
|
479
|
+
|
|
480
|
+
/**
|
|
481
|
+
* @generated from field: string public_slug = 6;
|
|
482
|
+
*/
|
|
483
|
+
publicSlug = "";
|
|
484
|
+
|
|
485
|
+
/**
|
|
486
|
+
* @generated from field: string requirements = 7;
|
|
487
|
+
*/
|
|
488
|
+
requirements = "";
|
|
489
|
+
|
|
490
|
+
/**
|
|
491
|
+
* @generated from field: string team_metadata_json = 8;
|
|
492
|
+
*/
|
|
493
|
+
teamMetadataJson = "";
|
|
494
|
+
|
|
495
|
+
/**
|
|
496
|
+
* @generated from field: string created_at = 9;
|
|
497
|
+
*/
|
|
498
|
+
createdAt = "";
|
|
499
|
+
|
|
500
|
+
/**
|
|
501
|
+
* @generated from field: string updated_at = 10;
|
|
502
|
+
*/
|
|
503
|
+
updatedAt = "";
|
|
504
|
+
|
|
505
|
+
constructor(data?: PartialMessage<GetJobResponse>) {
|
|
506
|
+
super();
|
|
507
|
+
proto3.util.initPartial(data, this);
|
|
508
|
+
}
|
|
509
|
+
|
|
510
|
+
static readonly runtime: typeof proto3 = proto3;
|
|
511
|
+
static readonly typeName = "api.v1.GetJobResponse";
|
|
512
|
+
static readonly fields: FieldList = proto3.util.newFieldList(() => [
|
|
513
|
+
{ no: 1, name: "job_id", kind: "scalar", T: 9 /* ScalarType.STRING */ },
|
|
514
|
+
{ no: 2, name: "company_id", kind: "scalar", T: 9 /* ScalarType.STRING */ },
|
|
515
|
+
{ no: 3, name: "title", kind: "scalar", T: 9 /* ScalarType.STRING */ },
|
|
516
|
+
{ no: 4, name: "description", kind: "scalar", T: 9 /* ScalarType.STRING */ },
|
|
517
|
+
{ no: 5, name: "status", kind: "scalar", T: 9 /* ScalarType.STRING */ },
|
|
518
|
+
{ no: 6, name: "public_slug", kind: "scalar", T: 9 /* ScalarType.STRING */ },
|
|
519
|
+
{ no: 7, name: "requirements", kind: "scalar", T: 9 /* ScalarType.STRING */ },
|
|
520
|
+
{ no: 8, name: "team_metadata_json", kind: "scalar", T: 9 /* ScalarType.STRING */ },
|
|
521
|
+
{ no: 9, name: "created_at", kind: "scalar", T: 9 /* ScalarType.STRING */ },
|
|
522
|
+
{ no: 10, name: "updated_at", kind: "scalar", T: 9 /* ScalarType.STRING */ },
|
|
523
|
+
]);
|
|
524
|
+
|
|
525
|
+
static fromBinary(bytes: Uint8Array, options?: Partial<BinaryReadOptions>): GetJobResponse {
|
|
526
|
+
return new GetJobResponse().fromBinary(bytes, options);
|
|
527
|
+
}
|
|
528
|
+
|
|
529
|
+
static fromJson(jsonValue: JsonValue, options?: Partial<JsonReadOptions>): GetJobResponse {
|
|
530
|
+
return new GetJobResponse().fromJson(jsonValue, options);
|
|
531
|
+
}
|
|
532
|
+
|
|
533
|
+
static fromJsonString(jsonString: string, options?: Partial<JsonReadOptions>): GetJobResponse {
|
|
534
|
+
return new GetJobResponse().fromJsonString(jsonString, options);
|
|
535
|
+
}
|
|
536
|
+
|
|
537
|
+
static equals(a: GetJobResponse | PlainMessage<GetJobResponse> | undefined, b: GetJobResponse | PlainMessage<GetJobResponse> | undefined): boolean {
|
|
538
|
+
return proto3.util.equals(GetJobResponse, a, b);
|
|
539
|
+
}
|
|
540
|
+
}
|
|
541
|
+
|
|
542
|
+
/**
|
|
543
|
+
* @generated from message api.v1.ListJobsRequest
|
|
544
|
+
*/
|
|
545
|
+
export class ListJobsRequest extends Message<ListJobsRequest> {
|
|
546
|
+
/**
|
|
547
|
+
* @generated from field: string status_filter = 1;
|
|
548
|
+
*/
|
|
549
|
+
statusFilter = "";
|
|
550
|
+
|
|
551
|
+
/**
|
|
552
|
+
* @generated from field: api.v1.PageRequest page = 2;
|
|
553
|
+
*/
|
|
554
|
+
page?: PageRequest;
|
|
555
|
+
|
|
556
|
+
constructor(data?: PartialMessage<ListJobsRequest>) {
|
|
557
|
+
super();
|
|
558
|
+
proto3.util.initPartial(data, this);
|
|
559
|
+
}
|
|
560
|
+
|
|
561
|
+
static readonly runtime: typeof proto3 = proto3;
|
|
562
|
+
static readonly typeName = "api.v1.ListJobsRequest";
|
|
563
|
+
static readonly fields: FieldList = proto3.util.newFieldList(() => [
|
|
564
|
+
{ no: 1, name: "status_filter", kind: "scalar", T: 9 /* ScalarType.STRING */ },
|
|
565
|
+
{ no: 2, name: "page", kind: "message", T: PageRequest },
|
|
566
|
+
]);
|
|
567
|
+
|
|
568
|
+
static fromBinary(bytes: Uint8Array, options?: Partial<BinaryReadOptions>): ListJobsRequest {
|
|
569
|
+
return new ListJobsRequest().fromBinary(bytes, options);
|
|
570
|
+
}
|
|
571
|
+
|
|
572
|
+
static fromJson(jsonValue: JsonValue, options?: Partial<JsonReadOptions>): ListJobsRequest {
|
|
573
|
+
return new ListJobsRequest().fromJson(jsonValue, options);
|
|
574
|
+
}
|
|
575
|
+
|
|
576
|
+
static fromJsonString(jsonString: string, options?: Partial<JsonReadOptions>): ListJobsRequest {
|
|
577
|
+
return new ListJobsRequest().fromJsonString(jsonString, options);
|
|
578
|
+
}
|
|
579
|
+
|
|
580
|
+
static equals(a: ListJobsRequest | PlainMessage<ListJobsRequest> | undefined, b: ListJobsRequest | PlainMessage<ListJobsRequest> | undefined): boolean {
|
|
581
|
+
return proto3.util.equals(ListJobsRequest, a, b);
|
|
582
|
+
}
|
|
583
|
+
}
|
|
584
|
+
|
|
585
|
+
/**
|
|
586
|
+
* @generated from message api.v1.ListJobsResponse
|
|
587
|
+
*/
|
|
588
|
+
export class ListJobsResponse extends Message<ListJobsResponse> {
|
|
589
|
+
/**
|
|
590
|
+
* @generated from field: repeated api.v1.Job jobs = 1;
|
|
591
|
+
*/
|
|
592
|
+
jobs: Job[] = [];
|
|
593
|
+
|
|
594
|
+
/**
|
|
595
|
+
* @generated from field: api.v1.PageResponse page = 2;
|
|
596
|
+
*/
|
|
597
|
+
page?: PageResponse;
|
|
598
|
+
|
|
599
|
+
constructor(data?: PartialMessage<ListJobsResponse>) {
|
|
600
|
+
super();
|
|
601
|
+
proto3.util.initPartial(data, this);
|
|
602
|
+
}
|
|
603
|
+
|
|
604
|
+
static readonly runtime: typeof proto3 = proto3;
|
|
605
|
+
static readonly typeName = "api.v1.ListJobsResponse";
|
|
606
|
+
static readonly fields: FieldList = proto3.util.newFieldList(() => [
|
|
607
|
+
{ no: 1, name: "jobs", kind: "message", T: Job, repeated: true },
|
|
608
|
+
{ no: 2, name: "page", kind: "message", T: PageResponse },
|
|
609
|
+
]);
|
|
610
|
+
|
|
611
|
+
static fromBinary(bytes: Uint8Array, options?: Partial<BinaryReadOptions>): ListJobsResponse {
|
|
612
|
+
return new ListJobsResponse().fromBinary(bytes, options);
|
|
613
|
+
}
|
|
614
|
+
|
|
615
|
+
static fromJson(jsonValue: JsonValue, options?: Partial<JsonReadOptions>): ListJobsResponse {
|
|
616
|
+
return new ListJobsResponse().fromJson(jsonValue, options);
|
|
617
|
+
}
|
|
618
|
+
|
|
619
|
+
static fromJsonString(jsonString: string, options?: Partial<JsonReadOptions>): ListJobsResponse {
|
|
620
|
+
return new ListJobsResponse().fromJsonString(jsonString, options);
|
|
621
|
+
}
|
|
622
|
+
|
|
623
|
+
static equals(a: ListJobsResponse | PlainMessage<ListJobsResponse> | undefined, b: ListJobsResponse | PlainMessage<ListJobsResponse> | undefined): boolean {
|
|
624
|
+
return proto3.util.equals(ListJobsResponse, a, b);
|
|
625
|
+
}
|
|
626
|
+
}
|
|
627
|
+
|
|
628
|
+
/**
|
|
629
|
+
* @generated from message api.v1.SearchJobsRequest
|
|
630
|
+
*/
|
|
631
|
+
export class SearchJobsRequest extends Message<SearchJobsRequest> {
|
|
632
|
+
/**
|
|
633
|
+
* @generated from field: string query = 1;
|
|
634
|
+
*/
|
|
635
|
+
query = "";
|
|
636
|
+
|
|
637
|
+
/**
|
|
638
|
+
* @generated from field: api.v1.PageRequest page = 2;
|
|
639
|
+
*/
|
|
640
|
+
page?: PageRequest;
|
|
641
|
+
|
|
642
|
+
constructor(data?: PartialMessage<SearchJobsRequest>) {
|
|
643
|
+
super();
|
|
644
|
+
proto3.util.initPartial(data, this);
|
|
645
|
+
}
|
|
646
|
+
|
|
647
|
+
static readonly runtime: typeof proto3 = proto3;
|
|
648
|
+
static readonly typeName = "api.v1.SearchJobsRequest";
|
|
649
|
+
static readonly fields: FieldList = proto3.util.newFieldList(() => [
|
|
650
|
+
{ no: 1, name: "query", kind: "scalar", T: 9 /* ScalarType.STRING */ },
|
|
651
|
+
{ no: 2, name: "page", kind: "message", T: PageRequest },
|
|
652
|
+
]);
|
|
653
|
+
|
|
654
|
+
static fromBinary(bytes: Uint8Array, options?: Partial<BinaryReadOptions>): SearchJobsRequest {
|
|
655
|
+
return new SearchJobsRequest().fromBinary(bytes, options);
|
|
656
|
+
}
|
|
657
|
+
|
|
658
|
+
static fromJson(jsonValue: JsonValue, options?: Partial<JsonReadOptions>): SearchJobsRequest {
|
|
659
|
+
return new SearchJobsRequest().fromJson(jsonValue, options);
|
|
660
|
+
}
|
|
661
|
+
|
|
662
|
+
static fromJsonString(jsonString: string, options?: Partial<JsonReadOptions>): SearchJobsRequest {
|
|
663
|
+
return new SearchJobsRequest().fromJsonString(jsonString, options);
|
|
664
|
+
}
|
|
665
|
+
|
|
666
|
+
static equals(a: SearchJobsRequest | PlainMessage<SearchJobsRequest> | undefined, b: SearchJobsRequest | PlainMessage<SearchJobsRequest> | undefined): boolean {
|
|
667
|
+
return proto3.util.equals(SearchJobsRequest, a, b);
|
|
668
|
+
}
|
|
669
|
+
}
|
|
670
|
+
|
|
671
|
+
/**
|
|
672
|
+
* @generated from message api.v1.SearchJobsResponse
|
|
673
|
+
*/
|
|
674
|
+
export class SearchJobsResponse extends Message<SearchJobsResponse> {
|
|
675
|
+
/**
|
|
676
|
+
* @generated from field: repeated api.v1.Job jobs = 1;
|
|
677
|
+
*/
|
|
678
|
+
jobs: Job[] = [];
|
|
679
|
+
|
|
680
|
+
/**
|
|
681
|
+
* @generated from field: api.v1.PageResponse page = 2;
|
|
682
|
+
*/
|
|
683
|
+
page?: PageResponse;
|
|
684
|
+
|
|
685
|
+
constructor(data?: PartialMessage<SearchJobsResponse>) {
|
|
686
|
+
super();
|
|
687
|
+
proto3.util.initPartial(data, this);
|
|
688
|
+
}
|
|
689
|
+
|
|
690
|
+
static readonly runtime: typeof proto3 = proto3;
|
|
691
|
+
static readonly typeName = "api.v1.SearchJobsResponse";
|
|
692
|
+
static readonly fields: FieldList = proto3.util.newFieldList(() => [
|
|
693
|
+
{ no: 1, name: "jobs", kind: "message", T: Job, repeated: true },
|
|
694
|
+
{ no: 2, name: "page", kind: "message", T: PageResponse },
|
|
695
|
+
]);
|
|
696
|
+
|
|
697
|
+
static fromBinary(bytes: Uint8Array, options?: Partial<BinaryReadOptions>): SearchJobsResponse {
|
|
698
|
+
return new SearchJobsResponse().fromBinary(bytes, options);
|
|
699
|
+
}
|
|
700
|
+
|
|
701
|
+
static fromJson(jsonValue: JsonValue, options?: Partial<JsonReadOptions>): SearchJobsResponse {
|
|
702
|
+
return new SearchJobsResponse().fromJson(jsonValue, options);
|
|
703
|
+
}
|
|
704
|
+
|
|
705
|
+
static fromJsonString(jsonString: string, options?: Partial<JsonReadOptions>): SearchJobsResponse {
|
|
706
|
+
return new SearchJobsResponse().fromJsonString(jsonString, options);
|
|
707
|
+
}
|
|
708
|
+
|
|
709
|
+
static equals(a: SearchJobsResponse | PlainMessage<SearchJobsResponse> | undefined, b: SearchJobsResponse | PlainMessage<SearchJobsResponse> | undefined): boolean {
|
|
710
|
+
return proto3.util.equals(SearchJobsResponse, a, b);
|
|
711
|
+
}
|
|
712
|
+
}
|
|
713
|
+
|
|
714
|
+
/**
|
|
715
|
+
* @generated from message api.v1.UpdateJobRequest
|
|
716
|
+
*/
|
|
717
|
+
export class UpdateJobRequest extends Message<UpdateJobRequest> {
|
|
718
|
+
/**
|
|
719
|
+
* @generated from field: string job_id = 1;
|
|
720
|
+
*/
|
|
721
|
+
jobId = "";
|
|
722
|
+
|
|
723
|
+
/**
|
|
724
|
+
* @generated from field: string title = 2;
|
|
725
|
+
*/
|
|
726
|
+
title = "";
|
|
727
|
+
|
|
728
|
+
/**
|
|
729
|
+
* @generated from field: string description = 3;
|
|
730
|
+
*/
|
|
731
|
+
description = "";
|
|
732
|
+
|
|
733
|
+
/**
|
|
734
|
+
* @generated from field: string public_slug = 4;
|
|
735
|
+
*/
|
|
736
|
+
publicSlug = "";
|
|
737
|
+
|
|
738
|
+
/**
|
|
739
|
+
* @generated from field: string requirements = 5;
|
|
740
|
+
*/
|
|
741
|
+
requirements = "";
|
|
742
|
+
|
|
743
|
+
/**
|
|
744
|
+
* @generated from field: string team_metadata_json = 6;
|
|
745
|
+
*/
|
|
746
|
+
teamMetadataJson = "";
|
|
747
|
+
|
|
748
|
+
constructor(data?: PartialMessage<UpdateJobRequest>) {
|
|
749
|
+
super();
|
|
750
|
+
proto3.util.initPartial(data, this);
|
|
751
|
+
}
|
|
752
|
+
|
|
753
|
+
static readonly runtime: typeof proto3 = proto3;
|
|
754
|
+
static readonly typeName = "api.v1.UpdateJobRequest";
|
|
755
|
+
static readonly fields: FieldList = proto3.util.newFieldList(() => [
|
|
756
|
+
{ no: 1, name: "job_id", kind: "scalar", T: 9 /* ScalarType.STRING */ },
|
|
757
|
+
{ no: 2, name: "title", kind: "scalar", T: 9 /* ScalarType.STRING */ },
|
|
758
|
+
{ no: 3, name: "description", kind: "scalar", T: 9 /* ScalarType.STRING */ },
|
|
759
|
+
{ no: 4, name: "public_slug", kind: "scalar", T: 9 /* ScalarType.STRING */ },
|
|
760
|
+
{ no: 5, name: "requirements", kind: "scalar", T: 9 /* ScalarType.STRING */ },
|
|
761
|
+
{ no: 6, name: "team_metadata_json", kind: "scalar", T: 9 /* ScalarType.STRING */ },
|
|
762
|
+
]);
|
|
763
|
+
|
|
764
|
+
static fromBinary(bytes: Uint8Array, options?: Partial<BinaryReadOptions>): UpdateJobRequest {
|
|
765
|
+
return new UpdateJobRequest().fromBinary(bytes, options);
|
|
766
|
+
}
|
|
767
|
+
|
|
768
|
+
static fromJson(jsonValue: JsonValue, options?: Partial<JsonReadOptions>): UpdateJobRequest {
|
|
769
|
+
return new UpdateJobRequest().fromJson(jsonValue, options);
|
|
770
|
+
}
|
|
771
|
+
|
|
772
|
+
static fromJsonString(jsonString: string, options?: Partial<JsonReadOptions>): UpdateJobRequest {
|
|
773
|
+
return new UpdateJobRequest().fromJsonString(jsonString, options);
|
|
774
|
+
}
|
|
775
|
+
|
|
776
|
+
static equals(a: UpdateJobRequest | PlainMessage<UpdateJobRequest> | undefined, b: UpdateJobRequest | PlainMessage<UpdateJobRequest> | undefined): boolean {
|
|
777
|
+
return proto3.util.equals(UpdateJobRequest, a, b);
|
|
778
|
+
}
|
|
779
|
+
}
|
|
780
|
+
|
|
781
|
+
/**
|
|
782
|
+
* @generated from message api.v1.UpdateJobResponse
|
|
783
|
+
*/
|
|
784
|
+
export class UpdateJobResponse extends Message<UpdateJobResponse> {
|
|
785
|
+
/**
|
|
786
|
+
* @generated from field: api.v1.Job job = 1;
|
|
787
|
+
*/
|
|
788
|
+
job?: Job;
|
|
789
|
+
|
|
790
|
+
constructor(data?: PartialMessage<UpdateJobResponse>) {
|
|
791
|
+
super();
|
|
792
|
+
proto3.util.initPartial(data, this);
|
|
793
|
+
}
|
|
794
|
+
|
|
795
|
+
static readonly runtime: typeof proto3 = proto3;
|
|
796
|
+
static readonly typeName = "api.v1.UpdateJobResponse";
|
|
797
|
+
static readonly fields: FieldList = proto3.util.newFieldList(() => [
|
|
798
|
+
{ no: 1, name: "job", kind: "message", T: Job },
|
|
799
|
+
]);
|
|
800
|
+
|
|
801
|
+
static fromBinary(bytes: Uint8Array, options?: Partial<BinaryReadOptions>): UpdateJobResponse {
|
|
802
|
+
return new UpdateJobResponse().fromBinary(bytes, options);
|
|
803
|
+
}
|
|
804
|
+
|
|
805
|
+
static fromJson(jsonValue: JsonValue, options?: Partial<JsonReadOptions>): UpdateJobResponse {
|
|
806
|
+
return new UpdateJobResponse().fromJson(jsonValue, options);
|
|
807
|
+
}
|
|
808
|
+
|
|
809
|
+
static fromJsonString(jsonString: string, options?: Partial<JsonReadOptions>): UpdateJobResponse {
|
|
810
|
+
return new UpdateJobResponse().fromJsonString(jsonString, options);
|
|
811
|
+
}
|
|
812
|
+
|
|
813
|
+
static equals(a: UpdateJobResponse | PlainMessage<UpdateJobResponse> | undefined, b: UpdateJobResponse | PlainMessage<UpdateJobResponse> | undefined): boolean {
|
|
814
|
+
return proto3.util.equals(UpdateJobResponse, a, b);
|
|
815
|
+
}
|
|
816
|
+
}
|
|
817
|
+
|
|
818
|
+
/**
|
|
819
|
+
* @generated from message api.v1.CloseJobRequest
|
|
820
|
+
*/
|
|
821
|
+
export class CloseJobRequest extends Message<CloseJobRequest> {
|
|
822
|
+
/**
|
|
823
|
+
* @generated from field: string job_id = 1;
|
|
824
|
+
*/
|
|
825
|
+
jobId = "";
|
|
826
|
+
|
|
827
|
+
constructor(data?: PartialMessage<CloseJobRequest>) {
|
|
828
|
+
super();
|
|
829
|
+
proto3.util.initPartial(data, this);
|
|
830
|
+
}
|
|
831
|
+
|
|
832
|
+
static readonly runtime: typeof proto3 = proto3;
|
|
833
|
+
static readonly typeName = "api.v1.CloseJobRequest";
|
|
834
|
+
static readonly fields: FieldList = proto3.util.newFieldList(() => [
|
|
835
|
+
{ no: 1, name: "job_id", kind: "scalar", T: 9 /* ScalarType.STRING */ },
|
|
836
|
+
]);
|
|
837
|
+
|
|
838
|
+
static fromBinary(bytes: Uint8Array, options?: Partial<BinaryReadOptions>): CloseJobRequest {
|
|
839
|
+
return new CloseJobRequest().fromBinary(bytes, options);
|
|
840
|
+
}
|
|
841
|
+
|
|
842
|
+
static fromJson(jsonValue: JsonValue, options?: Partial<JsonReadOptions>): CloseJobRequest {
|
|
843
|
+
return new CloseJobRequest().fromJson(jsonValue, options);
|
|
844
|
+
}
|
|
845
|
+
|
|
846
|
+
static fromJsonString(jsonString: string, options?: Partial<JsonReadOptions>): CloseJobRequest {
|
|
847
|
+
return new CloseJobRequest().fromJsonString(jsonString, options);
|
|
848
|
+
}
|
|
849
|
+
|
|
850
|
+
static equals(a: CloseJobRequest | PlainMessage<CloseJobRequest> | undefined, b: CloseJobRequest | PlainMessage<CloseJobRequest> | undefined): boolean {
|
|
851
|
+
return proto3.util.equals(CloseJobRequest, a, b);
|
|
852
|
+
}
|
|
853
|
+
}
|
|
854
|
+
|
|
855
|
+
/**
|
|
856
|
+
* @generated from message api.v1.CloseJobResponse
|
|
857
|
+
*/
|
|
858
|
+
export class CloseJobResponse extends Message<CloseJobResponse> {
|
|
859
|
+
/**
|
|
860
|
+
* @generated from field: string status = 1;
|
|
861
|
+
*/
|
|
862
|
+
status = "";
|
|
863
|
+
|
|
864
|
+
constructor(data?: PartialMessage<CloseJobResponse>) {
|
|
865
|
+
super();
|
|
866
|
+
proto3.util.initPartial(data, this);
|
|
867
|
+
}
|
|
868
|
+
|
|
869
|
+
static readonly runtime: typeof proto3 = proto3;
|
|
870
|
+
static readonly typeName = "api.v1.CloseJobResponse";
|
|
871
|
+
static readonly fields: FieldList = proto3.util.newFieldList(() => [
|
|
872
|
+
{ no: 1, name: "status", kind: "scalar", T: 9 /* ScalarType.STRING */ },
|
|
873
|
+
]);
|
|
874
|
+
|
|
875
|
+
static fromBinary(bytes: Uint8Array, options?: Partial<BinaryReadOptions>): CloseJobResponse {
|
|
876
|
+
return new CloseJobResponse().fromBinary(bytes, options);
|
|
877
|
+
}
|
|
878
|
+
|
|
879
|
+
static fromJson(jsonValue: JsonValue, options?: Partial<JsonReadOptions>): CloseJobResponse {
|
|
880
|
+
return new CloseJobResponse().fromJson(jsonValue, options);
|
|
881
|
+
}
|
|
882
|
+
|
|
883
|
+
static fromJsonString(jsonString: string, options?: Partial<JsonReadOptions>): CloseJobResponse {
|
|
884
|
+
return new CloseJobResponse().fromJsonString(jsonString, options);
|
|
885
|
+
}
|
|
886
|
+
|
|
887
|
+
static equals(a: CloseJobResponse | PlainMessage<CloseJobResponse> | undefined, b: CloseJobResponse | PlainMessage<CloseJobResponse> | undefined): boolean {
|
|
888
|
+
return proto3.util.equals(CloseJobResponse, a, b);
|
|
889
|
+
}
|
|
890
|
+
}
|
|
891
|
+
|
|
892
|
+
/**
|
|
893
|
+
* @generated from message api.v1.Application
|
|
894
|
+
*/
|
|
895
|
+
export class Application extends Message<Application> {
|
|
896
|
+
/**
|
|
897
|
+
* @generated from field: string application_id = 1;
|
|
898
|
+
*/
|
|
899
|
+
applicationId = "";
|
|
900
|
+
|
|
901
|
+
/**
|
|
902
|
+
* @generated from field: string job_id = 2;
|
|
903
|
+
*/
|
|
904
|
+
jobId = "";
|
|
905
|
+
|
|
906
|
+
/**
|
|
907
|
+
* @generated from field: string candidate_user_id = 3;
|
|
908
|
+
*/
|
|
909
|
+
candidateUserId = "";
|
|
910
|
+
|
|
911
|
+
/**
|
|
912
|
+
* @generated from field: string current_stage = 4;
|
|
913
|
+
*/
|
|
914
|
+
currentStage = "";
|
|
915
|
+
|
|
916
|
+
/**
|
|
917
|
+
* @generated from field: string applied_at = 5;
|
|
918
|
+
*/
|
|
919
|
+
appliedAt = "";
|
|
920
|
+
|
|
921
|
+
/**
|
|
922
|
+
* @generated from field: string job_title = 6;
|
|
923
|
+
*/
|
|
924
|
+
jobTitle = "";
|
|
925
|
+
|
|
926
|
+
/**
|
|
927
|
+
* @generated from field: string company_id = 7;
|
|
928
|
+
*/
|
|
929
|
+
companyId = "";
|
|
930
|
+
|
|
931
|
+
constructor(data?: PartialMessage<Application>) {
|
|
932
|
+
super();
|
|
933
|
+
proto3.util.initPartial(data, this);
|
|
934
|
+
}
|
|
935
|
+
|
|
936
|
+
static readonly runtime: typeof proto3 = proto3;
|
|
937
|
+
static readonly typeName = "api.v1.Application";
|
|
938
|
+
static readonly fields: FieldList = proto3.util.newFieldList(() => [
|
|
939
|
+
{ no: 1, name: "application_id", kind: "scalar", T: 9 /* ScalarType.STRING */ },
|
|
940
|
+
{ no: 2, name: "job_id", kind: "scalar", T: 9 /* ScalarType.STRING */ },
|
|
941
|
+
{ no: 3, name: "candidate_user_id", kind: "scalar", T: 9 /* ScalarType.STRING */ },
|
|
942
|
+
{ no: 4, name: "current_stage", kind: "scalar", T: 9 /* ScalarType.STRING */ },
|
|
943
|
+
{ no: 5, name: "applied_at", kind: "scalar", T: 9 /* ScalarType.STRING */ },
|
|
944
|
+
{ no: 6, name: "job_title", kind: "scalar", T: 9 /* ScalarType.STRING */ },
|
|
945
|
+
{ no: 7, name: "company_id", kind: "scalar", T: 9 /* ScalarType.STRING */ },
|
|
946
|
+
]);
|
|
947
|
+
|
|
948
|
+
static fromBinary(bytes: Uint8Array, options?: Partial<BinaryReadOptions>): Application {
|
|
949
|
+
return new Application().fromBinary(bytes, options);
|
|
950
|
+
}
|
|
951
|
+
|
|
952
|
+
static fromJson(jsonValue: JsonValue, options?: Partial<JsonReadOptions>): Application {
|
|
953
|
+
return new Application().fromJson(jsonValue, options);
|
|
954
|
+
}
|
|
955
|
+
|
|
956
|
+
static fromJsonString(jsonString: string, options?: Partial<JsonReadOptions>): Application {
|
|
957
|
+
return new Application().fromJsonString(jsonString, options);
|
|
958
|
+
}
|
|
959
|
+
|
|
960
|
+
static equals(a: Application | PlainMessage<Application> | undefined, b: Application | PlainMessage<Application> | undefined): boolean {
|
|
961
|
+
return proto3.util.equals(Application, a, b);
|
|
962
|
+
}
|
|
963
|
+
}
|
|
964
|
+
|
|
965
|
+
/**
|
|
966
|
+
* @generated from message api.v1.GetApplicationRequest
|
|
967
|
+
*/
|
|
968
|
+
export class GetApplicationRequest extends Message<GetApplicationRequest> {
|
|
969
|
+
/**
|
|
970
|
+
* @generated from field: string application_id = 1;
|
|
971
|
+
*/
|
|
972
|
+
applicationId = "";
|
|
973
|
+
|
|
974
|
+
constructor(data?: PartialMessage<GetApplicationRequest>) {
|
|
975
|
+
super();
|
|
976
|
+
proto3.util.initPartial(data, this);
|
|
977
|
+
}
|
|
978
|
+
|
|
979
|
+
static readonly runtime: typeof proto3 = proto3;
|
|
980
|
+
static readonly typeName = "api.v1.GetApplicationRequest";
|
|
981
|
+
static readonly fields: FieldList = proto3.util.newFieldList(() => [
|
|
982
|
+
{ no: 1, name: "application_id", kind: "scalar", T: 9 /* ScalarType.STRING */ },
|
|
983
|
+
]);
|
|
984
|
+
|
|
985
|
+
static fromBinary(bytes: Uint8Array, options?: Partial<BinaryReadOptions>): GetApplicationRequest {
|
|
986
|
+
return new GetApplicationRequest().fromBinary(bytes, options);
|
|
987
|
+
}
|
|
988
|
+
|
|
989
|
+
static fromJson(jsonValue: JsonValue, options?: Partial<JsonReadOptions>): GetApplicationRequest {
|
|
990
|
+
return new GetApplicationRequest().fromJson(jsonValue, options);
|
|
991
|
+
}
|
|
992
|
+
|
|
993
|
+
static fromJsonString(jsonString: string, options?: Partial<JsonReadOptions>): GetApplicationRequest {
|
|
994
|
+
return new GetApplicationRequest().fromJsonString(jsonString, options);
|
|
995
|
+
}
|
|
996
|
+
|
|
997
|
+
static equals(a: GetApplicationRequest | PlainMessage<GetApplicationRequest> | undefined, b: GetApplicationRequest | PlainMessage<GetApplicationRequest> | undefined): boolean {
|
|
998
|
+
return proto3.util.equals(GetApplicationRequest, a, b);
|
|
999
|
+
}
|
|
1000
|
+
}
|
|
1001
|
+
|
|
1002
|
+
/**
|
|
1003
|
+
* @generated from message api.v1.GetApplicationResponse
|
|
1004
|
+
*/
|
|
1005
|
+
export class GetApplicationResponse extends Message<GetApplicationResponse> {
|
|
1006
|
+
/**
|
|
1007
|
+
* @generated from field: string application_id = 1;
|
|
1008
|
+
*/
|
|
1009
|
+
applicationId = "";
|
|
1010
|
+
|
|
1011
|
+
/**
|
|
1012
|
+
* @generated from field: string job_id = 2;
|
|
1013
|
+
*/
|
|
1014
|
+
jobId = "";
|
|
1015
|
+
|
|
1016
|
+
/**
|
|
1017
|
+
* @generated from field: string candidate_user_id = 3;
|
|
1018
|
+
*/
|
|
1019
|
+
candidateUserId = "";
|
|
1020
|
+
|
|
1021
|
+
/**
|
|
1022
|
+
* @generated from field: string current_stage = 4;
|
|
1023
|
+
*/
|
|
1024
|
+
currentStage = "";
|
|
1025
|
+
|
|
1026
|
+
/**
|
|
1027
|
+
* @generated from field: string applied_at = 5;
|
|
1028
|
+
*/
|
|
1029
|
+
appliedAt = "";
|
|
1030
|
+
|
|
1031
|
+
/**
|
|
1032
|
+
* @generated from field: string requirements = 6;
|
|
1033
|
+
*/
|
|
1034
|
+
requirements = "";
|
|
1035
|
+
|
|
1036
|
+
/**
|
|
1037
|
+
* @generated from field: string team_metadata_json = 7;
|
|
1038
|
+
*/
|
|
1039
|
+
teamMetadataJson = "";
|
|
1040
|
+
|
|
1041
|
+
constructor(data?: PartialMessage<GetApplicationResponse>) {
|
|
1042
|
+
super();
|
|
1043
|
+
proto3.util.initPartial(data, this);
|
|
1044
|
+
}
|
|
1045
|
+
|
|
1046
|
+
static readonly runtime: typeof proto3 = proto3;
|
|
1047
|
+
static readonly typeName = "api.v1.GetApplicationResponse";
|
|
1048
|
+
static readonly fields: FieldList = proto3.util.newFieldList(() => [
|
|
1049
|
+
{ no: 1, name: "application_id", kind: "scalar", T: 9 /* ScalarType.STRING */ },
|
|
1050
|
+
{ no: 2, name: "job_id", kind: "scalar", T: 9 /* ScalarType.STRING */ },
|
|
1051
|
+
{ no: 3, name: "candidate_user_id", kind: "scalar", T: 9 /* ScalarType.STRING */ },
|
|
1052
|
+
{ no: 4, name: "current_stage", kind: "scalar", T: 9 /* ScalarType.STRING */ },
|
|
1053
|
+
{ no: 5, name: "applied_at", kind: "scalar", T: 9 /* ScalarType.STRING */ },
|
|
1054
|
+
{ no: 6, name: "requirements", kind: "scalar", T: 9 /* ScalarType.STRING */ },
|
|
1055
|
+
{ no: 7, name: "team_metadata_json", kind: "scalar", T: 9 /* ScalarType.STRING */ },
|
|
1056
|
+
]);
|
|
1057
|
+
|
|
1058
|
+
static fromBinary(bytes: Uint8Array, options?: Partial<BinaryReadOptions>): GetApplicationResponse {
|
|
1059
|
+
return new GetApplicationResponse().fromBinary(bytes, options);
|
|
1060
|
+
}
|
|
1061
|
+
|
|
1062
|
+
static fromJson(jsonValue: JsonValue, options?: Partial<JsonReadOptions>): GetApplicationResponse {
|
|
1063
|
+
return new GetApplicationResponse().fromJson(jsonValue, options);
|
|
1064
|
+
}
|
|
1065
|
+
|
|
1066
|
+
static fromJsonString(jsonString: string, options?: Partial<JsonReadOptions>): GetApplicationResponse {
|
|
1067
|
+
return new GetApplicationResponse().fromJsonString(jsonString, options);
|
|
1068
|
+
}
|
|
1069
|
+
|
|
1070
|
+
static equals(a: GetApplicationResponse | PlainMessage<GetApplicationResponse> | undefined, b: GetApplicationResponse | PlainMessage<GetApplicationResponse> | undefined): boolean {
|
|
1071
|
+
return proto3.util.equals(GetApplicationResponse, a, b);
|
|
1072
|
+
}
|
|
1073
|
+
}
|
|
1074
|
+
|
|
1075
|
+
/**
|
|
1076
|
+
* @generated from message api.v1.ListMyApplicationsRequest
|
|
1077
|
+
*/
|
|
1078
|
+
export class ListMyApplicationsRequest extends Message<ListMyApplicationsRequest> {
|
|
1079
|
+
/**
|
|
1080
|
+
* @generated from field: api.v1.PageRequest page = 1;
|
|
1081
|
+
*/
|
|
1082
|
+
page?: PageRequest;
|
|
1083
|
+
|
|
1084
|
+
constructor(data?: PartialMessage<ListMyApplicationsRequest>) {
|
|
1085
|
+
super();
|
|
1086
|
+
proto3.util.initPartial(data, this);
|
|
1087
|
+
}
|
|
1088
|
+
|
|
1089
|
+
static readonly runtime: typeof proto3 = proto3;
|
|
1090
|
+
static readonly typeName = "api.v1.ListMyApplicationsRequest";
|
|
1091
|
+
static readonly fields: FieldList = proto3.util.newFieldList(() => [
|
|
1092
|
+
{ no: 1, name: "page", kind: "message", T: PageRequest },
|
|
1093
|
+
]);
|
|
1094
|
+
|
|
1095
|
+
static fromBinary(bytes: Uint8Array, options?: Partial<BinaryReadOptions>): ListMyApplicationsRequest {
|
|
1096
|
+
return new ListMyApplicationsRequest().fromBinary(bytes, options);
|
|
1097
|
+
}
|
|
1098
|
+
|
|
1099
|
+
static fromJson(jsonValue: JsonValue, options?: Partial<JsonReadOptions>): ListMyApplicationsRequest {
|
|
1100
|
+
return new ListMyApplicationsRequest().fromJson(jsonValue, options);
|
|
1101
|
+
}
|
|
1102
|
+
|
|
1103
|
+
static fromJsonString(jsonString: string, options?: Partial<JsonReadOptions>): ListMyApplicationsRequest {
|
|
1104
|
+
return new ListMyApplicationsRequest().fromJsonString(jsonString, options);
|
|
1105
|
+
}
|
|
1106
|
+
|
|
1107
|
+
static equals(a: ListMyApplicationsRequest | PlainMessage<ListMyApplicationsRequest> | undefined, b: ListMyApplicationsRequest | PlainMessage<ListMyApplicationsRequest> | undefined): boolean {
|
|
1108
|
+
return proto3.util.equals(ListMyApplicationsRequest, a, b);
|
|
1109
|
+
}
|
|
1110
|
+
}
|
|
1111
|
+
|
|
1112
|
+
/**
|
|
1113
|
+
* @generated from message api.v1.ListMyApplicationsResponse
|
|
1114
|
+
*/
|
|
1115
|
+
export class ListMyApplicationsResponse extends Message<ListMyApplicationsResponse> {
|
|
1116
|
+
/**
|
|
1117
|
+
* @generated from field: repeated api.v1.Application applications = 1;
|
|
1118
|
+
*/
|
|
1119
|
+
applications: Application[] = [];
|
|
1120
|
+
|
|
1121
|
+
/**
|
|
1122
|
+
* @generated from field: api.v1.PageResponse page = 2;
|
|
1123
|
+
*/
|
|
1124
|
+
page?: PageResponse;
|
|
1125
|
+
|
|
1126
|
+
constructor(data?: PartialMessage<ListMyApplicationsResponse>) {
|
|
1127
|
+
super();
|
|
1128
|
+
proto3.util.initPartial(data, this);
|
|
1129
|
+
}
|
|
1130
|
+
|
|
1131
|
+
static readonly runtime: typeof proto3 = proto3;
|
|
1132
|
+
static readonly typeName = "api.v1.ListMyApplicationsResponse";
|
|
1133
|
+
static readonly fields: FieldList = proto3.util.newFieldList(() => [
|
|
1134
|
+
{ no: 1, name: "applications", kind: "message", T: Application, repeated: true },
|
|
1135
|
+
{ no: 2, name: "page", kind: "message", T: PageResponse },
|
|
1136
|
+
]);
|
|
1137
|
+
|
|
1138
|
+
static fromBinary(bytes: Uint8Array, options?: Partial<BinaryReadOptions>): ListMyApplicationsResponse {
|
|
1139
|
+
return new ListMyApplicationsResponse().fromBinary(bytes, options);
|
|
1140
|
+
}
|
|
1141
|
+
|
|
1142
|
+
static fromJson(jsonValue: JsonValue, options?: Partial<JsonReadOptions>): ListMyApplicationsResponse {
|
|
1143
|
+
return new ListMyApplicationsResponse().fromJson(jsonValue, options);
|
|
1144
|
+
}
|
|
1145
|
+
|
|
1146
|
+
static fromJsonString(jsonString: string, options?: Partial<JsonReadOptions>): ListMyApplicationsResponse {
|
|
1147
|
+
return new ListMyApplicationsResponse().fromJsonString(jsonString, options);
|
|
1148
|
+
}
|
|
1149
|
+
|
|
1150
|
+
static equals(a: ListMyApplicationsResponse | PlainMessage<ListMyApplicationsResponse> | undefined, b: ListMyApplicationsResponse | PlainMessage<ListMyApplicationsResponse> | undefined): boolean {
|
|
1151
|
+
return proto3.util.equals(ListMyApplicationsResponse, a, b);
|
|
1152
|
+
}
|
|
1153
|
+
}
|
|
1154
|
+
|
|
1155
|
+
/**
|
|
1156
|
+
* @generated from message api.v1.ListApplicationsRequest
|
|
1157
|
+
*/
|
|
1158
|
+
export class ListApplicationsRequest extends Message<ListApplicationsRequest> {
|
|
1159
|
+
/**
|
|
1160
|
+
* @generated from field: string status_filter = 1;
|
|
1161
|
+
*/
|
|
1162
|
+
statusFilter = "";
|
|
1163
|
+
|
|
1164
|
+
/**
|
|
1165
|
+
* @generated from field: string stage_filter = 2;
|
|
1166
|
+
*/
|
|
1167
|
+
stageFilter = "";
|
|
1168
|
+
|
|
1169
|
+
/**
|
|
1170
|
+
* @generated from field: api.v1.PageRequest page = 3;
|
|
1171
|
+
*/
|
|
1172
|
+
page?: PageRequest;
|
|
1173
|
+
|
|
1174
|
+
constructor(data?: PartialMessage<ListApplicationsRequest>) {
|
|
1175
|
+
super();
|
|
1176
|
+
proto3.util.initPartial(data, this);
|
|
1177
|
+
}
|
|
1178
|
+
|
|
1179
|
+
static readonly runtime: typeof proto3 = proto3;
|
|
1180
|
+
static readonly typeName = "api.v1.ListApplicationsRequest";
|
|
1181
|
+
static readonly fields: FieldList = proto3.util.newFieldList(() => [
|
|
1182
|
+
{ no: 1, name: "status_filter", kind: "scalar", T: 9 /* ScalarType.STRING */ },
|
|
1183
|
+
{ no: 2, name: "stage_filter", kind: "scalar", T: 9 /* ScalarType.STRING */ },
|
|
1184
|
+
{ no: 3, name: "page", kind: "message", T: PageRequest },
|
|
1185
|
+
]);
|
|
1186
|
+
|
|
1187
|
+
static fromBinary(bytes: Uint8Array, options?: Partial<BinaryReadOptions>): ListApplicationsRequest {
|
|
1188
|
+
return new ListApplicationsRequest().fromBinary(bytes, options);
|
|
1189
|
+
}
|
|
1190
|
+
|
|
1191
|
+
static fromJson(jsonValue: JsonValue, options?: Partial<JsonReadOptions>): ListApplicationsRequest {
|
|
1192
|
+
return new ListApplicationsRequest().fromJson(jsonValue, options);
|
|
1193
|
+
}
|
|
1194
|
+
|
|
1195
|
+
static fromJsonString(jsonString: string, options?: Partial<JsonReadOptions>): ListApplicationsRequest {
|
|
1196
|
+
return new ListApplicationsRequest().fromJsonString(jsonString, options);
|
|
1197
|
+
}
|
|
1198
|
+
|
|
1199
|
+
static equals(a: ListApplicationsRequest | PlainMessage<ListApplicationsRequest> | undefined, b: ListApplicationsRequest | PlainMessage<ListApplicationsRequest> | undefined): boolean {
|
|
1200
|
+
return proto3.util.equals(ListApplicationsRequest, a, b);
|
|
1201
|
+
}
|
|
1202
|
+
}
|
|
1203
|
+
|
|
1204
|
+
/**
|
|
1205
|
+
* @generated from message api.v1.ListApplicationsResponse
|
|
1206
|
+
*/
|
|
1207
|
+
export class ListApplicationsResponse extends Message<ListApplicationsResponse> {
|
|
1208
|
+
/**
|
|
1209
|
+
* @generated from field: repeated api.v1.Application applications = 1;
|
|
1210
|
+
*/
|
|
1211
|
+
applications: Application[] = [];
|
|
1212
|
+
|
|
1213
|
+
/**
|
|
1214
|
+
* @generated from field: api.v1.PageResponse page = 2;
|
|
1215
|
+
*/
|
|
1216
|
+
page?: PageResponse;
|
|
1217
|
+
|
|
1218
|
+
constructor(data?: PartialMessage<ListApplicationsResponse>) {
|
|
1219
|
+
super();
|
|
1220
|
+
proto3.util.initPartial(data, this);
|
|
1221
|
+
}
|
|
1222
|
+
|
|
1223
|
+
static readonly runtime: typeof proto3 = proto3;
|
|
1224
|
+
static readonly typeName = "api.v1.ListApplicationsResponse";
|
|
1225
|
+
static readonly fields: FieldList = proto3.util.newFieldList(() => [
|
|
1226
|
+
{ no: 1, name: "applications", kind: "message", T: Application, repeated: true },
|
|
1227
|
+
{ no: 2, name: "page", kind: "message", T: PageResponse },
|
|
1228
|
+
]);
|
|
1229
|
+
|
|
1230
|
+
static fromBinary(bytes: Uint8Array, options?: Partial<BinaryReadOptions>): ListApplicationsResponse {
|
|
1231
|
+
return new ListApplicationsResponse().fromBinary(bytes, options);
|
|
1232
|
+
}
|
|
1233
|
+
|
|
1234
|
+
static fromJson(jsonValue: JsonValue, options?: Partial<JsonReadOptions>): ListApplicationsResponse {
|
|
1235
|
+
return new ListApplicationsResponse().fromJson(jsonValue, options);
|
|
1236
|
+
}
|
|
1237
|
+
|
|
1238
|
+
static fromJsonString(jsonString: string, options?: Partial<JsonReadOptions>): ListApplicationsResponse {
|
|
1239
|
+
return new ListApplicationsResponse().fromJsonString(jsonString, options);
|
|
1240
|
+
}
|
|
1241
|
+
|
|
1242
|
+
static equals(a: ListApplicationsResponse | PlainMessage<ListApplicationsResponse> | undefined, b: ListApplicationsResponse | PlainMessage<ListApplicationsResponse> | undefined): boolean {
|
|
1243
|
+
return proto3.util.equals(ListApplicationsResponse, a, b);
|
|
1244
|
+
}
|
|
1245
|
+
}
|
|
1246
|
+
|
|
1247
|
+
/**
|
|
1248
|
+
* @generated from message api.v1.ListApplicationsForJobRequest
|
|
1249
|
+
*/
|
|
1250
|
+
export class ListApplicationsForJobRequest extends Message<ListApplicationsForJobRequest> {
|
|
1251
|
+
/**
|
|
1252
|
+
* @generated from field: string job_id = 1;
|
|
1253
|
+
*/
|
|
1254
|
+
jobId = "";
|
|
1255
|
+
|
|
1256
|
+
/**
|
|
1257
|
+
* @generated from field: api.v1.PageRequest page = 2;
|
|
1258
|
+
*/
|
|
1259
|
+
page?: PageRequest;
|
|
1260
|
+
|
|
1261
|
+
constructor(data?: PartialMessage<ListApplicationsForJobRequest>) {
|
|
1262
|
+
super();
|
|
1263
|
+
proto3.util.initPartial(data, this);
|
|
1264
|
+
}
|
|
1265
|
+
|
|
1266
|
+
static readonly runtime: typeof proto3 = proto3;
|
|
1267
|
+
static readonly typeName = "api.v1.ListApplicationsForJobRequest";
|
|
1268
|
+
static readonly fields: FieldList = proto3.util.newFieldList(() => [
|
|
1269
|
+
{ no: 1, name: "job_id", kind: "scalar", T: 9 /* ScalarType.STRING */ },
|
|
1270
|
+
{ no: 2, name: "page", kind: "message", T: PageRequest },
|
|
1271
|
+
]);
|
|
1272
|
+
|
|
1273
|
+
static fromBinary(bytes: Uint8Array, options?: Partial<BinaryReadOptions>): ListApplicationsForJobRequest {
|
|
1274
|
+
return new ListApplicationsForJobRequest().fromBinary(bytes, options);
|
|
1275
|
+
}
|
|
1276
|
+
|
|
1277
|
+
static fromJson(jsonValue: JsonValue, options?: Partial<JsonReadOptions>): ListApplicationsForJobRequest {
|
|
1278
|
+
return new ListApplicationsForJobRequest().fromJson(jsonValue, options);
|
|
1279
|
+
}
|
|
1280
|
+
|
|
1281
|
+
static fromJsonString(jsonString: string, options?: Partial<JsonReadOptions>): ListApplicationsForJobRequest {
|
|
1282
|
+
return new ListApplicationsForJobRequest().fromJsonString(jsonString, options);
|
|
1283
|
+
}
|
|
1284
|
+
|
|
1285
|
+
static equals(a: ListApplicationsForJobRequest | PlainMessage<ListApplicationsForJobRequest> | undefined, b: ListApplicationsForJobRequest | PlainMessage<ListApplicationsForJobRequest> | undefined): boolean {
|
|
1286
|
+
return proto3.util.equals(ListApplicationsForJobRequest, a, b);
|
|
1287
|
+
}
|
|
1288
|
+
}
|
|
1289
|
+
|
|
1290
|
+
/**
|
|
1291
|
+
* @generated from message api.v1.ListApplicationsForJobResponse
|
|
1292
|
+
*/
|
|
1293
|
+
export class ListApplicationsForJobResponse extends Message<ListApplicationsForJobResponse> {
|
|
1294
|
+
/**
|
|
1295
|
+
* @generated from field: repeated api.v1.Application applications = 1;
|
|
1296
|
+
*/
|
|
1297
|
+
applications: Application[] = [];
|
|
1298
|
+
|
|
1299
|
+
/**
|
|
1300
|
+
* @generated from field: api.v1.PageResponse page = 2;
|
|
1301
|
+
*/
|
|
1302
|
+
page?: PageResponse;
|
|
1303
|
+
|
|
1304
|
+
constructor(data?: PartialMessage<ListApplicationsForJobResponse>) {
|
|
1305
|
+
super();
|
|
1306
|
+
proto3.util.initPartial(data, this);
|
|
1307
|
+
}
|
|
1308
|
+
|
|
1309
|
+
static readonly runtime: typeof proto3 = proto3;
|
|
1310
|
+
static readonly typeName = "api.v1.ListApplicationsForJobResponse";
|
|
1311
|
+
static readonly fields: FieldList = proto3.util.newFieldList(() => [
|
|
1312
|
+
{ no: 1, name: "applications", kind: "message", T: Application, repeated: true },
|
|
1313
|
+
{ no: 2, name: "page", kind: "message", T: PageResponse },
|
|
1314
|
+
]);
|
|
1315
|
+
|
|
1316
|
+
static fromBinary(bytes: Uint8Array, options?: Partial<BinaryReadOptions>): ListApplicationsForJobResponse {
|
|
1317
|
+
return new ListApplicationsForJobResponse().fromBinary(bytes, options);
|
|
1318
|
+
}
|
|
1319
|
+
|
|
1320
|
+
static fromJson(jsonValue: JsonValue, options?: Partial<JsonReadOptions>): ListApplicationsForJobResponse {
|
|
1321
|
+
return new ListApplicationsForJobResponse().fromJson(jsonValue, options);
|
|
1322
|
+
}
|
|
1323
|
+
|
|
1324
|
+
static fromJsonString(jsonString: string, options?: Partial<JsonReadOptions>): ListApplicationsForJobResponse {
|
|
1325
|
+
return new ListApplicationsForJobResponse().fromJsonString(jsonString, options);
|
|
1326
|
+
}
|
|
1327
|
+
|
|
1328
|
+
static equals(a: ListApplicationsForJobResponse | PlainMessage<ListApplicationsForJobResponse> | undefined, b: ListApplicationsForJobResponse | PlainMessage<ListApplicationsForJobResponse> | undefined): boolean {
|
|
1329
|
+
return proto3.util.equals(ListApplicationsForJobResponse, a, b);
|
|
1330
|
+
}
|
|
1331
|
+
}
|
|
1332
|
+
|
|
1333
|
+
/**
|
|
1334
|
+
* @generated from message api.v1.TransitionApplicationStageRequest
|
|
1335
|
+
*/
|
|
1336
|
+
export class TransitionApplicationStageRequest extends Message<TransitionApplicationStageRequest> {
|
|
1337
|
+
/**
|
|
1338
|
+
* @generated from field: string application_id = 1;
|
|
1339
|
+
*/
|
|
1340
|
+
applicationId = "";
|
|
1341
|
+
|
|
1342
|
+
/**
|
|
1343
|
+
* @generated from field: string target_stage = 2;
|
|
1344
|
+
*/
|
|
1345
|
+
targetStage = "";
|
|
1346
|
+
|
|
1347
|
+
/**
|
|
1348
|
+
* @generated from field: string reason = 3;
|
|
1349
|
+
*/
|
|
1350
|
+
reason = "";
|
|
1351
|
+
|
|
1352
|
+
constructor(data?: PartialMessage<TransitionApplicationStageRequest>) {
|
|
1353
|
+
super();
|
|
1354
|
+
proto3.util.initPartial(data, this);
|
|
1355
|
+
}
|
|
1356
|
+
|
|
1357
|
+
static readonly runtime: typeof proto3 = proto3;
|
|
1358
|
+
static readonly typeName = "api.v1.TransitionApplicationStageRequest";
|
|
1359
|
+
static readonly fields: FieldList = proto3.util.newFieldList(() => [
|
|
1360
|
+
{ no: 1, name: "application_id", kind: "scalar", T: 9 /* ScalarType.STRING */ },
|
|
1361
|
+
{ no: 2, name: "target_stage", kind: "scalar", T: 9 /* ScalarType.STRING */ },
|
|
1362
|
+
{ no: 3, name: "reason", kind: "scalar", T: 9 /* ScalarType.STRING */ },
|
|
1363
|
+
]);
|
|
1364
|
+
|
|
1365
|
+
static fromBinary(bytes: Uint8Array, options?: Partial<BinaryReadOptions>): TransitionApplicationStageRequest {
|
|
1366
|
+
return new TransitionApplicationStageRequest().fromBinary(bytes, options);
|
|
1367
|
+
}
|
|
1368
|
+
|
|
1369
|
+
static fromJson(jsonValue: JsonValue, options?: Partial<JsonReadOptions>): TransitionApplicationStageRequest {
|
|
1370
|
+
return new TransitionApplicationStageRequest().fromJson(jsonValue, options);
|
|
1371
|
+
}
|
|
1372
|
+
|
|
1373
|
+
static fromJsonString(jsonString: string, options?: Partial<JsonReadOptions>): TransitionApplicationStageRequest {
|
|
1374
|
+
return new TransitionApplicationStageRequest().fromJsonString(jsonString, options);
|
|
1375
|
+
}
|
|
1376
|
+
|
|
1377
|
+
static equals(a: TransitionApplicationStageRequest | PlainMessage<TransitionApplicationStageRequest> | undefined, b: TransitionApplicationStageRequest | PlainMessage<TransitionApplicationStageRequest> | undefined): boolean {
|
|
1378
|
+
return proto3.util.equals(TransitionApplicationStageRequest, a, b);
|
|
1379
|
+
}
|
|
1380
|
+
}
|
|
1381
|
+
|
|
1382
|
+
/**
|
|
1383
|
+
* @generated from message api.v1.TransitionApplicationStageResponse
|
|
1384
|
+
*/
|
|
1385
|
+
export class TransitionApplicationStageResponse extends Message<TransitionApplicationStageResponse> {
|
|
1386
|
+
/**
|
|
1387
|
+
* @generated from field: string current_stage = 1;
|
|
1388
|
+
*/
|
|
1389
|
+
currentStage = "";
|
|
1390
|
+
|
|
1391
|
+
constructor(data?: PartialMessage<TransitionApplicationStageResponse>) {
|
|
1392
|
+
super();
|
|
1393
|
+
proto3.util.initPartial(data, this);
|
|
1394
|
+
}
|
|
1395
|
+
|
|
1396
|
+
static readonly runtime: typeof proto3 = proto3;
|
|
1397
|
+
static readonly typeName = "api.v1.TransitionApplicationStageResponse";
|
|
1398
|
+
static readonly fields: FieldList = proto3.util.newFieldList(() => [
|
|
1399
|
+
{ no: 1, name: "current_stage", kind: "scalar", T: 9 /* ScalarType.STRING */ },
|
|
1400
|
+
]);
|
|
1401
|
+
|
|
1402
|
+
static fromBinary(bytes: Uint8Array, options?: Partial<BinaryReadOptions>): TransitionApplicationStageResponse {
|
|
1403
|
+
return new TransitionApplicationStageResponse().fromBinary(bytes, options);
|
|
1404
|
+
}
|
|
1405
|
+
|
|
1406
|
+
static fromJson(jsonValue: JsonValue, options?: Partial<JsonReadOptions>): TransitionApplicationStageResponse {
|
|
1407
|
+
return new TransitionApplicationStageResponse().fromJson(jsonValue, options);
|
|
1408
|
+
}
|
|
1409
|
+
|
|
1410
|
+
static fromJsonString(jsonString: string, options?: Partial<JsonReadOptions>): TransitionApplicationStageResponse {
|
|
1411
|
+
return new TransitionApplicationStageResponse().fromJsonString(jsonString, options);
|
|
1412
|
+
}
|
|
1413
|
+
|
|
1414
|
+
static equals(a: TransitionApplicationStageResponse | PlainMessage<TransitionApplicationStageResponse> | undefined, b: TransitionApplicationStageResponse | PlainMessage<TransitionApplicationStageResponse> | undefined): boolean {
|
|
1415
|
+
return proto3.util.equals(TransitionApplicationStageResponse, a, b);
|
|
1416
|
+
}
|
|
1417
|
+
}
|
|
1418
|
+
|
|
1419
|
+
/**
|
|
1420
|
+
* @generated from message api.v1.RecordRecruiterDecisionRequest
|
|
1421
|
+
*/
|
|
1422
|
+
export class RecordRecruiterDecisionRequest extends Message<RecordRecruiterDecisionRequest> {
|
|
1423
|
+
/**
|
|
1424
|
+
* @generated from field: string application_id = 1;
|
|
1425
|
+
*/
|
|
1426
|
+
applicationId = "";
|
|
1427
|
+
|
|
1428
|
+
/**
|
|
1429
|
+
* @generated from field: string stage_context = 2;
|
|
1430
|
+
*/
|
|
1431
|
+
stageContext = "";
|
|
1432
|
+
|
|
1433
|
+
/**
|
|
1434
|
+
* @generated from field: string outcome = 3;
|
|
1435
|
+
*/
|
|
1436
|
+
outcome = "";
|
|
1437
|
+
|
|
1438
|
+
/**
|
|
1439
|
+
* @generated from field: string reasoning = 4;
|
|
1440
|
+
*/
|
|
1441
|
+
reasoning = "";
|
|
1442
|
+
|
|
1443
|
+
constructor(data?: PartialMessage<RecordRecruiterDecisionRequest>) {
|
|
1444
|
+
super();
|
|
1445
|
+
proto3.util.initPartial(data, this);
|
|
1446
|
+
}
|
|
1447
|
+
|
|
1448
|
+
static readonly runtime: typeof proto3 = proto3;
|
|
1449
|
+
static readonly typeName = "api.v1.RecordRecruiterDecisionRequest";
|
|
1450
|
+
static readonly fields: FieldList = proto3.util.newFieldList(() => [
|
|
1451
|
+
{ no: 1, name: "application_id", kind: "scalar", T: 9 /* ScalarType.STRING */ },
|
|
1452
|
+
{ no: 2, name: "stage_context", kind: "scalar", T: 9 /* ScalarType.STRING */ },
|
|
1453
|
+
{ no: 3, name: "outcome", kind: "scalar", T: 9 /* ScalarType.STRING */ },
|
|
1454
|
+
{ no: 4, name: "reasoning", kind: "scalar", T: 9 /* ScalarType.STRING */ },
|
|
1455
|
+
]);
|
|
1456
|
+
|
|
1457
|
+
static fromBinary(bytes: Uint8Array, options?: Partial<BinaryReadOptions>): RecordRecruiterDecisionRequest {
|
|
1458
|
+
return new RecordRecruiterDecisionRequest().fromBinary(bytes, options);
|
|
1459
|
+
}
|
|
1460
|
+
|
|
1461
|
+
static fromJson(jsonValue: JsonValue, options?: Partial<JsonReadOptions>): RecordRecruiterDecisionRequest {
|
|
1462
|
+
return new RecordRecruiterDecisionRequest().fromJson(jsonValue, options);
|
|
1463
|
+
}
|
|
1464
|
+
|
|
1465
|
+
static fromJsonString(jsonString: string, options?: Partial<JsonReadOptions>): RecordRecruiterDecisionRequest {
|
|
1466
|
+
return new RecordRecruiterDecisionRequest().fromJsonString(jsonString, options);
|
|
1467
|
+
}
|
|
1468
|
+
|
|
1469
|
+
static equals(a: RecordRecruiterDecisionRequest | PlainMessage<RecordRecruiterDecisionRequest> | undefined, b: RecordRecruiterDecisionRequest | PlainMessage<RecordRecruiterDecisionRequest> | undefined): boolean {
|
|
1470
|
+
return proto3.util.equals(RecordRecruiterDecisionRequest, a, b);
|
|
1471
|
+
}
|
|
1472
|
+
}
|
|
1473
|
+
|
|
1474
|
+
/**
|
|
1475
|
+
* @generated from message api.v1.RecordRecruiterDecisionResponse
|
|
1476
|
+
*/
|
|
1477
|
+
export class RecordRecruiterDecisionResponse extends Message<RecordRecruiterDecisionResponse> {
|
|
1478
|
+
/**
|
|
1479
|
+
* @generated from field: string decision_id = 1;
|
|
1480
|
+
*/
|
|
1481
|
+
decisionId = "";
|
|
1482
|
+
|
|
1483
|
+
constructor(data?: PartialMessage<RecordRecruiterDecisionResponse>) {
|
|
1484
|
+
super();
|
|
1485
|
+
proto3.util.initPartial(data, this);
|
|
1486
|
+
}
|
|
1487
|
+
|
|
1488
|
+
static readonly runtime: typeof proto3 = proto3;
|
|
1489
|
+
static readonly typeName = "api.v1.RecordRecruiterDecisionResponse";
|
|
1490
|
+
static readonly fields: FieldList = proto3.util.newFieldList(() => [
|
|
1491
|
+
{ no: 1, name: "decision_id", kind: "scalar", T: 9 /* ScalarType.STRING */ },
|
|
1492
|
+
]);
|
|
1493
|
+
|
|
1494
|
+
static fromBinary(bytes: Uint8Array, options?: Partial<BinaryReadOptions>): RecordRecruiterDecisionResponse {
|
|
1495
|
+
return new RecordRecruiterDecisionResponse().fromBinary(bytes, options);
|
|
1496
|
+
}
|
|
1497
|
+
|
|
1498
|
+
static fromJson(jsonValue: JsonValue, options?: Partial<JsonReadOptions>): RecordRecruiterDecisionResponse {
|
|
1499
|
+
return new RecordRecruiterDecisionResponse().fromJson(jsonValue, options);
|
|
1500
|
+
}
|
|
1501
|
+
|
|
1502
|
+
static fromJsonString(jsonString: string, options?: Partial<JsonReadOptions>): RecordRecruiterDecisionResponse {
|
|
1503
|
+
return new RecordRecruiterDecisionResponse().fromJsonString(jsonString, options);
|
|
1504
|
+
}
|
|
1505
|
+
|
|
1506
|
+
static equals(a: RecordRecruiterDecisionResponse | PlainMessage<RecordRecruiterDecisionResponse> | undefined, b: RecordRecruiterDecisionResponse | PlainMessage<RecordRecruiterDecisionResponse> | undefined): boolean {
|
|
1507
|
+
return proto3.util.equals(RecordRecruiterDecisionResponse, a, b);
|
|
1508
|
+
}
|
|
1509
|
+
}
|
|
1510
|
+
|
|
1511
|
+
/**
|
|
1512
|
+
* @generated from message api.v1.RecordScreeningResultRequest
|
|
1513
|
+
*/
|
|
1514
|
+
export class RecordScreeningResultRequest extends Message<RecordScreeningResultRequest> {
|
|
1515
|
+
/**
|
|
1516
|
+
* @generated from field: string application_id = 1;
|
|
1517
|
+
*/
|
|
1518
|
+
applicationId = "";
|
|
1519
|
+
|
|
1520
|
+
/**
|
|
1521
|
+
* @generated from field: double score = 2;
|
|
1522
|
+
*/
|
|
1523
|
+
score = 0;
|
|
1524
|
+
|
|
1525
|
+
/**
|
|
1526
|
+
* @generated from field: string explanation = 3;
|
|
1527
|
+
*/
|
|
1528
|
+
explanation = "";
|
|
1529
|
+
|
|
1530
|
+
/**
|
|
1531
|
+
* @generated from field: string skill_extractions_json = 4;
|
|
1532
|
+
*/
|
|
1533
|
+
skillExtractionsJson = "";
|
|
1534
|
+
|
|
1535
|
+
/**
|
|
1536
|
+
* @generated from field: string source_model_id = 5;
|
|
1537
|
+
*/
|
|
1538
|
+
sourceModelId = "";
|
|
1539
|
+
|
|
1540
|
+
/**
|
|
1541
|
+
* @generated from field: string raw_output_ref = 6;
|
|
1542
|
+
*/
|
|
1543
|
+
rawOutputRef = "";
|
|
1544
|
+
|
|
1545
|
+
constructor(data?: PartialMessage<RecordScreeningResultRequest>) {
|
|
1546
|
+
super();
|
|
1547
|
+
proto3.util.initPartial(data, this);
|
|
1548
|
+
}
|
|
1549
|
+
|
|
1550
|
+
static readonly runtime: typeof proto3 = proto3;
|
|
1551
|
+
static readonly typeName = "api.v1.RecordScreeningResultRequest";
|
|
1552
|
+
static readonly fields: FieldList = proto3.util.newFieldList(() => [
|
|
1553
|
+
{ no: 1, name: "application_id", kind: "scalar", T: 9 /* ScalarType.STRING */ },
|
|
1554
|
+
{ no: 2, name: "score", kind: "scalar", T: 1 /* ScalarType.DOUBLE */ },
|
|
1555
|
+
{ no: 3, name: "explanation", kind: "scalar", T: 9 /* ScalarType.STRING */ },
|
|
1556
|
+
{ no: 4, name: "skill_extractions_json", kind: "scalar", T: 9 /* ScalarType.STRING */ },
|
|
1557
|
+
{ no: 5, name: "source_model_id", kind: "scalar", T: 9 /* ScalarType.STRING */ },
|
|
1558
|
+
{ no: 6, name: "raw_output_ref", kind: "scalar", T: 9 /* ScalarType.STRING */ },
|
|
1559
|
+
]);
|
|
1560
|
+
|
|
1561
|
+
static fromBinary(bytes: Uint8Array, options?: Partial<BinaryReadOptions>): RecordScreeningResultRequest {
|
|
1562
|
+
return new RecordScreeningResultRequest().fromBinary(bytes, options);
|
|
1563
|
+
}
|
|
1564
|
+
|
|
1565
|
+
static fromJson(jsonValue: JsonValue, options?: Partial<JsonReadOptions>): RecordScreeningResultRequest {
|
|
1566
|
+
return new RecordScreeningResultRequest().fromJson(jsonValue, options);
|
|
1567
|
+
}
|
|
1568
|
+
|
|
1569
|
+
static fromJsonString(jsonString: string, options?: Partial<JsonReadOptions>): RecordScreeningResultRequest {
|
|
1570
|
+
return new RecordScreeningResultRequest().fromJsonString(jsonString, options);
|
|
1571
|
+
}
|
|
1572
|
+
|
|
1573
|
+
static equals(a: RecordScreeningResultRequest | PlainMessage<RecordScreeningResultRequest> | undefined, b: RecordScreeningResultRequest | PlainMessage<RecordScreeningResultRequest> | undefined): boolean {
|
|
1574
|
+
return proto3.util.equals(RecordScreeningResultRequest, a, b);
|
|
1575
|
+
}
|
|
1576
|
+
}
|
|
1577
|
+
|
|
1578
|
+
/**
|
|
1579
|
+
* @generated from message api.v1.RecordScreeningResultResponse
|
|
1580
|
+
*/
|
|
1581
|
+
export class RecordScreeningResultResponse extends Message<RecordScreeningResultResponse> {
|
|
1582
|
+
/**
|
|
1583
|
+
* @generated from field: string screening_result_id = 1;
|
|
1584
|
+
*/
|
|
1585
|
+
screeningResultId = "";
|
|
1586
|
+
|
|
1587
|
+
constructor(data?: PartialMessage<RecordScreeningResultResponse>) {
|
|
1588
|
+
super();
|
|
1589
|
+
proto3.util.initPartial(data, this);
|
|
1590
|
+
}
|
|
1591
|
+
|
|
1592
|
+
static readonly runtime: typeof proto3 = proto3;
|
|
1593
|
+
static readonly typeName = "api.v1.RecordScreeningResultResponse";
|
|
1594
|
+
static readonly fields: FieldList = proto3.util.newFieldList(() => [
|
|
1595
|
+
{ no: 1, name: "screening_result_id", kind: "scalar", T: 9 /* ScalarType.STRING */ },
|
|
1596
|
+
]);
|
|
1597
|
+
|
|
1598
|
+
static fromBinary(bytes: Uint8Array, options?: Partial<BinaryReadOptions>): RecordScreeningResultResponse {
|
|
1599
|
+
return new RecordScreeningResultResponse().fromBinary(bytes, options);
|
|
1600
|
+
}
|
|
1601
|
+
|
|
1602
|
+
static fromJson(jsonValue: JsonValue, options?: Partial<JsonReadOptions>): RecordScreeningResultResponse {
|
|
1603
|
+
return new RecordScreeningResultResponse().fromJson(jsonValue, options);
|
|
1604
|
+
}
|
|
1605
|
+
|
|
1606
|
+
static fromJsonString(jsonString: string, options?: Partial<JsonReadOptions>): RecordScreeningResultResponse {
|
|
1607
|
+
return new RecordScreeningResultResponse().fromJsonString(jsonString, options);
|
|
1608
|
+
}
|
|
1609
|
+
|
|
1610
|
+
static equals(a: RecordScreeningResultResponse | PlainMessage<RecordScreeningResultResponse> | undefined, b: RecordScreeningResultResponse | PlainMessage<RecordScreeningResultResponse> | undefined): boolean {
|
|
1611
|
+
return proto3.util.equals(RecordScreeningResultResponse, a, b);
|
|
1612
|
+
}
|
|
1613
|
+
}
|
|
1614
|
+
|
|
1615
|
+
/**
|
|
1616
|
+
* @generated from message api.v1.RecordInterviewRequest
|
|
1617
|
+
*/
|
|
1618
|
+
export class RecordInterviewRequest extends Message<RecordInterviewRequest> {
|
|
1619
|
+
/**
|
|
1620
|
+
* @generated from field: string application_id = 1;
|
|
1621
|
+
*/
|
|
1622
|
+
applicationId = "";
|
|
1623
|
+
|
|
1624
|
+
/**
|
|
1625
|
+
* @generated from field: string scheduled_at = 2;
|
|
1626
|
+
*/
|
|
1627
|
+
scheduledAt = "";
|
|
1628
|
+
|
|
1629
|
+
/**
|
|
1630
|
+
* @generated from field: string actual_at = 3;
|
|
1631
|
+
*/
|
|
1632
|
+
actualAt = "";
|
|
1633
|
+
|
|
1634
|
+
/**
|
|
1635
|
+
* @generated from field: string notes = 4;
|
|
1636
|
+
*/
|
|
1637
|
+
notes = "";
|
|
1638
|
+
|
|
1639
|
+
/**
|
|
1640
|
+
* @generated from field: string transcript_ref = 5;
|
|
1641
|
+
*/
|
|
1642
|
+
transcriptRef = "";
|
|
1643
|
+
|
|
1644
|
+
/**
|
|
1645
|
+
* @generated from field: string structured_scores_json = 6;
|
|
1646
|
+
*/
|
|
1647
|
+
structuredScoresJson = "";
|
|
1648
|
+
|
|
1649
|
+
constructor(data?: PartialMessage<RecordInterviewRequest>) {
|
|
1650
|
+
super();
|
|
1651
|
+
proto3.util.initPartial(data, this);
|
|
1652
|
+
}
|
|
1653
|
+
|
|
1654
|
+
static readonly runtime: typeof proto3 = proto3;
|
|
1655
|
+
static readonly typeName = "api.v1.RecordInterviewRequest";
|
|
1656
|
+
static readonly fields: FieldList = proto3.util.newFieldList(() => [
|
|
1657
|
+
{ no: 1, name: "application_id", kind: "scalar", T: 9 /* ScalarType.STRING */ },
|
|
1658
|
+
{ no: 2, name: "scheduled_at", kind: "scalar", T: 9 /* ScalarType.STRING */ },
|
|
1659
|
+
{ no: 3, name: "actual_at", kind: "scalar", T: 9 /* ScalarType.STRING */ },
|
|
1660
|
+
{ no: 4, name: "notes", kind: "scalar", T: 9 /* ScalarType.STRING */ },
|
|
1661
|
+
{ no: 5, name: "transcript_ref", kind: "scalar", T: 9 /* ScalarType.STRING */ },
|
|
1662
|
+
{ no: 6, name: "structured_scores_json", kind: "scalar", T: 9 /* ScalarType.STRING */ },
|
|
1663
|
+
]);
|
|
1664
|
+
|
|
1665
|
+
static fromBinary(bytes: Uint8Array, options?: Partial<BinaryReadOptions>): RecordInterviewRequest {
|
|
1666
|
+
return new RecordInterviewRequest().fromBinary(bytes, options);
|
|
1667
|
+
}
|
|
1668
|
+
|
|
1669
|
+
static fromJson(jsonValue: JsonValue, options?: Partial<JsonReadOptions>): RecordInterviewRequest {
|
|
1670
|
+
return new RecordInterviewRequest().fromJson(jsonValue, options);
|
|
1671
|
+
}
|
|
1672
|
+
|
|
1673
|
+
static fromJsonString(jsonString: string, options?: Partial<JsonReadOptions>): RecordInterviewRequest {
|
|
1674
|
+
return new RecordInterviewRequest().fromJsonString(jsonString, options);
|
|
1675
|
+
}
|
|
1676
|
+
|
|
1677
|
+
static equals(a: RecordInterviewRequest | PlainMessage<RecordInterviewRequest> | undefined, b: RecordInterviewRequest | PlainMessage<RecordInterviewRequest> | undefined): boolean {
|
|
1678
|
+
return proto3.util.equals(RecordInterviewRequest, a, b);
|
|
1679
|
+
}
|
|
1680
|
+
}
|
|
1681
|
+
|
|
1682
|
+
/**
|
|
1683
|
+
* @generated from message api.v1.RecordInterviewResponse
|
|
1684
|
+
*/
|
|
1685
|
+
export class RecordInterviewResponse extends Message<RecordInterviewResponse> {
|
|
1686
|
+
/**
|
|
1687
|
+
* @generated from field: string interview_record_id = 1;
|
|
1688
|
+
*/
|
|
1689
|
+
interviewRecordId = "";
|
|
1690
|
+
|
|
1691
|
+
constructor(data?: PartialMessage<RecordInterviewResponse>) {
|
|
1692
|
+
super();
|
|
1693
|
+
proto3.util.initPartial(data, this);
|
|
1694
|
+
}
|
|
1695
|
+
|
|
1696
|
+
static readonly runtime: typeof proto3 = proto3;
|
|
1697
|
+
static readonly typeName = "api.v1.RecordInterviewResponse";
|
|
1698
|
+
static readonly fields: FieldList = proto3.util.newFieldList(() => [
|
|
1699
|
+
{ no: 1, name: "interview_record_id", kind: "scalar", T: 9 /* ScalarType.STRING */ },
|
|
1700
|
+
]);
|
|
1701
|
+
|
|
1702
|
+
static fromBinary(bytes: Uint8Array, options?: Partial<BinaryReadOptions>): RecordInterviewResponse {
|
|
1703
|
+
return new RecordInterviewResponse().fromBinary(bytes, options);
|
|
1704
|
+
}
|
|
1705
|
+
|
|
1706
|
+
static fromJson(jsonValue: JsonValue, options?: Partial<JsonReadOptions>): RecordInterviewResponse {
|
|
1707
|
+
return new RecordInterviewResponse().fromJson(jsonValue, options);
|
|
1708
|
+
}
|
|
1709
|
+
|
|
1710
|
+
static fromJsonString(jsonString: string, options?: Partial<JsonReadOptions>): RecordInterviewResponse {
|
|
1711
|
+
return new RecordInterviewResponse().fromJsonString(jsonString, options);
|
|
1712
|
+
}
|
|
1713
|
+
|
|
1714
|
+
static equals(a: RecordInterviewResponse | PlainMessage<RecordInterviewResponse> | undefined, b: RecordInterviewResponse | PlainMessage<RecordInterviewResponse> | undefined): boolean {
|
|
1715
|
+
return proto3.util.equals(RecordInterviewResponse, a, b);
|
|
1716
|
+
}
|
|
1717
|
+
}
|
|
1718
|
+
|
|
1719
|
+
/**
|
|
1720
|
+
* @generated from message api.v1.LinkAssessmentRequest
|
|
1721
|
+
*/
|
|
1722
|
+
export class LinkAssessmentRequest extends Message<LinkAssessmentRequest> {
|
|
1723
|
+
/**
|
|
1724
|
+
* @generated from field: string application_id = 1;
|
|
1725
|
+
*/
|
|
1726
|
+
applicationId = "";
|
|
1727
|
+
|
|
1728
|
+
/**
|
|
1729
|
+
* @generated from field: string external_assessment_id = 2;
|
|
1730
|
+
*/
|
|
1731
|
+
externalAssessmentId = "";
|
|
1732
|
+
|
|
1733
|
+
/**
|
|
1734
|
+
* @generated from field: string status = 3;
|
|
1735
|
+
*/
|
|
1736
|
+
status = "";
|
|
1737
|
+
|
|
1738
|
+
/**
|
|
1739
|
+
* @generated from field: string score_summary = 4;
|
|
1740
|
+
*/
|
|
1741
|
+
scoreSummary = "";
|
|
1742
|
+
|
|
1743
|
+
constructor(data?: PartialMessage<LinkAssessmentRequest>) {
|
|
1744
|
+
super();
|
|
1745
|
+
proto3.util.initPartial(data, this);
|
|
1746
|
+
}
|
|
1747
|
+
|
|
1748
|
+
static readonly runtime: typeof proto3 = proto3;
|
|
1749
|
+
static readonly typeName = "api.v1.LinkAssessmentRequest";
|
|
1750
|
+
static readonly fields: FieldList = proto3.util.newFieldList(() => [
|
|
1751
|
+
{ no: 1, name: "application_id", kind: "scalar", T: 9 /* ScalarType.STRING */ },
|
|
1752
|
+
{ no: 2, name: "external_assessment_id", kind: "scalar", T: 9 /* ScalarType.STRING */ },
|
|
1753
|
+
{ no: 3, name: "status", kind: "scalar", T: 9 /* ScalarType.STRING */ },
|
|
1754
|
+
{ no: 4, name: "score_summary", kind: "scalar", T: 9 /* ScalarType.STRING */ },
|
|
1755
|
+
]);
|
|
1756
|
+
|
|
1757
|
+
static fromBinary(bytes: Uint8Array, options?: Partial<BinaryReadOptions>): LinkAssessmentRequest {
|
|
1758
|
+
return new LinkAssessmentRequest().fromBinary(bytes, options);
|
|
1759
|
+
}
|
|
1760
|
+
|
|
1761
|
+
static fromJson(jsonValue: JsonValue, options?: Partial<JsonReadOptions>): LinkAssessmentRequest {
|
|
1762
|
+
return new LinkAssessmentRequest().fromJson(jsonValue, options);
|
|
1763
|
+
}
|
|
1764
|
+
|
|
1765
|
+
static fromJsonString(jsonString: string, options?: Partial<JsonReadOptions>): LinkAssessmentRequest {
|
|
1766
|
+
return new LinkAssessmentRequest().fromJsonString(jsonString, options);
|
|
1767
|
+
}
|
|
1768
|
+
|
|
1769
|
+
static equals(a: LinkAssessmentRequest | PlainMessage<LinkAssessmentRequest> | undefined, b: LinkAssessmentRequest | PlainMessage<LinkAssessmentRequest> | undefined): boolean {
|
|
1770
|
+
return proto3.util.equals(LinkAssessmentRequest, a, b);
|
|
1771
|
+
}
|
|
1772
|
+
}
|
|
1773
|
+
|
|
1774
|
+
/**
|
|
1775
|
+
* @generated from message api.v1.LinkAssessmentResponse
|
|
1776
|
+
*/
|
|
1777
|
+
export class LinkAssessmentResponse extends Message<LinkAssessmentResponse> {
|
|
1778
|
+
/**
|
|
1779
|
+
* @generated from field: string assessment_link_id = 1;
|
|
1780
|
+
*/
|
|
1781
|
+
assessmentLinkId = "";
|
|
1782
|
+
|
|
1783
|
+
constructor(data?: PartialMessage<LinkAssessmentResponse>) {
|
|
1784
|
+
super();
|
|
1785
|
+
proto3.util.initPartial(data, this);
|
|
1786
|
+
}
|
|
1787
|
+
|
|
1788
|
+
static readonly runtime: typeof proto3 = proto3;
|
|
1789
|
+
static readonly typeName = "api.v1.LinkAssessmentResponse";
|
|
1790
|
+
static readonly fields: FieldList = proto3.util.newFieldList(() => [
|
|
1791
|
+
{ no: 1, name: "assessment_link_id", kind: "scalar", T: 9 /* ScalarType.STRING */ },
|
|
1792
|
+
]);
|
|
1793
|
+
|
|
1794
|
+
static fromBinary(bytes: Uint8Array, options?: Partial<BinaryReadOptions>): LinkAssessmentResponse {
|
|
1795
|
+
return new LinkAssessmentResponse().fromBinary(bytes, options);
|
|
1796
|
+
}
|
|
1797
|
+
|
|
1798
|
+
static fromJson(jsonValue: JsonValue, options?: Partial<JsonReadOptions>): LinkAssessmentResponse {
|
|
1799
|
+
return new LinkAssessmentResponse().fromJson(jsonValue, options);
|
|
1800
|
+
}
|
|
1801
|
+
|
|
1802
|
+
static fromJsonString(jsonString: string, options?: Partial<JsonReadOptions>): LinkAssessmentResponse {
|
|
1803
|
+
return new LinkAssessmentResponse().fromJsonString(jsonString, options);
|
|
1804
|
+
}
|
|
1805
|
+
|
|
1806
|
+
static equals(a: LinkAssessmentResponse | PlainMessage<LinkAssessmentResponse> | undefined, b: LinkAssessmentResponse | PlainMessage<LinkAssessmentResponse> | undefined): boolean {
|
|
1807
|
+
return proto3.util.equals(LinkAssessmentResponse, a, b);
|
|
1808
|
+
}
|
|
1809
|
+
}
|
|
1810
|
+
|
|
1811
|
+
/**
|
|
1812
|
+
* @generated from message api.v1.RecordOfferRequest
|
|
1813
|
+
*/
|
|
1814
|
+
export class RecordOfferRequest extends Message<RecordOfferRequest> {
|
|
1815
|
+
/**
|
|
1816
|
+
* @generated from field: string application_id = 1;
|
|
1817
|
+
*/
|
|
1818
|
+
applicationId = "";
|
|
1819
|
+
|
|
1820
|
+
/**
|
|
1821
|
+
* @generated from field: string terms = 2;
|
|
1822
|
+
*/
|
|
1823
|
+
terms = "";
|
|
1824
|
+
|
|
1825
|
+
/**
|
|
1826
|
+
* @generated from field: string status = 3;
|
|
1827
|
+
*/
|
|
1828
|
+
status = "";
|
|
1829
|
+
|
|
1830
|
+
constructor(data?: PartialMessage<RecordOfferRequest>) {
|
|
1831
|
+
super();
|
|
1832
|
+
proto3.util.initPartial(data, this);
|
|
1833
|
+
}
|
|
1834
|
+
|
|
1835
|
+
static readonly runtime: typeof proto3 = proto3;
|
|
1836
|
+
static readonly typeName = "api.v1.RecordOfferRequest";
|
|
1837
|
+
static readonly fields: FieldList = proto3.util.newFieldList(() => [
|
|
1838
|
+
{ no: 1, name: "application_id", kind: "scalar", T: 9 /* ScalarType.STRING */ },
|
|
1839
|
+
{ no: 2, name: "terms", kind: "scalar", T: 9 /* ScalarType.STRING */ },
|
|
1840
|
+
{ no: 3, name: "status", kind: "scalar", T: 9 /* ScalarType.STRING */ },
|
|
1841
|
+
]);
|
|
1842
|
+
|
|
1843
|
+
static fromBinary(bytes: Uint8Array, options?: Partial<BinaryReadOptions>): RecordOfferRequest {
|
|
1844
|
+
return new RecordOfferRequest().fromBinary(bytes, options);
|
|
1845
|
+
}
|
|
1846
|
+
|
|
1847
|
+
static fromJson(jsonValue: JsonValue, options?: Partial<JsonReadOptions>): RecordOfferRequest {
|
|
1848
|
+
return new RecordOfferRequest().fromJson(jsonValue, options);
|
|
1849
|
+
}
|
|
1850
|
+
|
|
1851
|
+
static fromJsonString(jsonString: string, options?: Partial<JsonReadOptions>): RecordOfferRequest {
|
|
1852
|
+
return new RecordOfferRequest().fromJsonString(jsonString, options);
|
|
1853
|
+
}
|
|
1854
|
+
|
|
1855
|
+
static equals(a: RecordOfferRequest | PlainMessage<RecordOfferRequest> | undefined, b: RecordOfferRequest | PlainMessage<RecordOfferRequest> | undefined): boolean {
|
|
1856
|
+
return proto3.util.equals(RecordOfferRequest, a, b);
|
|
1857
|
+
}
|
|
1858
|
+
}
|
|
1859
|
+
|
|
1860
|
+
/**
|
|
1861
|
+
* @generated from message api.v1.RecordOfferResponse
|
|
1862
|
+
*/
|
|
1863
|
+
export class RecordOfferResponse extends Message<RecordOfferResponse> {
|
|
1864
|
+
/**
|
|
1865
|
+
* @generated from field: string offer_id = 1;
|
|
1866
|
+
*/
|
|
1867
|
+
offerId = "";
|
|
1868
|
+
|
|
1869
|
+
constructor(data?: PartialMessage<RecordOfferResponse>) {
|
|
1870
|
+
super();
|
|
1871
|
+
proto3.util.initPartial(data, this);
|
|
1872
|
+
}
|
|
1873
|
+
|
|
1874
|
+
static readonly runtime: typeof proto3 = proto3;
|
|
1875
|
+
static readonly typeName = "api.v1.RecordOfferResponse";
|
|
1876
|
+
static readonly fields: FieldList = proto3.util.newFieldList(() => [
|
|
1877
|
+
{ no: 1, name: "offer_id", kind: "scalar", T: 9 /* ScalarType.STRING */ },
|
|
1878
|
+
]);
|
|
1879
|
+
|
|
1880
|
+
static fromBinary(bytes: Uint8Array, options?: Partial<BinaryReadOptions>): RecordOfferResponse {
|
|
1881
|
+
return new RecordOfferResponse().fromBinary(bytes, options);
|
|
1882
|
+
}
|
|
1883
|
+
|
|
1884
|
+
static fromJson(jsonValue: JsonValue, options?: Partial<JsonReadOptions>): RecordOfferResponse {
|
|
1885
|
+
return new RecordOfferResponse().fromJson(jsonValue, options);
|
|
1886
|
+
}
|
|
1887
|
+
|
|
1888
|
+
static fromJsonString(jsonString: string, options?: Partial<JsonReadOptions>): RecordOfferResponse {
|
|
1889
|
+
return new RecordOfferResponse().fromJsonString(jsonString, options);
|
|
1890
|
+
}
|
|
1891
|
+
|
|
1892
|
+
static equals(a: RecordOfferResponse | PlainMessage<RecordOfferResponse> | undefined, b: RecordOfferResponse | PlainMessage<RecordOfferResponse> | undefined): boolean {
|
|
1893
|
+
return proto3.util.equals(RecordOfferResponse, a, b);
|
|
1894
|
+
}
|
|
1895
|
+
}
|
|
1896
|
+
|
|
1897
|
+
/**
|
|
1898
|
+
* @generated from message api.v1.ApplicationEvent
|
|
1899
|
+
*/
|
|
1900
|
+
export class ApplicationEvent extends Message<ApplicationEvent> {
|
|
1901
|
+
/**
|
|
1902
|
+
* @generated from field: string event_id = 1;
|
|
1903
|
+
*/
|
|
1904
|
+
eventId = "";
|
|
1905
|
+
|
|
1906
|
+
/**
|
|
1907
|
+
* @generated from field: string application_id = 2;
|
|
1908
|
+
*/
|
|
1909
|
+
applicationId = "";
|
|
1910
|
+
|
|
1911
|
+
/**
|
|
1912
|
+
* @generated from field: string from_stage = 3;
|
|
1913
|
+
*/
|
|
1914
|
+
fromStage = "";
|
|
1915
|
+
|
|
1916
|
+
/**
|
|
1917
|
+
* @generated from field: string to_stage = 4;
|
|
1918
|
+
*/
|
|
1919
|
+
toStage = "";
|
|
1920
|
+
|
|
1921
|
+
/**
|
|
1922
|
+
* @generated from field: string actor_type = 5;
|
|
1923
|
+
*/
|
|
1924
|
+
actorType = "";
|
|
1925
|
+
|
|
1926
|
+
/**
|
|
1927
|
+
* @generated from field: string actor_user_id = 6;
|
|
1928
|
+
*/
|
|
1929
|
+
actorUserId = "";
|
|
1930
|
+
|
|
1931
|
+
/**
|
|
1932
|
+
* @generated from field: string metadata_json = 7;
|
|
1933
|
+
*/
|
|
1934
|
+
metadataJson = "";
|
|
1935
|
+
|
|
1936
|
+
/**
|
|
1937
|
+
* @generated from field: string created_at = 8;
|
|
1938
|
+
*/
|
|
1939
|
+
createdAt = "";
|
|
1940
|
+
|
|
1941
|
+
constructor(data?: PartialMessage<ApplicationEvent>) {
|
|
1942
|
+
super();
|
|
1943
|
+
proto3.util.initPartial(data, this);
|
|
1944
|
+
}
|
|
1945
|
+
|
|
1946
|
+
static readonly runtime: typeof proto3 = proto3;
|
|
1947
|
+
static readonly typeName = "api.v1.ApplicationEvent";
|
|
1948
|
+
static readonly fields: FieldList = proto3.util.newFieldList(() => [
|
|
1949
|
+
{ no: 1, name: "event_id", kind: "scalar", T: 9 /* ScalarType.STRING */ },
|
|
1950
|
+
{ no: 2, name: "application_id", kind: "scalar", T: 9 /* ScalarType.STRING */ },
|
|
1951
|
+
{ no: 3, name: "from_stage", kind: "scalar", T: 9 /* ScalarType.STRING */ },
|
|
1952
|
+
{ no: 4, name: "to_stage", kind: "scalar", T: 9 /* ScalarType.STRING */ },
|
|
1953
|
+
{ no: 5, name: "actor_type", kind: "scalar", T: 9 /* ScalarType.STRING */ },
|
|
1954
|
+
{ no: 6, name: "actor_user_id", kind: "scalar", T: 9 /* ScalarType.STRING */ },
|
|
1955
|
+
{ no: 7, name: "metadata_json", kind: "scalar", T: 9 /* ScalarType.STRING */ },
|
|
1956
|
+
{ no: 8, name: "created_at", kind: "scalar", T: 9 /* ScalarType.STRING */ },
|
|
1957
|
+
]);
|
|
1958
|
+
|
|
1959
|
+
static fromBinary(bytes: Uint8Array, options?: Partial<BinaryReadOptions>): ApplicationEvent {
|
|
1960
|
+
return new ApplicationEvent().fromBinary(bytes, options);
|
|
1961
|
+
}
|
|
1962
|
+
|
|
1963
|
+
static fromJson(jsonValue: JsonValue, options?: Partial<JsonReadOptions>): ApplicationEvent {
|
|
1964
|
+
return new ApplicationEvent().fromJson(jsonValue, options);
|
|
1965
|
+
}
|
|
1966
|
+
|
|
1967
|
+
static fromJsonString(jsonString: string, options?: Partial<JsonReadOptions>): ApplicationEvent {
|
|
1968
|
+
return new ApplicationEvent().fromJsonString(jsonString, options);
|
|
1969
|
+
}
|
|
1970
|
+
|
|
1971
|
+
static equals(a: ApplicationEvent | PlainMessage<ApplicationEvent> | undefined, b: ApplicationEvent | PlainMessage<ApplicationEvent> | undefined): boolean {
|
|
1972
|
+
return proto3.util.equals(ApplicationEvent, a, b);
|
|
1973
|
+
}
|
|
1974
|
+
}
|
|
1975
|
+
|
|
1976
|
+
/**
|
|
1977
|
+
* @generated from message api.v1.ListApplicationEventsRequest
|
|
1978
|
+
*/
|
|
1979
|
+
export class ListApplicationEventsRequest extends Message<ListApplicationEventsRequest> {
|
|
1980
|
+
/**
|
|
1981
|
+
* @generated from field: string application_id = 1;
|
|
1982
|
+
*/
|
|
1983
|
+
applicationId = "";
|
|
1984
|
+
|
|
1985
|
+
/**
|
|
1986
|
+
* @generated from field: api.v1.PageRequest page = 2;
|
|
1987
|
+
*/
|
|
1988
|
+
page?: PageRequest;
|
|
1989
|
+
|
|
1990
|
+
constructor(data?: PartialMessage<ListApplicationEventsRequest>) {
|
|
1991
|
+
super();
|
|
1992
|
+
proto3.util.initPartial(data, this);
|
|
1993
|
+
}
|
|
1994
|
+
|
|
1995
|
+
static readonly runtime: typeof proto3 = proto3;
|
|
1996
|
+
static readonly typeName = "api.v1.ListApplicationEventsRequest";
|
|
1997
|
+
static readonly fields: FieldList = proto3.util.newFieldList(() => [
|
|
1998
|
+
{ no: 1, name: "application_id", kind: "scalar", T: 9 /* ScalarType.STRING */ },
|
|
1999
|
+
{ no: 2, name: "page", kind: "message", T: PageRequest },
|
|
2000
|
+
]);
|
|
2001
|
+
|
|
2002
|
+
static fromBinary(bytes: Uint8Array, options?: Partial<BinaryReadOptions>): ListApplicationEventsRequest {
|
|
2003
|
+
return new ListApplicationEventsRequest().fromBinary(bytes, options);
|
|
2004
|
+
}
|
|
2005
|
+
|
|
2006
|
+
static fromJson(jsonValue: JsonValue, options?: Partial<JsonReadOptions>): ListApplicationEventsRequest {
|
|
2007
|
+
return new ListApplicationEventsRequest().fromJson(jsonValue, options);
|
|
2008
|
+
}
|
|
2009
|
+
|
|
2010
|
+
static fromJsonString(jsonString: string, options?: Partial<JsonReadOptions>): ListApplicationEventsRequest {
|
|
2011
|
+
return new ListApplicationEventsRequest().fromJsonString(jsonString, options);
|
|
2012
|
+
}
|
|
2013
|
+
|
|
2014
|
+
static equals(a: ListApplicationEventsRequest | PlainMessage<ListApplicationEventsRequest> | undefined, b: ListApplicationEventsRequest | PlainMessage<ListApplicationEventsRequest> | undefined): boolean {
|
|
2015
|
+
return proto3.util.equals(ListApplicationEventsRequest, a, b);
|
|
2016
|
+
}
|
|
2017
|
+
}
|
|
2018
|
+
|
|
2019
|
+
/**
|
|
2020
|
+
* @generated from message api.v1.ListApplicationEventsResponse
|
|
2021
|
+
*/
|
|
2022
|
+
export class ListApplicationEventsResponse extends Message<ListApplicationEventsResponse> {
|
|
2023
|
+
/**
|
|
2024
|
+
* @generated from field: repeated api.v1.ApplicationEvent events = 1;
|
|
2025
|
+
*/
|
|
2026
|
+
events: ApplicationEvent[] = [];
|
|
2027
|
+
|
|
2028
|
+
/**
|
|
2029
|
+
* @generated from field: api.v1.PageResponse page = 2;
|
|
2030
|
+
*/
|
|
2031
|
+
page?: PageResponse;
|
|
2032
|
+
|
|
2033
|
+
constructor(data?: PartialMessage<ListApplicationEventsResponse>) {
|
|
2034
|
+
super();
|
|
2035
|
+
proto3.util.initPartial(data, this);
|
|
2036
|
+
}
|
|
2037
|
+
|
|
2038
|
+
static readonly runtime: typeof proto3 = proto3;
|
|
2039
|
+
static readonly typeName = "api.v1.ListApplicationEventsResponse";
|
|
2040
|
+
static readonly fields: FieldList = proto3.util.newFieldList(() => [
|
|
2041
|
+
{ no: 1, name: "events", kind: "message", T: ApplicationEvent, repeated: true },
|
|
2042
|
+
{ no: 2, name: "page", kind: "message", T: PageResponse },
|
|
2043
|
+
]);
|
|
2044
|
+
|
|
2045
|
+
static fromBinary(bytes: Uint8Array, options?: Partial<BinaryReadOptions>): ListApplicationEventsResponse {
|
|
2046
|
+
return new ListApplicationEventsResponse().fromBinary(bytes, options);
|
|
2047
|
+
}
|
|
2048
|
+
|
|
2049
|
+
static fromJson(jsonValue: JsonValue, options?: Partial<JsonReadOptions>): ListApplicationEventsResponse {
|
|
2050
|
+
return new ListApplicationEventsResponse().fromJson(jsonValue, options);
|
|
2051
|
+
}
|
|
2052
|
+
|
|
2053
|
+
static fromJsonString(jsonString: string, options?: Partial<JsonReadOptions>): ListApplicationEventsResponse {
|
|
2054
|
+
return new ListApplicationEventsResponse().fromJsonString(jsonString, options);
|
|
2055
|
+
}
|
|
2056
|
+
|
|
2057
|
+
static equals(a: ListApplicationEventsResponse | PlainMessage<ListApplicationEventsResponse> | undefined, b: ListApplicationEventsResponse | PlainMessage<ListApplicationEventsResponse> | undefined): boolean {
|
|
2058
|
+
return proto3.util.equals(ListApplicationEventsResponse, a, b);
|
|
2059
|
+
}
|
|
2060
|
+
}
|
|
2061
|
+
|