@amigo-ai/sdk 0.46.0 → 0.48.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.
@@ -2470,7 +2470,7 @@ export interface components {
2470
2470
  */
2471
2471
  previously_started_event: unknown;
2472
2472
  };
2473
- AgentFrameworkInvocationMetadata: components["schemas"]["StateTransitionInvocationMetadata"] | components["schemas"]["EngageUserInvocationMetadata"];
2473
+ AgentFrameworkInvocationMetadata: components["schemas"]["StateTransitionInvocationMetadata"] | components["schemas"]["EngageUserInvocationMetadata"] | components["schemas"]["ToolCallStateInvocationMetadata"];
2474
2474
  /** AnnotationState */
2475
2475
  "AnnotationState-Input": {
2476
2476
  /**
@@ -3256,6 +3256,16 @@ export interface components {
3256
3256
  * @constant
3257
3257
  */
3258
3258
  type?: "designated-tool-call-params-generated";
3259
+ /**
3260
+ * Tool Id
3261
+ * @description The ID of the tool being called.
3262
+ */
3263
+ tool_id: string;
3264
+ /**
3265
+ * Tool Version
3266
+ * @description The version of the tool being called.
3267
+ */
3268
+ tool_version: string;
3259
3269
  /**
3260
3270
  * Tool Call Params
3261
3271
  * @description The generated tool call parameters.
@@ -4024,6 +4034,16 @@ export interface components {
4024
4034
  * @constant
4025
4035
  */
4026
4036
  type?: "navigate-state-machine-tool-call-state-tool-output-available";
4037
+ /**
4038
+ * Tool Id
4039
+ * @description The ID of the tool being called.
4040
+ */
4041
+ tool_id: string;
4042
+ /**
4043
+ * Tool Version
4044
+ * @description The version of the tool being called.
4045
+ */
4046
+ tool_version: string;
4027
4047
  /**
4028
4048
  * Tool Output
4029
4049
  * @description The tool output.
@@ -4952,10 +4972,9 @@ export interface components {
4952
4972
  initial_message_type: components["schemas"]["InitialMessageType"];
4953
4973
  /**
4954
4974
  * Conversation Starts At
4955
- * Format: date-time
4956
- * @description The time at which the conversation starts. This must be a timestamp in UTC.
4975
+ * @description The time at which the conversation starts. This must be a timestamp in UTC. If not specified, the current server time is used.
4957
4976
  */
4958
- conversation_starts_at: string;
4977
+ conversation_starts_at: string | null;
4959
4978
  };
4960
4979
  /** SimulationUnitTest */
4961
4980
  SimulationUnitTest: {
@@ -5625,6 +5644,27 @@ export interface components {
5625
5644
  */
5626
5645
  tool_call_specs: components["schemas"]["ToolCallSpec-Output"][];
5627
5646
  };
5647
+ /** ToolCallStateInvocationMetadata */
5648
+ ToolCallStateInvocationMetadata: {
5649
+ /**
5650
+ * @description discriminator enum property added by openapi-typescript
5651
+ * @enum {string}
5652
+ */
5653
+ type: "tool-call-state";
5654
+ /**
5655
+ * Current State Machine And Version
5656
+ * @description The ID and version of the state machine that is currently being executed.
5657
+ */
5658
+ current_state_machine_and_version: [
5659
+ string,
5660
+ number
5661
+ ];
5662
+ /**
5663
+ * State Name
5664
+ * @description The name of the state during which the tool was invoked.
5665
+ */
5666
+ state_name: string;
5667
+ };
5628
5668
  /** ToolCallStateTransitionLog */
5629
5669
  ToolCallStateTransitionLog: {
5630
5670
  /**
@@ -7905,10 +7945,9 @@ export interface components {
7905
7945
  initial_message_type: components["schemas"]["InitialMessageType"];
7906
7946
  /**
7907
7947
  * Conversation Starts At
7908
- * Format: date-time
7909
- * @description The time at which the conversation starts. This must be a timestamp in UTC.
7948
+ * @description The time at which the conversation starts. This must be a timestamp in UTC. If not specified, the current server time is used.
7910
7949
  */
7911
- conversation_starts_at: string;
7950
+ conversation_starts_at: string | null;
7912
7951
  };
7913
7952
  /** Response */
7914
7953
  simulation__create_simulation_scenario__Response: {
@@ -7928,10 +7967,9 @@ export interface components {
7928
7967
  initial_message_type: components["schemas"]["InitialMessageType"];
7929
7968
  /**
7930
7969
  * Conversation Starts At
7931
- * Format: date-time
7932
- * @description The time at which the conversation starts. This must be a timestamp in UTC.
7970
+ * @description The time at which the conversation starts. This must be a timestamp in UTC. If not specified, the current server time is used.
7933
7971
  */
7934
- conversation_starts_at: string;
7972
+ conversation_starts_at: string | null;
7935
7973
  };
7936
7974
  /** Response */
7937
7975
  simulation__create_simulation_scenario_version__Response: {
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@amigo-ai/sdk",
3
- "version": "0.46.0",
3
+ "version": "0.48.0",
4
4
  "description": "Amigo TypeScript SDK",
5
5
  "publishConfig": {
6
6
  "access": "public"