@tidecloak/js 0.13.5 → 0.13.9
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/README.md +2 -1
- package/package.json +2 -2
package/README.md
CHANGED
|
@@ -501,7 +501,7 @@ IAMService.doLogin(); // redirects to SSO
|
|
|
501
501
|
IAMService.doLogout(); // clears cookie & redirects
|
|
502
502
|
|
|
503
503
|
// Data encryption / decryption (TideCloak service)
|
|
504
|
-
await IAMService.doEncrypt([{ data:
|
|
504
|
+
await IAMService.doEncrypt([{ data: "secret", tags: ["tag1"] }]);
|
|
505
505
|
await IAMService.doDecrypt([{ encrypted: "...", tags: ["tag1"] }]);
|
|
506
506
|
```
|
|
507
507
|
|
|
@@ -517,3 +517,4 @@ await IAMService.doDecrypt([{ encrypted: "...", tags: ["tag1"] }]);
|
|
|
517
517
|
* **Redirect URI**: If using a custom `redirectUri`, ensure the route or file exists.
|
|
518
518
|
|
|
519
519
|
---
|
|
520
|
+
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@tidecloak/js",
|
|
3
|
-
"version": "0.13.
|
|
3
|
+
"version": "0.13.9",
|
|
4
4
|
"type": "module",
|
|
5
5
|
"main": "dist/cjs/src/index.js",
|
|
6
6
|
"module": "dist/esm/src/index.js",
|
|
@@ -32,6 +32,6 @@
|
|
|
32
32
|
"silent-check-sso.html"
|
|
33
33
|
],
|
|
34
34
|
"dependencies": {
|
|
35
|
-
"heimdall-tide": "^0.13.
|
|
35
|
+
"heimdall-tide": "^0.13.9"
|
|
36
36
|
}
|
|
37
37
|
}
|