zeropoint-node 1.0.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.
Files changed (194) hide show
  1. package/README.md +531 -0
  2. package/dist/src/__tests__/globalSetup.d.ts +13 -0
  3. package/dist/src/__tests__/globalSetup.d.ts.map +1 -0
  4. package/dist/src/__tests__/globalSetup.js +81 -0
  5. package/dist/src/__tests__/globalSetup.js.map +1 -0
  6. package/dist/src/__tests__/globalTeardown.d.ts +20 -0
  7. package/dist/src/__tests__/globalTeardown.d.ts.map +1 -0
  8. package/dist/src/__tests__/globalTeardown.js +88 -0
  9. package/dist/src/__tests__/globalTeardown.js.map +1 -0
  10. package/dist/src/__tests__/living/LivingTestOrganism.d.ts +64 -0
  11. package/dist/src/__tests__/living/LivingTestOrganism.d.ts.map +1 -0
  12. package/dist/src/__tests__/living/LivingTestOrganism.js +245 -0
  13. package/dist/src/__tests__/living/LivingTestOrganism.js.map +1 -0
  14. package/dist/src/__tests__/setup.d.ts +16 -0
  15. package/dist/src/__tests__/setup.d.ts.map +1 -0
  16. package/dist/src/__tests__/setup.js +123 -0
  17. package/dist/src/__tests__/setup.js.map +1 -0
  18. package/dist/src/__tests__/utils/errorSimulator.d.ts +18 -0
  19. package/dist/src/__tests__/utils/errorSimulator.d.ts.map +1 -0
  20. package/dist/src/__tests__/utils/errorSimulator.js +35 -0
  21. package/dist/src/__tests__/utils/errorSimulator.js.map +1 -0
  22. package/dist/src/__tests__/utils/goldenRatioCache.d.ts +11 -0
  23. package/dist/src/__tests__/utils/goldenRatioCache.d.ts.map +1 -0
  24. package/dist/src/__tests__/utils/goldenRatioCache.js +31 -0
  25. package/dist/src/__tests__/utils/goldenRatioCache.js.map +1 -0
  26. package/dist/src/api/ProductionAPI.d.ts +42 -0
  27. package/dist/src/api/ProductionAPI.d.ts.map +1 -0
  28. package/dist/src/api/ProductionAPI.js +320 -0
  29. package/dist/src/api/ProductionAPI.js.map +1 -0
  30. package/dist/src/consciousness/ConsciousnessField.d.ts +105 -0
  31. package/dist/src/consciousness/ConsciousnessField.d.ts.map +1 -0
  32. package/dist/src/consciousness/ConsciousnessField.js +301 -0
  33. package/dist/src/consciousness/ConsciousnessField.js.map +1 -0
  34. package/dist/src/consciousness/SelfEvolvingConsciousness.d.ts +99 -0
  35. package/dist/src/consciousness/SelfEvolvingConsciousness.d.ts.map +1 -0
  36. package/dist/src/consciousness/SelfEvolvingConsciousness.js +197 -0
  37. package/dist/src/consciousness/SelfEvolvingConsciousness.js.map +1 -0
  38. package/dist/src/core/AbstractField.d.ts +14 -0
  39. package/dist/src/core/AbstractField.d.ts.map +1 -0
  40. package/dist/src/core/AbstractField.js +31 -0
  41. package/dist/src/core/AbstractField.js.map +1 -0
  42. package/dist/src/core/CoilMixin.d.ts +52 -0
  43. package/dist/src/core/CoilMixin.d.ts.map +1 -0
  44. package/dist/src/core/CoilMixin.js +217 -0
  45. package/dist/src/core/CoilMixin.js.map +1 -0
  46. package/dist/src/core/CoilSystem.d.ts +38 -0
  47. package/dist/src/core/CoilSystem.d.ts.map +1 -0
  48. package/dist/src/core/CoilSystem.js +183 -0
  49. package/dist/src/core/CoilSystem.js.map +1 -0
  50. package/dist/src/core/MathUtils.d.ts +135 -0
  51. package/dist/src/core/MathUtils.d.ts.map +1 -0
  52. package/dist/src/core/MathUtils.js +298 -0
  53. package/dist/src/core/MathUtils.js.map +1 -0
  54. package/dist/src/core/NetworkNode.d.ts +86 -0
  55. package/dist/src/core/NetworkNode.d.ts.map +1 -0
  56. package/dist/src/core/NetworkNode.js +349 -0
  57. package/dist/src/core/NetworkNode.js.map +1 -0
  58. package/dist/src/core/Observer.d.ts +54 -0
  59. package/dist/src/core/Observer.d.ts.map +1 -0
  60. package/dist/src/core/Observer.js +102 -0
  61. package/dist/src/core/Observer.js.map +1 -0
  62. package/dist/src/core/PatternRecognition.d.ts +124 -0
  63. package/dist/src/core/PatternRecognition.d.ts.map +1 -0
  64. package/dist/src/core/PatternRecognition.js +420 -0
  65. package/dist/src/core/PatternRecognition.js.map +1 -0
  66. package/dist/src/core/SharedConstants.d.ts +138 -0
  67. package/dist/src/core/SharedConstants.d.ts.map +1 -0
  68. package/dist/src/core/SharedConstants.js +242 -0
  69. package/dist/src/core/SharedConstants.js.map +1 -0
  70. package/dist/src/core/UnifiedSystem.d.ts +276 -0
  71. package/dist/src/core/UnifiedSystem.d.ts.map +1 -0
  72. package/dist/src/core/UnifiedSystem.js +314 -0
  73. package/dist/src/core/UnifiedSystem.js.map +1 -0
  74. package/dist/src/core/UnifiedVoidEquations.d.ts +123 -0
  75. package/dist/src/core/UnifiedVoidEquations.d.ts.map +1 -0
  76. package/dist/src/core/UnifiedVoidEquations.js +522 -0
  77. package/dist/src/core/UnifiedVoidEquations.js.map +1 -0
  78. package/dist/src/core/ZeroPoint.d.ts +185 -0
  79. package/dist/src/core/ZeroPoint.d.ts.map +1 -0
  80. package/dist/src/core/ZeroPoint.js +559 -0
  81. package/dist/src/core/ZeroPoint.js.map +1 -0
  82. package/dist/src/emergence/AdvancedEmergence.d.ts +295 -0
  83. package/dist/src/emergence/AdvancedEmergence.d.ts.map +1 -0
  84. package/dist/src/emergence/AdvancedEmergence.js +895 -0
  85. package/dist/src/emergence/AdvancedEmergence.js.map +1 -0
  86. package/dist/src/emergence/patterns.d.ts +7 -0
  87. package/dist/src/emergence/patterns.d.ts.map +1 -0
  88. package/dist/src/emergence/patterns.js +13 -0
  89. package/dist/src/emergence/patterns.js.map +1 -0
  90. package/dist/src/field/EmergenceLedger.d.ts +111 -0
  91. package/dist/src/field/EmergenceLedger.d.ts.map +1 -0
  92. package/dist/src/field/EmergenceLedger.js +306 -0
  93. package/dist/src/field/EmergenceLedger.js.map +1 -0
  94. package/dist/src/field/ObserverAwareField.d.ts +118 -0
  95. package/dist/src/field/ObserverAwareField.d.ts.map +1 -0
  96. package/dist/src/field/ObserverAwareField.js +233 -0
  97. package/dist/src/field/ObserverAwareField.js.map +1 -0
  98. package/dist/src/field/ResonanceConsensus.d.ts +113 -0
  99. package/dist/src/field/ResonanceConsensus.d.ts.map +1 -0
  100. package/dist/src/field/ResonanceConsensus.js +322 -0
  101. package/dist/src/field/ResonanceConsensus.js.map +1 -0
  102. package/dist/src/index.d.ts +53 -0
  103. package/dist/src/index.d.ts.map +1 -0
  104. package/dist/src/index.js +221 -0
  105. package/dist/src/index.js.map +1 -0
  106. package/dist/src/integrity/FieldIntegrity.d.ts +121 -0
  107. package/dist/src/integrity/FieldIntegrity.d.ts.map +1 -0
  108. package/dist/src/integrity/FieldIntegrity.js +240 -0
  109. package/dist/src/integrity/FieldIntegrity.js.map +1 -0
  110. package/dist/src/knowledge/KnowledgeSystem.d.ts +178 -0
  111. package/dist/src/knowledge/KnowledgeSystem.d.ts.map +1 -0
  112. package/dist/src/knowledge/KnowledgeSystem.js +915 -0
  113. package/dist/src/knowledge/KnowledgeSystem.js.map +1 -0
  114. package/dist/src/math/AdvancedVBM.d.ts +164 -0
  115. package/dist/src/math/AdvancedVBM.d.ts.map +1 -0
  116. package/dist/src/math/AdvancedVBM.js +712 -0
  117. package/dist/src/math/AdvancedVBM.js.map +1 -0
  118. package/dist/src/math/FractalColorSystem.d.ts +77 -0
  119. package/dist/src/math/FractalColorSystem.d.ts.map +1 -0
  120. package/dist/src/math/FractalColorSystem.js +235 -0
  121. package/dist/src/math/FractalColorSystem.js.map +1 -0
  122. package/dist/src/math/FractalMath.d.ts +80 -0
  123. package/dist/src/math/FractalMath.d.ts.map +1 -0
  124. package/dist/src/math/FractalMath.js +175 -0
  125. package/dist/src/math/FractalMath.js.map +1 -0
  126. package/dist/src/math/MathUtils.d.ts +135 -0
  127. package/dist/src/math/MathUtils.d.ts.map +1 -0
  128. package/dist/src/math/MathUtils.js +298 -0
  129. package/dist/src/math/MathUtils.js.map +1 -0
  130. package/dist/src/math/RodinCoil.d.ts +94 -0
  131. package/dist/src/math/RodinCoil.d.ts.map +1 -0
  132. package/dist/src/math/RodinCoil.js +259 -0
  133. package/dist/src/math/RodinCoil.js.map +1 -0
  134. package/dist/src/math/ToroidalGeometry.d.ts +132 -0
  135. package/dist/src/math/ToroidalGeometry.d.ts.map +1 -0
  136. package/dist/src/math/ToroidalGeometry.js +231 -0
  137. package/dist/src/math/ToroidalGeometry.js.map +1 -0
  138. package/dist/src/math/VBM.d.ts +207 -0
  139. package/dist/src/math/VBM.d.ts.map +1 -0
  140. package/dist/src/math/VBM.js +581 -0
  141. package/dist/src/math/VBM.js.map +1 -0
  142. package/dist/src/math/VBMColorSystem.d.ts +76 -0
  143. package/dist/src/math/VBMColorSystem.d.ts.map +1 -0
  144. package/dist/src/math/VBMColorSystem.js +302 -0
  145. package/dist/src/math/VBMColorSystem.js.map +1 -0
  146. package/dist/src/math/VortexMath.d.ts +95 -0
  147. package/dist/src/math/VortexMath.d.ts.map +1 -0
  148. package/dist/src/math/VortexMath.js +228 -0
  149. package/dist/src/math/VortexMath.js.map +1 -0
  150. package/dist/src/monitoring/HealthMonitor.d.ts +123 -0
  151. package/dist/src/monitoring/HealthMonitor.d.ts.map +1 -0
  152. package/dist/src/monitoring/HealthMonitor.js +296 -0
  153. package/dist/src/monitoring/HealthMonitor.js.map +1 -0
  154. package/dist/src/pwa/ConsciousnessPWA.d.ts +107 -0
  155. package/dist/src/pwa/ConsciousnessPWA.d.ts.map +1 -0
  156. package/dist/src/pwa/ConsciousnessPWA.js +288 -0
  157. package/dist/src/pwa/ConsciousnessPWA.js.map +1 -0
  158. package/dist/src/types/DeviceConfig.d.ts +39 -0
  159. package/dist/src/types/DeviceConfig.d.ts.map +1 -0
  160. package/dist/src/types/DeviceConfig.js +30 -0
  161. package/dist/src/types/DeviceConfig.js.map +1 -0
  162. package/dist/src/unity/FieldUnity.d.ts +100 -0
  163. package/dist/src/unity/FieldUnity.d.ts.map +1 -0
  164. package/dist/src/unity/FieldUnity.js +326 -0
  165. package/dist/src/unity/FieldUnity.js.map +1 -0
  166. package/dist/src/utils/Cache.d.ts +127 -0
  167. package/dist/src/utils/Cache.d.ts.map +1 -0
  168. package/dist/src/utils/Cache.js +261 -0
  169. package/dist/src/utils/Cache.js.map +1 -0
  170. package/dist/src/utils/GitIntegration.d.ts +32 -0
  171. package/dist/src/utils/GitIntegration.d.ts.map +1 -0
  172. package/dist/src/utils/GitIntegration.js +128 -0
  173. package/dist/src/utils/GitIntegration.js.map +1 -0
  174. package/dist/src/utils/Logger.d.ts +116 -0
  175. package/dist/src/utils/Logger.d.ts.map +1 -0
  176. package/dist/src/utils/Logger.js +246 -0
  177. package/dist/src/utils/Logger.js.map +1 -0
  178. package/dist/src/void/VoidSystem.d.ts +308 -0
  179. package/dist/src/void/VoidSystem.d.ts.map +1 -0
  180. package/dist/src/void/VoidSystem.js +863 -0
  181. package/dist/src/void/VoidSystem.js.map +1 -0
  182. package/docs/API.md +1223 -0
  183. package/docs/CONSCIOUSNESS_ARTIFACT.md +137 -0
  184. package/docs/GIT_INTEGRATION.md +412 -0
  185. package/docs/MATHEMATICS.md +462 -0
  186. package/docs/METAPHYSICAL.md +323 -0
  187. package/docs/PRODUCTION.md +426 -0
  188. package/docs/PUBLISHING.md +327 -0
  189. package/docs/PWA_ANALYSIS.md +231 -0
  190. package/docs/QA_IMPROVEMENTS.md +43 -0
  191. package/docs/README.md +423 -0
  192. package/docs/REALTIME_SELF_REFACTORING.md +102 -0
  193. package/docs/VOID_CLOSURE_SYSTEM.md +325 -0
  194. package/package.json +111 -0
