mirror of
https://gitlab.com/openstapps/openstapps.git
synced 2026-01-03 20:12:51 +00:00
26 lines
455 B
TypeScript
26 lines
455 B
TypeScript
import {SCSearchResponse} from '../../src/index.js';
|
|
import {dishWithTranslation} from './dish-with-translation.js';
|
|
|
|
export const dishWithTranslationSearchResponse: SCSearchResponse = {
|
|
data: [dishWithTranslation],
|
|
facets: [
|
|
{
|
|
buckets: [
|
|
{
|
|
count: 1,
|
|
key: 'key',
|
|
},
|
|
],
|
|
field: 'field',
|
|
},
|
|
],
|
|
pagination: {
|
|
count: 1,
|
|
offset: 0,
|
|
total: 1,
|
|
},
|
|
stats: {
|
|
time: 1,
|
|
},
|
|
};
|