@juhuu/sdk-ts 1.2.229 → 1.2.230
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.mts +3 -0
- package/dist/index.d.ts +3 -0
- package/dist/index.js +3 -1
- package/dist/index.mjs +3 -1
- package/package.json +1 -1
package/dist/index.d.mts
CHANGED
|
@@ -4060,10 +4060,13 @@ declare namespace JUHUU {
|
|
|
4060
4060
|
namespace Execute {
|
|
4061
4061
|
type Params = {
|
|
4062
4062
|
flowId: string;
|
|
4063
|
+
input?: Record<string, any>;
|
|
4063
4064
|
};
|
|
4064
4065
|
type Options = JUHUU.RequestOptions;
|
|
4065
4066
|
type Response = {
|
|
4066
4067
|
flow: JUHUU.Flow.Object;
|
|
4068
|
+
flowTrace: JUHUU.FlowTrace.Object;
|
|
4069
|
+
output: Record<string, any>;
|
|
4067
4070
|
};
|
|
4068
4071
|
}
|
|
4069
4072
|
}
|
package/dist/index.d.ts
CHANGED
|
@@ -4060,10 +4060,13 @@ declare namespace JUHUU {
|
|
|
4060
4060
|
namespace Execute {
|
|
4061
4061
|
type Params = {
|
|
4062
4062
|
flowId: string;
|
|
4063
|
+
input?: Record<string, any>;
|
|
4063
4064
|
};
|
|
4064
4065
|
type Options = JUHUU.RequestOptions;
|
|
4065
4066
|
type Response = {
|
|
4066
4067
|
flow: JUHUU.Flow.Object;
|
|
4068
|
+
flowTrace: JUHUU.FlowTrace.Object;
|
|
4069
|
+
output: Record<string, any>;
|
|
4067
4070
|
};
|
|
4068
4071
|
}
|
|
4069
4072
|
}
|
package/dist/index.js
CHANGED
|
@@ -3497,7 +3497,9 @@ var FlowsService = class extends Service {
|
|
|
3497
3497
|
{
|
|
3498
3498
|
method: "POST",
|
|
3499
3499
|
url: "flows/" + FlowExecuteParams.flowId + "/execute",
|
|
3500
|
-
body: {
|
|
3500
|
+
body: {
|
|
3501
|
+
input: FlowExecuteParams.input
|
|
3502
|
+
},
|
|
3501
3503
|
authenticationNotOptional: true
|
|
3502
3504
|
},
|
|
3503
3505
|
FlowExecuteOptions
|
package/dist/index.mjs
CHANGED
|
@@ -3453,7 +3453,9 @@ var FlowsService = class extends Service {
|
|
|
3453
3453
|
{
|
|
3454
3454
|
method: "POST",
|
|
3455
3455
|
url: "flows/" + FlowExecuteParams.flowId + "/execute",
|
|
3456
|
-
body: {
|
|
3456
|
+
body: {
|
|
3457
|
+
input: FlowExecuteParams.input
|
|
3458
|
+
},
|
|
3457
3459
|
authenticationNotOptional: true
|
|
3458
3460
|
},
|
|
3459
3461
|
FlowExecuteOptions
|