@juhuu/sdk-ts 1.2.260 → 1.2.262

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
@@ -1305,6 +1305,13 @@ type QuickView = {
1305
1305
  icon: string | null;
1306
1306
  visibleCondition: Condition | null;
1307
1307
  };
1308
+ type LocalParameter = {
1309
+ id: string;
1310
+ name: string;
1311
+ value: any;
1312
+ type: string;
1313
+ };
1314
+ type PanelDisplay = "modal" | "dialog" | "screen";
1308
1315
 
1309
1316
  declare class Service {
1310
1317
  constructor(config: JUHUU.SetupConfig);
@@ -6195,67 +6202,25 @@ declare namespace JUHUU {
6195
6202
  }
6196
6203
  }
6197
6204
  namespace Panel {
6198
- type PanelType = "dashboard" | "widget" | "sidebar" | "modal" | "header" | "footer";
6199
- type PanelStatus = "active" | "inactive" | "hidden" | "archived";
6200
- type PanelSize = "small" | "medium" | "large" | "fullscreen";
6201
- type PanelPosition = {
6202
- x: number;
6203
- y: number;
6204
- width: number;
6205
- height: number;
6206
- zIndex: number;
6207
- };
6208
- type PanelConfig = {
6209
- theme: string | null;
6210
- colors: Record<string, string>;
6211
- layout: Record<string, any>;
6212
- settings: Record<string, any>;
6213
- dataSource: string | null;
6214
- refreshInterval: number | null;
6215
- };
6216
6205
  type Object = {
6217
6206
  id: string;
6207
+ version: number;
6218
6208
  readonly object: "panel";
6219
- userId: string;
6209
+ objectType: "dto";
6220
6210
  name: string;
6221
- title: string | null;
6222
- description: string | null;
6223
- type: PanelType;
6224
- status: PanelStatus;
6225
- size: PanelSize;
6226
- isResizable: boolean;
6227
- isDraggable: boolean;
6228
- isVisible: boolean;
6229
- position: PanelPosition;
6230
- config: PanelConfig;
6231
- createdAt: string;
6232
- updatedAt: string;
6233
- lastAccessedAt: string | null;
6234
- accessCount: number;
6235
- permissions: string[];
6236
- tags: string[];
6237
- parentPanelId: string | null;
6238
- order: number;
6211
+ propertyId: string;
6212
+ layoutBlockArray: LayoutBlock[];
6213
+ highlightLayoutBlockArray: LayoutBlock[];
6214
+ localParameterArray: LocalParameter[];
6215
+ display: PanelDisplay;
6239
6216
  };
6240
6217
  namespace Create {
6241
6218
  type Params = {
6242
- userId: string;
6243
- name: string;
6244
- title?: string | null;
6245
- description?: string | null;
6246
- type: PanelType;
6247
- status: PanelStatus;
6248
- size: PanelSize;
6249
- isResizable: boolean;
6250
- isDraggable: boolean;
6251
- isVisible: boolean;
6252
- position: PanelPosition;
6253
- config: PanelConfig;
6254
- accessCount?: number;
6255
- permissions: string[];
6256
- tags: string[];
6257
- parentPanelId?: string | null;
6258
- order: number;
6219
+ propertyId: string;
6220
+ name?: string;
6221
+ layoutBlockArray?: LayoutBlock[];
6222
+ highlightLayoutBlockArray?: LayoutBlock[];
6223
+ localParameterArray?: LocalParameter[];
6259
6224
  };
6260
6225
  type Options = JUHUU.RequestOptions;
6261
6226
  type Response = {
@@ -6273,13 +6238,7 @@ declare namespace JUHUU {
6273
6238
  }
6274
6239
  namespace List {
6275
6240
  type Params = {
6276
- userId?: string;
6277
- name?: string;
6278
- type?: PanelType;
6279
- status?: PanelStatus;
6280
- size?: PanelSize;
6281
- isVisible?: boolean;
6282
- parentPanelId?: string;
6241
+ propertyId?: string;
6283
6242
  };
6284
6243
  type Options = {
6285
6244
  limit?: number;
@@ -6287,29 +6246,15 @@ declare namespace JUHUU {
6287
6246
  } & JUHUU.RequestOptions;
6288
6247
  type Response = {
6289
6248
  panelArray: JUHUU.Panel.Object[];
6290
- count: number;
6291
- hasMore: boolean;
6292
6249
  };
6293
6250
  }
6294
6251
  namespace Update {
6295
6252
  type Params = {
6296
6253
  panelId: string;
6297
- userId?: string;
6298
6254
  name?: string;
6299
- title?: string | null;
6300
- description?: string | null;
6301
- type?: PanelType;
6302
- status?: PanelStatus;
6303
- size?: PanelSize;
6304
- isResizable?: boolean;
6305
- isDraggable?: boolean;
6306
- isVisible?: boolean;
6307
- position?: PanelPosition;
6308
- config?: PanelConfig;
6309
- permissions?: string[];
6310
- tags?: string[];
6311
- parentPanelId?: string | null;
6312
- order?: number;
6255
+ layoutBlockArray?: LayoutBlock[];
6256
+ highlightLayoutBlockArray?: LayoutBlock[];
6257
+ localParameterArray?: LocalParameter[];
6313
6258
  };
6314
6259
  type Options = JUHUU.RequestOptions;
6315
6260
  type Response = {
@@ -6321,7 +6266,9 @@ declare namespace JUHUU {
6321
6266
  panelId: string;
6322
6267
  };
6323
6268
  type Options = JUHUU.RequestOptions;
6324
- type Response = JUHUU.Panel.Object;
6269
+ type Response = {
6270
+ panel: JUHUU.Panel.Object;
6271
+ };
6325
6272
  }
6326
6273
  }
6327
6274
  namespace Price {
@@ -6536,4 +6483,4 @@ declare namespace JUHUU {
6536
6483
  }
6537
6484
  }
6538
6485
 
6539
- export { type AccessControlListElement, type Address, type ApiKeyScope, type ApiKeyStatus, type AutoRenewMode, type BaseBlock, type BusinessType, type Capability, type Category, type Circumstance, type Color, type ColorScheme, type Command, type Condition, ConditionType, type ConstBooleanBlock, type ConstNumberBlock, type ConstTextBlock, type ControlEdgeConnection, type CountryCode, CountryCodeArray, type CurrencyCode, CurrencyCodeArray, type CustomClaims, type DataEdgeConnection, type DeepNullable, type DevicePermission, type DeviceRetrieveBlock, type DeviceRetrieveBlockInputs, type DeviceStatus, type DeviceType, type DeviceUpdateBlock, type DeviceUpdateBlockInputs, type EndCustomBlock, type Environment, type EnvironmentSettings, type ExtractType, type FlowBlock, type FlowBlockInput, type FlowControlEdge, type FlowDataEdge, type FlowEdge, type FlowExecuteBlock, type FlowExecuteBlockInputs, type FlowExecutionEnvironment, type FlowLog, type FlowStatus, type Frontend, type GeneralSettings, type GeoPoint, type GraphNode, type HttpDeleteBlock, type HttpDeleteBlockInputs, type HttpGetBlock, type HttpGetBlockInputs, type HttpPatchBlock, type HttpPostBlock, type HttpPostBlockInputs, type HttpPutBlock, type HttpPutBlockInputs, type HttpsPatchBlockInputs, type IfBlock, type IncidentCreateBlock, type IncidentCreateBlockInputs, type IncidentRetrieveBlock, type IncidentRetrieveBlockInputs, JUHUU, type JsonLogic, Juhuu, type LanguageCode, LanguageCodeArray, Layout, type LayoutBlock, type License, type LicenseTariffIdMap, type LinkType, type LocaleString, type LocationRetrieveBlock, type LocationRetrieveBlockInputs, type LocationUpdateBlock, type LocationUpdateBlockInputs, type MapDestructureBlock, type MapDestructureBlockInputs, type MapFilter, type MathAddBlock, type MathAddBlockInputs, type MathDivideBlock, type MathDivideBlockInputs, type MathMultiplyBlock, type MathMultiplyBlockInputs, type MathSubtractBlock, type MathSubtractBlockInputs, type Modality, type MqttSendBlock, type MqttSendBlockInputs, Offer, type OfferTime, type ParamDefinition, type ParamType, type ParameterRetrieveBlock, type ParameterRetrieveBlockInputs, type ParameterUpdateBlock, type ParameterUpdateBlockInputs, type Party, type PaymentMethod, type PaymentReason, type PaymentRefundReason, type PaymentRefundStatus, type PaymentServiceProvider, type PaymentStatus, type PayoutSettings, type PayoutStatus, type PermissionTypes, type Person, type Platform, type PlatformString, type PostingRow, type PropertyRetrieveBlock, type PropertyRetrieveBlockInputs, type PropertyUpdateBlock, type PropertyUpdateBlockInputs, type ProximityStrategy, type Purpose, type PushToken, type QuickAction, 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 TimeZone, type UiNavigateScreenBlock, type UiNavigateScreenBlockInputs, type Unit, type UserCreateBlock, type UserCreateBlockInputs, type UserGroup, type UserRetrieveBlock, type UserRetrieveBlockInputs, type UserType, type Utilization, type VeloBrushDeviceDocumentUserManualStep, type Viewport, type ViewportPolygon, type VisualPriority, type hexColor };
6486
+ export { type AccessControlListElement, type Address, type ApiKeyScope, type ApiKeyStatus, type AutoRenewMode, type BaseBlock, type BusinessType, type Capability, type Category, type Circumstance, type Color, type ColorScheme, type Command, type Condition, ConditionType, type ConstBooleanBlock, type ConstNumberBlock, type ConstTextBlock, type ControlEdgeConnection, type CountryCode, CountryCodeArray, type CurrencyCode, CurrencyCodeArray, type CustomClaims, type DataEdgeConnection, type DeepNullable, type DevicePermission, type DeviceRetrieveBlock, type DeviceRetrieveBlockInputs, type DeviceStatus, type DeviceType, type DeviceUpdateBlock, type DeviceUpdateBlockInputs, type EndCustomBlock, type Environment, type EnvironmentSettings, type ExtractType, type FlowBlock, type FlowBlockInput, type FlowControlEdge, type FlowDataEdge, type FlowEdge, type FlowExecuteBlock, type FlowExecuteBlockInputs, type FlowExecutionEnvironment, type FlowLog, type FlowStatus, type Frontend, type GeneralSettings, type GeoPoint, type GraphNode, type HttpDeleteBlock, type HttpDeleteBlockInputs, type HttpGetBlock, type HttpGetBlockInputs, type HttpPatchBlock, type HttpPostBlock, type HttpPostBlockInputs, type HttpPutBlock, type HttpPutBlockInputs, type HttpsPatchBlockInputs, type IfBlock, type IncidentCreateBlock, type IncidentCreateBlockInputs, type IncidentRetrieveBlock, type IncidentRetrieveBlockInputs, JUHUU, type JsonLogic, Juhuu, type LanguageCode, LanguageCodeArray, Layout, type LayoutBlock, type License, type LicenseTariffIdMap, type LinkType, type LocalParameter, type LocaleString, type LocationRetrieveBlock, type LocationRetrieveBlockInputs, type LocationUpdateBlock, type LocationUpdateBlockInputs, type MapDestructureBlock, type MapDestructureBlockInputs, type MapFilter, type MathAddBlock, type MathAddBlockInputs, type MathDivideBlock, type MathDivideBlockInputs, type MathMultiplyBlock, type MathMultiplyBlockInputs, type MathSubtractBlock, type MathSubtractBlockInputs, type Modality, type MqttSendBlock, type MqttSendBlockInputs, 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 PropertyRetrieveBlock, type PropertyRetrieveBlockInputs, type PropertyUpdateBlock, type PropertyUpdateBlockInputs, type ProximityStrategy, type Purpose, type PushToken, 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 TimeZone, type UiNavigateScreenBlock, type UiNavigateScreenBlockInputs, type Unit, type UserCreateBlock, type UserCreateBlockInputs, type UserGroup, type UserRetrieveBlock, type UserRetrieveBlockInputs, type UserType, type Utilization, type VeloBrushDeviceDocumentUserManualStep, type Viewport, type ViewportPolygon, type VisualPriority, type hexColor };
package/dist/index.d.ts CHANGED
@@ -1305,6 +1305,13 @@ type QuickView = {
1305
1305
  icon: string | null;
1306
1306
  visibleCondition: Condition | null;
1307
1307
  };
1308
+ type LocalParameter = {
1309
+ id: string;
1310
+ name: string;
1311
+ value: any;
1312
+ type: string;
1313
+ };
1314
+ type PanelDisplay = "modal" | "dialog" | "screen";
1308
1315
 
1309
1316
  declare class Service {
1310
1317
  constructor(config: JUHUU.SetupConfig);
@@ -6195,67 +6202,25 @@ declare namespace JUHUU {
6195
6202
  }
6196
6203
  }
6197
6204
  namespace Panel {
6198
- type PanelType = "dashboard" | "widget" | "sidebar" | "modal" | "header" | "footer";
6199
- type PanelStatus = "active" | "inactive" | "hidden" | "archived";
6200
- type PanelSize = "small" | "medium" | "large" | "fullscreen";
6201
- type PanelPosition = {
6202
- x: number;
6203
- y: number;
6204
- width: number;
6205
- height: number;
6206
- zIndex: number;
6207
- };
6208
- type PanelConfig = {
6209
- theme: string | null;
6210
- colors: Record<string, string>;
6211
- layout: Record<string, any>;
6212
- settings: Record<string, any>;
6213
- dataSource: string | null;
6214
- refreshInterval: number | null;
6215
- };
6216
6205
  type Object = {
6217
6206
  id: string;
6207
+ version: number;
6218
6208
  readonly object: "panel";
6219
- userId: string;
6209
+ objectType: "dto";
6220
6210
  name: string;
6221
- title: string | null;
6222
- description: string | null;
6223
- type: PanelType;
6224
- status: PanelStatus;
6225
- size: PanelSize;
6226
- isResizable: boolean;
6227
- isDraggable: boolean;
6228
- isVisible: boolean;
6229
- position: PanelPosition;
6230
- config: PanelConfig;
6231
- createdAt: string;
6232
- updatedAt: string;
6233
- lastAccessedAt: string | null;
6234
- accessCount: number;
6235
- permissions: string[];
6236
- tags: string[];
6237
- parentPanelId: string | null;
6238
- order: number;
6211
+ propertyId: string;
6212
+ layoutBlockArray: LayoutBlock[];
6213
+ highlightLayoutBlockArray: LayoutBlock[];
6214
+ localParameterArray: LocalParameter[];
6215
+ display: PanelDisplay;
6239
6216
  };
6240
6217
  namespace Create {
6241
6218
  type Params = {
6242
- userId: string;
6243
- name: string;
6244
- title?: string | null;
6245
- description?: string | null;
6246
- type: PanelType;
6247
- status: PanelStatus;
6248
- size: PanelSize;
6249
- isResizable: boolean;
6250
- isDraggable: boolean;
6251
- isVisible: boolean;
6252
- position: PanelPosition;
6253
- config: PanelConfig;
6254
- accessCount?: number;
6255
- permissions: string[];
6256
- tags: string[];
6257
- parentPanelId?: string | null;
6258
- order: number;
6219
+ propertyId: string;
6220
+ name?: string;
6221
+ layoutBlockArray?: LayoutBlock[];
6222
+ highlightLayoutBlockArray?: LayoutBlock[];
6223
+ localParameterArray?: LocalParameter[];
6259
6224
  };
6260
6225
  type Options = JUHUU.RequestOptions;
6261
6226
  type Response = {
@@ -6273,13 +6238,7 @@ declare namespace JUHUU {
6273
6238
  }
6274
6239
  namespace List {
6275
6240
  type Params = {
6276
- userId?: string;
6277
- name?: string;
6278
- type?: PanelType;
6279
- status?: PanelStatus;
6280
- size?: PanelSize;
6281
- isVisible?: boolean;
6282
- parentPanelId?: string;
6241
+ propertyId?: string;
6283
6242
  };
6284
6243
  type Options = {
6285
6244
  limit?: number;
@@ -6287,29 +6246,15 @@ declare namespace JUHUU {
6287
6246
  } & JUHUU.RequestOptions;
6288
6247
  type Response = {
6289
6248
  panelArray: JUHUU.Panel.Object[];
6290
- count: number;
6291
- hasMore: boolean;
6292
6249
  };
6293
6250
  }
6294
6251
  namespace Update {
6295
6252
  type Params = {
6296
6253
  panelId: string;
6297
- userId?: string;
6298
6254
  name?: string;
6299
- title?: string | null;
6300
- description?: string | null;
6301
- type?: PanelType;
6302
- status?: PanelStatus;
6303
- size?: PanelSize;
6304
- isResizable?: boolean;
6305
- isDraggable?: boolean;
6306
- isVisible?: boolean;
6307
- position?: PanelPosition;
6308
- config?: PanelConfig;
6309
- permissions?: string[];
6310
- tags?: string[];
6311
- parentPanelId?: string | null;
6312
- order?: number;
6255
+ layoutBlockArray?: LayoutBlock[];
6256
+ highlightLayoutBlockArray?: LayoutBlock[];
6257
+ localParameterArray?: LocalParameter[];
6313
6258
  };
6314
6259
  type Options = JUHUU.RequestOptions;
6315
6260
  type Response = {
@@ -6321,7 +6266,9 @@ declare namespace JUHUU {
6321
6266
  panelId: string;
6322
6267
  };
6323
6268
  type Options = JUHUU.RequestOptions;
6324
- type Response = JUHUU.Panel.Object;
6269
+ type Response = {
6270
+ panel: JUHUU.Panel.Object;
6271
+ };
6325
6272
  }
6326
6273
  }
6327
6274
  namespace Price {
@@ -6536,4 +6483,4 @@ declare namespace JUHUU {
6536
6483
  }
6537
6484
  }
6538
6485
 
6539
- export { type AccessControlListElement, type Address, type ApiKeyScope, type ApiKeyStatus, type AutoRenewMode, type BaseBlock, type BusinessType, type Capability, type Category, type Circumstance, type Color, type ColorScheme, type Command, type Condition, ConditionType, type ConstBooleanBlock, type ConstNumberBlock, type ConstTextBlock, type ControlEdgeConnection, type CountryCode, CountryCodeArray, type CurrencyCode, CurrencyCodeArray, type CustomClaims, type DataEdgeConnection, type DeepNullable, type DevicePermission, type DeviceRetrieveBlock, type DeviceRetrieveBlockInputs, type DeviceStatus, type DeviceType, type DeviceUpdateBlock, type DeviceUpdateBlockInputs, type EndCustomBlock, type Environment, type EnvironmentSettings, type ExtractType, type FlowBlock, type FlowBlockInput, type FlowControlEdge, type FlowDataEdge, type FlowEdge, type FlowExecuteBlock, type FlowExecuteBlockInputs, type FlowExecutionEnvironment, type FlowLog, type FlowStatus, type Frontend, type GeneralSettings, type GeoPoint, type GraphNode, type HttpDeleteBlock, type HttpDeleteBlockInputs, type HttpGetBlock, type HttpGetBlockInputs, type HttpPatchBlock, type HttpPostBlock, type HttpPostBlockInputs, type HttpPutBlock, type HttpPutBlockInputs, type HttpsPatchBlockInputs, type IfBlock, type IncidentCreateBlock, type IncidentCreateBlockInputs, type IncidentRetrieveBlock, type IncidentRetrieveBlockInputs, JUHUU, type JsonLogic, Juhuu, type LanguageCode, LanguageCodeArray, Layout, type LayoutBlock, type License, type LicenseTariffIdMap, type LinkType, type LocaleString, type LocationRetrieveBlock, type LocationRetrieveBlockInputs, type LocationUpdateBlock, type LocationUpdateBlockInputs, type MapDestructureBlock, type MapDestructureBlockInputs, type MapFilter, type MathAddBlock, type MathAddBlockInputs, type MathDivideBlock, type MathDivideBlockInputs, type MathMultiplyBlock, type MathMultiplyBlockInputs, type MathSubtractBlock, type MathSubtractBlockInputs, type Modality, type MqttSendBlock, type MqttSendBlockInputs, Offer, type OfferTime, type ParamDefinition, type ParamType, type ParameterRetrieveBlock, type ParameterRetrieveBlockInputs, type ParameterUpdateBlock, type ParameterUpdateBlockInputs, type Party, type PaymentMethod, type PaymentReason, type PaymentRefundReason, type PaymentRefundStatus, type PaymentServiceProvider, type PaymentStatus, type PayoutSettings, type PayoutStatus, type PermissionTypes, type Person, type Platform, type PlatformString, type PostingRow, type PropertyRetrieveBlock, type PropertyRetrieveBlockInputs, type PropertyUpdateBlock, type PropertyUpdateBlockInputs, type ProximityStrategy, type Purpose, type PushToken, type QuickAction, 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 TimeZone, type UiNavigateScreenBlock, type UiNavigateScreenBlockInputs, type Unit, type UserCreateBlock, type UserCreateBlockInputs, type UserGroup, type UserRetrieveBlock, type UserRetrieveBlockInputs, type UserType, type Utilization, type VeloBrushDeviceDocumentUserManualStep, type Viewport, type ViewportPolygon, type VisualPriority, type hexColor };
6486
+ export { type AccessControlListElement, type Address, type ApiKeyScope, type ApiKeyStatus, type AutoRenewMode, type BaseBlock, type BusinessType, type Capability, type Category, type Circumstance, type Color, type ColorScheme, type Command, type Condition, ConditionType, type ConstBooleanBlock, type ConstNumberBlock, type ConstTextBlock, type ControlEdgeConnection, type CountryCode, CountryCodeArray, type CurrencyCode, CurrencyCodeArray, type CustomClaims, type DataEdgeConnection, type DeepNullable, type DevicePermission, type DeviceRetrieveBlock, type DeviceRetrieveBlockInputs, type DeviceStatus, type DeviceType, type DeviceUpdateBlock, type DeviceUpdateBlockInputs, type EndCustomBlock, type Environment, type EnvironmentSettings, type ExtractType, type FlowBlock, type FlowBlockInput, type FlowControlEdge, type FlowDataEdge, type FlowEdge, type FlowExecuteBlock, type FlowExecuteBlockInputs, type FlowExecutionEnvironment, type FlowLog, type FlowStatus, type Frontend, type GeneralSettings, type GeoPoint, type GraphNode, type HttpDeleteBlock, type HttpDeleteBlockInputs, type HttpGetBlock, type HttpGetBlockInputs, type HttpPatchBlock, type HttpPostBlock, type HttpPostBlockInputs, type HttpPutBlock, type HttpPutBlockInputs, type HttpsPatchBlockInputs, type IfBlock, type IncidentCreateBlock, type IncidentCreateBlockInputs, type IncidentRetrieveBlock, type IncidentRetrieveBlockInputs, JUHUU, type JsonLogic, Juhuu, type LanguageCode, LanguageCodeArray, Layout, type LayoutBlock, type License, type LicenseTariffIdMap, type LinkType, type LocalParameter, type LocaleString, type LocationRetrieveBlock, type LocationRetrieveBlockInputs, type LocationUpdateBlock, type LocationUpdateBlockInputs, type MapDestructureBlock, type MapDestructureBlockInputs, type MapFilter, type MathAddBlock, type MathAddBlockInputs, type MathDivideBlock, type MathDivideBlockInputs, type MathMultiplyBlock, type MathMultiplyBlockInputs, type MathSubtractBlock, type MathSubtractBlockInputs, type Modality, type MqttSendBlock, type MqttSendBlockInputs, 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 PropertyRetrieveBlock, type PropertyRetrieveBlockInputs, type PropertyUpdateBlock, type PropertyUpdateBlockInputs, type ProximityStrategy, type Purpose, type PushToken, 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 TimeZone, type UiNavigateScreenBlock, type UiNavigateScreenBlockInputs, type Unit, type UserCreateBlock, type UserCreateBlockInputs, type UserGroup, type UserRetrieveBlock, type UserRetrieveBlockInputs, type UserType, type Utilization, type VeloBrushDeviceDocumentUserManualStep, type Viewport, type ViewportPolygon, type VisualPriority, type hexColor };
package/dist/index.js CHANGED
@@ -4753,23 +4753,11 @@ var PanelsService = class extends Service {
4753
4753
  method: "POST",
4754
4754
  url: "panels",
4755
4755
  body: {
4756
- userId: params.userId,
4756
+ propertyId: params.propertyId,
4757
4757
  name: params.name,
4758
- title: params.title,
4759
- description: params.description,
4760
- type: params.type,
4761
- status: params.status,
4762
- size: params.size,
4763
- isResizable: params.isResizable,
4764
- isDraggable: params.isDraggable,
4765
- isVisible: params.isVisible,
4766
- position: params.position,
4767
- config: params.config,
4768
- accessCount: params.accessCount,
4769
- permissions: params.permissions,
4770
- tags: params.tags,
4771
- parentPanelId: params.parentPanelId,
4772
- order: params.order
4758
+ layoutBlockArray: params.layoutBlockArray,
4759
+ highlightLayoutBlockArray: params.highlightLayoutBlockArray,
4760
+ localParameterArray: params.localParameterArray
4773
4761
  },
4774
4762
  authenticationNotOptional: true
4775
4763
  },
@@ -4778,26 +4766,8 @@ var PanelsService = class extends Service {
4778
4766
  }
4779
4767
  async list(params, options) {
4780
4768
  const queryArray = [];
4781
- if (params?.userId !== void 0) {
4782
- queryArray.push("userId=" + params.userId);
4783
- }
4784
- if (params?.name !== void 0) {
4785
- queryArray.push("name=" + params.name);
4786
- }
4787
- if (params?.type !== void 0) {
4788
- queryArray.push("type=" + params.type);
4789
- }
4790
- if (params?.status !== void 0) {
4791
- queryArray.push("status=" + params.status);
4792
- }
4793
- if (params?.size !== void 0) {
4794
- queryArray.push("size=" + params.size);
4795
- }
4796
- if (params?.isVisible !== void 0) {
4797
- queryArray.push("isVisible=" + params.isVisible);
4798
- }
4799
- if (params?.parentPanelId !== void 0) {
4800
- queryArray.push("parentPanelId=" + params.parentPanelId);
4769
+ if (params?.propertyId !== void 0) {
4770
+ queryArray.push("propertyId=" + params.propertyId);
4801
4771
  }
4802
4772
  if (options?.limit !== void 0) {
4803
4773
  queryArray.push("limit=" + options.limit);
@@ -4833,22 +4803,10 @@ var PanelsService = class extends Service {
4833
4803
  method: "PATCH",
4834
4804
  url: "panels/" + params.panelId,
4835
4805
  body: {
4836
- userId: params.userId,
4837
4806
  name: params.name,
4838
- title: params.title,
4839
- description: params.description,
4840
- type: params.type,
4841
- status: params.status,
4842
- size: params.size,
4843
- isResizable: params.isResizable,
4844
- isDraggable: params.isDraggable,
4845
- isVisible: params.isVisible,
4846
- position: params.position,
4847
- config: params.config,
4848
- permissions: params.permissions,
4849
- tags: params.tags,
4850
- parentPanelId: params.parentPanelId,
4851
- order: params.order
4807
+ layoutBlockArray: params.layoutBlockArray,
4808
+ highlightLayoutBlockArray: params.highlightLayoutBlockArray,
4809
+ localParameterArray: params.localParameterArray
4852
4810
  },
4853
4811
  authenticationNotOptional: true
4854
4812
  },
package/dist/index.mjs CHANGED
@@ -4709,23 +4709,11 @@ var PanelsService = class extends Service {
4709
4709
  method: "POST",
4710
4710
  url: "panels",
4711
4711
  body: {
4712
- userId: params.userId,
4712
+ propertyId: params.propertyId,
4713
4713
  name: params.name,
4714
- title: params.title,
4715
- description: params.description,
4716
- type: params.type,
4717
- status: params.status,
4718
- size: params.size,
4719
- isResizable: params.isResizable,
4720
- isDraggable: params.isDraggable,
4721
- isVisible: params.isVisible,
4722
- position: params.position,
4723
- config: params.config,
4724
- accessCount: params.accessCount,
4725
- permissions: params.permissions,
4726
- tags: params.tags,
4727
- parentPanelId: params.parentPanelId,
4728
- order: params.order
4714
+ layoutBlockArray: params.layoutBlockArray,
4715
+ highlightLayoutBlockArray: params.highlightLayoutBlockArray,
4716
+ localParameterArray: params.localParameterArray
4729
4717
  },
4730
4718
  authenticationNotOptional: true
4731
4719
  },
@@ -4734,26 +4722,8 @@ var PanelsService = class extends Service {
4734
4722
  }
4735
4723
  async list(params, options) {
4736
4724
  const queryArray = [];
4737
- if (params?.userId !== void 0) {
4738
- queryArray.push("userId=" + params.userId);
4739
- }
4740
- if (params?.name !== void 0) {
4741
- queryArray.push("name=" + params.name);
4742
- }
4743
- if (params?.type !== void 0) {
4744
- queryArray.push("type=" + params.type);
4745
- }
4746
- if (params?.status !== void 0) {
4747
- queryArray.push("status=" + params.status);
4748
- }
4749
- if (params?.size !== void 0) {
4750
- queryArray.push("size=" + params.size);
4751
- }
4752
- if (params?.isVisible !== void 0) {
4753
- queryArray.push("isVisible=" + params.isVisible);
4754
- }
4755
- if (params?.parentPanelId !== void 0) {
4756
- queryArray.push("parentPanelId=" + params.parentPanelId);
4725
+ if (params?.propertyId !== void 0) {
4726
+ queryArray.push("propertyId=" + params.propertyId);
4757
4727
  }
4758
4728
  if (options?.limit !== void 0) {
4759
4729
  queryArray.push("limit=" + options.limit);
@@ -4789,22 +4759,10 @@ var PanelsService = class extends Service {
4789
4759
  method: "PATCH",
4790
4760
  url: "panels/" + params.panelId,
4791
4761
  body: {
4792
- userId: params.userId,
4793
4762
  name: params.name,
4794
- title: params.title,
4795
- description: params.description,
4796
- type: params.type,
4797
- status: params.status,
4798
- size: params.size,
4799
- isResizable: params.isResizable,
4800
- isDraggable: params.isDraggable,
4801
- isVisible: params.isVisible,
4802
- position: params.position,
4803
- config: params.config,
4804
- permissions: params.permissions,
4805
- tags: params.tags,
4806
- parentPanelId: params.parentPanelId,
4807
- order: params.order
4763
+ layoutBlockArray: params.layoutBlockArray,
4764
+ highlightLayoutBlockArray: params.highlightLayoutBlockArray,
4765
+ localParameterArray: params.localParameterArray
4808
4766
  },
4809
4767
  authenticationNotOptional: true
4810
4768
  },
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@juhuu/sdk-ts",
3
- "version": "1.2.260",
3
+ "version": "1.2.262",
4
4
  "description": "Typescript wrapper for JUHUU services",
5
5
  "main": "./dist/index.js",
6
6
  "module": "./dist/index.mjs",