narrat 2.2.5 → 2.2.8

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/config.d.ts CHANGED
@@ -32,6 +32,9 @@ export interface Config {
32
32
  height: number;
33
33
  };
34
34
  };
35
+ gameFlow: {
36
+ labelToJumpOnScriptEnd?: string;
37
+ };
35
38
  screens: {
36
39
  [key: string]: ScreenConfig;
37
40
  };
@@ -157,6 +160,7 @@ export interface ButtonConfig {
157
160
  };
158
161
  action: string;
159
162
  actionType?: 'jump' | 'run';
163
+ tag?: string;
160
164
  }
161
165
  export interface InlineButtonConfig extends ButtonConfig {
162
166
  id: string;