@algolia/ingestion 1.23.2 → 1.23.3

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
package/dist/fetch.d.ts CHANGED
@@ -1423,7 +1423,7 @@ type WatchResponse = {
1423
1423
  /**
1424
1424
  * Universally unique identifier (UUID) of a task run.
1425
1425
  */
1426
- runID?: string;
1426
+ runID: string;
1427
1427
  /**
1428
1428
  * when used with discovering or validating sources, the sampled data of your source is returned.
1429
1429
  */
@@ -1435,7 +1435,7 @@ type WatchResponse = {
1435
1435
  /**
1436
1436
  * a message describing the outcome of a validate run.
1437
1437
  */
1438
- message: string;
1438
+ message?: string;
1439
1439
  };
1440
1440
 
1441
1441
  /**
@@ -2309,7 +2309,7 @@ type ValidateSourceBeforeUpdateProps = {
2309
2309
  sourceUpdate: SourceUpdate;
2310
2310
  };
2311
2311
 
2312
- declare const apiClientVersion = "1.23.2";
2312
+ declare const apiClientVersion = "1.23.3";
2313
2313
  declare const REGIONS: readonly ["eu", "us"];
2314
2314
  type Region = (typeof REGIONS)[number];
2315
2315
  type RegionOptions = {
package/dist/node.d.cts CHANGED
@@ -1423,7 +1423,7 @@ type WatchResponse = {
1423
1423
  /**
1424
1424
  * Universally unique identifier (UUID) of a task run.
1425
1425
  */
1426
- runID?: string;
1426
+ runID: string;
1427
1427
  /**
1428
1428
  * when used with discovering or validating sources, the sampled data of your source is returned.
1429
1429
  */
@@ -1435,7 +1435,7 @@ type WatchResponse = {
1435
1435
  /**
1436
1436
  * a message describing the outcome of a validate run.
1437
1437
  */
1438
- message: string;
1438
+ message?: string;
1439
1439
  };
1440
1440
 
1441
1441
  /**
@@ -2309,7 +2309,7 @@ type ValidateSourceBeforeUpdateProps = {
2309
2309
  sourceUpdate: SourceUpdate;
2310
2310
  };
2311
2311
 
2312
- declare const apiClientVersion = "1.23.2";
2312
+ declare const apiClientVersion = "1.23.3";
2313
2313
  declare const REGIONS: readonly ["eu", "us"];
2314
2314
  type Region = (typeof REGIONS)[number];
2315
2315
  type RegionOptions = {
package/dist/node.d.ts CHANGED
@@ -1423,7 +1423,7 @@ type WatchResponse = {
1423
1423
  /**
1424
1424
  * Universally unique identifier (UUID) of a task run.
1425
1425
  */
1426
- runID?: string;
1426
+ runID: string;
1427
1427
  /**
1428
1428
  * when used with discovering or validating sources, the sampled data of your source is returned.
1429
1429
  */
@@ -1435,7 +1435,7 @@ type WatchResponse = {
1435
1435
  /**
1436
1436
  * a message describing the outcome of a validate run.
1437
1437
  */
1438
- message: string;
1438
+ message?: string;
1439
1439
  };
1440
1440
 
1441
1441
  /**
@@ -2309,7 +2309,7 @@ type ValidateSourceBeforeUpdateProps = {
2309
2309
  sourceUpdate: SourceUpdate;
2310
2310
  };
2311
2311
 
2312
- declare const apiClientVersion = "1.23.2";
2312
+ declare const apiClientVersion = "1.23.3";
2313
2313
  declare const REGIONS: readonly ["eu", "us"];
2314
2314
  type Region = (typeof REGIONS)[number];
2315
2315
  type RegionOptions = {
@@ -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.23.2";
32
+ var apiClientVersion = "1.23.3";
33
33
  var REGIONS = ["eu", "us"];
34
34
  function getDefaultHosts(region) {
35
35
  const url = "data.{region}.algolia.com".replace("{region}", region);