We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent a25fe5b commit e47d7eeCopy full SHA for e47d7ee
2 files changed
ts/examples/simple_example.ts
@@ -31,10 +31,9 @@ sdk.registerFunctionDefinition(
31
description: [],
32
name: [],
33
documentation: [],
34
- defaultValue: constructValue(20),
+ defaultValue: 20,
35
}
36
],
37
- version: "0.0.0",
38
runtimeName: "fib",
39
},
40
(n: number): number => {
@@ -51,7 +50,6 @@ sdk.registerFlowType(
51
50
editable: false,
52
inputTypeIdentifier: "STRING",
53
identifier: "test_flow",
54
55
56
)
57
ts/src/types.ts
@@ -85,8 +85,8 @@ export interface HerculesActionConfigurationDefinition {
85
86
export interface ActionSdk {
87
config: {
88
- token: string,
89
- actionUrl: string,
+ authToken: string,
+ aquilaUrl: string,
90
actionId: string,
91
version: string,
92
0 commit comments