@omni-co/embed 0.3.15 → 0.3.17
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/README.md +11 -1
- package/lib/cjs/types.d.ts +2 -0
- package/lib/esm/types.d.ts +2 -0
- package/package.json +1 -1
package/README.md
CHANGED
|
@@ -1,4 +1,14 @@
|
|
|
1
|
-
# Omni Embed SSO Typescript SDK
|
|
1
|
+
# Omni Embed SSO Typescript SDK for Server (Node, etc)
|
|
2
|
+
|
|
3
|
+
## Server Side Only
|
|
4
|
+
|
|
5
|
+
**This SDK is intented to be used in a server context.**
|
|
6
|
+
|
|
7
|
+
**Your embed secret should never be shipped to a client or browser.**
|
|
8
|
+
|
|
9
|
+
Anyone with access to the secret can craft an embed url and potentially gain
|
|
10
|
+
access to your Omni instance. Guard your embed secret in the same way you would
|
|
11
|
+
a private key.
|
|
2
12
|
|
|
3
13
|
## Install
|
|
4
14
|
|
package/lib/cjs/types.d.ts
CHANGED
|
@@ -44,6 +44,8 @@ export type CustomThemeProperties = {
|
|
|
44
44
|
"dashboard-tile-text-code-font-family"?: string;
|
|
45
45
|
"dashboard-key-color"?: string;
|
|
46
46
|
"dashboard-key-text-color"?: string;
|
|
47
|
+
"dashboard-control-background"?: string;
|
|
48
|
+
"dashboard-control-popover-background"?: string;
|
|
47
49
|
};
|
|
48
50
|
export declare enum EmbeddedContent {
|
|
49
51
|
Dashboard = "dashboards",
|
package/lib/esm/types.d.ts
CHANGED
|
@@ -44,6 +44,8 @@ export type CustomThemeProperties = {
|
|
|
44
44
|
"dashboard-tile-text-code-font-family"?: string;
|
|
45
45
|
"dashboard-key-color"?: string;
|
|
46
46
|
"dashboard-key-text-color"?: string;
|
|
47
|
+
"dashboard-control-background"?: string;
|
|
48
|
+
"dashboard-control-popover-background"?: string;
|
|
47
49
|
};
|
|
48
50
|
export declare enum EmbeddedContent {
|
|
49
51
|
Dashboard = "dashboards",
|
package/package.json
CHANGED