@algolia/ingestion 1.0.0-beta.13 → 1.0.0-beta.15
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/builds/browser.d.ts +5 -2
- package/dist/builds/browser.d.ts.map +1 -1
- package/dist/builds/node.d.ts +5 -2
- package/dist/builds/node.d.ts.map +1 -1
- package/dist/ingestion.cjs +98 -9
- package/dist/ingestion.esm.browser.js +98 -9
- package/dist/ingestion.esm.node.js +98 -9
- package/dist/ingestion.umd.js +2 -2
- package/dist/model/clientMethodProps.d.ts +22 -0
- package/dist/model/clientMethodProps.d.ts.map +1 -1
- package/dist/model/destination.d.ts +1 -0
- package/dist/model/destination.d.ts.map +1 -1
- package/dist/model/destinationCreate.d.ts +1 -0
- package/dist/model/destinationCreate.d.ts.map +1 -1
- package/dist/model/destinationInput.d.ts +1 -2
- package/dist/model/destinationInput.d.ts.map +1 -1
- package/dist/model/destinationUpdate.d.ts +1 -0
- package/dist/model/destinationUpdate.d.ts.map +1 -1
- package/dist/model/dockerStreams.d.ts +13 -0
- package/dist/model/dockerStreams.d.ts.map +1 -0
- package/dist/model/dockerStreamsInput.d.ts +2 -1
- package/dist/model/dockerStreamsInput.d.ts.map +1 -1
- package/dist/model/dockerStreamsSyncMode.d.ts +5 -0
- package/dist/model/dockerStreamsSyncMode.d.ts.map +1 -0
- package/dist/model/entityType.d.ts +5 -0
- package/dist/model/entityType.d.ts.map +1 -0
- package/dist/model/generateTransformationCodePayload.d.ts +6 -0
- package/dist/model/generateTransformationCodePayload.d.ts.map +1 -0
- package/dist/model/generateTransformationCodeResponse.d.ts +4 -0
- package/dist/model/generateTransformationCodeResponse.d.ts.map +1 -0
- package/dist/model/index.d.ts +9 -1
- package/dist/model/index.d.ts.map +1 -1
- package/dist/model/model.d.ts +8 -0
- package/dist/model/model.d.ts.map +1 -0
- package/dist/model/runSourcePayload.d.ts +17 -0
- package/dist/model/runSourcePayload.d.ts.map +1 -0
- package/dist/model/runSourceResponse.d.ts +11 -0
- package/dist/model/runSourceResponse.d.ts.map +1 -0
- package/dist/model/transformationModels.d.ts +8 -0
- package/dist/model/transformationModels.d.ts.map +1 -0
- package/dist/model/transformationSearch.d.ts +1 -1
- package/dist/model/transformationSearch.d.ts.map +1 -1
- package/dist/src/ingestionClient.d.ts +47 -4
- package/dist/src/ingestionClient.d.ts.map +1 -1
- package/model/clientMethodProps.ts +23 -0
- package/model/destination.ts +2 -0
- package/model/destinationCreate.ts +2 -0
- package/model/destinationInput.ts +1 -2
- package/model/destinationUpdate.ts +2 -0
- package/model/dockerStreams.ts +17 -0
- package/model/dockerStreamsInput.ts +3 -1
- package/model/dockerStreamsSyncMode.ts +6 -0
- package/model/entityType.ts +6 -0
- package/model/{destinationIndexPrefix.ts → generateTransformationCodePayload.ts} +6 -5
- package/model/generateTransformationCodeResponse.ts +5 -0
- package/model/index.ts +9 -1
- package/model/model.ts +13 -0
- package/model/runSourcePayload.ts +22 -0
- package/model/runSourceResponse.ts +13 -0
- package/model/transformationModels.ts +10 -0
- package/model/transformationSearch.ts +1 -1
- package/package.json +6 -6
- package/dist/model/destinationIndexPrefix.d.ts +0 -7
- package/dist/model/destinationIndexPrefix.d.ts.map +0 -1
|
@@ -4,7 +4,7 @@ import type { AuthenticationCreate } from '../model/authenticationCreate';
|
|
|
4
4
|
import type { AuthenticationCreateResponse } from '../model/authenticationCreateResponse';
|
|
5
5
|
import type { AuthenticationSearch } from '../model/authenticationSearch';
|
|
6
6
|
import type { AuthenticationUpdateResponse } from '../model/authenticationUpdateResponse';
|
|
7
|
-
import type { CustomDeleteProps, CustomGetProps, CustomPostProps, CustomPutProps, DeleteAuthenticationProps, DeleteDestinationProps, DeleteSourceProps, DeleteTaskProps, DeleteTaskV1Props, DeleteTransformationProps, DisableTaskProps, DisableTaskV1Props, EnableTaskProps, EnableTaskV1Props, GetAuthenticationProps, GetDestinationProps, GetEventProps, GetRunProps, GetSourceProps, GetTaskProps, GetTaskV1Props, GetTransformationProps, ListAuthenticationsProps, ListDestinationsProps, ListEventsProps, ListRunsProps, ListSourcesProps, ListTasksProps, ListTasksV1Props, ListTransformationsProps, PushTaskProps, RunTaskProps, RunTaskV1Props, TriggerDockerSourceDiscoverProps, UpdateAuthenticationProps, UpdateDestinationProps, UpdateSourceProps, UpdateTaskProps, UpdateTaskV1Props, UpdateTransformationProps, ValidateSourceBeforeUpdateProps } from '../model/clientMethodProps';
|
|
7
|
+
import type { CustomDeleteProps, CustomGetProps, CustomPostProps, CustomPutProps, DeleteAuthenticationProps, DeleteDestinationProps, DeleteSourceProps, DeleteTaskProps, DeleteTaskV1Props, DeleteTransformationProps, DisableTaskProps, DisableTaskV1Props, EnableTaskProps, EnableTaskV1Props, GetAuthenticationProps, GetDestinationProps, GetEventProps, GetRunProps, GetSourceProps, GetTaskProps, GetTaskV1Props, GetTransformationProps, ListAuthenticationsProps, ListDestinationsProps, ListEventsProps, ListRunsProps, ListSourcesProps, ListTasksProps, ListTasksV1Props, ListTransformationsProps, PushTaskProps, RunSourceProps, RunTaskProps, RunTaskV1Props, TriggerDockerSourceDiscoverProps, UpdateAuthenticationProps, UpdateDestinationProps, UpdateSourceProps, UpdateTaskProps, UpdateTaskV1Props, UpdateTransformationProps, ValidateSourceBeforeUpdateProps } from '../model/clientMethodProps';
|
|
8
8
|
import type { DeleteResponse } from '../model/deleteResponse';
|
|
9
9
|
import type { Destination } from '../model/destination';
|
|
10
10
|
import type { DestinationCreate } from '../model/destinationCreate';
|
|
@@ -12,6 +12,8 @@ import type { DestinationCreateResponse } from '../model/destinationCreateRespon
|
|
|
12
12
|
import type { DestinationSearch } from '../model/destinationSearch';
|
|
13
13
|
import type { DestinationUpdateResponse } from '../model/destinationUpdateResponse';
|
|
14
14
|
import type { Event } from '../model/event';
|
|
15
|
+
import type { GenerateTransformationCodePayload } from '../model/generateTransformationCodePayload';
|
|
16
|
+
import type { GenerateTransformationCodeResponse } from '../model/generateTransformationCodeResponse';
|
|
15
17
|
import type { ListAuthenticationsResponse } from '../model/listAuthenticationsResponse';
|
|
16
18
|
import type { ListDestinationsResponse } from '../model/listDestinationsResponse';
|
|
17
19
|
import type { ListEventsResponse } from '../model/listEventsResponse';
|
|
@@ -23,6 +25,7 @@ import type { OnDemandTrigger } from '../model/onDemandTrigger';
|
|
|
23
25
|
import type { Run } from '../model/run';
|
|
24
26
|
import type { RunListResponse } from '../model/runListResponse';
|
|
25
27
|
import type { RunResponse } from '../model/runResponse';
|
|
28
|
+
import type { RunSourceResponse } from '../model/runSourceResponse';
|
|
26
29
|
import type { ScheduleTrigger } from '../model/scheduleTrigger';
|
|
27
30
|
import type { Source } from '../model/source';
|
|
28
31
|
import type { SourceCreate } from '../model/sourceCreate';
|
|
@@ -42,12 +45,13 @@ import type { TaskV1 } from '../model/taskV1';
|
|
|
42
45
|
import type { Transformation } from '../model/transformation';
|
|
43
46
|
import type { TransformationCreate } from '../model/transformationCreate';
|
|
44
47
|
import type { TransformationCreateResponse } from '../model/transformationCreateResponse';
|
|
48
|
+
import type { TransformationModels } from '../model/transformationModels';
|
|
45
49
|
import type { TransformationSearch } from '../model/transformationSearch';
|
|
46
50
|
import type { TransformationTry } from '../model/transformationTry';
|
|
47
51
|
import type { TransformationTryResponse } from '../model/transformationTryResponse';
|
|
48
52
|
import type { TransformationUpdateResponse } from '../model/transformationUpdateResponse';
|
|
49
53
|
import type { Trigger } from '../model/trigger';
|
|
50
|
-
export declare const apiClientVersion = "1.0.0-beta.
|
|
54
|
+
export declare const apiClientVersion = "1.0.0-beta.15";
|
|
51
55
|
export declare const REGIONS: readonly ["eu", "us"];
|
|
52
56
|
export type Region = (typeof REGIONS)[number];
|
|
53
57
|
/**
|
|
@@ -304,6 +308,18 @@ export declare function createIngestionClient({ appId: appIdOption, apiKey: apiK
|
|
|
304
308
|
* @param requestOptions - The requestOptions to send along with the query, they will be merged with the transporter requestOptions.
|
|
305
309
|
*/
|
|
306
310
|
enableTaskV1({ taskID }: EnableTaskV1Props, requestOptions?: RequestOptions): Promise<TaskUpdateResponse>;
|
|
311
|
+
/**
|
|
312
|
+
* Generates code for the selected model based on the given prompt.
|
|
313
|
+
*
|
|
314
|
+
* Required API Key ACLs:
|
|
315
|
+
* - addObject
|
|
316
|
+
* - deleteIndex
|
|
317
|
+
* - editSettings.
|
|
318
|
+
*
|
|
319
|
+
* @param generateTransformationCodePayload - The generateTransformationCodePayload object.
|
|
320
|
+
* @param requestOptions - The requestOptions to send along with the query, they will be merged with the transporter requestOptions.
|
|
321
|
+
*/
|
|
322
|
+
generateTransformationCode(generateTransformationCodePayload: GenerateTransformationCodePayload, requestOptions?: RequestOptions): Promise<GenerateTransformationCodeResponse>;
|
|
307
323
|
/**
|
|
308
324
|
* Retrieves an authentication resource by its ID.
|
|
309
325
|
*
|
|
@@ -546,6 +562,17 @@ export declare function createIngestionClient({ appId: appIdOption, apiKey: apiK
|
|
|
546
562
|
* @param requestOptions - The requestOptions to send along with the query, they will be merged with the transporter requestOptions.
|
|
547
563
|
*/
|
|
548
564
|
listTasksV1({ itemsPerPage, page, action, enabled, sourceID, destinationID, triggerType, sort, order, }?: ListTasksV1Props, requestOptions?: RequestOptions | undefined): Promise<ListTasksResponseV1>;
|
|
565
|
+
/**
|
|
566
|
+
* Retrieves a list of existing LLM transformation helpers.
|
|
567
|
+
*
|
|
568
|
+
* Required API Key ACLs:
|
|
569
|
+
* - addObject
|
|
570
|
+
* - deleteIndex
|
|
571
|
+
* - editSettings.
|
|
572
|
+
*
|
|
573
|
+
* @param requestOptions - The requestOptions to send along with the query, they will be merged with the transporter requestOptions.
|
|
574
|
+
*/
|
|
575
|
+
listTransformationModels(requestOptions?: RequestOptions): Promise<TransformationModels>;
|
|
549
576
|
/**
|
|
550
577
|
* Retrieves a list of transformations.
|
|
551
578
|
*
|
|
@@ -555,11 +582,13 @@ export declare function createIngestionClient({ appId: appIdOption, apiKey: apiK
|
|
|
555
582
|
* - editSettings.
|
|
556
583
|
*
|
|
557
584
|
* @param listTransformations - The listTransformations object.
|
|
585
|
+
* @param listTransformations.itemsPerPage - Number of items per page.
|
|
586
|
+
* @param listTransformations.page - Page number of the paginated API response.
|
|
558
587
|
* @param listTransformations.sort - Property by which to sort the list.
|
|
559
588
|
* @param listTransformations.order - Sort order of the response, ascending or descending.
|
|
560
589
|
* @param requestOptions - The requestOptions to send along with the query, they will be merged with the transporter requestOptions.
|
|
561
590
|
*/
|
|
562
|
-
listTransformations({ sort, order }?: ListTransformationsProps, requestOptions?: RequestOptions | undefined): Promise<ListTransformationsResponse>;
|
|
591
|
+
listTransformations({ itemsPerPage, page, sort, order }?: ListTransformationsProps, requestOptions?: RequestOptions | undefined): Promise<ListTransformationsResponse>;
|
|
563
592
|
/**
|
|
564
593
|
* Push a `batch` request payload through the Pipeline. You can check the status of task pushes with the observability endpoints.
|
|
565
594
|
*
|
|
@@ -574,6 +603,20 @@ export declare function createIngestionClient({ appId: appIdOption, apiKey: apiK
|
|
|
574
603
|
* @param requestOptions - The requestOptions to send along with the query, they will be merged with the transporter requestOptions.
|
|
575
604
|
*/
|
|
576
605
|
pushTask({ taskID, batchWriteParams }: PushTaskProps, requestOptions?: RequestOptions): Promise<RunResponse>;
|
|
606
|
+
/**
|
|
607
|
+
* Runs all tasks linked to a source, only available for Shopify sources. It will create 1 run per task.
|
|
608
|
+
*
|
|
609
|
+
* Required API Key ACLs:
|
|
610
|
+
* - addObject
|
|
611
|
+
* - deleteIndex
|
|
612
|
+
* - editSettings.
|
|
613
|
+
*
|
|
614
|
+
* @param runSource - The runSource object.
|
|
615
|
+
* @param runSource.sourceID - Unique identifier of a source.
|
|
616
|
+
* @param runSource.runSourcePayload -.
|
|
617
|
+
* @param requestOptions - The requestOptions to send along with the query, they will be merged with the transporter requestOptions.
|
|
618
|
+
*/
|
|
619
|
+
runSource({ sourceID, runSourcePayload }: RunSourceProps, requestOptions?: RequestOptions): Promise<RunSourceResponse>;
|
|
577
620
|
/**
|
|
578
621
|
* Runs a task. You can check the status of task runs with the observability endpoints.
|
|
579
622
|
*
|
|
@@ -696,7 +739,7 @@ export declare function createIngestionClient({ appId: appIdOption, apiKey: apiK
|
|
|
696
739
|
* @param transformationTry - The transformationTry object.
|
|
697
740
|
* @param requestOptions - The requestOptions to send along with the query, they will be merged with the transporter requestOptions.
|
|
698
741
|
*/
|
|
699
|
-
|
|
742
|
+
tryTransformation(transformationTry: TransformationTry, requestOptions?: RequestOptions): Promise<TransformationTryResponse>;
|
|
700
743
|
/**
|
|
701
744
|
* Updates an authentication resource.
|
|
702
745
|
*
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"ingestionClient.d.ts","sourceRoot":"","sources":["../../src/ingestionClient.ts"],"names":[],"mappings":"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
|
|
1
|
+
{"version":3,"file":"ingestionClient.d.ts","sourceRoot":"","sources":["../../src/ingestionClient.ts"],"names":[],"mappings":"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"}
|
|
@@ -14,6 +14,7 @@ import type { EventType } from './eventType';
|
|
|
14
14
|
import type { OrderKeys } from './orderKeys';
|
|
15
15
|
import type { PlatformWithNone } from './platformWithNone';
|
|
16
16
|
import type { RunSortKeys } from './runSortKeys';
|
|
17
|
+
import type { RunSourcePayload } from './runSourcePayload';
|
|
17
18
|
import type { RunStatus } from './runStatus';
|
|
18
19
|
import type { SortKeys } from './sortKeys';
|
|
19
20
|
import type { SourceSortKeys } from './sourceSortKeys';
|
|
@@ -531,6 +532,14 @@ export type ListTasksV1Props = {
|
|
|
531
532
|
* Properties for the `listTransformations` method.
|
|
532
533
|
*/
|
|
533
534
|
export type ListTransformationsProps = {
|
|
535
|
+
/**
|
|
536
|
+
* Number of items per page.
|
|
537
|
+
*/
|
|
538
|
+
itemsPerPage?: number;
|
|
539
|
+
/**
|
|
540
|
+
* Page number of the paginated API response.
|
|
541
|
+
*/
|
|
542
|
+
page?: number;
|
|
534
543
|
/**
|
|
535
544
|
* Property by which to sort the list.
|
|
536
545
|
*/
|
|
@@ -555,6 +564,20 @@ export type PushTaskProps = {
|
|
|
555
564
|
batchWriteParams: BatchWriteParams;
|
|
556
565
|
};
|
|
557
566
|
|
|
567
|
+
/**
|
|
568
|
+
* Properties for the `runSource` method.
|
|
569
|
+
*/
|
|
570
|
+
export type RunSourceProps = {
|
|
571
|
+
/**
|
|
572
|
+
* Unique identifier of a source.
|
|
573
|
+
*/
|
|
574
|
+
sourceID: string;
|
|
575
|
+
/**
|
|
576
|
+
*
|
|
577
|
+
*/
|
|
578
|
+
runSourcePayload?: RunSourcePayload;
|
|
579
|
+
};
|
|
580
|
+
|
|
558
581
|
/**
|
|
559
582
|
* Properties for the `runTask` method.
|
|
560
583
|
*/
|
package/model/destination.ts
CHANGED
|
@@ -1,6 +1,5 @@
|
|
|
1
1
|
// Code generated by OpenAPI Generator (https://openapi-generator.tech), manual changes will be lost - read more on https://github.com/algolia/api-clients-automation. DO NOT EDIT.
|
|
2
2
|
|
|
3
3
|
import type { DestinationIndexName } from './destinationIndexName';
|
|
4
|
-
import type { DestinationIndexPrefix } from './destinationIndexPrefix';
|
|
5
4
|
|
|
6
|
-
export type DestinationInput = DestinationIndexName
|
|
5
|
+
export type DestinationInput = DestinationIndexName;
|
|
@@ -0,0 +1,17 @@
|
|
|
1
|
+
// Code generated by OpenAPI Generator (https://openapi-generator.tech), manual changes will be lost - read more on https://github.com/algolia/api-clients-automation. DO NOT EDIT.
|
|
2
|
+
|
|
3
|
+
import type { DockerStreamsSyncMode } from './dockerStreamsSyncMode';
|
|
4
|
+
|
|
5
|
+
export type DockerStreams = {
|
|
6
|
+
/**
|
|
7
|
+
* The name of the stream to fetch the data from (e.g. Table name).
|
|
8
|
+
*/
|
|
9
|
+
name: string;
|
|
10
|
+
|
|
11
|
+
/**
|
|
12
|
+
* The properties of the stream to select (e.g. Column).
|
|
13
|
+
*/
|
|
14
|
+
properties?: string[];
|
|
15
|
+
|
|
16
|
+
syncMode: DockerStreamsSyncMode;
|
|
17
|
+
};
|
|
@@ -1,8 +1,10 @@
|
|
|
1
1
|
// Code generated by OpenAPI Generator (https://openapi-generator.tech), manual changes will be lost - read more on https://github.com/algolia/api-clients-automation. DO NOT EDIT.
|
|
2
2
|
|
|
3
|
+
import type { DockerStreams } from './dockerStreams';
|
|
4
|
+
|
|
3
5
|
/**
|
|
4
6
|
* The selected streams of a singer or airbyte connector.
|
|
5
7
|
*/
|
|
6
8
|
export type DockerStreamsInput = {
|
|
7
|
-
streams:
|
|
9
|
+
streams: DockerStreams[];
|
|
8
10
|
};
|
|
@@ -0,0 +1,6 @@
|
|
|
1
|
+
// Code generated by OpenAPI Generator (https://openapi-generator.tech), manual changes will be lost - read more on https://github.com/algolia/api-clients-automation. DO NOT EDIT.
|
|
2
|
+
|
|
3
|
+
/**
|
|
4
|
+
* The strategy to use to fetch the data.
|
|
5
|
+
*/
|
|
6
|
+
export type DockerStreamsSyncMode = 'fullTable' | 'incremental';
|
|
@@ -0,0 +1,6 @@
|
|
|
1
|
+
// Code generated by OpenAPI Generator (https://openapi-generator.tech), manual changes will be lost - read more on https://github.com/algolia/api-clients-automation. DO NOT EDIT.
|
|
2
|
+
|
|
3
|
+
/**
|
|
4
|
+
* Type of entity to update.
|
|
5
|
+
*/
|
|
6
|
+
export type EntityType = 'collection' | 'product';
|
|
@@ -1,8 +1,9 @@
|
|
|
1
1
|
// Code generated by OpenAPI Generator (https://openapi-generator.tech), manual changes will be lost - read more on https://github.com/algolia/api-clients-automation. DO NOT EDIT.
|
|
2
2
|
|
|
3
|
-
export type
|
|
4
|
-
|
|
5
|
-
|
|
6
|
-
|
|
7
|
-
|
|
3
|
+
export type GenerateTransformationCodePayload = {
|
|
4
|
+
id: string;
|
|
5
|
+
|
|
6
|
+
systemPrompt?: string;
|
|
7
|
+
|
|
8
|
+
userPrompt: string;
|
|
8
9
|
};
|
package/model/index.ts
CHANGED
|
@@ -35,7 +35,6 @@ export * from './destination';
|
|
|
35
35
|
export * from './destinationCreate';
|
|
36
36
|
export * from './destinationCreateResponse';
|
|
37
37
|
export * from './destinationIndexName';
|
|
38
|
-
export * from './destinationIndexPrefix';
|
|
39
38
|
export * from './destinationInput';
|
|
40
39
|
export * from './destinationSearch';
|
|
41
40
|
export * from './destinationSortKeys';
|
|
@@ -44,12 +43,17 @@ export * from './destinationUpdate';
|
|
|
44
43
|
export * from './destinationUpdateResponse';
|
|
45
44
|
export * from './dockerImageType';
|
|
46
45
|
export * from './dockerRegistry';
|
|
46
|
+
export * from './dockerStreams';
|
|
47
47
|
export * from './dockerStreamsInput';
|
|
48
|
+
export * from './dockerStreamsSyncMode';
|
|
49
|
+
export * from './entityType';
|
|
48
50
|
export * from './errorBase';
|
|
49
51
|
export * from './event';
|
|
50
52
|
export * from './eventSortKeys';
|
|
51
53
|
export * from './eventStatus';
|
|
52
54
|
export * from './eventType';
|
|
55
|
+
export * from './generateTransformationCodePayload';
|
|
56
|
+
export * from './generateTransformationCodeResponse';
|
|
53
57
|
export * from './listAuthenticationsResponse';
|
|
54
58
|
export * from './listDestinationsResponse';
|
|
55
59
|
export * from './listEventsResponse';
|
|
@@ -63,6 +67,7 @@ export * from './mappingInput';
|
|
|
63
67
|
export * from './mappingKitAction';
|
|
64
68
|
export * from './mappingTypeCSV';
|
|
65
69
|
export * from './methodType';
|
|
70
|
+
export * from './model';
|
|
66
71
|
export * from './onDemandTrigger';
|
|
67
72
|
export * from './onDemandTriggerInput';
|
|
68
73
|
export * from './onDemandTriggerType';
|
|
@@ -79,6 +84,8 @@ export * from './runProgress';
|
|
|
79
84
|
export * from './runReasonCode';
|
|
80
85
|
export * from './runResponse';
|
|
81
86
|
export * from './runSortKeys';
|
|
87
|
+
export * from './runSourcePayload';
|
|
88
|
+
export * from './runSourceResponse';
|
|
82
89
|
export * from './runStatus';
|
|
83
90
|
export * from './runType';
|
|
84
91
|
export * from './scheduleTrigger';
|
|
@@ -132,6 +139,7 @@ export * from './transformation';
|
|
|
132
139
|
export * from './transformationCreate';
|
|
133
140
|
export * from './transformationCreateResponse';
|
|
134
141
|
export * from './transformationError';
|
|
142
|
+
export * from './transformationModels';
|
|
135
143
|
export * from './transformationSearch';
|
|
136
144
|
export * from './transformationTry';
|
|
137
145
|
export * from './transformationTryResponse';
|
package/model/model.ts
ADDED
|
@@ -0,0 +1,13 @@
|
|
|
1
|
+
// Code generated by OpenAPI Generator (https://openapi-generator.tech), manual changes will be lost - read more on https://github.com/algolia/api-clients-automation. DO NOT EDIT.
|
|
2
|
+
|
|
3
|
+
export type Model = {
|
|
4
|
+
fullname: string;
|
|
5
|
+
|
|
6
|
+
modelName: string;
|
|
7
|
+
|
|
8
|
+
systemPrompt: string;
|
|
9
|
+
|
|
10
|
+
id: string;
|
|
11
|
+
|
|
12
|
+
provider: string;
|
|
13
|
+
};
|
|
@@ -0,0 +1,22 @@
|
|
|
1
|
+
// Code generated by OpenAPI Generator (https://openapi-generator.tech), manual changes will be lost - read more on https://github.com/algolia/api-clients-automation. DO NOT EDIT.
|
|
2
|
+
|
|
3
|
+
import type { EntityType } from './entityType';
|
|
4
|
+
|
|
5
|
+
export type RunSourcePayload = {
|
|
6
|
+
/**
|
|
7
|
+
* List of index names to include in reidexing/update.
|
|
8
|
+
*/
|
|
9
|
+
indexToInclude?: string[];
|
|
10
|
+
|
|
11
|
+
/**
|
|
12
|
+
* List of index names to exclude in reidexing/update.
|
|
13
|
+
*/
|
|
14
|
+
indexToExclude?: string[];
|
|
15
|
+
|
|
16
|
+
/**
|
|
17
|
+
* List of entityID to update.
|
|
18
|
+
*/
|
|
19
|
+
entityIDs?: string[];
|
|
20
|
+
|
|
21
|
+
entityType?: EntityType;
|
|
22
|
+
};
|
|
@@ -0,0 +1,13 @@
|
|
|
1
|
+
// Code generated by OpenAPI Generator (https://openapi-generator.tech), manual changes will be lost - read more on https://github.com/algolia/api-clients-automation. DO NOT EDIT.
|
|
2
|
+
|
|
3
|
+
export type RunSourceResponse = {
|
|
4
|
+
/**
|
|
5
|
+
* Map of taskID sent for reindex with the corresponding runID.
|
|
6
|
+
*/
|
|
7
|
+
taskWithRunID: Record<string, string>;
|
|
8
|
+
|
|
9
|
+
/**
|
|
10
|
+
* Date of creation in RFC 3339 format.
|
|
11
|
+
*/
|
|
12
|
+
createdAt: string;
|
|
13
|
+
};
|
|
@@ -0,0 +1,10 @@
|
|
|
1
|
+
// Code generated by OpenAPI Generator (https://openapi-generator.tech), manual changes will be lost - read more on https://github.com/algolia/api-clients-automation. DO NOT EDIT.
|
|
2
|
+
|
|
3
|
+
import type { Model } from './model';
|
|
4
|
+
|
|
5
|
+
/**
|
|
6
|
+
* List of available AI models for transformation purposes.
|
|
7
|
+
*/
|
|
8
|
+
export type TransformationModels = {
|
|
9
|
+
llms: Model[];
|
|
10
|
+
};
|
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
// Code generated by OpenAPI Generator (https://openapi-generator.tech), manual changes will be lost - read more on https://github.com/algolia/api-clients-automation. DO NOT EDIT.
|
|
2
2
|
|
|
3
3
|
export type TransformationSearch = {
|
|
4
|
-
|
|
4
|
+
transformationIDs?: string[];
|
|
5
5
|
};
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@algolia/ingestion",
|
|
3
|
-
"version": "1.0.0-beta.
|
|
3
|
+
"version": "1.0.0-beta.15",
|
|
4
4
|
"description": "JavaScript client for ingestion",
|
|
5
5
|
"repository": {
|
|
6
6
|
"type": "git",
|
|
@@ -42,13 +42,13 @@
|
|
|
42
42
|
"clean": "rm -rf ./dist || true"
|
|
43
43
|
},
|
|
44
44
|
"dependencies": {
|
|
45
|
-
"@algolia/client-common": "5.0.0-beta.
|
|
46
|
-
"@algolia/requester-browser-xhr": "5.0.0-beta.
|
|
47
|
-
"@algolia/requester-node-http": "5.0.0-beta.
|
|
45
|
+
"@algolia/client-common": "5.0.0-beta.16",
|
|
46
|
+
"@algolia/requester-browser-xhr": "5.0.0-beta.16",
|
|
47
|
+
"@algolia/requester-node-http": "5.0.0-beta.16"
|
|
48
48
|
},
|
|
49
49
|
"devDependencies": {
|
|
50
|
-
"@types/node": "
|
|
51
|
-
"rollup": "4.
|
|
50
|
+
"@types/node": "22.1.0",
|
|
51
|
+
"rollup": "4.20.0",
|
|
52
52
|
"typescript": "5.5.4"
|
|
53
53
|
},
|
|
54
54
|
"engines": {
|
|
@@ -1 +0,0 @@
|
|
|
1
|
-
{"version":3,"file":"destinationIndexPrefix.d.ts","sourceRoot":"","sources":["../../model/destinationIndexPrefix.ts"],"names":[],"mappings":"AAEA,MAAM,MAAM,sBAAsB,GAAG;IACnC;;OAEG;IACH,WAAW,EAAE,MAAM,CAAC;CACrB,CAAC"}
|