@juhuu/sdk-ts 1.2.260 → 1.2.261
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 +25 -80
- package/dist/index.d.ts +25 -80
- package/dist/index.js +9 -51
- package/dist/index.mjs +9 -51
- package/package.json +1 -1
package/dist/index.d.mts
CHANGED
|
@@ -1305,6 +1305,12 @@ 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
|
+
};
|
|
1308
1314
|
|
|
1309
1315
|
declare class Service {
|
|
1310
1316
|
constructor(config: JUHUU.SetupConfig);
|
|
@@ -6195,67 +6201,24 @@ declare namespace JUHUU {
|
|
|
6195
6201
|
}
|
|
6196
6202
|
}
|
|
6197
6203
|
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
6204
|
type Object = {
|
|
6217
6205
|
id: string;
|
|
6206
|
+
version: number;
|
|
6218
6207
|
readonly object: "panel";
|
|
6219
|
-
|
|
6208
|
+
objectType: "dto";
|
|
6220
6209
|
name: string;
|
|
6221
|
-
|
|
6222
|
-
|
|
6223
|
-
|
|
6224
|
-
|
|
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;
|
|
6210
|
+
propertyId: string;
|
|
6211
|
+
layoutBlockArray: LayoutBlock[];
|
|
6212
|
+
highlightLayoutBlockArray: LayoutBlock[];
|
|
6213
|
+
localParameterArray: LocalParameter[];
|
|
6239
6214
|
};
|
|
6240
6215
|
namespace Create {
|
|
6241
6216
|
type Params = {
|
|
6242
|
-
|
|
6243
|
-
name
|
|
6244
|
-
|
|
6245
|
-
|
|
6246
|
-
|
|
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;
|
|
6217
|
+
propertyId: string;
|
|
6218
|
+
name?: string;
|
|
6219
|
+
layoutBlockArray?: LayoutBlock[];
|
|
6220
|
+
highlightLayoutBlockArray?: LayoutBlock[];
|
|
6221
|
+
localParameterArray?: LocalParameter[];
|
|
6259
6222
|
};
|
|
6260
6223
|
type Options = JUHUU.RequestOptions;
|
|
6261
6224
|
type Response = {
|
|
@@ -6273,13 +6236,7 @@ declare namespace JUHUU {
|
|
|
6273
6236
|
}
|
|
6274
6237
|
namespace List {
|
|
6275
6238
|
type Params = {
|
|
6276
|
-
|
|
6277
|
-
name?: string;
|
|
6278
|
-
type?: PanelType;
|
|
6279
|
-
status?: PanelStatus;
|
|
6280
|
-
size?: PanelSize;
|
|
6281
|
-
isVisible?: boolean;
|
|
6282
|
-
parentPanelId?: string;
|
|
6239
|
+
propertyId?: string;
|
|
6283
6240
|
};
|
|
6284
6241
|
type Options = {
|
|
6285
6242
|
limit?: number;
|
|
@@ -6287,29 +6244,15 @@ declare namespace JUHUU {
|
|
|
6287
6244
|
} & JUHUU.RequestOptions;
|
|
6288
6245
|
type Response = {
|
|
6289
6246
|
panelArray: JUHUU.Panel.Object[];
|
|
6290
|
-
count: number;
|
|
6291
|
-
hasMore: boolean;
|
|
6292
6247
|
};
|
|
6293
6248
|
}
|
|
6294
6249
|
namespace Update {
|
|
6295
6250
|
type Params = {
|
|
6296
6251
|
panelId: string;
|
|
6297
|
-
userId?: string;
|
|
6298
6252
|
name?: string;
|
|
6299
|
-
|
|
6300
|
-
|
|
6301
|
-
|
|
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;
|
|
6253
|
+
layoutBlockArray?: LayoutBlock[];
|
|
6254
|
+
highlightLayoutBlockArray?: LayoutBlock[];
|
|
6255
|
+
localParameterArray?: LocalParameter[];
|
|
6313
6256
|
};
|
|
6314
6257
|
type Options = JUHUU.RequestOptions;
|
|
6315
6258
|
type Response = {
|
|
@@ -6321,7 +6264,9 @@ declare namespace JUHUU {
|
|
|
6321
6264
|
panelId: string;
|
|
6322
6265
|
};
|
|
6323
6266
|
type Options = JUHUU.RequestOptions;
|
|
6324
|
-
type Response =
|
|
6267
|
+
type Response = {
|
|
6268
|
+
panel: JUHUU.Panel.Object;
|
|
6269
|
+
};
|
|
6325
6270
|
}
|
|
6326
6271
|
}
|
|
6327
6272
|
namespace Price {
|
|
@@ -6536,4 +6481,4 @@ declare namespace JUHUU {
|
|
|
6536
6481
|
}
|
|
6537
6482
|
}
|
|
6538
6483
|
|
|
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 };
|
|
6484
|
+
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 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,12 @@ 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
|
+
};
|
|
1308
1314
|
|
|
1309
1315
|
declare class Service {
|
|
1310
1316
|
constructor(config: JUHUU.SetupConfig);
|
|
@@ -6195,67 +6201,24 @@ declare namespace JUHUU {
|
|
|
6195
6201
|
}
|
|
6196
6202
|
}
|
|
6197
6203
|
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
6204
|
type Object = {
|
|
6217
6205
|
id: string;
|
|
6206
|
+
version: number;
|
|
6218
6207
|
readonly object: "panel";
|
|
6219
|
-
|
|
6208
|
+
objectType: "dto";
|
|
6220
6209
|
name: string;
|
|
6221
|
-
|
|
6222
|
-
|
|
6223
|
-
|
|
6224
|
-
|
|
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;
|
|
6210
|
+
propertyId: string;
|
|
6211
|
+
layoutBlockArray: LayoutBlock[];
|
|
6212
|
+
highlightLayoutBlockArray: LayoutBlock[];
|
|
6213
|
+
localParameterArray: LocalParameter[];
|
|
6239
6214
|
};
|
|
6240
6215
|
namespace Create {
|
|
6241
6216
|
type Params = {
|
|
6242
|
-
|
|
6243
|
-
name
|
|
6244
|
-
|
|
6245
|
-
|
|
6246
|
-
|
|
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;
|
|
6217
|
+
propertyId: string;
|
|
6218
|
+
name?: string;
|
|
6219
|
+
layoutBlockArray?: LayoutBlock[];
|
|
6220
|
+
highlightLayoutBlockArray?: LayoutBlock[];
|
|
6221
|
+
localParameterArray?: LocalParameter[];
|
|
6259
6222
|
};
|
|
6260
6223
|
type Options = JUHUU.RequestOptions;
|
|
6261
6224
|
type Response = {
|
|
@@ -6273,13 +6236,7 @@ declare namespace JUHUU {
|
|
|
6273
6236
|
}
|
|
6274
6237
|
namespace List {
|
|
6275
6238
|
type Params = {
|
|
6276
|
-
|
|
6277
|
-
name?: string;
|
|
6278
|
-
type?: PanelType;
|
|
6279
|
-
status?: PanelStatus;
|
|
6280
|
-
size?: PanelSize;
|
|
6281
|
-
isVisible?: boolean;
|
|
6282
|
-
parentPanelId?: string;
|
|
6239
|
+
propertyId?: string;
|
|
6283
6240
|
};
|
|
6284
6241
|
type Options = {
|
|
6285
6242
|
limit?: number;
|
|
@@ -6287,29 +6244,15 @@ declare namespace JUHUU {
|
|
|
6287
6244
|
} & JUHUU.RequestOptions;
|
|
6288
6245
|
type Response = {
|
|
6289
6246
|
panelArray: JUHUU.Panel.Object[];
|
|
6290
|
-
count: number;
|
|
6291
|
-
hasMore: boolean;
|
|
6292
6247
|
};
|
|
6293
6248
|
}
|
|
6294
6249
|
namespace Update {
|
|
6295
6250
|
type Params = {
|
|
6296
6251
|
panelId: string;
|
|
6297
|
-
userId?: string;
|
|
6298
6252
|
name?: string;
|
|
6299
|
-
|
|
6300
|
-
|
|
6301
|
-
|
|
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;
|
|
6253
|
+
layoutBlockArray?: LayoutBlock[];
|
|
6254
|
+
highlightLayoutBlockArray?: LayoutBlock[];
|
|
6255
|
+
localParameterArray?: LocalParameter[];
|
|
6313
6256
|
};
|
|
6314
6257
|
type Options = JUHUU.RequestOptions;
|
|
6315
6258
|
type Response = {
|
|
@@ -6321,7 +6264,9 @@ declare namespace JUHUU {
|
|
|
6321
6264
|
panelId: string;
|
|
6322
6265
|
};
|
|
6323
6266
|
type Options = JUHUU.RequestOptions;
|
|
6324
|
-
type Response =
|
|
6267
|
+
type Response = {
|
|
6268
|
+
panel: JUHUU.Panel.Object;
|
|
6269
|
+
};
|
|
6325
6270
|
}
|
|
6326
6271
|
}
|
|
6327
6272
|
namespace Price {
|
|
@@ -6536,4 +6481,4 @@ declare namespace JUHUU {
|
|
|
6536
6481
|
}
|
|
6537
6482
|
}
|
|
6538
6483
|
|
|
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 };
|
|
6484
|
+
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 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
|
-
|
|
4756
|
+
propertyId: params.propertyId,
|
|
4757
4757
|
name: params.name,
|
|
4758
|
-
|
|
4759
|
-
|
|
4760
|
-
|
|
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?.
|
|
4782
|
-
queryArray.push("
|
|
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
|
-
|
|
4839
|
-
|
|
4840
|
-
|
|
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
|
-
|
|
4712
|
+
propertyId: params.propertyId,
|
|
4713
4713
|
name: params.name,
|
|
4714
|
-
|
|
4715
|
-
|
|
4716
|
-
|
|
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?.
|
|
4738
|
-
queryArray.push("
|
|
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
|
-
|
|
4795
|
-
|
|
4796
|
-
|
|
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
|
},
|