Skip to content

Commit

Permalink
SCAL-233454-exp Authfailure and authstatus types
Browse files Browse the repository at this point in the history
  • Loading branch information
Prashant.patil committed Jan 22, 2025
1 parent 7b8695c commit ac93175
Show file tree
Hide file tree
Showing 3 changed files with 5 additions and 2 deletions.
2 changes: 1 addition & 1 deletion src/embed/liveboard.ts
Original file line number Diff line number Diff line change
Expand Up @@ -419,7 +419,7 @@ export class LiveboardEmbed extends V1Embed {
* embedded Liveboard or visualization.
*/
protected getEmbedParams() {
let params = {};
let params: Record<any, any> = {};
params = this.getBaseQueryParams(params);
const {
enableVizTransformations,
Expand Down
3 changes: 2 additions & 1 deletion src/mobile/all-types-export.ts
Original file line number Diff line number Diff line change
@@ -1,3 +1,4 @@
export {
init, AuthType, MobileEmbed, LiveboardEmbed,
init, AuthType, MobileEmbed, LiveboardEmbed, AuthFailureType,
AuthStatus, AuthEventEmitter,
} from './index';
2 changes: 2 additions & 0 deletions src/mobile/index.ts
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,9 @@ import { MobileEmbed } from '../embed/ts-mobile';
import { init } from '../embed/base';
import { AuthType } from '../types';
import { LiveboardEmbed } from '../embed/liveboard.mobile';
import { AuthFailureType, AuthStatus, AuthEventEmitter } from '../auth';

export {
init, AuthType, MobileEmbed, LiveboardEmbed,
AuthFailureType, AuthStatus, AuthEventEmitter,
};

0 comments on commit ac93175

Please sign in to comment.