@amigo-ai/platform-sdk 0.9.3 → 0.10.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.
|
@@ -1502,6 +1502,30 @@ export interface paths {
|
|
|
1502
1502
|
patch?: never;
|
|
1503
1503
|
trace?: never;
|
|
1504
1504
|
};
|
|
1505
|
+
"/v1/{workspace_id}/brief": {
|
|
1506
|
+
parameters: {
|
|
1507
|
+
query?: never;
|
|
1508
|
+
header?: never;
|
|
1509
|
+
path?: never;
|
|
1510
|
+
cookie?: never;
|
|
1511
|
+
};
|
|
1512
|
+
/**
|
|
1513
|
+
* Get Latest Workspace Brief
|
|
1514
|
+
* @description Return the latest workspace-level Self-Image brief (null shape if none).
|
|
1515
|
+
*/
|
|
1516
|
+
get: operations["get_latest_workspace_brief_v1__workspace_id__brief_get"];
|
|
1517
|
+
put?: never;
|
|
1518
|
+
/**
|
|
1519
|
+
* Generate Workspace Brief
|
|
1520
|
+
* @description Generate a workspace-level Self-Image brief (Opus 4.7).
|
|
1521
|
+
*/
|
|
1522
|
+
post: operations["generate_workspace_brief_v1__workspace_id__brief_post"];
|
|
1523
|
+
delete?: never;
|
|
1524
|
+
options?: never;
|
|
1525
|
+
head?: never;
|
|
1526
|
+
patch?: never;
|
|
1527
|
+
trace?: never;
|
|
1528
|
+
};
|
|
1505
1529
|
"/v1/{workspace_id}/calls": {
|
|
1506
1530
|
parameters: {
|
|
1507
1531
|
query?: never;
|
|
@@ -2476,7 +2500,7 @@ export interface paths {
|
|
|
2476
2500
|
put?: never;
|
|
2477
2501
|
/**
|
|
2478
2502
|
* Generate Brief
|
|
2479
|
-
* @description Generate a Self-Image brief for the target entity (
|
|
2503
|
+
* @description Generate a Self-Image brief for the target entity (patient, cohort, territory, emirate, or district).
|
|
2480
2504
|
*/
|
|
2481
2505
|
post: operations["generate_brief_v1__workspace_id__entities__entity_id__brief_post"];
|
|
2482
2506
|
delete?: never;
|
|
@@ -9324,9 +9348,9 @@ export interface components {
|
|
|
9324
9348
|
target_entity_id: string;
|
|
9325
9349
|
/**
|
|
9326
9350
|
* Target Entity Type
|
|
9327
|
-
* @
|
|
9351
|
+
* @enum {string}
|
|
9328
9352
|
*/
|
|
9329
|
-
target_entity_type: "patient";
|
|
9353
|
+
target_entity_type: "patient" | "cohort" | "workspace" | "territory" | "emirate" | "district";
|
|
9330
9354
|
/**
|
|
9331
9355
|
* Truncated
|
|
9332
9356
|
* @default false
|
|
@@ -28427,6 +28451,50 @@ export interface operations {
|
|
|
28427
28451
|
};
|
|
28428
28452
|
};
|
|
28429
28453
|
};
|
|
28454
|
+
get_latest_workspace_brief_v1__workspace_id__brief_get: {
|
|
28455
|
+
parameters: {
|
|
28456
|
+
query?: never;
|
|
28457
|
+
header?: never;
|
|
28458
|
+
path: {
|
|
28459
|
+
workspace_id: string;
|
|
28460
|
+
};
|
|
28461
|
+
cookie?: never;
|
|
28462
|
+
};
|
|
28463
|
+
requestBody?: never;
|
|
28464
|
+
responses: {
|
|
28465
|
+
/** @description Successful Response */
|
|
28466
|
+
200: {
|
|
28467
|
+
headers: {
|
|
28468
|
+
[name: string]: unknown;
|
|
28469
|
+
};
|
|
28470
|
+
content: {
|
|
28471
|
+
"application/json": components["schemas"]["BriefResponse"];
|
|
28472
|
+
};
|
|
28473
|
+
};
|
|
28474
|
+
};
|
|
28475
|
+
};
|
|
28476
|
+
generate_workspace_brief_v1__workspace_id__brief_post: {
|
|
28477
|
+
parameters: {
|
|
28478
|
+
query?: never;
|
|
28479
|
+
header?: never;
|
|
28480
|
+
path: {
|
|
28481
|
+
workspace_id: string;
|
|
28482
|
+
};
|
|
28483
|
+
cookie?: never;
|
|
28484
|
+
};
|
|
28485
|
+
requestBody?: never;
|
|
28486
|
+
responses: {
|
|
28487
|
+
/** @description Successful Response */
|
|
28488
|
+
200: {
|
|
28489
|
+
headers: {
|
|
28490
|
+
[name: string]: unknown;
|
|
28491
|
+
};
|
|
28492
|
+
content: {
|
|
28493
|
+
"application/json": components["schemas"]["BriefResponse"];
|
|
28494
|
+
};
|
|
28495
|
+
};
|
|
28496
|
+
};
|
|
28497
|
+
};
|
|
28430
28498
|
"list-calls": {
|
|
28431
28499
|
parameters: {
|
|
28432
28500
|
query?: {
|