From 996ba5036892ec0e50fff79b08ca00a306d49858 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Cl=C3=A9ment=20Vannicatte?= Date: Fri, 15 Nov 2024 16:23:26 +0100 Subject: [PATCH] fix(specs): remove private beta endpoint from recommend [skip-bc] (#4110) --- .github/workflows/check.yml | 2 +- .../common/schemas/RecommendationsRequest.yml | 1 - .../common/schemas/RecommendedForYouQuery.yml | 21 ------------------- 3 files changed, 1 insertion(+), 23 deletions(-) delete mode 100644 specs/recommend/common/schemas/RecommendedForYouQuery.yml diff --git a/.github/workflows/check.yml b/.github/workflows/check.yml index cb27f5dfcd..e53e097694 100644 --- a/.github/workflows/check.yml +++ b/.github/workflows/check.yml @@ -41,7 +41,7 @@ jobs: runs-on: ubuntu-22.04 timeout-minutes: 10 env: - CACHE_VERSION: 1.10 # bump this to run all clients on the CI. + CACHE_VERSION: 1.11 # bump this to run all clients on the CI. steps: - name: debugging - dump GitHub context env: diff --git a/specs/recommend/common/schemas/RecommendationsRequest.yml b/specs/recommend/common/schemas/RecommendationsRequest.yml index 7154085a43..17c01d74c0 100644 --- a/specs/recommend/common/schemas/RecommendationsRequest.yml +++ b/specs/recommend/common/schemas/RecommendationsRequest.yml @@ -5,7 +5,6 @@ recommendationsRequest: - $ref: './TrendingItemsQuery.yml#/trendingItemsQuery' - $ref: './TrendingFacetsQuery.yml#/trendingFacetsQuery' - $ref: './LookingSimilarQuery.yml#/lookingSimilarQuery' - - $ref: './RecommendedForYouQuery.yml#/recommendedForYouQuery' baseRecommendRequest: type: object diff --git a/specs/recommend/common/schemas/RecommendedForYouQuery.yml b/specs/recommend/common/schemas/RecommendedForYouQuery.yml deleted file mode 100644 index a4f0ecb699..0000000000 --- a/specs/recommend/common/schemas/RecommendedForYouQuery.yml +++ /dev/null @@ -1,21 +0,0 @@ -recommendedForYouQuery: - title: Recommended for you - allOf: - - $ref: './RecommendationsRequest.yml#/baseRecommendRequest' - - $ref: '#/recommendedForYou' - -recommendedForYou: - type: object - properties: - model: - $ref: '#/recommendedForYouModel' - fallbackParameters: - $ref: './QueryParameters.yml#/fallbackParams' - required: - - model - -recommendedForYouModel: - type: string - description: | - "Recommened for you" model. - enum: [recommended-for-you]