Skip to content

Commit

Permalink
feat(api): OpenAPI spec update via Stainless API (#31)
Browse files Browse the repository at this point in the history
  • Loading branch information
stainless-app[bot] committed Mar 28, 2024
1 parent a3abc2b commit 95c3939
Showing 1 changed file with 6 additions and 10 deletions.
16 changes: 6 additions & 10 deletions src/resources/call.ts
Original file line number Diff line number Diff line change
Expand Up @@ -110,11 +110,6 @@ export interface CallResponse {
*/
sample_rate: number;

/**
* Begin timestamp (milliseconds since epoch) of the call.
*/
start_timestamp: number;

/**
* End to end latency (from user stops talking to agent start talking) tracking of
* the call, available after call ends. This latency does not account for the
Expand Down Expand Up @@ -167,6 +162,12 @@ export interface CallResponse {
*/
retell_llm_dynamic_variables?: Record<string, unknown>;

/**
* Begin timestamp (milliseconds since epoch) of the call. Available after call
* starts.
*/
start_timestamp?: number;

/**
* The callee number. This field is storage purpose only, set this if you want the
* call object to contain it so that it's easier to reference it. Not used for
Expand Down Expand Up @@ -339,11 +340,6 @@ export interface RegisterCallResponse {
*/
sample_rate: number;

/**
* Begin timestamp (milliseconds since epoch) of the call.
*/
start_timestamp: number;

/**
* If users stay silent for a period, end the call. By default, it is set to
* 600,000 ms (10 min). The minimum value allowed is 10,000 ms (10 s).
Expand Down

0 comments on commit 95c3939

Please sign in to comment.