@slflows/sdk 0.0.5 → 0.0.6

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.
@@ -340,6 +340,7 @@ interface EntityOnInternalMessageInput extends EntityInput {
340
340
  }
341
341
  interface AppOnTimerInput extends AppInput {
342
342
  timer: {
343
+ id: string;
343
344
  payload: any;
344
345
  prompt?: {
345
346
  id: string;
@@ -349,6 +350,7 @@ interface AppOnTimerInput extends AppInput {
349
350
  }
350
351
  interface EntityOnTimerInput extends EntityInput {
351
352
  timer: {
353
+ id: string;
352
354
  payload: any;
353
355
  pendingEvent?: {
354
356
  id: string;
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@slflows/sdk",
3
- "version": "0.0.5",
3
+ "version": "0.0.6",
4
4
  "files": [
5
5
  "dist"
6
6
  ],