Skip to content

Commit 57e7ca0

Browse files
Generated code for commit b07f5f9. (#341)
Co-authored-by: Clément Vannicatte <[email protected]> Co-authored-by: algolia-bot <[email protected]>
1 parent b07f5f9 commit 57e7ca0

File tree

13 files changed

+13
-13
lines changed

13 files changed

+13
-13
lines changed
Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
/**
22
* Error.
33
*/
4-
export type ErrorBase = {
4+
export type ErrorBase = Record<string, any> & {
55
message?: string;
66
};
Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
/**
22
* Error.
33
*/
4-
export type ErrorBase = {
4+
export type ErrorBase = Record<string, any> & {
55
message?: string;
66
};
Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
/**
22
* Error.
33
*/
4-
export type ErrorBase = {
4+
export type ErrorBase = Record<string, any> & {
55
message?: string;
66
};
Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
/**
22
* Error.
33
*/
4-
export type ErrorBase = {
4+
export type ErrorBase = Record<string, any> & {
55
message?: string;
66
};
Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
/**
22
* Error.
33
*/
4-
export type ErrorBase = {
4+
export type ErrorBase = Record<string, any> & {
55
message?: string;
66
};
Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
/**
22
* Error.
33
*/
4-
export type ErrorBase = {
4+
export type ErrorBase = Record<string, any> & {
55
message?: string;
66
};

clients/algoliasearch-client-javascript/packages/client-search/model/dictionaryEntry.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@ import type { DictionaryEntryState } from './dictionaryEntryState';
33
/**
44
* A dictionary entry.
55
*/
6-
export type DictionaryEntry = {
6+
export type DictionaryEntry = Record<string, any> & {
77
/**
88
* Unique identifier of the object.
99
*/
Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
/**
22
* Error.
33
*/
4-
export type ErrorBase = {
4+
export type ErrorBase = Record<string, any> & {
55
message?: string;
66
};

clients/algoliasearch-client-javascript/packages/client-search/model/hit.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@ import type { SnippetResult } from './snippetResult';
55
/**
66
* A single hit.
77
*/
8-
export type Hit = {
8+
export type Hit = Record<string, any> & {
99
/**
1010
* Unique identifier of the object.
1111
*/

clients/algoliasearch-client-javascript/packages/client-search/model/searchSynonymsResponse.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
import type { SynonymHit } from './synonymHit';
22

3-
export type SearchSynonymsResponse = {
3+
export type SearchSynonymsResponse = Record<string, any> & {
44
/**
55
* Array of synonym objects.
66
*/
Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
/**
22
* Error.
33
*/
4-
export type ErrorBase = {
4+
export type ErrorBase = Record<string, any> & {
55
message?: string;
66
};
Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
/**
22
* Error.
33
*/
4-
export type ErrorBase = {
4+
export type ErrorBase = Record<string, any> & {
55
message?: string;
66
};

clients/algoliasearch-client-javascript/packages/recommend/model/recommendHit.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@ import type { SnippetResult } from './snippetResult';
55
/**
66
* A Recommend hit.
77
*/
8-
export type RecommendHit = {
8+
export type RecommendHit = Record<string, any> & {
99
/**
1010
* Unique identifier of the object.
1111
*/

0 commit comments

Comments
 (0)