@algolia/ingestion 1.0.0-alpha.73 → 1.0.0-alpha.75

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.
Files changed (37) hide show
  1. package/dist/ingestion.cjs +151 -38
  2. package/dist/ingestion.esm.browser.js +153 -40
  3. package/dist/ingestion.esm.node.js +151 -38
  4. package/dist/ingestion.umd.js +2 -2
  5. package/dist/model/authentication.d.ts +4 -4
  6. package/dist/model/authentication.d.ts.map +1 -1
  7. package/dist/model/authenticationCreate.d.ts +1 -1
  8. package/dist/model/authenticationCreate.d.ts.map +1 -1
  9. package/dist/model/authenticationUpdate.d.ts +1 -1
  10. package/dist/model/authenticationUpdate.d.ts.map +1 -1
  11. package/dist/model/commercetoolsCustomFields.d.ts +18 -0
  12. package/dist/model/commercetoolsCustomFields.d.ts.map +1 -0
  13. package/dist/model/destination.d.ts +3 -0
  14. package/dist/model/destination.d.ts.map +1 -1
  15. package/dist/model/destinationUpdate.d.ts +3 -0
  16. package/dist/model/destinationUpdate.d.ts.map +1 -1
  17. package/dist/model/index.d.ts +1 -0
  18. package/dist/model/index.d.ts.map +1 -1
  19. package/dist/model/sourceBigCommerce.d.ts +1 -1
  20. package/dist/model/sourceBigCommerce.d.ts.map +1 -1
  21. package/dist/model/sourceCommercetools.d.ts +2 -0
  22. package/dist/model/sourceCommercetools.d.ts.map +1 -1
  23. package/dist/model/sourceUpdateCommercetools.d.ts +2 -0
  24. package/dist/model/sourceUpdateCommercetools.d.ts.map +1 -1
  25. package/dist/src/ingestionClient.d.ts +151 -38
  26. package/dist/src/ingestionClient.d.ts.map +1 -1
  27. package/model/authentication.ts +4 -4
  28. package/model/authenticationCreate.ts +1 -1
  29. package/model/authenticationUpdate.ts +1 -1
  30. package/model/commercetoolsCustomFields.ts +21 -0
  31. package/model/destination.ts +3 -0
  32. package/model/destinationUpdate.ts +3 -0
  33. package/model/index.ts +1 -0
  34. package/model/sourceBigCommerce.ts +1 -1
  35. package/model/sourceCommercetools.ts +4 -0
  36. package/model/sourceUpdateCommercetools.ts +4 -0
  37. package/package.json +6 -6
@@ -270,7 +270,7 @@ class DetailedApiError extends ApiError {
270
270
  }
