@omni-co/embed 0.4.8 → 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.
- package/lib/cjs/signature.js +1 -1
- package/lib/esm/signature.js +1 -1
- package/package.json +1 -1
package/lib/cjs/signature.js
CHANGED
|
@@ -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
|
|
24
|
+
...(accessBoost !== undefined && { accessBoost: accessBoost.toString() }),
|
|
25
25
|
...(connectionRoles && { connectionRoles }),
|
|
26
26
|
...(customTheme && { customTheme }),
|
|
27
27
|
...(customThemeId && { customThemeId }),
|
package/lib/esm/signature.js
CHANGED
|
@@ -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
|
|
17
|
+
...(accessBoost !== undefined && { accessBoost: accessBoost.toString() }),
|
|
18
18
|
...(connectionRoles && { connectionRoles }),
|
|
19
19
|
...(customTheme && { customTheme }),
|
|
20
20
|
...(customThemeId && { customThemeId }),
|
package/package.json
CHANGED