@algolia/ingestion 1.0.0-alpha.72 → 1.0.0-alpha.74
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/dist/ingestion.cjs +151 -38
- package/dist/ingestion.esm.browser.js +151 -38
- package/dist/ingestion.esm.node.js +151 -38
- package/dist/ingestion.umd.js +2 -2
- package/dist/src/ingestionClient.d.ts +151 -38
- package/dist/src/ingestionClient.d.ts.map +1 -1
- package/package.json +6 -6
|
@@ -37,7 +37,7 @@ import type { TaskCreateTrigger } from '../model/taskCreateTrigger';
|
|
|
37
37
|
import type { TaskSearch } from '../model/taskSearch';
|
|
38
38
|
import type { TaskUpdateResponse } from '../model/taskUpdateResponse';
|
|
39
39
|
import type { Trigger } from '../model/trigger';
|
|
40
|
-
export declare const apiClientVersion = "1.0.0-alpha.
|
|
40
|
+
export declare const apiClientVersion = "1.0.0-alpha.74";
|
|
41
41
|
export declare const REGIONS: readonly ["eu", "us"];
|
|
42
42
|
export type Region = (typeof REGIONS)[number];
|
|
43
43
|
/**
|
|
@@ -87,7 +87,11 @@ export declare function createIngestionClient({ appId: appIdOption, apiKey: apiK
|
|
|
87
87
|
/**
|
|
88
88
|
* Create a authentication.
|
|
89
89
|
*
|
|
90
|
-
*
|
|
90
|
+
* Required API Key ACLs:
|
|
91
|
+
* - addObject
|
|
92
|
+
* - deleteIndex
|
|
93
|
+
* - editSettings.
|
|
94
|
+
*
|
|
91
95
|
* @param authenticationCreate -.
|
|
92
96
|
* @param requestOptions - The requestOptions to send along with the query, they will be merged with the transporter requestOptions.
|
|
93
97
|
*/
|
|
@@ -95,7 +99,11 @@ export declare function createIngestionClient({ appId: appIdOption, apiKey: apiK
|
|
|
95
99
|
/**
|
|
96
100
|
* Create a destination.
|
|
97
101
|
*
|
|
98
|
-
*
|
|
102
|
+
* Required API Key ACLs:
|
|
103
|
+
* - addObject
|
|
104
|
+
* - deleteIndex
|
|
105
|
+
* - editSettings.
|
|
106
|
+
*
|
|
99
107
|
* @param destinationCreate -.
|
|
100
108
|
* @param requestOptions - The requestOptions to send along with the query, they will be merged with the transporter requestOptions.
|
|
101
109
|
*/
|
|
@@ -103,7 +111,11 @@ export declare function createIngestionClient({ appId: appIdOption, apiKey: apiK
|
|
|
103
111
|
/**
|
|
104
112
|
* Create a source.
|
|
105
113
|
*
|
|
106
|
-
*
|
|
114
|
+
* Required API Key ACLs:
|
|
115
|
+
* - addObject
|
|
116
|
+
* - deleteIndex
|
|
117
|
+
* - editSettings.
|
|
118
|
+
*
|
|
107
119
|
* @param sourceCreate -.
|
|
108
120
|
* @param requestOptions - The requestOptions to send along with the query, they will be merged with the transporter requestOptions.
|
|
109
121
|
*/
|
|
@@ -111,7 +123,6 @@ export declare function createIngestionClient({ appId: appIdOption, apiKey: apiK
|
|
|
111
123
|
/**
|
|
112
124
|
* Create a task.
|
|
113
125
|
*
|
|
114
|
-
* @summary Create a task.
|
|
115
126
|
* @param taskCreate -.
|
|
116
127
|
* @param requestOptions - The requestOptions to send along with the query, they will be merged with the transporter requestOptions.
|
|
117
128
|
*/
|
|
@@ -119,7 +130,6 @@ export declare function createIngestionClient({ appId: appIdOption, apiKey: apiK
|
|
|
119
130
|
/**
|
|
120
131
|
* This method allow you to send requests to the Algolia REST API.
|
|
121
132
|
*
|
|
122
|
-
* @summary Send requests to the Algolia REST API.
|
|
123
133
|
* @param customDelete - The customDelete object.
|
|
124
134
|
* @param customDelete.path - Path of the endpoint, anything after \"/1\" must be specified.
|
|
125
135
|
* @param customDelete.parameters - Query parameters to apply to the current query.
|
|
@@ -129,7 +139,6 @@ export declare function createIngestionClient({ appId: appIdOption, apiKey: apiK
|
|
|
129
139
|
/**
|
|
130
140
|
* This method allow you to send requests to the Algolia REST API.
|
|
131
141
|
*
|
|
132
|
-
* @summary Send requests to the Algolia REST API.
|
|
133
142
|
* @param customGet - The customGet object.
|
|
134
143
|
* @param customGet.path - Path of the endpoint, anything after \"/1\" must be specified.
|
|
135
144
|
* @param customGet.parameters - Query parameters to apply to the current query.
|
|
@@ -139,7 +148,6 @@ export declare function createIngestionClient({ appId: appIdOption, apiKey: apiK
|
|
|
139
148
|
/**
|
|
140
149
|
* This method allow you to send requests to the Algolia REST API.
|
|
141
150
|
*
|
|
142
|
-
* @summary Send requests to the Algolia REST API.
|
|
143
151
|
* @param customPost - The customPost object.
|
|
144
152
|
* @param customPost.path - Path of the endpoint, anything after \"/1\" must be specified.
|
|
145
153
|
* @param customPost.parameters - Query parameters to apply to the current query.
|
|
@@ -150,7 +158,6 @@ export declare function createIngestionClient({ appId: appIdOption, apiKey: apiK
|
|
|
150
158
|
/**
|
|
151
159
|
* This method allow you to send requests to the Algolia REST API.
|
|
152
160
|
*
|
|
153
|
-
* @summary Send requests to the Algolia REST API.
|
|
154
161
|
* @param customPut - The customPut object.
|
|
155
162
|
* @param customPut.path - Path of the endpoint, anything after \"/1\" must be specified.
|
|
156
163
|
* @param customPut.parameters - Query parameters to apply to the current query.
|
|
@@ -161,7 +168,11 @@ export declare function createIngestionClient({ appId: appIdOption, apiKey: apiK
|
|
|
161
168
|
/**
|
|
162
169
|
* Soft delete the authentication of the given authenticationID.
|
|
163
170
|
*
|
|
164
|
-
*
|
|
171
|
+
* Required API Key ACLs:
|
|
172
|
+
* - addObject
|
|
173
|
+
* - deleteIndex
|
|
174
|
+
* - editSettings.
|
|
175
|
+
*
|
|
165
176
|
* @param deleteAuthentication - The deleteAuthentication object.
|
|
166
177
|
* @param deleteAuthentication.authenticationID - The authentication UUID.
|
|
167
178
|
* @param requestOptions - The requestOptions to send along with the query, they will be merged with the transporter requestOptions.
|
|
@@ -170,7 +181,11 @@ export declare function createIngestionClient({ appId: appIdOption, apiKey: apiK
|
|
|
170
181
|
/**
|
|
171
182
|
* Soft delete the destination of the given destinationID.
|
|
172
183
|
*
|
|
173
|
-
*
|
|
184
|
+
* Required API Key ACLs:
|
|
185
|
+
* - addObject
|
|
186
|
+
* - deleteIndex
|
|
187
|
+
* - editSettings.
|
|
188
|
+
*
|
|
174
189
|
* @param deleteDestination - The deleteDestination object.
|
|
175
190
|
* @param deleteDestination.destinationID - The destination UUID.
|
|
176
191
|
* @param requestOptions - The requestOptions to send along with the query, they will be merged with the transporter requestOptions.
|
|
@@ -179,7 +194,11 @@ export declare function createIngestionClient({ appId: appIdOption, apiKey: apiK
|
|
|
179
194
|
/**
|
|
180
195
|
* Soft delete the source of the given sourceID.
|
|
181
196
|
*
|
|
182
|
-
*
|
|
197
|
+
* Required API Key ACLs:
|
|
198
|
+
* - addObject
|
|
199
|
+
* - deleteIndex
|
|
200
|
+
* - editSettings.
|
|
201
|
+
*
|
|
183
202
|
* @param deleteSource - The deleteSource object.
|
|
184
203
|
* @param deleteSource.sourceID - The source UUID.
|
|
185
204
|
* @param requestOptions - The requestOptions to send along with the query, they will be merged with the transporter requestOptions.
|
|
@@ -188,7 +207,6 @@ export declare function createIngestionClient({ appId: appIdOption, apiKey: apiK
|
|
|
188
207
|
/**
|
|
189
208
|
* Soft delete the task of the given taskID.
|
|
190
209
|
*
|
|
191
|
-
* @summary Delete a task.
|
|
192
210
|
* @param deleteTask - The deleteTask object.
|
|
193
211
|
* @param deleteTask.taskID - The task UUID.
|
|
194
212
|
* @param requestOptions - The requestOptions to send along with the query, they will be merged with the transporter requestOptions.
|
|
@@ -197,7 +215,11 @@ export declare function createIngestionClient({ appId: appIdOption, apiKey: apiK
|
|
|
197
215
|
/**
|
|
198
216
|
* Disable the task of the given taskID.
|
|
199
217
|
*
|
|
200
|
-
*
|
|
218
|
+
* Required API Key ACLs:
|
|
219
|
+
* - addObject
|
|
220
|
+
* - deleteIndex
|
|
221
|
+
* - editSettings.
|
|
222
|
+
*
|
|
201
223
|
* @param disableTask - The disableTask object.
|
|
202
224
|
* @param disableTask.taskID - The task UUID.
|
|
203
225
|
* @param requestOptions - The requestOptions to send along with the query, they will be merged with the transporter requestOptions.
|
|
@@ -206,7 +228,11 @@ export declare function createIngestionClient({ appId: appIdOption, apiKey: apiK
|
|
|
206
228
|
/**
|
|
207
229
|
* Enable the task of the given taskID.
|
|
208
230
|
*
|
|
209
|
-
*
|
|
231
|
+
* Required API Key ACLs:
|
|
232
|
+
* - addObject
|
|
233
|
+
* - deleteIndex
|
|
234
|
+
* - editSettings.
|
|
235
|
+
*
|
|
210
236
|
* @param enableTask - The enableTask object.
|
|
211
237
|
* @param enableTask.taskID - The task UUID.
|
|
212
238
|
* @param requestOptions - The requestOptions to send along with the query, they will be merged with the transporter requestOptions.
|
|
@@ -215,7 +241,11 @@ export declare function createIngestionClient({ appId: appIdOption, apiKey: apiK
|
|
|
215
241
|
/**
|
|
216
242
|
* Get the authentication of the given authenticationID.
|
|
217
243
|
*
|
|
218
|
-
*
|
|
244
|
+
* Required API Key ACLs:
|
|
245
|
+
* - addObject
|
|
246
|
+
* - deleteIndex
|
|
247
|
+
* - editSettings.
|
|
248
|
+
*
|
|
219
249
|
* @param getAuthentication - The getAuthentication object.
|
|
220
250
|
* @param getAuthentication.authenticationID - The authentication UUID.
|
|
221
251
|
* @param requestOptions - The requestOptions to send along with the query, they will be merged with the transporter requestOptions.
|
|
@@ -224,7 +254,11 @@ export declare function createIngestionClient({ appId: appIdOption, apiKey: apiK
|
|
|
224
254
|
/**
|
|
225
255
|
* Get a list of authentications for the given query parameters, with pagination details.
|
|
226
256
|
*
|
|
227
|
-
*
|
|
257
|
+
* Required API Key ACLs:
|
|
258
|
+
* - addObject
|
|
259
|
+
* - deleteIndex
|
|
260
|
+
* - editSettings.
|
|
261
|
+
*
|
|
228
262
|
* @param getAuthentications - The getAuthentications object.
|
|
229
263
|
* @param getAuthentications.itemsPerPage - The number of items per page to return.
|
|
230
264
|
* @param getAuthentications.page - The page number to fetch, starting at 1.
|
|
@@ -238,7 +272,11 @@ export declare function createIngestionClient({ appId: appIdOption, apiKey: apiK
|
|
|
238
272
|
/**
|
|
239
273
|
* Get the destination of the given destinationID.
|
|
240
274
|
*
|
|
241
|
-
*
|
|
275
|
+
* Required API Key ACLs:
|
|
276
|
+
* - addObject
|
|
277
|
+
* - deleteIndex
|
|
278
|
+
* - editSettings.
|
|
279
|
+
*
|
|
242
280
|
* @param getDestination - The getDestination object.
|
|
243
281
|
* @param getDestination.destinationID - The destination UUID.
|
|
244
282
|
* @param requestOptions - The requestOptions to send along with the query, they will be merged with the transporter requestOptions.
|
|
@@ -247,7 +285,11 @@ export declare function createIngestionClient({ appId: appIdOption, apiKey: apiK
|
|
|
247
285
|
/**
|
|
248
286
|
* Get a list of destinations for the given query parameters, with pagination details.
|
|
249
287
|
*
|
|
250
|
-
*
|
|
288
|
+
* Required API Key ACLs:
|
|
289
|
+
* - addObject
|
|
290
|
+
* - deleteIndex
|
|
291
|
+
* - editSettings.
|
|
292
|
+
*
|
|
251
293
|
* @param getDestinations - The getDestinations object.
|
|
252
294
|
* @param getDestinations.itemsPerPage - The number of items per page to return.
|
|
253
295
|
* @param getDestinations.page - The page number to fetch, starting at 1.
|
|
@@ -261,7 +303,11 @@ export declare function createIngestionClient({ appId: appIdOption, apiKey: apiK
|
|
|
261
303
|
/**
|
|
262
304
|
* Retrieve a stream listing for a given Singer specification compatible docker type source ID.
|
|
263
305
|
*
|
|
264
|
-
*
|
|
306
|
+
* Required API Key ACLs:
|
|
307
|
+
* - addObject
|
|
308
|
+
* - deleteIndex
|
|
309
|
+
* - editSettings.
|
|
310
|
+
*
|
|
265
311
|
* @param getDockerSourceStreams - The getDockerSourceStreams object.
|
|
266
312
|
* @param getDockerSourceStreams.sourceID - The source UUID.
|
|
267
313
|
* @param requestOptions - The requestOptions to send along with the query, they will be merged with the transporter requestOptions.
|
|
@@ -270,7 +316,11 @@ export declare function createIngestionClient({ appId: appIdOption, apiKey: apiK
|
|
|
270
316
|
/**
|
|
271
317
|
* Get a single event for a specific runID.
|
|
272
318
|
*
|
|
273
|
-
*
|
|
319
|
+
* Required API Key ACLs:
|
|
320
|
+
* - addObject
|
|
321
|
+
* - deleteIndex
|
|
322
|
+
* - editSettings.
|
|
323
|
+
*
|
|
274
324
|
* @param getEvent - The getEvent object.
|
|
275
325
|
* @param getEvent.runID - The run UUID.
|
|
276
326
|
* @param getEvent.eventID - The event UUID.
|
|
@@ -280,7 +330,11 @@ export declare function createIngestionClient({ appId: appIdOption, apiKey: apiK
|
|
|
280
330
|
/**
|
|
281
331
|
* Get a list of events associated to the given runID, for the given query parameters.
|
|
282
332
|
*
|
|
283
|
-
*
|
|
333
|
+
* Required API Key ACLs:
|
|
334
|
+
* - addObject
|
|
335
|
+
* - deleteIndex
|
|
336
|
+
* - editSettings.
|
|
337
|
+
*
|
|
284
338
|
* @param getEvents - The getEvents object.
|
|
285
339
|
* @param getEvents.runID - The run UUID.
|
|
286
340
|
* @param getEvents.itemsPerPage - The number of items per page to return.
|
|
@@ -297,7 +351,11 @@ export declare function createIngestionClient({ appId: appIdOption, apiKey: apiK
|
|
|
297
351
|
/**
|
|
298
352
|
* Get a single run for the given ID.
|
|
299
353
|
*
|
|
300
|
-
*
|
|
354
|
+
* Required API Key ACLs:
|
|
355
|
+
* - addObject
|
|
356
|
+
* - deleteIndex
|
|
357
|
+
* - editSettings.
|
|
358
|
+
*
|
|
301
359
|
* @param getRun - The getRun object.
|
|
302
360
|
* @param getRun.runID - The run UUID.
|
|
303
361
|
* @param requestOptions - The requestOptions to send along with the query, they will be merged with the transporter requestOptions.
|
|
@@ -306,7 +364,11 @@ export declare function createIngestionClient({ appId: appIdOption, apiKey: apiK
|
|
|
306
364
|
/**
|
|
307
365
|
* Get a list of runs for the given query parameters, with pagination details.
|
|
308
366
|
*
|
|
309
|
-
*
|
|
367
|
+
* Required API Key ACLs:
|
|
368
|
+
* - addObject
|
|
369
|
+
* - deleteIndex
|
|
370
|
+
* - editSettings.
|
|
371
|
+
*
|
|
310
372
|
* @param getRuns - The getRuns object.
|
|
311
373
|
* @param getRuns.itemsPerPage - The number of items per page to return.
|
|
312
374
|
* @param getRuns.page - The page number to fetch, starting at 1.
|
|
@@ -322,7 +384,11 @@ export declare function createIngestionClient({ appId: appIdOption, apiKey: apiK
|
|
|
322
384
|
/**
|
|
323
385
|
* Get the source of the given sourceID.
|
|
324
386
|
*
|
|
325
|
-
*
|
|
387
|
+
* Required API Key ACLs:
|
|
388
|
+
* - addObject
|
|
389
|
+
* - deleteIndex
|
|
390
|
+
* - editSettings.
|
|
391
|
+
*
|
|
326
392
|
* @param getSource - The getSource object.
|
|
327
393
|
* @param getSource.sourceID - The source UUID.
|
|
328
394
|
* @param requestOptions - The requestOptions to send along with the query, they will be merged with the transporter requestOptions.
|
|
@@ -331,7 +397,11 @@ export declare function createIngestionClient({ appId: appIdOption, apiKey: apiK
|
|
|
331
397
|
/**
|
|
332
398
|
* Get a list of sources for the given query parameters, with pagination details.
|
|
333
399
|
*
|
|
334
|
-
*
|
|
400
|
+
* Required API Key ACLs:
|
|
401
|
+
* - addObject
|
|
402
|
+
* - deleteIndex
|
|
403
|
+
* - editSettings.
|
|
404
|
+
*
|
|
335
405
|
* @param getSources - The getSources object.
|
|
336
406
|
* @param getSources.itemsPerPage - The number of items per page to return.
|
|
337
407
|
* @param getSources.page - The page number to fetch, starting at 1.
|
|
@@ -345,7 +415,11 @@ export declare function createIngestionClient({ appId: appIdOption, apiKey: apiK
|
|
|
345
415
|
/**
|
|
346
416
|
* Get the task of the given taskID.
|
|
347
417
|
*
|
|
348
|
-
*
|
|
418
|
+
* Required API Key ACLs:
|
|
419
|
+
* - addObject
|
|
420
|
+
* - deleteIndex
|
|
421
|
+
* - editSettings.
|
|
422
|
+
*
|
|
349
423
|
* @param getTask - The getTask object.
|
|
350
424
|
* @param getTask.taskID - The task UUID.
|
|
351
425
|
* @param requestOptions - The requestOptions to send along with the query, they will be merged with the transporter requestOptions.
|
|
@@ -354,7 +428,11 @@ export declare function createIngestionClient({ appId: appIdOption, apiKey: apiK
|
|
|
354
428
|
/**
|
|
355
429
|
* Get a list of tasks for the given query parameters, with pagination details.
|
|
356
430
|
*
|
|
357
|
-
*
|
|
431
|
+
* Required API Key ACLs:
|
|
432
|
+
* - addObject
|
|
433
|
+
* - deleteIndex
|
|
434
|
+
* - editSettings.
|
|
435
|
+
*
|
|
358
436
|
* @param getTasks - The getTasks object.
|
|
359
437
|
* @param getTasks.itemsPerPage - The number of items per page to return.
|
|
360
438
|
* @param getTasks.page - The page number to fetch, starting at 1.
|
|
@@ -371,7 +449,11 @@ export declare function createIngestionClient({ appId: appIdOption, apiKey: apiK
|
|
|
371
449
|
/**
|
|
372
450
|
* Run the task of the given taskID.
|
|
373
451
|
*
|
|
374
|
-
*
|
|
452
|
+
* Required API Key ACLs:
|
|
453
|
+
* - addObject
|
|
454
|
+
* - deleteIndex
|
|
455
|
+
* - editSettings.
|
|
456
|
+
*
|
|
375
457
|
* @param runTask - The runTask object.
|
|
376
458
|
* @param runTask.taskID - The task UUID.
|
|
377
459
|
* @param requestOptions - The requestOptions to send along with the query, they will be merged with the transporter requestOptions.
|
|
@@ -380,7 +462,11 @@ export declare function createIngestionClient({ appId: appIdOption, apiKey: apiK
|
|
|
380
462
|
/**
|
|
381
463
|
* Search among authentications with a defined set of parameters.
|
|
382
464
|
*
|
|
383
|
-
*
|
|
465
|
+
* Required API Key ACLs:
|
|
466
|
+
* - addObject
|
|
467
|
+
* - deleteIndex
|
|
468
|
+
* - editSettings.
|
|
469
|
+
*
|
|
384
470
|
* @param authenticationSearch - The authenticationSearch object.
|
|
385
471
|
* @param requestOptions - The requestOptions to send along with the query, they will be merged with the transporter requestOptions.
|
|
386
472
|
*/
|
|
@@ -388,7 +474,11 @@ export declare function createIngestionClient({ appId: appIdOption, apiKey: apiK
|
|
|
388
474
|
/**
|
|
389
475
|
* Search among destinations with a defined set of parameters.
|
|
390
476
|
*
|
|
391
|
-
*
|
|
477
|
+
* Required API Key ACLs:
|
|
478
|
+
* - addObject
|
|
479
|
+
* - deleteIndex
|
|
480
|
+
* - editSettings.
|
|
481
|
+
*
|
|
392
482
|
* @param destinationSearch - The destinationSearch object.
|
|
393
483
|
* @param requestOptions - The requestOptions to send along with the query, they will be merged with the transporter requestOptions.
|
|
394
484
|
*/
|
|
@@ -396,7 +486,11 @@ export declare function createIngestionClient({ appId: appIdOption, apiKey: apiK
|
|
|
396
486
|
/**
|
|
397
487
|
* Search among sources with a defined set of parameters.
|
|
398
488
|
*
|
|
399
|
-
*
|
|
489
|
+
* Required API Key ACLs:
|
|
490
|
+
* - addObject
|
|
491
|
+
* - deleteIndex
|
|
492
|
+
* - editSettings.
|
|
493
|
+
*
|
|
400
494
|
* @param sourceSearch - The sourceSearch object.
|
|
401
495
|
* @param requestOptions - The requestOptions to send along with the query, they will be merged with the transporter requestOptions.
|
|
402
496
|
*/
|
|
@@ -404,7 +498,11 @@ export declare function createIngestionClient({ appId: appIdOption, apiKey: apiK
|
|
|
404
498
|
/**
|
|
405
499
|
* Search among tasks with a defined set of parameters.
|
|
406
500
|
*
|
|
407
|
-
*
|
|
501
|
+
* Required API Key ACLs:
|
|
502
|
+
* - addObject
|
|
503
|
+
* - deleteIndex
|
|
504
|
+
* - editSettings.
|
|
505
|
+
*
|
|
408
506
|
* @param taskSearch - The taskSearch object.
|
|
409
507
|
* @param requestOptions - The requestOptions to send along with the query, they will be merged with the transporter requestOptions.
|
|
410
508
|
*/
|
|
@@ -412,7 +510,11 @@ export declare function createIngestionClient({ appId: appIdOption, apiKey: apiK
|
|
|
412
510
|
/**
|
|
413
511
|
* Trigger a stream listing request for a Singer specification compatible docker type source.
|
|
414
512
|
*
|
|
415
|
-
*
|
|
513
|
+
* Required API Key ACLs:
|
|
514
|
+
* - addObject
|
|
515
|
+
* - deleteIndex
|
|
516
|
+
* - editSettings.
|
|
517
|
+
*
|
|
416
518
|
* @param triggerDockerSourceDiscover - The triggerDockerSourceDiscover object.
|
|
417
519
|
* @param triggerDockerSourceDiscover.sourceID - The source UUID.
|
|
418
520
|
* @param requestOptions - The requestOptions to send along with the query, they will be merged with the transporter requestOptions.
|
|
@@ -421,7 +523,11 @@ export declare function createIngestionClient({ appId: appIdOption, apiKey: apiK
|
|
|
421
523
|
/**
|
|
422
524
|
* Update the authentication of the given authenticationID.
|
|
423
525
|
*
|
|
424
|
-
*
|
|
526
|
+
* Required API Key ACLs:
|
|
527
|
+
* - addObject
|
|
528
|
+
* - deleteIndex
|
|
529
|
+
* - editSettings.
|
|
530
|
+
*
|
|
425
531
|
* @param updateAuthentication - The updateAuthentication object.
|
|
426
532
|
* @param updateAuthentication.authenticationID - The authentication UUID.
|
|
427
533
|
* @param updateAuthentication.authenticationUpdate - The authenticationUpdate object.
|
|
@@ -431,7 +537,11 @@ export declare function createIngestionClient({ appId: appIdOption, apiKey: apiK
|
|
|
431
537
|
/**
|
|
432
538
|
* Update the destination of the given destinationID.
|
|
433
539
|
*
|
|
434
|
-
*
|
|
540
|
+
* Required API Key ACLs:
|
|
541
|
+
* - addObject
|
|
542
|
+
* - deleteIndex
|
|
543
|
+
* - editSettings.
|
|
544
|
+
*
|
|
435
545
|
* @param updateDestination - The updateDestination object.
|
|
436
546
|
* @param updateDestination.destinationID - The destination UUID.
|
|
437
547
|
* @param updateDestination.destinationUpdate - The destinationUpdate object.
|
|
@@ -441,7 +551,11 @@ export declare function createIngestionClient({ appId: appIdOption, apiKey: apiK
|
|
|
441
551
|
/**
|
|
442
552
|
* Update the source of the given sourceID.
|
|
443
553
|
*
|
|
444
|
-
*
|
|
554
|
+
* Required API Key ACLs:
|
|
555
|
+
* - addObject
|
|
556
|
+
* - deleteIndex
|
|
557
|
+
* - editSettings.
|
|
558
|
+
*
|
|
445
559
|
* @param updateSource - The updateSource object.
|
|
446
560
|
* @param updateSource.sourceID - The source UUID.
|
|
447
561
|
* @param updateSource.sourceUpdate - The sourceUpdate object.
|
|
@@ -451,7 +565,6 @@ export declare function createIngestionClient({ appId: appIdOption, apiKey: apiK
|
|
|
451
565
|
/**
|
|
452
566
|
* Update the task of the given taskID.
|
|
453
567
|
*
|
|
454
|
-
* @summary Update a task.
|
|
455
568
|
* @param updateTask - The updateTask object.
|
|
456
569
|
* @param updateTask.taskID - The task UUID.
|
|
457
570
|
* @param updateTask.taskUpdate - The taskUpdate object.
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"ingestionClient.d.ts","sourceRoot":"","sources":["../../src/ingestionClient.ts"],"names":[],"mappings":"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
|
|
1
|
+
{"version":3,"file":"ingestionClient.d.ts","sourceRoot":"","sources":["../../src/ingestionClient.ts"],"names":[],"mappings":"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"}
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@algolia/ingestion",
|
|
3
|
-
"version": "1.0.0-alpha.
|
|
3
|
+
"version": "1.0.0-alpha.74",
|
|
4
4
|
"description": "JavaScript client for ingestion",
|
|
5
5
|
"repository": "algolia/algoliasearch-client-javascript",
|
|
6
6
|
"license": "MIT",
|
|
@@ -39,13 +39,13 @@
|
|
|
39
39
|
"clean": "rm -rf ./dist || true"
|
|
40
40
|
},
|
|
41
41
|
"dependencies": {
|
|
42
|
-
"@algolia/client-common": "5.0.0-alpha.
|
|
43
|
-
"@algolia/requester-browser-xhr": "5.0.0-alpha.
|
|
44
|
-
"@algolia/requester-node-http": "5.0.0-alpha.
|
|
42
|
+
"@algolia/client-common": "5.0.0-alpha.101",
|
|
43
|
+
"@algolia/requester-browser-xhr": "5.0.0-alpha.101",
|
|
44
|
+
"@algolia/requester-node-http": "5.0.0-alpha.101"
|
|
45
45
|
},
|
|
46
46
|
"devDependencies": {
|
|
47
|
-
"@types/node": "20.11.
|
|
48
|
-
"rollup": "4.9.
|
|
47
|
+
"@types/node": "20.11.0",
|
|
48
|
+
"rollup": "4.9.6",
|
|
49
49
|
"typescript": "5.3.3"
|
|
50
50
|
},
|
|
51
51
|
"engines": {
|