@vendasta/conversation 0.97.0 → 0.97.2
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/esm2022/lib/_internal/interfaces/api.interface.mjs +1 -1
- package/esm2022/lib/_internal/interfaces/conversation.interface.mjs +1 -1
- package/esm2022/lib/_internal/objects/api.mjs +6 -6
- package/esm2022/lib/_internal/objects/conversation.mjs +8 -1
- package/fesm2022/vendasta-conversation.mjs +12 -5
- package/fesm2022/vendasta-conversation.mjs.map +1 -1
- package/lib/_internal/interfaces/api.interface.d.ts +1 -1
- package/lib/_internal/interfaces/conversation.interface.d.ts +1 -0
- package/lib/_internal/objects/api.d.ts +1 -1
- package/lib/_internal/objects/conversation.d.ts +1 -0
- package/package.json +1 -1
|
@@ -260,7 +260,7 @@ export interface GetParticipantsByKeyResponseInterface {
|
|
|
260
260
|
}
|
|
261
261
|
export interface GetWidgetConfigRequestInterface {
|
|
262
262
|
widgetId?: string;
|
|
263
|
-
|
|
263
|
+
visitData?: WidgetVisitInterface;
|
|
264
264
|
}
|
|
265
265
|
export interface GetWidgetConfigResponseInterface {
|
|
266
266
|
name?: string;
|
|
@@ -2,6 +2,7 @@ import { SubjectParticipantInterface } from './common.interface';
|
|
|
2
2
|
import * as e from '../enums';
|
|
3
3
|
export interface AIConfigurationInterface {
|
|
4
4
|
aiResponseEnabled?: boolean;
|
|
5
|
+
willRespondAt?: Date;
|
|
5
6
|
}
|
|
6
7
|
export interface ConversationInterface {
|
|
7
8
|
conversationId?: string;
|
|
@@ -442,7 +442,7 @@ export declare class GetParticipantsByKeyResponse implements i.GetParticipantsBy
|
|
|
442
442
|
}
|
|
443
443
|
export declare class GetWidgetConfigRequest implements i.GetWidgetConfigRequestInterface {
|
|
444
444
|
widgetId: string;
|
|
445
|
-
|
|
445
|
+
visitData: WidgetVisit;
|
|
446
446
|
static fromProto(proto: any): GetWidgetConfigRequest;
|
|
447
447
|
constructor(kwargs?: i.GetWidgetConfigRequestInterface);
|
|
448
448
|
toApiJson(): object;
|
|
@@ -4,6 +4,7 @@ import * as e from '../enums';
|
|
|
4
4
|
export declare function enumStringToValue<E>(enumRef: any, value: string): E;
|
|
5
5
|
export declare class AIConfiguration implements i.AIConfigurationInterface {
|
|
6
6
|
aiResponseEnabled: boolean;
|
|
7
|
+
willRespondAt: Date;
|
|
7
8
|
static fromProto(proto: any): AIConfiguration;
|
|
8
9
|
constructor(kwargs?: i.AIConfigurationInterface);
|
|
9
10
|
toApiJson(): object;
|