@devrev/typescript-sdk 1.1.48 → 1.1.49
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.
|
@@ -7258,6 +7258,14 @@ export interface MeetingsCreateRequest {
|
|
|
7258
7258
|
channel: MeetingChannel;
|
|
7259
7259
|
/** Application-defined custom fields. */
|
|
7260
7260
|
custom_fields?: object;
|
|
7261
|
+
/**
|
|
7262
|
+
* Requested custom schemas described abstractly. Every provided schema's
|
|
7263
|
+
* custom field must be specified, otherwise a bad request error is
|
|
7264
|
+
* returned. If a new custom schema specifier is provided, then it will be
|
|
7265
|
+
* added to the work, otherwise if a custom schema is omitted from the
|
|
7266
|
+
* specifier, it remains unmodified.
|
|
7267
|
+
*/
|
|
7268
|
+
custom_schema_spec?: CustomSchemaSpec;
|
|
7261
7269
|
/** The description of the meeting. */
|
|
7262
7270
|
description?: string;
|
|
7263
7271
|
/**
|
|
@@ -7413,6 +7421,14 @@ export interface MeetingsUpdateRequest {
|
|
|
7413
7421
|
channel?: MeetingChannel;
|
|
7414
7422
|
/** Application-defined custom fields. */
|
|
7415
7423
|
custom_fields?: object;
|
|
7424
|
+
/**
|
|
7425
|
+
* Requested custom schemas described abstractly. Every provided schema's
|
|
7426
|
+
* custom field must be specified, otherwise a bad request error is
|
|
7427
|
+
* returned. If a new custom schema specifier is provided, then it will be
|
|
7428
|
+
* added to the work, otherwise if a custom schema is omitted from the
|
|
7429
|
+
* specifier, it remains unmodified.
|
|
7430
|
+
*/
|
|
7431
|
+
custom_schema_spec?: CustomSchemaSpec;
|
|
7416
7432
|
/** The description of the meeting. */
|
|
7417
7433
|
description?: string;
|
|
7418
7434
|
/**
|
|
@@ -7433,6 +7449,11 @@ export interface MeetingsUpdateRequest {
|
|
|
7433
7449
|
* @example "DEVU-12345"
|
|
7434
7450
|
*/
|
|
7435
7451
|
organizer?: string;
|
|
7452
|
+
/**
|
|
7453
|
+
* The ID of the meeting's recording artifact.
|
|
7454
|
+
* @example "ARTIFACT-12345"
|
|
7455
|
+
*/
|
|
7456
|
+
recording?: string | null;
|
|
7436
7457
|
/** The recording URL of the meeting. */
|
|
7437
7458
|
recording_url?: string;
|
|
7438
7459
|
/**
|
|
@@ -7446,6 +7467,11 @@ export interface MeetingsUpdateRequest {
|
|
|
7446
7467
|
tags?: MeetingsUpdateRequestTags;
|
|
7447
7468
|
/** The title of the meeting. */
|
|
7448
7469
|
title?: string;
|
|
7470
|
+
/**
|
|
7471
|
+
* The ID of the artifact for the transcript of the meeting.
|
|
7472
|
+
* @example "ARTIFACT-12345"
|
|
7473
|
+
*/
|
|
7474
|
+
transcript?: string;
|
|
7449
7475
|
}
|
|
7450
7476
|
/** meetings-update-request-members */
|
|
7451
7477
|
export interface MeetingsUpdateRequestMembers {
|