@vendasta/conversation 0.74.0 → 0.75.0

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.
@@ -92,6 +92,8 @@ export interface CreateWidgetRequestInterface {
92
92
  accentTextColor?: string;
93
93
  skipContactCapture?: boolean;
94
94
  additionalPromptInstructions?: string;
95
+ assistantName?: string;
96
+ assistantAvatarUrl?: string;
95
97
  }
96
98
  export interface CreateWidgetResponseInterface {
97
99
  widget?: WidgetInterface;
@@ -251,6 +253,8 @@ export interface GetWidgetConfigResponseInterface {
251
253
  accentTextColor?: string;
252
254
  skipContactCapture?: boolean;
253
255
  widgetTopSpace?: number;
256
+ assistantName?: string;
257
+ assistantAvatarUrl?: string;
254
258
  }
255
259
  export interface GetWidgetConversationResponseInterface {
256
260
  conversation?: ConversationInterface;
@@ -448,6 +452,8 @@ export interface UpdateWidgetRequestInterface {
448
452
  accentTextColor?: string;
449
453
  skipContactCapture?: boolean;
450
454
  additionalPromptInstructions?: string;
455
+ assistantName?: string;
456
+ assistantAvatarUrl?: string;
451
457
  fieldMask?: FieldMaskInterface;
452
458
  }
453
459
  export interface UpdateWidgetResponseInterface {
@@ -19,4 +19,6 @@ export interface WidgetInterface {
19
19
  accentTextColor?: string;
20
20
  skipContactCapture?: boolean;
21
21
  additionalPromptInstructions?: string;
22
+ assistantName?: string;
23
+ assistantAvatarUrl?: string;
22
24
  }
@@ -142,6 +142,8 @@ export declare class CreateWidgetRequest implements i.CreateWidgetRequestInterfa
142
142
  accentTextColor: string;
143
143
  skipContactCapture: boolean;
144
144
  additionalPromptInstructions: string;
145
+ assistantName: string;
146
+ assistantAvatarUrl: string;
145
147
  static fromProto(proto: any): CreateWidgetRequest;
146
148
  constructor(kwargs?: i.CreateWidgetRequestInterface);
147
149
  toApiJson(): object;
@@ -430,6 +432,8 @@ export declare class GetWidgetConfigResponse implements i.GetWidgetConfigRespons
430
432
  accentTextColor: string;
431
433
  skipContactCapture: boolean;
432
434
  widgetTopSpace: number;
435
+ assistantName: string;
436
+ assistantAvatarUrl: string;
433
437
  static fromProto(proto: any): GetWidgetConfigResponse;
434
438
  constructor(kwargs?: i.GetWidgetConfigResponseInterface);
435
439
  toApiJson(): object;
@@ -744,6 +748,8 @@ export declare class UpdateWidgetRequest implements i.UpdateWidgetRequestInterfa
744
748
  accentTextColor: string;
745
749
  skipContactCapture: boolean;
746
750
  additionalPromptInstructions: string;
751
+ assistantName: string;
752
+ assistantAvatarUrl: string;
747
753
  fieldMask: FieldMask;
748
754
  static fromProto(proto: any): UpdateWidgetRequest;
749
755
  constructor(kwargs?: i.UpdateWidgetRequestInterface);
@@ -24,6 +24,8 @@ export declare class Widget implements i.WidgetInterface {
24
24
  accentTextColor: string;
25
25
  skipContactCapture: boolean;
26
26
  additionalPromptInstructions: string;
27
+ assistantName: string;
28
+ assistantAvatarUrl: string;
27
29
  static fromProto(proto: any): Widget;
28
30
  constructor(kwargs?: i.WidgetInterface);
29
31
  toApiJson(): object;
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@vendasta/conversation",
3
- "version": "0.74.0",
3
+ "version": "0.75.0",
4
4
  "peerDependencies": {
5
5
  "@angular/common": "^17.3.0",
6
6
  "@angular/core": "^17.3.0"