Skip to content

Commit 8e7e29c

Browse files
algolia-botmillotp
authored andcommitted
fix(specs): remove SFCC source type [skip-bc] (#4190) (generated) [skip ci]
Co-authored-by: Pierre Millot <[email protected]>
1 parent 52e1dd1 commit 8e7e29c

File tree

12 files changed

+3
-40
lines changed

12 files changed

+3
-40
lines changed

clients/algoliasearch-client-csharp/algoliasearch/Models/Ingestion/SourceType.cs

Lines changed: 1 addition & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -65,16 +65,10 @@ public enum SourceType
6565
[JsonPropertyName("shopify")]
6666
Shopify = 8,
6767

68-
/// <summary>
69-
/// Enum Sfcc for value: sfcc
70-
/// </summary>
71-
[JsonPropertyName("sfcc")]
72-
Sfcc = 9,
73-
7468
/// <summary>
7569
/// Enum Push for value: push
7670
/// </summary>
7771
[JsonPropertyName("push")]
78-
Push = 10
72+
Push = 9
7973
}
8074

clients/algoliasearch-client-go/algolia/ingestion/model_source_type.go

Lines changed: 0 additions & 2 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

clients/algoliasearch-client-java/algoliasearch/src/main/java/com/algolia/model/ingestion/SourceType.java

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -24,8 +24,6 @@ public enum SourceType {
2424

2525
SHOPIFY("shopify"),
2626

27-
SFCC("sfcc"),
28-
2927
PUSH("push");
3028

3129
private final String value;

clients/algoliasearch-client-javascript/packages/ingestion/model/sourceType.ts

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,5 +9,4 @@ export type SourceType =
99
| 'ga4BigqueryExport'
1010
| 'json'
1111
| 'shopify'
12-
| 'sfcc'
1312
| 'push';

clients/algoliasearch-client-kotlin/client/src/commonMain/kotlin/com/algolia/client/model/ingestion/SourceType.kt

Lines changed: 0 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -30,9 +30,6 @@ public enum class SourceType(public val value: kotlin.String) {
3030
@SerialName(value = "shopify")
3131
Shopify("shopify"),
3232

33-
@SerialName(value = "sfcc")
34-
Sfcc("sfcc"),
35-
3633
@SerialName(value = "push")
3734
Push("push");
3835

clients/algoliasearch-client-php/lib/Model/Ingestion/SourceType.php

Lines changed: 0 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -30,8 +30,6 @@ class SourceType
3030

3131
public const SHOPIFY = 'shopify';
3232

33-
public const SFCC = 'sfcc';
34-
3533
public const PUSH = 'push';
3634

3735
/**
@@ -50,7 +48,6 @@ public static function getAllowableEnumValues()
5048
self::GA4_BIGQUERY_EXPORT,
5149
self::JSON,
5250
self::SHOPIFY,
53-
self::SFCC,
5451
self::PUSH,
5552
];
5653
}

clients/algoliasearch-client-python/algoliasearch/ingestion/models/source_type.py

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -40,8 +40,6 @@ class SourceType(str, Enum):
4040

4141
SHOPIFY = "shopify"
4242

43-
SFCC = "sfcc"
44-
4543
PUSH = "push"
4644

4745
@classmethod

clients/algoliasearch-client-ruby/lib/algolia/models/ingestion/source_type.rb

Lines changed: 1 addition & 13 deletions
Original file line numberDiff line numberDiff line change
@@ -14,22 +14,10 @@ class SourceType
1414
GA4_BIGQUERY_EXPORT = "ga4BigqueryExport".freeze
1515
JSON = "json".freeze
1616
SHOPIFY = "shopify".freeze
17-
SFCC = "sfcc".freeze
1817
PUSH = "push".freeze
1918

2019
def self.all_vars
21-
@all_vars ||= [
22-
BIGCOMMERCE,
23-
BIGQUERY,
24-
COMMERCETOOLS,
25-
CSV,
26-
DOCKER,
27-
GA4_BIGQUERY_EXPORT,
28-
JSON,
29-
SHOPIFY,
30-
SFCC,
31-
PUSH
32-
].freeze
20+
@all_vars ||= [BIGCOMMERCE, BIGQUERY, COMMERCETOOLS, CSV, DOCKER, GA4_BIGQUERY_EXPORT, JSON, SHOPIFY, PUSH].freeze
3321
end
3422

3523
# Builds the enum from string

clients/algoliasearch-client-scala/src/main/scala/algoliasearch/ingestion/SourceType.scala

Lines changed: 1 addition & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -50,14 +50,11 @@ object SourceType {
5050
case object Shopify extends SourceType {
5151
override def toString = "shopify"
5252
}
53-
case object Sfcc extends SourceType {
54-
override def toString = "sfcc"
55-
}
5653
case object Push extends SourceType {
5754
override def toString = "push"
5855
}
5956
val values: Seq[SourceType] =
60-
Seq(Bigcommerce, Bigquery, Commercetools, Csv, Docker, Ga4BigqueryExport, Json, Shopify, Sfcc, Push)
57+
Seq(Bigcommerce, Bigquery, Commercetools, Csv, Docker, Ga4BigqueryExport, Json, Shopify, Push)
6158

6259
def withName(name: String): SourceType = SourceType.values
6360
.find(_.toString == name)

clients/algoliasearch-client-swift/Sources/Ingestion/Models/SourceType.swift

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,6 @@ public enum SourceType: String, Codable, CaseIterable {
1515
case ga4BigqueryExport
1616
case json
1717
case shopify
18-
case sfcc
1918
case push
2019
}
2120

specs/bundled/ingestion.doc.yml

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -13169,7 +13169,6 @@ components:
1316913169
- ga4BigqueryExport
1317013170
- json
1317113171
- shopify
13172-
- sfcc
1317313172
- push
1317413173
sourceSortKeys:
1317513174
type: string

specs/bundled/ingestion.yml

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2697,7 +2697,6 @@ components:
26972697
- ga4BigqueryExport
26982698
- json
26992699
- shopify
2700-
- sfcc
27012700
- push
27022701
sourceSortKeys:
27032702
type: string

0 commit comments

Comments
 (0)