-
Notifications
You must be signed in to change notification settings - Fork 20
/
config.d.ts
99 lines (98 loc) · 2.39 KB
/
config.d.ts
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
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
import { SchedulerServiceTaskScheduleDefinitionConfig } from '@backstage/backend-plugin-api';
export interface Config {
app?: {
/**
* Build information.
* Control the display of the build information in the Homepage UI.
*/
/**
* Version number to display
* @visibility frontend
*/
buildVersion?: string | number;
/**
* Show build number. False by default. Has to be set explicitly as true to enable it.
* @visibility frontend
*/
showBuildVersion?: boolean;
/**
* Show developer hub version. String value. Displays currently deployed version.
* @visibility frontend
*/
developerHubVersion?: string;
};
// enable and configure loading org entities into catalog
orgCatalog?: {
providers?: {
github?: {
/**
* A unique, stable identifier for this provider.
*/
providerId: string;
/**
* (Required) Url of your org account/workspace.
*/
orgUrl: string;
/**
* (Optional) SchedulerServiceTaskScheduleDefinitionConfig for the refresh.
*/
schedule?: SchedulerServiceTaskScheduleDefinitionConfig;
};
};
};
auth?: {
/**
* Frontend root URL
* @visibility frontend
*/
enableAuthProviders: string[];
};
walkThrough?: {
/**
* Hyperlink of the external website to view all the Walk-through
* @visibility frontend
*/
viewAllLink: string;
/**
* Array of Walk-through which will be visible on the home page
* @visibility frontend
*/
items: {
/**
* Title for the Walk-through
* @visibility frontend
*/
title: string;
/**
* Array of tags for the Walk-through
* @visibility frontend
*/
tags: string[];
/**
* Description text for the Walk-through
* @visibility frontend
*/
text: string;
/**
* Hyperlink of external website for the Walk-through
* @visibility frontend
*/
link: string;
}[];
};
/**
* Control plane link for the TIBCO® Developer Hub
* @visibility frontend
*/
cpLink?: string;
/**
* Custom version name for the TIBCO® Developer Hub
* @visibility frontend
*/
tibcoDeveloperHubCustomAppVersion?: string;
/**
* Frontend root URL
* @visibility frontend
*/
catalogRefreshDelayInSec?: number;
}