@shakerquiz/utilities 0.2.45 → 0.2.47

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.2.45",
3
+ "version": "0.2.47",
4
4
  "author": "yurkimus <yurkimus@gmail.com>",
5
5
  "license": "ISC",
6
6
  "exports": {
@@ -1 +1 @@
1
- export function setFeatureNetworkOrigins(origins: Record<Service, Record<Network, URL["origin"]>>): void;
1
+ export function setFeatureNetworkOrigins(origins: Partial<Record<Service, Partial<Record<Network, URL["origin"]>>>>): void;
@@ -40,6 +40,11 @@ type Network = keyof typeof import('./enumerations/networks.d.ts').Networks
40
40
 
41
41
  type Service = keyof typeof import('./enumerations/services.d.ts').Services
42
42
 
43
+ type Phase = keyof typeof import('./enumerations/phases.d.ts').Phases
44
+
45
+ type GameStatus =
46
+ keyof typeof import('./enumerations/game-statuses.d.ts').GameStatuses
47
+
43
48
  type Requirement =
44
49
  keyof typeof import('./enumerations/requirements.d.ts').Requirements
45
50