@openfort/openfort-js 0.7.12 → 0.7.13
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.cjs +2 -0
- package/dist/index.js +2 -0
- package/package.json +1 -1
package/dist/index.cjs
CHANGED
|
@@ -6500,6 +6500,8 @@ class Openfort {
|
|
|
6500
6500
|
const shieldAuth = {
|
|
6501
6501
|
auth: shieldAuthType,
|
|
6502
6502
|
token,
|
|
6503
|
+
authProvider: this.instanceManager.getAccessToken()?.thirdPartyProvider ?? undefined,
|
|
6504
|
+
tokenType: this.instanceManager.getAccessToken()?.thirdPartyTokenType ?? undefined,
|
|
6503
6505
|
};
|
|
6504
6506
|
const iframeConfiguration = {
|
|
6505
6507
|
accessToken: this.instanceManager.getAccessToken()?.token ?? null,
|
package/dist/index.js
CHANGED
|
@@ -6477,6 +6477,8 @@ class Openfort {
|
|
|
6477
6477
|
const shieldAuth = {
|
|
6478
6478
|
auth: shieldAuthType,
|
|
6479
6479
|
token,
|
|
6480
|
+
authProvider: this.instanceManager.getAccessToken()?.thirdPartyProvider ?? undefined,
|
|
6481
|
+
tokenType: this.instanceManager.getAccessToken()?.thirdPartyTokenType ?? undefined,
|
|
6480
6482
|
};
|
|
6481
6483
|
const iframeConfiguration = {
|
|
6482
6484
|
accessToken: this.instanceManager.getAccessToken()?.token ?? null,
|
package/package.json
CHANGED