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