@amigo-ai/platform-sdk 0.49.0 → 0.50.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/dist/types/generated/api.d.ts +37 -12
- package/dist/types/generated/api.d.ts.map +1 -1
- package/dist/types/resources/functions.d.ts.map +1 -1
- package/dist/types/resources/intake.d.ts.map +1 -1
- package/dist/types/resources/metrics.d.ts.map +1 -1
- package/dist/types/resources/operators.d.ts.map +1 -1
- package/dist/types/resources/services.d.ts.map +1 -1
- package/dist/types/resources/settings.d.ts.map +1 -1
- package/dist/types/resources/surfaces.d.ts.map +1 -1
- package/package.json +1 -1
|
@@ -12382,10 +12382,10 @@ export interface components {
|
|
|
12382
12382
|
/** CreateConversationRequest */
|
|
12383
12383
|
CreateConversationRequest: {
|
|
12384
12384
|
/**
|
|
12385
|
-
*
|
|
12386
|
-
* @
|
|
12385
|
+
* Context
|
|
12386
|
+
* @description Injected into the agent's prompt as caller/patient context for this conversation.
|
|
12387
12387
|
*/
|
|
12388
|
-
|
|
12388
|
+
context?: string | null;
|
|
12389
12389
|
/** Entity Id */
|
|
12390
12390
|
entity_id?: string | null;
|
|
12391
12391
|
/**
|
|
@@ -12393,6 +12393,16 @@ export interface components {
|
|
|
12393
12393
|
* Format: uuid
|
|
12394
12394
|
*/
|
|
12395
12395
|
service_id: string;
|
|
12396
|
+
/**
|
|
12397
|
+
* Start Mode
|
|
12398
|
+
* @default user_first
|
|
12399
|
+
* @enum {string}
|
|
12400
|
+
*/
|
|
12401
|
+
start_mode?: "user_first" | "agent_first";
|
|
12402
|
+
/** Viewport Height */
|
|
12403
|
+
viewport_height?: number | null;
|
|
12404
|
+
/** Viewport Width */
|
|
12405
|
+
viewport_width?: number | null;
|
|
12396
12406
|
};
|
|
12397
12407
|
/** CreateCustomerRequest */
|
|
12398
12408
|
CreateCustomerRequest: {
|
|
@@ -13107,22 +13117,28 @@ export interface components {
|
|
|
13107
13117
|
*/
|
|
13108
13118
|
trigger_id: string;
|
|
13109
13119
|
};
|
|
13110
|
-
/**
|
|
13120
|
+
/**
|
|
13121
|
+
* CreateWorkspaceRequest
|
|
13122
|
+
* @description Request body for ``POST /v1/me/workspaces``.
|
|
13123
|
+
*
|
|
13124
|
+
* ``region`` is intentionally not exposed here — the workspace is created
|
|
13125
|
+
* in the region of the platform-api pod that handles the request (each
|
|
13126
|
+
* region's CD pipeline serves its own ingress host), and a workspace
|
|
13127
|
+
* cannot migrate between regions. The handler derives it from
|
|
13128
|
+
* ``app.env.aws_region``.
|
|
13129
|
+
*
|
|
13130
|
+
* ``environment`` has no default: it is a load-bearing routing field
|
|
13131
|
+
* (staging vs production downstream), and ``PATCH .../convert_environment``
|
|
13132
|
+
* is the supported migration path. Callers must commit to a value.
|
|
13133
|
+
*/
|
|
13111
13134
|
CreateWorkspaceRequest: {
|
|
13112
13135
|
backend_org_id?: components["schemas"]["StrippedNonemptyString"] | null;
|
|
13113
13136
|
/**
|
|
13114
13137
|
* Environment
|
|
13115
|
-
* @default staging
|
|
13116
13138
|
* @enum {string}
|
|
13117
13139
|
*/
|
|
13118
|
-
environment
|
|
13140
|
+
environment: "production" | "staging" | "development";
|
|
13119
13141
|
name: components["schemas"]["StrippedNonemptyString"];
|
|
13120
|
-
/**
|
|
13121
|
-
* Region
|
|
13122
|
-
* @default us-east-1
|
|
13123
|
-
* @enum {string}
|
|
13124
|
-
*/
|
|
13125
|
-
region?: "us-east-1" | "ap-southeast-2" | "eu-central-1" | "ca-central-1";
|
|
13126
13142
|
slug: components["schemas"]["SlugString"];
|
|
13127
13143
|
};
|
|
13128
13144
|
/** CrmActivityItem */
|
|
@@ -27165,12 +27181,21 @@ export interface components {
|
|
|
27165
27181
|
TurnRequest: {
|
|
27166
27182
|
/** Content */
|
|
27167
27183
|
content?: components["schemas"]["ContentPartPayload"][] | null;
|
|
27184
|
+
/**
|
|
27185
|
+
* Context
|
|
27186
|
+
* @description Injected into the agent's prompt as caller/patient context for this turn.
|
|
27187
|
+
*/
|
|
27188
|
+
context?: string | null;
|
|
27168
27189
|
/** Media Type */
|
|
27169
27190
|
media_type?: string | null;
|
|
27170
27191
|
/** Media Url */
|
|
27171
27192
|
media_url?: string | null;
|
|
27172
27193
|
/** Message */
|
|
27173
27194
|
message: string;
|
|
27195
|
+
/** Viewport Height */
|
|
27196
|
+
viewport_height?: number | null;
|
|
27197
|
+
/** Viewport Width */
|
|
27198
|
+
viewport_width?: number | null;
|
|
27174
27199
|
};
|
|
27175
27200
|
/** TurnResponse */
|
|
27176
27201
|
TurnResponse: {
|