Skip to content

Commit 0441852

Browse files
algolia-botmillotp
andcommitted
chore(spec): fix comment of custom path (generated)
algolia/api-clients-automation#5014 Co-authored-by: algolia-bot <accounts+algolia-api-client-bot@algolia.com> Co-authored-by: Pierre Millot <pierre.millot@algolia.com>
1 parent 2a00209 commit 0441852

File tree

24 files changed

+90
-90
lines changed

24 files changed

+90
-90
lines changed

packages/advanced-personalization/model/clientMethodProps.ts

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@ export type ComputeRealtimeUserProps = {
1515
*/
1616
export type CustomDeleteProps = {
1717
/**
18-
* Path of the endpoint, anything after \"/1\" must be specified.
18+
* Path of the endpoint, for example `1/newFeature`.
1919
*/
2020
path: string;
2121
/**
@@ -29,7 +29,7 @@ export type CustomDeleteProps = {
2929
*/
3030
export type CustomGetProps = {
3131
/**
32-
* Path of the endpoint, anything after \"/1\" must be specified.
32+
* Path of the endpoint, for example `1/newFeature`.
3333
*/
3434
path: string;
3535
/**
@@ -43,7 +43,7 @@ export type CustomGetProps = {
4343
*/
4444
export type CustomPostProps = {
4545
/**
46-
* Path of the endpoint, anything after \"/1\" must be specified.
46+
* Path of the endpoint, for example `1/newFeature`.
4747
*/
4848
path: string;
4949
/**
@@ -61,7 +61,7 @@ export type CustomPostProps = {
6161
*/
6262
export type CustomPutProps = {
6363
/**
64-
* Path of the endpoint, anything after \"/1\" must be specified.
64+
* Path of the endpoint, for example `1/newFeature`.
6565
*/
6666
path: string;
6767
/**

packages/advanced-personalization/src/advancedPersonalizationClient.ts

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -159,7 +159,7 @@ export function createAdvancedPersonalizationClient({
159159
/**
160160
* This method lets you send requests to the Algolia REST API.
161161
* @param customDelete - The customDelete object.
162-
* @param customDelete.path - Path of the endpoint, anything after \"/1\" must be specified.
162+
* @param customDelete.path - Path of the endpoint, for example `1/newFeature`.
163163
* @param customDelete.parameters - Query parameters to apply to the current query.
164164
* @param requestOptions - The requestOptions to send along with the query, they will be merged with the transporter requestOptions.
165165
*/
@@ -188,7 +188,7 @@ export function createAdvancedPersonalizationClient({
188188
/**
189189
* This method lets you send requests to the Algolia REST API.
190190
* @param customGet - The customGet object.
191-
* @param customGet.path - Path of the endpoint, anything after \"/1\" must be specified.
191+
* @param customGet.path - Path of the endpoint, for example `1/newFeature`.
192192
* @param customGet.parameters - Query parameters to apply to the current query.
193193
* @param requestOptions - The requestOptions to send along with the query, they will be merged with the transporter requestOptions.
194194
*/
@@ -214,7 +214,7 @@ export function createAdvancedPersonalizationClient({
214214
/**
215215
* This method lets you send requests to the Algolia REST API.
216216
* @param customPost - The customPost object.
217-
* @param customPost.path - Path of the endpoint, anything after \"/1\" must be specified.
217+
* @param customPost.path - Path of the endpoint, for example `1/newFeature`.
218218
* @param customPost.parameters - Query parameters to apply to the current query.
219219
* @param customPost.body - Parameters to send with the custom request.
220220
* @param requestOptions - The requestOptions to send along with the query, they will be merged with the transporter requestOptions.
@@ -245,7 +245,7 @@ export function createAdvancedPersonalizationClient({
245245
/**
246246
* This method lets you send requests to the Algolia REST API.
247247
* @param customPut - The customPut object.
248-
* @param customPut.path - Path of the endpoint, anything after \"/1\" must be specified.
248+
* @param customPut.path - Path of the endpoint, for example `1/newFeature`.
249249
* @param customPut.parameters - Query parameters to apply to the current query.
250250
* @param customPut.body - Parameters to send with the custom request.
251251
* @param requestOptions - The requestOptions to send along with the query, they will be merged with the transporter requestOptions.

packages/algoliasearch/lite/model/clientMethodProps.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@ import type { SearchParamsObject } from './searchParamsObject';
1010
*/
1111
export type CustomPostProps = {
1212
/**
13-
* Path of the endpoint, anything after \"/1\" must be specified.
13+
* Path of the endpoint, for example `1/newFeature`.
1414
*/
1515
path: string;
1616
/**

packages/algoliasearch/lite/src/liteClient.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -173,7 +173,7 @@ export function createLiteClient({
173173
/**
174174
* This method lets you send requests to the Algolia REST API.
175175
* @param customPost - The customPost object.
176-
* @param customPost.path - Path of the endpoint, anything after \"/1\" must be specified.
176+
* @param customPost.path - Path of the endpoint, for example `1/newFeature`.
177177
* @param customPost.parameters - Query parameters to apply to the current query.
178178
* @param customPost.body - Parameters to send with the custom request.
179179
* @param requestOptions - The requestOptions to send along with the query, they will be merged with the transporter requestOptions.

packages/client-abtesting/model/clientMethodProps.ts

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@
55
*/
66
export type CustomDeleteProps = {
77
/**
8-
* Path of the endpoint, anything after \"/1\" must be specified.
8+
* Path of the endpoint, for example `1/newFeature`.
99
*/
1010
path: string;
1111
/**
@@ -19,7 +19,7 @@ export type CustomDeleteProps = {
1919
*/
2020
export type CustomGetProps = {
2121
/**
22-
* Path of the endpoint, anything after \"/1\" must be specified.
22+
* Path of the endpoint, for example `1/newFeature`.
2323
*/
2424
path: string;
2525
/**
@@ -33,7 +33,7 @@ export type CustomGetProps = {
3333
*/
3434
export type CustomPostProps = {
3535
/**
36-
* Path of the endpoint, anything after \"/1\" must be specified.
36+
* Path of the endpoint, for example `1/newFeature`.
3737
*/
3838
path: string;
3939
/**
@@ -51,7 +51,7 @@ export type CustomPostProps = {
5151
*/
5252
export type CustomPutProps = {
5353
/**
54-
* Path of the endpoint, anything after \"/1\" must be specified.
54+
* Path of the endpoint, for example `1/newFeature`.
5555
*/
5656
path: string;
5757
/**

packages/client-abtesting/src/abtestingClient.ts

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -163,7 +163,7 @@ export function createAbtestingClient({
163163
/**
164164
* This method lets you send requests to the Algolia REST API.
165165
* @param customDelete - The customDelete object.
166-
* @param customDelete.path - Path of the endpoint, anything after \"/1\" must be specified.
166+
* @param customDelete.path - Path of the endpoint, for example `1/newFeature`.
167167
* @param customDelete.parameters - Query parameters to apply to the current query.
168168
* @param requestOptions - The requestOptions to send along with the query, they will be merged with the transporter requestOptions.
169169
*/
@@ -192,7 +192,7 @@ export function createAbtestingClient({
192192
/**
193193
* This method lets you send requests to the Algolia REST API.
194194
* @param customGet - The customGet object.
195-
* @param customGet.path - Path of the endpoint, anything after \"/1\" must be specified.
195+
* @param customGet.path - Path of the endpoint, for example `1/newFeature`.
196196
* @param customGet.parameters - Query parameters to apply to the current query.
197197
* @param requestOptions - The requestOptions to send along with the query, they will be merged with the transporter requestOptions.
198198
*/
@@ -218,7 +218,7 @@ export function createAbtestingClient({
218218
/**
219219
* This method lets you send requests to the Algolia REST API.
220220
* @param customPost - The customPost object.
221-
* @param customPost.path - Path of the endpoint, anything after \"/1\" must be specified.
221+
* @param customPost.path - Path of the endpoint, for example `1/newFeature`.
222222
* @param customPost.parameters - Query parameters to apply to the current query.
223223
* @param customPost.body - Parameters to send with the custom request.
224224
* @param requestOptions - The requestOptions to send along with the query, they will be merged with the transporter requestOptions.
@@ -249,7 +249,7 @@ export function createAbtestingClient({
249249
/**
250250
* This method lets you send requests to the Algolia REST API.
251251
* @param customPut - The customPut object.
252-
* @param customPut.path - Path of the endpoint, anything after \"/1\" must be specified.
252+
* @param customPut.path - Path of the endpoint, for example `1/newFeature`.
253253
* @param customPut.parameters - Query parameters to apply to the current query.
254254
* @param customPut.body - Parameters to send with the custom request.
255255
* @param requestOptions - The requestOptions to send along with the query, they will be merged with the transporter requestOptions.

packages/client-analytics/model/clientMethodProps.ts

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@ import type { OrderBy } from '../model/orderBy';
99
*/
1010
export type CustomDeleteProps = {
1111
/**
12-
* Path of the endpoint, anything after \"/1\" must be specified.
12+
* Path of the endpoint, for example `1/newFeature`.
1313
*/
1414
path: string;
1515
/**
@@ -23,7 +23,7 @@ export type CustomDeleteProps = {
2323
*/
2424
export type CustomGetProps = {
2525
/**
26-
* Path of the endpoint, anything after \"/1\" must be specified.
26+
* Path of the endpoint, for example `1/newFeature`.
2727
*/
2828
path: string;
2929
/**
@@ -37,7 +37,7 @@ export type CustomGetProps = {
3737
*/
3838
export type CustomPostProps = {
3939
/**
40-
* Path of the endpoint, anything after \"/1\" must be specified.
40+
* Path of the endpoint, for example `1/newFeature`.
4141
*/
4242
path: string;
4343
/**
@@ -55,7 +55,7 @@ export type CustomPostProps = {
5555
*/
5656
export type CustomPutProps = {
5757
/**
58-
* Path of the endpoint, anything after \"/1\" must be specified.
58+
* Path of the endpoint, for example `1/newFeature`.
5959
*/
6060
path: string;
6161
/**

packages/client-analytics/src/analyticsClient.ts

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -152,7 +152,7 @@ export function createAnalyticsClient({
152152
/**
153153
* This method lets you send requests to the Algolia REST API.
154154
* @param customDelete - The customDelete object.
155-
* @param customDelete.path - Path of the endpoint, anything after \"/1\" must be specified.
155+
* @param customDelete.path - Path of the endpoint, for example `1/newFeature`.
156156
* @param customDelete.parameters - Query parameters to apply to the current query.
157157
* @param requestOptions - The requestOptions to send along with the query, they will be merged with the transporter requestOptions.
158158
*/
@@ -181,7 +181,7 @@ export function createAnalyticsClient({
181181
/**
182182
* This method lets you send requests to the Algolia REST API.
183183
* @param customGet - The customGet object.
184-
* @param customGet.path - Path of the endpoint, anything after \"/1\" must be specified.
184+
* @param customGet.path - Path of the endpoint, for example `1/newFeature`.
185185
* @param customGet.parameters - Query parameters to apply to the current query.
186186
* @param requestOptions - The requestOptions to send along with the query, they will be merged with the transporter requestOptions.
187187
*/
@@ -207,7 +207,7 @@ export function createAnalyticsClient({
207207
/**
208208
* This method lets you send requests to the Algolia REST API.
209209
* @param customPost - The customPost object.
210-
* @param customPost.path - Path of the endpoint, anything after \"/1\" must be specified.
210+
* @param customPost.path - Path of the endpoint, for example `1/newFeature`.
211211
* @param customPost.parameters - Query parameters to apply to the current query.
212212
* @param customPost.body - Parameters to send with the custom request.
213213
* @param requestOptions - The requestOptions to send along with the query, they will be merged with the transporter requestOptions.
@@ -238,7 +238,7 @@ export function createAnalyticsClient({
238238
/**
239239
* This method lets you send requests to the Algolia REST API.
240240
* @param customPut - The customPut object.
241-
* @param customPut.path - Path of the endpoint, anything after \"/1\" must be specified.
241+
* @param customPut.path - Path of the endpoint, for example `1/newFeature`.
242242
* @param customPut.parameters - Query parameters to apply to the current query.
243243
* @param customPut.body - Parameters to send with the custom request.
244244
* @param requestOptions - The requestOptions to send along with the query, they will be merged with the transporter requestOptions.

packages/client-composition/model/clientMethodProps.ts

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@ import type { SearchForFacetValuesRequest } from '../model/searchForFacetValuesR
1313
*/
1414
export type CustomDeleteProps = {
1515
/**
16-
* Path of the endpoint, anything after \"/1\" must be specified.
16+
* Path of the endpoint, for example `1/newFeature`.
1717
*/
1818
path: string;
1919
/**
@@ -27,7 +27,7 @@ export type CustomDeleteProps = {
2727
*/
2828
export type CustomGetProps = {
2929
/**
30-
* Path of the endpoint, anything after \"/1\" must be specified.
30+
* Path of the endpoint, for example `1/newFeature`.
3131
*/
3232
path: string;
3333
/**
@@ -41,7 +41,7 @@ export type CustomGetProps = {
4141
*/
4242
export type CustomPostProps = {
4343
/**
44-
* Path of the endpoint, anything after \"/1\" must be specified.
44+
* Path of the endpoint, for example `1/newFeature`.
4545
*/
4646
path: string;
4747
/**
@@ -59,7 +59,7 @@ export type CustomPostProps = {
5959
*/
6060
export type CustomPutProps = {
6161
/**
62-
* Path of the endpoint, anything after \"/1\" must be specified.
62+
* Path of the endpoint, for example `1/newFeature`.
6363
*/
6464
path: string;
6565
/**

packages/client-composition/src/compositionFullClient.ts

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -193,7 +193,7 @@ export function createCompositionClient({
193193
/**
194194
* This method lets you send requests to the Algolia REST API.
195195
* @param customDelete - The customDelete object.
196-
* @param customDelete.path - Path of the endpoint, anything after \"/1\" must be specified.
196+
* @param customDelete.path - Path of the endpoint, for example `1/newFeature`.
197197
* @param customDelete.parameters - Query parameters to apply to the current query.
198198
* @param requestOptions - The requestOptions to send along with the query, they will be merged with the transporter requestOptions.
199199
*/
@@ -222,7 +222,7 @@ export function createCompositionClient({
222222
/**
223223
* This method lets you send requests to the Algolia REST API.
224224
* @param customGet - The customGet object.
225-
* @param customGet.path - Path of the endpoint, anything after \"/1\" must be specified.
225+
* @param customGet.path - Path of the endpoint, for example `1/newFeature`.
226226
* @param customGet.parameters - Query parameters to apply to the current query.
227227
* @param requestOptions - The requestOptions to send along with the query, they will be merged with the transporter requestOptions.
228228
*/
@@ -248,7 +248,7 @@ export function createCompositionClient({
248248
/**
249249
* This method lets you send requests to the Algolia REST API.
250250
* @param customPost - The customPost object.
251-
* @param customPost.path - Path of the endpoint, anything after \"/1\" must be specified.
251+
* @param customPost.path - Path of the endpoint, for example `1/newFeature`.
252252
* @param customPost.parameters - Query parameters to apply to the current query.
253253
* @param customPost.body - Parameters to send with the custom request.
254254
* @param requestOptions - The requestOptions to send along with the query, they will be merged with the transporter requestOptions.
@@ -279,7 +279,7 @@ export function createCompositionClient({
279279
/**
280280
* This method lets you send requests to the Algolia REST API.
281281
* @param customPut - The customPut object.
282-
* @param customPut.path - Path of the endpoint, anything after \"/1\" must be specified.
282+
* @param customPut.path - Path of the endpoint, for example `1/newFeature`.
283283
* @param customPut.parameters - Query parameters to apply to the current query.
284284
* @param customPut.body - Parameters to send with the custom request.
285285
* @param requestOptions - The requestOptions to send along with the query, they will be merged with the transporter requestOptions.

packages/client-insights/model/clientMethodProps.ts

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@
55
*/
66
export type CustomDeleteProps = {
77
/**
8-
* Path of the endpoint, anything after \"/1\" must be specified.
8+
* Path of the endpoint, for example `1/newFeature`.
99
*/
1010
path: string;
1111
/**
@@ -19,7 +19,7 @@ export type CustomDeleteProps = {
1919
*/
2020
export type CustomGetProps = {
2121
/**
22-
* Path of the endpoint, anything after \"/1\" must be specified.
22+
* Path of the endpoint, for example `1/newFeature`.
2323
*/
2424
path: string;
2525
/**
@@ -33,7 +33,7 @@ export type CustomGetProps = {
3333
*/
3434
export type CustomPostProps = {
3535
/**
36-
* Path of the endpoint, anything after \"/1\" must be specified.
36+
* Path of the endpoint, for example `1/newFeature`.
3737
*/
3838
path: string;
3939
/**
@@ -51,7 +51,7 @@ export type CustomPostProps = {
5151
*/
5252
export type CustomPutProps = {
5353
/**
54-
* Path of the endpoint, anything after \"/1\" must be specified.
54+
* Path of the endpoint, for example `1/newFeature`.
5555
*/
5656
path: string;
5757
/**

packages/client-insights/src/insightsClient.ts

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -115,7 +115,7 @@ export function createInsightsClient({
115115
/**
116116
* This method lets you send requests to the Algolia REST API.
117117
* @param customDelete - The customDelete object.
118-
* @param customDelete.path - Path of the endpoint, anything after \"/1\" must be specified.
118+
* @param customDelete.path - Path of the endpoint, for example `1/newFeature`.
119119
* @param customDelete.parameters - Query parameters to apply to the current query.
120120
* @param requestOptions - The requestOptions to send along with the query, they will be merged with the transporter requestOptions.
121121
*/
@@ -144,7 +144,7 @@ export function createInsightsClient({
144144
/**
145145
* This method lets you send requests to the Algolia REST API.
146146
* @param customGet - The customGet object.
147-
* @param customGet.path - Path of the endpoint, anything after \"/1\" must be specified.
147+
* @param customGet.path - Path of the endpoint, for example `1/newFeature`.
148148
* @param customGet.parameters - Query parameters to apply to the current query.
149149
* @param requestOptions - The requestOptions to send along with the query, they will be merged with the transporter requestOptions.
150150
*/
@@ -170,7 +170,7 @@ export function createInsightsClient({
170170
/**
171171
* This method lets you send requests to the Algolia REST API.
172172
* @param customPost - The customPost object.
173-
* @param customPost.path - Path of the endpoint, anything after \"/1\" must be specified.
173+
* @param customPost.path - Path of the endpoint, for example `1/newFeature`.
174174
* @param customPost.parameters - Query parameters to apply to the current query.
175175
* @param customPost.body - Parameters to send with the custom request.
176176
* @param requestOptions - The requestOptions to send along with the query, they will be merged with the transporter requestOptions.
@@ -201,7 +201,7 @@ export function createInsightsClient({
201201
/**
202202
* This method lets you send requests to the Algolia REST API.
203203
* @param customPut - The customPut object.
204-
* @param customPut.path - Path of the endpoint, anything after \"/1\" must be specified.
204+
* @param customPut.path - Path of the endpoint, for example `1/newFeature`.
205205
* @param customPut.parameters - Query parameters to apply to the current query.
206206
* @param customPut.body - Parameters to send with the custom request.
207207
* @param requestOptions - The requestOptions to send along with the query, they will be merged with the transporter requestOptions.

0 commit comments

Comments
 (0)