@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/import/olympe.dm/datamodel/.Primordial.newInst.json +1 -1
- package/import/olympe.dm/datamodel/05_permission_schema.updateInst.json +1 -1
- package/import/olympe.sc/datamodel/01_language.newInst.json +1 -1
- package/import/olympe.sc/datamodel/01_language.newRel.json +1 -1
- package/index.js +974 -967
- package/package.json +1 -1
- package/types/runtime.d.ts +5 -0
package/package.json
CHANGED
package/types/runtime.d.ts
CHANGED
|
@@ -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 {
|