@zodic/shared 0.0.40 → 0.0.42

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": "@zodic/shared",
3
- "version": "0.0.40",
3
+ "version": "0.0.42",
4
4
  "module": "index.ts",
5
5
  "type": "module",
6
6
  "publishConfig": {
@@ -1,3 +1,5 @@
1
+ import { ConceptPhase } from "./legacy";
2
+
1
3
  export type Provider = 'google' | 'facebook';
2
4
 
3
5
  export type ProviderInfo = {
@@ -135,5 +137,5 @@ export type Concept = 'crown' | 'scepter' | 'amulet' | 'lantern' | 'orb';
135
137
  export type ConceptQueueMessage = {
136
138
  conceptSlug: string;
137
139
  combinationString: string;
138
- phase: string;
140
+ phase: ConceptPhase;
139
141
  };