@devrev/typescript-sdk 1.1.48 → 1.1.50
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.
|
@@ -4305,6 +4305,8 @@ export interface DevUsersCreateRequest {
|
|
|
4305
4305
|
email: string;
|
|
4306
4306
|
/** Full name of the Dev user. */
|
|
4307
4307
|
full_name?: string;
|
|
4308
|
+
/** The ID of the user that the user reports to. */
|
|
4309
|
+
reports_to?: string;
|
|
4308
4310
|
state: DevUsersCreateRequestStateEnumValue;
|
|
4309
4311
|
}
|
|
4310
4312
|
export declare enum DevUsersCreateRequestStateEnumValue {
|
|
@@ -7258,6 +7260,14 @@ export interface MeetingsCreateRequest {
|
|
|
7258
7260
|
channel: MeetingChannel;
|
|
7259
7261
|
/** Application-defined custom fields. */
|
|
7260
7262
|
custom_fields?: object;
|
|
7263
|
+
/**
|
|
7264
|
+
* Requested custom schemas described abstractly. Every provided schema's
|
|
7265
|
+
* custom field must be specified, otherwise a bad request error is
|
|
7266
|
+
* returned. If a new custom schema specifier is provided, then it will be
|
|
7267
|
+
* added to the work, otherwise if a custom schema is omitted from the
|
|
7268
|
+
* specifier, it remains unmodified.
|
|
7269
|
+
*/
|
|
7270
|
+
custom_schema_spec?: CustomSchemaSpec;
|
|
7261
7271
|
/** The description of the meeting. */
|
|
7262
7272
|
description?: string;
|
|
7263
7273
|
/**
|
|
@@ -7413,6 +7423,14 @@ export interface MeetingsUpdateRequest {
|
|
|
7413
7423
|
channel?: MeetingChannel;
|
|
7414
7424
|
/** Application-defined custom fields. */
|
|
7415
7425
|
custom_fields?: object;
|
|
7426
|
+
/**
|
|
7427
|
+
* Requested custom schemas described abstractly. Every provided schema's
|
|
7428
|
+
* custom field must be specified, otherwise a bad request error is
|
|
7429
|
+
* returned. If a new custom schema specifier is provided, then it will be
|
|
7430
|
+
* added to the work, otherwise if a custom schema is omitted from the
|
|
7431
|
+
* specifier, it remains unmodified.
|
|
7432
|
+
*/
|
|
7433
|
+
custom_schema_spec?: CustomSchemaSpec;
|
|
7416
7434
|
/** The description of the meeting. */
|
|
7417
7435
|
description?: string;
|
|
7418
7436
|
/**
|
|
@@ -7433,6 +7451,11 @@ export interface MeetingsUpdateRequest {
|
|
|
7433
7451
|
* @example "DEVU-12345"
|
|
7434
7452
|
*/
|
|
7435
7453
|
organizer?: string;
|
|
7454
|
+
/**
|
|
7455
|
+
* The ID of the meeting's recording artifact.
|
|
7456
|
+
* @example "ARTIFACT-12345"
|
|
7457
|
+
*/
|
|
7458
|
+
recording?: string | null;
|
|
7436
7459
|
/** The recording URL of the meeting. */
|
|
7437
7460
|
recording_url?: string;
|
|
7438
7461
|
/**
|
|
@@ -7446,6 +7469,11 @@ export interface MeetingsUpdateRequest {
|
|
|
7446
7469
|
tags?: MeetingsUpdateRequestTags;
|
|
7447
7470
|
/** The title of the meeting. */
|
|
7448
7471
|
title?: string;
|
|
7472
|
+
/**
|
|
7473
|
+
* The ID of the artifact for the transcript of the meeting.
|
|
7474
|
+
* @example "ARTIFACT-12345"
|
|
7475
|
+
*/
|
|
7476
|
+
transcript?: string;
|
|
7449
7477
|
}
|
|
7450
7478
|
/** meetings-update-request-members */
|
|
7451
7479
|
export interface MeetingsUpdateRequestMembers {
|
|
@@ -14557,6 +14585,8 @@ export interface WorksUpdateRequestTicket {
|
|
|
14557
14585
|
group?: string | null;
|
|
14558
14586
|
/** Whether the ticket is archived. */
|
|
14559
14587
|
is_archived?: boolean;
|
|
14588
|
+
/** Whether the ticket is frozen. */
|
|
14589
|
+
is_frozen?: boolean;
|
|
14560
14590
|
/** Updates whether the ticket is spam. */
|
|
14561
14591
|
is_spam?: boolean;
|
|
14562
14592
|
/** Updates whether the ticket needs a response. */
|
|
@@ -5554,6 +5554,8 @@ export interface WorksUpdateRequestTicket {
|
|
|
5554
5554
|
group?: string | null;
|
|
5555
5555
|
/** Whether the ticket is archived. */
|
|
5556
5556
|
is_archived?: boolean;
|
|
5557
|
+
/** Whether the ticket is frozen. */
|
|
5558
|
+
is_frozen?: boolean;
|
|
5557
5559
|
/** Updates whether the ticket is spam. */
|
|
5558
5560
|
is_spam?: boolean;
|
|
5559
5561
|
/** Updates whether the ticket needs a response. */
|