Skip to content

Commit

Permalink
Merge pull request #75 from regulaforensics/fix/sp-12309
Browse files Browse the repository at this point in the history
sp-12309 - fix ext liveness20Api transactionId type
  • Loading branch information
SergeyIlchenko authored Nov 2, 2023
2 parents 4ea834d + 393de15 commit ed1bc1f
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/ext/liveness20-api.ts
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ export class Liveness20Api {
constructor(configuration?: Configuration, basePath?: string, axios?: AxiosInstance) {
this.superClass = new GenLiveness20Api(configuration, basePath, axios);
}
async getLivenessTransactionInfo(transactionId: number, options?: AxiosRequestConfig): Promise<TransactionInfo> {
async getLivenessTransactionInfo(transactionId: string, options?: AxiosRequestConfig): Promise<TransactionInfo> {
const response = await this.superClass.getLivenessTransactionInfo(transactionId, options);
return response.data;
}
Expand Down

0 comments on commit ed1bc1f

Please sign in to comment.