@zodic/shared 0.0.39 → 0.0.41

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.39",
3
+ "version": "0.0.41",
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 = {
@@ -132,3 +134,8 @@ export interface Crown {
132
134
  }
133
135
 
134
136
  export type Concept = 'crown' | 'scepter' | 'amulet' | 'lantern' | 'orb';
137
+ export type ConceptQueueMessage = {
138
+ conceptSlug: string;
139
+ combinationString: string;
140
+ phase: ConceptPhase;
141
+ };