@omni-co/embed 0.4.2 → 0.4.3
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 +1 -1
- package/lib/cjs/types.js +5 -1
- package/lib/esm/types.d.ts +1 -1
- package/lib/esm/types.js +5 -1
- package/package.json +1 -1
package/lib/cjs/types.d.ts
CHANGED
|
@@ -116,7 +116,7 @@ export declare enum EmbeddedContent {
|
|
|
116
116
|
Dashboard = "dashboards",
|
|
117
117
|
Workbook = "w"
|
|
118
118
|
}
|
|
119
|
-
export declare const EmbedSsoContentDiscoveryPaths: readonly ["my"];
|
|
119
|
+
export declare const EmbedSsoContentDiscoveryPaths: readonly ["my", "entity-folder", "root"];
|
|
120
120
|
export type EmbedSsoContentDiscoveryPath = (typeof EmbedSsoContentDiscoveryPaths)[number];
|
|
121
121
|
export declare enum EmbedConnectionRoles {
|
|
122
122
|
RESTRICTED_QUERIER = "RESTRICTED_QUERIER"
|
package/lib/cjs/types.js
CHANGED
|
@@ -32,7 +32,11 @@ var EmbeddedContent;
|
|
|
32
32
|
EmbeddedContent["Dashboard"] = "dashboards";
|
|
33
33
|
EmbeddedContent["Workbook"] = "w";
|
|
34
34
|
})(EmbeddedContent || (exports.EmbeddedContent = EmbeddedContent = {}));
|
|
35
|
-
exports.EmbedSsoContentDiscoveryPaths = [
|
|
35
|
+
exports.EmbedSsoContentDiscoveryPaths = [
|
|
36
|
+
"my",
|
|
37
|
+
"entity-folder",
|
|
38
|
+
"root",
|
|
39
|
+
];
|
|
36
40
|
var EmbedConnectionRoles;
|
|
37
41
|
(function (EmbedConnectionRoles) {
|
|
38
42
|
// TODO: Eventually we'll want to add VIEWER. Currently though, since the sole use case of the
|
package/lib/esm/types.d.ts
CHANGED
|
@@ -116,7 +116,7 @@ export declare enum EmbeddedContent {
|
|
|
116
116
|
Dashboard = "dashboards",
|
|
117
117
|
Workbook = "w"
|
|
118
118
|
}
|
|
119
|
-
export declare const EmbedSsoContentDiscoveryPaths: readonly ["my"];
|
|
119
|
+
export declare const EmbedSsoContentDiscoveryPaths: readonly ["my", "entity-folder", "root"];
|
|
120
120
|
export type EmbedSsoContentDiscoveryPath = (typeof EmbedSsoContentDiscoveryPaths)[number];
|
|
121
121
|
export declare enum EmbedConnectionRoles {
|
|
122
122
|
RESTRICTED_QUERIER = "RESTRICTED_QUERIER"
|
package/lib/esm/types.js
CHANGED
|
@@ -29,7 +29,11 @@ export var EmbeddedContent;
|
|
|
29
29
|
EmbeddedContent["Dashboard"] = "dashboards";
|
|
30
30
|
EmbeddedContent["Workbook"] = "w";
|
|
31
31
|
})(EmbeddedContent || (EmbeddedContent = {}));
|
|
32
|
-
export const EmbedSsoContentDiscoveryPaths = [
|
|
32
|
+
export const EmbedSsoContentDiscoveryPaths = [
|
|
33
|
+
"my",
|
|
34
|
+
"entity-folder",
|
|
35
|
+
"root",
|
|
36
|
+
];
|
|
33
37
|
export var EmbedConnectionRoles;
|
|
34
38
|
(function (EmbedConnectionRoles) {
|
|
35
39
|
// TODO: Eventually we'll want to add VIEWER. Currently though, since the sole use case of the
|
package/package.json
CHANGED