@algolia/ingestion 1.55.1 → 1.56.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.
@@ -29,7 +29,7 @@ __export(ingestionClient_exports, {
29
29
  });
30
30
  module.exports = __toCommonJS(ingestionClient_exports);
31
31
  var import_client_common = require("@algolia/client-common");
32
- var apiClientVersion = "1.55.1";
32
+ var apiClientVersion = "1.56.0";
33
33
  var REGIONS = ["eu", "us"];
34
34
  function getDefaultHosts(region) {
35
35
  const url = "data.{region}.algolia.com".replace("{region}", region);
@@ -138,10 +138,41 @@ function createIngestionClient({
138
138
  referenceIndexName,
139
139
  maxRetries = 100
140
140
  }, requestOptions) {
141
+ if (batchSize < 1) {
142
+ throw new Error("`batchSize` must be at least 1.");
143
+ }
141
144
  let records = [];
142
145
  let offset = 0;
143
146
  const responses = [];
144
147
  const waitBatchSize = Math.floor(batchSize / 10) || batchSize;
148
+ const waitForBatch = async (start, end) => {
149
+ for (const resp of responses.slice(start, end)) {
150
+ if (!resp.eventID) {
151
+ throw new Error("received unexpected response from the push endpoint, eventID must not be undefined");
152
+ }
153
+ let retryCount = 0;
154
+ await (0, import_client_common.createIterablePromise)({
155
+ func: async () => {
156
+ if (resp.eventID === void 0 || !resp.eventID) {
157
+ throw new Error("received unexpected response from the push endpoint, eventID must not be undefined");
158
+ }
159
+ return this.getEvent({ runID: resp.runID, eventID: resp.eventID }).catch((error) => {
160
+ if (error.status === 404) {
161
+ return void 0;
162
+ }
163
+ throw error;
164
+ });
165
+ },
166
+ validate: (response) => response !== void 0,
167
+ aggregator: () => retryCount += 1,
168
+ error: {
169
+ validate: () => retryCount >= maxRetries,
170
+ message: () => `Stopped waiting for the task after ${maxRetries} retries. This does not mean the operation failed; it may still complete. If you need to keep polling, retry with a higher maxRetries.`
171
+ },
172
+ timeout: () => Math.min(retryCount * 1500, 5e3)
173
+ });
174
+ }
175
+ };
145
176
  const objectEntries = objects.entries();
146
177
  for (const [i, obj] of objectEntries) {
147
178
  records.push(obj);
@@ -151,36 +182,14 @@ function createIngestionClient({
151
182
  );
152
183
  records = [];
153
184
  }
154
- if (waitForTasks && responses.length > 0 && (responses.length % waitBatchSize === 0 || i === objects.length - 1)) {
155
- for (const resp of responses.slice(offset, offset + waitBatchSize)) {
156
- if (!resp.eventID) {
157
- throw new Error("received unexpected response from the push endpoint, eventID must not be undefined");
158
- }
159
- let retryCount = 0;
160
- await (0, import_client_common.createIterablePromise)({
161
- func: async () => {
162
- if (resp.eventID === void 0 || !resp.eventID) {
163
- throw new Error("received unexpected response from the push endpoint, eventID must not be undefined");
164
- }
165
- return this.getEvent({ runID: resp.runID, eventID: resp.eventID }).catch((error) => {
166
- if (error.status === 404) {
167
- return void 0;
168
- }
169
- throw error;
170
- });
171
- },
172
- validate: (response) => response !== void 0,
173
- aggregator: () => retryCount += 1,
174
- error: {
175
- validate: () => retryCount >= maxRetries,
176
- message: () => `Stopped waiting for the task after ${maxRetries} retries. This does not mean the operation failed; it may still complete. If you need to keep polling, retry with a higher maxRetries.`
177
- },
178
- timeout: () => Math.min(retryCount * 1500, 5e3)
179
- });
180
- }
185
+ if (waitForTasks && responses.length - offset >= waitBatchSize) {
186
+ await waitForBatch(offset, offset + waitBatchSize);
181
187
  offset += waitBatchSize;
182
188
  }
183
189
  }
190
+ if (waitForTasks) {
191
+ await waitForBatch(offset, responses.length);
192
+ }
184
193
  return responses;
185
194
  },
186
195
  /**
@@ -210,6 +219,36 @@ function createIngestionClient({
210
219
  };
211
220
  return transporter.request(request, requestOptions);
212
221
  },
222
+ /**
223
+ * Creates a new authentication resource.
224
+ *
225
+ * Resolves with the full HTTP response information: status code, headers (when the requester captures them), raw body and deserialized data. Bypasses the requests and responses caches: always performs the API call.
226
+ *
227
+ * Required API Key ACLs:
228
+ * - addObject
229
+ * - deleteIndex
230
+ * - editSettings
231
+ * @param authenticationCreate -
232
+ * @param requestOptions - The requestOptions to send along with the query, they will be merged with the transporter requestOptions.
233
+ * @see createAuthentication for the plain version.
234
+ */
235
+ createAuthenticationWithHTTPInfo(authenticationCreate, requestOptions) {
236
+ (0, import_client_common.validateRequired)("authenticationCreate", "createAuthenticationWithHTTPInfo", authenticationCreate);
237
+ (0, import_client_common.validateRequired)("authenticationCreate.type", "createAuthenticationWithHTTPInfo", authenticationCreate.type);
238
+ (0, import_client_common.validateRequired)("authenticationCreate.name", "createAuthenticationWithHTTPInfo", authenticationCreate.name);
239
+ (0, import_client_common.validateRequired)("authenticationCreate.input", "createAuthenticationWithHTTPInfo", authenticationCreate.input);
240
+ const requestPath = "/1/authentications";
241
+ const headers = {};
242
+ const queryParameters = {};
243
+ const request = {
244
+ method: "POST",
245
+ path: requestPath,
246
+ queryParameters,
247
+ headers,
248
+ data: authenticationCreate
249
+ };
250
+ return transporter.requestWithHttpInfo(request, requestOptions);
251
+ },
213
252
  /**
214
253
  * Creates a new destination.
215
254
  *
@@ -237,6 +276,36 @@ function createIngestionClient({
237
276
  };
238
277
  return transporter.request(request, requestOptions);
239
278
  },
279
+ /**
280
+ * Creates a new destination.
281
+ *
282
+ * Resolves with the full HTTP response information: status code, headers (when the requester captures them), raw body and deserialized data. Bypasses the requests and responses caches: always performs the API call.
283
+ *
284
+ * Required API Key ACLs:
285
+ * - addObject
286
+ * - deleteIndex
287
+ * - editSettings
288
+ * @param destinationCreate -
289
+ * @param requestOptions - The requestOptions to send along with the query, they will be merged with the transporter requestOptions.
290
+ * @see createDestination for the plain version.
291
+ */
292
+ createDestinationWithHTTPInfo(destinationCreate, requestOptions) {
293
+ (0, import_client_common.validateRequired)("destinationCreate", "createDestinationWithHTTPInfo", destinationCreate);
294
+ (0, import_client_common.validateRequired)("destinationCreate.type", "createDestinationWithHTTPInfo", destinationCreate.type);
295
+ (0, import_client_common.validateRequired)("destinationCreate.name", "createDestinationWithHTTPInfo", destinationCreate.name);
296
+ (0, import_client_common.validateRequired)("destinationCreate.input", "createDestinationWithHTTPInfo", destinationCreate.input);
297
+ const requestPath = "/1/destinations";
298
+ const headers = {};
299
+ const queryParameters = {};
300
+ const request = {
301
+ method: "POST",
302
+ path: requestPath,
303
+ queryParameters,
304
+ headers,
305
+ data: destinationCreate
306
+ };
307
+ return transporter.requestWithHttpInfo(request, requestOptions);
308
+ },
240
309
  /**
241
310
  * Creates a new source.
242
311
  *
@@ -263,6 +332,35 @@ function createIngestionClient({
263
332
  };
264
333
  return transporter.request(request, requestOptions);
265
334
  },
335
+ /**
336
+ * Creates a new source.
337
+ *
338
+ * Resolves with the full HTTP response information: status code, headers (when the requester captures them), raw body and deserialized data. Bypasses the requests and responses caches: always performs the API call.
339
+ *
340
+ * Required API Key ACLs:
341
+ * - addObject
342
+ * - deleteIndex
343
+ * - editSettings
344
+ * @param sourceCreate -
345
+ * @param requestOptions - The requestOptions to send along with the query, they will be merged with the transporter requestOptions.
346
+ * @see createSource for the plain version.
347
+ */
348
+ createSourceWithHTTPInfo(sourceCreate, requestOptions) {
349
+ (0, import_client_common.validateRequired)("sourceCreate", "createSourceWithHTTPInfo", sourceCreate);
350
+ (0, import_client_common.validateRequired)("sourceCreate.type", "createSourceWithHTTPInfo", sourceCreate.type);
351
+ (0, import_client_common.validateRequired)("sourceCreate.name", "createSourceWithHTTPInfo", sourceCreate.name);
352
+ const requestPath = "/1/sources";
353
+ const headers = {};
354
+ const queryParameters = {};
355
+ const request = {
356
+ method: "POST",
357
+ path: requestPath,
358
+ queryParameters,
359
+ headers,
360
+ data: sourceCreate
361
+ };
362
+ return transporter.requestWithHttpInfo(request, requestOptions);
363
+ },
266
364
  /**
267
365
  * Creates a new task.
268
366
  *
@@ -290,6 +388,36 @@ function createIngestionClient({
290
388
  };
291
389
  return transporter.request(request, requestOptions);
292
390
  },
391
+ /**
392
+ * Creates a new task.
393
+ *
394
+ * Resolves with the full HTTP response information: status code, headers (when the requester captures them), raw body and deserialized data. Bypasses the requests and responses caches: always performs the API call.
395
+ *
396
+ * Required API Key ACLs:
397
+ * - addObject
398
+ * - deleteIndex
399
+ * - editSettings
400
+ * @param taskCreate - Request body for creating a task.
401
+ * @param requestOptions - The requestOptions to send along with the query, they will be merged with the transporter requestOptions.
402
+ * @see createTask for the plain version.
403
+ */
404
+ createTaskWithHTTPInfo(taskCreate, requestOptions) {
405
+ (0, import_client_common.validateRequired)("taskCreate", "createTaskWithHTTPInfo", taskCreate);
406
+ (0, import_client_common.validateRequired)("taskCreate.sourceID", "createTaskWithHTTPInfo", taskCreate.sourceID);
407
+ (0, import_client_common.validateRequired)("taskCreate.destinationID", "createTaskWithHTTPInfo", taskCreate.destinationID);
408
+ (0, import_client_common.validateRequired)("taskCreate.action", "createTaskWithHTTPInfo", taskCreate.action);
409
+ const requestPath = "/2/tasks";
410
+ const headers = {};
411
+ const queryParameters = {};
412
+ const request = {
413
+ method: "POST",
414
+ path: requestPath,
415
+ queryParameters,
416
+ headers,
417
+ data: taskCreate
418
+ };
419
+ return transporter.requestWithHttpInfo(request, requestOptions);
420
+ },
293
421
  /**
294
422
  * Creates a new task using the v1 endpoint. Use `createTask` instead.
295
423
  *
@@ -320,6 +448,39 @@ function createIngestionClient({
320
448
  };
321
449
  return transporter.request(request, requestOptions);
322
450
  },
451
+ /**
452
+ * Creates a new task using the v1 endpoint. Use `createTask` instead.
453
+ *
454
+ * Resolves with the full HTTP response information: status code, headers (when the requester captures them), raw body and deserialized data. Bypasses the requests and responses caches: always performs the API call.
455
+ *
456
+ * Required API Key ACLs:
457
+ * - addObject
458
+ * - deleteIndex
459
+ * - editSettings
460
+ *
461
+ * @deprecated
462
+ * @param taskCreate - Request body for creating a task.
463
+ * @param requestOptions - The requestOptions to send along with the query, they will be merged with the transporter requestOptions.
464
+ * @see createTaskV1 for the plain version.
465
+ */
466
+ createTaskV1WithHTTPInfo(taskCreate, requestOptions) {
467
+ (0, import_client_common.validateRequired)("taskCreate", "createTaskV1WithHTTPInfo", taskCreate);
468
+ (0, import_client_common.validateRequired)("taskCreate.sourceID", "createTaskV1WithHTTPInfo", taskCreate.sourceID);
469
+ (0, import_client_common.validateRequired)("taskCreate.destinationID", "createTaskV1WithHTTPInfo", taskCreate.destinationID);
470
+ (0, import_client_common.validateRequired)("taskCreate.trigger", "createTaskV1WithHTTPInfo", taskCreate.trigger);
471
+ (0, import_client_common.validateRequired)("taskCreate.action", "createTaskV1WithHTTPInfo", taskCreate.action);
472
+ const requestPath = "/1/tasks";
473
+ const headers = {};
474
+ const queryParameters = {};
475
+ const request = {
476
+ method: "POST",
477
+ path: requestPath,
478
+ queryParameters,
479
+ headers,
480
+ data: taskCreate
481
+ };
482
+ return transporter.requestWithHttpInfo(request, requestOptions);
483
+ },
323
484
  /**
324
485
  * Creates a new transformation.
325
486
  *
@@ -345,6 +506,34 @@ function createIngestionClient({
345
506
  };
346
507
  return transporter.request(request, requestOptions);
347
508
  },
509
+ /**
510
+ * Creates a new transformation.
511
+ *
512
+ * Resolves with the full HTTP response information: status code, headers (when the requester captures them), raw body and deserialized data. Bypasses the requests and responses caches: always performs the API call.
513
+ *
514
+ * Required API Key ACLs:
515
+ * - addObject
516
+ * - deleteIndex
517
+ * - editSettings
518
+ * @param transformationCreate - Request body for creating a transformation.
519
+ * @param requestOptions - The requestOptions to send along with the query, they will be merged with the transporter requestOptions.
520
+ * @see createTransformation for the plain version.
521
+ */
522
+ createTransformationWithHTTPInfo(transformationCreate, requestOptions) {
523
+ (0, import_client_common.validateRequired)("transformationCreate", "createTransformationWithHTTPInfo", transformationCreate);
524
+ (0, import_client_common.validateRequired)("transformationCreate.name", "createTransformationWithHTTPInfo", transformationCreate.name);
525
+ const requestPath = "/1/transformations";
526
+ const headers = {};
527
+ const queryParameters = {};
528
+ const request = {
529
+ method: "POST",
530
+ path: requestPath,
531
+ queryParameters,
532
+ headers,
533
+ data: transformationCreate
534
+ };
535
+ return transporter.requestWithHttpInfo(request, requestOptions);
536
+ },
348
537
  /**
349
538
  * This method lets you send requests to the Algolia REST API.
350
539
  * @param customDelete - The customDelete object.
@@ -365,6 +554,29 @@ function createIngestionClient({
365
554
  };
366
555
  return transporter.request(request, requestOptions);
367
556
  },
557
+ /**
558
+ * This method lets you send requests to the Algolia REST API.
559
+ *
560
+ * Resolves with the full HTTP response information: status code, headers (when the requester captures them), raw body and deserialized data. Bypasses the requests and responses caches: always performs the API call.
561
+ * @param customDelete - The customDelete object.
562
+ * @param customDelete.path - Path of the endpoint, for example `1/newFeature`.
563
+ * @param customDelete.parameters - Query parameters to apply to the current query.
564
+ * @param requestOptions - The requestOptions to send along with the query, they will be merged with the transporter requestOptions.
565
+ * @see customDelete for the plain version.
566
+ */
567
+ customDeleteWithHTTPInfo({ path, parameters }, requestOptions) {
568
+ (0, import_client_common.validateRequired)("path", "customDeleteWithHTTPInfo", path);
569
+ const requestPath = "/{path}".replace("{path}", path);
570
+ const headers = {};
571
+ const queryParameters = parameters ? parameters : {};
572
+ const request = {
573
+ method: "DELETE",
574
+ path: requestPath,
575
+ queryParameters,
576
+ headers
577
+ };
578
+ return transporter.requestWithHttpInfo(request, requestOptions);
579
+ },
368
580
  /**
369
581
  * This method lets you send requests to the Algolia REST API.
370
582
  * @param customGet - The customGet object.
@@ -385,6 +597,29 @@ function createIngestionClient({
385
597
  };
386
598
  return transporter.request(request, requestOptions);
387
599
  },
600
+ /**
601
+ * This method lets you send requests to the Algolia REST API.
602
+ *
603
+ * Resolves with the full HTTP response information: status code, headers (when the requester captures them), raw body and deserialized data. Bypasses the requests and responses caches: always performs the API call.
604
+ * @param customGet - The customGet object.
605
+ * @param customGet.path - Path of the endpoint, for example `1/newFeature`.
606
+ * @param customGet.parameters - Query parameters to apply to the current query.
607
+ * @param requestOptions - The requestOptions to send along with the query, they will be merged with the transporter requestOptions.
608
+ * @see customGet for the plain version.
609
+ */
610
+ customGetWithHTTPInfo({ path, parameters }, requestOptions) {
611
+ (0, import_client_common.validateRequired)("path", "customGetWithHTTPInfo", path);
612
+ const requestPath = "/{path}".replace("{path}", path);
613
+ const headers = {};
614
+ const queryParameters = parameters ? parameters : {};
615
+ const request = {
616
+ method: "GET",
617
+ path: requestPath,
618
+ queryParameters,
619
+ headers
620
+ };
621
+ return transporter.requestWithHttpInfo(request, requestOptions);
622
+ },
388
623
  /**
389
624
  * This method lets you send requests to the Algolia REST API.
390
625
  * @param customPost - The customPost object.
@@ -407,6 +642,31 @@ function createIngestionClient({
407
642
  };
408
643
  return transporter.request(request, requestOptions);
409
644
  },
645
+ /**
646
+ * This method lets you send requests to the Algolia REST API.
647
+ *
648
+ * Resolves with the full HTTP response information: status code, headers (when the requester captures them), raw body and deserialized data. Bypasses the requests and responses caches: always performs the API call.
649
+ * @param customPost - The customPost object.
650
+ * @param customPost.path - Path of the endpoint, for example `1/newFeature`.
651
+ * @param customPost.parameters - Query parameters to apply to the current query.
652
+ * @param customPost.body - Parameters to send with the custom request.
653
+ * @param requestOptions - The requestOptions to send along with the query, they will be merged with the transporter requestOptions.
654
+ * @see customPost for the plain version.
655
+ */
656
+ customPostWithHTTPInfo({ path, parameters, body }, requestOptions) {
657
+ (0, import_client_common.validateRequired)("path", "customPostWithHTTPInfo", path);
658
+ const requestPath = "/{path}".replace("{path}", path);
659
+ const headers = {};
660
+ const queryParameters = parameters ? parameters : {};
661
+ const request = {
662
+ method: "POST",
663
+ path: requestPath,
664
+ queryParameters,
665
+ headers,
666
+ data: body ? body : {}
667
+ };
668
+ return transporter.requestWithHttpInfo(request, requestOptions);
669
+ },
410
670
  /**
411
671
  * This method lets you send requests to the Algolia REST API.
412
672
  * @param customPut - The customPut object.
@@ -429,6 +689,31 @@ function createIngestionClient({
429
689
  };
430
690
  return transporter.request(request, requestOptions);
431
691
  },
692
+ /**
693
+ * This method lets you send requests to the Algolia REST API.
694
+ *
695
+ * Resolves with the full HTTP response information: status code, headers (when the requester captures them), raw body and deserialized data. Bypasses the requests and responses caches: always performs the API call.
696
+ * @param customPut - The customPut object.
697
+ * @param customPut.path - Path of the endpoint, for example `1/newFeature`.
698
+ * @param customPut.parameters - Query parameters to apply to the current query.
699
+ * @param customPut.body - Parameters to send with the custom request.
700
+ * @param requestOptions - The requestOptions to send along with the query, they will be merged with the transporter requestOptions.
701
+ * @see customPut for the plain version.
702
+ */
703
+ customPutWithHTTPInfo({ path, parameters, body }, requestOptions) {
704
+ (0, import_client_common.validateRequired)("path", "customPutWithHTTPInfo", path);
705
+ const requestPath = "/{path}".replace("{path}", path);
706
+ const headers = {};
707
+ const queryParameters = parameters ? parameters : {};
708
+ const request = {
709
+ method: "PUT",
710
+ path: requestPath,
711
+ queryParameters,
712
+ headers,
713
+ data: body ? body : {}
714
+ };
715
+ return transporter.requestWithHttpInfo(request, requestOptions);
716
+ },
432
717
  /**
433
718
  * Deletes an authentication resource. You can\'t delete authentication resources that are used by a source or a destination.
434
719
  *
@@ -457,21 +742,24 @@ function createIngestionClient({
457
742
  return transporter.request(request, requestOptions);
458
743
  },
459
744
  /**
460
- * Deletes a destination by its ID. You can\'t delete destinations that are referenced in tasks.
745
+ * Deletes an authentication resource. You can\'t delete authentication resources that are used by a source or a destination.
746
+ *
747
+ * Resolves with the full HTTP response information: status code, headers (when the requester captures them), raw body and deserialized data. Bypasses the requests and responses caches: always performs the API call.
461
748
  *
462
749
  * Required API Key ACLs:
463
750
  * - addObject
464
751
  * - deleteIndex
465
752
  * - editSettings
466
- * @param deleteDestination - The deleteDestination object.
467
- * @param deleteDestination.destinationID - Unique identifier of a destination.
753
+ * @param deleteAuthentication - The deleteAuthentication object.
754
+ * @param deleteAuthentication.authenticationID - Unique identifier of an authentication resource.
468
755
  * @param requestOptions - The requestOptions to send along with the query, they will be merged with the transporter requestOptions.
756
+ * @see deleteAuthentication for the plain version.
469
757
  */
470
- deleteDestination({ destinationID }, requestOptions) {
471
- (0, import_client_common.validateRequired)("destinationID", "deleteDestination", destinationID);
472
- const requestPath = "/1/destinations/{destinationID}".replace(
473
- "{destinationID}",
474
- encodeURIComponent(destinationID)
758
+ deleteAuthenticationWithHTTPInfo({ authenticationID }, requestOptions) {
759
+ (0, import_client_common.validateRequired)("authenticationID", "deleteAuthenticationWithHTTPInfo", authenticationID);
760
+ const requestPath = "/1/authentications/{authenticationID}".replace(
761
+ "{authenticationID}",
762
+ encodeURIComponent(authenticationID)
475
763
  );
476
764
  const headers = {};
477
765
  const queryParameters = {};
@@ -481,22 +769,25 @@ function createIngestionClient({
481
769
  queryParameters,
482
770
  headers
483
771
  };
484
- return transporter.request(request, requestOptions);
772
+ return transporter.requestWithHttpInfo(request, requestOptions);
485
773
  },
486
774
  /**
487
- * Deletes a source by its ID. You can\'t delete sources that are referenced in tasks.
775
+ * Deletes a destination by its ID. You can\'t delete destinations that are referenced in tasks.
488
776
  *
489
777
  * Required API Key ACLs:
490
778
  * - addObject
491
779
  * - deleteIndex
492
780
  * - editSettings
493
- * @param deleteSource - The deleteSource object.
494
- * @param deleteSource.sourceID - Unique identifier of a source.
781
+ * @param deleteDestination - The deleteDestination object.
782
+ * @param deleteDestination.destinationID - Unique identifier of a destination.
495
783
  * @param requestOptions - The requestOptions to send along with the query, they will be merged with the transporter requestOptions.
496
784
  */
497
- deleteSource({ sourceID }, requestOptions) {
498
- (0, import_client_common.validateRequired)("sourceID", "deleteSource", sourceID);
499
- const requestPath = "/1/sources/{sourceID}".replace("{sourceID}", encodeURIComponent(sourceID));
785
+ deleteDestination({ destinationID }, requestOptions) {
786
+ (0, import_client_common.validateRequired)("destinationID", "deleteDestination", destinationID);
787
+ const requestPath = "/1/destinations/{destinationID}".replace(
788
+ "{destinationID}",
789
+ encodeURIComponent(destinationID)
790
+ );
500
791
  const headers = {};
501
792
  const queryParameters = {};
502
793
  const request = {
@@ -508,19 +799,25 @@ function createIngestionClient({
508
799
  return transporter.request(request, requestOptions);
509
800
  },
510
801
  /**
511
- * Deletes a task by its ID.
802
+ * Deletes a destination by its ID. You can\'t delete destinations that are referenced in tasks.
803
+ *
804
+ * Resolves with the full HTTP response information: status code, headers (when the requester captures them), raw body and deserialized data. Bypasses the requests and responses caches: always performs the API call.
512
805
  *
513
806
  * Required API Key ACLs:
514
807
  * - addObject
515
808
  * - deleteIndex
516
809
  * - editSettings
517
- * @param deleteTask - The deleteTask object.
518
- * @param deleteTask.taskID - Unique identifier of a task.
810
+ * @param deleteDestination - The deleteDestination object.
811
+ * @param deleteDestination.destinationID - Unique identifier of a destination.
519
812
  * @param requestOptions - The requestOptions to send along with the query, they will be merged with the transporter requestOptions.
813
+ * @see deleteDestination for the plain version.
520
814
  */
521
- deleteTask({ taskID }, requestOptions) {
522
- (0, import_client_common.validateRequired)("taskID", "deleteTask", taskID);
523
- const requestPath = "/2/tasks/{taskID}".replace("{taskID}", encodeURIComponent(taskID));
815
+ deleteDestinationWithHTTPInfo({ destinationID }, requestOptions) {
816
+ (0, import_client_common.validateRequired)("destinationID", "deleteDestinationWithHTTPInfo", destinationID);
817
+ const requestPath = "/1/destinations/{destinationID}".replace(
818
+ "{destinationID}",
819
+ encodeURIComponent(destinationID)
820
+ );
524
821
  const headers = {};
525
822
  const queryParameters = {};
526
823
  const request = {
@@ -529,24 +826,22 @@ function createIngestionClient({
529
826
  queryParameters,
530
827
  headers
531
828
  };
532
- return transporter.request(request, requestOptions);
829
+ return transporter.requestWithHttpInfo(request, requestOptions);
533
830
  },
534
831
  /**
535
- * Deletes a task by its ID using the v1 endpoint. Use `deleteTask` instead.
832
+ * Deletes a source by its ID. You can\'t delete sources that are referenced in tasks.
536
833
  *
537
834
  * Required API Key ACLs:
538
835
  * - addObject
539
836
  * - deleteIndex
540
837
  * - editSettings
541
- *
542
- * @deprecated
543
- * @param deleteTaskV1 - The deleteTaskV1 object.
544
- * @param deleteTaskV1.taskID - Unique identifier of a task.
838
+ * @param deleteSource - The deleteSource object.
839
+ * @param deleteSource.sourceID - Unique identifier of a source.
545
840
  * @param requestOptions - The requestOptions to send along with the query, they will be merged with the transporter requestOptions.
546
841
  */
547
- deleteTaskV1({ taskID }, requestOptions) {
548
- (0, import_client_common.validateRequired)("taskID", "deleteTaskV1", taskID);
549
- const requestPath = "/1/tasks/{taskID}".replace("{taskID}", encodeURIComponent(taskID));
842
+ deleteSource({ sourceID }, requestOptions) {
843
+ (0, import_client_common.validateRequired)("sourceID", "deleteSource", sourceID);
844
+ const requestPath = "/1/sources/{sourceID}".replace("{sourceID}", encodeURIComponent(sourceID));
550
845
  const headers = {};
551
846
  const queryParameters = {};
552
847
  const request = {
@@ -558,22 +853,22 @@ function createIngestionClient({
558
853
  return transporter.request(request, requestOptions);
559
854
  },
560
855
  /**
561
- * Deletes a transformation by its ID.
856
+ * Deletes a source by its ID. You can\'t delete sources that are referenced in tasks.
857
+ *
858
+ * Resolves with the full HTTP response information: status code, headers (when the requester captures them), raw body and deserialized data. Bypasses the requests and responses caches: always performs the API call.
562
859
  *
563
860
  * Required API Key ACLs:
564
861
  * - addObject
565
862
  * - deleteIndex
566
863
  * - editSettings
567
- * @param deleteTransformation - The deleteTransformation object.
568
- * @param deleteTransformation.transformationID - Unique identifier of a transformation.
864
+ * @param deleteSource - The deleteSource object.
865
+ * @param deleteSource.sourceID - Unique identifier of a source.
569
866
  * @param requestOptions - The requestOptions to send along with the query, they will be merged with the transporter requestOptions.
867
+ * @see deleteSource for the plain version.
570
868
  */
571
- deleteTransformation({ transformationID }, requestOptions) {
572
- (0, import_client_common.validateRequired)("transformationID", "deleteTransformation", transformationID);
573
- const requestPath = "/1/transformations/{transformationID}".replace(
574
- "{transformationID}",
575
- encodeURIComponent(transformationID)
576
- );
869
+ deleteSourceWithHTTPInfo({ sourceID }, requestOptions) {
870
+ (0, import_client_common.validateRequired)("sourceID", "deleteSourceWithHTTPInfo", sourceID);
871
+ const requestPath = "/1/sources/{sourceID}".replace("{sourceID}", encodeURIComponent(sourceID));
577
872
  const headers = {};
578
873
  const queryParameters = {};
579
874
  const request = {
@@ -582,26 +877,26 @@ function createIngestionClient({
582
877
  queryParameters,
583
878
  headers
584
879
  };
585
- return transporter.request(request, requestOptions);
880
+ return transporter.requestWithHttpInfo(request, requestOptions);
586
881
  },
587
882
  /**
588
- * Disables a task.
883
+ * Deletes a task by its ID.
589
884
  *
590
885
  * Required API Key ACLs:
591
886
  * - addObject
592
887
  * - deleteIndex
593
888
  * - editSettings
594
- * @param disableTask - The disableTask object.
595
- * @param disableTask.taskID - Unique identifier of a task.
889
+ * @param deleteTask - The deleteTask object.
890
+ * @param deleteTask.taskID - Unique identifier of a task.
596
891
  * @param requestOptions - The requestOptions to send along with the query, they will be merged with the transporter requestOptions.
597
892
  */
598
- disableTask({ taskID }, requestOptions) {
599
- (0, import_client_common.validateRequired)("taskID", "disableTask", taskID);
600
- const requestPath = "/2/tasks/{taskID}/disable".replace("{taskID}", encodeURIComponent(taskID));
893
+ deleteTask({ taskID }, requestOptions) {
894
+ (0, import_client_common.validateRequired)("taskID", "deleteTask", taskID);
895
+ const requestPath = "/2/tasks/{taskID}".replace("{taskID}", encodeURIComponent(taskID));
601
896
  const headers = {};
602
897
  const queryParameters = {};
603
898
  const request = {
604
- method: "PUT",
899
+ method: "DELETE",
605
900
  path: requestPath,
606
901
  queryParameters,
607
902
  headers
@@ -609,49 +904,52 @@ function createIngestionClient({
609
904
  return transporter.request(request, requestOptions);
610
905
  },
611
906
  /**
612
- * Disables a task using the v1 endpoint. Use `disableTask` instead.
907
+ * Deletes a task by its ID.
908
+ *
909
+ * Resolves with the full HTTP response information: status code, headers (when the requester captures them), raw body and deserialized data. Bypasses the requests and responses caches: always performs the API call.
613
910
  *
614
911
  * Required API Key ACLs:
615
912
  * - addObject
616
913
  * - deleteIndex
617
914
  * - editSettings
618
- *
619
- * @deprecated
620
- * @param disableTaskV1 - The disableTaskV1 object.
621
- * @param disableTaskV1.taskID - Unique identifier of a task.
915
+ * @param deleteTask - The deleteTask object.
916
+ * @param deleteTask.taskID - Unique identifier of a task.
622
917
  * @param requestOptions - The requestOptions to send along with the query, they will be merged with the transporter requestOptions.
918
+ * @see deleteTask for the plain version.
623
919
  */
624
- disableTaskV1({ taskID }, requestOptions) {
625
- (0, import_client_common.validateRequired)("taskID", "disableTaskV1", taskID);
626
- const requestPath = "/1/tasks/{taskID}/disable".replace("{taskID}", encodeURIComponent(taskID));
920
+ deleteTaskWithHTTPInfo({ taskID }, requestOptions) {
921
+ (0, import_client_common.validateRequired)("taskID", "deleteTaskWithHTTPInfo", taskID);
922
+ const requestPath = "/2/tasks/{taskID}".replace("{taskID}", encodeURIComponent(taskID));
627
923
  const headers = {};
628
924
  const queryParameters = {};
629
925
  const request = {
630
- method: "PUT",
926
+ method: "DELETE",
631
927
  path: requestPath,
632
928
  queryParameters,
633
929
  headers
634
930
  };
635
- return transporter.request(request, requestOptions);
931
+ return transporter.requestWithHttpInfo(request, requestOptions);
636
932
  },
637
933
  /**
638
- * Enables a task.
934
+ * Deletes a task by its ID using the v1 endpoint. Use `deleteTask` instead.
639
935
  *
640
936
  * Required API Key ACLs:
641
937
  * - addObject
642
938
  * - deleteIndex
643
939
  * - editSettings
644
- * @param enableTask - The enableTask object.
645
- * @param enableTask.taskID - Unique identifier of a task.
940
+ *
941
+ * @deprecated
942
+ * @param deleteTaskV1 - The deleteTaskV1 object.
943
+ * @param deleteTaskV1.taskID - Unique identifier of a task.
646
944
  * @param requestOptions - The requestOptions to send along with the query, they will be merged with the transporter requestOptions.
647
945
  */
648
- enableTask({ taskID }, requestOptions) {
649
- (0, import_client_common.validateRequired)("taskID", "enableTask", taskID);
650
- const requestPath = "/2/tasks/{taskID}/enable".replace("{taskID}", encodeURIComponent(taskID));
946
+ deleteTaskV1({ taskID }, requestOptions) {
947
+ (0, import_client_common.validateRequired)("taskID", "deleteTaskV1", taskID);
948
+ const requestPath = "/1/tasks/{taskID}".replace("{taskID}", encodeURIComponent(taskID));
651
949
  const headers = {};
652
950
  const queryParameters = {};
653
951
  const request = {
654
- method: "PUT",
952
+ method: "DELETE",
655
953
  path: requestPath,
656
954
  queryParameters,
657
955
  headers
@@ -659,7 +957,9 @@ function createIngestionClient({
659
957
  return transporter.request(request, requestOptions);
660
958
  },
661
959
  /**
662
- * Enables a task using the v1 endpoint. Use `enableTask` instead.
960
+ * Deletes a task by its ID using the v1 endpoint. Use `deleteTask` instead.
961
+ *
962
+ * Resolves with the full HTTP response information: status code, headers (when the requester captures them), raw body and deserialized data. Bypasses the requests and responses caches: always performs the API call.
663
963
  *
664
964
  * Required API Key ACLs:
665
965
  * - addObject
@@ -667,44 +967,45 @@ function createIngestionClient({
667
967
  * - editSettings
668
968
  *
669
969
  * @deprecated
670
- * @param enableTaskV1 - The enableTaskV1 object.
671
- * @param enableTaskV1.taskID - Unique identifier of a task.
970
+ * @param deleteTaskV1 - The deleteTaskV1 object.
971
+ * @param deleteTaskV1.taskID - Unique identifier of a task.
672
972
  * @param requestOptions - The requestOptions to send along with the query, they will be merged with the transporter requestOptions.
973
+ * @see deleteTaskV1 for the plain version.
673
974
  */
674
- enableTaskV1({ taskID }, requestOptions) {
675
- (0, import_client_common.validateRequired)("taskID", "enableTaskV1", taskID);
676
- const requestPath = "/1/tasks/{taskID}/enable".replace("{taskID}", encodeURIComponent(taskID));
975
+ deleteTaskV1WithHTTPInfo({ taskID }, requestOptions) {
976
+ (0, import_client_common.validateRequired)("taskID", "deleteTaskV1WithHTTPInfo", taskID);
977
+ const requestPath = "/1/tasks/{taskID}".replace("{taskID}", encodeURIComponent(taskID));
677
978
  const headers = {};
678
979
  const queryParameters = {};
679
980
  const request = {
680
- method: "PUT",
981
+ method: "DELETE",
681
982
  path: requestPath,
682
983
  queryParameters,
683
984
  headers
684
985
  };
685
- return transporter.request(request, requestOptions);
986
+ return transporter.requestWithHttpInfo(request, requestOptions);
686
987
  },
687
988
  /**
688
- * Retrieves an authentication resource by its ID.
989
+ * Deletes a transformation by its ID.
689
990
  *
690
991
  * Required API Key ACLs:
691
992
  * - addObject
692
993
  * - deleteIndex
693
994
  * - editSettings
694
- * @param getAuthentication - The getAuthentication object.
695
- * @param getAuthentication.authenticationID - Unique identifier of an authentication resource.
995
+ * @param deleteTransformation - The deleteTransformation object.
996
+ * @param deleteTransformation.transformationID - Unique identifier of a transformation.
696
997
  * @param requestOptions - The requestOptions to send along with the query, they will be merged with the transporter requestOptions.
697
998
  */
698
- getAuthentication({ authenticationID }, requestOptions) {
699
- (0, import_client_common.validateRequired)("authenticationID", "getAuthentication", authenticationID);
700
- const requestPath = "/1/authentications/{authenticationID}".replace(
701
- "{authenticationID}",
702
- encodeURIComponent(authenticationID)
999
+ deleteTransformation({ transformationID }, requestOptions) {
1000
+ (0, import_client_common.validateRequired)("transformationID", "deleteTransformation", transformationID);
1001
+ const requestPath = "/1/transformations/{transformationID}".replace(
1002
+ "{transformationID}",
1003
+ encodeURIComponent(transformationID)
703
1004
  );
704
1005
  const headers = {};
705
1006
  const queryParameters = {};
706
1007
  const request = {
707
- method: "GET",
1008
+ method: "DELETE",
708
1009
  path: requestPath,
709
1010
  queryParameters,
710
1011
  headers
@@ -712,52 +1013,53 @@ function createIngestionClient({
712
1013
  return transporter.request(request, requestOptions);
713
1014
  },
714
1015
  /**
715
- * Retrieves a destination by its ID.
1016
+ * Deletes a transformation by its ID.
1017
+ *
1018
+ * Resolves with the full HTTP response information: status code, headers (when the requester captures them), raw body and deserialized data. Bypasses the requests and responses caches: always performs the API call.
716
1019
  *
717
1020
  * Required API Key ACLs:
718
1021
  * - addObject
719
1022
  * - deleteIndex
720
1023
  * - editSettings
721
- * @param getDestination - The getDestination object.
722
- * @param getDestination.destinationID - Unique identifier of a destination.
1024
+ * @param deleteTransformation - The deleteTransformation object.
1025
+ * @param deleteTransformation.transformationID - Unique identifier of a transformation.
723
1026
  * @param requestOptions - The requestOptions to send along with the query, they will be merged with the transporter requestOptions.
1027
+ * @see deleteTransformation for the plain version.
724
1028
  */
725
- getDestination({ destinationID }, requestOptions) {
726
- (0, import_client_common.validateRequired)("destinationID", "getDestination", destinationID);
727
- const requestPath = "/1/destinations/{destinationID}".replace(
728
- "{destinationID}",
729
- encodeURIComponent(destinationID)
1029
+ deleteTransformationWithHTTPInfo({ transformationID }, requestOptions) {
1030
+ (0, import_client_common.validateRequired)("transformationID", "deleteTransformationWithHTTPInfo", transformationID);
1031
+ const requestPath = "/1/transformations/{transformationID}".replace(
1032
+ "{transformationID}",
1033
+ encodeURIComponent(transformationID)
730
1034
  );
731
1035
  const headers = {};
732
1036
  const queryParameters = {};
733
1037
  const request = {
734
- method: "GET",
1038
+ method: "DELETE",
735
1039
  path: requestPath,
736
1040
  queryParameters,
737
1041
  headers
738
1042
  };
739
- return transporter.request(request, requestOptions);
1043
+ return transporter.requestWithHttpInfo(request, requestOptions);
740
1044
  },
741
1045
  /**
742
- * Retrieves a single task run event by its ID.
1046
+ * Disables a task.
743
1047
  *
744
1048
  * Required API Key ACLs:
745
1049
  * - addObject
746
1050
  * - deleteIndex
747
1051
  * - editSettings
748
- * @param getEvent - The getEvent object.
749
- * @param getEvent.runID - Unique identifier of a task run.
750
- * @param getEvent.eventID - Unique identifier of an event.
1052
+ * @param disableTask - The disableTask object.
1053
+ * @param disableTask.taskID - Unique identifier of a task.
751
1054
  * @param requestOptions - The requestOptions to send along with the query, they will be merged with the transporter requestOptions.
752
1055
  */
753
- getEvent({ runID, eventID }, requestOptions) {
754
- (0, import_client_common.validateRequired)("runID", "getEvent", runID);
755
- (0, import_client_common.validateRequired)("eventID", "getEvent", eventID);
756
- const requestPath = "/1/runs/{runID}/events/{eventID}".replace("{runID}", encodeURIComponent(runID)).replace("{eventID}", encodeURIComponent(eventID));
1056
+ disableTask({ taskID }, requestOptions) {
1057
+ (0, import_client_common.validateRequired)("taskID", "disableTask", taskID);
1058
+ const requestPath = "/2/tasks/{taskID}/disable".replace("{taskID}", encodeURIComponent(taskID));
757
1059
  const headers = {};
758
1060
  const queryParameters = {};
759
1061
  const request = {
760
- method: "GET",
1062
+ method: "PUT",
761
1063
  path: requestPath,
762
1064
  queryParameters,
763
1065
  headers
@@ -765,47 +1067,52 @@ function createIngestionClient({
765
1067
  return transporter.request(request, requestOptions);
766
1068
  },
767
1069
  /**
768
- * Retrieve a single task run by its ID.
1070
+ * Disables a task.
1071
+ *
1072
+ * Resolves with the full HTTP response information: status code, headers (when the requester captures them), raw body and deserialized data. Bypasses the requests and responses caches: always performs the API call.
769
1073
  *
770
1074
  * Required API Key ACLs:
771
1075
  * - addObject
772
1076
  * - deleteIndex
773
1077
  * - editSettings
774
- * @param getRun - The getRun object.
775
- * @param getRun.runID - Unique identifier of a task run.
1078
+ * @param disableTask - The disableTask object.
1079
+ * @param disableTask.taskID - Unique identifier of a task.
776
1080
  * @param requestOptions - The requestOptions to send along with the query, they will be merged with the transporter requestOptions.
1081
+ * @see disableTask for the plain version.
777
1082
  */
778
- getRun({ runID }, requestOptions) {
779
- (0, import_client_common.validateRequired)("runID", "getRun", runID);
780
- const requestPath = "/1/runs/{runID}".replace("{runID}", encodeURIComponent(runID));
1083
+ disableTaskWithHTTPInfo({ taskID }, requestOptions) {
1084
+ (0, import_client_common.validateRequired)("taskID", "disableTaskWithHTTPInfo", taskID);
1085
+ const requestPath = "/2/tasks/{taskID}/disable".replace("{taskID}", encodeURIComponent(taskID));
781
1086
  const headers = {};
782
1087
  const queryParameters = {};
783
1088
  const request = {
784
- method: "GET",
1089
+ method: "PUT",
785
1090
  path: requestPath,
786
1091
  queryParameters,
787
1092
  headers
788
1093
  };
789
- return transporter.request(request, requestOptions);
1094
+ return transporter.requestWithHttpInfo(request, requestOptions);
790
1095
  },
791
1096
  /**
792
- * Retrieve a source by its ID.
1097
+ * Disables a task using the v1 endpoint. Use `disableTask` instead.
793
1098
  *
794
1099
  * Required API Key ACLs:
795
1100
  * - addObject
796
1101
  * - deleteIndex
797
1102
  * - editSettings
798
- * @param getSource - The getSource object.
799
- * @param getSource.sourceID - Unique identifier of a source.
1103
+ *
1104
+ * @deprecated
1105
+ * @param disableTaskV1 - The disableTaskV1 object.
1106
+ * @param disableTaskV1.taskID - Unique identifier of a task.
800
1107
  * @param requestOptions - The requestOptions to send along with the query, they will be merged with the transporter requestOptions.
801
1108
  */
802
- getSource({ sourceID }, requestOptions) {
803
- (0, import_client_common.validateRequired)("sourceID", "getSource", sourceID);
804
- const requestPath = "/1/sources/{sourceID}".replace("{sourceID}", encodeURIComponent(sourceID));
1109
+ disableTaskV1({ taskID }, requestOptions) {
1110
+ (0, import_client_common.validateRequired)("taskID", "disableTaskV1", taskID);
1111
+ const requestPath = "/1/tasks/{taskID}/disable".replace("{taskID}", encodeURIComponent(taskID));
805
1112
  const headers = {};
806
1113
  const queryParameters = {};
807
1114
  const request = {
808
- method: "GET",
1115
+ method: "PUT",
809
1116
  path: requestPath,
810
1117
  queryParameters,
811
1118
  headers
@@ -813,49 +1120,52 @@ function createIngestionClient({
813
1120
  return transporter.request(request, requestOptions);
814
1121
  },
815
1122
  /**
816
- * Retrieves a task by its ID.
1123
+ * Disables a task using the v1 endpoint. Use `disableTask` instead.
1124
+ *
1125
+ * Resolves with the full HTTP response information: status code, headers (when the requester captures them), raw body and deserialized data. Bypasses the requests and responses caches: always performs the API call.
817
1126
  *
818
1127
  * Required API Key ACLs:
819
1128
  * - addObject
820
1129
  * - deleteIndex
821
1130
  * - editSettings
822
- * @param getTask - The getTask object.
823
- * @param getTask.taskID - Unique identifier of a task.
1131
+ *
1132
+ * @deprecated
1133
+ * @param disableTaskV1 - The disableTaskV1 object.
1134
+ * @param disableTaskV1.taskID - Unique identifier of a task.
824
1135
  * @param requestOptions - The requestOptions to send along with the query, they will be merged with the transporter requestOptions.
1136
+ * @see disableTaskV1 for the plain version.
825
1137
  */
826
- getTask({ taskID }, requestOptions) {
827
- (0, import_client_common.validateRequired)("taskID", "getTask", taskID);
828
- const requestPath = "/2/tasks/{taskID}".replace("{taskID}", encodeURIComponent(taskID));
1138
+ disableTaskV1WithHTTPInfo({ taskID }, requestOptions) {
1139
+ (0, import_client_common.validateRequired)("taskID", "disableTaskV1WithHTTPInfo", taskID);
1140
+ const requestPath = "/1/tasks/{taskID}/disable".replace("{taskID}", encodeURIComponent(taskID));
829
1141
  const headers = {};
830
1142
  const queryParameters = {};
831
1143
  const request = {
832
- method: "GET",
1144
+ method: "PUT",
833
1145
  path: requestPath,
834
1146
  queryParameters,
835
1147
  headers
836
1148
  };
837
- return transporter.request(request, requestOptions);
1149
+ return transporter.requestWithHttpInfo(request, requestOptions);
838
1150
  },
839
1151
  /**
840
- * Retrieves a task by its ID using the v1 endpoint. Use `getTask` instead.
1152
+ * Enables a task.
841
1153
  *
842
1154
  * Required API Key ACLs:
843
1155
  * - addObject
844
1156
  * - deleteIndex
845
1157
  * - editSettings
846
- *
847
- * @deprecated
848
- * @param getTaskV1 - The getTaskV1 object.
849
- * @param getTaskV1.taskID - Unique identifier of a task.
1158
+ * @param enableTask - The enableTask object.
1159
+ * @param enableTask.taskID - Unique identifier of a task.
850
1160
  * @param requestOptions - The requestOptions to send along with the query, they will be merged with the transporter requestOptions.
851
1161
  */
852
- getTaskV1({ taskID }, requestOptions) {
853
- (0, import_client_common.validateRequired)("taskID", "getTaskV1", taskID);
854
- const requestPath = "/1/tasks/{taskID}".replace("{taskID}", encodeURIComponent(taskID));
1162
+ enableTask({ taskID }, requestOptions) {
1163
+ (0, import_client_common.validateRequired)("taskID", "enableTask", taskID);
1164
+ const requestPath = "/2/tasks/{taskID}/enable".replace("{taskID}", encodeURIComponent(taskID));
855
1165
  const headers = {};
856
1166
  const queryParameters = {};
857
1167
  const request = {
858
- method: "GET",
1168
+ method: "PUT",
859
1169
  path: requestPath,
860
1170
  queryParameters,
861
1171
  headers
@@ -863,63 +1173,651 @@ function createIngestionClient({
863
1173
  return transporter.request(request, requestOptions);
864
1174
  },
865
1175
  /**
866
- * Retrieves a transformation by its ID.
1176
+ * Enables a task.
1177
+ *
1178
+ * Resolves with the full HTTP response information: status code, headers (when the requester captures them), raw body and deserialized data. Bypasses the requests and responses caches: always performs the API call.
867
1179
  *
868
1180
  * Required API Key ACLs:
869
1181
  * - addObject
870
1182
  * - deleteIndex
871
1183
  * - editSettings
872
- * @param getTransformation - The getTransformation object.
873
- * @param getTransformation.transformationID - Unique identifier of a transformation.
1184
+ * @param enableTask - The enableTask object.
1185
+ * @param enableTask.taskID - Unique identifier of a task.
874
1186
  * @param requestOptions - The requestOptions to send along with the query, they will be merged with the transporter requestOptions.
1187
+ * @see enableTask for the plain version.
875
1188
  */
876
- getTransformation({ transformationID }, requestOptions) {
877
- (0, import_client_common.validateRequired)("transformationID", "getTransformation", transformationID);
878
- const requestPath = "/1/transformations/{transformationID}".replace(
879
- "{transformationID}",
880
- encodeURIComponent(transformationID)
881
- );
1189
+ enableTaskWithHTTPInfo({ taskID }, requestOptions) {
1190
+ (0, import_client_common.validateRequired)("taskID", "enableTaskWithHTTPInfo", taskID);
1191
+ const requestPath = "/2/tasks/{taskID}/enable".replace("{taskID}", encodeURIComponent(taskID));
882
1192
  const headers = {};
883
1193
  const queryParameters = {};
884
1194
  const request = {
885
- method: "GET",
1195
+ method: "PUT",
886
1196
  path: requestPath,
887
1197
  queryParameters,
888
1198
  headers
889
1199
  };
890
- return transporter.request(request, requestOptions);
1200
+ return transporter.requestWithHttpInfo(request, requestOptions);
891
1201
  },
892
1202
  /**
893
- * Retrieves a list of all authentication resources.
1203
+ * Enables a task using the v1 endpoint. Use `enableTask` instead.
894
1204
  *
895
1205
  * Required API Key ACLs:
896
1206
  * - addObject
897
1207
  * - deleteIndex
898
1208
  * - editSettings
899
- * @param listAuthentications - The listAuthentications object.
900
- * @param listAuthentications.itemsPerPage - Number of items per page.
901
- * @param listAuthentications.page - Page number of the paginated API response.
902
- * @param listAuthentications.type - Type of authentication resource to retrieve.
903
- * @param listAuthentications.platform - Ecommerce platform for which to retrieve authentications.
904
- * @param listAuthentications.sort - Property by which to sort the list of authentications.
905
- * @param listAuthentications.order - Sort order of the response, ascending or descending.
1209
+ *
1210
+ * @deprecated
1211
+ * @param enableTaskV1 - The enableTaskV1 object.
1212
+ * @param enableTaskV1.taskID - Unique identifier of a task.
906
1213
  * @param requestOptions - The requestOptions to send along with the query, they will be merged with the transporter requestOptions.
907
1214
  */
908
- listAuthentications({ itemsPerPage, page, type, platform, sort, order } = {}, requestOptions = void 0) {
909
- const requestPath = "/1/authentications";
1215
+ enableTaskV1({ taskID }, requestOptions) {
1216
+ (0, import_client_common.validateRequired)("taskID", "enableTaskV1", taskID);
1217
+ const requestPath = "/1/tasks/{taskID}/enable".replace("{taskID}", encodeURIComponent(taskID));
910
1218
  const headers = {};
911
1219
  const queryParameters = {};
912
- if (itemsPerPage !== void 0) {
913
- queryParameters["itemsPerPage"] = itemsPerPage.toString();
914
- }
915
- if (page !== void 0) {
916
- queryParameters["page"] = page.toString();
917
- }
918
- if (type !== void 0) {
919
- queryParameters["type"] = type.toString();
920
- }
921
- if (platform !== void 0) {
922
- queryParameters["platform"] = platform.toString();
1220
+ const request = {
1221
+ method: "PUT",
1222
+ path: requestPath,
1223
+ queryParameters,
1224
+ headers
1225
+ };
1226
+ return transporter.request(request, requestOptions);
1227
+ },
1228
+ /**
1229
+ * Enables a task using the v1 endpoint. Use `enableTask` instead.
1230
+ *
1231
+ * Resolves with the full HTTP response information: status code, headers (when the requester captures them), raw body and deserialized data. Bypasses the requests and responses caches: always performs the API call.
1232
+ *
1233
+ * Required API Key ACLs:
1234
+ * - addObject
1235
+ * - deleteIndex
1236
+ * - editSettings
1237
+ *
1238
+ * @deprecated
1239
+ * @param enableTaskV1 - The enableTaskV1 object.
1240
+ * @param enableTaskV1.taskID - Unique identifier of a task.
1241
+ * @param requestOptions - The requestOptions to send along with the query, they will be merged with the transporter requestOptions.
1242
+ * @see enableTaskV1 for the plain version.
1243
+ */
1244
+ enableTaskV1WithHTTPInfo({ taskID }, requestOptions) {
1245
+ (0, import_client_common.validateRequired)("taskID", "enableTaskV1WithHTTPInfo", taskID);
1246
+ const requestPath = "/1/tasks/{taskID}/enable".replace("{taskID}", encodeURIComponent(taskID));
1247
+ const headers = {};
1248
+ const queryParameters = {};
1249
+ const request = {
1250
+ method: "PUT",
1251
+ path: requestPath,
1252
+ queryParameters,
1253
+ headers
1254
+ };
1255
+ return transporter.requestWithHttpInfo(request, requestOptions);
1256
+ },
1257
+ /**
1258
+ * Retrieves an authentication resource by its ID.
1259
+ *
1260
+ * Required API Key ACLs:
1261
+ * - addObject
1262
+ * - deleteIndex
1263
+ * - editSettings
1264
+ * @param getAuthentication - The getAuthentication object.
1265
+ * @param getAuthentication.authenticationID - Unique identifier of an authentication resource.
1266
+ * @param requestOptions - The requestOptions to send along with the query, they will be merged with the transporter requestOptions.
1267
+ */
1268
+ getAuthentication({ authenticationID }, requestOptions) {
1269
+ (0, import_client_common.validateRequired)("authenticationID", "getAuthentication", authenticationID);
1270
+ const requestPath = "/1/authentications/{authenticationID}".replace(
1271
+ "{authenticationID}",
1272
+ encodeURIComponent(authenticationID)
1273
+ );
1274
+ const headers = {};
1275
+ const queryParameters = {};
1276
+ const request = {
1277
+ method: "GET",
1278
+ path: requestPath,
1279
+ queryParameters,
1280
+ headers
1281
+ };
1282
+ return transporter.request(request, requestOptions);
1283
+ },
1284
+ /**
1285
+ * Retrieves an authentication resource by its ID.
1286
+ *
1287
+ * Resolves with the full HTTP response information: status code, headers (when the requester captures them), raw body and deserialized data. Bypasses the requests and responses caches: always performs the API call.
1288
+ *
1289
+ * Required API Key ACLs:
1290
+ * - addObject
1291
+ * - deleteIndex
1292
+ * - editSettings
1293
+ * @param getAuthentication - The getAuthentication object.
1294
+ * @param getAuthentication.authenticationID - Unique identifier of an authentication resource.
1295
+ * @param requestOptions - The requestOptions to send along with the query, they will be merged with the transporter requestOptions.
1296
+ * @see getAuthentication for the plain version.
1297
+ */
1298
+ getAuthenticationWithHTTPInfo({ authenticationID }, requestOptions) {
1299
+ (0, import_client_common.validateRequired)("authenticationID", "getAuthenticationWithHTTPInfo", authenticationID);
1300
+ const requestPath = "/1/authentications/{authenticationID}".replace(
1301
+ "{authenticationID}",
1302
+ encodeURIComponent(authenticationID)
1303
+ );
1304
+ const headers = {};
1305
+ const queryParameters = {};
1306
+ const request = {
1307
+ method: "GET",
1308
+ path: requestPath,
1309
+ queryParameters,
1310
+ headers
1311
+ };
1312
+ return transporter.requestWithHttpInfo(request, requestOptions);
1313
+ },
1314
+ /**
1315
+ * Retrieves a destination by its ID.
1316
+ *
1317
+ * Required API Key ACLs:
1318
+ * - addObject
1319
+ * - deleteIndex
1320
+ * - editSettings
1321
+ * @param getDestination - The getDestination object.
1322
+ * @param getDestination.destinationID - Unique identifier of a destination.
1323
+ * @param requestOptions - The requestOptions to send along with the query, they will be merged with the transporter requestOptions.
1324
+ */
1325
+ getDestination({ destinationID }, requestOptions) {
1326
+ (0, import_client_common.validateRequired)("destinationID", "getDestination", destinationID);
1327
+ const requestPath = "/1/destinations/{destinationID}".replace(
1328
+ "{destinationID}",
1329
+ encodeURIComponent(destinationID)
1330
+ );
1331
+ const headers = {};
1332
+ const queryParameters = {};
1333
+ const request = {
1334
+ method: "GET",
1335
+ path: requestPath,
1336
+ queryParameters,
1337
+ headers
1338
+ };
1339
+ return transporter.request(request, requestOptions);
1340
+ },
1341
+ /**
1342
+ * Retrieves a destination by its ID.
1343
+ *
1344
+ * Resolves with the full HTTP response information: status code, headers (when the requester captures them), raw body and deserialized data. Bypasses the requests and responses caches: always performs the API call.
1345
+ *
1346
+ * Required API Key ACLs:
1347
+ * - addObject
1348
+ * - deleteIndex
1349
+ * - editSettings
1350
+ * @param getDestination - The getDestination object.
1351
+ * @param getDestination.destinationID - Unique identifier of a destination.
1352
+ * @param requestOptions - The requestOptions to send along with the query, they will be merged with the transporter requestOptions.
1353
+ * @see getDestination for the plain version.
1354
+ */
1355
+ getDestinationWithHTTPInfo({ destinationID }, requestOptions) {
1356
+ (0, import_client_common.validateRequired)("destinationID", "getDestinationWithHTTPInfo", destinationID);
1357
+ const requestPath = "/1/destinations/{destinationID}".replace(
1358
+ "{destinationID}",
1359
+ encodeURIComponent(destinationID)
1360
+ );
1361
+ const headers = {};
1362
+ const queryParameters = {};
1363
+ const request = {
1364
+ method: "GET",
1365
+ path: requestPath,
1366
+ queryParameters,
1367
+ headers
1368
+ };
1369
+ return transporter.requestWithHttpInfo(request, requestOptions);
1370
+ },
1371
+ /**
1372
+ * Retrieves a single task run event by its ID.
1373
+ *
1374
+ * Required API Key ACLs:
1375
+ * - addObject
1376
+ * - deleteIndex
1377
+ * - editSettings
1378
+ * @param getEvent - The getEvent object.
1379
+ * @param getEvent.runID - Unique identifier of a task run.
1380
+ * @param getEvent.eventID - Unique identifier of an event.
1381
+ * @param requestOptions - The requestOptions to send along with the query, they will be merged with the transporter requestOptions.
1382
+ */
1383
+ getEvent({ runID, eventID }, requestOptions) {
1384
+ (0, import_client_common.validateRequired)("runID", "getEvent", runID);
1385
+ (0, import_client_common.validateRequired)("eventID", "getEvent", eventID);
1386
+ const requestPath = "/1/runs/{runID}/events/{eventID}".replace("{runID}", encodeURIComponent(runID)).replace("{eventID}", encodeURIComponent(eventID));
1387
+ const headers = {};
1388
+ const queryParameters = {};
1389
+ const request = {
1390
+ method: "GET",
1391
+ path: requestPath,
1392
+ queryParameters,
1393
+ headers
1394
+ };
1395
+ return transporter.request(request, requestOptions);
1396
+ },
1397
+ /**
1398
+ * Retrieves a single task run event by its ID.
1399
+ *
1400
+ * Resolves with the full HTTP response information: status code, headers (when the requester captures them), raw body and deserialized data. Bypasses the requests and responses caches: always performs the API call.
1401
+ *
1402
+ * Required API Key ACLs:
1403
+ * - addObject
1404
+ * - deleteIndex
1405
+ * - editSettings
1406
+ * @param getEvent - The getEvent object.
1407
+ * @param getEvent.runID - Unique identifier of a task run.
1408
+ * @param getEvent.eventID - Unique identifier of an event.
1409
+ * @param requestOptions - The requestOptions to send along with the query, they will be merged with the transporter requestOptions.
1410
+ * @see getEvent for the plain version.
1411
+ */
1412
+ getEventWithHTTPInfo({ runID, eventID }, requestOptions) {
1413
+ (0, import_client_common.validateRequired)("runID", "getEventWithHTTPInfo", runID);
1414
+ (0, import_client_common.validateRequired)("eventID", "getEventWithHTTPInfo", eventID);
1415
+ const requestPath = "/1/runs/{runID}/events/{eventID}".replace("{runID}", encodeURIComponent(runID)).replace("{eventID}", encodeURIComponent(eventID));
1416
+ const headers = {};
1417
+ const queryParameters = {};
1418
+ const request = {
1419
+ method: "GET",
1420
+ path: requestPath,
1421
+ queryParameters,
1422
+ headers
1423
+ };
1424
+ return transporter.requestWithHttpInfo(request, requestOptions);
1425
+ },
1426
+ /**
1427
+ * Retrieve a single task run by its ID.
1428
+ *
1429
+ * Required API Key ACLs:
1430
+ * - addObject
1431
+ * - deleteIndex
1432
+ * - editSettings
1433
+ * @param getRun - The getRun object.
1434
+ * @param getRun.runID - Unique identifier of a task run.
1435
+ * @param requestOptions - The requestOptions to send along with the query, they will be merged with the transporter requestOptions.
1436
+ */
1437
+ getRun({ runID }, requestOptions) {
1438
+ (0, import_client_common.validateRequired)("runID", "getRun", runID);
1439
+ const requestPath = "/1/runs/{runID}".replace("{runID}", encodeURIComponent(runID));
1440
+ const headers = {};
1441
+ const queryParameters = {};
1442
+ const request = {
1443
+ method: "GET",
1444
+ path: requestPath,
1445
+ queryParameters,
1446
+ headers
1447
+ };
1448
+ return transporter.request(request, requestOptions);
1449
+ },
1450
+ /**
1451
+ * Retrieve a single task run by its ID.
1452
+ *
1453
+ * Resolves with the full HTTP response information: status code, headers (when the requester captures them), raw body and deserialized data. Bypasses the requests and responses caches: always performs the API call.
1454
+ *
1455
+ * Required API Key ACLs:
1456
+ * - addObject
1457
+ * - deleteIndex
1458
+ * - editSettings
1459
+ * @param getRun - The getRun object.
1460
+ * @param getRun.runID - Unique identifier of a task run.
1461
+ * @param requestOptions - The requestOptions to send along with the query, they will be merged with the transporter requestOptions.
1462
+ * @see getRun for the plain version.
1463
+ */
1464
+ getRunWithHTTPInfo({ runID }, requestOptions) {
1465
+ (0, import_client_common.validateRequired)("runID", "getRunWithHTTPInfo", runID);
1466
+ const requestPath = "/1/runs/{runID}".replace("{runID}", encodeURIComponent(runID));
1467
+ const headers = {};
1468
+ const queryParameters = {};
1469
+ const request = {
1470
+ method: "GET",
1471
+ path: requestPath,
1472
+ queryParameters,
1473
+ headers
1474
+ };
1475
+ return transporter.requestWithHttpInfo(request, requestOptions);
1476
+ },
1477
+ /**
1478
+ * Retrieve a source by its ID.
1479
+ *
1480
+ * Required API Key ACLs:
1481
+ * - addObject
1482
+ * - deleteIndex
1483
+ * - editSettings
1484
+ * @param getSource - The getSource object.
1485
+ * @param getSource.sourceID - Unique identifier of a source.
1486
+ * @param requestOptions - The requestOptions to send along with the query, they will be merged with the transporter requestOptions.
1487
+ */
1488
+ getSource({ sourceID }, requestOptions) {
1489
+ (0, import_client_common.validateRequired)("sourceID", "getSource", sourceID);
1490
+ const requestPath = "/1/sources/{sourceID}".replace("{sourceID}", encodeURIComponent(sourceID));
1491
+ const headers = {};
1492
+ const queryParameters = {};
1493
+ const request = {
1494
+ method: "GET",
1495
+ path: requestPath,
1496
+ queryParameters,
1497
+ headers
1498
+ };
1499
+ return transporter.request(request, requestOptions);
1500
+ },
1501
+ /**
1502
+ * Retrieve a source by its ID.
1503
+ *
1504
+ * Resolves with the full HTTP response information: status code, headers (when the requester captures them), raw body and deserialized data. Bypasses the requests and responses caches: always performs the API call.
1505
+ *
1506
+ * Required API Key ACLs:
1507
+ * - addObject
1508
+ * - deleteIndex
1509
+ * - editSettings
1510
+ * @param getSource - The getSource object.
1511
+ * @param getSource.sourceID - Unique identifier of a source.
1512
+ * @param requestOptions - The requestOptions to send along with the query, they will be merged with the transporter requestOptions.
1513
+ * @see getSource for the plain version.
1514
+ */
1515
+ getSourceWithHTTPInfo({ sourceID }, requestOptions) {
1516
+ (0, import_client_common.validateRequired)("sourceID", "getSourceWithHTTPInfo", sourceID);
1517
+ const requestPath = "/1/sources/{sourceID}".replace("{sourceID}", encodeURIComponent(sourceID));
1518
+ const headers = {};
1519
+ const queryParameters = {};
1520
+ const request = {
1521
+ method: "GET",
1522
+ path: requestPath,
1523
+ queryParameters,
1524
+ headers
1525
+ };
1526
+ return transporter.requestWithHttpInfo(request, requestOptions);
1527
+ },
1528
+ /**
1529
+ * Retrieves a task by its ID.
1530
+ *
1531
+ * Required API Key ACLs:
1532
+ * - addObject
1533
+ * - deleteIndex
1534
+ * - editSettings
1535
+ * @param getTask - The getTask object.
1536
+ * @param getTask.taskID - Unique identifier of a task.
1537
+ * @param requestOptions - The requestOptions to send along with the query, they will be merged with the transporter requestOptions.
1538
+ */
1539
+ getTask({ taskID }, requestOptions) {
1540
+ (0, import_client_common.validateRequired)("taskID", "getTask", taskID);
1541
+ const requestPath = "/2/tasks/{taskID}".replace("{taskID}", encodeURIComponent(taskID));
1542
+ const headers = {};
1543
+ const queryParameters = {};
1544
+ const request = {
1545
+ method: "GET",
1546
+ path: requestPath,
1547
+ queryParameters,
1548
+ headers
1549
+ };
1550
+ return transporter.request(request, requestOptions);
1551
+ },
1552
+ /**
1553
+ * Retrieves a task by its ID.
1554
+ *
1555
+ * Resolves with the full HTTP response information: status code, headers (when the requester captures them), raw body and deserialized data. Bypasses the requests and responses caches: always performs the API call.
1556
+ *
1557
+ * Required API Key ACLs:
1558
+ * - addObject
1559
+ * - deleteIndex
1560
+ * - editSettings
1561
+ * @param getTask - The getTask object.
1562
+ * @param getTask.taskID - Unique identifier of a task.
1563
+ * @param requestOptions - The requestOptions to send along with the query, they will be merged with the transporter requestOptions.
1564
+ * @see getTask for the plain version.
1565
+ */
1566
+ getTaskWithHTTPInfo({ taskID }, requestOptions) {
1567
+ (0, import_client_common.validateRequired)("taskID", "getTaskWithHTTPInfo", taskID);
1568
+ const requestPath = "/2/tasks/{taskID}".replace("{taskID}", encodeURIComponent(taskID));
1569
+ const headers = {};
1570
+ const queryParameters = {};
1571
+ const request = {
1572
+ method: "GET",
1573
+ path: requestPath,
1574
+ queryParameters,
1575
+ headers
1576
+ };
1577
+ return transporter.requestWithHttpInfo(request, requestOptions);
1578
+ },
1579
+ /**
1580
+ * Retrieves a task by its ID using the v1 endpoint. Use `getTask` instead.
1581
+ *
1582
+ * Required API Key ACLs:
1583
+ * - addObject
1584
+ * - deleteIndex
1585
+ * - editSettings
1586
+ *
1587
+ * @deprecated
1588
+ * @param getTaskV1 - The getTaskV1 object.
1589
+ * @param getTaskV1.taskID - Unique identifier of a task.
1590
+ * @param requestOptions - The requestOptions to send along with the query, they will be merged with the transporter requestOptions.
1591
+ */
1592
+ getTaskV1({ taskID }, requestOptions) {
1593
+ (0, import_client_common.validateRequired)("taskID", "getTaskV1", taskID);
1594
+ const requestPath = "/1/tasks/{taskID}".replace("{taskID}", encodeURIComponent(taskID));
1595
+ const headers = {};
1596
+ const queryParameters = {};
1597
+ const request = {
1598
+ method: "GET",
1599
+ path: requestPath,
1600
+ queryParameters,
1601
+ headers
1602
+ };
1603
+ return transporter.request(request, requestOptions);
1604
+ },
1605
+ /**
1606
+ * Retrieves a task by its ID using the v1 endpoint. Use `getTask` instead.
1607
+ *
1608
+ * Resolves with the full HTTP response information: status code, headers (when the requester captures them), raw body and deserialized data. Bypasses the requests and responses caches: always performs the API call.
1609
+ *
1610
+ * Required API Key ACLs:
1611
+ * - addObject
1612
+ * - deleteIndex
1613
+ * - editSettings
1614
+ *
1615
+ * @deprecated
1616
+ * @param getTaskV1 - The getTaskV1 object.
1617
+ * @param getTaskV1.taskID - Unique identifier of a task.
1618
+ * @param requestOptions - The requestOptions to send along with the query, they will be merged with the transporter requestOptions.
1619
+ * @see getTaskV1 for the plain version.
1620
+ */
1621
+ getTaskV1WithHTTPInfo({ taskID }, requestOptions) {
1622
+ (0, import_client_common.validateRequired)("taskID", "getTaskV1WithHTTPInfo", taskID);
1623
+ const requestPath = "/1/tasks/{taskID}".replace("{taskID}", encodeURIComponent(taskID));
1624
+ const headers = {};
1625
+ const queryParameters = {};
1626
+ const request = {
1627
+ method: "GET",
1628
+ path: requestPath,
1629
+ queryParameters,
1630
+ headers
1631
+ };
1632
+ return transporter.requestWithHttpInfo(request, requestOptions);
1633
+ },
1634
+ /**
1635
+ * Retrieves a transformation by its ID.
1636
+ *
1637
+ * Required API Key ACLs:
1638
+ * - addObject
1639
+ * - deleteIndex
1640
+ * - editSettings
1641
+ * @param getTransformation - The getTransformation object.
1642
+ * @param getTransformation.transformationID - Unique identifier of a transformation.
1643
+ * @param requestOptions - The requestOptions to send along with the query, they will be merged with the transporter requestOptions.
1644
+ */
1645
+ getTransformation({ transformationID }, requestOptions) {
1646
+ (0, import_client_common.validateRequired)("transformationID", "getTransformation", transformationID);
1647
+ const requestPath = "/1/transformations/{transformationID}".replace(
1648
+ "{transformationID}",
1649
+ encodeURIComponent(transformationID)
1650
+ );
1651
+ const headers = {};
1652
+ const queryParameters = {};
1653
+ const request = {
1654
+ method: "GET",
1655
+ path: requestPath,
1656
+ queryParameters,
1657
+ headers
1658
+ };
1659
+ return transporter.request(request, requestOptions);
1660
+ },
1661
+ /**
1662
+ * Retrieves a transformation by its ID.
1663
+ *
1664
+ * Resolves with the full HTTP response information: status code, headers (when the requester captures them), raw body and deserialized data. Bypasses the requests and responses caches: always performs the API call.
1665
+ *
1666
+ * Required API Key ACLs:
1667
+ * - addObject
1668
+ * - deleteIndex
1669
+ * - editSettings
1670
+ * @param getTransformation - The getTransformation object.
1671
+ * @param getTransformation.transformationID - Unique identifier of a transformation.
1672
+ * @param requestOptions - The requestOptions to send along with the query, they will be merged with the transporter requestOptions.
1673
+ * @see getTransformation for the plain version.
1674
+ */
1675
+ getTransformationWithHTTPInfo({ transformationID }, requestOptions) {
1676
+ (0, import_client_common.validateRequired)("transformationID", "getTransformationWithHTTPInfo", transformationID);
1677
+ const requestPath = "/1/transformations/{transformationID}".replace(
1678
+ "{transformationID}",
1679
+ encodeURIComponent(transformationID)
1680
+ );
1681
+ const headers = {};
1682
+ const queryParameters = {};
1683
+ const request = {
1684
+ method: "GET",
1685
+ path: requestPath,
1686
+ queryParameters,
1687
+ headers
1688
+ };
1689
+ return transporter.requestWithHttpInfo(request, requestOptions);
1690
+ },
1691
+ /**
1692
+ * Retrieves a list of all authentication resources.
1693
+ *
1694
+ * Required API Key ACLs:
1695
+ * - addObject
1696
+ * - deleteIndex
1697
+ * - editSettings
1698
+ * @param listAuthentications - The listAuthentications object.
1699
+ * @param listAuthentications.itemsPerPage - Number of items per page.
1700
+ * @param listAuthentications.page - Page number of the paginated API response.
1701
+ * @param listAuthentications.type - Type of authentication resource to retrieve.
1702
+ * @param listAuthentications.platform - Ecommerce platform for which to retrieve authentications.
1703
+ * @param listAuthentications.sort - Property by which to sort the list of authentications.
1704
+ * @param listAuthentications.order - Sort order of the response, ascending or descending.
1705
+ * @param requestOptions - The requestOptions to send along with the query, they will be merged with the transporter requestOptions.
1706
+ */
1707
+ listAuthentications({ itemsPerPage, page, type, platform, sort, order } = {}, requestOptions = void 0) {
1708
+ const requestPath = "/1/authentications";
1709
+ const headers = {};
1710
+ const queryParameters = {};
1711
+ if (itemsPerPage !== void 0) {
1712
+ queryParameters["itemsPerPage"] = itemsPerPage.toString();
1713
+ }
1714
+ if (page !== void 0) {
1715
+ queryParameters["page"] = page.toString();
1716
+ }
1717
+ if (type !== void 0) {
1718
+ queryParameters["type"] = type.toString();
1719
+ }
1720
+ if (platform !== void 0) {
1721
+ queryParameters["platform"] = platform.toString();
1722
+ }
1723
+ if (sort !== void 0) {
1724
+ queryParameters["sort"] = sort.toString();
1725
+ }
1726
+ if (order !== void 0) {
1727
+ queryParameters["order"] = order.toString();
1728
+ }
1729
+ const request = {
1730
+ method: "GET",
1731
+ path: requestPath,
1732
+ queryParameters,
1733
+ headers
1734
+ };
1735
+ return transporter.request(request, requestOptions);
1736
+ },
1737
+ /**
1738
+ * Retrieves a list of all authentication resources.
1739
+ *
1740
+ * Resolves with the full HTTP response information: status code, headers (when the requester captures them), raw body and deserialized data. Bypasses the requests and responses caches: always performs the API call.
1741
+ *
1742
+ * Required API Key ACLs:
1743
+ * - addObject
1744
+ * - deleteIndex
1745
+ * - editSettings
1746
+ * @param listAuthentications - The listAuthentications object.
1747
+ * @param listAuthentications.itemsPerPage - Number of items per page.
1748
+ * @param listAuthentications.page - Page number of the paginated API response.
1749
+ * @param listAuthentications.type - Type of authentication resource to retrieve.
1750
+ * @param listAuthentications.platform - Ecommerce platform for which to retrieve authentications.
1751
+ * @param listAuthentications.sort - Property by which to sort the list of authentications.
1752
+ * @param listAuthentications.order - Sort order of the response, ascending or descending.
1753
+ * @param requestOptions - The requestOptions to send along with the query, they will be merged with the transporter requestOptions.
1754
+ * @see listAuthentications for the plain version.
1755
+ */
1756
+ listAuthenticationsWithHTTPInfo({ itemsPerPage, page, type, platform, sort, order } = {}, requestOptions = void 0) {
1757
+ const requestPath = "/1/authentications";
1758
+ const headers = {};
1759
+ const queryParameters = {};
1760
+ if (itemsPerPage !== void 0) {
1761
+ queryParameters["itemsPerPage"] = itemsPerPage.toString();
1762
+ }
1763
+ if (page !== void 0) {
1764
+ queryParameters["page"] = page.toString();
1765
+ }
1766
+ if (type !== void 0) {
1767
+ queryParameters["type"] = type.toString();
1768
+ }
1769
+ if (platform !== void 0) {
1770
+ queryParameters["platform"] = platform.toString();
1771
+ }
1772
+ if (sort !== void 0) {
1773
+ queryParameters["sort"] = sort.toString();
1774
+ }
1775
+ if (order !== void 0) {
1776
+ queryParameters["order"] = order.toString();
1777
+ }
1778
+ const request = {
1779
+ method: "GET",
1780
+ path: requestPath,
1781
+ queryParameters,
1782
+ headers
1783
+ };
1784
+ return transporter.requestWithHttpInfo(request, requestOptions);
1785
+ },
1786
+ /**
1787
+ * Retrieves a list of destinations.
1788
+ *
1789
+ * Required API Key ACLs:
1790
+ * - addObject
1791
+ * - deleteIndex
1792
+ * - editSettings
1793
+ * @param listDestinations - The listDestinations object.
1794
+ * @param listDestinations.itemsPerPage - Number of items per page.
1795
+ * @param listDestinations.page - Page number of the paginated API response.
1796
+ * @param listDestinations.type - Destination type.
1797
+ * @param listDestinations.authenticationID - Authentication ID used by destinations.
1798
+ * @param listDestinations.transformationID - Get the list of destinations used by a transformation.
1799
+ * @param listDestinations.sort - Property by which to sort the destinations.
1800
+ * @param listDestinations.order - Sort order of the response, ascending or descending.
1801
+ * @param requestOptions - The requestOptions to send along with the query, they will be merged with the transporter requestOptions.
1802
+ */
1803
+ listDestinations({ itemsPerPage, page, type, authenticationID, transformationID, sort, order } = {}, requestOptions = void 0) {
1804
+ const requestPath = "/1/destinations";
1805
+ const headers = {};
1806
+ const queryParameters = {};
1807
+ if (itemsPerPage !== void 0) {
1808
+ queryParameters["itemsPerPage"] = itemsPerPage.toString();
1809
+ }
1810
+ if (page !== void 0) {
1811
+ queryParameters["page"] = page.toString();
1812
+ }
1813
+ if (type !== void 0) {
1814
+ queryParameters["type"] = type.toString();
1815
+ }
1816
+ if (authenticationID !== void 0) {
1817
+ queryParameters["authenticationID"] = authenticationID.toString();
1818
+ }
1819
+ if (transformationID !== void 0) {
1820
+ queryParameters["transformationID"] = transformationID.toString();
923
1821
  }
924
1822
  if (sort !== void 0) {
925
1823
  queryParameters["sort"] = sort.toString();
@@ -938,6 +1836,8 @@ function createIngestionClient({
938
1836
  /**
939
1837
  * Retrieves a list of destinations.
940
1838
  *
1839
+ * Resolves with the full HTTP response information: status code, headers (when the requester captures them), raw body and deserialized data. Bypasses the requests and responses caches: always performs the API call.
1840
+ *
941
1841
  * Required API Key ACLs:
942
1842
  * - addObject
943
1843
  * - deleteIndex
@@ -951,8 +1851,9 @@ function createIngestionClient({
951
1851
  * @param listDestinations.sort - Property by which to sort the destinations.
952
1852
  * @param listDestinations.order - Sort order of the response, ascending or descending.
953
1853
  * @param requestOptions - The requestOptions to send along with the query, they will be merged with the transporter requestOptions.
1854
+ * @see listDestinations for the plain version.
954
1855
  */
955
- listDestinations({ itemsPerPage, page, type, authenticationID, transformationID, sort, order } = {}, requestOptions = void 0) {
1856
+ listDestinationsWithHTTPInfo({ itemsPerPage, page, type, authenticationID, transformationID, sort, order } = {}, requestOptions = void 0) {
956
1857
  const requestPath = "/1/destinations";
957
1858
  const headers = {};
958
1859
  const queryParameters = {};
@@ -983,7 +1884,7 @@ function createIngestionClient({
983
1884
  queryParameters,
984
1885
  headers
985
1886
  };
986
- return transporter.request(request, requestOptions);
1887
+ return transporter.requestWithHttpInfo(request, requestOptions);
987
1888
  },
988
1889
  /**
989
1890
  * Retrieves a list of events for a task run, identified by its ID.
@@ -1041,6 +1942,65 @@ function createIngestionClient({
1041
1942
  };
1042
1943
  return transporter.request(request, requestOptions);
1043
1944
  },
1945
+ /**
1946
+ * Retrieves a list of events for a task run, identified by its ID.
1947
+ *
1948
+ * Resolves with the full HTTP response information: status code, headers (when the requester captures them), raw body and deserialized data. Bypasses the requests and responses caches: always performs the API call.
1949
+ *
1950
+ * Required API Key ACLs:
1951
+ * - addObject
1952
+ * - deleteIndex
1953
+ * - editSettings
1954
+ * @param listEvents - The listEvents object.
1955
+ * @param listEvents.runID - Unique identifier of a task run.
1956
+ * @param listEvents.itemsPerPage - Number of items per page.
1957
+ * @param listEvents.page - Page number of the paginated API response.
1958
+ * @param listEvents.status - Event status for filtering the list of task runs.
1959
+ * @param listEvents.type - Event type for filtering the list of task runs.
1960
+ * @param listEvents.sort - Property by which to sort the list of task run events.
1961
+ * @param listEvents.order - Sort order of the response, ascending or descending.
1962
+ * @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.
1963
+ * @param listEvents.endDate - Date and time in RFC 3339 format for the latest events to retrieve. By default, the current time is used.
1964
+ * @param requestOptions - The requestOptions to send along with the query, they will be merged with the transporter requestOptions.
1965
+ * @see listEvents for the plain version.
1966
+ */
1967
+ listEventsWithHTTPInfo({ runID, itemsPerPage, page, status, type, sort, order, startDate, endDate }, requestOptions) {
1968
+ (0, import_client_common.validateRequired)("runID", "listEventsWithHTTPInfo", runID);
1969
+ const requestPath = "/1/runs/{runID}/events".replace("{runID}", encodeURIComponent(runID));
1970
+ const headers = {};
1971
+ const queryParameters = {};
1972
+ if (itemsPerPage !== void 0) {
1973
+ queryParameters["itemsPerPage"] = itemsPerPage.toString();
1974
+ }
1975
+ if (page !== void 0) {
1976
+ queryParameters["page"] = page.toString();
1977
+ }
1978
+ if (status !== void 0) {
1979
+ queryParameters["status"] = status.toString();
1980
+ }
1981
+ if (type !== void 0) {
1982
+ queryParameters["type"] = type.toString();
1983
+ }
1984
+ if (sort !== void 0) {
1985
+ queryParameters["sort"] = sort.toString();
1986
+ }
1987
+ if (order !== void 0) {
1988
+ queryParameters["order"] = order.toString();
1989
+ }
1990
+ if (startDate !== void 0) {
1991
+ queryParameters["startDate"] = startDate.toString();
1992
+ }
1993
+ if (endDate !== void 0) {
1994
+ queryParameters["endDate"] = endDate.toString();
1995
+ }
1996
+ const request = {
1997
+ method: "GET",
1998
+ path: requestPath,
1999
+ queryParameters,
2000
+ headers
2001
+ };
2002
+ return transporter.requestWithHttpInfo(request, requestOptions);
2003
+ },
1044
2004
  /**
1045
2005
  * Retrieve a list of task runs.
1046
2006
  *
@@ -1099,6 +2059,67 @@ function createIngestionClient({
1099
2059
  };
1100
2060
  return transporter.request(request, requestOptions);
1101
2061
  },
2062
+ /**
2063
+ * Retrieve a list of task runs.
2064
+ *
2065
+ * Resolves with the full HTTP response information: status code, headers (when the requester captures them), raw body and deserialized data. Bypasses the requests and responses caches: always performs the API call.
2066
+ *
2067
+ * Required API Key ACLs:
2068
+ * - addObject
2069
+ * - deleteIndex
2070
+ * - editSettings
2071
+ * @param listRuns - The listRuns object.
2072
+ * @param listRuns.itemsPerPage - Number of items per page.
2073
+ * @param listRuns.page - Page number of the paginated API response.
2074
+ * @param listRuns.status - Run status for filtering the list of task runs.
2075
+ * @param listRuns.type - Run type for filtering the list of task runs.
2076
+ * @param listRuns.taskID - Task ID for filtering the list of task runs.
2077
+ * @param listRuns.sort - Property by which to sort the list of task runs.
2078
+ * @param listRuns.order - Sort order of the response, ascending or descending.
2079
+ * @param listRuns.startDate - Date and time for the earliest run to retrieve, in RFC 3339 format. By default, the current day minus seven days is used.
2080
+ * @param listRuns.endDate - Date and time for the latest run to retrieve, in RFC 3339 format. By default, the current day is used.
2081
+ * @param requestOptions - The requestOptions to send along with the query, they will be merged with the transporter requestOptions.
2082
+ * @see listRuns for the plain version.
2083
+ */
2084
+ listRunsWithHTTPInfo({ itemsPerPage, page, status, type, taskID, sort, order, startDate, endDate } = {}, requestOptions = void 0) {
2085
+ const requestPath = "/1/runs";
2086
+ const headers = {};
2087
+ const queryParameters = {};
2088
+ if (itemsPerPage !== void 0) {
2089
+ queryParameters["itemsPerPage"] = itemsPerPage.toString();
2090
+ }
2091
+ if (page !== void 0) {
2092
+ queryParameters["page"] = page.toString();
2093
+ }
2094
+ if (status !== void 0) {
2095
+ queryParameters["status"] = status.toString();
2096
+ }
2097
+ if (type !== void 0) {
2098
+ queryParameters["type"] = type.toString();
2099
+ }
2100
+ if (taskID !== void 0) {
2101
+ queryParameters["taskID"] = taskID.toString();
2102
+ }
2103
+ if (sort !== void 0) {
2104
+ queryParameters["sort"] = sort.toString();
2105
+ }
2106
+ if (order !== void 0) {
2107
+ queryParameters["order"] = order.toString();
2108
+ }
2109
+ if (startDate !== void 0) {
2110
+ queryParameters["startDate"] = startDate.toString();
2111
+ }
2112
+ if (endDate !== void 0) {
2113
+ queryParameters["endDate"] = endDate.toString();
2114
+ }
2115
+ const request = {
2116
+ method: "GET",
2117
+ path: requestPath,
2118
+ queryParameters,
2119
+ headers
2120
+ };
2121
+ return transporter.requestWithHttpInfo(request, requestOptions);
2122
+ },
1102
2123
  /**
1103
2124
  * Retrieves a list of sources.
1104
2125
  *
@@ -1125,11 +2146,138 @@ function createIngestionClient({
1125
2146
  if (page !== void 0) {
1126
2147
  queryParameters["page"] = page.toString();
1127
2148
  }
1128
- if (type !== void 0) {
1129
- queryParameters["type"] = type.toString();
2149
+ if (type !== void 0) {
2150
+ queryParameters["type"] = type.toString();
2151
+ }
2152
+ if (authenticationID !== void 0) {
2153
+ queryParameters["authenticationID"] = authenticationID.toString();
2154
+ }
2155
+ if (sort !== void 0) {
2156
+ queryParameters["sort"] = sort.toString();
2157
+ }
2158
+ if (order !== void 0) {
2159
+ queryParameters["order"] = order.toString();
2160
+ }
2161
+ const request = {
2162
+ method: "GET",
2163
+ path: requestPath,
2164
+ queryParameters,
2165
+ headers
2166
+ };
2167
+ return transporter.request(request, requestOptions);
2168
+ },
2169
+ /**
2170
+ * Retrieves a list of sources.
2171
+ *
2172
+ * Resolves with the full HTTP response information: status code, headers (when the requester captures them), raw body and deserialized data. Bypasses the requests and responses caches: always performs the API call.
2173
+ *
2174
+ * Required API Key ACLs:
2175
+ * - addObject
2176
+ * - deleteIndex
2177
+ * - editSettings
2178
+ * @param listSources - The listSources object.
2179
+ * @param listSources.itemsPerPage - Number of items per page.
2180
+ * @param listSources.page - Page number of the paginated API response.
2181
+ * @param listSources.type - Source type. Some sources require authentication.
2182
+ * @param listSources.authenticationID - Authentication IDs of the sources to retrieve. \'none\' returns sources that doesn\'t have an authentication.
2183
+ * @param listSources.sort - Property by which to sort the list of sources.
2184
+ * @param listSources.order - Sort order of the response, ascending or descending.
2185
+ * @param requestOptions - The requestOptions to send along with the query, they will be merged with the transporter requestOptions.
2186
+ * @see listSources for the plain version.
2187
+ */
2188
+ listSourcesWithHTTPInfo({ itemsPerPage, page, type, authenticationID, sort, order } = {}, requestOptions = void 0) {
2189
+ const requestPath = "/1/sources";
2190
+ const headers = {};
2191
+ const queryParameters = {};
2192
+ if (itemsPerPage !== void 0) {
2193
+ queryParameters["itemsPerPage"] = itemsPerPage.toString();
2194
+ }
2195
+ if (page !== void 0) {
2196
+ queryParameters["page"] = page.toString();
2197
+ }
2198
+ if (type !== void 0) {
2199
+ queryParameters["type"] = type.toString();
2200
+ }
2201
+ if (authenticationID !== void 0) {
2202
+ queryParameters["authenticationID"] = authenticationID.toString();
2203
+ }
2204
+ if (sort !== void 0) {
2205
+ queryParameters["sort"] = sort.toString();
2206
+ }
2207
+ if (order !== void 0) {
2208
+ queryParameters["order"] = order.toString();
2209
+ }
2210
+ const request = {
2211
+ method: "GET",
2212
+ path: requestPath,
2213
+ queryParameters,
2214
+ headers
2215
+ };
2216
+ return transporter.requestWithHttpInfo(request, requestOptions);
2217
+ },
2218
+ /**
2219
+ * Retrieves a list of tasks.
2220
+ *
2221
+ * Required API Key ACLs:
2222
+ * - addObject
2223
+ * - deleteIndex
2224
+ * - editSettings
2225
+ * @param listTasks - The listTasks object.
2226
+ * @param listTasks.itemsPerPage - Number of items per page.
2227
+ * @param listTasks.page - Page number of the paginated API response.
2228
+ * @param listTasks.action - Actions for filtering the list of tasks.
2229
+ * @param listTasks.enabled - Whether to filter the list of tasks by the `enabled` status.
2230
+ * @param listTasks.sourceID - Source IDs for filtering the list of tasks.
2231
+ * @param listTasks.sourceType - Filters the tasks with the specified source type.
2232
+ * @param listTasks.destinationID - Destination IDs for filtering the list of tasks.
2233
+ * @param listTasks.triggerType - Type of task trigger for filtering the list of tasks.
2234
+ * @param listTasks.withEmailNotifications - If specified, the response only includes tasks with notifications.email.enabled set to this value.
2235
+ * @param listTasks.sort - Property by which to sort the list of tasks.
2236
+ * @param listTasks.order - Sort order of the response, ascending or descending.
2237
+ * @param requestOptions - The requestOptions to send along with the query, they will be merged with the transporter requestOptions.
2238
+ */
2239
+ listTasks({
2240
+ itemsPerPage,
2241
+ page,
2242
+ action,
2243
+ enabled,
2244
+ sourceID,
2245
+ sourceType,
2246
+ destinationID,
2247
+ triggerType,
2248
+ withEmailNotifications,
2249
+ sort,
2250
+ order
2251
+ } = {}, requestOptions = void 0) {
2252
+ const requestPath = "/2/tasks";
2253
+ const headers = {};
2254
+ const queryParameters = {};
2255
+ if (itemsPerPage !== void 0) {
2256
+ queryParameters["itemsPerPage"] = itemsPerPage.toString();
2257
+ }
2258
+ if (page !== void 0) {
2259
+ queryParameters["page"] = page.toString();
2260
+ }
2261
+ if (action !== void 0) {
2262
+ queryParameters["action"] = action.toString();
1130
2263
  }
1131
- if (authenticationID !== void 0) {
1132
- queryParameters["authenticationID"] = authenticationID.toString();
2264
+ if (enabled !== void 0) {
2265
+ queryParameters["enabled"] = enabled.toString();
2266
+ }
2267
+ if (sourceID !== void 0) {
2268
+ queryParameters["sourceID"] = sourceID.toString();
2269
+ }
2270
+ if (sourceType !== void 0) {
2271
+ queryParameters["sourceType"] = sourceType.toString();
2272
+ }
2273
+ if (destinationID !== void 0) {
2274
+ queryParameters["destinationID"] = destinationID.toString();
2275
+ }
2276
+ if (triggerType !== void 0) {
2277
+ queryParameters["triggerType"] = triggerType.toString();
2278
+ }
2279
+ if (withEmailNotifications !== void 0) {
2280
+ queryParameters["withEmailNotifications"] = withEmailNotifications.toString();
1133
2281
  }
1134
2282
  if (sort !== void 0) {
1135
2283
  queryParameters["sort"] = sort.toString();
@@ -1148,6 +2296,8 @@ function createIngestionClient({
1148
2296
  /**
1149
2297
  * Retrieves a list of tasks.
1150
2298
  *
2299
+ * Resolves with the full HTTP response information: status code, headers (when the requester captures them), raw body and deserialized data. Bypasses the requests and responses caches: always performs the API call.
2300
+ *
1151
2301
  * Required API Key ACLs:
1152
2302
  * - addObject
1153
2303
  * - deleteIndex
@@ -1165,8 +2315,9 @@ function createIngestionClient({
1165
2315
  * @param listTasks.sort - Property by which to sort the list of tasks.
1166
2316
  * @param listTasks.order - Sort order of the response, ascending or descending.
1167
2317
  * @param requestOptions - The requestOptions to send along with the query, they will be merged with the transporter requestOptions.
2318
+ * @see listTasks for the plain version.
1168
2319
  */
1169
- listTasks({
2320
+ listTasksWithHTTPInfo({
1170
2321
  itemsPerPage,
1171
2322
  page,
1172
2323
  action,
@@ -1221,7 +2372,7 @@ function createIngestionClient({
1221
2372
  queryParameters,
1222
2373
  headers
1223
2374
  };
1224
- return transporter.request(request, requestOptions);
2375
+ return transporter.requestWithHttpInfo(request, requestOptions);
1225
2376
  },
1226
2377
  /**
1227
2378
  * Retrieves a list of tasks using the v1 endpoint. Use `getTasks` instead.
@@ -1283,6 +2434,69 @@ function createIngestionClient({
1283
2434
  };
1284
2435
  return transporter.request(request, requestOptions);
1285
2436
  },
2437
+ /**
2438
+ * Retrieves a list of tasks using the v1 endpoint. Use `getTasks` instead.
2439
+ *
2440
+ * Resolves with the full HTTP response information: status code, headers (when the requester captures them), raw body and deserialized data. Bypasses the requests and responses caches: always performs the API call.
2441
+ *
2442
+ * Required API Key ACLs:
2443
+ * - addObject
2444
+ * - deleteIndex
2445
+ * - editSettings
2446
+ *
2447
+ * @deprecated
2448
+ * @param listTasksV1 - The listTasksV1 object.
2449
+ * @param listTasksV1.itemsPerPage - Number of items per page.
2450
+ * @param listTasksV1.page - Page number of the paginated API response.
2451
+ * @param listTasksV1.action - Actions for filtering the list of tasks.
2452
+ * @param listTasksV1.enabled - Whether to filter the list of tasks by the `enabled` status.
2453
+ * @param listTasksV1.sourceID - Source IDs for filtering the list of tasks.
2454
+ * @param listTasksV1.destinationID - Destination IDs for filtering the list of tasks.
2455
+ * @param listTasksV1.triggerType - Type of task trigger for filtering the list of tasks.
2456
+ * @param listTasksV1.sort - Property by which to sort the list of tasks.
2457
+ * @param listTasksV1.order - Sort order of the response, ascending or descending.
2458
+ * @param requestOptions - The requestOptions to send along with the query, they will be merged with the transporter requestOptions.
2459
+ * @see listTasksV1 for the plain version.
2460
+ */
2461
+ listTasksV1WithHTTPInfo({ itemsPerPage, page, action, enabled, sourceID, destinationID, triggerType, sort, order } = {}, requestOptions = void 0) {
2462
+ const requestPath = "/1/tasks";
2463
+ const headers = {};
2464
+ const queryParameters = {};
2465
+ if (itemsPerPage !== void 0) {
2466
+ queryParameters["itemsPerPage"] = itemsPerPage.toString();
2467
+ }
2468
+ if (page !== void 0) {
2469
+ queryParameters["page"] = page.toString();
2470
+ }
2471
+ if (action !== void 0) {
2472
+ queryParameters["action"] = action.toString();
2473
+ }
2474
+ if (enabled !== void 0) {
2475
+ queryParameters["enabled"] = enabled.toString();
2476
+ }
2477
+ if (sourceID !== void 0) {
2478
+ queryParameters["sourceID"] = sourceID.toString();
2479
+ }
2480
+ if (destinationID !== void 0) {
2481
+ queryParameters["destinationID"] = destinationID.toString();
2482
+ }
2483
+ if (triggerType !== void 0) {
2484
+ queryParameters["triggerType"] = triggerType.toString();
2485
+ }
2486
+ if (sort !== void 0) {
2487
+ queryParameters["sort"] = sort.toString();
2488
+ }
2489
+ if (order !== void 0) {
2490
+ queryParameters["order"] = order.toString();
2491
+ }
2492
+ const request = {
2493
+ method: "GET",
2494
+ path: requestPath,
2495
+ queryParameters,
2496
+ headers
2497
+ };
2498
+ return transporter.requestWithHttpInfo(request, requestOptions);
2499
+ },
1286
2500
  /**
1287
2501
  * Retrieves a list of transformations.
1288
2502
  *
@@ -1325,6 +2539,51 @@ function createIngestionClient({
1325
2539
  };
1326
2540
  return transporter.request(request, requestOptions);
1327
2541
  },
2542
+ /**
2543
+ * Retrieves a list of transformations.
2544
+ *
2545
+ * Resolves with the full HTTP response information: status code, headers (when the requester captures them), raw body and deserialized data. Bypasses the requests and responses caches: always performs the API call.
2546
+ *
2547
+ * Required API Key ACLs:
2548
+ * - addObject
2549
+ * - deleteIndex
2550
+ * - editSettings
2551
+ * @param listTransformations - The listTransformations object.
2552
+ * @param listTransformations.itemsPerPage - Number of items per page.
2553
+ * @param listTransformations.page - Page number of the paginated API response.
2554
+ * @param listTransformations.sort - Property by which to sort the list of transformations.
2555
+ * @param listTransformations.order - Sort order of the response, ascending or descending.
2556
+ * @param listTransformations.type - Whether to filter the list of transformations by the type of transformation.
2557
+ * @param requestOptions - The requestOptions to send along with the query, they will be merged with the transporter requestOptions.
2558
+ * @see listTransformations for the plain version.
2559
+ */
2560
+ listTransformationsWithHTTPInfo({ itemsPerPage, page, sort, order, type } = {}, requestOptions = void 0) {
2561
+ const requestPath = "/1/transformations";
2562
+ const headers = {};
2563
+ const queryParameters = {};
2564
+ if (itemsPerPage !== void 0) {
2565
+ queryParameters["itemsPerPage"] = itemsPerPage.toString();
2566
+ }
2567
+ if (page !== void 0) {
2568
+ queryParameters["page"] = page.toString();
2569
+ }
2570
+ if (sort !== void 0) {
2571
+ queryParameters["sort"] = sort.toString();
2572
+ }
2573
+ if (order !== void 0) {
2574
+ queryParameters["order"] = order.toString();
2575
+ }
2576
+ if (type !== void 0) {
2577
+ queryParameters["type"] = type.toString();
2578
+ }
2579
+ const request = {
2580
+ method: "GET",
2581
+ path: requestPath,
2582
+ queryParameters,
2583
+ headers
2584
+ };
2585
+ return transporter.requestWithHttpInfo(request, requestOptions);
2586
+ },
1328
2587
  /**
1329
2588
  * Pushes records through the Pipeline, directly to an index. You can make the call synchronous by providing the `watch` parameter, for asynchronous calls, you can use the observability endpoints and/or debugger dashboard to see the status of your task. If you want to leverage the [pre-indexing data transformation](https://www.algolia.com/doc/guides/sending-and-managing-data/send-and-update-your-data/how-to/transform-your-data), this is the recommended way of ingesting your records. This method is similar to `pushTask`, but requires an `indexName` instead of a `taskID`. If zero or many tasks are found, an error will be returned.
1330
2589
  *
@@ -1361,6 +2620,7 @@ function createIngestionClient({
1361
2620
  data: pushTaskPayload
1362
2621
  };
1363
2622
  requestOptions = {
2623
+ ...requestOptions,
1364
2624
  timeouts: {
1365
2625
  connect: 18e4,
1366
2626
  read: 18e4,
@@ -1370,6 +2630,55 @@ function createIngestionClient({
1370
2630
  };
1371
2631
  return transporter.request(request, requestOptions);
1372
2632
  },
2633
+ /**
2634
+ * Pushes records through the Pipeline, directly to an index. You can make the call synchronous by providing the `watch` parameter, for asynchronous calls, you can use the observability endpoints and/or debugger dashboard to see the status of your task. If you want to leverage the [pre-indexing data transformation](https://www.algolia.com/doc/guides/sending-and-managing-data/send-and-update-your-data/how-to/transform-your-data), this is the recommended way of ingesting your records. This method is similar to `pushTask`, but requires an `indexName` instead of a `taskID`. If zero or many tasks are found, an error will be returned.
2635
+ *
2636
+ * Resolves with the full HTTP response information: status code, headers (when the requester captures them), raw body and deserialized data. Bypasses the requests and responses caches: always performs the API call.
2637
+ *
2638
+ * Required API Key ACLs:
2639
+ * - addObject
2640
+ * - deleteIndex
2641
+ * - editSettings
2642
+ * @param push - The push object.
2643
+ * @param push.indexName - Name of the index on which to perform the operation.
2644
+ * @param push.pushTaskPayload - The pushTaskPayload object.
2645
+ * @param push.watch - When provided, the push operation will be synchronous and the API will wait for the ingestion to be finished before responding.
2646
+ * @param push.referenceIndexName - This is required when targeting an index that does not have a push connector setup (e.g. a tmp index), but you wish to attach another index\'s transformation to it (e.g. the source index name).
2647
+ * @param requestOptions - The requestOptions to send along with the query, they will be merged with the transporter requestOptions.
2648
+ * @see push for the plain version.
2649
+ */
2650
+ pushWithHTTPInfo({ indexName, pushTaskPayload, watch, referenceIndexName }, requestOptions) {
2651
+ (0, import_client_common.validateRequired)("indexName", "pushWithHTTPInfo", indexName);
2652
+ (0, import_client_common.validateRequired)("pushTaskPayload", "pushWithHTTPInfo", pushTaskPayload);
2653
+ (0, import_client_common.validateRequired)("pushTaskPayload.action", "pushWithHTTPInfo", pushTaskPayload.action);
2654
+ (0, import_client_common.validateRequired)("pushTaskPayload.records", "pushWithHTTPInfo", pushTaskPayload.records);
2655
+ const requestPath = "/1/push/{indexName}".replace("{indexName}", encodeURIComponent(indexName));
2656
+ const headers = {};
2657
+ const queryParameters = {};
2658
+ if (watch !== void 0) {
2659
+ queryParameters["watch"] = watch.toString();
2660
+ }
2661
+ if (referenceIndexName !== void 0) {
2662
+ queryParameters["referenceIndexName"] = referenceIndexName.toString();
2663
+ }
2664
+ const request = {
2665
+ method: "POST",
2666
+ path: requestPath,
2667
+ queryParameters,
2668
+ headers,
2669
+ data: pushTaskPayload
2670
+ };
2671
+ requestOptions = {
2672
+ ...requestOptions,
2673
+ timeouts: {
2674
+ connect: 18e4,
2675
+ read: 18e4,
2676
+ write: 18e4,
2677
+ ...requestOptions == null ? void 0 : requestOptions.timeouts
2678
+ }
2679
+ };
2680
+ return transporter.requestWithHttpInfo(request, requestOptions);
2681
+ },
1373
2682
  /**
1374
2683
  * Pushes records through the pipeline, directly to an index. You can make the call synchronous by providing the `watch` parameter, for asynchronous calls, you can use the observability endpoints or the debugger dashboard to see the status of your task. If you want to transform your data before indexing, this is the recommended way of ingesting your records. This method is similar to `push`, but requires a `taskID` instead of a `indexName`, which is useful when many `destinations` target the same `indexName`.
1375
2684
  *
@@ -1402,6 +2711,7 @@ function createIngestionClient({
1402
2711
  data: pushTaskPayload
1403
2712
  };
1404
2713
  requestOptions = {
2714
+ ...requestOptions,
1405
2715
  timeouts: {
1406
2716
  connect: 18e4,
1407
2717
  read: 18e4,
@@ -1411,6 +2721,51 @@ function createIngestionClient({
1411
2721
  };
1412
2722
  return transporter.request(request, requestOptions);
1413
2723
  },
2724
+ /**
2725
+ * Pushes records through the pipeline, directly to an index. You can make the call synchronous by providing the `watch` parameter, for asynchronous calls, you can use the observability endpoints or the debugger dashboard to see the status of your task. If you want to transform your data before indexing, this is the recommended way of ingesting your records. This method is similar to `push`, but requires a `taskID` instead of a `indexName`, which is useful when many `destinations` target the same `indexName`.
2726
+ *
2727
+ * Resolves with the full HTTP response information: status code, headers (when the requester captures them), raw body and deserialized data. Bypasses the requests and responses caches: always performs the API call.
2728
+ *
2729
+ * Required API Key ACLs:
2730
+ * - addObject
2731
+ * - deleteIndex
2732
+ * - editSettings
2733
+ * @param pushTask - The pushTask object.
2734
+ * @param pushTask.taskID - Unique identifier of a task.
2735
+ * @param pushTask.pushTaskPayload - The pushTaskPayload object.
2736
+ * @param pushTask.watch - When provided, the push operation will be synchronous and the API will wait for the ingestion to be finished before responding.
2737
+ * @param requestOptions - The requestOptions to send along with the query, they will be merged with the transporter requestOptions.
2738
+ * @see pushTask for the plain version.
2739
+ */
2740
+ pushTaskWithHTTPInfo({ taskID, pushTaskPayload, watch }, requestOptions) {
2741
+ (0, import_client_common.validateRequired)("taskID", "pushTaskWithHTTPInfo", taskID);
2742
+ (0, import_client_common.validateRequired)("pushTaskPayload", "pushTaskWithHTTPInfo", pushTaskPayload);
2743
+ (0, import_client_common.validateRequired)("pushTaskPayload.action", "pushTaskWithHTTPInfo", pushTaskPayload.action);
2744
+ (0, import_client_common.validateRequired)("pushTaskPayload.records", "pushTaskWithHTTPInfo", pushTaskPayload.records);
2745
+ const requestPath = "/2/tasks/{taskID}/push".replace("{taskID}", encodeURIComponent(taskID));
2746
+ const headers = {};
2747
+ const queryParameters = {};
2748
+ if (watch !== void 0) {
2749
+ queryParameters["watch"] = watch.toString();
2750
+ }
2751
+ const request = {
2752
+ method: "POST",
2753
+ path: requestPath,
2754
+ queryParameters,
2755
+ headers,
2756
+ data: pushTaskPayload
2757
+ };
2758
+ requestOptions = {
2759
+ ...requestOptions,
2760
+ timeouts: {
2761
+ connect: 18e4,
2762
+ read: 18e4,
2763
+ write: 18e4,
2764
+ ...requestOptions == null ? void 0 : requestOptions.timeouts
2765
+ }
2766
+ };
2767
+ return transporter.requestWithHttpInfo(request, requestOptions);
2768
+ },
1414
2769
  /**
1415
2770
  * Fully updates a task by its ID, use partialUpdateTask if you only want to update a subset of fields.
1416
2771
  *
@@ -1436,13 +2791,73 @@ function createIngestionClient({
1436
2791
  path: requestPath,
1437
2792
  queryParameters,
1438
2793
  headers,
1439
- data: taskReplace
2794
+ data: taskReplace
2795
+ };
2796
+ return transporter.request(request, requestOptions);
2797
+ },
2798
+ /**
2799
+ * Fully updates a task by its ID, use partialUpdateTask if you only want to update a subset of fields.
2800
+ *
2801
+ * Resolves with the full HTTP response information: status code, headers (when the requester captures them), raw body and deserialized data. Bypasses the requests and responses caches: always performs the API call.
2802
+ *
2803
+ * Required API Key ACLs:
2804
+ * - addObject
2805
+ * - deleteIndex
2806
+ * - editSettings
2807
+ * @param replaceTask - The replaceTask object.
2808
+ * @param replaceTask.taskID - Unique identifier of a task.
2809
+ * @param replaceTask.taskReplace - The taskReplace object.
2810
+ * @param requestOptions - The requestOptions to send along with the query, they will be merged with the transporter requestOptions.
2811
+ * @see replaceTask for the plain version.
2812
+ */
2813
+ replaceTaskWithHTTPInfo({ taskID, taskReplace }, requestOptions) {
2814
+ (0, import_client_common.validateRequired)("taskID", "replaceTaskWithHTTPInfo", taskID);
2815
+ (0, import_client_common.validateRequired)("taskReplace", "replaceTaskWithHTTPInfo", taskReplace);
2816
+ (0, import_client_common.validateRequired)("taskReplace.destinationID", "replaceTaskWithHTTPInfo", taskReplace.destinationID);
2817
+ (0, import_client_common.validateRequired)("taskReplace.action", "replaceTaskWithHTTPInfo", taskReplace.action);
2818
+ const requestPath = "/2/tasks/{taskID}".replace("{taskID}", encodeURIComponent(taskID));
2819
+ const headers = {};
2820
+ const queryParameters = {};
2821
+ const request = {
2822
+ method: "PUT",
2823
+ path: requestPath,
2824
+ queryParameters,
2825
+ headers,
2826
+ data: taskReplace
2827
+ };
2828
+ return transporter.requestWithHttpInfo(request, requestOptions);
2829
+ },
2830
+ /**
2831
+ * Runs all tasks linked to a source, only available for Shopify, BigCommerce and commercetools sources. Creates one run per task.
2832
+ *
2833
+ * Required API Key ACLs:
2834
+ * - addObject
2835
+ * - deleteIndex
2836
+ * - editSettings
2837
+ * @param runSource - The runSource object.
2838
+ * @param runSource.sourceID - Unique identifier of a source.
2839
+ * @param runSource.runSourcePayload -
2840
+ * @param requestOptions - The requestOptions to send along with the query, they will be merged with the transporter requestOptions.
2841
+ */
2842
+ runSource({ sourceID, runSourcePayload }, requestOptions) {
2843
+ (0, import_client_common.validateRequired)("sourceID", "runSource", sourceID);
2844
+ const requestPath = "/1/sources/{sourceID}/run".replace("{sourceID}", encodeURIComponent(sourceID));
2845
+ const headers = {};
2846
+ const queryParameters = {};
2847
+ const request = {
2848
+ method: "POST",
2849
+ path: requestPath,
2850
+ queryParameters,
2851
+ headers,
2852
+ data: runSourcePayload ? runSourcePayload : {}
1440
2853
  };
1441
2854
  return transporter.request(request, requestOptions);
1442
2855
  },
1443
2856
  /**
1444
2857
  * Runs all tasks linked to a source, only available for Shopify, BigCommerce and commercetools sources. Creates one run per task.
1445
2858
  *
2859
+ * Resolves with the full HTTP response information: status code, headers (when the requester captures them), raw body and deserialized data. Bypasses the requests and responses caches: always performs the API call.
2860
+ *
1446
2861
  * Required API Key ACLs:
1447
2862
  * - addObject
1448
2863
  * - deleteIndex
@@ -1451,9 +2866,10 @@ function createIngestionClient({
1451
2866
  * @param runSource.sourceID - Unique identifier of a source.
1452
2867
  * @param runSource.runSourcePayload -
1453
2868
  * @param requestOptions - The requestOptions to send along with the query, they will be merged with the transporter requestOptions.
2869
+ * @see runSource for the plain version.
1454
2870
  */
1455
- runSource({ sourceID, runSourcePayload }, requestOptions) {
1456
- (0, import_client_common.validateRequired)("sourceID", "runSource", sourceID);
2871
+ runSourceWithHTTPInfo({ sourceID, runSourcePayload }, requestOptions) {
2872
+ (0, import_client_common.validateRequired)("sourceID", "runSourceWithHTTPInfo", sourceID);
1457
2873
  const requestPath = "/1/sources/{sourceID}/run".replace("{sourceID}", encodeURIComponent(sourceID));
1458
2874
  const headers = {};
1459
2875
  const queryParameters = {};
@@ -1464,7 +2880,7 @@ function createIngestionClient({
1464
2880
  headers,
1465
2881
  data: runSourcePayload ? runSourcePayload : {}
1466
2882
  };
1467
- return transporter.request(request, requestOptions);
2883
+ return transporter.requestWithHttpInfo(request, requestOptions);
1468
2884
  },
1469
2885
  /**
1470
2886
  * Runs a task. You can check the status of task runs with the observability endpoints.
@@ -1492,6 +2908,35 @@ function createIngestionClient({
1492
2908
  };
1493
2909
  return transporter.request(request, requestOptions);
1494
2910
  },
2911
+ /**
2912
+ * Runs a task. You can check the status of task runs with the observability endpoints.
2913
+ *
2914
+ * Resolves with the full HTTP response information: status code, headers (when the requester captures them), raw body and deserialized data. Bypasses the requests and responses caches: always performs the API call.
2915
+ *
2916
+ * Required API Key ACLs:
2917
+ * - addObject
2918
+ * - deleteIndex
2919
+ * - editSettings
2920
+ * @param runTask - The runTask object.
2921
+ * @param runTask.taskID - Unique identifier of a task.
2922
+ * @param runTask.runTaskPayload -
2923
+ * @param requestOptions - The requestOptions to send along with the query, they will be merged with the transporter requestOptions.
2924
+ * @see runTask for the plain version.
2925
+ */
2926
+ runTaskWithHTTPInfo({ taskID, runTaskPayload }, requestOptions) {
2927
+ (0, import_client_common.validateRequired)("taskID", "runTaskWithHTTPInfo", taskID);
2928
+ const requestPath = "/2/tasks/{taskID}/run".replace("{taskID}", encodeURIComponent(taskID));
2929
+ const headers = {};
2930
+ const queryParameters = {};
2931
+ const request = {
2932
+ method: "POST",
2933
+ path: requestPath,
2934
+ queryParameters,
2935
+ headers,
2936
+ data: runTaskPayload ? runTaskPayload : {}
2937
+ };
2938
+ return transporter.requestWithHttpInfo(request, requestOptions);
2939
+ },
1495
2940
  /**
1496
2941
  * Runs a task using the v1 endpoint. Use `runTask` instead. You can check the status of task runs with the observability endpoints.
1497
2942
  *
@@ -1520,6 +2965,37 @@ function createIngestionClient({
1520
2965
  };
1521
2966
  return transporter.request(request, requestOptions);
1522
2967
  },
2968
+ /**
2969
+ * Runs a task using the v1 endpoint. Use `runTask` instead. You can check the status of task runs with the observability endpoints.
2970
+ *
2971
+ * Resolves with the full HTTP response information: status code, headers (when the requester captures them), raw body and deserialized data. Bypasses the requests and responses caches: always performs the API call.
2972
+ *
2973
+ * Required API Key ACLs:
2974
+ * - addObject
2975
+ * - deleteIndex
2976
+ * - editSettings
2977
+ *
2978
+ * @deprecated
2979
+ * @param runTaskV1 - The runTaskV1 object.
2980
+ * @param runTaskV1.taskID - Unique identifier of a task.
2981
+ * @param runTaskV1.runTaskPayload -
2982
+ * @param requestOptions - The requestOptions to send along with the query, they will be merged with the transporter requestOptions.
2983
+ * @see runTaskV1 for the plain version.
2984
+ */
2985
+ runTaskV1WithHTTPInfo({ taskID, runTaskPayload }, requestOptions) {
2986
+ (0, import_client_common.validateRequired)("taskID", "runTaskV1WithHTTPInfo", taskID);
2987
+ const requestPath = "/1/tasks/{taskID}/run".replace("{taskID}", encodeURIComponent(taskID));
2988
+ const headers = {};
2989
+ const queryParameters = {};
2990
+ const request = {
2991
+ method: "POST",
2992
+ path: requestPath,
2993
+ queryParameters,
2994
+ headers,
2995
+ data: runTaskPayload ? runTaskPayload : {}
2996
+ };
2997
+ return transporter.requestWithHttpInfo(request, requestOptions);
2998
+ },
1523
2999
  /**
1524
3000
  * Searches for authentication resources.
1525
3001
  *
@@ -1549,6 +3025,38 @@ function createIngestionClient({
1549
3025
  };
1550
3026
  return transporter.request(request, requestOptions);
1551
3027
  },
3028
+ /**
3029
+ * Searches for authentication resources.
3030
+ *
3031
+ * Resolves with the full HTTP response information: status code, headers (when the requester captures them), raw body and deserialized data. Bypasses the requests and responses caches: always performs the API call.
3032
+ *
3033
+ * Required API Key ACLs:
3034
+ * - addObject
3035
+ * - deleteIndex
3036
+ * - editSettings
3037
+ * @param authenticationSearch - The authenticationSearch object.
3038
+ * @param requestOptions - The requestOptions to send along with the query, they will be merged with the transporter requestOptions.
3039
+ * @see searchAuthentications for the plain version.
3040
+ */
3041
+ searchAuthenticationsWithHTTPInfo(authenticationSearch, requestOptions) {
3042
+ (0, import_client_common.validateRequired)("authenticationSearch", "searchAuthenticationsWithHTTPInfo", authenticationSearch);
3043
+ (0, import_client_common.validateRequired)(
3044
+ "authenticationSearch.authenticationIDs",
3045
+ "searchAuthenticationsWithHTTPInfo",
3046
+ authenticationSearch.authenticationIDs
3047
+ );
3048
+ const requestPath = "/1/authentications/search";
3049
+ const headers = {};
3050
+ const queryParameters = {};
3051
+ const request = {
3052
+ method: "POST",
3053
+ path: requestPath,
3054
+ queryParameters,
3055
+ headers,
3056
+ data: authenticationSearch
3057
+ };
3058
+ return transporter.requestWithHttpInfo(request, requestOptions);
3059
+ },
1552
3060
  /**
1553
3061
  * Searches for destinations.
1554
3062
  *
@@ -1574,6 +3082,38 @@ function createIngestionClient({
1574
3082
  };
1575
3083
  return transporter.request(request, requestOptions);
1576
3084
  },
3085
+ /**
3086
+ * Searches for destinations.
3087
+ *
3088
+ * Resolves with the full HTTP response information: status code, headers (when the requester captures them), raw body and deserialized data. Bypasses the requests and responses caches: always performs the API call.
3089
+ *
3090
+ * Required API Key ACLs:
3091
+ * - addObject
3092
+ * - deleteIndex
3093
+ * - editSettings
3094
+ * @param destinationSearch - The destinationSearch object.
3095
+ * @param requestOptions - The requestOptions to send along with the query, they will be merged with the transporter requestOptions.
3096
+ * @see searchDestinations for the plain version.
3097
+ */
3098
+ searchDestinationsWithHTTPInfo(destinationSearch, requestOptions) {
3099
+ (0, import_client_common.validateRequired)("destinationSearch", "searchDestinationsWithHTTPInfo", destinationSearch);
3100
+ (0, import_client_common.validateRequired)(
3101
+ "destinationSearch.destinationIDs",
3102
+ "searchDestinationsWithHTTPInfo",
3103
+ destinationSearch.destinationIDs
3104
+ );
3105
+ const requestPath = "/1/destinations/search";
3106
+ const headers = {};
3107
+ const queryParameters = {};
3108
+ const request = {
3109
+ method: "POST",
3110
+ path: requestPath,
3111
+ queryParameters,
3112
+ headers,
3113
+ data: destinationSearch
3114
+ };
3115
+ return transporter.requestWithHttpInfo(request, requestOptions);
3116
+ },
1577
3117
  /**
1578
3118
  * Searches for sources.
1579
3119
  *
@@ -1599,6 +3139,34 @@ function createIngestionClient({
1599
3139
  };
1600
3140
  return transporter.request(request, requestOptions);
1601
3141
  },
3142
+ /**
3143
+ * Searches for sources.
3144
+ *
3145
+ * Resolves with the full HTTP response information: status code, headers (when the requester captures them), raw body and deserialized data. Bypasses the requests and responses caches: always performs the API call.
3146
+ *
3147
+ * Required API Key ACLs:
3148
+ * - addObject
3149
+ * - deleteIndex
3150
+ * - editSettings
3151
+ * @param sourceSearch - The sourceSearch object.
3152
+ * @param requestOptions - The requestOptions to send along with the query, they will be merged with the transporter requestOptions.
3153
+ * @see searchSources for the plain version.
3154
+ */
3155
+ searchSourcesWithHTTPInfo(sourceSearch, requestOptions) {
3156
+ (0, import_client_common.validateRequired)("sourceSearch", "searchSourcesWithHTTPInfo", sourceSearch);
3157
+ (0, import_client_common.validateRequired)("sourceSearch.sourceIDs", "searchSourcesWithHTTPInfo", sourceSearch.sourceIDs);
3158
+ const requestPath = "/1/sources/search";
3159
+ const headers = {};
3160
+ const queryParameters = {};
3161
+ const request = {
3162
+ method: "POST",
3163
+ path: requestPath,
3164
+ queryParameters,
3165
+ headers,
3166
+ data: sourceSearch
3167
+ };
3168
+ return transporter.requestWithHttpInfo(request, requestOptions);
3169
+ },
1602
3170
  /**
1603
3171
  * Searches for tasks.
1604
3172
  *
@@ -1624,6 +3192,34 @@ function createIngestionClient({
1624
3192
  };
1625
3193
  return transporter.request(request, requestOptions);
1626
3194
  },
3195
+ /**
3196
+ * Searches for tasks.
3197
+ *
3198
+ * Resolves with the full HTTP response information: status code, headers (when the requester captures them), raw body and deserialized data. Bypasses the requests and responses caches: always performs the API call.
3199
+ *
3200
+ * Required API Key ACLs:
3201
+ * - addObject
3202
+ * - deleteIndex
3203
+ * - editSettings
3204
+ * @param taskSearch - The taskSearch object.
3205
+ * @param requestOptions - The requestOptions to send along with the query, they will be merged with the transporter requestOptions.
3206
+ * @see searchTasks for the plain version.
3207
+ */
3208
+ searchTasksWithHTTPInfo(taskSearch, requestOptions) {
3209
+ (0, import_client_common.validateRequired)("taskSearch", "searchTasksWithHTTPInfo", taskSearch);
3210
+ (0, import_client_common.validateRequired)("taskSearch.taskIDs", "searchTasksWithHTTPInfo", taskSearch.taskIDs);
3211
+ const requestPath = "/2/tasks/search";
3212
+ const headers = {};
3213
+ const queryParameters = {};
3214
+ const request = {
3215
+ method: "POST",
3216
+ path: requestPath,
3217
+ queryParameters,
3218
+ headers,
3219
+ data: taskSearch
3220
+ };
3221
+ return transporter.requestWithHttpInfo(request, requestOptions);
3222
+ },
1627
3223
  /**
1628
3224
  * Searches for tasks using the v1 endpoint. Use `searchTasks` instead.
1629
3225
  *
@@ -1651,6 +3247,36 @@ function createIngestionClient({
1651
3247
  };
1652
3248
  return transporter.request(request, requestOptions);
1653
3249
  },
3250
+ /**
3251
+ * Searches for tasks using the v1 endpoint. Use `searchTasks` instead.
3252
+ *
3253
+ * Resolves with the full HTTP response information: status code, headers (when the requester captures them), raw body and deserialized data. Bypasses the requests and responses caches: always performs the API call.
3254
+ *
3255
+ * Required API Key ACLs:
3256
+ * - addObject
3257
+ * - deleteIndex
3258
+ * - editSettings
3259
+ *
3260
+ * @deprecated
3261
+ * @param taskSearch - The taskSearch object.
3262
+ * @param requestOptions - The requestOptions to send along with the query, they will be merged with the transporter requestOptions.
3263
+ * @see searchTasksV1 for the plain version.
3264
+ */
3265
+ searchTasksV1WithHTTPInfo(taskSearch, requestOptions) {
3266
+ (0, import_client_common.validateRequired)("taskSearch", "searchTasksV1WithHTTPInfo", taskSearch);
3267
+ (0, import_client_common.validateRequired)("taskSearch.taskIDs", "searchTasksV1WithHTTPInfo", taskSearch.taskIDs);
3268
+ const requestPath = "/1/tasks/search";
3269
+ const headers = {};
3270
+ const queryParameters = {};
3271
+ const request = {
3272
+ method: "POST",
3273
+ path: requestPath,
3274
+ queryParameters,
3275
+ headers,
3276
+ data: taskSearch
3277
+ };
3278
+ return transporter.requestWithHttpInfo(request, requestOptions);
3279
+ },
1654
3280
  /**
1655
3281
  * Searches for transformations.
1656
3282
  *
@@ -1680,6 +3306,38 @@ function createIngestionClient({
1680
3306
  };
1681
3307
  return transporter.request(request, requestOptions);
1682
3308
  },
3309
+ /**
3310
+ * Searches for transformations.
3311
+ *
3312
+ * Resolves with the full HTTP response information: status code, headers (when the requester captures them), raw body and deserialized data. Bypasses the requests and responses caches: always performs the API call.
3313
+ *
3314
+ * Required API Key ACLs:
3315
+ * - addObject
3316
+ * - deleteIndex
3317
+ * - editSettings
3318
+ * @param transformationSearch - The transformationSearch object.
3319
+ * @param requestOptions - The requestOptions to send along with the query, they will be merged with the transporter requestOptions.
3320
+ * @see searchTransformations for the plain version.
3321
+ */
3322
+ searchTransformationsWithHTTPInfo(transformationSearch, requestOptions) {
3323
+ (0, import_client_common.validateRequired)("transformationSearch", "searchTransformationsWithHTTPInfo", transformationSearch);
3324
+ (0, import_client_common.validateRequired)(
3325
+ "transformationSearch.transformationIDs",
3326
+ "searchTransformationsWithHTTPInfo",
3327
+ transformationSearch.transformationIDs
3328
+ );
3329
+ const requestPath = "/1/transformations/search";
3330
+ const headers = {};
3331
+ const queryParameters = {};
3332
+ const request = {
3333
+ method: "POST",
3334
+ path: requestPath,
3335
+ queryParameters,
3336
+ headers,
3337
+ data: transformationSearch
3338
+ };
3339
+ return transporter.requestWithHttpInfo(request, requestOptions);
3340
+ },
1683
3341
  /**
1684
3342
  * Triggers a stream-listing request for a source. Triggering stream-listing requests only works with sources with `type: docker` and `imageType: airbyte`.
1685
3343
  *
@@ -1703,6 +3361,43 @@ function createIngestionClient({
1703
3361
  headers
1704
3362
  };
1705
3363
  requestOptions = {
3364
+ ...requestOptions,
3365
+ timeouts: {
3366
+ connect: 18e4,
3367
+ read: 18e4,
3368
+ write: 18e4,
3369
+ ...requestOptions == null ? void 0 : requestOptions.timeouts
3370
+ }
3371
+ };
3372
+ return transporter.request(request, requestOptions);
3373
+ },
3374
+ /**
3375
+ * Triggers a stream-listing request for a source. Triggering stream-listing requests only works with sources with `type: docker` and `imageType: airbyte`.
3376
+ *
3377
+ * Resolves with the full HTTP response information: status code, headers (when the requester captures them), raw body and deserialized data. Bypasses the requests and responses caches: always performs the API call.
3378
+ *
3379
+ * Required API Key ACLs:
3380
+ * - addObject
3381
+ * - deleteIndex
3382
+ * - editSettings
3383
+ * @param triggerDockerSourceDiscover - The triggerDockerSourceDiscover object.
3384
+ * @param triggerDockerSourceDiscover.sourceID - Unique identifier of a source.
3385
+ * @param requestOptions - The requestOptions to send along with the query, they will be merged with the transporter requestOptions.
3386
+ * @see triggerDockerSourceDiscover for the plain version.
3387
+ */
3388
+ triggerDockerSourceDiscoverWithHTTPInfo({ sourceID }, requestOptions) {
3389
+ (0, import_client_common.validateRequired)("sourceID", "triggerDockerSourceDiscoverWithHTTPInfo", sourceID);
3390
+ const requestPath = "/1/sources/{sourceID}/discover".replace("{sourceID}", encodeURIComponent(sourceID));
3391
+ const headers = {};
3392
+ const queryParameters = {};
3393
+ const request = {
3394
+ method: "POST",
3395
+ path: requestPath,
3396
+ queryParameters,
3397
+ headers
3398
+ };
3399
+ requestOptions = {
3400
+ ...requestOptions,
1706
3401
  timeouts: {
1707
3402
  connect: 18e4,
1708
3403
  read: 18e4,
@@ -1710,21 +3405,53 @@ function createIngestionClient({
1710
3405
  ...requestOptions == null ? void 0 : requestOptions.timeouts
1711
3406
  }
1712
3407
  };
3408
+ return transporter.requestWithHttpInfo(request, requestOptions);
3409
+ },
3410
+ /**
3411
+ * Try a transformation before creating it.
3412
+ *
3413
+ * Required API Key ACLs:
3414
+ * - addObject
3415
+ * - deleteIndex
3416
+ * - editSettings
3417
+ * @param transformationTry - The transformationTry object.
3418
+ * @param requestOptions - The requestOptions to send along with the query, they will be merged with the transporter requestOptions.
3419
+ */
3420
+ tryTransformation(transformationTry, requestOptions) {
3421
+ (0, import_client_common.validateRequired)("transformationTry", "tryTransformation", transformationTry);
3422
+ (0, import_client_common.validateRequired)("transformationTry.sampleRecord", "tryTransformation", transformationTry.sampleRecord);
3423
+ const requestPath = "/1/transformations/try";
3424
+ const headers = {};
3425
+ const queryParameters = {};
3426
+ const request = {
3427
+ method: "POST",
3428
+ path: requestPath,
3429
+ queryParameters,
3430
+ headers,
3431
+ data: transformationTry
3432
+ };
1713
3433
  return transporter.request(request, requestOptions);
1714
3434
  },
1715
3435
  /**
1716
3436
  * Try a transformation before creating it.
1717
3437
  *
3438
+ * Resolves with the full HTTP response information: status code, headers (when the requester captures them), raw body and deserialized data. Bypasses the requests and responses caches: always performs the API call.
3439
+ *
1718
3440
  * Required API Key ACLs:
1719
3441
  * - addObject
1720
3442
  * - deleteIndex
1721
3443
  * - editSettings
1722
3444
  * @param transformationTry - The transformationTry object.
1723
3445
  * @param requestOptions - The requestOptions to send along with the query, they will be merged with the transporter requestOptions.
3446
+ * @see tryTransformation for the plain version.
1724
3447
  */
1725
- tryTransformation(transformationTry, requestOptions) {
1726
- (0, import_client_common.validateRequired)("transformationTry", "tryTransformation", transformationTry);
1727
- (0, import_client_common.validateRequired)("transformationTry.sampleRecord", "tryTransformation", transformationTry.sampleRecord);
3448
+ tryTransformationWithHTTPInfo(transformationTry, requestOptions) {
3449
+ (0, import_client_common.validateRequired)("transformationTry", "tryTransformationWithHTTPInfo", transformationTry);
3450
+ (0, import_client_common.validateRequired)(
3451
+ "transformationTry.sampleRecord",
3452
+ "tryTransformationWithHTTPInfo",
3453
+ transformationTry.sampleRecord
3454
+ );
1728
3455
  const requestPath = "/1/transformations/try";
1729
3456
  const headers = {};
1730
3457
  const queryParameters = {};
@@ -1735,7 +3462,7 @@ function createIngestionClient({
1735
3462
  headers,
1736
3463
  data: transformationTry
1737
3464
  };
1738
- return transporter.request(request, requestOptions);
3465
+ return transporter.requestWithHttpInfo(request, requestOptions);
1739
3466
  },
1740
3467
  /**
1741
3468
  * Try a transformation before updating it.
@@ -1772,6 +3499,44 @@ function createIngestionClient({
1772
3499
  };
1773
3500
  return transporter.request(request, requestOptions);
1774
3501
  },
3502
+ /**
3503
+ * Try a transformation before updating it.
3504
+ *
3505
+ * Resolves with the full HTTP response information: status code, headers (when the requester captures them), raw body and deserialized data. Bypasses the requests and responses caches: always performs the API call.
3506
+ *
3507
+ * Required API Key ACLs:
3508
+ * - addObject
3509
+ * - deleteIndex
3510
+ * - editSettings
3511
+ * @param tryTransformationBeforeUpdate - The tryTransformationBeforeUpdate object.
3512
+ * @param tryTransformationBeforeUpdate.transformationID - Unique identifier of a transformation.
3513
+ * @param tryTransformationBeforeUpdate.transformationTry - The transformationTry object.
3514
+ * @param requestOptions - The requestOptions to send along with the query, they will be merged with the transporter requestOptions.
3515
+ * @see tryTransformationBeforeUpdate for the plain version.
3516
+ */
3517
+ tryTransformationBeforeUpdateWithHTTPInfo({ transformationID, transformationTry }, requestOptions) {
3518
+ (0, import_client_common.validateRequired)("transformationID", "tryTransformationBeforeUpdateWithHTTPInfo", transformationID);
3519
+ (0, import_client_common.validateRequired)("transformationTry", "tryTransformationBeforeUpdateWithHTTPInfo", transformationTry);
3520
+ (0, import_client_common.validateRequired)(
3521
+ "transformationTry.sampleRecord",
3522
+ "tryTransformationBeforeUpdateWithHTTPInfo",
3523
+ transformationTry.sampleRecord
3524
+ );
3525
+ const requestPath = "/1/transformations/{transformationID}/try".replace(
3526
+ "{transformationID}",
3527
+ encodeURIComponent(transformationID)
3528
+ );
3529
+ const headers = {};
3530
+ const queryParameters = {};
3531
+ const request = {
3532
+ method: "POST",
3533
+ path: requestPath,
3534
+ queryParameters,
3535
+ headers,
3536
+ data: transformationTry
3537
+ };
3538
+ return transporter.requestWithHttpInfo(request, requestOptions);
3539
+ },
1775
3540
  /**
1776
3541
  * Updates an authentication resource.
1777
3542
  *
@@ -1802,6 +3567,39 @@ function createIngestionClient({
1802
3567
  };
1803
3568
  return transporter.request(request, requestOptions);
1804
3569
  },
3570
+ /**
3571
+ * Updates an authentication resource.
3572
+ *
3573
+ * Resolves with the full HTTP response information: status code, headers (when the requester captures them), raw body and deserialized data. Bypasses the requests and responses caches: always performs the API call.
3574
+ *
3575
+ * Required API Key ACLs:
3576
+ * - addObject
3577
+ * - deleteIndex
3578
+ * - editSettings
3579
+ * @param updateAuthentication - The updateAuthentication object.
3580
+ * @param updateAuthentication.authenticationID - Unique identifier of an authentication resource.
3581
+ * @param updateAuthentication.authenticationUpdate - The authenticationUpdate object.
3582
+ * @param requestOptions - The requestOptions to send along with the query, they will be merged with the transporter requestOptions.
3583
+ * @see updateAuthentication for the plain version.
3584
+ */
3585
+ updateAuthenticationWithHTTPInfo({ authenticationID, authenticationUpdate }, requestOptions) {
3586
+ (0, import_client_common.validateRequired)("authenticationID", "updateAuthenticationWithHTTPInfo", authenticationID);
3587
+ (0, import_client_common.validateRequired)("authenticationUpdate", "updateAuthenticationWithHTTPInfo", authenticationUpdate);
3588
+ const requestPath = "/1/authentications/{authenticationID}".replace(
3589
+ "{authenticationID}",
3590
+ encodeURIComponent(authenticationID)
3591
+ );
3592
+ const headers = {};
3593
+ const queryParameters = {};
3594
+ const request = {
3595
+ method: "PATCH",
3596
+ path: requestPath,
3597
+ queryParameters,
3598
+ headers,
3599
+ data: authenticationUpdate
3600
+ };
3601
+ return transporter.requestWithHttpInfo(request, requestOptions);
3602
+ },
1805
3603
  /**
1806
3604
  * Updates the destination by its ID.
1807
3605
  *
@@ -1832,6 +3630,39 @@ function createIngestionClient({
1832
3630
  };
1833
3631
  return transporter.request(request, requestOptions);
1834
3632
  },
3633
+ /**
3634
+ * Updates the destination by its ID.
3635
+ *
3636
+ * Resolves with the full HTTP response information: status code, headers (when the requester captures them), raw body and deserialized data. Bypasses the requests and responses caches: always performs the API call.
3637
+ *
3638
+ * Required API Key ACLs:
3639
+ * - addObject
3640
+ * - deleteIndex
3641
+ * - editSettings
3642
+ * @param updateDestination - The updateDestination object.
3643
+ * @param updateDestination.destinationID - Unique identifier of a destination.
3644
+ * @param updateDestination.destinationUpdate - The destinationUpdate object.
3645
+ * @param requestOptions - The requestOptions to send along with the query, they will be merged with the transporter requestOptions.
3646
+ * @see updateDestination for the plain version.
3647
+ */
3648
+ updateDestinationWithHTTPInfo({ destinationID, destinationUpdate }, requestOptions) {
3649
+ (0, import_client_common.validateRequired)("destinationID", "updateDestinationWithHTTPInfo", destinationID);
3650
+ (0, import_client_common.validateRequired)("destinationUpdate", "updateDestinationWithHTTPInfo", destinationUpdate);
3651
+ const requestPath = "/1/destinations/{destinationID}".replace(
3652
+ "{destinationID}",
3653
+ encodeURIComponent(destinationID)
3654
+ );
3655
+ const headers = {};
3656
+ const queryParameters = {};
3657
+ const request = {
3658
+ method: "PATCH",
3659
+ path: requestPath,
3660
+ queryParameters,
3661
+ headers,
3662
+ data: destinationUpdate
3663
+ };
3664
+ return transporter.requestWithHttpInfo(request, requestOptions);
3665
+ },
1835
3666
  /**
1836
3667
  * Updates a source by its ID.
1837
3668
  *
@@ -1859,6 +3690,36 @@ function createIngestionClient({
1859
3690
  };
1860
3691
  return transporter.request(request, requestOptions);
1861
3692
  },
3693
+ /**
3694
+ * Updates a source by its ID.
3695
+ *
3696
+ * Resolves with the full HTTP response information: status code, headers (when the requester captures them), raw body and deserialized data. Bypasses the requests and responses caches: always performs the API call.
3697
+ *
3698
+ * Required API Key ACLs:
3699
+ * - addObject
3700
+ * - deleteIndex
3701
+ * - editSettings
3702
+ * @param updateSource - The updateSource object.
3703
+ * @param updateSource.sourceID - Unique identifier of a source.
3704
+ * @param updateSource.sourceUpdate - The sourceUpdate object.
3705
+ * @param requestOptions - The requestOptions to send along with the query, they will be merged with the transporter requestOptions.
3706
+ * @see updateSource for the plain version.
3707
+ */
3708
+ updateSourceWithHTTPInfo({ sourceID, sourceUpdate }, requestOptions) {
3709
+ (0, import_client_common.validateRequired)("sourceID", "updateSourceWithHTTPInfo", sourceID);
3710
+ (0, import_client_common.validateRequired)("sourceUpdate", "updateSourceWithHTTPInfo", sourceUpdate);
3711
+ const requestPath = "/1/sources/{sourceID}".replace("{sourceID}", encodeURIComponent(sourceID));
3712
+ const headers = {};
3713
+ const queryParameters = {};
3714
+ const request = {
3715
+ method: "PATCH",
3716
+ path: requestPath,
3717
+ queryParameters,
3718
+ headers,
3719
+ data: sourceUpdate
3720
+ };
3721
+ return transporter.requestWithHttpInfo(request, requestOptions);
3722
+ },
1862
3723
  /**
1863
3724
  * Partially updates a task by its ID.
1864
3725
  *
@@ -1886,6 +3747,36 @@ function createIngestionClient({
1886
3747
  };
1887
3748
  return transporter.request(request, requestOptions);
1888
3749
  },
3750
+ /**
3751
+ * Partially updates a task by its ID.
3752
+ *
3753
+ * Resolves with the full HTTP response information: status code, headers (when the requester captures them), raw body and deserialized data. Bypasses the requests and responses caches: always performs the API call.
3754
+ *
3755
+ * Required API Key ACLs:
3756
+ * - addObject
3757
+ * - deleteIndex
3758
+ * - editSettings
3759
+ * @param updateTask - The updateTask object.
3760
+ * @param updateTask.taskID - Unique identifier of a task.
3761
+ * @param updateTask.taskUpdate - The taskUpdate object.
3762
+ * @param requestOptions - The requestOptions to send along with the query, they will be merged with the transporter requestOptions.
3763
+ * @see updateTask for the plain version.
3764
+ */
3765
+ updateTaskWithHTTPInfo({ taskID, taskUpdate }, requestOptions) {
3766
+ (0, import_client_common.validateRequired)("taskID", "updateTaskWithHTTPInfo", taskID);
3767
+ (0, import_client_common.validateRequired)("taskUpdate", "updateTaskWithHTTPInfo", taskUpdate);
3768
+ const requestPath = "/2/tasks/{taskID}".replace("{taskID}", encodeURIComponent(taskID));
3769
+ const headers = {};
3770
+ const queryParameters = {};
3771
+ const request = {
3772
+ method: "PATCH",
3773
+ path: requestPath,
3774
+ queryParameters,
3775
+ headers,
3776
+ data: taskUpdate
3777
+ };
3778
+ return transporter.requestWithHttpInfo(request, requestOptions);
3779
+ },
1889
3780
  /**
1890
3781
  * Updates a task by its ID using the v1 endpoint. Use `updateTask` instead.
1891
3782
  *
@@ -1915,6 +3806,38 @@ function createIngestionClient({
1915
3806
  };
1916
3807
  return transporter.request(request, requestOptions);
1917
3808
  },
3809
+ /**
3810
+ * Updates a task by its ID using the v1 endpoint. Use `updateTask` instead.
3811
+ *
3812
+ * Resolves with the full HTTP response information: status code, headers (when the requester captures them), raw body and deserialized data. Bypasses the requests and responses caches: always performs the API call.
3813
+ *
3814
+ * Required API Key ACLs:
3815
+ * - addObject
3816
+ * - deleteIndex
3817
+ * - editSettings
3818
+ *
3819
+ * @deprecated
3820
+ * @param updateTaskV1 - The updateTaskV1 object.
3821
+ * @param updateTaskV1.taskID - Unique identifier of a task.
3822
+ * @param updateTaskV1.taskUpdate - The taskUpdate object.
3823
+ * @param requestOptions - The requestOptions to send along with the query, they will be merged with the transporter requestOptions.
3824
+ * @see updateTaskV1 for the plain version.
3825
+ */
3826
+ updateTaskV1WithHTTPInfo({ taskID, taskUpdate }, requestOptions) {
3827
+ (0, import_client_common.validateRequired)("taskID", "updateTaskV1WithHTTPInfo", taskID);
3828
+ (0, import_client_common.validateRequired)("taskUpdate", "updateTaskV1WithHTTPInfo", taskUpdate);
3829
+ const requestPath = "/1/tasks/{taskID}".replace("{taskID}", encodeURIComponent(taskID));
3830
+ const headers = {};
3831
+ const queryParameters = {};
3832
+ const request = {
3833
+ method: "PATCH",
3834
+ path: requestPath,
3835
+ queryParameters,
3836
+ headers,
3837
+ data: taskUpdate
3838
+ };
3839
+ return transporter.requestWithHttpInfo(request, requestOptions);
3840
+ },
1918
3841
  /**
1919
3842
  * Updates a transformation by its ID.
1920
3843
  *
@@ -1946,6 +3869,40 @@ function createIngestionClient({
1946
3869
  };
1947
3870
  return transporter.request(request, requestOptions);
1948
3871
  },
3872
+ /**
3873
+ * Updates a transformation by its ID.
3874
+ *
3875
+ * Resolves with the full HTTP response information: status code, headers (when the requester captures them), raw body and deserialized data. Bypasses the requests and responses caches: always performs the API call.
3876
+ *
3877
+ * Required API Key ACLs:
3878
+ * - addObject
3879
+ * - deleteIndex
3880
+ * - editSettings
3881
+ * @param updateTransformation - The updateTransformation object.
3882
+ * @param updateTransformation.transformationID - Unique identifier of a transformation.
3883
+ * @param updateTransformation.transformationCreate - The transformationCreate object.
3884
+ * @param requestOptions - The requestOptions to send along with the query, they will be merged with the transporter requestOptions.
3885
+ * @see updateTransformation for the plain version.
3886
+ */
3887
+ updateTransformationWithHTTPInfo({ transformationID, transformationCreate }, requestOptions) {
3888
+ (0, import_client_common.validateRequired)("transformationID", "updateTransformationWithHTTPInfo", transformationID);
3889
+ (0, import_client_common.validateRequired)("transformationCreate", "updateTransformationWithHTTPInfo", transformationCreate);
3890
+ (0, import_client_common.validateRequired)("transformationCreate.name", "updateTransformationWithHTTPInfo", transformationCreate.name);
3891
+ const requestPath = "/1/transformations/{transformationID}".replace(
3892
+ "{transformationID}",
3893
+ encodeURIComponent(transformationID)
3894
+ );
3895
+ const headers = {};
3896
+ const queryParameters = {};
3897
+ const request = {
3898
+ method: "PUT",
3899
+ path: requestPath,
3900
+ queryParameters,
3901
+ headers,
3902
+ data: transformationCreate
3903
+ };
3904
+ return transporter.requestWithHttpInfo(request, requestOptions);
3905
+ },
1949
3906
  /**
1950
3907
  * Validates a source payload to ensure it can be created and that the data source can be reached by Algolia.
1951
3908
  *
@@ -1968,6 +3925,7 @@ function createIngestionClient({
1968
3925
  data: sourceCreate ? sourceCreate : {}
1969
3926
  };
1970
3927
  requestOptions = {
3928
+ ...requestOptions,
1971
3929
  timeouts: {
1972
3930
  connect: 18e4,
1973
3931
  read: 18e4,
@@ -1977,6 +3935,41 @@ function createIngestionClient({
1977
3935
  };
1978
3936
  return transporter.request(request, requestOptions);
1979
3937
  },
3938
+ /**
3939
+ * Validates a source payload to ensure it can be created and that the data source can be reached by Algolia.
3940
+ *
3941
+ * Resolves with the full HTTP response information: status code, headers (when the requester captures them), raw body and deserialized data. Bypasses the requests and responses caches: always performs the API call.
3942
+ *
3943
+ * Required API Key ACLs:
3944
+ * - addObject
3945
+ * - deleteIndex
3946
+ * - editSettings
3947
+ * @param sourceCreate -
3948
+ * @param requestOptions - The requestOptions to send along with the query, they will be merged with the transporter requestOptions.
3949
+ * @see validateSource for the plain version.
3950
+ */
3951
+ validateSourceWithHTTPInfo(sourceCreate, requestOptions = void 0) {
3952
+ const requestPath = "/1/sources/validate";
3953
+ const headers = {};
3954
+ const queryParameters = {};
3955
+ const request = {
3956
+ method: "POST",
3957
+ path: requestPath,
3958
+ queryParameters,
3959
+ headers,
3960
+ data: sourceCreate ? sourceCreate : {}
3961
+ };
3962
+ requestOptions = {
3963
+ ...requestOptions,
3964
+ timeouts: {
3965
+ connect: 18e4,
3966
+ read: 18e4,
3967
+ write: 18e4,
3968
+ ...requestOptions == null ? void 0 : requestOptions.timeouts
3969
+ }
3970
+ };
3971
+ return transporter.requestWithHttpInfo(request, requestOptions);
3972
+ },
1980
3973
  /**
1981
3974
  * Validates an update of a source payload to ensure it can be created and that the data source can be reached by Algolia.
1982
3975
  *
@@ -2003,6 +3996,7 @@ function createIngestionClient({
2003
3996
  data: sourceUpdate
2004
3997
  };
2005
3998
  requestOptions = {
3999
+ ...requestOptions,
2006
4000
  timeouts: {
2007
4001
  connect: 18e4,
2008
4002
  read: 18e4,
@@ -2011,6 +4005,45 @@ function createIngestionClient({
2011
4005
  }
2012
4006
  };
2013
4007
  return transporter.request(request, requestOptions);
4008
+ },
4009
+ /**
4010
+ * Validates an update of a source payload to ensure it can be created and that the data source can be reached by Algolia.
4011
+ *
4012
+ * Resolves with the full HTTP response information: status code, headers (when the requester captures them), raw body and deserialized data. Bypasses the requests and responses caches: always performs the API call.
4013
+ *
4014
+ * Required API Key ACLs:
4015
+ * - addObject
4016
+ * - deleteIndex
4017
+ * - editSettings
4018
+ * @param validateSourceBeforeUpdate - The validateSourceBeforeUpdate object.
4019
+ * @param validateSourceBeforeUpdate.sourceID - Unique identifier of a source.
4020
+ * @param validateSourceBeforeUpdate.sourceUpdate - The sourceUpdate object.
4021
+ * @param requestOptions - The requestOptions to send along with the query, they will be merged with the transporter requestOptions.
4022
+ * @see validateSourceBeforeUpdate for the plain version.
4023
+ */
4024
+ validateSourceBeforeUpdateWithHTTPInfo({ sourceID, sourceUpdate }, requestOptions) {
4025
+ (0, import_client_common.validateRequired)("sourceID", "validateSourceBeforeUpdateWithHTTPInfo", sourceID);
4026
+ (0, import_client_common.validateRequired)("sourceUpdate", "validateSourceBeforeUpdateWithHTTPInfo", sourceUpdate);
4027
+ const requestPath = "/1/sources/{sourceID}/validate".replace("{sourceID}", encodeURIComponent(sourceID));
4028
+ const headers = {};
4029
+ const queryParameters = {};
4030
+ const request = {
4031
+ method: "POST",
4032
+ path: requestPath,
4033
+ queryParameters,
4034
+ headers,
4035
+ data: sourceUpdate
4036
+ };
4037
+ requestOptions = {
4038
+ ...requestOptions,
4039
+ timeouts: {
4040
+ connect: 18e4,
4041
+ read: 18e4,
4042
+ write: 18e4,
4043
+ ...requestOptions == null ? void 0 : requestOptions.timeouts
4044
+ }
4045
+ };
4046
+ return transporter.requestWithHttpInfo(request, requestOptions);
2014
4047
  }
2015
4048
  };
2016
4049
  }