@amigo-ai/platform-sdk 0.60.0 → 0.61.1
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 +10 -1
- package/dist/types/generated/api.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/dist/types/resources/world.d.ts.map +1 -1
- package/package.json +1 -1
|
@@ -10073,8 +10073,17 @@ export interface components {
|
|
|
10073
10073
|
* @description Description of the context-graph action selected for this turn. Null means no action was selected or no selected action was recorded.
|
|
10074
10074
|
*/
|
|
10075
10075
|
selected_action_description?: string | null;
|
|
10076
|
-
/**
|
|
10076
|
+
/**
|
|
10077
|
+
* @deprecated
|
|
10078
|
+
* @description Context-graph state transition that occurred during this turn. Null means no transition took place or no transition was recorded. Deprecated: use state_transitions instead. If multiple transitions were recorded, this field reports the first source state and final destination state.
|
|
10079
|
+
*/
|
|
10077
10080
|
state_transition?: components["schemas"]["ConversationTurnStateTransition"] | null;
|
|
10081
|
+
/**
|
|
10082
|
+
* State Transitions
|
|
10083
|
+
* @description Ordered context-graph state transitions that occurred during this turn.
|
|
10084
|
+
* @default []
|
|
10085
|
+
*/
|
|
10086
|
+
state_transitions?: components["schemas"]["ConversationTurnStateTransition"][];
|
|
10078
10087
|
/** Text */
|
|
10079
10088
|
text: string;
|
|
10080
10089
|
/** Timestamp */
|