@orbit-software/sdk 1.87.11 → 1.87.14

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.
@@ -111,6 +111,10 @@ export interface OverlayConfig {
111
111
  onOverlayClose?: () => void;
112
112
  variant?: 'light' | 'dark' | 'translucent';
113
113
  initialPosition?: 'topLeft' | 'topRight' | 'bottomLeft' | 'bottomRight';
114
+ initialCoordinates?: {
115
+ x: number;
116
+ y: number;
117
+ };
114
118
  botId?: string;
115
119
  authData?: string;
116
120
  visible?: boolean;
@@ -131,7 +135,7 @@ export interface RequestAdOptions {
131
135
  onStart?: () => void;
132
136
  }
133
137
  export interface InitializeOptions {
134
- mode: 'portal';
138
+ mode?: 'portal';
135
139
  authData?: string;
136
140
  disable_startup_ads?: boolean;
137
141
  }