@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/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
  }