@blockscout/autoscout-types 1.6.2-alpha.0 → 1.7.0
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/v1/config.d.ts +5 -1
- package/dist/v1/config.ts +6 -1
- package/package.json +1 -1
package/dist/v1/config.d.ts
CHANGED
|
@@ -64,7 +64,7 @@ export interface DeployConfig {
|
|
|
64
64
|
chain_id?: string | undefined;
|
|
65
65
|
token_symbol?: string | undefined;
|
|
66
66
|
custom_domain?: string | undefined;
|
|
67
|
-
redirect_from_domain
|
|
67
|
+
redirect_from_domain: string[];
|
|
68
68
|
logo_url?: string | undefined;
|
|
69
69
|
logo_url_dark?: string | undefined;
|
|
70
70
|
chain_name?: string | undefined;
|
|
@@ -104,6 +104,7 @@ export interface DeployConfig {
|
|
|
104
104
|
hero_banner?: HeroBanner | undefined;
|
|
105
105
|
google_analytics_property_id?: string | undefined;
|
|
106
106
|
production_ready?: boolean | undefined;
|
|
107
|
+
api_docs_tabs?: StringList | undefined;
|
|
107
108
|
}
|
|
108
109
|
export interface Footer {
|
|
109
110
|
columns: FooterColumn[];
|
|
@@ -137,6 +138,9 @@ export interface MenuItem {
|
|
|
137
138
|
text: string;
|
|
138
139
|
url: string;
|
|
139
140
|
}
|
|
141
|
+
export interface StringList {
|
|
142
|
+
values: string[];
|
|
143
|
+
}
|
|
140
144
|
export interface HeroBanner {
|
|
141
145
|
background: string[];
|
|
142
146
|
text_color: string[];
|
package/dist/v1/config.ts
CHANGED
|
@@ -80,7 +80,7 @@ export interface DeployConfig {
|
|
|
80
80
|
chain_id?: string | undefined;
|
|
81
81
|
token_symbol?: string | undefined;
|
|
82
82
|
custom_domain?: string | undefined;
|
|
83
|
-
redirect_from_domain
|
|
83
|
+
redirect_from_domain: string[];
|
|
84
84
|
logo_url?: string | undefined;
|
|
85
85
|
logo_url_dark?: string | undefined;
|
|
86
86
|
chain_name?: string | undefined;
|
|
@@ -122,6 +122,7 @@ export interface DeployConfig {
|
|
|
122
122
|
hero_banner?: HeroBanner | undefined;
|
|
123
123
|
google_analytics_property_id?: string | undefined;
|
|
124
124
|
production_ready?: boolean | undefined;
|
|
125
|
+
api_docs_tabs?: StringList | undefined;
|
|
125
126
|
}
|
|
126
127
|
|
|
127
128
|
export interface Footer {
|
|
@@ -164,6 +165,10 @@ export interface MenuItem {
|
|
|
164
165
|
url: string;
|
|
165
166
|
}
|
|
166
167
|
|
|
168
|
+
export interface StringList {
|
|
169
|
+
values: string[];
|
|
170
|
+
}
|
|
171
|
+
|
|
167
172
|
export interface HeroBanner {
|
|
168
173
|
background: string[];
|
|
169
174
|
text_color: string[];
|