@availity/native-form 6.0.12 → 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,32 @@
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
+
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)
15
+
16
+ ### Dependency Updates
17
+
18
+ * `api-axios` updated to version `6.0.12`
19
+
20
+ ### chore
21
+
22
+ * drop support for node 18 and add support for node 22 ([1e3dcc3](https://github.com/Availity/sdk-js/commit/1e3dcc3311021edc5691b1383aa393ebebe1d9db))
23
+
24
+
25
+ ### BREAKING CHANGES
26
+
27
+ * drop support for node 18
28
+
29
+
30
+
5
31
  ## [6.0.12](https://github.com/Availity/sdk-js/compare/@availity/native-form@6.0.11...@availity/native-form@6.0.12) (2025-05-09)
6
32
 
7
33
  ### 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": "6.0.12",
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",
@@ -32,7 +32,7 @@
32
32
  }
33
33
  },
34
34
  "engines": {
35
- "node": "^18.0.0 || ^20.0.0"
35
+ "node": "^20.0.0 || ^22.0.0"
36
36
  },
37
37
  "scripts": {
38
38
  "build": "tsup src/index.js --format esm,cjs --dts",
@@ -43,7 +43,7 @@
43
43
  "publish": "yarn npm publish --tolerate-republish --access public"
44
44
  },
45
45
  "dependencies": {
46
- "@availity/api-axios": "10.0.4"
46
+ "@availity/api-axios": "11.0.0"
47
47
  },
48
48
  "devDependencies": {
49
49
  "tsup": "^8.4.0",
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