@vendasta/conversation 0.54.0 → 0.55.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.
- package/esm2020/lib/_internal/interfaces/api.interface.mjs +1 -1
- package/esm2020/lib/_internal/objects/api.mjs +13 -1
- package/fesm2015/vendasta-conversation.mjs +12 -0
- package/fesm2015/vendasta-conversation.mjs.map +1 -1
- package/fesm2020/vendasta-conversation.mjs +12 -0
- package/fesm2020/vendasta-conversation.mjs.map +1 -1
- package/lib/_internal/interfaces/api.interface.d.ts +2 -0
- package/lib/_internal/objects/api.d.ts +2 -0
- package/package.json +1 -1
|
@@ -111,6 +111,7 @@ export interface GetAvailableChannelsForConversationRequestInterface {
|
|
|
111
111
|
}
|
|
112
112
|
export interface GetAvailableChannelsForConversationResponseInterface {
|
|
113
113
|
channels?: e.ConversationChannel[];
|
|
114
|
+
preferredChannel?: e.ConversationChannel;
|
|
114
115
|
}
|
|
115
116
|
export interface GetConfigurationRequestInterface {
|
|
116
117
|
subjectParticipant?: SubjectParticipantInterface;
|
|
@@ -375,6 +376,7 @@ export interface UpdateWidgetResponseInterface {
|
|
|
375
376
|
}
|
|
376
377
|
export interface UpsertConfigurationRequestInterface {
|
|
377
378
|
configuration?: ConfigurationInterface;
|
|
379
|
+
fieldMask?: FieldMaskInterface;
|
|
378
380
|
}
|
|
379
381
|
export interface UpsertConfigurationResponseInterface {
|
|
380
382
|
configuration?: ConfigurationInterface;
|
|
@@ -185,6 +185,7 @@ export declare class GetAvailableChannelsForConversationRequest implements i.Get
|
|
|
185
185
|
}
|
|
186
186
|
export declare class GetAvailableChannelsForConversationResponse implements i.GetAvailableChannelsForConversationResponseInterface {
|
|
187
187
|
channels: e.ConversationChannel[];
|
|
188
|
+
preferredChannel: e.ConversationChannel;
|
|
188
189
|
static fromProto(proto: any): GetAvailableChannelsForConversationResponse;
|
|
189
190
|
constructor(kwargs?: i.GetAvailableChannelsForConversationResponseInterface);
|
|
190
191
|
toApiJson(): object;
|
|
@@ -632,6 +633,7 @@ export declare class UpdateWidgetResponse implements i.UpdateWidgetResponseInter
|
|
|
632
633
|
}
|
|
633
634
|
export declare class UpsertConfigurationRequest implements i.UpsertConfigurationRequestInterface {
|
|
634
635
|
configuration: Configuration;
|
|
636
|
+
fieldMask: FieldMask;
|
|
635
637
|
static fromProto(proto: any): UpsertConfigurationRequest;
|
|
636
638
|
constructor(kwargs?: i.UpsertConfigurationRequestInterface);
|
|
637
639
|
toApiJson(): object;
|