@algolia/ingestion 1.0.0-beta.8 → 1.0.0
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/builds/browser.d.ts +22 -8
- package/dist/builds/browser.d.ts.map +1 -1
- package/dist/builds/node.d.ts +22 -8
- package/dist/builds/node.d.ts.map +1 -1
- package/dist/ingestion.cjs +623 -187
- package/dist/ingestion.esm.browser.js +623 -187
- package/dist/ingestion.esm.node.js +623 -187
- package/dist/ingestion.umd.js +2 -2
- package/dist/model/action.d.ts +5 -0
- package/dist/model/action.d.ts.map +1 -0
- package/dist/model/batchRequest.d.ts +9 -0
- package/dist/model/batchRequest.d.ts.map +1 -0
- package/dist/model/batchWriteParams.d.ts +8 -0
- package/dist/model/batchWriteParams.d.ts.map +1 -0
- package/dist/model/clientMethodProps.d.ts +209 -65
- package/dist/model/clientMethodProps.d.ts.map +1 -1
- package/dist/model/destination.d.ts +1 -0
- package/dist/model/destination.d.ts.map +1 -1
- package/dist/model/destinationCreate.d.ts +1 -0
- package/dist/model/destinationCreate.d.ts.map +1 -1
- package/dist/model/destinationInput.d.ts +1 -2
- package/dist/model/destinationInput.d.ts.map +1 -1
- package/dist/model/destinationUpdate.d.ts +1 -0
- package/dist/model/destinationUpdate.d.ts.map +1 -1
- package/dist/model/dockerStreams.d.ts +13 -0
- package/dist/model/dockerStreams.d.ts.map +1 -0
- package/dist/model/dockerStreamsInput.d.ts +8 -0
- package/dist/model/dockerStreamsInput.d.ts.map +1 -0
- package/dist/model/dockerStreamsSyncMode.d.ts +5 -0
- package/dist/model/dockerStreamsSyncMode.d.ts.map +1 -0
- package/dist/model/entityType.d.ts +5 -0
- package/dist/model/entityType.d.ts.map +1 -0
- package/dist/model/generateTransformationCodePayload.d.ts +6 -0
- package/dist/model/generateTransformationCodePayload.d.ts.map +1 -0
- package/dist/model/generateTransformationCodeResponse.d.ts +4 -0
- package/dist/model/generateTransformationCodeResponse.d.ts.map +1 -0
- package/dist/model/index.d.ts +19 -5
- package/dist/model/index.d.ts.map +1 -1
- package/dist/model/listTasksResponseV1.d.ts +10 -0
- package/dist/model/listTasksResponseV1.d.ts.map +1 -0
- package/dist/model/model.d.ts +8 -0
- package/dist/model/model.d.ts.map +1 -0
- package/dist/model/runSourcePayload.d.ts +17 -0
- package/dist/model/runSourcePayload.d.ts.map +1 -0
- package/dist/model/runSourceResponse.d.ts +11 -0
- package/dist/model/runSourceResponse.d.ts.map +1 -0
- package/dist/model/sourceUpdateShopify.d.ts +2 -26
- package/dist/model/sourceUpdateShopify.d.ts.map +1 -1
- package/dist/model/{streamingUtilsInput.d.ts → streamingInput.d.ts} +2 -2
- package/dist/model/streamingInput.d.ts.map +1 -0
- package/dist/model/task.d.ts +12 -2
- package/dist/model/task.d.ts.map +1 -1
- package/dist/model/taskCreate.d.ts +4 -2
- package/dist/model/taskCreate.d.ts.map +1 -1
- package/dist/model/taskCreateV1.d.ts +32 -0
- package/dist/model/taskCreateV1.d.ts.map +1 -0
- package/dist/model/taskInput.d.ts +3 -4
- package/dist/model/taskInput.d.ts.map +1 -1
- package/dist/model/taskUpdate.d.ts +4 -2
- package/dist/model/taskUpdate.d.ts.map +1 -1
- package/dist/model/taskUpdateV1.d.ts +22 -0
- package/dist/model/taskUpdateV1.d.ts.map +1 -0
- package/dist/model/taskV1.d.ts +44 -0
- package/dist/model/taskV1.d.ts.map +1 -0
- package/dist/model/transformation.d.ts +5 -1
- package/dist/model/transformation.d.ts.map +1 -1
- package/dist/model/transformationCreate.d.ts +5 -1
- package/dist/model/transformationCreate.d.ts.map +1 -1
- package/dist/model/{transformationTryResponseError.d.ts → transformationError.d.ts} +2 -2
- package/dist/model/transformationError.d.ts.map +1 -0
- package/dist/model/transformationModels.d.ts +8 -0
- package/dist/model/transformationModels.d.ts.map +1 -0
- package/dist/model/transformationSearch.d.ts +1 -1
- package/dist/model/transformationSearch.d.ts.map +1 -1
- package/dist/model/transformationTry.d.ts +2 -0
- package/dist/model/transformationTry.d.ts.map +1 -1
- package/dist/model/transformationTryResponse.d.ts +2 -2
- package/dist/model/transformationTryResponse.d.ts.map +1 -1
- package/dist/src/ingestionClient.d.ts +276 -93
- package/dist/src/ingestionClient.d.ts.map +1 -1
- package/model/action.ts +13 -0
- package/model/batchRequest.ts +12 -0
- package/model/{destinationIndexPrefix.ts → batchWriteParams.ts} +7 -5
- package/model/clientMethodProps.ts +224 -70
- package/model/destination.ts +2 -0
- package/model/destinationCreate.ts +2 -0
- package/model/destinationInput.ts +1 -2
- package/model/destinationUpdate.ts +2 -0
- package/model/dockerStreams.ts +17 -0
- package/model/dockerStreamsInput.ts +10 -0
- package/model/dockerStreamsSyncMode.ts +6 -0
- package/model/entityType.ts +6 -0
- package/model/generateTransformationCodePayload.ts +9 -0
- package/model/generateTransformationCodeResponse.ts +5 -0
- package/model/index.ts +19 -5
- package/model/listTasksResponseV1.ts +13 -0
- package/model/model.ts +13 -0
- package/model/runSourcePayload.ts +22 -0
- package/model/runSourceResponse.ts +13 -0
- package/model/sourceUpdateShopify.ts +2 -32
- package/model/{streamingUtilsInput.ts → streamingInput.ts} +1 -1
- package/model/task.ts +14 -2
- package/model/taskCreate.ts +5 -3
- package/model/taskCreateV1.ts +41 -0
- package/model/taskInput.ts +3 -8
- package/model/taskUpdate.ts +4 -2
- package/model/taskUpdateV1.ts +28 -0
- package/model/taskV1.ts +56 -0
- package/model/transformation.ts +6 -1
- package/model/transformationCreate.ts +6 -1
- package/model/{transformationTryResponseError.ts → transformationError.ts} +1 -1
- package/model/transformationModels.ts +10 -0
- package/model/transformationSearch.ts +1 -1
- package/model/transformationTry.ts +4 -0
- package/model/transformationTryResponse.ts +2 -2
- package/package.json +7 -7
- package/dist/model/destinationIndexPrefix.d.ts +0 -7
- package/dist/model/destinationIndexPrefix.d.ts.map +0 -1
- package/dist/model/onDemandDateUtilsInput.d.ts +0 -16
- package/dist/model/onDemandDateUtilsInput.d.ts.map +0 -1
- package/dist/model/scheduleDateUtilsInput.d.ts +0 -12
- package/dist/model/scheduleDateUtilsInput.d.ts.map +0 -1
- package/dist/model/streamingUtilsInput.d.ts.map +0 -1
- package/dist/model/transformationTryResponseError.d.ts.map +0 -1
- package/model/onDemandDateUtilsInput.ts +0 -20
- package/model/scheduleDateUtilsInput.ts +0 -15
|
@@ -4,7 +4,7 @@ import type { AuthenticationCreate } from '../model/authenticationCreate';
|
|
|
4
4
|
import type { AuthenticationCreateResponse } from '../model/authenticationCreateResponse';
|
|
5
5
|
import type { AuthenticationSearch } from '../model/authenticationSearch';
|
|
6
6
|
import type { AuthenticationUpdateResponse } from '../model/authenticationUpdateResponse';
|
|
7
|
-
import type { CustomDeleteProps, CustomGetProps, CustomPostProps, CustomPutProps, DeleteAuthenticationProps, DeleteDestinationProps, DeleteSourceProps, DeleteTaskProps, DeleteTransformationProps, DisableTaskProps, EnableTaskProps,
|
|
7
|
+
import type { CustomDeleteProps, CustomGetProps, CustomPostProps, CustomPutProps, DeleteAuthenticationProps, DeleteDestinationProps, DeleteSourceProps, DeleteTaskProps, DeleteTaskV1Props, DeleteTransformationProps, DisableTaskProps, DisableTaskV1Props, EnableTaskProps, EnableTaskV1Props, GetAuthenticationProps, GetDestinationProps, GetEventProps, GetRunProps, GetSourceProps, GetTaskProps, GetTaskV1Props, GetTransformationProps, ListAuthenticationsProps, ListDestinationsProps, ListEventsProps, ListRunsProps, ListSourcesProps, ListTasksProps, ListTasksV1Props, ListTransformationsProps, PushTaskProps, RunSourceProps, RunTaskProps, RunTaskV1Props, TriggerDockerSourceDiscoverProps, TryTransformationBeforeUpdateProps, UpdateAuthenticationProps, UpdateDestinationProps, UpdateSourceProps, UpdateTaskProps, UpdateTaskV1Props, UpdateTransformationProps, ValidateSourceBeforeUpdateProps } from '../model/clientMethodProps';
|
|
8
8
|
import type { DeleteResponse } from '../model/deleteResponse';
|
|
9
9
|
import type { Destination } from '../model/destination';
|
|
10
10
|
import type { DestinationCreate } from '../model/destinationCreate';
|
|
@@ -12,16 +12,20 @@ import type { DestinationCreateResponse } from '../model/destinationCreateRespon
|
|
|
12
12
|
import type { DestinationSearch } from '../model/destinationSearch';
|
|
13
13
|
import type { DestinationUpdateResponse } from '../model/destinationUpdateResponse';
|
|
14
14
|
import type { Event } from '../model/event';
|
|
15
|
+
import type { GenerateTransformationCodePayload } from '../model/generateTransformationCodePayload';
|
|
16
|
+
import type { GenerateTransformationCodeResponse } from '../model/generateTransformationCodeResponse';
|
|
15
17
|
import type { ListAuthenticationsResponse } from '../model/listAuthenticationsResponse';
|
|
16
18
|
import type { ListDestinationsResponse } from '../model/listDestinationsResponse';
|
|
17
19
|
import type { ListEventsResponse } from '../model/listEventsResponse';
|
|
18
20
|
import type { ListSourcesResponse } from '../model/listSourcesResponse';
|
|
19
21
|
import type { ListTasksResponse } from '../model/listTasksResponse';
|
|
22
|
+
import type { ListTasksResponseV1 } from '../model/listTasksResponseV1';
|
|
20
23
|
import type { ListTransformationsResponse } from '../model/listTransformationsResponse';
|
|
21
24
|
import type { OnDemandTrigger } from '../model/onDemandTrigger';
|
|
22
25
|
import type { Run } from '../model/run';
|
|
23
26
|
import type { RunListResponse } from '../model/runListResponse';
|
|
24
27
|
import type { RunResponse } from '../model/runResponse';
|
|
28
|
+
import type { RunSourceResponse } from '../model/runSourceResponse';
|
|
25
29
|
import type { ScheduleTrigger } from '../model/scheduleTrigger';
|
|
26
30
|
import type { Source } from '../model/source';
|
|
27
31
|
import type { SourceCreate } from '../model/sourceCreate';
|
|
@@ -34,17 +38,20 @@ import type { Task } from '../model/task';
|
|
|
34
38
|
import type { TaskCreate } from '../model/taskCreate';
|
|
35
39
|
import type { TaskCreateResponse } from '../model/taskCreateResponse';
|
|
36
40
|
import type { TaskCreateTrigger } from '../model/taskCreateTrigger';
|
|
41
|
+
import type { TaskCreateV1 } from '../model/taskCreateV1';
|
|
37
42
|
import type { TaskSearch } from '../model/taskSearch';
|
|
38
43
|
import type { TaskUpdateResponse } from '../model/taskUpdateResponse';
|
|
44
|
+
import type { TaskV1 } from '../model/taskV1';
|
|
39
45
|
import type { Transformation } from '../model/transformation';
|
|
40
46
|
import type { TransformationCreate } from '../model/transformationCreate';
|
|
41
47
|
import type { TransformationCreateResponse } from '../model/transformationCreateResponse';
|
|
48
|
+
import type { TransformationModels } from '../model/transformationModels';
|
|
42
49
|
import type { TransformationSearch } from '../model/transformationSearch';
|
|
43
50
|
import type { TransformationTry } from '../model/transformationTry';
|
|
44
51
|
import type { TransformationTryResponse } from '../model/transformationTryResponse';
|
|
45
52
|
import type { TransformationUpdateResponse } from '../model/transformationUpdateResponse';
|
|
46
53
|
import type { Trigger } from '../model/trigger';
|
|
47
|
-
export declare const apiClientVersion = "1.0.0
|
|
54
|
+
export declare const apiClientVersion = "1.0.0";
|
|
48
55
|
export declare const REGIONS: readonly ["eu", "us"];
|
|
49
56
|
export type Region = (typeof REGIONS)[number];
|
|
50
57
|
/**
|
|
@@ -134,6 +141,13 @@ export declare function createIngestionClient({ appId: appIdOption, apiKey: apiK
|
|
|
134
141
|
* @param requestOptions - The requestOptions to send along with the query, they will be merged with the transporter requestOptions.
|
|
135
142
|
*/
|
|
136
143
|
createTask(taskCreate: TaskCreate, requestOptions?: RequestOptions): Promise<TaskCreateResponse>;
|
|
144
|
+
/**
|
|
145
|
+
* Creates a new task using the v1 endpoint, please use `createTask` instead.
|
|
146
|
+
*
|
|
147
|
+
* @param taskCreate - Request body for creating a task.
|
|
148
|
+
* @param requestOptions - The requestOptions to send along with the query, they will be merged with the transporter requestOptions.
|
|
149
|
+
*/
|
|
150
|
+
createTaskV1(taskCreate: TaskCreateV1, requestOptions?: RequestOptions): Promise<TaskCreateResponse>;
|
|
137
151
|
/**
|
|
138
152
|
* Creates a new transformation.
|
|
139
153
|
*
|
|
@@ -226,6 +240,14 @@ export declare function createIngestionClient({ appId: appIdOption, apiKey: apiK
|
|
|
226
240
|
* @param requestOptions - The requestOptions to send along with the query, they will be merged with the transporter requestOptions.
|
|
227
241
|
*/
|
|
228
242
|
deleteTask({ taskID }: DeleteTaskProps, requestOptions?: RequestOptions): Promise<DeleteResponse>;
|
|
243
|
+
/**
|
|
244
|
+
* Deletes a task by its ID using the v1 endpoint, please use `deleteTask` instead.
|
|
245
|
+
*
|
|
246
|
+
* @param deleteTaskV1 - The deleteTaskV1 object.
|
|
247
|
+
* @param deleteTaskV1.taskID - Unique identifier of a task.
|
|
248
|
+
* @param requestOptions - The requestOptions to send along with the query, they will be merged with the transporter requestOptions.
|
|
249
|
+
*/
|
|
250
|
+
deleteTaskV1({ taskID }: DeleteTaskV1Props, requestOptions?: RequestOptions): Promise<DeleteResponse>;
|
|
229
251
|
/**
|
|
230
252
|
* Deletes a transformation by its ID.
|
|
231
253
|
*
|
|
@@ -247,6 +269,19 @@ export declare function createIngestionClient({ appId: appIdOption, apiKey: apiK
|
|
|
247
269
|
* @param requestOptions - The requestOptions to send along with the query, they will be merged with the transporter requestOptions.
|
|
248
270
|
*/
|
|
249
271
|
disableTask({ taskID }: DisableTaskProps, requestOptions?: RequestOptions): Promise<TaskUpdateResponse>;
|
|
272
|
+
/**
|
|
273
|
+
* Disables a task using the v1 endpoint, please use `disableTask` instead.
|
|
274
|
+
*
|
|
275
|
+
* Required API Key ACLs:
|
|
276
|
+
* - addObject
|
|
277
|
+
* - deleteIndex
|
|
278
|
+
* - editSettings.
|
|
279
|
+
*
|
|
280
|
+
* @param disableTaskV1 - The disableTaskV1 object.
|
|
281
|
+
* @param disableTaskV1.taskID - Unique identifier of a task.
|
|
282
|
+
* @param requestOptions - The requestOptions to send along with the query, they will be merged with the transporter requestOptions.
|
|
283
|
+
*/
|
|
284
|
+
disableTaskV1({ taskID }: DisableTaskV1Props, requestOptions?: RequestOptions): Promise<TaskUpdateResponse>;
|
|
250
285
|
/**
|
|
251
286
|
* Enables a task.
|
|
252
287
|
*
|
|
@@ -261,67 +296,56 @@ export declare function createIngestionClient({ appId: appIdOption, apiKey: apiK
|
|
|
261
296
|
*/
|
|
262
297
|
enableTask({ taskID }: EnableTaskProps, requestOptions?: RequestOptions): Promise<TaskUpdateResponse>;
|
|
263
298
|
/**
|
|
264
|
-
*
|
|
299
|
+
* Enables a task using the v1 endpoint, please use `enableTask` instead.
|
|
265
300
|
*
|
|
266
301
|
* Required API Key ACLs:
|
|
267
302
|
* - addObject
|
|
268
303
|
* - deleteIndex
|
|
269
304
|
* - editSettings.
|
|
270
305
|
*
|
|
271
|
-
* @param
|
|
272
|
-
* @param
|
|
306
|
+
* @param enableTaskV1 - The enableTaskV1 object.
|
|
307
|
+
* @param enableTaskV1.taskID - Unique identifier of a task.
|
|
273
308
|
* @param requestOptions - The requestOptions to send along with the query, they will be merged with the transporter requestOptions.
|
|
274
309
|
*/
|
|
275
|
-
|
|
310
|
+
enableTaskV1({ taskID }: EnableTaskV1Props, requestOptions?: RequestOptions): Promise<TaskUpdateResponse>;
|
|
276
311
|
/**
|
|
277
|
-
*
|
|
312
|
+
* Generates code for the selected model based on the given prompt.
|
|
278
313
|
*
|
|
279
314
|
* Required API Key ACLs:
|
|
280
315
|
* - addObject
|
|
281
316
|
* - deleteIndex
|
|
282
317
|
* - editSettings.
|
|
283
318
|
*
|
|
284
|
-
* @param
|
|
285
|
-
* @param getAuthentications.itemsPerPage - Number of items per page.
|
|
286
|
-
* @param getAuthentications.page - Page number of the paginated API response.
|
|
287
|
-
* @param getAuthentications.type - Type of authentication resource to retrieve.
|
|
288
|
-
* @param getAuthentications.platform - Ecommerce platform for which to retrieve authentication resources.
|
|
289
|
-
* @param getAuthentications.sort - Property by which to sort the list of authentication resources.
|
|
290
|
-
* @param getAuthentications.order - Sort order of the response, ascending or descending.
|
|
319
|
+
* @param generateTransformationCodePayload - The generateTransformationCodePayload object.
|
|
291
320
|
* @param requestOptions - The requestOptions to send along with the query, they will be merged with the transporter requestOptions.
|
|
292
321
|
*/
|
|
293
|
-
|
|
322
|
+
generateTransformationCode(generateTransformationCodePayload: GenerateTransformationCodePayload, requestOptions?: RequestOptions): Promise<GenerateTransformationCodeResponse>;
|
|
294
323
|
/**
|
|
295
|
-
* Retrieves
|
|
324
|
+
* Retrieves an authentication resource by its ID.
|
|
296
325
|
*
|
|
297
326
|
* Required API Key ACLs:
|
|
298
327
|
* - addObject
|
|
299
328
|
* - deleteIndex
|
|
300
329
|
* - editSettings.
|
|
301
330
|
*
|
|
302
|
-
* @param
|
|
303
|
-
* @param
|
|
331
|
+
* @param getAuthentication - The getAuthentication object.
|
|
332
|
+
* @param getAuthentication.authenticationID - Unique identifier of an authentication resource.
|
|
304
333
|
* @param requestOptions - The requestOptions to send along with the query, they will be merged with the transporter requestOptions.
|
|
305
334
|
*/
|
|
306
|
-
|
|
335
|
+
getAuthentication({ authenticationID }: GetAuthenticationProps, requestOptions?: RequestOptions): Promise<Authentication>;
|
|
307
336
|
/**
|
|
308
|
-
* Retrieves a
|
|
337
|
+
* Retrieves a destination by its ID.
|
|
309
338
|
*
|
|
310
339
|
* Required API Key ACLs:
|
|
311
340
|
* - addObject
|
|
312
341
|
* - deleteIndex
|
|
313
342
|
* - editSettings.
|
|
314
343
|
*
|
|
315
|
-
* @param
|
|
316
|
-
* @param
|
|
317
|
-
* @param getDestinations.page - Page number of the paginated API response.
|
|
318
|
-
* @param getDestinations.type - Destination type.
|
|
319
|
-
* @param getDestinations.authenticationID - Authentication ID used by destinations.
|
|
320
|
-
* @param getDestinations.sort - Property by which to sort the destinations.
|
|
321
|
-
* @param getDestinations.order - Sort order of the response, ascending or descending.
|
|
344
|
+
* @param getDestination - The getDestination object.
|
|
345
|
+
* @param getDestination.destinationID - Unique identifier of a destination.
|
|
322
346
|
* @param requestOptions - The requestOptions to send along with the query, they will be merged with the transporter requestOptions.
|
|
323
347
|
*/
|
|
324
|
-
|
|
348
|
+
getDestination({ destinationID }: GetDestinationProps, requestOptions?: RequestOptions): Promise<Destination>;
|
|
325
349
|
/**
|
|
326
350
|
* Retrieves a single task run event by its ID.
|
|
327
351
|
*
|
|
@@ -337,103 +361,165 @@ export declare function createIngestionClient({ appId: appIdOption, apiKey: apiK
|
|
|
337
361
|
*/
|
|
338
362
|
getEvent({ runID, eventID }: GetEventProps, requestOptions?: RequestOptions): Promise<Event>;
|
|
339
363
|
/**
|
|
340
|
-
*
|
|
364
|
+
* Retrieve a single task run by its ID.
|
|
341
365
|
*
|
|
342
366
|
* Required API Key ACLs:
|
|
343
367
|
* - addObject
|
|
344
368
|
* - deleteIndex
|
|
345
369
|
* - editSettings.
|
|
346
370
|
*
|
|
347
|
-
* @param
|
|
348
|
-
* @param
|
|
349
|
-
* @param getEvents.itemsPerPage - Number of items per page.
|
|
350
|
-
* @param getEvents.page - Page number of the paginated API response.
|
|
351
|
-
* @param getEvents.status - Event status for filtering the list of task runs.
|
|
352
|
-
* @param getEvents.type - Event type for filtering the list of task runs.
|
|
353
|
-
* @param getEvents.sort - Property by which to sort the list of task run events.
|
|
354
|
-
* @param getEvents.order - Sort order of the response, ascending or descending.
|
|
355
|
-
* @param getEvents.startDate - Date and time in RFC 3339 format for the earliest events to retrieve. By default, the current time minus three hours is used.
|
|
356
|
-
* @param getEvents.endDate - Date and time in RFC 3339 format for the latest events to retrieve. By default, the current time is used.
|
|
371
|
+
* @param getRun - The getRun object.
|
|
372
|
+
* @param getRun.runID - Unique identifier of a task run.
|
|
357
373
|
* @param requestOptions - The requestOptions to send along with the query, they will be merged with the transporter requestOptions.
|
|
358
374
|
*/
|
|
359
|
-
|
|
375
|
+
getRun({ runID }: GetRunProps, requestOptions?: RequestOptions): Promise<Run>;
|
|
360
376
|
/**
|
|
361
|
-
* Retrieve a
|
|
377
|
+
* Retrieve a source by its ID.
|
|
362
378
|
*
|
|
363
379
|
* Required API Key ACLs:
|
|
364
380
|
* - addObject
|
|
365
381
|
* - deleteIndex
|
|
366
382
|
* - editSettings.
|
|
367
383
|
*
|
|
368
|
-
* @param
|
|
369
|
-
* @param
|
|
384
|
+
* @param getSource - The getSource object.
|
|
385
|
+
* @param getSource.sourceID - Unique identifier of a source.
|
|
370
386
|
* @param requestOptions - The requestOptions to send along with the query, they will be merged with the transporter requestOptions.
|
|
371
387
|
*/
|
|
372
|
-
|
|
388
|
+
getSource({ sourceID }: GetSourceProps, requestOptions?: RequestOptions): Promise<Source>;
|
|
373
389
|
/**
|
|
374
|
-
*
|
|
390
|
+
* Retrieves a task by its ID.
|
|
375
391
|
*
|
|
376
392
|
* Required API Key ACLs:
|
|
377
393
|
* - addObject
|
|
378
394
|
* - deleteIndex
|
|
379
395
|
* - editSettings.
|
|
380
396
|
*
|
|
381
|
-
* @param
|
|
382
|
-
* @param
|
|
383
|
-
* @param getRuns.page - Page number of the paginated API response.
|
|
384
|
-
* @param getRuns.status - Run status for filtering the list of task runs.
|
|
385
|
-
* @param getRuns.taskID - Task ID for filtering the list of task runs.
|
|
386
|
-
* @param getRuns.sort - Property by which to sort the list of task runs.
|
|
387
|
-
* @param getRuns.order - Sort order of the response, ascending or descending.
|
|
388
|
-
* @param getRuns.startDate - Date in RFC 3339 format for the earliest run to retrieve. By default, the current day minus seven days is used.
|
|
389
|
-
* @param getRuns.endDate - Date in RFC 3339 format for the latest run to retrieve. By default, the current day is used.
|
|
397
|
+
* @param getTask - The getTask object.
|
|
398
|
+
* @param getTask.taskID - Unique identifier of a task.
|
|
390
399
|
* @param requestOptions - The requestOptions to send along with the query, they will be merged with the transporter requestOptions.
|
|
391
400
|
*/
|
|
392
|
-
|
|
401
|
+
getTask({ taskID }: GetTaskProps, requestOptions?: RequestOptions): Promise<Task>;
|
|
393
402
|
/**
|
|
394
|
-
*
|
|
403
|
+
* Retrieves a task by its ID using the v1 endpoint, please use `getTask` instead.
|
|
395
404
|
*
|
|
396
405
|
* Required API Key ACLs:
|
|
397
406
|
* - addObject
|
|
398
407
|
* - deleteIndex
|
|
399
408
|
* - editSettings.
|
|
400
409
|
*
|
|
401
|
-
* @param
|
|
402
|
-
* @param
|
|
410
|
+
* @param getTaskV1 - The getTaskV1 object.
|
|
411
|
+
* @param getTaskV1.taskID - Unique identifier of a task.
|
|
403
412
|
* @param requestOptions - The requestOptions to send along with the query, they will be merged with the transporter requestOptions.
|
|
404
413
|
*/
|
|
405
|
-
|
|
414
|
+
getTaskV1({ taskID }: GetTaskV1Props, requestOptions?: RequestOptions): Promise<TaskV1>;
|
|
406
415
|
/**
|
|
407
|
-
* Retrieves a
|
|
416
|
+
* Retrieves a transformation by its ID.
|
|
408
417
|
*
|
|
409
418
|
* Required API Key ACLs:
|
|
410
419
|
* - addObject
|
|
411
420
|
* - deleteIndex
|
|
412
421
|
* - editSettings.
|
|
413
422
|
*
|
|
414
|
-
* @param
|
|
415
|
-
* @param
|
|
416
|
-
* @param getSources.page - Page number of the paginated API response.
|
|
417
|
-
* @param getSources.type - Source type. Some sources require authentication.
|
|
418
|
-
* @param getSources.authenticationID - Authentication IDs of the sources to retrieve. \'none\' returns sources that doesn\'t have an authentication resource.
|
|
419
|
-
* @param getSources.sort - Property by which to sort the list of sources.
|
|
420
|
-
* @param getSources.order - Sort order of the response, ascending or descending.
|
|
423
|
+
* @param getTransformation - The getTransformation object.
|
|
424
|
+
* @param getTransformation.transformationID - Unique identifier of a transformation.
|
|
421
425
|
* @param requestOptions - The requestOptions to send along with the query, they will be merged with the transporter requestOptions.
|
|
422
426
|
*/
|
|
423
|
-
|
|
427
|
+
getTransformation({ transformationID }: GetTransformationProps, requestOptions?: RequestOptions): Promise<Transformation>;
|
|
424
428
|
/**
|
|
425
|
-
* Retrieves a
|
|
429
|
+
* Retrieves a list of all authentication resources.
|
|
426
430
|
*
|
|
427
431
|
* Required API Key ACLs:
|
|
428
432
|
* - addObject
|
|
429
433
|
* - deleteIndex
|
|
430
434
|
* - editSettings.
|
|
431
435
|
*
|
|
432
|
-
* @param
|
|
433
|
-
* @param
|
|
436
|
+
* @param listAuthentications - The listAuthentications object.
|
|
437
|
+
* @param listAuthentications.itemsPerPage - Number of items per page.
|
|
438
|
+
* @param listAuthentications.page - Page number of the paginated API response.
|
|
439
|
+
* @param listAuthentications.type - Type of authentication resource to retrieve.
|
|
440
|
+
* @param listAuthentications.platform - Ecommerce platform for which to retrieve authentication resources.
|
|
441
|
+
* @param listAuthentications.sort - Property by which to sort the list of authentication resources.
|
|
442
|
+
* @param listAuthentications.order - Sort order of the response, ascending or descending.
|
|
434
443
|
* @param requestOptions - The requestOptions to send along with the query, they will be merged with the transporter requestOptions.
|
|
435
444
|
*/
|
|
436
|
-
|
|
445
|
+
listAuthentications({ itemsPerPage, page, type, platform, sort, order, }?: ListAuthenticationsProps, requestOptions?: RequestOptions | undefined): Promise<ListAuthenticationsResponse>;
|
|
446
|
+
/**
|
|
447
|
+
* Retrieves a list of destinations.
|
|
448
|
+
*
|
|
449
|
+
* Required API Key ACLs:
|
|
450
|
+
* - addObject
|
|
451
|
+
* - deleteIndex
|
|
452
|
+
* - editSettings.
|
|
453
|
+
*
|
|
454
|
+
* @param listDestinations - The listDestinations object.
|
|
455
|
+
* @param listDestinations.itemsPerPage - Number of items per page.
|
|
456
|
+
* @param listDestinations.page - Page number of the paginated API response.
|
|
457
|
+
* @param listDestinations.type - Destination type.
|
|
458
|
+
* @param listDestinations.authenticationID - Authentication ID used by destinations.
|
|
459
|
+
* @param listDestinations.sort - Property by which to sort the destinations.
|
|
460
|
+
* @param listDestinations.order - Sort order of the response, ascending or descending.
|
|
461
|
+
* @param requestOptions - The requestOptions to send along with the query, they will be merged with the transporter requestOptions.
|
|
462
|
+
*/
|
|
463
|
+
listDestinations({ itemsPerPage, page, type, authenticationID, sort, order, }?: ListDestinationsProps, requestOptions?: RequestOptions | undefined): Promise<ListDestinationsResponse>;
|
|
464
|
+
/**
|
|
465
|
+
* Retrieves a list of events for a task run, identified by it\'s ID.
|
|
466
|
+
*
|
|
467
|
+
* Required API Key ACLs:
|
|
468
|
+
* - addObject
|
|
469
|
+
* - deleteIndex
|
|
470
|
+
* - editSettings.
|
|
471
|
+
*
|
|
472
|
+
* @param listEvents - The listEvents object.
|
|
473
|
+
* @param listEvents.runID - Unique identifier of a task run.
|
|
474
|
+
* @param listEvents.itemsPerPage - Number of items per page.
|
|
475
|
+
* @param listEvents.page - Page number of the paginated API response.
|
|
476
|
+
* @param listEvents.status - Event status for filtering the list of task runs.
|
|
477
|
+
* @param listEvents.type - Event type for filtering the list of task runs.
|
|
478
|
+
* @param listEvents.sort - Property by which to sort the list of task run events.
|
|
479
|
+
* @param listEvents.order - Sort order of the response, ascending or descending.
|
|
480
|
+
* @param listEvents.startDate - Date and time in RFC 3339 format for the earliest events to retrieve. By default, the current time minus three hours is used.
|
|
481
|
+
* @param listEvents.endDate - Date and time in RFC 3339 format for the latest events to retrieve. By default, the current time is used.
|
|
482
|
+
* @param requestOptions - The requestOptions to send along with the query, they will be merged with the transporter requestOptions.
|
|
483
|
+
*/
|
|
484
|
+
listEvents({ runID, itemsPerPage, page, status, type, sort, order, startDate, endDate, }: ListEventsProps, requestOptions?: RequestOptions): Promise<ListEventsResponse>;
|
|
485
|
+
/**
|
|
486
|
+
* Retrieve a list of task runs.
|
|
487
|
+
*
|
|
488
|
+
* Required API Key ACLs:
|
|
489
|
+
* - addObject
|
|
490
|
+
* - deleteIndex
|
|
491
|
+
* - editSettings.
|
|
492
|
+
*
|
|
493
|
+
* @param listRuns - The listRuns object.
|
|
494
|
+
* @param listRuns.itemsPerPage - Number of items per page.
|
|
495
|
+
* @param listRuns.page - Page number of the paginated API response.
|
|
496
|
+
* @param listRuns.status - Run status for filtering the list of task runs.
|
|
497
|
+
* @param listRuns.taskID - Task ID for filtering the list of task runs.
|
|
498
|
+
* @param listRuns.sort - Property by which to sort the list of task runs.
|
|
499
|
+
* @param listRuns.order - Sort order of the response, ascending or descending.
|
|
500
|
+
* @param listRuns.startDate - Date in RFC 3339 format for the earliest run to retrieve. By default, the current day minus seven days is used.
|
|
501
|
+
* @param listRuns.endDate - Date in RFC 3339 format for the latest run to retrieve. By default, the current day is used.
|
|
502
|
+
* @param requestOptions - The requestOptions to send along with the query, they will be merged with the transporter requestOptions.
|
|
503
|
+
*/
|
|
504
|
+
listRuns({ itemsPerPage, page, status, taskID, sort, order, startDate, endDate, }?: ListRunsProps, requestOptions?: RequestOptions | undefined): Promise<RunListResponse>;
|
|
505
|
+
/**
|
|
506
|
+
* Retrieves a list of sources.
|
|
507
|
+
*
|
|
508
|
+
* Required API Key ACLs:
|
|
509
|
+
* - addObject
|
|
510
|
+
* - deleteIndex
|
|
511
|
+
* - editSettings.
|
|
512
|
+
*
|
|
513
|
+
* @param listSources - The listSources object.
|
|
514
|
+
* @param listSources.itemsPerPage - Number of items per page.
|
|
515
|
+
* @param listSources.page - Page number of the paginated API response.
|
|
516
|
+
* @param listSources.type - Source type. Some sources require authentication.
|
|
517
|
+
* @param listSources.authenticationID - Authentication IDs of the sources to retrieve. \'none\' returns sources that doesn\'t have an authentication resource.
|
|
518
|
+
* @param listSources.sort - Property by which to sort the list of sources.
|
|
519
|
+
* @param listSources.order - Sort order of the response, ascending or descending.
|
|
520
|
+
* @param requestOptions - The requestOptions to send along with the query, they will be merged with the transporter requestOptions.
|
|
521
|
+
*/
|
|
522
|
+
listSources({ itemsPerPage, page, type, authenticationID, sort, order, }?: ListSourcesProps, requestOptions?: RequestOptions | undefined): Promise<ListSourcesResponse>;
|
|
437
523
|
/**
|
|
438
524
|
* Retrieves a list of tasks.
|
|
439
525
|
*
|
|
@@ -442,32 +528,51 @@ export declare function createIngestionClient({ appId: appIdOption, apiKey: apiK
|
|
|
442
528
|
* - deleteIndex
|
|
443
529
|
* - editSettings.
|
|
444
530
|
*
|
|
445
|
-
* @param
|
|
446
|
-
* @param
|
|
447
|
-
* @param
|
|
448
|
-
* @param
|
|
449
|
-
* @param
|
|
450
|
-
* @param
|
|
451
|
-
* @param
|
|
452
|
-
* @param
|
|
453
|
-
* @param
|
|
454
|
-
* @param
|
|
531
|
+
* @param listTasks - The listTasks object.
|
|
532
|
+
* @param listTasks.itemsPerPage - Number of items per page.
|
|
533
|
+
* @param listTasks.page - Page number of the paginated API response.
|
|
534
|
+
* @param listTasks.action - Actions for filtering the list of tasks.
|
|
535
|
+
* @param listTasks.enabled - Whether to filter the list of tasks by the `enabled` status.
|
|
536
|
+
* @param listTasks.sourceID - Source IDs for filtering the list of tasks.
|
|
537
|
+
* @param listTasks.destinationID - Destination IDs for filtering the list of tasks.
|
|
538
|
+
* @param listTasks.triggerType - Type of task trigger for filtering the list of tasks.
|
|
539
|
+
* @param listTasks.sort - Property by which to sort the list of tasks.
|
|
540
|
+
* @param listTasks.order - Sort order of the response, ascending or descending.
|
|
455
541
|
* @param requestOptions - The requestOptions to send along with the query, they will be merged with the transporter requestOptions.
|
|
456
542
|
*/
|
|
457
|
-
|
|
543
|
+
listTasks({ itemsPerPage, page, action, enabled, sourceID, destinationID, triggerType, sort, order, }?: ListTasksProps, requestOptions?: RequestOptions | undefined): Promise<ListTasksResponse>;
|
|
458
544
|
/**
|
|
459
|
-
* Retrieves a
|
|
545
|
+
* Retrieves a list of tasks using the v1 endpoint, please use `getTasks` instead.
|
|
460
546
|
*
|
|
461
547
|
* Required API Key ACLs:
|
|
462
548
|
* - addObject
|
|
463
549
|
* - deleteIndex
|
|
464
550
|
* - editSettings.
|
|
465
551
|
*
|
|
466
|
-
* @param
|
|
467
|
-
* @param
|
|
552
|
+
* @param listTasksV1 - The listTasksV1 object.
|
|
553
|
+
* @param listTasksV1.itemsPerPage - Number of items per page.
|
|
554
|
+
* @param listTasksV1.page - Page number of the paginated API response.
|
|
555
|
+
* @param listTasksV1.action - Actions for filtering the list of tasks.
|
|
556
|
+
* @param listTasksV1.enabled - Whether to filter the list of tasks by the `enabled` status.
|
|
557
|
+
* @param listTasksV1.sourceID - Source IDs for filtering the list of tasks.
|
|
558
|
+
* @param listTasksV1.destinationID - Destination IDs for filtering the list of tasks.
|
|
559
|
+
* @param listTasksV1.triggerType - Type of task trigger for filtering the list of tasks.
|
|
560
|
+
* @param listTasksV1.sort - Property by which to sort the list of tasks.
|
|
561
|
+
* @param listTasksV1.order - Sort order of the response, ascending or descending.
|
|
468
562
|
* @param requestOptions - The requestOptions to send along with the query, they will be merged with the transporter requestOptions.
|
|
469
563
|
*/
|
|
470
|
-
|
|
564
|
+
listTasksV1({ itemsPerPage, page, action, enabled, sourceID, destinationID, triggerType, sort, order, }?: ListTasksV1Props, requestOptions?: RequestOptions | undefined): Promise<ListTasksResponseV1>;
|
|
565
|
+
/**
|
|
566
|
+
* Retrieves a list of existing LLM transformation helpers.
|
|
567
|
+
*
|
|
568
|
+
* Required API Key ACLs:
|
|
569
|
+
* - addObject
|
|
570
|
+
* - deleteIndex
|
|
571
|
+
* - editSettings.
|
|
572
|
+
*
|
|
573
|
+
* @param requestOptions - The requestOptions to send along with the query, they will be merged with the transporter requestOptions.
|
|
574
|
+
*/
|
|
575
|
+
listTransformationModels(requestOptions?: RequestOptions): Promise<TransformationModels>;
|
|
471
576
|
/**
|
|
472
577
|
* Retrieves a list of transformations.
|
|
473
578
|
*
|
|
@@ -476,12 +581,42 @@ export declare function createIngestionClient({ appId: appIdOption, apiKey: apiK
|
|
|
476
581
|
* - deleteIndex
|
|
477
582
|
* - editSettings.
|
|
478
583
|
*
|
|
479
|
-
* @param
|
|
480
|
-
* @param
|
|
481
|
-
* @param
|
|
584
|
+
* @param listTransformations - The listTransformations object.
|
|
585
|
+
* @param listTransformations.itemsPerPage - Number of items per page.
|
|
586
|
+
* @param listTransformations.page - Page number of the paginated API response.
|
|
587
|
+
* @param listTransformations.sort - Property by which to sort the list.
|
|
588
|
+
* @param listTransformations.order - Sort order of the response, ascending or descending.
|
|
482
589
|
* @param requestOptions - The requestOptions to send along with the query, they will be merged with the transporter requestOptions.
|
|
483
590
|
*/
|
|
484
|
-
|
|
591
|
+
listTransformations({ itemsPerPage, page, sort, order }?: ListTransformationsProps, requestOptions?: RequestOptions | undefined): Promise<ListTransformationsResponse>;
|
|
592
|
+
/**
|
|
593
|
+
* Push a `batch` request payload through the Pipeline. You can check the status of task pushes with the observability endpoints.
|
|
594
|
+
*
|
|
595
|
+
* Required API Key ACLs:
|
|
596
|
+
* - addObject
|
|
597
|
+
* - deleteIndex
|
|
598
|
+
* - editSettings.
|
|
599
|
+
*
|
|
600
|
+
* @param pushTask - The pushTask object.
|
|
601
|
+
* @param pushTask.taskID - Unique identifier of a task.
|
|
602
|
+
* @param pushTask.batchWriteParams - Request body of a Search API `batch` request that will be pushed in the Connectors pipeline.
|
|
603
|
+
* @param requestOptions - The requestOptions to send along with the query, they will be merged with the transporter requestOptions.
|
|
604
|
+
*/
|
|
605
|
+
pushTask({ taskID, batchWriteParams }: PushTaskProps, requestOptions?: RequestOptions): Promise<RunResponse>;
|
|
606
|
+
/**
|
|
607
|
+
* Runs all tasks linked to a source, only available for Shopify sources. It will create 1 run per task.
|
|
608
|
+
*
|
|
609
|
+
* Required API Key ACLs:
|
|
610
|
+
* - addObject
|
|
611
|
+
* - deleteIndex
|
|
612
|
+
* - editSettings.
|
|
613
|
+
*
|
|
614
|
+
* @param runSource - The runSource object.
|
|
615
|
+
* @param runSource.sourceID - Unique identifier of a source.
|
|
616
|
+
* @param runSource.runSourcePayload -.
|
|
617
|
+
* @param requestOptions - The requestOptions to send along with the query, they will be merged with the transporter requestOptions.
|
|
618
|
+
*/
|
|
619
|
+
runSource({ sourceID, runSourcePayload }: RunSourceProps, requestOptions?: RequestOptions): Promise<RunSourceResponse>;
|
|
485
620
|
/**
|
|
486
621
|
* Runs a task. You can check the status of task runs with the observability endpoints.
|
|
487
622
|
*
|
|
@@ -495,6 +630,19 @@ export declare function createIngestionClient({ appId: appIdOption, apiKey: apiK
|
|
|
495
630
|
* @param requestOptions - The requestOptions to send along with the query, they will be merged with the transporter requestOptions.
|
|
496
631
|
*/
|
|
497
632
|
runTask({ taskID }: RunTaskProps, requestOptions?: RequestOptions): Promise<RunResponse>;
|
|
633
|
+
/**
|
|
634
|
+
* Runs a task using the v1 endpoint, please use `runTask` instead. You can check the status of task runs with the observability endpoints.
|
|
635
|
+
*
|
|
636
|
+
* Required API Key ACLs:
|
|
637
|
+
* - addObject
|
|
638
|
+
* - deleteIndex
|
|
639
|
+
* - editSettings.
|
|
640
|
+
*
|
|
641
|
+
* @param runTaskV1 - The runTaskV1 object.
|
|
642
|
+
* @param runTaskV1.taskID - Unique identifier of a task.
|
|
643
|
+
* @param requestOptions - The requestOptions to send along with the query, they will be merged with the transporter requestOptions.
|
|
644
|
+
*/
|
|
645
|
+
runTaskV1({ taskID }: RunTaskV1Props, requestOptions?: RequestOptions): Promise<RunResponse>;
|
|
498
646
|
/**
|
|
499
647
|
* Searches for authentication resources.
|
|
500
648
|
*
|
|
@@ -543,6 +691,18 @@ export declare function createIngestionClient({ appId: appIdOption, apiKey: apiK
|
|
|
543
691
|
* @param requestOptions - The requestOptions to send along with the query, they will be merged with the transporter requestOptions.
|
|
544
692
|
*/
|
|
545
693
|
searchTasks(taskSearch: TaskSearch, requestOptions?: RequestOptions): Promise<Task[]>;
|
|
694
|
+
/**
|
|
695
|
+
* Searches for tasks using the v1 endpoint, please use `searchTasks` instead.
|
|
696
|
+
*
|
|
697
|
+
* Required API Key ACLs:
|
|
698
|
+
* - addObject
|
|
699
|
+
* - deleteIndex
|
|
700
|
+
* - editSettings.
|
|
701
|
+
*
|
|
702
|
+
* @param taskSearch - The taskSearch object.
|
|
703
|
+
* @param requestOptions - The requestOptions to send along with the query, they will be merged with the transporter requestOptions.
|
|
704
|
+
*/
|
|
705
|
+
searchTasksV1(taskSearch: TaskSearch, requestOptions?: RequestOptions): Promise<TaskV1[]>;
|
|
546
706
|
/**
|
|
547
707
|
* Searches for transformations.
|
|
548
708
|
*
|
|
@@ -569,7 +729,7 @@ export declare function createIngestionClient({ appId: appIdOption, apiKey: apiK
|
|
|
569
729
|
*/
|
|
570
730
|
triggerDockerSourceDiscover({ sourceID }: TriggerDockerSourceDiscoverProps, requestOptions?: RequestOptions): Promise<SourceWatchResponse>;
|
|
571
731
|
/**
|
|
572
|
-
* Try a transformation.
|
|
732
|
+
* Try a transformation before creating it.
|
|
573
733
|
*
|
|
574
734
|
* Required API Key ACLs:
|
|
575
735
|
* - addObject
|
|
@@ -579,7 +739,21 @@ export declare function createIngestionClient({ appId: appIdOption, apiKey: apiK
|
|
|
579
739
|
* @param transformationTry - The transformationTry object.
|
|
580
740
|
* @param requestOptions - The requestOptions to send along with the query, they will be merged with the transporter requestOptions.
|
|
581
741
|
*/
|
|
582
|
-
|
|
742
|
+
tryTransformation(transformationTry: TransformationTry, requestOptions?: RequestOptions): Promise<TransformationTryResponse>;
|
|
743
|
+
/**
|
|
744
|
+
* Try a transformation before updating it.
|
|
745
|
+
*
|
|
746
|
+
* Required API Key ACLs:
|
|
747
|
+
* - addObject
|
|
748
|
+
* - deleteIndex
|
|
749
|
+
* - editSettings.
|
|
750
|
+
*
|
|
751
|
+
* @param tryTransformationBeforeUpdate - The tryTransformationBeforeUpdate object.
|
|
752
|
+
* @param tryTransformationBeforeUpdate.transformationID - Unique identifier of a transformation.
|
|
753
|
+
* @param tryTransformationBeforeUpdate.transformationTry - The transformationTry object.
|
|
754
|
+
* @param requestOptions - The requestOptions to send along with the query, they will be merged with the transporter requestOptions.
|
|
755
|
+
*/
|
|
756
|
+
tryTransformationBeforeUpdate({ transformationID, transformationTry, }: TryTransformationBeforeUpdateProps, requestOptions?: RequestOptions): Promise<TransformationTryResponse>;
|
|
583
757
|
/**
|
|
584
758
|
* Updates an authentication resource.
|
|
585
759
|
*
|
|
@@ -631,6 +805,15 @@ export declare function createIngestionClient({ appId: appIdOption, apiKey: apiK
|
|
|
631
805
|
* @param requestOptions - The requestOptions to send along with the query, they will be merged with the transporter requestOptions.
|
|
632
806
|
*/
|
|
633
807
|
updateTask({ taskID, taskUpdate }: UpdateTaskProps, requestOptions?: RequestOptions): Promise<TaskUpdateResponse>;
|
|
808
|
+
/**
|
|
809
|
+
* Updates a task by its ID using the v1 endpoint, please use `updateTask` instead.
|
|
810
|
+
*
|
|
811
|
+
* @param updateTaskV1 - The updateTaskV1 object.
|
|
812
|
+
* @param updateTaskV1.taskID - Unique identifier of a task.
|
|
813
|
+
* @param updateTaskV1.taskUpdate - The taskUpdate object.
|
|
814
|
+
* @param requestOptions - The requestOptions to send along with the query, they will be merged with the transporter requestOptions.
|
|
815
|
+
*/
|
|
816
|
+
updateTaskV1({ taskID, taskUpdate }: UpdateTaskV1Props, requestOptions?: RequestOptions): Promise<TaskUpdateResponse>;
|
|
634
817
|
/**
|
|
635
818
|
* Updates a transformation by its ID.
|
|
636
819
|
*
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"ingestionClient.d.ts","sourceRoot":"","sources":["../../src/ingestionClient.ts"],"names":[],"mappings":"AAOA,OAAO,KAAK,EACV,mBAAmB,EAKnB,cAAc,EACf,MAAM,wBAAwB,CAAC;AAEhC,OAAO,KAAK,EAAE,cAAc,EAAE,MAAM,yBAAyB,CAAC;AAC9D,OAAO,KAAK,EAAE,oBAAoB,EAAE,MAAM,+BAA+B,CAAC;AAC1E,OAAO,KAAK,EAAE,4BAA4B,EAAE,MAAM,uCAAuC,CAAC;AAC1F,OAAO,KAAK,EAAE,oBAAoB,EAAE,MAAM,+BAA+B,CAAC;AAC1E,OAAO,KAAK,EAAE,4BAA4B,EAAE,MAAM,uCAAuC,CAAC;AAC1F,OAAO,KAAK,EACV,iBAAiB,EACjB,cAAc,EACd,eAAe,EACf,cAAc,EACd,yBAAyB,EACzB,sBAAsB,EACtB,iBAAiB,EACjB,eAAe,EACf,yBAAyB,EACzB,gBAAgB,EAChB,eAAe,EACf,sBAAsB,EACtB,
|
|
1
|
+
{"version":3,"file":"ingestionClient.d.ts","sourceRoot":"","sources":["../../src/ingestionClient.ts"],"names":[],"mappings":"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"}
|