@availity/native-form 7.0.0 → 7.0.1

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
@@ -2,6 +2,15 @@
2
2
 
3
3
  This file was generated using [@jscutlery/semver](https://github.com/jscutlery/semver).
4
4
 
5
+ ## [7.0.1](https://github.com/Availity/sdk-js/compare/@availity/native-form@7.0.0...@availity/native-form@7.0.1) (2025-06-10)
6
+
7
+
8
+ ### Bug Fixes
9
+
10
+ * **native-form:** allow any sso type ([0106b8f](https://github.com/Availity/sdk-js/commit/0106b8f85f35e09114e5ebf414dd686e6275eda2))
11
+
12
+
13
+
5
14
  # [7.0.0](https://github.com/Availity/sdk-js/compare/@availity/native-form@6.0.12...@availity/native-form@7.0.0) (2025-05-14)
6
15
 
7
16
  ### Dependency Updates
package/dist/index.d.mts CHANGED
@@ -6,7 +6,7 @@ declare function nativeForm(
6
6
  spaceId: string,
7
7
  params?: Record<string, any>,
8
8
  formAttributes?: Record<string, any>,
9
- type?: SsoType,
9
+ type?: SsoType | string,
10
10
  clientId?: string
11
11
  ): Promise<void>;
12
12
 
package/dist/index.d.ts CHANGED
@@ -6,7 +6,7 @@ declare function nativeForm(
6
6
  spaceId: string,
7
7
  params?: Record<string, any>,
8
8
  formAttributes?: Record<string, any>,
9
- type?: SsoType,
9
+ type?: SsoType | string,
10
10
  clientId?: string
11
11
  ): Promise<void>;
12
12
 
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@availity/native-form",
3
- "version": "7.0.0",
3
+ "version": "7.0.1",
4
4
  "description": "Submit JSON data via a native form, not AJAX. Useful when you need to open a new page with a POST action.",
5
5
  "keywords": [
6
6
  "availity",
package/src/index.d.ts CHANGED
@@ -6,7 +6,7 @@ declare function nativeForm(
6
6
  spaceId: string,
7
7
  params?: Record<string, any>,
8
8
  formAttributes?: Record<string, any>,
9
- type?: SsoType,
9
+ type?: SsoType | string,
10
10
  clientId?: string
11
11
  ): Promise<void>;
12
12