@shakerquiz/utilities 0.4.50 → 0.4.52
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
|
@@ -0,0 +1 @@
|
|
|
1
|
+
export const RegistrationChannels: readonly ["email", "telegramBot", "vkontakte"];
|
package/source/misc.d.ts
CHANGED
|
@@ -49,6 +49,9 @@ type GameStatus = (typeof import('./enumerations/entities/game-statuses.js').Gam
|
|
|
49
49
|
type RegistrationAttribute =
|
|
50
50
|
(typeof import('./enumerations/entities/registration-attributes.js').RegistrationAttributes)[number]
|
|
51
51
|
|
|
52
|
+
type RegistrationChannel =
|
|
53
|
+
(typeof import('./enumerations/entities/registration-channels.js').RegistrationChannels)[number]
|
|
54
|
+
|
|
52
55
|
type RegistrationLineup = (typeof import('./enumerations/entities/registration-lineups.js').RegistrationLineups)[number]
|
|
53
56
|
|
|
54
57
|
type RegistrationStatus =
|