tenneo-auth-plugin 0.1.4 → 0.1.5

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/index.mjs CHANGED
@@ -1466,7 +1466,8 @@ async function refreshAccessToken() {
1466
1466
  const body = new URLSearchParams({
1467
1467
  grant_type: DEFAULT_REFRESH_GRANT_TYPE,
1468
1468
  refresh_token: refreshToken,
1469
- client_id: clientId.startsWith("public-") ? clientId : `public-${clientId}`
1469
+ client_id: clientId.startsWith("public-") ? clientId : `public-${clientId}`,
1470
+ tenant_id: tenantId
1470
1471
  });
1471
1472
  const response = await fetch(tokenUrl, {
1472
1473
  method: "POST",