@zodic/shared 0.0.53 → 0.0.55

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.53",
3
+ "version": "0.0.55",
4
4
  "module": "index.ts",
5
5
  "type": "module",
6
6
  "publishConfig": {
@@ -7,59 +7,16 @@ export type ProviderInfo = {
7
7
  resourceUrl: string;
8
8
  };
9
9
 
10
- export type PlanetData = {
11
- // for frontend
12
- id: string;
13
- name: string;
14
- image: string;
15
- title: string;
16
- sign: string;
17
- house: string;
18
- retrograde: 'YES' | 'NO';
19
- degree: string;
20
- description: {
21
- signText: string;
22
- houseText: string;
23
- };
10
+ export const ArtifactList = {
11
+ COSMIC_MIRROR: 'cosmic-mirror',
24
12
  };
25
13
 
26
- export type PlanetsData = PlanetData[];
27
-
28
- export type CelestialBody =
29
- | 'Sun'
30
- | 'Moon'
31
- | 'Mercury'
32
- | 'Venus'
33
- | 'Mars'
34
- | 'Jupiter'
35
- | 'Saturn'
36
- | 'Neptune'
37
- | 'Uranus'
38
- | 'Pluto'
39
- | 'Ascendant'
40
- | 'Descendant'
41
- | 'Midheaven'
42
- | 'Imum Coeli'
43
- | 'North Node'
44
- | 'South Node'
45
- | 'Chiron'
46
- | 'Pars Fortuna'
47
- | 'Lilith'
48
- | 'Vertex'
49
- | 'Antivertex';
50
-
51
- export type HouseData = {
52
- id: string;
53
- number: number;
54
- title: string;
55
- sign: string;
56
- degree: string;
57
- description: {
58
- houseText: string;
59
- };
14
+ export const ProductType = {
15
+ ARTIFACT: 'artifact',
16
+ CONCEPT: 'concept',
17
+ REPORT: 'report',
60
18
  };
61
19
 
62
- export type HousesData = HouseData[];
63
20
 
64
21
  export const VALID_GENDERS_ARRAY = ['male', 'female', 'non-binary'] as const;
65
22
 
@@ -1,8 +1,6 @@
1
1
  import { BackendBindings } from './cloudflare';
2
2
  import { Gender } from './generic';
3
3
 
4
-
5
-
6
4
  export const zodiacSigns = [
7
5
  'Aries',
8
6
  'Taurus',