@ttahub/common 2.0.14 → 2.0.15
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/package.json +1 -1
- package/src/constants.js +4 -4
package/package.json
CHANGED
package/src/constants.js
CHANGED
|
@@ -324,9 +324,9 @@ const EVENT_AUDIENCE = [
|
|
|
324
324
|
|
|
325
325
|
exports.EVENT_AUDIENCE = EVENT_AUDIENCE;
|
|
326
326
|
|
|
327
|
-
const GROUP_SHARED_WITH =
|
|
328
|
-
'Everyone',
|
|
329
|
-
'Individuals',
|
|
330
|
-
|
|
327
|
+
const GROUP_SHARED_WITH = {
|
|
328
|
+
EVERYONE: 'Everyone',
|
|
329
|
+
INDIVIDUALS: 'Individuals',
|
|
330
|
+
};
|
|
331
331
|
|
|
332
332
|
exports.GROUP_SHARED_WITH = GROUP_SHARED_WITH;
|