271
271
  function serializeUrl(host, path, queryParameters) {
272
272
  const queryParametersAsString = serializeQueryParameters(queryParameters);
273
- let url = `${host.protocol}://${host.url}/${path.charAt(0) === '/' ? path.substr(1) : path}`;
273
+ let url = `${host.protocol}://${host.url}${host.port ? `:${host.port}` : ''}/${path.charAt(0) === '/' ? path.substr(1) : path}`;
274
274
  if (queryParametersAsString.length) {
275
275
  url += `?${queryParametersAsString}`;
276
276
  }
@@ -278,7 +278,7 @@ function serializeUrl(host, path, queryParameters) {
278
278
  }
279
279
  function serializeQueryParameters(parameters) {
280
280
  const isObjectOrArray = value => Object.prototype.toString.call(value) === '[object Object]' || Object.prototype.toString.call(value) === '[object Array]';
281
- return Object.keys(parameters).map(key => `${key}=${encodeURIComponent(isObjectOrArray(parameters[key]) ? JSON.stringify(parameters[key]) : parameters[key])}`).join('&');
281
+ return Object.keys(parameters).map(key => `${key}=${encodeURIComponent(isObjectOrArray(parameters[key]) ? JSON.stringify(parameters[key]) : parameters[key]).replaceAll('+', '%20')}`).join('&');
282
282
  }
283
283
  function serializeData(request, requestOptions) {
284
284
  if (request.method === 'GET' || request.data === undefined && requestOptions.data === undefined) {
@@ -686,7 +686,7 @@ function createXhrRequester() {
686
686
  }
687
687
 
688
688
  // Code generated by OpenAPI Generator (https://openapi-generator.tech), manual changes will be lost - read more on https://github.com/algolia/api-clients-automation. DO NOT EDIT.
689
- const apiClientVersion = '1.0.0-alpha.73';
689
+ const apiClientVersion = '1.0.0-alpha.75';
690
690
  const REGIONS = ['eu', 'us'];
691
691
  function getDefaultHosts(region) {
692
692
  const url = 'data.{region}.algolia.com'.replace('{region}', region);
@@ -773,7 +773,11 @@ function createIngestionClient({ appId: appIdOption, apiKey: apiKeyOption, authM
773
773
  /**
774
774
  * Create a authentication.
775
775
  *
776
- * @summary Create a authentication.
776
+ * Required API Key ACLs:
777
+ * - addObject
778
+ * - deleteIndex
779
+ * - editSettings.
780
+ *
777
781
  * @param authenticationCreate -.
778
782
  * @param requestOptions - The requestOptions to send along with the query, they will be merged with the transporter requestOptions.
779
783
  */
@@ -805,7 +809,11 @@ function createIngestionClient({ appId: appIdOption, apiKey: apiKeyOption, authM
805
809
  /**
806
810
  * Create a destination.
807
811
  *
808
- * @summary Create a destination.
812
+ * Required API Key ACLs:
813
+ * - addObject
814
+ * - deleteIndex
815
+ * - editSettings.
816
+ *
809
817
  * @param destinationCreate -.
810
818
  * @param requestOptions - The requestOptions to send along with the query, they will be merged with the transporter requestOptions.
811
819
  */
@@ -837,7 +845,11 @@ function createIngestionClient({ appId: appIdOption, apiKey: apiKeyOption, authM
837
845
  /**
838
846
  * Create a source.
839
847
  *
840
- * @summary Create a source.
848
+ * Required API Key ACLs:
849
+ * - addObject
850
+ * - deleteIndex
851
+ * - editSettings.
852
+ *
841
853
  * @param sourceCreate -.
842
854
  * @param requestOptions - The requestOptions to send along with the query, they will be merged with the transporter requestOptions.
843
855
  */
@@ -869,7 +881,6 @@ function createIngestionClient({ appId: appIdOption, apiKey: apiKeyOption, authM
869
881
  /**
870
882
  * Create a task.
871
883
  *
872
- * @summary Create a task.
873
884
  * @param taskCreate -.
874
885
  * @param requestOptions - The requestOptions to send along with the query, they will be merged with the transporter requestOptions.
875
886
  */
@@ -904,7 +915,6 @@ function createIngestionClient({ appId: appIdOption, apiKey: apiKeyOption, authM
904
915
  /**
905
916
  * This method allow you to send requests to the Algolia REST API.
906
917
  *
907
- * @summary Send requests to the Algolia REST API.
908
918
  * @param customDelete - The customDelete object.
909
919
  * @param customDelete.path - Path of the endpoint, anything after \"/1\" must be specified.
910
920
  * @param customDelete.parameters - Query parameters to apply to the current query.
@@ -928,7 +938,6 @@ function createIngestionClient({ appId: appIdOption, apiKey: apiKeyOption, authM
928
938
  /**
929
939
  * This method allow you to send requests to the Algolia REST API.
930
940
  *
931
- * @summary Send requests to the Algolia REST API.
932
941
  * @param customGet - The customGet object.
933
942
  * @param customGet.path - Path of the endpoint, anything after \"/1\" must be specified.
934
943
  * @param customGet.parameters - Query parameters to apply to the current query.
@@ -952,7 +961,6 @@ function createIngestionClient({ appId: appIdOption, apiKey: apiKeyOption, authM
952
961
  /**
953
962
  * This method allow you to send requests to the Algolia REST API.
954
963
  *
955
- * @summary Send requests to the Algolia REST API.
956
964
  * @param customPost - The customPost object.
957
965
  * @param customPost.path - Path of the endpoint, anything after \"/1\" must be specified.
958
966
  * @param customPost.parameters - Query parameters to apply to the current query.
@@ -978,7 +986,6 @@ function createIngestionClient({ appId: appIdOption, apiKey: apiKeyOption, authM
978
986
  /**
979
987
  * This method allow you to send requests to the Algolia REST API.
980
988
  *
981
- * @summary Send requests to the Algolia REST API.
982
989
  * @param customPut - The customPut object.
983
990
  * @param customPut.path - Path of the endpoint, anything after \"/1\" must be specified.
984
991
  * @param customPut.parameters - Query parameters to apply to the current query.
@@ -1004,7 +1011,11 @@ function createIngestionClient({ appId: appIdOption, apiKey: apiKeyOption, authM
1004
1011
  /**
1005
1012
  * Soft delete the authentication of the given authenticationID.
1006
1013
  *
1007
- * @summary Delete a authentication.
1014
+ * Required API Key ACLs:
1015
+ * - addObject
1016
+ * - deleteIndex
1017
+ * - editSettings.
1018
+ *
1008
1019
  * @param deleteAuthentication - The deleteAuthentication object.
1009
1020
  * @param deleteAuthentication.authenticationID - The authentication UUID.
1010
1021
  * @param requestOptions - The requestOptions to send along with the query, they will be merged with the transporter requestOptions.
@@ -1027,7 +1038,11 @@ function createIngestionClient({ appId: appIdOption, apiKey: apiKeyOption, authM
1027
1038
  /**
1028
1039
  * Soft delete the destination of the given destinationID.
1029
1040
  *
1030
- * @summary Delete a destination.
1041
+ * Required API Key ACLs:
1042
+ * - addObject
1043
+ * - deleteIndex
1044
+ * - editSettings.
1045
+ *
1031
1046
  * @param deleteDestination - The deleteDestination object.
1032
1047
  * @param deleteDestination.destinationID - The destination UUID.
1033
1048
  * @param requestOptions - The requestOptions to send along with the query, they will be merged with the transporter requestOptions.
@@ -1050,7 +1065,11 @@ function createIngestionClient({ appId: appIdOption, apiKey: apiKeyOption, authM
1050
1065
  /**
1051
1066
  * Soft delete the source of the given sourceID.
1052
1067
  *
1053
- * @summary Delete a source.
1068
+ * Required API Key ACLs:
1069
+ * - addObject
1070
+ * - deleteIndex
1071
+ * - editSettings.
1072
+ *
1054
1073
  * @param deleteSource - The deleteSource object.
1055
1074
  * @param deleteSource.sourceID - The source UUID.
1056
1075
  * @param requestOptions - The requestOptions to send along with the query, they will be merged with the transporter requestOptions.
@@ -1073,7 +1092,6 @@ function createIngestionClient({ appId: appIdOption, apiKey: apiKeyOption, authM
1073
1092
  /**
1074
1093
  * Soft delete the task of the given taskID.
1075
1094
  *
1076
- * @summary Delete a task.
1077
1095
  * @param deleteTask - The deleteTask object.
1078
1096
  * @param deleteTask.taskID - The task UUID.
1079
1097
  * @param requestOptions - The requestOptions to send along with the query, they will be merged with the transporter requestOptions.
@@ -1096,7 +1114,11 @@ function createIngestionClient({ appId: appIdOption, apiKey: apiKeyOption, authM
1096
1114
  /**
1097
1115
  * Disable the task of the given taskID.
1098
1116
  *
1099
- * @summary Disable a task.
1117
+ * Required API Key ACLs:
1118
+ * - addObject
1119
+ * - deleteIndex
1120
+ * - editSettings.
1121
+ *
1100
1122
  * @param disableTask - The disableTask object.
1101
1123
  * @param disableTask.taskID - The task UUID.
1102
1124
  * @param requestOptions - The requestOptions to send along with the query, they will be merged with the transporter requestOptions.
@@ -1119,7 +1141,11 @@ function createIngestionClient({ appId: appIdOption, apiKey: apiKeyOption, authM
1119
1141
  /**
1120
1142
  * Enable the task of the given taskID.
1121
1143
  *
1122
- * @summary Enable a task.
1144
+ * Required API Key ACLs:
1145
+ * - addObject
1146
+ * - deleteIndex
1147
+ * - editSettings.
1148
+ *
1123
1149
  * @param enableTask - The enableTask object.
1124
1150
  * @param enableTask.taskID - The task UUID.
1125
1151
  * @param requestOptions - The requestOptions to send along with the query, they will be merged with the transporter requestOptions.
@@ -1142,7 +1168,11 @@ function createIngestionClient({ appId: appIdOption, apiKey: apiKeyOption, authM
1142
1168
  /**
1143
1169
  * Get the authentication of the given authenticationID.
1144
1170
  *
1145
- * @summary Get a authentication.
1171
+ * Required API Key ACLs:
1172
+ * - addObject
1173
+ * - deleteIndex
1174
+ * - editSettings.
1175
+ *
1146
1176
  * @param getAuthentication - The getAuthentication object.
1147
1177
  * @param getAuthentication.authenticationID - The authentication UUID.
1148
1178
  * @param requestOptions - The requestOptions to send along with the query, they will be merged with the transporter requestOptions.
@@ -1165,7 +1195,11 @@ function createIngestionClient({ appId: appIdOption, apiKey: apiKeyOption, authM
1165
1195
  /**
1166
1196
  * Get a list of authentications for the given query parameters, with pagination details.
1167
1197
  *
1168
- * @summary Get a list of authentications.
1198
+ * Required API Key ACLs:
1199
+ * - addObject
1200
+ * - deleteIndex
1201
+ * - editSettings.
1202
+ *
1169
1203
  * @param getAuthentications - The getAuthentications object.
1170
1204
  * @param getAuthentications.itemsPerPage - The number of items per page to return.
1171
1205
  * @param getAuthentications.page - The page number to fetch, starting at 1.
@@ -1208,7 +1242,11 @@ function createIngestionClient({ appId: appIdOption, apiKey: apiKeyOption, authM
1208
1242
  /**
1209
1243
  * Get the destination of the given destinationID.
1210
1244
  *
1211
- * @summary Get a destination.
1245
+ * Required API Key ACLs:
1246
+ * - addObject
1247
+ * - deleteIndex
1248
+ * - editSettings.
1249
+ *
1212
1250
  * @param getDestination - The getDestination object.
1213
1251
  * @param getDestination.destinationID - The destination UUID.
1214
1252
  * @param requestOptions - The requestOptions to send along with the query, they will be merged with the transporter requestOptions.
@@ -1231,7 +1269,11 @@ function createIngestionClient({ appId: appIdOption, apiKey: apiKeyOption, authM
1231
1269
  /**
1232
1270
  * Get a list of destinations for the given query parameters, with pagination details.
1233
1271
  *
1234
- * @summary Get a list of destinations.
1272
+ * Required API Key ACLs:
1273
+ * - addObject
1274
+ * - deleteIndex
1275
+ * - editSettings.
1276
+ *
1235
1277
  * @param getDestinations - The getDestinations object.
1236
1278
  * @param getDestinations.itemsPerPage - The number of items per page to return.
1237
1279
  * @param getDestinations.page - The page number to fetch, starting at 1.
@@ -1274,7 +1316,11 @@ function createIngestionClient({ appId: appIdOption, apiKey: apiKeyOption, authM
1274
1316
  /**
1275
1317
  * Retrieve a stream listing for a given Singer specification compatible docker type source ID.
1276
1318
  *
1277
- * @summary Retrieve a stream listing.
1319
+ * Required API Key ACLs:
1320
+ * - addObject
1321
+ * - deleteIndex
1322
+ * - editSettings.
1323
+ *
1278
1324
  * @param getDockerSourceStreams - The getDockerSourceStreams object.
1279
1325
  * @param getDockerSourceStreams.sourceID - The source UUID.
1280
1326
  * @param requestOptions - The requestOptions to send along with the query, they will be merged with the transporter requestOptions.
@@ -1297,7 +1343,11 @@ function createIngestionClient({ appId: appIdOption, apiKey: apiKeyOption, authM
1297
1343
  /**
1298
1344
  * Get a single event for a specific runID.
1299
1345
  *
1300
- * @summary Get an event.
1346
+ * Required API Key ACLs:
1347
+ * - addObject
1348
+ * - deleteIndex
1349
+ * - editSettings.
1350
+ *
1301
1351
  * @param getEvent - The getEvent object.
1302
1352
  * @param getEvent.runID - The run UUID.
1303
1353
  * @param getEvent.eventID - The event UUID.
@@ -1326,7 +1376,11 @@ function createIngestionClient({ appId: appIdOption, apiKey: apiKeyOption, authM
1326
1376
  /**
1327
1377
  * Get a list of events associated to the given runID, for the given query parameters.
1328
1378
  *
1329
- * @summary Get a list of events.
1379
+ * Required API Key ACLs:
1380
+ * - addObject
1381
+ * - deleteIndex
1382
+ * - editSettings.
1383
+ *
1330
1384
  * @param getEvents - The getEvents object.
1331
1385
  * @param getEvents.runID - The run UUID.
1332
1386
  * @param getEvents.itemsPerPage - The number of items per page to return.
@@ -1381,7 +1435,11 @@ function createIngestionClient({ appId: appIdOption, apiKey: apiKeyOption, authM
1381
1435
  /**
1382
1436
  * Get a single run for the given ID.
1383
1437
  *
1384
- * @summary Get a run.
1438
+ * Required API Key ACLs:
1439
+ * - addObject
1440
+ * - deleteIndex
1441
+ * - editSettings.
1442
+ *
1385
1443
  * @param getRun - The getRun object.
1386
1444
  * @param getRun.runID - The run UUID.
1387
1445
  * @param requestOptions - The requestOptions to send along with the query, they will be merged with the transporter requestOptions.
@@ -1404,7 +1462,11 @@ function createIngestionClient({ appId: appIdOption, apiKey: apiKeyOption, authM
1404
1462
  /**
1405
1463
  * Get a list of runs for the given query parameters, with pagination details.
1406
1464
  *
1407
- * @summary Get a list of runs.
1465
+ * Required API Key ACLs:
1466
+ * - addObject
1467
+ * - deleteIndex
1468
+ * - editSettings.
1469
+ *
1408
1470
  * @param getRuns - The getRuns object.
1409
1471
  * @param getRuns.itemsPerPage - The number of items per page to return.
1410
1472
  * @param getRuns.page - The page number to fetch, starting at 1.
@@ -1455,7 +1517,11 @@ function createIngestionClient({ appId: appIdOption, apiKey: apiKeyOption, authM
1455
1517
  /**
1456
1518
  * Get the source of the given sourceID.
1457
1519
  *
1458
- * @summary Get a source.
1520
+ * Required API Key ACLs:
1521
+ * - addObject
1522
+ * - deleteIndex
1523
+ * - editSettings.
1524
+ *
1459
1525
  * @param getSource - The getSource object.
1460
1526
  * @param getSource.sourceID - The source UUID.
1461
1527
  * @param requestOptions - The requestOptions to send along with the query, they will be merged with the transporter requestOptions.
@@ -1478,7 +1544,11 @@ function createIngestionClient({ appId: appIdOption, apiKey: apiKeyOption, authM
1478
1544
  /**
1479
1545
  * Get a list of sources for the given query parameters, with pagination details.
1480
1546
  *
1481
- * @summary Get a list of sources.
1547
+ * Required API Key ACLs:
1548
+ * - addObject
1549
+ * - deleteIndex
1550
+ * - editSettings.
1551
+ *
1482
1552
  * @param getSources - The getSources object.
1483
1553
  * @param getSources.itemsPerPage - The number of items per page to return.
1484
1554
  * @param getSources.page - The page number to fetch, starting at 1.
@@ -1521,7 +1591,11 @@ function createIngestionClient({ appId: appIdOption, apiKey: apiKeyOption, authM
1521
1591
  /**
1522
1592
  * Get the task of the given taskID.
1523
1593
  *
1524
- * @summary Get a task.
1594
+ * Required API Key ACLs:
1595
+ * - addObject
1596
+ * - deleteIndex
1597
+ * - editSettings.
1598
+ *
1525
1599
  * @param getTask - The getTask object.
1526
1600
  * @param getTask.taskID - The task UUID.
1527
1601
  * @param requestOptions - The requestOptions to send along with the query, they will be merged with the transporter requestOptions.
@@ -1544,7 +1618,11 @@ function createIngestionClient({ appId: appIdOption, apiKey: apiKeyOption, authM
1544
1618
  /**
1545
1619
  * Get a list of tasks for the given query parameters, with pagination details.
1546
1620
  *
1547
- * @summary Get a list of tasks.
1621
+ * Required API Key ACLs:
1622
+ * - addObject
1623
+ * - deleteIndex
1624
+ * - editSettings.
1625
+ *
1548
1626
  * @param getTasks - The getTasks object.
1549
1627
  * @param getTasks.itemsPerPage - The number of items per page to return.
1550
1628
  * @param getTasks.page - The page number to fetch, starting at 1.
@@ -1599,7 +1677,11 @@ function createIngestionClient({ appId: appIdOption, apiKey: apiKeyOption, authM
1599
1677
  /**
1600
1678
  * Run the task of the given taskID.
1601
1679
  *
1602
- * @summary Run a task.
1680
+ * Required API Key ACLs:
1681
+ * - addObject
1682
+ * - deleteIndex
1683
+ * - editSettings.
1684
+ *
1603
1685
  * @param runTask - The runTask object.
1604
1686
  * @param runTask.taskID - The task UUID.
1605
1687
  * @param requestOptions - The requestOptions to send along with the query, they will be merged with the transporter requestOptions.
@@ -1622,7 +1704,11 @@ function createIngestionClient({ appId: appIdOption, apiKey: apiKeyOption, authM
1622
1704
  /**
1623
1705
  * Search among authentications with a defined set of parameters.
1624
1706
  *
1625
- * @summary Search among authentications.
1707
+ * Required API Key ACLs:
1708
+ * - addObject
1709
+ * - deleteIndex
1710
+ * - editSettings.
1711
+ *
1626
1712
  * @param authenticationSearch - The authenticationSearch object.
1627
1713
  * @param requestOptions - The requestOptions to send along with the query, they will be merged with the transporter requestOptions.
1628
1714
  */
@@ -1648,7 +1734,11 @@ function createIngestionClient({ appId: appIdOption, apiKey: apiKeyOption, authM
1648
1734
  /**
1649
1735
  * Search among destinations with a defined set of parameters.
1650
1736
  *
1651
- * @summary Search among destinations.
1737
+ * Required API Key ACLs:
1738
+ * - addObject
1739
+ * - deleteIndex
1740
+ * - editSettings.
1741
+ *
1652
1742
  * @param destinationSearch - The destinationSearch object.
1653
1743
  * @param requestOptions - The requestOptions to send along with the query, they will be merged with the transporter requestOptions.
1654
1744
  */
@@ -1674,7 +1764,11 @@ function createIngestionClient({ appId: appIdOption, apiKey: apiKeyOption, authM
1674
1764
  /**
1675
1765
  * Search among sources with a defined set of parameters.
1676
1766
  *
1677
- * @summary Search among sources.
1767
+ * Required API Key ACLs:
1768
+ * - addObject
1769
+ * - deleteIndex
1770
+ * - editSettings.
1771
+ *
1678
1772
  * @param sourceSearch - The sourceSearch object.
1679
1773
  * @param requestOptions - The requestOptions to send along with the query, they will be merged with the transporter requestOptions.
1680
1774
  */
@@ -1700,7 +1794,11 @@ function createIngestionClient({ appId: appIdOption, apiKey: apiKeyOption, authM
1700
1794
  /**
1701
1795
  * Search among tasks with a defined set of parameters.
1702
1796
  *
1703
- * @summary Search among tasks.
1797
+ * Required API Key ACLs:
1798
+ * - addObject
1799
+ * - deleteIndex
1800
+ * - editSettings.
1801
+ *
1704
1802
  * @param taskSearch - The taskSearch object.
1705
1803
  * @param requestOptions - The requestOptions to send along with the query, they will be merged with the transporter requestOptions.
1706
1804
  */
@@ -1726,7 +1824,11 @@ function createIngestionClient({ appId: appIdOption, apiKey: apiKeyOption, authM
1726
1824
  /**
1727
1825
  * Trigger a stream listing request for a Singer specification compatible docker type source.
1728
1826
  *
1729
- * @summary Trigger a stream listing request.
1827
+ * Required API Key ACLs:
1828
+ * - addObject
1829
+ * - deleteIndex
1830
+ * - editSettings.
1831
+ *
1730
1832
  * @param triggerDockerSourceDiscover - The triggerDockerSourceDiscover object.
1731
1833
  * @param triggerDockerSourceDiscover.sourceID - The source UUID.
1732
1834
  * @param requestOptions - The requestOptions to send along with the query, they will be merged with the transporter requestOptions.
@@ -1749,7 +1851,11 @@ function createIngestionClient({ appId: appIdOption, apiKey: apiKeyOption, authM
1749
1851
  /**
1750
1852
  * Update the authentication of the given authenticationID.
1751
1853
  *
1752
- * @summary Update a authentication.
1854
+ * Required API Key ACLs:
1855
+ * - addObject
1856
+ * - deleteIndex
1857
+ * - editSettings.
1858
+ *
1753
1859
  * @param updateAuthentication - The updateAuthentication object.
1754
1860
  * @param updateAuthentication.authenticationID - The authentication UUID.
1755
1861
  * @param updateAuthentication.authenticationUpdate - The authenticationUpdate object.
@@ -1777,7 +1883,11 @@ function createIngestionClient({ appId: appIdOption, apiKey: apiKeyOption, authM
1777
1883
  /**
1778
1884
  * Update the destination of the given destinationID.
1779
1885
  *
1780
- * @summary Update a destination.
1886
+ * Required API Key ACLs:
1887
+ * - addObject
1888
+ * - deleteIndex
1889
+ * - editSettings.
1890
+ *
1781
1891
  * @param updateDestination - The updateDestination object.
1782
1892
  * @param updateDestination.destinationID - The destination UUID.
1783
1893
  * @param updateDestination.destinationUpdate - The destinationUpdate object.
@@ -1805,7 +1915,11 @@ function createIngestionClient({ appId: appIdOption, apiKey: apiKeyOption, authM
1805
1915
  /**
1806
1916
  * Update the source of the given sourceID.
1807
1917
  *
1808
- * @summary Update a source.
1918
+ * Required API Key ACLs:
1919
+ * - addObject
1920
+ * - deleteIndex
1921
+ * - editSettings.
1922
+ *
1809
1923
  * @param updateSource - The updateSource object.
1810
1924
  * @param updateSource.sourceID - The source UUID.
1811
1925
  * @param updateSource.sourceUpdate - The sourceUpdate object.
@@ -1833,7 +1947,6 @@ function createIngestionClient({ appId: appIdOption, apiKey: apiKeyOption, authM
1833
1947
  /**
1834
1948
  * Update the task of the given taskID.
1835
1949
  *
1836
- * @summary Update a task.
1837
1950
  * @param updateTask - The updateTask object.
1838
1951
  * @param updateTask.taskID - The task UUID.
1839
1952
  * @param updateTask.taskUpdate - The taskUpdate object.