@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 +1 -1
- package/types/scopes/generic.ts +7 -0
package/package.json
CHANGED
package/types/scopes/generic.ts
CHANGED
|
@@ -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
|
+
};
|