@juhuu/sdk-ts 1.2.252 → 1.2.254
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 +4 -6
- package/dist/index.d.ts +4 -6
- package/package.json +1 -1
package/dist/index.d.mts
CHANGED
|
@@ -962,6 +962,7 @@ interface SwitchBlock extends BaseBlock {
|
|
|
962
962
|
out: Record<string, ControlEdgeConnection>;
|
|
963
963
|
data: {
|
|
964
964
|
expression: JsonLogic;
|
|
965
|
+
cases: string[];
|
|
965
966
|
};
|
|
966
967
|
}
|
|
967
968
|
interface HttpPatchBlock extends BaseBlock {
|
|
@@ -3835,11 +3836,7 @@ declare namespace JUHUU {
|
|
|
3835
3836
|
technologyArray?: Technology[];
|
|
3836
3837
|
};
|
|
3837
3838
|
type Options = JUHUU.RequestOptions;
|
|
3838
|
-
type Response =
|
|
3839
|
-
productArray: Product.Object[];
|
|
3840
|
-
count: number;
|
|
3841
|
-
hasMore: boolean;
|
|
3842
|
-
};
|
|
3839
|
+
type Response = Product.Object[];
|
|
3843
3840
|
}
|
|
3844
3841
|
namespace Update {
|
|
3845
3842
|
type Params = {
|
|
@@ -3869,10 +3866,11 @@ declare namespace JUHUU {
|
|
|
3869
3866
|
type Base = {
|
|
3870
3867
|
id: string;
|
|
3871
3868
|
readonly object: "link";
|
|
3872
|
-
propertyId: string;
|
|
3869
|
+
propertyId: string | null;
|
|
3873
3870
|
referenceObject: "location";
|
|
3874
3871
|
referenceObjectId: string;
|
|
3875
3872
|
name: string;
|
|
3873
|
+
image: string | null;
|
|
3876
3874
|
};
|
|
3877
3875
|
export interface FiveLetterQr extends Base {
|
|
3878
3876
|
type: "fiveLetterQr";
|
package/dist/index.d.ts
CHANGED
|
@@ -962,6 +962,7 @@ interface SwitchBlock extends BaseBlock {
|
|
|
962
962
|
out: Record<string, ControlEdgeConnection>;
|
|
963
963
|
data: {
|
|
964
964
|
expression: JsonLogic;
|
|
965
|
+
cases: string[];
|
|
965
966
|
};
|
|
966
967
|
}
|
|
967
968
|
interface HttpPatchBlock extends BaseBlock {
|
|
@@ -3835,11 +3836,7 @@ declare namespace JUHUU {
|
|
|
3835
3836
|
technologyArray?: Technology[];
|
|
3836
3837
|
};
|
|
3837
3838
|
type Options = JUHUU.RequestOptions;
|
|
3838
|
-
type Response =
|
|
3839
|
-
productArray: Product.Object[];
|
|
3840
|
-
count: number;
|
|
3841
|
-
hasMore: boolean;
|
|
3842
|
-
};
|
|
3839
|
+
type Response = Product.Object[];
|
|
3843
3840
|
}
|
|
3844
3841
|
namespace Update {
|
|
3845
3842
|
type Params = {
|
|
@@ -3869,10 +3866,11 @@ declare namespace JUHUU {
|
|
|
3869
3866
|
type Base = {
|
|
3870
3867
|
id: string;
|
|
3871
3868
|
readonly object: "link";
|
|
3872
|
-
propertyId: string;
|
|
3869
|
+
propertyId: string | null;
|
|
3873
3870
|
referenceObject: "location";
|
|
3874
3871
|
referenceObjectId: string;
|
|
3875
3872
|
name: string;
|
|
3873
|
+
image: string | null;
|
|
3876
3874
|
};
|
|
3877
3875
|
export interface FiveLetterQr extends Base {
|
|
3878
3876
|
type: "fiveLetterQr";
|