@transmitsecurity/platform-web-sdk 1.15.0 → 1.16.0

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/drs.d.ts CHANGED
@@ -233,9 +233,16 @@ declare const PACKAGE_VERSION: string;
233
233
  declare namespace drs {
234
234
  export function initialize(config: any): void;
235
235
  export * from "@transmit-security/riskid_sdk";
236
+ export const triggerActionEvent: (...args: any[]) => any;
237
+ export const setUser: (...args: any[]) => any;
238
+ export const setAuthenticatedUser: (...args: any[]) => any;
239
+ export const clearUser: (...args: any[]) => any;
240
+ export const identifyUser: (...args: any[]) => any;
241
+ export const unidentifiedUser: (...args: any[]) => any;
242
+ export const getActions: (...args: any[]) => any;
243
+ export const getSessionToken: (...args: any[]) => any;
236
244
  }
237
245
 
238
246
  declare function initialize(config: any): void;
239
247
 
240
- export { PACKAGE_VERSION, __internal, clearUser, drs, getActions, getSessionToken, identifyUser, initialize, setAuthenticatedUser, setUser, triggerActionEvent, unidentifiedUser };
241
- export type { ActionEventOptions, ActionResponse };
248
+ export { ActionEventOptions, ActionResponse, PACKAGE_VERSION, __internal, clearUser, drs, getActions, getSessionToken, identifyUser, initialize, setAuthenticatedUser, setUser, triggerActionEvent, unidentifiedUser };