Skip to content

Commit ba4e9ec

Browse files
authored
Merge 6d60f55 into 53be992
2 parents 53be992 + 6d60f55 commit ba4e9ec

File tree

3 files changed

+6
-48
lines changed

3 files changed

+6
-48
lines changed

.github/workflows/check.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -431,7 +431,7 @@ jobs:
431431
type: minimal
432432
language: swift
433433

434-
- run: yarn cli cts run swift ${{ fromJSON(needs.setup.outputs.SWIFT_DATA).toRun }}
434+
- run: yarn cli cts run swift ${{ fromJSON(needs.setup.outputs.SWIFT_DATA).toRun }} -v
435435

436436
- name: Set output
437437
id: setoutput

scripts/cts/runCts.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -115,7 +115,7 @@ async function runCtsOne(
115115
break;
116116
case 'swift':
117117
await run(
118-
`swift test -Xswiftc -suppress-warnings -q --parallel ${filter((f) => `--filter ${f}.*`)}`,
118+
`swift test -Xswiftc -suppress-warnings -v --parallel ${filter((f) => `--filter ${f}.*`)}`,
119119
{
120120
cwd,
121121
language,

specs/ingestion/common/schemas/source.yml

Lines changed: 4 additions & 46 deletions
Original file line numberDiff line numberDiff line change
@@ -457,52 +457,10 @@ SourceUpdateShopify:
457457
type: object
458458
additionalProperties: false
459459
properties:
460-
collectionIDIndexing:
461-
type: boolean
462-
default: false
463-
description: |
464-
Whether to index collection IDs.
465-
466-
If your store has `has_collection_search_page` set to true,
467-
collection IDs will be indexed even if `collectionIDIndexing` is false.
468-
increaseProductCollectionLimit:
469-
type: boolean
470-
default: false
471-
description: |
472-
Whether to increase the number of indexed collections per product.
473-
If true, Algolia indexes 200 collections per product.
474-
If false, 100 collections per product are indexed.
475-
defaultPriceRatioAsOne:
476-
type: boolean
477-
default: true
478-
description: |
479-
Whether to set the default price ratio to 1 if no sale price is present.
480-
481-
The price ratio is determined by the ratio: `sale_price` / `regular_price`.
482-
If no sale price is present, the price ratio would be 0.
483-
If `defaultPriceRatioAsOne` is true, the price ratio is indexed as 1 instead.
484-
excludeOOSVariantsForPriceAtTRS:
485-
type: boolean
486-
default: true
487-
description: |
488-
Whether to exclude out-of-stock variants when determining the `max_variant_price` and `min_variant_price` attributes.
489-
includeVariantsInventory:
490-
type: boolean
491-
default: true
492-
description: |
493-
Whether to include an inventory with every variant for every product record.
494-
hasCollectionSearchPage:
495-
type: boolean
496-
default: false
497-
description: |
498-
Whether to include collection IDs and handles in the product records.
499-
productNamedTags:
500-
type: boolean
501-
default: false
502-
description: |
503-
Whether to convert tags on products to named tags.
504-
505-
To learn more, see [Named tags](https://www.algolia.com/doc/integration/shopify/sending-and-managing-data/named-tags).
460+
featureFlags:
461+
type: object
462+
description: Feature flags for the Shopify source.
463+
additionalProperties: true
506464

507465
SourceShopify:
508466
allOf:

0 commit comments

Comments
 (0)