@shakerquiz/utilities 0.3.26 → 0.3.28

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,6 +1,6 @@
1
1
  {
2
2
  "name": "@shakerquiz/utilities",
3
- "version": "0.3.26",
3
+ "version": "0.3.28",
4
4
  "author": "yurkimus <yurkimus@gmail.com>",
5
5
  "license": "ISC",
6
6
  "scripts": {
@@ -0,0 +1,4 @@
1
+ export namespace Lineups {
2
+ let Main: "Main";
3
+ let Reserve: "Reserve";
4
+ }
@@ -0,0 +1,4 @@
1
+ export var Lineups = /** @type {const} */ ({
2
+ Main: 'Main',
3
+ Reserve: 'Reserve',
4
+ })
@@ -0,0 +1,5 @@
1
+ export namespace RegistrationStatuses {
2
+ let Cancelled: "Cancelled";
3
+ let Confirmed: "Confirmed";
4
+ let Registered: "Registered";
5
+ }
@@ -0,0 +1,5 @@
1
+ export var RegistrationStatuses = /** @type {const} */ ({
2
+ Cancelled: 'Cancelled',
3
+ Confirmed: 'Confirmed',
4
+ Registered: 'Registered',
5
+ })
@@ -59,6 +59,11 @@ type Role = keyof typeof import('./enumerations/roles.js').Roles
59
59
  type GameStatus =
60
60
  keyof typeof import('./enumerations/game-statuses.js').GameStatuses
61
61
 
62
+ type RegistrationStatus =
63
+ keyof typeof import('./enumerations/registration-statuses.js').RegistrationStatuses
64
+
65
+ type Lineup = keyof typeof import('./enumerations/lineups.js').Lineups
66
+
62
67
  /**
63
68
  * Misc
64
69
  */
package/source/index.d.ts CHANGED
@@ -19,12 +19,14 @@ export * from './enumerations/frontends.js'
19
19
  export * from './enumerations/game-statuses.js'
20
20
  export * from './enumerations/icons.js'
21
21
  export * from './enumerations/kinds.js'
22
+ export * from './enumerations/lineups.js'
22
23
  export * from './enumerations/methods.js'
23
24
  export * from './enumerations/networks.js'
24
25
  export * from './enumerations/pages.js'
25
26
  export * from './enumerations/phases.js'
26
27
  export * from './enumerations/procedures.js'
27
28
  export * from './enumerations/regexps.js'
29
+ export * from './enumerations/registration-statuses.js'
28
30
  export * from './enumerations/requirements.js'
29
31
  export * from './enumerations/roles.js'
30
32
  export * from './enumerations/services.js'
package/source/index.js CHANGED
@@ -19,12 +19,14 @@ export * from './enumerations/frontends.js'
19
19
  export * from './enumerations/game-statuses.js'
20
20
  export * from './enumerations/icons.js'
21
21
  export * from './enumerations/kinds.js'
22
+ export * from './enumerations/lineups.js'
22
23
  export * from './enumerations/methods.js'
23
24
  export * from './enumerations/networks.js'
24
25
  export * from './enumerations/pages.js'
25
26
  export * from './enumerations/phases.js'
26
27
  export * from './enumerations/procedures.js'
27
28
  export * from './enumerations/regexps.js'
29
+ export * from './enumerations/registration-statuses.js'
28
30
  export * from './enumerations/requirements.js'
29
31
  export * from './enumerations/roles.js'
30
32
  export * from './enumerations/services.js'