thoth-cli 0.2.22 → 0.2.27
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/README.md +17 -17
- package/bin/darwin-arm64/thoth-core +0 -0
- package/dist/bin.js +287 -2
- package/dist/{chunk-X7IGMJUH.js → chunk-7N4ZNTPI.js} +750 -0
- package/dist/index.d.ts +122 -1
- package/dist/index.js +29 -1
- package/package.json +1 -1
package/dist/index.d.ts
CHANGED
|
@@ -817,6 +817,122 @@ declare function tarotDeck(filter?: string): Promise<ThothResult<TarotDeckResult
|
|
|
817
817
|
*/
|
|
818
818
|
declare function tarotSpreads(): Promise<ThothResult<TarotSpreadsResult>>;
|
|
819
819
|
|
|
820
|
+
/**
|
|
821
|
+
* Gematria computation engine
|
|
822
|
+
* 𓅝
|
|
823
|
+
*/
|
|
824
|
+
interface NotableWord {
|
|
825
|
+
word: string;
|
|
826
|
+
transliteration: string;
|
|
827
|
+
meaning: string;
|
|
828
|
+
system: string;
|
|
829
|
+
}
|
|
830
|
+
declare function transliterateToHebrew(text: string): string;
|
|
831
|
+
interface GematriaSystemValue {
|
|
832
|
+
name: string;
|
|
833
|
+
value: number;
|
|
834
|
+
key: string;
|
|
835
|
+
}
|
|
836
|
+
interface GematriaResult {
|
|
837
|
+
text: string;
|
|
838
|
+
systems: GematriaSystemValue[];
|
|
839
|
+
transliteration?: string;
|
|
840
|
+
notable: Array<{
|
|
841
|
+
value: number;
|
|
842
|
+
matches: NotableWord[];
|
|
843
|
+
}>;
|
|
844
|
+
}
|
|
845
|
+
interface GematriaCompareResult {
|
|
846
|
+
text1: GematriaResult;
|
|
847
|
+
text2: GematriaResult;
|
|
848
|
+
shared_values: Array<{
|
|
849
|
+
system: string;
|
|
850
|
+
value: number;
|
|
851
|
+
}>;
|
|
852
|
+
}
|
|
853
|
+
interface GematriaLookupResult {
|
|
854
|
+
number: number;
|
|
855
|
+
system?: string;
|
|
856
|
+
matches: NotableWord[];
|
|
857
|
+
}
|
|
858
|
+
declare function calculateGematria(text: string, systemFilter?: string): GematriaResult;
|
|
859
|
+
declare function compareGematria(text1: string, text2: string, systemFilter?: string): GematriaCompareResult;
|
|
860
|
+
declare function lookupGematria(number: number, systemFilter?: string, limit?: number): GematriaLookupResult;
|
|
861
|
+
|
|
862
|
+
/**
|
|
863
|
+
* Numerology computation engine
|
|
864
|
+
* 𓅝
|
|
865
|
+
*/
|
|
866
|
+
interface LetterBreakdown {
|
|
867
|
+
letter: string;
|
|
868
|
+
value: number;
|
|
869
|
+
type: 'vowel' | 'consonant';
|
|
870
|
+
}
|
|
871
|
+
interface NameNumerology {
|
|
872
|
+
name: string;
|
|
873
|
+
letters: LetterBreakdown[];
|
|
874
|
+
expression: {
|
|
875
|
+
sum: number;
|
|
876
|
+
reduced: number;
|
|
877
|
+
steps: string;
|
|
878
|
+
};
|
|
879
|
+
soul_urge: {
|
|
880
|
+
sum: number;
|
|
881
|
+
reduced: number;
|
|
882
|
+
steps: string;
|
|
883
|
+
};
|
|
884
|
+
personality: {
|
|
885
|
+
sum: number;
|
|
886
|
+
reduced: number;
|
|
887
|
+
steps: string;
|
|
888
|
+
};
|
|
889
|
+
}
|
|
890
|
+
declare function calculateNameNumerology(name: string): NameNumerology;
|
|
891
|
+
interface LifePath {
|
|
892
|
+
date: string;
|
|
893
|
+
month: {
|
|
894
|
+
value: number;
|
|
895
|
+
reduced: number;
|
|
896
|
+
};
|
|
897
|
+
day: {
|
|
898
|
+
value: number;
|
|
899
|
+
reduced: number;
|
|
900
|
+
};
|
|
901
|
+
year: {
|
|
902
|
+
value: number;
|
|
903
|
+
reduced: number;
|
|
904
|
+
};
|
|
905
|
+
life_path: number;
|
|
906
|
+
steps: string;
|
|
907
|
+
}
|
|
908
|
+
declare function calculateLifePath(year: number, month: number, day: number): LifePath;
|
|
909
|
+
interface NumerologyResult {
|
|
910
|
+
name_analysis?: NameNumerology;
|
|
911
|
+
life_path?: LifePath;
|
|
912
|
+
}
|
|
913
|
+
declare function calculateNumerology(options: {
|
|
914
|
+
name?: string;
|
|
915
|
+
date?: string;
|
|
916
|
+
}): NumerologyResult;
|
|
917
|
+
interface PersonalCycle {
|
|
918
|
+
birth_date: string;
|
|
919
|
+
target_date: string;
|
|
920
|
+
personal_year: {
|
|
921
|
+
value: number;
|
|
922
|
+
steps: string;
|
|
923
|
+
};
|
|
924
|
+
personal_month: {
|
|
925
|
+
value: number;
|
|
926
|
+
steps: string;
|
|
927
|
+
};
|
|
928
|
+
personal_day: {
|
|
929
|
+
value: number;
|
|
930
|
+
steps: string;
|
|
931
|
+
};
|
|
932
|
+
}
|
|
933
|
+
declare function calculatePersonalCycle(birthDate: string, targetDate?: string): PersonalCycle;
|
|
934
|
+
declare function getNumberMeaning(n: number): string;
|
|
935
|
+
|
|
820
936
|
/**
|
|
821
937
|
* Output formatting utilities
|
|
822
938
|
* 𓅝
|
|
@@ -918,5 +1034,10 @@ declare function formatTarotDeck(result: any): string;
|
|
|
918
1034
|
* Format available spreads
|
|
919
1035
|
*/
|
|
920
1036
|
declare function formatTarotSpreads(result: any): string;
|
|
1037
|
+
declare function formatGematria(result: GematriaResult): string;
|
|
1038
|
+
declare function formatGematriaCompare(result: GematriaCompareResult): string;
|
|
1039
|
+
declare function formatGematriaLookup(result: GematriaLookupResult): string;
|
|
1040
|
+
declare function formatNumerology(result: NumerologyResult): string;
|
|
1041
|
+
declare function formatNumerologyYear(result: PersonalCycle): string;
|
|
921
1042
|
|
|
922
|
-
export { type Aspect, type ChartOptions, type ChartResult, type CompositeOptions, type CompositeResult, type DirectedPlanet, type EphemerisMultiOptions, type EphemerisMultiResult, type EphemerisOptions, type EphemerisPosition, type EphemerisRangeOptions, type EphemerisRangeResult, type EphemerisResult, type HoraryHouse, type HoraryOptions, type HoraryResult, type House, type LunarPhase, type LunarReturnOptions, type LunarReturnResult, type MoonAspect, type MoonExtendedOptions, type MoonExtendedResult, type MoonOptions, type MoonResult, type Planet, type ProgressionsOptions, type ProgressionsResult, type RetrogradeStation, type ScoreOptions, type ScoreResult, type SignChange, type SolarArcOptions, type SolarArcResult, type SolarReturnOptions, type SolarReturnResult, type SynastryOptions, type SynastryResult, type TarotCard, type TarotDeckResult, type TarotDrawOptions, type TarotDrawResult, type TarotSpread, type TarotSpreadsResult, type ThothError, type ThothResult, type TransitOptions, type TransitResult, type TransitScanOptions, type TransitScanResult, chart, composite, ephemeris, ephemerisMulti, ephemerisRange, formatChart, formatComposite, formatDegrees, formatEphemeris, formatEphemerisMulti, formatEphemerisRange, formatHorary, formatLunarReturn, formatMoon, formatMoonExtended, formatProgressions, formatScore, formatSolarArc, formatSolarReturn, formatSynastry, formatTarotCard, formatTarotDeck, formatTarotDraw, formatTarotSpreads, formatTransitScan, formatTransits, getAspectSymbol, getPlanetSymbol, getZodiacSymbol, horary, isError, lunarReturn, moon, moonExtended, progressions, score, solarArc, solarReturn, synastry, tarotCard, tarotDeck, tarotDraw, tarotSpreads, transit, transitScan, version };
|
|
1043
|
+
export { type Aspect, type ChartOptions, type ChartResult, type CompositeOptions, type CompositeResult, type DirectedPlanet, type EphemerisMultiOptions, type EphemerisMultiResult, type EphemerisOptions, type EphemerisPosition, type EphemerisRangeOptions, type EphemerisRangeResult, type EphemerisResult, type GematriaCompareResult, type GematriaLookupResult, type GematriaResult, type GematriaSystemValue, type HoraryHouse, type HoraryOptions, type HoraryResult, type House, type LifePath, type LunarPhase, type LunarReturnOptions, type LunarReturnResult, type MoonAspect, type MoonExtendedOptions, type MoonExtendedResult, type MoonOptions, type MoonResult, type NameNumerology, type NotableWord, type NumerologyResult, type PersonalCycle, type Planet, type ProgressionsOptions, type ProgressionsResult, type RetrogradeStation, type ScoreOptions, type ScoreResult, type SignChange, type SolarArcOptions, type SolarArcResult, type SolarReturnOptions, type SolarReturnResult, type SynastryOptions, type SynastryResult, type TarotCard, type TarotDeckResult, type TarotDrawOptions, type TarotDrawResult, type TarotSpread, type TarotSpreadsResult, type ThothError, type ThothResult, type TransitOptions, type TransitResult, type TransitScanOptions, type TransitScanResult, calculateGematria, calculateLifePath, calculateNameNumerology, calculateNumerology, calculatePersonalCycle, chart, compareGematria, composite, ephemeris, ephemerisMulti, ephemerisRange, formatChart, formatComposite, formatDegrees, formatEphemeris, formatEphemerisMulti, formatEphemerisRange, formatGematria, formatGematriaCompare, formatGematriaLookup, formatHorary, formatLunarReturn, formatMoon, formatMoonExtended, formatNumerology, formatNumerologyYear, formatProgressions, formatScore, formatSolarArc, formatSolarReturn, formatSynastry, formatTarotCard, formatTarotDeck, formatTarotDraw, formatTarotSpreads, formatTransitScan, formatTransits, getAspectSymbol, getNumberMeaning, getPlanetSymbol, getZodiacSymbol, horary, isError, lookupGematria, lunarReturn, moon, moonExtended, progressions, score, solarArc, solarReturn, synastry, tarotCard, tarotDeck, tarotDraw, tarotSpreads, transit, transitScan, transliterateToHebrew, version };
|
package/dist/index.js
CHANGED
|
@@ -1,5 +1,11 @@
|
|
|
1
1
|
import {
|
|
2
|
+
calculateGematria,
|
|
3
|
+
calculateLifePath,
|
|
4
|
+
calculateNameNumerology,
|
|
5
|
+
calculateNumerology,
|
|
6
|
+
calculatePersonalCycle,
|
|
2
7
|
chart,
|
|
8
|
+
compareGematria,
|
|
3
9
|
composite,
|
|
4
10
|
ephemeris,
|
|
5
11
|
ephemerisMulti,
|
|
@@ -10,10 +16,15 @@ import {
|
|
|
10
16
|
formatEphemeris,
|
|
11
17
|
formatEphemerisMulti,
|
|
12
18
|
formatEphemerisRange,
|
|
19
|
+
formatGematria,
|
|
20
|
+
formatGematriaCompare,
|
|
21
|
+
formatGematriaLookup,
|
|
13
22
|
formatHorary,
|
|
14
23
|
formatLunarReturn,
|
|
15
24
|
formatMoon,
|
|
16
25
|
formatMoonExtended,
|
|
26
|
+
formatNumerology,
|
|
27
|
+
formatNumerologyYear,
|
|
17
28
|
formatProgressions,
|
|
18
29
|
formatScore,
|
|
19
30
|
formatSolarArc,
|
|
@@ -26,10 +37,12 @@ import {
|
|
|
26
37
|
formatTransitScan,
|
|
27
38
|
formatTransits,
|
|
28
39
|
getAspectSymbol,
|
|
40
|
+
getNumberMeaning,
|
|
29
41
|
getPlanetSymbol,
|
|
30
42
|
getZodiacSymbol,
|
|
31
43
|
horary,
|
|
32
44
|
isError,
|
|
45
|
+
lookupGematria,
|
|
33
46
|
lunarReturn,
|
|
34
47
|
moon,
|
|
35
48
|
moonExtended,
|
|
@@ -44,10 +57,17 @@ import {
|
|
|
44
57
|
tarotSpreads,
|
|
45
58
|
transit,
|
|
46
59
|
transitScan,
|
|
60
|
+
transliterateToHebrew,
|
|
47
61
|
version
|
|
48
|
-
} from "./chunk-
|
|
62
|
+
} from "./chunk-7N4ZNTPI.js";
|
|
49
63
|
export {
|
|
64
|
+
calculateGematria,
|
|
65
|
+
calculateLifePath,
|
|
66
|
+
calculateNameNumerology,
|
|
67
|
+
calculateNumerology,
|
|
68
|
+
calculatePersonalCycle,
|
|
50
69
|
chart,
|
|
70
|
+
compareGematria,
|
|
51
71
|
composite,
|
|
52
72
|
ephemeris,
|
|
53
73
|
ephemerisMulti,
|
|
@@ -58,10 +78,15 @@ export {
|
|
|
58
78
|
formatEphemeris,
|
|
59
79
|
formatEphemerisMulti,
|
|
60
80
|
formatEphemerisRange,
|
|
81
|
+
formatGematria,
|
|
82
|
+
formatGematriaCompare,
|
|
83
|
+
formatGematriaLookup,
|
|
61
84
|
formatHorary,
|
|
62
85
|
formatLunarReturn,
|
|
63
86
|
formatMoon,
|
|
64
87
|
formatMoonExtended,
|
|
88
|
+
formatNumerology,
|
|
89
|
+
formatNumerologyYear,
|
|
65
90
|
formatProgressions,
|
|
66
91
|
formatScore,
|
|
67
92
|
formatSolarArc,
|
|
@@ -74,10 +99,12 @@ export {
|
|
|
74
99
|
formatTransitScan,
|
|
75
100
|
formatTransits,
|
|
76
101
|
getAspectSymbol,
|
|
102
|
+
getNumberMeaning,
|
|
77
103
|
getPlanetSymbol,
|
|
78
104
|
getZodiacSymbol,
|
|
79
105
|
horary,
|
|
80
106
|
isError,
|
|
107
|
+
lookupGematria,
|
|
81
108
|
lunarReturn,
|
|
82
109
|
moon,
|
|
83
110
|
moonExtended,
|
|
@@ -92,5 +119,6 @@ export {
|
|
|
92
119
|
tarotSpreads,
|
|
93
120
|
transit,
|
|
94
121
|
transitScan,
|
|
122
|
+
transliterateToHebrew,
|
|
95
123
|
version
|
|
96
124
|
};
|
package/package.json
CHANGED