@epam/ai-dial-shared
Advanced tools
Comparing version 0.7.0-rc.9 to 0.7.0-rc.10
@@ -5,3 +5,3 @@ { | ||
"homepage": "https://epam-rail.com", | ||
"version": "0.7.0-rc.9", | ||
"version": "0.7.0-rc.10", | ||
"dependencies": {}, | ||
@@ -8,0 +8,0 @@ "type": "module", |
@@ -0,1 +1,2 @@ | ||
import { Feature } from './features'; | ||
export interface OverlayRequest { | ||
@@ -6,1 +7,20 @@ type: string; | ||
} | ||
export interface ChatOverlayOptions { | ||
domain: string; | ||
hostDomain: string; | ||
theme?: string; | ||
modelId?: string; | ||
enabledFeatures?: Feature[] | string; | ||
requestTimeout?: number; | ||
loaderStyles?: Styles; | ||
loaderClass?: string; | ||
signInOptions?: OverlaySignInOptions; | ||
} | ||
interface OverlaySignInOptions { | ||
autoSignIn: boolean; | ||
signInProvider?: string; | ||
} | ||
export type Styles = { | ||
[property in keyof CSSStyleDeclaration]?: string; | ||
}; | ||
export {}; |
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
16642
128