|
1 | 1 | const BASE_DOCS_LINK = "https://docs.airbyte.io";
|
2 | 2 |
|
3 |
| -type UiConfig = { |
4 |
| - helpLink: string; |
5 |
| - gitLink: string; |
6 |
| - updateLink: string; |
7 |
| - slackLink: string; |
8 |
| - termsLink: string; |
9 |
| - privacyLink: string; |
10 |
| - docsLink: string; |
11 |
| - configurationArchiveLink: string; |
12 |
| - namespaceLink: string; |
13 |
| - normalizationLink: string; |
14 |
| - tutorialLink: string; |
15 |
| - technicalSupport: string; |
16 |
| - statusLink: string; |
17 |
| - recipesLink: string; |
18 |
| - demoLink: string; |
19 |
| - syncModeLink: string; |
20 |
| -}; |
21 |
| - |
22 |
| -const uiConfig: UiConfig = { |
| 3 | +const uiConfig = { |
23 | 4 | technicalSupport: `${BASE_DOCS_LINK}/troubleshooting/on-deploying`,
|
24 |
| - termsLink: "https://airbyte.io/terms", |
25 |
| - privacyLink: "https://airbyte.io/privacy-policy", |
26 |
| - helpLink: "https://airbyte.io/community", |
27 |
| - gitLink: "https://docs.airbyte.io/quickstart/deploy-airbyte", |
| 5 | + termsLink: "https://airbyte.com/terms", |
| 6 | + privacyLink: "https://airbyte.com/privacy-policy", |
| 7 | + helpLink: "https://airbyte.com/community", |
| 8 | + gitLink: "https://docs.airbyte.com/quickstart/deploy-airbyte", |
28 | 9 | updateLink: `${BASE_DOCS_LINK}/upgrading-airbyte`,
|
29 |
| - slackLink: "https://slack.airbyte.io", |
| 10 | + slackLink: "https://slack.airbyte.com", |
30 | 11 | docsLink: BASE_DOCS_LINK,
|
31 | 12 | configurationArchiveLink: `${BASE_DOCS_LINK}/tutorials/upgrading-airbyte`,
|
32 | 13 | normalizationLink: `${BASE_DOCS_LINK}/understanding-airbyte/connections#airbyte-basic-normalization`,
|
33 | 14 | namespaceLink: `${BASE_DOCS_LINK}/understanding-airbyte/namespaces`,
|
34 | 15 | tutorialLink: "https://www.youtube.com/watch?v=Rcpt5SVsMpk&feature=emb_logo",
|
35 | 16 | statusLink: "https://status.airbyte.io/",
|
36 |
| - recipesLink: "https://airbyte.io/recipes", |
| 17 | + recipesLink: "https://airbyte.com/recipes", |
37 | 18 | syncModeLink:
|
38 |
| - "https://docs.airbyte.io/understanding-airbyte/connections/incremental-deduped-history", |
| 19 | + "https://docs.airbyte.com/understanding-airbyte/connections/incremental-deduped-history", |
39 | 20 | demoLink: "https://demo.airbyte.io",
|
40 |
| -}; |
| 21 | + webpageLink: "https://airbyte.com", |
| 22 | +} as const; |
| 23 | + |
| 24 | +type UiConfig = Record<keyof typeof uiConfig, string>; |
41 | 25 |
|
42 | 26 | export type { UiConfig };
|
43 | 27 | export { uiConfig };
|
0 commit comments