@juhuu/sdk-ts 1.2.233 → 1.2.235
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 -3
- package/dist/index.d.ts +3 -3
- 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;
|
|
@@ -3744,7 +3744,7 @@ declare namespace JUHUU {
|
|
|
3744
3744
|
deviceId?: string;
|
|
3745
3745
|
};
|
|
3746
3746
|
type Options = {
|
|
3747
|
-
expand
|
|
3747
|
+
expand?: Array<"property">;
|
|
3748
3748
|
} & JUHUU.RequestOptions;
|
|
3749
3749
|
type Response = {
|
|
3750
3750
|
parameter: JUHUU.Parameter.Object;
|
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;
|
|
@@ -3744,7 +3744,7 @@ declare namespace JUHUU {
|
|
|
3744
3744
|
deviceId?: string;
|
|
3745
3745
|
};
|
|
3746
3746
|
type Options = {
|
|
3747
|
-
expand
|
|
3747
|
+
expand?: Array<"property">;
|
|
3748
3748
|
} & JUHUU.RequestOptions;
|
|
3749
3749
|
type Response = {
|
|
3750
3750
|
parameter: JUHUU.Parameter.Object;
|