@amigo-ai/platform-sdk 0.50.0 → 0.51.0
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.
- package/README.md +15 -41
- package/api.md +4 -2
- package/assets/readme/platform-architecture.svg +2 -2
- package/dist/index.cjs +22 -23
- package/dist/index.cjs.map +2 -2
- package/dist/index.mjs +22 -23
- package/dist/index.mjs.map +2 -2
- package/dist/resources/prompt-logs.js +2 -2
- package/dist/resources/settings.js +0 -9
- package/dist/resources/settings.js.map +1 -1
- package/dist/resources/workspace-database.js +21 -9
- package/dist/resources/workspace-database.js.map +1 -1
- package/dist/types/generated/api.d.ts +352 -1708
- package/dist/types/generated/api.d.ts.map +1 -1
- package/dist/types/resources/calls.d.ts +3 -3
- package/dist/types/resources/functions.d.ts.map +1 -1
- package/dist/types/resources/intake.d.ts.map +1 -1
- package/dist/types/resources/metrics.d.ts.map +1 -1
- package/dist/types/resources/operators.d.ts.map +1 -1
- package/dist/types/resources/prompt-logs.d.ts +2 -2
- package/dist/types/resources/services.d.ts +5 -5
- package/dist/types/resources/services.d.ts.map +1 -1
- package/dist/types/resources/settings.d.ts +0 -68
- package/dist/types/resources/settings.d.ts.map +1 -1
- package/dist/types/resources/surfaces.d.ts.map +1 -1
- package/dist/types/resources/workspace-database.d.ts +44 -86
- package/dist/types/resources/workspace-database.d.ts.map +1 -1
- package/package.json +1 -1
|
@@ -3027,25 +3027,6 @@ export interface paths {
|
|
|
3027
3027
|
patch?: never;
|
|
3028
3028
|
trace?: never;
|
|
3029
3029
|
};
|
|
3030
|
-
"/v1/{workspace_id}/fork": {
|
|
3031
|
-
parameters: {
|
|
3032
|
-
query?: never;
|
|
3033
|
-
header?: never;
|
|
3034
|
-
path?: never;
|
|
3035
|
-
cookie?: never;
|
|
3036
|
-
};
|
|
3037
|
-
/** Get fork status */
|
|
3038
|
-
get: operations["get-fork"];
|
|
3039
|
-
put?: never;
|
|
3040
|
-
/** Create a Lakebase fork (sandbox) */
|
|
3041
|
-
post: operations["create-fork"];
|
|
3042
|
-
/** Destroy fork */
|
|
3043
|
-
delete: operations["delete-fork"];
|
|
3044
|
-
options?: never;
|
|
3045
|
-
head?: never;
|
|
3046
|
-
patch?: never;
|
|
3047
|
-
trace?: never;
|
|
3048
|
-
};
|
|
3049
3030
|
"/v1/{workspace_id}/functions": {
|
|
3050
3031
|
parameters: {
|
|
3051
3032
|
query?: never;
|
|
@@ -3777,23 +3758,6 @@ export interface paths {
|
|
|
3777
3758
|
patch?: never;
|
|
3778
3759
|
trace?: never;
|
|
3779
3760
|
};
|
|
3780
|
-
"/v1/{workspace_id}/lakebase/query": {
|
|
3781
|
-
parameters: {
|
|
3782
|
-
query?: never;
|
|
3783
|
-
header?: never;
|
|
3784
|
-
path?: never;
|
|
3785
|
-
cookie?: never;
|
|
3786
|
-
};
|
|
3787
|
-
get?: never;
|
|
3788
|
-
put?: never;
|
|
3789
|
-
/** Execute SQL against workspace Lakebase */
|
|
3790
|
-
post: operations["execute-workspace-query"];
|
|
3791
|
-
delete?: never;
|
|
3792
|
-
options?: never;
|
|
3793
|
-
head?: never;
|
|
3794
|
-
patch?: never;
|
|
3795
|
-
trace?: never;
|
|
3796
|
-
};
|
|
3797
3761
|
"/v1/{workspace_id}/m42/anomalies/ranked": {
|
|
3798
3762
|
parameters: {
|
|
3799
3763
|
query?: never;
|
|
@@ -5177,7 +5141,7 @@ export interface paths {
|
|
|
5177
5141
|
* List prompt logs for a workspace
|
|
5178
5142
|
* @description Lists ``prompt_log`` events emitted by agent-engine — full system prompt, conversation history, tool catalog, LLM model, and response — for auditing and debugging. Reads the Delta ``world_events`` ledger via Databricks SQL; typical latency is 1-5s with a 15s ceiling on cold-start.
|
|
5179
5143
|
*
|
|
5180
|
-
* **Conversation filter**: pass ``conversation_id`` (UUID from ``world.entities``) for the canonical mental model — works uniformly across voice, text,
|
|
5144
|
+
* **Conversation filter**: pass ``conversation_id`` (UUID from ``world.entities``) for the canonical mental model — works uniformly across voice, text, and sim modalities. ``call_sid`` is the legacy direct-SID filter (Twilio CA-SID for voice, session_id UUID otherwise) and is mutually exclusive with ``conversation_id``.
|
|
5181
5145
|
*
|
|
5182
5146
|
* **Other filters**: ``prompt_type``, ``state_name``, ``from_ts``, ``to_ts``. When no selectivity-bearing filter (conversation_id / call_sid / time range) is supplied, the query is auto-capped to the last 7 days; the applied window is reported in ``applied_time_window_days``.
|
|
5183
5147
|
*
|
|
@@ -5194,59 +5158,6 @@ export interface paths {
|
|
|
5194
5158
|
patch?: never;
|
|
5195
5159
|
trace?: never;
|
|
5196
5160
|
};
|
|
5197
|
-
"/v1/{workspace_id}/query-tools": {
|
|
5198
|
-
parameters: {
|
|
5199
|
-
query?: never;
|
|
5200
|
-
header?: never;
|
|
5201
|
-
path?: never;
|
|
5202
|
-
cookie?: never;
|
|
5203
|
-
};
|
|
5204
|
-
/** List query tools */
|
|
5205
|
-
get: operations["list-query-tools"];
|
|
5206
|
-
put?: never;
|
|
5207
|
-
/** Create a query tool */
|
|
5208
|
-
post: operations["create-query-tool"];
|
|
5209
|
-
delete?: never;
|
|
5210
|
-
options?: never;
|
|
5211
|
-
head?: never;
|
|
5212
|
-
patch?: never;
|
|
5213
|
-
trace?: never;
|
|
5214
|
-
};
|
|
5215
|
-
"/v1/{workspace_id}/query-tools/{tool_id}": {
|
|
5216
|
-
parameters: {
|
|
5217
|
-
query?: never;
|
|
5218
|
-
header?: never;
|
|
5219
|
-
path?: never;
|
|
5220
|
-
cookie?: never;
|
|
5221
|
-
};
|
|
5222
|
-
get?: never;
|
|
5223
|
-
put?: never;
|
|
5224
|
-
post?: never;
|
|
5225
|
-
/** Delete a query tool */
|
|
5226
|
-
delete: operations["delete-query-tool"];
|
|
5227
|
-
options?: never;
|
|
5228
|
-
head?: never;
|
|
5229
|
-
/** Update a query tool */
|
|
5230
|
-
patch: operations["update-query-tool"];
|
|
5231
|
-
trace?: never;
|
|
5232
|
-
};
|
|
5233
|
-
"/v1/{workspace_id}/query-tools/{tool_id}/test": {
|
|
5234
|
-
parameters: {
|
|
5235
|
-
query?: never;
|
|
5236
|
-
header?: never;
|
|
5237
|
-
path?: never;
|
|
5238
|
-
cookie?: never;
|
|
5239
|
-
};
|
|
5240
|
-
get?: never;
|
|
5241
|
-
put?: never;
|
|
5242
|
-
/** Test a query tool with sample parameters */
|
|
5243
|
-
post: operations["test-query-tool"];
|
|
5244
|
-
delete?: never;
|
|
5245
|
-
options?: never;
|
|
5246
|
-
head?: never;
|
|
5247
|
-
patch?: never;
|
|
5248
|
-
trace?: never;
|
|
5249
|
-
};
|
|
5250
5161
|
"/v1/{workspace_id}/query/{schema}/{table}": {
|
|
5251
5162
|
parameters: {
|
|
5252
5163
|
query?: never;
|
|
@@ -5801,106 +5712,6 @@ export interface paths {
|
|
|
5801
5712
|
patch: operations["update-scheduling-rule-set"];
|
|
5802
5713
|
trace?: never;
|
|
5803
5714
|
};
|
|
5804
|
-
"/v1/{workspace_id}/scribe/encounters/{encounter_id}/finalize": {
|
|
5805
|
-
parameters: {
|
|
5806
|
-
query?: never;
|
|
5807
|
-
header?: never;
|
|
5808
|
-
path?: never;
|
|
5809
|
-
cookie?: never;
|
|
5810
|
-
};
|
|
5811
|
-
get?: never;
|
|
5812
|
-
put?: never;
|
|
5813
|
-
/**
|
|
5814
|
-
* Finalize Encounter
|
|
5815
|
-
* @description Physician finalizes the encounter. Locks the encounter for EHR sync.
|
|
5816
|
-
*/
|
|
5817
|
-
post: operations["finalize-encounter"];
|
|
5818
|
-
delete?: never;
|
|
5819
|
-
options?: never;
|
|
5820
|
-
head?: never;
|
|
5821
|
-
patch?: never;
|
|
5822
|
-
trace?: never;
|
|
5823
|
-
};
|
|
5824
|
-
"/v1/{workspace_id}/scribe/encounters/{encounter_id}/icd10/approve": {
|
|
5825
|
-
parameters: {
|
|
5826
|
-
query?: never;
|
|
5827
|
-
header?: never;
|
|
5828
|
-
path?: never;
|
|
5829
|
-
cookie?: never;
|
|
5830
|
-
};
|
|
5831
|
-
get?: never;
|
|
5832
|
-
put?: never;
|
|
5833
|
-
/**
|
|
5834
|
-
* Approve Icd10
|
|
5835
|
-
* @description Physician approves an ICD-10 code. Writes at HIGH confidence (0.9).
|
|
5836
|
-
*/
|
|
5837
|
-
post: operations["approve-icd10-code"];
|
|
5838
|
-
delete?: never;
|
|
5839
|
-
options?: never;
|
|
5840
|
-
head?: never;
|
|
5841
|
-
patch?: never;
|
|
5842
|
-
trace?: never;
|
|
5843
|
-
};
|
|
5844
|
-
"/v1/{workspace_id}/scribe/encounters/{encounter_id}/icd10/reject": {
|
|
5845
|
-
parameters: {
|
|
5846
|
-
query?: never;
|
|
5847
|
-
header?: never;
|
|
5848
|
-
path?: never;
|
|
5849
|
-
cookie?: never;
|
|
5850
|
-
};
|
|
5851
|
-
get?: never;
|
|
5852
|
-
put?: never;
|
|
5853
|
-
/**
|
|
5854
|
-
* Reject Icd10
|
|
5855
|
-
* @description Physician rejects an ICD-10 code. Writes at HIGH confidence (0.9).
|
|
5856
|
-
*/
|
|
5857
|
-
post: operations["reject-icd10-code"];
|
|
5858
|
-
delete?: never;
|
|
5859
|
-
options?: never;
|
|
5860
|
-
head?: never;
|
|
5861
|
-
patch?: never;
|
|
5862
|
-
trace?: never;
|
|
5863
|
-
};
|
|
5864
|
-
"/v1/{workspace_id}/scribe/encounters/{encounter_id}/soap/edit": {
|
|
5865
|
-
parameters: {
|
|
5866
|
-
query?: never;
|
|
5867
|
-
header?: never;
|
|
5868
|
-
path?: never;
|
|
5869
|
-
cookie?: never;
|
|
5870
|
-
};
|
|
5871
|
-
get?: never;
|
|
5872
|
-
put?: never;
|
|
5873
|
-
/**
|
|
5874
|
-
* Edit Soap
|
|
5875
|
-
* @description Physician edits a SOAP section. Writes at HIGH confidence (0.9) — supersedes agent observations.
|
|
5876
|
-
*/
|
|
5877
|
-
post: operations["edit-encounter-soap"];
|
|
5878
|
-
delete?: never;
|
|
5879
|
-
options?: never;
|
|
5880
|
-
head?: never;
|
|
5881
|
-
patch?: never;
|
|
5882
|
-
trace?: never;
|
|
5883
|
-
};
|
|
5884
|
-
"/v1/{workspace_id}/scribe/recordings/transcribe": {
|
|
5885
|
-
parameters: {
|
|
5886
|
-
query?: never;
|
|
5887
|
-
header?: never;
|
|
5888
|
-
path?: never;
|
|
5889
|
-
cookie?: never;
|
|
5890
|
-
};
|
|
5891
|
-
get?: never;
|
|
5892
|
-
put?: never;
|
|
5893
|
-
/**
|
|
5894
|
-
* Transcribe Scribe Recording
|
|
5895
|
-
* @description Transcribe a completed Superscribe clinical recording.
|
|
5896
|
-
*/
|
|
5897
|
-
post: operations["transcribe-scribe-recording"];
|
|
5898
|
-
delete?: never;
|
|
5899
|
-
options?: never;
|
|
5900
|
-
head?: never;
|
|
5901
|
-
patch?: never;
|
|
5902
|
-
trace?: never;
|
|
5903
|
-
};
|
|
5904
5715
|
"/v1/{workspace_id}/sensorium/connector-health": {
|
|
5905
5716
|
parameters: {
|
|
5906
5717
|
query?: never;
|
|
@@ -6567,38 +6378,6 @@ export interface paths {
|
|
|
6567
6378
|
patch?: never;
|
|
6568
6379
|
trace?: never;
|
|
6569
6380
|
};
|
|
6570
|
-
"/v1/{workspace_id}/settings/scribe": {
|
|
6571
|
-
parameters: {
|
|
6572
|
-
query?: never;
|
|
6573
|
-
header?: never;
|
|
6574
|
-
path?: never;
|
|
6575
|
-
cookie?: never;
|
|
6576
|
-
};
|
|
6577
|
-
/**
|
|
6578
|
-
* Get Superscribe access settings
|
|
6579
|
-
* @description Get workspace Superscribe access settings.
|
|
6580
|
-
*
|
|
6581
|
-
* Returns the list of authorized clinicians and whether scribe is enabled.
|
|
6582
|
-
*
|
|
6583
|
-
* Permissions: authenticated (any role).
|
|
6584
|
-
*/
|
|
6585
|
-
get: operations["get-scribe-settings"];
|
|
6586
|
-
/**
|
|
6587
|
-
* Update Superscribe access settings
|
|
6588
|
-
* @description Update workspace Superscribe access settings.
|
|
6589
|
-
*
|
|
6590
|
-
* Manages which clinicians can authenticate to Superscribe via Google OAuth.
|
|
6591
|
-
*
|
|
6592
|
-
* Permissions: admin, owner.
|
|
6593
|
-
*/
|
|
6594
|
-
put: operations["update-scribe-settings"];
|
|
6595
|
-
post?: never;
|
|
6596
|
-
delete?: never;
|
|
6597
|
-
options?: never;
|
|
6598
|
-
head?: never;
|
|
6599
|
-
patch?: never;
|
|
6600
|
-
trace?: never;
|
|
6601
|
-
};
|
|
6602
6381
|
"/v1/{workspace_id}/settings/security": {
|
|
6603
6382
|
parameters: {
|
|
6604
6383
|
query?: never;
|
|
@@ -6842,7 +6621,11 @@ export interface paths {
|
|
|
6842
6621
|
*/
|
|
6843
6622
|
get: operations["list-simulation-cases"];
|
|
6844
6623
|
put?: never;
|
|
6845
|
-
|
|
6624
|
+
/**
|
|
6625
|
+
* Create Simulation Cases
|
|
6626
|
+
* @description Create durable simulation cases for an internal benchmark suite.
|
|
6627
|
+
*/
|
|
6628
|
+
post: operations["create-simulation-cases"];
|
|
6846
6629
|
delete?: never;
|
|
6847
6630
|
options?: never;
|
|
6848
6631
|
head?: never;
|
|
@@ -7959,66 +7742,6 @@ export interface paths {
|
|
|
7959
7742
|
patch?: never;
|
|
7960
7743
|
trace?: never;
|
|
7961
7744
|
};
|
|
7962
|
-
"/v1/{workspace_id}/voiceprints/enroll": {
|
|
7963
|
-
parameters: {
|
|
7964
|
-
query?: never;
|
|
7965
|
-
header?: never;
|
|
7966
|
-
path?: never;
|
|
7967
|
-
cookie?: never;
|
|
7968
|
-
};
|
|
7969
|
-
get?: never;
|
|
7970
|
-
put?: never;
|
|
7971
|
-
/**
|
|
7972
|
-
* Enroll Voiceprint
|
|
7973
|
-
* @description Enroll a speaker voiceprint for an entity.
|
|
7974
|
-
*
|
|
7975
|
-
* Accepts PCM16 audio (wav or raw bytes). Proxies to emotion-engine
|
|
7976
|
-
* for ECAPA-TDNN embedding extraction, then stores the result as a
|
|
7977
|
-
* world event on the person entity.
|
|
7978
|
-
*
|
|
7979
|
-
* Permissions: admin, owner.
|
|
7980
|
-
*/
|
|
7981
|
-
post: operations["enroll-voiceprint"];
|
|
7982
|
-
delete?: never;
|
|
7983
|
-
options?: never;
|
|
7984
|
-
head?: never;
|
|
7985
|
-
patch?: never;
|
|
7986
|
-
trace?: never;
|
|
7987
|
-
};
|
|
7988
|
-
"/v1/{workspace_id}/voiceprints/verify": {
|
|
7989
|
-
parameters: {
|
|
7990
|
-
query?: never;
|
|
7991
|
-
header?: never;
|
|
7992
|
-
path?: never;
|
|
7993
|
-
cookie?: never;
|
|
7994
|
-
};
|
|
7995
|
-
get?: never;
|
|
7996
|
-
put?: never;
|
|
7997
|
-
/** Verify Voiceprint */
|
|
7998
|
-
post: operations["verify-voiceprint"];
|
|
7999
|
-
delete?: never;
|
|
8000
|
-
options?: never;
|
|
8001
|
-
head?: never;
|
|
8002
|
-
patch?: never;
|
|
8003
|
-
trace?: never;
|
|
8004
|
-
};
|
|
8005
|
-
"/v1/{workspace_id}/voiceprints/{entity_id}": {
|
|
8006
|
-
parameters: {
|
|
8007
|
-
query?: never;
|
|
8008
|
-
header?: never;
|
|
8009
|
-
path?: never;
|
|
8010
|
-
cookie?: never;
|
|
8011
|
-
};
|
|
8012
|
-
/** Get Voiceprint Status */
|
|
8013
|
-
get: operations["get-voiceprint-status"];
|
|
8014
|
-
put?: never;
|
|
8015
|
-
post?: never;
|
|
8016
|
-
delete?: never;
|
|
8017
|
-
options?: never;
|
|
8018
|
-
head?: never;
|
|
8019
|
-
patch?: never;
|
|
8020
|
-
trace?: never;
|
|
8021
|
-
};
|
|
8022
7745
|
"/v1/{workspace_id}/webhook-destinations": {
|
|
8023
7746
|
parameters: {
|
|
8024
7747
|
query?: never;
|
|
@@ -9323,11 +9046,6 @@ export interface components {
|
|
|
9323
9046
|
/** Skipped */
|
|
9324
9047
|
skipped: string[];
|
|
9325
9048
|
};
|
|
9326
|
-
/** ApproveICD10Request */
|
|
9327
|
-
ApproveICD10Request: {
|
|
9328
|
-
/** Code */
|
|
9329
|
-
code: string;
|
|
9330
|
-
};
|
|
9331
9049
|
/**
|
|
9332
9050
|
* ApproveRequest
|
|
9333
9051
|
* @description Approve events — promotes confidence to 0.95.
|
|
@@ -9954,18 +9672,6 @@ export interface components {
|
|
|
9954
9672
|
*/
|
|
9955
9673
|
setup_id: string;
|
|
9956
9674
|
};
|
|
9957
|
-
/** Body_enroll-voiceprint */
|
|
9958
|
-
"Body_enroll-voiceprint": {
|
|
9959
|
-
/** Audio */
|
|
9960
|
-
audio: string;
|
|
9961
|
-
/** Entity Id */
|
|
9962
|
-
entity_id: string;
|
|
9963
|
-
/**
|
|
9964
|
-
* Sample Rate
|
|
9965
|
-
* @default 16000
|
|
9966
|
-
*/
|
|
9967
|
-
sample_rate?: number;
|
|
9968
|
-
};
|
|
9969
9675
|
/** Body_send-voicemail */
|
|
9970
9676
|
"Body_send-voicemail": {
|
|
9971
9677
|
/** Audio */
|
|
@@ -9978,34 +9684,6 @@ export interface components {
|
|
|
9978
9684
|
*/
|
|
9979
9685
|
use_case_id: string;
|
|
9980
9686
|
};
|
|
9981
|
-
/** Body_transcribe-scribe-recording */
|
|
9982
|
-
"Body_transcribe-scribe-recording": {
|
|
9983
|
-
/** Audio */
|
|
9984
|
-
audio: string;
|
|
9985
|
-
/** Keyterms */
|
|
9986
|
-
keyterms?: string | null;
|
|
9987
|
-
/** Language */
|
|
9988
|
-
language?: string | null;
|
|
9989
|
-
/** Patient Entity Id */
|
|
9990
|
-
patient_entity_id?: string | null;
|
|
9991
|
-
/**
|
|
9992
|
-
* Service Id
|
|
9993
|
-
* Format: uuid
|
|
9994
|
-
*/
|
|
9995
|
-
service_id: string;
|
|
9996
|
-
};
|
|
9997
|
-
/** Body_verify-voiceprint */
|
|
9998
|
-
"Body_verify-voiceprint": {
|
|
9999
|
-
/** Audio */
|
|
10000
|
-
audio: string;
|
|
10001
|
-
/** Entity Id */
|
|
10002
|
-
entity_id: string;
|
|
10003
|
-
/**
|
|
10004
|
-
* Sample Rate
|
|
10005
|
-
* @default 16000
|
|
10006
|
-
*/
|
|
10007
|
-
sample_rate?: number;
|
|
10008
|
-
};
|
|
10009
9687
|
/** Body_voice-turn */
|
|
10010
9688
|
"Body_voice-turn": {
|
|
10011
9689
|
/** Audio */
|
|
@@ -10375,7 +10053,7 @@ export interface components {
|
|
|
10375
10053
|
/** Service Id */
|
|
10376
10054
|
service_id?: string | null;
|
|
10377
10055
|
/** Source */
|
|
10378
|
-
source?: ("real" | "simulation" | "playground"
|
|
10056
|
+
source?: ("real" | "simulation" | "playground") | null;
|
|
10379
10057
|
/**
|
|
10380
10058
|
* States Visited
|
|
10381
10059
|
* @default []
|
|
@@ -10689,9 +10367,9 @@ export interface components {
|
|
|
10689
10367
|
service_id?: string | null;
|
|
10690
10368
|
/**
|
|
10691
10369
|
* Source
|
|
10692
|
-
* @description Call source — real, simulation,
|
|
10370
|
+
* @description Call source — real, simulation, or playground
|
|
10693
10371
|
*/
|
|
10694
|
-
source?: ("real" | "simulation" | "playground"
|
|
10372
|
+
source?: ("real" | "simulation" | "playground") | null;
|
|
10695
10373
|
/**
|
|
10696
10374
|
* Started At
|
|
10697
10375
|
* @description When the call started
|
|
@@ -11005,7 +10683,7 @@ export interface components {
|
|
|
11005
10683
|
* Each kind maps to one or more providers.
|
|
11006
10684
|
* @enum {string}
|
|
11007
10685
|
*/
|
|
11008
|
-
ChannelKind: "voice" | "sms" | "whatsapp" | "email" | "web"
|
|
10686
|
+
ChannelKind: "voice" | "sms" | "whatsapp" | "email" | "web";
|
|
11009
10687
|
/**
|
|
11010
10688
|
* ChannelOverride
|
|
11011
10689
|
* @description Per-channel behavior override for a state.
|
|
@@ -12381,11 +12059,6 @@ export interface components {
|
|
|
12381
12059
|
};
|
|
12382
12060
|
/** CreateConversationRequest */
|
|
12383
12061
|
CreateConversationRequest: {
|
|
12384
|
-
/**
|
|
12385
|
-
* Context
|
|
12386
|
-
* @description Injected into the agent's prompt as caller/patient context for this conversation.
|
|
12387
|
-
*/
|
|
12388
|
-
context?: string | null;
|
|
12389
12062
|
/** Entity Id */
|
|
12390
12063
|
entity_id?: string | null;
|
|
12391
12064
|
/**
|
|
@@ -12393,16 +12066,6 @@ export interface components {
|
|
|
12393
12066
|
* Format: uuid
|
|
12394
12067
|
*/
|
|
12395
12068
|
service_id: string;
|
|
12396
|
-
/**
|
|
12397
|
-
* Start Mode
|
|
12398
|
-
* @default user_first
|
|
12399
|
-
* @enum {string}
|
|
12400
|
-
*/
|
|
12401
|
-
start_mode?: "user_first" | "agent_first";
|
|
12402
|
-
/** Viewport Height */
|
|
12403
|
-
viewport_height?: number | null;
|
|
12404
|
-
/** Viewport Width */
|
|
12405
|
-
viewport_width?: number | null;
|
|
12406
12069
|
};
|
|
12407
12070
|
/** CreateCustomerRequest */
|
|
12408
12071
|
CreateCustomerRequest: {
|
|
@@ -12474,14 +12137,6 @@ export interface components {
|
|
|
12474
12137
|
*/
|
|
12475
12138
|
sync_strategy?: "manual" | "scheduled" | "webhook" | "continuous";
|
|
12476
12139
|
};
|
|
12477
|
-
/** CreateForkRequest */
|
|
12478
|
-
CreateForkRequest: {
|
|
12479
|
-
/**
|
|
12480
|
-
* Ttl Days
|
|
12481
|
-
* @default 7
|
|
12482
|
-
*/
|
|
12483
|
-
ttl_days?: number;
|
|
12484
|
-
};
|
|
12485
12140
|
/** CreateIntegrationRequest */
|
|
12486
12141
|
CreateIntegrationRequest: {
|
|
12487
12142
|
auth?: components["schemas"]["AuthConfigWithSecrets"] | null;
|
|
@@ -12785,7 +12440,7 @@ export interface components {
|
|
|
12785
12440
|
* @default voice
|
|
12786
12441
|
* @enum {string}
|
|
12787
12442
|
*/
|
|
12788
|
-
channel_type?: "voice" | "text"
|
|
12443
|
+
channel_type?: "voice" | "text";
|
|
12789
12444
|
/**
|
|
12790
12445
|
* Context Graph Id
|
|
12791
12446
|
* Format: uuid
|
|
@@ -12855,6 +12510,59 @@ export interface components {
|
|
|
12855
12510
|
/** Session Id */
|
|
12856
12511
|
session_id: string;
|
|
12857
12512
|
};
|
|
12513
|
+
/**
|
|
12514
|
+
* CreateSimulationCaseItem
|
|
12515
|
+
* @description One durable simulation case to create.
|
|
12516
|
+
*/
|
|
12517
|
+
CreateSimulationCaseItem: {
|
|
12518
|
+
/** Assertions */
|
|
12519
|
+
assertions?: {
|
|
12520
|
+
[key: string]: unknown;
|
|
12521
|
+
}[];
|
|
12522
|
+
/** Constraints */
|
|
12523
|
+
constraints?: {
|
|
12524
|
+
[key: string]: unknown;
|
|
12525
|
+
};
|
|
12526
|
+
/** Description */
|
|
12527
|
+
description: string;
|
|
12528
|
+
/** Fixtures */
|
|
12529
|
+
fixtures?: {
|
|
12530
|
+
[key: string]: unknown;
|
|
12531
|
+
};
|
|
12532
|
+
/** Initial Message */
|
|
12533
|
+
initial_message: string;
|
|
12534
|
+
/** Persona */
|
|
12535
|
+
persona?: {
|
|
12536
|
+
[key: string]: unknown;
|
|
12537
|
+
};
|
|
12538
|
+
/**
|
|
12539
|
+
* Provenance
|
|
12540
|
+
* @default manual
|
|
12541
|
+
*/
|
|
12542
|
+
provenance?: string;
|
|
12543
|
+
/** Scenario Instructions */
|
|
12544
|
+
scenario_instructions: string;
|
|
12545
|
+
/** Service Id */
|
|
12546
|
+
service_id?: string | null;
|
|
12547
|
+
/** Tags */
|
|
12548
|
+
tags?: string[];
|
|
12549
|
+
/** Target Spec */
|
|
12550
|
+
target_spec?: {
|
|
12551
|
+
[key: string]: unknown;
|
|
12552
|
+
};
|
|
12553
|
+
/** Temperament */
|
|
12554
|
+
temperament?: string | null;
|
|
12555
|
+
};
|
|
12556
|
+
/** CreateSimulationCasesRequest */
|
|
12557
|
+
CreateSimulationCasesRequest: {
|
|
12558
|
+
/** Cases */
|
|
12559
|
+
cases: components["schemas"]["CreateSimulationCaseItem"][];
|
|
12560
|
+
};
|
|
12561
|
+
/** CreateSimulationCasesResponse */
|
|
12562
|
+
CreateSimulationCasesResponse: {
|
|
12563
|
+
/** Cases */
|
|
12564
|
+
cases: components["schemas"]["SimulationCaseResponse"][];
|
|
12565
|
+
};
|
|
12858
12566
|
/** CreateSkillRequest */
|
|
12859
12567
|
CreateSkillRequest: {
|
|
12860
12568
|
/**
|
|
@@ -13030,24 +12738,6 @@ export interface components {
|
|
|
13030
12738
|
/** Use Case Id */
|
|
13031
12739
|
use_case_id?: string | null;
|
|
13032
12740
|
};
|
|
13033
|
-
/** CreateToolRequest */
|
|
13034
|
-
CreateToolRequest: {
|
|
13035
|
-
/** @default */
|
|
13036
|
-
description?: components["schemas"]["DescriptionString"];
|
|
13037
|
-
name: components["schemas"]["NameString"];
|
|
13038
|
-
/** Parameters */
|
|
13039
|
-
parameters?: {
|
|
13040
|
-
[key: string]: unknown;
|
|
13041
|
-
};
|
|
13042
|
-
/** Query */
|
|
13043
|
-
query: string;
|
|
13044
|
-
/**
|
|
13045
|
-
* Target
|
|
13046
|
-
* @default lakebase
|
|
13047
|
-
* @constant
|
|
13048
|
-
*/
|
|
13049
|
-
target?: "lakebase";
|
|
13050
|
-
};
|
|
13051
12741
|
/** CreateTriggerRequest */
|
|
13052
12742
|
CreateTriggerRequest: {
|
|
13053
12743
|
/**
|
|
@@ -14390,13 +14080,6 @@ export interface components {
|
|
|
14390
14080
|
*/
|
|
14391
14081
|
verified: boolean;
|
|
14392
14082
|
};
|
|
14393
|
-
/** EditSoapRequest */
|
|
14394
|
-
EditSoapRequest: {
|
|
14395
|
-
/** Content */
|
|
14396
|
-
content: string;
|
|
14397
|
-
/** Section */
|
|
14398
|
-
section: string;
|
|
14399
|
-
};
|
|
14400
14083
|
/** EgressIpsResponse */
|
|
14401
14084
|
EgressIpsResponse: {
|
|
14402
14085
|
/** Egress Ips */
|
|
@@ -15030,7 +14713,7 @@ export interface components {
|
|
|
15030
14713
|
effective_at?: string | null;
|
|
15031
14714
|
/**
|
|
15032
14715
|
* Source
|
|
15033
|
-
* @description Write source — e.g. manual, hubspot, forms,
|
|
14716
|
+
* @description Write source — e.g. manual, hubspot, forms, auto_enrich.
|
|
15034
14717
|
* @default manual
|
|
15035
14718
|
*/
|
|
15036
14719
|
source?: string;
|
|
@@ -15918,11 +15601,6 @@ export interface components {
|
|
|
15918
15601
|
[key: string]: unknown;
|
|
15919
15602
|
};
|
|
15920
15603
|
};
|
|
15921
|
-
/** ExecuteQueryRequest */
|
|
15922
|
-
ExecuteQueryRequest: {
|
|
15923
|
-
/** Sql */
|
|
15924
|
-
sql: string;
|
|
15925
|
-
};
|
|
15926
15604
|
/** ExitCondition */
|
|
15927
15605
|
ExitCondition: {
|
|
15928
15606
|
/** Description */
|
|
@@ -16607,18 +16285,6 @@ export interface components {
|
|
|
16607
16285
|
/** Alternatives */
|
|
16608
16286
|
alternatives: components["schemas"]["ForkAlternative"][];
|
|
16609
16287
|
};
|
|
16610
|
-
/** ForkResponse */
|
|
16611
|
-
ForkResponse: {
|
|
16612
|
-
/** Endpoint */
|
|
16613
|
-
endpoint: string;
|
|
16614
|
-
/**
|
|
16615
|
-
* Status
|
|
16616
|
-
* @enum {string}
|
|
16617
|
-
*/
|
|
16618
|
-
status: "pending" | "ready" | "deleting";
|
|
16619
|
-
/** Ttl Days */
|
|
16620
|
-
ttl_days?: number | null;
|
|
16621
|
-
};
|
|
16622
16288
|
/**
|
|
16623
16289
|
* FormTemplate
|
|
16624
16290
|
* @description Reusable form template with sections, prefill, branding.
|
|
@@ -20113,17 +19779,6 @@ export interface components {
|
|
|
20113
19779
|
/** Total */
|
|
20114
19780
|
total?: number | null;
|
|
20115
19781
|
};
|
|
20116
|
-
/** PaginatedResponse[ToolResponse] */
|
|
20117
|
-
PaginatedResponse_ToolResponse_: {
|
|
20118
|
-
/** Continuation Token */
|
|
20119
|
-
continuation_token?: number | null;
|
|
20120
|
-
/** Has More */
|
|
20121
|
-
has_more: boolean;
|
|
20122
|
-
/** Items */
|
|
20123
|
-
items: components["schemas"]["ToolResponse"][];
|
|
20124
|
-
/** Total */
|
|
20125
|
-
total?: number | null;
|
|
20126
|
-
};
|
|
20127
19782
|
/** PaginatedResponse[TriggerResponse] */
|
|
20128
19783
|
PaginatedResponse_TriggerResponse_: {
|
|
20129
19784
|
/** Continuation Token */
|
|
@@ -21439,7 +21094,7 @@ export interface components {
|
|
|
21439
21094
|
resolved_call_sid?: string | null;
|
|
21440
21095
|
/**
|
|
21441
21096
|
* Resolved Conversation Kind
|
|
21442
|
-
* @description ``entity_type`` of the conversation entity when ``conversation_id`` was supplied (``call`` for voice/sim
|
|
21097
|
+
* @description ``entity_type`` of the conversation entity when ``conversation_id`` was supplied (``call`` for voice/sim, ``conversation`` for text/sms/whatsapp/email). Null otherwise.
|
|
21443
21098
|
*/
|
|
21444
21099
|
resolved_conversation_kind?: ("call" | "conversation") | null;
|
|
21445
21100
|
};
|
|
@@ -21568,17 +21223,6 @@ export interface components {
|
|
|
21568
21223
|
[key: string]: unknown;
|
|
21569
21224
|
}[];
|
|
21570
21225
|
};
|
|
21571
|
-
/** QueryResultResponse */
|
|
21572
|
-
QueryResultResponse: {
|
|
21573
|
-
/** Columns */
|
|
21574
|
-
columns?: string[] | null;
|
|
21575
|
-
/** Row Count */
|
|
21576
|
-
row_count: number;
|
|
21577
|
-
/** Rows */
|
|
21578
|
-
rows?: {
|
|
21579
|
-
[key: string]: unknown;
|
|
21580
|
-
}[] | null;
|
|
21581
|
-
};
|
|
21582
21226
|
/**
|
|
21583
21227
|
* QuietHours
|
|
21584
21228
|
* @description Quiet hours — no outbound outreach during this window.
|
|
@@ -21890,13 +21534,6 @@ export interface components {
|
|
|
21890
21534
|
/** Version */
|
|
21891
21535
|
version: string;
|
|
21892
21536
|
};
|
|
21893
|
-
/** RejectICD10Request */
|
|
21894
|
-
RejectICD10Request: {
|
|
21895
|
-
/** Code */
|
|
21896
|
-
code: string;
|
|
21897
|
-
/** Reason */
|
|
21898
|
-
reason?: string | null;
|
|
21899
|
-
};
|
|
21900
21537
|
/**
|
|
21901
21538
|
* RejectRequest
|
|
21902
21539
|
* @description Reject events — demotes confidence to 0.0.
|
|
@@ -22327,6 +21964,11 @@ export interface components {
|
|
|
22327
21964
|
* @default 1
|
|
22328
21965
|
*/
|
|
22329
21966
|
concurrency?: number;
|
|
21967
|
+
/**
|
|
21968
|
+
* Entity Id
|
|
21969
|
+
* @description Optional world entity UUID to bind caller context for every selected saved-case run. When omitted, each case falls back to fixtures.case_specific.entity_id if present.
|
|
21970
|
+
*/
|
|
21971
|
+
entity_id?: string | null;
|
|
22330
21972
|
exploration?: components["schemas"]["ExplorationConfig"] | null;
|
|
22331
21973
|
/**
|
|
22332
21974
|
* Max Cases
|
|
@@ -22354,6 +21996,11 @@ export interface components {
|
|
|
22354
21996
|
* @default 1
|
|
22355
21997
|
*/
|
|
22356
21998
|
concurrency?: number;
|
|
21999
|
+
/**
|
|
22000
|
+
* Entity Id
|
|
22001
|
+
* @description Optional world entity UUID to bind caller context for this saved-case run. When omitted, the runner falls back to fixtures.case_specific.entity_id if present.
|
|
22002
|
+
*/
|
|
22003
|
+
entity_id?: string | null;
|
|
22357
22004
|
exploration?: components["schemas"]["ExplorationConfig"] | null;
|
|
22358
22005
|
/**
|
|
22359
22006
|
* Max Turns
|
|
@@ -22709,212 +22356,6 @@ export interface components {
|
|
|
22709
22356
|
/** Score Rationale */
|
|
22710
22357
|
score_rationale?: string | null;
|
|
22711
22358
|
};
|
|
22712
|
-
/**
|
|
22713
|
-
* ScribeCdsConfig
|
|
22714
|
-
* @description Clinical decision support configuration (V2/V3 workers).
|
|
22715
|
-
*/
|
|
22716
|
-
ScribeCdsConfig: {
|
|
22717
|
-
/**
|
|
22718
|
-
* Care Gap Surfacing
|
|
22719
|
-
* @default true
|
|
22720
|
-
*/
|
|
22721
|
-
care_gap_surfacing?: boolean;
|
|
22722
|
-
/**
|
|
22723
|
-
* Documentation Completeness
|
|
22724
|
-
* @default true
|
|
22725
|
-
*/
|
|
22726
|
-
documentation_completeness?: boolean;
|
|
22727
|
-
/**
|
|
22728
|
-
* Guideline Matching
|
|
22729
|
-
* @default false
|
|
22730
|
-
*/
|
|
22731
|
-
guideline_matching?: boolean;
|
|
22732
|
-
/**
|
|
22733
|
-
* Icd10 Auto Suggest
|
|
22734
|
-
* @default true
|
|
22735
|
-
*/
|
|
22736
|
-
icd10_auto_suggest?: boolean;
|
|
22737
|
-
};
|
|
22738
|
-
/**
|
|
22739
|
-
* ScribeClinician
|
|
22740
|
-
* @description A clinician authorized to use Superscribe.
|
|
22741
|
-
*/
|
|
22742
|
-
ScribeClinician: {
|
|
22743
|
-
/**
|
|
22744
|
-
* Email
|
|
22745
|
-
* Format: email
|
|
22746
|
-
*/
|
|
22747
|
-
email: string;
|
|
22748
|
-
/** Name */
|
|
22749
|
-
name?: string | null;
|
|
22750
|
-
/**
|
|
22751
|
-
* Role
|
|
22752
|
-
* @default clinician
|
|
22753
|
-
*/
|
|
22754
|
-
role?: string;
|
|
22755
|
-
};
|
|
22756
|
-
/**
|
|
22757
|
-
* ScribePostEncounterConfig
|
|
22758
|
-
* @description Post-encounter automation configuration.
|
|
22759
|
-
*/
|
|
22760
|
-
ScribePostEncounterConfig: {
|
|
22761
|
-
/**
|
|
22762
|
-
* Auto Polish Note
|
|
22763
|
-
* @default true
|
|
22764
|
-
*/
|
|
22765
|
-
auto_polish_note?: boolean;
|
|
22766
|
-
/**
|
|
22767
|
-
* Education Materials
|
|
22768
|
-
* @default false
|
|
22769
|
-
*/
|
|
22770
|
-
education_materials?: boolean;
|
|
22771
|
-
/**
|
|
22772
|
-
* Follow Up Surface
|
|
22773
|
-
* @default false
|
|
22774
|
-
*/
|
|
22775
|
-
follow_up_surface?: boolean;
|
|
22776
|
-
/**
|
|
22777
|
-
* Order Preparation
|
|
22778
|
-
* @default false
|
|
22779
|
-
*/
|
|
22780
|
-
order_preparation?: boolean;
|
|
22781
|
-
};
|
|
22782
|
-
/**
|
|
22783
|
-
* ScribeSafetyConfig
|
|
22784
|
-
* @description V0 sentinel and safety configuration.
|
|
22785
|
-
*/
|
|
22786
|
-
ScribeSafetyConfig: {
|
|
22787
|
-
/**
|
|
22788
|
-
* Allergy Cross Reference
|
|
22789
|
-
* @default true
|
|
22790
|
-
*/
|
|
22791
|
-
allergy_cross_reference?: boolean;
|
|
22792
|
-
/**
|
|
22793
|
-
* Crisis Detection
|
|
22794
|
-
* @default true
|
|
22795
|
-
*/
|
|
22796
|
-
crisis_detection?: boolean;
|
|
22797
|
-
/**
|
|
22798
|
-
* Drug Interaction Checking
|
|
22799
|
-
* @default true
|
|
22800
|
-
*/
|
|
22801
|
-
drug_interaction_checking?: boolean;
|
|
22802
|
-
/**
|
|
22803
|
-
* Vital Range Alerting
|
|
22804
|
-
* @default true
|
|
22805
|
-
*/
|
|
22806
|
-
vital_range_alerting?: boolean;
|
|
22807
|
-
};
|
|
22808
|
-
/**
|
|
22809
|
-
* ScribeSettingsRequest
|
|
22810
|
-
* @description Partial update — only provided fields are changed.
|
|
22811
|
-
*/
|
|
22812
|
-
ScribeSettingsRequest: {
|
|
22813
|
-
/** Authorized Clinicians */
|
|
22814
|
-
authorized_clinicians?: components["schemas"]["ScribeClinician"][] | null;
|
|
22815
|
-
cds?: components["schemas"]["ScribeCdsConfig"] | null;
|
|
22816
|
-
/** Custom Instructions */
|
|
22817
|
-
custom_instructions?: string | null;
|
|
22818
|
-
/** Enabled */
|
|
22819
|
-
enabled?: boolean | null;
|
|
22820
|
-
/** Keyterms */
|
|
22821
|
-
keyterms?: string[] | null;
|
|
22822
|
-
/** Language */
|
|
22823
|
-
language?: string | null;
|
|
22824
|
-
post_encounter?: components["schemas"]["ScribePostEncounterConfig"] | null;
|
|
22825
|
-
safety?: components["schemas"]["ScribeSafetyConfig"] | null;
|
|
22826
|
-
/** Soap Style */
|
|
22827
|
-
soap_style?: ("concise" | "detailed" | "structured") | null;
|
|
22828
|
-
/** Specialty */
|
|
22829
|
-
specialty?: string | null;
|
|
22830
|
-
/** Tools Enabled */
|
|
22831
|
-
tools_enabled?: string[] | null;
|
|
22832
|
-
/** Voice Auth Enabled */
|
|
22833
|
-
voice_auth_enabled?: boolean | null;
|
|
22834
|
-
};
|
|
22835
|
-
/** ScribeSettingsResponse */
|
|
22836
|
-
ScribeSettingsResponse: {
|
|
22837
|
-
/** Authorized Clinicians */
|
|
22838
|
-
authorized_clinicians: components["schemas"]["ScribeClinician"][];
|
|
22839
|
-
cds?: components["schemas"]["ScribeCdsConfig"];
|
|
22840
|
-
/** Custom Instructions */
|
|
22841
|
-
custom_instructions?: string | null;
|
|
22842
|
-
/** Enabled */
|
|
22843
|
-
enabled: boolean;
|
|
22844
|
-
/** Keyterms */
|
|
22845
|
-
keyterms?: string[];
|
|
22846
|
-
/**
|
|
22847
|
-
* Language
|
|
22848
|
-
* @default en
|
|
22849
|
-
*/
|
|
22850
|
-
language?: string;
|
|
22851
|
-
post_encounter?: components["schemas"]["ScribePostEncounterConfig"];
|
|
22852
|
-
safety?: components["schemas"]["ScribeSafetyConfig"];
|
|
22853
|
-
/**
|
|
22854
|
-
* Soap Style
|
|
22855
|
-
* @default concise
|
|
22856
|
-
* @enum {string}
|
|
22857
|
-
*/
|
|
22858
|
-
soap_style?: "concise" | "detailed" | "structured";
|
|
22859
|
-
/** Specialty */
|
|
22860
|
-
specialty?: string | null;
|
|
22861
|
-
/** Tools Enabled */
|
|
22862
|
-
tools_enabled?: string[] | null;
|
|
22863
|
-
/**
|
|
22864
|
-
* Voice Auth Enabled
|
|
22865
|
-
* @default false
|
|
22866
|
-
*/
|
|
22867
|
-
voice_auth_enabled?: boolean;
|
|
22868
|
-
};
|
|
22869
|
-
/** ScribeTranscriptionChunk */
|
|
22870
|
-
ScribeTranscriptionChunk: {
|
|
22871
|
-
/** Confidence */
|
|
22872
|
-
confidence?: number | null;
|
|
22873
|
-
/** Duration Seconds */
|
|
22874
|
-
duration_seconds?: number | null;
|
|
22875
|
-
/** End Seconds */
|
|
22876
|
-
end_seconds: number;
|
|
22877
|
-
/** Index */
|
|
22878
|
-
index: number;
|
|
22879
|
-
/** Start Seconds */
|
|
22880
|
-
start_seconds: number;
|
|
22881
|
-
/** Text */
|
|
22882
|
-
text: string;
|
|
22883
|
-
};
|
|
22884
|
-
/** ScribeTranscriptionResponse */
|
|
22885
|
-
ScribeTranscriptionResponse: {
|
|
22886
|
-
/** Chunk Count */
|
|
22887
|
-
chunk_count: number;
|
|
22888
|
-
/** Chunks */
|
|
22889
|
-
chunks?: components["schemas"]["ScribeTranscriptionChunk"][];
|
|
22890
|
-
/** Confidence */
|
|
22891
|
-
confidence?: number | null;
|
|
22892
|
-
/** Duration Seconds */
|
|
22893
|
-
duration_seconds: number;
|
|
22894
|
-
/** Keyterm Count */
|
|
22895
|
-
keyterm_count: number;
|
|
22896
|
-
/** Language */
|
|
22897
|
-
language: string;
|
|
22898
|
-
/** Model */
|
|
22899
|
-
model: string;
|
|
22900
|
-
/** Segments */
|
|
22901
|
-
segments?: components["schemas"]["ScribeTranscriptionSegment"][];
|
|
22902
|
-
/** Transcript */
|
|
22903
|
-
transcript: string;
|
|
22904
|
-
};
|
|
22905
|
-
/** ScribeTranscriptionSegment */
|
|
22906
|
-
ScribeTranscriptionSegment: {
|
|
22907
|
-
/** Confidence */
|
|
22908
|
-
confidence?: number | null;
|
|
22909
|
-
/** End Seconds */
|
|
22910
|
-
end_seconds?: number | null;
|
|
22911
|
-
/** Speaker */
|
|
22912
|
-
speaker?: number | null;
|
|
22913
|
-
/** Start Seconds */
|
|
22914
|
-
start_seconds?: number | null;
|
|
22915
|
-
/** Text */
|
|
22916
|
-
text: string;
|
|
22917
|
-
};
|
|
22918
22359
|
/** SearchAvailableNumbersResponse */
|
|
22919
22360
|
SearchAvailableNumbersResponse: {
|
|
22920
22361
|
/** Numbers */
|
|
@@ -22985,7 +22426,7 @@ export interface components {
|
|
|
22985
22426
|
* @default voice
|
|
22986
22427
|
* @enum {string}
|
|
22987
22428
|
*/
|
|
22988
|
-
channel_type?: "voice" | "text"
|
|
22429
|
+
channel_type?: "voice" | "text";
|
|
22989
22430
|
/**
|
|
22990
22431
|
* Context Graph Id
|
|
22991
22432
|
* Format: uuid
|
|
@@ -23124,7 +22565,7 @@ export interface components {
|
|
|
23124
22565
|
* @default voice
|
|
23125
22566
|
* @enum {string}
|
|
23126
22567
|
*/
|
|
23127
|
-
channel_type?: "voice" | "text"
|
|
22568
|
+
channel_type?: "voice" | "text";
|
|
23128
22569
|
/**
|
|
23129
22570
|
* Context Graph Id
|
|
23130
22571
|
* Format: uuid
|
|
@@ -25876,13 +25317,6 @@ export interface components {
|
|
|
25876
25317
|
*/
|
|
25877
25318
|
sub_tool_logs: components["schemas"]["SubToolLog"][];
|
|
25878
25319
|
};
|
|
25879
|
-
/** TestToolRequest */
|
|
25880
|
-
TestToolRequest: {
|
|
25881
|
-
/** Parameters */
|
|
25882
|
-
parameters?: {
|
|
25883
|
-
[key: string]: unknown;
|
|
25884
|
-
};
|
|
25885
|
-
};
|
|
25886
25320
|
/** TextCompletedEvent */
|
|
25887
25321
|
TextCompletedEvent: {
|
|
25888
25322
|
/** Channel Kind */
|
|
@@ -26386,34 +25820,6 @@ export interface components {
|
|
|
26386
25820
|
*/
|
|
26387
25821
|
workspace_id: string;
|
|
26388
25822
|
};
|
|
26389
|
-
/** ToolResponse */
|
|
26390
|
-
ToolResponse: {
|
|
26391
|
-
/** Created At */
|
|
26392
|
-
created_at?: string | null;
|
|
26393
|
-
/** Description */
|
|
26394
|
-
description: string;
|
|
26395
|
-
/** Enabled */
|
|
26396
|
-
enabled: boolean;
|
|
26397
|
-
/** Id */
|
|
26398
|
-
id: string;
|
|
26399
|
-
/** Name */
|
|
26400
|
-
name: string;
|
|
26401
|
-
/** Parameters */
|
|
26402
|
-
parameters: {
|
|
26403
|
-
[key: string]: unknown;
|
|
26404
|
-
};
|
|
26405
|
-
/** Query */
|
|
26406
|
-
query: string;
|
|
26407
|
-
/**
|
|
26408
|
-
* Target
|
|
26409
|
-
* @constant
|
|
26410
|
-
*/
|
|
26411
|
-
target: "lakebase";
|
|
26412
|
-
/** Updated At */
|
|
26413
|
-
updated_at?: string | null;
|
|
26414
|
-
/** Workspace Id */
|
|
26415
|
-
workspace_id: string;
|
|
26416
|
-
};
|
|
26417
25823
|
/**
|
|
26418
25824
|
* ToolSummary
|
|
26419
25825
|
* @description Tool usage statistics.
|
|
@@ -27190,8 +26596,11 @@ export interface components {
|
|
|
27190
26596
|
media_type?: string | null;
|
|
27191
26597
|
/** Media Url */
|
|
27192
26598
|
media_url?: string | null;
|
|
27193
|
-
/**
|
|
27194
|
-
|
|
26599
|
+
/**
|
|
26600
|
+
* Message
|
|
26601
|
+
* @default
|
|
26602
|
+
*/
|
|
26603
|
+
message?: string;
|
|
27195
26604
|
/** Viewport Height */
|
|
27196
26605
|
viewport_height?: number | null;
|
|
27197
26606
|
/** Viewport Width */
|
|
@@ -27545,7 +26954,7 @@ export interface components {
|
|
|
27545
26954
|
/** Agent Id */
|
|
27546
26955
|
agent_id?: string | null;
|
|
27547
26956
|
/** Channel Type */
|
|
27548
|
-
channel_type?: ("voice" | "text"
|
|
26957
|
+
channel_type?: ("voice" | "text") | null;
|
|
27549
26958
|
/** Context Graph Id */
|
|
27550
26959
|
context_graph_id?: string | null;
|
|
27551
26960
|
description?: components["schemas"]["DescriptionString"] | null;
|
|
@@ -27679,19 +27088,6 @@ export interface components {
|
|
|
27679
27088
|
*/
|
|
27680
27089
|
workspace_id: string;
|
|
27681
27090
|
};
|
|
27682
|
-
/** UpdateToolRequest */
|
|
27683
|
-
UpdateToolRequest: {
|
|
27684
|
-
description?: components["schemas"]["DescriptionString"] | null;
|
|
27685
|
-
/** Enabled */
|
|
27686
|
-
enabled?: boolean | null;
|
|
27687
|
-
name?: components["schemas"]["NameString"] | null;
|
|
27688
|
-
/** Parameters */
|
|
27689
|
-
parameters?: {
|
|
27690
|
-
[key: string]: unknown;
|
|
27691
|
-
} | null;
|
|
27692
|
-
/** Query */
|
|
27693
|
-
query?: string | null;
|
|
27694
|
-
};
|
|
27695
27091
|
/** UpdateTriggerRequest */
|
|
27696
27092
|
UpdateTriggerRequest: {
|
|
27697
27093
|
/** Action Id */
|
|
@@ -28384,47 +27780,6 @@ export interface components {
|
|
|
28384
27780
|
*/
|
|
28385
27781
|
voicemail_id: string;
|
|
28386
27782
|
};
|
|
28387
|
-
/** VoiceprintEnrollResponse */
|
|
28388
|
-
VoiceprintEnrollResponse: {
|
|
28389
|
-
/**
|
|
28390
|
-
* Dimensions
|
|
28391
|
-
* @default 192
|
|
28392
|
-
*/
|
|
28393
|
-
dimensions?: number;
|
|
28394
|
-
/**
|
|
28395
|
-
* Enrolled
|
|
28396
|
-
* @default true
|
|
28397
|
-
*/
|
|
28398
|
-
enrolled?: boolean;
|
|
28399
|
-
/**
|
|
28400
|
-
* Entity Id
|
|
28401
|
-
* Format: uuid
|
|
28402
|
-
*/
|
|
28403
|
-
entity_id: string;
|
|
28404
|
-
/** Model Id */
|
|
28405
|
-
model_id: string;
|
|
28406
|
-
};
|
|
28407
|
-
/** VoiceprintStatusResponse */
|
|
28408
|
-
VoiceprintStatusResponse: {
|
|
28409
|
-
/** Enrolled */
|
|
28410
|
-
enrolled: boolean;
|
|
28411
|
-
/** Enrolled At */
|
|
28412
|
-
enrolled_at?: string | null;
|
|
28413
|
-
/** Model Id */
|
|
28414
|
-
model_id?: string | null;
|
|
28415
|
-
};
|
|
28416
|
-
/** VoiceprintVerifyResponse */
|
|
28417
|
-
VoiceprintVerifyResponse: {
|
|
28418
|
-
/**
|
|
28419
|
-
* Entity Id
|
|
28420
|
-
* Format: uuid
|
|
28421
|
-
*/
|
|
28422
|
-
entity_id: string;
|
|
28423
|
-
/** Similarity */
|
|
28424
|
-
similarity: number;
|
|
28425
|
-
/** Verified */
|
|
28426
|
-
verified: boolean;
|
|
28427
|
-
};
|
|
28428
27783
|
/** WebhookDestinationCreatedResponse */
|
|
28429
27784
|
WebhookDestinationCreatedResponse: {
|
|
28430
27785
|
/** Accepted Event Types */
|
|
@@ -36713,7 +36068,7 @@ export interface operations {
|
|
|
36713
36068
|
};
|
|
36714
36069
|
};
|
|
36715
36070
|
};
|
|
36716
|
-
"
|
|
36071
|
+
"list-functions": {
|
|
36717
36072
|
parameters: {
|
|
36718
36073
|
query?: never;
|
|
36719
36074
|
header?: never;
|
|
@@ -36730,7 +36085,7 @@ export interface operations {
|
|
|
36730
36085
|
[name: string]: unknown;
|
|
36731
36086
|
};
|
|
36732
36087
|
content: {
|
|
36733
|
-
"application/json": components["schemas"]["
|
|
36088
|
+
"application/json": components["schemas"]["FunctionListResponse"];
|
|
36734
36089
|
};
|
|
36735
36090
|
};
|
|
36736
36091
|
/** @description Rate limited */
|
|
@@ -36742,7 +36097,7 @@ export interface operations {
|
|
|
36742
36097
|
};
|
|
36743
36098
|
};
|
|
36744
36099
|
};
|
|
36745
|
-
"create-
|
|
36100
|
+
"create-function": {
|
|
36746
36101
|
parameters: {
|
|
36747
36102
|
query?: never;
|
|
36748
36103
|
header?: never;
|
|
@@ -36753,19 +36108,26 @@ export interface operations {
|
|
|
36753
36108
|
};
|
|
36754
36109
|
requestBody: {
|
|
36755
36110
|
content: {
|
|
36756
|
-
"application/json": components["schemas"]["
|
|
36111
|
+
"application/json": components["schemas"]["FunctionCreateRequest"];
|
|
36757
36112
|
};
|
|
36758
36113
|
};
|
|
36759
36114
|
responses: {
|
|
36760
36115
|
/** @description Successful Response */
|
|
36761
|
-
|
|
36116
|
+
200: {
|
|
36762
36117
|
headers: {
|
|
36763
36118
|
[name: string]: unknown;
|
|
36764
36119
|
};
|
|
36765
36120
|
content: {
|
|
36766
|
-
"application/json": components["schemas"]["
|
|
36121
|
+
"application/json": components["schemas"]["FunctionDef"];
|
|
36767
36122
|
};
|
|
36768
36123
|
};
|
|
36124
|
+
/** @description Function name already registered */
|
|
36125
|
+
409: {
|
|
36126
|
+
headers: {
|
|
36127
|
+
[name: string]: unknown;
|
|
36128
|
+
};
|
|
36129
|
+
content?: never;
|
|
36130
|
+
};
|
|
36769
36131
|
/** @description Validation error */
|
|
36770
36132
|
422: {
|
|
36771
36133
|
headers: {
|
|
@@ -36782,7 +36144,7 @@ export interface operations {
|
|
|
36782
36144
|
};
|
|
36783
36145
|
};
|
|
36784
36146
|
};
|
|
36785
|
-
"
|
|
36147
|
+
"discover-catalog": {
|
|
36786
36148
|
parameters: {
|
|
36787
36149
|
query?: never;
|
|
36788
36150
|
header?: never;
|
|
@@ -36794,21 +36156,23 @@ export interface operations {
|
|
|
36794
36156
|
requestBody?: never;
|
|
36795
36157
|
responses: {
|
|
36796
36158
|
/** @description Successful Response */
|
|
36797
|
-
|
|
36159
|
+
200: {
|
|
36798
36160
|
headers: {
|
|
36799
36161
|
[name: string]: unknown;
|
|
36800
36162
|
};
|
|
36801
|
-
content
|
|
36163
|
+
content: {
|
|
36164
|
+
"application/json": components["schemas"]["CatalogResponse"];
|
|
36165
|
+
};
|
|
36802
36166
|
};
|
|
36803
|
-
/** @description
|
|
36804
|
-
|
|
36167
|
+
/** @description Rate limited */
|
|
36168
|
+
429: {
|
|
36805
36169
|
headers: {
|
|
36806
36170
|
[name: string]: unknown;
|
|
36807
36171
|
};
|
|
36808
36172
|
content?: never;
|
|
36809
36173
|
};
|
|
36810
|
-
/** @description
|
|
36811
|
-
|
|
36174
|
+
/** @description Agent engine unavailable */
|
|
36175
|
+
503: {
|
|
36812
36176
|
headers: {
|
|
36813
36177
|
[name: string]: unknown;
|
|
36814
36178
|
};
|
|
@@ -36816,7 +36180,7 @@ export interface operations {
|
|
|
36816
36180
|
};
|
|
36817
36181
|
};
|
|
36818
36182
|
};
|
|
36819
|
-
"
|
|
36183
|
+
"deploy-function": {
|
|
36820
36184
|
parameters: {
|
|
36821
36185
|
query?: never;
|
|
36822
36186
|
header?: never;
|
|
@@ -36825,7 +36189,11 @@ export interface operations {
|
|
|
36825
36189
|
};
|
|
36826
36190
|
cookie?: never;
|
|
36827
36191
|
};
|
|
36828
|
-
requestBody
|
|
36192
|
+
requestBody: {
|
|
36193
|
+
content: {
|
|
36194
|
+
"application/json": components["schemas"]["RegisteredFunction"];
|
|
36195
|
+
};
|
|
36196
|
+
};
|
|
36829
36197
|
responses: {
|
|
36830
36198
|
/** @description Successful Response */
|
|
36831
36199
|
200: {
|
|
@@ -36833,8 +36201,22 @@ export interface operations {
|
|
|
36833
36201
|
[name: string]: unknown;
|
|
36834
36202
|
};
|
|
36835
36203
|
content: {
|
|
36836
|
-
"application/json": components["schemas"]["
|
|
36204
|
+
"application/json": components["schemas"]["FunctionVersionResponse"];
|
|
36205
|
+
};
|
|
36206
|
+
};
|
|
36207
|
+
/** @description Concurrent deploy raced at the same version */
|
|
36208
|
+
409: {
|
|
36209
|
+
headers: {
|
|
36210
|
+
[name: string]: unknown;
|
|
36211
|
+
};
|
|
36212
|
+
content?: never;
|
|
36213
|
+
};
|
|
36214
|
+
/** @description Validation failure (read-only / bind / parity) */
|
|
36215
|
+
422: {
|
|
36216
|
+
headers: {
|
|
36217
|
+
[name: string]: unknown;
|
|
36837
36218
|
};
|
|
36219
|
+
content?: never;
|
|
36838
36220
|
};
|
|
36839
36221
|
/** @description Rate limited */
|
|
36840
36222
|
429: {
|
|
@@ -36845,7 +36227,7 @@ export interface operations {
|
|
|
36845
36227
|
};
|
|
36846
36228
|
};
|
|
36847
36229
|
};
|
|
36848
|
-
"
|
|
36230
|
+
"query-functions": {
|
|
36849
36231
|
parameters: {
|
|
36850
36232
|
query?: never;
|
|
36851
36233
|
header?: never;
|
|
@@ -36856,7 +36238,7 @@ export interface operations {
|
|
|
36856
36238
|
};
|
|
36857
36239
|
requestBody: {
|
|
36858
36240
|
content: {
|
|
36859
|
-
"application/json": components["schemas"]["
|
|
36241
|
+
"application/json": components["schemas"]["QueryRequest"];
|
|
36860
36242
|
};
|
|
36861
36243
|
};
|
|
36862
36244
|
responses: {
|
|
@@ -36866,23 +36248,54 @@ export interface operations {
|
|
|
36866
36248
|
[name: string]: unknown;
|
|
36867
36249
|
};
|
|
36868
36250
|
content: {
|
|
36869
|
-
"application/json": components["schemas"]["
|
|
36251
|
+
"application/json": components["schemas"]["QueryResponse"];
|
|
36870
36252
|
};
|
|
36871
36253
|
};
|
|
36872
|
-
/** @description
|
|
36873
|
-
|
|
36254
|
+
/** @description Validation Error */
|
|
36255
|
+
422: {
|
|
36256
|
+
headers: {
|
|
36257
|
+
[name: string]: unknown;
|
|
36258
|
+
};
|
|
36259
|
+
content: {
|
|
36260
|
+
"application/json": components["schemas"]["HTTPValidationError"];
|
|
36261
|
+
};
|
|
36262
|
+
};
|
|
36263
|
+
/** @description Rate limited */
|
|
36264
|
+
429: {
|
|
36874
36265
|
headers: {
|
|
36875
36266
|
[name: string]: unknown;
|
|
36876
36267
|
};
|
|
36877
36268
|
content?: never;
|
|
36878
36269
|
};
|
|
36879
|
-
/** @description
|
|
36880
|
-
|
|
36270
|
+
/** @description Agent engine unavailable */
|
|
36271
|
+
503: {
|
|
36881
36272
|
headers: {
|
|
36882
36273
|
[name: string]: unknown;
|
|
36883
36274
|
};
|
|
36884
36275
|
content?: never;
|
|
36885
36276
|
};
|
|
36277
|
+
};
|
|
36278
|
+
};
|
|
36279
|
+
"list-registered-functions": {
|
|
36280
|
+
parameters: {
|
|
36281
|
+
query?: never;
|
|
36282
|
+
header?: never;
|
|
36283
|
+
path: {
|
|
36284
|
+
workspace_id: string;
|
|
36285
|
+
};
|
|
36286
|
+
cookie?: never;
|
|
36287
|
+
};
|
|
36288
|
+
requestBody?: never;
|
|
36289
|
+
responses: {
|
|
36290
|
+
/** @description Successful Response */
|
|
36291
|
+
200: {
|
|
36292
|
+
headers: {
|
|
36293
|
+
[name: string]: unknown;
|
|
36294
|
+
};
|
|
36295
|
+
content: {
|
|
36296
|
+
"application/json": components["schemas"]["FunctionVersionListResponse"];
|
|
36297
|
+
};
|
|
36298
|
+
};
|
|
36886
36299
|
/** @description Rate limited */
|
|
36887
36300
|
429: {
|
|
36888
36301
|
headers: {
|
|
@@ -36892,7 +36305,7 @@ export interface operations {
|
|
|
36892
36305
|
};
|
|
36893
36306
|
};
|
|
36894
36307
|
};
|
|
36895
|
-
"
|
|
36308
|
+
"sync-catalog": {
|
|
36896
36309
|
parameters: {
|
|
36897
36310
|
query?: never;
|
|
36898
36311
|
header?: never;
|
|
@@ -36909,7 +36322,7 @@ export interface operations {
|
|
|
36909
36322
|
[name: string]: unknown;
|
|
36910
36323
|
};
|
|
36911
36324
|
content: {
|
|
36912
|
-
"application/json": components["schemas"]["
|
|
36325
|
+
"application/json": components["schemas"]["FunctionListResponse"];
|
|
36913
36326
|
};
|
|
36914
36327
|
};
|
|
36915
36328
|
/** @description Rate limited */
|
|
@@ -36928,20 +36341,17 @@ export interface operations {
|
|
|
36928
36341
|
};
|
|
36929
36342
|
};
|
|
36930
36343
|
};
|
|
36931
|
-
"
|
|
36344
|
+
"delete-function": {
|
|
36932
36345
|
parameters: {
|
|
36933
36346
|
query?: never;
|
|
36934
36347
|
header?: never;
|
|
36935
36348
|
path: {
|
|
36936
36349
|
workspace_id: string;
|
|
36350
|
+
function_name: string;
|
|
36937
36351
|
};
|
|
36938
36352
|
cookie?: never;
|
|
36939
36353
|
};
|
|
36940
|
-
requestBody
|
|
36941
|
-
content: {
|
|
36942
|
-
"application/json": components["schemas"]["RegisteredFunction"];
|
|
36943
|
-
};
|
|
36944
|
-
};
|
|
36354
|
+
requestBody?: never;
|
|
36945
36355
|
responses: {
|
|
36946
36356
|
/** @description Successful Response */
|
|
36947
36357
|
200: {
|
|
@@ -36949,22 +36359,26 @@ export interface operations {
|
|
|
36949
36359
|
[name: string]: unknown;
|
|
36950
36360
|
};
|
|
36951
36361
|
content: {
|
|
36952
|
-
"application/json":
|
|
36362
|
+
"application/json": {
|
|
36363
|
+
[key: string]: string;
|
|
36364
|
+
};
|
|
36953
36365
|
};
|
|
36954
36366
|
};
|
|
36955
|
-
/** @description
|
|
36956
|
-
|
|
36367
|
+
/** @description Function not found */
|
|
36368
|
+
404: {
|
|
36957
36369
|
headers: {
|
|
36958
36370
|
[name: string]: unknown;
|
|
36959
36371
|
};
|
|
36960
36372
|
content?: never;
|
|
36961
36373
|
};
|
|
36962
|
-
/** @description Validation
|
|
36374
|
+
/** @description Validation Error */
|
|
36963
36375
|
422: {
|
|
36964
36376
|
headers: {
|
|
36965
36377
|
[name: string]: unknown;
|
|
36966
36378
|
};
|
|
36967
|
-
content
|
|
36379
|
+
content: {
|
|
36380
|
+
"application/json": components["schemas"]["HTTPValidationError"];
|
|
36381
|
+
};
|
|
36968
36382
|
};
|
|
36969
36383
|
/** @description Rate limited */
|
|
36970
36384
|
429: {
|
|
@@ -36975,18 +36389,19 @@ export interface operations {
|
|
|
36975
36389
|
};
|
|
36976
36390
|
};
|
|
36977
36391
|
};
|
|
36978
|
-
"
|
|
36392
|
+
"invoke-function": {
|
|
36979
36393
|
parameters: {
|
|
36980
36394
|
query?: never;
|
|
36981
36395
|
header?: never;
|
|
36982
36396
|
path: {
|
|
36983
36397
|
workspace_id: string;
|
|
36398
|
+
function_name: string;
|
|
36984
36399
|
};
|
|
36985
36400
|
cookie?: never;
|
|
36986
36401
|
};
|
|
36987
36402
|
requestBody: {
|
|
36988
36403
|
content: {
|
|
36989
|
-
"application/json": components["schemas"]["
|
|
36404
|
+
"application/json": components["schemas"]["InvokeRequest"];
|
|
36990
36405
|
};
|
|
36991
36406
|
};
|
|
36992
36407
|
responses: {
|
|
@@ -36996,17 +36411,22 @@ export interface operations {
|
|
|
36996
36411
|
[name: string]: unknown;
|
|
36997
36412
|
};
|
|
36998
36413
|
content: {
|
|
36999
|
-
"application/json": components["schemas"]["
|
|
36414
|
+
"application/json": components["schemas"]["InvokeResponse"];
|
|
37000
36415
|
};
|
|
37001
36416
|
};
|
|
37002
|
-
/** @description
|
|
37003
|
-
|
|
36417
|
+
/** @description Function not found */
|
|
36418
|
+
404: {
|
|
37004
36419
|
headers: {
|
|
37005
36420
|
[name: string]: unknown;
|
|
37006
36421
|
};
|
|
37007
|
-
content
|
|
37008
|
-
|
|
36422
|
+
content?: never;
|
|
36423
|
+
};
|
|
36424
|
+
/** @description Bind validation failure */
|
|
36425
|
+
422: {
|
|
36426
|
+
headers: {
|
|
36427
|
+
[name: string]: unknown;
|
|
37009
36428
|
};
|
|
36429
|
+
content?: never;
|
|
37010
36430
|
};
|
|
37011
36431
|
/** @description Rate limited */
|
|
37012
36432
|
429: {
|
|
@@ -37015,7 +36435,7 @@ export interface operations {
|
|
|
37015
36435
|
};
|
|
37016
36436
|
content?: never;
|
|
37017
36437
|
};
|
|
37018
|
-
/** @description
|
|
36438
|
+
/** @description Databricks SQL client unavailable */
|
|
37019
36439
|
503: {
|
|
37020
36440
|
headers: {
|
|
37021
36441
|
[name: string]: unknown;
|
|
@@ -37024,16 +36444,21 @@ export interface operations {
|
|
|
37024
36444
|
};
|
|
37025
36445
|
};
|
|
37026
36446
|
};
|
|
37027
|
-
"
|
|
36447
|
+
"promote-function": {
|
|
37028
36448
|
parameters: {
|
|
37029
36449
|
query?: never;
|
|
37030
36450
|
header?: never;
|
|
37031
36451
|
path: {
|
|
37032
36452
|
workspace_id: string;
|
|
36453
|
+
function_name: string;
|
|
37033
36454
|
};
|
|
37034
36455
|
cookie?: never;
|
|
37035
36456
|
};
|
|
37036
|
-
requestBody
|
|
36457
|
+
requestBody: {
|
|
36458
|
+
content: {
|
|
36459
|
+
"application/json": components["schemas"]["PromoteRequest"];
|
|
36460
|
+
};
|
|
36461
|
+
};
|
|
37037
36462
|
responses: {
|
|
37038
36463
|
/** @description Successful Response */
|
|
37039
36464
|
200: {
|
|
@@ -37041,7 +36466,23 @@ export interface operations {
|
|
|
37041
36466
|
[name: string]: unknown;
|
|
37042
36467
|
};
|
|
37043
36468
|
content: {
|
|
37044
|
-
"application/json": components["schemas"]["
|
|
36469
|
+
"application/json": components["schemas"]["PromoteResponse"];
|
|
36470
|
+
};
|
|
36471
|
+
};
|
|
36472
|
+
/** @description Function or version not found */
|
|
36473
|
+
404: {
|
|
36474
|
+
headers: {
|
|
36475
|
+
[name: string]: unknown;
|
|
36476
|
+
};
|
|
36477
|
+
content?: never;
|
|
36478
|
+
};
|
|
36479
|
+
/** @description Validation Error */
|
|
36480
|
+
422: {
|
|
36481
|
+
headers: {
|
|
36482
|
+
[name: string]: unknown;
|
|
36483
|
+
};
|
|
36484
|
+
content: {
|
|
36485
|
+
"application/json": components["schemas"]["HTTPValidationError"];
|
|
37045
36486
|
};
|
|
37046
36487
|
};
|
|
37047
36488
|
/** @description Rate limited */
|
|
@@ -37053,16 +36494,21 @@ export interface operations {
|
|
|
37053
36494
|
};
|
|
37054
36495
|
};
|
|
37055
36496
|
};
|
|
37056
|
-
"
|
|
36497
|
+
"rollback-function": {
|
|
37057
36498
|
parameters: {
|
|
37058
36499
|
query?: never;
|
|
37059
36500
|
header?: never;
|
|
37060
36501
|
path: {
|
|
37061
36502
|
workspace_id: string;
|
|
36503
|
+
function_name: string;
|
|
37062
36504
|
};
|
|
37063
36505
|
cookie?: never;
|
|
37064
36506
|
};
|
|
37065
|
-
requestBody
|
|
36507
|
+
requestBody: {
|
|
36508
|
+
content: {
|
|
36509
|
+
"application/json": components["schemas"]["RollbackRequest"];
|
|
36510
|
+
};
|
|
36511
|
+
};
|
|
37066
36512
|
responses: {
|
|
37067
36513
|
/** @description Successful Response */
|
|
37068
36514
|
200: {
|
|
@@ -37070,18 +36516,27 @@ export interface operations {
|
|
|
37070
36516
|
[name: string]: unknown;
|
|
37071
36517
|
};
|
|
37072
36518
|
content: {
|
|
37073
|
-
"application/json": components["schemas"]["
|
|
36519
|
+
"application/json": components["schemas"]["RollbackResponse"];
|
|
37074
36520
|
};
|
|
37075
36521
|
};
|
|
37076
|
-
/** @description
|
|
37077
|
-
|
|
36522
|
+
/** @description Function or version not found */
|
|
36523
|
+
404: {
|
|
37078
36524
|
headers: {
|
|
37079
36525
|
[name: string]: unknown;
|
|
37080
36526
|
};
|
|
37081
36527
|
content?: never;
|
|
37082
36528
|
};
|
|
37083
|
-
/** @description
|
|
37084
|
-
|
|
36529
|
+
/** @description Validation Error */
|
|
36530
|
+
422: {
|
|
36531
|
+
headers: {
|
|
36532
|
+
[name: string]: unknown;
|
|
36533
|
+
};
|
|
36534
|
+
content: {
|
|
36535
|
+
"application/json": components["schemas"]["HTTPValidationError"];
|
|
36536
|
+
};
|
|
36537
|
+
};
|
|
36538
|
+
/** @description Rate limited */
|
|
36539
|
+
429: {
|
|
37085
36540
|
headers: {
|
|
37086
36541
|
[name: string]: unknown;
|
|
37087
36542
|
};
|
|
@@ -37089,7 +36544,7 @@ export interface operations {
|
|
|
37089
36544
|
};
|
|
37090
36545
|
};
|
|
37091
36546
|
};
|
|
37092
|
-
"
|
|
36547
|
+
"test-function": {
|
|
37093
36548
|
parameters: {
|
|
37094
36549
|
query?: never;
|
|
37095
36550
|
header?: never;
|
|
@@ -37099,7 +36554,11 @@ export interface operations {
|
|
|
37099
36554
|
};
|
|
37100
36555
|
cookie?: never;
|
|
37101
36556
|
};
|
|
37102
|
-
requestBody
|
|
36557
|
+
requestBody: {
|
|
36558
|
+
content: {
|
|
36559
|
+
"application/json": components["schemas"]["FunctionTestRequest"];
|
|
36560
|
+
};
|
|
36561
|
+
};
|
|
37103
36562
|
responses: {
|
|
37104
36563
|
/** @description Successful Response */
|
|
37105
36564
|
200: {
|
|
@@ -37107,9 +36566,7 @@ export interface operations {
|
|
|
37107
36566
|
[name: string]: unknown;
|
|
37108
36567
|
};
|
|
37109
36568
|
content: {
|
|
37110
|
-
"application/json":
|
|
37111
|
-
[key: string]: string;
|
|
37112
|
-
};
|
|
36569
|
+
"application/json": components["schemas"]["FunctionTestResponse"];
|
|
37113
36570
|
};
|
|
37114
36571
|
};
|
|
37115
36572
|
/** @description Function not found */
|
|
@@ -37135,9 +36592,16 @@ export interface operations {
|
|
|
37135
36592
|
};
|
|
37136
36593
|
content?: never;
|
|
37137
36594
|
};
|
|
36595
|
+
/** @description Agent engine unavailable */
|
|
36596
|
+
503: {
|
|
36597
|
+
headers: {
|
|
36598
|
+
[name: string]: unknown;
|
|
36599
|
+
};
|
|
36600
|
+
content?: never;
|
|
36601
|
+
};
|
|
37138
36602
|
};
|
|
37139
36603
|
};
|
|
37140
|
-
"
|
|
36604
|
+
"test-function-v2": {
|
|
37141
36605
|
parameters: {
|
|
37142
36606
|
query?: never;
|
|
37143
36607
|
header?: never;
|
|
@@ -37159,7 +36623,7 @@ export interface operations {
|
|
|
37159
36623
|
[name: string]: unknown;
|
|
37160
36624
|
};
|
|
37161
36625
|
content: {
|
|
37162
|
-
"application/json": components["schemas"]["
|
|
36626
|
+
"application/json": components["schemas"]["TestInvokeResponse"];
|
|
37163
36627
|
};
|
|
37164
36628
|
};
|
|
37165
36629
|
/** @description Function not found */
|
|
@@ -37169,12 +36633,14 @@ export interface operations {
|
|
|
37169
36633
|
};
|
|
37170
36634
|
content?: never;
|
|
37171
36635
|
};
|
|
37172
|
-
/** @description
|
|
36636
|
+
/** @description Validation Error */
|
|
37173
36637
|
422: {
|
|
37174
36638
|
headers: {
|
|
37175
36639
|
[name: string]: unknown;
|
|
37176
36640
|
};
|
|
37177
|
-
content
|
|
36641
|
+
content: {
|
|
36642
|
+
"application/json": components["schemas"]["HTTPValidationError"];
|
|
36643
|
+
};
|
|
37178
36644
|
};
|
|
37179
36645
|
/** @description Rate limited */
|
|
37180
36646
|
429: {
|
|
@@ -37192,9 +36658,11 @@ export interface operations {
|
|
|
37192
36658
|
};
|
|
37193
36659
|
};
|
|
37194
36660
|
};
|
|
37195
|
-
"
|
|
36661
|
+
"get-function-version": {
|
|
37196
36662
|
parameters: {
|
|
37197
|
-
query?:
|
|
36663
|
+
query?: {
|
|
36664
|
+
alias?: "latest" | "staging" | "production";
|
|
36665
|
+
};
|
|
37198
36666
|
header?: never;
|
|
37199
36667
|
path: {
|
|
37200
36668
|
workspace_id: string;
|
|
@@ -37202,11 +36670,7 @@ export interface operations {
|
|
|
37202
36670
|
};
|
|
37203
36671
|
cookie?: never;
|
|
37204
36672
|
};
|
|
37205
|
-
requestBody
|
|
37206
|
-
content: {
|
|
37207
|
-
"application/json": components["schemas"]["PromoteRequest"];
|
|
37208
|
-
};
|
|
37209
|
-
};
|
|
36673
|
+
requestBody?: never;
|
|
37210
36674
|
responses: {
|
|
37211
36675
|
/** @description Successful Response */
|
|
37212
36676
|
200: {
|
|
@@ -37214,10 +36678,10 @@ export interface operations {
|
|
|
37214
36678
|
[name: string]: unknown;
|
|
37215
36679
|
};
|
|
37216
36680
|
content: {
|
|
37217
|
-
"application/json": components["schemas"]["
|
|
36681
|
+
"application/json": components["schemas"]["FunctionVersionResponse"];
|
|
37218
36682
|
};
|
|
37219
36683
|
};
|
|
37220
|
-
/** @description Function
|
|
36684
|
+
/** @description Function not found */
|
|
37221
36685
|
404: {
|
|
37222
36686
|
headers: {
|
|
37223
36687
|
[name: string]: unknown;
|
|
@@ -37242,7 +36706,7 @@ export interface operations {
|
|
|
37242
36706
|
};
|
|
37243
36707
|
};
|
|
37244
36708
|
};
|
|
37245
|
-
"
|
|
36709
|
+
"list-function-versions": {
|
|
37246
36710
|
parameters: {
|
|
37247
36711
|
query?: never;
|
|
37248
36712
|
header?: never;
|
|
@@ -37252,11 +36716,7 @@ export interface operations {
|
|
|
37252
36716
|
};
|
|
37253
36717
|
cookie?: never;
|
|
37254
36718
|
};
|
|
37255
|
-
requestBody
|
|
37256
|
-
content: {
|
|
37257
|
-
"application/json": components["schemas"]["RollbackRequest"];
|
|
37258
|
-
};
|
|
37259
|
-
};
|
|
36719
|
+
requestBody?: never;
|
|
37260
36720
|
responses: {
|
|
37261
36721
|
/** @description Successful Response */
|
|
37262
36722
|
200: {
|
|
@@ -37264,218 +36724,10 @@ export interface operations {
|
|
|
37264
36724
|
[name: string]: unknown;
|
|
37265
36725
|
};
|
|
37266
36726
|
content: {
|
|
37267
|
-
"application/json": components["schemas"]["
|
|
36727
|
+
"application/json": components["schemas"]["FunctionVersionListResponse"];
|
|
37268
36728
|
};
|
|
37269
36729
|
};
|
|
37270
|
-
/** @description Function
|
|
37271
|
-
404: {
|
|
37272
|
-
headers: {
|
|
37273
|
-
[name: string]: unknown;
|
|
37274
|
-
};
|
|
37275
|
-
content?: never;
|
|
37276
|
-
};
|
|
37277
|
-
/** @description Validation Error */
|
|
37278
|
-
422: {
|
|
37279
|
-
headers: {
|
|
37280
|
-
[name: string]: unknown;
|
|
37281
|
-
};
|
|
37282
|
-
content: {
|
|
37283
|
-
"application/json": components["schemas"]["HTTPValidationError"];
|
|
37284
|
-
};
|
|
37285
|
-
};
|
|
37286
|
-
/** @description Rate limited */
|
|
37287
|
-
429: {
|
|
37288
|
-
headers: {
|
|
37289
|
-
[name: string]: unknown;
|
|
37290
|
-
};
|
|
37291
|
-
content?: never;
|
|
37292
|
-
};
|
|
37293
|
-
};
|
|
37294
|
-
};
|
|
37295
|
-
"test-function": {
|
|
37296
|
-
parameters: {
|
|
37297
|
-
query?: never;
|
|
37298
|
-
header?: never;
|
|
37299
|
-
path: {
|
|
37300
|
-
workspace_id: string;
|
|
37301
|
-
function_name: string;
|
|
37302
|
-
};
|
|
37303
|
-
cookie?: never;
|
|
37304
|
-
};
|
|
37305
|
-
requestBody: {
|
|
37306
|
-
content: {
|
|
37307
|
-
"application/json": components["schemas"]["FunctionTestRequest"];
|
|
37308
|
-
};
|
|
37309
|
-
};
|
|
37310
|
-
responses: {
|
|
37311
|
-
/** @description Successful Response */
|
|
37312
|
-
200: {
|
|
37313
|
-
headers: {
|
|
37314
|
-
[name: string]: unknown;
|
|
37315
|
-
};
|
|
37316
|
-
content: {
|
|
37317
|
-
"application/json": components["schemas"]["FunctionTestResponse"];
|
|
37318
|
-
};
|
|
37319
|
-
};
|
|
37320
|
-
/** @description Function not found */
|
|
37321
|
-
404: {
|
|
37322
|
-
headers: {
|
|
37323
|
-
[name: string]: unknown;
|
|
37324
|
-
};
|
|
37325
|
-
content?: never;
|
|
37326
|
-
};
|
|
37327
|
-
/** @description Validation Error */
|
|
37328
|
-
422: {
|
|
37329
|
-
headers: {
|
|
37330
|
-
[name: string]: unknown;
|
|
37331
|
-
};
|
|
37332
|
-
content: {
|
|
37333
|
-
"application/json": components["schemas"]["HTTPValidationError"];
|
|
37334
|
-
};
|
|
37335
|
-
};
|
|
37336
|
-
/** @description Rate limited */
|
|
37337
|
-
429: {
|
|
37338
|
-
headers: {
|
|
37339
|
-
[name: string]: unknown;
|
|
37340
|
-
};
|
|
37341
|
-
content?: never;
|
|
37342
|
-
};
|
|
37343
|
-
/** @description Agent engine unavailable */
|
|
37344
|
-
503: {
|
|
37345
|
-
headers: {
|
|
37346
|
-
[name: string]: unknown;
|
|
37347
|
-
};
|
|
37348
|
-
content?: never;
|
|
37349
|
-
};
|
|
37350
|
-
};
|
|
37351
|
-
};
|
|
37352
|
-
"test-function-v2": {
|
|
37353
|
-
parameters: {
|
|
37354
|
-
query?: never;
|
|
37355
|
-
header?: never;
|
|
37356
|
-
path: {
|
|
37357
|
-
workspace_id: string;
|
|
37358
|
-
function_name: string;
|
|
37359
|
-
};
|
|
37360
|
-
cookie?: never;
|
|
37361
|
-
};
|
|
37362
|
-
requestBody: {
|
|
37363
|
-
content: {
|
|
37364
|
-
"application/json": components["schemas"]["InvokeRequest"];
|
|
37365
|
-
};
|
|
37366
|
-
};
|
|
37367
|
-
responses: {
|
|
37368
|
-
/** @description Successful Response */
|
|
37369
|
-
200: {
|
|
37370
|
-
headers: {
|
|
37371
|
-
[name: string]: unknown;
|
|
37372
|
-
};
|
|
37373
|
-
content: {
|
|
37374
|
-
"application/json": components["schemas"]["TestInvokeResponse"];
|
|
37375
|
-
};
|
|
37376
|
-
};
|
|
37377
|
-
/** @description Function not found */
|
|
37378
|
-
404: {
|
|
37379
|
-
headers: {
|
|
37380
|
-
[name: string]: unknown;
|
|
37381
|
-
};
|
|
37382
|
-
content?: never;
|
|
37383
|
-
};
|
|
37384
|
-
/** @description Validation Error */
|
|
37385
|
-
422: {
|
|
37386
|
-
headers: {
|
|
37387
|
-
[name: string]: unknown;
|
|
37388
|
-
};
|
|
37389
|
-
content: {
|
|
37390
|
-
"application/json": components["schemas"]["HTTPValidationError"];
|
|
37391
|
-
};
|
|
37392
|
-
};
|
|
37393
|
-
/** @description Rate limited */
|
|
37394
|
-
429: {
|
|
37395
|
-
headers: {
|
|
37396
|
-
[name: string]: unknown;
|
|
37397
|
-
};
|
|
37398
|
-
content?: never;
|
|
37399
|
-
};
|
|
37400
|
-
/** @description Databricks SQL client unavailable */
|
|
37401
|
-
503: {
|
|
37402
|
-
headers: {
|
|
37403
|
-
[name: string]: unknown;
|
|
37404
|
-
};
|
|
37405
|
-
content?: never;
|
|
37406
|
-
};
|
|
37407
|
-
};
|
|
37408
|
-
};
|
|
37409
|
-
"get-function-version": {
|
|
37410
|
-
parameters: {
|
|
37411
|
-
query?: {
|
|
37412
|
-
alias?: "latest" | "staging" | "production";
|
|
37413
|
-
};
|
|
37414
|
-
header?: never;
|
|
37415
|
-
path: {
|
|
37416
|
-
workspace_id: string;
|
|
37417
|
-
function_name: string;
|
|
37418
|
-
};
|
|
37419
|
-
cookie?: never;
|
|
37420
|
-
};
|
|
37421
|
-
requestBody?: never;
|
|
37422
|
-
responses: {
|
|
37423
|
-
/** @description Successful Response */
|
|
37424
|
-
200: {
|
|
37425
|
-
headers: {
|
|
37426
|
-
[name: string]: unknown;
|
|
37427
|
-
};
|
|
37428
|
-
content: {
|
|
37429
|
-
"application/json": components["schemas"]["FunctionVersionResponse"];
|
|
37430
|
-
};
|
|
37431
|
-
};
|
|
37432
|
-
/** @description Function not found */
|
|
37433
|
-
404: {
|
|
37434
|
-
headers: {
|
|
37435
|
-
[name: string]: unknown;
|
|
37436
|
-
};
|
|
37437
|
-
content?: never;
|
|
37438
|
-
};
|
|
37439
|
-
/** @description Validation Error */
|
|
37440
|
-
422: {
|
|
37441
|
-
headers: {
|
|
37442
|
-
[name: string]: unknown;
|
|
37443
|
-
};
|
|
37444
|
-
content: {
|
|
37445
|
-
"application/json": components["schemas"]["HTTPValidationError"];
|
|
37446
|
-
};
|
|
37447
|
-
};
|
|
37448
|
-
/** @description Rate limited */
|
|
37449
|
-
429: {
|
|
37450
|
-
headers: {
|
|
37451
|
-
[name: string]: unknown;
|
|
37452
|
-
};
|
|
37453
|
-
content?: never;
|
|
37454
|
-
};
|
|
37455
|
-
};
|
|
37456
|
-
};
|
|
37457
|
-
"list-function-versions": {
|
|
37458
|
-
parameters: {
|
|
37459
|
-
query?: never;
|
|
37460
|
-
header?: never;
|
|
37461
|
-
path: {
|
|
37462
|
-
workspace_id: string;
|
|
37463
|
-
function_name: string;
|
|
37464
|
-
};
|
|
37465
|
-
cookie?: never;
|
|
37466
|
-
};
|
|
37467
|
-
requestBody?: never;
|
|
37468
|
-
responses: {
|
|
37469
|
-
/** @description Successful Response */
|
|
37470
|
-
200: {
|
|
37471
|
-
headers: {
|
|
37472
|
-
[name: string]: unknown;
|
|
37473
|
-
};
|
|
37474
|
-
content: {
|
|
37475
|
-
"application/json": components["schemas"]["FunctionVersionListResponse"];
|
|
37476
|
-
};
|
|
37477
|
-
};
|
|
37478
|
-
/** @description Function not found */
|
|
36730
|
+
/** @description Function not found */
|
|
37479
36731
|
404: {
|
|
37480
36732
|
headers: {
|
|
37481
36733
|
[name: string]: unknown;
|
|
@@ -38356,46 +37608,6 @@ export interface operations {
|
|
|
38356
37608
|
};
|
|
38357
37609
|
};
|
|
38358
37610
|
};
|
|
38359
|
-
"execute-workspace-query": {
|
|
38360
|
-
parameters: {
|
|
38361
|
-
query?: never;
|
|
38362
|
-
header?: never;
|
|
38363
|
-
path: {
|
|
38364
|
-
workspace_id: string;
|
|
38365
|
-
};
|
|
38366
|
-
cookie?: never;
|
|
38367
|
-
};
|
|
38368
|
-
requestBody: {
|
|
38369
|
-
content: {
|
|
38370
|
-
"application/json": components["schemas"]["ExecuteQueryRequest"];
|
|
38371
|
-
};
|
|
38372
|
-
};
|
|
38373
|
-
responses: {
|
|
38374
|
-
/** @description Successful Response */
|
|
38375
|
-
200: {
|
|
38376
|
-
headers: {
|
|
38377
|
-
[name: string]: unknown;
|
|
38378
|
-
};
|
|
38379
|
-
content: {
|
|
38380
|
-
"application/json": components["schemas"]["QueryResultResponse"];
|
|
38381
|
-
};
|
|
38382
|
-
};
|
|
38383
|
-
/** @description Validation error */
|
|
38384
|
-
422: {
|
|
38385
|
-
headers: {
|
|
38386
|
-
[name: string]: unknown;
|
|
38387
|
-
};
|
|
38388
|
-
content?: never;
|
|
38389
|
-
};
|
|
38390
|
-
/** @description Rate limited */
|
|
38391
|
-
429: {
|
|
38392
|
-
headers: {
|
|
38393
|
-
[name: string]: unknown;
|
|
38394
|
-
};
|
|
38395
|
-
content?: never;
|
|
38396
|
-
};
|
|
38397
|
-
};
|
|
38398
|
-
};
|
|
38399
37611
|
list_anomalies_ranked_v1__workspace_id__m42_anomalies_ranked_get: {
|
|
38400
37612
|
parameters: {
|
|
38401
37613
|
query?: {
|
|
@@ -41495,9 +40707,9 @@ export interface operations {
|
|
|
41495
40707
|
"list-prompt-logs": {
|
|
41496
40708
|
parameters: {
|
|
41497
40709
|
query?: {
|
|
41498
|
-
/** @description Conversation entity UUID (canonical identifier across all modalities — voice, text/web, sms, sim
|
|
40710
|
+
/** @description Conversation entity UUID (canonical identifier across all modalities — voice, text/web, sms, sim). Resolves to the underlying ``call_sid`` via ``world.entities``. Mutually exclusive with the ``call_sid`` query parameter. */
|
|
41499
40711
|
conversation_id?: string | null;
|
|
41500
|
-
/** @description Direct conversation identifier as stored on the prompt-log event: Twilio CA-SID for voice calls, session_id UUID for text/sim
|
|
40712
|
+
/** @description Direct conversation identifier as stored on the prompt-log event: Twilio CA-SID for voice calls, session_id UUID for text/sim sessions. Most callers should use ``conversation_id`` instead — this is kept for legacy callers and external systems that hold the SID directly. Mutually exclusive with ``conversation_id``. */
|
|
41501
40713
|
call_sid?: string | null;
|
|
41502
40714
|
/** @description Filter by prompt_type (e.g. engage_user, navigation, tool) */
|
|
41503
40715
|
prompt_type?: string | null;
|
|
@@ -41568,213 +40780,6 @@ export interface operations {
|
|
|
41568
40780
|
};
|
|
41569
40781
|
};
|
|
41570
40782
|
};
|
|
41571
|
-
"list-query-tools": {
|
|
41572
|
-
parameters: {
|
|
41573
|
-
query?: {
|
|
41574
|
-
limit?: number;
|
|
41575
|
-
continuation_token?: number;
|
|
41576
|
-
};
|
|
41577
|
-
header?: never;
|
|
41578
|
-
path: {
|
|
41579
|
-
workspace_id: string;
|
|
41580
|
-
};
|
|
41581
|
-
cookie?: never;
|
|
41582
|
-
};
|
|
41583
|
-
requestBody?: never;
|
|
41584
|
-
responses: {
|
|
41585
|
-
/** @description Successful Response */
|
|
41586
|
-
200: {
|
|
41587
|
-
headers: {
|
|
41588
|
-
[name: string]: unknown;
|
|
41589
|
-
};
|
|
41590
|
-
content: {
|
|
41591
|
-
"application/json": components["schemas"]["PaginatedResponse_ToolResponse_"];
|
|
41592
|
-
};
|
|
41593
|
-
};
|
|
41594
|
-
/** @description Validation Error */
|
|
41595
|
-
422: {
|
|
41596
|
-
headers: {
|
|
41597
|
-
[name: string]: unknown;
|
|
41598
|
-
};
|
|
41599
|
-
content: {
|
|
41600
|
-
"application/json": components["schemas"]["HTTPValidationError"];
|
|
41601
|
-
};
|
|
41602
|
-
};
|
|
41603
|
-
/** @description Rate limited */
|
|
41604
|
-
429: {
|
|
41605
|
-
headers: {
|
|
41606
|
-
[name: string]: unknown;
|
|
41607
|
-
};
|
|
41608
|
-
content?: never;
|
|
41609
|
-
};
|
|
41610
|
-
};
|
|
41611
|
-
};
|
|
41612
|
-
"create-query-tool": {
|
|
41613
|
-
parameters: {
|
|
41614
|
-
query?: never;
|
|
41615
|
-
header?: never;
|
|
41616
|
-
path: {
|
|
41617
|
-
workspace_id: string;
|
|
41618
|
-
};
|
|
41619
|
-
cookie?: never;
|
|
41620
|
-
};
|
|
41621
|
-
requestBody: {
|
|
41622
|
-
content: {
|
|
41623
|
-
"application/json": components["schemas"]["CreateToolRequest"];
|
|
41624
|
-
};
|
|
41625
|
-
};
|
|
41626
|
-
responses: {
|
|
41627
|
-
/** @description Successful Response */
|
|
41628
|
-
201: {
|
|
41629
|
-
headers: {
|
|
41630
|
-
[name: string]: unknown;
|
|
41631
|
-
};
|
|
41632
|
-
content: {
|
|
41633
|
-
"application/json": components["schemas"]["ToolResponse"];
|
|
41634
|
-
};
|
|
41635
|
-
};
|
|
41636
|
-
/** @description Validation error */
|
|
41637
|
-
422: {
|
|
41638
|
-
headers: {
|
|
41639
|
-
[name: string]: unknown;
|
|
41640
|
-
};
|
|
41641
|
-
content?: never;
|
|
41642
|
-
};
|
|
41643
|
-
/** @description Rate limited */
|
|
41644
|
-
429: {
|
|
41645
|
-
headers: {
|
|
41646
|
-
[name: string]: unknown;
|
|
41647
|
-
};
|
|
41648
|
-
content?: never;
|
|
41649
|
-
};
|
|
41650
|
-
};
|
|
41651
|
-
};
|
|
41652
|
-
"delete-query-tool": {
|
|
41653
|
-
parameters: {
|
|
41654
|
-
query?: never;
|
|
41655
|
-
header?: never;
|
|
41656
|
-
path: {
|
|
41657
|
-
workspace_id: string;
|
|
41658
|
-
tool_id: string;
|
|
41659
|
-
};
|
|
41660
|
-
cookie?: never;
|
|
41661
|
-
};
|
|
41662
|
-
requestBody?: never;
|
|
41663
|
-
responses: {
|
|
41664
|
-
/** @description Successful Response */
|
|
41665
|
-
204: {
|
|
41666
|
-
headers: {
|
|
41667
|
-
[name: string]: unknown;
|
|
41668
|
-
};
|
|
41669
|
-
content?: never;
|
|
41670
|
-
};
|
|
41671
|
-
/** @description Validation Error */
|
|
41672
|
-
422: {
|
|
41673
|
-
headers: {
|
|
41674
|
-
[name: string]: unknown;
|
|
41675
|
-
};
|
|
41676
|
-
content: {
|
|
41677
|
-
"application/json": components["schemas"]["HTTPValidationError"];
|
|
41678
|
-
};
|
|
41679
|
-
};
|
|
41680
|
-
/** @description Rate limited */
|
|
41681
|
-
429: {
|
|
41682
|
-
headers: {
|
|
41683
|
-
[name: string]: unknown;
|
|
41684
|
-
};
|
|
41685
|
-
content?: never;
|
|
41686
|
-
};
|
|
41687
|
-
};
|
|
41688
|
-
};
|
|
41689
|
-
"update-query-tool": {
|
|
41690
|
-
parameters: {
|
|
41691
|
-
query?: never;
|
|
41692
|
-
header?: never;
|
|
41693
|
-
path: {
|
|
41694
|
-
workspace_id: string;
|
|
41695
|
-
tool_id: string;
|
|
41696
|
-
};
|
|
41697
|
-
cookie?: never;
|
|
41698
|
-
};
|
|
41699
|
-
requestBody: {
|
|
41700
|
-
content: {
|
|
41701
|
-
"application/json": components["schemas"]["UpdateToolRequest"];
|
|
41702
|
-
};
|
|
41703
|
-
};
|
|
41704
|
-
responses: {
|
|
41705
|
-
/** @description Successful Response */
|
|
41706
|
-
200: {
|
|
41707
|
-
headers: {
|
|
41708
|
-
[name: string]: unknown;
|
|
41709
|
-
};
|
|
41710
|
-
content: {
|
|
41711
|
-
"application/json": components["schemas"]["ToolResponse"];
|
|
41712
|
-
};
|
|
41713
|
-
};
|
|
41714
|
-
/** @description Tool not found */
|
|
41715
|
-
404: {
|
|
41716
|
-
headers: {
|
|
41717
|
-
[name: string]: unknown;
|
|
41718
|
-
};
|
|
41719
|
-
content?: never;
|
|
41720
|
-
};
|
|
41721
|
-
/** @description Validation error */
|
|
41722
|
-
422: {
|
|
41723
|
-
headers: {
|
|
41724
|
-
[name: string]: unknown;
|
|
41725
|
-
};
|
|
41726
|
-
content?: never;
|
|
41727
|
-
};
|
|
41728
|
-
/** @description Rate limited */
|
|
41729
|
-
429: {
|
|
41730
|
-
headers: {
|
|
41731
|
-
[name: string]: unknown;
|
|
41732
|
-
};
|
|
41733
|
-
content?: never;
|
|
41734
|
-
};
|
|
41735
|
-
};
|
|
41736
|
-
};
|
|
41737
|
-
"test-query-tool": {
|
|
41738
|
-
parameters: {
|
|
41739
|
-
query?: never;
|
|
41740
|
-
header?: never;
|
|
41741
|
-
path: {
|
|
41742
|
-
workspace_id: string;
|
|
41743
|
-
tool_id: string;
|
|
41744
|
-
};
|
|
41745
|
-
cookie?: never;
|
|
41746
|
-
};
|
|
41747
|
-
requestBody: {
|
|
41748
|
-
content: {
|
|
41749
|
-
"application/json": components["schemas"]["TestToolRequest"];
|
|
41750
|
-
};
|
|
41751
|
-
};
|
|
41752
|
-
responses: {
|
|
41753
|
-
/** @description Successful Response */
|
|
41754
|
-
200: {
|
|
41755
|
-
headers: {
|
|
41756
|
-
[name: string]: unknown;
|
|
41757
|
-
};
|
|
41758
|
-
content: {
|
|
41759
|
-
"application/json": components["schemas"]["QueryResultResponse"];
|
|
41760
|
-
};
|
|
41761
|
-
};
|
|
41762
|
-
/** @description Validation error */
|
|
41763
|
-
422: {
|
|
41764
|
-
headers: {
|
|
41765
|
-
[name: string]: unknown;
|
|
41766
|
-
};
|
|
41767
|
-
content?: never;
|
|
41768
|
-
};
|
|
41769
|
-
/** @description Rate limited */
|
|
41770
|
-
429: {
|
|
41771
|
-
headers: {
|
|
41772
|
-
[name: string]: unknown;
|
|
41773
|
-
};
|
|
41774
|
-
content?: never;
|
|
41775
|
-
};
|
|
41776
|
-
};
|
|
41777
|
-
};
|
|
41778
40783
|
query_table_v1__workspace_id__query__schema___table__get: {
|
|
41779
40784
|
parameters: {
|
|
41780
40785
|
query?: {
|
|
@@ -42884,134 +41889,14 @@ export interface operations {
|
|
|
42884
41889
|
};
|
|
42885
41890
|
content?: never;
|
|
42886
41891
|
};
|
|
42887
|
-
/** @description Validation Error */
|
|
42888
|
-
422: {
|
|
42889
|
-
headers: {
|
|
42890
|
-
[name: string]: unknown;
|
|
42891
|
-
};
|
|
42892
|
-
content: {
|
|
42893
|
-
"application/json": components["schemas"]["HTTPValidationError"];
|
|
42894
|
-
};
|
|
42895
|
-
};
|
|
42896
|
-
/** @description Rate limited. */
|
|
42897
|
-
429: {
|
|
42898
|
-
headers: {
|
|
42899
|
-
[name: string]: unknown;
|
|
42900
|
-
};
|
|
42901
|
-
content?: never;
|
|
42902
|
-
};
|
|
42903
|
-
};
|
|
42904
|
-
};
|
|
42905
|
-
"delete-scheduling-rule-set": {
|
|
42906
|
-
parameters: {
|
|
42907
|
-
query?: never;
|
|
42908
|
-
header?: never;
|
|
42909
|
-
path: {
|
|
42910
|
-
workspace_id: string;
|
|
42911
|
-
rule_set_id: string;
|
|
42912
|
-
};
|
|
42913
|
-
cookie?: never;
|
|
42914
|
-
};
|
|
42915
|
-
requestBody?: never;
|
|
42916
|
-
responses: {
|
|
42917
|
-
/** @description Successful Response */
|
|
42918
|
-
204: {
|
|
42919
|
-
headers: {
|
|
42920
|
-
[name: string]: unknown;
|
|
42921
|
-
};
|
|
42922
|
-
content?: never;
|
|
42923
|
-
};
|
|
42924
|
-
/** @description Missing or invalid API key. */
|
|
42925
|
-
401: {
|
|
42926
|
-
headers: {
|
|
42927
|
-
[name: string]: unknown;
|
|
42928
|
-
};
|
|
42929
|
-
content?: never;
|
|
42930
|
-
};
|
|
42931
|
-
/** @description Insufficient permissions. */
|
|
42932
|
-
403: {
|
|
42933
|
-
headers: {
|
|
42934
|
-
[name: string]: unknown;
|
|
42935
|
-
};
|
|
42936
|
-
content?: never;
|
|
42937
|
-
};
|
|
42938
|
-
/** @description Rule set not found in this workspace. */
|
|
42939
|
-
404: {
|
|
42940
|
-
headers: {
|
|
42941
|
-
[name: string]: unknown;
|
|
42942
|
-
};
|
|
42943
|
-
content?: never;
|
|
42944
|
-
};
|
|
42945
|
-
/** @description Validation Error */
|
|
42946
|
-
422: {
|
|
42947
|
-
headers: {
|
|
42948
|
-
[name: string]: unknown;
|
|
42949
|
-
};
|
|
42950
|
-
content: {
|
|
42951
|
-
"application/json": components["schemas"]["HTTPValidationError"];
|
|
42952
|
-
};
|
|
42953
|
-
};
|
|
42954
|
-
/** @description Rate limited. */
|
|
42955
|
-
429: {
|
|
42956
|
-
headers: {
|
|
42957
|
-
[name: string]: unknown;
|
|
42958
|
-
};
|
|
42959
|
-
content?: never;
|
|
42960
|
-
};
|
|
42961
|
-
};
|
|
42962
|
-
};
|
|
42963
|
-
"update-scheduling-rule-set": {
|
|
42964
|
-
parameters: {
|
|
42965
|
-
query?: never;
|
|
42966
|
-
header?: never;
|
|
42967
|
-
path: {
|
|
42968
|
-
workspace_id: string;
|
|
42969
|
-
rule_set_id: string;
|
|
42970
|
-
};
|
|
42971
|
-
cookie?: never;
|
|
42972
|
-
};
|
|
42973
|
-
requestBody: {
|
|
42974
|
-
content: {
|
|
42975
|
-
"application/json": components["schemas"]["UpdateSchedulingRuleSetRequest"];
|
|
42976
|
-
};
|
|
42977
|
-
};
|
|
42978
|
-
responses: {
|
|
42979
|
-
/** @description Successful Response */
|
|
42980
|
-
200: {
|
|
42981
|
-
headers: {
|
|
42982
|
-
[name: string]: unknown;
|
|
42983
|
-
};
|
|
42984
|
-
content: {
|
|
42985
|
-
"application/json": components["schemas"]["SchedulingRuleSetResponse"];
|
|
42986
|
-
};
|
|
42987
|
-
};
|
|
42988
|
-
/** @description Missing or invalid API key. */
|
|
42989
|
-
401: {
|
|
42990
|
-
headers: {
|
|
42991
|
-
[name: string]: unknown;
|
|
42992
|
-
};
|
|
42993
|
-
content?: never;
|
|
42994
|
-
};
|
|
42995
|
-
/** @description Insufficient permissions. */
|
|
42996
|
-
403: {
|
|
42997
|
-
headers: {
|
|
42998
|
-
[name: string]: unknown;
|
|
42999
|
-
};
|
|
43000
|
-
content?: never;
|
|
43001
|
-
};
|
|
43002
|
-
/** @description Rule set not found in this workspace. */
|
|
43003
|
-
404: {
|
|
43004
|
-
headers: {
|
|
43005
|
-
[name: string]: unknown;
|
|
43006
|
-
};
|
|
43007
|
-
content?: never;
|
|
43008
|
-
};
|
|
43009
|
-
/** @description Submitted params discriminator does not match the existing rule's rule_kind. */
|
|
41892
|
+
/** @description Validation Error */
|
|
43010
41893
|
422: {
|
|
43011
41894
|
headers: {
|
|
43012
41895
|
[name: string]: unknown;
|
|
43013
41896
|
};
|
|
43014
|
-
content
|
|
41897
|
+
content: {
|
|
41898
|
+
"application/json": components["schemas"]["HTTPValidationError"];
|
|
41899
|
+
};
|
|
43015
41900
|
};
|
|
43016
41901
|
/** @description Rate limited. */
|
|
43017
41902
|
429: {
|
|
@@ -43022,66 +41907,45 @@ export interface operations {
|
|
|
43022
41907
|
};
|
|
43023
41908
|
};
|
|
43024
41909
|
};
|
|
43025
|
-
"
|
|
41910
|
+
"delete-scheduling-rule-set": {
|
|
43026
41911
|
parameters: {
|
|
43027
41912
|
query?: never;
|
|
43028
41913
|
header?: never;
|
|
43029
41914
|
path: {
|
|
43030
41915
|
workspace_id: string;
|
|
43031
|
-
|
|
41916
|
+
rule_set_id: string;
|
|
43032
41917
|
};
|
|
43033
41918
|
cookie?: never;
|
|
43034
41919
|
};
|
|
43035
41920
|
requestBody?: never;
|
|
43036
41921
|
responses: {
|
|
43037
41922
|
/** @description Successful Response */
|
|
43038
|
-
|
|
41923
|
+
204: {
|
|
43039
41924
|
headers: {
|
|
43040
41925
|
[name: string]: unknown;
|
|
43041
41926
|
};
|
|
43042
|
-
content
|
|
43043
|
-
"application/json": {
|
|
43044
|
-
[key: string]: unknown;
|
|
43045
|
-
};
|
|
43046
|
-
};
|
|
41927
|
+
content?: never;
|
|
43047
41928
|
};
|
|
43048
|
-
/** @description
|
|
43049
|
-
|
|
41929
|
+
/** @description Missing or invalid API key. */
|
|
41930
|
+
401: {
|
|
43050
41931
|
headers: {
|
|
43051
41932
|
[name: string]: unknown;
|
|
43052
41933
|
};
|
|
43053
|
-
content
|
|
43054
|
-
"application/json": components["schemas"]["HTTPValidationError"];
|
|
43055
|
-
};
|
|
43056
|
-
};
|
|
43057
|
-
};
|
|
43058
|
-
};
|
|
43059
|
-
"approve-icd10-code": {
|
|
43060
|
-
parameters: {
|
|
43061
|
-
query?: never;
|
|
43062
|
-
header?: never;
|
|
43063
|
-
path: {
|
|
43064
|
-
workspace_id: string;
|
|
43065
|
-
encounter_id: string;
|
|
43066
|
-
};
|
|
43067
|
-
cookie?: never;
|
|
43068
|
-
};
|
|
43069
|
-
requestBody: {
|
|
43070
|
-
content: {
|
|
43071
|
-
"application/json": components["schemas"]["ApproveICD10Request"];
|
|
41934
|
+
content?: never;
|
|
43072
41935
|
};
|
|
43073
|
-
|
|
43074
|
-
|
|
43075
|
-
/** @description Successful Response */
|
|
43076
|
-
200: {
|
|
41936
|
+
/** @description Insufficient permissions. */
|
|
41937
|
+
403: {
|
|
43077
41938
|
headers: {
|
|
43078
41939
|
[name: string]: unknown;
|
|
43079
41940
|
};
|
|
43080
|
-
content
|
|
43081
|
-
|
|
43082
|
-
|
|
43083
|
-
|
|
41941
|
+
content?: never;
|
|
41942
|
+
};
|
|
41943
|
+
/** @description Rule set not found in this workspace. */
|
|
41944
|
+
404: {
|
|
41945
|
+
headers: {
|
|
41946
|
+
[name: string]: unknown;
|
|
43084
41947
|
};
|
|
41948
|
+
content?: never;
|
|
43085
41949
|
};
|
|
43086
41950
|
/** @description Validation Error */
|
|
43087
41951
|
422: {
|
|
@@ -43092,21 +41956,28 @@ export interface operations {
|
|
|
43092
41956
|
"application/json": components["schemas"]["HTTPValidationError"];
|
|
43093
41957
|
};
|
|
43094
41958
|
};
|
|
41959
|
+
/** @description Rate limited. */
|
|
41960
|
+
429: {
|
|
41961
|
+
headers: {
|
|
41962
|
+
[name: string]: unknown;
|
|
41963
|
+
};
|
|
41964
|
+
content?: never;
|
|
41965
|
+
};
|
|
43095
41966
|
};
|
|
43096
41967
|
};
|
|
43097
|
-
"
|
|
41968
|
+
"update-scheduling-rule-set": {
|
|
43098
41969
|
parameters: {
|
|
43099
41970
|
query?: never;
|
|
43100
41971
|
header?: never;
|
|
43101
41972
|
path: {
|
|
43102
41973
|
workspace_id: string;
|
|
43103
|
-
|
|
41974
|
+
rule_set_id: string;
|
|
43104
41975
|
};
|
|
43105
41976
|
cookie?: never;
|
|
43106
41977
|
};
|
|
43107
41978
|
requestBody: {
|
|
43108
41979
|
content: {
|
|
43109
|
-
"application/json": components["schemas"]["
|
|
41980
|
+
"application/json": components["schemas"]["UpdateSchedulingRuleSetRequest"];
|
|
43110
41981
|
};
|
|
43111
41982
|
};
|
|
43112
41983
|
responses: {
|
|
@@ -43116,92 +41987,43 @@ export interface operations {
|
|
|
43116
41987
|
[name: string]: unknown;
|
|
43117
41988
|
};
|
|
43118
41989
|
content: {
|
|
43119
|
-
"application/json":
|
|
43120
|
-
[key: string]: unknown;
|
|
43121
|
-
};
|
|
41990
|
+
"application/json": components["schemas"]["SchedulingRuleSetResponse"];
|
|
43122
41991
|
};
|
|
43123
41992
|
};
|
|
43124
|
-
/** @description
|
|
43125
|
-
|
|
41993
|
+
/** @description Missing or invalid API key. */
|
|
41994
|
+
401: {
|
|
43126
41995
|
headers: {
|
|
43127
41996
|
[name: string]: unknown;
|
|
43128
41997
|
};
|
|
43129
|
-
content
|
|
43130
|
-
"application/json": components["schemas"]["HTTPValidationError"];
|
|
43131
|
-
};
|
|
43132
|
-
};
|
|
43133
|
-
};
|
|
43134
|
-
};
|
|
43135
|
-
"edit-encounter-soap": {
|
|
43136
|
-
parameters: {
|
|
43137
|
-
query?: never;
|
|
43138
|
-
header?: never;
|
|
43139
|
-
path: {
|
|
43140
|
-
workspace_id: string;
|
|
43141
|
-
encounter_id: string;
|
|
43142
|
-
};
|
|
43143
|
-
cookie?: never;
|
|
43144
|
-
};
|
|
43145
|
-
requestBody: {
|
|
43146
|
-
content: {
|
|
43147
|
-
"application/json": components["schemas"]["EditSoapRequest"];
|
|
41998
|
+
content?: never;
|
|
43148
41999
|
};
|
|
43149
|
-
|
|
43150
|
-
|
|
43151
|
-
/** @description Successful Response */
|
|
43152
|
-
200: {
|
|
42000
|
+
/** @description Insufficient permissions. */
|
|
42001
|
+
403: {
|
|
43153
42002
|
headers: {
|
|
43154
42003
|
[name: string]: unknown;
|
|
43155
42004
|
};
|
|
43156
|
-
content
|
|
43157
|
-
"application/json": {
|
|
43158
|
-
[key: string]: unknown;
|
|
43159
|
-
};
|
|
43160
|
-
};
|
|
42005
|
+
content?: never;
|
|
43161
42006
|
};
|
|
43162
|
-
/** @description
|
|
43163
|
-
|
|
42007
|
+
/** @description Rule set not found in this workspace. */
|
|
42008
|
+
404: {
|
|
43164
42009
|
headers: {
|
|
43165
42010
|
[name: string]: unknown;
|
|
43166
42011
|
};
|
|
43167
|
-
content
|
|
43168
|
-
"application/json": components["schemas"]["HTTPValidationError"];
|
|
43169
|
-
};
|
|
43170
|
-
};
|
|
43171
|
-
};
|
|
43172
|
-
};
|
|
43173
|
-
"transcribe-scribe-recording": {
|
|
43174
|
-
parameters: {
|
|
43175
|
-
query?: never;
|
|
43176
|
-
header?: never;
|
|
43177
|
-
path: {
|
|
43178
|
-
workspace_id: string;
|
|
43179
|
-
};
|
|
43180
|
-
cookie?: never;
|
|
43181
|
-
};
|
|
43182
|
-
requestBody: {
|
|
43183
|
-
content: {
|
|
43184
|
-
"multipart/form-data": components["schemas"]["Body_transcribe-scribe-recording"];
|
|
42012
|
+
content?: never;
|
|
43185
42013
|
};
|
|
43186
|
-
|
|
43187
|
-
|
|
43188
|
-
/** @description Successful Response */
|
|
43189
|
-
200: {
|
|
42014
|
+
/** @description Submitted params discriminator does not match the existing rule's rule_kind. */
|
|
42015
|
+
422: {
|
|
43190
42016
|
headers: {
|
|
43191
42017
|
[name: string]: unknown;
|
|
43192
42018
|
};
|
|
43193
|
-
content
|
|
43194
|
-
"application/json": components["schemas"]["ScribeTranscriptionResponse"];
|
|
43195
|
-
};
|
|
42019
|
+
content?: never;
|
|
43196
42020
|
};
|
|
43197
|
-
/** @description
|
|
43198
|
-
|
|
42021
|
+
/** @description Rate limited. */
|
|
42022
|
+
429: {
|
|
43199
42023
|
headers: {
|
|
43200
42024
|
[name: string]: unknown;
|
|
43201
42025
|
};
|
|
43202
|
-
content
|
|
43203
|
-
"application/json": components["schemas"]["HTTPValidationError"];
|
|
43204
|
-
};
|
|
42026
|
+
content?: never;
|
|
43205
42027
|
};
|
|
43206
42028
|
};
|
|
43207
42029
|
};
|
|
@@ -44838,82 +43660,6 @@ export interface operations {
|
|
|
44838
43660
|
};
|
|
44839
43661
|
};
|
|
44840
43662
|
};
|
|
44841
|
-
"get-scribe-settings": {
|
|
44842
|
-
parameters: {
|
|
44843
|
-
query?: never;
|
|
44844
|
-
header?: never;
|
|
44845
|
-
path: {
|
|
44846
|
-
workspace_id: string;
|
|
44847
|
-
};
|
|
44848
|
-
cookie?: never;
|
|
44849
|
-
};
|
|
44850
|
-
requestBody?: never;
|
|
44851
|
-
responses: {
|
|
44852
|
-
/** @description Successful Response */
|
|
44853
|
-
200: {
|
|
44854
|
-
headers: {
|
|
44855
|
-
[name: string]: unknown;
|
|
44856
|
-
};
|
|
44857
|
-
content: {
|
|
44858
|
-
"application/json": components["schemas"]["ScribeSettingsResponse"];
|
|
44859
|
-
};
|
|
44860
|
-
};
|
|
44861
|
-
/** @description Rate limited */
|
|
44862
|
-
429: {
|
|
44863
|
-
headers: {
|
|
44864
|
-
[name: string]: unknown;
|
|
44865
|
-
};
|
|
44866
|
-
content?: never;
|
|
44867
|
-
};
|
|
44868
|
-
};
|
|
44869
|
-
};
|
|
44870
|
-
"update-scribe-settings": {
|
|
44871
|
-
parameters: {
|
|
44872
|
-
query?: never;
|
|
44873
|
-
header?: never;
|
|
44874
|
-
path: {
|
|
44875
|
-
workspace_id: string;
|
|
44876
|
-
};
|
|
44877
|
-
cookie?: never;
|
|
44878
|
-
};
|
|
44879
|
-
requestBody: {
|
|
44880
|
-
content: {
|
|
44881
|
-
"application/json": components["schemas"]["ScribeSettingsRequest"];
|
|
44882
|
-
};
|
|
44883
|
-
};
|
|
44884
|
-
responses: {
|
|
44885
|
-
/** @description Successful Response */
|
|
44886
|
-
200: {
|
|
44887
|
-
headers: {
|
|
44888
|
-
[name: string]: unknown;
|
|
44889
|
-
};
|
|
44890
|
-
content: {
|
|
44891
|
-
"application/json": components["schemas"]["ScribeSettingsResponse"];
|
|
44892
|
-
};
|
|
44893
|
-
};
|
|
44894
|
-
/** @description Workspace not found */
|
|
44895
|
-
404: {
|
|
44896
|
-
headers: {
|
|
44897
|
-
[name: string]: unknown;
|
|
44898
|
-
};
|
|
44899
|
-
content?: never;
|
|
44900
|
-
};
|
|
44901
|
-
/** @description Validation error */
|
|
44902
|
-
422: {
|
|
44903
|
-
headers: {
|
|
44904
|
-
[name: string]: unknown;
|
|
44905
|
-
};
|
|
44906
|
-
content?: never;
|
|
44907
|
-
};
|
|
44908
|
-
/** @description Rate limited */
|
|
44909
|
-
429: {
|
|
44910
|
-
headers: {
|
|
44911
|
-
[name: string]: unknown;
|
|
44912
|
-
};
|
|
44913
|
-
content?: never;
|
|
44914
|
-
};
|
|
44915
|
-
};
|
|
44916
|
-
};
|
|
44917
43663
|
"get-security-settings": {
|
|
44918
43664
|
parameters: {
|
|
44919
43665
|
query?: never;
|
|
@@ -45379,6 +44125,41 @@ export interface operations {
|
|
|
45379
44125
|
};
|
|
45380
44126
|
};
|
|
45381
44127
|
};
|
|
44128
|
+
"create-simulation-cases": {
|
|
44129
|
+
parameters: {
|
|
44130
|
+
query?: never;
|
|
44131
|
+
header?: never;
|
|
44132
|
+
path: {
|
|
44133
|
+
workspace_id: string;
|
|
44134
|
+
};
|
|
44135
|
+
cookie?: never;
|
|
44136
|
+
};
|
|
44137
|
+
requestBody: {
|
|
44138
|
+
content: {
|
|
44139
|
+
"application/json": components["schemas"]["CreateSimulationCasesRequest"];
|
|
44140
|
+
};
|
|
44141
|
+
};
|
|
44142
|
+
responses: {
|
|
44143
|
+
/** @description Successful Response */
|
|
44144
|
+
200: {
|
|
44145
|
+
headers: {
|
|
44146
|
+
[name: string]: unknown;
|
|
44147
|
+
};
|
|
44148
|
+
content: {
|
|
44149
|
+
"application/json": components["schemas"]["CreateSimulationCasesResponse"];
|
|
44150
|
+
};
|
|
44151
|
+
};
|
|
44152
|
+
/** @description Validation Error */
|
|
44153
|
+
422: {
|
|
44154
|
+
headers: {
|
|
44155
|
+
[name: string]: unknown;
|
|
44156
|
+
};
|
|
44157
|
+
content: {
|
|
44158
|
+
"application/json": components["schemas"]["HTTPValidationError"];
|
|
44159
|
+
};
|
|
44160
|
+
};
|
|
44161
|
+
};
|
|
44162
|
+
};
|
|
45382
44163
|
"get-simulation-case": {
|
|
45383
44164
|
parameters: {
|
|
45384
44165
|
query?: never;
|
|
@@ -48635,143 +47416,6 @@ export interface operations {
|
|
|
48635
47416
|
};
|
|
48636
47417
|
};
|
|
48637
47418
|
};
|
|
48638
|
-
"enroll-voiceprint": {
|
|
48639
|
-
parameters: {
|
|
48640
|
-
query?: never;
|
|
48641
|
-
header?: never;
|
|
48642
|
-
path: {
|
|
48643
|
-
workspace_id: string;
|
|
48644
|
-
};
|
|
48645
|
-
cookie?: never;
|
|
48646
|
-
};
|
|
48647
|
-
requestBody: {
|
|
48648
|
-
content: {
|
|
48649
|
-
"multipart/form-data": components["schemas"]["Body_enroll-voiceprint"];
|
|
48650
|
-
};
|
|
48651
|
-
};
|
|
48652
|
-
responses: {
|
|
48653
|
-
/** @description Successful Response */
|
|
48654
|
-
201: {
|
|
48655
|
-
headers: {
|
|
48656
|
-
[name: string]: unknown;
|
|
48657
|
-
};
|
|
48658
|
-
content: {
|
|
48659
|
-
"application/json": components["schemas"]["VoiceprintEnrollResponse"];
|
|
48660
|
-
};
|
|
48661
|
-
};
|
|
48662
|
-
/** @description Bad Request */
|
|
48663
|
-
400: {
|
|
48664
|
-
headers: {
|
|
48665
|
-
[name: string]: unknown;
|
|
48666
|
-
};
|
|
48667
|
-
content?: never;
|
|
48668
|
-
};
|
|
48669
|
-
/** @description Validation Error */
|
|
48670
|
-
422: {
|
|
48671
|
-
headers: {
|
|
48672
|
-
[name: string]: unknown;
|
|
48673
|
-
};
|
|
48674
|
-
content: {
|
|
48675
|
-
"application/json": components["schemas"]["HTTPValidationError"];
|
|
48676
|
-
};
|
|
48677
|
-
};
|
|
48678
|
-
/** @description Service Unavailable */
|
|
48679
|
-
503: {
|
|
48680
|
-
headers: {
|
|
48681
|
-
[name: string]: unknown;
|
|
48682
|
-
};
|
|
48683
|
-
content?: never;
|
|
48684
|
-
};
|
|
48685
|
-
};
|
|
48686
|
-
};
|
|
48687
|
-
"verify-voiceprint": {
|
|
48688
|
-
parameters: {
|
|
48689
|
-
query?: never;
|
|
48690
|
-
header?: never;
|
|
48691
|
-
path: {
|
|
48692
|
-
workspace_id: string;
|
|
48693
|
-
};
|
|
48694
|
-
cookie?: never;
|
|
48695
|
-
};
|
|
48696
|
-
requestBody: {
|
|
48697
|
-
content: {
|
|
48698
|
-
"multipart/form-data": components["schemas"]["Body_verify-voiceprint"];
|
|
48699
|
-
};
|
|
48700
|
-
};
|
|
48701
|
-
responses: {
|
|
48702
|
-
/** @description Successful Response */
|
|
48703
|
-
200: {
|
|
48704
|
-
headers: {
|
|
48705
|
-
[name: string]: unknown;
|
|
48706
|
-
};
|
|
48707
|
-
content: {
|
|
48708
|
-
"application/json": components["schemas"]["VoiceprintVerifyResponse"];
|
|
48709
|
-
};
|
|
48710
|
-
};
|
|
48711
|
-
/** @description Bad Request */
|
|
48712
|
-
400: {
|
|
48713
|
-
headers: {
|
|
48714
|
-
[name: string]: unknown;
|
|
48715
|
-
};
|
|
48716
|
-
content?: never;
|
|
48717
|
-
};
|
|
48718
|
-
/** @description Not Found */
|
|
48719
|
-
404: {
|
|
48720
|
-
headers: {
|
|
48721
|
-
[name: string]: unknown;
|
|
48722
|
-
};
|
|
48723
|
-
content?: never;
|
|
48724
|
-
};
|
|
48725
|
-
/** @description Validation Error */
|
|
48726
|
-
422: {
|
|
48727
|
-
headers: {
|
|
48728
|
-
[name: string]: unknown;
|
|
48729
|
-
};
|
|
48730
|
-
content: {
|
|
48731
|
-
"application/json": components["schemas"]["HTTPValidationError"];
|
|
48732
|
-
};
|
|
48733
|
-
};
|
|
48734
|
-
/** @description Service Unavailable */
|
|
48735
|
-
503: {
|
|
48736
|
-
headers: {
|
|
48737
|
-
[name: string]: unknown;
|
|
48738
|
-
};
|
|
48739
|
-
content?: never;
|
|
48740
|
-
};
|
|
48741
|
-
};
|
|
48742
|
-
};
|
|
48743
|
-
"get-voiceprint-status": {
|
|
48744
|
-
parameters: {
|
|
48745
|
-
query?: never;
|
|
48746
|
-
header?: never;
|
|
48747
|
-
path: {
|
|
48748
|
-
workspace_id: string;
|
|
48749
|
-
entity_id: string;
|
|
48750
|
-
};
|
|
48751
|
-
cookie?: never;
|
|
48752
|
-
};
|
|
48753
|
-
requestBody?: never;
|
|
48754
|
-
responses: {
|
|
48755
|
-
/** @description Successful Response */
|
|
48756
|
-
200: {
|
|
48757
|
-
headers: {
|
|
48758
|
-
[name: string]: unknown;
|
|
48759
|
-
};
|
|
48760
|
-
content: {
|
|
48761
|
-
"application/json": components["schemas"]["VoiceprintStatusResponse"];
|
|
48762
|
-
};
|
|
48763
|
-
};
|
|
48764
|
-
/** @description Validation Error */
|
|
48765
|
-
422: {
|
|
48766
|
-
headers: {
|
|
48767
|
-
[name: string]: unknown;
|
|
48768
|
-
};
|
|
48769
|
-
content: {
|
|
48770
|
-
"application/json": components["schemas"]["HTTPValidationError"];
|
|
48771
|
-
};
|
|
48772
|
-
};
|
|
48773
|
-
};
|
|
48774
|
-
};
|
|
48775
47419
|
"list-webhook-destinations": {
|
|
48776
47420
|
parameters: {
|
|
48777
47421
|
query?: {
|