@juhuu/sdk-ts 1.2.227 → 1.2.228

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
@@ -552,7 +552,7 @@ interface StartCustomBlock extends BaseBlock {
552
552
  inputParamDefinitionArray: ParamDefinition[];
553
553
  };
554
554
  }
555
- interface TriggerQuickActionLocationBlock extends BaseBlock {
555
+ interface StartQuickActionLocationBlock extends BaseBlock {
556
556
  type: "start.quickAction.location";
557
557
  in: Record<string, never>;
558
558
  out: {
@@ -560,6 +560,22 @@ interface TriggerQuickActionLocationBlock extends BaseBlock {
560
560
  propertyId: DataEdgeConnection;
561
561
  };
562
562
  }
563
+ interface StartSessionUpdateBlock extends BaseBlock {
564
+ type: "start.session.update";
565
+ in: Record<string, never>;
566
+ out: {
567
+ beforeSession: string;
568
+ afterSession: string;
569
+ };
570
+ }
571
+ interface StartParameterUpdateBlock extends BaseBlock {
572
+ type: "start.parameter.update";
573
+ in: Record<string, never>;
574
+ out: {
575
+ beforeParameter: string;
576
+ afterParameter: string;
577
+ };
578
+ }
563
579
  interface ParameterRetrieveBlock extends BaseBlock {
564
580
  type: "parameter.retrieve";
565
581
  in: {
@@ -578,6 +594,27 @@ interface ParameterRetrieveBlockInputs {
578
594
  parameterId: string;
579
595
  deviceId: string | null;
580
596
  }
597
+ interface ParameterUpdateBlock extends BaseBlock {
598
+ type: "parameter.update";
599
+ in: {
600
+ parameterId: string;
601
+ deviceId: string | null;
602
+ currentValue: number | string | boolean;
603
+ };
604
+ out: {
605
+ parameter: string;
606
+ };
607
+ data: {
608
+ parameterId: string | null;
609
+ deviceId: string | null;
610
+ currentValue: number | string | boolean | null;
611
+ };
612
+ }
613
+ interface ParameterUpdateBlockInputs {
614
+ parameterId: string;
615
+ deviceId: string | null;
616
+ currentValue: number | string | boolean;
617
+ }
581
618
  interface ConstNumberBlock extends BaseBlock {
582
619
  type: "const.number";
583
620
  in: Record<string, never>;
@@ -670,6 +707,113 @@ interface HttpsPatchBlockInputs {
670
707
  body: Record<string, string | number | boolean>;
671
708
  headers: Record<string, string>;
672
709
  }
710
+ interface HttpGetBlock extends BaseBlock {
711
+ type: "http.get";
712
+ in: {
713
+ url: string;
714
+ headers: string | null;
715
+ };
716
+ out: {
717
+ status: string;
718
+ data: string;
719
+ };
720
+ data: {
721
+ url: string | null;
722
+ headers: Record<string, string> | null;
723
+ };
724
+ }
725
+ interface HttpGetBlockInputs {
726
+ url: string;
727
+ headers: Record<string, string>;
728
+ }
729
+ interface HttpPostBlock extends BaseBlock {
730
+ type: "http.post";
731
+ in: {
732
+ url: string;
733
+ body: string | null;
734
+ headers: string | null;
735
+ };
736
+ out: {
737
+ status: string;
738
+ data: string;
739
+ };
740
+ data: {
741
+ url: string | null;
742
+ body: Record<string, string | number | boolean> | null;
743
+ headers: Record<string, string> | null;
744
+ };
745
+ }
746
+ interface HttpPostBlockInputs {
747
+ url: string;
748
+ body: Record<string, string | number | boolean>;
749
+ headers: Record<string, string>;
750
+ }
751
+ interface HttpDeleteBlock extends BaseBlock {
752
+ type: "http.delete";
753
+ in: {
754
+ url: string;
755
+ headers: string | null;
756
+ };
757
+ out: {
758
+ status: string;
759
+ data: string;
760
+ };
761
+ data: {
762
+ url: string | null;
763
+ headers: Record<string, string> | null;
764
+ };
765
+ }
766
+ interface HttpDeleteBlockInputs {
767
+ url: string;
768
+ headers: Record<string, string>;
769
+ }
770
+ interface HttpPutBlock extends BaseBlock {
771
+ type: "http.put";
772
+ in: {
773
+ url: string;
774
+ body: string | null;
775
+ headers: string | null;
776
+ };
777
+ out: {
778
+ status: string;
779
+ data: string;
780
+ };
781
+ data: {
782
+ url: string | null;
783
+ body: Record<string, string | number | boolean> | null;
784
+ headers: Record<string, string> | null;
785
+ };
786
+ }
787
+ interface HttpPutBlockInputs {
788
+ url: string;
789
+ body: Record<string, string | number | boolean>;
790
+ headers: Record<string, string>;
791
+ }
792
+ interface MqttSendBlock extends BaseBlock {
793
+ type: "mqtt.send";
794
+ in: {
795
+ message: string;
796
+ topic: string;
797
+ username: string | null;
798
+ password: string | null;
799
+ connectUrl: string;
800
+ };
801
+ out: Record<string, never>;
802
+ data: {
803
+ message: string | null;
804
+ topic: string | null;
805
+ username: string | null;
806
+ password: string | null;
807
+ connectUrl: string | null;
808
+ };
809
+ }
810
+ interface MqttSendBlockInputs {
811
+ message: string;
812
+ topic: string;
813
+ username: string | null;
814
+ password: string | null;
815
+ connectUrl: string;
816
+ }
673
817
  interface EndCustomBlock extends BaseBlock {
674
818
  type: "end.custom";
675
819
  in: Record<string, DataEdgeConnection>;
@@ -678,8 +822,8 @@ interface EndCustomBlock extends BaseBlock {
678
822
  outputParamDefintionArray: ParamDefinition[];
679
823
  };
680
824
  }
681
- type FlowBlock = StartCustomBlock | TriggerQuickActionLocationBlock | ConstNumberBlock | ConstTextBlock | ConstBooleanBlock | MathAddBlock | MapDestructureBlock | ParameterRetrieveBlock | IfBlock | HttpPatchBlock | EndCustomBlock;
682
- type FlowBlockInput = MathAddBlockInputs | ParameterRetrieveBlockInputs | HttpsPatchBlockInputs | MapDestructureBlockInputs | Record<string, unknown>;
825
+ type FlowBlock = StartCustomBlock | StartQuickActionLocationBlock | StartSessionUpdateBlock | StartParameterUpdateBlock | ConstNumberBlock | ConstTextBlock | ConstBooleanBlock | MathAddBlock | MapDestructureBlock | ParameterRetrieveBlock | ParameterUpdateBlock | IfBlock | HttpPatchBlock | HttpGetBlock | HttpPostBlock | HttpDeleteBlock | HttpPutBlock | MqttSendBlock | HttpPatchBlock | EndCustomBlock;
826
+ type FlowBlockInput = MathAddBlockInputs | ParameterRetrieveBlockInputs | ParameterUpdateBlockInputs | HttpsPatchBlockInputs | HttpGetBlockInputs | HttpPostBlockInputs | HttpDeleteBlockInputs | HttpPutBlockInputs | MqttSendBlockInputs | MapDestructureBlockInputs | Record<string, unknown>;
683
827
  interface FlowDataEdge {
684
828
  id: string;
685
829
  type: "data";
@@ -716,13 +860,13 @@ type FlowLog = {
716
860
  message: string;
717
861
  createdAt: Date;
718
862
  };
863
+ type DataEdgeConnection = string | null;
864
+ type ControlEdgeConnection = string | null;
719
865
  type QuickAction = {
720
866
  icon: string | null;
721
867
  name: LocaleString;
722
868
  flowId: string;
723
869
  };
724
- type DataEdgeConnection = string | null;
725
- type ControlEdgeConnection = string | null;
726
870
 
727
871
  declare class Service {
728
872
  constructor(config: JUHUU.SetupConfig);
@@ -4199,4 +4343,4 @@ declare namespace JUHUU {
4199
4343
  }
4200
4344
  }
4201
4345
 
4202
- 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 DeviceStatus, type DeviceType, 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 HttpPatchBlock, type HttpsPatchBlockInputs, type IfBlock, JUHUU, Juhuu, type LanguageCode, LanguageCodeArray, Layout, type LayoutBlock, type License, type LicenseTariffIdMap, type LinkType, type LocaleString, type MapDestructureBlock, type MapDestructureBlockInputs, type MapFilter, type MathAddBlock, type MathAddBlockInputs, type Modality, type Offer, type OfferTime, type ParamDefinition, type ParamType, type ParameterRetrieveBlock, type ParameterRetrieveBlockInputs, 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 Purpose, type PushToken, type QuickAction, ReadonlyCategoryArray, ReadonlyModalityArray, ReadonlySectorArray, type RefundStatus, type Sector, type SessionCannotTerminateReason, type SessionSettings, type SessionStatus, type SessionTerminatedByType, type SessionType, Settings, type SimStatus, type StarRating, type StartCustomBlock, type TarifType, type TaxCode, type TimeZone, type TriggerQuickActionLocationBlock, type Unit, type UserGroup, type UserType, type Utilization, type VeloBrushDeviceDocumentUserManualStep, type Viewport, type ViewportPolygon, type VisualPriority, type hexColor };
4346
+ 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 DeviceStatus, type DeviceType, 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, Juhuu, type LanguageCode, LanguageCodeArray, Layout, type LayoutBlock, type License, type LicenseTariffIdMap, type LinkType, type LocaleString, type MapDestructureBlock, type MapDestructureBlockInputs, type MapFilter, type MathAddBlock, type MathAddBlockInputs, 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 Purpose, type PushToken, type QuickAction, ReadonlyCategoryArray, ReadonlyModalityArray, ReadonlySectorArray, type RefundStatus, type Sector, type SessionCannotTerminateReason, type SessionSettings, type SessionStatus, type SessionTerminatedByType, type SessionType, Settings, type SimStatus, type StarRating, type StartCustomBlock, type StartParameterUpdateBlock, type StartQuickActionLocationBlock, type StartSessionUpdateBlock, type TarifType, type TaxCode, type TimeZone, type Unit, type UserGroup, type UserType, type Utilization, type VeloBrushDeviceDocumentUserManualStep, type Viewport, type ViewportPolygon, type VisualPriority, type hexColor };
package/dist/index.d.ts CHANGED
@@ -552,7 +552,7 @@ interface StartCustomBlock extends BaseBlock {
552
552
  inputParamDefinitionArray: ParamDefinition[];
553
553
  };
554
554
  }
555
- interface TriggerQuickActionLocationBlock extends BaseBlock {
555
+ interface StartQuickActionLocationBlock extends BaseBlock {
556
556
  type: "start.quickAction.location";
557
557
  in: Record<string, never>;
558
558
  out: {
@@ -560,6 +560,22 @@ interface TriggerQuickActionLocationBlock extends BaseBlock {
560
560
  propertyId: DataEdgeConnection;
561
561
  };
562
562
  }
563
+ interface StartSessionUpdateBlock extends BaseBlock {
564
+ type: "start.session.update";
565
+ in: Record<string, never>;
566
+ out: {
567
+ beforeSession: string;
568
+ afterSession: string;
569
+ };
570
+ }
571
+ interface StartParameterUpdateBlock extends BaseBlock {
572
+ type: "start.parameter.update";
573
+ in: Record<string, never>;
574
+ out: {
575
+ beforeParameter: string;
576
+ afterParameter: string;
577
+ };
578
+ }
563
579
  interface ParameterRetrieveBlock extends BaseBlock {
564
580
  type: "parameter.retrieve";
565
581
  in: {
@@ -578,6 +594,27 @@ interface ParameterRetrieveBlockInputs {
578
594
  parameterId: string;
579
595
  deviceId: string | null;
580
596
  }
597
+ interface ParameterUpdateBlock extends BaseBlock {
598
+ type: "parameter.update";
599
+ in: {
600
+ parameterId: string;
601
+ deviceId: string | null;
602
+ currentValue: number | string | boolean;
603
+ };
604
+ out: {
605
+ parameter: string;
606
+ };
607
+ data: {
608
+ parameterId: string | null;
609
+ deviceId: string | null;
610
+ currentValue: number | string | boolean | null;
611
+ };
612
+ }
613
+ interface ParameterUpdateBlockInputs {
614
+ parameterId: string;
615
+ deviceId: string | null;
616
+ currentValue: number | string | boolean;
617
+ }
581
618
  interface ConstNumberBlock extends BaseBlock {
582
619
  type: "const.number";
583
620
  in: Record<string, never>;
@@ -670,6 +707,113 @@ interface HttpsPatchBlockInputs {
670
707
  body: Record<string, string | number | boolean>;
671
708
  headers: Record<string, string>;
672
709
  }
710
+ interface HttpGetBlock extends BaseBlock {
711
+ type: "http.get";
712
+ in: {
713
+ url: string;
714
+ headers: string | null;
715
+ };
716
+ out: {
717
+ status: string;
718
+ data: string;
719
+ };
720
+ data: {
721
+ url: string | null;
722
+ headers: Record<string, string> | null;
723
+ };
724
+ }
725
+ interface HttpGetBlockInputs {
726
+ url: string;
727
+ headers: Record<string, string>;
728
+ }
729
+ interface HttpPostBlock extends BaseBlock {
730
+ type: "http.post";
731
+ in: {
732
+ url: string;
733
+ body: string | null;
734
+ headers: string | null;
735
+ };
736
+ out: {
737
+ status: string;
738
+ data: string;
739
+ };
740
+ data: {
741
+ url: string | null;
742
+ body: Record<string, string | number | boolean> | null;
743
+ headers: Record<string, string> | null;
744
+ };
745
+ }
746
+ interface HttpPostBlockInputs {
747
+ url: string;
748
+ body: Record<string, string | number | boolean>;
749
+ headers: Record<string, string>;
750
+ }
751
+ interface HttpDeleteBlock extends BaseBlock {
752
+ type: "http.delete";
753
+ in: {
754
+ url: string;
755
+ headers: string | null;
756
+ };
757
+ out: {
758
+ status: string;
759
+ data: string;
760
+ };
761
+ data: {
762
+ url: string | null;
763
+ headers: Record<string, string> | null;
764
+ };
765
+ }
766
+ interface HttpDeleteBlockInputs {
767
+ url: string;
768
+ headers: Record<string, string>;
769
+ }
770
+ interface HttpPutBlock extends BaseBlock {
771
+ type: "http.put";
772
+ in: {
773
+ url: string;
774
+ body: string | null;
775
+ headers: string | null;
776
+ };
777
+ out: {
778
+ status: string;
779
+ data: string;
780
+ };
781
+ data: {
782
+ url: string | null;
783
+ body: Record<string, string | number | boolean> | null;
784
+ headers: Record<string, string> | null;
785
+ };
786
+ }
787
+ interface HttpPutBlockInputs {
788
+ url: string;
789
+ body: Record<string, string | number | boolean>;
790
+ headers: Record<string, string>;
791
+ }
792
+ interface MqttSendBlock extends BaseBlock {
793
+ type: "mqtt.send";
794
+ in: {
795
+ message: string;
796
+ topic: string;
797
+ username: string | null;
798
+ password: string | null;
799
+ connectUrl: string;
800
+ };
801
+ out: Record<string, never>;
802
+ data: {
803
+ message: string | null;
804
+ topic: string | null;
805
+ username: string | null;
806
+ password: string | null;
807
+ connectUrl: string | null;
808
+ };
809
+ }
810
+ interface MqttSendBlockInputs {
811
+ message: string;
812
+ topic: string;
813
+ username: string | null;
814
+ password: string | null;
815
+ connectUrl: string;
816
+ }
673
817
  interface EndCustomBlock extends BaseBlock {
674
818
  type: "end.custom";
675
819
  in: Record<string, DataEdgeConnection>;
@@ -678,8 +822,8 @@ interface EndCustomBlock extends BaseBlock {
678
822
  outputParamDefintionArray: ParamDefinition[];
679
823
  };
680
824
  }
681
- type FlowBlock = StartCustomBlock | TriggerQuickActionLocationBlock | ConstNumberBlock | ConstTextBlock | ConstBooleanBlock | MathAddBlock | MapDestructureBlock | ParameterRetrieveBlock | IfBlock | HttpPatchBlock | EndCustomBlock;
682
- type FlowBlockInput = MathAddBlockInputs | ParameterRetrieveBlockInputs | HttpsPatchBlockInputs | MapDestructureBlockInputs | Record<string, unknown>;
825
+ type FlowBlock = StartCustomBlock | StartQuickActionLocationBlock | StartSessionUpdateBlock | StartParameterUpdateBlock | ConstNumberBlock | ConstTextBlock | ConstBooleanBlock | MathAddBlock | MapDestructureBlock | ParameterRetrieveBlock | ParameterUpdateBlock | IfBlock | HttpPatchBlock | HttpGetBlock | HttpPostBlock | HttpDeleteBlock | HttpPutBlock | MqttSendBlock | HttpPatchBlock | EndCustomBlock;
826
+ type FlowBlockInput = MathAddBlockInputs | ParameterRetrieveBlockInputs | ParameterUpdateBlockInputs | HttpsPatchBlockInputs | HttpGetBlockInputs | HttpPostBlockInputs | HttpDeleteBlockInputs | HttpPutBlockInputs | MqttSendBlockInputs | MapDestructureBlockInputs | Record<string, unknown>;
683
827
  interface FlowDataEdge {
684
828
  id: string;
685
829
  type: "data";
@@ -716,13 +860,13 @@ type FlowLog = {
716
860
  message: string;
717
861
  createdAt: Date;
718
862
  };
863
+ type DataEdgeConnection = string | null;
864
+ type ControlEdgeConnection = string | null;
719
865
  type QuickAction = {
720
866
  icon: string | null;
721
867
  name: LocaleString;
722
868
  flowId: string;
723
869
  };
724
- type DataEdgeConnection = string | null;
725
- type ControlEdgeConnection = string | null;
726
870
 
727
871
  declare class Service {
728
872
  constructor(config: JUHUU.SetupConfig);
@@ -4199,4 +4343,4 @@ declare namespace JUHUU {
4199
4343
  }
4200
4344
  }
4201
4345
 
4202
- 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 DeviceStatus, type DeviceType, 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 HttpPatchBlock, type HttpsPatchBlockInputs, type IfBlock, JUHUU, Juhuu, type LanguageCode, LanguageCodeArray, Layout, type LayoutBlock, type License, type LicenseTariffIdMap, type LinkType, type LocaleString, type MapDestructureBlock, type MapDestructureBlockInputs, type MapFilter, type MathAddBlock, type MathAddBlockInputs, type Modality, type Offer, type OfferTime, type ParamDefinition, type ParamType, type ParameterRetrieveBlock, type ParameterRetrieveBlockInputs, 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 Purpose, type PushToken, type QuickAction, ReadonlyCategoryArray, ReadonlyModalityArray, ReadonlySectorArray, type RefundStatus, type Sector, type SessionCannotTerminateReason, type SessionSettings, type SessionStatus, type SessionTerminatedByType, type SessionType, Settings, type SimStatus, type StarRating, type StartCustomBlock, type TarifType, type TaxCode, type TimeZone, type TriggerQuickActionLocationBlock, type Unit, type UserGroup, type UserType, type Utilization, type VeloBrushDeviceDocumentUserManualStep, type Viewport, type ViewportPolygon, type VisualPriority, type hexColor };
4346
+ 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 DeviceStatus, type DeviceType, 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, Juhuu, type LanguageCode, LanguageCodeArray, Layout, type LayoutBlock, type License, type LicenseTariffIdMap, type LinkType, type LocaleString, type MapDestructureBlock, type MapDestructureBlockInputs, type MapFilter, type MathAddBlock, type MathAddBlockInputs, 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 Purpose, type PushToken, type QuickAction, ReadonlyCategoryArray, ReadonlyModalityArray, ReadonlySectorArray, type RefundStatus, type Sector, type SessionCannotTerminateReason, type SessionSettings, type SessionStatus, type SessionTerminatedByType, type SessionType, Settings, type SimStatus, type StarRating, type StartCustomBlock, type StartParameterUpdateBlock, type StartQuickActionLocationBlock, type StartSessionUpdateBlock, type TarifType, type TaxCode, type TimeZone, type Unit, type UserGroup, 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.227",
3
+ "version": "1.2.228",
4
4
  "description": "Typescript wrapper for JUHUU services",
5
5
  "main": "./dist/index.js",
6
6
  "module": "./dist/index.mjs",