@amigo-ai/platform-sdk 0.61.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.
@@ -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
- /** @description Context-graph state transition that occurred during this turn. Null means no transition took place or no transition was recorded. If multiple transitions were recorded, the API reports the first source state and final destination state. */
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 */