File tree Expand file tree Collapse file tree 2 files changed +10
-3
lines changed
packages/client-search/src/types Expand file tree Collapse file tree 2 files changed +10
-3
lines changed Original file line number Diff line number Diff line change @@ -2,14 +2,14 @@ import { ApiKeyACLType } from '.';
2
2
3
3
export type GetApiKeyResponse = {
4
4
/**
5
- * A Unix timestamp used to define the expiration date of the API key.
5
+ * The api key value
6
6
*/
7
7
value : string ;
8
8
9
9
/**
10
- * Date of creation.
10
+ * Date of creation (Unix timestamp) .
11
11
*/
12
- createdAt : string ;
12
+ createdAt : number ;
13
13
14
14
/**
15
15
* List of permissions the key contains.
Original file line number Diff line number Diff line change
1
+ import { ApiKeyACLType } from '.' ;
2
+
1
3
export type UpdateApiKeyOptions = {
4
+ /**
5
+ * List of permissions the key contains.
6
+ */
7
+ readonly acl ?: readonly ApiKeyACLType [ ] ;
8
+
2
9
/**
3
10
* A Unix timestamp used to define the expiration date of the API key.
4
11
*/
You can’t perform that action at this time.
0 commit comments