@explorins/pers-signer 1.0.16 → 1.0.17

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.
@@ -1739,7 +1739,7 @@ class PersSignerSDK {
1739
1739
  /**
1740
1740
  * Initialize the PERS Signer SDK
1741
1741
  *
1742
- * @param {PersSignerConfig} config - SDK configuration object
1742
+ * @param {ExtendedPersSignerConfig} config - SDK configuration object
1743
1743
  * @throws {Error} If required configuration is missing
1744
1744
  */
1745
1745
  constructor(config) {
@@ -1784,7 +1784,7 @@ class PersSignerSDK {
1784
1784
  throw new Error('Invalid or expired JWT token');
1785
1785
  }
1786
1786
  const identifier = payload.identifierEmail || payload.email || payload.userId;
1787
- const tenantId = payload.tenantId || this.config.tenantId || '';
1787
+ const tenantId = payload.tenantId || '';
1788
1788
  if (!identifier) {
1789
1789
  throw new Error('JWT token missing user identifier (identifierEmail, email, or userId)');
1790
1790
  }