@tenxyte/vue 0.5.2 → 0.5.3
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 +3 -1
- package/package.json +2 -2
package/README.md
CHANGED
|
@@ -21,6 +21,8 @@ import App from './App.vue';
|
|
|
21
21
|
const tx = new TenxyteClient({
|
|
22
22
|
baseUrl: 'https://api.example.com',
|
|
23
23
|
headers: { 'X-Access-Key': 'your-api-key' },
|
|
24
|
+
// Enable if backend uses HttpOnly cookie refresh tokens
|
|
25
|
+
// cookieMode: true,
|
|
24
26
|
});
|
|
25
27
|
|
|
26
28
|
const app = createApp(App);
|
|
@@ -193,7 +195,7 @@ The `tenxytePlugin` provides the `TenxyteClient` instance via Vue's dependency i
|
|
|
193
195
|
|
|
194
196
|
| Package | Version |
|
|
195
197
|
|---|---|
|
|
196
|
-
| `@tenxyte/core` | `^0.
|
|
198
|
+
| `@tenxyte/core` | `^0.10.0` |
|
|
197
199
|
| `vue` | `^3.3.0` |
|
|
198
200
|
|
|
199
201
|
## License
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@tenxyte/vue",
|
|
3
|
-
"version": "0.5.
|
|
3
|
+
"version": "0.5.3",
|
|
4
4
|
"description": "Vue bindings for the Tenxyte SDK",
|
|
5
5
|
"main": "./dist/index.cjs",
|
|
6
6
|
"module": "./dist/index.js",
|
|
@@ -43,7 +43,7 @@
|
|
|
43
43
|
"license": "MIT",
|
|
44
44
|
"type": "module",
|
|
45
45
|
"peerDependencies": {
|
|
46
|
-
"@tenxyte/core": "^0.9.
|
|
46
|
+
"@tenxyte/core": "^0.9.4",
|
|
47
47
|
"vue": "^3.3.0"
|
|
48
48
|
},
|
|
49
49
|
"devDependencies": {
|