@omni-co/embed 0.4.6-alpha.1 → 0.4.6
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/lib/cjs/types.d.ts +2 -2
- package/lib/esm/types.d.ts +2 -2
- package/package.json +1 -1
package/lib/cjs/types.d.ts
CHANGED
|
@@ -11,6 +11,8 @@ type EmbedSsoBaseProps = {
|
|
|
11
11
|
userAttributes?: Record<string, UserAttributeValue>;
|
|
12
12
|
prefersDark?: string;
|
|
13
13
|
theme?: string;
|
|
14
|
+
customTheme?: CustomThemeProperties;
|
|
15
|
+
customThemeId?: string;
|
|
14
16
|
/**
|
|
15
17
|
* Optional connection roles setting. Object keys should be connection IDs from the embedded Omni instance.
|
|
16
18
|
* Object values should be connection roles. At the moment, the only valid role string is "RESTRICTED_QUERIER".
|
|
@@ -71,8 +73,6 @@ type EmbedSsoDashboardOnlyProps = {
|
|
|
71
73
|
accessBoost?: boolean;
|
|
72
74
|
filterSearchParam?: string;
|
|
73
75
|
linkAccess?: string;
|
|
74
|
-
customTheme?: CustomThemeProperties;
|
|
75
|
-
customThemeId?: string;
|
|
76
76
|
};
|
|
77
77
|
type EmbedContentIdProp = {
|
|
78
78
|
contentId: string;
|
package/lib/esm/types.d.ts
CHANGED
|
@@ -11,6 +11,8 @@ type EmbedSsoBaseProps = {
|
|
|
11
11
|
userAttributes?: Record<string, UserAttributeValue>;
|
|
12
12
|
prefersDark?: string;
|
|
13
13
|
theme?: string;
|
|
14
|
+
customTheme?: CustomThemeProperties;
|
|
15
|
+
customThemeId?: string;
|
|
14
16
|
/**
|
|
15
17
|
* Optional connection roles setting. Object keys should be connection IDs from the embedded Omni instance.
|
|
16
18
|
* Object values should be connection roles. At the moment, the only valid role string is "RESTRICTED_QUERIER".
|
|
@@ -71,8 +73,6 @@ type EmbedSsoDashboardOnlyProps = {
|
|
|
71
73
|
accessBoost?: boolean;
|
|
72
74
|
filterSearchParam?: string;
|
|
73
75
|
linkAccess?: string;
|
|
74
|
-
customTheme?: CustomThemeProperties;
|
|
75
|
-
customThemeId?: string;
|
|
76
76
|
};
|
|
77
77
|
type EmbedContentIdProp = {
|
|
78
78
|
contentId: string;
|
package/package.json
CHANGED