@vendasta/conversation 0.88.0 → 0.89.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.
@@ -75,10 +75,12 @@ export interface CreateMultiMessagesRequestInterface {
75
75
  export interface CreateWidgetConversationRequestInterface {
76
76
  widgetId?: string;
77
77
  chatSourceUrl?: string;
78
+ greetingMessage?: string;
78
79
  }
79
80
  export interface CreateWidgetConversationResponseInterface {
80
81
  widgetParticipantToken?: string;
81
82
  conversation?: ConversationInterface;
83
+ greetingMessageId?: string;
82
84
  }
83
85
  export interface CreateWidgetRequestInterface {
84
86
  name?: string;
@@ -119,6 +119,7 @@ export declare class CreateMultiMessagesRequest implements i.CreateMultiMessages
119
119
  export declare class CreateWidgetConversationRequest implements i.CreateWidgetConversationRequestInterface {
120
120
  widgetId: string;
121
121
  chatSourceUrl: string;
122
+ greetingMessage: string;
122
123
  static fromProto(proto: any): CreateWidgetConversationRequest;
123
124
  constructor(kwargs?: i.CreateWidgetConversationRequestInterface);
124
125
  toApiJson(): object;
@@ -126,6 +127,7 @@ export declare class CreateWidgetConversationRequest implements i.CreateWidgetCo
126
127
  export declare class CreateWidgetConversationResponse implements i.CreateWidgetConversationResponseInterface {
127
128
  widgetParticipantToken: string;
128
129
  conversation: Conversation;
130
+ greetingMessageId: string;
129
131
  static fromProto(proto: any): CreateWidgetConversationResponse;
130
132
  constructor(kwargs?: i.CreateWidgetConversationResponseInterface);
131
133
  toApiJson(): object;
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@vendasta/conversation",
3
- "version": "0.88.0",
3
+ "version": "0.89.0",
4
4
  "peerDependencies": {
5
5
  "@angular/common": "^17.3.0",
6
6
  "@angular/core": "^17.3.0"