Skip to content

Commit eeebdac

Browse files
algolia-botkai687shortcuts
committed
fix(specs): dictionary entry for stopwords has type property (generated)
algolia/api-clients-automation#3456 Co-authored-by: algolia-bot <[email protected]> Co-authored-by: Kai Welke <[email protected]> Co-authored-by: Clément Vannicatte <[email protected]>
1 parent 68ab113 commit eeebdac

File tree

3 files changed

+10
-0
lines changed

3 files changed

+10
-0
lines changed

packages/client-search/model/dictionaryEntry.ts

+3
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,7 @@
11
// Code generated by OpenAPI Generator (https://openapi-generator.tech), manual changes will be lost - read more on https://github.com/algolia/api-clients-automation. DO NOT EDIT.
22

33
import type { DictionaryEntryState } from './dictionaryEntryState';
4+
import type { DictionaryEntryType } from './dictionaryEntryType';
45
import type { SupportedLanguage } from './supportedLanguage';
56

67
/**
@@ -30,4 +31,6 @@ export type DictionaryEntry = Record<string, any> & {
3031
decomposition?: string[];
3132

3233
state?: DictionaryEntryState;
34+
35+
type?: DictionaryEntryType;
3336
};
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,6 @@
1+
// Code generated by OpenAPI Generator (https://openapi-generator.tech), manual changes will be lost - read more on https://github.com/algolia/api-clients-automation. DO NOT EDIT.
2+
3+
/**
4+
* Whether a dictionary entry is provided by Algolia (standard), or has been added by you (custom).
5+
*/
6+
export type DictionaryEntryType = 'custom' | 'standard';

packages/client-search/model/index.ts

+1
Original file line numberDiff line numberDiff line change
@@ -49,6 +49,7 @@ export * from './deletedAtResponse';
4949
export * from './dictionaryAction';
5050
export * from './dictionaryEntry';
5151
export * from './dictionaryEntryState';
52+
export * from './dictionaryEntryType';
5253
export * from './dictionaryLanguage';
5354
export * from './dictionarySettingsParams';
5455
export * from './dictionaryType';

0 commit comments

Comments
 (0)