@prance/sdk 0.1.2
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/dist/client.d.ts +62 -0
- package/dist/client.d.ts.map +1 -0
- package/dist/gen/cognition/v1/enums.d.ts +39 -0
- package/dist/gen/cognition/v1/enums.d.ts.map +1 -0
- package/dist/gen/cognition/v1/prompts.d.ts +335 -0
- package/dist/gen/cognition/v1/prompts.d.ts.map +1 -0
- package/dist/gen/common/v1/common.d.ts +60 -0
- package/dist/gen/common/v1/common.d.ts.map +1 -0
- package/dist/gen/common/v1/enums.d.ts +49 -0
- package/dist/gen/common/v1/enums.d.ts.map +1 -0
- package/dist/gen/google/protobuf/timestamp.d.ts +129 -0
- package/dist/gen/google/protobuf/timestamp.d.ts.map +1 -0
- package/dist/gen/interviews/v1/agents.d.ts +130 -0
- package/dist/gen/interviews/v1/agents.d.ts.map +1 -0
- package/dist/gen/interviews/v1/avatars.d.ts +292 -0
- package/dist/gen/interviews/v1/avatars.d.ts.map +1 -0
- package/dist/gen/interviews/v1/enums.d.ts +41 -0
- package/dist/gen/interviews/v1/enums.d.ts.map +1 -0
- package/dist/gen/interviews/v1/interviews.d.ts +598 -0
- package/dist/gen/interviews/v1/interviews.d.ts.map +1 -0
- package/dist/gen/organizations/v1/contracts.d.ts +185 -0
- package/dist/gen/organizations/v1/contracts.d.ts.map +1 -0
- package/dist/gen/organizations/v1/organizations.d.ts +161 -0
- package/dist/gen/organizations/v1/organizations.d.ts.map +1 -0
- package/dist/gen/organizations/v1/projects.d.ts +332 -0
- package/dist/gen/organizations/v1/projects.d.ts.map +1 -0
- package/dist/gen/screenings/v1/enums.d.ts +21 -0
- package/dist/gen/screenings/v1/enums.d.ts.map +1 -0
- package/dist/gen/screenings/v1/screenings.d.ts +173 -0
- package/dist/gen/screenings/v1/screenings.d.ts.map +1 -0
- package/dist/gen/users/v1/candidates.d.ts +219 -0
- package/dist/gen/users/v1/candidates.d.ts.map +1 -0
- package/dist/gen/users/v1/enums.d.ts +39 -0
- package/dist/gen/users/v1/enums.d.ts.map +1 -0
- package/dist/gen/users/v1/users.d.ts +160 -0
- package/dist/gen/users/v1/users.d.ts.map +1 -0
- package/dist/index.d.ts +12 -0
- package/dist/index.d.ts.map +1 -0
- package/dist/index.js +20052 -0
- package/package.json +48 -0
|
@@ -0,0 +1,598 @@
|
|
|
1
|
+
import { BinaryReader, BinaryWriter } from "@bufbuild/protobuf/wire";
|
|
2
|
+
import type { CallContext, CallOptions } from "nice-grpc-common";
|
|
3
|
+
import { AuditFields, PaginatedDataRequest } from "../../common/v1/common.js";
|
|
4
|
+
import { Contract } from "../../organizations/v1/contracts.js";
|
|
5
|
+
import { Project } from "../../organizations/v1/projects.js";
|
|
6
|
+
import { Candidate } from "../../users/v1/candidates.js";
|
|
7
|
+
import { AvatarParams } from "./avatars.js";
|
|
8
|
+
import { InterviewResult, InterviewStatus } from "./enums.js";
|
|
9
|
+
/** Error codes from interviews/schemas.ts `ConfirmIntervieweeError`. */
|
|
10
|
+
export declare const ConfirmIntervieweeError: {
|
|
11
|
+
readonly UNSPECIFIED: 0;
|
|
12
|
+
readonly INVALID_EMAIL: 1;
|
|
13
|
+
readonly INVALID_PASSCODE: 2;
|
|
14
|
+
readonly SESSION_NOT_FOUND: 3;
|
|
15
|
+
readonly INVALID_CREDENTIALS: 4;
|
|
16
|
+
readonly SESSION_CLAIMED: 5;
|
|
17
|
+
readonly UNRECOGNIZED: -1;
|
|
18
|
+
};
|
|
19
|
+
export type ConfirmIntervieweeError = typeof ConfirmIntervieweeError[keyof typeof ConfirmIntervieweeError];
|
|
20
|
+
export declare namespace ConfirmIntervieweeError {
|
|
21
|
+
type UNSPECIFIED = typeof ConfirmIntervieweeError.UNSPECIFIED;
|
|
22
|
+
type INVALID_EMAIL = typeof ConfirmIntervieweeError.INVALID_EMAIL;
|
|
23
|
+
type INVALID_PASSCODE = typeof ConfirmIntervieweeError.INVALID_PASSCODE;
|
|
24
|
+
type SESSION_NOT_FOUND = typeof ConfirmIntervieweeError.SESSION_NOT_FOUND;
|
|
25
|
+
type INVALID_CREDENTIALS = typeof ConfirmIntervieweeError.INVALID_CREDENTIALS;
|
|
26
|
+
type SESSION_CLAIMED = typeof ConfirmIntervieweeError.SESSION_CLAIMED;
|
|
27
|
+
type UNRECOGNIZED = typeof ConfirmIntervieweeError.UNRECOGNIZED;
|
|
28
|
+
}
|
|
29
|
+
export declare function confirmIntervieweeErrorFromJSON(object: any): ConfirmIntervieweeError;
|
|
30
|
+
export declare function confirmIntervieweeErrorToJSON(object: ConfirmIntervieweeError): string;
|
|
31
|
+
export declare const QuotaGranularity: {
|
|
32
|
+
readonly UNSPECIFIED: 0;
|
|
33
|
+
readonly DAY: 1;
|
|
34
|
+
readonly WEEK: 2;
|
|
35
|
+
readonly MONTH: 3;
|
|
36
|
+
readonly UNRECOGNIZED: -1;
|
|
37
|
+
};
|
|
38
|
+
export type QuotaGranularity = typeof QuotaGranularity[keyof typeof QuotaGranularity];
|
|
39
|
+
export declare namespace QuotaGranularity {
|
|
40
|
+
type UNSPECIFIED = typeof QuotaGranularity.UNSPECIFIED;
|
|
41
|
+
type DAY = typeof QuotaGranularity.DAY;
|
|
42
|
+
type WEEK = typeof QuotaGranularity.WEEK;
|
|
43
|
+
type MONTH = typeof QuotaGranularity.MONTH;
|
|
44
|
+
type UNRECOGNIZED = typeof QuotaGranularity.UNRECOGNIZED;
|
|
45
|
+
}
|
|
46
|
+
export declare function quotaGranularityFromJSON(object: any): QuotaGranularity;
|
|
47
|
+
export declare function quotaGranularityToJSON(object: QuotaGranularity): string;
|
|
48
|
+
/**
|
|
49
|
+
* Mirrors interviews/schemas.ts `evaluationScoreSchema`. Value type of the
|
|
50
|
+
* InterviewSession.aiScore / humanScore JSON columns.
|
|
51
|
+
*/
|
|
52
|
+
export interface EvaluationScore {
|
|
53
|
+
criteria: string;
|
|
54
|
+
/** 0..5 in the source. */
|
|
55
|
+
score: number;
|
|
56
|
+
reason: string;
|
|
57
|
+
}
|
|
58
|
+
/** Prisma `Conversation`. */
|
|
59
|
+
export interface Conversation {
|
|
60
|
+
id: string;
|
|
61
|
+
speaker: string;
|
|
62
|
+
text: string;
|
|
63
|
+
interviewSessionId: string;
|
|
64
|
+
timestamp: Date | undefined;
|
|
65
|
+
audit: AuditFields | undefined;
|
|
66
|
+
}
|
|
67
|
+
/**
|
|
68
|
+
* Prisma `InterviewSession`. aiScore/humanScore are stored as arrays of
|
|
69
|
+
* EvaluationScore; getSessions returns them keyed by criteria (see
|
|
70
|
+
* SessionListItem.ai_score_by_criteria).
|
|
71
|
+
*/
|
|
72
|
+
export interface InterviewSession {
|
|
73
|
+
id: string;
|
|
74
|
+
interviewId: string;
|
|
75
|
+
passcode: string;
|
|
76
|
+
recordingUrl?: string | undefined;
|
|
77
|
+
aiSummary: string;
|
|
78
|
+
aiScore: EvaluationScore[];
|
|
79
|
+
aiOverallScore?: number | undefined;
|
|
80
|
+
humanScore: EvaluationScore[];
|
|
81
|
+
humanOverallScore?: number | undefined;
|
|
82
|
+
notes: string;
|
|
83
|
+
status: InterviewStatus;
|
|
84
|
+
result: InterviewResult;
|
|
85
|
+
expiresAt: Date | undefined;
|
|
86
|
+
startedAt?: Date | undefined;
|
|
87
|
+
completedAt?: Date | undefined;
|
|
88
|
+
audit: AuditFields | undefined;
|
|
89
|
+
}
|
|
90
|
+
/**
|
|
91
|
+
* getSessions item: InterviewSession with aiScore/humanScore keyed by criteria,
|
|
92
|
+
* plus the related interview -> { candidate, project }.
|
|
93
|
+
*/
|
|
94
|
+
export interface SessionListItem {
|
|
95
|
+
session: InterviewSession | undefined;
|
|
96
|
+
aiScoreByCriteria: {
|
|
97
|
+
[key: string]: EvaluationScore;
|
|
98
|
+
};
|
|
99
|
+
humanScoreByCriteria: {
|
|
100
|
+
[key: string]: EvaluationScore;
|
|
101
|
+
};
|
|
102
|
+
candidate: Candidate | undefined;
|
|
103
|
+
project: Project | undefined;
|
|
104
|
+
}
|
|
105
|
+
export interface SessionListItem_AiScoreByCriteriaEntry {
|
|
106
|
+
key: string;
|
|
107
|
+
value: EvaluationScore | undefined;
|
|
108
|
+
}
|
|
109
|
+
export interface SessionListItem_HumanScoreByCriteriaEntry {
|
|
110
|
+
key: string;
|
|
111
|
+
value: EvaluationScore | undefined;
|
|
112
|
+
}
|
|
113
|
+
export interface SessionPage {
|
|
114
|
+
items: SessionListItem[];
|
|
115
|
+
count: number;
|
|
116
|
+
}
|
|
117
|
+
/**
|
|
118
|
+
* getInterview / getSession nested session shape (with conversations + typed
|
|
119
|
+
* score arrays).
|
|
120
|
+
*/
|
|
121
|
+
export interface SessionWithConversations {
|
|
122
|
+
session: InterviewSession | undefined;
|
|
123
|
+
conversations: Conversation[];
|
|
124
|
+
}
|
|
125
|
+
/** getInterview result. */
|
|
126
|
+
export interface InterviewDetails {
|
|
127
|
+
id: string;
|
|
128
|
+
projectId: string;
|
|
129
|
+
candidateId: string;
|
|
130
|
+
candidate: Candidate | undefined;
|
|
131
|
+
project: Project | undefined;
|
|
132
|
+
sessions: SessionWithConversations[];
|
|
133
|
+
audit: AuditFields | undefined;
|
|
134
|
+
}
|
|
135
|
+
/** getSession result. */
|
|
136
|
+
export interface SessionDetails {
|
|
137
|
+
session: InterviewSession | undefined;
|
|
138
|
+
conversations: Conversation[];
|
|
139
|
+
interview: InterviewDetails | undefined;
|
|
140
|
+
}
|
|
141
|
+
/** getInterviewBySession result: session + resolved avatar params. */
|
|
142
|
+
export interface SessionWithAvatar {
|
|
143
|
+
session: InterviewSession | undefined;
|
|
144
|
+
avatar: AvatarParams | undefined;
|
|
145
|
+
}
|
|
146
|
+
/** setSessionFeedbackSchema. */
|
|
147
|
+
export interface SetSessionFeedbackRequest {
|
|
148
|
+
sessionId: string;
|
|
149
|
+
humanScore: EvaluationScore[];
|
|
150
|
+
notes: string;
|
|
151
|
+
}
|
|
152
|
+
/** setSessionResultSchema. */
|
|
153
|
+
export interface SetSessionResultRequest {
|
|
154
|
+
sessionId: string;
|
|
155
|
+
result: InterviewResult;
|
|
156
|
+
}
|
|
157
|
+
/** confirmIntervieweeSchema arguments. */
|
|
158
|
+
export interface GetInterviewRoomTokenRequest {
|
|
159
|
+
sessionId: string;
|
|
160
|
+
email: string;
|
|
161
|
+
passcode: string;
|
|
162
|
+
}
|
|
163
|
+
export interface RoomToken {
|
|
164
|
+
url: string;
|
|
165
|
+
token: string;
|
|
166
|
+
}
|
|
167
|
+
export interface GetInterviewRoomTokenResponse {
|
|
168
|
+
token?: RoomToken | undefined;
|
|
169
|
+
error?: ConfirmIntervieweeError | undefined;
|
|
170
|
+
}
|
|
171
|
+
export interface ResummarizeSessionRequest {
|
|
172
|
+
sessionId: string;
|
|
173
|
+
}
|
|
174
|
+
export interface ReevaluateSessionRequest {
|
|
175
|
+
sessionId: string;
|
|
176
|
+
}
|
|
177
|
+
export interface EndInterviewRequest {
|
|
178
|
+
sessionId: string;
|
|
179
|
+
}
|
|
180
|
+
export interface RestartInterviewRequest {
|
|
181
|
+
sessionId: string;
|
|
182
|
+
}
|
|
183
|
+
export interface RestartInterviewResponse {
|
|
184
|
+
sessionId: string;
|
|
185
|
+
passcode: string;
|
|
186
|
+
}
|
|
187
|
+
/**
|
|
188
|
+
* inviteCandidatesForInterviewSchema. create_only mirrors the optional
|
|
189
|
+
* createOnly second parameter.
|
|
190
|
+
*/
|
|
191
|
+
export interface InviteCandidatesForInterviewRequest {
|
|
192
|
+
projectId: string;
|
|
193
|
+
candidateIds: string[];
|
|
194
|
+
createOnly?: boolean | undefined;
|
|
195
|
+
}
|
|
196
|
+
export interface InterviewInvitation {
|
|
197
|
+
interviewId: string;
|
|
198
|
+
name: string;
|
|
199
|
+
email: string;
|
|
200
|
+
sessionId: string;
|
|
201
|
+
passcode: string;
|
|
202
|
+
}
|
|
203
|
+
export interface InviteCandidatesForInterviewResponse {
|
|
204
|
+
invitations: InterviewInvitation[];
|
|
205
|
+
}
|
|
206
|
+
/**
|
|
207
|
+
* processInterviewTranscript (super-admin). Mirrors
|
|
208
|
+
* interviewTranscriptUploadSchema element.
|
|
209
|
+
*/
|
|
210
|
+
export interface TranscriptLine {
|
|
211
|
+
start: number;
|
|
212
|
+
/** "Interviewer" | "You". */
|
|
213
|
+
speaker: string;
|
|
214
|
+
text: string;
|
|
215
|
+
}
|
|
216
|
+
export interface ProcessInterviewTranscriptRequest {
|
|
217
|
+
sessionId: string;
|
|
218
|
+
transcript: TranscriptLine[];
|
|
219
|
+
}
|
|
220
|
+
export interface GetSessionsRequest {
|
|
221
|
+
pagination: PaginatedDataRequest | undefined;
|
|
222
|
+
}
|
|
223
|
+
export interface GetInterviewRequest {
|
|
224
|
+
interviewId: string;
|
|
225
|
+
}
|
|
226
|
+
export interface GetSessionRequest {
|
|
227
|
+
sessionId: string;
|
|
228
|
+
}
|
|
229
|
+
export interface GetInterviewBySessionRequest {
|
|
230
|
+
sessionId: string;
|
|
231
|
+
}
|
|
232
|
+
export interface GetInterviewsQuotaRequest {
|
|
233
|
+
organizationId: string;
|
|
234
|
+
granularity: QuotaGranularity;
|
|
235
|
+
}
|
|
236
|
+
export interface QuotaBucket {
|
|
237
|
+
date: Date | undefined;
|
|
238
|
+
count: number;
|
|
239
|
+
}
|
|
240
|
+
export interface GetInterviewsQuotaResponse {
|
|
241
|
+
/** [start, end] of the covering contract period. */
|
|
242
|
+
contractPeriodStart: Date | undefined;
|
|
243
|
+
contractPeriodEnd: Date | undefined;
|
|
244
|
+
interviews: QuotaBucket[];
|
|
245
|
+
contracts: Contract[];
|
|
246
|
+
}
|
|
247
|
+
export interface GetInterviewRecordingUrlRequest {
|
|
248
|
+
sessionId: string;
|
|
249
|
+
}
|
|
250
|
+
/** recordingUrl may be null -> url unset. */
|
|
251
|
+
export interface GetInterviewRecordingUrlResponse {
|
|
252
|
+
url?: string | undefined;
|
|
253
|
+
}
|
|
254
|
+
export interface GetActiveInterviewsCountResponse {
|
|
255
|
+
count: number;
|
|
256
|
+
}
|
|
257
|
+
export interface SetSessionFeedbackResponse {
|
|
258
|
+
session: InterviewSession | undefined;
|
|
259
|
+
}
|
|
260
|
+
export interface SetSessionResultResponse {
|
|
261
|
+
session: InterviewSession | undefined;
|
|
262
|
+
}
|
|
263
|
+
export interface ResummarizeSessionResponse {
|
|
264
|
+
}
|
|
265
|
+
export interface ReevaluateSessionResponse {
|
|
266
|
+
}
|
|
267
|
+
export interface EndInterviewResponse {
|
|
268
|
+
}
|
|
269
|
+
export interface ProcessInterviewTranscriptResponse {
|
|
270
|
+
}
|
|
271
|
+
export interface ExpireInterviewsRequest {
|
|
272
|
+
}
|
|
273
|
+
export interface ExpireInterviewsResponse {
|
|
274
|
+
}
|
|
275
|
+
export interface GetSessionsResponse {
|
|
276
|
+
page: SessionPage | undefined;
|
|
277
|
+
}
|
|
278
|
+
export interface GetInterviewResponse {
|
|
279
|
+
interview: InterviewDetails | undefined;
|
|
280
|
+
}
|
|
281
|
+
export interface GetSessionResponse {
|
|
282
|
+
session: SessionDetails | undefined;
|
|
283
|
+
}
|
|
284
|
+
export interface GetInterviewBySessionResponse {
|
|
285
|
+
session: SessionWithAvatar | undefined;
|
|
286
|
+
}
|
|
287
|
+
export interface GetActiveInterviewsCountRequest {
|
|
288
|
+
}
|
|
289
|
+
export declare const EvaluationScore: MessageFns<EvaluationScore>;
|
|
290
|
+
export declare const Conversation: MessageFns<Conversation>;
|
|
291
|
+
export declare const InterviewSession: MessageFns<InterviewSession>;
|
|
292
|
+
export declare const SessionListItem: MessageFns<SessionListItem>;
|
|
293
|
+
export declare const SessionListItem_AiScoreByCriteriaEntry: MessageFns<SessionListItem_AiScoreByCriteriaEntry>;
|
|
294
|
+
export declare const SessionListItem_HumanScoreByCriteriaEntry: MessageFns<SessionListItem_HumanScoreByCriteriaEntry>;
|
|
295
|
+
export declare const SessionPage: MessageFns<SessionPage>;
|
|
296
|
+
export declare const SessionWithConversations: MessageFns<SessionWithConversations>;
|
|
297
|
+
export declare const InterviewDetails: MessageFns<InterviewDetails>;
|
|
298
|
+
export declare const SessionDetails: MessageFns<SessionDetails>;
|
|
299
|
+
export declare const SessionWithAvatar: MessageFns<SessionWithAvatar>;
|
|
300
|
+
export declare const SetSessionFeedbackRequest: MessageFns<SetSessionFeedbackRequest>;
|
|
301
|
+
export declare const SetSessionResultRequest: MessageFns<SetSessionResultRequest>;
|
|
302
|
+
export declare const GetInterviewRoomTokenRequest: MessageFns<GetInterviewRoomTokenRequest>;
|
|
303
|
+
export declare const RoomToken: MessageFns<RoomToken>;
|
|
304
|
+
export declare const GetInterviewRoomTokenResponse: MessageFns<GetInterviewRoomTokenResponse>;
|
|
305
|
+
export declare const ResummarizeSessionRequest: MessageFns<ResummarizeSessionRequest>;
|
|
306
|
+
export declare const ReevaluateSessionRequest: MessageFns<ReevaluateSessionRequest>;
|
|
307
|
+
export declare const EndInterviewRequest: MessageFns<EndInterviewRequest>;
|
|
308
|
+
export declare const RestartInterviewRequest: MessageFns<RestartInterviewRequest>;
|
|
309
|
+
export declare const RestartInterviewResponse: MessageFns<RestartInterviewResponse>;
|
|
310
|
+
export declare const InviteCandidatesForInterviewRequest: MessageFns<InviteCandidatesForInterviewRequest>;
|
|
311
|
+
export declare const InterviewInvitation: MessageFns<InterviewInvitation>;
|
|
312
|
+
export declare const InviteCandidatesForInterviewResponse: MessageFns<InviteCandidatesForInterviewResponse>;
|
|
313
|
+
export declare const TranscriptLine: MessageFns<TranscriptLine>;
|
|
314
|
+
export declare const ProcessInterviewTranscriptRequest: MessageFns<ProcessInterviewTranscriptRequest>;
|
|
315
|
+
export declare const GetSessionsRequest: MessageFns<GetSessionsRequest>;
|
|
316
|
+
export declare const GetInterviewRequest: MessageFns<GetInterviewRequest>;
|
|
317
|
+
export declare const GetSessionRequest: MessageFns<GetSessionRequest>;
|
|
318
|
+
export declare const GetInterviewBySessionRequest: MessageFns<GetInterviewBySessionRequest>;
|
|
319
|
+
export declare const GetInterviewsQuotaRequest: MessageFns<GetInterviewsQuotaRequest>;
|
|
320
|
+
export declare const QuotaBucket: MessageFns<QuotaBucket>;
|
|
321
|
+
export declare const GetInterviewsQuotaResponse: MessageFns<GetInterviewsQuotaResponse>;
|
|
322
|
+
export declare const GetInterviewRecordingUrlRequest: MessageFns<GetInterviewRecordingUrlRequest>;
|
|
323
|
+
export declare const GetInterviewRecordingUrlResponse: MessageFns<GetInterviewRecordingUrlResponse>;
|
|
324
|
+
export declare const GetActiveInterviewsCountResponse: MessageFns<GetActiveInterviewsCountResponse>;
|
|
325
|
+
export declare const SetSessionFeedbackResponse: MessageFns<SetSessionFeedbackResponse>;
|
|
326
|
+
export declare const SetSessionResultResponse: MessageFns<SetSessionResultResponse>;
|
|
327
|
+
export declare const ResummarizeSessionResponse: MessageFns<ResummarizeSessionResponse>;
|
|
328
|
+
export declare const ReevaluateSessionResponse: MessageFns<ReevaluateSessionResponse>;
|
|
329
|
+
export declare const EndInterviewResponse: MessageFns<EndInterviewResponse>;
|
|
330
|
+
export declare const ProcessInterviewTranscriptResponse: MessageFns<ProcessInterviewTranscriptResponse>;
|
|
331
|
+
export declare const ExpireInterviewsRequest: MessageFns<ExpireInterviewsRequest>;
|
|
332
|
+
export declare const ExpireInterviewsResponse: MessageFns<ExpireInterviewsResponse>;
|
|
333
|
+
export declare const GetSessionsResponse: MessageFns<GetSessionsResponse>;
|
|
334
|
+
export declare const GetInterviewResponse: MessageFns<GetInterviewResponse>;
|
|
335
|
+
export declare const GetSessionResponse: MessageFns<GetSessionResponse>;
|
|
336
|
+
export declare const GetInterviewBySessionResponse: MessageFns<GetInterviewBySessionResponse>;
|
|
337
|
+
export declare const GetActiveInterviewsCountRequest: MessageFns<GetActiveInterviewsCountRequest>;
|
|
338
|
+
export type InterviewsServiceDefinition = typeof InterviewsServiceDefinition;
|
|
339
|
+
export declare const InterviewsServiceDefinition: {
|
|
340
|
+
readonly name: "InterviewsService";
|
|
341
|
+
readonly fullName: "interviews.v1.InterviewsService";
|
|
342
|
+
readonly methods: {
|
|
343
|
+
/** authz: authorizeUserBySession */
|
|
344
|
+
readonly setSessionFeedback: {
|
|
345
|
+
readonly name: "SetSessionFeedback";
|
|
346
|
+
readonly requestType: typeof SetSessionFeedbackRequest;
|
|
347
|
+
readonly requestStream: false;
|
|
348
|
+
readonly responseType: typeof SetSessionFeedbackResponse;
|
|
349
|
+
readonly responseStream: false;
|
|
350
|
+
readonly options: {};
|
|
351
|
+
};
|
|
352
|
+
/** authz: authorizeUserBySession */
|
|
353
|
+
readonly setSessionResult: {
|
|
354
|
+
readonly name: "SetSessionResult";
|
|
355
|
+
readonly requestType: typeof SetSessionResultRequest;
|
|
356
|
+
readonly requestStream: false;
|
|
357
|
+
readonly responseType: typeof SetSessionResultResponse;
|
|
358
|
+
readonly responseStream: false;
|
|
359
|
+
readonly options: {};
|
|
360
|
+
};
|
|
361
|
+
/** authz: PUBLIC (interviewee) — verified by email + passcode credentials */
|
|
362
|
+
readonly getInterviewRoomToken: {
|
|
363
|
+
readonly name: "GetInterviewRoomToken";
|
|
364
|
+
readonly requestType: typeof GetInterviewRoomTokenRequest;
|
|
365
|
+
readonly requestStream: false;
|
|
366
|
+
readonly responseType: typeof GetInterviewRoomTokenResponse;
|
|
367
|
+
readonly responseStream: false;
|
|
368
|
+
readonly options: {};
|
|
369
|
+
};
|
|
370
|
+
/** authz: authorizeUserBySession */
|
|
371
|
+
readonly resummarizeSession: {
|
|
372
|
+
readonly name: "ResummarizeSession";
|
|
373
|
+
readonly requestType: typeof ResummarizeSessionRequest;
|
|
374
|
+
readonly requestStream: false;
|
|
375
|
+
readonly responseType: typeof ResummarizeSessionResponse;
|
|
376
|
+
readonly responseStream: false;
|
|
377
|
+
readonly options: {};
|
|
378
|
+
};
|
|
379
|
+
/** authz: authorizeUserBySession */
|
|
380
|
+
readonly reevaluateSession: {
|
|
381
|
+
readonly name: "ReevaluateSession";
|
|
382
|
+
readonly requestType: typeof ReevaluateSessionRequest;
|
|
383
|
+
readonly requestStream: false;
|
|
384
|
+
readonly responseType: typeof ReevaluateSessionResponse;
|
|
385
|
+
readonly responseStream: false;
|
|
386
|
+
readonly options: {};
|
|
387
|
+
};
|
|
388
|
+
/** authz: NONE in source (session must exist) — see README security note */
|
|
389
|
+
readonly endInterview: {
|
|
390
|
+
readonly name: "EndInterview";
|
|
391
|
+
readonly requestType: typeof EndInterviewRequest;
|
|
392
|
+
readonly requestStream: false;
|
|
393
|
+
readonly responseType: typeof EndInterviewResponse;
|
|
394
|
+
readonly responseStream: false;
|
|
395
|
+
readonly options: {};
|
|
396
|
+
};
|
|
397
|
+
/** authz: authorizeUserBySession */
|
|
398
|
+
readonly restartInterview: {
|
|
399
|
+
readonly name: "RestartInterview";
|
|
400
|
+
readonly requestType: typeof RestartInterviewRequest;
|
|
401
|
+
readonly requestStream: false;
|
|
402
|
+
readonly responseType: typeof RestartInterviewResponse;
|
|
403
|
+
readonly responseStream: false;
|
|
404
|
+
readonly options: {};
|
|
405
|
+
};
|
|
406
|
+
/** authz: authorizeUserByProject(projectId) */
|
|
407
|
+
readonly inviteCandidatesForInterview: {
|
|
408
|
+
readonly name: "InviteCandidatesForInterview";
|
|
409
|
+
readonly requestType: typeof InviteCandidatesForInterviewRequest;
|
|
410
|
+
readonly requestStream: false;
|
|
411
|
+
readonly responseType: typeof InviteCandidatesForInterviewResponse;
|
|
412
|
+
readonly responseStream: false;
|
|
413
|
+
readonly options: {};
|
|
414
|
+
};
|
|
415
|
+
/** authz: super-admin */
|
|
416
|
+
readonly processInterviewTranscript: {
|
|
417
|
+
readonly name: "ProcessInterviewTranscript";
|
|
418
|
+
readonly requestType: typeof ProcessInterviewTranscriptRequest;
|
|
419
|
+
readonly requestStream: false;
|
|
420
|
+
readonly responseType: typeof ProcessInterviewTranscriptResponse;
|
|
421
|
+
readonly responseStream: false;
|
|
422
|
+
readonly options: {};
|
|
423
|
+
};
|
|
424
|
+
/** authz: scoped to caller's current organization */
|
|
425
|
+
readonly getSessions: {
|
|
426
|
+
readonly name: "GetSessions";
|
|
427
|
+
readonly requestType: typeof GetSessionsRequest;
|
|
428
|
+
readonly requestStream: false;
|
|
429
|
+
readonly responseType: typeof GetSessionsResponse;
|
|
430
|
+
readonly responseStream: false;
|
|
431
|
+
readonly options: {};
|
|
432
|
+
};
|
|
433
|
+
/** authz: NONE in source — see README security note */
|
|
434
|
+
readonly getInterview: {
|
|
435
|
+
readonly name: "GetInterview";
|
|
436
|
+
readonly requestType: typeof GetInterviewRequest;
|
|
437
|
+
readonly requestStream: false;
|
|
438
|
+
readonly responseType: typeof GetInterviewResponse;
|
|
439
|
+
readonly responseStream: false;
|
|
440
|
+
readonly options: {};
|
|
441
|
+
};
|
|
442
|
+
/** authz: NONE in source — see README security note */
|
|
443
|
+
readonly getSession: {
|
|
444
|
+
readonly name: "GetSession";
|
|
445
|
+
readonly requestType: typeof GetSessionRequest;
|
|
446
|
+
readonly requestStream: false;
|
|
447
|
+
readonly responseType: typeof GetSessionResponse;
|
|
448
|
+
readonly responseStream: false;
|
|
449
|
+
readonly options: {};
|
|
450
|
+
};
|
|
451
|
+
/** authz: NONE in source — see README security note */
|
|
452
|
+
readonly getInterviewBySession: {
|
|
453
|
+
readonly name: "GetInterviewBySession";
|
|
454
|
+
readonly requestType: typeof GetInterviewBySessionRequest;
|
|
455
|
+
readonly requestStream: false;
|
|
456
|
+
readonly responseType: typeof GetInterviewBySessionResponse;
|
|
457
|
+
readonly responseStream: false;
|
|
458
|
+
readonly options: {};
|
|
459
|
+
};
|
|
460
|
+
/** authz: authorizeUserByOrganization */
|
|
461
|
+
readonly getInterviewsQuota: {
|
|
462
|
+
readonly name: "GetInterviewsQuota";
|
|
463
|
+
readonly requestType: typeof GetInterviewsQuotaRequest;
|
|
464
|
+
readonly requestStream: false;
|
|
465
|
+
readonly responseType: typeof GetInterviewsQuotaResponse;
|
|
466
|
+
readonly responseStream: false;
|
|
467
|
+
readonly options: {};
|
|
468
|
+
};
|
|
469
|
+
/** authz: authorizeUserBySession */
|
|
470
|
+
readonly getInterviewRecordingUrl: {
|
|
471
|
+
readonly name: "GetInterviewRecordingUrl";
|
|
472
|
+
readonly requestType: typeof GetInterviewRecordingUrlRequest;
|
|
473
|
+
readonly requestStream: false;
|
|
474
|
+
readonly responseType: typeof GetInterviewRecordingUrlResponse;
|
|
475
|
+
readonly responseStream: false;
|
|
476
|
+
readonly options: {};
|
|
477
|
+
};
|
|
478
|
+
/** authz: NONE in source (global count) — see README security note */
|
|
479
|
+
readonly getActiveInterviewsCount: {
|
|
480
|
+
readonly name: "GetActiveInterviewsCount";
|
|
481
|
+
readonly requestType: typeof GetActiveInterviewsCountRequest;
|
|
482
|
+
readonly requestStream: false;
|
|
483
|
+
readonly responseType: typeof GetActiveInterviewsCountResponse;
|
|
484
|
+
readonly responseStream: false;
|
|
485
|
+
readonly options: {};
|
|
486
|
+
};
|
|
487
|
+
/**
|
|
488
|
+
* Cron: hourly. PENDING + expired interview sessions -> EXPIRED.
|
|
489
|
+
* authz: scheduler/internal only (NONE in source)
|
|
490
|
+
*/
|
|
491
|
+
readonly expireInterviews: {
|
|
492
|
+
readonly name: "ExpireInterviews";
|
|
493
|
+
readonly requestType: typeof ExpireInterviewsRequest;
|
|
494
|
+
readonly requestStream: false;
|
|
495
|
+
readonly responseType: typeof ExpireInterviewsResponse;
|
|
496
|
+
readonly responseStream: false;
|
|
497
|
+
readonly options: {};
|
|
498
|
+
};
|
|
499
|
+
};
|
|
500
|
+
};
|
|
501
|
+
export interface InterviewsServiceImplementation<CallContextExt = {}> {
|
|
502
|
+
/** authz: authorizeUserBySession */
|
|
503
|
+
setSessionFeedback(request: SetSessionFeedbackRequest, context: CallContext & CallContextExt): Promise<DeepPartial<SetSessionFeedbackResponse>>;
|
|
504
|
+
/** authz: authorizeUserBySession */
|
|
505
|
+
setSessionResult(request: SetSessionResultRequest, context: CallContext & CallContextExt): Promise<DeepPartial<SetSessionResultResponse>>;
|
|
506
|
+
/** authz: PUBLIC (interviewee) — verified by email + passcode credentials */
|
|
507
|
+
getInterviewRoomToken(request: GetInterviewRoomTokenRequest, context: CallContext & CallContextExt): Promise<DeepPartial<GetInterviewRoomTokenResponse>>;
|
|
508
|
+
/** authz: authorizeUserBySession */
|
|
509
|
+
resummarizeSession(request: ResummarizeSessionRequest, context: CallContext & CallContextExt): Promise<DeepPartial<ResummarizeSessionResponse>>;
|
|
510
|
+
/** authz: authorizeUserBySession */
|
|
511
|
+
reevaluateSession(request: ReevaluateSessionRequest, context: CallContext & CallContextExt): Promise<DeepPartial<ReevaluateSessionResponse>>;
|
|
512
|
+
/** authz: NONE in source (session must exist) — see README security note */
|
|
513
|
+
endInterview(request: EndInterviewRequest, context: CallContext & CallContextExt): Promise<DeepPartial<EndInterviewResponse>>;
|
|
514
|
+
/** authz: authorizeUserBySession */
|
|
515
|
+
restartInterview(request: RestartInterviewRequest, context: CallContext & CallContextExt): Promise<DeepPartial<RestartInterviewResponse>>;
|
|
516
|
+
/** authz: authorizeUserByProject(projectId) */
|
|
517
|
+
inviteCandidatesForInterview(request: InviteCandidatesForInterviewRequest, context: CallContext & CallContextExt): Promise<DeepPartial<InviteCandidatesForInterviewResponse>>;
|
|
518
|
+
/** authz: super-admin */
|
|
519
|
+
processInterviewTranscript(request: ProcessInterviewTranscriptRequest, context: CallContext & CallContextExt): Promise<DeepPartial<ProcessInterviewTranscriptResponse>>;
|
|
520
|
+
/** authz: scoped to caller's current organization */
|
|
521
|
+
getSessions(request: GetSessionsRequest, context: CallContext & CallContextExt): Promise<DeepPartial<GetSessionsResponse>>;
|
|
522
|
+
/** authz: NONE in source — see README security note */
|
|
523
|
+
getInterview(request: GetInterviewRequest, context: CallContext & CallContextExt): Promise<DeepPartial<GetInterviewResponse>>;
|
|
524
|
+
/** authz: NONE in source — see README security note */
|
|
525
|
+
getSession(request: GetSessionRequest, context: CallContext & CallContextExt): Promise<DeepPartial<GetSessionResponse>>;
|
|
526
|
+
/** authz: NONE in source — see README security note */
|
|
527
|
+
getInterviewBySession(request: GetInterviewBySessionRequest, context: CallContext & CallContextExt): Promise<DeepPartial<GetInterviewBySessionResponse>>;
|
|
528
|
+
/** authz: authorizeUserByOrganization */
|
|
529
|
+
getInterviewsQuota(request: GetInterviewsQuotaRequest, context: CallContext & CallContextExt): Promise<DeepPartial<GetInterviewsQuotaResponse>>;
|
|
530
|
+
/** authz: authorizeUserBySession */
|
|
531
|
+
getInterviewRecordingUrl(request: GetInterviewRecordingUrlRequest, context: CallContext & CallContextExt): Promise<DeepPartial<GetInterviewRecordingUrlResponse>>;
|
|
532
|
+
/** authz: NONE in source (global count) — see README security note */
|
|
533
|
+
getActiveInterviewsCount(request: GetActiveInterviewsCountRequest, context: CallContext & CallContextExt): Promise<DeepPartial<GetActiveInterviewsCountResponse>>;
|
|
534
|
+
/**
|
|
535
|
+
* Cron: hourly. PENDING + expired interview sessions -> EXPIRED.
|
|
536
|
+
* authz: scheduler/internal only (NONE in source)
|
|
537
|
+
*/
|
|
538
|
+
expireInterviews(request: ExpireInterviewsRequest, context: CallContext & CallContextExt): Promise<DeepPartial<ExpireInterviewsResponse>>;
|
|
539
|
+
}
|
|
540
|
+
export interface InterviewsServiceClient<CallOptionsExt = {}> {
|
|
541
|
+
/** authz: authorizeUserBySession */
|
|
542
|
+
setSessionFeedback(request: DeepPartial<SetSessionFeedbackRequest>, options?: CallOptions & CallOptionsExt): Promise<SetSessionFeedbackResponse>;
|
|
543
|
+
/** authz: authorizeUserBySession */
|
|
544
|
+
setSessionResult(request: DeepPartial<SetSessionResultRequest>, options?: CallOptions & CallOptionsExt): Promise<SetSessionResultResponse>;
|
|
545
|
+
/** authz: PUBLIC (interviewee) — verified by email + passcode credentials */
|
|
546
|
+
getInterviewRoomToken(request: DeepPartial<GetInterviewRoomTokenRequest>, options?: CallOptions & CallOptionsExt): Promise<GetInterviewRoomTokenResponse>;
|
|
547
|
+
/** authz: authorizeUserBySession */
|
|
548
|
+
resummarizeSession(request: DeepPartial<ResummarizeSessionRequest>, options?: CallOptions & CallOptionsExt): Promise<ResummarizeSessionResponse>;
|
|
549
|
+
/** authz: authorizeUserBySession */
|
|
550
|
+
reevaluateSession(request: DeepPartial<ReevaluateSessionRequest>, options?: CallOptions & CallOptionsExt): Promise<ReevaluateSessionResponse>;
|
|
551
|
+
/** authz: NONE in source (session must exist) — see README security note */
|
|
552
|
+
endInterview(request: DeepPartial<EndInterviewRequest>, options?: CallOptions & CallOptionsExt): Promise<EndInterviewResponse>;
|
|
553
|
+
/** authz: authorizeUserBySession */
|
|
554
|
+
restartInterview(request: DeepPartial<RestartInterviewRequest>, options?: CallOptions & CallOptionsExt): Promise<RestartInterviewResponse>;
|
|
555
|
+
/** authz: authorizeUserByProject(projectId) */
|
|
556
|
+
inviteCandidatesForInterview(request: DeepPartial<InviteCandidatesForInterviewRequest>, options?: CallOptions & CallOptionsExt): Promise<InviteCandidatesForInterviewResponse>;
|
|
557
|
+
/** authz: super-admin */
|
|
558
|
+
processInterviewTranscript(request: DeepPartial<ProcessInterviewTranscriptRequest>, options?: CallOptions & CallOptionsExt): Promise<ProcessInterviewTranscriptResponse>;
|
|
559
|
+
/** authz: scoped to caller's current organization */
|
|
560
|
+
getSessions(request: DeepPartial<GetSessionsRequest>, options?: CallOptions & CallOptionsExt): Promise<GetSessionsResponse>;
|
|
561
|
+
/** authz: NONE in source — see README security note */
|
|
562
|
+
getInterview(request: DeepPartial<GetInterviewRequest>, options?: CallOptions & CallOptionsExt): Promise<GetInterviewResponse>;
|
|
563
|
+
/** authz: NONE in source — see README security note */
|
|
564
|
+
getSession(request: DeepPartial<GetSessionRequest>, options?: CallOptions & CallOptionsExt): Promise<GetSessionResponse>;
|
|
565
|
+
/** authz: NONE in source — see README security note */
|
|
566
|
+
getInterviewBySession(request: DeepPartial<GetInterviewBySessionRequest>, options?: CallOptions & CallOptionsExt): Promise<GetInterviewBySessionResponse>;
|
|
567
|
+
/** authz: authorizeUserByOrganization */
|
|
568
|
+
getInterviewsQuota(request: DeepPartial<GetInterviewsQuotaRequest>, options?: CallOptions & CallOptionsExt): Promise<GetInterviewsQuotaResponse>;
|
|
569
|
+
/** authz: authorizeUserBySession */
|
|
570
|
+
getInterviewRecordingUrl(request: DeepPartial<GetInterviewRecordingUrlRequest>, options?: CallOptions & CallOptionsExt): Promise<GetInterviewRecordingUrlResponse>;
|
|
571
|
+
/** authz: NONE in source (global count) — see README security note */
|
|
572
|
+
getActiveInterviewsCount(request: DeepPartial<GetActiveInterviewsCountRequest>, options?: CallOptions & CallOptionsExt): Promise<GetActiveInterviewsCountResponse>;
|
|
573
|
+
/**
|
|
574
|
+
* Cron: hourly. PENDING + expired interview sessions -> EXPIRED.
|
|
575
|
+
* authz: scheduler/internal only (NONE in source)
|
|
576
|
+
*/
|
|
577
|
+
expireInterviews(request: DeepPartial<ExpireInterviewsRequest>, options?: CallOptions & CallOptionsExt): Promise<ExpireInterviewsResponse>;
|
|
578
|
+
}
|
|
579
|
+
type Builtin = Date | Function | Uint8Array | string | number | boolean | undefined;
|
|
580
|
+
type DeepPartial<T> = T extends Builtin ? T : T extends globalThis.Array<infer U> ? globalThis.Array<DeepPartial<U>> : T extends ReadonlyArray<infer U> ? ReadonlyArray<DeepPartial<U>> : T extends {} ? {
|
|
581
|
+
[K in keyof T]?: DeepPartial<T[K]>;
|
|
582
|
+
} : Partial<T>;
|
|
583
|
+
type KeysOfUnion<T> = T extends T ? keyof T : never;
|
|
584
|
+
type Exact<P, I extends P> = P extends Builtin ? P : P & {
|
|
585
|
+
[K in keyof P]: Exact<P[K], I[K]>;
|
|
586
|
+
} & {
|
|
587
|
+
[K in Exclude<keyof I, KeysOfUnion<P>>]: never;
|
|
588
|
+
};
|
|
589
|
+
interface MessageFns<T> {
|
|
590
|
+
encode(message: T, writer?: BinaryWriter): BinaryWriter;
|
|
591
|
+
decode(input: BinaryReader | Uint8Array, length?: number): T;
|
|
592
|
+
fromJSON(object: any): T;
|
|
593
|
+
toJSON(message: T): unknown;
|
|
594
|
+
create<I extends Exact<DeepPartial<T>, I>>(base?: I): T;
|
|
595
|
+
fromPartial<I extends Exact<DeepPartial<T>, I>>(object: I): T;
|
|
596
|
+
}
|
|
597
|
+
export {};
|
|
598
|
+
//# sourceMappingURL=interviews.d.ts.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"interviews.d.ts","sourceRoot":"","sources":["../../../../src/gen/interviews/v1/interviews.ts"],"names":[],"mappings":"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"}
|