@raconte/node-sdk 0.1.0 → 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.
|
@@ -19,9 +19,9 @@ type ObjectSeparatorStyle = ObjectStyle | MatrixStyle;
|
|
|
19
19
|
interface SerializePrimitiveParam extends SerializePrimitiveOptions {
|
|
20
20
|
value: string;
|
|
21
21
|
}
|
|
22
|
-
export declare const separatorArrayExplode: (style: ArraySeparatorStyle) => "
|
|
22
|
+
export declare const separatorArrayExplode: (style: ArraySeparatorStyle) => "&" | "." | ";" | ",";
|
|
23
23
|
export declare const separatorArrayNoExplode: (style: ArraySeparatorStyle) => "," | "|" | "%20";
|
|
24
|
-
export declare const separatorObjectExplode: (style: ObjectSeparatorStyle) => "
|
|
24
|
+
export declare const separatorObjectExplode: (style: ObjectSeparatorStyle) => "&" | "." | ";" | ",";
|
|
25
25
|
export declare const serializeArrayParam: ({ allowReserved, explode, name, style, value, }: SerializeOptions<ArraySeparatorStyle> & {
|
|
26
26
|
value: unknown[];
|
|
27
27
|
}) => string;
|
|
@@ -55,9 +55,9 @@ export type InterviewLogSchema = {
|
|
|
55
55
|
/**
|
|
56
56
|
* InterviewLogType
|
|
57
57
|
*
|
|
58
|
-
* Type of an interview log event. archived/restored are interview-level transitions (no invitationId); the others are invitation-scoped.
|
|
58
|
+
* Type of an interview log event. archived/restored are interview-level transitions (no invitationId); the others are invitation-scoped. auto_completed is logged when the stale sweep finalizes an abandoned interview after 3h of inactivity; resume_reminder_sent when the invitee is reminded to finish a stalled interview.
|
|
59
59
|
*/
|
|
60
|
-
type: "email_sent" | "sms_sent" | "started" | "completed" | "cancelled" | "reactivated" | "archived" | "restored";
|
|
60
|
+
type: "email_sent" | "sms_sent" | "started" | "completed" | "auto_completed" | "resume_reminder_sent" | "cancelled" | "reactivated" | "archived" | "restored";
|
|
61
61
|
target: string | null;
|
|
62
62
|
invitationId: string | null;
|
|
63
63
|
createdAt: string;
|
|
@@ -65,7 +65,7 @@ export type InterviewLogSchema = {
|
|
|
65
65
|
/**
|
|
66
66
|
* InterviewInvitationSchema
|
|
67
67
|
*
|
|
68
|
-
* Full interview invitation payload including transcript messages. summary and per-message sentiments are populated asynchronously once the invitation reaches the completed state.
|
|
68
|
+
* Full interview invitation payload including transcript messages. summary and per-message sentiments are populated asynchronously once the invitation reaches the completed state. autoCompletedAt is set when the interview was finalized automatically after 3h of inactivity (rather than ended by the invitee), meaning the transcript may be incomplete; it can be reopened via the reactivate endpoint.
|
|
69
69
|
*/
|
|
70
70
|
export type InterviewInvitationSchema = {
|
|
71
71
|
id: string;
|
|
@@ -77,6 +77,7 @@ export type InterviewInvitationSchema = {
|
|
|
77
77
|
recipientPhone: string | null;
|
|
78
78
|
summary: string | null;
|
|
79
79
|
archivedAt: string | null;
|
|
80
|
+
autoCompletedAt: string | null;
|
|
80
81
|
createdAt: string;
|
|
81
82
|
updatedAt: string;
|
|
82
83
|
messages?: Array<InterviewMessageSchema>;
|
|
@@ -434,7 +435,7 @@ export type InterviewInvitationsControllerCreateData = {
|
|
|
434
435
|
/**
|
|
435
436
|
* CreateInterviewInvitationSchema
|
|
436
437
|
*
|
|
437
|
-
* Optional invitee details for a new invitation. Every field is optional: with an empty body you get a blank, ready-to-share invitation whose link is `<app>/
|
|
438
|
+
* Optional invitee details for a new invitation. Every field is optional: with an empty body you get a blank, ready-to-share invitation whose link is `<app>/i/{slug}` (the `slug` is returned in the response). Providing name, email or phone only pre-fills the invitation, it is not sent here: deliver it with the send endpoint, or just share the link.
|
|
438
439
|
*/
|
|
439
440
|
body: {
|
|
440
441
|
name?: string;
|
|
@@ -452,7 +453,7 @@ export type InterviewInvitationsControllerCreateData = {
|
|
|
452
453
|
};
|
|
453
454
|
export type InterviewInvitationsControllerCreateResponses = {
|
|
454
455
|
/**
|
|
455
|
-
* Full interview invitation payload including transcript messages. summary and per-message sentiments are populated asynchronously once the invitation reaches the completed state.
|
|
456
|
+
* Full interview invitation payload including transcript messages. summary and per-message sentiments are populated asynchronously once the invitation reaches the completed state. autoCompletedAt is set when the interview was finalized automatically after 3h of inactivity (rather than ended by the invitee), meaning the transcript may be incomplete; it can be reopened via the reactivate endpoint.
|
|
456
457
|
*/
|
|
457
458
|
200: InterviewInvitationSchema;
|
|
458
459
|
};
|
|
@@ -499,7 +500,7 @@ export type InterviewInvitationsControllerGetOneData = {
|
|
|
499
500
|
};
|
|
500
501
|
export type InterviewInvitationsControllerGetOneResponses = {
|
|
501
502
|
/**
|
|
502
|
-
* Full interview invitation payload including transcript messages. summary and per-message sentiments are populated asynchronously once the invitation reaches the completed state.
|
|
503
|
+
* Full interview invitation payload including transcript messages. summary and per-message sentiments are populated asynchronously once the invitation reaches the completed state. autoCompletedAt is set when the interview was finalized automatically after 3h of inactivity (rather than ended by the invitee), meaning the transcript may be incomplete; it can be reopened via the reactivate endpoint.
|
|
503
504
|
*/
|
|
504
505
|
200: InterviewInvitationSchema;
|
|
505
506
|
};
|
|
@@ -524,7 +525,7 @@ export type InterviewInvitationsControllerUpdateData = {
|
|
|
524
525
|
};
|
|
525
526
|
export type InterviewInvitationsControllerUpdateResponses = {
|
|
526
527
|
/**
|
|
527
|
-
* Full interview invitation payload including transcript messages. summary and per-message sentiments are populated asynchronously once the invitation reaches the completed state.
|
|
528
|
+
* Full interview invitation payload including transcript messages. summary and per-message sentiments are populated asynchronously once the invitation reaches the completed state. autoCompletedAt is set when the interview was finalized automatically after 3h of inactivity (rather than ended by the invitee), meaning the transcript may be incomplete; it can be reopened via the reactivate endpoint.
|
|
528
529
|
*/
|
|
529
530
|
200: InterviewInvitationSchema;
|
|
530
531
|
};
|
|
@@ -550,7 +551,7 @@ export type InterviewInvitationsControllerSendData = {
|
|
|
550
551
|
};
|
|
551
552
|
export type InterviewInvitationsControllerSendResponses = {
|
|
552
553
|
/**
|
|
553
|
-
* Full interview invitation payload including transcript messages. summary and per-message sentiments are populated asynchronously once the invitation reaches the completed state.
|
|
554
|
+
* Full interview invitation payload including transcript messages. summary and per-message sentiments are populated asynchronously once the invitation reaches the completed state. autoCompletedAt is set when the interview was finalized automatically after 3h of inactivity (rather than ended by the invitee), meaning the transcript may be incomplete; it can be reopened via the reactivate endpoint.
|
|
554
555
|
*/
|
|
555
556
|
200: InterviewInvitationSchema;
|
|
556
557
|
};
|
|
@@ -568,7 +569,7 @@ export type InterviewInvitationsControllerCancelData = {
|
|
|
568
569
|
};
|
|
569
570
|
export type InterviewInvitationsControllerCancelResponses = {
|
|
570
571
|
/**
|
|
571
|
-
* Full interview invitation payload including transcript messages. summary and per-message sentiments are populated asynchronously once the invitation reaches the completed state.
|
|
572
|
+
* Full interview invitation payload including transcript messages. summary and per-message sentiments are populated asynchronously once the invitation reaches the completed state. autoCompletedAt is set when the interview was finalized automatically after 3h of inactivity (rather than ended by the invitee), meaning the transcript may be incomplete; it can be reopened via the reactivate endpoint.
|
|
572
573
|
*/
|
|
573
574
|
200: InterviewInvitationSchema;
|
|
574
575
|
};
|
|
@@ -586,7 +587,7 @@ export type InterviewInvitationsControllerReactivateData = {
|
|
|
586
587
|
};
|
|
587
588
|
export type InterviewInvitationsControllerReactivateResponses = {
|
|
588
589
|
/**
|
|
589
|
-
* Full interview invitation payload including transcript messages. summary and per-message sentiments are populated asynchronously once the invitation reaches the completed state.
|
|
590
|
+
* Full interview invitation payload including transcript messages. summary and per-message sentiments are populated asynchronously once the invitation reaches the completed state. autoCompletedAt is set when the interview was finalized automatically after 3h of inactivity (rather than ended by the invitee), meaning the transcript may be incomplete; it can be reopened via the reactivate endpoint.
|
|
590
591
|
*/
|
|
591
592
|
200: InterviewInvitationSchema;
|
|
592
593
|
};
|
|
@@ -604,7 +605,7 @@ export type InterviewInvitationsControllerArchiveData = {
|
|
|
604
605
|
};
|
|
605
606
|
export type InterviewInvitationsControllerArchiveResponses = {
|
|
606
607
|
/**
|
|
607
|
-
* Full interview invitation payload including transcript messages. summary and per-message sentiments are populated asynchronously once the invitation reaches the completed state.
|
|
608
|
+
* Full interview invitation payload including transcript messages. summary and per-message sentiments are populated asynchronously once the invitation reaches the completed state. autoCompletedAt is set when the interview was finalized automatically after 3h of inactivity (rather than ended by the invitee), meaning the transcript may be incomplete; it can be reopened via the reactivate endpoint.
|
|
608
609
|
*/
|
|
609
610
|
200: InterviewInvitationSchema;
|
|
610
611
|
};
|
|
@@ -622,7 +623,7 @@ export type InterviewInvitationsControllerRestoreData = {
|
|
|
622
623
|
};
|
|
623
624
|
export type InterviewInvitationsControllerRestoreResponses = {
|
|
624
625
|
/**
|
|
625
|
-
* Full interview invitation payload including transcript messages. summary and per-message sentiments are populated asynchronously once the invitation reaches the completed state.
|
|
626
|
+
* Full interview invitation payload including transcript messages. summary and per-message sentiments are populated asynchronously once the invitation reaches the completed state. autoCompletedAt is set when the interview was finalized automatically after 3h of inactivity (rather than ended by the invitee), meaning the transcript may be incomplete; it can be reopened via the reactivate endpoint.
|
|
626
627
|
*/
|
|
627
628
|
200: InterviewInvitationSchema;
|
|
628
629
|
};
|
|
@@ -63,13 +63,15 @@ export declare const zInterviewMessageAudioUrlSchema: z.ZodObject<{
|
|
|
63
63
|
export declare const zInterviewLogSchema: z.ZodObject<{
|
|
64
64
|
id: z.ZodUUID;
|
|
65
65
|
type: z.ZodEnum<{
|
|
66
|
+
completed: "completed";
|
|
67
|
+
cancelled: "cancelled";
|
|
68
|
+
archived: "archived";
|
|
66
69
|
email_sent: "email_sent";
|
|
67
70
|
sms_sent: "sms_sent";
|
|
68
71
|
started: "started";
|
|
69
|
-
|
|
70
|
-
|
|
72
|
+
auto_completed: "auto_completed";
|
|
73
|
+
resume_reminder_sent: "resume_reminder_sent";
|
|
71
74
|
reactivated: "reactivated";
|
|
72
|
-
archived: "archived";
|
|
73
75
|
restored: "restored";
|
|
74
76
|
}>;
|
|
75
77
|
target: z.ZodUnion<readonly [z.ZodString, z.ZodNull]>;
|
|
@@ -84,13 +86,15 @@ export declare const zInterviewLogSchema: z.ZodObject<{
|
|
|
84
86
|
export declare const zInterviewLogListSchema: z.ZodArray<z.ZodObject<{
|
|
85
87
|
id: z.ZodUUID;
|
|
86
88
|
type: z.ZodEnum<{
|
|
89
|
+
completed: "completed";
|
|
90
|
+
cancelled: "cancelled";
|
|
91
|
+
archived: "archived";
|
|
87
92
|
email_sent: "email_sent";
|
|
88
93
|
sms_sent: "sms_sent";
|
|
89
94
|
started: "started";
|
|
90
|
-
|
|
91
|
-
|
|
95
|
+
auto_completed: "auto_completed";
|
|
96
|
+
resume_reminder_sent: "resume_reminder_sent";
|
|
92
97
|
reactivated: "reactivated";
|
|
93
|
-
archived: "archived";
|
|
94
98
|
restored: "restored";
|
|
95
99
|
}>;
|
|
96
100
|
target: z.ZodUnion<readonly [z.ZodString, z.ZodNull]>;
|
|
@@ -126,31 +130,32 @@ export declare const zInterviewMessageSchema: z.ZodObject<{
|
|
|
126
130
|
* Lifecycle state of an invitation (the unit that gets sent and produces a transcript).
|
|
127
131
|
*/
|
|
128
132
|
export declare const zInterviewInvitationStatus: z.ZodEnum<{
|
|
129
|
-
completed: "completed";
|
|
130
|
-
cancelled: "cancelled";
|
|
131
133
|
ready: "ready";
|
|
132
134
|
in_progress: "in_progress";
|
|
135
|
+
completed: "completed";
|
|
136
|
+
cancelled: "cancelled";
|
|
133
137
|
}>;
|
|
134
138
|
/**
|
|
135
139
|
* InterviewInvitationSchema
|
|
136
140
|
*
|
|
137
|
-
* Full interview invitation payload including transcript messages. summary and per-message sentiments are populated asynchronously once the invitation reaches the completed state.
|
|
141
|
+
* Full interview invitation payload including transcript messages. summary and per-message sentiments are populated asynchronously once the invitation reaches the completed state. autoCompletedAt is set when the interview was finalized automatically after 3h of inactivity (rather than ended by the invitee), meaning the transcript may be incomplete; it can be reopened via the reactivate endpoint.
|
|
138
142
|
*/
|
|
139
143
|
export declare const zInterviewInvitationSchema: z.ZodObject<{
|
|
140
144
|
id: z.ZodUUID;
|
|
141
145
|
interviewId: z.ZodUUID;
|
|
142
146
|
slug: z.ZodString;
|
|
143
147
|
status: z.ZodEnum<{
|
|
144
|
-
completed: "completed";
|
|
145
|
-
cancelled: "cancelled";
|
|
146
148
|
ready: "ready";
|
|
147
149
|
in_progress: "in_progress";
|
|
150
|
+
completed: "completed";
|
|
151
|
+
cancelled: "cancelled";
|
|
148
152
|
}>;
|
|
149
153
|
name: z.ZodUnion<readonly [z.ZodString, z.ZodNull]>;
|
|
150
154
|
recipientEmail: z.ZodUnion<readonly [z.ZodString, z.ZodNull]>;
|
|
151
155
|
recipientPhone: z.ZodUnion<readonly [z.ZodString, z.ZodNull]>;
|
|
152
156
|
summary: z.ZodUnion<readonly [z.ZodString, z.ZodNull]>;
|
|
153
157
|
archivedAt: z.ZodUnion<readonly [z.ZodString, z.ZodNull]>;
|
|
158
|
+
autoCompletedAt: z.ZodUnion<readonly [z.ZodString, z.ZodNull]>;
|
|
154
159
|
createdAt: z.ZodString;
|
|
155
160
|
updatedAt: z.ZodString;
|
|
156
161
|
messages: z.ZodOptional<z.ZodArray<z.ZodObject<{
|
|
@@ -182,16 +187,17 @@ export declare const zInterviewInvitationListSchema: z.ZodArray<z.ZodObject<{
|
|
|
182
187
|
interviewId: z.ZodUUID;
|
|
183
188
|
slug: z.ZodString;
|
|
184
189
|
status: z.ZodEnum<{
|
|
185
|
-
completed: "completed";
|
|
186
|
-
cancelled: "cancelled";
|
|
187
190
|
ready: "ready";
|
|
188
191
|
in_progress: "in_progress";
|
|
192
|
+
completed: "completed";
|
|
193
|
+
cancelled: "cancelled";
|
|
189
194
|
}>;
|
|
190
195
|
name: z.ZodUnion<readonly [z.ZodString, z.ZodNull]>;
|
|
191
196
|
recipientEmail: z.ZodUnion<readonly [z.ZodString, z.ZodNull]>;
|
|
192
197
|
recipientPhone: z.ZodUnion<readonly [z.ZodString, z.ZodNull]>;
|
|
193
198
|
summary: z.ZodUnion<readonly [z.ZodString, z.ZodNull]>;
|
|
194
199
|
archivedAt: z.ZodUnion<readonly [z.ZodString, z.ZodNull]>;
|
|
200
|
+
autoCompletedAt: z.ZodUnion<readonly [z.ZodString, z.ZodNull]>;
|
|
195
201
|
createdAt: z.ZodString;
|
|
196
202
|
updatedAt: z.ZodString;
|
|
197
203
|
messages: z.ZodOptional<z.ZodArray<z.ZodObject<{
|
|
@@ -238,10 +244,10 @@ export declare const zInterviewInvitationSummarySchema: z.ZodObject<{
|
|
|
238
244
|
id: z.ZodUUID;
|
|
239
245
|
slug: z.ZodString;
|
|
240
246
|
status: z.ZodEnum<{
|
|
241
|
-
completed: "completed";
|
|
242
|
-
cancelled: "cancelled";
|
|
243
247
|
ready: "ready";
|
|
244
248
|
in_progress: "in_progress";
|
|
249
|
+
completed: "completed";
|
|
250
|
+
cancelled: "cancelled";
|
|
245
251
|
}>;
|
|
246
252
|
name: z.ZodUnion<readonly [z.ZodString, z.ZodNull]>;
|
|
247
253
|
recipientEmail: z.ZodUnion<readonly [z.ZodString, z.ZodNull]>;
|
|
@@ -294,10 +300,10 @@ export declare const zInterviewSchema: z.ZodObject<{
|
|
|
294
300
|
id: z.ZodUUID;
|
|
295
301
|
slug: z.ZodString;
|
|
296
302
|
status: z.ZodEnum<{
|
|
297
|
-
completed: "completed";
|
|
298
|
-
cancelled: "cancelled";
|
|
299
303
|
ready: "ready";
|
|
300
304
|
in_progress: "in_progress";
|
|
305
|
+
completed: "completed";
|
|
306
|
+
cancelled: "cancelled";
|
|
301
307
|
}>;
|
|
302
308
|
name: z.ZodUnion<readonly [z.ZodString, z.ZodNull]>;
|
|
303
309
|
recipientEmail: z.ZodUnion<readonly [z.ZodString, z.ZodNull]>;
|
|
@@ -340,10 +346,10 @@ export declare const zInterviewListSchema: z.ZodArray<z.ZodObject<{
|
|
|
340
346
|
id: z.ZodUUID;
|
|
341
347
|
slug: z.ZodString;
|
|
342
348
|
status: z.ZodEnum<{
|
|
343
|
-
completed: "completed";
|
|
344
|
-
cancelled: "cancelled";
|
|
345
349
|
ready: "ready";
|
|
346
350
|
in_progress: "in_progress";
|
|
351
|
+
completed: "completed";
|
|
352
|
+
cancelled: "cancelled";
|
|
347
353
|
}>;
|
|
348
354
|
name: z.ZodUnion<readonly [z.ZodString, z.ZodNull]>;
|
|
349
355
|
recipientEmail: z.ZodUnion<readonly [z.ZodString, z.ZodNull]>;
|
|
@@ -365,10 +371,10 @@ export declare const zCreatedInterviewSchema: z.ZodObject<{
|
|
|
365
371
|
invitationId: z.ZodUUID;
|
|
366
372
|
slug: z.ZodString;
|
|
367
373
|
status: z.ZodEnum<{
|
|
368
|
-
completed: "completed";
|
|
369
|
-
cancelled: "cancelled";
|
|
370
374
|
ready: "ready";
|
|
371
375
|
in_progress: "in_progress";
|
|
376
|
+
completed: "completed";
|
|
377
|
+
cancelled: "cancelled";
|
|
372
378
|
}>;
|
|
373
379
|
}, z.core.$strip>;
|
|
374
380
|
/**
|
|
@@ -381,10 +387,10 @@ export declare const zCreatedInterviewsResponse: z.ZodArray<z.ZodObject<{
|
|
|
381
387
|
invitationId: z.ZodUUID;
|
|
382
388
|
slug: z.ZodString;
|
|
383
389
|
status: z.ZodEnum<{
|
|
384
|
-
completed: "completed";
|
|
385
|
-
cancelled: "cancelled";
|
|
386
390
|
ready: "ready";
|
|
387
391
|
in_progress: "in_progress";
|
|
392
|
+
completed: "completed";
|
|
393
|
+
cancelled: "cancelled";
|
|
388
394
|
}>;
|
|
389
395
|
}, z.core.$strip>>;
|
|
390
396
|
export declare const zInterviewsControllerListData: z.ZodObject<{
|
|
@@ -423,10 +429,10 @@ export declare const zInterviewsControllerListResponse: z.ZodArray<z.ZodObject<{
|
|
|
423
429
|
id: z.ZodUUID;
|
|
424
430
|
slug: z.ZodString;
|
|
425
431
|
status: z.ZodEnum<{
|
|
426
|
-
completed: "completed";
|
|
427
|
-
cancelled: "cancelled";
|
|
428
432
|
ready: "ready";
|
|
429
433
|
in_progress: "in_progress";
|
|
434
|
+
completed: "completed";
|
|
435
|
+
cancelled: "cancelled";
|
|
430
436
|
}>;
|
|
431
437
|
name: z.ZodUnion<readonly [z.ZodString, z.ZodNull]>;
|
|
432
438
|
recipientEmail: z.ZodUnion<readonly [z.ZodString, z.ZodNull]>;
|
|
@@ -465,10 +471,10 @@ export declare const zInterviewsControllerCreateResponse: z.ZodArray<z.ZodObject
|
|
|
465
471
|
invitationId: z.ZodUUID;
|
|
466
472
|
slug: z.ZodString;
|
|
467
473
|
status: z.ZodEnum<{
|
|
468
|
-
completed: "completed";
|
|
469
|
-
cancelled: "cancelled";
|
|
470
474
|
ready: "ready";
|
|
471
475
|
in_progress: "in_progress";
|
|
476
|
+
completed: "completed";
|
|
477
|
+
cancelled: "cancelled";
|
|
472
478
|
}>;
|
|
473
479
|
}, z.core.$strip>>;
|
|
474
480
|
export declare const zInterviewsControllerGetOneData: z.ZodObject<{
|
|
@@ -507,10 +513,10 @@ export declare const zInterviewsControllerGetOneResponse: z.ZodObject<{
|
|
|
507
513
|
id: z.ZodUUID;
|
|
508
514
|
slug: z.ZodString;
|
|
509
515
|
status: z.ZodEnum<{
|
|
510
|
-
completed: "completed";
|
|
511
|
-
cancelled: "cancelled";
|
|
512
516
|
ready: "ready";
|
|
513
517
|
in_progress: "in_progress";
|
|
518
|
+
completed: "completed";
|
|
519
|
+
cancelled: "cancelled";
|
|
514
520
|
}>;
|
|
515
521
|
name: z.ZodUnion<readonly [z.ZodString, z.ZodNull]>;
|
|
516
522
|
recipientEmail: z.ZodUnion<readonly [z.ZodString, z.ZodNull]>;
|
|
@@ -568,10 +574,10 @@ export declare const zInterviewsControllerUpdateResponse: z.ZodObject<{
|
|
|
568
574
|
id: z.ZodUUID;
|
|
569
575
|
slug: z.ZodString;
|
|
570
576
|
status: z.ZodEnum<{
|
|
571
|
-
completed: "completed";
|
|
572
|
-
cancelled: "cancelled";
|
|
573
577
|
ready: "ready";
|
|
574
578
|
in_progress: "in_progress";
|
|
579
|
+
completed: "completed";
|
|
580
|
+
cancelled: "cancelled";
|
|
575
581
|
}>;
|
|
576
582
|
name: z.ZodUnion<readonly [z.ZodString, z.ZodNull]>;
|
|
577
583
|
recipientEmail: z.ZodUnion<readonly [z.ZodString, z.ZodNull]>;
|
|
@@ -619,10 +625,10 @@ export declare const zInterviewsControllerRegenerateIntroResponse: z.ZodObject<{
|
|
|
619
625
|
id: z.ZodUUID;
|
|
620
626
|
slug: z.ZodString;
|
|
621
627
|
status: z.ZodEnum<{
|
|
622
|
-
completed: "completed";
|
|
623
|
-
cancelled: "cancelled";
|
|
624
628
|
ready: "ready";
|
|
625
629
|
in_progress: "in_progress";
|
|
630
|
+
completed: "completed";
|
|
631
|
+
cancelled: "cancelled";
|
|
626
632
|
}>;
|
|
627
633
|
name: z.ZodUnion<readonly [z.ZodString, z.ZodNull]>;
|
|
628
634
|
recipientEmail: z.ZodUnion<readonly [z.ZodString, z.ZodNull]>;
|
|
@@ -670,10 +676,10 @@ export declare const zInterviewsControllerRegenerateFirstMessageResponse: z.ZodO
|
|
|
670
676
|
id: z.ZodUUID;
|
|
671
677
|
slug: z.ZodString;
|
|
672
678
|
status: z.ZodEnum<{
|
|
673
|
-
completed: "completed";
|
|
674
|
-
cancelled: "cancelled";
|
|
675
679
|
ready: "ready";
|
|
676
680
|
in_progress: "in_progress";
|
|
681
|
+
completed: "completed";
|
|
682
|
+
cancelled: "cancelled";
|
|
677
683
|
}>;
|
|
678
684
|
name: z.ZodUnion<readonly [z.ZodString, z.ZodNull]>;
|
|
679
685
|
recipientEmail: z.ZodUnion<readonly [z.ZodString, z.ZodNull]>;
|
|
@@ -724,13 +730,15 @@ export declare const zInterviewsControllerGetLogsData: z.ZodObject<{
|
|
|
724
730
|
export declare const zInterviewsControllerGetLogsResponse: z.ZodArray<z.ZodObject<{
|
|
725
731
|
id: z.ZodUUID;
|
|
726
732
|
type: z.ZodEnum<{
|
|
733
|
+
completed: "completed";
|
|
734
|
+
cancelled: "cancelled";
|
|
735
|
+
archived: "archived";
|
|
727
736
|
email_sent: "email_sent";
|
|
728
737
|
sms_sent: "sms_sent";
|
|
729
738
|
started: "started";
|
|
730
|
-
|
|
731
|
-
|
|
739
|
+
auto_completed: "auto_completed";
|
|
740
|
+
resume_reminder_sent: "resume_reminder_sent";
|
|
732
741
|
reactivated: "reactivated";
|
|
733
|
-
archived: "archived";
|
|
734
742
|
restored: "restored";
|
|
735
743
|
}>;
|
|
736
744
|
target: z.ZodUnion<readonly [z.ZodString, z.ZodNull]>;
|
|
@@ -752,16 +760,17 @@ export declare const zInterviewInvitationsControllerListResponse: z.ZodArray<z.Z
|
|
|
752
760
|
interviewId: z.ZodUUID;
|
|
753
761
|
slug: z.ZodString;
|
|
754
762
|
status: z.ZodEnum<{
|
|
755
|
-
completed: "completed";
|
|
756
|
-
cancelled: "cancelled";
|
|
757
763
|
ready: "ready";
|
|
758
764
|
in_progress: "in_progress";
|
|
765
|
+
completed: "completed";
|
|
766
|
+
cancelled: "cancelled";
|
|
759
767
|
}>;
|
|
760
768
|
name: z.ZodUnion<readonly [z.ZodString, z.ZodNull]>;
|
|
761
769
|
recipientEmail: z.ZodUnion<readonly [z.ZodString, z.ZodNull]>;
|
|
762
770
|
recipientPhone: z.ZodUnion<readonly [z.ZodString, z.ZodNull]>;
|
|
763
771
|
summary: z.ZodUnion<readonly [z.ZodString, z.ZodNull]>;
|
|
764
772
|
archivedAt: z.ZodUnion<readonly [z.ZodString, z.ZodNull]>;
|
|
773
|
+
autoCompletedAt: z.ZodUnion<readonly [z.ZodString, z.ZodNull]>;
|
|
765
774
|
createdAt: z.ZodString;
|
|
766
775
|
updatedAt: z.ZodString;
|
|
767
776
|
messages: z.ZodOptional<z.ZodArray<z.ZodObject<{
|
|
@@ -795,23 +804,24 @@ export declare const zInterviewInvitationsControllerCreateData: z.ZodObject<{
|
|
|
795
804
|
query: z.ZodOptional<z.ZodNever>;
|
|
796
805
|
}, z.core.$strip>;
|
|
797
806
|
/**
|
|
798
|
-
* Full interview invitation payload including transcript messages. summary and per-message sentiments are populated asynchronously once the invitation reaches the completed state.
|
|
807
|
+
* Full interview invitation payload including transcript messages. summary and per-message sentiments are populated asynchronously once the invitation reaches the completed state. autoCompletedAt is set when the interview was finalized automatically after 3h of inactivity (rather than ended by the invitee), meaning the transcript may be incomplete; it can be reopened via the reactivate endpoint.
|
|
799
808
|
*/
|
|
800
809
|
export declare const zInterviewInvitationsControllerCreateResponse: z.ZodObject<{
|
|
801
810
|
id: z.ZodUUID;
|
|
802
811
|
interviewId: z.ZodUUID;
|
|
803
812
|
slug: z.ZodString;
|
|
804
813
|
status: z.ZodEnum<{
|
|
805
|
-
completed: "completed";
|
|
806
|
-
cancelled: "cancelled";
|
|
807
814
|
ready: "ready";
|
|
808
815
|
in_progress: "in_progress";
|
|
816
|
+
completed: "completed";
|
|
817
|
+
cancelled: "cancelled";
|
|
809
818
|
}>;
|
|
810
819
|
name: z.ZodUnion<readonly [z.ZodString, z.ZodNull]>;
|
|
811
820
|
recipientEmail: z.ZodUnion<readonly [z.ZodString, z.ZodNull]>;
|
|
812
821
|
recipientPhone: z.ZodUnion<readonly [z.ZodString, z.ZodNull]>;
|
|
813
822
|
summary: z.ZodUnion<readonly [z.ZodString, z.ZodNull]>;
|
|
814
823
|
archivedAt: z.ZodUnion<readonly [z.ZodString, z.ZodNull]>;
|
|
824
|
+
autoCompletedAt: z.ZodUnion<readonly [z.ZodString, z.ZodNull]>;
|
|
815
825
|
createdAt: z.ZodString;
|
|
816
826
|
updatedAt: z.ZodString;
|
|
817
827
|
messages: z.ZodOptional<z.ZodArray<z.ZodObject<{
|
|
@@ -854,16 +864,17 @@ export declare const zInterviewInvitationsControllerCreateBulkResponse: z.ZodArr
|
|
|
854
864
|
interviewId: z.ZodUUID;
|
|
855
865
|
slug: z.ZodString;
|
|
856
866
|
status: z.ZodEnum<{
|
|
857
|
-
completed: "completed";
|
|
858
|
-
cancelled: "cancelled";
|
|
859
867
|
ready: "ready";
|
|
860
868
|
in_progress: "in_progress";
|
|
869
|
+
completed: "completed";
|
|
870
|
+
cancelled: "cancelled";
|
|
861
871
|
}>;
|
|
862
872
|
name: z.ZodUnion<readonly [z.ZodString, z.ZodNull]>;
|
|
863
873
|
recipientEmail: z.ZodUnion<readonly [z.ZodString, z.ZodNull]>;
|
|
864
874
|
recipientPhone: z.ZodUnion<readonly [z.ZodString, z.ZodNull]>;
|
|
865
875
|
summary: z.ZodUnion<readonly [z.ZodString, z.ZodNull]>;
|
|
866
876
|
archivedAt: z.ZodUnion<readonly [z.ZodString, z.ZodNull]>;
|
|
877
|
+
autoCompletedAt: z.ZodUnion<readonly [z.ZodString, z.ZodNull]>;
|
|
867
878
|
createdAt: z.ZodString;
|
|
868
879
|
updatedAt: z.ZodString;
|
|
869
880
|
messages: z.ZodOptional<z.ZodArray<z.ZodObject<{
|
|
@@ -893,23 +904,24 @@ export declare const zInterviewInvitationsControllerGetOneData: z.ZodObject<{
|
|
|
893
904
|
query: z.ZodOptional<z.ZodNever>;
|
|
894
905
|
}, z.core.$strip>;
|
|
895
906
|
/**
|
|
896
|
-
* Full interview invitation payload including transcript messages. summary and per-message sentiments are populated asynchronously once the invitation reaches the completed state.
|
|
907
|
+
* Full interview invitation payload including transcript messages. summary and per-message sentiments are populated asynchronously once the invitation reaches the completed state. autoCompletedAt is set when the interview was finalized automatically after 3h of inactivity (rather than ended by the invitee), meaning the transcript may be incomplete; it can be reopened via the reactivate endpoint.
|
|
897
908
|
*/
|
|
898
909
|
export declare const zInterviewInvitationsControllerGetOneResponse: z.ZodObject<{
|
|
899
910
|
id: z.ZodUUID;
|
|
900
911
|
interviewId: z.ZodUUID;
|
|
901
912
|
slug: z.ZodString;
|
|
902
913
|
status: z.ZodEnum<{
|
|
903
|
-
completed: "completed";
|
|
904
|
-
cancelled: "cancelled";
|
|
905
914
|
ready: "ready";
|
|
906
915
|
in_progress: "in_progress";
|
|
916
|
+
completed: "completed";
|
|
917
|
+
cancelled: "cancelled";
|
|
907
918
|
}>;
|
|
908
919
|
name: z.ZodUnion<readonly [z.ZodString, z.ZodNull]>;
|
|
909
920
|
recipientEmail: z.ZodUnion<readonly [z.ZodString, z.ZodNull]>;
|
|
910
921
|
recipientPhone: z.ZodUnion<readonly [z.ZodString, z.ZodNull]>;
|
|
911
922
|
summary: z.ZodUnion<readonly [z.ZodString, z.ZodNull]>;
|
|
912
923
|
archivedAt: z.ZodUnion<readonly [z.ZodString, z.ZodNull]>;
|
|
924
|
+
autoCompletedAt: z.ZodUnion<readonly [z.ZodString, z.ZodNull]>;
|
|
913
925
|
createdAt: z.ZodString;
|
|
914
926
|
updatedAt: z.ZodString;
|
|
915
927
|
messages: z.ZodOptional<z.ZodArray<z.ZodObject<{
|
|
@@ -941,23 +953,24 @@ export declare const zInterviewInvitationsControllerUpdateData: z.ZodObject<{
|
|
|
941
953
|
query: z.ZodOptional<z.ZodNever>;
|
|
942
954
|
}, z.core.$strip>;
|
|
943
955
|
/**
|
|
944
|
-
* Full interview invitation payload including transcript messages. summary and per-message sentiments are populated asynchronously once the invitation reaches the completed state.
|
|
956
|
+
* Full interview invitation payload including transcript messages. summary and per-message sentiments are populated asynchronously once the invitation reaches the completed state. autoCompletedAt is set when the interview was finalized automatically after 3h of inactivity (rather than ended by the invitee), meaning the transcript may be incomplete; it can be reopened via the reactivate endpoint.
|
|
945
957
|
*/
|
|
946
958
|
export declare const zInterviewInvitationsControllerUpdateResponse: z.ZodObject<{
|
|
947
959
|
id: z.ZodUUID;
|
|
948
960
|
interviewId: z.ZodUUID;
|
|
949
961
|
slug: z.ZodString;
|
|
950
962
|
status: z.ZodEnum<{
|
|
951
|
-
completed: "completed";
|
|
952
|
-
cancelled: "cancelled";
|
|
953
963
|
ready: "ready";
|
|
954
964
|
in_progress: "in_progress";
|
|
965
|
+
completed: "completed";
|
|
966
|
+
cancelled: "cancelled";
|
|
955
967
|
}>;
|
|
956
968
|
name: z.ZodUnion<readonly [z.ZodString, z.ZodNull]>;
|
|
957
969
|
recipientEmail: z.ZodUnion<readonly [z.ZodString, z.ZodNull]>;
|
|
958
970
|
recipientPhone: z.ZodUnion<readonly [z.ZodString, z.ZodNull]>;
|
|
959
971
|
summary: z.ZodUnion<readonly [z.ZodString, z.ZodNull]>;
|
|
960
972
|
archivedAt: z.ZodUnion<readonly [z.ZodString, z.ZodNull]>;
|
|
973
|
+
autoCompletedAt: z.ZodUnion<readonly [z.ZodString, z.ZodNull]>;
|
|
961
974
|
createdAt: z.ZodString;
|
|
962
975
|
updatedAt: z.ZodString;
|
|
963
976
|
messages: z.ZodOptional<z.ZodArray<z.ZodObject<{
|
|
@@ -990,23 +1003,24 @@ export declare const zInterviewInvitationsControllerSendData: z.ZodObject<{
|
|
|
990
1003
|
query: z.ZodOptional<z.ZodNever>;
|
|
991
1004
|
}, z.core.$strip>;
|
|
992
1005
|
/**
|
|
993
|
-
* Full interview invitation payload including transcript messages. summary and per-message sentiments are populated asynchronously once the invitation reaches the completed state.
|
|
1006
|
+
* Full interview invitation payload including transcript messages. summary and per-message sentiments are populated asynchronously once the invitation reaches the completed state. autoCompletedAt is set when the interview was finalized automatically after 3h of inactivity (rather than ended by the invitee), meaning the transcript may be incomplete; it can be reopened via the reactivate endpoint.
|
|
994
1007
|
*/
|
|
995
1008
|
export declare const zInterviewInvitationsControllerSendResponse: z.ZodObject<{
|
|
996
1009
|
id: z.ZodUUID;
|
|
997
1010
|
interviewId: z.ZodUUID;
|
|
998
1011
|
slug: z.ZodString;
|
|
999
1012
|
status: z.ZodEnum<{
|
|
1000
|
-
completed: "completed";
|
|
1001
|
-
cancelled: "cancelled";
|
|
1002
1013
|
ready: "ready";
|
|
1003
1014
|
in_progress: "in_progress";
|
|
1015
|
+
completed: "completed";
|
|
1016
|
+
cancelled: "cancelled";
|
|
1004
1017
|
}>;
|
|
1005
1018
|
name: z.ZodUnion<readonly [z.ZodString, z.ZodNull]>;
|
|
1006
1019
|
recipientEmail: z.ZodUnion<readonly [z.ZodString, z.ZodNull]>;
|
|
1007
1020
|
recipientPhone: z.ZodUnion<readonly [z.ZodString, z.ZodNull]>;
|
|
1008
1021
|
summary: z.ZodUnion<readonly [z.ZodString, z.ZodNull]>;
|
|
1009
1022
|
archivedAt: z.ZodUnion<readonly [z.ZodString, z.ZodNull]>;
|
|
1023
|
+
autoCompletedAt: z.ZodUnion<readonly [z.ZodString, z.ZodNull]>;
|
|
1010
1024
|
createdAt: z.ZodString;
|
|
1011
1025
|
updatedAt: z.ZodString;
|
|
1012
1026
|
messages: z.ZodOptional<z.ZodArray<z.ZodObject<{
|
|
@@ -1036,23 +1050,24 @@ export declare const zInterviewInvitationsControllerCancelData: z.ZodObject<{
|
|
|
1036
1050
|
query: z.ZodOptional<z.ZodNever>;
|
|
1037
1051
|
}, z.core.$strip>;
|
|
1038
1052
|
/**
|
|
1039
|
-
* Full interview invitation payload including transcript messages. summary and per-message sentiments are populated asynchronously once the invitation reaches the completed state.
|
|
1053
|
+
* Full interview invitation payload including transcript messages. summary and per-message sentiments are populated asynchronously once the invitation reaches the completed state. autoCompletedAt is set when the interview was finalized automatically after 3h of inactivity (rather than ended by the invitee), meaning the transcript may be incomplete; it can be reopened via the reactivate endpoint.
|
|
1040
1054
|
*/
|
|
1041
1055
|
export declare const zInterviewInvitationsControllerCancelResponse: z.ZodObject<{
|
|
1042
1056
|
id: z.ZodUUID;
|
|
1043
1057
|
interviewId: z.ZodUUID;
|
|
1044
1058
|
slug: z.ZodString;
|
|
1045
1059
|
status: z.ZodEnum<{
|
|
1046
|
-
completed: "completed";
|
|
1047
|
-
cancelled: "cancelled";
|
|
1048
1060
|
ready: "ready";
|
|
1049
1061
|
in_progress: "in_progress";
|
|
1062
|
+
completed: "completed";
|
|
1063
|
+
cancelled: "cancelled";
|
|
1050
1064
|
}>;
|
|
1051
1065
|
name: z.ZodUnion<readonly [z.ZodString, z.ZodNull]>;
|
|
1052
1066
|
recipientEmail: z.ZodUnion<readonly [z.ZodString, z.ZodNull]>;
|
|
1053
1067
|
recipientPhone: z.ZodUnion<readonly [z.ZodString, z.ZodNull]>;
|
|
1054
1068
|
summary: z.ZodUnion<readonly [z.ZodString, z.ZodNull]>;
|
|
1055
1069
|
archivedAt: z.ZodUnion<readonly [z.ZodString, z.ZodNull]>;
|
|
1070
|
+
autoCompletedAt: z.ZodUnion<readonly [z.ZodString, z.ZodNull]>;
|
|
1056
1071
|
createdAt: z.ZodString;
|
|
1057
1072
|
updatedAt: z.ZodString;
|
|
1058
1073
|
messages: z.ZodOptional<z.ZodArray<z.ZodObject<{
|
|
@@ -1082,23 +1097,24 @@ export declare const zInterviewInvitationsControllerReactivateData: z.ZodObject<
|
|
|
1082
1097
|
query: z.ZodOptional<z.ZodNever>;
|
|
1083
1098
|
}, z.core.$strip>;
|
|
1084
1099
|
/**
|
|
1085
|
-
* Full interview invitation payload including transcript messages. summary and per-message sentiments are populated asynchronously once the invitation reaches the completed state.
|
|
1100
|
+
* Full interview invitation payload including transcript messages. summary and per-message sentiments are populated asynchronously once the invitation reaches the completed state. autoCompletedAt is set when the interview was finalized automatically after 3h of inactivity (rather than ended by the invitee), meaning the transcript may be incomplete; it can be reopened via the reactivate endpoint.
|
|
1086
1101
|
*/
|
|
1087
1102
|
export declare const zInterviewInvitationsControllerReactivateResponse: z.ZodObject<{
|
|
1088
1103
|
id: z.ZodUUID;
|
|
1089
1104
|
interviewId: z.ZodUUID;
|
|
1090
1105
|
slug: z.ZodString;
|
|
1091
1106
|
status: z.ZodEnum<{
|
|
1092
|
-
completed: "completed";
|
|
1093
|
-
cancelled: "cancelled";
|
|
1094
1107
|
ready: "ready";
|
|
1095
1108
|
in_progress: "in_progress";
|
|
1109
|
+
completed: "completed";
|
|
1110
|
+
cancelled: "cancelled";
|
|
1096
1111
|
}>;
|
|
1097
1112
|
name: z.ZodUnion<readonly [z.ZodString, z.ZodNull]>;
|
|
1098
1113
|
recipientEmail: z.ZodUnion<readonly [z.ZodString, z.ZodNull]>;
|
|
1099
1114
|
recipientPhone: z.ZodUnion<readonly [z.ZodString, z.ZodNull]>;
|
|
1100
1115
|
summary: z.ZodUnion<readonly [z.ZodString, z.ZodNull]>;
|
|
1101
1116
|
archivedAt: z.ZodUnion<readonly [z.ZodString, z.ZodNull]>;
|
|
1117
|
+
autoCompletedAt: z.ZodUnion<readonly [z.ZodString, z.ZodNull]>;
|
|
1102
1118
|
createdAt: z.ZodString;
|
|
1103
1119
|
updatedAt: z.ZodString;
|
|
1104
1120
|
messages: z.ZodOptional<z.ZodArray<z.ZodObject<{
|
|
@@ -1128,23 +1144,24 @@ export declare const zInterviewInvitationsControllerArchiveData: z.ZodObject<{
|
|
|
1128
1144
|
query: z.ZodOptional<z.ZodNever>;
|
|
1129
1145
|
}, z.core.$strip>;
|
|
1130
1146
|
/**
|
|
1131
|
-
* Full interview invitation payload including transcript messages. summary and per-message sentiments are populated asynchronously once the invitation reaches the completed state.
|
|
1147
|
+
* Full interview invitation payload including transcript messages. summary and per-message sentiments are populated asynchronously once the invitation reaches the completed state. autoCompletedAt is set when the interview was finalized automatically after 3h of inactivity (rather than ended by the invitee), meaning the transcript may be incomplete; it can be reopened via the reactivate endpoint.
|
|
1132
1148
|
*/
|
|
1133
1149
|
export declare const zInterviewInvitationsControllerArchiveResponse: z.ZodObject<{
|
|
1134
1150
|
id: z.ZodUUID;
|
|
1135
1151
|
interviewId: z.ZodUUID;
|
|
1136
1152
|
slug: z.ZodString;
|
|
1137
1153
|
status: z.ZodEnum<{
|
|
1138
|
-
completed: "completed";
|
|
1139
|
-
cancelled: "cancelled";
|
|
1140
1154
|
ready: "ready";
|
|
1141
1155
|
in_progress: "in_progress";
|
|
1156
|
+
completed: "completed";
|
|
1157
|
+
cancelled: "cancelled";
|
|
1142
1158
|
}>;
|
|
1143
1159
|
name: z.ZodUnion<readonly [z.ZodString, z.ZodNull]>;
|
|
1144
1160
|
recipientEmail: z.ZodUnion<readonly [z.ZodString, z.ZodNull]>;
|
|
1145
1161
|
recipientPhone: z.ZodUnion<readonly [z.ZodString, z.ZodNull]>;
|
|
1146
1162
|
summary: z.ZodUnion<readonly [z.ZodString, z.ZodNull]>;
|
|
1147
1163
|
archivedAt: z.ZodUnion<readonly [z.ZodString, z.ZodNull]>;
|
|
1164
|
+
autoCompletedAt: z.ZodUnion<readonly [z.ZodString, z.ZodNull]>;
|
|
1148
1165
|
createdAt: z.ZodString;
|
|
1149
1166
|
updatedAt: z.ZodString;
|
|
1150
1167
|
messages: z.ZodOptional<z.ZodArray<z.ZodObject<{
|
|
@@ -1174,23 +1191,24 @@ export declare const zInterviewInvitationsControllerRestoreData: z.ZodObject<{
|
|
|
1174
1191
|
query: z.ZodOptional<z.ZodNever>;
|
|
1175
1192
|
}, z.core.$strip>;
|
|
1176
1193
|
/**
|
|
1177
|
-
* Full interview invitation payload including transcript messages. summary and per-message sentiments are populated asynchronously once the invitation reaches the completed state.
|
|
1194
|
+
* Full interview invitation payload including transcript messages. summary and per-message sentiments are populated asynchronously once the invitation reaches the completed state. autoCompletedAt is set when the interview was finalized automatically after 3h of inactivity (rather than ended by the invitee), meaning the transcript may be incomplete; it can be reopened via the reactivate endpoint.
|
|
1178
1195
|
*/
|
|
1179
1196
|
export declare const zInterviewInvitationsControllerRestoreResponse: z.ZodObject<{
|
|
1180
1197
|
id: z.ZodUUID;
|
|
1181
1198
|
interviewId: z.ZodUUID;
|
|
1182
1199
|
slug: z.ZodString;
|
|
1183
1200
|
status: z.ZodEnum<{
|
|
1184
|
-
completed: "completed";
|
|
1185
|
-
cancelled: "cancelled";
|
|
1186
1201
|
ready: "ready";
|
|
1187
1202
|
in_progress: "in_progress";
|
|
1203
|
+
completed: "completed";
|
|
1204
|
+
cancelled: "cancelled";
|
|
1188
1205
|
}>;
|
|
1189
1206
|
name: z.ZodUnion<readonly [z.ZodString, z.ZodNull]>;
|
|
1190
1207
|
recipientEmail: z.ZodUnion<readonly [z.ZodString, z.ZodNull]>;
|
|
1191
1208
|
recipientPhone: z.ZodUnion<readonly [z.ZodString, z.ZodNull]>;
|
|
1192
1209
|
summary: z.ZodUnion<readonly [z.ZodString, z.ZodNull]>;
|
|
1193
1210
|
archivedAt: z.ZodUnion<readonly [z.ZodString, z.ZodNull]>;
|
|
1211
|
+
autoCompletedAt: z.ZodUnion<readonly [z.ZodString, z.ZodNull]>;
|
|
1194
1212
|
createdAt: z.ZodString;
|
|
1195
1213
|
updatedAt: z.ZodString;
|
|
1196
1214
|
messages: z.ZodOptional<z.ZodArray<z.ZodObject<{
|
|
@@ -1225,13 +1243,15 @@ export declare const zInterviewInvitationsControllerGetLogsData: z.ZodObject<{
|
|
|
1225
1243
|
export declare const zInterviewInvitationsControllerGetLogsResponse: z.ZodArray<z.ZodObject<{
|
|
1226
1244
|
id: z.ZodUUID;
|
|
1227
1245
|
type: z.ZodEnum<{
|
|
1246
|
+
completed: "completed";
|
|
1247
|
+
cancelled: "cancelled";
|
|
1248
|
+
archived: "archived";
|
|
1228
1249
|
email_sent: "email_sent";
|
|
1229
1250
|
sms_sent: "sms_sent";
|
|
1230
1251
|
started: "started";
|
|
1231
|
-
|
|
1232
|
-
|
|
1252
|
+
auto_completed: "auto_completed";
|
|
1253
|
+
resume_reminder_sent: "resume_reminder_sent";
|
|
1233
1254
|
reactivated: "reactivated";
|
|
1234
|
-
archived: "archived";
|
|
1235
1255
|
restored: "restored";
|
|
1236
1256
|
}>;
|
|
1237
1257
|
target: z.ZodUnion<readonly [z.ZodString, z.ZodNull]>;
|
|
@@ -54,6 +54,8 @@ export const zInterviewLogSchema = z.object({
|
|
|
54
54
|
"sms_sent",
|
|
55
55
|
"started",
|
|
56
56
|
"completed",
|
|
57
|
+
"auto_completed",
|
|
58
|
+
"resume_reminder_sent",
|
|
57
59
|
"cancelled",
|
|
58
60
|
"reactivated",
|
|
59
61
|
"archived",
|
|
@@ -110,7 +112,7 @@ export const zInterviewInvitationStatus = z.enum([
|
|
|
110
112
|
/**
|
|
111
113
|
* InterviewInvitationSchema
|
|
112
114
|
*
|
|
113
|
-
* Full interview invitation payload including transcript messages. summary and per-message sentiments are populated asynchronously once the invitation reaches the completed state.
|
|
115
|
+
* Full interview invitation payload including transcript messages. summary and per-message sentiments are populated asynchronously once the invitation reaches the completed state. autoCompletedAt is set when the interview was finalized automatically after 3h of inactivity (rather than ended by the invitee), meaning the transcript may be incomplete; it can be reopened via the reactivate endpoint.
|
|
114
116
|
*/
|
|
115
117
|
export const zInterviewInvitationSchema = z.object({
|
|
116
118
|
id: z
|
|
@@ -126,6 +128,7 @@ export const zInterviewInvitationSchema = z.object({
|
|
|
126
128
|
recipientPhone: z.union([z.string(), z.null()]),
|
|
127
129
|
summary: z.union([z.string(), z.null()]),
|
|
128
130
|
archivedAt: z.union([z.string(), z.null()]),
|
|
131
|
+
autoCompletedAt: z.union([z.string(), z.null()]),
|
|
129
132
|
createdAt: z.string(),
|
|
130
133
|
updatedAt: z.string(),
|
|
131
134
|
messages: z.optional(z.array(zInterviewMessageSchema)),
|
|
@@ -410,7 +413,7 @@ export const zInterviewInvitationsControllerCreateData = z.object({
|
|
|
410
413
|
query: z.optional(z.never()),
|
|
411
414
|
});
|
|
412
415
|
/**
|
|
413
|
-
* Full interview invitation payload including transcript messages. summary and per-message sentiments are populated asynchronously once the invitation reaches the completed state.
|
|
416
|
+
* Full interview invitation payload including transcript messages. summary and per-message sentiments are populated asynchronously once the invitation reaches the completed state. autoCompletedAt is set when the interview was finalized automatically after 3h of inactivity (rather than ended by the invitee), meaning the transcript may be incomplete; it can be reopened via the reactivate endpoint.
|
|
414
417
|
*/
|
|
415
418
|
export const zInterviewInvitationsControllerCreateResponse = zInterviewInvitationSchema;
|
|
416
419
|
export const zInterviewInvitationsControllerCreateBulkData = z.object({
|
|
@@ -446,7 +449,7 @@ export const zInterviewInvitationsControllerGetOneData = z.object({
|
|
|
446
449
|
query: z.optional(z.never()),
|
|
447
450
|
});
|
|
448
451
|
/**
|
|
449
|
-
* Full interview invitation payload including transcript messages. summary and per-message sentiments are populated asynchronously once the invitation reaches the completed state.
|
|
452
|
+
* Full interview invitation payload including transcript messages. summary and per-message sentiments are populated asynchronously once the invitation reaches the completed state. autoCompletedAt is set when the interview was finalized automatically after 3h of inactivity (rather than ended by the invitee), meaning the transcript may be incomplete; it can be reopened via the reactivate endpoint.
|
|
450
453
|
*/
|
|
451
454
|
export const zInterviewInvitationsControllerGetOneResponse = zInterviewInvitationSchema;
|
|
452
455
|
export const zInterviewInvitationsControllerUpdateData = z.object({
|
|
@@ -461,7 +464,7 @@ export const zInterviewInvitationsControllerUpdateData = z.object({
|
|
|
461
464
|
query: z.optional(z.never()),
|
|
462
465
|
});
|
|
463
466
|
/**
|
|
464
|
-
* Full interview invitation payload including transcript messages. summary and per-message sentiments are populated asynchronously once the invitation reaches the completed state.
|
|
467
|
+
* Full interview invitation payload including transcript messages. summary and per-message sentiments are populated asynchronously once the invitation reaches the completed state. autoCompletedAt is set when the interview was finalized automatically after 3h of inactivity (rather than ended by the invitee), meaning the transcript may be incomplete; it can be reopened via the reactivate endpoint.
|
|
465
468
|
*/
|
|
466
469
|
export const zInterviewInvitationsControllerUpdateResponse = zInterviewInvitationSchema;
|
|
467
470
|
export const zInterviewInvitationsControllerSendData = z.object({
|
|
@@ -479,7 +482,7 @@ export const zInterviewInvitationsControllerSendData = z.object({
|
|
|
479
482
|
query: z.optional(z.never()),
|
|
480
483
|
});
|
|
481
484
|
/**
|
|
482
|
-
* Full interview invitation payload including transcript messages. summary and per-message sentiments are populated asynchronously once the invitation reaches the completed state.
|
|
485
|
+
* Full interview invitation payload including transcript messages. summary and per-message sentiments are populated asynchronously once the invitation reaches the completed state. autoCompletedAt is set when the interview was finalized automatically after 3h of inactivity (rather than ended by the invitee), meaning the transcript may be incomplete; it can be reopened via the reactivate endpoint.
|
|
483
486
|
*/
|
|
484
487
|
export const zInterviewInvitationsControllerSendResponse = zInterviewInvitationSchema;
|
|
485
488
|
export const zInterviewInvitationsControllerCancelData = z.object({
|
|
@@ -492,7 +495,7 @@ export const zInterviewInvitationsControllerCancelData = z.object({
|
|
|
492
495
|
query: z.optional(z.never()),
|
|
493
496
|
});
|
|
494
497
|
/**
|
|
495
|
-
* Full interview invitation payload including transcript messages. summary and per-message sentiments are populated asynchronously once the invitation reaches the completed state.
|
|
498
|
+
* Full interview invitation payload including transcript messages. summary and per-message sentiments are populated asynchronously once the invitation reaches the completed state. autoCompletedAt is set when the interview was finalized automatically after 3h of inactivity (rather than ended by the invitee), meaning the transcript may be incomplete; it can be reopened via the reactivate endpoint.
|
|
496
499
|
*/
|
|
497
500
|
export const zInterviewInvitationsControllerCancelResponse = zInterviewInvitationSchema;
|
|
498
501
|
export const zInterviewInvitationsControllerReactivateData = z.object({
|
|
@@ -505,7 +508,7 @@ export const zInterviewInvitationsControllerReactivateData = z.object({
|
|
|
505
508
|
query: z.optional(z.never()),
|
|
506
509
|
});
|
|
507
510
|
/**
|
|
508
|
-
* Full interview invitation payload including transcript messages. summary and per-message sentiments are populated asynchronously once the invitation reaches the completed state.
|
|
511
|
+
* Full interview invitation payload including transcript messages. summary and per-message sentiments are populated asynchronously once the invitation reaches the completed state. autoCompletedAt is set when the interview was finalized automatically after 3h of inactivity (rather than ended by the invitee), meaning the transcript may be incomplete; it can be reopened via the reactivate endpoint.
|
|
509
512
|
*/
|
|
510
513
|
export const zInterviewInvitationsControllerReactivateResponse = zInterviewInvitationSchema;
|
|
511
514
|
export const zInterviewInvitationsControllerArchiveData = z.object({
|
|
@@ -518,7 +521,7 @@ export const zInterviewInvitationsControllerArchiveData = z.object({
|
|
|
518
521
|
query: z.optional(z.never()),
|
|
519
522
|
});
|
|
520
523
|
/**
|
|
521
|
-
* Full interview invitation payload including transcript messages. summary and per-message sentiments are populated asynchronously once the invitation reaches the completed state.
|
|
524
|
+
* Full interview invitation payload including transcript messages. summary and per-message sentiments are populated asynchronously once the invitation reaches the completed state. autoCompletedAt is set when the interview was finalized automatically after 3h of inactivity (rather than ended by the invitee), meaning the transcript may be incomplete; it can be reopened via the reactivate endpoint.
|
|
522
525
|
*/
|
|
523
526
|
export const zInterviewInvitationsControllerArchiveResponse = zInterviewInvitationSchema;
|
|
524
527
|
export const zInterviewInvitationsControllerRestoreData = z.object({
|
|
@@ -531,7 +534,7 @@ export const zInterviewInvitationsControllerRestoreData = z.object({
|
|
|
531
534
|
query: z.optional(z.never()),
|
|
532
535
|
});
|
|
533
536
|
/**
|
|
534
|
-
* Full interview invitation payload including transcript messages. summary and per-message sentiments are populated asynchronously once the invitation reaches the completed state.
|
|
537
|
+
* Full interview invitation payload including transcript messages. summary and per-message sentiments are populated asynchronously once the invitation reaches the completed state. autoCompletedAt is set when the interview was finalized automatically after 3h of inactivity (rather than ended by the invitee), meaning the transcript may be incomplete; it can be reopened via the reactivate endpoint.
|
|
535
538
|
*/
|
|
536
539
|
export const zInterviewInvitationsControllerRestoreResponse = zInterviewInvitationSchema;
|
|
537
540
|
export const zInterviewInvitationsControllerGetLogsData = z.object({
|
package/package.json
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@raconte/node-sdk",
|
|
3
3
|
"type": "module",
|
|
4
|
-
"version": "0.1.
|
|
4
|
+
"version": "0.1.2",
|
|
5
5
|
"description": "Typed TypeScript SDK for the public Raconte API (interviews and invitations). Generated from the public OpenAPI spec.",
|
|
6
6
|
"license": "MIT",
|
|
7
7
|
"homepage": "https://raconte.ai",
|