@strivacity/sdk-nuxt 2.2.0 → 3.0.0-rc.0
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/.nuxt/nuxt.d.ts
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
/// <reference types="./src" />
|
|
2
|
-
/// <reference types="@nuxt/devtools" />
|
|
3
2
|
/// <reference types="@strivacity/sdk-nuxt" />
|
|
3
|
+
/// <reference types="@nuxt/devtools" />
|
|
4
4
|
/// <reference path="types/builder-env.d.ts" />
|
|
5
5
|
/// <reference path="types/plugins.d.ts" />
|
|
6
6
|
/// <reference path="types/build.d.ts" />
|
package/.nuxt/nuxt.node.d.ts
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
/// <reference types="./src" />
|
|
2
|
-
/// <reference types="@nuxt/devtools" />
|
|
3
2
|
/// <reference types="@strivacity/sdk-nuxt" />
|
|
3
|
+
/// <reference types="@nuxt/devtools" />
|
|
4
4
|
/// <reference path="types/modules.d.ts" />
|
|
5
5
|
/// <reference path="types/runtime-config.d.ts" />
|
|
6
6
|
/// <reference path="types/app.config.d.ts" />
|
package/CHANGELOG.md
CHANGED
|
@@ -1,3 +1,23 @@
|
|
|
1
|
+
## 3.0.0-rc.0 (2026-02-18)
|
|
2
|
+
|
|
3
|
+
### 🚀 Features
|
|
4
|
+
|
|
5
|
+
- ⚠️ NativeFlow entry function now returns an object instead of a string ([9a8942d](https://github.com/Strivacity/sdk-js/commit/9a8942d))
|
|
6
|
+
|
|
7
|
+
### ⚠️ Breaking Changes
|
|
8
|
+
|
|
9
|
+
- NativeFlow entry function now returns an object instead of a string ([9a8942d](https://github.com/Strivacity/sdk-js/commit/9a8942d))
|
|
10
|
+
|
|
11
|
+
### 🧱 Updated Dependencies
|
|
12
|
+
|
|
13
|
+
- Updated sdk-core to 3.0.0-rc.0
|
|
14
|
+
|
|
15
|
+
## 2.3.0 (2026-02-10)
|
|
16
|
+
|
|
17
|
+
### 🧱 Updated Dependencies
|
|
18
|
+
|
|
19
|
+
- Updated sdk-core to 2.3.0
|
|
20
|
+
|
|
1
21
|
## 2.2.0 (2026-02-06)
|
|
2
22
|
|
|
3
23
|
### 🚀 Features
|
package/README.md
CHANGED
|
@@ -602,3 +602,9 @@ Each widget component receives props specific to its type and function within th
|
|
|
602
602
|
### Links
|
|
603
603
|
|
|
604
604
|
[Example app](https://github.com/Strivacity/sdk-js/tree/main/apps/nuxt)
|
|
605
|
+
|
|
606
|
+
## Migrating to v3.0
|
|
607
|
+
|
|
608
|
+
### Entry API Major Changes
|
|
609
|
+
|
|
610
|
+
Strivacity SDK's `entry()` API now returns a structured object instead of a plain string. To see examples of these changes, check the apps folder in this repository.
|
package/dist/module.json
CHANGED
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@strivacity/sdk-nuxt",
|
|
3
|
-
"version": "
|
|
3
|
+
"version": "3.0.0-rc.0",
|
|
4
4
|
"license": "MIT",
|
|
5
5
|
"description": "Strivacity Nuxt SDK client",
|
|
6
6
|
"author": "strivacity <opensource@strivacity.com>",
|
|
@@ -10,7 +10,7 @@
|
|
|
10
10
|
},
|
|
11
11
|
"type": "module",
|
|
12
12
|
"dependencies": {
|
|
13
|
-
"@strivacity/sdk-core": "
|
|
13
|
+
"@strivacity/sdk-core": "3.0.0-rc.0"
|
|
14
14
|
},
|
|
15
15
|
"main": "./dist/module.mjs",
|
|
16
16
|
"types": "./dist/types.d.mts",
|
|
File without changes
|