@transmitsecurity/platform-web-sdk 1.18.0 → 1.18.2
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 +10 -0
- package/dist/drs.cjs +1 -4844
- package/dist/drs.d.ts +6 -0
- 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 +21 -2
- package/dist/webauthn.cjs +1 -1994
- package/dist/webauthn.js +1 -1983
- package/package.json +5 -5
package/dist/drs.d.ts
CHANGED
|
@@ -40,6 +40,9 @@ interface ConstructorOptions {
|
|
|
40
40
|
*
|
|
41
41
|
* Default value is undefined */
|
|
42
42
|
firstPartyMigrationUrl?: string;
|
|
43
|
+
/** @internal
|
|
44
|
+
* Internal flag indicating this web_sdk instance has its own clientId separate from the Platform SDK root-level clientId */
|
|
45
|
+
hasOwnClientId?: boolean;
|
|
43
46
|
}
|
|
44
47
|
interface TransactionData {
|
|
45
48
|
amount: number;
|
|
@@ -116,6 +119,7 @@ declare class TSAccountProtection {
|
|
|
116
119
|
private enableSessionToken;
|
|
117
120
|
private identifiersMigrationEnabled;
|
|
118
121
|
private firstPartyMigrationUrl;
|
|
122
|
+
private hasOwnClientId;
|
|
119
123
|
private validationManager;
|
|
120
124
|
private storageManager;
|
|
121
125
|
private eventsManager;
|
|
@@ -190,6 +194,8 @@ declare module '@transmit-security/web-sdk-common/dist/module-metadata/module-me
|
|
|
190
194
|
interface initConfigParams {
|
|
191
195
|
drs?: InitOptions & ConstructorOptions & {
|
|
192
196
|
enabled: boolean;
|
|
197
|
+
} & {
|
|
198
|
+
clientId?: string;
|
|
193
199
|
};
|
|
194
200
|
}
|
|
195
201
|
}
|