@omni-co/embed 0.4.2 → 0.4.4
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 -1
- package/lib/cjs/types.js +6 -1
- package/lib/esm/types.d.ts +2 -1
- package/lib/esm/types.js +6 -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"
|
|
@@ -125,6 +125,7 @@ export declare enum EmbedConnectionRoles {
|
|
|
125
125
|
* Levels of access a user can have to their associated embed entity folder.
|
|
126
126
|
*/
|
|
127
127
|
export declare enum EmbedEntityFolderContentRoles {
|
|
128
|
+
MANAGER = "MANAGER",
|
|
128
129
|
EDITOR = "EDITOR",
|
|
129
130
|
VIEWER = "VIEWER"
|
|
130
131
|
}
|
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
|
|
@@ -45,6 +49,7 @@ var EmbedConnectionRoles;
|
|
|
45
49
|
*/
|
|
46
50
|
var EmbedEntityFolderContentRoles;
|
|
47
51
|
(function (EmbedEntityFolderContentRoles) {
|
|
52
|
+
EmbedEntityFolderContentRoles["MANAGER"] = "MANAGER";
|
|
48
53
|
EmbedEntityFolderContentRoles["EDITOR"] = "EDITOR";
|
|
49
54
|
EmbedEntityFolderContentRoles["VIEWER"] = "VIEWER";
|
|
50
55
|
})(EmbedEntityFolderContentRoles || (exports.EmbedEntityFolderContentRoles = EmbedEntityFolderContentRoles = {}));
|
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"
|
|
@@ -125,6 +125,7 @@ export declare enum EmbedConnectionRoles {
|
|
|
125
125
|
* Levels of access a user can have to their associated embed entity folder.
|
|
126
126
|
*/
|
|
127
127
|
export declare enum EmbedEntityFolderContentRoles {
|
|
128
|
+
MANAGER = "MANAGER",
|
|
128
129
|
EDITOR = "EDITOR",
|
|
129
130
|
VIEWER = "VIEWER"
|
|
130
131
|
}
|
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
|
|
@@ -42,6 +46,7 @@ export var EmbedConnectionRoles;
|
|
|
42
46
|
*/
|
|
43
47
|
export var EmbedEntityFolderContentRoles;
|
|
44
48
|
(function (EmbedEntityFolderContentRoles) {
|
|
49
|
+
EmbedEntityFolderContentRoles["MANAGER"] = "MANAGER";
|
|
45
50
|
EmbedEntityFolderContentRoles["EDITOR"] = "EDITOR";
|
|
46
51
|
EmbedEntityFolderContentRoles["VIEWER"] = "VIEWER";
|
|
47
52
|
})(EmbedEntityFolderContentRoles || (EmbedEntityFolderContentRoles = {}));
|
package/package.json
CHANGED