Skip to content

Commit 12a0e11

Browse files
committed
SDK regeneration
1 parent 1731e8a commit 12a0e11

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

42 files changed

+837
-863
lines changed

.mock/definition/empathic-voice/chat.yml

Lines changed: 0 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -214,12 +214,6 @@ channel:
214214
field on a
215215
[UserMessage](/reference/speech-to-speech-evi/chat#receive.UserMessage)
216216
denotes whether the message is "interim" or "final."
217-
voice_id:
218-
type: optional<string>
219-
docs: >-
220-
The name or ID of the voice from the `Voice Library` to be used as the
221-
speaker for this EVI session. This will override the speaker set in the
222-
selected configuration.
223217
api_key:
224218
type: optional<string>
225219
default: ''

.mock/definition/empathic-voice/chatGroups.yml

Lines changed: 0 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,6 @@ service:
77
list-chat-groups:
88
path: /v0/evi/chat_groups
99
method: GET
10-
auth: true
1110
docs: Fetches a paginated list of **Chat Groups**.
1211
pagination:
1312
offset: $request.page_number
@@ -86,7 +85,6 @@ service:
8685
get-chat-group:
8786
path: /v0/evi/chat_groups/{id}
8887
method: GET
89-
auth: true
9088
docs: >-
9189
Fetches a **ChatGroup** by ID, including a paginated list of **Chats**
9290
associated with the **ChatGroup**.
@@ -166,7 +164,6 @@ service:
166164
list-chat-group-events:
167165
path: /v0/evi/chat_groups/{id}/events
168166
method: GET
169-
auth: true
170167
docs: >-
171168
Fetches a paginated list of **Chat** events associated with a **Chat
172169
Group**.
@@ -547,7 +544,6 @@ service:
547544
get-audio:
548545
path: /v0/evi/chat_groups/{id}/audio
549546
method: GET
550-
auth: true
551547
docs: >-
552548
Fetches a paginated list of audio for each **Chat** within the specified
553549
**Chat Group**. For more details, see our guide on audio reconstruction

.mock/definition/empathic-voice/chatWebhooks.yml

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -11,6 +11,9 @@ webhooks:
1111
- payload:
1212
chat_group_id: chat_group_id
1313
chat_id: chat_id
14+
config_id: null
15+
caller_number: null
16+
custom_session_id: null
1417
duration_seconds: 1
1518
end_reason: ACTIVE
1619
end_time: 1
@@ -25,6 +28,9 @@ webhooks:
2528
- payload:
2629
chat_group_id: chat_group_id
2730
chat_id: chat_id
31+
config_id: null
32+
caller_number: null
2833
chat_start_type: new_chat_group
34+
custom_session_id: null
2935
start_time: 1
3036
docs: Sent when an EVI chat is started.

.mock/definition/empathic-voice/chats.yml

Lines changed: 0 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,6 @@ service:
77
list-chats:
88
path: /v0/evi/chats
99
method: GET
10-
auth: true
1110
docs: Fetches a paginated list of **Chats**.
1211
pagination:
1312
offset: $request.page_number
@@ -84,7 +83,6 @@ service:
8483
list-chat-events:
8584
path: /v0/evi/chats/{id}
8685
method: GET
87-
auth: true
8886
docs: Fetches a paginated list of **Chat** events.
8987
pagination:
9088
offset: $request.page_number
@@ -471,7 +469,6 @@ service:
471469
get-audio:
472470
path: /v0/evi/chats/{id}/audio
473471
method: GET
474-
auth: true
475472
docs: >-
476473
Fetches the audio of a previous **Chat**. For more details, see our
477474
guide on audio reconstruction

.mock/definition/empathic-voice/configs.yml

Lines changed: 0 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,6 @@ service:
77
list-configs:
88
path: /v0/evi/configs
99
method: GET
10-
auth: true
1110
docs: >-
1211
Fetches a paginated list of **Configs**.
1312
@@ -124,7 +123,6 @@ service:
124123
create-config:
125124
path: /v0/evi/configs
126125
method: POST
127-
auth: true
128126
docs: >-
129127
Creates a **Config** which can be applied to EVI.
130128
@@ -278,7 +276,6 @@ service:
278276
list-config-versions:
279277
path: /v0/evi/configs/{id}
280278
method: GET
281-
auth: true
282279
docs: >-
283280
Fetches a list of a **Config's** versions.
284281
@@ -395,7 +392,6 @@ service:
395392
create-config-version:
396393
path: /v0/evi/configs/{id}
397394
method: POST
398-
auth: true
399395
docs: >-
400396
Updates a **Config** by creating a new version of the **Config**.
401397
@@ -547,7 +543,6 @@ service:
547543
delete-config:
548544
path: /v0/evi/configs/{id}
549545
method: DELETE
550-
auth: true
551546
docs: >-
552547
Deletes a **Config** and its versions.
553548
@@ -569,7 +564,6 @@ service:
569564
update-config-name:
570565
path: /v0/evi/configs/{id}
571566
method: PATCH
572-
auth: true
573567
docs: >-
574568
Updates the name of a **Config**.
575569
@@ -605,7 +599,6 @@ service:
605599
get-config-version:
606600
path: /v0/evi/configs/{id}/version/{version}
607601
method: GET
608-
auth: true
609602
docs: >-
610603
Fetches a specified version of a **Config**.
611604
@@ -700,7 +693,6 @@ service:
700693
delete-config-version:
701694
path: /v0/evi/configs/{id}/version/{version}
702695
method: DELETE
703-
auth: true
704696
docs: >-
705697
Deletes a specified version of a **Config**.
706698
@@ -738,7 +730,6 @@ service:
738730
update-config-description:
739731
path: /v0/evi/configs/{id}/version/{version}
740732
method: PATCH
741-
auth: true
742733
docs: >-
743734
Updates the description of a **Config**.
744735

.mock/definition/empathic-voice/prompts.yml

Lines changed: 0 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,6 @@ service:
77
list-prompts:
88
path: /v0/evi/prompts
99
method: GET
10-
auth: true
1110
docs: >-
1211
Fetches a paginated list of **Prompts**.
1312
@@ -101,7 +100,6 @@ service:
101100
create-prompt:
102101
path: /v0/evi/prompts
103102
method: POST
104-
auth: true
105103
docs: >-
106104
Creates a **Prompt** that can be added to an [EVI
107105
configuration](/reference/speech-to-speech-evi/configs/create-config).
@@ -175,7 +173,6 @@ service:
175173
list-prompt-versions:
176174
path: /v0/evi/prompts/{id}
177175
method: GET
178-
auth: true
179176
docs: >-
180177
Fetches a list of a **Prompt's** versions.
181178
@@ -253,7 +250,6 @@ service:
253250
create-prompt-version:
254251
path: /v0/evi/prompts/{id}
255252
method: POST
256-
auth: true
257253
docs: >-
258254
Updates a **Prompt** by creating a new version of the **Prompt**.
259255
@@ -330,7 +326,6 @@ service:
330326
delete-prompt:
331327
path: /v0/evi/prompts/{id}
332328
method: DELETE
333-
auth: true
334329
docs: >-
335330
Deletes a **Prompt** and its versions.
336331
@@ -353,7 +348,6 @@ service:
353348
update-prompt-name:
354349
path: /v0/evi/prompts/{id}
355350
method: PATCH
356-
auth: true
357351
docs: >-
358352
Updates the name of a **Prompt**.
359353
@@ -390,7 +384,6 @@ service:
390384
get-prompt-version:
391385
path: /v0/evi/prompts/{id}/version/{version}
392386
method: GET
393-
auth: true
394387
docs: >-
395388
Fetches a specified version of a **Prompt**.
396389
@@ -449,7 +442,6 @@ service:
449442
delete-prompt-version:
450443
path: /v0/evi/prompts/{id}/version/{version}
451444
method: DELETE
452-
auth: true
453445
docs: >-
454446
Deletes a specified version of a **Prompt**.
455447
@@ -488,7 +480,6 @@ service:
488480
update-prompt-description:
489481
path: /v0/evi/prompts/{id}/version/{version}
490482
method: PATCH
491-
auth: true
492483
docs: >-
493484
Updates the description of a **Prompt**.
494485

.mock/definition/empathic-voice/tools.yml

Lines changed: 0 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,6 @@ service:
77
list-tools:
88
path: /v0/evi/tools
99
method: GET
10-
auth: true
1110
docs: >-
1211
Fetches a paginated list of **Tools**.
1312
@@ -110,7 +109,6 @@ service:
110109
create-tool:
111110
path: /v0/evi/tools
112111
method: POST
113-
auth: true
114112
docs: >-
115113
Creates a **Tool** that can be added to an [EVI
116114
configuration](/reference/speech-to-speech-evi/configs/create-config).
@@ -202,7 +200,6 @@ service:
202200
list-tool-versions:
203201
path: /v0/evi/tools/{id}
204202
method: GET
205-
auth: true
206203
docs: >-
207204
Fetches a list of a **Tool's** versions.
208205
@@ -289,7 +286,6 @@ service:
289286
create-tool-version:
290287
path: /v0/evi/tools/{id}
291288
method: POST
292-
auth: true
293289
docs: >-
294290
Updates a **Tool** by creating a new version of the **Tool**.
295291
@@ -382,7 +378,6 @@ service:
382378
delete-tool:
383379
path: /v0/evi/tools/{id}
384380
method: DELETE
385-
auth: true
386381
docs: >-
387382
Deletes a **Tool** and its versions.
388383
@@ -406,7 +401,6 @@ service:
406401
update-tool-name:
407402
path: /v0/evi/tools/{id}
408403
method: PATCH
409-
auth: true
410404
docs: >-
411405
Updates the name of a **Tool**.
412406
@@ -444,7 +438,6 @@ service:
444438
get-tool-version:
445439
path: /v0/evi/tools/{id}/version/{version}
446440
method: GET
447-
auth: true
448441
docs: >-
449442
Fetches a specified version of a **Tool**.
450443
@@ -508,7 +501,6 @@ service:
508501
delete-tool-version:
509502
path: /v0/evi/tools/{id}/version/{version}
510503
method: DELETE
511-
auth: true
512504
docs: >-
513505
Deletes a specified version of a **Tool**.
514506
@@ -547,7 +539,6 @@ service:
547539
update-tool-description:
548540
path: /v0/evi/tools/{id}/version/{version}
549541
method: PATCH
550-
auth: true
551542
docs: >-
552543
Updates the description of a specified **Tool** version.
553544

.mock/definition/expression-measurement/batch/__package__.yml

Lines changed: 2 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,6 @@ service:
55
list-jobs:
66
path: /v0/batch/jobs
77
method: GET
8-
auth: true
98
docs: Sort and filter jobs.
109
source:
1110
openapi: batch-openapi.json
@@ -129,7 +128,6 @@ service:
129128
start-inference-job:
130129
path: /v0/batch/jobs
131130
method: POST
132-
auth: true
133131
docs: Start a new measurement inference job.
134132
source:
135133
openapi: batch-openapi.json
@@ -153,7 +151,6 @@ service:
153151
get-job-details:
154152
path: /v0/batch/jobs/{id}
155153
method: GET
156-
auth: true
157154
docs: Get the request details and state of a given job.
158155
source:
159156
openapi: batch-openapi.json
@@ -213,7 +210,6 @@ service:
213210
get-job-predictions:
214211
path: /v0/batch/jobs/{id}/predictions
215212
method: GET
216-
auth: true
217213
docs: Get the JSON predictions of a completed inference job.
218214
source:
219215
openapi: batch-openapi.json
@@ -354,7 +350,6 @@ service:
354350
get-job-artifacts:
355351
path: /v0/batch/jobs/{id}/artifacts
356352
method: GET
357-
auth: true
358353
docs: Get the artifacts ZIP of a completed inference job.
359354
source:
360355
openapi: batch-openapi.json
@@ -370,7 +365,8 @@ service:
370365
start-inference-job-from-local-file:
371366
path: /v0/batch/jobs
372367
method: POST
373-
auth: true
368+
auth:
369+
- BearerAuth: []
374370
docs: Start a new batch inference job.
375371
source:
376372
openapi: batch-files-openapi.yml

0 commit comments

Comments
 (0)