Skip to content

Commit e081c13

Browse files
feat(specs): add secrets authentications to ingestion (generated)
algolia/api-clients-automation#4054 Co-authored-by: algolia-bot <[email protected]> Co-authored-by: Clément Vannicatte <[email protected]>
1 parent da4b93f commit e081c13

File tree

2 files changed

+10
-2
lines changed

2 files changed

+10
-2
lines changed

packages/ingestion/model/authInput.ts

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -13,4 +13,5 @@ export type AuthInput =
1313
| AuthAPIKey
1414
| AuthOAuth
1515
| AuthAlgolia
16-
| AuthAlgoliaInsights;
16+
| AuthAlgoliaInsights
17+
| { [key: string]: string };

packages/ingestion/model/authenticationType.ts

Lines changed: 8 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,4 +3,11 @@
33
/**
44
* Type of authentication. This determines the type of credentials required in the `input` object.
55
*/
6-
export type AuthenticationType = 'googleServiceAccount' | 'basic' | 'apiKey' | 'oauth' | 'algolia' | 'algoliaInsights';
6+
export type AuthenticationType =
7+
| 'googleServiceAccount'
8+
| 'basic'
9+
| 'apiKey'
10+
| 'oauth'
11+
| 'algolia'
12+
| 'algoliaInsights'
13+
| 'secrets';

0 commit comments

Comments
 (0)