@blockscout/autoscout-types 0.0.6 → 0.0.7

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.
@@ -13,6 +13,28 @@ export declare enum NodeType {
13
13
  GANACHE = "GANACHE",
14
14
  UNRECOGNIZED = "UNRECOGNIZED"
15
15
  }
16
+ export declare enum NavigationLayout {
17
+ UNSPECIFIED_NAVIGATION_LAYOUT = "UNSPECIFIED_NAVIGATION_LAYOUT",
18
+ HORIZONTAL = "HORIZONTAL",
19
+ VERTICAL = "VERTICAL",
20
+ UNRECOGNIZED = "UNRECOGNIZED"
21
+ }
22
+ export declare enum ColorTheme {
23
+ UNSPECIFIED_COLOR_THEME = "UNSPECIFIED_COLOR_THEME",
24
+ LIGHT = "LIGHT",
25
+ DIM = "DIM",
26
+ MIDNIGHT = "MIDNIGHT",
27
+ DARK = "DARK",
28
+ UNRECOGNIZED = "UNRECOGNIZED"
29
+ }
30
+ export declare enum Identicon {
31
+ UNSPECIFIED_IDENTICON = "UNSPECIFIED_IDENTICON",
32
+ GITHUB = "GITHUB",
33
+ JAZZICON = "JAZZICON",
34
+ GRADIENT_AVATAR = "GRADIENT_AVATAR",
35
+ BLOCKIE = "BLOCKIE",
36
+ UNRECOGNIZED = "UNRECOGNIZED"
37
+ }
16
38
  export interface DeployConfig {
17
39
  rpc_url: string;
18
40
  server_size: string;
@@ -20,10 +42,12 @@ export interface DeployConfig {
20
42
  node_type: NodeType;
21
43
  chain_id?: string | undefined;
22
44
  token_symbol?: string | undefined;
23
- instance_url?: string | undefined;
45
+ custom_domain?: string | undefined;
24
46
  logo_url?: string | undefined;
47
+ logo_url_dark?: string | undefined;
25
48
  chain_name?: string | undefined;
26
49
  icon_url?: string | undefined;
50
+ icon_url_dark?: string | undefined;
27
51
  homeplate_background?: string | undefined;
28
52
  homeplate_text_color?: string | undefined;
29
53
  is_testnet?: boolean | undefined;
@@ -31,6 +55,13 @@ export interface DeployConfig {
31
55
  rpc_ws_url?: string | undefined;
32
56
  public_rpc_url?: string | undefined;
33
57
  wallet_connect_project_id?: string | undefined;
58
+ eip_1559_elasticity?: number | undefined;
59
+ navigation_layout: NavigationLayout;
60
+ favicon_url?: string | undefined;
61
+ og_image_url?: string | undefined;
62
+ color_theme: ColorTheme;
63
+ identicon: Identicon;
64
+ chain_spec?: string | undefined;
34
65
  optimism?: OptimismConfig | undefined;
35
66
  arbitrum?: ArbitrumConfig | undefined;
36
67
  }
@@ -41,10 +72,12 @@ export interface DeployConfigPartial {
41
72
  node_type: NodeType;
42
73
  chain_id?: string | undefined;
43
74
  token_symbol?: string | undefined;
44
- instance_url?: string | undefined;
75
+ custom_domain?: string | undefined;
45
76
  logo_url?: string | undefined;
77
+ logo_url_dark?: string | undefined;
46
78
  chain_name?: string | undefined;
47
79
  icon_url?: string | undefined;
80
+ icon_url_dark?: string | undefined;
48
81
  homeplate_background?: string | undefined;
49
82
  homeplate_text_color?: string | undefined;
50
83
  is_testnet?: boolean | undefined;
@@ -52,6 +85,13 @@ export interface DeployConfigPartial {
52
85
  rpc_ws_url?: string | undefined;
53
86
  public_rpc_url?: string | undefined;
54
87
  wallet_connect_project_id?: string | undefined;
88
+ eip_1559_elasticity?: string | undefined;
89
+ navigation_layout: NavigationLayout;
90
+ favicon_url?: string | undefined;
91
+ og_image_url?: string | undefined;
92
+ color_theme: ColorTheme;
93
+ identicon: Identicon;
94
+ chain_spec?: string | undefined;
55
95
  optimism?: OptimismConfig | undefined;
56
96
  arbitrum?: ArbitrumConfig | undefined;
57
97
  }
package/dist/v1/config.js CHANGED
@@ -5,7 +5,7 @@
5
5
  // protoc v4.23.4
6
6
  // source: v1/config.proto
7
7
  Object.defineProperty(exports, "__esModule", { value: true });
8
- exports.NodeType = exports.ChainType = void 0;
8
+ exports.Identicon = exports.ColorTheme = exports.NavigationLayout = exports.NodeType = exports.ChainType = void 0;
9
9
  /* eslint-disable */
10
10
  var ChainType;
11
11
  (function (ChainType) {
@@ -24,3 +24,28 @@ var NodeType;
24
24
  NodeType["GANACHE"] = "GANACHE";
25
25
  NodeType["UNRECOGNIZED"] = "UNRECOGNIZED";
26
26
  })(NodeType || (exports.NodeType = NodeType = {}));
27
+ var NavigationLayout;
28
+ (function (NavigationLayout) {
29
+ NavigationLayout["UNSPECIFIED_NAVIGATION_LAYOUT"] = "UNSPECIFIED_NAVIGATION_LAYOUT";
30
+ NavigationLayout["HORIZONTAL"] = "HORIZONTAL";
31
+ NavigationLayout["VERTICAL"] = "VERTICAL";
32
+ NavigationLayout["UNRECOGNIZED"] = "UNRECOGNIZED";
33
+ })(NavigationLayout || (exports.NavigationLayout = NavigationLayout = {}));
34
+ var ColorTheme;
35
+ (function (ColorTheme) {
36
+ ColorTheme["UNSPECIFIED_COLOR_THEME"] = "UNSPECIFIED_COLOR_THEME";
37
+ ColorTheme["LIGHT"] = "LIGHT";
38
+ ColorTheme["DIM"] = "DIM";
39
+ ColorTheme["MIDNIGHT"] = "MIDNIGHT";
40
+ ColorTheme["DARK"] = "DARK";
41
+ ColorTheme["UNRECOGNIZED"] = "UNRECOGNIZED";
42
+ })(ColorTheme || (exports.ColorTheme = ColorTheme = {}));
43
+ var Identicon;
44
+ (function (Identicon) {
45
+ Identicon["UNSPECIFIED_IDENTICON"] = "UNSPECIFIED_IDENTICON";
46
+ Identicon["GITHUB"] = "GITHUB";
47
+ Identicon["JAZZICON"] = "JAZZICON";
48
+ Identicon["GRADIENT_AVATAR"] = "GRADIENT_AVATAR";
49
+ Identicon["BLOCKIE"] = "BLOCKIE";
50
+ Identicon["UNRECOGNIZED"] = "UNRECOGNIZED";
51
+ })(Identicon || (exports.Identicon = Identicon = {}));
package/dist/v1/config.ts CHANGED
@@ -23,6 +23,31 @@ export enum NodeType {
23
23
  UNRECOGNIZED = "UNRECOGNIZED",
24
24
  }
25
25
 
26
+ export enum NavigationLayout {
27
+ UNSPECIFIED_NAVIGATION_LAYOUT = "UNSPECIFIED_NAVIGATION_LAYOUT",
28
+ HORIZONTAL = "HORIZONTAL",
29
+ VERTICAL = "VERTICAL",
30
+ UNRECOGNIZED = "UNRECOGNIZED",
31
+ }
32
+
33
+ export enum ColorTheme {
34
+ UNSPECIFIED_COLOR_THEME = "UNSPECIFIED_COLOR_THEME",
35
+ LIGHT = "LIGHT",
36
+ DIM = "DIM",
37
+ MIDNIGHT = "MIDNIGHT",
38
+ DARK = "DARK",
39
+ UNRECOGNIZED = "UNRECOGNIZED",
40
+ }
41
+
42
+ export enum Identicon {
43
+ UNSPECIFIED_IDENTICON = "UNSPECIFIED_IDENTICON",
44
+ GITHUB = "GITHUB",
45
+ JAZZICON = "JAZZICON",
46
+ GRADIENT_AVATAR = "GRADIENT_AVATAR",
47
+ BLOCKIE = "BLOCKIE",
48
+ UNRECOGNIZED = "UNRECOGNIZED",
49
+ }
50
+
26
51
  export interface DeployConfig {
27
52
  rpc_url: string;
28
53
  server_size: string;
@@ -30,10 +55,12 @@ export interface DeployConfig {
30
55
  node_type: NodeType;
31
56
  chain_id?: string | undefined;
32
57
  token_symbol?: string | undefined;
33
- instance_url?: string | undefined;
58
+ custom_domain?: string | undefined;
34
59
  logo_url?: string | undefined;
60
+ logo_url_dark?: string | undefined;
35
61
  chain_name?: string | undefined;
36
62
  icon_url?: string | undefined;
63
+ icon_url_dark?: string | undefined;
37
64
  homeplate_background?: string | undefined;
38
65
  homeplate_text_color?: string | undefined;
39
66
  is_testnet?: boolean | undefined;
@@ -41,6 +68,13 @@ export interface DeployConfig {
41
68
  rpc_ws_url?: string | undefined;
42
69
  public_rpc_url?: string | undefined;
43
70
  wallet_connect_project_id?: string | undefined;
71
+ eip_1559_elasticity?: number | undefined;
72
+ navigation_layout: NavigationLayout;
73
+ favicon_url?: string | undefined;
74
+ og_image_url?: string | undefined;
75
+ color_theme: ColorTheme;
76
+ identicon: Identicon;
77
+ chain_spec?: string | undefined;
44
78
  optimism?: OptimismConfig | undefined;
45
79
  arbitrum?: ArbitrumConfig | undefined;
46
80
  }
@@ -52,10 +86,12 @@ export interface DeployConfigPartial {
52
86
  node_type: NodeType;
53
87
  chain_id?: string | undefined;
54
88
  token_symbol?: string | undefined;
55
- instance_url?: string | undefined;
89
+ custom_domain?: string | undefined;
56
90
  logo_url?: string | undefined;
91
+ logo_url_dark?: string | undefined;
57
92
  chain_name?: string | undefined;
58
93
  icon_url?: string | undefined;
94
+ icon_url_dark?: string | undefined;
59
95
  homeplate_background?: string | undefined;
60
96
  homeplate_text_color?: string | undefined;
61
97
  is_testnet?: boolean | undefined;
@@ -63,6 +99,13 @@ export interface DeployConfigPartial {
63
99
  rpc_ws_url?: string | undefined;
64
100
  public_rpc_url?: string | undefined;
65
101
  wallet_connect_project_id?: string | undefined;
102
+ eip_1559_elasticity?: string | undefined;
103
+ navigation_layout: NavigationLayout;
104
+ favicon_url?: string | undefined;
105
+ og_image_url?: string | undefined;
106
+ color_theme: ColorTheme;
107
+ identicon: Identicon;
108
+ chain_spec?: string | undefined;
66
109
  optimism?: OptimismConfig | undefined;
67
110
  arbitrum?: ArbitrumConfig | undefined;
68
111
  }
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@blockscout/autoscout-types",
3
- "version": "0.0.6",
3
+ "version": "0.0.7",
4
4
  "description": "TypeScript definitions for Autoscout microservice",
5
5
  "main": "./index.js",
6
6
  "types": "./index.d.ts",