@vendasta/conversation 0.70.0 → 0.71.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.
@@ -90,6 +90,7 @@ export interface CreateWidgetRequestInterface {
90
90
  accentColor?: string;
91
91
  accentTextColor?: string;
92
92
  skipContactCapture?: boolean;
93
+ additionalPromptInstructions?: string;
93
94
  }
94
95
  export interface CreateWidgetResponseInterface {
95
96
  widget?: WidgetInterface;
@@ -433,11 +434,12 @@ export interface UpdateWidgetRequestInterface {
433
434
  allowedUrls?: string[];
434
435
  welcomeMessage?: string;
435
436
  isEnabled?: boolean;
436
- fieldMask?: FieldMaskInterface;
437
437
  textColor?: string;
438
438
  accentColor?: string;
439
439
  accentTextColor?: string;
440
440
  skipContactCapture?: boolean;
441
+ additionalPromptInstructions?: string;
442
+ fieldMask?: FieldMaskInterface;
441
443
  }
442
444
  export interface UpdateWidgetResponseInterface {
443
445
  widget?: WidgetInterface;
@@ -18,4 +18,5 @@ export interface WidgetInterface {
18
18
  accentColor?: string;
19
19
  accentTextColor?: string;
20
20
  skipContactCapture?: boolean;
21
+ additionalPromptInstructions?: string;
21
22
  }
@@ -140,6 +140,7 @@ export declare class CreateWidgetRequest implements i.CreateWidgetRequestInterfa
140
140
  accentColor: string;
141
141
  accentTextColor: string;
142
142
  skipContactCapture: boolean;
143
+ additionalPromptInstructions: string;
143
144
  static fromProto(proto: any): CreateWidgetRequest;
144
145
  constructor(kwargs?: i.CreateWidgetRequestInterface);
145
146
  toApiJson(): object;
@@ -723,11 +724,12 @@ export declare class UpdateWidgetRequest implements i.UpdateWidgetRequestInterfa
723
724
  allowedUrls: string[];
724
725
  welcomeMessage: string;
725
726
  isEnabled: boolean;
726
- fieldMask: FieldMask;
727
727
  textColor: string;
728
728
  accentColor: string;
729
729
  accentTextColor: string;
730
730
  skipContactCapture: boolean;
731
+ additionalPromptInstructions: string;
732
+ fieldMask: FieldMask;
731
733
  static fromProto(proto: any): UpdateWidgetRequest;
732
734
  constructor(kwargs?: i.UpdateWidgetRequestInterface);
733
735
  toApiJson(): object;
@@ -23,6 +23,7 @@ export declare class Widget implements i.WidgetInterface {
23
23
  accentColor: string;
24
24
  accentTextColor: string;
25
25
  skipContactCapture: boolean;
26
+ additionalPromptInstructions: string;
26
27
  static fromProto(proto: any): Widget;
27
28
  constructor(kwargs?: i.WidgetInterface);
28
29
  toApiJson(): object;
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@vendasta/conversation",
3
- "version": "0.70.0",
3
+ "version": "0.71.0",
4
4
  "peerDependencies": {
5
5
  "@angular/common": "^17.3.0",
6
6
  "@angular/core": "^17.3.0"