@amigo-ai/sdk 0.47.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.
|
@@ -4972,10 +4972,9 @@ export interface components {
|
|
|
4972
4972
|
initial_message_type: components["schemas"]["InitialMessageType"];
|
|
4973
4973
|
/**
|
|
4974
4974
|
* Conversation Starts At
|
|
4975
|
-
*
|
|
4976
|
-
* @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.
|
|
4977
4976
|
*/
|
|
4978
|
-
conversation_starts_at: string;
|
|
4977
|
+
conversation_starts_at: string | null;
|
|
4979
4978
|
};
|
|
4980
4979
|
/** SimulationUnitTest */
|
|
4981
4980
|
SimulationUnitTest: {
|
|
@@ -7946,10 +7945,9 @@ export interface components {
|
|
|
7946
7945
|
initial_message_type: components["schemas"]["InitialMessageType"];
|
|
7947
7946
|
/**
|
|
7948
7947
|
* Conversation Starts At
|
|
7949
|
-
*
|
|
7950
|
-
* @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.
|
|
7951
7949
|
*/
|
|
7952
|
-
conversation_starts_at: string;
|
|
7950
|
+
conversation_starts_at: string | null;
|
|
7953
7951
|
};
|
|
7954
7952
|
/** Response */
|
|
7955
7953
|
simulation__create_simulation_scenario__Response: {
|
|
@@ -7969,10 +7967,9 @@ export interface components {
|
|
|
7969
7967
|
initial_message_type: components["schemas"]["InitialMessageType"];
|
|
7970
7968
|
/**
|
|
7971
7969
|
* Conversation Starts At
|
|
7972
|
-
*
|
|
7973
|
-
* @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.
|
|
7974
7971
|
*/
|
|
7975
|
-
conversation_starts_at: string;
|
|
7972
|
+
conversation_starts_at: string | null;
|
|
7976
7973
|
};
|
|
7977
7974
|
/** Response */
|
|
7978
7975
|
simulation__create_simulation_scenario_version__Response: {
|