@strivacity/sdk-nuxt 2.3.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" />
@@ -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,17 @@
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
+
1
15
  ## 2.3.0 (2026-02-10)
2
16
 
3
17
  ### 🧱 Updated Dependencies
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
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "name": "@strivacity/sdk-nuxt",
3
3
  "configKey": "strivacity",
4
- "version": "2.3.0",
4
+ "version": "3.0.0-rc.0",
5
5
  "builder": {
6
6
  "@nuxt/module-builder": "1.0.2",
7
7
  "unbuild": "3.6.1"
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@strivacity/sdk-nuxt",
3
- "version": "2.3.0",
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": "2.3.0"
13
+ "@strivacity/sdk-core": "3.0.0-rc.0"
14
14
  },
15
15
  "main": "./dist/module.mjs",
16
16
  "types": "./dist/types.d.mts",