@vendasta/conversation 0.31.0 → 0.32.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 +7 -1
- package/fesm2015/vendasta-conversation.mjs +6 -0
- package/fesm2015/vendasta-conversation.mjs.map +1 -1
- package/fesm2020/vendasta-conversation.mjs +6 -0
- package/fesm2020/vendasta-conversation.mjs.map +1 -1
- package/lib/_internal/interfaces/api.interface.d.ts +1 -0
- package/lib/_internal/objects/api.d.ts +1 -0
- package/package.json +1 -1
|
@@ -127,6 +127,7 @@ export interface GetParticipantsByKeyRequestInterface {
|
|
|
127
127
|
}
|
|
128
128
|
export interface GetParticipantsByKeyResponseInterface {
|
|
129
129
|
participants?: ParticipantInterface[];
|
|
130
|
+
participant?: ParticipantInterface;
|
|
130
131
|
}
|
|
131
132
|
export interface ListMessagesRequestListMessagesFiltersInterface {
|
|
132
133
|
conversationId?: string;
|
|
@@ -225,6 +225,7 @@ export declare class GetParticipantsByKeyRequest implements i.GetParticipantsByK
|
|
|
225
225
|
}
|
|
226
226
|
export declare class GetParticipantsByKeyResponse implements i.GetParticipantsByKeyResponseInterface {
|
|
227
227
|
participants: Participant[];
|
|
228
|
+
participant: Participant;
|
|
228
229
|
static fromProto(proto: any): GetParticipantsByKeyResponse;
|
|
229
230
|
constructor(kwargs?: i.GetParticipantsByKeyResponseInterface);
|
|
230
231
|
toApiJson(): object;
|