Skip to content

Commit 8fbbd5e

Browse files
authored
fix(specs): getObject return object (#3446)
1 parent b4fd22c commit 8fbbd5e

File tree

2 files changed

+1
-6
lines changed

2 files changed

+1
-6
lines changed

scripts/buildClients.ts

+1-3
Original file line numberDiff line numberDiff line change
@@ -19,9 +19,7 @@ async function buildLanguage(
1919
break;
2020
case 'javascript':
2121
await run('YARN_ENABLE_IMMUTABLE_INSTALLS=false yarn install', { cwd });
22-
if (playground) {
23-
await run('cd node && yarn build', { cwd });
24-
} else {
22+
if (!playground) {
2523
const packageNames = gens.map(({ additionalProperties: { packageName } }) =>
2624
packageName === 'algoliasearch' ? packageName : `@algolia/${packageName}`,
2725
);

specs/search/paths/objects/object.yml

-3
Original file line numberDiff line numberDiff line change
@@ -33,11 +33,8 @@ get:
3333
content:
3434
application/json:
3535
schema:
36-
title: getObjectResponse
3736
type: object
3837
description: The requested record.
39-
additionalProperties:
40-
$ref: 'common/schemas.yml#/attribute'
4138
'400':
4239
$ref: '../../../common/responses/BadRequest.yml'
4340
'402':

0 commit comments

Comments
 (0)