From 152424ebe64367cb1d0987616b1ad8e503a97031 Mon Sep 17 00:00:00 2001 From: Pierre Millot Date: Tue, 30 Jul 2024 00:25:46 +0200 Subject: [PATCH 1/2] fix(search): getObject return object --- specs/search/paths/objects/object.yml | 3 --- 1 file changed, 3 deletions(-) diff --git a/specs/search/paths/objects/object.yml b/specs/search/paths/objects/object.yml index 0b95f43ad78..0517da4dbc3 100644 --- a/specs/search/paths/objects/object.yml +++ b/specs/search/paths/objects/object.yml @@ -33,11 +33,8 @@ get: content: application/json: schema: - title: getObjectResponse type: object description: The requested record. - additionalProperties: - $ref: 'common/schemas.yml#/attribute' '400': $ref: '../../../common/responses/BadRequest.yml' '402': From 335582fe7c8efab5ce2ac19e947e4c1c2bb45a72 Mon Sep 17 00:00:00 2001 From: Pierre Millot Date: Tue, 30 Jul 2024 08:08:09 +0200 Subject: [PATCH 2/2] disable js playground for now --- scripts/buildClients.ts | 4 +--- 1 file changed, 1 insertion(+), 3 deletions(-) diff --git a/scripts/buildClients.ts b/scripts/buildClients.ts index c0fdd989110..254133d3296 100644 --- a/scripts/buildClients.ts +++ b/scripts/buildClients.ts @@ -19,9 +19,7 @@ async function buildLanguage( break; case 'javascript': await run('YARN_ENABLE_IMMUTABLE_INSTALLS=false yarn install', { cwd }); - if (playground) { - await run('cd node && yarn build', { cwd }); - } else { + if (!playground) { const packageNames = gens.map(({ additionalProperties: { packageName } }) => packageName === 'algoliasearch' ? packageName : `@algolia/${packageName}`, );