@juhuu/sdk-ts 1.2.238 → 1.2.240

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
@@ -1,6 +1,16 @@
1
1
  import { Socket } from 'socket.io-client';
2
2
 
3
3
  type Environment = "development" | "production";
4
+ type ProximityStrategy = {
5
+ type: "qr";
6
+ text: string | null;
7
+ } | {
8
+ type: "link";
9
+ linkId: string | null;
10
+ } | {
11
+ type: "location";
12
+ radius: number | null;
13
+ };
4
14
  type Platform = "ios" | "android" | "windows" | "macos" | "web";
5
15
  type DeviceStatus = "running" | "sleeping" | "shutdown";
6
16
  type PushToken = {
@@ -736,14 +746,46 @@ interface LocationUpdateBlock extends BaseBlock {
736
746
  type: "location.update";
737
747
  in: {
738
748
  locationId: DataEdgeConnection;
739
- data: DataEdgeConnection;
749
+ latitude: DataEdgeConnection;
750
+ longitude: DataEdgeConnection;
751
+ purposeArray: DataEdgeConnection;
752
+ circumstanceArray: DataEdgeConnection;
753
+ rentOfferArray: DataEdgeConnection;
754
+ reservationOfferArray: DataEdgeConnection;
755
+ address: DataEdgeConnection;
756
+ name: DataEdgeConnection;
757
+ termId: DataEdgeConnection;
758
+ deviceId: DataEdgeConnection;
759
+ useableDeviceGroupLocationId: DataEdgeConnection;
760
+ maximumConcurrentSessions: DataEdgeConnection;
761
+ surveyEnabled: DataEdgeConnection;
762
+ disabled: DataEdgeConnection;
763
+ accountingAreaId: DataEdgeConnection;
764
+ deviceIdArray: DataEdgeConnection;
765
+ rentableDeviceGroupLocationId: DataEdgeConnection;
740
766
  };
741
767
  out: {
742
768
  location: DataEdgeConnection;
743
769
  };
744
770
  data: {
745
771
  locationId?: string;
746
- data?: Record<string, any>;
772
+ latitude?: number | null;
773
+ longitude?: number | null;
774
+ purposeArray?: Purpose[] | null;
775
+ circumstanceArray?: Circumstance[] | null;
776
+ rentOfferArray?: Offer[] | null;
777
+ reservationOfferArray?: Offer[] | null;
778
+ address?: Address | null;
779
+ name?: string | null;
780
+ termId?: string | null;
781
+ deviceId?: string | null;
782
+ useableDeviceGroupLocationId?: string | null;
783
+ maximumConcurrentSessions?: number | null;
784
+ surveyEnabled?: boolean | null;
785
+ disabled?: boolean | null;
786
+ accountingAreaId?: string | null;
787
+ deviceIdArray?: string[] | null;
788
+ rentableDeviceGroupLocationId?: string | null;
747
789
  };
748
790
  }
749
791
  interface LocationUpdateBlockInputs {
@@ -908,12 +950,20 @@ interface MapDestructureBlockInputs {
908
950
  }
909
951
  interface IfBlock extends BaseBlock {
910
952
  type: "control.if";
911
- in: Record<string, never>;
953
+ in: Record<string, DataEdgeConnection>;
912
954
  out: Record<string, ControlEdgeConnection>;
913
955
  data: {
914
956
  condition: JsonLogic;
915
957
  };
916
958
  }
959
+ interface SwitchBlock extends BaseBlock {
960
+ type: "control.switch";
961
+ in: Record<string, DataEdgeConnection>;
962
+ out: Record<string, ControlEdgeConnection>;
963
+ data: {
964
+ expression: JsonLogic;
965
+ };
966
+ }
917
967
  interface HttpPatchBlock extends BaseBlock {
918
968
  type: "http.patch";
919
969
  in: {
@@ -1043,6 +1093,20 @@ interface MqttSendBlockInputs {
1043
1093
  password: string | null;
1044
1094
  connectUrl: string;
1045
1095
  }
1096
+ interface FlowExecuteBlock extends BaseBlock {
1097
+ type: "flow.execute";
1098
+ in: {
1099
+ flowId: DataEdgeConnection;
1100
+ } & Record<string, DataEdgeConnection>;
1101
+ out: Record<string, DataEdgeConnection>;
1102
+ data: {
1103
+ flowId?: string;
1104
+ };
1105
+ }
1106
+ interface FlowExecuteBlockInputs {
1107
+ flowId: string;
1108
+ [key: string]: any;
1109
+ }
1046
1110
  interface EndCustomBlock extends BaseBlock {
1047
1111
  type: "end.custom";
1048
1112
  in: Record<string, DataEdgeConnection>;
@@ -1051,8 +1115,8 @@ interface EndCustomBlock extends BaseBlock {
1051
1115
  outputParamDefinitionArray: ParamDefinition[];
1052
1116
  };
1053
1117
  }
1054
- type FlowBlock = StartCustomBlock | StartQuickActionLocationBlock | StartSessionUpdateBlock | StartLocationUpdateBlock | StartParameterUpdateBlock | ConstNumberBlock | ConstTextBlock | ConstBooleanBlock | MathAddBlock | MathSubtractBlock | MathMultiplyBlock | MathDivideBlock | MapDestructureBlock | ParameterRetrieveBlock | PropertyRetrieveBlock | LocationRetrieveBlock | SessionRetrieveBlock | DeviceRetrieveBlock | UserRetrieveBlock | ParameterUpdateBlock | DeviceUpdateBlock | LocationUpdateBlock | PropertyUpdateBlock | SessionTerminateBlock | IfBlock | HttpPatchBlock | HttpGetBlock | HttpPostBlock | HttpDeleteBlock | HttpPutBlock | MqttSendBlock | HttpPatchBlock | EndCustomBlock;
1055
- type FlowBlockInput = MathAddBlockInputs | MathSubtractBlockInputs | MathMultiplyBlockInputs | MathDivideBlockInputs | ParameterRetrieveBlockInputs | PropertyRetrieveBlockInputs | LocationRetrieveBlockInputs | SessionRetrieveBlockInputs | DeviceRetrieveBlockInputs | UserRetrieveBlockInputs | ParameterUpdateBlockInputs | DeviceUpdateBlockInputs | LocationUpdateBlockInputs | PropertyUpdateBlockInputs | SessionTerminateBlockInputs | HttpsPatchBlockInputs | HttpGetBlockInputs | HttpPostBlockInputs | HttpDeleteBlockInputs | HttpPutBlockInputs | MqttSendBlockInputs | MapDestructureBlockInputs | Record<string, unknown>;
1118
+ type FlowBlock = StartCustomBlock | StartQuickActionLocationBlock | StartSessionUpdateBlock | StartLocationUpdateBlock | StartParameterUpdateBlock | ConstNumberBlock | ConstTextBlock | ConstBooleanBlock | MathAddBlock | MathSubtractBlock | MathMultiplyBlock | MathDivideBlock | MapDestructureBlock | ParameterRetrieveBlock | PropertyRetrieveBlock | LocationRetrieveBlock | SessionRetrieveBlock | DeviceRetrieveBlock | UserRetrieveBlock | ParameterUpdateBlock | DeviceUpdateBlock | LocationUpdateBlock | PropertyUpdateBlock | SessionTerminateBlock | IfBlock | SwitchBlock | HttpPatchBlock | HttpGetBlock | HttpPostBlock | HttpDeleteBlock | HttpPutBlock | MqttSendBlock | FlowExecuteBlock | HttpPatchBlock | EndCustomBlock;
1119
+ type FlowBlockInput = MathAddBlockInputs | MathSubtractBlockInputs | MathMultiplyBlockInputs | MathDivideBlockInputs | ParameterRetrieveBlockInputs | PropertyRetrieveBlockInputs | LocationRetrieveBlockInputs | SessionRetrieveBlockInputs | DeviceRetrieveBlockInputs | UserRetrieveBlockInputs | ParameterUpdateBlockInputs | DeviceUpdateBlockInputs | LocationUpdateBlockInputs | PropertyUpdateBlockInputs | SessionTerminateBlockInputs | HttpsPatchBlockInputs | HttpGetBlockInputs | HttpPostBlockInputs | HttpDeleteBlockInputs | HttpPutBlockInputs | MqttSendBlockInputs | FlowExecuteBlockInputs | MapDestructureBlockInputs | Record<string, unknown>;
1056
1120
  interface FlowDataEdge {
1057
1121
  id: string;
1058
1122
  type: "data";
@@ -3601,11 +3665,11 @@ declare namespace JUHUU {
3601
3665
  source: "fluctuo" | null;
3602
3666
  location: GeoPoint | null;
3603
3667
  invalidAt: Date | null;
3604
- connectorId: string | null;
3605
- connectorParameter: string | null;
3606
3668
  disabled: boolean;
3607
3669
  disabledBy: "propertyAdmin" | "nodeArray" | null;
3608
3670
  incidentTemplateIdArray: string[];
3671
+ permissionArray: DevicePermission[];
3672
+ proximityStrategyArray: ProximityStrategy[];
3609
3673
  };
3610
3674
  namespace Create {
3611
3675
  type Params = {
@@ -4631,4 +4695,4 @@ declare namespace JUHUU {
4631
4695
  }
4632
4696
  }
4633
4697
 
4634
- export { type AccessControlListElement, type Address, type ApiKeyScope, type ApiKeyStatus, type AutoRenewMode, type BaseBlock, type BusinessType, type Capability, type Category, type Circumstance, type Color, type ColorScheme, type Command, type Condition, ConditionType, type ConstBooleanBlock, type ConstNumberBlock, type ConstTextBlock, type ControlEdgeConnection, type CountryCode, CountryCodeArray, type CurrencyCode, CurrencyCodeArray, type CustomClaims, type DataEdgeConnection, type DeepNullable, type DevicePermission, type DeviceRetrieveBlock, type DeviceRetrieveBlockInputs, type DeviceStatus, type DeviceType, type DeviceUpdateBlock, type DeviceUpdateBlockInputs, type EndCustomBlock, type Environment, type EnvironmentSettings, type ExtractType, type FlowBlock, type FlowBlockInput, type FlowControlEdge, type FlowDataEdge, type FlowEdge, type FlowExecutionEnvironment, type FlowLog, type FlowStatus, type Frontend, type GeneralSettings, type GeoPoint, type GraphNode, type HttpDeleteBlock, type HttpDeleteBlockInputs, type HttpGetBlock, type HttpGetBlockInputs, type HttpPatchBlock, type HttpPostBlock, type HttpPostBlockInputs, type HttpPutBlock, type HttpPutBlockInputs, type HttpsPatchBlockInputs, type IfBlock, JUHUU, type JsonLogic, Juhuu, type LanguageCode, LanguageCodeArray, Layout, type LayoutBlock, type License, type LicenseTariffIdMap, type LinkType, type LocaleString, type LocationRetrieveBlock, type LocationRetrieveBlockInputs, type LocationUpdateBlock, type LocationUpdateBlockInputs, type MapDestructureBlock, type MapDestructureBlockInputs, type MapFilter, type MathAddBlock, type MathAddBlockInputs, type MathDivideBlock, type MathDivideBlockInputs, type MathMultiplyBlock, type MathMultiplyBlockInputs, type MathSubtractBlock, type MathSubtractBlockInputs, type Modality, type MqttSendBlock, type MqttSendBlockInputs, type Offer, type OfferTime, type ParamDefinition, type ParamType, type ParameterRetrieveBlock, type ParameterRetrieveBlockInputs, type ParameterUpdateBlock, type ParameterUpdateBlockInputs, type Party, type PaymentMethod, type PaymentReason, type PaymentRefundReason, type PaymentRefundStatus, type PaymentServiceProvider, type PaymentStatus, type PayoutSettings, type PayoutStatus, type PermissionTypes, type Person, type Platform, type PlatformString, type PostingRow, type PropertyRetrieveBlock, type PropertyRetrieveBlockInputs, type PropertyUpdateBlock, type PropertyUpdateBlockInputs, type Purpose, type PushToken, type QuickAction, ReadonlyCategoryArray, ReadonlyModalityArray, ReadonlySectorArray, type RefundStatus, type Sector, type SessionCannotTerminateReason, type SessionRetrieveBlock, type SessionRetrieveBlockInputs, type SessionSettings, type SessionStatus, type SessionTerminateBlock, type SessionTerminateBlockInputs, type SessionTerminatedByType, type SessionType, Settings, type SimStatus, type StarRating, type StartCustomBlock, type StartLocationUpdateBlock, type StartParameterUpdateBlock, type StartQuickActionLocationBlock, type StartSessionUpdateBlock, type TarifType, type TaxCode, type TimeZone, type Unit, type UserGroup, type UserRetrieveBlock, type UserRetrieveBlockInputs, type UserType, type Utilization, type VeloBrushDeviceDocumentUserManualStep, type Viewport, type ViewportPolygon, type VisualPriority, type hexColor };
4698
+ export { type AccessControlListElement, type Address, type ApiKeyScope, type ApiKeyStatus, type AutoRenewMode, type BaseBlock, type BusinessType, type Capability, type Category, type Circumstance, type Color, type ColorScheme, type Command, type Condition, ConditionType, type ConstBooleanBlock, type ConstNumberBlock, type ConstTextBlock, type ControlEdgeConnection, type CountryCode, CountryCodeArray, type CurrencyCode, CurrencyCodeArray, type CustomClaims, type DataEdgeConnection, type DeepNullable, type DevicePermission, type DeviceRetrieveBlock, type DeviceRetrieveBlockInputs, type DeviceStatus, type DeviceType, type DeviceUpdateBlock, type DeviceUpdateBlockInputs, type EndCustomBlock, type Environment, type EnvironmentSettings, type ExtractType, type FlowBlock, type FlowBlockInput, type FlowControlEdge, type FlowDataEdge, type FlowEdge, type FlowExecuteBlock, type FlowExecuteBlockInputs, type FlowExecutionEnvironment, type FlowLog, type FlowStatus, type Frontend, type GeneralSettings, type GeoPoint, type GraphNode, type HttpDeleteBlock, type HttpDeleteBlockInputs, type HttpGetBlock, type HttpGetBlockInputs, type HttpPatchBlock, type HttpPostBlock, type HttpPostBlockInputs, type HttpPutBlock, type HttpPutBlockInputs, type HttpsPatchBlockInputs, type IfBlock, JUHUU, type JsonLogic, Juhuu, type LanguageCode, LanguageCodeArray, Layout, type LayoutBlock, type License, type LicenseTariffIdMap, type LinkType, type LocaleString, type LocationRetrieveBlock, type LocationRetrieveBlockInputs, type LocationUpdateBlock, type LocationUpdateBlockInputs, type MapDestructureBlock, type MapDestructureBlockInputs, type MapFilter, type MathAddBlock, type MathAddBlockInputs, type MathDivideBlock, type MathDivideBlockInputs, type MathMultiplyBlock, type MathMultiplyBlockInputs, type MathSubtractBlock, type MathSubtractBlockInputs, type Modality, type MqttSendBlock, type MqttSendBlockInputs, type Offer, type OfferTime, type ParamDefinition, type ParamType, type ParameterRetrieveBlock, type ParameterRetrieveBlockInputs, type ParameterUpdateBlock, type ParameterUpdateBlockInputs, type Party, type PaymentMethod, type PaymentReason, type PaymentRefundReason, type PaymentRefundStatus, type PaymentServiceProvider, type PaymentStatus, type PayoutSettings, type PayoutStatus, type PermissionTypes, type Person, type Platform, type PlatformString, type PostingRow, type PropertyRetrieveBlock, type PropertyRetrieveBlockInputs, type PropertyUpdateBlock, type PropertyUpdateBlockInputs, type ProximityStrategy, type Purpose, type PushToken, type QuickAction, ReadonlyCategoryArray, ReadonlyModalityArray, ReadonlySectorArray, type RefundStatus, type Sector, type SessionCannotTerminateReason, type SessionRetrieveBlock, type SessionRetrieveBlockInputs, type SessionSettings, type SessionStatus, type SessionTerminateBlock, type SessionTerminateBlockInputs, type SessionTerminatedByType, type SessionType, Settings, type SimStatus, type StarRating, type StartCustomBlock, type StartLocationUpdateBlock, type StartParameterUpdateBlock, type StartQuickActionLocationBlock, type StartSessionUpdateBlock, type SwitchBlock, type TarifType, type TaxCode, type TimeZone, type Unit, type UserGroup, type UserRetrieveBlock, type UserRetrieveBlockInputs, type UserType, type Utilization, type VeloBrushDeviceDocumentUserManualStep, type Viewport, type ViewportPolygon, type VisualPriority, type hexColor };
package/dist/index.d.ts CHANGED
@@ -1,6 +1,16 @@
1
1
  import { Socket } from 'socket.io-client';
2
2
 
3
3
  type Environment = "development" | "production";
4
+ type ProximityStrategy = {
5
+ type: "qr";
6
+ text: string | null;
7
+ } | {
8
+ type: "link";
9
+ linkId: string | null;
10
+ } | {
11
+ type: "location";
12
+ radius: number | null;
13
+ };
4
14
  type Platform = "ios" | "android" | "windows" | "macos" | "web";
5
15
  type DeviceStatus = "running" | "sleeping" | "shutdown";
6
16
  type PushToken = {
@@ -736,14 +746,46 @@ interface LocationUpdateBlock extends BaseBlock {
736
746
  type: "location.update";
737
747
  in: {
738
748
  locationId: DataEdgeConnection;
739
- data: DataEdgeConnection;
749
+ latitude: DataEdgeConnection;
750
+ longitude: DataEdgeConnection;
751
+ purposeArray: DataEdgeConnection;
752
+ circumstanceArray: DataEdgeConnection;
753
+ rentOfferArray: DataEdgeConnection;
754
+ reservationOfferArray: DataEdgeConnection;
755
+ address: DataEdgeConnection;
756
+ name: DataEdgeConnection;
757
+ termId: DataEdgeConnection;
758
+ deviceId: DataEdgeConnection;
759
+ useableDeviceGroupLocationId: DataEdgeConnection;
760
+ maximumConcurrentSessions: DataEdgeConnection;
761
+ surveyEnabled: DataEdgeConnection;
762
+ disabled: DataEdgeConnection;
763
+ accountingAreaId: DataEdgeConnection;
764
+ deviceIdArray: DataEdgeConnection;
765
+ rentableDeviceGroupLocationId: DataEdgeConnection;
740
766
  };
741
767
  out: {
742
768
  location: DataEdgeConnection;
743
769
  };
744
770
  data: {
745
771
  locationId?: string;
746
- data?: Record<string, any>;
772
+ latitude?: number | null;
773
+ longitude?: number | null;
774
+ purposeArray?: Purpose[] | null;
775
+ circumstanceArray?: Circumstance[] | null;
776
+ rentOfferArray?: Offer[] | null;
777
+ reservationOfferArray?: Offer[] | null;
778
+ address?: Address | null;
779
+ name?: string | null;
780
+ termId?: string | null;
781
+ deviceId?: string | null;
782
+ useableDeviceGroupLocationId?: string | null;
783
+ maximumConcurrentSessions?: number | null;
784
+ surveyEnabled?: boolean | null;
785
+ disabled?: boolean | null;
786
+ accountingAreaId?: string | null;
787
+ deviceIdArray?: string[] | null;
788
+ rentableDeviceGroupLocationId?: string | null;
747
789
  };
748
790
  }
749
791
  interface LocationUpdateBlockInputs {
@@ -908,12 +950,20 @@ interface MapDestructureBlockInputs {
908
950
  }
909
951
  interface IfBlock extends BaseBlock {
910
952
  type: "control.if";
911
- in: Record<string, never>;
953
+ in: Record<string, DataEdgeConnection>;
912
954
  out: Record<string, ControlEdgeConnection>;
913
955
  data: {
914
956
  condition: JsonLogic;
915
957
  };
916
958
  }
959
+ interface SwitchBlock extends BaseBlock {
960
+ type: "control.switch";
961
+ in: Record<string, DataEdgeConnection>;
962
+ out: Record<string, ControlEdgeConnection>;
963
+ data: {
964
+ expression: JsonLogic;
965
+ };
966
+ }
917
967
  interface HttpPatchBlock extends BaseBlock {
918
968
  type: "http.patch";
919
969
  in: {
@@ -1043,6 +1093,20 @@ interface MqttSendBlockInputs {
1043
1093
  password: string | null;
1044
1094
  connectUrl: string;
1045
1095
  }
1096
+ interface FlowExecuteBlock extends BaseBlock {
1097
+ type: "flow.execute";
1098
+ in: {
1099
+ flowId: DataEdgeConnection;
1100
+ } & Record<string, DataEdgeConnection>;
1101
+ out: Record<string, DataEdgeConnection>;
1102
+ data: {
1103
+ flowId?: string;
1104
+ };
1105
+ }
1106
+ interface FlowExecuteBlockInputs {
1107
+ flowId: string;
1108
+ [key: string]: any;
1109
+ }
1046
1110
  interface EndCustomBlock extends BaseBlock {
1047
1111
  type: "end.custom";
1048
1112
  in: Record<string, DataEdgeConnection>;
@@ -1051,8 +1115,8 @@ interface EndCustomBlock extends BaseBlock {
1051
1115
  outputParamDefinitionArray: ParamDefinition[];
1052
1116
  };
1053
1117
  }
1054
- type FlowBlock = StartCustomBlock | StartQuickActionLocationBlock | StartSessionUpdateBlock | StartLocationUpdateBlock | StartParameterUpdateBlock | ConstNumberBlock | ConstTextBlock | ConstBooleanBlock | MathAddBlock | MathSubtractBlock | MathMultiplyBlock | MathDivideBlock | MapDestructureBlock | ParameterRetrieveBlock | PropertyRetrieveBlock | LocationRetrieveBlock | SessionRetrieveBlock | DeviceRetrieveBlock | UserRetrieveBlock | ParameterUpdateBlock | DeviceUpdateBlock | LocationUpdateBlock | PropertyUpdateBlock | SessionTerminateBlock | IfBlock | HttpPatchBlock | HttpGetBlock | HttpPostBlock | HttpDeleteBlock | HttpPutBlock | MqttSendBlock | HttpPatchBlock | EndCustomBlock;
1055
- type FlowBlockInput = MathAddBlockInputs | MathSubtractBlockInputs | MathMultiplyBlockInputs | MathDivideBlockInputs | ParameterRetrieveBlockInputs | PropertyRetrieveBlockInputs | LocationRetrieveBlockInputs | SessionRetrieveBlockInputs | DeviceRetrieveBlockInputs | UserRetrieveBlockInputs | ParameterUpdateBlockInputs | DeviceUpdateBlockInputs | LocationUpdateBlockInputs | PropertyUpdateBlockInputs | SessionTerminateBlockInputs | HttpsPatchBlockInputs | HttpGetBlockInputs | HttpPostBlockInputs | HttpDeleteBlockInputs | HttpPutBlockInputs | MqttSendBlockInputs | MapDestructureBlockInputs | Record<string, unknown>;
1118
+ type FlowBlock = StartCustomBlock | StartQuickActionLocationBlock | StartSessionUpdateBlock | StartLocationUpdateBlock | StartParameterUpdateBlock | ConstNumberBlock | ConstTextBlock | ConstBooleanBlock | MathAddBlock | MathSubtractBlock | MathMultiplyBlock | MathDivideBlock | MapDestructureBlock | ParameterRetrieveBlock | PropertyRetrieveBlock | LocationRetrieveBlock | SessionRetrieveBlock | DeviceRetrieveBlock | UserRetrieveBlock | ParameterUpdateBlock | DeviceUpdateBlock | LocationUpdateBlock | PropertyUpdateBlock | SessionTerminateBlock | IfBlock | SwitchBlock | HttpPatchBlock | HttpGetBlock | HttpPostBlock | HttpDeleteBlock | HttpPutBlock | MqttSendBlock | FlowExecuteBlock | HttpPatchBlock | EndCustomBlock;
1119
+ type FlowBlockInput = MathAddBlockInputs | MathSubtractBlockInputs | MathMultiplyBlockInputs | MathDivideBlockInputs | ParameterRetrieveBlockInputs | PropertyRetrieveBlockInputs | LocationRetrieveBlockInputs | SessionRetrieveBlockInputs | DeviceRetrieveBlockInputs | UserRetrieveBlockInputs | ParameterUpdateBlockInputs | DeviceUpdateBlockInputs | LocationUpdateBlockInputs | PropertyUpdateBlockInputs | SessionTerminateBlockInputs | HttpsPatchBlockInputs | HttpGetBlockInputs | HttpPostBlockInputs | HttpDeleteBlockInputs | HttpPutBlockInputs | MqttSendBlockInputs | FlowExecuteBlockInputs | MapDestructureBlockInputs | Record<string, unknown>;
1056
1120
  interface FlowDataEdge {
1057
1121
  id: string;
1058
1122
  type: "data";
@@ -3601,11 +3665,11 @@ declare namespace JUHUU {
3601
3665
  source: "fluctuo" | null;
3602
3666
  location: GeoPoint | null;
3603
3667
  invalidAt: Date | null;
3604
- connectorId: string | null;
3605
- connectorParameter: string | null;
3606
3668
  disabled: boolean;
3607
3669
  disabledBy: "propertyAdmin" | "nodeArray" | null;
3608
3670
  incidentTemplateIdArray: string[];
3671
+ permissionArray: DevicePermission[];
3672
+ proximityStrategyArray: ProximityStrategy[];
3609
3673
  };
3610
3674
  namespace Create {
3611
3675
  type Params = {
@@ -4631,4 +4695,4 @@ declare namespace JUHUU {
4631
4695
  }
4632
4696
  }
4633
4697
 
4634
- export { type AccessControlListElement, type Address, type ApiKeyScope, type ApiKeyStatus, type AutoRenewMode, type BaseBlock, type BusinessType, type Capability, type Category, type Circumstance, type Color, type ColorScheme, type Command, type Condition, ConditionType, type ConstBooleanBlock, type ConstNumberBlock, type ConstTextBlock, type ControlEdgeConnection, type CountryCode, CountryCodeArray, type CurrencyCode, CurrencyCodeArray, type CustomClaims, type DataEdgeConnection, type DeepNullable, type DevicePermission, type DeviceRetrieveBlock, type DeviceRetrieveBlockInputs, type DeviceStatus, type DeviceType, type DeviceUpdateBlock, type DeviceUpdateBlockInputs, type EndCustomBlock, type Environment, type EnvironmentSettings, type ExtractType, type FlowBlock, type FlowBlockInput, type FlowControlEdge, type FlowDataEdge, type FlowEdge, type FlowExecutionEnvironment, type FlowLog, type FlowStatus, type Frontend, type GeneralSettings, type GeoPoint, type GraphNode, type HttpDeleteBlock, type HttpDeleteBlockInputs, type HttpGetBlock, type HttpGetBlockInputs, type HttpPatchBlock, type HttpPostBlock, type HttpPostBlockInputs, type HttpPutBlock, type HttpPutBlockInputs, type HttpsPatchBlockInputs, type IfBlock, JUHUU, type JsonLogic, Juhuu, type LanguageCode, LanguageCodeArray, Layout, type LayoutBlock, type License, type LicenseTariffIdMap, type LinkType, type LocaleString, type LocationRetrieveBlock, type LocationRetrieveBlockInputs, type LocationUpdateBlock, type LocationUpdateBlockInputs, type MapDestructureBlock, type MapDestructureBlockInputs, type MapFilter, type MathAddBlock, type MathAddBlockInputs, type MathDivideBlock, type MathDivideBlockInputs, type MathMultiplyBlock, type MathMultiplyBlockInputs, type MathSubtractBlock, type MathSubtractBlockInputs, type Modality, type MqttSendBlock, type MqttSendBlockInputs, type Offer, type OfferTime, type ParamDefinition, type ParamType, type ParameterRetrieveBlock, type ParameterRetrieveBlockInputs, type ParameterUpdateBlock, type ParameterUpdateBlockInputs, type Party, type PaymentMethod, type PaymentReason, type PaymentRefundReason, type PaymentRefundStatus, type PaymentServiceProvider, type PaymentStatus, type PayoutSettings, type PayoutStatus, type PermissionTypes, type Person, type Platform, type PlatformString, type PostingRow, type PropertyRetrieveBlock, type PropertyRetrieveBlockInputs, type PropertyUpdateBlock, type PropertyUpdateBlockInputs, type Purpose, type PushToken, type QuickAction, ReadonlyCategoryArray, ReadonlyModalityArray, ReadonlySectorArray, type RefundStatus, type Sector, type SessionCannotTerminateReason, type SessionRetrieveBlock, type SessionRetrieveBlockInputs, type SessionSettings, type SessionStatus, type SessionTerminateBlock, type SessionTerminateBlockInputs, type SessionTerminatedByType, type SessionType, Settings, type SimStatus, type StarRating, type StartCustomBlock, type StartLocationUpdateBlock, type StartParameterUpdateBlock, type StartQuickActionLocationBlock, type StartSessionUpdateBlock, type TarifType, type TaxCode, type TimeZone, type Unit, type UserGroup, type UserRetrieveBlock, type UserRetrieveBlockInputs, type UserType, type Utilization, type VeloBrushDeviceDocumentUserManualStep, type Viewport, type ViewportPolygon, type VisualPriority, type hexColor };
4698
+ export { type AccessControlListElement, type Address, type ApiKeyScope, type ApiKeyStatus, type AutoRenewMode, type BaseBlock, type BusinessType, type Capability, type Category, type Circumstance, type Color, type ColorScheme, type Command, type Condition, ConditionType, type ConstBooleanBlock, type ConstNumberBlock, type ConstTextBlock, type ControlEdgeConnection, type CountryCode, CountryCodeArray, type CurrencyCode, CurrencyCodeArray, type CustomClaims, type DataEdgeConnection, type DeepNullable, type DevicePermission, type DeviceRetrieveBlock, type DeviceRetrieveBlockInputs, type DeviceStatus, type DeviceType, type DeviceUpdateBlock, type DeviceUpdateBlockInputs, type EndCustomBlock, type Environment, type EnvironmentSettings, type ExtractType, type FlowBlock, type FlowBlockInput, type FlowControlEdge, type FlowDataEdge, type FlowEdge, type FlowExecuteBlock, type FlowExecuteBlockInputs, type FlowExecutionEnvironment, type FlowLog, type FlowStatus, type Frontend, type GeneralSettings, type GeoPoint, type GraphNode, type HttpDeleteBlock, type HttpDeleteBlockInputs, type HttpGetBlock, type HttpGetBlockInputs, type HttpPatchBlock, type HttpPostBlock, type HttpPostBlockInputs, type HttpPutBlock, type HttpPutBlockInputs, type HttpsPatchBlockInputs, type IfBlock, JUHUU, type JsonLogic, Juhuu, type LanguageCode, LanguageCodeArray, Layout, type LayoutBlock, type License, type LicenseTariffIdMap, type LinkType, type LocaleString, type LocationRetrieveBlock, type LocationRetrieveBlockInputs, type LocationUpdateBlock, type LocationUpdateBlockInputs, type MapDestructureBlock, type MapDestructureBlockInputs, type MapFilter, type MathAddBlock, type MathAddBlockInputs, type MathDivideBlock, type MathDivideBlockInputs, type MathMultiplyBlock, type MathMultiplyBlockInputs, type MathSubtractBlock, type MathSubtractBlockInputs, type Modality, type MqttSendBlock, type MqttSendBlockInputs, type Offer, type OfferTime, type ParamDefinition, type ParamType, type ParameterRetrieveBlock, type ParameterRetrieveBlockInputs, type ParameterUpdateBlock, type ParameterUpdateBlockInputs, type Party, type PaymentMethod, type PaymentReason, type PaymentRefundReason, type PaymentRefundStatus, type PaymentServiceProvider, type PaymentStatus, type PayoutSettings, type PayoutStatus, type PermissionTypes, type Person, type Platform, type PlatformString, type PostingRow, type PropertyRetrieveBlock, type PropertyRetrieveBlockInputs, type PropertyUpdateBlock, type PropertyUpdateBlockInputs, type ProximityStrategy, type Purpose, type PushToken, type QuickAction, ReadonlyCategoryArray, ReadonlyModalityArray, ReadonlySectorArray, type RefundStatus, type Sector, type SessionCannotTerminateReason, type SessionRetrieveBlock, type SessionRetrieveBlockInputs, type SessionSettings, type SessionStatus, type SessionTerminateBlock, type SessionTerminateBlockInputs, type SessionTerminatedByType, type SessionType, Settings, type SimStatus, type StarRating, type StartCustomBlock, type StartLocationUpdateBlock, type StartParameterUpdateBlock, type StartQuickActionLocationBlock, type StartSessionUpdateBlock, type SwitchBlock, type TarifType, type TaxCode, type TimeZone, type Unit, type UserGroup, type UserRetrieveBlock, type UserRetrieveBlockInputs, type UserType, type Utilization, type VeloBrushDeviceDocumentUserManualStep, type Viewport, type ViewportPolygon, type VisualPriority, type hexColor };
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@juhuu/sdk-ts",
3
- "version": "1.2.238",
3
+ "version": "1.2.240",
4
4
  "description": "Typescript wrapper for JUHUU services",
5
5
  "main": "./dist/index.js",
6
6
  "module": "./dist/index.mjs",