@amigo-ai/platform-sdk 0.55.0 → 0.57.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 +9 -16
- package/api.md +9 -31
- package/dist/core/branded-types.js +0 -1
- package/dist/core/branded-types.js.map +1 -1
- package/dist/index.cjs +67 -212
- package/dist/index.cjs.map +4 -4
- package/dist/index.js +5 -7
- package/dist/index.js.map +1 -1
- package/dist/index.mjs +67 -212
- package/dist/index.mjs.map +4 -4
- package/dist/resources/fhir.js +1 -7
- package/dist/resources/fhir.js.map +1 -1
- package/dist/resources/settings.js +1 -19
- package/dist/resources/settings.js.map +1 -1
- package/dist/resources/workspace-data-queries.js +41 -0
- package/dist/resources/workspace-data-queries.js.map +1 -0
- package/dist/resources/world.js +0 -27
- package/dist/resources/world.js.map +1 -1
- package/dist/types/core/branded-types.d.ts +0 -2
- package/dist/types/core/branded-types.d.ts.map +1 -1
- package/dist/types/generated/api.d.ts +839 -2593
- package/dist/types/generated/api.d.ts.map +1 -1
- package/dist/types/index.d.cts +6 -6
- package/dist/types/index.d.cts.map +1 -1
- package/dist/types/index.d.ts +6 -6
- package/dist/types/index.d.ts.map +1 -1
- package/dist/types/resources/actions.d.ts +0 -5
- package/dist/types/resources/actions.d.ts.map +1 -1
- package/dist/types/resources/calls.d.ts +12 -0
- package/dist/types/resources/calls.d.ts.map +1 -1
- package/dist/types/resources/fhir.d.ts +1 -22
- package/dist/types/resources/fhir.d.ts.map +1 -1
- package/dist/types/resources/intake.d.ts.map +1 -1
- package/dist/types/resources/metrics.d.ts +6 -2
- package/dist/types/resources/metrics.d.ts.map +1 -1
- package/dist/types/resources/operators.d.ts.map +1 -1
- package/dist/types/resources/services.d.ts +135 -10
- package/dist/types/resources/services.d.ts.map +1 -1
- package/dist/types/resources/settings.d.ts +5 -143
- package/dist/types/resources/settings.d.ts.map +1 -1
- package/dist/types/resources/skills.d.ts +0 -5
- package/dist/types/resources/skills.d.ts.map +1 -1
- package/dist/types/resources/surfaces.d.ts.map +1 -1
- package/dist/types/resources/workspace-data-queries.d.ts +22 -0
- package/dist/types/resources/workspace-data-queries.d.ts.map +1 -0
- package/dist/types/resources/world.d.ts +25 -82
- package/dist/types/resources/world.d.ts.map +1 -1
- package/package.json +1 -1
- package/dist/resources/personas.js +0 -34
- package/dist/resources/personas.js.map +0 -1
- package/dist/resources/webhook-destinations.js +0 -50
- package/dist/resources/webhook-destinations.js.map +0 -1
- package/dist/types/resources/personas.d.ts +0 -87
- package/dist/types/resources/personas.d.ts.map +0 -1
- package/dist/types/resources/webhook-destinations.d.ts +0 -125
- package/dist/types/resources/webhook-destinations.d.ts.map +0 -1
|
@@ -1645,7 +1645,7 @@ export interface paths {
|
|
|
1645
1645
|
};
|
|
1646
1646
|
/**
|
|
1647
1647
|
* Call metric values
|
|
1648
|
-
* @description Latest per-call
|
|
1648
|
+
* @description Latest per-call realtime metric values for the call detail sidebar.
|
|
1649
1649
|
*/
|
|
1650
1650
|
get: operations["list-call-metric-values"];
|
|
1651
1651
|
put?: never;
|
|
@@ -2250,6 +2250,60 @@ export interface paths {
|
|
|
2250
2250
|
patch?: never;
|
|
2251
2251
|
trace?: never;
|
|
2252
2252
|
};
|
|
2253
|
+
"/v1/{workspace_id}/data_queries": {
|
|
2254
|
+
parameters: {
|
|
2255
|
+
query?: never;
|
|
2256
|
+
header?: never;
|
|
2257
|
+
path?: never;
|
|
2258
|
+
cookie?: never;
|
|
2259
|
+
};
|
|
2260
|
+
/** List Workspace Data Queries */
|
|
2261
|
+
get: operations["list-workspace-data-queries"];
|
|
2262
|
+
put?: never;
|
|
2263
|
+
/** Create Workspace Data Query */
|
|
2264
|
+
post: operations["create-workspace-data-query"];
|
|
2265
|
+
delete?: never;
|
|
2266
|
+
options?: never;
|
|
2267
|
+
head?: never;
|
|
2268
|
+
patch?: never;
|
|
2269
|
+
trace?: never;
|
|
2270
|
+
};
|
|
2271
|
+
"/v1/{workspace_id}/data_queries/{query_id}": {
|
|
2272
|
+
parameters: {
|
|
2273
|
+
query?: never;
|
|
2274
|
+
header?: never;
|
|
2275
|
+
path?: never;
|
|
2276
|
+
cookie?: never;
|
|
2277
|
+
};
|
|
2278
|
+
/** Get Workspace Data Query */
|
|
2279
|
+
get: operations["get-workspace-data-query"];
|
|
2280
|
+
put?: never;
|
|
2281
|
+
post?: never;
|
|
2282
|
+
/** Delete Workspace Data Query */
|
|
2283
|
+
delete: operations["delete-workspace-data-query"];
|
|
2284
|
+
options?: never;
|
|
2285
|
+
head?: never;
|
|
2286
|
+
/** Update Workspace Data Query */
|
|
2287
|
+
patch: operations["update-workspace-data-query"];
|
|
2288
|
+
trace?: never;
|
|
2289
|
+
};
|
|
2290
|
+
"/v1/{workspace_id}/data_queries/{query_id}/invoke": {
|
|
2291
|
+
parameters: {
|
|
2292
|
+
query?: never;
|
|
2293
|
+
header?: never;
|
|
2294
|
+
path?: never;
|
|
2295
|
+
cookie?: never;
|
|
2296
|
+
};
|
|
2297
|
+
get?: never;
|
|
2298
|
+
put?: never;
|
|
2299
|
+
/** Invoke Workspace Data Query */
|
|
2300
|
+
post: operations["invoke-workspace-data-query"];
|
|
2301
|
+
delete?: never;
|
|
2302
|
+
options?: never;
|
|
2303
|
+
head?: never;
|
|
2304
|
+
patch?: never;
|
|
2305
|
+
trace?: never;
|
|
2306
|
+
};
|
|
2253
2307
|
"/v1/{workspace_id}/desktop-sessions": {
|
|
2254
2308
|
parameters: {
|
|
2255
2309
|
query?: never;
|
|
@@ -2687,26 +2741,6 @@ export interface paths {
|
|
|
2687
2741
|
patch?: never;
|
|
2688
2742
|
trace?: never;
|
|
2689
2743
|
};
|
|
2690
|
-
"/v1/{workspace_id}/fhir/sync-failures": {
|
|
2691
|
-
parameters: {
|
|
2692
|
-
query?: never;
|
|
2693
|
-
header?: never;
|
|
2694
|
-
path?: never;
|
|
2695
|
-
cookie?: never;
|
|
2696
|
-
};
|
|
2697
|
-
/**
|
|
2698
|
-
* List sync failures
|
|
2699
|
-
* @description Get events that permanently failed to sync to the external EHR. These need manual attention.
|
|
2700
|
-
*/
|
|
2701
|
-
get: operations["fhir-sync-failures"];
|
|
2702
|
-
put?: never;
|
|
2703
|
-
post?: never;
|
|
2704
|
-
delete?: never;
|
|
2705
|
-
options?: never;
|
|
2706
|
-
head?: never;
|
|
2707
|
-
patch?: never;
|
|
2708
|
-
trace?: never;
|
|
2709
|
-
};
|
|
2710
2744
|
"/v1/{workspace_id}/fhir/views/appointments": {
|
|
2711
2745
|
parameters: {
|
|
2712
2746
|
query?: never;
|
|
@@ -2949,23 +2983,6 @@ export interface paths {
|
|
|
2949
2983
|
patch?: never;
|
|
2950
2984
|
trace?: never;
|
|
2951
2985
|
};
|
|
2952
|
-
"/v1/{workspace_id}/hooks/{destination_id}": {
|
|
2953
|
-
parameters: {
|
|
2954
|
-
query?: never;
|
|
2955
|
-
header?: never;
|
|
2956
|
-
path?: never;
|
|
2957
|
-
cookie?: never;
|
|
2958
|
-
};
|
|
2959
|
-
get?: never;
|
|
2960
|
-
put?: never;
|
|
2961
|
-
/** Receive Webhook */
|
|
2962
|
-
post: operations["receive_webhook_v1__workspace_id__hooks__destination_id__post"];
|
|
2963
|
-
delete?: never;
|
|
2964
|
-
options?: never;
|
|
2965
|
-
head?: never;
|
|
2966
|
-
patch?: never;
|
|
2967
|
-
trace?: never;
|
|
2968
|
-
};
|
|
2969
2986
|
"/v1/{workspace_id}/insights/digest": {
|
|
2970
2987
|
parameters: {
|
|
2971
2988
|
query?: never;
|
|
@@ -3854,26 +3871,6 @@ export interface paths {
|
|
|
3854
3871
|
patch?: never;
|
|
3855
3872
|
trace?: never;
|
|
3856
3873
|
};
|
|
3857
|
-
"/v1/{workspace_id}/metrics/{metric_key}/evaluate": {
|
|
3858
|
-
parameters: {
|
|
3859
|
-
query?: never;
|
|
3860
|
-
header?: never;
|
|
3861
|
-
path?: never;
|
|
3862
|
-
cookie?: never;
|
|
3863
|
-
};
|
|
3864
|
-
get?: never;
|
|
3865
|
-
put?: never;
|
|
3866
|
-
/**
|
|
3867
|
-
* Evaluate a metric once without storing it
|
|
3868
|
-
* @description Execute one metric definition without persisting to UMS.
|
|
3869
|
-
*/
|
|
3870
|
-
post: operations["evaluate-metric"];
|
|
3871
|
-
delete?: never;
|
|
3872
|
-
options?: never;
|
|
3873
|
-
head?: never;
|
|
3874
|
-
patch?: never;
|
|
3875
|
-
trace?: never;
|
|
3876
|
-
};
|
|
3877
3874
|
"/v1/{workspace_id}/metrics/{metric_key}/trend": {
|
|
3878
3875
|
parameters: {
|
|
3879
3876
|
query?: never;
|
|
@@ -4270,70 +4267,6 @@ export interface paths {
|
|
|
4270
4267
|
patch?: never;
|
|
4271
4268
|
trace?: never;
|
|
4272
4269
|
};
|
|
4273
|
-
"/v1/{workspace_id}/personas": {
|
|
4274
|
-
parameters: {
|
|
4275
|
-
query?: never;
|
|
4276
|
-
header?: never;
|
|
4277
|
-
path?: never;
|
|
4278
|
-
cookie?: never;
|
|
4279
|
-
};
|
|
4280
|
-
/**
|
|
4281
|
-
* List personas
|
|
4282
|
-
* @description List personas in the workspace.
|
|
4283
|
-
*
|
|
4284
|
-
* Permissions: viewer+.
|
|
4285
|
-
* Search: case-insensitive on name and background.
|
|
4286
|
-
* Sort: +name, -name, +created_at, -created_at, +updated_at, -updated_at.
|
|
4287
|
-
*/
|
|
4288
|
-
get: operations["list-personas"];
|
|
4289
|
-
put?: never;
|
|
4290
|
-
/**
|
|
4291
|
-
* Create a persona
|
|
4292
|
-
* @description Create a new persona.
|
|
4293
|
-
*
|
|
4294
|
-
* Permissions: admin, owner.
|
|
4295
|
-
*/
|
|
4296
|
-
post: operations["create-persona"];
|
|
4297
|
-
delete?: never;
|
|
4298
|
-
options?: never;
|
|
4299
|
-
head?: never;
|
|
4300
|
-
patch?: never;
|
|
4301
|
-
trace?: never;
|
|
4302
|
-
};
|
|
4303
|
-
"/v1/{workspace_id}/personas/{persona_id}": {
|
|
4304
|
-
parameters: {
|
|
4305
|
-
query?: never;
|
|
4306
|
-
header?: never;
|
|
4307
|
-
path?: never;
|
|
4308
|
-
cookie?: never;
|
|
4309
|
-
};
|
|
4310
|
-
/**
|
|
4311
|
-
* Get a persona
|
|
4312
|
-
* @description Get a persona by ID.
|
|
4313
|
-
*
|
|
4314
|
-
* Permissions: viewer+.
|
|
4315
|
-
*/
|
|
4316
|
-
get: operations["get-persona"];
|
|
4317
|
-
put?: never;
|
|
4318
|
-
post?: never;
|
|
4319
|
-
/**
|
|
4320
|
-
* Delete a persona
|
|
4321
|
-
* @description Delete a persona.
|
|
4322
|
-
*
|
|
4323
|
-
* Permissions: admin, owner.
|
|
4324
|
-
*/
|
|
4325
|
-
delete: operations["delete-persona"];
|
|
4326
|
-
options?: never;
|
|
4327
|
-
head?: never;
|
|
4328
|
-
/**
|
|
4329
|
-
* Update a persona
|
|
4330
|
-
* @description Update a persona.
|
|
4331
|
-
*
|
|
4332
|
-
* Permissions: admin, owner.
|
|
4333
|
-
*/
|
|
4334
|
-
patch: operations["update-persona"];
|
|
4335
|
-
trace?: never;
|
|
4336
|
-
};
|
|
4337
4270
|
"/v1/{workspace_id}/pipeline/entity-resolution": {
|
|
4338
4271
|
parameters: {
|
|
4339
4272
|
query?: never;
|
|
@@ -4545,7 +4478,7 @@ export interface paths {
|
|
|
4545
4478
|
* List prompt logs for a workspace
|
|
4546
4479
|
* @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.
|
|
4547
4480
|
*
|
|
4548
|
-
* **Conversation filter**: pass ``conversation_id``
|
|
4481
|
+
* **Conversation filter**: pass ``conversation_id`` for the canonical mental model. Text conversations resolve from ``world.conversations``; voice/call IDs resolve through the projected conversation entity. ``call_sid`` is the legacy direct-SID filter (Twilio CA-SID for voice, session_id UUID otherwise) and is mutually exclusive with ``conversation_id``.
|
|
4549
4482
|
*
|
|
4550
4483
|
* **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``.
|
|
4551
4484
|
*
|
|
@@ -5303,39 +5236,6 @@ export interface paths {
|
|
|
5303
5236
|
patch?: never;
|
|
5304
5237
|
trace?: never;
|
|
5305
5238
|
};
|
|
5306
|
-
"/v1/{workspace_id}/settings/behaviors": {
|
|
5307
|
-
parameters: {
|
|
5308
|
-
query?: never;
|
|
5309
|
-
header?: never;
|
|
5310
|
-
path?: never;
|
|
5311
|
-
cookie?: never;
|
|
5312
|
-
};
|
|
5313
|
-
/**
|
|
5314
|
-
* Get dynamic behavior settings
|
|
5315
|
-
* @description Get the workspace dynamic behavior settings.
|
|
5316
|
-
*
|
|
5317
|
-
* Returns defaults (disabled, empty) when not configured.
|
|
5318
|
-
*
|
|
5319
|
-
* Permissions: authenticated (any role).
|
|
5320
|
-
*/
|
|
5321
|
-
get: operations["get-behavior-settings"];
|
|
5322
|
-
/**
|
|
5323
|
-
* Update dynamic behavior settings
|
|
5324
|
-
* @description Update the workspace dynamic behavior settings.
|
|
5325
|
-
*
|
|
5326
|
-
* Partial updates supported — only provided fields are changed.
|
|
5327
|
-
* Behaviors list is replaced entirely when provided.
|
|
5328
|
-
*
|
|
5329
|
-
* Permissions: admin, owner.
|
|
5330
|
-
*/
|
|
5331
|
-
put: operations["update-behavior-settings"];
|
|
5332
|
-
post?: never;
|
|
5333
|
-
delete?: never;
|
|
5334
|
-
options?: never;
|
|
5335
|
-
head?: never;
|
|
5336
|
-
patch?: never;
|
|
5337
|
-
trace?: never;
|
|
5338
|
-
};
|
|
5339
5239
|
"/v1/{workspace_id}/settings/branding": {
|
|
5340
5240
|
parameters: {
|
|
5341
5241
|
query?: never;
|
|
@@ -5780,34 +5680,6 @@ export interface paths {
|
|
|
5780
5680
|
patch?: never;
|
|
5781
5681
|
trace?: never;
|
|
5782
5682
|
};
|
|
5783
|
-
"/v1/{workspace_id}/settings/workflows": {
|
|
5784
|
-
parameters: {
|
|
5785
|
-
query?: never;
|
|
5786
|
-
header?: never;
|
|
5787
|
-
path?: never;
|
|
5788
|
-
cookie?: never;
|
|
5789
|
-
};
|
|
5790
|
-
/**
|
|
5791
|
-
* Get workflow specs
|
|
5792
|
-
* @description Get workflow specs for this workspace.
|
|
5793
|
-
*
|
|
5794
|
-
* Permissions: authenticated (any role).
|
|
5795
|
-
*/
|
|
5796
|
-
get: operations["get-workflow-settings"];
|
|
5797
|
-
/**
|
|
5798
|
-
* Update workflow specs
|
|
5799
|
-
* @description Update workflow specs.
|
|
5800
|
-
*
|
|
5801
|
-
* Permissions: admin, owner.
|
|
5802
|
-
*/
|
|
5803
|
-
put: operations["update-workflow-settings"];
|
|
5804
|
-
post?: never;
|
|
5805
|
-
delete?: never;
|
|
5806
|
-
options?: never;
|
|
5807
|
-
head?: never;
|
|
5808
|
-
patch?: never;
|
|
5809
|
-
trace?: never;
|
|
5810
|
-
};
|
|
5811
5683
|
"/v1/{workspace_id}/simulations/benchmarks/results": {
|
|
5812
5684
|
parameters: {
|
|
5813
5685
|
query?: never;
|
|
@@ -6364,7 +6236,7 @@ export interface paths {
|
|
|
6364
6236
|
get: operations["get-skill"];
|
|
6365
6237
|
/**
|
|
6366
6238
|
* Update a skill
|
|
6367
|
-
* @description Update a skill's configuration
|
|
6239
|
+
* @description Update a skill's configuration in place.
|
|
6368
6240
|
*
|
|
6369
6241
|
* **Field semantics.** Omitted fields and explicit ``null`` are treated identically — both leave the existing value unchanged. Empty-string is rejected with 422 for fields that carry a ``minLength`` bound (``model``). Clearing a previously-set optional value back to ``null`` is not currently supported via PUT.
|
|
6370
6242
|
*
|
|
@@ -6374,7 +6246,7 @@ export interface paths {
|
|
|
6374
6246
|
post?: never;
|
|
6375
6247
|
/**
|
|
6376
6248
|
* Delete a skill
|
|
6377
|
-
* @description Delete a skill.
|
|
6249
|
+
* @description Delete a skill.
|
|
6378
6250
|
*
|
|
6379
6251
|
* **Not idempotent.** A second concurrent caller racing the same delete will receive ``404 Not Found`` once the row is gone — clients should treat 404 as success-equivalent for cleanup workflows. Requires `Skill.delete` permission.
|
|
6380
6252
|
*/
|
|
@@ -6928,104 +6800,6 @@ export interface paths {
|
|
|
6928
6800
|
patch?: never;
|
|
6929
6801
|
trace?: never;
|
|
6930
6802
|
};
|
|
6931
|
-
"/v1/{workspace_id}/voicemail": {
|
|
6932
|
-
parameters: {
|
|
6933
|
-
query?: never;
|
|
6934
|
-
header?: never;
|
|
6935
|
-
path?: never;
|
|
6936
|
-
cookie?: never;
|
|
6937
|
-
};
|
|
6938
|
-
/**
|
|
6939
|
-
* List voicemails
|
|
6940
|
-
* @description List voicemail records with optional filters. Requires Channel.view permission.
|
|
6941
|
-
*/
|
|
6942
|
-
get: operations["list-voicemails"];
|
|
6943
|
-
put?: never;
|
|
6944
|
-
/**
|
|
6945
|
-
* Send a voicemail
|
|
6946
|
-
* @description Send a ringless voicemail. Accepts multipart form with use_case_id, recipient_phone_number (US E.164), and audio MP3 file (10-60s, max 8 MB). Requires Channel.send permission.
|
|
6947
|
-
*/
|
|
6948
|
-
post: operations["send-voicemail"];
|
|
6949
|
-
delete?: never;
|
|
6950
|
-
options?: never;
|
|
6951
|
-
head?: never;
|
|
6952
|
-
patch?: never;
|
|
6953
|
-
trace?: never;
|
|
6954
|
-
};
|
|
6955
|
-
"/v1/{workspace_id}/webhook-destinations": {
|
|
6956
|
-
parameters: {
|
|
6957
|
-
query?: never;
|
|
6958
|
-
header?: never;
|
|
6959
|
-
path?: never;
|
|
6960
|
-
cookie?: never;
|
|
6961
|
-
};
|
|
6962
|
-
/** List webhook destinations */
|
|
6963
|
-
get: operations["list-webhook-destinations"];
|
|
6964
|
-
put?: never;
|
|
6965
|
-
/** Create a webhook destination */
|
|
6966
|
-
post: operations["create-webhook-destination"];
|
|
6967
|
-
delete?: never;
|
|
6968
|
-
options?: never;
|
|
6969
|
-
head?: never;
|
|
6970
|
-
patch?: never;
|
|
6971
|
-
trace?: never;
|
|
6972
|
-
};
|
|
6973
|
-
"/v1/{workspace_id}/webhook-destinations/{destination_id}": {
|
|
6974
|
-
parameters: {
|
|
6975
|
-
query?: never;
|
|
6976
|
-
header?: never;
|
|
6977
|
-
path?: never;
|
|
6978
|
-
cookie?: never;
|
|
6979
|
-
};
|
|
6980
|
-
/** Get a webhook destination */
|
|
6981
|
-
get: operations["get-webhook-destination"];
|
|
6982
|
-
/** Update a webhook destination */
|
|
6983
|
-
put: operations["update-webhook-destination"];
|
|
6984
|
-
post?: never;
|
|
6985
|
-
/** Delete a webhook destination */
|
|
6986
|
-
delete: operations["delete-webhook-destination"];
|
|
6987
|
-
options?: never;
|
|
6988
|
-
head?: never;
|
|
6989
|
-
patch?: never;
|
|
6990
|
-
trace?: never;
|
|
6991
|
-
};
|
|
6992
|
-
"/v1/{workspace_id}/webhook-destinations/{destination_id}/deliveries": {
|
|
6993
|
-
parameters: {
|
|
6994
|
-
query?: never;
|
|
6995
|
-
header?: never;
|
|
6996
|
-
path?: never;
|
|
6997
|
-
cookie?: never;
|
|
6998
|
-
};
|
|
6999
|
-
/**
|
|
7000
|
-
* List webhook delivery history
|
|
7001
|
-
* @description Delivery history from the Lakebase entity-event timeline read model.
|
|
7002
|
-
*/
|
|
7003
|
-
get: operations["list-webhook-destination-deliveries"];
|
|
7004
|
-
put?: never;
|
|
7005
|
-
post?: never;
|
|
7006
|
-
delete?: never;
|
|
7007
|
-
options?: never;
|
|
7008
|
-
head?: never;
|
|
7009
|
-
patch?: never;
|
|
7010
|
-
trace?: never;
|
|
7011
|
-
};
|
|
7012
|
-
"/v1/{workspace_id}/webhook-destinations/{destination_id}/rotate-secret": {
|
|
7013
|
-
parameters: {
|
|
7014
|
-
query?: never;
|
|
7015
|
-
header?: never;
|
|
7016
|
-
path?: never;
|
|
7017
|
-
cookie?: never;
|
|
7018
|
-
};
|
|
7019
|
-
get?: never;
|
|
7020
|
-
put?: never;
|
|
7021
|
-
/** Rotate the destination's HMAC signing secret */
|
|
7022
|
-
post: operations["rotate-webhook-destination-secret"];
|
|
7023
|
-
delete?: never;
|
|
7024
|
-
options?: never;
|
|
7025
|
-
head?: never;
|
|
7026
|
-
patch?: never;
|
|
7027
|
-
trace?: never;
|
|
7028
|
-
};
|
|
7029
6803
|
"/v1/{workspace_id}/world/connectors": {
|
|
7030
6804
|
parameters: {
|
|
7031
6805
|
query?: never;
|
|
@@ -7243,7 +7017,7 @@ export interface paths {
|
|
|
7243
7017
|
};
|
|
7244
7018
|
/**
|
|
7245
7019
|
* List current enrichment values for an entity
|
|
7246
|
-
* @description Current winners per (entity, key) from world.
|
|
7020
|
+
* @description Current winners per (entity, key) from world.entity_enrichment_out_synced (Synced-Table-populated view of SDP's entity_enrichment_out). Each row carries value, value_type, confidence, source, effective_at.
|
|
7247
7021
|
*/
|
|
7248
7022
|
get: operations["list-entity-enrichment"];
|
|
7249
7023
|
put?: never;
|
|
@@ -7534,86 +7308,6 @@ export interface paths {
|
|
|
7534
7308
|
patch?: never;
|
|
7535
7309
|
trace?: never;
|
|
7536
7310
|
};
|
|
7537
|
-
"/v1/{workspace_id}/world/sync/events": {
|
|
7538
|
-
parameters: {
|
|
7539
|
-
query?: never;
|
|
7540
|
-
header?: never;
|
|
7541
|
-
path?: never;
|
|
7542
|
-
cookie?: never;
|
|
7543
|
-
};
|
|
7544
|
-
/**
|
|
7545
|
-
* List sync events by status
|
|
7546
|
-
* @description Lists outbound events filtered by sync status (pending or failed). Optionally scope the queue to a specific outbound data source or source system, or narrow to a specific FHIR resource type/ID. Includes entity display_name for the UI. Use for the pending events table (status=pending) or the retry table (status=failed).
|
|
7547
|
-
*/
|
|
7548
|
-
get: operations["world-sync-events"];
|
|
7549
|
-
put?: never;
|
|
7550
|
-
post?: never;
|
|
7551
|
-
delete?: never;
|
|
7552
|
-
options?: never;
|
|
7553
|
-
head?: never;
|
|
7554
|
-
patch?: never;
|
|
7555
|
-
trace?: never;
|
|
7556
|
-
};
|
|
7557
|
-
"/v1/{workspace_id}/world/sync/queue": {
|
|
7558
|
-
parameters: {
|
|
7559
|
-
query?: never;
|
|
7560
|
-
header?: never;
|
|
7561
|
-
path?: never;
|
|
7562
|
-
cookie?: never;
|
|
7563
|
-
};
|
|
7564
|
-
/**
|
|
7565
|
-
* Outbound sync queue depth
|
|
7566
|
-
* @description Pending and failed outbound sync event counts, grouped by FHIR resource type. Includes oldest pending timestamp and last successful sync time. Queries Lakebase — not Valkey.
|
|
7567
|
-
*/
|
|
7568
|
-
get: operations["world-sync-queue"];
|
|
7569
|
-
put?: never;
|
|
7570
|
-
post?: never;
|
|
7571
|
-
delete?: never;
|
|
7572
|
-
options?: never;
|
|
7573
|
-
head?: never;
|
|
7574
|
-
patch?: never;
|
|
7575
|
-
trace?: never;
|
|
7576
|
-
};
|
|
7577
|
-
"/v1/{workspace_id}/world/sync/retry-all": {
|
|
7578
|
-
parameters: {
|
|
7579
|
-
query?: never;
|
|
7580
|
-
header?: never;
|
|
7581
|
-
path?: never;
|
|
7582
|
-
cookie?: never;
|
|
7583
|
-
};
|
|
7584
|
-
get?: never;
|
|
7585
|
-
put?: never;
|
|
7586
|
-
/**
|
|
7587
|
-
* Retry all failed sync events
|
|
7588
|
-
* @description Clears sync_error on all failed events in the workspace and re-publishes each to the outbound sync channel.
|
|
7589
|
-
*/
|
|
7590
|
-
post: operations["world-sync-retry-all"];
|
|
7591
|
-
delete?: never;
|
|
7592
|
-
options?: never;
|
|
7593
|
-
head?: never;
|
|
7594
|
-
patch?: never;
|
|
7595
|
-
trace?: never;
|
|
7596
|
-
};
|
|
7597
|
-
"/v1/{workspace_id}/world/sync/retry/{event_id}": {
|
|
7598
|
-
parameters: {
|
|
7599
|
-
query?: never;
|
|
7600
|
-
header?: never;
|
|
7601
|
-
path?: never;
|
|
7602
|
-
cookie?: never;
|
|
7603
|
-
};
|
|
7604
|
-
get?: never;
|
|
7605
|
-
put?: never;
|
|
7606
|
-
/**
|
|
7607
|
-
* Retry a failed sync event
|
|
7608
|
-
* @description Clears sync_error on a failed event and re-publishes to the outbound sync channel. The event re-enters the sync pipeline.
|
|
7609
|
-
*/
|
|
7610
|
-
post: operations["world-sync-retry"];
|
|
7611
|
-
delete?: never;
|
|
7612
|
-
options?: never;
|
|
7613
|
-
head?: never;
|
|
7614
|
-
patch?: never;
|
|
7615
|
-
trace?: never;
|
|
7616
|
-
};
|
|
7617
7311
|
}
|
|
7618
7312
|
export type webhooks = Record<string, never>;
|
|
7619
7313
|
export interface components {
|
|
@@ -7942,10 +7636,10 @@ export interface components {
|
|
|
7942
7636
|
};
|
|
7943
7637
|
/** AddColumnAction */
|
|
7944
7638
|
AddColumnAction: {
|
|
7945
|
-
column: components["schemas"]["
|
|
7639
|
+
column: components["schemas"]["Column-Input"];
|
|
7946
7640
|
/**
|
|
7947
|
-
*
|
|
7948
|
-
* @
|
|
7641
|
+
* Op
|
|
7642
|
+
* @constant
|
|
7949
7643
|
*/
|
|
7950
7644
|
op: "add_column";
|
|
7951
7645
|
};
|
|
@@ -7955,8 +7649,8 @@ export interface components {
|
|
|
7955
7649
|
columns: components["schemas"]["IdentifierString"][];
|
|
7956
7650
|
index_name: components["schemas"]["IdentifierString"];
|
|
7957
7651
|
/**
|
|
7958
|
-
*
|
|
7959
|
-
* @
|
|
7652
|
+
* Op
|
|
7653
|
+
* @constant
|
|
7960
7654
|
*/
|
|
7961
7655
|
op: "add_index";
|
|
7962
7656
|
};
|
|
@@ -7966,8 +7660,8 @@ export interface components {
|
|
|
7966
7660
|
columns: components["schemas"]["IdentifierString"][];
|
|
7967
7661
|
constraint_name?: components["schemas"]["IdentifierString"] | null;
|
|
7968
7662
|
/**
|
|
7969
|
-
*
|
|
7970
|
-
* @
|
|
7663
|
+
* Op
|
|
7664
|
+
* @constant
|
|
7971
7665
|
*/
|
|
7972
7666
|
op: "add_unique";
|
|
7973
7667
|
};
|
|
@@ -8154,6 +7848,7 @@ export interface components {
|
|
|
8154
7848
|
*/
|
|
8155
7849
|
workspace_id: string;
|
|
8156
7850
|
};
|
|
7851
|
+
AlterAction: components["schemas"]["AddColumnAction"] | components["schemas"]["DropColumnAction"] | components["schemas"]["RenameColumnAction"] | components["schemas"]["ChangeColumnTypeAction"] | components["schemas"]["SetColumnNullableAction"] | components["schemas"]["SetColumnDefaultAction"] | components["schemas"]["DropColumnDefaultAction"] | components["schemas"]["AddUniqueAction"] | components["schemas"]["DropConstraintAction"] | components["schemas"]["AddIndexAction"] | components["schemas"]["DropIndexAction"];
|
|
8157
7852
|
/**
|
|
8158
7853
|
* AnnotationState
|
|
8159
7854
|
* @description Injects a hardcoded inner thought (no LLM call).
|
|
@@ -8681,100 +8376,6 @@ export interface components {
|
|
|
8681
8376
|
/** Reason */
|
|
8682
8377
|
reason: string;
|
|
8683
8378
|
};
|
|
8684
|
-
/**
|
|
8685
|
-
* BehaviorAction
|
|
8686
|
-
* @description What happens when the behavior activates.
|
|
8687
|
-
*/
|
|
8688
|
-
BehaviorAction: {
|
|
8689
|
-
/**
|
|
8690
|
-
* Add Tools
|
|
8691
|
-
* @description Tool names to make available when active
|
|
8692
|
-
*/
|
|
8693
|
-
add_tools?: string[];
|
|
8694
|
-
/**
|
|
8695
|
-
* Filler Override
|
|
8696
|
-
* @description Override filler type when active
|
|
8697
|
-
*/
|
|
8698
|
-
filler_override?: ("empathy" | "receipt" | "working" | "silent") | null;
|
|
8699
|
-
/**
|
|
8700
|
-
* Instruction
|
|
8701
|
-
* @description Instruction injected into the engage prompt when active
|
|
8702
|
-
* @default
|
|
8703
|
-
*/
|
|
8704
|
-
instruction?: string;
|
|
8705
|
-
/**
|
|
8706
|
-
* Remove Tools
|
|
8707
|
-
* @description Tool names to hide when active
|
|
8708
|
-
*/
|
|
8709
|
-
remove_tools?: string[];
|
|
8710
|
-
/** Turn Policy Overrides */
|
|
8711
|
-
turn_policy_overrides?: {
|
|
8712
|
-
[key: string]: unknown;
|
|
8713
|
-
};
|
|
8714
|
-
};
|
|
8715
|
-
/**
|
|
8716
|
-
* BehaviorDef
|
|
8717
|
-
* @description A named dynamic behavior definition.
|
|
8718
|
-
*/
|
|
8719
|
-
BehaviorDef: {
|
|
8720
|
-
action?: components["schemas"]["BehaviorAction"];
|
|
8721
|
-
/**
|
|
8722
|
-
* Cooldown Turns
|
|
8723
|
-
* @default 3
|
|
8724
|
-
*/
|
|
8725
|
-
cooldown_turns?: number;
|
|
8726
|
-
/** @default */
|
|
8727
|
-
description?: components["schemas"]["DescriptionString"];
|
|
8728
|
-
/**
|
|
8729
|
-
* Enabled
|
|
8730
|
-
* @default true
|
|
8731
|
-
*/
|
|
8732
|
-
enabled?: boolean;
|
|
8733
|
-
name: components["schemas"]["NameString"];
|
|
8734
|
-
/**
|
|
8735
|
-
* Priority
|
|
8736
|
-
* @default 0
|
|
8737
|
-
*/
|
|
8738
|
-
priority?: number;
|
|
8739
|
-
trigger?: components["schemas"]["BehaviorTrigger"];
|
|
8740
|
-
};
|
|
8741
|
-
/**
|
|
8742
|
-
* BehaviorSettingsRequest
|
|
8743
|
-
* @description Partial update — only provided fields are changed.
|
|
8744
|
-
*/
|
|
8745
|
-
BehaviorSettingsRequest: {
|
|
8746
|
-
/** Behaviors */
|
|
8747
|
-
behaviors?: components["schemas"]["BehaviorDef"][] | null;
|
|
8748
|
-
/** Enabled */
|
|
8749
|
-
enabled?: boolean | null;
|
|
8750
|
-
};
|
|
8751
|
-
/** BehaviorSettingsResponse */
|
|
8752
|
-
BehaviorSettingsResponse: {
|
|
8753
|
-
/** Behaviors */
|
|
8754
|
-
behaviors: components["schemas"]["BehaviorDef"][];
|
|
8755
|
-
/** Enabled */
|
|
8756
|
-
enabled: boolean;
|
|
8757
|
-
};
|
|
8758
|
-
/**
|
|
8759
|
-
* BehaviorTrigger
|
|
8760
|
-
* @description Conditions that activate this behavior.
|
|
8761
|
-
*/
|
|
8762
|
-
BehaviorTrigger: {
|
|
8763
|
-
/**
|
|
8764
|
-
* Emotion Tiers
|
|
8765
|
-
* @description Empathy tiers (0-3) that activate this behavior
|
|
8766
|
-
*/
|
|
8767
|
-
emotion_tiers?: number[];
|
|
8768
|
-
/** Intent Categories */
|
|
8769
|
-
intent_categories?: string[];
|
|
8770
|
-
/** Keywords */
|
|
8771
|
-
keywords?: string[];
|
|
8772
|
-
/**
|
|
8773
|
-
* States
|
|
8774
|
-
* @description Context graph state names that activate this behavior
|
|
8775
|
-
*/
|
|
8776
|
-
states?: string[];
|
|
8777
|
-
};
|
|
8778
8379
|
/** BillingDashboardResponse */
|
|
8779
8380
|
BillingDashboardResponse: {
|
|
8780
8381
|
/**
|
|
@@ -8821,18 +8422,6 @@ export interface components {
|
|
|
8821
8422
|
*/
|
|
8822
8423
|
workspace_id: string;
|
|
8823
8424
|
};
|
|
8824
|
-
/** Body_send-voicemail */
|
|
8825
|
-
"Body_send-voicemail": {
|
|
8826
|
-
/** Audio */
|
|
8827
|
-
audio: string;
|
|
8828
|
-
/** Recipient Phone Number */
|
|
8829
|
-
recipient_phone_number: string;
|
|
8830
|
-
/**
|
|
8831
|
-
* Use Case Id
|
|
8832
|
-
* Format: uuid
|
|
8833
|
-
*/
|
|
8834
|
-
use_case_id: string;
|
|
8835
|
-
};
|
|
8836
8425
|
/** Body_voice-turn */
|
|
8837
8426
|
"Body_voice-turn": {
|
|
8838
8427
|
/** Audio */
|
|
@@ -9359,6 +8948,11 @@ export interface components {
|
|
|
9359
8948
|
/** @description Tool usage statistics */
|
|
9360
8949
|
tool_summary?: components["schemas"]["ToolSummary"] | null;
|
|
9361
8950
|
};
|
|
8951
|
+
/** CallIntelligenceMetricProjectionRequest */
|
|
8952
|
+
CallIntelligenceMetricProjectionRequest: {
|
|
8953
|
+
/** Call Sid */
|
|
8954
|
+
call_sid: string;
|
|
8955
|
+
};
|
|
9362
8956
|
/** CallListResponse */
|
|
9363
8957
|
CallListResponse: {
|
|
9364
8958
|
/** Continuation Token */
|
|
@@ -9614,8 +9208,8 @@ export interface components {
|
|
|
9614
9208
|
name: components["schemas"]["IdentifierString"];
|
|
9615
9209
|
new_type: components["schemas"]["ColumnType"];
|
|
9616
9210
|
/**
|
|
9617
|
-
*
|
|
9618
|
-
* @
|
|
9211
|
+
* Op
|
|
9212
|
+
* @constant
|
|
9619
9213
|
*/
|
|
9620
9214
|
op: "change_column_type";
|
|
9621
9215
|
};
|
|
@@ -10164,6 +9758,17 @@ export interface components {
|
|
|
10164
9758
|
validation?: string | null;
|
|
10165
9759
|
};
|
|
10166
9760
|
/** Column */
|
|
9761
|
+
"Column-Input": {
|
|
9762
|
+
default?: components["schemas"]["Default"] | null;
|
|
9763
|
+
name: components["schemas"]["IdentifierString"];
|
|
9764
|
+
/**
|
|
9765
|
+
* Nullable
|
|
9766
|
+
* @default true
|
|
9767
|
+
*/
|
|
9768
|
+
nullable?: boolean;
|
|
9769
|
+
type: components["schemas"]["ColumnType"];
|
|
9770
|
+
};
|
|
9771
|
+
/** Column */
|
|
10167
9772
|
"Column-Output": {
|
|
10168
9773
|
/**
|
|
10169
9774
|
* Data Type
|
|
@@ -10835,49 +10440,6 @@ export interface components {
|
|
|
10835
10440
|
/** Total */
|
|
10836
10441
|
total: number;
|
|
10837
10442
|
};
|
|
10838
|
-
/** ConversationStateSaveRequest */
|
|
10839
|
-
ConversationStateSaveRequest: {
|
|
10840
|
-
/** Entity Id */
|
|
10841
|
-
entity_id?: string | null;
|
|
10842
|
-
/** Resume At */
|
|
10843
|
-
resume_at?: string | null;
|
|
10844
|
-
/** State */
|
|
10845
|
-
state: {
|
|
10846
|
-
[key: string]: unknown;
|
|
10847
|
-
};
|
|
10848
|
-
/**
|
|
10849
|
-
* Status
|
|
10850
|
-
* @enum {string}
|
|
10851
|
-
*/
|
|
10852
|
-
status: "active" | "frozen" | "closed";
|
|
10853
|
-
/** Version */
|
|
10854
|
-
version: number;
|
|
10855
|
-
};
|
|
10856
|
-
/** ConversationStateSaveResponse */
|
|
10857
|
-
ConversationStateSaveResponse: {
|
|
10858
|
-
/**
|
|
10859
|
-
* Conversation Id
|
|
10860
|
-
* Format: uuid
|
|
10861
|
-
*/
|
|
10862
|
-
conversation_id: string;
|
|
10863
|
-
/**
|
|
10864
|
-
* Status
|
|
10865
|
-
* @enum {string}
|
|
10866
|
-
*/
|
|
10867
|
-
status: "active" | "frozen" | "closed";
|
|
10868
|
-
/**
|
|
10869
|
-
* Turn Count
|
|
10870
|
-
* @default 0
|
|
10871
|
-
*/
|
|
10872
|
-
turn_count?: number;
|
|
10873
|
-
/** Version */
|
|
10874
|
-
version: number;
|
|
10875
|
-
/**
|
|
10876
|
-
* Workspace Id
|
|
10877
|
-
* Format: uuid
|
|
10878
|
-
*/
|
|
10879
|
-
workspace_id: string;
|
|
10880
|
-
};
|
|
10881
10443
|
/** ConversationThreadRequest */
|
|
10882
10444
|
ConversationThreadRequest: {
|
|
10883
10445
|
channel_kind: components["schemas"]["ChannelKind"];
|
|
@@ -10910,22 +10472,11 @@ export interface components {
|
|
|
10910
10472
|
reactivated: boolean;
|
|
10911
10473
|
/** Service Id */
|
|
10912
10474
|
service_id?: string | null;
|
|
10913
|
-
/** State */
|
|
10914
|
-
state: {
|
|
10915
|
-
[key: string]: unknown;
|
|
10916
|
-
};
|
|
10917
10475
|
/**
|
|
10918
10476
|
* Status
|
|
10919
10477
|
* @constant
|
|
10920
10478
|
*/
|
|
10921
10479
|
status: "active";
|
|
10922
|
-
/**
|
|
10923
|
-
* Turn Count
|
|
10924
|
-
* @default 0
|
|
10925
|
-
*/
|
|
10926
|
-
turn_count?: number;
|
|
10927
|
-
/** Version */
|
|
10928
|
-
version: number;
|
|
10929
10480
|
/**
|
|
10930
10481
|
* Workspace Id
|
|
10931
10482
|
* Format: uuid
|
|
@@ -11466,23 +11017,6 @@ export interface components {
|
|
|
11466
11017
|
*/
|
|
11467
11018
|
status: string;
|
|
11468
11019
|
};
|
|
11469
|
-
/** CreatePersonaRequest */
|
|
11470
|
-
CreatePersonaRequest: {
|
|
11471
|
-
/** @default */
|
|
11472
|
-
background?: components["schemas"]["DescriptionString"];
|
|
11473
|
-
/** Communication Style */
|
|
11474
|
-
communication_style?: {
|
|
11475
|
-
[key: string]: unknown;
|
|
11476
|
-
};
|
|
11477
|
-
/**
|
|
11478
|
-
* Default Language
|
|
11479
|
-
* @default eng
|
|
11480
|
-
*/
|
|
11481
|
-
default_language?: string;
|
|
11482
|
-
developed_by: components["schemas"]["NameString"];
|
|
11483
|
-
name: components["schemas"]["NameString"];
|
|
11484
|
-
role: components["schemas"]["NameString"];
|
|
11485
|
-
};
|
|
11486
11020
|
/** CreateRunRequest */
|
|
11487
11021
|
CreateRunRequest: {
|
|
11488
11022
|
/** Branch Name */
|
|
@@ -11548,8 +11082,6 @@ export interface components {
|
|
|
11548
11082
|
/** Keyterms */
|
|
11549
11083
|
keyterms?: string[];
|
|
11550
11084
|
name: components["schemas"]["NameString"];
|
|
11551
|
-
/** Persona Id */
|
|
11552
|
-
persona_id?: string | null;
|
|
11553
11085
|
/**
|
|
11554
11086
|
* Safety Filters Enabled
|
|
11555
11087
|
* @default true
|
|
@@ -11567,7 +11099,7 @@ export interface components {
|
|
|
11567
11099
|
* @default {}
|
|
11568
11100
|
*/
|
|
11569
11101
|
version_sets?: {
|
|
11570
|
-
[key: string]: components["schemas"]["VersionSet"];
|
|
11102
|
+
[key: string]: components["schemas"]["VersionSet-Input"];
|
|
11571
11103
|
};
|
|
11572
11104
|
voice_config?: components["schemas"]["ServiceVoiceConfig-Input"] | null;
|
|
11573
11105
|
};
|
|
@@ -11849,27 +11381,6 @@ export interface components {
|
|
|
11849
11381
|
*/
|
|
11850
11382
|
timezone?: string;
|
|
11851
11383
|
};
|
|
11852
|
-
/** CreateWebhookDestinationRequest */
|
|
11853
|
-
CreateWebhookDestinationRequest: {
|
|
11854
|
-
/** Accepted Event Types */
|
|
11855
|
-
accepted_event_types?: components["schemas"]["EventTypeString"][];
|
|
11856
|
-
description?: components["schemas"]["DescriptionString"] | null;
|
|
11857
|
-
/** Field Mapping */
|
|
11858
|
-
field_mapping?: {
|
|
11859
|
-
[key: string]: string;
|
|
11860
|
-
} | null;
|
|
11861
|
-
name: components["schemas"]["NameString"];
|
|
11862
|
-
/**
|
|
11863
|
-
* Retry Attempts
|
|
11864
|
-
* @default 3
|
|
11865
|
-
*/
|
|
11866
|
-
retry_attempts?: number;
|
|
11867
|
-
/**
|
|
11868
|
-
* Trigger Id
|
|
11869
|
-
* Format: uuid
|
|
11870
|
-
*/
|
|
11871
|
-
trigger_id: string;
|
|
11872
|
-
};
|
|
11873
11384
|
/**
|
|
11874
11385
|
* CreateWorkspaceRequest
|
|
11875
11386
|
* @description Request body for ``POST /v1/me/workspaces``.
|
|
@@ -12610,6 +12121,23 @@ export interface components {
|
|
|
12610
12121
|
/** Feature Name */
|
|
12611
12122
|
feature_name: string;
|
|
12612
12123
|
};
|
|
12124
|
+
/** Default */
|
|
12125
|
+
Default: {
|
|
12126
|
+
/**
|
|
12127
|
+
* Kind
|
|
12128
|
+
* @enum {string}
|
|
12129
|
+
*/
|
|
12130
|
+
kind: "literal" | "uuid_v4" | "now" | "current_date";
|
|
12131
|
+
/**
|
|
12132
|
+
* Value
|
|
12133
|
+
* @description Only meaningful for ``kind="literal"``. Other kinds ignore it.
|
|
12134
|
+
* A ``dict`` value is rendered as a JSONB literal — pair it with a
|
|
12135
|
+
* ``jsonb`` column.
|
|
12136
|
+
*/
|
|
12137
|
+
value?: string | number | boolean | {
|
|
12138
|
+
[key: string]: unknown;
|
|
12139
|
+
} | null;
|
|
12140
|
+
};
|
|
12613
12141
|
/**
|
|
12614
12142
|
* DeliverSurfaceRequest
|
|
12615
12143
|
* @description Request to mark a surface as delivered.
|
|
@@ -12649,27 +12177,6 @@ export interface components {
|
|
|
12649
12177
|
/** Url */
|
|
12650
12178
|
url?: string | null;
|
|
12651
12179
|
};
|
|
12652
|
-
/** DeliveryResponse */
|
|
12653
|
-
DeliveryResponse: {
|
|
12654
|
-
/**
|
|
12655
|
-
* Created At
|
|
12656
|
-
* @description When the delivery event was created
|
|
12657
|
-
*/
|
|
12658
|
-
created_at?: string | null;
|
|
12659
|
-
/** Data */
|
|
12660
|
-
data: {
|
|
12661
|
-
[key: string]: unknown;
|
|
12662
|
-
};
|
|
12663
|
-
/** Effective At */
|
|
12664
|
-
effective_at: string | null;
|
|
12665
|
-
/**
|
|
12666
|
-
* Event Id
|
|
12667
|
-
* Format: uuid
|
|
12668
|
-
*/
|
|
12669
|
-
event_id: string;
|
|
12670
|
-
/** Event Type */
|
|
12671
|
-
event_type: string;
|
|
12672
|
-
};
|
|
12673
12180
|
DescriptionString: string;
|
|
12674
12181
|
/** DestroySessionResponse */
|
|
12675
12182
|
DestroySessionResponse: {
|
|
@@ -12826,8 +12333,8 @@ export interface components {
|
|
|
12826
12333
|
DropColumnAction: {
|
|
12827
12334
|
name: components["schemas"]["IdentifierString"];
|
|
12828
12335
|
/**
|
|
12829
|
-
*
|
|
12830
|
-
* @
|
|
12336
|
+
* Op
|
|
12337
|
+
* @constant
|
|
12831
12338
|
*/
|
|
12832
12339
|
op: "drop_column";
|
|
12833
12340
|
};
|
|
@@ -12835,8 +12342,8 @@ export interface components {
|
|
|
12835
12342
|
DropColumnDefaultAction: {
|
|
12836
12343
|
name: components["schemas"]["IdentifierString"];
|
|
12837
12344
|
/**
|
|
12838
|
-
*
|
|
12839
|
-
* @
|
|
12345
|
+
* Op
|
|
12346
|
+
* @constant
|
|
12840
12347
|
*/
|
|
12841
12348
|
op: "drop_column_default";
|
|
12842
12349
|
};
|
|
@@ -12844,8 +12351,8 @@ export interface components {
|
|
|
12844
12351
|
DropConstraintAction: {
|
|
12845
12352
|
name: components["schemas"]["IdentifierString"];
|
|
12846
12353
|
/**
|
|
12847
|
-
*
|
|
12848
|
-
* @
|
|
12354
|
+
* Op
|
|
12355
|
+
* @constant
|
|
12849
12356
|
*/
|
|
12850
12357
|
op: "drop_constraint";
|
|
12851
12358
|
};
|
|
@@ -12853,8 +12360,8 @@ export interface components {
|
|
|
12853
12360
|
DropIndexAction: {
|
|
12854
12361
|
index_name: components["schemas"]["IdentifierString"];
|
|
12855
12362
|
/**
|
|
12856
|
-
*
|
|
12857
|
-
* @
|
|
12363
|
+
* Op
|
|
12364
|
+
* @constant
|
|
12858
12365
|
*/
|
|
12859
12366
|
op: "drop_index";
|
|
12860
12367
|
};
|
|
@@ -13325,7 +12832,7 @@ export interface components {
|
|
|
13325
12832
|
*/
|
|
13326
12833
|
ingested_at: string;
|
|
13327
12834
|
/** Is Current */
|
|
13328
|
-
is_current: boolean;
|
|
12835
|
+
is_current: boolean | null;
|
|
13329
12836
|
/** Source */
|
|
13330
12837
|
source: string;
|
|
13331
12838
|
/** Source System */
|
|
@@ -13342,6 +12849,11 @@ export interface components {
|
|
|
13342
12849
|
};
|
|
13343
12850
|
/** EnrichmentHistoryResponse */
|
|
13344
12851
|
EnrichmentHistoryResponse: {
|
|
12852
|
+
/**
|
|
12853
|
+
* Dropped Count
|
|
12854
|
+
* @default 0
|
|
12855
|
+
*/
|
|
12856
|
+
dropped_count?: number;
|
|
13345
12857
|
/**
|
|
13346
12858
|
* Entity Id
|
|
13347
12859
|
* Format: uuid
|
|
@@ -13513,11 +13025,15 @@ export interface components {
|
|
|
13513
13025
|
};
|
|
13514
13026
|
/** EntityEventResponse */
|
|
13515
13027
|
EntityEventResponse: {
|
|
13028
|
+
/** Amount */
|
|
13029
|
+
amount?: number | null;
|
|
13030
|
+
call_sid?: components["schemas"]["EventCallSidString"] | null;
|
|
13031
|
+
channel?: components["schemas"]["EventChannelString"] | null;
|
|
13516
13032
|
/**
|
|
13517
13033
|
* Confidence
|
|
13518
13034
|
* @default 1
|
|
13519
13035
|
*/
|
|
13520
|
-
confidence?: number;
|
|
13036
|
+
confidence?: number | null;
|
|
13521
13037
|
/**
|
|
13522
13038
|
* Created At
|
|
13523
13039
|
* @description When the event was created
|
|
@@ -13527,8 +13043,13 @@ export interface components {
|
|
|
13527
13043
|
data?: {
|
|
13528
13044
|
[key: string]: unknown;
|
|
13529
13045
|
};
|
|
13046
|
+
description?: components["schemas"]["EventDescriptionString"] | null;
|
|
13047
|
+
direction?: components["schemas"]["EventDirectionString"] | null;
|
|
13048
|
+
display_name?: components["schemas"]["EventDisplayNameString"] | null;
|
|
13530
13049
|
/** Domain */
|
|
13531
13050
|
domain: string;
|
|
13051
|
+
/** Duration Seconds */
|
|
13052
|
+
duration_seconds?: number | null;
|
|
13532
13053
|
/** Effective At */
|
|
13533
13054
|
effective_at?: string | null;
|
|
13534
13055
|
/** Entity Type */
|
|
@@ -13552,16 +13073,18 @@ export interface components {
|
|
|
13552
13073
|
* Is Current
|
|
13553
13074
|
* @default true
|
|
13554
13075
|
*/
|
|
13555
|
-
is_current?: boolean;
|
|
13076
|
+
is_current?: boolean | null;
|
|
13077
|
+
outcome?: components["schemas"]["EventOutcomeString"] | null;
|
|
13556
13078
|
/** Produced By Agent */
|
|
13557
13079
|
produced_by_agent?: string | null;
|
|
13558
13080
|
/**
|
|
13559
13081
|
* Source
|
|
13560
13082
|
* @default manual
|
|
13561
13083
|
*/
|
|
13562
|
-
source?: string;
|
|
13084
|
+
source?: string | null;
|
|
13563
13085
|
/** Source System */
|
|
13564
13086
|
source_system?: string | null;
|
|
13087
|
+
status?: components["schemas"]["EventStatusString"] | null;
|
|
13565
13088
|
/** Supersedes */
|
|
13566
13089
|
supersedes?: string | null;
|
|
13567
13090
|
/** Sync Error */
|
|
@@ -13936,6 +13459,11 @@ export interface components {
|
|
|
13936
13459
|
by_event_type?: {
|
|
13937
13460
|
[key: string]: number;
|
|
13938
13461
|
};
|
|
13462
|
+
/**
|
|
13463
|
+
* Event Type Window Days
|
|
13464
|
+
* @description Window applied to by_event_type counts when an entity_type filter is supplied.
|
|
13465
|
+
*/
|
|
13466
|
+
event_type_window_days?: number | null;
|
|
13939
13467
|
/** Sync Failed */
|
|
13940
13468
|
sync_failed: number;
|
|
13941
13469
|
/** Sync Pending */
|
|
@@ -14255,6 +13783,13 @@ export interface components {
|
|
|
14255
13783
|
*/
|
|
14256
13784
|
workspace_id: string;
|
|
14257
13785
|
};
|
|
13786
|
+
EventCallSidString: string;
|
|
13787
|
+
EventChannelString: string;
|
|
13788
|
+
EventDescriptionString: string;
|
|
13789
|
+
EventDirectionString: string;
|
|
13790
|
+
EventDisplayNameString: string;
|
|
13791
|
+
EventOutcomeString: string;
|
|
13792
|
+
EventStatusString: string;
|
|
14258
13793
|
/**
|
|
14259
13794
|
* EventSummary
|
|
14260
13795
|
* @description Inline event data for review context — avoids extra API calls.
|
|
@@ -14830,10 +14365,6 @@ export interface components {
|
|
|
14830
14365
|
source?: string | null;
|
|
14831
14366
|
/** Source System */
|
|
14832
14367
|
source_system?: string | null;
|
|
14833
|
-
/** Sync Error */
|
|
14834
|
-
sync_error?: string | null;
|
|
14835
|
-
/** Synced At */
|
|
14836
|
-
synced_at?: string | null;
|
|
14837
14368
|
};
|
|
14838
14369
|
/** FhirResourceHistoryResponse */
|
|
14839
14370
|
FhirResourceHistoryResponse: {
|
|
@@ -14954,11 +14485,6 @@ export interface components {
|
|
|
14954
14485
|
resource_type_counts?: {
|
|
14955
14486
|
[key: string]: number;
|
|
14956
14487
|
};
|
|
14957
|
-
/**
|
|
14958
|
-
* Sync Failure Count
|
|
14959
|
-
* @default 0
|
|
14960
|
-
*/
|
|
14961
|
-
sync_failure_count?: number;
|
|
14962
14488
|
/** Sync Healthy */
|
|
14963
14489
|
sync_healthy?: boolean | null;
|
|
14964
14490
|
};
|
|
@@ -15600,16 +15126,6 @@ export interface components {
|
|
|
15600
15126
|
HealthSyncResponse: {
|
|
15601
15127
|
/** Connector Heartbeats */
|
|
15602
15128
|
connector_heartbeats?: components["schemas"]["ConnectorHeartbeat"][];
|
|
15603
|
-
/** Failed Count */
|
|
15604
|
-
failed_count: number;
|
|
15605
|
-
/** Healthy */
|
|
15606
|
-
healthy: boolean;
|
|
15607
|
-
/** Last Sync Success At */
|
|
15608
|
-
last_sync_success_at?: string | null;
|
|
15609
|
-
/** Oldest Pending Minutes */
|
|
15610
|
-
oldest_pending_minutes?: number | null;
|
|
15611
|
-
/** Pending Count */
|
|
15612
|
-
pending_count: number;
|
|
15613
15129
|
};
|
|
15614
15130
|
/** HipaaReportResponse */
|
|
15615
15131
|
HipaaReportResponse: {
|
|
@@ -16147,11 +15663,6 @@ export interface components {
|
|
|
16147
15663
|
* @default false
|
|
16148
15664
|
*/
|
|
16149
15665
|
use_structured_output?: boolean;
|
|
16150
|
-
/**
|
|
16151
|
-
* Version
|
|
16152
|
-
* @default 1
|
|
16153
|
-
*/
|
|
16154
|
-
version?: number;
|
|
16155
15666
|
/**
|
|
16156
15667
|
* Workspace Id
|
|
16157
15668
|
* Format: uuid
|
|
@@ -16314,28 +15825,6 @@ export interface components {
|
|
|
16314
15825
|
*/
|
|
16315
15826
|
row_count?: number;
|
|
16316
15827
|
};
|
|
16317
|
-
/** Item */
|
|
16318
|
-
Item: {
|
|
16319
|
-
/**
|
|
16320
|
-
* Created At
|
|
16321
|
-
* Format: date-time
|
|
16322
|
-
*/
|
|
16323
|
-
created_at: string;
|
|
16324
|
-
/**
|
|
16325
|
-
* Id
|
|
16326
|
-
* Format: uuid
|
|
16327
|
-
*/
|
|
16328
|
-
id: string;
|
|
16329
|
-
/** Physical Name */
|
|
16330
|
-
physical_name: string;
|
|
16331
|
-
/** Table Name */
|
|
16332
|
-
table_name: string;
|
|
16333
|
-
/**
|
|
16334
|
-
* Workspace Id
|
|
16335
|
-
* Format: uuid
|
|
16336
|
-
*/
|
|
16337
|
-
workspace_id: string;
|
|
16338
|
-
};
|
|
16339
15828
|
/**
|
|
16340
15829
|
* JoinCallRequest
|
|
16341
15830
|
* @description Request to join an active call as operator.
|
|
@@ -16423,16 +15912,70 @@ export interface components {
|
|
|
16423
15912
|
};
|
|
16424
15913
|
/** LLMConfig */
|
|
16425
15914
|
LLMConfig: {
|
|
15915
|
+
experience_controls?: components["schemas"]["LLMExperienceControls"] | null;
|
|
16426
15916
|
/** Llm Name */
|
|
16427
15917
|
llm_name: string;
|
|
16428
|
-
/**
|
|
16429
|
-
* Params
|
|
16430
|
-
* @default {}
|
|
16431
|
-
*/
|
|
15918
|
+
/** Params */
|
|
16432
15919
|
params?: {
|
|
16433
15920
|
[key: string]: unknown;
|
|
16434
15921
|
};
|
|
16435
15922
|
};
|
|
15923
|
+
/**
|
|
15924
|
+
* LLMExperienceControls
|
|
15925
|
+
* @description First-class chat experience controls for consumer-facing agents.
|
|
15926
|
+
*
|
|
15927
|
+
* ``params`` remains available as a provider-specific escape hatch. These
|
|
15928
|
+
* fields cover the OpenAI Chat Completions controls that most directly shape
|
|
15929
|
+
* response tone, feel, determinism, latency, and structured output behavior.
|
|
15930
|
+
* Token budgets are intentionally excluded so version sets do not reintroduce
|
|
15931
|
+
* accidental response truncation.
|
|
15932
|
+
*/
|
|
15933
|
+
LLMExperienceControls: {
|
|
15934
|
+
/** Frequency Penalty */
|
|
15935
|
+
frequency_penalty?: number | null;
|
|
15936
|
+
/** Logit Bias */
|
|
15937
|
+
logit_bias?: {
|
|
15938
|
+
[key: string]: number;
|
|
15939
|
+
} | null;
|
|
15940
|
+
/** Logprobs */
|
|
15941
|
+
logprobs?: boolean | null;
|
|
15942
|
+
/** Metadata */
|
|
15943
|
+
metadata?: {
|
|
15944
|
+
[key: string]: string;
|
|
15945
|
+
} | null;
|
|
15946
|
+
/** Parallel Tool Calls */
|
|
15947
|
+
parallel_tool_calls?: boolean | null;
|
|
15948
|
+
/** Presence Penalty */
|
|
15949
|
+
presence_penalty?: number | null;
|
|
15950
|
+
/** Prompt Cache Key */
|
|
15951
|
+
prompt_cache_key?: string | null;
|
|
15952
|
+
/** Prompt Cache Retention */
|
|
15953
|
+
prompt_cache_retention?: ("in-memory" | "24h") | null;
|
|
15954
|
+
/** Reasoning Effort */
|
|
15955
|
+
reasoning_effort?: ("none" | "minimal" | "low" | "medium" | "high" | "xhigh") | null;
|
|
15956
|
+
/** Response Format */
|
|
15957
|
+
response_format?: {
|
|
15958
|
+
[key: string]: unknown;
|
|
15959
|
+
} | null;
|
|
15960
|
+
/** Safety Identifier */
|
|
15961
|
+
safety_identifier?: string | null;
|
|
15962
|
+
/** Seed */
|
|
15963
|
+
seed?: number | null;
|
|
15964
|
+
/** Service Tier */
|
|
15965
|
+
service_tier?: string | null;
|
|
15966
|
+
/** Stop */
|
|
15967
|
+
stop?: string | string[] | null;
|
|
15968
|
+
/** Store */
|
|
15969
|
+
store?: boolean | null;
|
|
15970
|
+
/** Temperature */
|
|
15971
|
+
temperature?: number | null;
|
|
15972
|
+
/** Top Logprobs */
|
|
15973
|
+
top_logprobs?: number | null;
|
|
15974
|
+
/** Top P */
|
|
15975
|
+
top_p?: number | null;
|
|
15976
|
+
/** Verbosity */
|
|
15977
|
+
verbosity?: ("low" | "medium" | "high") | null;
|
|
15978
|
+
};
|
|
16436
15979
|
/**
|
|
16437
15980
|
* LanguageProviderEntry
|
|
16438
15981
|
* @description Per-language TTS provider configuration.
|
|
@@ -16672,22 +16215,6 @@ export interface components {
|
|
|
16672
16215
|
*/
|
|
16673
16216
|
workspace_id: string;
|
|
16674
16217
|
};
|
|
16675
|
-
/** MarkSyncedRequest */
|
|
16676
|
-
MarkSyncedRequest: {
|
|
16677
|
-
/** Data Source Id */
|
|
16678
|
-
data_source_id?: string | null;
|
|
16679
|
-
/**
|
|
16680
|
-
* Event Id
|
|
16681
|
-
* Format: uuid
|
|
16682
|
-
*/
|
|
16683
|
-
event_id: string;
|
|
16684
|
-
/** Sync Error */
|
|
16685
|
-
sync_error?: string | null;
|
|
16686
|
-
/** Synced At */
|
|
16687
|
-
synced_at?: string | null;
|
|
16688
|
-
/** Workspace Id */
|
|
16689
|
-
workspace_id?: string | null;
|
|
16690
|
-
};
|
|
16691
16218
|
/** MemoryAnalyticsResponse */
|
|
16692
16219
|
MemoryAnalyticsResponse: {
|
|
16693
16220
|
/** Active Dimensions */
|
|
@@ -16977,8 +16504,9 @@ export interface components {
|
|
|
16977
16504
|
MetricCatalogEntry: {
|
|
16978
16505
|
/** Builtin */
|
|
16979
16506
|
builtin: boolean;
|
|
16980
|
-
/**
|
|
16981
|
-
|
|
16507
|
+
/** Custom Source Key */
|
|
16508
|
+
custom_source_key?: string | null;
|
|
16509
|
+
description?: components["schemas"]["DescriptionString"] | null;
|
|
16982
16510
|
/**
|
|
16983
16511
|
* Extraction Mode
|
|
16984
16512
|
* @default static
|
|
@@ -16996,7 +16524,17 @@ export interface components {
|
|
|
16996
16524
|
* @default false
|
|
16997
16525
|
*/
|
|
16998
16526
|
has_prompt?: boolean;
|
|
16999
|
-
|
|
16527
|
+
/**
|
|
16528
|
+
* Key
|
|
16529
|
+
* @description Metric key (lowercase alphanumeric + underscores)
|
|
16530
|
+
*/
|
|
16531
|
+
key: string;
|
|
16532
|
+
/**
|
|
16533
|
+
* Latency Tier
|
|
16534
|
+
* @default batch
|
|
16535
|
+
* @enum {string}
|
|
16536
|
+
*/
|
|
16537
|
+
latency_tier?: "streaming" | "near_realtime" | "batch";
|
|
17000
16538
|
/**
|
|
17001
16539
|
* Metric Type
|
|
17002
16540
|
* @enum {string}
|
|
@@ -17009,6 +16547,17 @@ export interface components {
|
|
|
17009
16547
|
*/
|
|
17010
16548
|
model_tier?: "free" | "fast" | "balanced" | "max" | "custom";
|
|
17011
16549
|
name: components["schemas"]["NameString"];
|
|
16550
|
+
/**
|
|
16551
|
+
* Period Granularity
|
|
16552
|
+
* @default daily
|
|
16553
|
+
* @enum {string}
|
|
16554
|
+
*/
|
|
16555
|
+
period_granularity?: "hourly" | "daily";
|
|
16556
|
+
/**
|
|
16557
|
+
* Source
|
|
16558
|
+
* @enum {string}
|
|
16559
|
+
*/
|
|
16560
|
+
source: "call_intelligence" | "world_events" | "surface_events" | "emotion_events" | "connector_events" | "zerobus_events" | "voice_judge_results" | "custom";
|
|
17012
16561
|
/** Unit */
|
|
17013
16562
|
unit?: string | null;
|
|
17014
16563
|
};
|
|
@@ -17090,6 +16639,11 @@ export interface components {
|
|
|
17090
16639
|
* @enum {string}
|
|
17091
16640
|
*/
|
|
17092
16641
|
channel_scope?: "all" | "voice" | "text" | "surface" | "inbound" | "outbound";
|
|
16642
|
+
/**
|
|
16643
|
+
* Custom Source Key
|
|
16644
|
+
* @description Extension source key used only when source='custom'.
|
|
16645
|
+
*/
|
|
16646
|
+
custom_source_key?: string | null;
|
|
17093
16647
|
description?: components["schemas"]["DescriptionString"] | null;
|
|
17094
16648
|
/**
|
|
17095
16649
|
* Event Types
|
|
@@ -17175,10 +16729,10 @@ export interface components {
|
|
|
17175
16729
|
ratio_numerator_event?: string | null;
|
|
17176
16730
|
/**
|
|
17177
16731
|
* Source
|
|
17178
|
-
* @description
|
|
16732
|
+
* @description Source key for the producer that supplies this metric. Built-ins include 'call_intelligence', 'world_events', and 'surface_events'. Use 'custom' with custom_source_key for extension producers.
|
|
17179
16733
|
* @enum {string}
|
|
17180
16734
|
*/
|
|
17181
|
-
source: "call_intelligence" | "world_events" | "surface_events" | "emotion_events" | "connector_events" | "zerobus_events" | "voice_judge_results";
|
|
16735
|
+
source: "call_intelligence" | "world_events" | "surface_events" | "emotion_events" | "connector_events" | "zerobus_events" | "voice_judge_results" | "custom";
|
|
17182
16736
|
/**
|
|
17183
16737
|
* Source Filter
|
|
17184
16738
|
* @description Optional SQL WHERE fragment for additional filtering (e.g. "source = 'voice_agent'"). Applied after event_type filter.
|
|
@@ -17205,46 +16759,28 @@ export interface components {
|
|
|
17205
16759
|
*/
|
|
17206
16760
|
valid_range_min?: number | null;
|
|
17207
16761
|
};
|
|
17208
|
-
/**
|
|
17209
|
-
|
|
17210
|
-
/**
|
|
17211
|
-
|
|
17212
|
-
* @description Optional point-in-time cutoff for selecting the call intelligence snapshot.
|
|
17213
|
-
*/
|
|
17214
|
-
as_of?: string | null;
|
|
17215
|
-
/**
|
|
17216
|
-
* Persist
|
|
17217
|
-
* @description On-demand metric evaluation never writes to metrics.metric_values.
|
|
17218
|
-
* @default false
|
|
17219
|
-
* @constant
|
|
17220
|
-
*/
|
|
17221
|
-
persist?: false;
|
|
17222
|
-
/**
|
|
17223
|
-
* Subject Id
|
|
17224
|
-
* @description CallSid, call UUID, or simulation session id
|
|
17225
|
-
*/
|
|
17226
|
-
subject_id: string;
|
|
16762
|
+
/** MetricListResponse */
|
|
16763
|
+
MetricListResponse: {
|
|
16764
|
+
/** Metrics */
|
|
16765
|
+
metrics: (components["schemas"]["NumericalMetricValueResponse"] | components["schemas"]["CategoricalMetricValueResponse"] | components["schemas"]["BooleanMetricValueResponse"])[];
|
|
17227
16766
|
};
|
|
17228
|
-
/**
|
|
17229
|
-
|
|
16767
|
+
/** MetricProjectionResponse */
|
|
16768
|
+
MetricProjectionResponse: {
|
|
16769
|
+
/** Accepted */
|
|
16770
|
+
accepted: number;
|
|
17230
16771
|
/**
|
|
17231
|
-
*
|
|
17232
|
-
*
|
|
16772
|
+
* Queued Jobs
|
|
16773
|
+
* @deprecated
|
|
16774
|
+
* @default 0
|
|
17233
16775
|
*/
|
|
17234
|
-
|
|
17235
|
-
/**
|
|
17236
|
-
|
|
16776
|
+
queued_jobs?: number;
|
|
16777
|
+
/** Skipped Duplicates */
|
|
16778
|
+
skipped_duplicates: number;
|
|
17237
16779
|
/**
|
|
17238
|
-
*
|
|
17239
|
-
* @default false
|
|
16780
|
+
* Status
|
|
17240
16781
|
* @constant
|
|
17241
16782
|
*/
|
|
17242
|
-
|
|
17243
|
-
};
|
|
17244
|
-
/** MetricListResponse */
|
|
17245
|
-
MetricListResponse: {
|
|
17246
|
-
/** Metrics */
|
|
17247
|
-
metrics: (components["schemas"]["NumericalMetricValueResponse"] | components["schemas"]["CategoricalMetricValueResponse"] | components["schemas"]["BooleanMetricValueResponse"])[];
|
|
16783
|
+
status: "projected";
|
|
17248
16784
|
};
|
|
17249
16785
|
/**
|
|
17250
16786
|
* MetricSettingsRequest
|
|
@@ -18159,17 +17695,6 @@ export interface components {
|
|
|
18159
17695
|
/** Total */
|
|
18160
17696
|
total?: number | null;
|
|
18161
17697
|
};
|
|
18162
|
-
/** PaginatedResponse[DeliveryResponse] */
|
|
18163
|
-
PaginatedResponse_DeliveryResponse_: {
|
|
18164
|
-
/** Continuation Token */
|
|
18165
|
-
continuation_token?: number | null;
|
|
18166
|
-
/** Has More */
|
|
18167
|
-
has_more: boolean;
|
|
18168
|
-
/** Items */
|
|
18169
|
-
items: components["schemas"]["DeliveryResponse"][];
|
|
18170
|
-
/** Total */
|
|
18171
|
-
total?: number | null;
|
|
18172
|
-
};
|
|
18173
17698
|
/** PaginatedResponse[EscalationEventResponse] */
|
|
18174
17699
|
PaginatedResponse_EscalationEventResponse_: {
|
|
18175
17700
|
/** Continuation Token */
|
|
@@ -18236,17 +17761,6 @@ export interface components {
|
|
|
18236
17761
|
/** Total */
|
|
18237
17762
|
total?: number | null;
|
|
18238
17763
|
};
|
|
18239
|
-
/** PaginatedResponse[PersonaResponse] */
|
|
18240
|
-
PaginatedResponse_PersonaResponse_: {
|
|
18241
|
-
/** Continuation Token */
|
|
18242
|
-
continuation_token?: number | null;
|
|
18243
|
-
/** Has More */
|
|
18244
|
-
has_more: boolean;
|
|
18245
|
-
/** Items */
|
|
18246
|
-
items: components["schemas"]["PersonaResponse"][];
|
|
18247
|
-
/** Total */
|
|
18248
|
-
total?: number | null;
|
|
18249
|
-
};
|
|
18250
17764
|
/** PaginatedResponse[ReviewItemResponse] */
|
|
18251
17765
|
PaginatedResponse_ReviewItemResponse_: {
|
|
18252
17766
|
/** Continuation Token */
|
|
@@ -18357,17 +17871,6 @@ export interface components {
|
|
|
18357
17871
|
/** Total */
|
|
18358
17872
|
total?: number | null;
|
|
18359
17873
|
};
|
|
18360
|
-
/** PaginatedResponse[WebhookDestinationResponse] */
|
|
18361
|
-
PaginatedResponse_WebhookDestinationResponse_: {
|
|
18362
|
-
/** Continuation Token */
|
|
18363
|
-
continuation_token?: number | null;
|
|
18364
|
-
/** Has More */
|
|
18365
|
-
has_more: boolean;
|
|
18366
|
-
/** Items */
|
|
18367
|
-
items: components["schemas"]["WebhookDestinationResponse"][];
|
|
18368
|
-
/** Total */
|
|
18369
|
-
total?: number | null;
|
|
18370
|
-
};
|
|
18371
17874
|
/** PaginatedResponse[WorkspaceResponse] */
|
|
18372
17875
|
PaginatedResponse_WorkspaceResponse_: {
|
|
18373
17876
|
/** Continuation Token */
|
|
@@ -18402,34 +17905,6 @@ export interface components {
|
|
|
18402
17905
|
*/
|
|
18403
17906
|
rows: unknown[][];
|
|
18404
17907
|
};
|
|
18405
|
-
/**
|
|
18406
|
-
* Parameter
|
|
18407
|
-
* @description Typed declaration of one input parameter.
|
|
18408
|
-
*
|
|
18409
|
-
* For SQL function types, ``name`` becomes the ``:name`` placeholder
|
|
18410
|
-
* in the SQL template. For Python function types, ``name`` becomes
|
|
18411
|
-
* the positional argument name in ``def main(...)`` and the input
|
|
18412
|
-
* column name on the UC UDF signature.
|
|
18413
|
-
*
|
|
18414
|
-
* The ``description`` propagates into the LLM tool spec (this is
|
|
18415
|
-
* what Databricks' Agent Framework reads, and what Anthropic's
|
|
18416
|
-
* tool-use spec exposes to the model). Missing descriptions
|
|
18417
|
-
* silently break tool selection — the registration layer rejects
|
|
18418
|
-
* empty strings.
|
|
18419
|
-
*/
|
|
18420
|
-
Parameter: {
|
|
18421
|
-
/** Default */
|
|
18422
|
-
default?: string | number | boolean | null;
|
|
18423
|
-
/** Description */
|
|
18424
|
-
description: string;
|
|
18425
|
-
/** Name */
|
|
18426
|
-
name: string;
|
|
18427
|
-
/**
|
|
18428
|
-
* Type
|
|
18429
|
-
* @enum {string}
|
|
18430
|
-
*/
|
|
18431
|
-
type: "string" | "integer" | "number" | "boolean";
|
|
18432
|
-
};
|
|
18433
17908
|
/** Participant */
|
|
18434
17909
|
Participant: {
|
|
18435
17910
|
/** Display Name */
|
|
@@ -18955,65 +18430,6 @@ export interface components {
|
|
|
18955
18430
|
*/
|
|
18956
18431
|
workspace_id: string;
|
|
18957
18432
|
};
|
|
18958
|
-
/** PersonaResponse */
|
|
18959
|
-
PersonaResponse: {
|
|
18960
|
-
/**
|
|
18961
|
-
* Background
|
|
18962
|
-
* @description Background context and instructions for the persona
|
|
18963
|
-
*/
|
|
18964
|
-
background: string;
|
|
18965
|
-
/**
|
|
18966
|
-
* Communication Style
|
|
18967
|
-
* @description Communication style configuration
|
|
18968
|
-
*/
|
|
18969
|
-
communication_style: {
|
|
18970
|
-
[key: string]: unknown;
|
|
18971
|
-
};
|
|
18972
|
-
/**
|
|
18973
|
-
* Created At
|
|
18974
|
-
* Format: date-time
|
|
18975
|
-
* @description When the persona was created
|
|
18976
|
-
*/
|
|
18977
|
-
created_at: string;
|
|
18978
|
-
/**
|
|
18979
|
-
* Default Language
|
|
18980
|
-
* @description ISO 639-3 language code (e.g. 'eng')
|
|
18981
|
-
*/
|
|
18982
|
-
default_language: string;
|
|
18983
|
-
/**
|
|
18984
|
-
* Developed By
|
|
18985
|
-
* @description Organization or team that created this persona
|
|
18986
|
-
*/
|
|
18987
|
-
developed_by: string;
|
|
18988
|
-
/**
|
|
18989
|
-
* Id
|
|
18990
|
-
* Format: uuid
|
|
18991
|
-
* @description Unique persona identifier
|
|
18992
|
-
*/
|
|
18993
|
-
id: string;
|
|
18994
|
-
/**
|
|
18995
|
-
* Name
|
|
18996
|
-
* @description Display name of the persona
|
|
18997
|
-
*/
|
|
18998
|
-
name: string;
|
|
18999
|
-
/**
|
|
19000
|
-
* Role
|
|
19001
|
-
* @description Role the persona embodies (e.g. 'Receptionist')
|
|
19002
|
-
*/
|
|
19003
|
-
role: string;
|
|
19004
|
-
/**
|
|
19005
|
-
* Updated At
|
|
19006
|
-
* Format: date-time
|
|
19007
|
-
* @description When the persona was last updated
|
|
19008
|
-
*/
|
|
19009
|
-
updated_at: string;
|
|
19010
|
-
/**
|
|
19011
|
-
* Workspace Id
|
|
19012
|
-
* Format: uuid
|
|
19013
|
-
* @description Workspace that owns this persona
|
|
19014
|
-
*/
|
|
19015
|
-
workspace_id: string;
|
|
19016
|
-
};
|
|
19017
18433
|
PhoneE164: string;
|
|
19018
18434
|
/** PhoneNumberCallVolume */
|
|
19019
18435
|
PhoneNumberCallVolume: {
|
|
@@ -19888,7 +19304,7 @@ export interface components {
|
|
|
19888
19304
|
/** Name */
|
|
19889
19305
|
name: string;
|
|
19890
19306
|
/** Parameters */
|
|
19891
|
-
parameters?: components["schemas"]["
|
|
19307
|
+
parameters?: components["schemas"]["platform_lib__platform_functions__models__Parameter"][];
|
|
19892
19308
|
/**
|
|
19893
19309
|
* Returns
|
|
19894
19310
|
* @default table
|
|
@@ -20002,8 +19418,8 @@ export interface components {
|
|
|
20002
19418
|
RenameColumnAction: {
|
|
20003
19419
|
from: components["schemas"]["IdentifierString"];
|
|
20004
19420
|
/**
|
|
20005
|
-
*
|
|
20006
|
-
* @
|
|
19421
|
+
* Op
|
|
19422
|
+
* @constant
|
|
20007
19423
|
*/
|
|
20008
19424
|
op: "rename_column";
|
|
20009
19425
|
to: components["schemas"]["IdentifierString"];
|
|
@@ -20380,16 +19796,6 @@ export interface components {
|
|
|
20380
19796
|
/** Duration Days */
|
|
20381
19797
|
duration_days: number;
|
|
20382
19798
|
};
|
|
20383
|
-
/** RotateSecretResponse */
|
|
20384
|
-
RotateSecretResponse: {
|
|
20385
|
-
/**
|
|
20386
|
-
* Rotation Expires At
|
|
20387
|
-
* Format: date-time
|
|
20388
|
-
*/
|
|
20389
|
-
rotation_expires_at: string;
|
|
20390
|
-
/** Secret */
|
|
20391
|
-
secret: string;
|
|
20392
|
-
};
|
|
20393
19799
|
/** RunSimulationBenchmarkRequest */
|
|
20394
19800
|
RunSimulationBenchmarkRequest: {
|
|
20395
19801
|
/** Branch Name */
|
|
@@ -20723,8 +20129,6 @@ export interface components {
|
|
|
20723
20129
|
keyterms: string[];
|
|
20724
20130
|
/** Name */
|
|
20725
20131
|
name: string;
|
|
20726
|
-
/** Persona Id */
|
|
20727
|
-
persona_id?: string | null;
|
|
20728
20132
|
risk_signal_config?: components["schemas"]["RiskSignalConfig"] | null;
|
|
20729
20133
|
/**
|
|
20730
20134
|
* Safety Filters Enabled
|
|
@@ -20742,7 +20146,7 @@ export interface components {
|
|
|
20742
20146
|
updated_at?: string | null;
|
|
20743
20147
|
/** Version Sets */
|
|
20744
20148
|
version_sets: {
|
|
20745
|
-
[key: string]: components["schemas"]["VersionSet"];
|
|
20149
|
+
[key: string]: components["schemas"]["VersionSet-Output"];
|
|
20746
20150
|
};
|
|
20747
20151
|
voice_config?: components["schemas"]["ServiceVoiceConfig-Output"] | null;
|
|
20748
20152
|
};
|
|
@@ -20867,10 +20271,6 @@ export interface components {
|
|
|
20867
20271
|
keyterms: string[];
|
|
20868
20272
|
/** Name */
|
|
20869
20273
|
name: string;
|
|
20870
|
-
/** Persona Id */
|
|
20871
|
-
persona_id?: string | null;
|
|
20872
|
-
/** Persona Name */
|
|
20873
|
-
persona_name?: string | null;
|
|
20874
20274
|
/**
|
|
20875
20275
|
* Safety Filters Enabled
|
|
20876
20276
|
* @default true
|
|
@@ -20887,7 +20287,7 @@ export interface components {
|
|
|
20887
20287
|
updated_at: string;
|
|
20888
20288
|
/** Version Sets */
|
|
20889
20289
|
version_sets: {
|
|
20890
|
-
[key: string]: components["schemas"]["VersionSet"];
|
|
20290
|
+
[key: string]: components["schemas"]["VersionSet-Output"];
|
|
20891
20291
|
};
|
|
20892
20292
|
voice_config?: components["schemas"]["ServiceVoiceConfig-Output"] | null;
|
|
20893
20293
|
/**
|
|
@@ -21254,11 +20654,11 @@ export interface components {
|
|
|
21254
20654
|
};
|
|
21255
20655
|
/** SetColumnDefaultAction */
|
|
21256
20656
|
SetColumnDefaultAction: {
|
|
21257
|
-
default: components["schemas"]["
|
|
20657
|
+
default: components["schemas"]["Default"];
|
|
21258
20658
|
name: components["schemas"]["IdentifierString"];
|
|
21259
20659
|
/**
|
|
21260
|
-
*
|
|
21261
|
-
* @
|
|
20660
|
+
* Op
|
|
20661
|
+
* @constant
|
|
21262
20662
|
*/
|
|
21263
20663
|
op: "set_column_default";
|
|
21264
20664
|
};
|
|
@@ -21268,8 +20668,8 @@ export interface components {
|
|
|
21268
20668
|
/** Nullable */
|
|
21269
20669
|
nullable: boolean;
|
|
21270
20670
|
/**
|
|
21271
|
-
*
|
|
21272
|
-
* @
|
|
20671
|
+
* Op
|
|
20672
|
+
* @constant
|
|
21273
20673
|
*/
|
|
21274
20674
|
op: "set_column_nullable";
|
|
21275
20675
|
};
|
|
@@ -22047,8 +21447,6 @@ export interface components {
|
|
|
22047
21447
|
urgency_keywords: string[];
|
|
22048
21448
|
/** Use Structured Output */
|
|
22049
21449
|
use_structured_output: boolean;
|
|
22050
|
-
/** Version */
|
|
22051
|
-
version: number;
|
|
22052
21450
|
/**
|
|
22053
21451
|
* Workspace Id
|
|
22054
21452
|
* Format: uuid
|
|
@@ -22405,6 +21803,8 @@ export interface components {
|
|
|
22405
21803
|
annotation?: string | null;
|
|
22406
21804
|
/** From State */
|
|
22407
21805
|
readonly from_state: string;
|
|
21806
|
+
/** Nav Ms */
|
|
21807
|
+
nav_ms?: number | null;
|
|
22408
21808
|
/**
|
|
22409
21809
|
* Next State
|
|
22410
21810
|
* @default
|
|
@@ -22469,6 +21869,34 @@ export interface components {
|
|
|
22469
21869
|
/** Valence */
|
|
22470
21870
|
valence?: number | null;
|
|
22471
21871
|
};
|
|
21872
|
+
/**
|
|
21873
|
+
* StoredParameter
|
|
21874
|
+
* @description One typed input parameter to a workspace data query — trusted shape.
|
|
21875
|
+
*
|
|
21876
|
+
* Read-path model: the DB's CHECK constraints already enforced ``name``
|
|
21877
|
+
* regex and ``type`` enum on write, and the deploy endpoint's strict
|
|
21878
|
+
* :class:`Parameter` validators enforced ``description`` length and
|
|
21879
|
+
* typo-rejection at the inbound network edge. After that, every
|
|
21880
|
+
* construction of this model (DB read projection, executor binding,
|
|
21881
|
+
* agent-engine spec, outbound response) is trusted — no 422 surface.
|
|
21882
|
+
*
|
|
21883
|
+
* ``default is None`` is the canonical "required" signal: the executor
|
|
21884
|
+
* raises if a caller omits a required argument, otherwise substitutes
|
|
21885
|
+
* the stored default.
|
|
21886
|
+
*/
|
|
21887
|
+
StoredParameter: {
|
|
21888
|
+
/** Default */
|
|
21889
|
+
default?: string | number | boolean | null;
|
|
21890
|
+
/** Description */
|
|
21891
|
+
description: string;
|
|
21892
|
+
/** Name */
|
|
21893
|
+
name: string;
|
|
21894
|
+
/**
|
|
21895
|
+
* Type
|
|
21896
|
+
* @enum {string}
|
|
21897
|
+
*/
|
|
21898
|
+
type: "string" | "integer" | "number" | "boolean";
|
|
21899
|
+
};
|
|
22472
21900
|
/** StratifiedFitRow */
|
|
22473
21901
|
StratifiedFitRow: {
|
|
22474
21902
|
/** Auroc */
|
|
@@ -23090,64 +22518,6 @@ export interface components {
|
|
|
23090
22518
|
*/
|
|
23091
22519
|
mode: "listen" | "takeover";
|
|
23092
22520
|
};
|
|
23093
|
-
/** SyncBulkRetryResponse */
|
|
23094
|
-
SyncBulkRetryResponse: {
|
|
23095
|
-
/** Failed To Publish */
|
|
23096
|
-
failed_to_publish: number;
|
|
23097
|
-
/** Retried */
|
|
23098
|
-
retried: number;
|
|
23099
|
-
};
|
|
23100
|
-
/** SyncEventItem */
|
|
23101
|
-
SyncEventItem: {
|
|
23102
|
-
/**
|
|
23103
|
-
* Created At
|
|
23104
|
-
* @description When the event was created
|
|
23105
|
-
*/
|
|
23106
|
-
created_at?: string | null;
|
|
23107
|
-
/** Data Source Id */
|
|
23108
|
-
data_source_id?: string | null;
|
|
23109
|
-
/** Display Name */
|
|
23110
|
-
display_name?: string | null;
|
|
23111
|
-
/** Entity Id */
|
|
23112
|
-
entity_id?: string | null;
|
|
23113
|
-
/** Entity Type */
|
|
23114
|
-
entity_type?: string | null;
|
|
23115
|
-
/**
|
|
23116
|
-
* Event Id
|
|
23117
|
-
* Format: uuid
|
|
23118
|
-
*/
|
|
23119
|
-
event_id: string;
|
|
23120
|
-
/** Event Type */
|
|
23121
|
-
event_type: string;
|
|
23122
|
-
/** Fhir Resource Id */
|
|
23123
|
-
fhir_resource_id?: string | null;
|
|
23124
|
-
/** Fhir Resource Type */
|
|
23125
|
-
fhir_resource_type?: string | null;
|
|
23126
|
-
/** Source */
|
|
23127
|
-
source: string;
|
|
23128
|
-
/** Source System */
|
|
23129
|
-
source_system?: string | null;
|
|
23130
|
-
/** Sync Error */
|
|
23131
|
-
sync_error?: string | null;
|
|
23132
|
-
/**
|
|
23133
|
-
* Sync Status
|
|
23134
|
-
* @enum {string}
|
|
23135
|
-
*/
|
|
23136
|
-
sync_status: "pending" | "synced" | "failed" | "processing" | "not_applicable";
|
|
23137
|
-
/** Synced At */
|
|
23138
|
-
synced_at?: string | null;
|
|
23139
|
-
};
|
|
23140
|
-
/** SyncEventsResponse */
|
|
23141
|
-
SyncEventsResponse: {
|
|
23142
|
-
/** Events */
|
|
23143
|
-
events: components["schemas"]["SyncEventItem"][];
|
|
23144
|
-
/** Has More */
|
|
23145
|
-
has_more: boolean;
|
|
23146
|
-
/** Next Offset */
|
|
23147
|
-
next_offset?: number | null;
|
|
23148
|
-
/** Total */
|
|
23149
|
-
total: number;
|
|
23150
|
-
};
|
|
23151
22521
|
/** SyncFailureEntry */
|
|
23152
22522
|
SyncFailureEntry: {
|
|
23153
22523
|
/** Created At */
|
|
@@ -23166,39 +22536,6 @@ export interface components {
|
|
|
23166
22536
|
/** Sync Error */
|
|
23167
22537
|
sync_error: string | null;
|
|
23168
22538
|
};
|
|
23169
|
-
/** SyncFailureItem */
|
|
23170
|
-
SyncFailureItem: {
|
|
23171
|
-
/** Created At */
|
|
23172
|
-
created_at?: string | null;
|
|
23173
|
-
/** Data */
|
|
23174
|
-
data?: {
|
|
23175
|
-
[key: string]: unknown;
|
|
23176
|
-
};
|
|
23177
|
-
/** Entity Id */
|
|
23178
|
-
entity_id?: string | null;
|
|
23179
|
-
/**
|
|
23180
|
-
* Event Id
|
|
23181
|
-
* Format: uuid
|
|
23182
|
-
*/
|
|
23183
|
-
event_id: string;
|
|
23184
|
-
/** Event Type */
|
|
23185
|
-
event_type: string;
|
|
23186
|
-
/** Fhir Resource Id */
|
|
23187
|
-
fhir_resource_id?: string | null;
|
|
23188
|
-
/** Fhir Resource Type */
|
|
23189
|
-
fhir_resource_type?: string | null;
|
|
23190
|
-
/** Sync Error */
|
|
23191
|
-
sync_error: string;
|
|
23192
|
-
/** Synced At */
|
|
23193
|
-
synced_at?: string | null;
|
|
23194
|
-
};
|
|
23195
|
-
/** SyncFailuresResponse */
|
|
23196
|
-
SyncFailuresResponse: {
|
|
23197
|
-
/** Failures */
|
|
23198
|
-
failures: components["schemas"]["SyncFailureItem"][];
|
|
23199
|
-
/** Total */
|
|
23200
|
-
total: number;
|
|
23201
|
-
};
|
|
23202
22539
|
/** SyncHistoryEntry */
|
|
23203
22540
|
SyncHistoryEntry: {
|
|
23204
22541
|
/** Date */
|
|
@@ -23210,33 +22547,6 @@ export interface components {
|
|
|
23210
22547
|
/** Synced Count */
|
|
23211
22548
|
synced_count: number;
|
|
23212
22549
|
};
|
|
23213
|
-
/** SyncQueueResponse */
|
|
23214
|
-
SyncQueueResponse: {
|
|
23215
|
-
/** By Resource Type */
|
|
23216
|
-
by_resource_type?: {
|
|
23217
|
-
[key: string]: {
|
|
23218
|
-
[key: string]: number;
|
|
23219
|
-
};
|
|
23220
|
-
};
|
|
23221
|
-
/** Failed Count */
|
|
23222
|
-
failed_count: number;
|
|
23223
|
-
/** Last Sync Success At */
|
|
23224
|
-
last_sync_success_at?: string | null;
|
|
23225
|
-
/** Oldest Pending At */
|
|
23226
|
-
oldest_pending_at?: string | null;
|
|
23227
|
-
/** Pending Count */
|
|
23228
|
-
pending_count: number;
|
|
23229
|
-
};
|
|
23230
|
-
/** SyncRetryResponse */
|
|
23231
|
-
SyncRetryResponse: {
|
|
23232
|
-
/**
|
|
23233
|
-
* Event Id
|
|
23234
|
-
* Format: uuid
|
|
23235
|
-
*/
|
|
23236
|
-
event_id: string;
|
|
23237
|
-
/** Status */
|
|
23238
|
-
status: string;
|
|
23239
|
-
};
|
|
23240
22550
|
/**
|
|
23241
22551
|
* TMSMappingReleaseParams
|
|
23242
22552
|
* @description How long before a TMS mapping appointment its slot is released
|
|
@@ -24625,10 +23935,14 @@ export interface components {
|
|
|
24625
23935
|
compound_emotions?: {
|
|
24626
23936
|
[key: string]: unknown;
|
|
24627
23937
|
}[] | null;
|
|
23938
|
+
/** Decision Bearing */
|
|
23939
|
+
decision_bearing?: boolean | null;
|
|
24628
23940
|
/** Emotion Label */
|
|
24629
23941
|
emotion_label?: string | null;
|
|
24630
23942
|
/** Emotion Valence */
|
|
24631
23943
|
emotion_valence?: number | null;
|
|
23944
|
+
/** Empathy Tier */
|
|
23945
|
+
empathy_tier?: number | null;
|
|
24632
23946
|
/** Engine Ms */
|
|
24633
23947
|
engine_ms?: number | null;
|
|
24634
23948
|
/** Eot Confidence */
|
|
@@ -24647,10 +23961,18 @@ export interface components {
|
|
|
24647
23961
|
* @default false
|
|
24648
23962
|
*/
|
|
24649
23963
|
interrupted?: boolean;
|
|
23964
|
+
/** Modality */
|
|
23965
|
+
modality?: string | null;
|
|
24650
23966
|
/** Nav Ms */
|
|
24651
23967
|
nav_ms?: number | null;
|
|
23968
|
+
/** Primary Effect Kind */
|
|
23969
|
+
primary_effect_kind?: string | null;
|
|
24652
23970
|
/** Render Ms */
|
|
24653
23971
|
render_ms?: number | null;
|
|
23972
|
+
/** Signal Kind */
|
|
23973
|
+
signal_kind?: string | null;
|
|
23974
|
+
/** Signal Source */
|
|
23975
|
+
signal_source?: string | null;
|
|
24654
23976
|
/** Speaker Id */
|
|
24655
23977
|
speaker_id?: string | null;
|
|
24656
23978
|
/** Speaker Role */
|
|
@@ -24660,6 +23982,10 @@ export interface components {
|
|
|
24660
23982
|
* @default
|
|
24661
23983
|
*/
|
|
24662
23984
|
state?: string;
|
|
23985
|
+
/** State After */
|
|
23986
|
+
state_after?: string | null;
|
|
23987
|
+
/** State Before */
|
|
23988
|
+
state_before?: string | null;
|
|
24663
23989
|
/**
|
|
24664
23990
|
* State Transitions
|
|
24665
23991
|
* @default []
|
|
@@ -24674,6 +24000,12 @@ export interface components {
|
|
|
24674
24000
|
* @default []
|
|
24675
24001
|
*/
|
|
24676
24002
|
tool_calls?: components["schemas"]["ToolCall"][];
|
|
24003
|
+
/** Tool Ms */
|
|
24004
|
+
tool_ms?: number | null;
|
|
24005
|
+
/** Tool Name */
|
|
24006
|
+
tool_name?: string | null;
|
|
24007
|
+
/** Tool Succeeded */
|
|
24008
|
+
tool_succeeded?: boolean | null;
|
|
24677
24009
|
/**
|
|
24678
24010
|
* Trigger
|
|
24679
24011
|
* @default
|
|
@@ -25060,19 +24392,6 @@ export interface components {
|
|
|
25060
24392
|
/** Type */
|
|
25061
24393
|
type?: ("clinical" | "administrative" | "crisis_counselor") | null;
|
|
25062
24394
|
};
|
|
25063
|
-
/** UpdatePersonaRequest */
|
|
25064
|
-
UpdatePersonaRequest: {
|
|
25065
|
-
background?: components["schemas"]["DescriptionString"] | null;
|
|
25066
|
-
/** Communication Style */
|
|
25067
|
-
communication_style?: {
|
|
25068
|
-
[key: string]: unknown;
|
|
25069
|
-
} | null;
|
|
25070
|
-
/** Default Language */
|
|
25071
|
-
default_language?: string | null;
|
|
25072
|
-
developed_by?: components["schemas"]["NameString"] | null;
|
|
25073
|
-
name?: components["schemas"]["NameString"] | null;
|
|
25074
|
-
role?: components["schemas"]["NameString"] | null;
|
|
25075
|
-
};
|
|
25076
24395
|
/**
|
|
25077
24396
|
* UpdateSchedulingRuleSetRequest
|
|
25078
24397
|
* @description Partial update — fields not provided are unchanged. ``params``
|
|
@@ -25102,8 +24421,6 @@ export interface components {
|
|
|
25102
24421
|
/** Keyterms */
|
|
25103
24422
|
keyterms?: string[] | null;
|
|
25104
24423
|
name?: components["schemas"]["NameString"] | null;
|
|
25105
|
-
/** Persona Id */
|
|
25106
|
-
persona_id?: string | null;
|
|
25107
24424
|
/** Safety Filters Enabled */
|
|
25108
24425
|
safety_filters_enabled?: boolean | null;
|
|
25109
24426
|
/** Tags */
|
|
@@ -25112,7 +24429,7 @@ export interface components {
|
|
|
25112
24429
|
tool_capacity?: number | null;
|
|
25113
24430
|
/** Version Sets */
|
|
25114
24431
|
version_sets?: {
|
|
25115
|
-
[key: string]: components["schemas"]["VersionSet"];
|
|
24432
|
+
[key: string]: components["schemas"]["VersionSet-Input"];
|
|
25116
24433
|
} | null;
|
|
25117
24434
|
voice_config?: components["schemas"]["ServiceVoiceConfig-Input"] | null;
|
|
25118
24435
|
};
|
|
@@ -25244,21 +24561,6 @@ export interface components {
|
|
|
25244
24561
|
/** Timezone */
|
|
25245
24562
|
timezone?: string | null;
|
|
25246
24563
|
};
|
|
25247
|
-
/** UpdateWebhookDestinationRequest */
|
|
25248
|
-
UpdateWebhookDestinationRequest: {
|
|
25249
|
-
/** Accepted Event Types */
|
|
25250
|
-
accepted_event_types?: components["schemas"]["EventTypeString"][] | null;
|
|
25251
|
-
description?: components["schemas"]["DescriptionString"] | null;
|
|
25252
|
-
/** Field Mapping */
|
|
25253
|
-
field_mapping?: {
|
|
25254
|
-
[key: string]: string;
|
|
25255
|
-
} | null;
|
|
25256
|
-
/** Is Active */
|
|
25257
|
-
is_active?: boolean | null;
|
|
25258
|
-
name?: components["schemas"]["NameString"] | null;
|
|
25259
|
-
/** Retry Attempts */
|
|
25260
|
-
retry_attempts?: number | null;
|
|
25261
|
-
};
|
|
25262
24564
|
/** UpdateWorkspaceRequest */
|
|
25263
24565
|
UpdateWorkspaceRequest: {
|
|
25264
24566
|
/** Connector Type */
|
|
@@ -25320,7 +24622,7 @@ export interface components {
|
|
|
25320
24622
|
};
|
|
25321
24623
|
/** UpsertVersionSetRequest */
|
|
25322
24624
|
UpsertVersionSetRequest: {
|
|
25323
|
-
version_set: components["schemas"]["VersionSet"];
|
|
24625
|
+
version_set: components["schemas"]["VersionSet-Input"];
|
|
25324
24626
|
};
|
|
25325
24627
|
/** UsageBucket */
|
|
25326
24628
|
UsageBucket: {
|
|
@@ -25512,15 +24814,26 @@ export interface components {
|
|
|
25512
24814
|
* VersionSet
|
|
25513
24815
|
* @description Pins agent, state machine, and LLM model versions for a service.
|
|
25514
24816
|
*/
|
|
25515
|
-
VersionSet: {
|
|
24817
|
+
"VersionSet-Input": {
|
|
25516
24818
|
/** Agent Version Number */
|
|
25517
24819
|
agent_version_number?: number | null;
|
|
25518
24820
|
/** Context Graph Version Number */
|
|
25519
24821
|
context_graph_version_number?: number | null;
|
|
25520
|
-
/**
|
|
25521
|
-
|
|
25522
|
-
|
|
25523
|
-
|
|
24822
|
+
/** Llm Model Preferences */
|
|
24823
|
+
llm_model_preferences?: {
|
|
24824
|
+
[key: string]: components["schemas"]["LLMConfig"];
|
|
24825
|
+
};
|
|
24826
|
+
};
|
|
24827
|
+
/**
|
|
24828
|
+
* VersionSet
|
|
24829
|
+
* @description Pins agent, state machine, and LLM model versions for a service.
|
|
24830
|
+
*/
|
|
24831
|
+
"VersionSet-Output": {
|
|
24832
|
+
/** Agent Version Number */
|
|
24833
|
+
agent_version_number?: number | null;
|
|
24834
|
+
/** Context Graph Version Number */
|
|
24835
|
+
context_graph_version_number?: number | null;
|
|
24836
|
+
/** Llm Model Preferences */
|
|
25524
24837
|
llm_model_preferences?: {
|
|
25525
24838
|
[key: string]: components["schemas"]["LLMConfig"];
|
|
25526
24839
|
};
|
|
@@ -25856,373 +25169,6 @@ export interface components {
|
|
|
25856
25169
|
*/
|
|
25857
25170
|
setup_id: string;
|
|
25858
25171
|
};
|
|
25859
|
-
/** VoicemailListResponse */
|
|
25860
|
-
VoicemailListResponse: {
|
|
25861
|
-
/** Items */
|
|
25862
|
-
items: components["schemas"]["VoicemailResponse"][];
|
|
25863
|
-
};
|
|
25864
|
-
/** VoicemailResponse */
|
|
25865
|
-
VoicemailResponse: {
|
|
25866
|
-
/**
|
|
25867
|
-
* Created At
|
|
25868
|
-
* Format: date-time
|
|
25869
|
-
*/
|
|
25870
|
-
created_at: string;
|
|
25871
|
-
/** Recipient Phone Number */
|
|
25872
|
-
recipient_phone_number: string;
|
|
25873
|
-
/** Setup Id */
|
|
25874
|
-
setup_id: string;
|
|
25875
|
-
/** Status */
|
|
25876
|
-
status: string;
|
|
25877
|
-
/**
|
|
25878
|
-
* Updated At
|
|
25879
|
-
* Format: date-time
|
|
25880
|
-
*/
|
|
25881
|
-
updated_at: string;
|
|
25882
|
-
/** Use Case Id */
|
|
25883
|
-
use_case_id: string;
|
|
25884
|
-
/**
|
|
25885
|
-
* Voicemail Id
|
|
25886
|
-
* Format: uuid
|
|
25887
|
-
*/
|
|
25888
|
-
voicemail_id: string;
|
|
25889
|
-
};
|
|
25890
|
-
/** VoicemailSentResponse */
|
|
25891
|
-
VoicemailSentResponse: {
|
|
25892
|
-
/** Sender Phone Number */
|
|
25893
|
-
sender_phone_number: string;
|
|
25894
|
-
/**
|
|
25895
|
-
* Voicemail Id
|
|
25896
|
-
* Format: uuid
|
|
25897
|
-
*/
|
|
25898
|
-
voicemail_id: string;
|
|
25899
|
-
};
|
|
25900
|
-
/** WebhookDestinationCreatedResponse */
|
|
25901
|
-
WebhookDestinationCreatedResponse: {
|
|
25902
|
-
/** Accepted Event Types */
|
|
25903
|
-
accepted_event_types: string[];
|
|
25904
|
-
/**
|
|
25905
|
-
* Created At
|
|
25906
|
-
* @description When the webhook destination was created
|
|
25907
|
-
*/
|
|
25908
|
-
created_at?: string | null;
|
|
25909
|
-
/** Created By */
|
|
25910
|
-
created_by: string | null;
|
|
25911
|
-
/** Description */
|
|
25912
|
-
description: string | null;
|
|
25913
|
-
/** Field Mapping */
|
|
25914
|
-
field_mapping: {
|
|
25915
|
-
[key: string]: unknown;
|
|
25916
|
-
} | null;
|
|
25917
|
-
/**
|
|
25918
|
-
* Id
|
|
25919
|
-
* Format: uuid
|
|
25920
|
-
*/
|
|
25921
|
-
id: string;
|
|
25922
|
-
/** Is Active */
|
|
25923
|
-
is_active: boolean;
|
|
25924
|
-
/** Name */
|
|
25925
|
-
name: string;
|
|
25926
|
-
/** Retry Attempts */
|
|
25927
|
-
retry_attempts: number;
|
|
25928
|
-
/** Secret */
|
|
25929
|
-
secret: string;
|
|
25930
|
-
/**
|
|
25931
|
-
* Trigger Id
|
|
25932
|
-
* Format: uuid
|
|
25933
|
-
*/
|
|
25934
|
-
trigger_id: string;
|
|
25935
|
-
/**
|
|
25936
|
-
* Updated At
|
|
25937
|
-
* @description When the webhook destination was last updated
|
|
25938
|
-
*/
|
|
25939
|
-
updated_at?: string | null;
|
|
25940
|
-
/** Url */
|
|
25941
|
-
url: string;
|
|
25942
|
-
/**
|
|
25943
|
-
* Workspace Id
|
|
25944
|
-
* Format: uuid
|
|
25945
|
-
*/
|
|
25946
|
-
workspace_id: string;
|
|
25947
|
-
};
|
|
25948
|
-
/** WebhookDestinationResponse */
|
|
25949
|
-
WebhookDestinationResponse: {
|
|
25950
|
-
/** Accepted Event Types */
|
|
25951
|
-
accepted_event_types: string[];
|
|
25952
|
-
/**
|
|
25953
|
-
* Created At
|
|
25954
|
-
* @description When the webhook destination was created
|
|
25955
|
-
*/
|
|
25956
|
-
created_at?: string | null;
|
|
25957
|
-
/** Created By */
|
|
25958
|
-
created_by: string | null;
|
|
25959
|
-
/** Description */
|
|
25960
|
-
description: string | null;
|
|
25961
|
-
/** Field Mapping */
|
|
25962
|
-
field_mapping: {
|
|
25963
|
-
[key: string]: unknown;
|
|
25964
|
-
} | null;
|
|
25965
|
-
/**
|
|
25966
|
-
* Id
|
|
25967
|
-
* Format: uuid
|
|
25968
|
-
*/
|
|
25969
|
-
id: string;
|
|
25970
|
-
/** Is Active */
|
|
25971
|
-
is_active: boolean;
|
|
25972
|
-
/** Name */
|
|
25973
|
-
name: string;
|
|
25974
|
-
/** Retry Attempts */
|
|
25975
|
-
retry_attempts: number;
|
|
25976
|
-
/**
|
|
25977
|
-
* Trigger Id
|
|
25978
|
-
* Format: uuid
|
|
25979
|
-
*/
|
|
25980
|
-
trigger_id: string;
|
|
25981
|
-
/**
|
|
25982
|
-
* Updated At
|
|
25983
|
-
* @description When the webhook destination was last updated
|
|
25984
|
-
*/
|
|
25985
|
-
updated_at?: string | null;
|
|
25986
|
-
/** Url */
|
|
25987
|
-
url: string;
|
|
25988
|
-
/**
|
|
25989
|
-
* Workspace Id
|
|
25990
|
-
* Format: uuid
|
|
25991
|
-
*/
|
|
25992
|
-
workspace_id: string;
|
|
25993
|
-
};
|
|
25994
|
-
/** WebhookReceivedResponse */
|
|
25995
|
-
WebhookReceivedResponse: {
|
|
25996
|
-
/**
|
|
25997
|
-
* Destination Id
|
|
25998
|
-
* Format: uuid
|
|
25999
|
-
*/
|
|
26000
|
-
destination_id: string;
|
|
26001
|
-
/**
|
|
26002
|
-
* Event Id
|
|
26003
|
-
* Format: uuid
|
|
26004
|
-
*/
|
|
26005
|
-
event_id: string;
|
|
26006
|
-
};
|
|
26007
|
-
/** WorkflowSettingsRequest */
|
|
26008
|
-
WorkflowSettingsRequest: {
|
|
26009
|
-
/** Workflows */
|
|
26010
|
-
workflows: components["schemas"]["WorkflowSpec-Input"][];
|
|
26011
|
-
};
|
|
26012
|
-
/** WorkflowSettingsResponse */
|
|
26013
|
-
WorkflowSettingsResponse: {
|
|
26014
|
-
/** Workflows */
|
|
26015
|
-
workflows?: components["schemas"]["WorkflowSpec-Output"][];
|
|
26016
|
-
};
|
|
26017
|
-
/**
|
|
26018
|
-
* WorkflowSpec
|
|
26019
|
-
* @description A workflow definition stored in workspace settings.
|
|
26020
|
-
*
|
|
26021
|
-
* Workflows are identified by name (unique within a workspace).
|
|
26022
|
-
*/
|
|
26023
|
-
"WorkflowSpec-Input": {
|
|
26024
|
-
/**
|
|
26025
|
-
* Description
|
|
26026
|
-
* @default
|
|
26027
|
-
*/
|
|
26028
|
-
description?: string;
|
|
26029
|
-
/**
|
|
26030
|
-
* Enabled
|
|
26031
|
-
* @default true
|
|
26032
|
-
*/
|
|
26033
|
-
enabled?: boolean;
|
|
26034
|
-
/** Id */
|
|
26035
|
-
id?: string;
|
|
26036
|
-
/** Input Query */
|
|
26037
|
-
input_query?: string | null;
|
|
26038
|
-
/**
|
|
26039
|
-
* Max Concurrent
|
|
26040
|
-
* @default 10
|
|
26041
|
-
*/
|
|
26042
|
-
max_concurrent?: number;
|
|
26043
|
-
/** Name */
|
|
26044
|
-
name: string;
|
|
26045
|
-
/** Steps */
|
|
26046
|
-
steps: components["schemas"]["WorkflowStep-Input"][];
|
|
26047
|
-
/**
|
|
26048
|
-
* Timeout
|
|
26049
|
-
* Format: duration
|
|
26050
|
-
* @default P7D
|
|
26051
|
-
*/
|
|
26052
|
-
timeout?: string;
|
|
26053
|
-
trigger: components["schemas"]["WorkflowTrigger"];
|
|
26054
|
-
};
|
|
26055
|
-
/**
|
|
26056
|
-
* WorkflowSpec
|
|
26057
|
-
* @description A workflow definition stored in workspace settings.
|
|
26058
|
-
*
|
|
26059
|
-
* Workflows are identified by name (unique within a workspace).
|
|
26060
|
-
*/
|
|
26061
|
-
"WorkflowSpec-Output": {
|
|
26062
|
-
/**
|
|
26063
|
-
* Description
|
|
26064
|
-
* @default
|
|
26065
|
-
*/
|
|
26066
|
-
description?: string;
|
|
26067
|
-
/**
|
|
26068
|
-
* Enabled
|
|
26069
|
-
* @default true
|
|
26070
|
-
*/
|
|
26071
|
-
enabled?: boolean;
|
|
26072
|
-
/** Id */
|
|
26073
|
-
id?: string;
|
|
26074
|
-
/** Input Query */
|
|
26075
|
-
input_query?: string | null;
|
|
26076
|
-
/**
|
|
26077
|
-
* Max Concurrent
|
|
26078
|
-
* @default 10
|
|
26079
|
-
*/
|
|
26080
|
-
max_concurrent?: number;
|
|
26081
|
-
/** Name */
|
|
26082
|
-
name: string;
|
|
26083
|
-
/** Steps */
|
|
26084
|
-
steps: components["schemas"]["WorkflowStep-Output"][];
|
|
26085
|
-
/**
|
|
26086
|
-
* Timeout
|
|
26087
|
-
* Format: duration
|
|
26088
|
-
* @default P7D
|
|
26089
|
-
*/
|
|
26090
|
-
timeout?: string;
|
|
26091
|
-
trigger: components["schemas"]["WorkflowTrigger"];
|
|
26092
|
-
};
|
|
26093
|
-
/**
|
|
26094
|
-
* WorkflowStep
|
|
26095
|
-
* @description A single step in a workflow spec.
|
|
26096
|
-
*
|
|
26097
|
-
* Steps are declarative — no LLM decides which step to run next.
|
|
26098
|
-
* The engine executes them sequentially unless branch/for_each alters flow.
|
|
26099
|
-
*/
|
|
26100
|
-
"WorkflowStep-Input": {
|
|
26101
|
-
/** Body Steps */
|
|
26102
|
-
body_steps?: components["schemas"]["WorkflowStep-Input"][] | null;
|
|
26103
|
-
/** Condition */
|
|
26104
|
-
condition?: string | null;
|
|
26105
|
-
/** Endpoint */
|
|
26106
|
-
endpoint?: string | null;
|
|
26107
|
-
/** Integration */
|
|
26108
|
-
integration?: string | null;
|
|
26109
|
-
/** Items From */
|
|
26110
|
-
items_from?: string | null;
|
|
26111
|
-
/** Name */
|
|
26112
|
-
name: string;
|
|
26113
|
-
/** On False */
|
|
26114
|
-
on_false?: string | null;
|
|
26115
|
-
/** On True */
|
|
26116
|
-
on_true?: string | null;
|
|
26117
|
-
/** Request Body */
|
|
26118
|
-
request_body?: {
|
|
26119
|
-
[key: string]: unknown;
|
|
26120
|
-
};
|
|
26121
|
-
/**
|
|
26122
|
-
* Retry Backoff Seconds
|
|
26123
|
-
* @default 2
|
|
26124
|
-
*/
|
|
26125
|
-
retry_backoff_seconds?: number;
|
|
26126
|
-
/**
|
|
26127
|
-
* Retry Count
|
|
26128
|
-
* @default 3
|
|
26129
|
-
*/
|
|
26130
|
-
retry_count?: number;
|
|
26131
|
-
/** Surface Spec */
|
|
26132
|
-
surface_spec?: {
|
|
26133
|
-
[key: string]: unknown;
|
|
26134
|
-
} | null;
|
|
26135
|
-
/** Tool Name */
|
|
26136
|
-
tool_name?: string | null;
|
|
26137
|
-
/** Tool Params */
|
|
26138
|
-
tool_params?: {
|
|
26139
|
-
[key: string]: unknown;
|
|
26140
|
-
};
|
|
26141
|
-
/**
|
|
26142
|
-
* Type
|
|
26143
|
-
* @enum {string}
|
|
26144
|
-
*/
|
|
26145
|
-
type: "tool_call" | "integration_call" | "wait" | "branch" | "for_each" | "surface";
|
|
26146
|
-
/** Wait Duration */
|
|
26147
|
-
wait_duration?: string | null;
|
|
26148
|
-
/** Wait For Event */
|
|
26149
|
-
wait_for_event?: string | null;
|
|
26150
|
-
};
|
|
26151
|
-
/**
|
|
26152
|
-
* WorkflowStep
|
|
26153
|
-
* @description A single step in a workflow spec.
|
|
26154
|
-
*
|
|
26155
|
-
* Steps are declarative — no LLM decides which step to run next.
|
|
26156
|
-
* The engine executes them sequentially unless branch/for_each alters flow.
|
|
26157
|
-
*/
|
|
26158
|
-
"WorkflowStep-Output": {
|
|
26159
|
-
/** Body Steps */
|
|
26160
|
-
body_steps?: components["schemas"]["WorkflowStep-Output"][] | null;
|
|
26161
|
-
/** Condition */
|
|
26162
|
-
condition?: string | null;
|
|
26163
|
-
/** Endpoint */
|
|
26164
|
-
endpoint?: string | null;
|
|
26165
|
-
/** Integration */
|
|
26166
|
-
integration?: string | null;
|
|
26167
|
-
/** Items From */
|
|
26168
|
-
items_from?: string | null;
|
|
26169
|
-
/** Name */
|
|
26170
|
-
name: string;
|
|
26171
|
-
/** On False */
|
|
26172
|
-
on_false?: string | null;
|
|
26173
|
-
/** On True */
|
|
26174
|
-
on_true?: string | null;
|
|
26175
|
-
/** Request Body */
|
|
26176
|
-
request_body?: {
|
|
26177
|
-
[key: string]: unknown;
|
|
26178
|
-
};
|
|
26179
|
-
/**
|
|
26180
|
-
* Retry Backoff Seconds
|
|
26181
|
-
* @default 2
|
|
26182
|
-
*/
|
|
26183
|
-
retry_backoff_seconds?: number;
|
|
26184
|
-
/**
|
|
26185
|
-
* Retry Count
|
|
26186
|
-
* @default 3
|
|
26187
|
-
*/
|
|
26188
|
-
retry_count?: number;
|
|
26189
|
-
/** Surface Spec */
|
|
26190
|
-
surface_spec?: {
|
|
26191
|
-
[key: string]: unknown;
|
|
26192
|
-
} | null;
|
|
26193
|
-
/** Tool Name */
|
|
26194
|
-
tool_name?: string | null;
|
|
26195
|
-
/** Tool Params */
|
|
26196
|
-
tool_params?: {
|
|
26197
|
-
[key: string]: unknown;
|
|
26198
|
-
};
|
|
26199
|
-
/**
|
|
26200
|
-
* Type
|
|
26201
|
-
* @enum {string}
|
|
26202
|
-
*/
|
|
26203
|
-
type: "tool_call" | "integration_call" | "wait" | "branch" | "for_each" | "surface";
|
|
26204
|
-
/** Wait Duration */
|
|
26205
|
-
wait_duration?: string | null;
|
|
26206
|
-
/** Wait For Event */
|
|
26207
|
-
wait_for_event?: string | null;
|
|
26208
|
-
};
|
|
26209
|
-
/**
|
|
26210
|
-
* WorkflowTrigger
|
|
26211
|
-
* @description When and how a workflow starts.
|
|
26212
|
-
*/
|
|
26213
|
-
WorkflowTrigger: {
|
|
26214
|
-
/** Cron Expression */
|
|
26215
|
-
cron_expression?: string | null;
|
|
26216
|
-
/** Event Filter */
|
|
26217
|
-
event_filter?: {
|
|
26218
|
-
[key: string]: unknown;
|
|
26219
|
-
} | null;
|
|
26220
|
-
/**
|
|
26221
|
-
* Type
|
|
26222
|
-
* @enum {string}
|
|
26223
|
-
*/
|
|
26224
|
-
type: "cron" | "event" | "manual";
|
|
26225
|
-
};
|
|
26226
25172
|
/**
|
|
26227
25173
|
* WorkspaceBenchmarks
|
|
26228
25174
|
* @description Workspace-level call quality benchmarks for contextual comparison.
|
|
@@ -26283,6 +25229,48 @@ export interface components {
|
|
|
26283
25229
|
*/
|
|
26284
25230
|
workspace_id: string;
|
|
26285
25231
|
};
|
|
25232
|
+
/**
|
|
25233
|
+
* WorkspaceDataQueryItem
|
|
25234
|
+
* @description Wire shape for the response of every read + create/update handler.
|
|
25235
|
+
*
|
|
25236
|
+
* ``id`` (UUID) is the stable handle — every URL except list takes it.
|
|
25237
|
+
* ``name`` is the workspace-visible label (UNIQUE per workspace) and is
|
|
25238
|
+
* still what the LLM tool registry keys on (``wsq_<name>``), but it is
|
|
25239
|
+
* not the route identifier.
|
|
25240
|
+
*
|
|
25241
|
+
* ``input_schema`` is deliberately NOT exposed — it is fully derivable
|
|
25242
|
+
* from ``parameters[]``. UI consumers can build the JSON Schema view
|
|
25243
|
+
* locally if they need it.
|
|
25244
|
+
*/
|
|
25245
|
+
WorkspaceDataQueryItem: {
|
|
25246
|
+
/**
|
|
25247
|
+
* Deployed At
|
|
25248
|
+
* Format: date-time
|
|
25249
|
+
*/
|
|
25250
|
+
deployed_at: string;
|
|
25251
|
+
/**
|
|
25252
|
+
* Deployed By
|
|
25253
|
+
* Format: uuid
|
|
25254
|
+
*/
|
|
25255
|
+
deployed_by: string;
|
|
25256
|
+
/** Description */
|
|
25257
|
+
description: string;
|
|
25258
|
+
/**
|
|
25259
|
+
* Id
|
|
25260
|
+
* Format: uuid
|
|
25261
|
+
*/
|
|
25262
|
+
id: string;
|
|
25263
|
+
/** Last Invoked At */
|
|
25264
|
+
last_invoked_at?: string | null;
|
|
25265
|
+
/** Name */
|
|
25266
|
+
name: string;
|
|
25267
|
+
/** Parameters */
|
|
25268
|
+
parameters: components["schemas"]["StoredParameter"][];
|
|
25269
|
+
/** Sql Template */
|
|
25270
|
+
sql_template: string;
|
|
25271
|
+
/** Timeout Ms */
|
|
25272
|
+
timeout_ms: number;
|
|
25273
|
+
};
|
|
26286
25274
|
/** WorkspaceInvitationAcceptedEvent */
|
|
26287
25275
|
WorkspaceInvitationAcceptedEvent: {
|
|
26288
25276
|
/**
|
|
@@ -26446,6 +25434,34 @@ export interface components {
|
|
|
26446
25434
|
};
|
|
26447
25435
|
_ToolMockKey: string;
|
|
26448
25436
|
_ToolMockValue: string;
|
|
25437
|
+
/**
|
|
25438
|
+
* Parameter
|
|
25439
|
+
* @description Typed declaration of one input parameter.
|
|
25440
|
+
*
|
|
25441
|
+
* For SQL function types, ``name`` becomes the ``:name`` placeholder
|
|
25442
|
+
* in the SQL template. For Python function types, ``name`` becomes
|
|
25443
|
+
* the positional argument name in ``def main(...)`` and the input
|
|
25444
|
+
* column name on the UC UDF signature.
|
|
25445
|
+
*
|
|
25446
|
+
* The ``description`` propagates into the LLM tool spec (this is
|
|
25447
|
+
* what Databricks' Agent Framework reads, and what Anthropic's
|
|
25448
|
+
* tool-use spec exposes to the model). Missing descriptions
|
|
25449
|
+
* silently break tool selection — the registration layer rejects
|
|
25450
|
+
* empty strings.
|
|
25451
|
+
*/
|
|
25452
|
+
platform_lib__platform_functions__models__Parameter: {
|
|
25453
|
+
/** Default */
|
|
25454
|
+
default?: string | number | boolean | null;
|
|
25455
|
+
/** Description */
|
|
25456
|
+
description: string;
|
|
25457
|
+
/** Name */
|
|
25458
|
+
name: string;
|
|
25459
|
+
/**
|
|
25460
|
+
* Type
|
|
25461
|
+
* @enum {string}
|
|
25462
|
+
*/
|
|
25463
|
+
type: "string" | "integer" | "number" | "boolean";
|
|
25464
|
+
};
|
|
26449
25465
|
/**
|
|
26450
25466
|
* IntegrationToolRef
|
|
26451
25467
|
* @description Reference to an integration endpoint by integration + endpoint name.
|
|
@@ -26737,10 +25753,148 @@ export interface components {
|
|
|
26737
25753
|
/** Tags */
|
|
26738
25754
|
tags?: string[];
|
|
26739
25755
|
};
|
|
25756
|
+
/**
|
|
25757
|
+
* Request
|
|
25758
|
+
* @description Create body — the authored shape of a new workspace data query.
|
|
25759
|
+
*
|
|
25760
|
+
* The SQL template + parameters parity check + multi-statement /
|
|
25761
|
+
* session-state-command refusal runs inside :meth:`_validate_template`
|
|
25762
|
+
* so a bad payload surfaces as a Pydantic 422 with the standard wire
|
|
25763
|
+
* shape — no try/except in the handler.
|
|
25764
|
+
*/
|
|
25765
|
+
src__routes__workspace_data_queries__create_workspace_data_query__Request: {
|
|
25766
|
+
/** Description */
|
|
25767
|
+
description: string;
|
|
25768
|
+
/** Name */
|
|
25769
|
+
name: string;
|
|
25770
|
+
/** Parameters */
|
|
25771
|
+
parameters?: components["schemas"]["src__routes__workspace_data_queries__create_workspace_data_query__Request__Parameter"][];
|
|
25772
|
+
/** Sql Template */
|
|
25773
|
+
sql_template: string;
|
|
25774
|
+
/**
|
|
25775
|
+
* Timeout Ms
|
|
25776
|
+
* @default 5000
|
|
25777
|
+
*/
|
|
25778
|
+
timeout_ms?: number;
|
|
25779
|
+
};
|
|
25780
|
+
/**
|
|
25781
|
+
* Parameter
|
|
25782
|
+
* @description Strict write-side validator for one declared parameter.
|
|
25783
|
+
*/
|
|
25784
|
+
src__routes__workspace_data_queries__create_workspace_data_query__Request__Parameter: {
|
|
25785
|
+
/** Default */
|
|
25786
|
+
default?: string | number | boolean | null;
|
|
25787
|
+
/** Description */
|
|
25788
|
+
description: string;
|
|
25789
|
+
/** Name */
|
|
25790
|
+
name: string;
|
|
25791
|
+
/**
|
|
25792
|
+
* Type
|
|
25793
|
+
* @enum {string}
|
|
25794
|
+
*/
|
|
25795
|
+
type: "string" | "integer" | "number" | "boolean";
|
|
25796
|
+
};
|
|
25797
|
+
/** Request */
|
|
25798
|
+
src__routes__workspace_data_queries__invoke_workspace_data_query__Request: {
|
|
25799
|
+
/**
|
|
25800
|
+
* Input
|
|
25801
|
+
* @description Caller arguments matching the declared parameters.
|
|
25802
|
+
*/
|
|
25803
|
+
input?: {
|
|
25804
|
+
[key: string]: unknown;
|
|
25805
|
+
};
|
|
25806
|
+
};
|
|
25807
|
+
/** Response */
|
|
25808
|
+
src__routes__workspace_data_queries__invoke_workspace_data_query__Response: {
|
|
25809
|
+
/**
|
|
25810
|
+
* Duration Ms
|
|
25811
|
+
* @default 0
|
|
25812
|
+
*/
|
|
25813
|
+
duration_ms?: number;
|
|
25814
|
+
/** Result */
|
|
25815
|
+
result?: {
|
|
25816
|
+
[key: string]: unknown;
|
|
25817
|
+
}[];
|
|
25818
|
+
/**
|
|
25819
|
+
* Row Count
|
|
25820
|
+
* @default 0
|
|
25821
|
+
*/
|
|
25822
|
+
row_count?: number;
|
|
25823
|
+
};
|
|
25824
|
+
/** Item */
|
|
25825
|
+
src__routes__workspace_data_queries__list_workspace_data_queries__Item: {
|
|
25826
|
+
/**
|
|
25827
|
+
* Deployed At
|
|
25828
|
+
* Format: date-time
|
|
25829
|
+
*/
|
|
25830
|
+
deployed_at: string;
|
|
25831
|
+
/**
|
|
25832
|
+
* Deployed By
|
|
25833
|
+
* Format: uuid
|
|
25834
|
+
*/
|
|
25835
|
+
deployed_by: string;
|
|
25836
|
+
/** Description */
|
|
25837
|
+
description: string;
|
|
25838
|
+
/**
|
|
25839
|
+
* Id
|
|
25840
|
+
* Format: uuid
|
|
25841
|
+
*/
|
|
25842
|
+
id: string;
|
|
25843
|
+
/** Last Invoked At */
|
|
25844
|
+
last_invoked_at?: string | null;
|
|
25845
|
+
/** Name */
|
|
25846
|
+
name: string;
|
|
25847
|
+
/** Parameter Count */
|
|
25848
|
+
parameter_count: number;
|
|
25849
|
+
/** Sql Template */
|
|
25850
|
+
sql_template: string;
|
|
25851
|
+
/** Timeout Ms */
|
|
25852
|
+
timeout_ms: number;
|
|
25853
|
+
};
|
|
25854
|
+
/** Response */
|
|
25855
|
+
src__routes__workspace_data_queries__list_workspace_data_queries__Response: {
|
|
25856
|
+
/** Count */
|
|
25857
|
+
count: number;
|
|
25858
|
+
/** Items */
|
|
25859
|
+
items: components["schemas"]["src__routes__workspace_data_queries__list_workspace_data_queries__Item"][];
|
|
25860
|
+
};
|
|
25861
|
+
/**
|
|
25862
|
+
* Request
|
|
25863
|
+
* @description PATCH body — every field optional. Present ⇒ overwrite; absent ⇒ keep.
|
|
25864
|
+
*/
|
|
25865
|
+
src__routes__workspace_data_queries__update_workspace_data_query__Request: {
|
|
25866
|
+
/** Description */
|
|
25867
|
+
description?: string | null;
|
|
25868
|
+
/** Name */
|
|
25869
|
+
name?: string | null;
|
|
25870
|
+
/** Parameters */
|
|
25871
|
+
parameters?: components["schemas"]["src__routes__workspace_data_queries__update_workspace_data_query__Request__Parameter"][] | null;
|
|
25872
|
+
/** Sql Template */
|
|
25873
|
+
sql_template?: string | null;
|
|
25874
|
+
/** Timeout Ms */
|
|
25875
|
+
timeout_ms?: number | null;
|
|
25876
|
+
};
|
|
25877
|
+
/**
|
|
25878
|
+
* Parameter
|
|
25879
|
+
* @description Strict write-side validator for one declared parameter.
|
|
25880
|
+
*/
|
|
25881
|
+
src__routes__workspace_data_queries__update_workspace_data_query__Request__Parameter: {
|
|
25882
|
+
/** Default */
|
|
25883
|
+
default?: string | number | boolean | null;
|
|
25884
|
+
/** Description */
|
|
25885
|
+
description: string;
|
|
25886
|
+
/** Name */
|
|
25887
|
+
name: string;
|
|
25888
|
+
/**
|
|
25889
|
+
* Type
|
|
25890
|
+
* @enum {string}
|
|
25891
|
+
*/
|
|
25892
|
+
type: "string" | "integer" | "number" | "boolean";
|
|
25893
|
+
};
|
|
26740
25894
|
/** Request */
|
|
26741
25895
|
src__routes__workspace_tables__create_workspace_table__Request: {
|
|
26742
25896
|
/** Columns */
|
|
26743
|
-
columns: components["schemas"]["
|
|
25897
|
+
columns: components["schemas"]["Column-Input"][];
|
|
26744
25898
|
/** Indexes */
|
|
26745
25899
|
indexes?: components["schemas"]["Index-Input"][];
|
|
26746
25900
|
/** Primary Key */
|
|
@@ -26749,30 +25903,6 @@ export interface components {
|
|
|
26749
25903
|
/** Unique */
|
|
26750
25904
|
unique?: components["schemas"]["IdentifierString"][][];
|
|
26751
25905
|
};
|
|
26752
|
-
/** Column */
|
|
26753
|
-
src__routes__workspace_tables__create_workspace_table__Request__Column: {
|
|
26754
|
-
default?: components["schemas"]["src__routes__workspace_tables__create_workspace_table__Request__Default"] | null;
|
|
26755
|
-
name: components["schemas"]["IdentifierString"];
|
|
26756
|
-
/**
|
|
26757
|
-
* Nullable
|
|
26758
|
-
* @default true
|
|
26759
|
-
*/
|
|
26760
|
-
nullable?: boolean;
|
|
26761
|
-
type: components["schemas"]["ColumnType"];
|
|
26762
|
-
};
|
|
26763
|
-
/** Default */
|
|
26764
|
-
src__routes__workspace_tables__create_workspace_table__Request__Default: {
|
|
26765
|
-
/**
|
|
26766
|
-
* Kind
|
|
26767
|
-
* @enum {string}
|
|
26768
|
-
*/
|
|
26769
|
-
kind: "literal" | "uuid_v4" | "now" | "current_date";
|
|
26770
|
-
/**
|
|
26771
|
-
* Value
|
|
26772
|
-
* @description Only meaningful for ``kind="literal"``. Other kinds ignore it.
|
|
26773
|
-
*/
|
|
26774
|
-
value?: string | number | boolean | null;
|
|
26775
|
-
};
|
|
26776
25906
|
/** Response */
|
|
26777
25907
|
src__routes__workspace_tables__create_workspace_table__Response: {
|
|
26778
25908
|
/**
|
|
@@ -26796,8 +25926,9 @@ export interface components {
|
|
|
26796
25926
|
* Sql
|
|
26797
25927
|
* @description One SQL statement: SELECT / WITH ... SELECT / INSERT / UPDATE /
|
|
26798
25928
|
* DELETE. Multi-statement, DDL, and session-state commands (SET ROLE,
|
|
26799
|
-
* RESET, SET SESSION AUTHORIZATION) reject with
|
|
26800
|
-
* function calls reject with 400
|
|
25929
|
+
* RESET, SET SESSION AUTHORIZATION) reject with 422 at the Pydantic
|
|
25930
|
+
* boundary. ``pg_*`` function calls reject with 400 at execute time
|
|
25931
|
+
* (no grant).
|
|
26801
25932
|
*/
|
|
26802
25933
|
sql: string;
|
|
26803
25934
|
};
|
|
@@ -26843,33 +25974,34 @@ export interface components {
|
|
|
26843
25974
|
/** Response */
|
|
26844
25975
|
src__routes__workspace_tables__list_workspace_tables__Response: {
|
|
26845
25976
|
/** Items */
|
|
26846
|
-
items: components["schemas"]["
|
|
26847
|
-
};
|
|
26848
|
-
/** Request */
|
|
26849
|
-
src__routes__workspace_tables__update_workspace_table__Request: {
|
|
26850
|
-
/** Actions */
|
|
26851
|
-
actions: (components["schemas"]["AddColumnAction"] | components["schemas"]["DropColumnAction"] | components["schemas"]["RenameColumnAction"] | components["schemas"]["ChangeColumnTypeAction"] | components["schemas"]["SetColumnNullableAction"] | components["schemas"]["SetColumnDefaultAction"] | components["schemas"]["DropColumnDefaultAction"] | components["schemas"]["AddUniqueAction"] | components["schemas"]["DropConstraintAction"] | components["schemas"]["AddIndexAction"] | components["schemas"]["DropIndexAction"])[];
|
|
25977
|
+
items: components["schemas"]["src__routes__workspace_tables__list_workspace_tables__Response__Item"][];
|
|
26852
25978
|
};
|
|
26853
|
-
/**
|
|
26854
|
-
|
|
26855
|
-
default?: components["schemas"]["src__routes__workspace_tables__update_workspace_table__Request__Default"] | null;
|
|
26856
|
-
name: components["schemas"]["IdentifierString"];
|
|
25979
|
+
/** Item */
|
|
25980
|
+
src__routes__workspace_tables__list_workspace_tables__Response__Item: {
|
|
26857
25981
|
/**
|
|
26858
|
-
*
|
|
26859
|
-
*
|
|
25982
|
+
* Created At
|
|
25983
|
+
* Format: date-time
|
|
26860
25984
|
*/
|
|
26861
|
-
|
|
26862
|
-
type: components["schemas"]["ColumnType"];
|
|
26863
|
-
};
|
|
26864
|
-
/** Default */
|
|
26865
|
-
src__routes__workspace_tables__update_workspace_table__Request__Default: {
|
|
25985
|
+
created_at: string;
|
|
26866
25986
|
/**
|
|
26867
|
-
*
|
|
26868
|
-
*
|
|
25987
|
+
* Id
|
|
25988
|
+
* Format: uuid
|
|
26869
25989
|
*/
|
|
26870
|
-
|
|
26871
|
-
/**
|
|
26872
|
-
|
|
25990
|
+
id: string;
|
|
25991
|
+
/** Physical Name */
|
|
25992
|
+
physical_name: string;
|
|
25993
|
+
/** Table Name */
|
|
25994
|
+
table_name: string;
|
|
25995
|
+
/**
|
|
25996
|
+
* Workspace Id
|
|
25997
|
+
* Format: uuid
|
|
25998
|
+
*/
|
|
25999
|
+
workspace_id: string;
|
|
26000
|
+
};
|
|
26001
|
+
/** Request */
|
|
26002
|
+
src__routes__workspace_tables__update_workspace_table__Request: {
|
|
26003
|
+
/** Actions */
|
|
26004
|
+
actions: components["schemas"]["AlterAction"][];
|
|
26873
26005
|
};
|
|
26874
26006
|
/** Response */
|
|
26875
26007
|
src__routes__workspace_tables__update_workspace_table__Response: {
|
|
@@ -27553,13 +26685,6 @@ export interface operations {
|
|
|
27553
26685
|
};
|
|
27554
26686
|
content?: never;
|
|
27555
26687
|
};
|
|
27556
|
-
/** @description Upload service unavailable */
|
|
27557
|
-
503: {
|
|
27558
|
-
headers: {
|
|
27559
|
-
[name: string]: unknown;
|
|
27560
|
-
};
|
|
27561
|
-
content?: never;
|
|
27562
|
-
};
|
|
27563
26688
|
};
|
|
27564
26689
|
};
|
|
27565
26690
|
"get-intake-link-info": {
|
|
@@ -30132,13 +29257,6 @@ export interface operations {
|
|
|
30132
29257
|
};
|
|
30133
29258
|
content?: never;
|
|
30134
29259
|
};
|
|
30135
|
-
/** @description Audit export not configured */
|
|
30136
|
-
503: {
|
|
30137
|
-
headers: {
|
|
30138
|
-
[name: string]: unknown;
|
|
30139
|
-
};
|
|
30140
|
-
content?: never;
|
|
30141
|
-
};
|
|
30142
29260
|
};
|
|
30143
29261
|
};
|
|
30144
29262
|
"list-audit-exports": {
|
|
@@ -30180,13 +29298,6 @@ export interface operations {
|
|
|
30180
29298
|
};
|
|
30181
29299
|
content?: never;
|
|
30182
29300
|
};
|
|
30183
|
-
/** @description Audit export not configured */
|
|
30184
|
-
503: {
|
|
30185
|
-
headers: {
|
|
30186
|
-
[name: string]: unknown;
|
|
30187
|
-
};
|
|
30188
|
-
content?: never;
|
|
30189
|
-
};
|
|
30190
29301
|
};
|
|
30191
29302
|
};
|
|
30192
29303
|
"get-phi-access-report": {
|
|
@@ -32741,6 +31852,242 @@ export interface operations {
|
|
|
32741
31852
|
};
|
|
32742
31853
|
};
|
|
32743
31854
|
};
|
|
31855
|
+
"list-workspace-data-queries": {
|
|
31856
|
+
parameters: {
|
|
31857
|
+
query?: never;
|
|
31858
|
+
header?: never;
|
|
31859
|
+
path: {
|
|
31860
|
+
workspace_id: string;
|
|
31861
|
+
};
|
|
31862
|
+
cookie?: never;
|
|
31863
|
+
};
|
|
31864
|
+
requestBody?: never;
|
|
31865
|
+
responses: {
|
|
31866
|
+
/** @description Successful Response */
|
|
31867
|
+
200: {
|
|
31868
|
+
headers: {
|
|
31869
|
+
[name: string]: unknown;
|
|
31870
|
+
};
|
|
31871
|
+
content: {
|
|
31872
|
+
"application/json": components["schemas"]["src__routes__workspace_data_queries__list_workspace_data_queries__Response"];
|
|
31873
|
+
};
|
|
31874
|
+
};
|
|
31875
|
+
};
|
|
31876
|
+
};
|
|
31877
|
+
"create-workspace-data-query": {
|
|
31878
|
+
parameters: {
|
|
31879
|
+
query?: never;
|
|
31880
|
+
header?: never;
|
|
31881
|
+
path: {
|
|
31882
|
+
workspace_id: string;
|
|
31883
|
+
};
|
|
31884
|
+
cookie?: never;
|
|
31885
|
+
};
|
|
31886
|
+
requestBody: {
|
|
31887
|
+
content: {
|
|
31888
|
+
"application/json": components["schemas"]["src__routes__workspace_data_queries__create_workspace_data_query__Request"];
|
|
31889
|
+
};
|
|
31890
|
+
};
|
|
31891
|
+
responses: {
|
|
31892
|
+
/** @description Successful Response */
|
|
31893
|
+
201: {
|
|
31894
|
+
headers: {
|
|
31895
|
+
[name: string]: unknown;
|
|
31896
|
+
};
|
|
31897
|
+
content: {
|
|
31898
|
+
"application/json": components["schemas"]["WorkspaceDataQueryItem"];
|
|
31899
|
+
};
|
|
31900
|
+
};
|
|
31901
|
+
/** @description A workspace data query with the given name already exists */
|
|
31902
|
+
409: {
|
|
31903
|
+
headers: {
|
|
31904
|
+
[name: string]: unknown;
|
|
31905
|
+
};
|
|
31906
|
+
content?: never;
|
|
31907
|
+
};
|
|
31908
|
+
/** @description Validation or precondition failure */
|
|
31909
|
+
422: {
|
|
31910
|
+
headers: {
|
|
31911
|
+
[name: string]: unknown;
|
|
31912
|
+
};
|
|
31913
|
+
content?: never;
|
|
31914
|
+
};
|
|
31915
|
+
};
|
|
31916
|
+
};
|
|
31917
|
+
"get-workspace-data-query": {
|
|
31918
|
+
parameters: {
|
|
31919
|
+
query?: never;
|
|
31920
|
+
header?: never;
|
|
31921
|
+
path: {
|
|
31922
|
+
workspace_id: string;
|
|
31923
|
+
query_id: string;
|
|
31924
|
+
};
|
|
31925
|
+
cookie?: never;
|
|
31926
|
+
};
|
|
31927
|
+
requestBody?: never;
|
|
31928
|
+
responses: {
|
|
31929
|
+
/** @description Successful Response */
|
|
31930
|
+
200: {
|
|
31931
|
+
headers: {
|
|
31932
|
+
[name: string]: unknown;
|
|
31933
|
+
};
|
|
31934
|
+
content: {
|
|
31935
|
+
"application/json": components["schemas"]["WorkspaceDataQueryItem"];
|
|
31936
|
+
};
|
|
31937
|
+
};
|
|
31938
|
+
/** @description Workspace data query not found */
|
|
31939
|
+
404: {
|
|
31940
|
+
headers: {
|
|
31941
|
+
[name: string]: unknown;
|
|
31942
|
+
};
|
|
31943
|
+
content?: never;
|
|
31944
|
+
};
|
|
31945
|
+
/** @description Validation Error */
|
|
31946
|
+
422: {
|
|
31947
|
+
headers: {
|
|
31948
|
+
[name: string]: unknown;
|
|
31949
|
+
};
|
|
31950
|
+
content: {
|
|
31951
|
+
"application/json": components["schemas"]["HTTPValidationError"];
|
|
31952
|
+
};
|
|
31953
|
+
};
|
|
31954
|
+
};
|
|
31955
|
+
};
|
|
31956
|
+
"delete-workspace-data-query": {
|
|
31957
|
+
parameters: {
|
|
31958
|
+
query?: never;
|
|
31959
|
+
header?: never;
|
|
31960
|
+
path: {
|
|
31961
|
+
workspace_id: string;
|
|
31962
|
+
query_id: string;
|
|
31963
|
+
};
|
|
31964
|
+
cookie?: never;
|
|
31965
|
+
};
|
|
31966
|
+
requestBody?: never;
|
|
31967
|
+
responses: {
|
|
31968
|
+
/** @description Successful Response */
|
|
31969
|
+
204: {
|
|
31970
|
+
headers: {
|
|
31971
|
+
[name: string]: unknown;
|
|
31972
|
+
};
|
|
31973
|
+
content?: never;
|
|
31974
|
+
};
|
|
31975
|
+
/** @description Workspace data query not found */
|
|
31976
|
+
404: {
|
|
31977
|
+
headers: {
|
|
31978
|
+
[name: string]: unknown;
|
|
31979
|
+
};
|
|
31980
|
+
content?: never;
|
|
31981
|
+
};
|
|
31982
|
+
/** @description Validation Error */
|
|
31983
|
+
422: {
|
|
31984
|
+
headers: {
|
|
31985
|
+
[name: string]: unknown;
|
|
31986
|
+
};
|
|
31987
|
+
content: {
|
|
31988
|
+
"application/json": components["schemas"]["HTTPValidationError"];
|
|
31989
|
+
};
|
|
31990
|
+
};
|
|
31991
|
+
};
|
|
31992
|
+
};
|
|
31993
|
+
"update-workspace-data-query": {
|
|
31994
|
+
parameters: {
|
|
31995
|
+
query?: never;
|
|
31996
|
+
header?: never;
|
|
31997
|
+
path: {
|
|
31998
|
+
workspace_id: string;
|
|
31999
|
+
query_id: string;
|
|
32000
|
+
};
|
|
32001
|
+
cookie?: never;
|
|
32002
|
+
};
|
|
32003
|
+
requestBody: {
|
|
32004
|
+
content: {
|
|
32005
|
+
"application/json": components["schemas"]["src__routes__workspace_data_queries__update_workspace_data_query__Request"];
|
|
32006
|
+
};
|
|
32007
|
+
};
|
|
32008
|
+
responses: {
|
|
32009
|
+
/** @description Successful Response */
|
|
32010
|
+
200: {
|
|
32011
|
+
headers: {
|
|
32012
|
+
[name: string]: unknown;
|
|
32013
|
+
};
|
|
32014
|
+
content: {
|
|
32015
|
+
"application/json": components["schemas"]["WorkspaceDataQueryItem"];
|
|
32016
|
+
};
|
|
32017
|
+
};
|
|
32018
|
+
/** @description Workspace data query not found */
|
|
32019
|
+
404: {
|
|
32020
|
+
headers: {
|
|
32021
|
+
[name: string]: unknown;
|
|
32022
|
+
};
|
|
32023
|
+
content?: never;
|
|
32024
|
+
};
|
|
32025
|
+
/** @description A workspace data query with the given name already exists */
|
|
32026
|
+
409: {
|
|
32027
|
+
headers: {
|
|
32028
|
+
[name: string]: unknown;
|
|
32029
|
+
};
|
|
32030
|
+
content?: never;
|
|
32031
|
+
};
|
|
32032
|
+
/** @description Validation failure */
|
|
32033
|
+
422: {
|
|
32034
|
+
headers: {
|
|
32035
|
+
[name: string]: unknown;
|
|
32036
|
+
};
|
|
32037
|
+
content?: never;
|
|
32038
|
+
};
|
|
32039
|
+
};
|
|
32040
|
+
};
|
|
32041
|
+
"invoke-workspace-data-query": {
|
|
32042
|
+
parameters: {
|
|
32043
|
+
query?: never;
|
|
32044
|
+
header?: never;
|
|
32045
|
+
path: {
|
|
32046
|
+
workspace_id: string;
|
|
32047
|
+
query_id: string;
|
|
32048
|
+
};
|
|
32049
|
+
cookie?: never;
|
|
32050
|
+
};
|
|
32051
|
+
requestBody: {
|
|
32052
|
+
content: {
|
|
32053
|
+
"application/json": components["schemas"]["src__routes__workspace_data_queries__invoke_workspace_data_query__Request"];
|
|
32054
|
+
};
|
|
32055
|
+
};
|
|
32056
|
+
responses: {
|
|
32057
|
+
/** @description Successful Response */
|
|
32058
|
+
200: {
|
|
32059
|
+
headers: {
|
|
32060
|
+
[name: string]: unknown;
|
|
32061
|
+
};
|
|
32062
|
+
content: {
|
|
32063
|
+
"application/json": components["schemas"]["src__routes__workspace_data_queries__invoke_workspace_data_query__Response"];
|
|
32064
|
+
};
|
|
32065
|
+
};
|
|
32066
|
+
/** @description Workspace data query not found */
|
|
32067
|
+
404: {
|
|
32068
|
+
headers: {
|
|
32069
|
+
[name: string]: unknown;
|
|
32070
|
+
};
|
|
32071
|
+
content?: never;
|
|
32072
|
+
};
|
|
32073
|
+
/** @description Validation Error */
|
|
32074
|
+
422: {
|
|
32075
|
+
headers: {
|
|
32076
|
+
[name: string]: unknown;
|
|
32077
|
+
};
|
|
32078
|
+
content: {
|
|
32079
|
+
"application/json": components["schemas"]["HTTPValidationError"];
|
|
32080
|
+
};
|
|
32081
|
+
};
|
|
32082
|
+
/** @description Execution failed */
|
|
32083
|
+
503: {
|
|
32084
|
+
headers: {
|
|
32085
|
+
[name: string]: unknown;
|
|
32086
|
+
};
|
|
32087
|
+
content?: never;
|
|
32088
|
+
};
|
|
32089
|
+
};
|
|
32090
|
+
};
|
|
32744
32091
|
create_desktop_session_v1__workspace_id__desktop_sessions_post: {
|
|
32745
32092
|
parameters: {
|
|
32746
32093
|
query?: never;
|
|
@@ -33701,48 +33048,6 @@ export interface operations {
|
|
|
33701
33048
|
};
|
|
33702
33049
|
};
|
|
33703
33050
|
};
|
|
33704
|
-
"fhir-sync-failures": {
|
|
33705
|
-
parameters: {
|
|
33706
|
-
query?: {
|
|
33707
|
-
limit?: number;
|
|
33708
|
-
fhir_resource_type?: string | null;
|
|
33709
|
-
fhir_resource_id?: string | null;
|
|
33710
|
-
};
|
|
33711
|
-
header?: never;
|
|
33712
|
-
path: {
|
|
33713
|
-
workspace_id: string;
|
|
33714
|
-
};
|
|
33715
|
-
cookie?: never;
|
|
33716
|
-
};
|
|
33717
|
-
requestBody?: never;
|
|
33718
|
-
responses: {
|
|
33719
|
-
/** @description Successful Response */
|
|
33720
|
-
200: {
|
|
33721
|
-
headers: {
|
|
33722
|
-
[name: string]: unknown;
|
|
33723
|
-
};
|
|
33724
|
-
content: {
|
|
33725
|
-
"application/json": components["schemas"]["SyncFailuresResponse"];
|
|
33726
|
-
};
|
|
33727
|
-
};
|
|
33728
|
-
/** @description Missing or invalid API key. */
|
|
33729
|
-
401: {
|
|
33730
|
-
headers: {
|
|
33731
|
-
[name: string]: unknown;
|
|
33732
|
-
};
|
|
33733
|
-
content?: never;
|
|
33734
|
-
};
|
|
33735
|
-
/** @description Validation Error */
|
|
33736
|
-
422: {
|
|
33737
|
-
headers: {
|
|
33738
|
-
[name: string]: unknown;
|
|
33739
|
-
};
|
|
33740
|
-
content: {
|
|
33741
|
-
"application/json": components["schemas"]["HTTPValidationError"];
|
|
33742
|
-
};
|
|
33743
|
-
};
|
|
33744
|
-
};
|
|
33745
|
-
};
|
|
33746
33051
|
"fhir-appointments-view": {
|
|
33747
33052
|
parameters: {
|
|
33748
33053
|
query?: {
|
|
@@ -34198,13 +33503,6 @@ export interface operations {
|
|
|
34198
33503
|
};
|
|
34199
33504
|
content?: never;
|
|
34200
33505
|
};
|
|
34201
|
-
/** @description Databricks SQL client unavailable */
|
|
34202
|
-
503: {
|
|
34203
|
-
headers: {
|
|
34204
|
-
[name: string]: unknown;
|
|
34205
|
-
};
|
|
34206
|
-
content?: never;
|
|
34207
|
-
};
|
|
34208
33506
|
};
|
|
34209
33507
|
};
|
|
34210
33508
|
"test-function": {
|
|
@@ -34255,45 +33553,6 @@ export interface operations {
|
|
|
34255
33553
|
};
|
|
34256
33554
|
content?: never;
|
|
34257
33555
|
};
|
|
34258
|
-
/** @description Databricks SQL client unavailable */
|
|
34259
|
-
503: {
|
|
34260
|
-
headers: {
|
|
34261
|
-
[name: string]: unknown;
|
|
34262
|
-
};
|
|
34263
|
-
content?: never;
|
|
34264
|
-
};
|
|
34265
|
-
};
|
|
34266
|
-
};
|
|
34267
|
-
receive_webhook_v1__workspace_id__hooks__destination_id__post: {
|
|
34268
|
-
parameters: {
|
|
34269
|
-
query?: never;
|
|
34270
|
-
header?: never;
|
|
34271
|
-
path: {
|
|
34272
|
-
workspace_id: string;
|
|
34273
|
-
destination_id: string;
|
|
34274
|
-
};
|
|
34275
|
-
cookie?: never;
|
|
34276
|
-
};
|
|
34277
|
-
requestBody?: never;
|
|
34278
|
-
responses: {
|
|
34279
|
-
/** @description Successful Response */
|
|
34280
|
-
200: {
|
|
34281
|
-
headers: {
|
|
34282
|
-
[name: string]: unknown;
|
|
34283
|
-
};
|
|
34284
|
-
content: {
|
|
34285
|
-
"application/json": components["schemas"]["WebhookReceivedResponse"];
|
|
34286
|
-
};
|
|
34287
|
-
};
|
|
34288
|
-
/** @description Validation Error */
|
|
34289
|
-
422: {
|
|
34290
|
-
headers: {
|
|
34291
|
-
[name: string]: unknown;
|
|
34292
|
-
};
|
|
34293
|
-
content: {
|
|
34294
|
-
"application/json": components["schemas"]["HTTPValidationError"];
|
|
34295
|
-
};
|
|
34296
|
-
};
|
|
34297
33556
|
};
|
|
34298
33557
|
};
|
|
34299
33558
|
get_digest_v1__workspace_id__insights_digest_get: {
|
|
@@ -36021,69 +35280,6 @@ export interface operations {
|
|
|
36021
35280
|
};
|
|
36022
35281
|
};
|
|
36023
35282
|
};
|
|
36024
|
-
"evaluate-metric": {
|
|
36025
|
-
parameters: {
|
|
36026
|
-
query?: never;
|
|
36027
|
-
header?: never;
|
|
36028
|
-
path: {
|
|
36029
|
-
workspace_id: string;
|
|
36030
|
-
/** @description Metric key (lowercase alphanumeric + underscores) */
|
|
36031
|
-
metric_key: string;
|
|
36032
|
-
};
|
|
36033
|
-
cookie?: never;
|
|
36034
|
-
};
|
|
36035
|
-
requestBody: {
|
|
36036
|
-
content: {
|
|
36037
|
-
"application/json": components["schemas"]["MetricEvaluateRequest"];
|
|
36038
|
-
};
|
|
36039
|
-
};
|
|
36040
|
-
responses: {
|
|
36041
|
-
/** @description Successful Response */
|
|
36042
|
-
200: {
|
|
36043
|
-
headers: {
|
|
36044
|
-
[name: string]: unknown;
|
|
36045
|
-
};
|
|
36046
|
-
content: {
|
|
36047
|
-
"application/json": components["schemas"]["MetricEvaluateResponse"];
|
|
36048
|
-
};
|
|
36049
|
-
};
|
|
36050
|
-
/** @description Metric or call intelligence not found */
|
|
36051
|
-
404: {
|
|
36052
|
-
headers: {
|
|
36053
|
-
[name: string]: unknown;
|
|
36054
|
-
};
|
|
36055
|
-
content?: never;
|
|
36056
|
-
};
|
|
36057
|
-
/** @description Metric cannot be evaluated on demand */
|
|
36058
|
-
422: {
|
|
36059
|
-
headers: {
|
|
36060
|
-
[name: string]: unknown;
|
|
36061
|
-
};
|
|
36062
|
-
content?: never;
|
|
36063
|
-
};
|
|
36064
|
-
/** @description Rate limited */
|
|
36065
|
-
429: {
|
|
36066
|
-
headers: {
|
|
36067
|
-
[name: string]: unknown;
|
|
36068
|
-
};
|
|
36069
|
-
content?: never;
|
|
36070
|
-
};
|
|
36071
|
-
/** @description Metric preview query failed */
|
|
36072
|
-
502: {
|
|
36073
|
-
headers: {
|
|
36074
|
-
[name: string]: unknown;
|
|
36075
|
-
};
|
|
36076
|
-
content?: never;
|
|
36077
|
-
};
|
|
36078
|
-
/** @description Analytics warehouse not configured */
|
|
36079
|
-
503: {
|
|
36080
|
-
headers: {
|
|
36081
|
-
[name: string]: unknown;
|
|
36082
|
-
};
|
|
36083
|
-
content?: never;
|
|
36084
|
-
};
|
|
36085
|
-
};
|
|
36086
|
-
};
|
|
36087
35283
|
"get-metric-trend": {
|
|
36088
35284
|
parameters: {
|
|
36089
35285
|
query?: {
|
|
@@ -36931,229 +36127,6 @@ export interface operations {
|
|
|
36931
36127
|
};
|
|
36932
36128
|
};
|
|
36933
36129
|
};
|
|
36934
|
-
"list-personas": {
|
|
36935
|
-
parameters: {
|
|
36936
|
-
query?: {
|
|
36937
|
-
search?: components["schemas"]["SearchString"] | null;
|
|
36938
|
-
sort_by?: string | null;
|
|
36939
|
-
limit?: number;
|
|
36940
|
-
continuation_token?: number;
|
|
36941
|
-
};
|
|
36942
|
-
header?: never;
|
|
36943
|
-
path: {
|
|
36944
|
-
workspace_id: string;
|
|
36945
|
-
};
|
|
36946
|
-
cookie?: never;
|
|
36947
|
-
};
|
|
36948
|
-
requestBody?: never;
|
|
36949
|
-
responses: {
|
|
36950
|
-
/** @description Successful Response */
|
|
36951
|
-
200: {
|
|
36952
|
-
headers: {
|
|
36953
|
-
[name: string]: unknown;
|
|
36954
|
-
};
|
|
36955
|
-
content: {
|
|
36956
|
-
"application/json": components["schemas"]["PaginatedResponse_PersonaResponse_"];
|
|
36957
|
-
};
|
|
36958
|
-
};
|
|
36959
|
-
/** @description Validation Error */
|
|
36960
|
-
422: {
|
|
36961
|
-
headers: {
|
|
36962
|
-
[name: string]: unknown;
|
|
36963
|
-
};
|
|
36964
|
-
content: {
|
|
36965
|
-
"application/json": components["schemas"]["HTTPValidationError"];
|
|
36966
|
-
};
|
|
36967
|
-
};
|
|
36968
|
-
/** @description Rate limited */
|
|
36969
|
-
429: {
|
|
36970
|
-
headers: {
|
|
36971
|
-
[name: string]: unknown;
|
|
36972
|
-
};
|
|
36973
|
-
content?: never;
|
|
36974
|
-
};
|
|
36975
|
-
};
|
|
36976
|
-
};
|
|
36977
|
-
"create-persona": {
|
|
36978
|
-
parameters: {
|
|
36979
|
-
query?: never;
|
|
36980
|
-
header?: never;
|
|
36981
|
-
path: {
|
|
36982
|
-
workspace_id: string;
|
|
36983
|
-
};
|
|
36984
|
-
cookie?: never;
|
|
36985
|
-
};
|
|
36986
|
-
requestBody: {
|
|
36987
|
-
content: {
|
|
36988
|
-
"application/json": components["schemas"]["CreatePersonaRequest"];
|
|
36989
|
-
};
|
|
36990
|
-
};
|
|
36991
|
-
responses: {
|
|
36992
|
-
/** @description Successful Response */
|
|
36993
|
-
200: {
|
|
36994
|
-
headers: {
|
|
36995
|
-
[name: string]: unknown;
|
|
36996
|
-
};
|
|
36997
|
-
content: {
|
|
36998
|
-
"application/json": components["schemas"]["PersonaResponse"];
|
|
36999
|
-
};
|
|
37000
|
-
};
|
|
37001
|
-
/** @description Validation error */
|
|
37002
|
-
422: {
|
|
37003
|
-
headers: {
|
|
37004
|
-
[name: string]: unknown;
|
|
37005
|
-
};
|
|
37006
|
-
content?: never;
|
|
37007
|
-
};
|
|
37008
|
-
/** @description Rate limited */
|
|
37009
|
-
429: {
|
|
37010
|
-
headers: {
|
|
37011
|
-
[name: string]: unknown;
|
|
37012
|
-
};
|
|
37013
|
-
content?: never;
|
|
37014
|
-
};
|
|
37015
|
-
};
|
|
37016
|
-
};
|
|
37017
|
-
"get-persona": {
|
|
37018
|
-
parameters: {
|
|
37019
|
-
query?: never;
|
|
37020
|
-
header?: never;
|
|
37021
|
-
path: {
|
|
37022
|
-
workspace_id: string;
|
|
37023
|
-
persona_id: string;
|
|
37024
|
-
};
|
|
37025
|
-
cookie?: never;
|
|
37026
|
-
};
|
|
37027
|
-
requestBody?: never;
|
|
37028
|
-
responses: {
|
|
37029
|
-
/** @description Successful Response */
|
|
37030
|
-
200: {
|
|
37031
|
-
headers: {
|
|
37032
|
-
[name: string]: unknown;
|
|
37033
|
-
};
|
|
37034
|
-
content: {
|
|
37035
|
-
"application/json": components["schemas"]["PersonaResponse"];
|
|
37036
|
-
};
|
|
37037
|
-
};
|
|
37038
|
-
/** @description Persona not found */
|
|
37039
|
-
404: {
|
|
37040
|
-
headers: {
|
|
37041
|
-
[name: string]: unknown;
|
|
37042
|
-
};
|
|
37043
|
-
content?: never;
|
|
37044
|
-
};
|
|
37045
|
-
/** @description Validation Error */
|
|
37046
|
-
422: {
|
|
37047
|
-
headers: {
|
|
37048
|
-
[name: string]: unknown;
|
|
37049
|
-
};
|
|
37050
|
-
content: {
|
|
37051
|
-
"application/json": components["schemas"]["HTTPValidationError"];
|
|
37052
|
-
};
|
|
37053
|
-
};
|
|
37054
|
-
/** @description Rate limited */
|
|
37055
|
-
429: {
|
|
37056
|
-
headers: {
|
|
37057
|
-
[name: string]: unknown;
|
|
37058
|
-
};
|
|
37059
|
-
content?: never;
|
|
37060
|
-
};
|
|
37061
|
-
};
|
|
37062
|
-
};
|
|
37063
|
-
"delete-persona": {
|
|
37064
|
-
parameters: {
|
|
37065
|
-
query?: never;
|
|
37066
|
-
header?: never;
|
|
37067
|
-
path: {
|
|
37068
|
-
workspace_id: string;
|
|
37069
|
-
persona_id: string;
|
|
37070
|
-
};
|
|
37071
|
-
cookie?: never;
|
|
37072
|
-
};
|
|
37073
|
-
requestBody?: never;
|
|
37074
|
-
responses: {
|
|
37075
|
-
/** @description Successful Response */
|
|
37076
|
-
200: {
|
|
37077
|
-
headers: {
|
|
37078
|
-
[name: string]: unknown;
|
|
37079
|
-
};
|
|
37080
|
-
content: {
|
|
37081
|
-
"application/json": unknown;
|
|
37082
|
-
};
|
|
37083
|
-
};
|
|
37084
|
-
/** @description Persona not found */
|
|
37085
|
-
404: {
|
|
37086
|
-
headers: {
|
|
37087
|
-
[name: string]: unknown;
|
|
37088
|
-
};
|
|
37089
|
-
content?: never;
|
|
37090
|
-
};
|
|
37091
|
-
/** @description Validation Error */
|
|
37092
|
-
422: {
|
|
37093
|
-
headers: {
|
|
37094
|
-
[name: string]: unknown;
|
|
37095
|
-
};
|
|
37096
|
-
content: {
|
|
37097
|
-
"application/json": components["schemas"]["HTTPValidationError"];
|
|
37098
|
-
};
|
|
37099
|
-
};
|
|
37100
|
-
/** @description Rate limited */
|
|
37101
|
-
429: {
|
|
37102
|
-
headers: {
|
|
37103
|
-
[name: string]: unknown;
|
|
37104
|
-
};
|
|
37105
|
-
content?: never;
|
|
37106
|
-
};
|
|
37107
|
-
};
|
|
37108
|
-
};
|
|
37109
|
-
"update-persona": {
|
|
37110
|
-
parameters: {
|
|
37111
|
-
query?: never;
|
|
37112
|
-
header?: never;
|
|
37113
|
-
path: {
|
|
37114
|
-
workspace_id: string;
|
|
37115
|
-
persona_id: string;
|
|
37116
|
-
};
|
|
37117
|
-
cookie?: never;
|
|
37118
|
-
};
|
|
37119
|
-
requestBody: {
|
|
37120
|
-
content: {
|
|
37121
|
-
"application/json": components["schemas"]["UpdatePersonaRequest"];
|
|
37122
|
-
};
|
|
37123
|
-
};
|
|
37124
|
-
responses: {
|
|
37125
|
-
/** @description Successful Response */
|
|
37126
|
-
200: {
|
|
37127
|
-
headers: {
|
|
37128
|
-
[name: string]: unknown;
|
|
37129
|
-
};
|
|
37130
|
-
content: {
|
|
37131
|
-
"application/json": components["schemas"]["PersonaResponse"];
|
|
37132
|
-
};
|
|
37133
|
-
};
|
|
37134
|
-
/** @description Persona not found */
|
|
37135
|
-
404: {
|
|
37136
|
-
headers: {
|
|
37137
|
-
[name: string]: unknown;
|
|
37138
|
-
};
|
|
37139
|
-
content?: never;
|
|
37140
|
-
};
|
|
37141
|
-
/** @description Validation error */
|
|
37142
|
-
422: {
|
|
37143
|
-
headers: {
|
|
37144
|
-
[name: string]: unknown;
|
|
37145
|
-
};
|
|
37146
|
-
content?: never;
|
|
37147
|
-
};
|
|
37148
|
-
/** @description Rate limited */
|
|
37149
|
-
429: {
|
|
37150
|
-
headers: {
|
|
37151
|
-
[name: string]: unknown;
|
|
37152
|
-
};
|
|
37153
|
-
content?: never;
|
|
37154
|
-
};
|
|
37155
|
-
};
|
|
37156
|
-
};
|
|
37157
36130
|
"get-entity-resolution": {
|
|
37158
36131
|
parameters: {
|
|
37159
36132
|
query?: never;
|
|
@@ -37549,7 +36522,7 @@ export interface operations {
|
|
|
37549
36522
|
"list-prompt-logs": {
|
|
37550
36523
|
parameters: {
|
|
37551
36524
|
query?: {
|
|
37552
|
-
/** @description Conversation entity UUID (canonical identifier across all modalities — voice, text/web, sms, sim). Resolves
|
|
36525
|
+
/** @description Conversation entity UUID (canonical identifier across all modalities — voice, text/web, sms, sim). Resolves text conversations through the durable ``world.conversations`` row, then falls back to the voice/call entity projection. Mutually exclusive with the ``call_sid`` query parameter. */
|
|
37553
36526
|
conversation_id?: string | null;
|
|
37554
36527
|
/** @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``. */
|
|
37555
36528
|
call_sid?: string | null;
|
|
@@ -39431,82 +38404,6 @@ export interface operations {
|
|
|
39431
38404
|
};
|
|
39432
38405
|
};
|
|
39433
38406
|
};
|
|
39434
|
-
"get-behavior-settings": {
|
|
39435
|
-
parameters: {
|
|
39436
|
-
query?: never;
|
|
39437
|
-
header?: never;
|
|
39438
|
-
path: {
|
|
39439
|
-
workspace_id: string;
|
|
39440
|
-
};
|
|
39441
|
-
cookie?: never;
|
|
39442
|
-
};
|
|
39443
|
-
requestBody?: never;
|
|
39444
|
-
responses: {
|
|
39445
|
-
/** @description Successful Response */
|
|
39446
|
-
200: {
|
|
39447
|
-
headers: {
|
|
39448
|
-
[name: string]: unknown;
|
|
39449
|
-
};
|
|
39450
|
-
content: {
|
|
39451
|
-
"application/json": components["schemas"]["BehaviorSettingsResponse"];
|
|
39452
|
-
};
|
|
39453
|
-
};
|
|
39454
|
-
/** @description Rate limited */
|
|
39455
|
-
429: {
|
|
39456
|
-
headers: {
|
|
39457
|
-
[name: string]: unknown;
|
|
39458
|
-
};
|
|
39459
|
-
content?: never;
|
|
39460
|
-
};
|
|
39461
|
-
};
|
|
39462
|
-
};
|
|
39463
|
-
"update-behavior-settings": {
|
|
39464
|
-
parameters: {
|
|
39465
|
-
query?: never;
|
|
39466
|
-
header?: never;
|
|
39467
|
-
path: {
|
|
39468
|
-
workspace_id: string;
|
|
39469
|
-
};
|
|
39470
|
-
cookie?: never;
|
|
39471
|
-
};
|
|
39472
|
-
requestBody: {
|
|
39473
|
-
content: {
|
|
39474
|
-
"application/json": components["schemas"]["BehaviorSettingsRequest"];
|
|
39475
|
-
};
|
|
39476
|
-
};
|
|
39477
|
-
responses: {
|
|
39478
|
-
/** @description Successful Response */
|
|
39479
|
-
200: {
|
|
39480
|
-
headers: {
|
|
39481
|
-
[name: string]: unknown;
|
|
39482
|
-
};
|
|
39483
|
-
content: {
|
|
39484
|
-
"application/json": components["schemas"]["BehaviorSettingsResponse"];
|
|
39485
|
-
};
|
|
39486
|
-
};
|
|
39487
|
-
/** @description Workspace not found */
|
|
39488
|
-
404: {
|
|
39489
|
-
headers: {
|
|
39490
|
-
[name: string]: unknown;
|
|
39491
|
-
};
|
|
39492
|
-
content?: never;
|
|
39493
|
-
};
|
|
39494
|
-
/** @description Validation error */
|
|
39495
|
-
422: {
|
|
39496
|
-
headers: {
|
|
39497
|
-
[name: string]: unknown;
|
|
39498
|
-
};
|
|
39499
|
-
content?: never;
|
|
39500
|
-
};
|
|
39501
|
-
/** @description Rate limited */
|
|
39502
|
-
429: {
|
|
39503
|
-
headers: {
|
|
39504
|
-
[name: string]: unknown;
|
|
39505
|
-
};
|
|
39506
|
-
content?: never;
|
|
39507
|
-
};
|
|
39508
|
-
};
|
|
39509
|
-
};
|
|
39510
38407
|
"get-branding-settings": {
|
|
39511
38408
|
parameters: {
|
|
39512
38409
|
query?: never;
|
|
@@ -40417,82 +39314,6 @@ export interface operations {
|
|
|
40417
39314
|
};
|
|
40418
39315
|
};
|
|
40419
39316
|
};
|
|
40420
|
-
"get-workflow-settings": {
|
|
40421
|
-
parameters: {
|
|
40422
|
-
query?: never;
|
|
40423
|
-
header?: never;
|
|
40424
|
-
path: {
|
|
40425
|
-
workspace_id: string;
|
|
40426
|
-
};
|
|
40427
|
-
cookie?: never;
|
|
40428
|
-
};
|
|
40429
|
-
requestBody?: never;
|
|
40430
|
-
responses: {
|
|
40431
|
-
/** @description Successful Response */
|
|
40432
|
-
200: {
|
|
40433
|
-
headers: {
|
|
40434
|
-
[name: string]: unknown;
|
|
40435
|
-
};
|
|
40436
|
-
content: {
|
|
40437
|
-
"application/json": components["schemas"]["WorkflowSettingsResponse"];
|
|
40438
|
-
};
|
|
40439
|
-
};
|
|
40440
|
-
/** @description Rate limited */
|
|
40441
|
-
429: {
|
|
40442
|
-
headers: {
|
|
40443
|
-
[name: string]: unknown;
|
|
40444
|
-
};
|
|
40445
|
-
content?: never;
|
|
40446
|
-
};
|
|
40447
|
-
};
|
|
40448
|
-
};
|
|
40449
|
-
"update-workflow-settings": {
|
|
40450
|
-
parameters: {
|
|
40451
|
-
query?: never;
|
|
40452
|
-
header?: never;
|
|
40453
|
-
path: {
|
|
40454
|
-
workspace_id: string;
|
|
40455
|
-
};
|
|
40456
|
-
cookie?: never;
|
|
40457
|
-
};
|
|
40458
|
-
requestBody: {
|
|
40459
|
-
content: {
|
|
40460
|
-
"application/json": components["schemas"]["WorkflowSettingsRequest"];
|
|
40461
|
-
};
|
|
40462
|
-
};
|
|
40463
|
-
responses: {
|
|
40464
|
-
/** @description Successful Response */
|
|
40465
|
-
200: {
|
|
40466
|
-
headers: {
|
|
40467
|
-
[name: string]: unknown;
|
|
40468
|
-
};
|
|
40469
|
-
content: {
|
|
40470
|
-
"application/json": components["schemas"]["WorkflowSettingsResponse"];
|
|
40471
|
-
};
|
|
40472
|
-
};
|
|
40473
|
-
/** @description Workspace not found */
|
|
40474
|
-
404: {
|
|
40475
|
-
headers: {
|
|
40476
|
-
[name: string]: unknown;
|
|
40477
|
-
};
|
|
40478
|
-
content?: never;
|
|
40479
|
-
};
|
|
40480
|
-
/** @description Validation error */
|
|
40481
|
-
422: {
|
|
40482
|
-
headers: {
|
|
40483
|
-
[name: string]: unknown;
|
|
40484
|
-
};
|
|
40485
|
-
content?: never;
|
|
40486
|
-
};
|
|
40487
|
-
/** @description Rate limited */
|
|
40488
|
-
429: {
|
|
40489
|
-
headers: {
|
|
40490
|
-
[name: string]: unknown;
|
|
40491
|
-
};
|
|
40492
|
-
content?: never;
|
|
40493
|
-
};
|
|
40494
|
-
};
|
|
40495
|
-
};
|
|
40496
39317
|
"get-simulation-benchmark-results": {
|
|
40497
39318
|
parameters: {
|
|
40498
39319
|
query?: never;
|
|
@@ -43379,231 +42200,15 @@ export interface operations {
|
|
|
43379
42200
|
};
|
|
43380
42201
|
content?: never;
|
|
43381
42202
|
};
|
|
43382
|
-
/** @description Use case not found. */
|
|
43383
|
-
404: {
|
|
43384
|
-
headers: {
|
|
43385
|
-
[name: string]: unknown;
|
|
43386
|
-
};
|
|
43387
|
-
content?: never;
|
|
43388
|
-
};
|
|
43389
|
-
/** @description Use case is bound to a service, or still has active phone assignments. */
|
|
43390
|
-
409: {
|
|
43391
|
-
headers: {
|
|
43392
|
-
[name: string]: unknown;
|
|
43393
|
-
};
|
|
43394
|
-
content?: never;
|
|
43395
|
-
};
|
|
43396
|
-
/** @description Validation Error */
|
|
43397
|
-
422: {
|
|
43398
|
-
headers: {
|
|
43399
|
-
[name: string]: unknown;
|
|
43400
|
-
};
|
|
43401
|
-
content: {
|
|
43402
|
-
"application/json": components["schemas"]["HTTPValidationError"];
|
|
43403
|
-
};
|
|
43404
|
-
};
|
|
43405
|
-
/** @description Channel manager unavailable. */
|
|
43406
|
-
502: {
|
|
43407
|
-
headers: {
|
|
43408
|
-
[name: string]: unknown;
|
|
43409
|
-
};
|
|
43410
|
-
content?: never;
|
|
43411
|
-
};
|
|
43412
|
-
/** @description Channel manager timed out. */
|
|
43413
|
-
504: {
|
|
43414
|
-
headers: {
|
|
43415
|
-
[name: string]: unknown;
|
|
43416
|
-
};
|
|
43417
|
-
content?: never;
|
|
43418
|
-
};
|
|
43419
|
-
};
|
|
43420
|
-
};
|
|
43421
|
-
"get-use-case-service-binding": {
|
|
43422
|
-
parameters: {
|
|
43423
|
-
query?: never;
|
|
43424
|
-
header?: never;
|
|
43425
|
-
path: {
|
|
43426
|
-
workspace_id: string;
|
|
43427
|
-
use_case_id: string;
|
|
43428
|
-
};
|
|
43429
|
-
cookie?: never;
|
|
43430
|
-
};
|
|
43431
|
-
requestBody?: never;
|
|
43432
|
-
responses: {
|
|
43433
|
-
/** @description Successful Response */
|
|
43434
|
-
200: {
|
|
43435
|
-
headers: {
|
|
43436
|
-
[name: string]: unknown;
|
|
43437
|
-
};
|
|
43438
|
-
content: {
|
|
43439
|
-
"application/json": components["schemas"]["ServiceBindingResponse"];
|
|
43440
|
-
};
|
|
43441
|
-
};
|
|
43442
|
-
/** @description Insufficient permissions. */
|
|
43443
|
-
403: {
|
|
43444
|
-
headers: {
|
|
43445
|
-
[name: string]: unknown;
|
|
43446
|
-
};
|
|
43447
|
-
content?: never;
|
|
43448
|
-
};
|
|
43449
|
-
/** @description Use case is not bound to a service in this workspace. */
|
|
43450
|
-
404: {
|
|
43451
|
-
headers: {
|
|
43452
|
-
[name: string]: unknown;
|
|
43453
|
-
};
|
|
43454
|
-
content?: never;
|
|
43455
|
-
};
|
|
43456
|
-
/** @description Validation Error */
|
|
43457
|
-
422: {
|
|
43458
|
-
headers: {
|
|
43459
|
-
[name: string]: unknown;
|
|
43460
|
-
};
|
|
43461
|
-
content: {
|
|
43462
|
-
"application/json": components["schemas"]["HTTPValidationError"];
|
|
43463
|
-
};
|
|
43464
|
-
};
|
|
43465
|
-
};
|
|
43466
|
-
};
|
|
43467
|
-
"bind-use-case-to-service": {
|
|
43468
|
-
parameters: {
|
|
43469
|
-
query?: never;
|
|
43470
|
-
header?: never;
|
|
43471
|
-
path: {
|
|
43472
|
-
workspace_id: string;
|
|
43473
|
-
use_case_id: string;
|
|
43474
|
-
};
|
|
43475
|
-
cookie?: never;
|
|
43476
|
-
};
|
|
43477
|
-
requestBody: {
|
|
43478
|
-
content: {
|
|
43479
|
-
"application/json": components["schemas"]["ServiceBindingRequest"];
|
|
43480
|
-
};
|
|
43481
|
-
};
|
|
43482
|
-
responses: {
|
|
43483
|
-
/** @description Successful Response */
|
|
43484
|
-
200: {
|
|
43485
|
-
headers: {
|
|
43486
|
-
[name: string]: unknown;
|
|
43487
|
-
};
|
|
43488
|
-
content: {
|
|
43489
|
-
"application/json": components["schemas"]["ServiceBindingResponse"];
|
|
43490
|
-
};
|
|
43491
|
-
};
|
|
43492
|
-
/** @description Insufficient permissions. */
|
|
43493
|
-
403: {
|
|
43494
|
-
headers: {
|
|
43495
|
-
[name: string]: unknown;
|
|
43496
|
-
};
|
|
43497
|
-
content?: never;
|
|
43498
|
-
};
|
|
43499
|
-
/** @description Use case or service not found. */
|
|
43500
|
-
404: {
|
|
43501
|
-
headers: {
|
|
43502
|
-
[name: string]: unknown;
|
|
43503
|
-
};
|
|
43504
|
-
content?: never;
|
|
43505
|
-
};
|
|
43506
|
-
/** @description Service already has a different use case bound for this channel. */
|
|
43507
|
-
409: {
|
|
43508
|
-
headers: {
|
|
43509
|
-
[name: string]: unknown;
|
|
43510
|
-
};
|
|
43511
|
-
content?: never;
|
|
43512
|
-
};
|
|
43513
|
-
/** @description Unsupported use case channel. */
|
|
43514
|
-
422: {
|
|
43515
|
-
headers: {
|
|
43516
|
-
[name: string]: unknown;
|
|
43517
|
-
};
|
|
43518
|
-
content?: never;
|
|
43519
|
-
};
|
|
43520
|
-
/** @description Channel manager unavailable. */
|
|
43521
|
-
502: {
|
|
43522
|
-
headers: {
|
|
43523
|
-
[name: string]: unknown;
|
|
43524
|
-
};
|
|
43525
|
-
content?: never;
|
|
43526
|
-
};
|
|
43527
|
-
/** @description Channel manager timed out. */
|
|
43528
|
-
504: {
|
|
43529
|
-
headers: {
|
|
43530
|
-
[name: string]: unknown;
|
|
43531
|
-
};
|
|
43532
|
-
content?: never;
|
|
43533
|
-
};
|
|
43534
|
-
};
|
|
43535
|
-
};
|
|
43536
|
-
"unbind-use-case-from-service": {
|
|
43537
|
-
parameters: {
|
|
43538
|
-
query?: never;
|
|
43539
|
-
header?: never;
|
|
43540
|
-
path: {
|
|
43541
|
-
workspace_id: string;
|
|
43542
|
-
use_case_id: string;
|
|
43543
|
-
};
|
|
43544
|
-
cookie?: never;
|
|
43545
|
-
};
|
|
43546
|
-
requestBody?: never;
|
|
43547
|
-
responses: {
|
|
43548
|
-
/** @description Successful Response */
|
|
43549
|
-
204: {
|
|
43550
|
-
headers: {
|
|
43551
|
-
[name: string]: unknown;
|
|
43552
|
-
};
|
|
43553
|
-
content?: never;
|
|
43554
|
-
};
|
|
43555
|
-
/** @description Insufficient permissions. */
|
|
43556
|
-
403: {
|
|
43557
|
-
headers: {
|
|
43558
|
-
[name: string]: unknown;
|
|
43559
|
-
};
|
|
43560
|
-
content?: never;
|
|
43561
|
-
};
|
|
43562
|
-
/** @description Use case is not bound to a service in this workspace. */
|
|
42203
|
+
/** @description Use case not found. */
|
|
43563
42204
|
404: {
|
|
43564
42205
|
headers: {
|
|
43565
42206
|
[name: string]: unknown;
|
|
43566
42207
|
};
|
|
43567
42208
|
content?: never;
|
|
43568
42209
|
};
|
|
43569
|
-
/** @description
|
|
43570
|
-
|
|
43571
|
-
headers: {
|
|
43572
|
-
[name: string]: unknown;
|
|
43573
|
-
};
|
|
43574
|
-
content: {
|
|
43575
|
-
"application/json": components["schemas"]["HTTPValidationError"];
|
|
43576
|
-
};
|
|
43577
|
-
};
|
|
43578
|
-
};
|
|
43579
|
-
};
|
|
43580
|
-
"list-voicemails": {
|
|
43581
|
-
parameters: {
|
|
43582
|
-
query?: {
|
|
43583
|
-
use_case_id?: string | null;
|
|
43584
|
-
setup_id?: string | null;
|
|
43585
|
-
status?: ("pending" | "skipped" | "failed" | "delivered" | "not_delivered")[] | null;
|
|
43586
|
-
recipient_phone_number?: string | null;
|
|
43587
|
-
};
|
|
43588
|
-
header?: never;
|
|
43589
|
-
path: {
|
|
43590
|
-
workspace_id: string;
|
|
43591
|
-
};
|
|
43592
|
-
cookie?: never;
|
|
43593
|
-
};
|
|
43594
|
-
requestBody?: never;
|
|
43595
|
-
responses: {
|
|
43596
|
-
/** @description Successful Response */
|
|
43597
|
-
200: {
|
|
43598
|
-
headers: {
|
|
43599
|
-
[name: string]: unknown;
|
|
43600
|
-
};
|
|
43601
|
-
content: {
|
|
43602
|
-
"application/json": components["schemas"]["VoicemailListResponse"];
|
|
43603
|
-
};
|
|
43604
|
-
};
|
|
43605
|
-
/** @description Insufficient permissions. */
|
|
43606
|
-
403: {
|
|
42210
|
+
/** @description Use case is bound to a service, or still has active phone assignments. */
|
|
42211
|
+
409: {
|
|
43607
42212
|
headers: {
|
|
43608
42213
|
[name: string]: unknown;
|
|
43609
42214
|
};
|
|
@@ -43618,60 +42223,6 @@ export interface operations {
|
|
|
43618
42223
|
"application/json": components["schemas"]["HTTPValidationError"];
|
|
43619
42224
|
};
|
|
43620
42225
|
};
|
|
43621
|
-
};
|
|
43622
|
-
};
|
|
43623
|
-
"send-voicemail": {
|
|
43624
|
-
parameters: {
|
|
43625
|
-
query?: never;
|
|
43626
|
-
header?: never;
|
|
43627
|
-
path: {
|
|
43628
|
-
workspace_id: string;
|
|
43629
|
-
};
|
|
43630
|
-
cookie?: never;
|
|
43631
|
-
};
|
|
43632
|
-
requestBody: {
|
|
43633
|
-
content: {
|
|
43634
|
-
"multipart/form-data": components["schemas"]["Body_send-voicemail"];
|
|
43635
|
-
};
|
|
43636
|
-
};
|
|
43637
|
-
responses: {
|
|
43638
|
-
/** @description Successful Response */
|
|
43639
|
-
201: {
|
|
43640
|
-
headers: {
|
|
43641
|
-
[name: string]: unknown;
|
|
43642
|
-
};
|
|
43643
|
-
content: {
|
|
43644
|
-
"application/json": components["schemas"]["VoicemailSentResponse"];
|
|
43645
|
-
};
|
|
43646
|
-
};
|
|
43647
|
-
/** @description Insufficient permissions. */
|
|
43648
|
-
403: {
|
|
43649
|
-
headers: {
|
|
43650
|
-
[name: string]: unknown;
|
|
43651
|
-
};
|
|
43652
|
-
content?: never;
|
|
43653
|
-
};
|
|
43654
|
-
/** @description Use case not found or no phone assigned. */
|
|
43655
|
-
404: {
|
|
43656
|
-
headers: {
|
|
43657
|
-
[name: string]: unknown;
|
|
43658
|
-
};
|
|
43659
|
-
content?: never;
|
|
43660
|
-
};
|
|
43661
|
-
/** @description Audio exceeds 8 MB. */
|
|
43662
|
-
413: {
|
|
43663
|
-
headers: {
|
|
43664
|
-
[name: string]: unknown;
|
|
43665
|
-
};
|
|
43666
|
-
content?: never;
|
|
43667
|
-
};
|
|
43668
|
-
/** @description Invalid audio or configuration. */
|
|
43669
|
-
422: {
|
|
43670
|
-
headers: {
|
|
43671
|
-
[name: string]: unknown;
|
|
43672
|
-
};
|
|
43673
|
-
content?: never;
|
|
43674
|
-
};
|
|
43675
42226
|
/** @description Channel manager unavailable. */
|
|
43676
42227
|
502: {
|
|
43677
42228
|
headers: {
|
|
@@ -43688,15 +42239,13 @@ export interface operations {
|
|
|
43688
42239
|
};
|
|
43689
42240
|
};
|
|
43690
42241
|
};
|
|
43691
|
-
"
|
|
42242
|
+
"get-use-case-service-binding": {
|
|
43692
42243
|
parameters: {
|
|
43693
|
-
query?:
|
|
43694
|
-
limit?: number;
|
|
43695
|
-
continuation_token?: number;
|
|
43696
|
-
};
|
|
42244
|
+
query?: never;
|
|
43697
42245
|
header?: never;
|
|
43698
42246
|
path: {
|
|
43699
42247
|
workspace_id: string;
|
|
42248
|
+
use_case_id: string;
|
|
43700
42249
|
};
|
|
43701
42250
|
cookie?: never;
|
|
43702
42251
|
};
|
|
@@ -43708,89 +42257,17 @@ export interface operations {
|
|
|
43708
42257
|
[name: string]: unknown;
|
|
43709
42258
|
};
|
|
43710
42259
|
content: {
|
|
43711
|
-
"application/json": components["schemas"]["
|
|
43712
|
-
};
|
|
43713
|
-
};
|
|
43714
|
-
/** @description Validation Error */
|
|
43715
|
-
422: {
|
|
43716
|
-
headers: {
|
|
43717
|
-
[name: string]: unknown;
|
|
43718
|
-
};
|
|
43719
|
-
content: {
|
|
43720
|
-
"application/json": components["schemas"]["HTTPValidationError"];
|
|
43721
|
-
};
|
|
43722
|
-
};
|
|
43723
|
-
/** @description Rate limited */
|
|
43724
|
-
429: {
|
|
43725
|
-
headers: {
|
|
43726
|
-
[name: string]: unknown;
|
|
43727
|
-
};
|
|
43728
|
-
content?: never;
|
|
43729
|
-
};
|
|
43730
|
-
};
|
|
43731
|
-
};
|
|
43732
|
-
"create-webhook-destination": {
|
|
43733
|
-
parameters: {
|
|
43734
|
-
query?: never;
|
|
43735
|
-
header?: never;
|
|
43736
|
-
path: {
|
|
43737
|
-
workspace_id: string;
|
|
43738
|
-
};
|
|
43739
|
-
cookie?: never;
|
|
43740
|
-
};
|
|
43741
|
-
requestBody: {
|
|
43742
|
-
content: {
|
|
43743
|
-
"application/json": components["schemas"]["CreateWebhookDestinationRequest"];
|
|
43744
|
-
};
|
|
43745
|
-
};
|
|
43746
|
-
responses: {
|
|
43747
|
-
/** @description Successful Response */
|
|
43748
|
-
201: {
|
|
43749
|
-
headers: {
|
|
43750
|
-
[name: string]: unknown;
|
|
43751
|
-
};
|
|
43752
|
-
content: {
|
|
43753
|
-
"application/json": components["schemas"]["WebhookDestinationCreatedResponse"];
|
|
42260
|
+
"application/json": components["schemas"]["ServiceBindingResponse"];
|
|
43754
42261
|
};
|
|
43755
42262
|
};
|
|
43756
|
-
/** @description
|
|
43757
|
-
|
|
43758
|
-
headers: {
|
|
43759
|
-
[name: string]: unknown;
|
|
43760
|
-
};
|
|
43761
|
-
content?: never;
|
|
43762
|
-
};
|
|
43763
|
-
/** @description Rate limited */
|
|
43764
|
-
429: {
|
|
42263
|
+
/** @description Insufficient permissions. */
|
|
42264
|
+
403: {
|
|
43765
42265
|
headers: {
|
|
43766
42266
|
[name: string]: unknown;
|
|
43767
42267
|
};
|
|
43768
42268
|
content?: never;
|
|
43769
42269
|
};
|
|
43770
|
-
|
|
43771
|
-
};
|
|
43772
|
-
"get-webhook-destination": {
|
|
43773
|
-
parameters: {
|
|
43774
|
-
query?: never;
|
|
43775
|
-
header?: never;
|
|
43776
|
-
path: {
|
|
43777
|
-
workspace_id: string;
|
|
43778
|
-
destination_id: string;
|
|
43779
|
-
};
|
|
43780
|
-
cookie?: never;
|
|
43781
|
-
};
|
|
43782
|
-
requestBody?: never;
|
|
43783
|
-
responses: {
|
|
43784
|
-
/** @description Successful Response */
|
|
43785
|
-
200: {
|
|
43786
|
-
headers: {
|
|
43787
|
-
[name: string]: unknown;
|
|
43788
|
-
};
|
|
43789
|
-
content: {
|
|
43790
|
-
"application/json": components["schemas"]["WebhookDestinationResponse"];
|
|
43791
|
-
};
|
|
43792
|
-
};
|
|
43793
|
-
/** @description Webhook destination not found */
|
|
42270
|
+
/** @description Use case is not bound to a service in this workspace. */
|
|
43794
42271
|
404: {
|
|
43795
42272
|
headers: {
|
|
43796
42273
|
[name: string]: unknown;
|
|
@@ -43806,28 +42283,21 @@ export interface operations {
|
|
|
43806
42283
|
"application/json": components["schemas"]["HTTPValidationError"];
|
|
43807
42284
|
};
|
|
43808
42285
|
};
|
|
43809
|
-
/** @description Rate limited */
|
|
43810
|
-
429: {
|
|
43811
|
-
headers: {
|
|
43812
|
-
[name: string]: unknown;
|
|
43813
|
-
};
|
|
43814
|
-
content?: never;
|
|
43815
|
-
};
|
|
43816
42286
|
};
|
|
43817
42287
|
};
|
|
43818
|
-
"
|
|
42288
|
+
"bind-use-case-to-service": {
|
|
43819
42289
|
parameters: {
|
|
43820
42290
|
query?: never;
|
|
43821
42291
|
header?: never;
|
|
43822
42292
|
path: {
|
|
43823
42293
|
workspace_id: string;
|
|
43824
|
-
|
|
42294
|
+
use_case_id: string;
|
|
43825
42295
|
};
|
|
43826
42296
|
cookie?: never;
|
|
43827
42297
|
};
|
|
43828
42298
|
requestBody: {
|
|
43829
42299
|
content: {
|
|
43830
|
-
"application/json": components["schemas"]["
|
|
42300
|
+
"application/json": components["schemas"]["ServiceBindingRequest"];
|
|
43831
42301
|
};
|
|
43832
42302
|
};
|
|
43833
42303
|
responses: {
|
|
@@ -43837,62 +42307,46 @@ export interface operations {
|
|
|
43837
42307
|
[name: string]: unknown;
|
|
43838
42308
|
};
|
|
43839
42309
|
content: {
|
|
43840
|
-
"application/json": components["schemas"]["
|
|
42310
|
+
"application/json": components["schemas"]["ServiceBindingResponse"];
|
|
43841
42311
|
};
|
|
43842
42312
|
};
|
|
43843
|
-
/** @description
|
|
43844
|
-
|
|
42313
|
+
/** @description Insufficient permissions. */
|
|
42314
|
+
403: {
|
|
43845
42315
|
headers: {
|
|
43846
42316
|
[name: string]: unknown;
|
|
43847
42317
|
};
|
|
43848
42318
|
content?: never;
|
|
43849
42319
|
};
|
|
43850
|
-
/** @description
|
|
43851
|
-
|
|
42320
|
+
/** @description Use case or service not found. */
|
|
42321
|
+
404: {
|
|
43852
42322
|
headers: {
|
|
43853
42323
|
[name: string]: unknown;
|
|
43854
42324
|
};
|
|
43855
42325
|
content?: never;
|
|
43856
42326
|
};
|
|
43857
|
-
/** @description
|
|
43858
|
-
|
|
42327
|
+
/** @description Service already has a different use case bound for this channel. */
|
|
42328
|
+
409: {
|
|
43859
42329
|
headers: {
|
|
43860
42330
|
[name: string]: unknown;
|
|
43861
42331
|
};
|
|
43862
42332
|
content?: never;
|
|
43863
42333
|
};
|
|
43864
|
-
|
|
43865
|
-
|
|
43866
|
-
"delete-webhook-destination": {
|
|
43867
|
-
parameters: {
|
|
43868
|
-
query?: never;
|
|
43869
|
-
header?: never;
|
|
43870
|
-
path: {
|
|
43871
|
-
workspace_id: string;
|
|
43872
|
-
destination_id: string;
|
|
43873
|
-
};
|
|
43874
|
-
cookie?: never;
|
|
43875
|
-
};
|
|
43876
|
-
requestBody?: never;
|
|
43877
|
-
responses: {
|
|
43878
|
-
/** @description Successful Response */
|
|
43879
|
-
204: {
|
|
42334
|
+
/** @description Unsupported use case channel. */
|
|
42335
|
+
422: {
|
|
43880
42336
|
headers: {
|
|
43881
42337
|
[name: string]: unknown;
|
|
43882
42338
|
};
|
|
43883
42339
|
content?: never;
|
|
43884
42340
|
};
|
|
43885
|
-
/** @description
|
|
43886
|
-
|
|
42341
|
+
/** @description Channel manager unavailable. */
|
|
42342
|
+
502: {
|
|
43887
42343
|
headers: {
|
|
43888
42344
|
[name: string]: unknown;
|
|
43889
42345
|
};
|
|
43890
|
-
content
|
|
43891
|
-
"application/json": components["schemas"]["HTTPValidationError"];
|
|
43892
|
-
};
|
|
42346
|
+
content?: never;
|
|
43893
42347
|
};
|
|
43894
|
-
/** @description
|
|
43895
|
-
|
|
42348
|
+
/** @description Channel manager timed out. */
|
|
42349
|
+
504: {
|
|
43896
42350
|
headers: {
|
|
43897
42351
|
[name: string]: unknown;
|
|
43898
42352
|
};
|
|
@@ -43900,89 +42354,47 @@ export interface operations {
|
|
|
43900
42354
|
};
|
|
43901
42355
|
};
|
|
43902
42356
|
};
|
|
43903
|
-
"
|
|
42357
|
+
"unbind-use-case-from-service": {
|
|
43904
42358
|
parameters: {
|
|
43905
|
-
query?:
|
|
43906
|
-
limit?: number;
|
|
43907
|
-
continuation_token?: number;
|
|
43908
|
-
};
|
|
42359
|
+
query?: never;
|
|
43909
42360
|
header?: never;
|
|
43910
42361
|
path: {
|
|
43911
42362
|
workspace_id: string;
|
|
43912
|
-
|
|
42363
|
+
use_case_id: string;
|
|
43913
42364
|
};
|
|
43914
42365
|
cookie?: never;
|
|
43915
42366
|
};
|
|
43916
42367
|
requestBody?: never;
|
|
43917
42368
|
responses: {
|
|
43918
42369
|
/** @description Successful Response */
|
|
43919
|
-
|
|
43920
|
-
headers: {
|
|
43921
|
-
[name: string]: unknown;
|
|
43922
|
-
};
|
|
43923
|
-
content: {
|
|
43924
|
-
"application/json": components["schemas"]["PaginatedResponse_DeliveryResponse_"];
|
|
43925
|
-
};
|
|
43926
|
-
};
|
|
43927
|
-
/** @description Validation Error */
|
|
43928
|
-
422: {
|
|
43929
|
-
headers: {
|
|
43930
|
-
[name: string]: unknown;
|
|
43931
|
-
};
|
|
43932
|
-
content: {
|
|
43933
|
-
"application/json": components["schemas"]["HTTPValidationError"];
|
|
43934
|
-
};
|
|
43935
|
-
};
|
|
43936
|
-
/** @description Rate limited */
|
|
43937
|
-
429: {
|
|
42370
|
+
204: {
|
|
43938
42371
|
headers: {
|
|
43939
42372
|
[name: string]: unknown;
|
|
43940
42373
|
};
|
|
43941
42374
|
content?: never;
|
|
43942
42375
|
};
|
|
43943
|
-
|
|
43944
|
-
|
|
43945
|
-
"rotate-webhook-destination-secret": {
|
|
43946
|
-
parameters: {
|
|
43947
|
-
query?: never;
|
|
43948
|
-
header?: never;
|
|
43949
|
-
path: {
|
|
43950
|
-
workspace_id: string;
|
|
43951
|
-
destination_id: string;
|
|
43952
|
-
};
|
|
43953
|
-
cookie?: never;
|
|
43954
|
-
};
|
|
43955
|
-
requestBody?: never;
|
|
43956
|
-
responses: {
|
|
43957
|
-
/** @description Successful Response */
|
|
43958
|
-
200: {
|
|
42376
|
+
/** @description Insufficient permissions. */
|
|
42377
|
+
403: {
|
|
43959
42378
|
headers: {
|
|
43960
42379
|
[name: string]: unknown;
|
|
43961
42380
|
};
|
|
43962
|
-
content
|
|
43963
|
-
"application/json": components["schemas"]["RotateSecretResponse"];
|
|
43964
|
-
};
|
|
42381
|
+
content?: never;
|
|
43965
42382
|
};
|
|
43966
|
-
/** @description
|
|
42383
|
+
/** @description Use case is not bound to a service in this workspace. */
|
|
43967
42384
|
404: {
|
|
43968
42385
|
headers: {
|
|
43969
42386
|
[name: string]: unknown;
|
|
43970
42387
|
};
|
|
43971
42388
|
content?: never;
|
|
43972
42389
|
};
|
|
43973
|
-
/** @description Validation
|
|
42390
|
+
/** @description Validation Error */
|
|
43974
42391
|
422: {
|
|
43975
42392
|
headers: {
|
|
43976
42393
|
[name: string]: unknown;
|
|
43977
42394
|
};
|
|
43978
|
-
content
|
|
43979
|
-
|
|
43980
|
-
/** @description Rate limited */
|
|
43981
|
-
429: {
|
|
43982
|
-
headers: {
|
|
43983
|
-
[name: string]: unknown;
|
|
42395
|
+
content: {
|
|
42396
|
+
"application/json": components["schemas"]["HTTPValidationError"];
|
|
43984
42397
|
};
|
|
43985
|
-
content?: never;
|
|
43986
42398
|
};
|
|
43987
42399
|
};
|
|
43988
42400
|
};
|
|
@@ -45168,171 +43580,5 @@ export interface operations {
|
|
|
45168
43580
|
};
|
|
45169
43581
|
};
|
|
45170
43582
|
};
|
|
45171
|
-
"world-sync-events": {
|
|
45172
|
-
parameters: {
|
|
45173
|
-
query: {
|
|
45174
|
-
status: "pending" | "synced" | "failed" | "processing" | "not_applicable";
|
|
45175
|
-
/** @description Filter events to a specific outbound data source. */
|
|
45176
|
-
data_source_id?: string | null;
|
|
45177
|
-
/** @description Filter events to a specific source system. */
|
|
45178
|
-
source_system?: string | null;
|
|
45179
|
-
/** @description Filter events to a specific FHIR resource type. */
|
|
45180
|
-
fhir_resource_type?: string | null;
|
|
45181
|
-
/** @description Filter events to a specific FHIR resource ID. */
|
|
45182
|
-
fhir_resource_id?: string | null;
|
|
45183
|
-
limit?: number;
|
|
45184
|
-
offset?: number;
|
|
45185
|
-
};
|
|
45186
|
-
header?: never;
|
|
45187
|
-
path: {
|
|
45188
|
-
workspace_id: string;
|
|
45189
|
-
};
|
|
45190
|
-
cookie?: never;
|
|
45191
|
-
};
|
|
45192
|
-
requestBody?: never;
|
|
45193
|
-
responses: {
|
|
45194
|
-
/** @description Successful Response */
|
|
45195
|
-
200: {
|
|
45196
|
-
headers: {
|
|
45197
|
-
[name: string]: unknown;
|
|
45198
|
-
};
|
|
45199
|
-
content: {
|
|
45200
|
-
"application/json": components["schemas"]["SyncEventsResponse"];
|
|
45201
|
-
};
|
|
45202
|
-
};
|
|
45203
|
-
/** @description Invalid status parameter. */
|
|
45204
|
-
400: {
|
|
45205
|
-
headers: {
|
|
45206
|
-
[name: string]: unknown;
|
|
45207
|
-
};
|
|
45208
|
-
content?: never;
|
|
45209
|
-
};
|
|
45210
|
-
/** @description Missing or invalid API key. */
|
|
45211
|
-
401: {
|
|
45212
|
-
headers: {
|
|
45213
|
-
[name: string]: unknown;
|
|
45214
|
-
};
|
|
45215
|
-
content?: never;
|
|
45216
|
-
};
|
|
45217
|
-
/** @description Validation Error */
|
|
45218
|
-
422: {
|
|
45219
|
-
headers: {
|
|
45220
|
-
[name: string]: unknown;
|
|
45221
|
-
};
|
|
45222
|
-
content: {
|
|
45223
|
-
"application/json": components["schemas"]["HTTPValidationError"];
|
|
45224
|
-
};
|
|
45225
|
-
};
|
|
45226
|
-
};
|
|
45227
|
-
};
|
|
45228
|
-
"world-sync-queue": {
|
|
45229
|
-
parameters: {
|
|
45230
|
-
query?: never;
|
|
45231
|
-
header?: never;
|
|
45232
|
-
path: {
|
|
45233
|
-
workspace_id: string;
|
|
45234
|
-
};
|
|
45235
|
-
cookie?: never;
|
|
45236
|
-
};
|
|
45237
|
-
requestBody?: never;
|
|
45238
|
-
responses: {
|
|
45239
|
-
/** @description Successful Response */
|
|
45240
|
-
200: {
|
|
45241
|
-
headers: {
|
|
45242
|
-
[name: string]: unknown;
|
|
45243
|
-
};
|
|
45244
|
-
content: {
|
|
45245
|
-
"application/json": components["schemas"]["SyncQueueResponse"];
|
|
45246
|
-
};
|
|
45247
|
-
};
|
|
45248
|
-
/** @description Missing or invalid API key. */
|
|
45249
|
-
401: {
|
|
45250
|
-
headers: {
|
|
45251
|
-
[name: string]: unknown;
|
|
45252
|
-
};
|
|
45253
|
-
content?: never;
|
|
45254
|
-
};
|
|
45255
|
-
};
|
|
45256
|
-
};
|
|
45257
|
-
"world-sync-retry-all": {
|
|
45258
|
-
parameters: {
|
|
45259
|
-
query?: never;
|
|
45260
|
-
header?: never;
|
|
45261
|
-
path: {
|
|
45262
|
-
workspace_id: string;
|
|
45263
|
-
};
|
|
45264
|
-
cookie?: never;
|
|
45265
|
-
};
|
|
45266
|
-
requestBody?: never;
|
|
45267
|
-
responses: {
|
|
45268
|
-
/** @description Successful Response */
|
|
45269
|
-
200: {
|
|
45270
|
-
headers: {
|
|
45271
|
-
[name: string]: unknown;
|
|
45272
|
-
};
|
|
45273
|
-
content: {
|
|
45274
|
-
"application/json": components["schemas"]["SyncBulkRetryResponse"];
|
|
45275
|
-
};
|
|
45276
|
-
};
|
|
45277
|
-
/** @description Missing or invalid API key. */
|
|
45278
|
-
401: {
|
|
45279
|
-
headers: {
|
|
45280
|
-
[name: string]: unknown;
|
|
45281
|
-
};
|
|
45282
|
-
content?: never;
|
|
45283
|
-
};
|
|
45284
|
-
};
|
|
45285
|
-
};
|
|
45286
|
-
"world-sync-retry": {
|
|
45287
|
-
parameters: {
|
|
45288
|
-
query?: never;
|
|
45289
|
-
header?: never;
|
|
45290
|
-
path: {
|
|
45291
|
-
workspace_id: string;
|
|
45292
|
-
event_id: string;
|
|
45293
|
-
};
|
|
45294
|
-
cookie?: never;
|
|
45295
|
-
};
|
|
45296
|
-
requestBody?: never;
|
|
45297
|
-
responses: {
|
|
45298
|
-
/** @description Successful Response */
|
|
45299
|
-
200: {
|
|
45300
|
-
headers: {
|
|
45301
|
-
[name: string]: unknown;
|
|
45302
|
-
};
|
|
45303
|
-
content: {
|
|
45304
|
-
"application/json": components["schemas"]["SyncRetryResponse"];
|
|
45305
|
-
};
|
|
45306
|
-
};
|
|
45307
|
-
/** @description Invalid event ID format. */
|
|
45308
|
-
400: {
|
|
45309
|
-
headers: {
|
|
45310
|
-
[name: string]: unknown;
|
|
45311
|
-
};
|
|
45312
|
-
content?: never;
|
|
45313
|
-
};
|
|
45314
|
-
/** @description Missing or invalid API key. */
|
|
45315
|
-
401: {
|
|
45316
|
-
headers: {
|
|
45317
|
-
[name: string]: unknown;
|
|
45318
|
-
};
|
|
45319
|
-
content?: never;
|
|
45320
|
-
};
|
|
45321
|
-
/** @description Event not found or has no sync_error. */
|
|
45322
|
-
404: {
|
|
45323
|
-
headers: {
|
|
45324
|
-
[name: string]: unknown;
|
|
45325
|
-
};
|
|
45326
|
-
content?: never;
|
|
45327
|
-
};
|
|
45328
|
-
/** @description Event missing FHIR resource type/ID. */
|
|
45329
|
-
422: {
|
|
45330
|
-
headers: {
|
|
45331
|
-
[name: string]: unknown;
|
|
45332
|
-
};
|
|
45333
|
-
content?: never;
|
|
45334
|
-
};
|
|
45335
|
-
};
|
|
45336
|
-
};
|
|
45337
43583
|
}
|
|
45338
43584
|
//# sourceMappingURL=api.d.ts.map
|