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]