@@ -103,7 +103,7 @@ AuthenticationSearch:
103
103
AuthenticationType :
104
104
type : string
105
105
description : Type of authentication. This determines the type of credentials required in the `input` object.
106
- enum : [googleServiceAccount, basic, apiKey, oauth, algolia]
106
+ enum : [googleServiceAccount, basic, apiKey, oauth, algolia, algoliaInsights ]
107
107
108
108
Platform :
109
109
default : null
@@ -187,6 +187,21 @@ AuthAlgoliaPartial:
187
187
Algolia API key with the ACL: `addObject`, `deleteObject`, `settings`, `editSettings`, `listIndexes`, `deleteIndex`.
188
188
This field is `null` in the API response.
189
189
190
+ AuthAlgoliaInsightsPartial :
191
+ title : Algolia Insights
192
+ type : object
193
+ additionalProperties : false
194
+ description : Credentials for authenticating with the Algolia Insights API.
195
+ properties :
196
+ appID :
197
+ type : string
198
+ description : Algolia application ID.
199
+ apiKey :
200
+ type : string
201
+ description : |
202
+ Algolia API key with the ACL: `search`.
203
+ This field is `null` in the API response.
204
+
190
205
AuthGoogleServiceAccount :
191
206
title : Google service account
192
207
type : object
@@ -274,13 +289,32 @@ AuthAlgolia:
274
289
- appID
275
290
- apiKey
276
291
292
+ AuthAlgoliaInsights :
293
+ title : Algolia Insights
294
+ type : object
295
+ additionalProperties : false
296
+ description : Credentials for authenticating with the Algolia Insights API.
297
+ properties :
298
+ appID :
299
+ type : string
300
+ description : Algolia application ID.
301
+ apiKey :
302
+ type : string
303
+ description : |
304
+ Algolia API key with the ACL: `search`.
305
+ This field is `null` in the API response.
306
+ required :
307
+ - appID
308
+ - apiKey
309
+
277
310
AuthInput :
278
311
oneOf :
279
312
- $ref : ' #/AuthGoogleServiceAccount'
280
313
- $ref : ' #/AuthBasic'
281
314
- $ref : ' #/AuthAPIKey'
282
315
- $ref : ' #/AuthOAuth'
283
316
- $ref : ' #/AuthAlgolia'
317
+ - $ref : ' #/AuthAlgoliaInsights'
284
318
285
319
AuthInputPartial :
286
320
oneOf :
@@ -289,3 +323,4 @@ AuthInputPartial:
289
323
- $ref : ' #/AuthAPIKeyPartial'
290
324
- $ref : ' #/AuthOAuthPartial'
291
325
- $ref : ' #/AuthAlgoliaPartial'
326
+ - $ref : ' #/AuthAlgoliaInsightsPartial'
0 commit comments