@shakerquiz/utilities 0.3.29 → 0.3.31

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.29",
3
+ "version": "0.3.31",
4
4
  "author": "yurkimus <yurkimus@gmail.com>",
5
5
  "license": "ISC",
6
6
  "scripts": {
@@ -0,0 +1,4 @@
1
+ export namespace Affilations {
2
+ let Branch: "Branch";
3
+ let Franchise: "Franchise";
4
+ }
@@ -0,0 +1,4 @@
1
+ export var Affilations = /** @type {const} */ ({
2
+ Branch: 'Branch',
3
+ Franchise: 'Franchise',
4
+ })
@@ -64,6 +64,9 @@ type RegistrationStatus =
64
64
 
65
65
  type Lineup = keyof typeof import('./enumerations/lineups.js').Lineups
66
66
 
67
+ type Affilation =
68
+ keyof typeof import('./enumerations/affilations.js').Affilations
69
+
67
70
  /**
68
71
  * Misc
69
72
  */
package/source/index.d.ts CHANGED
@@ -9,6 +9,7 @@
9
9
  /// <reference path='./user.d.ts' />
10
10
  /// <reference path='./venue.d.ts' />
11
11
 
12
+ export * from './enumerations/affilations.js'
12
13
  export * from './enumerations/backends.js'
13
14
  export * from './enumerations/constants.js'
14
15
  export * from './enumerations/cookies.js'
package/source/index.js CHANGED
@@ -9,6 +9,7 @@
9
9
  /// <reference path='./user.d.ts' />
10
10
  /// <reference path='./venue.d.ts' />
11
11
 
12
+ export * from './enumerations/affilations.js'
12
13
  export * from './enumerations/backends.js'
13
14
  export * from './enumerations/constants.js'
14
15
  export * from './enumerations/cookies.js'