@enplug/sdk-dashboard
Advanced tools
Comparing version 5.4.21-dev to 5.4.22-dev
{ | ||
"name": "@enplug/sdk-dashboard", | ||
"version": "5.4.21-dev", | ||
"version": "5.4.22-dev", | ||
"description": "Enplug Dashboard SDK", | ||
@@ -5,0 +5,0 @@ "typings": "./index.d.ts", |
@@ -371,2 +371,6 @@ import { Asset, Button, DisplaySelectorCallback, FeedData, Layout, OpenConfirmOptions, ThemeAsset, EncodingStatusResult, UploaderOptions, UploadedFileResult, ApiDataConnectorOptions, DataConnectionConfig, AssetPreviewRequest, AssetPreviewData } from './external-types'; | ||
private currentDisplayCallback; | ||
/** | ||
* Closes current window, used in templates after user has successfully authenticated with sharepoint user. | ||
*/ | ||
closeWindow(): Promise<any>; | ||
} |
@@ -484,2 +484,15 @@ /** These are meant to available to client apps */ | ||
} | ||
export interface SharepointConfig { | ||
sharepointAuthData: { | ||
authToken: string; | ||
userEmail: String; | ||
}; | ||
templateApiData: { | ||
fileName: string; | ||
refreshFrequency: string; | ||
sheet: string; | ||
siteUrl: string; | ||
tenantId: string; | ||
}; | ||
} | ||
export interface DataConnectionConfig { | ||
@@ -489,2 +502,3 @@ binding: BindingConfig; | ||
type: ConnectionType; | ||
sharepointConfig?: SharepointConfig; | ||
} | ||
@@ -491,0 +505,0 @@ export interface ApiQueryParameter { |
@@ -165,3 +165,4 @@ /** | ||
RestoreVersion = "app.restoreVersion", | ||
RefreshTwitterFeed = "social.refreshTwitterFeed" | ||
RefreshTwitterFeed = "social.refreshTwitterFeed", | ||
CloseWindow = "dashboard.closeWindow" | ||
} |
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
261483
3611