ahs-cti 1.0.0-beta.3 → 1.0.0-beta.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 +16 -1
- package/dist/index.d.ts +16 -1
- package/package.json +1 -1
package/dist/index.d.mts
CHANGED
|
@@ -168,6 +168,21 @@ declare function isSDKInitialized(): boolean;
|
|
|
168
168
|
*/
|
|
169
169
|
declare const CallControlPanel: React.ComponentType<CallControlPanelProps>;
|
|
170
170
|
|
|
171
|
+
/**
|
|
172
|
+
* 📄 SDK Pages
|
|
173
|
+
*
|
|
174
|
+
* @description Pre-built pages provided by the SDK, automatically protected by permission guards.
|
|
175
|
+
*
|
|
176
|
+
* @properties
|
|
177
|
+
* - `CallHistory` - Call History page component
|
|
178
|
+
*
|
|
179
|
+
* @since 1.0.0
|
|
180
|
+
* @author CTI SDK Team
|
|
181
|
+
*/
|
|
182
|
+
declare const SDKPages: {
|
|
183
|
+
readonly CallHistory: React.ComponentType<any>;
|
|
184
|
+
};
|
|
185
|
+
|
|
171
186
|
// =============================================================================
|
|
172
187
|
// 🗃️ TYPE EXPORTS
|
|
173
188
|
// =============================================================================
|
|
@@ -1792,4 +1807,4 @@ interface ErrorResponse {
|
|
|
1792
1807
|
details?: any;
|
|
1793
1808
|
}
|
|
1794
1809
|
|
|
1795
|
-
export { type APIResponse, type AgentStatus, CallControlPanel, type CallControlPanelProps, type CallData, type CallInitiationFunction, type CallTerminationFunction, type CleanupOperation, type ConferenceLine, type DispositionType, type EndCallData, type EndCallPayLoadData, type EndCallPayload, type ErrorResponse, type FollowUpType, type HookStateTypes, type InitSDKParams, type LogoutFunction, type LogoutHookStateTypes, type LogoutPayload, type ProcessData, type SDKConfig, type SDKState, type StartCallPayload, type StartCalltData, type StartCalltHookStateTypes, type StorageType, type URLConfig, type UseClickToCallReturn, type UseEndCallReturn, type UseLogoutReturn, getSDKVersion, initSDK, isSDKInitialized, useClickToCall, useEndCall, useGetAuthorizationToken, useGetCallerData, useLogout };
|
|
1810
|
+
export { type APIResponse, type AgentStatus, CallControlPanel, type CallControlPanelProps, type CallData, type CallInitiationFunction, type CallTerminationFunction, type CleanupOperation, type ConferenceLine, type DispositionType, type EndCallData, type EndCallPayLoadData, type EndCallPayload, type ErrorResponse, type FollowUpType, type HookStateTypes, type InitSDKParams, type LogoutFunction, type LogoutHookStateTypes, type LogoutPayload, type ProcessData, type SDKConfig, SDKPages, type SDKState, type StartCallPayload, type StartCalltData, type StartCalltHookStateTypes, type StorageType, type URLConfig, type UseClickToCallReturn, type UseEndCallReturn, type UseLogoutReturn, getSDKVersion, initSDK, isSDKInitialized, useClickToCall, useEndCall, useGetAuthorizationToken, useGetCallerData, useLogout };
|
package/dist/index.d.ts
CHANGED
|
@@ -168,6 +168,21 @@ declare function isSDKInitialized(): boolean;
|
|
|
168
168
|
*/
|
|
169
169
|
declare const CallControlPanel: React.ComponentType<CallControlPanelProps>;
|
|
170
170
|
|
|
171
|
+
/**
|
|
172
|
+
* 📄 SDK Pages
|
|
173
|
+
*
|
|
174
|
+
* @description Pre-built pages provided by the SDK, automatically protected by permission guards.
|
|
175
|
+
*
|
|
176
|
+
* @properties
|
|
177
|
+
* - `CallHistory` - Call History page component
|
|
178
|
+
*
|
|
179
|
+
* @since 1.0.0
|
|
180
|
+
* @author CTI SDK Team
|
|
181
|
+
*/
|
|
182
|
+
declare const SDKPages: {
|
|
183
|
+
readonly CallHistory: React.ComponentType<any>;
|
|
184
|
+
};
|
|
185
|
+
|
|
171
186
|
// =============================================================================
|
|
172
187
|
// 🗃️ TYPE EXPORTS
|
|
173
188
|
// =============================================================================
|
|
@@ -1792,4 +1807,4 @@ interface ErrorResponse {
|
|
|
1792
1807
|
details?: any;
|
|
1793
1808
|
}
|
|
1794
1809
|
|
|
1795
|
-
export { type APIResponse, type AgentStatus, CallControlPanel, type CallControlPanelProps, type CallData, type CallInitiationFunction, type CallTerminationFunction, type CleanupOperation, type ConferenceLine, type DispositionType, type EndCallData, type EndCallPayLoadData, type EndCallPayload, type ErrorResponse, type FollowUpType, type HookStateTypes, type InitSDKParams, type LogoutFunction, type LogoutHookStateTypes, type LogoutPayload, type ProcessData, type SDKConfig, type SDKState, type StartCallPayload, type StartCalltData, type StartCalltHookStateTypes, type StorageType, type URLConfig, type UseClickToCallReturn, type UseEndCallReturn, type UseLogoutReturn, getSDKVersion, initSDK, isSDKInitialized, useClickToCall, useEndCall, useGetAuthorizationToken, useGetCallerData, useLogout };
|
|
1810
|
+
export { type APIResponse, type AgentStatus, CallControlPanel, type CallControlPanelProps, type CallData, type CallInitiationFunction, type CallTerminationFunction, type CleanupOperation, type ConferenceLine, type DispositionType, type EndCallData, type EndCallPayLoadData, type EndCallPayload, type ErrorResponse, type FollowUpType, type HookStateTypes, type InitSDKParams, type LogoutFunction, type LogoutHookStateTypes, type LogoutPayload, type ProcessData, type SDKConfig, SDKPages, type SDKState, type StartCallPayload, type StartCalltData, type StartCalltHookStateTypes, type StorageType, type URLConfig, type UseClickToCallReturn, type UseEndCallReturn, type UseLogoutReturn, getSDKVersion, initSDK, isSDKInitialized, useClickToCall, useEndCall, useGetAuthorizationToken, useGetCallerData, useLogout };
|