@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.
@@ -260,7 +260,7 @@ export interface GetParticipantsByKeyResponseInterface {
260
260
  }
261
261
  export interface GetWidgetConfigRequestInterface {
262
262
  widgetId?: string;
263
- visitor?: WidgetVisitInterface;
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
- visitor: WidgetVisit;
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;
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@vendasta/conversation",
3
- "version": "0.97.0",
3
+ "version": "0.97.2",
4
4
  "peerDependencies": {
5
5
  "@angular/common": "^17.3.0",
6
6
  "@angular/core": "^17.3.0"