@juhuu/sdk-ts 1.2.319 → 1.2.321

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
@@ -285,6 +285,87 @@ declare const TimeZoneArray: readonly ["Europe/Andorra", "Asia/Dubai", "Asia/Kab
285
285
  type TimeZone = (typeof TimeZoneArray)[number];
286
286
  type StarRating = 1 | 2 | 3 | 4 | 5;
287
287
  type Unit = "meter" | "centimeter" | "millimeter" | "kilogram" | "gram" | "milligram" | "liter" | "milliliter" | "percent" | "volt" | "watt" | "ampere" | "joule" | "hertz" | "kelvin" | "celsius" | "fahrenheit" | "byte" | "bit" | "second" | "minute" | "hour" | "day" | "week" | "month" | "year";
288
+ interface PlotData {
289
+ volume: {
290
+ series: Array<{
291
+ groupId: string;
292
+ isOutlier: boolean;
293
+ points: Array<{
294
+ timestamp: string;
295
+ value: number;
296
+ isOutlier: boolean;
297
+ }>;
298
+ }>;
299
+ };
300
+ violin: {
301
+ features: Array<{
302
+ featureName: string;
303
+ outlierGroups: Array<{
304
+ groupId: string;
305
+ values: number[];
306
+ }>;
307
+ normalGroups: Array<{
308
+ groupId: string;
309
+ values: number[];
310
+ }>;
311
+ }>;
312
+ };
313
+ std: {
314
+ series: Array<{
315
+ groupId: string;
316
+ isOutlier: boolean;
317
+ points: Array<{
318
+ period: string;
319
+ stdDev: number;
320
+ }>;
321
+ }>;
322
+ };
323
+ heatmap: {
324
+ data: number[][];
325
+ xLabels: string[];
326
+ yLabels: string[];
327
+ title: string;
328
+ };
329
+ boxPlot: {
330
+ boxes: Array<{
331
+ groupId: string;
332
+ isOutlier: boolean;
333
+ min: number;
334
+ q1: number;
335
+ median: number;
336
+ q3: number;
337
+ max: number;
338
+ outliers: number[];
339
+ }>;
340
+ };
341
+ shapValues: {
342
+ groups: Array<{
343
+ groupId: string;
344
+ isOutlier: boolean;
345
+ features: Array<{
346
+ featureName: string;
347
+ slope: number;
348
+ maxDrop: number;
349
+ derivative: number;
350
+ }>;
351
+ }>;
352
+ };
353
+ scatter: {
354
+ points: Array<{
355
+ groupId: string;
356
+ isOutlier: boolean;
357
+ degradationScore: number;
358
+ zScore: number;
359
+ }>;
360
+ };
361
+ featureImportance: {
362
+ features: Array<{
363
+ featureName: string;
364
+ importance: number;
365
+ outlierCount: number;
366
+ }>;
367
+ };
368
+ }
288
369
  type AccessControlListElement = {
289
370
  topic: string;
290
371
  acc: number;
@@ -4700,6 +4781,7 @@ declare namespace JUHUU {
4700
4781
  lastUpdatedAt: Date | null;
4701
4782
  createdAt: Date | null;
4702
4783
  reference: string | null;
4784
+ history: boolean;
4703
4785
  };
4704
4786
  export interface Text extends Base {
4705
4787
  type: "text";
@@ -4709,6 +4791,8 @@ declare namespace JUHUU {
4709
4791
  type: "number";
4710
4792
  unit: Unit | null;
4711
4793
  currentValue: number;
4794
+ min: number | null;
4795
+ max: number | null;
4712
4796
  }
4713
4797
  export interface Enum extends Base {
4714
4798
  type: "enum";
@@ -4967,10 +5051,63 @@ declare namespace JUHUU {
4967
5051
  };
4968
5052
  }
4969
5053
  }
5054
+ namespace ParameterAnomalyGroupTrackerTrace {
5055
+ type Object = {
5056
+ id: string;
5057
+ readonly object: "parameterAnomalyGroupTrackerTrace";
5058
+ parameterAnomalyGroupTrackerId: string;
5059
+ propertyId: string;
5060
+ plotData: PlotData;
5061
+ metadata: {
5062
+ totalGroups: number;
5063
+ outlierGroups: number;
5064
+ normalGroups: number;
5065
+ featuresAnalyzed: number;
5066
+ detectionMethod: string;
5067
+ executionTimeMs: number;
5068
+ };
5069
+ executedAt: Date;
5070
+ };
5071
+ namespace Retrieve {
5072
+ type Params = {
5073
+ parameterAnomalyGroupTrackerTraceId: string;
5074
+ };
5075
+ type Options = {
5076
+ expand?: Array<"property">;
5077
+ } & JUHUU.RequestOptions;
5078
+ type Response = {
5079
+ parameterAnomalyGroupTrackerTrace: JUHUU.ParameterAnomalyGroupTrackerTrace.Object;
5080
+ };
5081
+ }
5082
+ namespace List {
5083
+ type Params = {
5084
+ propertyId?: string;
5085
+ parameterAnomalyGroupTrackerId?: string;
5086
+ };
5087
+ type Options = {
5088
+ skip?: number;
5089
+ limit?: number;
5090
+ } & JUHUU.RequestOptions;
5091
+ type Response = {
5092
+ parameterAnomalyGroupTrackerTraceArray: JUHUU.ParameterAnomalyGroupTrackerTrace.Object[];
5093
+ count: number;
5094
+ hasMore: boolean;
5095
+ };
5096
+ }
5097
+ namespace Delete {
5098
+ type Params = {
5099
+ parameterAnomalyGroupTrackerTraceId: string;
5100
+ };
5101
+ type Options = JUHUU.RequestOptions;
5102
+ type Response = {
5103
+ parameterAnomalyGroupTrackerTrace: JUHUU.ParameterAnomalyGroupTrackerTrace.Object;
5104
+ };
5105
+ }
5106
+ }
4970
5107
  namespace ParameterHistory {
4971
5108
  type Base = {
4972
5109
  id: string;
4973
- readonly object: "parameter";
5110
+ readonly object: "parameterHistory";
4974
5111
  description: string | null;
4975
5112
  name: string | null;
4976
5113
  propertyId: string;
@@ -6857,4 +6994,4 @@ declare namespace JUHUU {
6857
6994
  }
6858
6995
  }
6859
6996
 
6860
- export { type AccessControlListElement, type AdditionalSubscriptionItem, type Address, type ApiKeyScope, type ApiKeyStatus, type AppStatus, type ArrayGetBlock, type ArrayGetBlockInputs, type ArrayLengthBlock, type ArrayLengthBlockInputs, type AutoRenewMode, type BaseBlock, type BenefitCardCopyBlock, type BenefitCardCopyBlockInputs, type BenefitCardListBlock, type BenefitCardListBlockInputs, type BenefitCardRetrieveBlock, type BenefitCardRetrieveBlockInputs, type BenefitCardUpdateBlock, type BenefitCardUpdateBlockInputs, type BlockExecutor, 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, type IncidentCreateBlock, type IncidentCreateBlockInputs, type IncidentRetrieveBlock, type IncidentRetrieveBlockInputs, JUHUU, type JsonLogic, Juhuu, type KitStatus, type LanguageCode, LanguageCodeArray, Layout, type LayoutBlock, type License, type LicenseTariffIdMap, type LinkType, type LocaleString, type LocationRetrieveBlock, type LocationRetrieveBlockInputs, type LocationUpdateBlock, type LocationUpdateBlockInputs, type MapConstructBlock, type MapConstructBlockInputs, 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, Offer, type OfferTime, type PanelDisplay, 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 PropertyAgreement, type PropertyRetrieveBlock, type PropertyRetrieveBlockInputs, type PropertyUpdateBlock, type PropertyUpdateBlockInputs, type ProximityStrategy, type Purpose, type QuickAction, type QuickView, 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 SystemLogBlock, type SystemLogBlockInputs, type TarifType, type TaxCode, type TextMatchBlock, type TextMatchBlockInputs, type TextTemplateBlock, type TextTemplateBlockInputs, type TimeZone, type UiNavigateScreenBlock, type UiNavigateScreenBlockInputs, type Unit, type UserCreateBlock, type UserCreateBlockInputs, type UserGroup, type UserRetrieveBlock, type UserRetrieveBlockInputs, type UserType, type Utilization, type VariableGetBlock, type VariableGetBlockInputs, type VariableSetBlock, type VariableSetBlockInputs, type VeloBrushDeviceDocumentUserManualStep, type Viewport, type ViewportPolygon, type VisualPriority, type hexColor };
6997
+ export { type AccessControlListElement, type AdditionalSubscriptionItem, type Address, type ApiKeyScope, type ApiKeyStatus, type AppStatus, type ArrayGetBlock, type ArrayGetBlockInputs, type ArrayLengthBlock, type ArrayLengthBlockInputs, type AutoRenewMode, type BaseBlock, type BenefitCardCopyBlock, type BenefitCardCopyBlockInputs, type BenefitCardListBlock, type BenefitCardListBlockInputs, type BenefitCardRetrieveBlock, type BenefitCardRetrieveBlockInputs, type BenefitCardUpdateBlock, type BenefitCardUpdateBlockInputs, type BlockExecutor, 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, type IncidentCreateBlock, type IncidentCreateBlockInputs, type IncidentRetrieveBlock, type IncidentRetrieveBlockInputs, JUHUU, type JsonLogic, Juhuu, type KitStatus, type LanguageCode, LanguageCodeArray, Layout, type LayoutBlock, type License, type LicenseTariffIdMap, type LinkType, type LocaleString, type LocationRetrieveBlock, type LocationRetrieveBlockInputs, type LocationUpdateBlock, type LocationUpdateBlockInputs, type MapConstructBlock, type MapConstructBlockInputs, 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, Offer, type OfferTime, type PanelDisplay, 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 PlotData, type PostingRow, type PropertyAgreement, type PropertyRetrieveBlock, type PropertyRetrieveBlockInputs, type PropertyUpdateBlock, type PropertyUpdateBlockInputs, type ProximityStrategy, type Purpose, type QuickAction, type QuickView, 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 SystemLogBlock, type SystemLogBlockInputs, type TarifType, type TaxCode, type TextMatchBlock, type TextMatchBlockInputs, type TextTemplateBlock, type TextTemplateBlockInputs, type TimeZone, type UiNavigateScreenBlock, type UiNavigateScreenBlockInputs, type Unit, type UserCreateBlock, type UserCreateBlockInputs, type UserGroup, type UserRetrieveBlock, type UserRetrieveBlockInputs, type UserType, type Utilization, type VariableGetBlock, type VariableGetBlockInputs, type VariableSetBlock, type VariableSetBlockInputs, type VeloBrushDeviceDocumentUserManualStep, type Viewport, type ViewportPolygon, type VisualPriority, type hexColor };
package/dist/index.d.ts CHANGED
@@ -285,6 +285,87 @@ declare const TimeZoneArray: readonly ["Europe/Andorra", "Asia/Dubai", "Asia/Kab
285
285
  type TimeZone = (typeof TimeZoneArray)[number];
286
286
  type StarRating = 1 | 2 | 3 | 4 | 5;
287
287
  type Unit = "meter" | "centimeter" | "millimeter" | "kilogram" | "gram" | "milligram" | "liter" | "milliliter" | "percent" | "volt" | "watt" | "ampere" | "joule" | "hertz" | "kelvin" | "celsius" | "fahrenheit" | "byte" | "bit" | "second" | "minute" | "hour" | "day" | "week" | "month" | "year";
288
+ interface PlotData {
289
+ volume: {
290
+ series: Array<{
291
+ groupId: string;
292
+ isOutlier: boolean;
293
+ points: Array<{
294
+ timestamp: string;
295
+ value: number;
296
+ isOutlier: boolean;
297
+ }>;
298
+ }>;
299
+ };
300
+ violin: {
301
+ features: Array<{
302
+ featureName: string;
303
+ outlierGroups: Array<{
304
+ groupId: string;
305
+ values: number[];
306
+ }>;
307
+ normalGroups: Array<{
308
+ groupId: string;
309
+ values: number[];
310
+ }>;
311
+ }>;
312
+ };
313
+ std: {
314
+ series: Array<{
315
+ groupId: string;
316
+ isOutlier: boolean;
317
+ points: Array<{
318
+ period: string;
319
+ stdDev: number;
320
+ }>;
321
+ }>;
322
+ };
323
+ heatmap: {
324
+ data: number[][];
325
+ xLabels: string[];
326
+ yLabels: string[];
327
+ title: string;
328
+ };
329
+ boxPlot: {
330
+ boxes: Array<{
331
+ groupId: string;
332
+ isOutlier: boolean;
333
+ min: number;
334
+ q1: number;
335
+ median: number;
336
+ q3: number;
337
+ max: number;
338
+ outliers: number[];
339
+ }>;
340
+ };
341
+ shapValues: {
342
+ groups: Array<{
343
+ groupId: string;
344
+ isOutlier: boolean;
345
+ features: Array<{
346
+ featureName: string;
347
+ slope: number;
348
+ maxDrop: number;
349
+ derivative: number;
350
+ }>;
351
+ }>;
352
+ };
353
+ scatter: {
354
+ points: Array<{
355
+ groupId: string;
356
+ isOutlier: boolean;
357
+ degradationScore: number;
358
+ zScore: number;
359
+ }>;
360
+ };
361
+ featureImportance: {
362
+ features: Array<{
363
+ featureName: string;
364
+ importance: number;
365
+ outlierCount: number;
366
+ }>;
367
+ };
368
+ }
288
369
  type AccessControlListElement = {
289
370
  topic: string;
290
371
  acc: number;
@@ -4700,6 +4781,7 @@ declare namespace JUHUU {
4700
4781
  lastUpdatedAt: Date | null;
4701
4782
  createdAt: Date | null;
4702
4783
  reference: string | null;
4784
+ history: boolean;
4703
4785
  };
4704
4786
  export interface Text extends Base {
4705
4787
  type: "text";
@@ -4709,6 +4791,8 @@ declare namespace JUHUU {
4709
4791
  type: "number";
4710
4792
  unit: Unit | null;
4711
4793
  currentValue: number;
4794
+ min: number | null;
4795
+ max: number | null;
4712
4796
  }
4713
4797
  export interface Enum extends Base {
4714
4798
  type: "enum";
@@ -4967,10 +5051,63 @@ declare namespace JUHUU {
4967
5051
  };
4968
5052
  }
4969
5053
  }
5054
+ namespace ParameterAnomalyGroupTrackerTrace {
5055
+ type Object = {
5056
+ id: string;
5057
+ readonly object: "parameterAnomalyGroupTrackerTrace";
5058
+ parameterAnomalyGroupTrackerId: string;
5059
+ propertyId: string;
5060
+ plotData: PlotData;
5061
+ metadata: {
5062
+ totalGroups: number;
5063
+ outlierGroups: number;
5064
+ normalGroups: number;
5065
+ featuresAnalyzed: number;
5066
+ detectionMethod: string;
5067
+ executionTimeMs: number;
5068
+ };
5069
+ executedAt: Date;
5070
+ };
5071
+ namespace Retrieve {
5072
+ type Params = {
5073
+ parameterAnomalyGroupTrackerTraceId: string;
5074
+ };
5075
+ type Options = {
5076
+ expand?: Array<"property">;
5077
+ } & JUHUU.RequestOptions;
5078
+ type Response = {
5079
+ parameterAnomalyGroupTrackerTrace: JUHUU.ParameterAnomalyGroupTrackerTrace.Object;
5080
+ };
5081
+ }
5082
+ namespace List {
5083
+ type Params = {
5084
+ propertyId?: string;
5085
+ parameterAnomalyGroupTrackerId?: string;
5086
+ };
5087
+ type Options = {
5088
+ skip?: number;
5089
+ limit?: number;
5090
+ } & JUHUU.RequestOptions;
5091
+ type Response = {
5092
+ parameterAnomalyGroupTrackerTraceArray: JUHUU.ParameterAnomalyGroupTrackerTrace.Object[];
5093
+ count: number;
5094
+ hasMore: boolean;
5095
+ };
5096
+ }
5097
+ namespace Delete {
5098
+ type Params = {
5099
+ parameterAnomalyGroupTrackerTraceId: string;
5100
+ };
5101
+ type Options = JUHUU.RequestOptions;
5102
+ type Response = {
5103
+ parameterAnomalyGroupTrackerTrace: JUHUU.ParameterAnomalyGroupTrackerTrace.Object;
5104
+ };
5105
+ }
5106
+ }
4970
5107
  namespace ParameterHistory {
4971
5108
  type Base = {
4972
5109
  id: string;
4973
- readonly object: "parameter";
5110
+ readonly object: "parameterHistory";
4974
5111
  description: string | null;
4975
5112
  name: string | null;
4976
5113
  propertyId: string;
@@ -6857,4 +6994,4 @@ declare namespace JUHUU {
6857
6994
  }
6858
6995
  }
6859
6996
 
6860
- export { type AccessControlListElement, type AdditionalSubscriptionItem, type Address, type ApiKeyScope, type ApiKeyStatus, type AppStatus, type ArrayGetBlock, type ArrayGetBlockInputs, type ArrayLengthBlock, type ArrayLengthBlockInputs, type AutoRenewMode, type BaseBlock, type BenefitCardCopyBlock, type BenefitCardCopyBlockInputs, type BenefitCardListBlock, type BenefitCardListBlockInputs, type BenefitCardRetrieveBlock, type BenefitCardRetrieveBlockInputs, type BenefitCardUpdateBlock, type BenefitCardUpdateBlockInputs, type BlockExecutor, 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, type IncidentCreateBlock, type IncidentCreateBlockInputs, type IncidentRetrieveBlock, type IncidentRetrieveBlockInputs, JUHUU, type JsonLogic, Juhuu, type KitStatus, type LanguageCode, LanguageCodeArray, Layout, type LayoutBlock, type License, type LicenseTariffIdMap, type LinkType, type LocaleString, type LocationRetrieveBlock, type LocationRetrieveBlockInputs, type LocationUpdateBlock, type LocationUpdateBlockInputs, type MapConstructBlock, type MapConstructBlockInputs, 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, Offer, type OfferTime, type PanelDisplay, 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 PropertyAgreement, type PropertyRetrieveBlock, type PropertyRetrieveBlockInputs, type PropertyUpdateBlock, type PropertyUpdateBlockInputs, type ProximityStrategy, type Purpose, type QuickAction, type QuickView, 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 SystemLogBlock, type SystemLogBlockInputs, type TarifType, type TaxCode, type TextMatchBlock, type TextMatchBlockInputs, type TextTemplateBlock, type TextTemplateBlockInputs, type TimeZone, type UiNavigateScreenBlock, type UiNavigateScreenBlockInputs, type Unit, type UserCreateBlock, type UserCreateBlockInputs, type UserGroup, type UserRetrieveBlock, type UserRetrieveBlockInputs, type UserType, type Utilization, type VariableGetBlock, type VariableGetBlockInputs, type VariableSetBlock, type VariableSetBlockInputs, type VeloBrushDeviceDocumentUserManualStep, type Viewport, type ViewportPolygon, type VisualPriority, type hexColor };
6997
+ export { type AccessControlListElement, type AdditionalSubscriptionItem, type Address, type ApiKeyScope, type ApiKeyStatus, type AppStatus, type ArrayGetBlock, type ArrayGetBlockInputs, type ArrayLengthBlock, type ArrayLengthBlockInputs, type AutoRenewMode, type BaseBlock, type BenefitCardCopyBlock, type BenefitCardCopyBlockInputs, type BenefitCardListBlock, type BenefitCardListBlockInputs, type BenefitCardRetrieveBlock, type BenefitCardRetrieveBlockInputs, type BenefitCardUpdateBlock, type BenefitCardUpdateBlockInputs, type BlockExecutor, 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, type IncidentCreateBlock, type IncidentCreateBlockInputs, type IncidentRetrieveBlock, type IncidentRetrieveBlockInputs, JUHUU, type JsonLogic, Juhuu, type KitStatus, type LanguageCode, LanguageCodeArray, Layout, type LayoutBlock, type License, type LicenseTariffIdMap, type LinkType, type LocaleString, type LocationRetrieveBlock, type LocationRetrieveBlockInputs, type LocationUpdateBlock, type LocationUpdateBlockInputs, type MapConstructBlock, type MapConstructBlockInputs, 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, Offer, type OfferTime, type PanelDisplay, 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 PlotData, type PostingRow, type PropertyAgreement, type PropertyRetrieveBlock, type PropertyRetrieveBlockInputs, type PropertyUpdateBlock, type PropertyUpdateBlockInputs, type ProximityStrategy, type Purpose, type QuickAction, type QuickView, 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 SystemLogBlock, type SystemLogBlockInputs, type TarifType, type TaxCode, type TextMatchBlock, type TextMatchBlockInputs, type TextTemplateBlock, type TextTemplateBlockInputs, type TimeZone, type UiNavigateScreenBlock, type UiNavigateScreenBlockInputs, type Unit, type UserCreateBlock, type UserCreateBlockInputs, type UserGroup, type UserRetrieveBlock, type UserRetrieveBlockInputs, type UserType, type Utilization, type VariableGetBlock, type VariableGetBlockInputs, type VariableSetBlock, type VariableSetBlockInputs, 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.319",
3
+ "version": "1.2.321",
4
4
  "description": "Typescript wrapper for JUHUU services",
5
5
  "main": "./dist/index.js",
6
6
  "module": "./dist/index.mjs",