@shakerquiz/utilities 4.0.27 → 4.0.29

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": "4.0.27",
4
+ "version": "4.0.29",
5
5
  "author": "yurkimus <yurkimus@gmail.com>",
6
6
  "license": "ISC",
7
7
  "repository": {
@@ -138,13 +138,10 @@ export const RoleGameStatusGameStatuses = Object.freeze({
138
138
 
139
139
  [Role['organizer']]: Object.freeze({
140
140
  [GameStatus['APPROVED']]: Object.freeze([
141
- GameStatus['APPROVED'],
142
141
  GameStatus['CLOSED'],
143
142
  GameStatus['FORINVITES'],
144
143
  GameStatus['PUBLISHED'],
145
144
  GameStatus['IS_RESERVE'],
146
- GameStatus['FINISHED'],
147
- GameStatus['ARCHIVE'],
148
145
  ]),
149
146
 
150
147
  [GameStatus['ARCHIVE']]: Object.freeze([]),
@@ -157,14 +154,15 @@ export const RoleGameStatusGameStatuses = Object.freeze({
157
154
 
158
155
  [GameStatus['IS_RESERVE']]: Object.freeze([]),
159
156
 
160
- [GameStatus['MODERATION']]: Object.freeze([
161
- GameStatus['MODERATION'],
162
- ]),
157
+ [GameStatus['MODERATION']]: Object.freeze([]),
163
158
 
164
- [GameStatus['PUBLISHED']]: Object.freeze([]),
159
+ [GameStatus['PUBLISHED']]: Object.freeze([
160
+ GameStatus['CLOSED'],
161
+ GameStatus['FORINVITES'],
162
+ GameStatus['IS_RESERVE'],
163
+ ]),
165
164
 
166
165
  [GameStatus['REJECTED']]: Object.freeze([
167
- GameStatus['REJECTED'],
168
166
  GameStatus['MODERATION'],
169
167
  ]),
170
168
  }),
@@ -209,6 +207,7 @@ export const RoleGameStatuses = Object.freeze({
209
207
  GameStatus['FINISHED'],
210
208
  GameStatus['FORINVITES'],
211
209
  GameStatus['IS_RESERVE'],
210
+ GameStatus['MODERATION'],
212
211
  GameStatus['PUBLISHED'],
213
212
  ]),
214
213