Skip to content

Commit

Permalink
fix(core): define typification param as optional in cancelHandoff types
Browse files Browse the repository at this point in the history
  • Loading branch information
ericmarcos committed Mar 3, 2020
1 parent 899f82c commit 40040e7
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions packages/botonic-core/index.d.ts
Original file line number Diff line number Diff line change
Expand Up @@ -85,7 +85,7 @@ export class HandOffBuilder {
withAgentEmail(email: string): HandOffBuilder
withNoteURL(note: string): HandOffBuilder
withCaseInfoURL(caseInfo: string): HandOffBuilder
withShadowing(shadowing: boolean): HandOffBuilder
withShadowing(shadowing?: boolean): HandOffBuilder

handOff(): Promise<void>
}
Expand Down Expand Up @@ -126,7 +126,7 @@ export declare function getAvailableAgents(

export declare function cancelHandoff(
session: Session,
typification: string
typification?: string
): void

export declare function deleteUser(session: Session): void
Expand Down

0 comments on commit 40040e7

Please sign in to comment.