@vowifi-rs/vowifi 0.1.12 → 0.1.13

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/index.d.ts CHANGED
@@ -22,6 +22,9 @@ export interface OperationalConfig {
22
22
  ioTimeoutMs?: number
23
23
  ikeInitialTimeoutMs?: number
24
24
  ikeAttempts?: number
25
+ ikeDpdIntervalMs?: number
26
+ ikeDpdResponseTimeoutMs?: number
27
+ ikeDpdMaxMissedProbes?: number
25
28
  registrationTimeoutMs?: number
26
29
  refreshAtPercent?: number
27
30
  recoveryAttempts?: number
package/native.d.ts CHANGED
@@ -48,6 +48,9 @@ export interface JsOperationalConfig {
48
48
  ioTimeoutMs?: number
49
49
  ikeInitialTimeoutMs?: number
50
50
  ikeAttempts?: number
51
+ ikeDpdIntervalMs?: number
52
+ ikeDpdResponseTimeoutMs?: number
53
+ ikeDpdMaxMissedProbes?: number
51
54
  registrationTimeoutMs?: number
52
55
  refreshAtPercent?: number
53
56
  recoveryAttempts?: number
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@vowifi-rs/vowifi",
3
- "version": "0.1.12",
3
+ "version": "0.1.13",
4
4
  "description": "Hardware-independent VoWiFi SMS session for Node.js",
5
5
  "license": "MIT OR Apache-2.0",
6
6
  "repository": {
@@ -45,8 +45,8 @@
45
45
  ]
46
46
  },
47
47
  "optionalDependencies": {
48
- "@vowifi-rs/vowifi-win32-x64-msvc": "0.1.12",
49
- "@vowifi-rs/vowifi-linux-x64-gnu": "0.1.12",
50
- "@vowifi-rs/vowifi-linux-arm64-gnu": "0.1.12"
48
+ "@vowifi-rs/vowifi-win32-x64-msvc": "0.1.13",
49
+ "@vowifi-rs/vowifi-linux-x64-gnu": "0.1.13",
50
+ "@vowifi-rs/vowifi-linux-arm64-gnu": "0.1.13"
51
51
  }
52
52
  }