Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
7 changes: 4 additions & 3 deletions specs/abtesting-v3/common/schemas/AddABTestsVariant.yml
Original file line number Diff line number Diff line change
@@ -1,8 +1,9 @@
AddABTestsVariant:
oneOf:
- $ref: '#/abTestsVariant'
- $ref: '#/abTestsVariantSearchParams'

- title: Variant
$ref: '#/abTestsVariant'
- title: Variant with search parameters
$ref: '#/abTestsVariantSearchParams'
abTestsVariantSearchParams:
allOf:
- $ref: '#/abTestsVariant'
Expand Down
6 changes: 4 additions & 2 deletions specs/abtesting/common/schemas/AddABTestsVariant.yml
Original file line number Diff line number Diff line change
@@ -1,7 +1,9 @@
AddABTestsVariant:
oneOf:
- $ref: '#/abTestsVariant'
- $ref: '#/abTestsVariantSearchParams'
- title: Variant
$ref: '#/abTestsVariant'
- title: Variant with search parameters
$ref: '#/abTestsVariantSearchParams'

abTestsVariantSearchParams:
allOf:
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -10,5 +10,7 @@ deleteCompositionAction:

batchCompositionAction:
oneOf:
- $ref: '../components/Composition.yml#/composition'
- $ref: '#/deleteCompositionAction'
- title: Upsert (update and insert)
$ref: '../components/Composition.yml#/composition'
- title: Delete
$ref: '#/deleteCompositionAction'
Original file line number Diff line number Diff line change
Expand Up @@ -10,5 +10,7 @@ deleteCompositionRuleAction:

rulesBatchCompositionAction:
oneOf:
- $ref: '../components/CompositionRule.yml#/compositionRule'
- $ref: '#/deleteCompositionRuleAction'
- title: Upsert (update and insert)
$ref: '../components/CompositionRule.yml#/compositionRule'
- title: Delete
$ref: '#/deleteCompositionRuleAction'
4 changes: 2 additions & 2 deletions specs/composition/paths/compositions/composition.yml
Original file line number Diff line number Diff line change
Expand Up @@ -32,9 +32,9 @@ put:
operationId: putComposition
x-acl:
- editSettings
summary: Upsert a composition
summary: Update and insert (upsert) a composition
description: |
Upsert a composition in the current Algolia application.
Update and insert a composition in the current Algolia application.
parameters:
- $ref: '../urlParams.yml#/compositionID'
requestBody:
Expand Down
3 changes: 3 additions & 0 deletions specs/ingestion/common/schemas/task.yml
Original file line number Diff line number Diff line change
Expand Up @@ -509,6 +509,7 @@ MappingInput:
- actions

StreamingInput:
title: Streaming input
type: object
additionalProperties: false
description: Input for a `streaming` task whose source is of type `ga4BigqueryExport` and for which extracted data is continuously streamed.
Expand All @@ -521,6 +522,7 @@ StreamingInput:
- mapping

DockerStreamsInput:
title: Docker streams
description: The selected streams of an airbyte connector.
type: object
properties:
Expand Down Expand Up @@ -562,6 +564,7 @@ failureThreshold:
description: Maximum accepted percentage of failures for a task run to finish successfully.

ShopifyInput:
title: Shopify input
type: object
additionalProperties: false
description: Represents the required elements of the task input when using a `shopify` source.
Expand Down
2 changes: 2 additions & 0 deletions specs/ingestion/common/schemas/transformation.yml
Original file line number Diff line number Diff line change
Expand Up @@ -43,6 +43,7 @@ TransformationInput:
- $ref: '#/TransformationNoCode'

TransformationCode:
title: Code
type: object
additionalProperties: false
description: Input for a transformation that contains the source code of the transformation.
Expand All @@ -54,6 +55,7 @@ TransformationCode:
- code

TransformationNoCode:
title: No-code
type: object
additionalProperties: false
description: Input for a no-code transformation that contains a series of steps.
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -45,6 +45,7 @@ recommendHit:

trendingFacetHit:
type: object
title: Trending facet hit
description: Trending facet hit.
required:
- facetName
Expand Down