Skip to content

Commit 37c730f

Browse files
algolia-botmillotp
andcommitted
trigger (generated)
Co-authored-by: Pierre Millot <[email protected]>
1 parent 04a2063 commit 37c730f

File tree

50 files changed

+276
-234
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

50 files changed

+276
-234
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/abtesting/client.go

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

clients/algoliasearch-client-go/algolia/analytics/client.go

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

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-go/algolia/insights/client.go

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

clients/algoliasearch-client-go/algolia/monitoring/client.go

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

clients/algoliasearch-client-go/algolia/personalization/client.go

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

clients/algoliasearch-client-go/algolia/query-suggestions/client.go

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

clients/algoliasearch-client-go/algolia/recommend/client.go

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

clients/algoliasearch-client-go/algolia/search/api_search.go

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

clients/algoliasearch-client-go/algolia/search/client.go

Lines changed: 2 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/Api/AbtestingClient.php

Lines changed: 12 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -6,8 +6,13 @@
66

77
use Algolia\AlgoliaSearch\Algolia;
88
use Algolia\AlgoliaSearch\Configuration\AbtestingConfig;
9+
use Algolia\AlgoliaSearch\Model\Abtesting\ABTest;
10+
use Algolia\AlgoliaSearch\Model\Abtesting\ABTestResponse;
911
use Algolia\AlgoliaSearch\Model\Abtesting\AddABTestsRequest;
1012
use Algolia\AlgoliaSearch\Model\Abtesting\EstimateABTestRequest;
13+
use Algolia\AlgoliaSearch\Model\Abtesting\EstimateABTestResponse;
14+
use Algolia\AlgoliaSearch\Model\Abtesting\ListABTestsResponse;
15+
use Algolia\AlgoliaSearch\Model\Abtesting\ScheduleABTestResponse;
1116
use Algolia\AlgoliaSearch\Model\Abtesting\ScheduleABTestsRequest;
1217
use Algolia\AlgoliaSearch\ObjectSerializer;
1318
use Algolia\AlgoliaSearch\RetryStrategy\ApiWrapper;
@@ -125,7 +130,7 @@ public function setClientApiKey($apiKey)
125130
*
126131
* @param array $requestOptions the requestOptions to send along with the query, they will be merged with the transporter requestOptions
127132
*
128-
* @return \Algolia\AlgoliaSearch\Model\Abtesting\ABTestResponse|array<string, mixed>
133+
* @return ABTestResponse|array<string, mixed>
129134
*/
130135
public function addABTests($addABTestsRequest, $requestOptions = [])
131136
{
@@ -311,7 +316,7 @@ public function customPut($path, $parameters = null, $body = null, $requestOptio
311316
* @param int $id Unique A/B test identifier. (required)
312317
* @param array $requestOptions the requestOptions to send along with the query, they will be merged with the transporter requestOptions
313318
*
314-
* @return \Algolia\AlgoliaSearch\Model\Abtesting\ABTestResponse|array<string, mixed>
319+
* @return ABTestResponse|array<string, mixed>
315320
*/
316321
public function deleteABTest($id, $requestOptions = [])
317322
{
@@ -353,7 +358,7 @@ public function deleteABTest($id, $requestOptions = [])
353358
*
354359
* @param array $requestOptions the requestOptions to send along with the query, they will be merged with the transporter requestOptions
355360
*
356-
* @return \Algolia\AlgoliaSearch\Model\Abtesting\EstimateABTestResponse|array<string, mixed>
361+
* @return array<string, mixed>|EstimateABTestResponse
357362
*/
358363
public function estimateABTest($estimateABTestRequest, $requestOptions = [])
359364
{
@@ -381,7 +386,7 @@ public function estimateABTest($estimateABTestRequest, $requestOptions = [])
381386
* @param int $id Unique A/B test identifier. (required)
382387
* @param array $requestOptions the requestOptions to send along with the query, they will be merged with the transporter requestOptions
383388
*
384-
* @return \Algolia\AlgoliaSearch\Model\Abtesting\ABTest|array<string, mixed>
389+
* @return ABTest|array<string, mixed>
385390
*/
386391
public function getABTest($id, $requestOptions = [])
387392
{
@@ -421,7 +426,7 @@ public function getABTest($id, $requestOptions = [])
421426
* @param string $indexSuffix Index name suffix. Only A/B tests for indices ending with this string are included in the response. (optional)
422427
* @param array $requestOptions the requestOptions to send along with the query, they will be merged with the transporter requestOptions
423428
*
424-
* @return \Algolia\AlgoliaSearch\Model\Abtesting\ListABTestsResponse|array<string, mixed>
429+
* @return array<string, mixed>|ListABTestsResponse
425430
*/
426431
public function listABTests($offset = null, $limit = null, $indexPrefix = null, $indexSuffix = null, $requestOptions = [])
427432
{
@@ -465,7 +470,7 @@ public function listABTests($offset = null, $limit = null, $indexPrefix = null,
465470
*
466471
* @param array $requestOptions the requestOptions to send along with the query, they will be merged with the transporter requestOptions
467472
*
468-
* @return \Algolia\AlgoliaSearch\Model\Abtesting\ScheduleABTestResponse|array<string, mixed>
473+
* @return array<string, mixed>|ScheduleABTestResponse
469474
*/
470475
public function scheduleABTest($scheduleABTestsRequest, $requestOptions = [])
471476
{
@@ -493,7 +498,7 @@ public function scheduleABTest($scheduleABTestsRequest, $requestOptions = [])
493498
* @param int $id Unique A/B test identifier. (required)
494499
* @param array $requestOptions the requestOptions to send along with the query, they will be merged with the transporter requestOptions
495500
*
496-
* @return \Algolia\AlgoliaSearch\Model\Abtesting\ABTestResponse|array<string, mixed>
501+
* @return ABTestResponse|array<string, mixed>
497502
*/
498503
public function stopABTest($id, $requestOptions = [])
499504
{

0 commit comments

Comments
 (0)