@algolia/ingestion 1.0.0-beta.1 → 1.0.0-beta.11
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/LICENSE +21 -0
- package/dist/builds/browser.d.ts +41 -33
- package/dist/builds/browser.d.ts.map +1 -1
- package/dist/builds/node.d.ts +41 -33
- package/dist/builds/node.d.ts.map +1 -1
- package/dist/ingestion.cjs +265 -32
- package/dist/ingestion.esm.browser.js +275 -49
- package/dist/ingestion.esm.node.js +265 -32
- package/dist/ingestion.umd.js +2 -2
- package/dist/model/authentication.d.ts +2 -2
- package/dist/model/authenticationCreateResponse.d.ts +1 -1
- package/dist/model/authenticationUpdateResponse.d.ts +1 -1
- package/dist/model/clientMethodProps.d.ts +57 -13
- package/dist/model/clientMethodProps.d.ts.map +1 -1
- package/dist/model/deleteResponse.d.ts +1 -1
- package/dist/model/destination.d.ts +2 -2
- package/dist/model/destinationCreateResponse.d.ts +1 -1
- package/dist/model/destinationUpdateResponse.d.ts +1 -1
- package/dist/model/dockerStreamsInput.d.ts +4 -0
- package/dist/model/dockerStreamsInput.d.ts.map +1 -0
- package/dist/model/event.d.ts +1 -1
- package/dist/model/index.d.ts +13 -5
- package/dist/model/index.d.ts.map +1 -1
- package/dist/model/listTransformationsResponse.d.ts +10 -0
- package/dist/model/listTransformationsResponse.d.ts.map +1 -0
- package/dist/model/onDemandTrigger.d.ts +1 -1
- package/dist/model/run.d.ts +3 -3
- package/dist/model/runResponse.d.ts +1 -1
- package/dist/model/scheduleTrigger.d.ts +2 -2
- package/dist/model/sortKeys.d.ts +5 -0
- package/dist/model/sortKeys.d.ts.map +1 -0
- package/dist/model/source.d.ts +2 -2
- package/dist/model/sourceCreateResponse.d.ts +1 -1
- package/dist/model/sourceUpdateResponse.d.ts +1 -1
- package/dist/model/sourceUpdateShopify.d.ts +2 -26
- package/dist/model/sourceUpdateShopify.d.ts.map +1 -1
- package/dist/model/sourceWatchResponse.d.ts +20 -0
- package/dist/model/sourceWatchResponse.d.ts.map +1 -0
- package/dist/model/{streamingUtilsInput.d.ts → streamingInput.d.ts} +2 -2
- package/dist/model/streamingInput.d.ts.map +1 -0
- package/dist/model/task.d.ts +6 -2
- package/dist/model/task.d.ts.map +1 -1
- package/dist/model/taskCreate.d.ts +4 -0
- package/dist/model/taskCreate.d.ts.map +1 -1
- package/dist/model/taskCreateResponse.d.ts +1 -1
- package/dist/model/taskInput.d.ts +3 -4
- package/dist/model/taskInput.d.ts.map +1 -1
- package/dist/model/taskUpdateResponse.d.ts +1 -1
- package/dist/model/transformation.d.ts +27 -0
- package/dist/model/transformation.d.ts.map +1 -0
- package/dist/model/transformationCreate.d.ts +18 -0
- package/dist/model/transformationCreate.d.ts.map +1 -0
- package/dist/model/transformationCreateResponse.d.ts +14 -0
- package/dist/model/transformationCreateResponse.d.ts.map +1 -0
- package/dist/model/transformationSearch.d.ts +4 -0
- package/dist/model/transformationSearch.d.ts.map +1 -0
- package/dist/model/transformationTry.d.ts +11 -0
- package/dist/model/transformationTry.d.ts.map +1 -0
- package/dist/model/transformationTryResponse.d.ts +9 -0
- package/dist/model/transformationTryResponse.d.ts.map +1 -0
- package/dist/model/transformationTryResponseError.d.ts +14 -0
- package/dist/model/transformationTryResponseError.d.ts.map +1 -0
- package/dist/model/transformationUpdateResponse.d.ts +14 -0
- package/dist/model/transformationUpdateResponse.d.ts.map +1 -0
- package/dist/model/window.d.ts +2 -2
- package/dist/src/ingestionClient.d.ts +117 -22
- package/dist/src/ingestionClient.d.ts.map +1 -1
- package/model/authentication.ts +2 -2
- package/model/authenticationCreateResponse.ts +1 -1
- package/model/authenticationUpdateResponse.ts +1 -1
- package/model/clientMethodProps.ts +62 -14
- package/model/deleteResponse.ts +1 -1
- package/model/destination.ts +2 -2
- package/model/destinationCreateResponse.ts +1 -1
- package/model/destinationUpdateResponse.ts +1 -1
- package/model/{dockerSourceStreams.ts → dockerStreamsInput.ts} +2 -2
- package/model/event.ts +1 -1
- package/model/index.ts +13 -5
- package/model/listTransformationsResponse.ts +13 -0
- package/model/onDemandTrigger.ts +1 -1
- package/model/run.ts +3 -3
- package/model/runResponse.ts +1 -1
- package/model/scheduleTrigger.ts +2 -2
- package/model/sortKeys.ts +6 -0
- package/model/source.ts +2 -2
- package/model/sourceCreateResponse.ts +1 -1
- package/model/sourceUpdateResponse.ts +1 -1
- package/model/sourceUpdateShopify.ts +2 -32
- package/model/sourceWatchResponse.ts +25 -0
- package/model/{streamingUtilsInput.ts → streamingInput.ts} +1 -1
- package/model/task.ts +7 -2
- package/model/taskCreate.ts +5 -0
- package/model/taskCreateResponse.ts +1 -1
- package/model/taskInput.ts +3 -8
- package/model/taskUpdateResponse.ts +1 -1
- package/model/transformation.ts +33 -0
- package/model/transformationCreate.ts +21 -0
- package/model/transformationCreateResponse.ts +16 -0
- package/model/transformationSearch.ts +5 -0
- package/model/{dockerSourceDiscover.ts → transformationTry.ts} +5 -5
- package/model/transformationTryResponse.ts +12 -0
- package/model/transformationTryResponseError.ts +16 -0
- package/model/transformationUpdateResponse.ts +16 -0
- package/model/window.ts +2 -2
- package/package.json +11 -8
- package/dist/model/dockerSourceDiscover.d.ts +0 -11
- package/dist/model/dockerSourceDiscover.d.ts.map +0 -1
- package/dist/model/dockerSourceStreams.d.ts +0 -4
- package/dist/model/dockerSourceStreams.d.ts.map +0 -1
- package/dist/model/onDemandDateUtilsInput.d.ts +0 -16
- package/dist/model/onDemandDateUtilsInput.d.ts.map +0 -1
- package/dist/model/scheduleDateUtilsInput.d.ts +0 -12
- package/dist/model/scheduleDateUtilsInput.d.ts.map +0 -1
- package/dist/model/streamingUtilsInput.d.ts.map +0 -1
- package/model/onDemandDateUtilsInput.ts +0 -20
- package/model/scheduleDateUtilsInput.ts +0 -15
|
@@ -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
|
+
* Property by which to sort the list.
|
|
5
|
+
*/
|
|
6
|
+
export type SortKeys = 'createdAt' | 'name' | 'type' | 'updatedAt';
|
package/model/source.ts
CHANGED
|
@@ -21,12 +21,12 @@ export type Source = {
|
|
|
21
21
|
authenticationID?: string;
|
|
22
22
|
|
|
23
23
|
/**
|
|
24
|
-
* Date of creation in
|
|
24
|
+
* Date of creation in RFC 3339 format.
|
|
25
25
|
*/
|
|
26
26
|
createdAt: string;
|
|
27
27
|
|
|
28
28
|
/**
|
|
29
|
-
* Date of last update in
|
|
29
|
+
* Date of last update in RFC 3339 format.
|
|
30
30
|
*/
|
|
31
31
|
updatedAt?: string;
|
|
32
32
|
};
|
|
@@ -2,37 +2,7 @@
|
|
|
2
2
|
|
|
3
3
|
export type SourceUpdateShopify = {
|
|
4
4
|
/**
|
|
5
|
-
*
|
|
5
|
+
* Feature flags for the Shopify source.
|
|
6
6
|
*/
|
|
7
|
-
|
|
8
|
-
|
|
9
|
-
/**
|
|
10
|
-
* Whether to increase the number of indexed collections per product. If true, Algolia indexes 200 collections per product. If false, 100 collections per product are indexed.
|
|
11
|
-
*/
|
|
12
|
-
increaseProductCollectionLimit?: boolean;
|
|
13
|
-
|
|
14
|
-
/**
|
|
15
|
-
* Whether to set the default price ratio to 1 if no sale price is present. The price ratio is determined by the ratio: `sale_price` / `regular_price`. If no sale price is present, the price ratio would be 0. If `defaultPriceRatioAsOne` is true, the price ratio is indexed as 1 instead.
|
|
16
|
-
*/
|
|
17
|
-
defaultPriceRatioAsOne?: boolean;
|
|
18
|
-
|
|
19
|
-
/**
|
|
20
|
-
* Whether to exclude out-of-stock variants when determining the `max_variant_price` and `min_variant_price` attributes.
|
|
21
|
-
*/
|
|
22
|
-
excludeOOSVariantsForPriceAtTRS?: boolean;
|
|
23
|
-
|
|
24
|
-
/**
|
|
25
|
-
* Whether to include an inventory with every variant for every product record.
|
|
26
|
-
*/
|
|
27
|
-
includeVariantsInventory?: boolean;
|
|
28
|
-
|
|
29
|
-
/**
|
|
30
|
-
* Whether to include collection IDs and handles in the product records.
|
|
31
|
-
*/
|
|
32
|
-
hasCollectionSearchPage?: boolean;
|
|
33
|
-
|
|
34
|
-
/**
|
|
35
|
-
* Whether to convert tags on products to named tags. To learn more, see [Named tags](https://www.algolia.com/doc/integration/shopify/sending-and-managing-data/named-tags).
|
|
36
|
-
*/
|
|
37
|
-
productNamedTags?: boolean;
|
|
7
|
+
featureFlags?: Record<string, any>;
|
|
38
8
|
};
|
|
@@ -0,0 +1,25 @@
|
|
|
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 { Event } from './event';
|
|
4
|
+
|
|
5
|
+
export type SourceWatchResponse = {
|
|
6
|
+
/**
|
|
7
|
+
* Universally unique identifier (UUID) of a task run.
|
|
8
|
+
*/
|
|
9
|
+
runID?: string;
|
|
10
|
+
|
|
11
|
+
/**
|
|
12
|
+
* Depending on the source type, the validation returns sampling data of your source (JSON, CSV, BigQuery).
|
|
13
|
+
*/
|
|
14
|
+
data?: Array<Record<string, any>>;
|
|
15
|
+
|
|
16
|
+
/**
|
|
17
|
+
* In case of error, observability events will be added to the response, if any.
|
|
18
|
+
*/
|
|
19
|
+
events?: Event[];
|
|
20
|
+
|
|
21
|
+
/**
|
|
22
|
+
* A message describing the outcome of a validate run.
|
|
23
|
+
*/
|
|
24
|
+
message: string;
|
|
25
|
+
};
|
|
@@ -5,6 +5,6 @@ import type { MappingInput } from './mappingInput';
|
|
|
5
5
|
/**
|
|
6
6
|
* Input for a `streaming` task whose source is of type `ga4BigqueryExport` and for which extracted data is continuously streamed.
|
|
7
7
|
*/
|
|
8
|
-
export type
|
|
8
|
+
export type StreamingInput = {
|
|
9
9
|
mapping: MappingInput;
|
|
10
10
|
};
|
package/model/task.ts
CHANGED
|
@@ -37,12 +37,17 @@ export type Task = {
|
|
|
37
37
|
action: ActionType;
|
|
38
38
|
|
|
39
39
|
/**
|
|
40
|
-
* Date of
|
|
40
|
+
* Date of the last cursor in RFC 3339 format.
|
|
41
|
+
*/
|
|
42
|
+
cursor?: string;
|
|
43
|
+
|
|
44
|
+
/**
|
|
45
|
+
* Date of creation in RFC 3339 format.
|
|
41
46
|
*/
|
|
42
47
|
createdAt: string;
|
|
43
48
|
|
|
44
49
|
/**
|
|
45
|
-
* Date of last update in
|
|
50
|
+
* Date of last update in RFC 3339 format.
|
|
46
51
|
*/
|
|
47
52
|
updatedAt?: string;
|
|
48
53
|
};
|
package/model/taskCreate.ts
CHANGED
package/model/taskInput.ts
CHANGED
|
@@ -1,15 +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 {
|
|
4
|
-
import type { ScheduleDateUtilsInput } from './scheduleDateUtilsInput';
|
|
3
|
+
import type { DockerStreamsInput } from './dockerStreamsInput';
|
|
5
4
|
import type { ShopifyInput } from './shopifyInput';
|
|
6
|
-
import type {
|
|
5
|
+
import type { StreamingInput } from './streamingInput';
|
|
7
6
|
|
|
8
7
|
/**
|
|
9
8
|
* Configuration of the task, depending on its type.
|
|
10
9
|
*/
|
|
11
|
-
export type TaskInput =
|
|
12
|
-
| OnDemandDateUtilsInput
|
|
13
|
-
| ScheduleDateUtilsInput
|
|
14
|
-
| ShopifyInput
|
|
15
|
-
| StreamingUtilsInput;
|
|
10
|
+
export type TaskInput = DockerStreamsInput | ShopifyInput | StreamingInput;
|
|
@@ -0,0 +1,33 @@
|
|
|
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 Transformation = {
|
|
4
|
+
/**
|
|
5
|
+
* Universally unique identifier (UUID) of a transformation.
|
|
6
|
+
*/
|
|
7
|
+
transformationID: string;
|
|
8
|
+
|
|
9
|
+
/**
|
|
10
|
+
* The source code of the transformation.
|
|
11
|
+
*/
|
|
12
|
+
code: string;
|
|
13
|
+
|
|
14
|
+
/**
|
|
15
|
+
* The uniquely identified name of your transformation.
|
|
16
|
+
*/
|
|
17
|
+
name: string;
|
|
18
|
+
|
|
19
|
+
/**
|
|
20
|
+
* A descriptive name for your transformation of what it does.
|
|
21
|
+
*/
|
|
22
|
+
description?: string;
|
|
23
|
+
|
|
24
|
+
/**
|
|
25
|
+
* Date of creation in RFC 3339 format.
|
|
26
|
+
*/
|
|
27
|
+
createdAt: string;
|
|
28
|
+
|
|
29
|
+
/**
|
|
30
|
+
* Date of last update in RFC 3339 format.
|
|
31
|
+
*/
|
|
32
|
+
updatedAt?: string;
|
|
33
|
+
};
|
|
@@ -0,0 +1,21 @@
|
|
|
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
|
+
* API request body for creating a transformation.
|
|
5
|
+
*/
|
|
6
|
+
export type TransformationCreate = {
|
|
7
|
+
/**
|
|
8
|
+
* The source code of the transformation.
|
|
9
|
+
*/
|
|
10
|
+
code: string;
|
|
11
|
+
|
|
12
|
+
/**
|
|
13
|
+
* The uniquely identified name of your transformation.
|
|
14
|
+
*/
|
|
15
|
+
name: string;
|
|
16
|
+
|
|
17
|
+
/**
|
|
18
|
+
* A descriptive name for your transformation of what it does.
|
|
19
|
+
*/
|
|
20
|
+
description?: string;
|
|
21
|
+
};
|
|
@@ -0,0 +1,16 @@
|
|
|
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
|
+
* API response for creating a transformation.
|
|
5
|
+
*/
|
|
6
|
+
export type TransformationCreateResponse = {
|
|
7
|
+
/**
|
|
8
|
+
* Universally unique identifier (UUID) of a transformation.
|
|
9
|
+
*/
|
|
10
|
+
transformationID: string;
|
|
11
|
+
|
|
12
|
+
/**
|
|
13
|
+
* Date of creation in RFC 3339 format.
|
|
14
|
+
*/
|
|
15
|
+
createdAt: string;
|
|
16
|
+
};
|
|
@@ -1,13 +1,13 @@
|
|
|
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
|
|
3
|
+
export type TransformationTry = {
|
|
4
4
|
/**
|
|
5
|
-
*
|
|
5
|
+
* The source code of the transformation.
|
|
6
6
|
*/
|
|
7
|
-
|
|
7
|
+
code: string;
|
|
8
8
|
|
|
9
9
|
/**
|
|
10
|
-
*
|
|
10
|
+
* The record to apply the given code to.
|
|
11
11
|
*/
|
|
12
|
-
|
|
12
|
+
sampleRecord: Record<string, any>;
|
|
13
13
|
};
|
|
@@ -0,0 +1,12 @@
|
|
|
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 { TransformationTryResponseError } from './transformationTryResponseError';
|
|
4
|
+
|
|
5
|
+
export type TransformationTryResponse = {
|
|
6
|
+
/**
|
|
7
|
+
* The array of records returned by the transformation service.
|
|
8
|
+
*/
|
|
9
|
+
payloads: Array<Record<string, any>>;
|
|
10
|
+
|
|
11
|
+
error?: TransformationTryResponseError;
|
|
12
|
+
};
|
|
@@ -0,0 +1,16 @@
|
|
|
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 error if the transformation failed.
|
|
5
|
+
*/
|
|
6
|
+
export type TransformationTryResponseError = {
|
|
7
|
+
/**
|
|
8
|
+
* The error status code.
|
|
9
|
+
*/
|
|
10
|
+
code?: number;
|
|
11
|
+
|
|
12
|
+
/**
|
|
13
|
+
* A descriptive message explaining the failure.
|
|
14
|
+
*/
|
|
15
|
+
message?: string;
|
|
16
|
+
};
|
|
@@ -0,0 +1,16 @@
|
|
|
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
|
+
* API response for updating a transformation.
|
|
5
|
+
*/
|
|
6
|
+
export type TransformationUpdateResponse = {
|
|
7
|
+
/**
|
|
8
|
+
* Universally unique identifier (UUID) of a transformation.
|
|
9
|
+
*/
|
|
10
|
+
transformationID: string;
|
|
11
|
+
|
|
12
|
+
/**
|
|
13
|
+
* Date of last update in RFC 3339 format.
|
|
14
|
+
*/
|
|
15
|
+
updatedAt: string;
|
|
16
|
+
};
|
package/model/window.ts
CHANGED
|
@@ -5,12 +5,12 @@
|
|
|
5
5
|
*/
|
|
6
6
|
export type Window = {
|
|
7
7
|
/**
|
|
8
|
-
* Date in
|
|
8
|
+
* Date in RFC 3339 format representing the oldest data in the time window.
|
|
9
9
|
*/
|
|
10
10
|
startDate: string;
|
|
11
11
|
|
|
12
12
|
/**
|
|
13
|
-
* Date in
|
|
13
|
+
* Date in RFC 3339 format representing the newest data in the time window.
|
|
14
14
|
*/
|
|
15
15
|
endDate: string;
|
|
16
16
|
};
|
package/package.json
CHANGED
|
@@ -1,8 +1,11 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@algolia/ingestion",
|
|
3
|
-
"version": "1.0.0-beta.
|
|
3
|
+
"version": "1.0.0-beta.11",
|
|
4
4
|
"description": "JavaScript client for ingestion",
|
|
5
|
-
"repository":
|
|
5
|
+
"repository": {
|
|
6
|
+
"type": "git",
|
|
7
|
+
"url": "git+https://github.com/algolia/algoliasearch-client-javascript.git"
|
|
8
|
+
},
|
|
6
9
|
"license": "MIT",
|
|
7
10
|
"author": "Algolia",
|
|
8
11
|
"type": "module",
|
|
@@ -39,14 +42,14 @@
|
|
|
39
42
|
"clean": "rm -rf ./dist || true"
|
|
40
43
|
},
|
|
41
44
|
"dependencies": {
|
|
42
|
-
"@algolia/client-common": "5.0.0-beta.
|
|
43
|
-
"@algolia/requester-browser-xhr": "5.0.0-beta.
|
|
44
|
-
"@algolia/requester-node-http": "5.0.0-beta.
|
|
45
|
+
"@algolia/client-common": "5.0.0-beta.12",
|
|
46
|
+
"@algolia/requester-browser-xhr": "5.0.0-beta.12",
|
|
47
|
+
"@algolia/requester-node-http": "5.0.0-beta.12"
|
|
45
48
|
},
|
|
46
49
|
"devDependencies": {
|
|
47
|
-
"@types/node": "20.
|
|
48
|
-
"rollup": "4.
|
|
49
|
-
"typescript": "5.
|
|
50
|
+
"@types/node": "20.14.10",
|
|
51
|
+
"rollup": "4.18.1",
|
|
52
|
+
"typescript": "5.5.3"
|
|
50
53
|
},
|
|
51
54
|
"engines": {
|
|
52
55
|
"node": ">= 14.0.0"
|
|
@@ -1 +0,0 @@
|
|
|
1
|
-
{"version":3,"file":"dockerSourceDiscover.d.ts","sourceRoot":"","sources":["../../model/dockerSourceDiscover.ts"],"names":[],"mappings":"AAEA,MAAM,MAAM,oBAAoB,GAAG;IACjC;;OAEG;IACH,KAAK,EAAE,MAAM,CAAC;IAEd;;OAEG;IACH,SAAS,EAAE,MAAM,CAAC;CACnB,CAAC"}
|
|
@@ -1 +0,0 @@
|
|
|
1
|
-
{"version":3,"file":"dockerSourceStreams.d.ts","sourceRoot":"","sources":["../../model/dockerSourceStreams.ts"],"names":[],"mappings":"AAEA,MAAM,MAAM,mBAAmB,GAAG;IAChC,OAAO,EAAE,KAAK,CAAC,MAAM,CAAC,MAAM,EAAE,GAAG,CAAC,CAAC,CAAC;CACrC,CAAC"}
|
|
@@ -1,16 +0,0 @@
|
|
|
1
|
-
import type { MappingInput } from './mappingInput';
|
|
2
|
-
/**
|
|
3
|
-
* Input for a manually-triggered task whose source is of type `bigquery` and for which extracted data spans a given time range.
|
|
4
|
-
*/
|
|
5
|
-
export type OnDemandDateUtilsInput = {
|
|
6
|
-
/**
|
|
7
|
-
* Earliest date in RFC3339 format of the extracted data from Big Query.
|
|
8
|
-
*/
|
|
9
|
-
startDate: string;
|
|
10
|
-
/**
|
|
11
|
-
* Latest date in RFC3339 format of the extracted data from Big Query.
|
|
12
|
-
*/
|
|
13
|
-
endDate: string;
|
|
14
|
-
mapping?: MappingInput;
|
|
15
|
-
};
|
|
16
|
-
//# sourceMappingURL=onDemandDateUtilsInput.d.ts.map
|
|
@@ -1 +0,0 @@
|
|
|
1
|
-
{"version":3,"file":"onDemandDateUtilsInput.d.ts","sourceRoot":"","sources":["../../model/onDemandDateUtilsInput.ts"],"names":[],"mappings":"AAEA,OAAO,KAAK,EAAE,YAAY,EAAE,MAAM,gBAAgB,CAAC;AAEnD;;GAEG;AACH,MAAM,MAAM,sBAAsB,GAAG;IACnC;;OAEG;IACH,SAAS,EAAE,MAAM,CAAC;IAElB;;OAEG;IACH,OAAO,EAAE,MAAM,CAAC;IAEhB,OAAO,CAAC,EAAE,YAAY,CAAC;CACxB,CAAC"}
|
|
@@ -1,12 +0,0 @@
|
|
|
1
|
-
import type { MappingInput } from './mappingInput';
|
|
2
|
-
/**
|
|
3
|
-
* Input for scheduled tasks whose source is of type `bigquery` and for which extracted data spans a fixed number of days.
|
|
4
|
-
*/
|
|
5
|
-
export type ScheduleDateUtilsInput = {
|
|
6
|
-
/**
|
|
7
|
-
* Number of days in the past until the current day for which to extract Big Query data.
|
|
8
|
-
*/
|
|
9
|
-
timeframe: number;
|
|
10
|
-
mapping?: MappingInput;
|
|
11
|
-
};
|
|
12
|
-
//# sourceMappingURL=scheduleDateUtilsInput.d.ts.map
|
|
@@ -1 +0,0 @@
|
|
|
1
|
-
{"version":3,"file":"scheduleDateUtilsInput.d.ts","sourceRoot":"","sources":["../../model/scheduleDateUtilsInput.ts"],"names":[],"mappings":"AAEA,OAAO,KAAK,EAAE,YAAY,EAAE,MAAM,gBAAgB,CAAC;AAEnD;;GAEG;AACH,MAAM,MAAM,sBAAsB,GAAG;IACnC;;OAEG;IACH,SAAS,EAAE,MAAM,CAAC;IAElB,OAAO,CAAC,EAAE,YAAY,CAAC;CACxB,CAAC"}
|
|
@@ -1 +0,0 @@
|
|
|
1
|
-
{"version":3,"file":"streamingUtilsInput.d.ts","sourceRoot":"","sources":["../../model/streamingUtilsInput.ts"],"names":[],"mappings":"AAEA,OAAO,KAAK,EAAE,YAAY,EAAE,MAAM,gBAAgB,CAAC;AAEnD;;GAEG;AACH,MAAM,MAAM,mBAAmB,GAAG;IAChC,OAAO,EAAE,YAAY,CAAC;CACvB,CAAC"}
|
|
@@ -1,20 +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 { MappingInput } from './mappingInput';
|
|
4
|
-
|
|
5
|
-
/**
|
|
6
|
-
* Input for a manually-triggered task whose source is of type `bigquery` and for which extracted data spans a given time range.
|
|
7
|
-
*/
|
|
8
|
-
export type OnDemandDateUtilsInput = {
|
|
9
|
-
/**
|
|
10
|
-
* Earliest date in RFC3339 format of the extracted data from Big Query.
|
|
11
|
-
*/
|
|
12
|
-
startDate: string;
|
|
13
|
-
|
|
14
|
-
/**
|
|
15
|
-
* Latest date in RFC3339 format of the extracted data from Big Query.
|
|
16
|
-
*/
|
|
17
|
-
endDate: string;
|
|
18
|
-
|
|
19
|
-
mapping?: MappingInput;
|
|
20
|
-
};
|
|
@@ -1,15 +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 { MappingInput } from './mappingInput';
|
|
4
|
-
|
|
5
|
-
/**
|
|
6
|
-
* Input for scheduled tasks whose source is of type `bigquery` and for which extracted data spans a fixed number of days.
|
|
7
|
-
*/
|
|
8
|
-
export type ScheduleDateUtilsInput = {
|
|
9
|
-
/**
|
|
10
|
-
* Number of days in the past until the current day for which to extract Big Query data.
|
|
11
|
-
*/
|
|
12
|
-
timeframe: number;
|
|
13
|
-
|
|
14
|
-
mapping?: MappingInput;
|
|
15
|
-
};
|