Skip to content

Commit

Permalink
feat(search): add inference ACL to API key object (#1479)
Browse files Browse the repository at this point in the history
  • Loading branch information
helenamariano committed Sep 12, 2023
1 parent 038c701 commit 3a95126
Showing 1 changed file with 2 additions and 0 deletions.
2 changes: 2 additions & 0 deletions packages/client-search/src/types/ApiKeyType.ts
Expand Up @@ -5,6 +5,7 @@ export const ApiKeyACLEnum: Readonly<Record<string, ApiKeyACLType>> = {
DeleteIndex: 'deleteIndex',
DeleteObject: 'deleteObject',
EditSettings: 'editSettings',
Inference: 'inference',
ListIndexes: 'listIndexes',
Logs: 'logs',
Personalization: 'personalization',
Expand All @@ -22,6 +23,7 @@ export type ApiKeyACLType =
| 'deleteIndex'
| 'deleteObject'
| 'editSettings'
| 'inference'
| 'listIndexes'
| 'logs'
| 'personalization'
Expand Down

0 comments on commit 3a95126

Please sign in to comment.