-
Notifications
You must be signed in to change notification settings - Fork 10
Expand file tree
/
Copy pathmassTransit.ts
More file actions
38 lines (36 loc) · 892 Bytes
/
massTransit.ts
File metadata and controls
38 lines (36 loc) · 892 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
import { DocItem } from "../types";
const massTransit: DocItem = {
"en-US": {
icon: "../assets/logo/masstransit.png",
apiKey: "c1b63b1b97fd65692eaf194862ce532b",
appId: "TGRVKMJDRV",
indexName: "masstransit_io",
type: "algolia",
homepage: "https://masstransit.io/",
searchParameters: {
facetFilters: ["lang:en"],
attributesToRetrieve: [
"hierarchy.lvl0",
"hierarchy.lvl1",
"hierarchy.lvl2",
"hierarchy.lvl3",
"hierarchy.lvl4",
"hierarchy.lvl5",
"hierarchy.lvl6",
"content",
"type",
"url",
],
attributesToSnippet: [
"hierarchy.lvl1:5",
"hierarchy.lvl2:5",
"hierarchy.lvl3:5",
"hierarchy.lvl4:5",
"hierarchy.lvl5:5",
"hierarchy.lvl6:5",
"content:5",
],
},
},
};
export default massTransit;