@algolia/ingestion 1.40.1 → 1.42.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
@@ -507,6 +507,9 @@ type BigCommerceMetafield = {
507
507
  key: string;
508
508
  };
509
509
 
510
+ /**
511
+ * Specific configuration attributes of a `bigcommerce` source.
512
+ */
510
513
  type SourceBigCommerce = {
511
514
  /**
512
515
  * Store hash identifying your BigCommerce store.
@@ -520,6 +523,9 @@ type SourceBigCommerce = {
520
523
 
521
524
  type BigQueryDataType = 'ga4' | 'ga360';
522
525
 
526
+ /**
527
+ * Specific configuration attributes of a `bigquery` source.
528
+ */
523
529
  type SourceBigQuery = {
524
530
  /**
525
531
  * Project ID of the BigQuery source.
@@ -555,6 +561,9 @@ type MappingTypeCSV = 'string' | 'integer' | 'float' | 'boolean' | 'json';
555
561
  */
556
562
  type MethodType = 'GET' | 'POST';
557
563
 
564
+ /**
565
+ * Specific configuration attributes of a `csv` source.
566
+ */
558
567
  type SourceCSV = {
559
568
  /**
560
569
  * URL of the file.
@@ -595,6 +604,9 @@ type CommercetoolsCustomFields = {
595
604
  category?: Array<string> | null | undefined;
596
605
  };
597
606
 
607
+ /**
608
+ * Specific configuration attributes of a `commercetools` source.
609
+ */
598
610
  type SourceCommercetools = {
599
611
  storeKeys?: Array<string> | undefined;
600
612
  /**
@@ -614,6 +626,9 @@ type SourceCommercetools = {
614
626
  customFields?: CommercetoolsCustomFields | undefined;
615
627
  };
616
628
 
629
+ /**
630
+ * Specific configuration attributes of a `docker` source.
631
+ */
617
632
  type SourceDocker = {
618
633
  /**
619
634
  * Name of the connector.
@@ -625,6 +640,9 @@ type SourceDocker = {
625
640
  configuration: Record<string, unknown>;
626
641
  };
627
642
 
643
+ /**
644
+ * Specific configuration attributes of a `ga4BigqueryExport` source.
645
+ */
628
646
  type SourceGA4BigQueryExport = {
629
647
  /**
630
648
  * GCP project ID that the BigQuery export writes to.
@@ -640,6 +658,9 @@ type SourceGA4BigQueryExport = {
640
658
  tablePrefix: string;
641
659
  };
642
660
 
661
+ /**
662
+ * Specific configuration attributes of a `json` source.
663
+ */
643
664
  type SourceJSON = {
644
665
  /**
645
666
  * URL of the file.
@@ -659,6 +680,9 @@ type SourceShopifyBase = {
659
680
  shopURL: string;
660
681
  };
661
682
 
683
+ /**
684
+ * Specific configuration attributes of a `shopify` source.
685
+ */
662
686
  type SourceUpdateShopify = {
663
687
  /**
664
688
  * Feature flags for the Shopify source.
@@ -1496,7 +1520,6 @@ type AuthenticationUpdate = {
1496
1520
  * Descriptive name for the resource.
1497
1521
  */
1498
1522
  name?: string | undefined;
1499
- platform?: Platform | null | undefined;
1500
1523
  input?: AuthInputPartial | undefined;
1501
1524
  };
1502
1525
 
@@ -1597,6 +1620,9 @@ type RunTaskPayload = {
1597
1620
  */
1598
1621
  type SourceSortKeys = 'name' | 'type' | 'updatedAt' | 'createdAt';
1599
1622
 
1623
+ /**
1624
+ * Specific configuration attributes of a `commercetools` source.
1625
+ */
1600
1626
  type SourceUpdateCommercetools = {
1601
1627
  storeKeys?: Array<string> | undefined;
1602
1628
  /**
@@ -1615,6 +1641,9 @@ type SourceUpdateCommercetools = {
1615
1641
  customFields?: CommercetoolsCustomFields | undefined;
1616
1642
  };
1617
1643
 
1644
+ /**
1645
+ * Specific configuration attributes of a `docker` source.
1646
+ */
1618
1647
  type SourceUpdateDocker = {
1619
1648
  /**
1620
1649
  * Configuration of the spec.
@@ -2457,7 +2486,7 @@ type ChunkedPushOptions = {
2457
2486
  objects: Array<Record<string, unknown>>;
2458
2487
  };
2459
2488
 
2460
- declare const apiClientVersion = "1.40.1";
2489
+ declare const apiClientVersion = "1.42.0";
2461
2490
  declare const REGIONS: readonly ["eu", "us"];
2462
2491
  type Region = (typeof REGIONS)[number];
2463
2492
  type RegionOptions = {
@@ -2567,6 +2596,11 @@ declare function createIngestionClient({ appId: appIdOption, apiKey: apiKeyOptio
2567
2596
  createSource(sourceCreate: SourceCreate, requestOptions?: RequestOptions): Promise<SourceCreateResponse>;
2568
2597
  /**
2569
2598
  * Creates a new task.
2599
+ *
2600
+ * Required API Key ACLs:
2601
+ * - addObject
2602
+ * - deleteIndex
2603
+ * - editSettings
2570
2604
  * @param taskCreate - Request body for creating a task.
2571
2605
  * @param requestOptions - The requestOptions to send along with the query, they will be merged with the transporter requestOptions.
2572
2606
  */
@@ -2574,6 +2608,11 @@ declare function createIngestionClient({ appId: appIdOption, apiKey: apiKeyOptio
2574
2608
  /**
2575
2609
  * Creates a new task using the v1 endpoint, please use `createTask` instead.
2576
2610
  *
2611
+ * Required API Key ACLs:
2612
+ * - addObject
2613
+ * - deleteIndex
2614
+ * - editSettings
2615
+ *
2577
2616
  * @deprecated
2578
2617
  * @param taskCreate - Request body for creating a task.
2579
2618
  * @param requestOptions - The requestOptions to send along with the query, they will be merged with the transporter requestOptions.
@@ -2581,6 +2620,11 @@ declare function createIngestionClient({ appId: appIdOption, apiKey: apiKeyOptio
2581
2620
  createTaskV1(taskCreate: TaskCreateV1, requestOptions?: RequestOptions): Promise<TaskCreateResponse>;
2582
2621
  /**
2583
2622
  * Creates a new transformation.
2623
+ *
2624
+ * Required API Key ACLs:
2625
+ * - addObject
2626
+ * - deleteIndex
2627
+ * - editSettings
2584
2628
  * @param transformationCreate - Request body for creating a transformation.
2585
2629
  * @param requestOptions - The requestOptions to send along with the query, they will be merged with the transporter requestOptions.
2586
2630
  */
@@ -2657,6 +2701,11 @@ declare function createIngestionClient({ appId: appIdOption, apiKey: apiKeyOptio
2657
2701
  deleteSource({ sourceID }: DeleteSourceProps, requestOptions?: RequestOptions): Promise<DeleteResponse>;
2658
2702
  /**
2659
2703
  * Deletes a task by its ID.
2704
+ *
2705
+ * Required API Key ACLs:
2706
+ * - addObject
2707
+ * - deleteIndex
2708
+ * - editSettings
2660
2709
  * @param deleteTask - The deleteTask object.
2661
2710
  * @param deleteTask.taskID - Unique identifier of a task.
2662
2711
  * @param requestOptions - The requestOptions to send along with the query, they will be merged with the transporter requestOptions.
@@ -2665,6 +2714,11 @@ declare function createIngestionClient({ appId: appIdOption, apiKey: apiKeyOptio
2665
2714
  /**
2666
2715
  * Deletes a task by its ID using the v1 endpoint, please use `deleteTask` instead.
2667
2716
  *
2717
+ * Required API Key ACLs:
2718
+ * - addObject
2719
+ * - deleteIndex
2720
+ * - editSettings
2721
+ *
2668
2722
  * @deprecated
2669
2723
  * @param deleteTaskV1 - The deleteTaskV1 object.
2670
2724
  * @param deleteTaskV1.taskID - Unique identifier of a task.
@@ -2673,6 +2727,11 @@ declare function createIngestionClient({ appId: appIdOption, apiKey: apiKeyOptio
2673
2727
  deleteTaskV1({ taskID }: DeleteTaskV1Props, requestOptions?: RequestOptions): Promise<DeleteResponse>;
2674
2728
  /**
2675
2729
  * Deletes a transformation by its ID.
2730
+ *
2731
+ * Required API Key ACLs:
2732
+ * - addObject
2733
+ * - deleteIndex
2734
+ * - editSettings
2676
2735
  * @param deleteTransformation - The deleteTransformation object.
2677
2736
  * @param deleteTransformation.transformationID - Unique identifier of a transformation.
2678
2737
  * @param requestOptions - The requestOptions to send along with the query, they will be merged with the transporter requestOptions.
@@ -3012,6 +3071,11 @@ declare function createIngestionClient({ appId: appIdOption, apiKey: apiKeyOptio
3012
3071
  pushTask({ taskID, pushTaskPayload, watch }: PushTaskProps, requestOptions?: RequestOptions): Promise<WatchResponse>;
3013
3072
  /**
3014
3073
  * Fully updates a task by its ID, use partialUpdateTask if you only want to update a subset of fields.
3074
+ *
3075
+ * Required API Key ACLs:
3076
+ * - addObject
3077
+ * - deleteIndex
3078
+ * - editSettings
3015
3079
  * @param replaceTask - The replaceTask object.
3016
3080
  * @param replaceTask.taskID - Unique identifier of a task.
3017
3081
  * @param replaceTask.taskReplace - The taskReplace object.
@@ -3204,6 +3268,11 @@ declare function createIngestionClient({ appId: appIdOption, apiKey: apiKeyOptio
3204
3268
  updateSource({ sourceID, sourceUpdate }: UpdateSourceProps, requestOptions?: RequestOptions): Promise<SourceUpdateResponse>;
3205
3269
  /**
3206
3270
  * Partially updates a task by its ID.
3271
+ *
3272
+ * Required API Key ACLs:
3273
+ * - addObject
3274
+ * - deleteIndex
3275
+ * - editSettings
3207
3276
  * @param updateTask - The updateTask object.
3208
3277
  * @param updateTask.taskID - Unique identifier of a task.
3209
3278
  * @param updateTask.taskUpdate - The taskUpdate object.
@@ -3213,6 +3282,11 @@ declare function createIngestionClient({ appId: appIdOption, apiKey: apiKeyOptio
3213
3282
  /**
3214
3283
  * Updates a task by its ID using the v1 endpoint, please use `updateTask` instead.
3215
3284
  *
3285
+ * Required API Key ACLs:
3286
+ * - addObject
3287
+ * - deleteIndex
3288
+ * - editSettings
3289
+ *
3216
3290
  * @deprecated
3217
3291
  * @param updateTaskV1 - The updateTaskV1 object.
3218
3292
  * @param updateTaskV1.taskID - Unique identifier of a task.
@@ -3222,6 +3296,11 @@ declare function createIngestionClient({ appId: appIdOption, apiKey: apiKeyOptio
3222
3296
  updateTaskV1({ taskID, taskUpdate }: UpdateTaskV1Props, requestOptions?: RequestOptions): Promise<TaskUpdateResponse>;
3223
3297
  /**
3224
3298
  * Updates a transformation by its ID.
3299
+ *
3300
+ * Required API Key ACLs:
3301
+ * - addObject
3302
+ * - deleteIndex
3303
+ * - editSettings
3225
3304
  * @param updateTransformation - The updateTransformation object.
3226
3305
  * @param updateTransformation.transformationID - Unique identifier of a transformation.
3227
3306
  * @param updateTransformation.transformationCreate - The transformationCreate object.
package/package.json CHANGED
@@ -1,5 +1,5 @@
1
1
  {
2
- "version": "1.40.1",
2
+ "version": "1.42.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.40.1",
53
- "@algolia/requester-browser-xhr": "5.40.1",
54
- "@algolia/requester-fetch": "5.40.1",
55
- "@algolia/requester-node-http": "5.40.1"
52
+ "@algolia/client-common": "5.42.0",
53
+ "@algolia/requester-browser-xhr": "5.42.0",
54
+ "@algolia/requester-fetch": "5.42.0",
55
+ "@algolia/requester-node-http": "5.42.0"
56
56
  },
57
57
  "devDependencies": {
58
58
  "@arethetypeswrong/cli": "0.18.2",
59
- "@types/node": "22.18.10",
60
- "publint": "0.3.14",
61
- "rollup": "4.52.4",
59
+ "@types/node": "22.18.12",
60
+ "publint": "0.3.15",
61
+ "rollup": "4.52.5",
62
62
  "tsup": "8.5.0",
63
63
  "typescript": "5.9.3"
64
64
  },