@algolia/ingestion 1.43.0 → 1.44.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.
package/dist/worker.d.ts CHANGED
@@ -623,6 +623,10 @@ type SourceCommercetools = {
623
623
  * Predicate to filter out specific products when indexing. For more information, see [Query Predicate](https://docs.commercetools.com/api/predicates/query).
624
624
  */
625
625
  productQueryPredicate?: string | undefined;
626
+ /**
627
+ * When set to true, the connector indexes objects with all images attributes instead of only the URLs.
628
+ */
629
+ useImagesObjects?: boolean | undefined;
626
630
  customFields?: CommercetoolsCustomFields | undefined;
627
631
  };
628
632
 
@@ -1137,12 +1141,12 @@ type RunProgress = {
1137
1141
  /**
1138
1142
  * A code for the task run\'s outcome. A readable description of the code is included in the `reason` response property.
1139
1143
  */
1140
- type RunReasonCode = 'internal' | 'critical' | 'no_events' | 'too_many_errors' | 'ok' | 'discarded' | 'blocking';
1144
+ type RunReasonCode = 'internal' | 'cancelled' | 'critical' | 'no_events' | 'too_many_errors' | 'lacking_events' | 'ok' | 'blocking' | 'idle';
1141
1145
 
1142
1146
  /**
1143
1147
  * Task run status.
1144
1148
  */
1145
- type RunStatus = 'created' | 'started' | 'idled' | 'finished' | 'skipped';
1149
+ type RunStatus = 'created' | 'started' | 'finished' | 'skipped';
1146
1150
 
1147
1151
  /**
1148
1152
  * Task run type.
@@ -1638,6 +1642,10 @@ type SourceUpdateCommercetools = {
1638
1642
  * Predicate to filter out specific products when indexing. For more information, see [Query Predicate](https://docs.commercetools.com/api/predicates/query).
1639
1643
  */
1640
1644
  productQueryPredicate?: string | undefined;
1645
+ /**
1646
+ * When set to true, the connector indexes objects with all images attributes instead of only the URLs.
1647
+ */
1648
+ useImagesObjects?: boolean | undefined;
1641
1649
  customFields?: CommercetoolsCustomFields | undefined;
1642
1650
  };
1643
1651
 
@@ -2486,7 +2494,7 @@ type ChunkedPushOptions = {
2486
2494
  objects: Array<Record<string, unknown>>;
2487
2495
  };
2488
2496
 
2489
- declare const apiClientVersion = "1.43.0";
2497
+ declare const apiClientVersion = "1.44.0";
2490
2498
  declare const REGIONS: readonly ["eu", "us"];
2491
2499
  type Region = (typeof REGIONS)[number];
2492
2500
  type RegionOptions = {
package/package.json CHANGED
@@ -1,5 +1,5 @@
1
1
  {
2
- "version": "1.43.0",
2
+ "version": "1.44.0",
3
3
  "repository": {
4
4
  "type": "git",
5
5
  "url": "git+https://github.com/algolia/algoliasearch-client-javascript.git"
@@ -49,16 +49,16 @@
49
49
  "index.d.ts"
50
50
  ],
51
51
  "dependencies": {
52
- "@algolia/client-common": "5.43.0",
53
- "@algolia/requester-browser-xhr": "5.43.0",
54
- "@algolia/requester-fetch": "5.43.0",
55
- "@algolia/requester-node-http": "5.43.0"
52
+ "@algolia/client-common": "5.44.0",
53
+ "@algolia/requester-browser-xhr": "5.44.0",
54
+ "@algolia/requester-fetch": "5.44.0",
55
+ "@algolia/requester-node-http": "5.44.0"
56
56
  },
57
57
  "devDependencies": {
58
58
  "@arethetypeswrong/cli": "0.18.2",
59
- "@types/node": "24.10.0",
59
+ "@types/node": "24.10.1",
60
60
  "publint": "0.3.15",
61
- "rollup": "4.52.5",
61
+ "rollup": "4.53.2",
62
62
  "tsup": "8.5.0",
63
63
  "typescript": "5.9.3"
64
64
  },