@juhuu/sdk-ts 1.2.226 → 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";
559
- in: Record<string, never>;
560
- out: Record<string, never>;
561
- }
562
- interface TriggerCustomBlock extends BaseBlock {
563
- type: "trigger.custom";
547
+ interface StartCustomBlock extends BaseBlock {
548
+ type: "start.custom";
564
549
  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,11 +611,11 @@ 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;
614
619
  };
615
620
  data: {
616
621
  a: number | null;
@@ -621,53 +626,60 @@ interface MathAddBlockInputs {
621
626
  a: number;
622
627
  b: number;
623
628
  }
624
- interface FlowIfBlock extends BaseBlock {
625
- type: "flow.if";
626
- in: {
627
- condition: string;
628
- };
629
- out: {
630
- true: string;
631
- false: string;
629
+ interface MapDestructureBlock extends BaseBlock {
630
+ type: "map.destructure";
631
+ data: {
632
+ keys: string[];
632
633
  };
633
- }
634
- interface FlowSwitchBlock extends BaseBlock {
635
- type: "flow.switch";
636
634
  in: {
637
- key: string;
635
+ map: DataEdgeConnection;
638
636
  };
639
- out: Record<string, string>;
637
+ out: Record<string, DataEdgeConnection>;
640
638
  }
641
- interface UtilLogBlock extends BaseBlock {
642
- type: "util.log";
643
- in: Record<string, string>;
644
- out: Record<string, never>;
639
+ interface MapDestructureBlockInputs {
640
+ map: Record<string, string | number | boolean>;
641
+ keys: string[];
645
642
  }
646
- interface UtilEchoBlock extends BaseBlock {
647
- type: "util.echo";
648
- in: Record<string, string>;
649
- 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
+ };
650
650
  }
651
- interface HttpsPatchBlock extends BaseBlock {
652
- type: "https.patch";
651
+ interface HttpPatchBlock extends BaseBlock {
652
+ type: "http.patch";
653
653
  in: {
654
- url: string;
655
- body?: string;
656
- 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;
657
662
  };
658
663
  out: {
659
664
  status: string;
660
665
  data: string;
661
666
  };
662
667
  }
663
- interface EndBlock extends BaseBlock {
664
- type: "end";
665
- 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>;
666
676
  out: Record<string, never>;
667
- outputParamDefintionArray: ParamDefinition[];
677
+ data: {
678
+ outputParamDefintionArray: ParamDefinition[];
679
+ };
668
680
  }
669
- type FlowBlock = TriggerManualBlock | TriggerCustomBlock | TriggerQuickActionLocationBlock | ConstNumberBlock | ConstStringBlock | ConstBooleanBlock | MathAddBlock | FlowIfBlock | FlowSwitchBlock | UtilLogBlock | UtilEchoBlock | HttpsPatchBlock | EndBlock;
670
- 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>;
671
683
  interface FlowDataEdge {
672
684
  id: string;
673
685
  type: "data";
@@ -699,6 +711,18 @@ interface ParamDefinition {
699
711
  required: boolean;
700
712
  description: string | null;
701
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;
702
726
 
703
727
  declare class Service {
704
728
  constructor(config: JUHUU.SetupConfig);
@@ -4175,4 +4199,4 @@ declare namespace JUHUU {
4175
4199
  }
4176
4200
  }
4177
4201
 
4178
- 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";
559
- in: Record<string, never>;
560
- out: Record<string, never>;
561
- }
562
- interface TriggerCustomBlock extends BaseBlock {
563
- type: "trigger.custom";
547
+ interface StartCustomBlock extends BaseBlock {
548
+ type: "start.custom";
564
549
  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,11 +611,11 @@ 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;
614
619
  };
615
620
  data: {
616
621
  a: number | null;
@@ -621,53 +626,60 @@ interface MathAddBlockInputs {
621
626
  a: number;
622
627
  b: number;
623
628
  }
624
- interface FlowIfBlock extends BaseBlock {
625
- type: "flow.if";
626
- in: {
627
- condition: string;
628
- };
629
- out: {
630
- true: string;
631
- false: string;
629
+ interface MapDestructureBlock extends BaseBlock {
630
+ type: "map.destructure";
631
+ data: {
632
+ keys: string[];
632
633
  };
633
- }
634
- interface FlowSwitchBlock extends BaseBlock {
635
- type: "flow.switch";
636
634
  in: {
637
- key: string;
635
+ map: DataEdgeConnection;
638
636
  };
639
- out: Record<string, string>;
637
+ out: Record<string, DataEdgeConnection>;
640
638
  }
641
- interface UtilLogBlock extends BaseBlock {
642
- type: "util.log";
643
- in: Record<string, string>;
644
- out: Record<string, never>;
639
+ interface MapDestructureBlockInputs {
640
+ map: Record<string, string | number | boolean>;
641
+ keys: string[];
645
642
  }
646
- interface UtilEchoBlock extends BaseBlock {
647
- type: "util.echo";
648
- in: Record<string, string>;
649
- 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
+ };
650
650
  }
651
- interface HttpsPatchBlock extends BaseBlock {
652
- type: "https.patch";
651
+ interface HttpPatchBlock extends BaseBlock {
652
+ type: "http.patch";
653
653
  in: {
654
- url: string;
655
- body?: string;
656
- 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;
657
662
  };
658
663
  out: {
659
664
  status: string;
660
665
  data: string;
661
666
  };
662
667
  }
663
- interface EndBlock extends BaseBlock {
664
- type: "end";
665
- 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>;
666
676
  out: Record<string, never>;
667
- outputParamDefintionArray: ParamDefinition[];
677
+ data: {
678
+ outputParamDefintionArray: ParamDefinition[];
679
+ };
668
680
  }
669
- type FlowBlock = TriggerManualBlock | TriggerCustomBlock | TriggerQuickActionLocationBlock | ConstNumberBlock | ConstStringBlock | ConstBooleanBlock | MathAddBlock | FlowIfBlock | FlowSwitchBlock | UtilLogBlock | UtilEchoBlock | HttpsPatchBlock | EndBlock;
670
- 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>;
671
683
  interface FlowDataEdge {
672
684
  id: string;
673
685
  type: "data";
@@ -699,6 +711,18 @@ interface ParamDefinition {
699
711
  required: boolean;
700
712
  description: string | null;
701
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;
702
726
 
703
727
  declare class Service {
704
728
  constructor(config: JUHUU.SetupConfig);
@@ -4175,4 +4199,4 @@ declare namespace JUHUU {
4175
4199
  }
4176
4200
  }
4177
4201
 
4178
- 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.226",
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",