@enplug/sdk-dashboard
Advanced tools
Comparing version 5.4.47-dev-3 to 5.4.47-dev-4
{ | ||
"name": "@enplug/sdk-dashboard", | ||
"version": "5.4.47-dev-3", | ||
"version": "5.4.47-dev-4", | ||
"description": "Enplug Dashboard SDK", | ||
@@ -5,0 +5,0 @@ "typings": "./index.d.ts", |
@@ -1,2 +0,2 @@ | ||
import { Asset, DefaultAssetLevel, DeployDialogOptions, EnplugAccount, EnplugUser, FeedData, Layout, ThemeDefinition, ThemeAsset, FontDefinition, FontsApiItem, DefaultAsset, ZoningAppsResponse, ZoningConfig, AccountCustomPropertiesResponse, AccountInfoResponse, PaginationConfig, AssetsPaginationResponse } from './external-types'; | ||
import { Asset, DefaultAssetLevel, DeployDialogOptions, EnplugAccount, EnplugUser, FeedData, Layout, ThemeDefinition, ThemeAsset, FontDefinition, FontsApiItem, DefaultAsset, ZoningAppsResponse, ZoningConfig, AccountCustomPropertiesResponse, AccountInfoResponse, PaginationConfig, PaginationResponse } from './external-types'; | ||
import { BridgeBase } from './bridge/bridge-base'; | ||
@@ -66,3 +66,6 @@ /** | ||
*/ | ||
getAssetsPagination<T>(options: PaginationConfig): Promise<AssetsPaginationResponse<T>>; | ||
getAssetsPagination<T>(options: PaginationConfig): Promise<{ | ||
Assets: Array<Asset<T>>; | ||
Pagination: PaginationResponse; | ||
}>; | ||
/** | ||
@@ -69,0 +72,0 @@ * Loads an array of assets by Ids. |
@@ -581,6 +581,2 @@ /** These are meant to available to client apps */ | ||
} | ||
export interface AssetsPaginationResponse<T> { | ||
Assets: Array<Asset<T>>; | ||
Pagination: PaginationResponse; | ||
} | ||
export interface ZoningAppsResponse { | ||
@@ -587,0 +583,0 @@ BannerApps: ZoningApp[]; |
Sorry, the diff of this file is too big to display
Sorry, the diff of this file is not supported yet
License Policy Violation
LicenseThis package is not allowed per your license policy. Review the package's license to ensure compliance.
Found 1 instance in 1 package
License Policy Violation
LicenseThis package is not allowed per your license policy. Review the package's license to ensure compliance.
Found 1 instance in 1 package
273375
3751