@shakerquiz/utilities 0.5.204 → 0.5.205

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 CHANGED
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "type": "module",
3
3
  "name": "@shakerquiz/utilities",
4
- "version": "0.5.204",
4
+ "version": "0.5.205",
5
5
  "author": "yurkimus <yurkimus@gmail.com>",
6
6
  "license": "ISC",
7
7
  "repository": {
@@ -16,6 +16,7 @@ export const AffilationTitle = Object.freeze({
16
16
  export const AffilationIcon = Object.freeze({
17
17
  [Affilation['Branch']]: 'hero/outline/building-office-2',
18
18
  [Affilation['Franchise']]: 'hero/outline/building-storefront',
19
+ ['Unknown']: 'hero/outline/no-symbol',
19
20
  })
20
21
 
21
22
  const ValueAffilation = Object.freeze({
@@ -13,6 +13,12 @@ export const VersionTitle = Object.freeze({
13
13
  [Version['Legacy']]: 'Старая',
14
14
  })
15
15
 
16
+ export const VersionIcon = Object.freeze({
17
+ [Version['Actual']]: 'hero/outline/no-symbol',
18
+ [Version['Legacy']]: 'hero/outline/no-symbol',
19
+ ['Unknown']: 'hero/outline/no-symbol',
20
+ })
21
+
16
22
  const ValueChatappVersion = Object.freeze({
17
23
  'false': Version['Actual'],
18
24
  'true': Version['Legacy'],