We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent da4b93f commit e081c13Copy full SHA for e081c13
packages/ingestion/model/authInput.ts
@@ -13,4 +13,5 @@ export type AuthInput =
13
| AuthAPIKey
14
| AuthOAuth
15
| AuthAlgolia
16
- | AuthAlgoliaInsights;
+ | AuthAlgoliaInsights
17
+ | { [key: string]: string };
packages/ingestion/model/authenticationType.ts
@@ -3,4 +3,11 @@
3
/**
4
* Type of authentication. This determines the type of credentials required in the `input` object.
5
*/
6
-export type AuthenticationType = 'googleServiceAccount' | 'basic' | 'apiKey' | 'oauth' | 'algolia' | 'algoliaInsights';
+export type AuthenticationType =
7
+ | 'googleServiceAccount'
8
+ | 'basic'
9
+ | 'apiKey'
10
+ | 'oauth'
11
+ | 'algolia'
12
+ | 'algoliaInsights'
+ | 'secrets';
0 commit comments