Skip to content

Commit 523d0c2

Browse files
fix(specs): support synonyms type in camel case [skip-bc] (generated)
algolia/api-clients-automation#4031 Co-authored-by: algolia-bot <[email protected]> Co-authored-by: Clément Vannicatte <[email protected]>
1 parent 47165a8 commit 523d0c2

File tree

1 file changed

+9
-0
lines changed

1 file changed

+9
-0
lines changed

lib/Model/Search/SynonymType.php

Lines changed: 9 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -26,6 +26,12 @@ class SynonymType
2626

2727
public const PLACEHOLDER = 'placeholder';
2828

29+
public const ONE_WAY_SYNONYM = 'oneWaySynonym';
30+
31+
public const ALT_CORRECTION1 = 'altCorrection1';
32+
33+
public const ALT_CORRECTION2 = 'altCorrection2';
34+
2935
/**
3036
* Gets allowable values of the enum.
3137
*
@@ -39,6 +45,9 @@ public static function getAllowableEnumValues()
3945
self::ALTCORRECTION1,
4046
self::ALTCORRECTION2,
4147
self::PLACEHOLDER,
48+
self::ONE_WAY_SYNONYM,
49+
self::ALT_CORRECTION1,
50+
self::ALT_CORRECTION2,
4251
];
4352
}
4453
}

0 commit comments

Comments
 (0)