ahs-cti 1.0.1-beta.7 → 1.0.1-beta.8

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/dist/index.d.mts CHANGED
@@ -1665,6 +1665,10 @@ interface StartCallPayload {
1665
1665
  call_source?: string;
1666
1666
  /** Optional case id passthrough. */
1667
1667
  caseId?: string;
1668
+ /** Whether the call is being made during wrap-up. */
1669
+ isWrapup?: boolean;
1670
+ /** Convox call UUID of the parent call; used for wrap-up chaining. */
1671
+ parentCallUuid?: string;
1668
1672
  }
1669
1673
 
1670
1674
  interface ConferenceCallPayload {
package/dist/index.d.ts CHANGED
@@ -1665,6 +1665,10 @@ interface StartCallPayload {
1665
1665
  call_source?: string;
1666
1666
  /** Optional case id passthrough. */
1667
1667
  caseId?: string;
1668
+ /** Whether the call is being made during wrap-up. */
1669
+ isWrapup?: boolean;
1670
+ /** Convox call UUID of the parent call; used for wrap-up chaining. */
1671
+ parentCallUuid?: string;
1668
1672
  }
1669
1673
 
1670
1674
  interface ConferenceCallPayload {
package/package.json CHANGED
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "name": "ahs-cti",
3
3
  "description": "Call Control SDK for Web RTC",
4
- "version": "1.0.1-beta.7",
4
+ "version": "1.0.1-beta.8",
5
5
  "author": "CTI SDK Team",
6
6
  "license": "MIT",
7
7
  "main": "./dist/index.js",