@vonage/client-sdk 1.2.0-rc.1 → 1.2.0-rc.2
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/dist/client/VonageClient.d.ts +2 -1
- package/dist/client/index.cjs +6534 -6478
- package/dist/client/index.mjs +6534 -6478
- package/dist/kotlin/clientsdk-clientcore_js.d.ts +2 -2
- package/dist/vonageClientSDK.js +6529 -6476
- package/dist/vonageClientSDK.min.js +1 -1
- package/dist/vonageClientSDK.min.mjs +1 -1
- package/dist/vonageClientSDK.mjs +6529 -6476
- package/package.json +1 -1
|
@@ -200,13 +200,14 @@ export declare class VonageClient extends vonage.CombinedClientJS {
|
|
|
200
200
|
* @param pageSize - the number of events to return per page (default: 100)
|
|
201
201
|
* @param cursor - the cursor to use for pagination (default: null)
|
|
202
202
|
* @param eventFilter - the event types to filter by (default: null)
|
|
203
|
+
* @param includeDeletedEvents - A boolean, which when sent as true, will include `deletedEvents` in the list, default is false
|
|
203
204
|
* @returns a `EventsPage` containing the events
|
|
204
205
|
*
|
|
205
206
|
* @privateRemarks
|
|
206
207
|
* * This is a workaround for the to ensure exhaustiveness of the `ConversationEvent` type
|
|
207
208
|
* * the kotlin core does not support union types
|
|
208
209
|
*/
|
|
209
|
-
getConversationEvents(id: string, order?: PresentingOrder, pageSize?: number, cursor?: string | null, eventFilter?: string[] | null): Promise<EventPage>;
|
|
210
|
+
getConversationEvents(id: string, order?: PresentingOrder, pageSize?: number, cursor?: string | null, eventFilter?: string[] | null, includeDeletedEvents?: boolean): Promise<EventPage>;
|
|
210
211
|
/**
|
|
211
212
|
* Get a Conversation's Members
|
|
212
213
|
*
|