@strivacity/sdk-angular 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/CHANGELOG.md CHANGED
@@ -1,3 +1,20 @@
1
+ ## 3.0.0-rc.0 (2026-02-18)
2
+
3
+ ### 🚀 Features
4
+
5
+ - ⚠️ EmbeddedFlow implemented ([a0e3ad8](https://github.com/Strivacity/sdk-js/commit/a0e3ad8))
6
+ - ⚠️ NativeFlow entry function now returns an object instead of a string ([9a8942d](https://github.com/Strivacity/sdk-js/commit/9a8942d))
7
+
8
+ ### ⚠️ Breaking Changes
9
+
10
+ - EmbeddedFlow implemented ([a0e3ad8](https://github.com/Strivacity/sdk-js/commit/a0e3ad8))
11
+ - NativeFlow entry function now returns an object instead of a string ([9a8942d](https://github.com/Strivacity/sdk-js/commit/9a8942d))
12
+
13
+ ### 🧱 Updated Dependencies
14
+
15
+ - Updated sdk-core to 3.0.0-rc.0
16
+ - Updated testing to 3.0.0-rc.0
17
+
1
18
  ## 2.3.0 (2026-02-10)
2
19
 
3
20
  ### 🧱 Updated Dependencies
package/README.md CHANGED
@@ -883,3 +883,9 @@ Each widget component receives inputs specific to its type and function within t
883
883
  ## Links
884
884
 
885
885
  - [Example app](https://github.com/Strivacity/sdk-js/tree/main/apps/angular)
886
+
887
+ ## Migrating to v3.0
888
+
889
+ ### Entry API Major Changes
890
+
891
+ 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/README.md CHANGED
@@ -883,3 +883,9 @@ Each widget component receives inputs specific to its type and function within t
883
883
  ## Links
884
884
 
885
885
  - [Example app](https://github.com/Strivacity/sdk-js/tree/main/apps/angular)
886
+
887
+ ## Migrating to v3.0
888
+
889
+ ### Entry API Major Changes
890
+
891
+ 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.
@@ -54,7 +54,7 @@ export declare class StrivacityAuthService<Flow extends PopupFlow | RedirectFlow
54
54
  * @param {string} [url] Optional URL to use for the entry process. If not provided, the current window location will be used.
55
55
  * @returns {Observable<void>} An observable that completes when the entry process is done.
56
56
  */
57
- entry(url?: string): Observable<string | void>;
57
+ entry(url?: string): Observable<void | Record<string, string>>;
58
58
  /**
59
59
  * Registers a new user using the specified options.
60
60
  *
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@strivacity/sdk-angular",
3
- "version": "2.3.0",
3
+ "version": "3.0.0-rc.0",
4
4
  "license": "MIT",
5
5
  "description": "Strivacity Angular 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
  "peerDependencies": {
16
16
  "@angular/core": ">=14"