Skip to content

Commit

Permalink
fix(api-keys): fix GetApiKeyResponse createdAt attribute typing
Browse files Browse the repository at this point in the history
  • Loading branch information
kombucha committed Apr 28, 2021
1 parent 3bb8e2d commit ca18b37
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions packages/client-search/src/types/GetApiKeyResponse.ts
Original file line number Diff line number Diff line change
Expand Up @@ -2,14 +2,14 @@ import { ApiKeyACLType } from '.';

export type GetApiKeyResponse = {
/**
* A Unix timestamp used to define the expiration date of the API key.
* The api key value
*/
value: string;

/**
* Date of creation.
* Date of creation (Unix timestamp).
*/
createdAt: string;
createdAt: number;

/**
* List of permissions the key contains.
Expand Down

0 comments on commit ca18b37

Please sign in to comment.