@o-lang/olang 1.0.24 → 1.0.25
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/package.json +1 -1
- package/src/runtime.js +5 -4
package/package.json
CHANGED
package/src/runtime.js
CHANGED
|
@@ -346,10 +346,11 @@ class RuntimeAPI {
|
|
|
346
346
|
};
|
|
347
347
|
|
|
348
348
|
// ✅ Check for Advanced Evolution Service (paid tier)
|
|
349
|
-
|
|
350
|
-
|
|
351
|
-
|
|
352
|
-
|
|
349
|
+
// ✅ Check for Advanced Evolution Service (paid tier)
|
|
350
|
+
if (process.env.OLANG_EVOLUTION_API_KEY) {
|
|
351
|
+
evolutionResult.status = 'advanced_evolution_enabled';
|
|
352
|
+
evolutionResult.message = 'Advanced evolution service would process this request';
|
|
353
|
+
}
|
|
353
354
|
|
|
354
355
|
if (step.saveAs) {
|
|
355
356
|
this.context[step.saveAs] = evolutionResult;
|