@soat/sdk 0.13.17 → 0.13.18
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/index.d.cts +4 -0
- package/dist/index.d.mts +4 -0
- package/package.json +1 -1
package/dist/index.d.cts
CHANGED
|
@@ -2887,6 +2887,10 @@ type NodeExecution = {
|
|
|
2887
2887
|
* Details for a paused run waiting for human input.
|
|
2888
2888
|
*/
|
|
2889
2889
|
type RequiredAction = {
|
|
2890
|
+
/**
|
|
2891
|
+
* Discriminator identifying the kind of pause.
|
|
2892
|
+
*/
|
|
2893
|
+
type: 'human_input' | 'webhook_receive';
|
|
2890
2894
|
node_id: string;
|
|
2891
2895
|
prompt: string;
|
|
2892
2896
|
context: {
|
package/dist/index.d.mts
CHANGED
|
@@ -2887,6 +2887,10 @@ type NodeExecution = {
|
|
|
2887
2887
|
* Details for a paused run waiting for human input.
|
|
2888
2888
|
*/
|
|
2889
2889
|
type RequiredAction = {
|
|
2890
|
+
/**
|
|
2891
|
+
* Discriminator identifying the kind of pause.
|
|
2892
|
+
*/
|
|
2893
|
+
type: 'human_input' | 'webhook_receive';
|
|
2890
2894
|
node_id: string;
|
|
2891
2895
|
prompt: string;
|
|
2892
2896
|
context: {
|