@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/README.md CHANGED
@@ -41,11 +41,11 @@ All of our clients comes with type definition, and are available for both browse
41
41
  ### With a package manager
42
42
 
43
43
  ```bash
44
- yarn add @algolia/ingestion@1.23.2
44
+ yarn add @algolia/ingestion@1.23.3
45
45
  # or
46
- npm install @algolia/ingestion@1.23.2
46
+ npm install @algolia/ingestion@1.23.3
47
47
  # or
48
- pnpm add @algolia/ingestion@1.23.2
48
+ pnpm add @algolia/ingestion@1.23.3
49
49
  ```
50
50
 
51
51
  ### Without a package manager
@@ -53,7 +53,7 @@ pnpm add @algolia/ingestion@1.23.2
53
53
  Add the following JavaScript snippet to the <head> of your website:
54
54
 
55
55
  ```html
56
- <script src="https://cdn.jsdelivr.net/npm/@algolia/ingestion@1.23.2/dist/builds/browser.umd.js"></script>
56
+ <script src="https://cdn.jsdelivr.net/npm/@algolia/ingestion@1.23.3/dist/builds/browser.umd.js"></script>
57
57
  ```
58
58
 
59
59
  ### Usage
package/dist/browser.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 = {
@@ -9,7 +9,7 @@ import {
9
9
 
10
10
  // src/ingestionClient.ts
11
11
  import { createAuth, createTransporter, getAlgoliaAgent } from "@algolia/client-common";
12
- var apiClientVersion = "1.23.2";
12
+ var apiClientVersion = "1.23.3";
13
13
  var REGIONS = ["eu", "us"];
14
14
  function getDefaultHosts(region) {
15
15
  const url = "data.{region}.algolia.com".replace("{region}", region);