File tree Expand file tree Collapse file tree 1 file changed +22
-1
lines changed Expand file tree Collapse file tree 1 file changed +22
-1
lines changed Original file line number Diff line number Diff line change @@ -24,6 +24,26 @@ export type Logging = {
24
24
25
25
export type Website = {
26
26
name : string
27
+ demo : Demo | null
28
+ terms : Terms
29
+ }
30
+
31
+ export type Demo = {
32
+ warning : string
33
+ }
34
+
35
+ export type Terms = {
36
+ page : TermsPage
37
+ upload : TermsUpload
38
+ }
39
+
40
+ export type TermsPage = {
41
+ title : string
42
+ content : string
43
+ }
44
+
45
+ export type TermsUpload = {
46
+ content_upload_agreement : string
27
47
}
28
48
29
49
export type Tracker = {
@@ -85,6 +105,7 @@ export type PublicSettings = {
85
105
tracker_listed : boolean
86
106
tracker_private : boolean
87
107
email_on_signup : EmailOnSignup
108
+ website : Website
88
109
}
89
110
90
111
export type Tsl = {
@@ -126,4 +147,4 @@ export enum Threshold {
126
147
export type Email = {
127
148
required : boolean
128
149
verification_required : boolean
129
- }
150
+ }
You can’t perform that action at this time.
0 commit comments