@juhuu/sdk-ts 1.2.225 → 1.2.227

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
@@ -15,16 +15,6 @@ type Frontend = "dashboard" | "app";
15
15
  type FlowExecutionEnvironment = "dashboard" | "app" | "backend";
16
16
  type ApiKeyStatus = "enabled" | "disabled";
17
17
  type FlowStatus = "error" | "ready";
18
- type FlowLog = {
19
- severity: "debug" | "info" | "warning" | "error";
20
- message: string;
21
- createdAt: Date;
22
- };
23
- type QuickAction = {
24
- icon: string | null;
25
- name: LocaleString;
26
- flowId: string;
27
- };
28
18
  type License = {
29
19
  type: "url";
30
20
  validUntil: Date | null;
@@ -554,40 +544,55 @@ interface LocaleString {
554
544
  interface BaseBlock {
555
545
  id: string;
556
546
  }
557
- interface TriggerManualBlock extends BaseBlock {
558
- type: "trigger.manual";
547
+ interface StartCustomBlock extends BaseBlock {
548
+ type: "start.custom";
559
549
  in: Record<string, never>;
560
- out: Record<string, never>;
561
- }
562
- interface TriggerCustomBlock extends BaseBlock {
563
- type: "trigger.custom";
564
- in: Record<string, never>;
565
- out: Record<string, string>;
566
- inputParamDefinitionArray: ParamDefinition[];
550
+ out: Record<string, DataEdgeConnection>;
551
+ data: {
552
+ inputParamDefinitionArray: ParamDefinition[];
553
+ };
567
554
  }
568
555
  interface TriggerQuickActionLocationBlock extends BaseBlock {
569
- type: "trigger.quickAction.location";
556
+ type: "start.quickAction.location";
570
557
  in: Record<string, never>;
571
558
  out: {
572
- locationId: string;
573
- propertyId: string;
559
+ locationId: DataEdgeConnection;
560
+ propertyId: DataEdgeConnection;
574
561
  };
575
562
  }
563
+ interface ParameterRetrieveBlock extends BaseBlock {
564
+ type: "parameter.retrieve";
565
+ in: {
566
+ parameterId: DataEdgeConnection;
567
+ deviceId: DataEdgeConnection;
568
+ };
569
+ out: {
570
+ parameter: DataEdgeConnection;
571
+ };
572
+ data: {
573
+ parameterId: string | null;
574
+ deviceId: string | null;
575
+ };
576
+ }
577
+ interface ParameterRetrieveBlockInputs {
578
+ parameterId: string;
579
+ deviceId: string | null;
580
+ }
576
581
  interface ConstNumberBlock extends BaseBlock {
577
582
  type: "const.number";
578
583
  in: Record<string, never>;
579
584
  out: {
580
- value: string;
585
+ value: DataEdgeConnection;
581
586
  };
582
587
  data: {
583
588
  value: number;
584
589
  };
585
590
  }
586
- interface ConstStringBlock extends BaseBlock {
587
- type: "const.string";
591
+ interface ConstTextBlock extends BaseBlock {
592
+ type: "const.text";
588
593
  in: Record<string, never>;
589
594
  out: {
590
- value: string;
595
+ value: DataEdgeConnection;
591
596
  };
592
597
  data: {
593
598
  value: string;
@@ -597,7 +602,7 @@ interface ConstBooleanBlock extends BaseBlock {
597
602
  type: "const.boolean";
598
603
  in: Record<string, never>;
599
604
  out: {
600
- value: string;
605
+ value: DataEdgeConnection;
601
606
  };
602
607
  data: {
603
608
  value: boolean;
@@ -606,64 +611,75 @@ interface ConstBooleanBlock extends BaseBlock {
606
611
  interface MathAddBlock extends BaseBlock {
607
612
  type: "math.add";
608
613
  in: {
609
- a: string;
610
- b: string;
614
+ a: DataEdgeConnection;
615
+ b: DataEdgeConnection;
611
616
  };
612
617
  out: {
613
- result: string;
618
+ result: DataEdgeConnection;
619
+ };
620
+ data: {
621
+ a: number | null;
622
+ b: number | null;
614
623
  };
615
624
  }
616
625
  interface MathAddBlockInputs {
617
626
  a: number;
618
627
  b: number;
619
628
  }
620
- interface FlowIfBlock extends BaseBlock {
621
- type: "flow.if";
622
- in: {
623
- condition: string;
624
- };
625
- out: {
626
- true: string;
627
- false: string;
629
+ interface MapDestructureBlock extends BaseBlock {
630
+ type: "map.destructure";
631
+ data: {
632
+ keys: string[];
628
633
  };
629
- }
630
- interface FlowSwitchBlock extends BaseBlock {
631
- type: "flow.switch";
632
634
  in: {
633
- key: string;
635
+ map: DataEdgeConnection;
634
636
  };
635
- out: Record<string, string>;
637
+ out: Record<string, DataEdgeConnection>;
636
638
  }
637
- interface UtilLogBlock extends BaseBlock {
638
- type: "util.log";
639
- in: Record<string, string>;
640
- out: Record<string, never>;
639
+ interface MapDestructureBlockInputs {
640
+ map: Record<string, string | number | boolean>;
641
+ keys: string[];
641
642
  }
642
- interface UtilEchoBlock extends BaseBlock {
643
- type: "util.echo";
644
- in: Record<string, string>;
645
- out: Record<string, string>;
643
+ interface IfBlock extends BaseBlock {
644
+ type: "control.if";
645
+ in: Record<string, never>;
646
+ out: Record<string, ControlEdgeConnection>;
647
+ data: {
648
+ condition: unknown;
649
+ };
646
650
  }
647
- interface HttpsPatchBlock extends BaseBlock {
648
- type: "https.patch";
651
+ interface HttpPatchBlock extends BaseBlock {
652
+ type: "http.patch";
649
653
  in: {
650
- url: string;
651
- body?: string;
652
- headers?: string;
654
+ url: DataEdgeConnection;
655
+ body: DataEdgeConnection;
656
+ headers: DataEdgeConnection;
657
+ };
658
+ data: {
659
+ url: string | null;
660
+ body: Record<string, string | number | boolean> | null;
661
+ headers: Record<string, string> | null;
653
662
  };
654
663
  out: {
655
664
  status: string;
656
665
  data: string;
657
666
  };
658
667
  }
659
- interface EndBlock extends BaseBlock {
660
- type: "end";
661
- in: Record<string, string>;
668
+ interface HttpsPatchBlockInputs {
669
+ url: string;
670
+ body: Record<string, string | number | boolean>;
671
+ headers: Record<string, string>;
672
+ }
673
+ interface EndCustomBlock extends BaseBlock {
674
+ type: "end.custom";
675
+ in: Record<string, DataEdgeConnection>;
662
676
  out: Record<string, never>;
663
- outputParamDefintionArray: ParamDefinition[];
677
+ data: {
678
+ outputParamDefintionArray: ParamDefinition[];
679
+ };
664
680
  }
665
- type FlowBlock = TriggerManualBlock | TriggerCustomBlock | TriggerQuickActionLocationBlock | ConstNumberBlock | ConstStringBlock | ConstBooleanBlock | MathAddBlock | FlowIfBlock | FlowSwitchBlock | UtilLogBlock | UtilEchoBlock | HttpsPatchBlock | EndBlock;
666
- type FlowBlockInput = MathAddBlockInputs | Record<string, unknown>;
681
+ type FlowBlock = StartCustomBlock | TriggerQuickActionLocationBlock | ConstNumberBlock | ConstTextBlock | ConstBooleanBlock | MathAddBlock | MapDestructureBlock | ParameterRetrieveBlock | IfBlock | HttpPatchBlock | EndCustomBlock;
682
+ type FlowBlockInput = MathAddBlockInputs | ParameterRetrieveBlockInputs | HttpsPatchBlockInputs | MapDestructureBlockInputs | Record<string, unknown>;
667
683
  interface FlowDataEdge {
668
684
  id: string;
669
685
  type: "data";
@@ -695,6 +711,18 @@ interface ParamDefinition {
695
711
  required: boolean;
696
712
  description: string | null;
697
713
  }
714
+ type FlowLog = {
715
+ severity: "debug" | "info" | "warning" | "error";
716
+ message: string;
717
+ createdAt: Date;
718
+ };
719
+ type QuickAction = {
720
+ icon: string | null;
721
+ name: LocaleString;
722
+ flowId: string;
723
+ };
724
+ type DataEdgeConnection = string | null;
725
+ type ControlEdgeConnection = string | null;
698
726
 
699
727
  declare class Service {
700
728
  constructor(config: JUHUU.SetupConfig);
@@ -4171,4 +4199,4 @@ declare namespace JUHUU {
4171
4199
  }
4172
4200
  }
4173
4201
 
4174
- 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 ConstStringBlock, type CountryCode, CountryCodeArray, type CurrencyCode, CurrencyCodeArray, type CustomClaims, type DeepNullable, type DevicePermission, type DeviceStatus, type DeviceType, type EndBlock, type Environment, type EnvironmentSettings, type ExtractType, type FlowBlock, type FlowBlockInput, type FlowControlEdge, type FlowDataEdge, type FlowEdge, type FlowExecutionEnvironment, type FlowIfBlock, type FlowLog, type FlowStatus, type FlowSwitchBlock, type Frontend, type GeneralSettings, type GeoPoint, type GraphNode, type HttpsPatchBlock, JUHUU, Juhuu, type LanguageCode, LanguageCodeArray, Layout, type LayoutBlock, type License, type LicenseTariffIdMap, type LinkType, type LocaleString, type MapFilter, type MathAddBlock, type MathAddBlockInputs, type Modality, type Offer, type OfferTime, type ParamDefinition, type ParamType, 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 TarifType, type TaxCode, type TimeZone, type TriggerCustomBlock, type TriggerManualBlock, type TriggerQuickActionLocationBlock, type Unit, type UserGroup, type UserType, type UtilEchoBlock, type UtilLogBlock, type Utilization, type VeloBrushDeviceDocumentUserManualStep, type Viewport, type ViewportPolygon, type VisualPriority, type hexColor };
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 };
package/dist/index.d.ts CHANGED
@@ -15,16 +15,6 @@ type Frontend = "dashboard" | "app";
15
15
  type FlowExecutionEnvironment = "dashboard" | "app" | "backend";
16
16
  type ApiKeyStatus = "enabled" | "disabled";
17
17
  type FlowStatus = "error" | "ready";
18
- type FlowLog = {
19
- severity: "debug" | "info" | "warning" | "error";
20
- message: string;
21
- createdAt: Date;
22
- };
23
- type QuickAction = {
24
- icon: string | null;
25
- name: LocaleString;
26
- flowId: string;
27
- };
28
18
  type License = {
29
19
  type: "url";
30
20
  validUntil: Date | null;
@@ -554,40 +544,55 @@ interface LocaleString {
554
544
  interface BaseBlock {
555
545
  id: string;
556
546
  }
557
- interface TriggerManualBlock extends BaseBlock {
558
- type: "trigger.manual";
547
+ interface StartCustomBlock extends BaseBlock {
548
+ type: "start.custom";
559
549
  in: Record<string, never>;
560
- out: Record<string, never>;
561
- }
562
- interface TriggerCustomBlock extends BaseBlock {
563
- type: "trigger.custom";
564
- in: Record<string, never>;
565
- out: Record<string, string>;
566
- inputParamDefinitionArray: ParamDefinition[];
550
+ out: Record<string, DataEdgeConnection>;
551
+ data: {
552
+ inputParamDefinitionArray: ParamDefinition[];
553
+ };
567
554
  }
568
555
  interface TriggerQuickActionLocationBlock extends BaseBlock {
569
- type: "trigger.quickAction.location";
556
+ type: "start.quickAction.location";
570
557
  in: Record<string, never>;
571
558
  out: {
572
- locationId: string;
573
- propertyId: string;
559
+ locationId: DataEdgeConnection;
560
+ propertyId: DataEdgeConnection;
574
561
  };
575
562
  }
563
+ interface ParameterRetrieveBlock extends BaseBlock {
564
+ type: "parameter.retrieve";
565
+ in: {
566
+ parameterId: DataEdgeConnection;
567
+ deviceId: DataEdgeConnection;
568
+ };
569
+ out: {
570
+ parameter: DataEdgeConnection;
571
+ };
572
+ data: {
573
+ parameterId: string | null;
574
+ deviceId: string | null;
575
+ };
576
+ }
577
+ interface ParameterRetrieveBlockInputs {
578
+ parameterId: string;
579
+ deviceId: string | null;
580
+ }
576
581
  interface ConstNumberBlock extends BaseBlock {
577
582
  type: "const.number";
578
583
  in: Record<string, never>;
579
584
  out: {
580
- value: string;
585
+ value: DataEdgeConnection;
581
586
  };
582
587
  data: {
583
588
  value: number;
584
589
  };
585
590
  }
586
- interface ConstStringBlock extends BaseBlock {
587
- type: "const.string";
591
+ interface ConstTextBlock extends BaseBlock {
592
+ type: "const.text";
588
593
  in: Record<string, never>;
589
594
  out: {
590
- value: string;
595
+ value: DataEdgeConnection;
591
596
  };
592
597
  data: {
593
598
  value: string;
@@ -597,7 +602,7 @@ interface ConstBooleanBlock extends BaseBlock {
597
602
  type: "const.boolean";
598
603
  in: Record<string, never>;
599
604
  out: {
600
- value: string;
605
+ value: DataEdgeConnection;
601
606
  };
602
607
  data: {
603
608
  value: boolean;
@@ -606,64 +611,75 @@ interface ConstBooleanBlock extends BaseBlock {
606
611
  interface MathAddBlock extends BaseBlock {
607
612
  type: "math.add";
608
613
  in: {
609
- a: string;
610
- b: string;
614
+ a: DataEdgeConnection;
615
+ b: DataEdgeConnection;
611
616
  };
612
617
  out: {
613
- result: string;
618
+ result: DataEdgeConnection;
619
+ };
620
+ data: {
621
+ a: number | null;
622
+ b: number | null;
614
623
  };
615
624
  }
616
625
  interface MathAddBlockInputs {
617
626
  a: number;
618
627
  b: number;
619
628
  }
620
- interface FlowIfBlock extends BaseBlock {
621
- type: "flow.if";
622
- in: {
623
- condition: string;
624
- };
625
- out: {
626
- true: string;
627
- false: string;
629
+ interface MapDestructureBlock extends BaseBlock {
630
+ type: "map.destructure";
631
+ data: {
632
+ keys: string[];
628
633
  };
629
- }
630
- interface FlowSwitchBlock extends BaseBlock {
631
- type: "flow.switch";
632
634
  in: {
633
- key: string;
635
+ map: DataEdgeConnection;
634
636
  };
635
- out: Record<string, string>;
637
+ out: Record<string, DataEdgeConnection>;
636
638
  }
637
- interface UtilLogBlock extends BaseBlock {
638
- type: "util.log";
639
- in: Record<string, string>;
640
- out: Record<string, never>;
639
+ interface MapDestructureBlockInputs {
640
+ map: Record<string, string | number | boolean>;
641
+ keys: string[];
641
642
  }
642
- interface UtilEchoBlock extends BaseBlock {
643
- type: "util.echo";
644
- in: Record<string, string>;
645
- out: Record<string, string>;
643
+ interface IfBlock extends BaseBlock {
644
+ type: "control.if";
645
+ in: Record<string, never>;
646
+ out: Record<string, ControlEdgeConnection>;
647
+ data: {
648
+ condition: unknown;
649
+ };
646
650
  }
647
- interface HttpsPatchBlock extends BaseBlock {
648
- type: "https.patch";
651
+ interface HttpPatchBlock extends BaseBlock {
652
+ type: "http.patch";
649
653
  in: {
650
- url: string;
651
- body?: string;
652
- headers?: string;
654
+ url: DataEdgeConnection;
655
+ body: DataEdgeConnection;
656
+ headers: DataEdgeConnection;
657
+ };
658
+ data: {
659
+ url: string | null;
660
+ body: Record<string, string | number | boolean> | null;
661
+ headers: Record<string, string> | null;
653
662
  };
654
663
  out: {
655
664
  status: string;
656
665
  data: string;
657
666
  };
658
667
  }
659
- interface EndBlock extends BaseBlock {
660
- type: "end";
661
- in: Record<string, string>;
668
+ interface HttpsPatchBlockInputs {
669
+ url: string;
670
+ body: Record<string, string | number | boolean>;
671
+ headers: Record<string, string>;
672
+ }
673
+ interface EndCustomBlock extends BaseBlock {
674
+ type: "end.custom";
675
+ in: Record<string, DataEdgeConnection>;
662
676
  out: Record<string, never>;
663
- outputParamDefintionArray: ParamDefinition[];
677
+ data: {
678
+ outputParamDefintionArray: ParamDefinition[];
679
+ };
664
680
  }
665
- type FlowBlock = TriggerManualBlock | TriggerCustomBlock | TriggerQuickActionLocationBlock | ConstNumberBlock | ConstStringBlock | ConstBooleanBlock | MathAddBlock | FlowIfBlock | FlowSwitchBlock | UtilLogBlock | UtilEchoBlock | HttpsPatchBlock | EndBlock;
666
- type FlowBlockInput = MathAddBlockInputs | Record<string, unknown>;
681
+ type FlowBlock = StartCustomBlock | TriggerQuickActionLocationBlock | ConstNumberBlock | ConstTextBlock | ConstBooleanBlock | MathAddBlock | MapDestructureBlock | ParameterRetrieveBlock | IfBlock | HttpPatchBlock | EndCustomBlock;
682
+ type FlowBlockInput = MathAddBlockInputs | ParameterRetrieveBlockInputs | HttpsPatchBlockInputs | MapDestructureBlockInputs | Record<string, unknown>;
667
683
  interface FlowDataEdge {
668
684
  id: string;
669
685
  type: "data";
@@ -695,6 +711,18 @@ interface ParamDefinition {
695
711
  required: boolean;
696
712
  description: string | null;
697
713
  }
714
+ type FlowLog = {
715
+ severity: "debug" | "info" | "warning" | "error";
716
+ message: string;
717
+ createdAt: Date;
718
+ };
719
+ type QuickAction = {
720
+ icon: string | null;
721
+ name: LocaleString;
722
+ flowId: string;
723
+ };
724
+ type DataEdgeConnection = string | null;
725
+ type ControlEdgeConnection = string | null;
698
726
 
699
727
  declare class Service {
700
728
  constructor(config: JUHUU.SetupConfig);
@@ -4171,4 +4199,4 @@ declare namespace JUHUU {
4171
4199
  }
4172
4200
  }
4173
4201
 
4174
- 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 ConstStringBlock, type CountryCode, CountryCodeArray, type CurrencyCode, CurrencyCodeArray, type CustomClaims, type DeepNullable, type DevicePermission, type DeviceStatus, type DeviceType, type EndBlock, type Environment, type EnvironmentSettings, type ExtractType, type FlowBlock, type FlowBlockInput, type FlowControlEdge, type FlowDataEdge, type FlowEdge, type FlowExecutionEnvironment, type FlowIfBlock, type FlowLog, type FlowStatus, type FlowSwitchBlock, type Frontend, type GeneralSettings, type GeoPoint, type GraphNode, type HttpsPatchBlock, JUHUU, Juhuu, type LanguageCode, LanguageCodeArray, Layout, type LayoutBlock, type License, type LicenseTariffIdMap, type LinkType, type LocaleString, type MapFilter, type MathAddBlock, type MathAddBlockInputs, type Modality, type Offer, type OfferTime, type ParamDefinition, type ParamType, 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 TarifType, type TaxCode, type TimeZone, type TriggerCustomBlock, type TriggerManualBlock, type TriggerQuickActionLocationBlock, type Unit, type UserGroup, type UserType, type UtilEchoBlock, type UtilLogBlock, type Utilization, type VeloBrushDeviceDocumentUserManualStep, type Viewport, type ViewportPolygon, type VisualPriority, type hexColor };
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 };
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@juhuu/sdk-ts",
3
- "version": "1.2.225",
3
+ "version": "1.2.227",
4
4
  "description": "Typescript wrapper for JUHUU services",
5
5
  "main": "./dist/index.js",
6
6
  "module": "./dist/index.mjs",