call-control-sdk 6.5.1-uat.2 → 6.5.1-uat.4
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 +2 -0
- package/dist/index.d.ts +2 -0
- package/dist/index.js +296 -53
- package/dist/index.js.map +1 -1
- package/dist/index.mjs +301 -55
- package/dist/index.mjs.map +1 -1
- package/package.json +1 -1
package/dist/index.d.mts
CHANGED
|
@@ -221,6 +221,8 @@ interface CallData {
|
|
|
221
221
|
interface SDKConfig {
|
|
222
222
|
disableEndCallButton?: boolean;
|
|
223
223
|
disabledDialButton?: boolean;
|
|
224
|
+
enableSmsServices?: boolean;
|
|
225
|
+
enableQueueName?: boolean;
|
|
224
226
|
disableCallTransferButton?: boolean;
|
|
225
227
|
isDraggable?: boolean;
|
|
226
228
|
disableSoftPhone?: boolean;
|
package/dist/index.d.ts
CHANGED
|
@@ -221,6 +221,8 @@ interface CallData {
|
|
|
221
221
|
interface SDKConfig {
|
|
222
222
|
disableEndCallButton?: boolean;
|
|
223
223
|
disabledDialButton?: boolean;
|
|
224
|
+
enableSmsServices?: boolean;
|
|
225
|
+
enableQueueName?: boolean;
|
|
224
226
|
disableCallTransferButton?: boolean;
|
|
225
227
|
isDraggable?: boolean;
|
|
226
228
|
disableSoftPhone?: boolean;
|