@webex/cc-components 1.28.0-next.23 → 1.28.0-next.24
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.js +33 -33
- package/dist/types/components/task/task.types.d.ts +9 -0
- package/dist/wc.js +1 -1
- package/package.json +1 -1
|
@@ -610,6 +610,15 @@ export interface TaskListItemData {
|
|
|
610
610
|
disableDecline: boolean;
|
|
611
611
|
displayState: string;
|
|
612
612
|
}
|
|
613
|
+
export declare enum OUTBOUND_TYPE {
|
|
614
|
+
OUTDIAL = "OUTDIAL",
|
|
615
|
+
CALLBACK = "CALLBACK"
|
|
616
|
+
}
|
|
617
|
+
/**
|
|
618
|
+
* Returns the appropriate caller identifier based on outbound type.
|
|
619
|
+
* For outdial calls, the customer's number is in `dn`; for all others it's in `ani`.
|
|
620
|
+
*/
|
|
621
|
+
export declare const getCallerIdentifier: (ani: string, dn: string, outboundType?: string) => string;
|
|
613
622
|
export declare enum TaskState {
|
|
614
623
|
NEW = "new",
|
|
615
624
|
ACTIVE = "active",
|