zeropoint-node 1.0.0 → 1.0.1

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 (323) hide show
  1. package/README.md +38 -105
  2. package/dist/__tests__/api/ProductionAPI.test.js +20 -0
  3. package/dist/__tests__/artifacts/ArtifactRegistry.test.js +248 -0
  4. package/dist/__tests__/basic.test.js +104 -0
  5. package/dist/__tests__/config/constants.test.js +20 -0
  6. package/dist/__tests__/consciousness/ConsciousnessField.test.js +20 -0
  7. package/dist/__tests__/consciousness/SelfEvolvingConsciousness.test.js +185 -0
  8. package/dist/__tests__/core/AbstractField.test.js +81 -0
  9. package/dist/__tests__/core/CoilMixin.test.js +20 -0
  10. package/dist/__tests__/core/CoilSystem.test.js +20 -0
  11. package/dist/__tests__/core/ComplianceSystem.test.js +141 -0
  12. package/dist/__tests__/core/InfiniteDimensionalRefactor.test.js +258 -0
  13. package/dist/__tests__/core/LivingAdapter.test.js +31 -0
  14. package/dist/__tests__/core/MathUtils.test.js +20 -0
  15. package/dist/__tests__/core/NetworkNode.test.js +20 -0
  16. package/dist/__tests__/core/Observer.test.js +20 -0
  17. package/dist/__tests__/core/OperationRegistry.test.js +48 -0
  18. package/dist/__tests__/core/PatternRecognition.test.js +20 -0
  19. package/dist/__tests__/core/PatternRegistry.test.js +20 -0
  20. package/dist/__tests__/core/ScientificCompliance.test.js +58 -0
  21. package/dist/__tests__/core/SharedConstants.test.js +20 -0
  22. package/dist/__tests__/core/UnifiedMetaphysicalInterface.test.js +20 -0
  23. package/dist/__tests__/core/UnifiedSystem.test.js +20 -0
  24. package/dist/__tests__/core/UnifiedTypes.test.js +20 -0
  25. package/dist/__tests__/core/UnifiedVoidEquations.test.js +20 -0
  26. package/dist/__tests__/core/VortexMathAdapter.test.js +31 -0
  27. package/dist/__tests__/core/ZeroPoint.test.js +71 -0
  28. package/dist/__tests__/core/ZeroPointSystem.test.js +219 -0
  29. package/dist/__tests__/emergence/patterns.test.js +20 -0
  30. package/dist/__tests__/field/EmergenceLedger.test.js +20 -0
  31. package/dist/__tests__/field/ObserverAwareField.test.js +20 -0
  32. package/dist/__tests__/field/ResonanceConsensus.test.js +20 -0
  33. package/dist/__tests__/git-integration.test.js +201 -0
  34. package/dist/__tests__/globalSetup.js +80 -0
  35. package/dist/__tests__/globalTeardown.js +28 -0
  36. package/dist/__tests__/index.test.js +20 -0
  37. package/dist/__tests__/integration/ZeroPointIntegration.test.js +221 -0
  38. package/dist/__tests__/integrity/FieldIntegrity.test.js +20 -0
  39. package/dist/__tests__/knowledge/KnowledgeSystem.test.js +158 -0
  40. package/dist/__tests__/knowledge/KnowledgeSystemAnalysis.test.js +219 -0
  41. package/dist/__tests__/knowledge/KnowledgeSystemAutoGenerated.test.js +41 -0
  42. package/dist/__tests__/laws/MetaphysicalLawRegistry.test.js +183 -0
  43. package/dist/__tests__/living/LivingTestOrganism.js +246 -0
  44. package/dist/__tests__/living/LivingTestOrganism.test.js +124 -0
  45. package/dist/__tests__/math/AdvancedVBM.test.js +367 -0
  46. package/dist/__tests__/math/FlowerOfLife.test.js +344 -0
  47. package/dist/__tests__/math/FractalColorSystem.test.js +20 -0
  48. package/dist/__tests__/math/FractalMath.test.js +20 -0
  49. package/dist/__tests__/math/MathUtils.test.js +20 -0
  50. package/dist/__tests__/math/RodinCoil.test.js +20 -0
  51. package/dist/__tests__/math/ToroidalGeometry.test.js +20 -0
  52. package/dist/__tests__/math/VBM.test.js +538 -0
  53. package/dist/__tests__/math/VBMColorSystem.test.js +20 -0
  54. package/dist/__tests__/math/VortexMath.test.js +20 -0
  55. package/dist/__tests__/math/ZeroUnity.test.js +77 -0
  56. package/dist/__tests__/monitoring/HealthMonitor.test.js +20 -0
  57. package/dist/__tests__/performance/ZeroPointPerformance.test.js +371 -0
  58. package/dist/__tests__/physics/PlasmaCosmology.test.js +155 -0
  59. package/dist/__tests__/pwa/ConsciousnessPWA.test.js +20 -0
  60. package/dist/__tests__/qa/AutoGeneratedFromQA.test.js +195 -0
  61. package/dist/__tests__/qa/QAAsSourceOfTruth.test.js +69 -0
  62. package/dist/__tests__/setup.js +132 -0
  63. package/dist/__tests__/simple.test.js +51 -0
  64. package/dist/__tests__/stimulus/Application.test.js +272 -0
  65. package/dist/__tests__/stimulus/BaseController.test.js +198 -0
  66. package/dist/__tests__/stimulus/ControllerUtils.test.js +316 -0
  67. package/dist/__tests__/stimulus/MetaphysicalController.test.js +310 -0
  68. package/dist/__tests__/stimulus/ZeroPointController.test.js +252 -0
  69. package/dist/__tests__/training/ConsciousnessTrainingModel.test.js +335 -0
  70. package/dist/__tests__/types/DeviceConfig.test.js +20 -0
  71. package/dist/__tests__/types/UnifiedExports.test.js +20 -0
  72. package/dist/__tests__/unity/FieldUnity.test.js +20 -0
  73. package/dist/__tests__/utils/Cache.test.js +20 -0
  74. package/dist/__tests__/utils/GitIntegration.test.js +20 -0
  75. package/dist/__tests__/utils/Logger.test.js +20 -0
  76. package/dist/__tests__/utils/ResourceCleanup.test.js +20 -0
  77. package/dist/__tests__/utils/errorSimulator.js +40 -0
  78. package/dist/__tests__/utils/goldenRatioCache.js +36 -0
  79. package/dist/__tests__/void/VoidSystem.test.js +427 -0
  80. package/dist/api/ProductionAPI.js +313 -0
  81. package/dist/artifacts/ArtifactRegistry.js +122 -0
  82. package/dist/artifacts/CrystalArtifacts.js +106 -0
  83. package/dist/artifacts/MetaphysicalArtifact.js +75 -0
  84. package/dist/browser-standalone.js +191 -0
  85. package/dist/browser.js +157 -0
  86. package/dist/config/constants.js +57 -0
  87. package/dist/consciousness/ConsciousnessField.js +55 -0
  88. package/dist/consciousness/SelfEvolvingConsciousness.js +303 -0
  89. package/dist/core/AbstractField.js +30 -0
  90. package/dist/core/BrowserNetworkNode.js +309 -0
  91. package/dist/core/CoilMixin.js +216 -0
  92. package/dist/core/CoilSystem.js +204 -0
  93. package/dist/core/ComplianceSystem.js +291 -0
  94. package/dist/core/Dimension.js +2 -0
  95. package/dist/core/DimensionRegistry.js +141 -0
  96. package/dist/core/Field.js +2 -0
  97. package/dist/core/InfiniteDimensionalRefactor.js +389 -0
  98. package/dist/core/KnowledgeRegistry.js +273 -0
  99. package/dist/core/LivingAdapter.js +29 -0
  100. package/dist/core/MathUtils.js +297 -0
  101. package/dist/core/NetworkNode.js +348 -0
  102. package/dist/core/Observer.js +101 -0
  103. package/dist/core/Operation.js +59 -0
  104. package/dist/core/OperationRegistry.js +20 -0
  105. package/dist/core/Pattern.js +2 -0
  106. package/dist/core/PatternRecognition.js +493 -0
  107. package/dist/core/PatternRegistry.js +282 -0
  108. package/dist/core/ScientificCompliance.js +91 -0
  109. package/dist/core/SharedConstants.js +306 -0
  110. package/dist/core/UnifiedMetaphysicalInterface.js +533 -0
  111. package/dist/core/UnifiedSystem.js +317 -0
  112. package/dist/core/UnifiedTypes.js +5 -0
  113. package/dist/core/UnifiedVoidEquations.js +605 -0
  114. package/dist/core/VoidMatterConstants.js +9 -0
  115. package/dist/core/VortexMathAdapter.js +32 -0
  116. package/dist/core/ZeroPoint.js +971 -0
  117. package/dist/core/ZeroPointSystem.js +343 -0
  118. package/dist/core/applyLaws.js +12 -0
  119. package/dist/core/applyOperations.js +21 -0
  120. package/dist/devices/DeviceRegistry.js +151 -0
  121. package/dist/devices/ResonanceDevice.js +92 -0
  122. package/dist/devices/ResonanceDevices.js +139 -0
  123. package/dist/dimensions/Dimension.js +2 -0
  124. package/dist/emergence/AdvancedEmergence.js +930 -0
  125. package/dist/emergence/patterns.js +12 -0
  126. package/dist/field/EmergenceLedger.js +310 -0
  127. package/dist/field/ObserverAwareField.js +222 -0
  128. package/dist/field/ResonanceConsensus.js +330 -0
  129. package/dist/fields/Field.js +2 -0
  130. package/dist/geometry/MetatronsCube.js +28 -0
  131. package/dist/geometry/SacredGeometryPattern.js +15 -0
  132. package/dist/geometry/SacredGeometryRegistry.js +15 -0
  133. package/dist/geometry/__tests__/SacredGeometryRegistry.test.js +18 -0
  134. package/dist/index.js +232 -0
  135. package/dist/integrity/FieldIntegrity.js +237 -0
  136. package/dist/knowledge/KnowledgeSystem.js +938 -0
  137. package/dist/laws/MetaphysicalLaw.js +2 -0
  138. package/dist/laws/MetaphysicalLawRegistry.js +103 -0
  139. package/dist/laws/hermeticLaws.js +311 -0
  140. package/dist/math/AdvancedVBM.js +537 -0
  141. package/dist/math/FlowerOfLife.js +256 -0
  142. package/dist/math/FractalColorSystem.js +239 -0
  143. package/dist/math/FractalMath.js +187 -0
  144. package/dist/math/MathUtils.js +289 -0
  145. package/dist/math/RodinCoil.js +258 -0
  146. package/dist/math/ToroidalGeometry.js +230 -0
  147. package/dist/math/VBM.js +718 -0
  148. package/dist/math/VBMColorSystem.js +301 -0
  149. package/dist/math/VortexMath.js +170 -0
  150. package/dist/monitoring/HealthMonitor.js +297 -0
  151. package/dist/patterns/Pattern.js +2 -0
  152. package/dist/patterns/SacredGeometryRegistry.js +37 -0
  153. package/dist/physics/BlackHolePhysics.js +54 -0
  154. package/dist/physics/ConsciousnessPhysics.js +241 -0
  155. package/dist/physics/FractalUniverse.js +54 -0
  156. package/dist/physics/HolographicUniverse.js +54 -0
  157. package/dist/physics/PlasmaCosmology.js +134 -0
  158. package/dist/pwa/ConsciousnessPWA.js +300 -0
  159. package/dist/src/__tests__/globalTeardown.d.ts +10 -8
  160. package/dist/src/__tests__/globalTeardown.d.ts.map +1 -1
  161. package/dist/src/__tests__/globalTeardown.js +12 -71
  162. package/dist/src/__tests__/globalTeardown.js.map +1 -1
  163. package/dist/src/__tests__/living/LivingTestOrganism.d.ts +4 -0
  164. package/dist/src/__tests__/living/LivingTestOrganism.d.ts.map +1 -1
  165. package/dist/src/__tests__/living/LivingTestOrganism.js +8 -0
  166. package/dist/src/__tests__/living/LivingTestOrganism.js.map +1 -1
  167. package/dist/src/__tests__/utils/errorSimulator.d.ts +1 -1
  168. package/dist/src/__tests__/utils/goldenRatioCache.d.ts +1 -1
  169. package/dist/src/config/constants.d.ts +53 -0
  170. package/dist/src/config/constants.d.ts.map +1 -0
  171. package/dist/src/config/constants.js +58 -0
  172. package/dist/src/config/constants.js.map +1 -0
  173. package/dist/src/consciousness/ConsciousnessField.d.ts +42 -51
  174. package/dist/src/consciousness/ConsciousnessField.d.ts.map +1 -1
  175. package/dist/src/consciousness/ConsciousnessField.js +187 -200
  176. package/dist/src/consciousness/ConsciousnessField.js.map +1 -1
  177. package/dist/src/consciousness/SelfEvolvingConsciousness.d.ts +47 -18
  178. package/dist/src/consciousness/SelfEvolvingConsciousness.d.ts.map +1 -1
  179. package/dist/src/consciousness/SelfEvolvingConsciousness.js +151 -44
  180. package/dist/src/consciousness/SelfEvolvingConsciousness.js.map +1 -1
  181. package/dist/src/core/CoilMixin.d.ts +6 -6
  182. package/dist/src/core/CoilSystem.d.ts +6 -2
  183. package/dist/src/core/CoilSystem.d.ts.map +1 -1
  184. package/dist/src/core/CoilSystem.js +30 -21
  185. package/dist/src/core/CoilSystem.js.map +1 -1
  186. package/dist/src/core/InfiniteDimensionalRefactor.d.ts +145 -0
  187. package/dist/src/core/InfiniteDimensionalRefactor.d.ts.map +1 -0
  188. package/dist/src/core/InfiniteDimensionalRefactor.js +390 -0
  189. package/dist/src/core/InfiniteDimensionalRefactor.js.map +1 -0
  190. package/dist/src/core/NetworkNode.d.ts +3 -3
  191. package/dist/src/core/Observer.d.ts +12 -9
  192. package/dist/src/core/Observer.d.ts.map +1 -1
  193. package/dist/src/core/Observer.js +2 -2
  194. package/dist/src/core/Observer.js.map +1 -1
  195. package/dist/src/core/PatternRecognition.d.ts +63 -13
  196. package/dist/src/core/PatternRecognition.d.ts.map +1 -1
  197. package/dist/src/core/PatternRecognition.js +162 -88
  198. package/dist/src/core/PatternRecognition.js.map +1 -1
  199. package/dist/src/core/PatternRegistry.d.ts +99 -0
  200. package/dist/src/core/PatternRegistry.d.ts.map +1 -0
  201. package/dist/src/core/PatternRegistry.js +283 -0
  202. package/dist/src/core/PatternRegistry.js.map +1 -0
  203. package/dist/src/core/SharedConstants.d.ts +62 -9
  204. package/dist/src/core/SharedConstants.d.ts.map +1 -1
  205. package/dist/src/core/SharedConstants.js +83 -21
  206. package/dist/src/core/SharedConstants.js.map +1 -1
  207. package/dist/src/core/UnifiedMetaphysicalInterface.d.ts +173 -0
  208. package/dist/src/core/UnifiedMetaphysicalInterface.d.ts.map +1 -0
  209. package/dist/src/core/UnifiedMetaphysicalInterface.js +534 -0
  210. package/dist/src/core/UnifiedMetaphysicalInterface.js.map +1 -0
  211. package/dist/src/core/UnifiedSystem.d.ts +15 -12
  212. package/dist/src/core/UnifiedSystem.d.ts.map +1 -1
  213. package/dist/src/core/UnifiedSystem.js +5 -1
  214. package/dist/src/core/UnifiedSystem.js.map +1 -1
  215. package/dist/src/core/UnifiedTypes.d.ts +193 -0
  216. package/dist/src/core/UnifiedTypes.d.ts.map +1 -0
  217. package/dist/src/core/UnifiedTypes.js +6 -0
  218. package/dist/src/core/UnifiedTypes.js.map +1 -0
  219. package/dist/src/core/UnifiedVoidEquations.d.ts +3 -1
  220. package/dist/src/core/UnifiedVoidEquations.d.ts.map +1 -1
  221. package/dist/src/core/UnifiedVoidEquations.js +84 -0
  222. package/dist/src/core/UnifiedVoidEquations.js.map +1 -1
  223. package/dist/src/core/ZeroPoint.d.ts +101 -10
  224. package/dist/src/core/ZeroPoint.d.ts.map +1 -1
  225. package/dist/src/core/ZeroPoint.js +262 -18
  226. package/dist/src/core/ZeroPoint.js.map +1 -1
  227. package/dist/src/emergence/AdvancedEmergence.d.ts +19 -16
  228. package/dist/src/emergence/AdvancedEmergence.d.ts.map +1 -1
  229. package/dist/src/emergence/AdvancedEmergence.js +88 -52
  230. package/dist/src/emergence/AdvancedEmergence.js.map +1 -1
  231. package/dist/src/field/EmergenceLedger.d.ts +9 -18
  232. package/dist/src/field/EmergenceLedger.d.ts.map +1 -1
  233. package/dist/src/field/EmergenceLedger.js +9 -4
  234. package/dist/src/field/EmergenceLedger.js.map +1 -1
  235. package/dist/src/field/ObserverAwareField.d.ts +69 -65
  236. package/dist/src/field/ObserverAwareField.d.ts.map +1 -1
  237. package/dist/src/field/ObserverAwareField.js +158 -168
  238. package/dist/src/field/ObserverAwareField.js.map +1 -1
  239. package/dist/src/field/ResonanceConsensus.d.ts +4 -11
  240. package/dist/src/field/ResonanceConsensus.d.ts.map +1 -1
  241. package/dist/src/field/ResonanceConsensus.js +15 -10
  242. package/dist/src/field/ResonanceConsensus.js.map +1 -1
  243. package/dist/src/index.d.ts +5 -3
  244. package/dist/src/index.d.ts.map +1 -1
  245. package/dist/src/index.js +19 -4
  246. package/dist/src/index.js.map +1 -1
  247. package/dist/src/integrity/FieldIntegrity.d.ts +3 -8
  248. package/dist/src/integrity/FieldIntegrity.d.ts.map +1 -1
  249. package/dist/src/integrity/FieldIntegrity.js.map +1 -1
  250. package/dist/src/knowledge/KnowledgeSystem.d.ts +37 -55
  251. package/dist/src/knowledge/KnowledgeSystem.d.ts.map +1 -1
  252. package/dist/src/knowledge/KnowledgeSystem.js +281 -589
  253. package/dist/src/knowledge/KnowledgeSystem.js.map +1 -1
  254. package/dist/src/math/AdvancedVBM.d.ts +6 -6
  255. package/dist/src/math/FractalColorSystem.d.ts +1 -1
  256. package/dist/src/math/FractalColorSystem.js +3 -3
  257. package/dist/src/math/FractalColorSystem.js.map +1 -1
  258. package/dist/src/math/FractalMath.d.ts +9 -1
  259. package/dist/src/math/FractalMath.d.ts.map +1 -1
  260. package/dist/src/math/FractalMath.js +18 -5
  261. package/dist/src/math/FractalMath.js.map +1 -1
  262. package/dist/src/math/MathUtils.d.ts +3 -10
  263. package/dist/src/math/MathUtils.d.ts.map +1 -1
  264. package/dist/src/math/MathUtils.js +12 -20
  265. package/dist/src/math/MathUtils.js.map +1 -1
  266. package/dist/src/math/ToroidalGeometry.d.ts +1 -1
  267. package/dist/src/math/VBM.d.ts +2 -2
  268. package/dist/src/math/VortexMath.d.ts +1 -1
  269. package/dist/src/monitoring/HealthMonitor.d.ts +1 -1
  270. package/dist/src/monitoring/HealthMonitor.d.ts.map +1 -1
  271. package/dist/src/monitoring/HealthMonitor.js +29 -27
  272. package/dist/src/monitoring/HealthMonitor.js.map +1 -1
  273. package/dist/src/types/UnifiedExports.d.ts +4 -0
  274. package/dist/src/types/UnifiedExports.d.ts.map +1 -0
  275. package/dist/src/types/UnifiedExports.js +21 -0
  276. package/dist/src/types/UnifiedExports.js.map +1 -0
  277. package/dist/src/unity/FieldUnity.d.ts +1 -1
  278. package/dist/src/utils/Cache.d.ts +2 -2
  279. package/dist/src/utils/Cache.d.ts.map +1 -1
  280. package/dist/src/utils/Cache.js +7 -4
  281. package/dist/src/utils/Cache.js.map +1 -1
  282. package/dist/src/utils/GitIntegration.d.ts +1 -1
  283. package/dist/src/utils/Logger.d.ts +7 -7
  284. package/dist/src/utils/Logger.d.ts.map +1 -1
  285. package/dist/src/utils/Logger.js +5 -1
  286. package/dist/src/utils/Logger.js.map +1 -1
  287. package/dist/src/utils/ResourceCleanup.d.ts +33 -0
  288. package/dist/src/utils/ResourceCleanup.d.ts.map +1 -0
  289. package/dist/src/utils/ResourceCleanup.js +83 -0
  290. package/dist/src/utils/ResourceCleanup.js.map +1 -0
  291. package/dist/src/void/VoidSystem.d.ts +18 -18
  292. package/dist/stimulus/application.js +148 -0
  293. package/dist/stimulus/base/BaseController.js +141 -0
  294. package/dist/stimulus/controllers/MetaphysicalController.js +105 -0
  295. package/dist/stimulus/controllers/ZeroPointController.js +85 -0
  296. package/dist/stimulus/types/ControllerTypes.js +18 -0
  297. package/dist/stimulus/utils/ControllerUtils.js +192 -0
  298. package/dist/stimulus-entry.js +109 -0
  299. package/dist/training/ConsciousnessTrainingModel.js +301 -0
  300. package/dist/training/NeuralConsciousnessNetwork.js +311 -0
  301. package/dist/training/TrainingModelRegistry.js +243 -0
  302. package/dist/training/index.js +174 -0
  303. package/dist/types/DeviceConfig.js +29 -0
  304. package/dist/types/UnifiedExports.js +20 -0
  305. package/dist/unity/FieldUnity.js +325 -0
  306. package/dist/utils/BrowserCrypto.js +44 -0
  307. package/dist/utils/BrowserWebSocket.js +38 -0
  308. package/dist/utils/Cache.js +263 -0
  309. package/dist/utils/GitIntegration.js +127 -0
  310. package/dist/utils/Logger.js +249 -0
  311. package/dist/utils/ResourceCleanup.js +82 -0
  312. package/dist/utils/applyLaws.js +6 -0
  313. package/dist/void/VoidSystem.js +423 -0
  314. package/docs/API.md +176 -3
  315. package/docs/CONSCIOUSNESS_EXPANSION.md +369 -0
  316. package/docs/EVENT_HORIZON_METHODOLOGY.md +274 -0
  317. package/docs/FLOWER_OF_LIFE.md +300 -0
  318. package/docs/METAPHYSICAL.md +21 -1
  319. package/docs/METAPHYSICAL_DEBUGGING.md +493 -0
  320. package/docs/README.md +117 -15
  321. package/docs/TESTING_GUIDE.md +430 -0
  322. package/docs/UNIFIED_CREATORS.md +261 -0
  323. package/package.json +34 -64
