We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent a0fa5fd commit f351cc8Copy full SHA for f351cc8
1 file changed
src/embed.ts
@@ -21,13 +21,17 @@ declare global {
21
}
22
23
24
+// TODO: Re-use ILoadConfiguration interface to prevent duplicating properties.
25
+// Current issue is that they are optional when embedding since they can be specificed as attributes but they are required when loading.
26
export interface IEmbedConfiguration {
27
type?: string;
28
id?: string;
29
uniqueId?: string;
30
embedUrl?: string;
31
accessToken?: string;
32
settings?: models.ISettings;
33
+ pageName?: string;
34
+ filters?: (models.IBasicFilter | models.IAdvancedFilter)[];
35
36
37
export interface IInternalEmbedConfiguration extends models.ILoadConfiguration {
0 commit comments