@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/CHANGELOG.md +4 -1
- package/README.md +6 -18
- package/build/ido/idoImpl.d.ts +2 -0
- package/build/ido/idoImpl.js +4 -0
- package/build/ido/index.d.ts +7 -0
- package/build/ido/index.js +9 -0
- package/bundler-config.json +2 -3
- package/dist/docs/modules.md +1 -1
- package/dist/drs.cjs +1 -1
- package/dist/drs.d.ts +9 -2
- package/dist/drs.js +1 -1
- package/dist/ido.cjs +3 -1
- package/dist/ido.d.ts +51 -2
- package/dist/ido.js +3 -1
- package/dist/idv.cjs +1 -1
- package/dist/idv.d.ts +1 -0
- package/dist/idv.js +1 -1
- package/dist/index.cjs +3 -1
- package/dist/index.esm.js +3 -1
- package/dist/index.umd.js +3 -1
- package/dist/ts-platform-websdk.js +3 -1
- package/dist/web-sdk-drs+idv+webauthn+ido.js +3 -1
- package/dist/web-sdk.d.ts +41 -7
- package/dist/webauthn.cjs +1 -1
- package/dist/webauthn.d.ts +4 -2
- package/dist/webauthn.js +1 -1
- package/package.json +8 -7
- package/scripts/upload-dist.sh +3 -0
- package/VITE_CONFIG.md +0 -107
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 };
|