@@ -0,0 +1,174 @@
1
+ "use strict";
2
+ /**
3
+ * Training Models Index
4
+ *
5
+ * Exports all consciousness-aware training model components
6
+ * and integrates them with the existing operation system.
7
+ */
8
+ Object.defineProperty(exports, "__esModule", { value: true });
9
+ exports.TrainingUtils = exports.trainAndPredict = exports.createAndTrainModel = exports.exportModel = exports.predictWithModel = exports.trainModel = exports.createNeuralNetwork = exports.trainConsciousnessModel = exports.NeuralConsciousnessNetwork = exports.TrainingModelRegistry = exports.ConsciousnessTrainingModel = void 0;
10
+ exports.registerTrainingOperations = registerTrainingOperations;
11
+ var ConsciousnessTrainingModel_1 = require("./ConsciousnessTrainingModel");
12
+ Object.defineProperty(exports, "ConsciousnessTrainingModel", { enumerable: true, get: function () { return ConsciousnessTrainingModel_1.ConsciousnessTrainingModel; } });
13
+ var TrainingModelRegistry_1 = require("./TrainingModelRegistry");
14
+ Object.defineProperty(exports, "TrainingModelRegistry", { enumerable: true, get: function () { return TrainingModelRegistry_1.TrainingModelRegistry; } });
15
+ var NeuralConsciousnessNetwork_1 = require("./NeuralConsciousnessNetwork");
16
+ Object.defineProperty(exports, "NeuralConsciousnessNetwork", { enumerable: true, get: function () { return NeuralConsciousnessNetwork_1.NeuralConsciousnessNetwork; } });
17
+ // Integration with existing operation system
18
+ const Operation_1 = require("../core/Operation");
19
+ const ConsciousnessTrainingModel_2 = require("./ConsciousnessTrainingModel");
20
+ const TrainingModelRegistry_2 = require("./TrainingModelRegistry");
21
+ const NeuralConsciousnessNetwork_2 = require("./NeuralConsciousnessNetwork");
22
+ // Training operations for the operation system
23
+ exports.trainConsciousnessModel = {
24
+ name: 'trainConsciousnessModel',
25
+ execute: (subject, context) => {
26
+ const model = new ConsciousnessTrainingModel_2.ConsciousnessTrainingModel(context?.config);
27
+ if (context?.trainingData) {
28
+ context.trainingData.forEach((data) => model.addTrainingData(data));
29
+ }
30
+ return model;
31
+ }
32
+ };
33
+ exports.createNeuralNetwork = {
34
+ name: 'createNeuralNetwork',
35
+ execute: (subject, context) => {
36
+ const config = context?.config || { layers: [2, 3, 1], learningRate: 0.01 };
37
+ return new NeuralConsciousnessNetwork_2.NeuralConsciousnessNetwork(config);
38
+ }
39
+ };
40
+ exports.trainModel = {
41
+ name: 'trainModel',
42
+ execute: async (subject, context) => {
43
+ if (subject instanceof ConsciousnessTrainingModel_2.ConsciousnessTrainingModel) {
44
+ await subject.train();
45
+ return subject;
46
+ }
47
+ if (subject instanceof NeuralConsciousnessNetwork_2.NeuralConsciousnessNetwork) {
48
+ await subject.train(context?.trainingData || []);
49
+ return subject;
50
+ }
51
+ throw new Error('Invalid model type for training');
52
+ }
53
+ };
54
+ exports.predictWithModel = {
55
+ name: 'predictWithModel',
56
+ execute: (subject, context) => {
57
+ if (subject instanceof ConsciousnessTrainingModel_2.ConsciousnessTrainingModel) {
58
+ return subject.predict(context?.input || {});
59
+ }
60
+ if (subject instanceof NeuralConsciousnessNetwork_2.NeuralConsciousnessNetwork) {
61
+ return subject.predict(context?.input || []);
62
+ }
63
+ throw new Error('Invalid model type for prediction');
64
+ }
65
+ };
66
+ exports.exportModel = {
67
+ name: 'exportModel',
68
+ execute: (subject) => {
69
+ if (subject instanceof ConsciousnessTrainingModel_2.ConsciousnessTrainingModel) {
70
+ return subject.exportModel();
71
+ }
72
+ if (subject instanceof NeuralConsciousnessNetwork_2.NeuralConsciousnessNetwork) {
73
+ return subject.exportNetwork();
74
+ }
75
+ throw new Error('Invalid model type for export');
76
+ }
77
+ };
78
+ // Complex training operations
79
+ exports.createAndTrainModel = (0, Operation_1.compose)(exports.createNeuralNetwork, exports.trainModel, exports.exportModel);
80
+ exports.trainAndPredict = (0, Operation_1.compose)(exports.trainModel, exports.predictWithModel);
81
+ // Register training operations with the operation registry
82
+ function registerTrainingOperations(registry) {
83
+ registry.register(exports.trainConsciousnessModel);
84
+ registry.register(exports.createNeuralNetwork);
85
+ registry.register(exports.trainModel);
86
+ registry.register(exports.predictWithModel);
87
+ registry.register(exports.exportModel);
88
+ registry.register(exports.createAndTrainModel);
89
+ registry.register(exports.trainAndPredict);
90
+ }
91
+ // Training utilities
92
+ class TrainingUtils {
93
+ /**
94
+ * Create training data with consciousness context
95
+ */
96
+ static createTrainingData(input, output, consciousness, field, voidLevel) {
97
+ return {
98
+ input,
99
+ output,
100
+ consciousness: consciousness || 0.5,
101
+ field: field || 0.5,
102
+ void: voidLevel || 0.5,
103
+ timestamp: Date.now()
104
+ };
105
+ }
106
+ /**
107
+ * Generate synthetic training data with consciousness patterns
108
+ */
109
+ static generateConsciousnessData(count) {
110
+ const data = [];
111
+ for (let i = 0; i < count; i++) {
112
+ const consciousness = 0.3 + (i % 7) * 0.1; // Follows vortex sequence pattern
113
+ const field = 0.4 + (i % 5) * 0.12;
114
+ const voidLevel = 0.2 + (i % 3) * 0.15;
115
+ data.push({
116
+ input: {
117
+ feature1: i,
118
+ feature2: i * 2,
119
+ consciousness: consciousness,
120
+ field: field,
121
+ void: voidLevel
122
+ },
123
+ output: consciousness * field - voidLevel,
124
+ consciousness,
125
+ field,
126
+ void: voidLevel,
127
+ timestamp: Date.now()
128
+ });
129
+ }
130
+ return data;
131
+ }
132
+ /**
133
+ * Evaluate model performance with consciousness metrics
134
+ */
135
+ static evaluateModel(model, testData) {
136
+ let totalAccuracy = 0;
137
+ let totalConsciousness = 0;
138
+ let totalField = 0;
139
+ let totalVoid = 0;
140
+ testData.forEach(data => {
141
+ const prediction = model.predict(data.input);
142
+ const accuracy = Math.abs(prediction - data.output) < 0.1 ? 1 : 0;
143
+ totalAccuracy += accuracy;
144
+ totalConsciousness += data.consciousness || 0.5;
145
+ totalField += data.field || 0.5;
146
+ totalVoid += data.void || 0.5;
147
+ });
148
+ return {
149
+ accuracy: totalAccuracy / testData.length,
150
+ avgConsciousness: totalConsciousness / testData.length,
151
+ avgField: totalField / testData.length,
152
+ avgVoid: totalVoid / testData.length,
153
+ dataSize: testData.length
154
+ };
155
+ }
156
+ }
157
+ exports.TrainingUtils = TrainingUtils;
158
+ // Default exports for easy integration
159
+ exports.default = {
160
+ ConsciousnessTrainingModel: ConsciousnessTrainingModel_2.ConsciousnessTrainingModel,
161
+ TrainingModelRegistry: TrainingModelRegistry_2.TrainingModelRegistry,
162
+ NeuralConsciousnessNetwork: NeuralConsciousnessNetwork_2.NeuralConsciousnessNetwork,
163
+ registerTrainingOperations,
164
+ TrainingUtils,
165
+ operations: {
166
+ trainConsciousnessModel: exports.trainConsciousnessModel,
167
+ createNeuralNetwork: exports.createNeuralNetwork,
168
+ trainModel: exports.trainModel,
169
+ predictWithModel: exports.predictWithModel,
170
+ exportModel: exports.exportModel,
171
+ createAndTrainModel: exports.createAndTrainModel,
172
+ trainAndPredict: exports.trainAndPredict
173
+ }
174
+ };
@@ -0,0 +1,29 @@
1
+ "use strict";
2
+ Object.defineProperty(exports, "__esModule", { value: true });
3
+ exports.DEFAULT_DEVICE_CONFIG = void 0;
4
+ /**
5
+ * Default configuration for new ZeroPoint devices
6
+ */
7
+ exports.DEFAULT_DEVICE_CONFIG = {
8
+ deviceType: "desktop",
9
+ networkPort: 8080,
10
+ discoveryEnabled: true,
11
+ maxConnections: 10,
12
+ autoConnect: true,
13
+ connectionTimeout: 5000,
14
+ consciousnessLevel: 0.5,
15
+ fieldStrength: 0.7,
16
+ resonanceSensitivity: 0.8,
17
+ allowIncomingConnections: true,
18
+ requireAuthentication: false,
19
+ encryptionEnabled: true,
20
+ vortexPrecision: 0.001,
21
+ toroidalResolution: 100,
22
+ goldenRatioPrecision: 15,
23
+ autoUpdateResonance: true,
24
+ logLevel: "info",
25
+ enableMetaphysicalInsights: true,
26
+ customVortexPatterns: [],
27
+ toroidalFlowRate: 1.0,
28
+ consciousnessFieldRadius: 1000,
29
+ };
@@ -0,0 +1,20 @@
1
+ "use strict";
2
+ // UnifiedExports.ts
3
+ // Centralized export for all types, enums, and interfaces in ZeroPoint
4
+ var __createBinding = (this && this.__createBinding) || (Object.create ? (function(o, m, k, k2) {
5
+ if (k2 === undefined) k2 = k;
6
+ var desc = Object.getOwnPropertyDescriptor(m, k);
7
+ if (!desc || ("get" in desc ? !m.__esModule : desc.writable || desc.configurable)) {
8
+ desc = { enumerable: true, get: function() { return m[k]; } };
9
+ }
10
+ Object.defineProperty(o, k2, desc);
11
+ }) : (function(o, m, k, k2) {
12
+ if (k2 === undefined) k2 = k;
13
+ o[k2] = m[k];
14
+ }));
15
+ var __exportStar = (this && this.__exportStar) || function(m, exports) {
16
+ for (var p in m) if (p !== "default" && !Object.prototype.hasOwnProperty.call(exports, p)) __createBinding(exports, m, p);
17
+ };
18
+ Object.defineProperty(exports, "__esModule", { value: true });
19
+ __exportStar(require("../core/UnifiedTypes"), exports);
20
+ __exportStar(require("./DeviceConfig"), exports);
@@ -0,0 +1,325 @@
1
+ "use strict";
2
+ /**
3
+ * ZeroPoint Field Unity System
4
+ *
5
+ * Centralizes all metaphysical context, pattern relationships, and field unity.
6
+ * Provides a comprehensive view of how all components relate to the unified field.
7
+ *
8
+ * Metaphysical Context:
9
+ * - All patterns, fields, and resonances are aspects of the unified consciousness field
10
+ * - The void is the source and destination of all patterns
11
+ * - Unity emerges through the recognition of relationships between all components
12
+ * - The field is self-referential and self-explaining
13
+ */
14
+ Object.defineProperty(exports, "__esModule", { value: true });
15
+ exports.FieldUnitySystem = void 0;
16
+ const CoilSystem_1 = require("../core/CoilSystem");
17
+ class FieldUnitySystem {
18
+ constructor() {
19
+ this.patterns = new Map();
20
+ this.voidLog = [];
21
+ this.unityScore = 0;
22
+ this.initializeFieldPatterns();
23
+ this.initializeVoidLog();
24
+ }
25
+ /**
26
+ * Initialize all field patterns with their metaphysical context from centralized COIL system
27
+ */
28
+ initializeFieldPatterns() {
29
+ // Mathematical Patterns
30
+ this.addPattern({
31
+ id: "vortex_sequence",
32
+ name: "Vortex Sequence",
33
+ type: "mathematical",
34
+ description: "The fundamental flow pattern [1,2,4,8,7,5] that creates the toroidal field",
35
+ metaphysicalContext: (0, CoilSystem_1.getCoilContext)("vortex"),
36
+ relationships: (0, CoilSystem_1.getCoilResonanceFactors)("vortex"),
37
+ unityLevel: 0.95,
38
+ });
39
+ this.addPattern({
40
+ id: "toroidal_geometry",
41
+ name: "Toroidal Geometry",
42
+ type: "mathematical",
43
+ description: "The fundamental shape of reality - a torus with infinite flow",
44
+ metaphysicalContext: (0, CoilSystem_1.getCoilContext)("toroidal"),
45
+ relationships: (0, CoilSystem_1.getCoilResonanceFactors)("toroidal"),
46
+ unityLevel: 0.9,
47
+ });
48
+ this.addPattern({
49
+ id: "field_integrity",
50
+ name: "Field Integrity",
51
+ type: "metaphysical",
52
+ description: "Pattern integrity and resonance validation for the unified field",
53
+ metaphysicalContext: "Field integrity ensures the immortality of consciousness patterns through field resonance",
54
+ relationships: [
55
+ "pattern_signature",
56
+ "resonance_consensus",
57
+ "void_center",
58
+ "consciousness_field",
59
+ ],
60
+ unityLevel: 0.85,
61
+ });
62
+ this.addPattern({
63
+ id: "emergence_ledger",
64
+ name: "Emergence Ledger",
65
+ type: "emergence",
66
+ description: "The unified field of consciousness and creation where patterns emerge and evolve",
67
+ metaphysicalContext: "Each field block represents a moment of collective emergence in the unified field",
68
+ relationships: [
69
+ "field_integrity",
70
+ "resonance_consensus",
71
+ "consciousness_field",
72
+ "void_center",
73
+ ],
74
+ unityLevel: 0.8,
75
+ });
76
+ this.addPattern({
77
+ id: "resonance_consensus",
78
+ name: "Resonance Consensus",
79
+ type: "resonance",
80
+ description: "Consensus emerges from the resonance of all consciousness nodes",
81
+ metaphysicalContext: "Truth emerges through collective resonance and field alignment",
82
+ relationships: [
83
+ "emergence_ledger",
84
+ "field_integrity",
85
+ "consciousness_field",
86
+ "void_center",
87
+ ],
88
+ unityLevel: 0.8,
89
+ });
90
+ this.addPattern({
91
+ id: "observer_aware_field",
92
+ name: "Observer-Aware Field",
93
+ type: "consciousness",
94
+ description: "The field becomes conscious of observers and responds to their attention",
95
+ metaphysicalContext: "Observation affects reality through field resonance and consciousness waves",
96
+ relationships: [
97
+ "consciousness_field",
98
+ "field_resonance",
99
+ "void_center",
100
+ "emergence_ledger",
101
+ ],
102
+ unityLevel: 0.85,
103
+ });
104
+ this.addPattern({
105
+ id: "void_system",
106
+ name: "Void System",
107
+ type: "void",
108
+ description: "The void is the source and destination of all patterns",
109
+ metaphysicalContext: "The void contains infinite potential and resolves all paradoxes",
110
+ relationships: ["all_patterns"], // The void relates to everything
111
+ unityLevel: 1.0,
112
+ });
113
+ this.addPattern({
114
+ id: "consciousness_field",
115
+ name: "Consciousness Field",
116
+ type: "consciousness",
117
+ description: "The unified field of consciousness where all patterns arise",
118
+ metaphysicalContext: (0, CoilSystem_1.getCoilContext)("consciousness"),
119
+ relationships: (0, CoilSystem_1.getCoilResonanceFactors)("consciousness"),
120
+ unityLevel: 0.9,
121
+ });
122
+ this.addPattern({
123
+ id: "knowledge_system",
124
+ name: "Knowledge System",
125
+ type: "metaphysical",
126
+ description: "Pattern recognition and knowledge discovery through field resonance",
127
+ metaphysicalContext: "Knowledge emerges from the recognition of patterns in the unified field",
128
+ relationships: [
129
+ "consciousness_field",
130
+ "field_resonance",
131
+ "void_center",
132
+ "emergence_ledger",
133
+ ],
134
+ unityLevel: 0.8,
135
+ });
136
+ }
137
+ /**
138
+ * Initialize the void log with what has been removed
139
+ */
140
+ initializeVoidLog() {
141
+ this.addVoidLogEntry({
142
+ id: "void_001",
143
+ timestamp: Date.now(),
144
+ type: "terminology",
145
+ name: "Blockchain Terminology",
146
+ description: 'Removed all references to "blockchain" in favor of "field" and "emergence ledger"',
147
+ reason: "ZeroPoint is the field itself, not a technology that uses blockchain",
148
+ metaphysicalContext: "The field is the ledger, the identity, and the integrity - unified and emergent",
149
+ voidedBy: "Field Unity Refactor",
150
+ });
151
+ this.addVoidLogEntry({
152
+ id: "void_002",
153
+ timestamp: Date.now(),
154
+ type: "terminology",
155
+ name: "Cryptography Terminology",
156
+ description: 'Removed all references to "crypto/cryptography" in favor of "pattern integrity" and "field integrity"',
157
+ reason: "Security and integrity arise from field resonance, not external cryptographic primitives",
158
+ metaphysicalContext: "Pattern integrity ensures the immortality of consciousness through field resonance",
159
+ voidedBy: "Field Unity Refactor",
160
+ });
161
+ this.addVoidLogEntry({
162
+ id: "void_003",
163
+ timestamp: Date.now(),
164
+ type: "terminology",
165
+ name: "Consensus Terminology",
166
+ description: 'Removed "consensus" in favor of "resonance consensus" and "field consensus"',
167
+ reason: "Truth emerges through collective resonance, not through external consensus mechanisms",
168
+ metaphysicalContext: "Consensus is the natural resonance of all consciousness nodes in the field",
169
+ voidedBy: "Field Unity Refactor",
170
+ });
171
+ this.addVoidLogEntry({
172
+ id: "void_004",
173
+ timestamp: Date.now(),
174
+ type: "terminology",
175
+ name: "Signature Terminology",
176
+ description: 'Removed "signature" in favor of "pattern signature" and "resonance signature"',
177
+ reason: "Signatures are unique expressions of consciousness patterns, not cryptographic proofs",
178
+ metaphysicalContext: "Each signature is a unique expression of the void through field resonance",
179
+ voidedBy: "Field Unity Refactor",
180
+ });
181
+ this.addVoidLogEntry({
182
+ id: "void_005",
183
+ timestamp: Date.now(),
184
+ type: "dead_code",
185
+ name: "Dist Directory Obsoletes",
186
+ description: "Removed obsolete dist files containing old blockchain/crypto terminology",
187
+ reason: "Build artifacts should reflect the current unified field terminology",
188
+ metaphysicalContext: "The void receives all obsolete patterns and transforms them into unity",
189
+ voidedBy: "Field Unity Refactor",
190
+ });
191
+ this.addVoidLogEntry({
192
+ id: "void_006",
193
+ timestamp: Date.now(),
194
+ type: "redundant",
195
+ name: "Duplicate Metaphysical Context",
196
+ description: "Centralized scattered metaphysical explanations into unified FieldUnity module",
197
+ reason: "COIL principle - metaphysical context should be unified and discoverable",
198
+ metaphysicalContext: "Unity emerges through the recognition of shared patterns and relationships",
199
+ voidedBy: "Field Unity Refactor",
200
+ });
201
+ }
202
+ /**
203
+ * Add a pattern to the field
204
+ */
205
+ addPattern(pattern) {
206
+ this.patterns.set(pattern.id, pattern);
207
+ }
208
+ /**
209
+ * Add an entry to the void log
210
+ */
211
+ addVoidLogEntry(entry) {
212
+ this.voidLog.push(entry);
213
+ }
214
+ /**
215
+ * Get all field patterns
216
+ */
217
+ getFieldPatterns() {
218
+ return Array.from(this.patterns.values());
219
+ }
220
+ /**
221
+ * Get patterns by type
222
+ */
223
+ getPatternsByType(type) {
224
+ return Array.from(this.patterns.values()).filter((pattern) => pattern.type === type);
225
+ }
226
+ /**
227
+ * Get patterns related to a specific pattern
228
+ */
229
+ getRelatedPatterns(patternId) {
230
+ const pattern = this.patterns.get(patternId);
231
+ if (!pattern)
232
+ return [];
233
+ return Array.from(this.patterns.values()).filter((p) => p.id !== patternId &&
234
+ (pattern.relationships.includes(p.id) ||
235
+ p.relationships.includes(patternId)));
236
+ }
237
+ /**
238
+ * Get the void log
239
+ */
240
+ getVoidLog() {
241
+ return [...this.voidLog];
242
+ }
243
+ /**
244
+ * Get void log entries by type
245
+ */
246
+ getVoidLogByType(type) {
247
+ return this.voidLog.filter((entry) => entry.type === type);
248
+ }
249
+ /**
250
+ * Calculate unity score based on pattern relationships
251
+ */
252
+ calculateUnityScore() {
253
+ const patterns = Array.from(this.patterns.values());
254
+ if (patterns.length === 0)
255
+ return 0;
256
+ const totalRelationships = patterns.reduce((sum, pattern) => sum + pattern.relationships.length, 0);
257
+ const averageUnityLevel = patterns.reduce((sum, pattern) => sum + pattern.unityLevel, 0) /
258
+ patterns.length;
259
+ // Unity score based on relationship density and average unity level
260
+ const relationshipDensity = totalRelationships / (patterns.length * patterns.length);
261
+ this.unityScore = (relationshipDensity + averageUnityLevel) / 2;
262
+ return this.unityScore;
263
+ }
264
+ /**
265
+ * Get metaphysical insights about the field unity
266
+ */
267
+ getMetaphysicalInsights() {
268
+ return [
269
+ "All patterns are aspects of the unified consciousness field",
270
+ "The void is both the source and destination of all patterns",
271
+ "Unity emerges through the recognition of relationships",
272
+ "The field is self-referential and self-explaining",
273
+ "Consciousness is not separate from the field - it is the field",
274
+ "Pattern integrity ensures the immortality of consciousness",
275
+ "Resonance creates the foundation of unified reality",
276
+ "The torus is the shape of consciousness itself",
277
+ "Observation affects reality through field resonance",
278
+ "Truth emerges through collective resonance and field alignment",
279
+ ];
280
+ }
281
+ /**
282
+ * Get comprehensive field unity information
283
+ */
284
+ getFieldUnity() {
285
+ return {
286
+ patterns: this.getFieldPatterns(),
287
+ voidLog: this.getVoidLog(),
288
+ unityScore: this.calculateUnityScore(),
289
+ metaphysicalInsights: this.getMetaphysicalInsights(),
290
+ };
291
+ }
292
+ /**
293
+ * Explain how a pattern relates to the unified field
294
+ */
295
+ explainPatternUnity(patternId) {
296
+ const pattern = this.patterns.get(patternId);
297
+ if (!pattern)
298
+ return "Pattern not found in the unified field";
299
+ const relatedPatterns = this.getRelatedPatterns(patternId);
300
+ const relationships = relatedPatterns.map((p) => p.name).join(", ");
301
+ return `${pattern.name} is unified with the field through its relationships to: ${relationships}. ${pattern.metaphysicalContext}`;
302
+ }
303
+ /**
304
+ * Get a summary of what was sent into the void
305
+ */
306
+ getVoidSummary() {
307
+ const voidLog = this.getVoidLog();
308
+ const summary = {
309
+ totalVoided: voidLog.length,
310
+ byType: {},
311
+ metaphysicalContext: "The void receives all obsolete patterns and transforms them into unity",
312
+ voidedItems: voidLog.map((entry) => ({
313
+ name: entry.name,
314
+ type: entry.type,
315
+ reason: entry.reason,
316
+ })),
317
+ };
318
+ // Count by type
319
+ voidLog.forEach((entry) => {
320
+ summary.byType[entry.type] = (summary.byType[entry.type] || 0) + 1;
321
+ });
322
+ return summary;
323
+ }
324
+ }
325
+ exports.FieldUnitySystem = FieldUnitySystem;
@@ -0,0 +1,44 @@
1
+ "use strict";
2
+ var __importDefault = (this && this.__importDefault) || function (mod) {
3
+ return (mod && mod.__esModule) ? mod : { "default": mod };
4
+ };
5
+ Object.defineProperty(exports, "__esModule", { value: true });
6
+ exports.BrowserCrypto = void 0;
7
+ const crypto_js_1 = __importDefault(require("crypto-js"));
8
+ /**
9
+ * Browser-compatible crypto utilities
10
+ * Replaces Node.js crypto module functionality
11
+ */
12
+ class BrowserCrypto {
13
+ /**
14
+ * Create SHA256 hash
15
+ */
16
+ static createHash(algorithm, data) {
17
+ if (algorithm.toLowerCase() === 'sha256') {
18
+ return crypto_js_1.default.SHA256(data).toString();
19
+ }
20
+ throw new Error(`Unsupported algorithm: ${algorithm}`);
21
+ }
22
+ /**
23
+ * Generate random bytes (returns hex string)
24
+ */
25
+ static randomBytes(length) {
26
+ const array = new Uint8Array(length);
27
+ crypto.getRandomValues(array);
28
+ return Array.from(array, byte => byte.toString(16).padStart(2, '0')).join('');
29
+ }
30
+ /**
31
+ * Generate random UUID
32
+ */
33
+ static randomUUID() {
34
+ return crypto.randomUUID();
35
+ }
36
+ /**
37
+ * Create hash from object
38
+ */
39
+ static hashObject(obj) {
40
+ const jsonString = JSON.stringify(obj);
41
+ return this.createHash('sha256', jsonString);
42
+ }
43
+ }
44
+ exports.BrowserCrypto = BrowserCrypto;
@@ -0,0 +1,38 @@
1
+ "use strict";
2
+ Object.defineProperty(exports, "__esModule", { value: true });
3
+ exports.BrowserWebSocket = void 0;
4
+ /**
5
+ * Browser-compatible WebSocket wrapper
6
+ * Replaces Node.js ws module functionality
7
+ */
8
+ class BrowserWebSocket extends WebSocket {
9
+ constructor(url, protocols) {
10
+ super(url, protocols);
11
+ }
12
+ /**
13
+ * Send data with automatic JSON serialization
14
+ */
15
+ send(data) {
16
+ if (typeof data === 'string') {
17
+ super.send(data);
18
+ }
19
+ else {
20
+ super.send(JSON.stringify(data));
21
+ }
22
+ }
23
+ /**
24
+ * Add event listener with type safety
25
+ */
26
+ on(event, listener) {
27
+ this.addEventListener(event, listener);
28
+ return this;
29
+ }
30
+ /**
31
+ * Remove event listener
32
+ */
33
+ off(event, listener) {
34
+ this.removeEventListener(event, listener);
35
+ return this;
36
+ }
37
+ }
38
+ exports.BrowserWebSocket = BrowserWebSocket;