chart2txt 0.7.0 → 0.8.0

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/dist/index.d.ts CHANGED
@@ -8,6 +8,8 @@ export { chart2txt } from './chart2txt';
8
8
  export { analyzeCharts } from './core/analysis';
9
9
  export { groupAspects } from './core/grouping';
10
10
  export { formatReportToText } from './formatters/text/textFormatter';
11
+ export { humandesign2txt, humandesignPartnership2txt, buildChart, analyzePartnership } from './humandesign2txt';
12
+ export type { HumanDesignApiResponse, HumanDesignChart, HumanDesign2TxtOptions, HumanDesignPartnership2TxtOptions, HumanDesignPartnership, ChannelConnection, GateConnection, Activation, Channel } from './humandesign2txt';
11
13
  export * from './types';
12
14
  export { DEFAULT_SETTINGS, DEFAULT_ASPECTS, ZODIAC_SIGNS } from './constants';
13
15
  export { ChartSettings } from './config/ChartSettings';
package/dist/index.js CHANGED
@@ -20,8 +20,8 @@ var __exportStar = (this && this.__exportStar) || function(m, exports) {
20
20
  for (var p in m) if (p !== "default" && !Object.prototype.hasOwnProperty.call(exports, p)) __createBinding(exports, m, p);
21
21
  };
22
22
  Object.defineProperty(exports, "__esModule", { value: true });
23
- exports.ChartSettings = exports.ZODIAC_SIGNS = exports.DEFAULT_ASPECTS = exports.DEFAULT_SETTINGS = exports.formatReportToText = exports.groupAspects = exports.analyzeCharts = exports.chart2txt = void 0;
24
- // Core functions
23
+ exports.ChartSettings = exports.ZODIAC_SIGNS = exports.DEFAULT_ASPECTS = exports.DEFAULT_SETTINGS = exports.analyzePartnership = exports.buildChart = exports.humandesignPartnership2txt = exports.humandesign2txt = exports.formatReportToText = exports.groupAspects = exports.analyzeCharts = exports.chart2txt = void 0;
24
+ // Core functions - Astrology
25
25
  var chart2txt_1 = require("./chart2txt");
26
26
  Object.defineProperty(exports, "chart2txt", { enumerable: true, get: function () { return chart2txt_1.chart2txt; } });
27
27
  var analysis_1 = require("./core/analysis");
@@ -30,6 +30,12 @@ var grouping_1 = require("./core/grouping");
30
30
  Object.defineProperty(exports, "groupAspects", { enumerable: true, get: function () { return grouping_1.groupAspects; } });
31
31
  var textFormatter_1 = require("./formatters/text/textFormatter");
32
32
  Object.defineProperty(exports, "formatReportToText", { enumerable: true, get: function () { return textFormatter_1.formatReportToText; } });
33
+ // Core functions - Human Design
34
+ var humandesign2txt_1 = require("./humandesign2txt");
35
+ Object.defineProperty(exports, "humandesign2txt", { enumerable: true, get: function () { return humandesign2txt_1.humandesign2txt; } });
36
+ Object.defineProperty(exports, "humandesignPartnership2txt", { enumerable: true, get: function () { return humandesign2txt_1.humandesignPartnership2txt; } });
37
+ Object.defineProperty(exports, "buildChart", { enumerable: true, get: function () { return humandesign2txt_1.buildChart; } });
38
+ Object.defineProperty(exports, "analyzePartnership", { enumerable: true, get: function () { return humandesign2txt_1.analyzePartnership; } });
33
39
  // Export all types for library users
34
40
  __exportStar(require("./types"), exports);
35
41
  // Export constants that might be useful for users (e.g., for custom settings)
package/dist/types.d.ts CHANGED
@@ -175,6 +175,8 @@ export interface AnalysisSettings {
175
175
  skipOutOfSignAspects?: boolean;
176
176
  includeAspectPatterns?: boolean;
177
177
  includeSignDistributions?: boolean;
178
+ includeDispositors?: boolean | 'finals';
179
+ includeHouseOverlays?: boolean;
178
180
  }
179
181
  export interface GroupingSettings {
180
182
  aspectStrengthThresholds?: AspectStrengthThresholds;
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "chart2txt",
3
- "version": "0.7.0",
3
+ "version": "0.8.0",
4
4
  "description": "Convert astrological chart data to human-readable text",
5
5
  "main": "dist/index.js",
6
6
  "types": "dist/index.d.ts",