@olympeio/runtime-node 9.11.12 → 9.12.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/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@olympeio/runtime-node",
3
- "version": "9.11.12",
3
+ "version": "9.12.0",
4
4
  "description": "Olympe Node Runtime Environment",
5
5
  "types": "types/index.d.ts",
6
6
  "dependencies": {
@@ -144,6 +144,11 @@ export class BrickContext extends Context {
144
144
  * @param callback the function to execute when the specified brick context is available
145
145
  */
146
146
  onContext(id: string, callback: (context: BrickContext) => void): () => void;
147
+
148
+ /**
149
+ * Return the tag of the brick linked to this context. Null if no brick has been linked to it.
150
+ */
151
+ getBrickTag(): string | null;
147
152
  }
148
153
 
149
154
  export abstract class Brick extends CloudObject {