@86d-app/search 0.0.23 → 0.0.24
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/dist/modules/search/src/__tests__/admin-settings.test.js +262 -0
- package/dist/modules/search/src/__tests__/controllers.test.js +853 -0
- package/dist/modules/search/src/__tests__/embedding-provider.test.js +150 -0
- package/dist/modules/search/src/__tests__/endpoint-security.test.js +250 -0
- package/dist/modules/search/src/__tests__/meilisearch-provider.test.js +318 -0
- package/dist/modules/search/src/__tests__/service-impl.test.js +703 -0
- package/dist/modules/search/src/__tests__/store-endpoints.test.js +295 -0
- package/dist/{admin/components/index.d.ts → modules/search/src/admin/components/index.jsx} +0 -1
- package/dist/modules/search/src/admin/components/search-analytics.jsx +230 -0
- package/dist/modules/search/src/admin/endpoints/analytics.js +9 -0
- package/dist/modules/search/src/admin/endpoints/bulk-index.js +26 -0
- package/dist/modules/search/src/admin/endpoints/click-analytics.js +9 -0
- package/dist/modules/search/src/admin/endpoints/get-settings.js +97 -0
- package/dist/modules/search/src/admin/endpoints/index-manage.js +32 -0
- package/dist/modules/search/src/admin/endpoints/index.js +21 -0
- package/dist/modules/search/src/admin/endpoints/popular.js +11 -0
- package/dist/modules/search/src/admin/endpoints/synonyms.js +30 -0
- package/dist/modules/search/src/admin/endpoints/zero-results.js +11 -0
- package/dist/modules/search/src/embedding-provider.js +77 -0
- package/dist/modules/search/src/index.js +75 -0
- package/dist/modules/search/src/meilisearch-provider.js +138 -0
- package/dist/modules/search/src/schema.js +61 -0
- package/dist/modules/search/src/service-impl.js +770 -0
- package/dist/modules/search/src/service.js +1 -0
- package/dist/modules/search/src/store/components/_hooks.js +10 -0
- package/dist/modules/search/src/store/components/index.jsx +9 -0
- package/dist/modules/search/src/store/components/search-bar.jsx +91 -0
- package/dist/modules/search/src/store/components/search-page.jsx +17 -0
- package/dist/modules/search/src/store/components/search-results.jsx +51 -0
- package/dist/modules/search/src/store/endpoints/click.js +15 -0
- package/dist/modules/search/src/store/endpoints/index.js +12 -0
- package/dist/modules/search/src/store/endpoints/recent.js +18 -0
- package/dist/modules/search/src/store/endpoints/search.js +57 -0
- package/dist/modules/search/src/store/endpoints/store-search.js +33 -0
- package/dist/modules/search/src/store/endpoints/suggest.js +12 -0
- package/package.json +1 -1
- package/src/__tests__/admin-settings.test.ts +367 -0
- package/src/__tests__/store-endpoints.test.ts +392 -0
- package/src/admin/endpoints/get-settings.ts +77 -0
- package/dist/__tests__/controllers.test.d.ts +0 -2
- package/dist/__tests__/controllers.test.d.ts.map +0 -1
- package/dist/__tests__/embedding-provider.test.d.ts +0 -2
- package/dist/__tests__/embedding-provider.test.d.ts.map +0 -1
- package/dist/__tests__/endpoint-security.test.d.ts +0 -2
- package/dist/__tests__/endpoint-security.test.d.ts.map +0 -1
- package/dist/__tests__/meilisearch-provider.test.d.ts +0 -2
- package/dist/__tests__/meilisearch-provider.test.d.ts.map +0 -1
- package/dist/__tests__/service-impl.test.d.ts +0 -2
- package/dist/__tests__/service-impl.test.d.ts.map +0 -1
- package/dist/admin/components/index.d.ts.map +0 -1
- package/dist/admin/components/search-analytics.d.ts +0 -2
- package/dist/admin/components/search-analytics.d.ts.map +0 -1
- package/dist/admin/endpoints/analytics.d.ts +0 -15
- package/dist/admin/endpoints/analytics.d.ts.map +0 -1
- package/dist/admin/endpoints/bulk-index.d.ts +0 -20
- package/dist/admin/endpoints/bulk-index.d.ts.map +0 -1
- package/dist/admin/endpoints/click-analytics.d.ts +0 -7
- package/dist/admin/endpoints/click-analytics.d.ts.map +0 -1
- package/dist/admin/endpoints/get-settings.d.ts +0 -17
- package/dist/admin/endpoints/get-settings.d.ts.map +0 -1
- package/dist/admin/endpoints/index-manage.d.ts +0 -26
- package/dist/admin/endpoints/index-manage.d.ts.map +0 -1
- package/dist/admin/endpoints/index.d.ts +0 -125
- package/dist/admin/endpoints/index.d.ts.map +0 -1
- package/dist/admin/endpoints/popular.d.ts +0 -10
- package/dist/admin/endpoints/popular.d.ts.map +0 -1
- package/dist/admin/endpoints/synonyms.d.ts +0 -30
- package/dist/admin/endpoints/synonyms.d.ts.map +0 -1
- package/dist/admin/endpoints/zero-results.d.ts +0 -10
- package/dist/admin/endpoints/zero-results.d.ts.map +0 -1
- package/dist/embedding-provider.d.ts +0 -28
- package/dist/embedding-provider.d.ts.map +0 -1
- package/dist/index.d.ts +0 -23
- package/dist/index.d.ts.map +0 -1
- package/dist/meilisearch-provider.d.ts +0 -104
- package/dist/meilisearch-provider.d.ts.map +0 -1
- package/dist/schema.d.ts +0 -133
- package/dist/schema.d.ts.map +0 -1
- package/dist/service-impl.d.ts +0 -6
- package/dist/service-impl.d.ts.map +0 -1
- package/dist/service.d.ts +0 -127
- package/dist/service.d.ts.map +0 -1
- package/dist/store/components/_hooks.d.ts +0 -6
- package/dist/store/components/_hooks.d.ts.map +0 -1
- package/dist/store/components/index.d.ts +0 -10
- package/dist/store/components/index.d.ts.map +0 -1
- package/dist/store/components/search-bar.d.ts +0 -7
- package/dist/store/components/search-bar.d.ts.map +0 -1
- package/dist/store/components/search-page.d.ts +0 -4
- package/dist/store/components/search-page.d.ts.map +0 -1
- package/dist/store/components/search-results.d.ts +0 -9
- package/dist/store/components/search-results.d.ts.map +0 -1
- package/dist/store/endpoints/click.d.ts +0 -14
- package/dist/store/endpoints/click.d.ts.map +0 -1
- package/dist/store/endpoints/index.d.ts +0 -85
- package/dist/store/endpoints/index.d.ts.map +0 -1
- package/dist/store/endpoints/recent.d.ts +0 -15
- package/dist/store/endpoints/recent.d.ts.map +0 -1
- package/dist/store/endpoints/search.d.ts +0 -36
- package/dist/store/endpoints/search.d.ts.map +0 -1
- package/dist/store/endpoints/store-search.d.ts +0 -16
- package/dist/store/endpoints/store-search.d.ts.map +0 -1
- package/dist/store/endpoints/suggest.d.ts +0 -11
- package/dist/store/endpoints/suggest.d.ts.map +0 -1
|
@@ -1,10 +0,0 @@
|
|
|
1
|
-
import { SearchBar } from "./search-bar";
|
|
2
|
-
import { SearchPage } from "./search-page";
|
|
3
|
-
import { SearchResults } from "./search-results";
|
|
4
|
-
declare const _default: {
|
|
5
|
-
SearchBar: typeof SearchBar;
|
|
6
|
-
SearchResults: typeof SearchResults;
|
|
7
|
-
SearchPage: typeof SearchPage;
|
|
8
|
-
};
|
|
9
|
-
export default _default;
|
|
10
|
-
//# sourceMappingURL=index.d.ts.map
|
|
@@ -1 +0,0 @@
|
|
|
1
|
-
{"version":3,"file":"index.d.ts","sourceRoot":"","sources":["../../../src/store/components/index.tsx"],"names":[],"mappings":"AAGA,OAAO,EAAE,SAAS,EAAE,MAAM,cAAc,CAAC;AACzC,OAAO,EAAE,UAAU,EAAE,MAAM,eAAe,CAAC;AAC3C,OAAO,EAAE,aAAa,EAAE,MAAM,kBAAkB,CAAC;;;;;;AAEjD,wBAI0B"}
|
|
@@ -1,7 +0,0 @@
|
|
|
1
|
-
interface SearchBarProps {
|
|
2
|
-
placeholder?: string | undefined;
|
|
3
|
-
onSearch?: ((query: string) => void) | undefined;
|
|
4
|
-
}
|
|
5
|
-
export declare function SearchBar({ placeholder, onSearch, }: SearchBarProps): import("react").JSX.Element;
|
|
6
|
-
export {};
|
|
7
|
-
//# sourceMappingURL=search-bar.d.ts.map
|
|
@@ -1 +0,0 @@
|
|
|
1
|
-
{"version":3,"file":"search-bar.d.ts","sourceRoot":"","sources":["../../../src/store/components/search-bar.tsx"],"names":[],"mappings":"AAKA,UAAU,cAAc;IACvB,WAAW,CAAC,EAAE,MAAM,GAAG,SAAS,CAAC;IACjC,QAAQ,CAAC,EAAE,CAAC,CAAC,KAAK,EAAE,MAAM,KAAK,IAAI,CAAC,GAAG,SAAS,CAAC;CACjD;AAED,wBAAgB,SAAS,CAAC,EACzB,WAAyB,EACzB,QAAQ,GACR,EAAE,cAAc,+BA2IhB"}
|
|
@@ -1 +0,0 @@
|
|
|
1
|
-
{"version":3,"file":"search-page.d.ts","sourceRoot":"","sources":["../../../src/store/components/search-page.tsx"],"names":[],"mappings":"AAMA,wBAAgB,UAAU,CAAC,EAAE,SAAS,EAAE,EAAE;IAAE,SAAS,CAAC,EAAE,MAAM,GAAG,SAAS,CAAA;CAAE,+BAmB3E"}
|
|
@@ -1,9 +0,0 @@
|
|
|
1
|
-
interface SearchResultsProps {
|
|
2
|
-
query: string;
|
|
3
|
-
entityType?: string | undefined;
|
|
4
|
-
sessionId?: string | undefined;
|
|
5
|
-
limit?: number | undefined;
|
|
6
|
-
}
|
|
7
|
-
export declare function SearchResults({ query, entityType, sessionId, limit, }: SearchResultsProps): import("react").JSX.Element | null;
|
|
8
|
-
export {};
|
|
9
|
-
//# sourceMappingURL=search-results.d.ts.map
|
|
@@ -1 +0,0 @@
|
|
|
1
|
-
{"version":3,"file":"search-results.d.ts","sourceRoot":"","sources":["../../../src/store/components/search-results.tsx"],"names":[],"mappings":"AAcA,UAAU,kBAAkB;IAC3B,KAAK,EAAE,MAAM,CAAC;IACd,UAAU,CAAC,EAAE,MAAM,GAAG,SAAS,CAAC;IAChC,SAAS,CAAC,EAAE,MAAM,GAAG,SAAS,CAAC;IAC/B,KAAK,CAAC,EAAE,MAAM,GAAG,SAAS,CAAC;CAC3B;AAED,wBAAgB,aAAa,CAAC,EAC7B,KAAK,EACL,UAAU,EACV,SAAS,EACT,KAAU,GACV,EAAE,kBAAkB,sCA2EpB"}
|
|
@@ -1,14 +0,0 @@
|
|
|
1
|
-
import { z } from "@86d-app/core";
|
|
2
|
-
export declare const clickEndpoint: import("better-call").StrictEndpoint<"/search/click", {
|
|
3
|
-
method: "POST";
|
|
4
|
-
body: z.ZodObject<{
|
|
5
|
-
queryId: z.ZodString;
|
|
6
|
-
term: z.ZodPipe<z.ZodString, z.ZodTransform<string, string>>;
|
|
7
|
-
entityType: z.ZodPipe<z.ZodString, z.ZodTransform<string, string>>;
|
|
8
|
-
entityId: z.ZodString;
|
|
9
|
-
position: z.ZodNumber;
|
|
10
|
-
}, z.core.$strip>;
|
|
11
|
-
}, {
|
|
12
|
-
id: string;
|
|
13
|
-
}>;
|
|
14
|
-
//# sourceMappingURL=click.d.ts.map
|
|
@@ -1 +0,0 @@
|
|
|
1
|
-
{"version":3,"file":"click.d.ts","sourceRoot":"","sources":["../../../src/store/endpoints/click.ts"],"names":[],"mappings":"AAAA,OAAO,EAAqC,CAAC,EAAE,MAAM,eAAe,CAAC;AAGrE,eAAO,MAAM,aAAa;;;;;;;;;;;EAiBzB,CAAC"}
|
|
@@ -1,85 +0,0 @@
|
|
|
1
|
-
export declare const storeEndpoints: {
|
|
2
|
-
"/search/store-search": import("better-call").StrictEndpoint<"/search/store-search", {
|
|
3
|
-
method: "GET";
|
|
4
|
-
query: import("zod").ZodObject<{
|
|
5
|
-
q: import("zod").ZodPipe<import("zod").ZodString, import("zod").ZodTransform<string, string>>;
|
|
6
|
-
limit: import("zod").ZodOptional<import("zod").ZodString>;
|
|
7
|
-
}, import("zod/v4/core").$strip>;
|
|
8
|
-
}, {
|
|
9
|
-
results: {
|
|
10
|
-
id: string;
|
|
11
|
-
label: string;
|
|
12
|
-
href: string;
|
|
13
|
-
group: string;
|
|
14
|
-
}[];
|
|
15
|
-
}>;
|
|
16
|
-
"/search": import("better-call").StrictEndpoint<"/search", {
|
|
17
|
-
method: "GET";
|
|
18
|
-
query: import("zod").ZodObject<{
|
|
19
|
-
q: import("zod").ZodPipe<import("zod").ZodString, import("zod").ZodTransform<string, string>>;
|
|
20
|
-
type: import("zod").ZodOptional<import("zod").ZodPipe<import("zod").ZodString, import("zod").ZodTransform<string, string>>>;
|
|
21
|
-
tags: import("zod").ZodOptional<import("zod").ZodPipe<import("zod").ZodString, import("zod").ZodTransform<string, string>>>;
|
|
22
|
-
sort: import("zod").ZodOptional<import("zod").ZodEnum<{
|
|
23
|
-
relevance: "relevance";
|
|
24
|
-
newest: "newest";
|
|
25
|
-
oldest: "oldest";
|
|
26
|
-
title_asc: "title_asc";
|
|
27
|
-
title_desc: "title_desc";
|
|
28
|
-
}>>;
|
|
29
|
-
fuzzy: import("zod").ZodOptional<import("zod").ZodCoercedBoolean<unknown>>;
|
|
30
|
-
limit: import("zod").ZodOptional<import("zod").ZodCoercedNumber<unknown>>;
|
|
31
|
-
skip: import("zod").ZodOptional<import("zod").ZodCoercedNumber<unknown>>;
|
|
32
|
-
sessionId: import("zod").ZodOptional<import("zod").ZodString>;
|
|
33
|
-
}, import("zod/v4/core").$strip>;
|
|
34
|
-
}, {
|
|
35
|
-
results: {
|
|
36
|
-
id: string;
|
|
37
|
-
entityType: string;
|
|
38
|
-
entityId: string;
|
|
39
|
-
title: string;
|
|
40
|
-
url: string;
|
|
41
|
-
image: string | undefined;
|
|
42
|
-
tags: string[];
|
|
43
|
-
score: number;
|
|
44
|
-
highlights: import("../..").SearchHighlight | undefined;
|
|
45
|
-
}[];
|
|
46
|
-
total: number;
|
|
47
|
-
facets: import("../..").SearchFacets;
|
|
48
|
-
didYouMean: string | undefined;
|
|
49
|
-
}>;
|
|
50
|
-
"/search/suggest": import("better-call").StrictEndpoint<"/search/suggest", {
|
|
51
|
-
method: "GET";
|
|
52
|
-
query: import("zod").ZodObject<{
|
|
53
|
-
q: import("zod").ZodPipe<import("zod").ZodString, import("zod").ZodTransform<string, string>>;
|
|
54
|
-
limit: import("zod").ZodOptional<import("zod").ZodCoercedNumber<unknown>>;
|
|
55
|
-
}, import("zod/v4/core").$strip>;
|
|
56
|
-
}, {
|
|
57
|
-
suggestions: string[];
|
|
58
|
-
}>;
|
|
59
|
-
"/search/recent": import("better-call").StrictEndpoint<"/search/recent", {
|
|
60
|
-
method: "GET";
|
|
61
|
-
query: import("zod").ZodObject<{
|
|
62
|
-
sessionId: import("zod").ZodString;
|
|
63
|
-
limit: import("zod").ZodOptional<import("zod").ZodCoercedNumber<unknown>>;
|
|
64
|
-
}, import("zod/v4/core").$strip>;
|
|
65
|
-
}, {
|
|
66
|
-
recent: {
|
|
67
|
-
term: string;
|
|
68
|
-
resultCount: number;
|
|
69
|
-
searchedAt: Date;
|
|
70
|
-
}[];
|
|
71
|
-
}>;
|
|
72
|
-
"/search/click": import("better-call").StrictEndpoint<"/search/click", {
|
|
73
|
-
method: "POST";
|
|
74
|
-
body: import("zod").ZodObject<{
|
|
75
|
-
queryId: import("zod").ZodString;
|
|
76
|
-
term: import("zod").ZodPipe<import("zod").ZodString, import("zod").ZodTransform<string, string>>;
|
|
77
|
-
entityType: import("zod").ZodPipe<import("zod").ZodString, import("zod").ZodTransform<string, string>>;
|
|
78
|
-
entityId: import("zod").ZodString;
|
|
79
|
-
position: import("zod").ZodNumber;
|
|
80
|
-
}, import("zod/v4/core").$strip>;
|
|
81
|
-
}, {
|
|
82
|
-
id: string;
|
|
83
|
-
}>;
|
|
84
|
-
};
|
|
85
|
-
//# sourceMappingURL=index.d.ts.map
|
|
@@ -1 +0,0 @@
|
|
|
1
|
-
{"version":3,"file":"index.d.ts","sourceRoot":"","sources":["../../../src/store/endpoints/index.ts"],"names":[],"mappings":"AAMA,eAAO,MAAM,cAAc;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;CAM1B,CAAC"}
|
|
@@ -1,15 +0,0 @@
|
|
|
1
|
-
import { z } from "@86d-app/core";
|
|
2
|
-
export declare const recentEndpoint: import("better-call").StrictEndpoint<"/search/recent", {
|
|
3
|
-
method: "GET";
|
|
4
|
-
query: z.ZodObject<{
|
|
5
|
-
sessionId: z.ZodString;
|
|
6
|
-
limit: z.ZodOptional<z.ZodCoercedNumber<unknown>>;
|
|
7
|
-
}, z.core.$strip>;
|
|
8
|
-
}, {
|
|
9
|
-
recent: {
|
|
10
|
-
term: string;
|
|
11
|
-
resultCount: number;
|
|
12
|
-
searchedAt: Date;
|
|
13
|
-
}[];
|
|
14
|
-
}>;
|
|
15
|
-
//# sourceMappingURL=recent.d.ts.map
|
|
@@ -1 +0,0 @@
|
|
|
1
|
-
{"version":3,"file":"recent.d.ts","sourceRoot":"","sources":["../../../src/store/endpoints/recent.ts"],"names":[],"mappings":"AAAA,OAAO,EAAuB,CAAC,EAAE,MAAM,eAAe,CAAC;AAGvD,eAAO,MAAM,cAAc;;;;;;;;;;;;EAuB1B,CAAC"}
|
|
@@ -1,36 +0,0 @@
|
|
|
1
|
-
import { z } from "@86d-app/core";
|
|
2
|
-
export declare const searchEndpoint: import("better-call").StrictEndpoint<"/search", {
|
|
3
|
-
method: "GET";
|
|
4
|
-
query: z.ZodObject<{
|
|
5
|
-
q: z.ZodPipe<z.ZodString, z.ZodTransform<string, string>>;
|
|
6
|
-
type: z.ZodOptional<z.ZodPipe<z.ZodString, z.ZodTransform<string, string>>>;
|
|
7
|
-
tags: z.ZodOptional<z.ZodPipe<z.ZodString, z.ZodTransform<string, string>>>;
|
|
8
|
-
sort: z.ZodOptional<z.ZodEnum<{
|
|
9
|
-
relevance: "relevance";
|
|
10
|
-
newest: "newest";
|
|
11
|
-
oldest: "oldest";
|
|
12
|
-
title_asc: "title_asc";
|
|
13
|
-
title_desc: "title_desc";
|
|
14
|
-
}>>;
|
|
15
|
-
fuzzy: z.ZodOptional<z.ZodCoercedBoolean<unknown>>;
|
|
16
|
-
limit: z.ZodOptional<z.ZodCoercedNumber<unknown>>;
|
|
17
|
-
skip: z.ZodOptional<z.ZodCoercedNumber<unknown>>;
|
|
18
|
-
sessionId: z.ZodOptional<z.ZodString>;
|
|
19
|
-
}, z.core.$strip>;
|
|
20
|
-
}, {
|
|
21
|
-
results: {
|
|
22
|
-
id: string;
|
|
23
|
-
entityType: string;
|
|
24
|
-
entityId: string;
|
|
25
|
-
title: string;
|
|
26
|
-
url: string;
|
|
27
|
-
image: string | undefined;
|
|
28
|
-
tags: string[];
|
|
29
|
-
score: number;
|
|
30
|
-
highlights: import("../..").SearchHighlight | undefined;
|
|
31
|
-
}[];
|
|
32
|
-
total: number;
|
|
33
|
-
facets: import("../..").SearchFacets;
|
|
34
|
-
didYouMean: string | undefined;
|
|
35
|
-
}>;
|
|
36
|
-
//# sourceMappingURL=search.d.ts.map
|
|
@@ -1 +0,0 @@
|
|
|
1
|
-
{"version":3,"file":"search.d.ts","sourceRoot":"","sources":["../../../src/store/endpoints/search.ts"],"names":[],"mappings":"AAAA,OAAO,EAAqC,CAAC,EAAE,MAAM,eAAe,CAAC;AAWrE,eAAO,MAAM,cAAc;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;EA0D1B,CAAC"}
|
|
@@ -1,16 +0,0 @@
|
|
|
1
|
-
import { z } from "@86d-app/core";
|
|
2
|
-
export declare const storeSearch: import("better-call").StrictEndpoint<"/search/store-search", {
|
|
3
|
-
method: "GET";
|
|
4
|
-
query: z.ZodObject<{
|
|
5
|
-
q: z.ZodPipe<z.ZodString, z.ZodTransform<string, string>>;
|
|
6
|
-
limit: z.ZodOptional<z.ZodString>;
|
|
7
|
-
}, z.core.$strip>;
|
|
8
|
-
}, {
|
|
9
|
-
results: {
|
|
10
|
-
id: string;
|
|
11
|
-
label: string;
|
|
12
|
-
href: string;
|
|
13
|
-
group: string;
|
|
14
|
-
}[];
|
|
15
|
-
}>;
|
|
16
|
-
//# sourceMappingURL=store-search.d.ts.map
|
|
@@ -1 +0,0 @@
|
|
|
1
|
-
{"version":3,"file":"store-search.d.ts","sourceRoot":"","sources":["../../../src/store/endpoints/store-search.ts"],"names":[],"mappings":"AAAA,OAAO,EAAqC,CAAC,EAAE,MAAM,eAAe,CAAC;AAGrE,eAAO,MAAM,WAAW;;;;;;;;;;;;;EAqCvB,CAAC"}
|
|
@@ -1,11 +0,0 @@
|
|
|
1
|
-
import { z } from "@86d-app/core";
|
|
2
|
-
export declare const suggestEndpoint: import("better-call").StrictEndpoint<"/search/suggest", {
|
|
3
|
-
method: "GET";
|
|
4
|
-
query: z.ZodObject<{
|
|
5
|
-
q: z.ZodPipe<z.ZodString, z.ZodTransform<string, string>>;
|
|
6
|
-
limit: z.ZodOptional<z.ZodCoercedNumber<unknown>>;
|
|
7
|
-
}, z.core.$strip>;
|
|
8
|
-
}, {
|
|
9
|
-
suggestions: string[];
|
|
10
|
-
}>;
|
|
11
|
-
//# sourceMappingURL=suggest.d.ts.map
|
|
@@ -1 +0,0 @@
|
|
|
1
|
-
{"version":3,"file":"suggest.d.ts","sourceRoot":"","sources":["../../../src/store/endpoints/suggest.ts"],"names":[],"mappings":"AAAA,OAAO,EAAqC,CAAC,EAAE,MAAM,eAAe,CAAC;AAGrE,eAAO,MAAM,eAAe;;;;;;;;EAiB3B,CAAC"}
|