@juhuu/sdk-ts 1.2.233 → 1.2.234
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 +2 -2
- package/dist/index.d.ts +2 -2
- package/package.json +1 -1
package/dist/index.d.mts
CHANGED
|
@@ -549,7 +549,7 @@ interface StartCustomBlock extends BaseBlock {
|
|
|
549
549
|
in: Record<string, never>;
|
|
550
550
|
out: Record<string, DataEdgeConnection>;
|
|
551
551
|
data: {
|
|
552
|
-
inputParamDefinitionArray
|
|
552
|
+
inputParamDefinitionArray: ParamDefinition[];
|
|
553
553
|
};
|
|
554
554
|
}
|
|
555
555
|
interface StartQuickActionLocationBlock extends BaseBlock {
|
|
@@ -834,7 +834,7 @@ interface EndCustomBlock extends BaseBlock {
|
|
|
834
834
|
in: Record<string, DataEdgeConnection>;
|
|
835
835
|
out: Record<string, never>;
|
|
836
836
|
data: {
|
|
837
|
-
|
|
837
|
+
outputParamDefinitionArray: ParamDefinition[];
|
|
838
838
|
};
|
|
839
839
|
}
|
|
840
840
|
type FlowBlock = StartCustomBlock | StartQuickActionLocationBlock | StartSessionUpdateBlock | StartParameterUpdateBlock | ConstNumberBlock | ConstTextBlock | ConstBooleanBlock | MathAddBlock | MapDestructureBlock | ParameterRetrieveBlock | ParameterUpdateBlock | IfBlock | HttpPatchBlock | HttpGetBlock | HttpPostBlock | HttpDeleteBlock | HttpPutBlock | MqttSendBlock | HttpPatchBlock | EndCustomBlock;
|
package/dist/index.d.ts
CHANGED
|
@@ -549,7 +549,7 @@ interface StartCustomBlock extends BaseBlock {
|
|
|
549
549
|
in: Record<string, never>;
|
|
550
550
|
out: Record<string, DataEdgeConnection>;
|
|
551
551
|
data: {
|
|
552
|
-
inputParamDefinitionArray
|
|
552
|
+
inputParamDefinitionArray: ParamDefinition[];
|
|
553
553
|
};
|
|
554
554
|
}
|
|
555
555
|
interface StartQuickActionLocationBlock extends BaseBlock {
|
|
@@ -834,7 +834,7 @@ interface EndCustomBlock extends BaseBlock {
|
|
|
834
834
|
in: Record<string, DataEdgeConnection>;
|
|
835
835
|
out: Record<string, never>;
|
|
836
836
|
data: {
|
|
837
|
-
|
|
837
|
+
outputParamDefinitionArray: ParamDefinition[];
|
|
838
838
|
};
|
|
839
839
|
}
|
|
840
840
|
type FlowBlock = StartCustomBlock | StartQuickActionLocationBlock | StartSessionUpdateBlock | StartParameterUpdateBlock | ConstNumberBlock | ConstTextBlock | ConstBooleanBlock | MathAddBlock | MapDestructureBlock | ParameterRetrieveBlock | ParameterUpdateBlock | IfBlock | HttpPatchBlock | HttpGetBlock | HttpPostBlock | HttpDeleteBlock | HttpPutBlock | MqttSendBlock | HttpPatchBlock | EndCustomBlock;
|