@juhuu/sdk-ts 1.2.253 → 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 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 {
@@ -3865,10 +3866,11 @@ declare namespace JUHUU {
3865
3866
  type Base = {
3866
3867
  id: string;
3867
3868
  readonly object: "link";
3868
- propertyId: string;
3869
+ propertyId: string | null;
3869
3870
  referenceObject: "location";
3870
3871
  referenceObjectId: string;
3871
3872
  name: string;
3873
+ image: string | null;
3872
3874
  };
3873
3875
  export interface FiveLetterQr extends Base {
3874
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 {
@@ -3865,10 +3866,11 @@ declare namespace JUHUU {
3865
3866
  type Base = {
3866
3867
  id: string;
3867
3868
  readonly object: "link";
3868
- propertyId: string;
3869
+ propertyId: string | null;
3869
3870
  referenceObject: "location";
3870
3871
  referenceObjectId: string;
3871
3872
  name: string;
3873
+ image: string | null;
3872
3874
  };
3873
3875
  export interface FiveLetterQr extends Base {
3874
3876
  type: "fiveLetterQr";
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@juhuu/sdk-ts",
3
- "version": "1.2.253",
3
+ "version": "1.2.254",
4
4
  "description": "Typescript wrapper for JUHUU services",
5
5
  "main": "./dist/index.js",
6
6
  "module": "./dist/index.mjs",