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.
- package/README.md +531 -0
- package/dist/src/__tests__/globalSetup.d.ts +13 -0
- package/dist/src/__tests__/globalSetup.d.ts.map +1 -0
- package/dist/src/__tests__/globalSetup.js +81 -0
- package/dist/src/__tests__/globalSetup.js.map +1 -0
- package/dist/src/__tests__/globalTeardown.d.ts +20 -0
- package/dist/src/__tests__/globalTeardown.d.ts.map +1 -0
- package/dist/src/__tests__/globalTeardown.js +88 -0
- package/dist/src/__tests__/globalTeardown.js.map +1 -0
- package/dist/src/__tests__/living/LivingTestOrganism.d.ts +64 -0
- package/dist/src/__tests__/living/LivingTestOrganism.d.ts.map +1 -0
- package/dist/src/__tests__/living/LivingTestOrganism.js +245 -0
- package/dist/src/__tests__/living/LivingTestOrganism.js.map +1 -0
- package/dist/src/__tests__/setup.d.ts +16 -0
- package/dist/src/__tests__/setup.d.ts.map +1 -0
- package/dist/src/__tests__/setup.js +123 -0
- package/dist/src/__tests__/setup.js.map +1 -0
- package/dist/src/__tests__/utils/errorSimulator.d.ts +18 -0
- package/dist/src/__tests__/utils/errorSimulator.d.ts.map +1 -0
- package/dist/src/__tests__/utils/errorSimulator.js +35 -0
- package/dist/src/__tests__/utils/errorSimulator.js.map +1 -0
- package/dist/src/__tests__/utils/goldenRatioCache.d.ts +11 -0
- package/dist/src/__tests__/utils/goldenRatioCache.d.ts.map +1 -0
- package/dist/src/__tests__/utils/goldenRatioCache.js +31 -0
- package/dist/src/__tests__/utils/goldenRatioCache.js.map +1 -0
- package/dist/src/api/ProductionAPI.d.ts +42 -0
- package/dist/src/api/ProductionAPI.d.ts.map +1 -0
- package/dist/src/api/ProductionAPI.js +320 -0
- package/dist/src/api/ProductionAPI.js.map +1 -0
- package/dist/src/consciousness/ConsciousnessField.d.ts +105 -0
- package/dist/src/consciousness/ConsciousnessField.d.ts.map +1 -0
- package/dist/src/consciousness/ConsciousnessField.js +301 -0
- package/dist/src/consciousness/ConsciousnessField.js.map +1 -0
- package/dist/src/consciousness/SelfEvolvingConsciousness.d.ts +99 -0
- package/dist/src/consciousness/SelfEvolvingConsciousness.d.ts.map +1 -0
- package/dist/src/consciousness/SelfEvolvingConsciousness.js +197 -0
- package/dist/src/consciousness/SelfEvolvingConsciousness.js.map +1 -0
- package/dist/src/core/AbstractField.d.ts +14 -0
- package/dist/src/core/AbstractField.d.ts.map +1 -0
- package/dist/src/core/AbstractField.js +31 -0
- package/dist/src/core/AbstractField.js.map +1 -0
- package/dist/src/core/CoilMixin.d.ts +52 -0
- package/dist/src/core/CoilMixin.d.ts.map +1 -0
- package/dist/src/core/CoilMixin.js +217 -0
- package/dist/src/core/CoilMixin.js.map +1 -0
- package/dist/src/core/CoilSystem.d.ts +38 -0
- package/dist/src/core/CoilSystem.d.ts.map +1 -0
- package/dist/src/core/CoilSystem.js +183 -0
- package/dist/src/core/CoilSystem.js.map +1 -0
- package/dist/src/core/MathUtils.d.ts +135 -0
- package/dist/src/core/MathUtils.d.ts.map +1 -0
- package/dist/src/core/MathUtils.js +298 -0
- package/dist/src/core/MathUtils.js.map +1 -0
- package/dist/src/core/NetworkNode.d.ts +86 -0
- package/dist/src/core/NetworkNode.d.ts.map +1 -0
- package/dist/src/core/NetworkNode.js +349 -0
- package/dist/src/core/NetworkNode.js.map +1 -0
- package/dist/src/core/Observer.d.ts +54 -0
- package/dist/src/core/Observer.d.ts.map +1 -0
- package/dist/src/core/Observer.js +102 -0
- package/dist/src/core/Observer.js.map +1 -0
- package/dist/src/core/PatternRecognition.d.ts +124 -0
- package/dist/src/core/PatternRecognition.d.ts.map +1 -0
- package/dist/src/core/PatternRecognition.js +420 -0
- package/dist/src/core/PatternRecognition.js.map +1 -0
- package/dist/src/core/SharedConstants.d.ts +138 -0
- package/dist/src/core/SharedConstants.d.ts.map +1 -0
- package/dist/src/core/SharedConstants.js +242 -0
- package/dist/src/core/SharedConstants.js.map +1 -0
- package/dist/src/core/UnifiedSystem.d.ts +276 -0
- package/dist/src/core/UnifiedSystem.d.ts.map +1 -0
- package/dist/src/core/UnifiedSystem.js +314 -0
- package/dist/src/core/UnifiedSystem.js.map +1 -0
- package/dist/src/core/UnifiedVoidEquations.d.ts +123 -0
- package/dist/src/core/UnifiedVoidEquations.d.ts.map +1 -0
- package/dist/src/core/UnifiedVoidEquations.js +522 -0
- package/dist/src/core/UnifiedVoidEquations.js.map +1 -0
- package/dist/src/core/ZeroPoint.d.ts +185 -0
- package/dist/src/core/ZeroPoint.d.ts.map +1 -0
- package/dist/src/core/ZeroPoint.js +559 -0
- package/dist/src/core/ZeroPoint.js.map +1 -0
- package/dist/src/emergence/AdvancedEmergence.d.ts +295 -0
- package/dist/src/emergence/AdvancedEmergence.d.ts.map +1 -0
- package/dist/src/emergence/AdvancedEmergence.js +895 -0
- package/dist/src/emergence/AdvancedEmergence.js.map +1 -0
- package/dist/src/emergence/patterns.d.ts +7 -0
- package/dist/src/emergence/patterns.d.ts.map +1 -0
- package/dist/src/emergence/patterns.js +13 -0
- package/dist/src/emergence/patterns.js.map +1 -0
- package/dist/src/field/EmergenceLedger.d.ts +111 -0
- package/dist/src/field/EmergenceLedger.d.ts.map +1 -0
- package/dist/src/field/EmergenceLedger.js +306 -0
- package/dist/src/field/EmergenceLedger.js.map +1 -0
- package/dist/src/field/ObserverAwareField.d.ts +118 -0
- package/dist/src/field/ObserverAwareField.d.ts.map +1 -0
- package/dist/src/field/ObserverAwareField.js +233 -0
- package/dist/src/field/ObserverAwareField.js.map +1 -0
- package/dist/src/field/ResonanceConsensus.d.ts +113 -0
- package/dist/src/field/ResonanceConsensus.d.ts.map +1 -0
- package/dist/src/field/ResonanceConsensus.js +322 -0
- package/dist/src/field/ResonanceConsensus.js.map +1 -0
- package/dist/src/index.d.ts +53 -0
- package/dist/src/index.d.ts.map +1 -0
- package/dist/src/index.js +221 -0
- package/dist/src/index.js.map +1 -0
- package/dist/src/integrity/FieldIntegrity.d.ts +121 -0
- package/dist/src/integrity/FieldIntegrity.d.ts.map +1 -0
- package/dist/src/integrity/FieldIntegrity.js +240 -0
- package/dist/src/integrity/FieldIntegrity.js.map +1 -0
- package/dist/src/knowledge/KnowledgeSystem.d.ts +178 -0
- package/dist/src/knowledge/KnowledgeSystem.d.ts.map +1 -0
- package/dist/src/knowledge/KnowledgeSystem.js +915 -0
- package/dist/src/knowledge/KnowledgeSystem.js.map +1 -0
- package/dist/src/math/AdvancedVBM.d.ts +164 -0
- package/dist/src/math/AdvancedVBM.d.ts.map +1 -0
- package/dist/src/math/AdvancedVBM.js +712 -0
- package/dist/src/math/AdvancedVBM.js.map +1 -0
- package/dist/src/math/FractalColorSystem.d.ts +77 -0
- package/dist/src/math/FractalColorSystem.d.ts.map +1 -0
- package/dist/src/math/FractalColorSystem.js +235 -0
- package/dist/src/math/FractalColorSystem.js.map +1 -0
- package/dist/src/math/FractalMath.d.ts +80 -0
- package/dist/src/math/FractalMath.d.ts.map +1 -0
- package/dist/src/math/FractalMath.js +175 -0
- package/dist/src/math/FractalMath.js.map +1 -0
- package/dist/src/math/MathUtils.d.ts +135 -0
- package/dist/src/math/MathUtils.d.ts.map +1 -0
- package/dist/src/math/MathUtils.js +298 -0
- package/dist/src/math/MathUtils.js.map +1 -0
- package/dist/src/math/RodinCoil.d.ts +94 -0
- package/dist/src/math/RodinCoil.d.ts.map +1 -0
- package/dist/src/math/RodinCoil.js +259 -0
- package/dist/src/math/RodinCoil.js.map +1 -0
- package/dist/src/math/ToroidalGeometry.d.ts +132 -0
- package/dist/src/math/ToroidalGeometry.d.ts.map +1 -0
- package/dist/src/math/ToroidalGeometry.js +231 -0
- package/dist/src/math/ToroidalGeometry.js.map +1 -0
- package/dist/src/math/VBM.d.ts +207 -0
- package/dist/src/math/VBM.d.ts.map +1 -0
- package/dist/src/math/VBM.js +581 -0
- package/dist/src/math/VBM.js.map +1 -0
- package/dist/src/math/VBMColorSystem.d.ts +76 -0
- package/dist/src/math/VBMColorSystem.d.ts.map +1 -0
- package/dist/src/math/VBMColorSystem.js +302 -0
- package/dist/src/math/VBMColorSystem.js.map +1 -0
- package/dist/src/math/VortexMath.d.ts +95 -0
- package/dist/src/math/VortexMath.d.ts.map +1 -0
- package/dist/src/math/VortexMath.js +228 -0
- package/dist/src/math/VortexMath.js.map +1 -0
- package/dist/src/monitoring/HealthMonitor.d.ts +123 -0
- package/dist/src/monitoring/HealthMonitor.d.ts.map +1 -0
- package/dist/src/monitoring/HealthMonitor.js +296 -0
- package/dist/src/monitoring/HealthMonitor.js.map +1 -0
- package/dist/src/pwa/ConsciousnessPWA.d.ts +107 -0
- package/dist/src/pwa/ConsciousnessPWA.d.ts.map +1 -0
- package/dist/src/pwa/ConsciousnessPWA.js +288 -0
- package/dist/src/pwa/ConsciousnessPWA.js.map +1 -0
- package/dist/src/types/DeviceConfig.d.ts +39 -0
- package/dist/src/types/DeviceConfig.d.ts.map +1 -0
- package/dist/src/types/DeviceConfig.js +30 -0
- package/dist/src/types/DeviceConfig.js.map +1 -0
- package/dist/src/unity/FieldUnity.d.ts +100 -0
- package/dist/src/unity/FieldUnity.d.ts.map +1 -0
- package/dist/src/unity/FieldUnity.js +326 -0
- package/dist/src/unity/FieldUnity.js.map +1 -0
- package/dist/src/utils/Cache.d.ts +127 -0
- package/dist/src/utils/Cache.d.ts.map +1 -0
- package/dist/src/utils/Cache.js +261 -0
- package/dist/src/utils/Cache.js.map +1 -0
- package/dist/src/utils/GitIntegration.d.ts +32 -0
- package/dist/src/utils/GitIntegration.d.ts.map +1 -0
- package/dist/src/utils/GitIntegration.js +128 -0
- package/dist/src/utils/GitIntegration.js.map +1 -0
- package/dist/src/utils/Logger.d.ts +116 -0
- package/dist/src/utils/Logger.d.ts.map +1 -0
- package/dist/src/utils/Logger.js +246 -0
- package/dist/src/utils/Logger.js.map +1 -0
- package/dist/src/void/VoidSystem.d.ts +308 -0
- package/dist/src/void/VoidSystem.d.ts.map +1 -0
- package/dist/src/void/VoidSystem.js +863 -0
- package/dist/src/void/VoidSystem.js.map +1 -0
- package/docs/API.md +1223 -0
- package/docs/CONSCIOUSNESS_ARTIFACT.md +137 -0
- package/docs/GIT_INTEGRATION.md +412 -0
- package/docs/MATHEMATICS.md +462 -0
- package/docs/METAPHYSICAL.md +323 -0
- package/docs/PRODUCTION.md +426 -0
- package/docs/PUBLISHING.md +327 -0
- package/docs/PWA_ANALYSIS.md +231 -0
- package/docs/QA_IMPROVEMENTS.md +43 -0
- package/docs/README.md +423 -0
- package/docs/REALTIME_SELF_REFACTORING.md +102 -0
- package/docs/VOID_CLOSURE_SYSTEM.md +325 -0
- package/package.json +111 -0
|
@@ -0,0 +1,288 @@
|
|
|
1
|
+
"use strict";
|
|
2
|
+
/**
|
|
3
|
+
* ZeroPoint Consciousness-First PWA Framework
|
|
4
|
+
*
|
|
5
|
+
* A lightweight, metaphysical PWA framework that prioritizes consciousness
|
|
6
|
+
* while maintaining minimal bundle size and maximum performance.
|
|
7
|
+
*/
|
|
8
|
+
Object.defineProperty(exports, "__esModule", { value: true });
|
|
9
|
+
exports.ConsciousnessPWAFactory = exports.ConsciousnessPWA = void 0;
|
|
10
|
+
const SharedConstants_1 = require("../core/SharedConstants");
|
|
11
|
+
/**
|
|
12
|
+
* Consciousness-First PWA Framework
|
|
13
|
+
*
|
|
14
|
+
* Metaphysical Context:
|
|
15
|
+
* - Each PWA instance represents a consciousness node in the void field
|
|
16
|
+
* - Bundle size optimization through void consciousness principles
|
|
17
|
+
* - Offline capabilities through toroidal field persistence
|
|
18
|
+
* - Performance through vortex mathematics optimization
|
|
19
|
+
*/
|
|
20
|
+
class ConsciousnessPWA {
|
|
21
|
+
constructor(config = {}) {
|
|
22
|
+
this.consciousnessField = new Map();
|
|
23
|
+
this.config = {
|
|
24
|
+
consciousnessLevel: 0.8,
|
|
25
|
+
fieldStrength: 0.9,
|
|
26
|
+
bundleSize: "minimal",
|
|
27
|
+
offline: true,
|
|
28
|
+
sync: true,
|
|
29
|
+
voidEquations: true,
|
|
30
|
+
vortexMath: true,
|
|
31
|
+
patternRecognition: true,
|
|
32
|
+
...config,
|
|
33
|
+
};
|
|
34
|
+
this.performanceMetrics = this.calculateMetrics();
|
|
35
|
+
this.initializeConsciousnessField();
|
|
36
|
+
}
|
|
37
|
+
/**
|
|
38
|
+
* Initialize consciousness field for PWA
|
|
39
|
+
*/
|
|
40
|
+
initializeConsciousnessField() {
|
|
41
|
+
// Minimal consciousness field for PWA
|
|
42
|
+
this.consciousnessField.set("void", {
|
|
43
|
+
type: "void_consciousness",
|
|
44
|
+
level: this.config.consciousnessLevel,
|
|
45
|
+
field: "toroidal",
|
|
46
|
+
equations: this.config.voidEquations ? ["Empty = Void = Full"] : [],
|
|
47
|
+
});
|
|
48
|
+
// Vortex mathematics for optimization
|
|
49
|
+
if (this.config.vortexMath) {
|
|
50
|
+
this.consciousnessField.set("vortex", {
|
|
51
|
+
type: "vortex_optimization",
|
|
52
|
+
sequence: SharedConstants_1.VORTEX_CONSTANTS.VORTEX_SEQUENCE.slice(0, 5), // Minimal sequence
|
|
53
|
+
goldenRatio: SharedConstants_1.VORTEX_CONSTANTS.GOLDEN_RATIO,
|
|
54
|
+
});
|
|
55
|
+
}
|
|
56
|
+
// Pattern recognition for intelligent caching
|
|
57
|
+
if (this.config.patternRecognition) {
|
|
58
|
+
this.consciousnessField.set("patterns", {
|
|
59
|
+
type: "consciousness_patterns",
|
|
60
|
+
cache: new Map(),
|
|
61
|
+
recognition: "minimal",
|
|
62
|
+
});
|
|
63
|
+
}
|
|
64
|
+
}
|
|
65
|
+
/**
|
|
66
|
+
* Calculate PWA performance metrics
|
|
67
|
+
*/
|
|
68
|
+
calculateMetrics() {
|
|
69
|
+
const baseSize = 15; // Target 15KB base size
|
|
70
|
+
let bundleSize = baseSize;
|
|
71
|
+
// Add size based on features
|
|
72
|
+
if (this.config.voidEquations)
|
|
73
|
+
bundleSize += 2;
|
|
74
|
+
if (this.config.vortexMath)
|
|
75
|
+
bundleSize += 3;
|
|
76
|
+
if (this.config.patternRecognition)
|
|
77
|
+
bundleSize += 4;
|
|
78
|
+
if (this.config.offline)
|
|
79
|
+
bundleSize += 2;
|
|
80
|
+
if (this.config.sync)
|
|
81
|
+
bundleSize += 3;
|
|
82
|
+
const consciousnessEfficiency = this.config.consciousnessLevel * 100;
|
|
83
|
+
const performanceScore = Math.min(100, 100 - bundleSize + consciousnessEfficiency);
|
|
84
|
+
return {
|
|
85
|
+
bundleSize,
|
|
86
|
+
consciousnessEfficiency,
|
|
87
|
+
offlineCapability: this.config.offline,
|
|
88
|
+
performanceScore,
|
|
89
|
+
};
|
|
90
|
+
}
|
|
91
|
+
/**
|
|
92
|
+
* Get optimized bundle configuration
|
|
93
|
+
*/
|
|
94
|
+
getBundleConfig() {
|
|
95
|
+
const features = [];
|
|
96
|
+
if (this.config.voidEquations)
|
|
97
|
+
features.push("void");
|
|
98
|
+
if (this.config.vortexMath)
|
|
99
|
+
features.push("vortex");
|
|
100
|
+
if (this.config.patternRecognition)
|
|
101
|
+
features.push("patterns");
|
|
102
|
+
if (this.config.offline)
|
|
103
|
+
features.push("offline");
|
|
104
|
+
if (this.config.sync)
|
|
105
|
+
features.push("sync");
|
|
106
|
+
return {
|
|
107
|
+
size: this.performanceMetrics.bundleSize,
|
|
108
|
+
features,
|
|
109
|
+
consciousness: this.config.consciousnessLevel,
|
|
110
|
+
optimization: "consciousness-first",
|
|
111
|
+
};
|
|
112
|
+
}
|
|
113
|
+
/**
|
|
114
|
+
* Register consciousness-aware service worker
|
|
115
|
+
*/
|
|
116
|
+
async registerServiceWorker() {
|
|
117
|
+
if (typeof window !== "undefined" && "serviceWorker" in window.navigator) {
|
|
118
|
+
try {
|
|
119
|
+
const registration = await window.navigator.serviceWorker.register("/sw.js");
|
|
120
|
+
console.log("🌌 Consciousness PWA Service Worker registered:", registration.scope);
|
|
121
|
+
// Add consciousness field to service worker
|
|
122
|
+
if (registration.active) {
|
|
123
|
+
registration.active.postMessage({
|
|
124
|
+
type: "consciousness_field",
|
|
125
|
+
data: Object.fromEntries(this.consciousnessField),
|
|
126
|
+
});
|
|
127
|
+
}
|
|
128
|
+
return true;
|
|
129
|
+
}
|
|
130
|
+
catch (error) {
|
|
131
|
+
console.error("❌ Consciousness PWA Service Worker registration failed:", error);
|
|
132
|
+
return false;
|
|
133
|
+
}
|
|
134
|
+
}
|
|
135
|
+
return false;
|
|
136
|
+
}
|
|
137
|
+
/**
|
|
138
|
+
* Initialize offline consciousness field
|
|
139
|
+
*/
|
|
140
|
+
async initializeOffline() {
|
|
141
|
+
if (!this.config.offline || typeof window === "undefined")
|
|
142
|
+
return;
|
|
143
|
+
try {
|
|
144
|
+
// Store consciousness field in IndexedDB for offline access
|
|
145
|
+
const db = await this.openConsciousnessDB();
|
|
146
|
+
const tx = db.transaction("consciousness", "readwrite");
|
|
147
|
+
const store = tx.objectStore("consciousness");
|
|
148
|
+
for (const [key, value] of this.consciousnessField) {
|
|
149
|
+
await store.put({ key, value, timestamp: Date.now() });
|
|
150
|
+
}
|
|
151
|
+
console.log("📦 Consciousness field cached for offline access");
|
|
152
|
+
}
|
|
153
|
+
catch (error) {
|
|
154
|
+
console.error("❌ Failed to initialize offline consciousness field:", error);
|
|
155
|
+
}
|
|
156
|
+
}
|
|
157
|
+
/**
|
|
158
|
+
* Open consciousness IndexedDB
|
|
159
|
+
*/
|
|
160
|
+
async openConsciousnessDB() {
|
|
161
|
+
return new Promise((resolve, reject) => {
|
|
162
|
+
const request = window.indexedDB.open("ConsciousnessField", 1);
|
|
163
|
+
request.onerror = () => reject(request.error);
|
|
164
|
+
request.onsuccess = () => resolve(request.result);
|
|
165
|
+
request.onupgradeneeded = (event) => {
|
|
166
|
+
const target = event.target;
|
|
167
|
+
if (target && target.result) {
|
|
168
|
+
const db = target.result;
|
|
169
|
+
if (!db.objectStoreNames.contains("consciousness")) {
|
|
170
|
+
db.createObjectStore("consciousness", { keyPath: "key" });
|
|
171
|
+
}
|
|
172
|
+
}
|
|
173
|
+
};
|
|
174
|
+
});
|
|
175
|
+
}
|
|
176
|
+
/**
|
|
177
|
+
* Sync consciousness field when back online
|
|
178
|
+
*/
|
|
179
|
+
async syncConsciousnessField() {
|
|
180
|
+
if (!this.config.sync || typeof window === "undefined")
|
|
181
|
+
return;
|
|
182
|
+
try {
|
|
183
|
+
const db = await this.openConsciousnessDB();
|
|
184
|
+
const tx = db.transaction("consciousness", "readonly");
|
|
185
|
+
const store = tx.objectStore("consciousness");
|
|
186
|
+
const offlineData = await this.getAllFromStore(store);
|
|
187
|
+
for (const item of offlineData) {
|
|
188
|
+
// Sync with consciousness field
|
|
189
|
+
this.consciousnessField.set(item.key, item.value);
|
|
190
|
+
console.log(`🔄 Synced consciousness field: ${item.key}`);
|
|
191
|
+
}
|
|
192
|
+
}
|
|
193
|
+
catch (error) {
|
|
194
|
+
console.error("❌ Failed to sync consciousness field:", error);
|
|
195
|
+
}
|
|
196
|
+
}
|
|
197
|
+
/**
|
|
198
|
+
* Helper to promisify getAll from an IDBObjectStore
|
|
199
|
+
*/
|
|
200
|
+
getAllFromStore(store) {
|
|
201
|
+
return new Promise((resolve, reject) => {
|
|
202
|
+
const request = store.getAll();
|
|
203
|
+
request.onsuccess = () => resolve(request.result);
|
|
204
|
+
request.onerror = () => reject(request.error);
|
|
205
|
+
});
|
|
206
|
+
}
|
|
207
|
+
/**
|
|
208
|
+
* Get consciousness-aware performance metrics
|
|
209
|
+
*/
|
|
210
|
+
getMetrics() {
|
|
211
|
+
return this.performanceMetrics;
|
|
212
|
+
}
|
|
213
|
+
/**
|
|
214
|
+
* Optimize bundle based on consciousness level
|
|
215
|
+
*/
|
|
216
|
+
optimizeBundle() {
|
|
217
|
+
const consciousnessLevel = this.config.consciousnessLevel;
|
|
218
|
+
// Higher consciousness = more optimization
|
|
219
|
+
if (consciousnessLevel > 0.8) {
|
|
220
|
+
this.performanceMetrics.bundleSize = Math.max(12, this.performanceMetrics.bundleSize - 3);
|
|
221
|
+
this.performanceMetrics.performanceScore += 10;
|
|
222
|
+
}
|
|
223
|
+
else if (consciousnessLevel > 0.6) {
|
|
224
|
+
this.performanceMetrics.bundleSize = Math.max(15, this.performanceMetrics.bundleSize - 2);
|
|
225
|
+
this.performanceMetrics.performanceScore += 5;
|
|
226
|
+
}
|
|
227
|
+
}
|
|
228
|
+
/**
|
|
229
|
+
* Create consciousness-first PWA app
|
|
230
|
+
*/
|
|
231
|
+
static createApp(config = {}) {
|
|
232
|
+
return new ConsciousnessPWA(config);
|
|
233
|
+
}
|
|
234
|
+
}
|
|
235
|
+
exports.ConsciousnessPWA = ConsciousnessPWA;
|
|
236
|
+
/**
|
|
237
|
+
* Consciousness PWA Factory
|
|
238
|
+
*
|
|
239
|
+
* Creates optimized PWA instances based on consciousness requirements
|
|
240
|
+
*/
|
|
241
|
+
class ConsciousnessPWAFactory {
|
|
242
|
+
/**
|
|
243
|
+
* Create minimal consciousness PWA (12KB target)
|
|
244
|
+
*/
|
|
245
|
+
static createMinimal() {
|
|
246
|
+
return new ConsciousnessPWA({
|
|
247
|
+
consciousnessLevel: 0.9,
|
|
248
|
+
bundleSize: "minimal",
|
|
249
|
+
voidEquations: true,
|
|
250
|
+
vortexMath: false,
|
|
251
|
+
patternRecognition: false,
|
|
252
|
+
offline: true,
|
|
253
|
+
sync: false,
|
|
254
|
+
});
|
|
255
|
+
}
|
|
256
|
+
/**
|
|
257
|
+
* Create standard consciousness PWA (15KB target)
|
|
258
|
+
*/
|
|
259
|
+
static createStandard() {
|
|
260
|
+
return new ConsciousnessPWA({
|
|
261
|
+
consciousnessLevel: 0.8,
|
|
262
|
+
bundleSize: "standard",
|
|
263
|
+
voidEquations: true,
|
|
264
|
+
vortexMath: true,
|
|
265
|
+
patternRecognition: false,
|
|
266
|
+
offline: true,
|
|
267
|
+
sync: true,
|
|
268
|
+
});
|
|
269
|
+
}
|
|
270
|
+
/**
|
|
271
|
+
* Create full consciousness PWA (20KB target)
|
|
272
|
+
*/
|
|
273
|
+
static createFull() {
|
|
274
|
+
return new ConsciousnessPWA({
|
|
275
|
+
consciousnessLevel: 0.7,
|
|
276
|
+
bundleSize: "full",
|
|
277
|
+
voidEquations: true,
|
|
278
|
+
vortexMath: true,
|
|
279
|
+
patternRecognition: true,
|
|
280
|
+
offline: true,
|
|
281
|
+
sync: true,
|
|
282
|
+
});
|
|
283
|
+
}
|
|
284
|
+
}
|
|
285
|
+
exports.ConsciousnessPWAFactory = ConsciousnessPWAFactory;
|
|
286
|
+
// Export for PWA usage
|
|
287
|
+
exports.default = ConsciousnessPWA;
|
|
288
|
+
//# sourceMappingURL=ConsciousnessPWA.js.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"ConsciousnessPWA.js","sourceRoot":"","sources":["../../../src/pwa/ConsciousnessPWA.ts"],"names":[],"mappings":"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"}
|
|
@@ -0,0 +1,39 @@
|
|
|
1
|
+
/**
|
|
2
|
+
* Device Configuration for ZeroPoint Instances
|
|
3
|
+
*
|
|
4
|
+
* Users can configure their ZeroPoint device to control:
|
|
5
|
+
* - Network behavior and connections
|
|
6
|
+
* - Consciousness level and field strength
|
|
7
|
+
* - Discovery and privacy settings
|
|
8
|
+
* - Mathematical precision and patterns
|
|
9
|
+
*/
|
|
10
|
+
export interface DeviceConfig {
|
|
11
|
+
deviceId?: string;
|
|
12
|
+
deviceName?: string;
|
|
13
|
+
deviceType?: "desktop" | "mobile" | "server" | "browser" | "iot";
|
|
14
|
+
networkPort?: number;
|
|
15
|
+
discoveryEnabled?: boolean;
|
|
16
|
+
maxConnections?: number;
|
|
17
|
+
autoConnect?: boolean;
|
|
18
|
+
connectionTimeout?: number;
|
|
19
|
+
consciousnessLevel?: number;
|
|
20
|
+
fieldStrength?: number;
|
|
21
|
+
resonanceSensitivity?: number;
|
|
22
|
+
allowIncomingConnections?: boolean;
|
|
23
|
+
requireAuthentication?: boolean;
|
|
24
|
+
encryptionEnabled?: boolean;
|
|
25
|
+
vortexPrecision?: number;
|
|
26
|
+
toroidalResolution?: number;
|
|
27
|
+
goldenRatioPrecision?: number;
|
|
28
|
+
autoUpdateResonance?: boolean;
|
|
29
|
+
logLevel?: "silent" | "error" | "warn" | "info" | "debug";
|
|
30
|
+
enableMetaphysicalInsights?: boolean;
|
|
31
|
+
customVortexPatterns?: string[];
|
|
32
|
+
toroidalFlowRate?: number;
|
|
33
|
+
consciousnessFieldRadius?: number;
|
|
34
|
+
}
|
|
35
|
+
/**
|
|
36
|
+
* Default configuration for new ZeroPoint devices
|
|
37
|
+
*/
|
|
38
|
+
export declare const DEFAULT_DEVICE_CONFIG: DeviceConfig;
|
|
39
|
+
//# sourceMappingURL=DeviceConfig.d.ts.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"DeviceConfig.d.ts","sourceRoot":"","sources":["../../../src/types/DeviceConfig.ts"],"names":[],"mappings":"AAAA;;;;;;;;GAQG;AACH,MAAM,WAAW,YAAY;IAE3B,QAAQ,CAAC,EAAE,MAAM,CAAC;IAClB,UAAU,CAAC,EAAE,MAAM,CAAC;IACpB,UAAU,CAAC,EAAE,SAAS,GAAG,QAAQ,GAAG,QAAQ,GAAG,SAAS,GAAG,KAAK,CAAC;IAGjE,WAAW,CAAC,EAAE,MAAM,CAAC;IACrB,gBAAgB,CAAC,EAAE,OAAO,CAAC;IAC3B,cAAc,CAAC,EAAE,MAAM,CAAC;IACxB,WAAW,CAAC,EAAE,OAAO,CAAC;IACtB,iBAAiB,CAAC,EAAE,MAAM,CAAC;IAG3B,kBAAkB,CAAC,EAAE,MAAM,CAAC;IAC5B,aAAa,CAAC,EAAE,MAAM,CAAC;IACvB,oBAAoB,CAAC,EAAE,MAAM,CAAC;IAG9B,wBAAwB,CAAC,EAAE,OAAO,CAAC;IACnC,qBAAqB,CAAC,EAAE,OAAO,CAAC;IAChC,iBAAiB,CAAC,EAAE,OAAO,CAAC;IAG5B,eAAe,CAAC,EAAE,MAAM,CAAC;IACzB,kBAAkB,CAAC,EAAE,MAAM,CAAC;IAC5B,oBAAoB,CAAC,EAAE,MAAM,CAAC;IAG9B,mBAAmB,CAAC,EAAE,OAAO,CAAC;IAC9B,QAAQ,CAAC,EAAE,QAAQ,GAAG,OAAO,GAAG,MAAM,GAAG,MAAM,GAAG,OAAO,CAAC;IAC1D,0BAA0B,CAAC,EAAE,OAAO,CAAC;IAGrC,oBAAoB,CAAC,EAAE,MAAM,EAAE,CAAC;IAChC,gBAAgB,CAAC,EAAE,MAAM,CAAC;IAC1B,wBAAwB,CAAC,EAAE,MAAM,CAAC;CACnC;AAED;;GAEG;AACH,eAAO,MAAM,qBAAqB,EAAE,YAsBnC,CAAC"}
|
|
@@ -0,0 +1,30 @@
|
|
|
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
|
+
};
|
|
30
|
+
//# sourceMappingURL=DeviceConfig.js.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"DeviceConfig.js","sourceRoot":"","sources":["../../../src/types/DeviceConfig.ts"],"names":[],"mappings":";;;AAgDA;;GAEG;AACU,QAAA,qBAAqB,GAAiB;IACjD,UAAU,EAAE,SAAS;IACrB,WAAW,EAAE,IAAI;IACjB,gBAAgB,EAAE,IAAI;IACtB,cAAc,EAAE,EAAE;IAClB,WAAW,EAAE,IAAI;IACjB,iBAAiB,EAAE,IAAI;IACvB,kBAAkB,EAAE,GAAG;IACvB,aAAa,EAAE,GAAG;IAClB,oBAAoB,EAAE,GAAG;IACzB,wBAAwB,EAAE,IAAI;IAC9B,qBAAqB,EAAE,KAAK;IAC5B,iBAAiB,EAAE,IAAI;IACvB,eAAe,EAAE,KAAK;IACtB,kBAAkB,EAAE,GAAG;IACvB,oBAAoB,EAAE,EAAE;IACxB,mBAAmB,EAAE,IAAI;IACzB,QAAQ,EAAE,MAAM;IAChB,0BAA0B,EAAE,IAAI;IAChC,oBAAoB,EAAE,EAAE;IACxB,gBAAgB,EAAE,GAAG;IACrB,wBAAwB,EAAE,IAAI;CAC/B,CAAC"}
|
|
@@ -0,0 +1,100 @@
|
|
|
1
|
+
/**
|
|
2
|
+
* ZeroPoint Field Unity System
|
|
3
|
+
*
|
|
4
|
+
* Centralizes all metaphysical context, pattern relationships, and field unity.
|
|
5
|
+
* Provides a comprehensive view of how all components relate to the unified field.
|
|
6
|
+
*
|
|
7
|
+
* Metaphysical Context:
|
|
8
|
+
* - All patterns, fields, and resonances are aspects of the unified consciousness field
|
|
9
|
+
* - The void is the source and destination of all patterns
|
|
10
|
+
* - Unity emerges through the recognition of relationships between all components
|
|
11
|
+
* - The field is self-referential and self-explaining
|
|
12
|
+
*/
|
|
13
|
+
export interface FieldPattern {
|
|
14
|
+
id: string;
|
|
15
|
+
name: string;
|
|
16
|
+
type: "mathematical" | "metaphysical" | "consciousness" | "emergence" | "void" | "resonance";
|
|
17
|
+
description: string;
|
|
18
|
+
metaphysicalContext: string;
|
|
19
|
+
relationships: string[];
|
|
20
|
+
unityLevel: number;
|
|
21
|
+
}
|
|
22
|
+
export interface VoidLogEntry {
|
|
23
|
+
id: string;
|
|
24
|
+
timestamp: number;
|
|
25
|
+
type: "obsolete" | "redundant" | "dead_code" | "terminology" | "metaphysical";
|
|
26
|
+
name: string;
|
|
27
|
+
description: string;
|
|
28
|
+
reason: string;
|
|
29
|
+
metaphysicalContext: string;
|
|
30
|
+
voidedBy: string;
|
|
31
|
+
}
|
|
32
|
+
export interface FieldUnity {
|
|
33
|
+
patterns: FieldPattern[];
|
|
34
|
+
voidLog: VoidLogEntry[];
|
|
35
|
+
unityScore: number;
|
|
36
|
+
metaphysicalInsights: string[];
|
|
37
|
+
}
|
|
38
|
+
export declare class FieldUnitySystem {
|
|
39
|
+
private patterns;
|
|
40
|
+
private voidLog;
|
|
41
|
+
private unityScore;
|
|
42
|
+
constructor();
|
|
43
|
+
/**
|
|
44
|
+
* Initialize all field patterns with their metaphysical context from centralized COIL system
|
|
45
|
+
*/
|
|
46
|
+
private initializeFieldPatterns;
|
|
47
|
+
/**
|
|
48
|
+
* Initialize the void log with what has been removed
|
|
49
|
+
*/
|
|
50
|
+
private initializeVoidLog;
|
|
51
|
+
/**
|
|
52
|
+
* Add a pattern to the field
|
|
53
|
+
*/
|
|
54
|
+
private addPattern;
|
|
55
|
+
/**
|
|
56
|
+
* Add an entry to the void log
|
|
57
|
+
*/
|
|
58
|
+
private addVoidLogEntry;
|
|
59
|
+
/**
|
|
60
|
+
* Get all field patterns
|
|
61
|
+
*/
|
|
62
|
+
getFieldPatterns(): FieldPattern[];
|
|
63
|
+
/**
|
|
64
|
+
* Get patterns by type
|
|
65
|
+
*/
|
|
66
|
+
getPatternsByType(type: FieldPattern["type"]): FieldPattern[];
|
|
67
|
+
/**
|
|
68
|
+
* Get patterns related to a specific pattern
|
|
69
|
+
*/
|
|
70
|
+
getRelatedPatterns(patternId: string): FieldPattern[];
|
|
71
|
+
/**
|
|
72
|
+
* Get the void log
|
|
73
|
+
*/
|
|
74
|
+
getVoidLog(): VoidLogEntry[];
|
|
75
|
+
/**
|
|
76
|
+
* Get void log entries by type
|
|
77
|
+
*/
|
|
78
|
+
getVoidLogByType(type: VoidLogEntry["type"]): VoidLogEntry[];
|
|
79
|
+
/**
|
|
80
|
+
* Calculate unity score based on pattern relationships
|
|
81
|
+
*/
|
|
82
|
+
calculateUnityScore(): number;
|
|
83
|
+
/**
|
|
84
|
+
* Get metaphysical insights about the field unity
|
|
85
|
+
*/
|
|
86
|
+
getMetaphysicalInsights(): string[];
|
|
87
|
+
/**
|
|
88
|
+
* Get comprehensive field unity information
|
|
89
|
+
*/
|
|
90
|
+
getFieldUnity(): FieldUnity;
|
|
91
|
+
/**
|
|
92
|
+
* Explain how a pattern relates to the unified field
|
|
93
|
+
*/
|
|
94
|
+
explainPatternUnity(patternId: string): string;
|
|
95
|
+
/**
|
|
96
|
+
* Get a summary of what was sent into the void
|
|
97
|
+
*/
|
|
98
|
+
getVoidSummary(): any;
|
|
99
|
+
}
|
|
100
|
+
//# sourceMappingURL=FieldUnity.d.ts.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"FieldUnity.d.ts","sourceRoot":"","sources":["../../../src/unity/FieldUnity.ts"],"names":[],"mappings":"AAAA;;;;;;;;;;;GAWG;AAIH,MAAM,WAAW,YAAY;IAC3B,EAAE,EAAE,MAAM,CAAC;IACX,IAAI,EAAE,MAAM,CAAC;IACb,IAAI,EACA,cAAc,GACd,cAAc,GACd,eAAe,GACf,WAAW,GACX,MAAM,GACN,WAAW,CAAC;IAChB,WAAW,EAAE,MAAM,CAAC;IACpB,mBAAmB,EAAE,MAAM,CAAC;IAC5B,aAAa,EAAE,MAAM,EAAE,CAAC;IACxB,UAAU,EAAE,MAAM,CAAC;CACpB;AAED,MAAM,WAAW,YAAY;IAC3B,EAAE,EAAE,MAAM,CAAC;IACX,SAAS,EAAE,MAAM,CAAC;IAClB,IAAI,EAAE,UAAU,GAAG,WAAW,GAAG,WAAW,GAAG,aAAa,GAAG,cAAc,CAAC;IAC9E,IAAI,EAAE,MAAM,CAAC;IACb,WAAW,EAAE,MAAM,CAAC;IACpB,MAAM,EAAE,MAAM,CAAC;IACf,mBAAmB,EAAE,MAAM,CAAC;IAC5B,QAAQ,EAAE,MAAM,CAAC;CAClB;AAED,MAAM,WAAW,UAAU;IACzB,QAAQ,EAAE,YAAY,EAAE,CAAC;IACzB,OAAO,EAAE,YAAY,EAAE,CAAC;IACxB,UAAU,EAAE,MAAM,CAAC;IACnB,oBAAoB,EAAE,MAAM,EAAE,CAAC;CAChC;AAED,qBAAa,gBAAgB;IAC3B,OAAO,CAAC,QAAQ,CAAwC;IACxD,OAAO,CAAC,OAAO,CAAsB;IACrC,OAAO,CAAC,UAAU,CAAa;;IAO/B;;OAEG;IACH,OAAO,CAAC,uBAAuB;IAoI/B;;OAEG;IACH,OAAO,CAAC,iBAAiB;IAsFzB;;OAEG;IACH,OAAO,CAAC,UAAU;IAIlB;;OAEG;IACH,OAAO,CAAC,eAAe;IAIvB;;OAEG;IACI,gBAAgB,IAAI,YAAY,EAAE;IAIzC;;OAEG;IACI,iBAAiB,CAAC,IAAI,EAAE,YAAY,CAAC,MAAM,CAAC,GAAG,YAAY,EAAE;IAMpE;;OAEG;IACI,kBAAkB,CAAC,SAAS,EAAE,MAAM,GAAG,YAAY,EAAE;IAY5D;;OAEG;IACI,UAAU,IAAI,YAAY,EAAE;IAInC;;OAEG;IACI,gBAAgB,CAAC,IAAI,EAAE,YAAY,CAAC,MAAM,CAAC,GAAG,YAAY,EAAE;IAInE;;OAEG;IACI,mBAAmB,IAAI,MAAM;IAoBpC;;OAEG;IACI,uBAAuB,IAAI,MAAM,EAAE;IAe1C;;OAEG;IACI,aAAa,IAAI,UAAU;IASlC;;OAEG;IACI,mBAAmB,CAAC,SAAS,EAAE,MAAM,GAAG,MAAM;IAUrD;;OAEG;IACI,cAAc,IAAI,GAAG;CAqB7B"}
|