starti.app 2.0.83 → 2.0.85

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.
@@ -98,7 +98,7 @@ export declare class App extends EventTargetWithType<{
98
98
  */
99
99
  removeInternalDomain: (domain: string) => Promise<void>;
100
100
  /** Sets the status bar options for the app. */
101
- setStatusBar: (options: SetStatusBarOptions) => Promise<void>;
101
+ setStatusBar: (options: SetStatusBarOptions) => void;
102
102
  /** Push options on the options stack */
103
103
  pushOptions(options: InitializeParams): void;
104
104
  /** Pop options from the options stack */
@@ -3,6 +3,7 @@ export declare class OptionsStack extends EventTarget {
3
3
  private STACK_MAX_SIZE;
4
4
  private defaultOptions;
5
5
  private optionsStack;
6
+ needsRerender(options: InitializeParams): boolean;
6
7
  setHead(options?: InitializeParams): void;
7
8
  push(options: InitializeParams): void;
8
9
  pop(): InitializeParams | undefined;
@@ -2,6 +2,7 @@ import { InitializeParams } from "../startiapp";
2
2
  import { OptionsStack } from "./options-stack";
3
3
  declare class UI implements IUI {
4
4
  optionsStack: OptionsStack;
5
+ private appIntegration;
5
6
  constructor();
6
7
  private styleString;
7
8
  setOptionsAsync(options?: InitializeParams): Promise<void>;
package/package.json CHANGED
@@ -2,7 +2,7 @@
2
2
  "name": "starti.app",
3
3
  "author": "starti.app",
4
4
  "license": "MIT",
5
- "version": "2.0.83",
5
+ "version": "2.0.85",
6
6
  "description": "Use this package for easy communication with the starti.app API.",
7
7
  "main": "dist/index.js",
8
8
  "types": "dist/index.d.ts",