@algolia/ingestion 1.5.1 → 1.5.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/model/index.ts CHANGED
@@ -50,8 +50,6 @@ export * from './event';
50
50
  export * from './eventSortKeys';
51
51
  export * from './eventStatus';
52
52
  export * from './eventType';
53
- export * from './generateTransformationCodePayload';
54
- export * from './generateTransformationCodeResponse';
55
53
  export * from './listAuthenticationsResponse';
56
54
  export * from './listDestinationsResponse';
57
55
  export * from './listEventsResponse';
@@ -65,7 +63,6 @@ export * from './mappingInput';
65
63
  export * from './mappingKitAction';
66
64
  export * from './mappingTypeCSV';
67
65
  export * from './methodType';
68
- export * from './model';
69
66
  export * from './onDemandTrigger';
70
67
  export * from './onDemandTriggerInput';
71
68
  export * from './onDemandTriggerType';
@@ -139,7 +136,6 @@ export * from './transformation';
139
136
  export * from './transformationCreate';
140
137
  export * from './transformationCreateResponse';
141
138
  export * from './transformationError';
142
- export * from './transformationModels';
143
139
  export * from './transformationSearch';
144
140
  export * from './transformationTry';
145
141
  export * from './transformationTryResponse';
package/package.json CHANGED
@@ -1,5 +1,5 @@
1
1
  {
2
- "version": "1.5.1",
2
+ "version": "1.5.3",
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.5.1",
53
- "@algolia/requester-browser-xhr": "5.5.1",
54
- "@algolia/requester-fetch": "5.5.1",
55
- "@algolia/requester-node-http": "5.5.1"
52
+ "@algolia/client-common": "5.5.3",
53
+ "@algolia/requester-browser-xhr": "5.5.3",
54
+ "@algolia/requester-fetch": "5.5.3",
55
+ "@algolia/requester-node-http": "5.5.3"
56
56
  },
57
57
  "devDependencies": {
58
58
  "@arethetypeswrong/cli": "0.16.2",
@@ -1,9 +0,0 @@
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 GenerateTransformationCodePayload = {
4
- id: string;
5
-
6
- systemPrompt?: string;
7
-
8
- userPrompt: string;
9
- };
@@ -1,5 +0,0 @@
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 GenerateTransformationCodeResponse = {
4
- generatedCode?: string;
5
- };
package/model/model.ts DELETED
@@ -1,13 +0,0 @@
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
- };
@@ -1,10 +0,0 @@
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
- };