@shakerquiz/utilities 0.5.105 → 0.5.106

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.105",
4
+ "version": "0.5.106",
5
5
  "author": "yurkimus <yurkimus@gmail.com>",
6
6
  "license": "ISC",
7
7
  "repository": {
@@ -10,6 +10,11 @@ export var VenueCityModes = [
10
10
  VenueCityMode['unknown'],
11
11
  ]
12
12
 
13
+ export var DerivedVenueCityModes = [
14
+ VenueCityMode['known'],
15
+ VenueCityMode['unknown'],
16
+ ]
17
+
13
18
  export var VenueCityModeTitle = /** @type {const} */ ({
14
19
  [VenueCityMode['any']]: 'Любой',
15
20
  [VenueCityMode['known']]: 'Назначен',
@@ -12,7 +12,7 @@ export var VenueStatuses = [
12
12
  VenueStatus['UNKNOWN'],
13
13
  ]
14
14
 
15
- export var WritableVenueStatuses = [
15
+ export var PersistedVenueStatuses = [
16
16
  VenueStatus['ACTIVE'],
17
17
  VenueStatus['ARCHIVE'],
18
18
  ]