@algolia/ingestion 1.5.3 → 1.6.1
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/README.md +13 -6
- package/dist/browser.d.ts +24 -19
- package/dist/builds/browser.js +12 -6
- package/dist/builds/browser.js.map +1 -1
- package/dist/builds/browser.min.js +1 -1
- package/dist/builds/browser.min.js.map +1 -1
- package/dist/builds/browser.umd.js +5 -5
- package/dist/builds/fetch.js +12 -6
- package/dist/builds/fetch.js.map +1 -1
- package/dist/builds/node.cjs +11 -6
- package/dist/builds/node.cjs.map +1 -1
- package/dist/builds/node.js +12 -6
- package/dist/builds/node.js.map +1 -1
- package/dist/fetch.d.ts +24 -19
- package/dist/node.d.cts +24 -19
- package/dist/node.d.ts +24 -19
- package/dist/src/ingestionClient.cjs +10 -6
- package/dist/src/ingestionClient.cjs.map +1 -1
- package/dist/src/ingestionClient.js +10 -6
- package/dist/src/ingestionClient.js.map +1 -1
- package/model/authenticationSortKeys.ts +2 -2
- package/model/clientMethodProps.ts +10 -6
- package/model/index.ts +1 -1
- package/model/{sortKeys.ts → transformationSortKeys.ts} +2 -2
- package/package.json +7 -7
|
@@ -17,7 +17,6 @@ import type { RunSortKeys } from './runSortKeys';
|
|
|
17
17
|
import type { RunSourcePayload } from './runSourcePayload';
|
|
18
18
|
import type { RunStatus } from './runStatus';
|
|
19
19
|
import type { RunType } from './runType';
|
|
20
|
-
import type { SortKeys } from './sortKeys';
|
|
21
20
|
import type { SourceSortKeys } from './sourceSortKeys';
|
|
22
21
|
import type { SourceType } from './sourceType';
|
|
23
22
|
import type { SourceUpdate } from './sourceUpdate';
|
|
@@ -25,6 +24,7 @@ import type { TaskSortKeys } from './taskSortKeys';
|
|
|
25
24
|
import type { TaskUpdate } from './taskUpdate';
|
|
26
25
|
import type { TaskUpdateV1 } from './taskUpdateV1';
|
|
27
26
|
import type { TransformationCreate } from './transformationCreate';
|
|
27
|
+
import type { TransformationSortKeys } from './transformationSortKeys';
|
|
28
28
|
import type { TransformationTry } from './transformationTry';
|
|
29
29
|
import type { TriggerType } from './triggerType';
|
|
30
30
|
|
|
@@ -293,11 +293,11 @@ export type ListAuthenticationsProps = {
|
|
|
293
293
|
*/
|
|
294
294
|
type?: AuthenticationType[];
|
|
295
295
|
/**
|
|
296
|
-
* Ecommerce platform for which to retrieve
|
|
296
|
+
* Ecommerce platform for which to retrieve authentications.
|
|
297
297
|
*/
|
|
298
298
|
platform?: PlatformWithNone[];
|
|
299
299
|
/**
|
|
300
|
-
* Property by which to sort the list of
|
|
300
|
+
* Property by which to sort the list of authentications.
|
|
301
301
|
*/
|
|
302
302
|
sort?: AuthenticationSortKeys;
|
|
303
303
|
/**
|
|
@@ -326,6 +326,10 @@ export type ListDestinationsProps = {
|
|
|
326
326
|
* Authentication ID used by destinations.
|
|
327
327
|
*/
|
|
328
328
|
authenticationID?: string[];
|
|
329
|
+
/**
|
|
330
|
+
* Get the list of destinations used by a transformation.
|
|
331
|
+
*/
|
|
332
|
+
transformationID?: string;
|
|
329
333
|
/**
|
|
330
334
|
* Property by which to sort the destinations.
|
|
331
335
|
*/
|
|
@@ -437,7 +441,7 @@ export type ListSourcesProps = {
|
|
|
437
441
|
*/
|
|
438
442
|
type?: SourceType[];
|
|
439
443
|
/**
|
|
440
|
-
* Authentication IDs of the sources to retrieve. \'none\' returns sources that doesn\'t have an authentication
|
|
444
|
+
* Authentication IDs of the sources to retrieve. \'none\' returns sources that doesn\'t have an authentication.
|
|
441
445
|
*/
|
|
442
446
|
authenticationID?: string[];
|
|
443
447
|
/**
|
|
@@ -547,9 +551,9 @@ export type ListTransformationsProps = {
|
|
|
547
551
|
*/
|
|
548
552
|
page?: number;
|
|
549
553
|
/**
|
|
550
|
-
* Property by which to sort the list.
|
|
554
|
+
* Property by which to sort the list of transformations.
|
|
551
555
|
*/
|
|
552
|
-
sort?:
|
|
556
|
+
sort?: TransformationSortKeys;
|
|
553
557
|
/**
|
|
554
558
|
* Sort order of the response, ascending or descending.
|
|
555
559
|
*/
|
package/model/index.ts
CHANGED
|
@@ -91,7 +91,6 @@ export * from './scheduleTriggerType';
|
|
|
91
91
|
export * from './shopifyInput';
|
|
92
92
|
export * from './shopifyMarket';
|
|
93
93
|
export * from './shopifyMetafield';
|
|
94
|
-
export * from './sortKeys';
|
|
95
94
|
export * from './source';
|
|
96
95
|
export * from './sourceBigCommerce';
|
|
97
96
|
export * from './sourceBigQuery';
|
|
@@ -137,6 +136,7 @@ export * from './transformationCreate';
|
|
|
137
136
|
export * from './transformationCreateResponse';
|
|
138
137
|
export * from './transformationError';
|
|
139
138
|
export * from './transformationSearch';
|
|
139
|
+
export * from './transformationSortKeys';
|
|
140
140
|
export * from './transformationTry';
|
|
141
141
|
export * from './transformationTryResponse';
|
|
142
142
|
export * from './transformationUpdateResponse';
|
|
@@ -1,6 +1,6 @@
|
|
|
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
|
/**
|
|
4
|
-
* Property by which to sort the list.
|
|
4
|
+
* Property by which to sort the list of transformations.
|
|
5
5
|
*/
|
|
6
|
-
export type
|
|
6
|
+
export type TransformationSortKeys = 'createdAt' | 'name' | 'updatedAt';
|
package/package.json
CHANGED
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
{
|
|
2
|
-
"version": "1.
|
|
2
|
+
"version": "1.6.1",
|
|
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.
|
|
53
|
-
"@algolia/requester-browser-xhr": "5.
|
|
54
|
-
"@algolia/requester-fetch": "5.
|
|
55
|
-
"@algolia/requester-node-http": "5.
|
|
52
|
+
"@algolia/client-common": "5.6.1",
|
|
53
|
+
"@algolia/requester-browser-xhr": "5.6.1",
|
|
54
|
+
"@algolia/requester-fetch": "5.6.1",
|
|
55
|
+
"@algolia/requester-node-http": "5.6.1"
|
|
56
56
|
},
|
|
57
57
|
"devDependencies": {
|
|
58
|
-
"@arethetypeswrong/cli": "0.16.
|
|
58
|
+
"@arethetypeswrong/cli": "0.16.4",
|
|
59
59
|
"@types/node": "22.5.5",
|
|
60
60
|
"publint": "0.2.11",
|
|
61
|
-
"rollup": "4.
|
|
61
|
+
"rollup": "4.22.4",
|
|
62
62
|
"tsup": "8.3.0",
|
|
63
63
|
"typescript": "5.6.2"
|
|
64
64
|
},
|