Skip to content

Commit 4e3b6eb

Browse files
committed
fix(api-keys): fix GetApiKeyResponse createdAt attribute typing
1 parent 3bb8e2d commit 4e3b6eb

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

packages/client-search/src/types/GetApiKeyResponse.ts

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -2,14 +2,14 @@ import { ApiKeyACLType } from '.';
22

33
export type GetApiKeyResponse = {
44
/**
5-
* A Unix timestamp used to define the expiration date of the API key.
5+
* The api key value
66
*/
77
value: string;
88

99
/**
1010
* Date of creation.
1111
*/
12-
createdAt: string;
12+
createdAt: number;
1313

1414
/**
1515
* List of permissions the key contains.

0 commit comments

Comments
 (0)