@blockscout/autoscout-types 0.0.9 → 0.0.11
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/autoscout.d.ts +114 -43
- package/dist/v1/autoscout.js +12 -1
- package/dist/v1/autoscout.ts +133 -48
- package/dist/v1/config.d.ts +32 -0
- package/dist/v1/config.js +15 -1
- package/dist/v1/config.ts +38 -0
- package/package.json +1 -1
package/dist/v1/autoscout.d.ts
CHANGED
|
@@ -16,34 +16,15 @@ export declare enum UpdateInstanceAction {
|
|
|
16
16
|
RESTART = "RESTART",
|
|
17
17
|
UNRECOGNIZED = "UNRECOGNIZED"
|
|
18
18
|
}
|
|
19
|
-
export
|
|
20
|
-
|
|
21
|
-
|
|
22
|
-
|
|
23
|
-
|
|
24
|
-
|
|
25
|
-
|
|
26
|
-
|
|
27
|
-
|
|
28
|
-
}
|
|
29
|
-
export interface DeleteInstanceRequest {
|
|
30
|
-
instance_id: string;
|
|
31
|
-
}
|
|
32
|
-
export interface DeleteInstanceResponse {
|
|
33
|
-
}
|
|
34
|
-
export interface UpdateConfigRequest {
|
|
35
|
-
instance_id: string;
|
|
36
|
-
config: DeployConfig | undefined;
|
|
37
|
-
}
|
|
38
|
-
export interface UpdateConfigResponse {
|
|
39
|
-
config: DeployConfig | undefined;
|
|
40
|
-
}
|
|
41
|
-
export interface UpdateConfigPartialRequest {
|
|
42
|
-
instance_id: string;
|
|
43
|
-
/** See `DeployConfig` for available fields */
|
|
44
|
-
config: {
|
|
45
|
-
[key: string]: any;
|
|
46
|
-
} | undefined;
|
|
19
|
+
export declare enum DepositStatus {
|
|
20
|
+
UNSPECIFIED_DEPOSIT_STATUS = "UNSPECIFIED_DEPOSIT_STATUS",
|
|
21
|
+
DEPOSIT_STATUS_CREATED = "DEPOSIT_STATUS_CREATED",
|
|
22
|
+
DEPOSIT_STATUS_PENDING = "DEPOSIT_STATUS_PENDING",
|
|
23
|
+
DEPOSIT_STATUS_DELAYED = "DEPOSIT_STATUS_DELAYED",
|
|
24
|
+
DEPOSIT_STATUS_CONFIRMED = "DEPOSIT_STATUS_CONFIRMED",
|
|
25
|
+
DEPOSIT_STATUS_FAILED = "DEPOSIT_STATUS_FAILED",
|
|
26
|
+
DEPOSIT_STATUS_RESOLVED = "DEPOSIT_STATUS_RESOLVED",
|
|
27
|
+
UNRECOGNIZED = "UNRECOGNIZED"
|
|
47
28
|
}
|
|
48
29
|
export interface HealthStatus {
|
|
49
30
|
ok: boolean;
|
|
@@ -92,6 +73,75 @@ export interface Deployment {
|
|
|
92
73
|
health_status: HealthStatus | undefined;
|
|
93
74
|
indexing_status: IndexingStatus | undefined;
|
|
94
75
|
}
|
|
76
|
+
export interface DeploymentLog {
|
|
77
|
+
id: number;
|
|
78
|
+
message: string;
|
|
79
|
+
timestamp: string;
|
|
80
|
+
bucket: string;
|
|
81
|
+
group_size: number;
|
|
82
|
+
severity: string;
|
|
83
|
+
container: string;
|
|
84
|
+
}
|
|
85
|
+
export interface UserAction {
|
|
86
|
+
action: string;
|
|
87
|
+
instance_id?: string | undefined;
|
|
88
|
+
timestamp: string;
|
|
89
|
+
}
|
|
90
|
+
export interface UserProfile {
|
|
91
|
+
email: string;
|
|
92
|
+
project_title?: string | undefined;
|
|
93
|
+
created_at: string;
|
|
94
|
+
balance: string;
|
|
95
|
+
recent_actions: UserAction[];
|
|
96
|
+
}
|
|
97
|
+
export interface AuthToken {
|
|
98
|
+
name: string;
|
|
99
|
+
token_value: string;
|
|
100
|
+
created_at: string;
|
|
101
|
+
}
|
|
102
|
+
export interface Deposit {
|
|
103
|
+
id: string;
|
|
104
|
+
url: string;
|
|
105
|
+
created_at: string;
|
|
106
|
+
amount?: string | undefined;
|
|
107
|
+
status: DepositStatus;
|
|
108
|
+
}
|
|
109
|
+
export interface PaginationResult {
|
|
110
|
+
page: number;
|
|
111
|
+
next_page?: number | undefined;
|
|
112
|
+
per_page: number;
|
|
113
|
+
total_items: number;
|
|
114
|
+
total_pages: number;
|
|
115
|
+
}
|
|
116
|
+
export interface GetConfigSchemaRequest {
|
|
117
|
+
}
|
|
118
|
+
export interface CreateInstanceRequest {
|
|
119
|
+
name: string;
|
|
120
|
+
/** initial config */
|
|
121
|
+
config: DeployConfig | undefined;
|
|
122
|
+
}
|
|
123
|
+
export interface CreateInstanceResponse {
|
|
124
|
+
instance_id: string;
|
|
125
|
+
}
|
|
126
|
+
export interface DeleteInstanceRequest {
|
|
127
|
+
instance_id: string;
|
|
128
|
+
}
|
|
129
|
+
export interface DeleteInstanceResponse {
|
|
130
|
+
}
|
|
131
|
+
export interface UpdateConfigRequest {
|
|
132
|
+
instance_id: string;
|
|
133
|
+
config: DeployConfig | undefined;
|
|
134
|
+
}
|
|
135
|
+
export interface UpdateConfigResponse {
|
|
136
|
+
config: DeployConfig | undefined;
|
|
137
|
+
}
|
|
138
|
+
export interface UpdateConfigPartialRequest {
|
|
139
|
+
instance_id: string;
|
|
140
|
+
/** See `DeployConfig` for available fields */
|
|
141
|
+
config: {
|
|
142
|
+
[key: string]: any;
|
|
143
|
+
} | undefined;
|
|
144
|
+
}
|
|
95
145
|
export interface GetInstanceRequest {
|
|
96
146
|
instance_id: string;
|
|
97
147
|
}
|
|
@@ -112,24 +162,20 @@ export interface ListDeploymentsResponse {
|
|
|
112
162
|
export interface GetCurrentDeploymentRequest {
|
|
113
163
|
instance_id: string;
|
|
114
164
|
}
|
|
115
|
-
export interface
|
|
165
|
+
export interface ListDeploymentLogsRequest {
|
|
166
|
+
deployment_id: string;
|
|
167
|
+
page?: number | undefined;
|
|
168
|
+
per_page?: number | undefined;
|
|
116
169
|
}
|
|
117
|
-
export interface
|
|
118
|
-
|
|
119
|
-
|
|
120
|
-
timestamp: string;
|
|
170
|
+
export interface ListDeploymentLogsResponse {
|
|
171
|
+
items: DeploymentLog[];
|
|
172
|
+
pagination: PaginationResult | undefined;
|
|
121
173
|
}
|
|
122
|
-
export interface
|
|
123
|
-
|
|
124
|
-
|
|
125
|
-
created_at: string;
|
|
126
|
-
balance: string;
|
|
127
|
-
recent_actions: UserAction[];
|
|
174
|
+
export interface GetDeploymentLogRequest {
|
|
175
|
+
deployment_id: string;
|
|
176
|
+
id: number;
|
|
128
177
|
}
|
|
129
|
-
export interface
|
|
130
|
-
name: string;
|
|
131
|
-
token_value: string;
|
|
132
|
-
created_at: string;
|
|
178
|
+
export interface GetProfileRequest {
|
|
133
179
|
}
|
|
134
180
|
export interface ListAuthTokensResponse {
|
|
135
181
|
items: AuthToken[];
|
|
@@ -146,6 +192,25 @@ export interface RegisterProfileResponse {
|
|
|
146
192
|
export interface CreateAuthTokenRequest {
|
|
147
193
|
name: string;
|
|
148
194
|
}
|
|
195
|
+
export interface CreateCoinbaseDepositRequest {
|
|
196
|
+
}
|
|
197
|
+
export interface CreateCoinbaseDepositResponse {
|
|
198
|
+
id: string;
|
|
199
|
+
url: string;
|
|
200
|
+
}
|
|
201
|
+
export interface GetCoinbaseDepositRequest {
|
|
202
|
+
deposit_id: string;
|
|
203
|
+
}
|
|
204
|
+
export interface ListCoinbaseDepositsRequest {
|
|
205
|
+
}
|
|
206
|
+
export interface ListCoinbaseDepositsResponse {
|
|
207
|
+
items: Deposit[];
|
|
208
|
+
}
|
|
209
|
+
export interface DeleteCoinbaseDepositRequest {
|
|
210
|
+
deposit_id: string;
|
|
211
|
+
}
|
|
212
|
+
export interface DeleteCoinbaseDepositResponse {
|
|
213
|
+
}
|
|
149
214
|
export interface Autoscout {
|
|
150
215
|
GetConfigSchema(request: GetConfigSchemaRequest): Promise<ConfigSchema>;
|
|
151
216
|
/** Creating blockscout instance with config */
|
|
@@ -168,6 +233,8 @@ export interface Autoscout {
|
|
|
168
233
|
GetCurrentDeployment(request: GetCurrentDeploymentRequest): Promise<Deployment>;
|
|
169
234
|
/** Get list of deployments of the instance */
|
|
170
235
|
ListDeployments(request: ListDeploymentsRequest): Promise<ListDeploymentsResponse>;
|
|
236
|
+
ListDeploymentLogs(request: ListDeploymentLogsRequest): Promise<ListDeploymentLogsResponse>;
|
|
237
|
+
GetDeploymentLog(request: GetDeploymentLogRequest): Promise<DeploymentLog>;
|
|
171
238
|
/** Register new profile */
|
|
172
239
|
RegisterProfile(request: RegisterProfileRequest): Promise<RegisterProfileResponse>;
|
|
173
240
|
/** Get information about current account */
|
|
@@ -176,4 +243,8 @@ export interface Autoscout {
|
|
|
176
243
|
CreateAuthToken(request: CreateAuthTokenRequest): Promise<AuthToken>;
|
|
177
244
|
/** Get list of all auth tokens for current account */
|
|
178
245
|
ListAuthTokens(request: GetProfileRequest): Promise<ListAuthTokensResponse>;
|
|
246
|
+
CreateCoinbaseDeposit(request: CreateCoinbaseDepositRequest): Promise<CreateCoinbaseDepositResponse>;
|
|
247
|
+
GetCoinbaseDeposit(request: GetCoinbaseDepositRequest): Promise<Deposit>;
|
|
248
|
+
ListCoinbaseDeposits(request: ListCoinbaseDepositsRequest): Promise<ListCoinbaseDepositsResponse>;
|
|
249
|
+
DeleteCoinbaseDeposit(request: DeleteCoinbaseDepositRequest): Promise<DeleteCoinbaseDepositResponse>;
|
|
179
250
|
}
|
package/dist/v1/autoscout.js
CHANGED
|
@@ -5,7 +5,7 @@
|
|
|
5
5
|
// protoc v4.23.4
|
|
6
6
|
// source: v1/autoscout.proto
|
|
7
7
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
8
|
-
exports.UpdateInstanceAction = exports.DeploymentStatus = void 0;
|
|
8
|
+
exports.DepositStatus = exports.UpdateInstanceAction = exports.DeploymentStatus = void 0;
|
|
9
9
|
var DeploymentStatus;
|
|
10
10
|
(function (DeploymentStatus) {
|
|
11
11
|
DeploymentStatus["NO_STATUS"] = "NO_STATUS";
|
|
@@ -24,3 +24,14 @@ var UpdateInstanceAction;
|
|
|
24
24
|
UpdateInstanceAction["RESTART"] = "RESTART";
|
|
25
25
|
UpdateInstanceAction["UNRECOGNIZED"] = "UNRECOGNIZED";
|
|
26
26
|
})(UpdateInstanceAction || (exports.UpdateInstanceAction = UpdateInstanceAction = {}));
|
|
27
|
+
var DepositStatus;
|
|
28
|
+
(function (DepositStatus) {
|
|
29
|
+
DepositStatus["UNSPECIFIED_DEPOSIT_STATUS"] = "UNSPECIFIED_DEPOSIT_STATUS";
|
|
30
|
+
DepositStatus["DEPOSIT_STATUS_CREATED"] = "DEPOSIT_STATUS_CREATED";
|
|
31
|
+
DepositStatus["DEPOSIT_STATUS_PENDING"] = "DEPOSIT_STATUS_PENDING";
|
|
32
|
+
DepositStatus["DEPOSIT_STATUS_DELAYED"] = "DEPOSIT_STATUS_DELAYED";
|
|
33
|
+
DepositStatus["DEPOSIT_STATUS_CONFIRMED"] = "DEPOSIT_STATUS_CONFIRMED";
|
|
34
|
+
DepositStatus["DEPOSIT_STATUS_FAILED"] = "DEPOSIT_STATUS_FAILED";
|
|
35
|
+
DepositStatus["DEPOSIT_STATUS_RESOLVED"] = "DEPOSIT_STATUS_RESOLVED";
|
|
36
|
+
DepositStatus["UNRECOGNIZED"] = "UNRECOGNIZED";
|
|
37
|
+
})(DepositStatus || (exports.DepositStatus = DepositStatus = {}));
|
package/dist/v1/autoscout.ts
CHANGED
|
@@ -26,39 +26,15 @@ export enum UpdateInstanceAction {
|
|
|
26
26
|
UNRECOGNIZED = "UNRECOGNIZED",
|
|
27
27
|
}
|
|
28
28
|
|
|
29
|
-
export
|
|
30
|
-
|
|
31
|
-
|
|
32
|
-
|
|
33
|
-
|
|
34
|
-
|
|
35
|
-
|
|
36
|
-
|
|
37
|
-
|
|
38
|
-
export interface CreateInstanceResponse {
|
|
39
|
-
instance_id: string;
|
|
40
|
-
}
|
|
41
|
-
|
|
42
|
-
export interface DeleteInstanceRequest {
|
|
43
|
-
instance_id: string;
|
|
44
|
-
}
|
|
45
|
-
|
|
46
|
-
export interface DeleteInstanceResponse {
|
|
47
|
-
}
|
|
48
|
-
|
|
49
|
-
export interface UpdateConfigRequest {
|
|
50
|
-
instance_id: string;
|
|
51
|
-
config: DeployConfig | undefined;
|
|
52
|
-
}
|
|
53
|
-
|
|
54
|
-
export interface UpdateConfigResponse {
|
|
55
|
-
config: DeployConfig | undefined;
|
|
56
|
-
}
|
|
57
|
-
|
|
58
|
-
export interface UpdateConfigPartialRequest {
|
|
59
|
-
instance_id: string;
|
|
60
|
-
/** See `DeployConfig` for available fields */
|
|
61
|
-
config: { [key: string]: any } | undefined;
|
|
29
|
+
export enum DepositStatus {
|
|
30
|
+
UNSPECIFIED_DEPOSIT_STATUS = "UNSPECIFIED_DEPOSIT_STATUS",
|
|
31
|
+
DEPOSIT_STATUS_CREATED = "DEPOSIT_STATUS_CREATED",
|
|
32
|
+
DEPOSIT_STATUS_PENDING = "DEPOSIT_STATUS_PENDING",
|
|
33
|
+
DEPOSIT_STATUS_DELAYED = "DEPOSIT_STATUS_DELAYED",
|
|
34
|
+
DEPOSIT_STATUS_CONFIRMED = "DEPOSIT_STATUS_CONFIRMED",
|
|
35
|
+
DEPOSIT_STATUS_FAILED = "DEPOSIT_STATUS_FAILED",
|
|
36
|
+
DEPOSIT_STATUS_RESOLVED = "DEPOSIT_STATUS_RESOLVED",
|
|
37
|
+
UNRECOGNIZED = "UNRECOGNIZED",
|
|
62
38
|
}
|
|
63
39
|
|
|
64
40
|
export interface HealthStatus {
|
|
@@ -112,6 +88,87 @@ export interface Deployment {
|
|
|
112
88
|
indexing_status: IndexingStatus | undefined;
|
|
113
89
|
}
|
|
114
90
|
|
|
91
|
+
export interface DeploymentLog {
|
|
92
|
+
id: number;
|
|
93
|
+
message: string;
|
|
94
|
+
timestamp: string;
|
|
95
|
+
bucket: string;
|
|
96
|
+
group_size: number;
|
|
97
|
+
severity: string;
|
|
98
|
+
container: string;
|
|
99
|
+
}
|
|
100
|
+
|
|
101
|
+
export interface UserAction {
|
|
102
|
+
action: string;
|
|
103
|
+
instance_id?: string | undefined;
|
|
104
|
+
timestamp: string;
|
|
105
|
+
}
|
|
106
|
+
|
|
107
|
+
export interface UserProfile {
|
|
108
|
+
email: string;
|
|
109
|
+
project_title?: string | undefined;
|
|
110
|
+
created_at: string;
|
|
111
|
+
balance: string;
|
|
112
|
+
recent_actions: UserAction[];
|
|
113
|
+
}
|
|
114
|
+
|
|
115
|
+
export interface AuthToken {
|
|
116
|
+
name: string;
|
|
117
|
+
token_value: string;
|
|
118
|
+
created_at: string;
|
|
119
|
+
}
|
|
120
|
+
|
|
121
|
+
export interface Deposit {
|
|
122
|
+
id: string;
|
|
123
|
+
url: string;
|
|
124
|
+
created_at: string;
|
|
125
|
+
amount?: string | undefined;
|
|
126
|
+
status: DepositStatus;
|
|
127
|
+
}
|
|
128
|
+
|
|
129
|
+
export interface PaginationResult {
|
|
130
|
+
page: number;
|
|
131
|
+
next_page?: number | undefined;
|
|
132
|
+
per_page: number;
|
|
133
|
+
total_items: number;
|
|
134
|
+
total_pages: number;
|
|
135
|
+
}
|
|
136
|
+
|
|
137
|
+
export interface GetConfigSchemaRequest {
|
|
138
|
+
}
|
|
139
|
+
|
|
140
|
+
export interface CreateInstanceRequest {
|
|
141
|
+
name: string;
|
|
142
|
+
/** initial config */
|
|
143
|
+
config: DeployConfig | undefined;
|
|
144
|
+
}
|
|
145
|
+
|
|
146
|
+
export interface CreateInstanceResponse {
|
|
147
|
+
instance_id: string;
|
|
148
|
+
}
|
|
149
|
+
|
|
150
|
+
export interface DeleteInstanceRequest {
|
|
151
|
+
instance_id: string;
|
|
152
|
+
}
|
|
153
|
+
|
|
154
|
+
export interface DeleteInstanceResponse {
|
|
155
|
+
}
|
|
156
|
+
|
|
157
|
+
export interface UpdateConfigRequest {
|
|
158
|
+
instance_id: string;
|
|
159
|
+
config: DeployConfig | undefined;
|
|
160
|
+
}
|
|
161
|
+
|
|
162
|
+
export interface UpdateConfigResponse {
|
|
163
|
+
config: DeployConfig | undefined;
|
|
164
|
+
}
|
|
165
|
+
|
|
166
|
+
export interface UpdateConfigPartialRequest {
|
|
167
|
+
instance_id: string;
|
|
168
|
+
/** See `DeployConfig` for available fields */
|
|
169
|
+
config: { [key: string]: any } | undefined;
|
|
170
|
+
}
|
|
171
|
+
|
|
115
172
|
export interface GetInstanceRequest {
|
|
116
173
|
instance_id: string;
|
|
117
174
|
}
|
|
@@ -139,27 +196,23 @@ export interface GetCurrentDeploymentRequest {
|
|
|
139
196
|
instance_id: string;
|
|
140
197
|
}
|
|
141
198
|
|
|
142
|
-
export interface
|
|
199
|
+
export interface ListDeploymentLogsRequest {
|
|
200
|
+
deployment_id: string;
|
|
201
|
+
page?: number | undefined;
|
|
202
|
+
per_page?: number | undefined;
|
|
143
203
|
}
|
|
144
204
|
|
|
145
|
-
export interface
|
|
146
|
-
|
|
147
|
-
|
|
148
|
-
timestamp: string;
|
|
205
|
+
export interface ListDeploymentLogsResponse {
|
|
206
|
+
items: DeploymentLog[];
|
|
207
|
+
pagination: PaginationResult | undefined;
|
|
149
208
|
}
|
|
150
209
|
|
|
151
|
-
export interface
|
|
152
|
-
|
|
153
|
-
|
|
154
|
-
created_at: string;
|
|
155
|
-
balance: string;
|
|
156
|
-
recent_actions: UserAction[];
|
|
210
|
+
export interface GetDeploymentLogRequest {
|
|
211
|
+
deployment_id: string;
|
|
212
|
+
id: number;
|
|
157
213
|
}
|
|
158
214
|
|
|
159
|
-
export interface
|
|
160
|
-
name: string;
|
|
161
|
-
token_value: string;
|
|
162
|
-
created_at: string;
|
|
215
|
+
export interface GetProfileRequest {
|
|
163
216
|
}
|
|
164
217
|
|
|
165
218
|
export interface ListAuthTokensResponse {
|
|
@@ -181,6 +234,32 @@ export interface CreateAuthTokenRequest {
|
|
|
181
234
|
name: string;
|
|
182
235
|
}
|
|
183
236
|
|
|
237
|
+
export interface CreateCoinbaseDepositRequest {
|
|
238
|
+
}
|
|
239
|
+
|
|
240
|
+
export interface CreateCoinbaseDepositResponse {
|
|
241
|
+
id: string;
|
|
242
|
+
url: string;
|
|
243
|
+
}
|
|
244
|
+
|
|
245
|
+
export interface GetCoinbaseDepositRequest {
|
|
246
|
+
deposit_id: string;
|
|
247
|
+
}
|
|
248
|
+
|
|
249
|
+
export interface ListCoinbaseDepositsRequest {
|
|
250
|
+
}
|
|
251
|
+
|
|
252
|
+
export interface ListCoinbaseDepositsResponse {
|
|
253
|
+
items: Deposit[];
|
|
254
|
+
}
|
|
255
|
+
|
|
256
|
+
export interface DeleteCoinbaseDepositRequest {
|
|
257
|
+
deposit_id: string;
|
|
258
|
+
}
|
|
259
|
+
|
|
260
|
+
export interface DeleteCoinbaseDepositResponse {
|
|
261
|
+
}
|
|
262
|
+
|
|
184
263
|
export interface Autoscout {
|
|
185
264
|
GetConfigSchema(request: GetConfigSchemaRequest): Promise<ConfigSchema>;
|
|
186
265
|
/** Creating blockscout instance with config */
|
|
@@ -203,6 +282,8 @@ export interface Autoscout {
|
|
|
203
282
|
GetCurrentDeployment(request: GetCurrentDeploymentRequest): Promise<Deployment>;
|
|
204
283
|
/** Get list of deployments of the instance */
|
|
205
284
|
ListDeployments(request: ListDeploymentsRequest): Promise<ListDeploymentsResponse>;
|
|
285
|
+
ListDeploymentLogs(request: ListDeploymentLogsRequest): Promise<ListDeploymentLogsResponse>;
|
|
286
|
+
GetDeploymentLog(request: GetDeploymentLogRequest): Promise<DeploymentLog>;
|
|
206
287
|
/** Register new profile */
|
|
207
288
|
RegisterProfile(request: RegisterProfileRequest): Promise<RegisterProfileResponse>;
|
|
208
289
|
/** Get information about current account */
|
|
@@ -211,4 +292,8 @@ export interface Autoscout {
|
|
|
211
292
|
CreateAuthToken(request: CreateAuthTokenRequest): Promise<AuthToken>;
|
|
212
293
|
/** Get list of all auth tokens for current account */
|
|
213
294
|
ListAuthTokens(request: GetProfileRequest): Promise<ListAuthTokensResponse>;
|
|
295
|
+
CreateCoinbaseDeposit(request: CreateCoinbaseDepositRequest): Promise<CreateCoinbaseDepositResponse>;
|
|
296
|
+
GetCoinbaseDeposit(request: GetCoinbaseDepositRequest): Promise<Deposit>;
|
|
297
|
+
ListCoinbaseDeposits(request: ListCoinbaseDepositsRequest): Promise<ListCoinbaseDepositsResponse>;
|
|
298
|
+
DeleteCoinbaseDeposit(request: DeleteCoinbaseDepositRequest): Promise<DeleteCoinbaseDepositResponse>;
|
|
214
299
|
}
|
package/dist/v1/config.d.ts
CHANGED
|
@@ -35,6 +35,18 @@ export declare enum Identicon {
|
|
|
35
35
|
BLOCKIE = "BLOCKIE",
|
|
36
36
|
UNRECOGNIZED = "UNRECOGNIZED"
|
|
37
37
|
}
|
|
38
|
+
export declare enum AdTextProvider {
|
|
39
|
+
UNSPECIFIED_AD_TEXT_PROVIDER = "UNSPECIFIED_AD_TEXT_PROVIDER",
|
|
40
|
+
COINZILLA = "COINZILLA",
|
|
41
|
+
TEXT_NONE = "TEXT_NONE",
|
|
42
|
+
UNRECOGNIZED = "UNRECOGNIZED"
|
|
43
|
+
}
|
|
44
|
+
export declare enum AdBannerProvider {
|
|
45
|
+
UNSPECIFIED_AD_BANNER_PROVIDER = "UNSPECIFIED_AD_BANNER_PROVIDER",
|
|
46
|
+
SLICE = "SLICE",
|
|
47
|
+
BANNER_NONE = "BANNER_NONE",
|
|
48
|
+
UNRECOGNIZED = "UNRECOGNIZED"
|
|
49
|
+
}
|
|
38
50
|
export interface DeployConfig {
|
|
39
51
|
rpc_url: string;
|
|
40
52
|
server_size: string;
|
|
@@ -66,6 +78,9 @@ export interface DeployConfig {
|
|
|
66
78
|
footer?: Footer | undefined;
|
|
67
79
|
optimism?: OptimismConfig | undefined;
|
|
68
80
|
arbitrum?: ArbitrumConfig | undefined;
|
|
81
|
+
ads?: Ads | undefined;
|
|
82
|
+
meta_og?: MetaOg | undefined;
|
|
83
|
+
final_config?: FinalConfig | undefined;
|
|
69
84
|
}
|
|
70
85
|
export interface Footer {
|
|
71
86
|
columns: FooterColumn[];
|
|
@@ -78,6 +93,23 @@ export interface FooterLink {
|
|
|
78
93
|
text: string;
|
|
79
94
|
url: string;
|
|
80
95
|
}
|
|
96
|
+
export interface Ads {
|
|
97
|
+
text_provider: AdTextProvider;
|
|
98
|
+
banner_provider: AdBannerProvider;
|
|
99
|
+
}
|
|
100
|
+
export interface MetaOg {
|
|
101
|
+
description?: string | undefined;
|
|
102
|
+
image_url?: string | undefined;
|
|
103
|
+
enhanced_data_enabled?: boolean | undefined;
|
|
104
|
+
seo_enhanced_data_enabled?: boolean | undefined;
|
|
105
|
+
}
|
|
106
|
+
export interface FinalConfig {
|
|
107
|
+
fields: FinalConfigField[];
|
|
108
|
+
}
|
|
109
|
+
export interface FinalConfigField {
|
|
110
|
+
json_path: string;
|
|
111
|
+
value: string;
|
|
112
|
+
}
|
|
81
113
|
/** https://github.com/blockscout/docs/blob/df6996a0f8e553c2d4b1c3dcda6ef2518a8b39f9/for-developers/information-and-settings/env-variables/backend-envs-chain-specific.md?plain=1#L102-L119 */
|
|
82
114
|
export interface OptimismConfig {
|
|
83
115
|
/** changes blockscout env INDEXER_OPTIMISM_L1_RPC */
|
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.Identicon = exports.ColorTheme = exports.NavigationLayout = exports.NodeType = exports.ChainType = void 0;
|
|
8
|
+
exports.AdBannerProvider = exports.AdTextProvider = exports.Identicon = exports.ColorTheme = exports.NavigationLayout = exports.NodeType = exports.ChainType = void 0;
|
|
9
9
|
/* eslint-disable */
|
|
10
10
|
var ChainType;
|
|
11
11
|
(function (ChainType) {
|
|
@@ -49,3 +49,17 @@ var Identicon;
|
|
|
49
49
|
Identicon["BLOCKIE"] = "BLOCKIE";
|
|
50
50
|
Identicon["UNRECOGNIZED"] = "UNRECOGNIZED";
|
|
51
51
|
})(Identicon || (exports.Identicon = Identicon = {}));
|
|
52
|
+
var AdTextProvider;
|
|
53
|
+
(function (AdTextProvider) {
|
|
54
|
+
AdTextProvider["UNSPECIFIED_AD_TEXT_PROVIDER"] = "UNSPECIFIED_AD_TEXT_PROVIDER";
|
|
55
|
+
AdTextProvider["COINZILLA"] = "COINZILLA";
|
|
56
|
+
AdTextProvider["TEXT_NONE"] = "TEXT_NONE";
|
|
57
|
+
AdTextProvider["UNRECOGNIZED"] = "UNRECOGNIZED";
|
|
58
|
+
})(AdTextProvider || (exports.AdTextProvider = AdTextProvider = {}));
|
|
59
|
+
var AdBannerProvider;
|
|
60
|
+
(function (AdBannerProvider) {
|
|
61
|
+
AdBannerProvider["UNSPECIFIED_AD_BANNER_PROVIDER"] = "UNSPECIFIED_AD_BANNER_PROVIDER";
|
|
62
|
+
AdBannerProvider["SLICE"] = "SLICE";
|
|
63
|
+
AdBannerProvider["BANNER_NONE"] = "BANNER_NONE";
|
|
64
|
+
AdBannerProvider["UNRECOGNIZED"] = "UNRECOGNIZED";
|
|
65
|
+
})(AdBannerProvider || (exports.AdBannerProvider = AdBannerProvider = {}));
|
package/dist/v1/config.ts
CHANGED
|
@@ -48,6 +48,20 @@ export enum Identicon {
|
|
|
48
48
|
UNRECOGNIZED = "UNRECOGNIZED",
|
|
49
49
|
}
|
|
50
50
|
|
|
51
|
+
export enum AdTextProvider {
|
|
52
|
+
UNSPECIFIED_AD_TEXT_PROVIDER = "UNSPECIFIED_AD_TEXT_PROVIDER",
|
|
53
|
+
COINZILLA = "COINZILLA",
|
|
54
|
+
TEXT_NONE = "TEXT_NONE",
|
|
55
|
+
UNRECOGNIZED = "UNRECOGNIZED",
|
|
56
|
+
}
|
|
57
|
+
|
|
58
|
+
export enum AdBannerProvider {
|
|
59
|
+
UNSPECIFIED_AD_BANNER_PROVIDER = "UNSPECIFIED_AD_BANNER_PROVIDER",
|
|
60
|
+
SLICE = "SLICE",
|
|
61
|
+
BANNER_NONE = "BANNER_NONE",
|
|
62
|
+
UNRECOGNIZED = "UNRECOGNIZED",
|
|
63
|
+
}
|
|
64
|
+
|
|
51
65
|
export interface DeployConfig {
|
|
52
66
|
rpc_url: string;
|
|
53
67
|
server_size: string;
|
|
@@ -81,6 +95,9 @@ export interface DeployConfig {
|
|
|
81
95
|
footer?: Footer | undefined;
|
|
82
96
|
optimism?: OptimismConfig | undefined;
|
|
83
97
|
arbitrum?: ArbitrumConfig | undefined;
|
|
98
|
+
ads?: Ads | undefined;
|
|
99
|
+
meta_og?: MetaOg | undefined;
|
|
100
|
+
final_config?: FinalConfig | undefined;
|
|
84
101
|
}
|
|
85
102
|
|
|
86
103
|
export interface Footer {
|
|
@@ -97,6 +114,27 @@ export interface FooterLink {
|
|
|
97
114
|
url: string;
|
|
98
115
|
}
|
|
99
116
|
|
|
117
|
+
export interface Ads {
|
|
118
|
+
text_provider: AdTextProvider;
|
|
119
|
+
banner_provider: AdBannerProvider;
|
|
120
|
+
}
|
|
121
|
+
|
|
122
|
+
export interface MetaOg {
|
|
123
|
+
description?: string | undefined;
|
|
124
|
+
image_url?: string | undefined;
|
|
125
|
+
enhanced_data_enabled?: boolean | undefined;
|
|
126
|
+
seo_enhanced_data_enabled?: boolean | undefined;
|
|
127
|
+
}
|
|
128
|
+
|
|
129
|
+
export interface FinalConfig {
|
|
130
|
+
fields: FinalConfigField[];
|
|
131
|
+
}
|
|
132
|
+
|
|
133
|
+
export interface FinalConfigField {
|
|
134
|
+
json_path: string;
|
|
135
|
+
value: string;
|
|
136
|
+
}
|
|
137
|
+
|
|
100
138
|
/** https://github.com/blockscout/docs/blob/df6996a0f8e553c2d4b1c3dcda6ef2518a8b39f9/for-developers/information-and-settings/env-variables/backend-envs-chain-specific.md?plain=1#L102-L119 */
|
|
101
139
|
export interface OptimismConfig {
|
|
102
140
|
/** changes blockscout env INDEXER_OPTIMISM_L1_RPC */
|