@algolia/ingestion 1.23.1 → 1.23.2

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/worker.d.ts CHANGED
@@ -129,7 +129,7 @@ type Authentication = {
129
129
  /**
130
130
  * Date of last update in RFC 3339 format.
131
131
  */
132
- updatedAt?: string;
132
+ updatedAt: string;
133
133
  };
134
134
 
135
135
  /**
@@ -336,7 +336,7 @@ type Destination = {
336
336
  /**
337
337
  * Date of last update in RFC 3339 format.
338
338
  */
339
- updatedAt?: string;
339
+ updatedAt: string;
340
340
  /**
341
341
  * Universally unique identifier (UUID) of an authentication resource.
342
342
  */
@@ -699,7 +699,7 @@ type Source = {
699
699
  /**
700
700
  * Date of last update in RFC 3339 format.
701
701
  */
702
- updatedAt?: string;
702
+ updatedAt: string;
703
703
  };
704
704
 
705
705
  type ListSourcesResponse = {
@@ -899,7 +899,7 @@ type Task = {
899
899
  /**
900
900
  * Date of last update in RFC 3339 format.
901
901
  */
902
- updatedAt?: string;
902
+ updatedAt: string;
903
903
  };
904
904
 
905
905
  /**
@@ -1019,7 +1019,7 @@ type TaskV1 = {
1019
1019
  /**
1020
1020
  * Date of last update in RFC 3339 format.
1021
1021
  */
1022
- updatedAt?: string;
1022
+ updatedAt: string;
1023
1023
  };
1024
1024
 
1025
1025
  /**
@@ -1062,7 +1062,7 @@ type Transformation = {
1062
1062
  /**
1063
1063
  * Date of last update in RFC 3339 format.
1064
1064
  */
1065
- updatedAt?: string;
1065
+ updatedAt: string;
1066
1066
  };
1067
1067
 
1068
1068
  /**
@@ -1399,9 +1399,9 @@ type TransformationError = {
1399
1399
 
1400
1400
  type TransformationTryResponse = {
1401
1401
  /**
1402
- * The array of records returned by the transformation service.
1402
+ * The array of stringified records returned by the transformation service.
1403
1403
  */
1404
- payloads: Array<Record<string, unknown>>;
1404
+ payloads: Array<string>;
1405
1405
  error?: TransformationError;
1406
1406
  };
1407
1407
 
@@ -2309,7 +2309,7 @@ type ValidateSourceBeforeUpdateProps = {
2309
2309
  sourceUpdate: SourceUpdate;
2310
2310
  };
2311
2311
 
2312
- declare const apiClientVersion = "1.23.1";
2312
+ declare const apiClientVersion = "1.23.2";
2313
2313
  declare const REGIONS: readonly ["eu", "us"];
2314
2314
  type Region = (typeof REGIONS)[number];
2315
2315
  type RegionOptions = {
package/package.json CHANGED
@@ -1,5 +1,5 @@
1
1
  {
2
- "version": "1.23.1",
2
+ "version": "1.23.2",
3
3
  "repository": {
4
4
  "type": "git",
5
5
  "url": "git+https://github.com/algolia/algoliasearch-client-javascript.git"
@@ -49,10 +49,10 @@
49
49
  "index.d.ts"
50
50
  ],
51
51
  "dependencies": {
52
- "@algolia/client-common": "5.23.1",
53
- "@algolia/requester-browser-xhr": "5.23.1",
54
- "@algolia/requester-fetch": "5.23.1",
55
- "@algolia/requester-node-http": "5.23.1"
52
+ "@algolia/client-common": "5.23.2",
53
+ "@algolia/requester-browser-xhr": "5.23.2",
54
+ "@algolia/requester-fetch": "5.23.2",
55
+ "@algolia/requester-node-http": "5.23.2"
56
56
  },
57
57
  "devDependencies": {
58
58
  "@arethetypeswrong/cli": "0.17.4",