@omni-co/embed 0.4.7 → 0.4.9

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.
@@ -21,7 +21,7 @@ accessBoost, connectionRoles, customTheme, customThemeId, email, entity, entityF
21
21
  // We create a map of optional params and convert it to an array
22
22
  // to ensure that the order of the optional params is alphabetical and consistent.
23
23
  const optionalParamsMap = {
24
- ...(accessBoost && { accessBoost: accessBoost === null || accessBoost === void 0 ? void 0 : accessBoost.toString() }),
24
+ ...(accessBoost !== undefined && { accessBoost: accessBoost.toString() }),
25
25
  ...(connectionRoles && { connectionRoles }),
26
26
  ...(customTheme && { customTheme }),
27
27
  ...(customThemeId && { customThemeId }),
@@ -189,7 +189,8 @@ export declare const EmbedSsoContentDiscoveryPaths: readonly ["my", "entity-fold
189
189
  export type EmbedSsoContentDiscoveryPath = (typeof EmbedSsoContentDiscoveryPaths)[number];
190
190
  export declare enum EmbedConnectionRoles {
191
191
  RESTRICTED_QUERIER = "RESTRICTED_QUERIER",
192
- VIEWER = "VIEWER"
192
+ VIEWER = "VIEWER",
193
+ QUERIER = "QUERIER"
193
194
  }
194
195
  /**
195
196
  * Levels of access a user can have to their associated embed entity folder.
package/lib/cjs/types.js CHANGED
@@ -77,6 +77,7 @@ var EmbedConnectionRoles;
77
77
  (function (EmbedConnectionRoles) {
78
78
  EmbedConnectionRoles["RESTRICTED_QUERIER"] = "RESTRICTED_QUERIER";
79
79
  EmbedConnectionRoles["VIEWER"] = "VIEWER";
80
+ EmbedConnectionRoles["QUERIER"] = "QUERIER";
80
81
  })(EmbedConnectionRoles || (exports.EmbedConnectionRoles = EmbedConnectionRoles = {}));
81
82
  /**
82
83
  * Levels of access a user can have to their associated embed entity folder.
@@ -14,7 +14,7 @@ accessBoost, connectionRoles, customTheme, customThemeId, email, entity, entityF
14
14
  // We create a map of optional params and convert it to an array
15
15
  // to ensure that the order of the optional params is alphabetical and consistent.
16
16
  const optionalParamsMap = {
17
- ...(accessBoost && { accessBoost: accessBoost === null || accessBoost === void 0 ? void 0 : accessBoost.toString() }),
17
+ ...(accessBoost !== undefined && { accessBoost: accessBoost.toString() }),
18
18
  ...(connectionRoles && { connectionRoles }),
19
19
  ...(customTheme && { customTheme }),
20
20
  ...(customThemeId && { customThemeId }),
@@ -189,7 +189,8 @@ export declare const EmbedSsoContentDiscoveryPaths: readonly ["my", "entity-fold
189
189
  export type EmbedSsoContentDiscoveryPath = (typeof EmbedSsoContentDiscoveryPaths)[number];
190
190
  export declare enum EmbedConnectionRoles {
191
191
  RESTRICTED_QUERIER = "RESTRICTED_QUERIER",
192
- VIEWER = "VIEWER"
192
+ VIEWER = "VIEWER",
193
+ QUERIER = "QUERIER"
193
194
  }
194
195
  /**
195
196
  * Levels of access a user can have to their associated embed entity folder.
package/lib/esm/types.js CHANGED
@@ -74,6 +74,7 @@ export var EmbedConnectionRoles;
74
74
  (function (EmbedConnectionRoles) {
75
75
  EmbedConnectionRoles["RESTRICTED_QUERIER"] = "RESTRICTED_QUERIER";
76
76
  EmbedConnectionRoles["VIEWER"] = "VIEWER";
77
+ EmbedConnectionRoles["QUERIER"] = "QUERIER";
77
78
  })(EmbedConnectionRoles || (EmbedConnectionRoles = {}));
78
79
  /**
79
80
  * Levels of access a user can have to their associated embed entity folder.
package/package.json CHANGED
@@ -1,5 +1,5 @@
1
1
  {
2
- "version": "0.4.7",
2
+ "version": "0.4.9",
3
3
  "license": "MIT",
4
4
  "name": "@omni-co/embed",
5
5
  "author": "Nate Agrin <nate@exploreomni.com>",