@unkey/api
Version:
Developer-friendly & type-safe Typescript SDK specifically catered to leverage *@unkey/api* API.
19 lines • 762 B
JavaScript
/*
* Code generated by Speakeasy (https://speakeasy.com). DO NOT EDIT.
*/
import { analyticsGetVerifications } from "../funcs/analyticsGetVerifications.js";
import { ClientSDK } from "../lib/sdks.js";
import { unwrapAsync } from "../types/fp.js";
export class Analytics extends ClientSDK {
/**
* Query key verification data
*
* @remarks
* Execute custom SQL queries against your key verification analytics.
* For complete documentation including available tables, columns, data types, query examples, see the schema reference in the API documentation.
*/
async getVerifications(request, options) {
return unwrapAsync(analyticsGetVerifications(this, request, options));
}
}
//# sourceMappingURL=analytics.js.map