@transmitsecurity/platform-web-sdk 1.18.0 → 1.18.1
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 +3 -0
- package/dist/drs.cjs +1 -4844
- package/dist/drs.js +1 -4831
- package/dist/ido.cjs +2 -15121
- package/dist/ido.js +2 -15114
- package/dist/idv.cjs +1 -42003
- package/dist/idv.js +1 -41995
- package/dist/index.cjs +2 -55347
- package/dist/index.esm.js +2 -55331
- package/dist/index.umd.js +3 -55354
- package/dist/ts-platform-websdk.js +3 -55353
- package/dist/web-sdk-drs+idv+webauthn+ido.js +2 -2
- package/dist/web-sdk.d.ts +15 -2
- package/dist/webauthn.cjs +1 -1994
- package/dist/webauthn.js +1 -1983
- package/package.json +2 -2
package/dist/web-sdk.d.ts
CHANGED
|
@@ -1788,6 +1788,19 @@ interface initConfigParams {
|
|
|
1788
1788
|
|
|
1789
1789
|
declare function initialize(params: initConfigParams): void;
|
|
1790
1790
|
|
|
1791
|
-
|
|
1791
|
+
/**
|
|
1792
|
+
* Main SDK class for CDN usage (window.tsPlatform)
|
|
1793
|
+
* Provides access to all modules and common functionality
|
|
1794
|
+
*/
|
|
1795
|
+
declare class TSWebSDK {
|
|
1796
|
+
factories: {
|
|
1797
|
+
drs: () => Record<string, any>;
|
|
1798
|
+
idv: () => Record<string, any>;
|
|
1799
|
+
};
|
|
1800
|
+
constructor();
|
|
1801
|
+
}
|
|
1802
|
+
declare const _default: TSWebSDK;
|
|
1803
|
+
|
|
1804
|
+
declare const PACKAGE_VERSION = "1.18.1";
|
|
1792
1805
|
|
|
1793
|
-
export { ActionEventOptions, ActionResponse, AuthenticationAutofillActivateHandlers, AutofillHandlers, CrossDeviceController, ErrorCode$1 as ErrorCode, PACKAGE_VERSION, SdkError, WebauthnApis, WebauthnAuthenticationFlows, WebauthnCrossDeviceFlows, WebauthnCrossDeviceRegistrationOptions, WebauthnRegistrationOptions, authenticate, crossDevice, webSdkModule_d as drs, getDefaultPaths, instance as ido, index_d$1 as idv, initConfigParams, initialize, isAutofillSupported, isPlatformAuthenticatorSupported, register, index_d as webauthn };
|
|
1806
|
+
export { ActionEventOptions, ActionResponse, AuthenticationAutofillActivateHandlers, AutofillHandlers, CrossDeviceController, ErrorCode$1 as ErrorCode, PACKAGE_VERSION, SdkError, WebauthnApis, WebauthnAuthenticationFlows, WebauthnCrossDeviceFlows, WebauthnCrossDeviceRegistrationOptions, WebauthnRegistrationOptions, authenticate, crossDevice, _default as default, webSdkModule_d as drs, getDefaultPaths, instance as ido, index_d$1 as idv, initConfigParams, initialize, isAutofillSupported, isPlatformAuthenticatorSupported, register, index_d as webauthn };
|