@d-id/client-sdk 1.1.56-staging.253 → 1.1.56-staging.255
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 +614 -621
- package/dist/index.umd.cjs +7 -7
- package/dist/src/services/streaming-manager/common.d.ts +0 -4
- package/dist/src/types/entities/agents/manager.d.ts +0 -4
- package/dist/src/types/stream/rtc.d.ts +0 -1
- package/dist/src/types/stream/streams-v2.d.ts +1 -0
- package/package.json +1 -1
|
@@ -71,8 +71,4 @@ export type StreamingManager<T extends CreateStreamOptions | CreateSessionV2Opti
|
|
|
71
71
|
* Whether the current stream segment can be interrupted by the user
|
|
72
72
|
*/
|
|
73
73
|
isInterruptible: boolean;
|
|
74
|
-
/**
|
|
75
|
-
* Whether triggers functionality is available for this stream
|
|
76
|
-
*/
|
|
77
|
-
triggersAvailable: boolean;
|
|
78
74
|
};
|
|
@@ -169,10 +169,6 @@ export interface AgentManager {
|
|
|
169
169
|
* Get if the stream supports interrupt
|
|
170
170
|
*/
|
|
171
171
|
getIsInterruptAvailable: () => boolean;
|
|
172
|
-
/**
|
|
173
|
-
* Get if the stream supports triggers
|
|
174
|
-
*/
|
|
175
|
-
getIsTriggersAvailable: () => boolean;
|
|
176
172
|
/**
|
|
177
173
|
* Array of starter messages that will be sent to the agent when the chat starts
|
|
178
174
|
*/
|