@olympeio/runtime-node 9.11.3 → 9.11.5
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
CHANGED
package/types/runtime.d.ts
CHANGED
|
@@ -284,8 +284,15 @@ export class Config {
|
|
|
284
284
|
* @param id the parameter id
|
|
285
285
|
*/
|
|
286
286
|
static getParameter(id: string): unknown | undefined;
|
|
287
|
-
}
|
|
288
287
|
|
|
288
|
+
/**
|
|
289
|
+
* Set the value of the specified parameter. It overrides the current value of the parameter wherever it is coming from.
|
|
290
|
+
*
|
|
291
|
+
* @param id parameter id
|
|
292
|
+
* @param value the value to replace the current value with.
|
|
293
|
+
*/
|
|
294
|
+
static setParameter(id: string, value: unknown): void;
|
|
295
|
+
}
|
|
289
296
|
|
|
290
297
|
/**
|
|
291
298
|
* Error type used to propagate errors through flows between bricks.
|