Skip to content

Commit 1aa5f1f

Browse files
committed
chore: review
1 parent 8b731eb commit 1aa5f1f

File tree

4 files changed

+12
-10
lines changed

4 files changed

+12
-10
lines changed

specs/common/schemas/ingestion/WatchResponse.yml

Lines changed: 5 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -7,16 +7,18 @@ properties:
77
$ref: '../../parameters/ingestion.yml#/EventID'
88
data:
99
type: array
10-
description: when used with discovering or validating sources, the sampled data of your source is returned.
10+
description: |
11+
This field is always null when used with the Push endpoint.
12+
When used for a source discover or source validate run, it will include the sampled data of the source.
1113
items:
1214
type: object
1315
events:
14-
description: in case of error, observability events will be added to the response, if any.
16+
description: in case of error, observability events will be added to the response.
1517
type: array
1618
items:
1719
$ref: './Observability.yml#/Event'
1820
message:
19-
description: a message describing the outcome of a validate run.
21+
description: a message describing the outcome of the operation that has been ran (push, discover or validate) run.
2022
type: string
2123
createdAt:
2224
$ref: '../../parameters/ingestion.yml#/CreatedAt'

specs/search/helpers/partialUpdateObjectsWithTransformation.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -4,9 +4,9 @@ method:
44
tags:
55
- Records
66
operationId: partialUpdateObjectsWithTransformation
7-
summary: Save objects to an Algolia index by leveraging the Transformation pipeline setup in the Push connector (https://www.algolia.com/doc/guides/sending-and-managing-data/send-and-update-your-data/connectors/push/)
7+
summary: Save objects to an Algolia index by leveraging the Transformation pipeline setup using the Push connector (https://www.algolia.com/doc/guides/sending-and-managing-data/send-and-update-your-data/connectors/push/)
88
description: |
9-
Helper: Similar to the `partialUpdateObjects` method but requires a Push connector (https://www.algolia.com/doc/guides/sending-and-managing-data/send-and-update-your-data/connectors/push/) to be created first, in order to transform records before indexing them to Algolia. The `region` must've been passed to the client instantiation method.
9+
Helper: Similar to the `partialUpdateObjects` method but requires a Push connector (https://www.algolia.com/doc/guides/sending-and-managing-data/send-and-update-your-data/connectors/push/) to be created first, in order to transform records before indexing them to Algolia. The `region` must have been passed to the client instantiation method.
1010
parameters:
1111
- in: query
1212
name: indexName

specs/search/helpers/saveObjectsWithTransformation.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -4,9 +4,9 @@ method:
44
tags:
55
- Records
66
operationId: saveObjectsWithTransformation
7-
summary: Save objects to an Algolia index by leveraging the Transformation pipeline setup in the Push connector (https://www.algolia.com/doc/guides/sending-and-managing-data/send-and-update-your-data/connectors/push/)
7+
summary: Save objects to an Algolia index by leveraging the Transformation pipeline setup using the Push connector (https://www.algolia.com/doc/guides/sending-and-managing-data/send-and-update-your-data/connectors/push/)
88
description: |
9-
Helper: Similar to the `saveObjects` method but requires a Push connector (https://www.algolia.com/doc/guides/sending-and-managing-data/send-and-update-your-data/connectors/push/) to be created first, in order to transform records before indexing them to Algolia. The `region` must've been passed to the client instantiation method.
9+
Helper: Similar to the `saveObjects` method but requires a Push connector (https://www.algolia.com/doc/guides/sending-and-managing-data/send-and-update-your-data/connectors/push/) to be created first, in order to transform records before indexing them to Algolia. The `region` must have been passed to the client instantiation method.
1010
parameters:
1111
- in: query
1212
name: indexName

templates/javascript/clients/algoliasearch/builds/definition.mustache

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -32,9 +32,9 @@ export type Algoliasearch = SearchClient & {
3232
// Bridge helpers to expose along with the search endpoints at the root of the API client
3333

3434
/**
35-
* Helper: Similar to the `saveObjects` method but requires a Push connector (https://www.algolia.com/doc/guides/sending-and-managing-data/send-and-update-your-data/connectors/push/) to be created first, in order to transform records before indexing them to Algolia. The `region` must've been passed to the client instantiation method.
35+
* Helper: Similar to the `saveObjects` method but requires a Push connector (https://www.algolia.com/doc/guides/sending-and-managing-data/send-and-update-your-data/connectors/push/) to be created first, in order to transform records before indexing them to Algolia. The `region` must have been passed to the client instantiation method.
3636
*
37-
* @summary Save objects to an Algolia index by leveraging the Transformation pipeline setup in the Push connector (https://www.algolia.com/doc/guides/sending-and-managing-data/send-and-update-your-data/connectors/push/).
37+
* @summary Save objects to an Algolia index by leveraging the Transformation pipeline setup using the Push connector (https://www.algolia.com/doc/guides/sending-and-managing-data/send-and-update-your-data/connectors/push/).
3838
* @param saveObjects - The `saveObjects` object.
3939
* @param saveObjects.indexName - The `indexName` to save `objects` in.
4040
* @param saveObjects.objects - The array of `objects` to store in the given Algolia `indexName`.
@@ -45,7 +45,7 @@ export type Algoliasearch = SearchClient & {
4545
saveObjectsWithTransformation: (options: SaveObjectsOptions, requestOptions?: RequestOptions) => Promise<WatchResponse>;
4646

4747
/**
48-
* Helper: Similar to the `partialUpdateObjects` method but requires a Push connector (https://www.algolia.com/doc/guides/sending-and-managing-data/send-and-update-your-data/connectors/push/) to be created first, in order to transform records before indexing them to Algolia. The `region` must've been passed to the client instantiation method.
48+
* Helper: Similar to the `partialUpdateObjects` method but requires a Push connector (https://www.algolia.com/doc/guides/sending-and-managing-data/send-and-update-your-data/connectors/push/) to be created first, in order to transform records before indexing them to Algolia. The `region` must have been passed to the client instantiation method.
4949
*
5050
* @summary Save objects to an Algolia index by leveraging the Transformation pipeline setup in the Push connector (https://www.algolia.com/doc/guides/sending-and-managing-data/send-and-update-your-data/connectors/push/).
5151
* @param partialUpdateObjects - The `partialUpdateObjects` object.

0 commit comments

Comments
 (0)