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 +4 -0
- package/dist/index.d.ts +4 -0
- package/package.json +1 -1
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 {
|