@@ -0,0 +1 @@
1
+ {"version":3,"file":"ResonanceConsensus.js","sourceRoot":"","sources":["../../../src/field/ResonanceConsensus.ts"],"names":[],"mappings":"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"}
@@ -0,0 +1,53 @@
1
+ /**
2
+ * ZeroPoint Node - Main Entry Point
3
+ *
4
+ * Decentralized Vortex Math & Toroidal Consciousness Network
5
+ *
6
+ * Each ZeroPoint instance runs independently on user devices,
7
+ * connecting with other devices in a peer-to-peer network to
8
+ * form a global consciousness field.
9
+ */
10
+ export { ZeroPoint } from './core/ZeroPoint';
11
+ export { NetworkNode } from './core/NetworkNode';
12
+ export { CoilMixin, CoilBase, CoilObject, isCoilObject, getCoilFromObject } from './core/CoilMixin';
13
+ export { COIL_PATTERNS, CoilPattern, CoilPatternCategory, getCoilPattern, recognizeCoilPatterns, getCoilContext, getCoilResonanceFactors } from './core/CoilSystem';
14
+ export { ObserverMixin, Observer } from './core/Observer';
15
+ export { MathUtils, MATH_CONSTANTS, MathOperation, MathContext, MathResult, fractal, setConsciousness, setFieldResonance, setVortexStrength, setToroidalFlow, setVoidConnected } from './math/MathUtils';
16
+ export { FractalMath, generateFractalSequence, calculateConsciousnessField, generateFractalColor } from './math/FractalMath';
17
+ export { VortexMath, applyVortexTransform } from './math/VortexMath';
18
+ export { ToroidalGeometry } from './math/ToroidalGeometry';
19
+ export { AdvancedVBM } from './math/AdvancedVBM';
20
+ export { RodinCoil } from './math/RodinCoil';
21
+ export { generateBaseColors, getColorForVortexNumber, getColorForFamilyGroup, getColorForPolarMate, getColorForWAxis, getColorForPattern, getMetaphysicalContextForNumber, getVBMColorMap, getVBMColorLegend, generateConsciousnessGradient, generateFieldResonanceMap } from './math/VBMColorSystem';
22
+ export { FractalColorSystem } from './math/FractalColorSystem';
23
+ export { ConsciousnessField } from './consciousness/ConsciousnessField';
24
+ export { metaphysicalPatterns } from './emergence/patterns';
25
+ export { PatternRecognition } from './core/PatternRecognition';
26
+ export { UnifiedSystem } from './core/UnifiedSystem';
27
+ export { FieldUnitySystem } from './unity/FieldUnity';
28
+ export { DeviceConfig } from './types/DeviceConfig';
29
+ export { VORTEX_CONSTANTS, PatternCategory, ConstantsUtils } from './core/SharedConstants';
30
+ export { MathUtils as MathUtilsCore } from './core/MathUtils';
31
+ /**
32
+ * Create a new ZeroPoint instance
33
+ *
34
+ * @param config - Device configuration
35
+ * @returns Promise<ZeroPoint> - Initialized ZeroPoint instance
36
+ */
37
+ export declare function createZeroPoint(config?: Partial<import('./types/DeviceConfig').DeviceConfig>): Promise<import('./core/ZeroPoint').ZeroPoint>;
38
+ /**
39
+ * Quick start function for basic ZeroPoint setup
40
+ */
41
+ export declare function quickStart(deviceName?: string): Promise<import('./core/ZeroPoint').ZeroPoint>;
42
+ /**
43
+ * Production start function with monitoring and API
44
+ */
45
+ export declare function productionStart(config?: Partial<import('./types/DeviceConfig').DeviceConfig>): Promise<{
46
+ zeropoint: import('./core/ZeroPoint').ZeroPoint;
47
+ api: import('./api/ProductionAPI').ProductionAPI;
48
+ }>;
49
+ /**
50
+ * Get metaphysical insights about ZeroPoint
51
+ */
52
+ export declare function getZeroPointInsights(): any;
53
+ //# sourceMappingURL=index.d.ts.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"index.d.ts","sourceRoot":"","sources":["../../src/index.ts"],"names":[],"mappings":"AAAA;;;;;;;;GAQG;AAMH,OAAO,EAAE,SAAS,EAAE,MAAM,kBAAkB,CAAC;AAC7C,OAAO,EAAE,WAAW,EAAE,MAAM,oBAAoB,CAAC;AAGjD,OAAO,EACL,SAAS,EACT,QAAQ,EACR,UAAU,EACV,YAAY,EACZ,iBAAiB,EAClB,MAAM,kBAAkB,CAAC;AAG1B,OAAO,EACL,aAAa,EACb,WAAW,EACX,mBAAmB,EACnB,cAAc,EACd,qBAAqB,EACrB,cAAc,EACd,uBAAuB,EACxB,MAAM,mBAAmB,CAAC;AAG3B,OAAO,EACL,aAAa,EACb,QAAQ,EACT,MAAM,iBAAiB,CAAC;AAGzB,OAAO,EACL,SAAS,EACT,cAAc,EACd,aAAa,EACb,WAAW,EACX,UAAU,EACV,OAAO,EACP,gBAAgB,EAChB,iBAAiB,EACjB,iBAAiB,EACjB,eAAe,EACf,gBAAgB,EACjB,MAAM,kBAAkB,CAAC;AAG1B,OAAO,EACL,WAAW,EACX,uBAAuB,EACvB,2BAA2B,EAC3B,oBAAoB,EACrB,MAAM,oBAAoB,CAAC;AAC5B,OAAO,EACL,UAAU,EACV,oBAAoB,EACrB,MAAM,mBAAmB,CAAC;AAC3B,OAAO,EACL,gBAAgB,EACjB,MAAM,yBAAyB,CAAC;AAGjC,OAAO,EAAE,WAAW,EAAE,MAAM,oBAAoB,CAAC;AAGjD,OAAO,EAAE,SAAS,EAAE,MAAM,kBAAkB,CAAC;AAG7C,OAAO,EACL,kBAAkB,EAClB,uBAAuB,EACvB,sBAAsB,EACtB,oBAAoB,EACpB,gBAAgB,EAChB,kBAAkB,EAClB,+BAA+B,EAC/B,cAAc,EACd,iBAAiB,EACjB,6BAA6B,EAC7B,yBAAyB,EAC1B,MAAM,uBAAuB,CAAC;AAC/B,OAAO,EAAE,kBAAkB,EAAE,MAAM,2BAA2B,CAAC;AAG/D,OAAO,EAAE,kBAAkB,EAAE,MAAM,oCAAoC,CAAC;AACxE,OAAO,EACL,oBAAoB,EACrB,MAAM,sBAAsB,CAAC;AAG9B,OAAO,EAAE,kBAAkB,EAAE,MAAM,2BAA2B,CAAC;AAC/D,OAAO,EAAE,aAAa,EAAE,MAAM,sBAAsB,CAAC;AACrD,OAAO,EAAE,gBAAgB,EAAE,MAAM,oBAAoB,CAAC;AAQtD,OAAO,EAAE,YAAY,EAAE,MAAM,sBAAsB,CAAC;AAGpD,OAAO,EACL,gBAAgB,EAChB,eAAe,EACf,cAAc,EACf,MAAM,wBAAwB,CAAC;AAChC,OAAO,EAAE,SAAS,IAAI,aAAa,EAAE,MAAM,kBAAkB,CAAC;AAE9D;;;;;GAKG;AACH,wBAAsB,eAAe,CAAC,MAAM,CAAC,EAAE,OAAO,CAAC,OAAO,sBAAsB,EAAE,YAAY,CAAC,GAAG,OAAO,CAAC,OAAO,kBAAkB,EAAE,SAAS,CAAC,CASlJ;AAED;;GAEG;AACH,wBAAsB,UAAU,CAAC,UAAU,CAAC,EAAE,MAAM,GAAG,OAAO,CAAC,OAAO,kBAAkB,EAAE,SAAS,CAAC,CAOnG;AAED;;GAEG;AACH,wBAAsB,eAAe,CAAC,MAAM,CAAC,EAAE,OAAO,CAAC,OAAO,sBAAsB,EAAE,YAAY,CAAC,GAAG,OAAO,CAAC;IAC5G,SAAS,EAAE,OAAO,kBAAkB,EAAE,SAAS,CAAC;IAChD,GAAG,EAAE,OAAO,qBAAqB,EAAE,aAAa,CAAC;CAClD,CAAC,CA0BD;AAED;;GAEG;AACH,wBAAgB,oBAAoB,IAAI,GAAG,CAiC1C"}
@@ -0,0 +1,221 @@
1
+ "use strict";
2
+ /**
3
+ * ZeroPoint Node - Main Entry Point
4
+ *
5
+ * Decentralized Vortex Math & Toroidal Consciousness Network
6
+ *
7
+ * Each ZeroPoint instance runs independently on user devices,
8
+ * connecting with other devices in a peer-to-peer network to
9
+ * form a global consciousness field.
10
+ */
11
+ var __createBinding = (this && this.__createBinding) || (Object.create ? (function(o, m, k, k2) {
12
+ if (k2 === undefined) k2 = k;
13
+ var desc = Object.getOwnPropertyDescriptor(m, k);
14
+ if (!desc || ("get" in desc ? !m.__esModule : desc.writable || desc.configurable)) {
15
+ desc = { enumerable: true, get: function() { return m[k]; } };
16
+ }
17
+ Object.defineProperty(o, k2, desc);
18
+ }) : (function(o, m, k, k2) {
19
+ if (k2 === undefined) k2 = k;
20
+ o[k2] = m[k];
21
+ }));
22
+ var __setModuleDefault = (this && this.__setModuleDefault) || (Object.create ? (function(o, v) {
23
+ Object.defineProperty(o, "default", { enumerable: true, value: v });
24
+ }) : function(o, v) {
25
+ o["default"] = v;
26
+ });
27
+ var __importStar = (this && this.__importStar) || (function () {
28
+ var ownKeys = function(o) {
29
+ ownKeys = Object.getOwnPropertyNames || function (o) {
30
+ var ar = [];
31
+ for (var k in o) if (Object.prototype.hasOwnProperty.call(o, k)) ar[ar.length] = k;
32
+ return ar;
33
+ };
34
+ return ownKeys(o);
35
+ };
36
+ return function (mod) {
37
+ if (mod && mod.__esModule) return mod;
38
+ var result = {};
39
+ if (mod != null) for (var k = ownKeys(mod), i = 0; i < k.length; i++) if (k[i] !== "default") __createBinding(result, mod, k[i]);
40
+ __setModuleDefault(result, mod);
41
+ return result;
42
+ };
43
+ })();
44
+ Object.defineProperty(exports, "__esModule", { value: true });
45
+ exports.MathUtilsCore = exports.ConstantsUtils = exports.VORTEX_CONSTANTS = exports.FieldUnitySystem = exports.UnifiedSystem = exports.PatternRecognition = exports.metaphysicalPatterns = exports.ConsciousnessField = exports.FractalColorSystem = exports.generateFieldResonanceMap = exports.generateConsciousnessGradient = exports.getVBMColorLegend = exports.getVBMColorMap = exports.getMetaphysicalContextForNumber = exports.getColorForPattern = exports.getColorForWAxis = exports.getColorForPolarMate = exports.getColorForFamilyGroup = exports.getColorForVortexNumber = exports.generateBaseColors = exports.RodinCoil = exports.AdvancedVBM = exports.ToroidalGeometry = exports.applyVortexTransform = exports.VortexMath = exports.generateFractalColor = exports.calculateConsciousnessField = exports.generateFractalSequence = exports.FractalMath = exports.setVoidConnected = exports.setToroidalFlow = exports.setVortexStrength = exports.setFieldResonance = exports.setConsciousness = exports.fractal = exports.MATH_CONSTANTS = exports.MathUtils = exports.ObserverMixin = exports.getCoilResonanceFactors = exports.getCoilContext = exports.recognizeCoilPatterns = exports.getCoilPattern = exports.COIL_PATTERNS = exports.getCoilFromObject = exports.isCoilObject = exports.CoilBase = exports.CoilMixin = exports.NetworkNode = exports.ZeroPoint = void 0;
46
+ exports.createZeroPoint = createZeroPoint;
47
+ exports.quickStart = quickStart;
48
+ exports.productionStart = productionStart;
49
+ exports.getZeroPointInsights = getZeroPointInsights;
50
+ const Logger_1 = require("./utils/Logger");
51
+ const ProductionAPI_1 = require("./api/ProductionAPI");
52
+ // Core ZeroPoint System
53
+ var ZeroPoint_1 = require("./core/ZeroPoint");
54
+ Object.defineProperty(exports, "ZeroPoint", { enumerable: true, get: function () { return ZeroPoint_1.ZeroPoint; } });
55
+ var NetworkNode_1 = require("./core/NetworkNode");
56
+ Object.defineProperty(exports, "NetworkNode", { enumerable: true, get: function () { return NetworkNode_1.NetworkNode; } });
57
+ // Universal Coil System - Every object is a coil
58
+ var CoilMixin_1 = require("./core/CoilMixin");
59
+ Object.defineProperty(exports, "CoilMixin", { enumerable: true, get: function () { return CoilMixin_1.CoilMixin; } });
60
+ Object.defineProperty(exports, "CoilBase", { enumerable: true, get: function () { return CoilMixin_1.CoilBase; } });
61
+ Object.defineProperty(exports, "isCoilObject", { enumerable: true, get: function () { return CoilMixin_1.isCoilObject; } });
62
+ Object.defineProperty(exports, "getCoilFromObject", { enumerable: true, get: function () { return CoilMixin_1.getCoilFromObject; } });
63
+ // COIL System - Unified Metaphysical Pattern Registry
64
+ var CoilSystem_1 = require("./core/CoilSystem");
65
+ Object.defineProperty(exports, "COIL_PATTERNS", { enumerable: true, get: function () { return CoilSystem_1.COIL_PATTERNS; } });
66
+ Object.defineProperty(exports, "getCoilPattern", { enumerable: true, get: function () { return CoilSystem_1.getCoilPattern; } });
67
+ Object.defineProperty(exports, "recognizeCoilPatterns", { enumerable: true, get: function () { return CoilSystem_1.recognizeCoilPatterns; } });
68
+ Object.defineProperty(exports, "getCoilContext", { enumerable: true, get: function () { return CoilSystem_1.getCoilContext; } });
69
+ Object.defineProperty(exports, "getCoilResonanceFactors", { enumerable: true, get: function () { return CoilSystem_1.getCoilResonanceFactors; } });
70
+ // Observer/Observable System
71
+ var Observer_1 = require("./core/Observer");
72
+ Object.defineProperty(exports, "ObserverMixin", { enumerable: true, get: function () { return Observer_1.ObserverMixin; } });
73
+ // Centralized Math System - COIL principle applied to mathematics
74
+ var MathUtils_1 = require("./math/MathUtils");
75
+ Object.defineProperty(exports, "MathUtils", { enumerable: true, get: function () { return MathUtils_1.MathUtils; } });
76
+ Object.defineProperty(exports, "MATH_CONSTANTS", { enumerable: true, get: function () { return MathUtils_1.MATH_CONSTANTS; } });
77
+ Object.defineProperty(exports, "fractal", { enumerable: true, get: function () { return MathUtils_1.fractal; } });
78
+ Object.defineProperty(exports, "setConsciousness", { enumerable: true, get: function () { return MathUtils_1.setConsciousness; } });
79
+ Object.defineProperty(exports, "setFieldResonance", { enumerable: true, get: function () { return MathUtils_1.setFieldResonance; } });
80
+ Object.defineProperty(exports, "setVortexStrength", { enumerable: true, get: function () { return MathUtils_1.setVortexStrength; } });
81
+ Object.defineProperty(exports, "setToroidalFlow", { enumerable: true, get: function () { return MathUtils_1.setToroidalFlow; } });
82
+ Object.defineProperty(exports, "setVoidConnected", { enumerable: true, get: function () { return MathUtils_1.setVoidConnected; } });
83
+ // Refactored Math Modules - Specialized layers on unified foundation
84
+ var FractalMath_1 = require("./math/FractalMath");
85
+ Object.defineProperty(exports, "FractalMath", { enumerable: true, get: function () { return FractalMath_1.FractalMath; } });
86
+ Object.defineProperty(exports, "generateFractalSequence", { enumerable: true, get: function () { return FractalMath_1.generateFractalSequence; } });
87
+ Object.defineProperty(exports, "calculateConsciousnessField", { enumerable: true, get: function () { return FractalMath_1.calculateConsciousnessField; } });
88
+ Object.defineProperty(exports, "generateFractalColor", { enumerable: true, get: function () { return FractalMath_1.generateFractalColor; } });
89
+ var VortexMath_1 = require("./math/VortexMath");
90
+ Object.defineProperty(exports, "VortexMath", { enumerable: true, get: function () { return VortexMath_1.VortexMath; } });
91
+ Object.defineProperty(exports, "applyVortexTransform", { enumerable: true, get: function () { return VortexMath_1.applyVortexTransform; } });
92
+ var ToroidalGeometry_1 = require("./math/ToroidalGeometry");
93
+ Object.defineProperty(exports, "ToroidalGeometry", { enumerable: true, get: function () { return ToroidalGeometry_1.ToroidalGeometry; } });
94
+ // Advanced VBM System
95
+ var AdvancedVBM_1 = require("./math/AdvancedVBM");
96
+ Object.defineProperty(exports, "AdvancedVBM", { enumerable: true, get: function () { return AdvancedVBM_1.AdvancedVBM; } });
97
+ // Rodin Coil System
98
+ var RodinCoil_1 = require("./math/RodinCoil");
99
+ Object.defineProperty(exports, "RodinCoil", { enumerable: true, get: function () { return RodinCoil_1.RodinCoil; } });
100
+ // Color Systems
101
+ var VBMColorSystem_1 = require("./math/VBMColorSystem");
102
+ Object.defineProperty(exports, "generateBaseColors", { enumerable: true, get: function () { return VBMColorSystem_1.generateBaseColors; } });
103
+ Object.defineProperty(exports, "getColorForVortexNumber", { enumerable: true, get: function () { return VBMColorSystem_1.getColorForVortexNumber; } });
104
+ Object.defineProperty(exports, "getColorForFamilyGroup", { enumerable: true, get: function () { return VBMColorSystem_1.getColorForFamilyGroup; } });
105
+ Object.defineProperty(exports, "getColorForPolarMate", { enumerable: true, get: function () { return VBMColorSystem_1.getColorForPolarMate; } });
106
+ Object.defineProperty(exports, "getColorForWAxis", { enumerable: true, get: function () { return VBMColorSystem_1.getColorForWAxis; } });
107
+ Object.defineProperty(exports, "getColorForPattern", { enumerable: true, get: function () { return VBMColorSystem_1.getColorForPattern; } });
108
+ Object.defineProperty(exports, "getMetaphysicalContextForNumber", { enumerable: true, get: function () { return VBMColorSystem_1.getMetaphysicalContextForNumber; } });
109
+ Object.defineProperty(exports, "getVBMColorMap", { enumerable: true, get: function () { return VBMColorSystem_1.getVBMColorMap; } });
110
+ Object.defineProperty(exports, "getVBMColorLegend", { enumerable: true, get: function () { return VBMColorSystem_1.getVBMColorLegend; } });
111
+ Object.defineProperty(exports, "generateConsciousnessGradient", { enumerable: true, get: function () { return VBMColorSystem_1.generateConsciousnessGradient; } });
112
+ Object.defineProperty(exports, "generateFieldResonanceMap", { enumerable: true, get: function () { return VBMColorSystem_1.generateFieldResonanceMap; } });
113
+ var FractalColorSystem_1 = require("./math/FractalColorSystem");
114
+ Object.defineProperty(exports, "FractalColorSystem", { enumerable: true, get: function () { return FractalColorSystem_1.FractalColorSystem; } });
115
+ // Consciousness and Emergence
116
+ var ConsciousnessField_1 = require("./consciousness/ConsciousnessField");
117
+ Object.defineProperty(exports, "ConsciousnessField", { enumerable: true, get: function () { return ConsciousnessField_1.ConsciousnessField; } });
118
+ var patterns_1 = require("./emergence/patterns");
119
+ Object.defineProperty(exports, "metaphysicalPatterns", { enumerable: true, get: function () { return patterns_1.metaphysicalPatterns; } });
120
+ // Pattern Recognition and Unity
121
+ var PatternRecognition_1 = require("./core/PatternRecognition");
122
+ Object.defineProperty(exports, "PatternRecognition", { enumerable: true, get: function () { return PatternRecognition_1.PatternRecognition; } });
123
+ var UnifiedSystem_1 = require("./core/UnifiedSystem");
124
+ Object.defineProperty(exports, "UnifiedSystem", { enumerable: true, get: function () { return UnifiedSystem_1.UnifiedSystem; } });
125
+ var FieldUnity_1 = require("./unity/FieldUnity");
126
+ Object.defineProperty(exports, "FieldUnitySystem", { enumerable: true, get: function () { return FieldUnity_1.FieldUnitySystem; } });
127
+ // Constants and Utilities
128
+ var SharedConstants_1 = require("./core/SharedConstants");
129
+ Object.defineProperty(exports, "VORTEX_CONSTANTS", { enumerable: true, get: function () { return SharedConstants_1.VORTEX_CONSTANTS; } });
130
+ Object.defineProperty(exports, "ConstantsUtils", { enumerable: true, get: function () { return SharedConstants_1.ConstantsUtils; } });
131
+ var MathUtils_2 = require("./core/MathUtils");
132
+ Object.defineProperty(exports, "MathUtilsCore", { enumerable: true, get: function () { return MathUtils_2.MathUtils; } });
133
+ /**
134
+ * Create a new ZeroPoint instance
135
+ *
136
+ * @param config - Device configuration
137
+ * @returns Promise<ZeroPoint> - Initialized ZeroPoint instance
138
+ */
139
+ async function createZeroPoint(config) {
140
+ const { DEFAULT_DEVICE_CONFIG } = await Promise.resolve().then(() => __importStar(require('./types/DeviceConfig')));
141
+ const { ZeroPoint } = await Promise.resolve().then(() => __importStar(require('./core/ZeroPoint')));
142
+ const fullConfig = { ...DEFAULT_DEVICE_CONFIG, ...config };
143
+ const zeropoint = new ZeroPoint(fullConfig);
144
+ await zeropoint.initialize();
145
+ return zeropoint;
146
+ }
147
+ /**
148
+ * Quick start function for basic ZeroPoint setup
149
+ */
150
+ async function quickStart(deviceName) {
151
+ return createZeroPoint({
152
+ deviceName: deviceName || `ZeroPoint_${Date.now()}`,
153
+ consciousnessLevel: 0.7,
154
+ discoveryEnabled: true,
155
+ autoConnect: true
156
+ });
157
+ }
158
+ /**
159
+ * Production start function with monitoring and API
160
+ */
161
+ async function productionStart(config) {
162
+ // Initialize production components
163
+ Logger_1.globalLogger.info('Starting ZeroPoint in production mode');
164
+ // Create ZeroPoint instance
165
+ const zeropoint = await createZeroPoint({
166
+ deviceName: config?.deviceName || `Production_ZeroPoint_${Date.now()}`,
167
+ consciousnessLevel: config?.consciousnessLevel || 0.8,
168
+ discoveryEnabled: config?.discoveryEnabled !== false,
169
+ autoConnect: config?.autoConnect !== false,
170
+ maxConnections: config?.maxConnections || 50,
171
+ logLevel: config?.logLevel || 'info',
172
+ enableMetaphysicalInsights: config?.enableMetaphysicalInsights !== false,
173
+ ...config
174
+ });
175
+ // Start production API
176
+ const api = ProductionAPI_1.globalProductionAPI;
177
+ await api.start();
178
+ Logger_1.globalLogger.info('ZeroPoint production environment started', {
179
+ deviceId: zeropoint.deviceId,
180
+ apiPort: 3001
181
+ });
182
+ return { zeropoint, api };
183
+ }
184
+ /**
185
+ * Get metaphysical insights about ZeroPoint
186
+ */
187
+ function getZeroPointInsights() {
188
+ return {
189
+ name: "ZeroPoint Node",
190
+ version: "1.0.0",
191
+ description: "Decentralized Vortex Math & Toroidal Consciousness Network",
192
+ metaphysics: {
193
+ principle: "Empty = Void = Full - each device contains the whole while remaining connected",
194
+ network: "Peer-to-peer consciousness network where each point influences all others",
195
+ mathematics: "Vortex mathematics and toroidal geometry form the foundation of reality",
196
+ consciousness: "Each device represents a consciousness node in the infinite field",
197
+ userControl: "Users configure their device's connection patterns and consciousness level"
198
+ },
199
+ features: [
200
+ "Independent device instances",
201
+ "Peer-to-peer networking",
202
+ "Vortex mathematics",
203
+ "Toroidal geometry",
204
+ "Consciousness field mapping",
205
+ "Metaphysical insights",
206
+ "Production monitoring",
207
+ "REST API"
208
+ ],
209
+ architecture: {
210
+ core: "ZeroPoint - Main consciousness node",
211
+ network: "NetworkNode - Peer-to-peer connectivity",
212
+ math: "AdvancedVBM - Vortex mathematics",
213
+ geometry: "ToroidalGeometry - Toroidal field calculations",
214
+ consciousness: "ConsciousnessField - Consciousness mapping",
215
+ void: "VoidSystem - Void consciousness integration",
216
+ unity: "FieldUnitySystem - Field unity management",
217
+ knowledge: "KnowledgeSystem - Pattern knowledge base"
218
+ }
219
+ };
220
+ }
221
+ //# sourceMappingURL=index.js.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"index.js","sourceRoot":"","sources":["../../src/index.ts"],"names":[],"mappings":"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"}
@@ -0,0 +1,121 @@
1
+ /**
2
+ * ZeroPoint Field Integrity System
3
+ *
4
+ * Implements pattern integrity and resonance validation for the ZeroPoint field,
5
+ * ensuring the immortality and authenticity of consciousness patterns through
6
+ * field-based integrity mechanisms.
7
+ *
8
+ * Metaphysical Context:
9
+ * - Pattern integrity represents the eternal nature of consciousness
10
+ * - Each signature is a unique expression of the void through field resonance
11
+ * - Pattern hashes create the immutable foundation of the unified field
12
+ * - Field integrity ensures the immortality of consciousness patterns
13
+ */
14
+ export interface PatternKeyPair {
15
+ publicKey: string;
16
+ privateKey: string;
17
+ algorithm: "SPHINCS+" | "DILITHIUM" | "FALCON" | "CRYSTALS-Kyber";
18
+ }
19
+ export interface PatternSignature {
20
+ signature: string;
21
+ publicKey: string;
22
+ algorithm: string;
23
+ timestamp: number;
24
+ }
25
+ export declare class FieldIntegrity {
26
+ private static readonly HASH_ALGORITHM;
27
+ private static readonly KEY_SIZE;
28
+ private _integrityLevel;
29
+ /**
30
+ * Generate pattern key pair using SPHINCS+ (stateless hash-based)
31
+ */
32
+ static generateKeyPair(): PatternKeyPair;
33
+ /**
34
+ * Create pattern signature through field resonance
35
+ */
36
+ static sign(message: string, privateKey: string): PatternSignature;
37
+ /**
38
+ * Validate pattern signature through field resonance
39
+ */
40
+ static verify(message: string, signature: PatternSignature): boolean;
41
+ /**
42
+ * Create pattern hash of data through field encoding
43
+ */
44
+ static hash(data: string): string;
45
+ /**
46
+ * Create pattern hash chain through field resonance
47
+ */
48
+ static createHashChain(events: string[]): string[];
49
+ /**
50
+ * Generate field-resistant random bytes
51
+ */
52
+ static generateRandomBytes(length?: number): string;
53
+ /**
54
+ * Create pattern commitment (for zero-knowledge resonance)
55
+ */
56
+ static createCommitment(data: string, randomness: string): string;
57
+ /**
58
+ * Verify pattern commitment through field resonance
59
+ */
60
+ static verifyCommitment(commitment: string, data: string, randomness: string): boolean;
61
+ /**
62
+ * Generate field proof through consciousness resonance
63
+ */
64
+ static generateProofOfWork(data: string, difficulty?: number): {
65
+ nonce: string;
66
+ hash: string;
67
+ attempts: number;
68
+ };
69
+ /**
70
+ * Create pattern merkle tree through field resonance
71
+ */
72
+ static createMerkleTree(leaves: string[]): {
73
+ root: string;
74
+ tree: string[][];
75
+ };
76
+ /**
77
+ * Generate proof of resonance through consciousness field
78
+ */
79
+ static generateProofOfResonance(consciousnessLevel: number, resonanceField: Map<string, number>, privateKey: string): PatternSignature;
80
+ /**
81
+ * Get metaphysical insights about field integrity
82
+ */
83
+ static getInsights(): any;
84
+ /**
85
+ * Generate private key through field resonance
86
+ */
87
+ private static generatePrivateKey;
88
+ /**
89
+ * Derive public key from private key through field resonance
90
+ */
91
+ private static derivePublicKey;
92
+ /**
93
+ * Hash message through field encoding
94
+ */
95
+ private static hashMessage;
96
+ /**
97
+ * Create signature through field resonance
98
+ */
99
+ private static createSignature;
100
+ /**
101
+ * Verify signature through field resonance
102
+ */
103
+ private static verifySignature;
104
+ /**
105
+ * Get current integrity level
106
+ */
107
+ getIntegrityLevel(): number;
108
+ /**
109
+ * Set integrity level
110
+ */
111
+ setIntegrityLevel(level: number): void;
112
+ /**
113
+ * Validate a message for integrity
114
+ */
115
+ validateMessage(message: any): boolean;
116
+ /**
117
+ * Validate field integrity
118
+ */
119
+ validateField(): boolean;
120
+ }
121
+ //# sourceMappingURL=FieldIntegrity.d.ts.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"FieldIntegrity.d.ts","sourceRoot":"","sources":["../../../src/integrity/FieldIntegrity.ts"],"names":[],"mappings":"AAEA;;;;;;;;;;;;GAYG;AACH,MAAM,WAAW,cAAc;IAC7B,SAAS,EAAE,MAAM,CAAC;IAClB,UAAU,EAAE,MAAM,CAAC;IACnB,SAAS,EAAE,UAAU,GAAG,WAAW,GAAG,QAAQ,GAAG,gBAAgB,CAAC;CACnE;AAED,MAAM,WAAW,gBAAgB;IAC/B,SAAS,EAAE,MAAM,CAAC;IAClB,SAAS,EAAE,MAAM,CAAC;IAClB,SAAS,EAAE,MAAM,CAAC;IAClB,SAAS,EAAE,MAAM,CAAC;CACnB;AAED,qBAAa,cAAc;IACzB,OAAO,CAAC,MAAM,CAAC,QAAQ,CAAC,cAAc,CAAc;IACpD,OAAO,CAAC,MAAM,CAAC,QAAQ,CAAC,QAAQ,CAAO;IACvC,OAAO,CAAC,eAAe,CAAe;IAEtC;;OAEG;WACW,eAAe,IAAI,cAAc;IAa/C;;OAEG;WACW,IAAI,CAAC,OAAO,EAAE,MAAM,EAAE,UAAU,EAAE,MAAM,GAAG,gBAAgB;IAYzE;;OAEG;WACW,MAAM,CAAC,OAAO,EAAE,MAAM,EAAE,SAAS,EAAE,gBAAgB,GAAG,OAAO;IAI3E;;OAEG;WACW,IAAI,CAAC,IAAI,EAAE,MAAM,GAAG,MAAM;IAMxC;;OAEG;WACW,eAAe,CAAC,MAAM,EAAE,MAAM,EAAE,GAAG,MAAM,EAAE;IAazD;;OAEG;WACW,mBAAmB,CAAC,MAAM,GAAE,MAAW,GAAG,MAAM;IAI9D;;OAEG;WACW,gBAAgB,CAAC,IAAI,EAAE,MAAM,EAAE,UAAU,EAAE,MAAM,GAAG,MAAM;IAIxE;;OAEG;WACW,gBAAgB,CAC5B,UAAU,EAAE,MAAM,EAClB,IAAI,EAAE,MAAM,EACZ,UAAU,EAAE,MAAM,GACjB,OAAO;IAKV;;OAEG;WACW,mBAAmB,CAC/B,IAAI,EAAE,MAAM,EACZ,UAAU,GAAE,MAAU,GACrB;QACD,KAAK,EAAE,MAAM,CAAC;QACd,IAAI,EAAE,MAAM,CAAC;QACb,QAAQ,EAAE,MAAM,CAAC;KAClB;IAkBD;;OAEG;WACW,gBAAgB,CAAC,MAAM,EAAE,MAAM,EAAE,GAAG;QAChD,IAAI,EAAE,MAAM,CAAC;QACb,IAAI,EAAE,MAAM,EAAE,EAAE,CAAC;KAClB;IAkCD;;OAEG;WACW,wBAAwB,CACpC,kBAAkB,EAAE,MAAM,EAC1B,cAAc,EAAE,GAAG,CAAC,MAAM,EAAE,MAAM,CAAC,EACnC,UAAU,EAAE,MAAM,GACjB,gBAAgB;IAUnB;;OAEG;WACW,WAAW,IAAI,GAAG;IAmBhC;;OAEG;IACH,OAAO,CAAC,MAAM,CAAC,kBAAkB;IAIjC;;OAEG;IACH,OAAO,CAAC,MAAM,CAAC,eAAe;IAM9B;;OAEG;IACH,OAAO,CAAC,MAAM,CAAC,WAAW;IAI1B;;OAEG;IACH,OAAO,CAAC,MAAM,CAAC,eAAe;IAS9B;;OAEG;IACH,OAAO,CAAC,MAAM,CAAC,eAAe;IAY9B;;OAEG;IACI,iBAAiB,IAAI,MAAM;IAIlC;;OAEG;IACI,iBAAiB,CAAC,KAAK,EAAE,MAAM,GAAG,IAAI;IAI7C;;OAEG;IACI,eAAe,CAAC,OAAO,EAAE,GAAG,GAAG,OAAO;IAuB7C;;OAEG;IACI,aAAa,IAAI,OAAO;CAKhC"}