@brandboostinggmbh/observable-workflows 0.3.2 → 0.3.3
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/dist/index.d.ts +1 -0
- package/dist/index.js +2 -1
- package/package.json +1 -1
package/dist/index.d.ts
CHANGED
|
@@ -226,6 +226,7 @@ type WorkflowContext = {
|
|
|
226
226
|
console: ConsoleWrapper;
|
|
227
227
|
setWorkflowName: (newName: string) => Promise<void>;
|
|
228
228
|
setWorkflowProperty: <T extends keyof ValueTypeMap>(key: string, valueType: T, value: ValueTypeMap[T]) => Promise<void>;
|
|
229
|
+
tenantId: string;
|
|
229
230
|
};
|
|
230
231
|
type WorkflowFunction<INPUT, TYPE extends string = string> = {
|
|
231
232
|
workflowType: TYPE;
|
package/dist/index.js
CHANGED