@dxos/config 2.33.9-dev.002e8917 → 2.33.9-dev.227ba79d
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/src/proto/gen/dxos/config.d.ts +457 -0
- package/dist/src/proto/gen/dxos/config.d.ts.map +1 -1
- package/dist/src/proto/gen/dxos/config.js +10 -0
- package/dist/src/proto/gen/dxos/config.js.map +1 -1
- package/dist/src/proto/gen/google/protobuf.d.ts +80 -80
- package/dist/src/proto/gen/google/protobuf.d.ts.map +1 -1
- package/dist/src/proto/gen/index.d.ts.map +1 -1
- package/dist/src/proto/gen/index.js +1 -1
- package/dist/src/proto/gen/index.js.map +1 -1
- package/dist/tsconfig.tsbuildinfo +1 -1
- package/package.json +5 -5
|
@@ -1,80 +1,248 @@
|
|
|
1
1
|
import substitutions from "../../substitutions";
|
|
2
|
+
/**
|
|
3
|
+
* Defined in:
|
|
4
|
+
* {@link file://./../../../../../../common/protocols/src/proto/dxos/config.proto}
|
|
5
|
+
*/
|
|
2
6
|
export interface Config {
|
|
7
|
+
/**
|
|
8
|
+
* Options:
|
|
9
|
+
* - proto3_optional = true
|
|
10
|
+
*/
|
|
3
11
|
version?: number;
|
|
12
|
+
/**
|
|
13
|
+
* Options:
|
|
14
|
+
* - proto3_optional = true
|
|
15
|
+
*/
|
|
4
16
|
package?: Package;
|
|
17
|
+
/**
|
|
18
|
+
* Options:
|
|
19
|
+
* - proto3_optional = true
|
|
20
|
+
*/
|
|
5
21
|
runtime?: Runtime;
|
|
6
22
|
}
|
|
23
|
+
/**
|
|
24
|
+
* Defined in:
|
|
25
|
+
* {@link file://./../../../../../../common/protocols/src/proto/dxos/config.proto}
|
|
26
|
+
*/
|
|
7
27
|
export interface Package {
|
|
28
|
+
/**
|
|
29
|
+
* Options:
|
|
30
|
+
* - proto3_optional = true
|
|
31
|
+
*/
|
|
8
32
|
license?: string;
|
|
9
33
|
repos?: Repo[];
|
|
10
34
|
modules?: Module[];
|
|
11
35
|
}
|
|
36
|
+
/**
|
|
37
|
+
* Defined in:
|
|
38
|
+
* {@link file://./../../../../../../common/protocols/src/proto/dxos/config.proto}
|
|
39
|
+
*/
|
|
12
40
|
export interface Repo {
|
|
41
|
+
/**
|
|
42
|
+
* Options:
|
|
43
|
+
* - proto3_optional = true
|
|
44
|
+
*/
|
|
13
45
|
name?: string;
|
|
46
|
+
/**
|
|
47
|
+
* Options:
|
|
48
|
+
* - proto3_optional = true
|
|
49
|
+
*/
|
|
14
50
|
url?: string;
|
|
51
|
+
/**
|
|
52
|
+
* Options:
|
|
53
|
+
* - proto3_optional = true
|
|
54
|
+
*/
|
|
15
55
|
version?: string;
|
|
16
56
|
}
|
|
57
|
+
/**
|
|
58
|
+
* Defined in:
|
|
59
|
+
* {@link file://./../../../../../../common/protocols/src/proto/dxos/config.proto}
|
|
60
|
+
*/
|
|
17
61
|
export interface Module {
|
|
62
|
+
/**
|
|
63
|
+
* Options:
|
|
64
|
+
* - proto3_optional = true
|
|
65
|
+
*/
|
|
18
66
|
name?: string;
|
|
67
|
+
/**
|
|
68
|
+
* Options:
|
|
69
|
+
* - proto3_optional = true
|
|
70
|
+
*/
|
|
19
71
|
type?: string;
|
|
72
|
+
/**
|
|
73
|
+
* Options:
|
|
74
|
+
* - proto3_optional = true
|
|
75
|
+
*/
|
|
20
76
|
displayName?: string;
|
|
77
|
+
/**
|
|
78
|
+
* Options:
|
|
79
|
+
* - proto3_optional = true
|
|
80
|
+
*/
|
|
21
81
|
description?: string;
|
|
22
82
|
tags?: string[];
|
|
83
|
+
/**
|
|
84
|
+
* Options:
|
|
85
|
+
* - proto3_optional = true
|
|
86
|
+
*/
|
|
23
87
|
build?: Module.Build;
|
|
24
88
|
repos?: Repo[];
|
|
25
89
|
/**
|
|
26
90
|
* The data will be validated based on the type when being published.
|
|
91
|
+
*
|
|
92
|
+
* Options:
|
|
93
|
+
* - proto3_optional = true
|
|
27
94
|
*/
|
|
28
95
|
record?: ReturnType<(typeof substitutions)["google.protobuf.Any"]["decode"]>;
|
|
29
96
|
}
|
|
30
97
|
export declare namespace Module {
|
|
98
|
+
/**
|
|
99
|
+
* Defined in:
|
|
100
|
+
* {@link file://./../../../../../../common/protocols/src/proto/dxos/config.proto}
|
|
101
|
+
*/
|
|
31
102
|
interface Build {
|
|
103
|
+
/**
|
|
104
|
+
* Options:
|
|
105
|
+
* - proto3_optional = true
|
|
106
|
+
*/
|
|
32
107
|
command?: string;
|
|
108
|
+
/**
|
|
109
|
+
* Options:
|
|
110
|
+
* - proto3_optional = true
|
|
111
|
+
*/
|
|
33
112
|
outdir?: string;
|
|
113
|
+
/**
|
|
114
|
+
* Options:
|
|
115
|
+
* - proto3_optional = true
|
|
116
|
+
*/
|
|
34
117
|
version?: string;
|
|
118
|
+
/**
|
|
119
|
+
* Options:
|
|
120
|
+
* - proto3_optional = true
|
|
121
|
+
*/
|
|
35
122
|
tag?: string;
|
|
36
123
|
}
|
|
37
124
|
}
|
|
125
|
+
/**
|
|
126
|
+
* Defined in:
|
|
127
|
+
* {@link file://./../../../../../../common/protocols/src/proto/dxos/config.proto}
|
|
128
|
+
*/
|
|
38
129
|
export interface Runtime {
|
|
130
|
+
/**
|
|
131
|
+
* Options:
|
|
132
|
+
* - proto3_optional = true
|
|
133
|
+
*/
|
|
39
134
|
client?: Runtime.Client;
|
|
135
|
+
/**
|
|
136
|
+
* Options:
|
|
137
|
+
* - proto3_optional = true
|
|
138
|
+
*/
|
|
40
139
|
app?: Runtime.App;
|
|
140
|
+
/**
|
|
141
|
+
* Options:
|
|
142
|
+
* - proto3_optional = true
|
|
143
|
+
*/
|
|
41
144
|
cli?: Runtime.CLI;
|
|
145
|
+
/**
|
|
146
|
+
* Options:
|
|
147
|
+
* - proto3_optional = true
|
|
148
|
+
*/
|
|
42
149
|
props?: Runtime.Props;
|
|
150
|
+
/**
|
|
151
|
+
* Options:
|
|
152
|
+
* - proto3_optional = true
|
|
153
|
+
*/
|
|
43
154
|
services?: Runtime.Services;
|
|
155
|
+
/**
|
|
156
|
+
* Options:
|
|
157
|
+
* - proto3_optional = true
|
|
158
|
+
*/
|
|
44
159
|
system?: Runtime.System;
|
|
45
160
|
}
|
|
46
161
|
export declare namespace Runtime {
|
|
162
|
+
/**
|
|
163
|
+
* Defined in:
|
|
164
|
+
* {@link file://./../../../../../../common/protocols/src/proto/dxos/config.proto}
|
|
165
|
+
*/
|
|
47
166
|
interface Client {
|
|
48
167
|
/**
|
|
49
168
|
* Options:
|
|
50
169
|
* - (env) = "DEBUG"
|
|
170
|
+
* - proto3_optional = true
|
|
51
171
|
*/
|
|
52
172
|
debug?: string;
|
|
173
|
+
/**
|
|
174
|
+
* Options:
|
|
175
|
+
* - proto3_optional = true
|
|
176
|
+
*/
|
|
53
177
|
storage?: Runtime.Client.Storage;
|
|
178
|
+
/**
|
|
179
|
+
* Options:
|
|
180
|
+
* - proto3_optional = true
|
|
181
|
+
*/
|
|
54
182
|
enableSnapshots?: boolean;
|
|
55
183
|
/**
|
|
56
184
|
* Milliseconds
|
|
185
|
+
*
|
|
186
|
+
* Options:
|
|
187
|
+
* - proto3_optional = true
|
|
57
188
|
*/
|
|
58
189
|
snapshotInterval?: number;
|
|
59
190
|
/**
|
|
60
191
|
* Milliseconds
|
|
192
|
+
*
|
|
193
|
+
* Options:
|
|
194
|
+
* - proto3_optional = true
|
|
61
195
|
*/
|
|
62
196
|
invitationExpiration?: number;
|
|
197
|
+
/**
|
|
198
|
+
* Options:
|
|
199
|
+
* - proto3_optional = true
|
|
200
|
+
*/
|
|
63
201
|
mode?: Runtime.Client.Mode;
|
|
64
202
|
}
|
|
65
203
|
namespace Client {
|
|
204
|
+
/**
|
|
205
|
+
* Whether the client services are local with ClientServiceHost or remote and need to be accessed via ClientServiceProxy. Defaults to AUTOMATIC.
|
|
206
|
+
*
|
|
207
|
+
* Defined in:
|
|
208
|
+
* {@link file://./../../../../../../common/protocols/src/proto/dxos/config.proto}
|
|
209
|
+
*/
|
|
66
210
|
enum Mode {
|
|
67
211
|
AUTOMATIC = 0,
|
|
68
212
|
LOCAL = 1,
|
|
69
213
|
REMOTE = 2
|
|
70
214
|
}
|
|
215
|
+
/**
|
|
216
|
+
* Defined in:
|
|
217
|
+
* {@link file://./../../../../../../common/protocols/src/proto/dxos/config.proto}
|
|
218
|
+
*/
|
|
71
219
|
interface Storage {
|
|
220
|
+
/**
|
|
221
|
+
* Options:
|
|
222
|
+
* - proto3_optional = true
|
|
223
|
+
*/
|
|
72
224
|
persistent?: boolean;
|
|
225
|
+
/**
|
|
226
|
+
* Options:
|
|
227
|
+
* - proto3_optional = true
|
|
228
|
+
*/
|
|
73
229
|
storageType?: Runtime.Client.Storage.StorageDriver;
|
|
230
|
+
/**
|
|
231
|
+
* Options:
|
|
232
|
+
* - proto3_optional = true
|
|
233
|
+
*/
|
|
74
234
|
keyStorage?: Runtime.Client.Storage.StorageDriver;
|
|
235
|
+
/**
|
|
236
|
+
* Options:
|
|
237
|
+
* - proto3_optional = true
|
|
238
|
+
*/
|
|
75
239
|
path?: string;
|
|
76
240
|
}
|
|
77
241
|
namespace Storage {
|
|
242
|
+
/**
|
|
243
|
+
* Defined in:
|
|
244
|
+
* {@link file://./../../../../../../common/protocols/src/proto/dxos/config.proto}
|
|
245
|
+
*/
|
|
78
246
|
enum StorageDriver {
|
|
79
247
|
RAM = 0,
|
|
80
248
|
IDB = 1,
|
|
@@ -86,78 +254,266 @@ export declare namespace Runtime {
|
|
|
86
254
|
}
|
|
87
255
|
}
|
|
88
256
|
}
|
|
257
|
+
/**
|
|
258
|
+
* Defined in:
|
|
259
|
+
* {@link file://./../../../../../../common/protocols/src/proto/dxos/config.proto}
|
|
260
|
+
*/
|
|
89
261
|
interface App {
|
|
262
|
+
/**
|
|
263
|
+
* Options:
|
|
264
|
+
* - proto3_optional = true
|
|
265
|
+
*/
|
|
90
266
|
org?: string;
|
|
267
|
+
/**
|
|
268
|
+
* Options:
|
|
269
|
+
* - proto3_optional = true
|
|
270
|
+
*/
|
|
91
271
|
theme?: string;
|
|
272
|
+
/**
|
|
273
|
+
* Options:
|
|
274
|
+
* - proto3_optional = true
|
|
275
|
+
*/
|
|
92
276
|
website?: string;
|
|
93
277
|
/**
|
|
94
278
|
* Options:
|
|
95
279
|
* - (env) = "PUBLIC_URL"
|
|
280
|
+
* - proto3_optional = true
|
|
96
281
|
*/
|
|
97
282
|
publicUrl?: string;
|
|
98
283
|
}
|
|
284
|
+
/**
|
|
285
|
+
* Defined in:
|
|
286
|
+
* {@link file://./../../../../../../common/protocols/src/proto/dxos/config.proto}
|
|
287
|
+
*/
|
|
99
288
|
interface CLI {
|
|
289
|
+
/**
|
|
290
|
+
* Options:
|
|
291
|
+
* - proto3_optional = true
|
|
292
|
+
*/
|
|
100
293
|
nodePath?: string;
|
|
294
|
+
/**
|
|
295
|
+
* Options:
|
|
296
|
+
* - proto3_optional = true
|
|
297
|
+
*/
|
|
101
298
|
app?: Runtime.CLI.AppServe;
|
|
299
|
+
/**
|
|
300
|
+
* Options:
|
|
301
|
+
* - proto3_optional = true
|
|
302
|
+
*/
|
|
102
303
|
console?: Runtime.CLI.Package;
|
|
304
|
+
/**
|
|
305
|
+
* Options:
|
|
306
|
+
* - proto3_optional = true
|
|
307
|
+
*/
|
|
103
308
|
mdns?: Runtime.CLI.Package;
|
|
309
|
+
/**
|
|
310
|
+
* Options:
|
|
311
|
+
* - proto3_optional = true
|
|
312
|
+
*/
|
|
104
313
|
signal?: Runtime.CLI.Package;
|
|
314
|
+
/**
|
|
315
|
+
* Options:
|
|
316
|
+
* - proto3_optional = true
|
|
317
|
+
*/
|
|
105
318
|
npmClient?: string;
|
|
319
|
+
/**
|
|
320
|
+
* Options:
|
|
321
|
+
* - proto3_optional = true
|
|
322
|
+
*/
|
|
106
323
|
channel?: string;
|
|
107
324
|
}
|
|
108
325
|
namespace CLI {
|
|
326
|
+
/**
|
|
327
|
+
* Defined in:
|
|
328
|
+
* {@link file://./../../../../../../common/protocols/src/proto/dxos/config.proto}
|
|
329
|
+
*/
|
|
109
330
|
interface AppServe {
|
|
331
|
+
/**
|
|
332
|
+
* Options:
|
|
333
|
+
* - proto3_optional = true
|
|
334
|
+
*/
|
|
110
335
|
serve?: Runtime.CLI.AppServe.Serve;
|
|
111
336
|
}
|
|
112
337
|
namespace AppServe {
|
|
338
|
+
/**
|
|
339
|
+
* Defined in:
|
|
340
|
+
* {@link file://./../../../../../../common/protocols/src/proto/dxos/config.proto}
|
|
341
|
+
*/
|
|
113
342
|
interface Serve {
|
|
343
|
+
/**
|
|
344
|
+
* Options:
|
|
345
|
+
* - proto3_optional = true
|
|
346
|
+
*/
|
|
114
347
|
config?: string;
|
|
348
|
+
/**
|
|
349
|
+
* Options:
|
|
350
|
+
* - proto3_optional = true
|
|
351
|
+
*/
|
|
115
352
|
loginApp?: string;
|
|
353
|
+
/**
|
|
354
|
+
* Options:
|
|
355
|
+
* - proto3_optional = true
|
|
356
|
+
*/
|
|
116
357
|
keyPhrase?: string;
|
|
117
358
|
}
|
|
118
359
|
}
|
|
360
|
+
/**
|
|
361
|
+
* Defined in:
|
|
362
|
+
* {@link file://./../../../../../../common/protocols/src/proto/dxos/config.proto}
|
|
363
|
+
*/
|
|
119
364
|
interface Package {
|
|
365
|
+
/**
|
|
366
|
+
* Options:
|
|
367
|
+
* - proto3_optional = true
|
|
368
|
+
*/
|
|
120
369
|
package?: string;
|
|
370
|
+
/**
|
|
371
|
+
* Options:
|
|
372
|
+
* - proto3_optional = true
|
|
373
|
+
*/
|
|
121
374
|
channel?: string;
|
|
375
|
+
/**
|
|
376
|
+
* Options:
|
|
377
|
+
* - proto3_optional = true
|
|
378
|
+
*/
|
|
122
379
|
bin?: string;
|
|
380
|
+
/**
|
|
381
|
+
* Options:
|
|
382
|
+
* - proto3_optional = true
|
|
383
|
+
*/
|
|
123
384
|
config?: string;
|
|
124
385
|
}
|
|
125
386
|
}
|
|
387
|
+
/**
|
|
388
|
+
* Defined in:
|
|
389
|
+
* {@link file://./../../../../../../common/protocols/src/proto/dxos/config.proto}
|
|
390
|
+
*/
|
|
126
391
|
interface Props {
|
|
392
|
+
/**
|
|
393
|
+
* Options:
|
|
394
|
+
* - proto3_optional = true
|
|
395
|
+
*/
|
|
127
396
|
title?: string;
|
|
128
397
|
}
|
|
398
|
+
/**
|
|
399
|
+
* Defined in:
|
|
400
|
+
* {@link file://./../../../../../../common/protocols/src/proto/dxos/config.proto}
|
|
401
|
+
*/
|
|
129
402
|
interface System {
|
|
403
|
+
/**
|
|
404
|
+
* Options:
|
|
405
|
+
* - proto3_optional = true
|
|
406
|
+
*/
|
|
130
407
|
debug?: string;
|
|
131
408
|
}
|
|
409
|
+
/**
|
|
410
|
+
* Defined in:
|
|
411
|
+
* {@link file://./../../../../../../common/protocols/src/proto/dxos/config.proto}
|
|
412
|
+
*/
|
|
132
413
|
interface Services {
|
|
414
|
+
/**
|
|
415
|
+
* Options:
|
|
416
|
+
* - proto3_optional = true
|
|
417
|
+
*/
|
|
133
418
|
kube?: Runtime.Services.Kube;
|
|
419
|
+
/**
|
|
420
|
+
* Options:
|
|
421
|
+
* - proto3_optional = true
|
|
422
|
+
*/
|
|
134
423
|
app?: Runtime.Services.AppServer;
|
|
424
|
+
/**
|
|
425
|
+
* Options:
|
|
426
|
+
* - proto3_optional = true
|
|
427
|
+
*/
|
|
135
428
|
dxns?: Runtime.Services.Dxns;
|
|
429
|
+
/**
|
|
430
|
+
* Options:
|
|
431
|
+
* - proto3_optional = true
|
|
432
|
+
*/
|
|
136
433
|
ipfs?: Runtime.Services.Ipfs;
|
|
434
|
+
/**
|
|
435
|
+
* Options:
|
|
436
|
+
* - proto3_optional = true
|
|
437
|
+
*/
|
|
137
438
|
signal?: Runtime.Services.Signal;
|
|
138
439
|
ice?: Runtime.Services.Ice[];
|
|
440
|
+
/**
|
|
441
|
+
* Options:
|
|
442
|
+
* - proto3_optional = true
|
|
443
|
+
*/
|
|
139
444
|
machine?: Runtime.Services.Machine;
|
|
445
|
+
/**
|
|
446
|
+
* Options:
|
|
447
|
+
* - proto3_optional = true
|
|
448
|
+
*/
|
|
140
449
|
bot?: Runtime.Services.BotFactory;
|
|
141
450
|
}
|
|
142
451
|
namespace Services {
|
|
452
|
+
/**
|
|
453
|
+
* Defined in:
|
|
454
|
+
* {@link file://./../../../../../../common/protocols/src/proto/dxos/config.proto}
|
|
455
|
+
*/
|
|
143
456
|
interface Kube {
|
|
457
|
+
/**
|
|
458
|
+
* Options:
|
|
459
|
+
* - proto3_optional = true
|
|
460
|
+
*/
|
|
144
461
|
endpoints?: Runtime.Services.Kube.Endpoints;
|
|
462
|
+
/**
|
|
463
|
+
* Options:
|
|
464
|
+
* - proto3_optional = true
|
|
465
|
+
*/
|
|
145
466
|
publicUrl?: string;
|
|
146
467
|
}
|
|
147
468
|
namespace Kube {
|
|
469
|
+
/**
|
|
470
|
+
* Defined in:
|
|
471
|
+
* {@link file://./../../../../../../common/protocols/src/proto/dxos/config.proto}
|
|
472
|
+
*/
|
|
148
473
|
interface Endpoints {
|
|
474
|
+
/**
|
|
475
|
+
* Options:
|
|
476
|
+
* - proto3_optional = true
|
|
477
|
+
*/
|
|
149
478
|
logs?: string;
|
|
479
|
+
/**
|
|
480
|
+
* Options:
|
|
481
|
+
* - proto3_optional = true
|
|
482
|
+
*/
|
|
150
483
|
services?: string;
|
|
484
|
+
/**
|
|
485
|
+
* Options:
|
|
486
|
+
* - proto3_optional = true
|
|
487
|
+
*/
|
|
151
488
|
cert?: string;
|
|
152
489
|
}
|
|
153
490
|
}
|
|
491
|
+
/**
|
|
492
|
+
* Defined in:
|
|
493
|
+
* {@link file://./../../../../../../common/protocols/src/proto/dxos/config.proto}
|
|
494
|
+
*/
|
|
154
495
|
interface AppServer {
|
|
496
|
+
/**
|
|
497
|
+
* Options:
|
|
498
|
+
* - proto3_optional = true
|
|
499
|
+
*/
|
|
155
500
|
prefix?: string;
|
|
501
|
+
/**
|
|
502
|
+
* Options:
|
|
503
|
+
* - proto3_optional = true
|
|
504
|
+
*/
|
|
156
505
|
server?: string;
|
|
157
506
|
}
|
|
507
|
+
/**
|
|
508
|
+
* Defined in:
|
|
509
|
+
* {@link file://./../../../../../../common/protocols/src/proto/dxos/config.proto}
|
|
510
|
+
*/
|
|
158
511
|
interface Dxns {
|
|
159
512
|
/**
|
|
160
513
|
* DXNS endpoint.
|
|
514
|
+
*
|
|
515
|
+
* Options:
|
|
516
|
+
* - proto3_optional = true
|
|
161
517
|
*/
|
|
162
518
|
server?: string;
|
|
163
519
|
/**
|
|
@@ -165,43 +521,144 @@ export declare namespace Runtime {
|
|
|
165
521
|
* KUBEs do not serve this with the config but we store it in profile.yml.
|
|
166
522
|
*
|
|
167
523
|
* TODO(dmaretskyi): Deprecate this and move it to keyring.
|
|
524
|
+
*
|
|
525
|
+
* Options:
|
|
526
|
+
* - proto3_optional = true
|
|
168
527
|
*/
|
|
169
528
|
accountUri?: string;
|
|
170
529
|
/**
|
|
171
530
|
* Public Polkadot Address.
|
|
531
|
+
*
|
|
532
|
+
* Options:
|
|
533
|
+
* - proto3_optional = true
|
|
172
534
|
*/
|
|
173
535
|
address?: string;
|
|
174
536
|
/**
|
|
175
537
|
* Public address of a DXNS Account.
|
|
538
|
+
*
|
|
539
|
+
* Options:
|
|
540
|
+
* - proto3_optional = true
|
|
176
541
|
*/
|
|
177
542
|
account?: string;
|
|
543
|
+
/**
|
|
544
|
+
* Options:
|
|
545
|
+
* - proto3_optional = true
|
|
546
|
+
*/
|
|
178
547
|
faucet?: string;
|
|
179
548
|
}
|
|
549
|
+
/**
|
|
550
|
+
* Defined in:
|
|
551
|
+
* {@link file://./../../../../../../common/protocols/src/proto/dxos/config.proto}
|
|
552
|
+
*/
|
|
180
553
|
interface Ipfs {
|
|
554
|
+
/**
|
|
555
|
+
* Options:
|
|
556
|
+
* - proto3_optional = true
|
|
557
|
+
*/
|
|
181
558
|
server?: string;
|
|
559
|
+
/**
|
|
560
|
+
* Options:
|
|
561
|
+
* - proto3_optional = true
|
|
562
|
+
*/
|
|
182
563
|
gateway?: string;
|
|
183
564
|
}
|
|
565
|
+
/**
|
|
566
|
+
* Defined in:
|
|
567
|
+
* {@link file://./../../../../../../common/protocols/src/proto/dxos/config.proto}
|
|
568
|
+
*/
|
|
184
569
|
interface Signal {
|
|
570
|
+
/**
|
|
571
|
+
* Options:
|
|
572
|
+
* - proto3_optional = true
|
|
573
|
+
*/
|
|
185
574
|
server?: string;
|
|
575
|
+
/**
|
|
576
|
+
* Options:
|
|
577
|
+
* - proto3_optional = true
|
|
578
|
+
*/
|
|
186
579
|
api?: string;
|
|
580
|
+
/**
|
|
581
|
+
* Options:
|
|
582
|
+
* - proto3_optional = true
|
|
583
|
+
*/
|
|
187
584
|
status?: string;
|
|
188
585
|
}
|
|
586
|
+
/**
|
|
587
|
+
* Defined in:
|
|
588
|
+
* {@link file://./../../../../../../common/protocols/src/proto/dxos/config.proto}
|
|
589
|
+
*/
|
|
189
590
|
interface Ice {
|
|
591
|
+
/**
|
|
592
|
+
* Options:
|
|
593
|
+
* - proto3_optional = true
|
|
594
|
+
*/
|
|
190
595
|
urls?: string;
|
|
596
|
+
/**
|
|
597
|
+
* Options:
|
|
598
|
+
* - proto3_optional = true
|
|
599
|
+
*/
|
|
191
600
|
username?: string;
|
|
601
|
+
/**
|
|
602
|
+
* Options:
|
|
603
|
+
* - proto3_optional = true
|
|
604
|
+
*/
|
|
192
605
|
credential?: string;
|
|
193
606
|
}
|
|
607
|
+
/**
|
|
608
|
+
* Defined in:
|
|
609
|
+
* {@link file://./../../../../../../common/protocols/src/proto/dxos/config.proto}
|
|
610
|
+
*/
|
|
194
611
|
interface Machine {
|
|
612
|
+
/**
|
|
613
|
+
* Options:
|
|
614
|
+
* - proto3_optional = true
|
|
615
|
+
*/
|
|
195
616
|
doAccessToken?: string;
|
|
617
|
+
/**
|
|
618
|
+
* Options:
|
|
619
|
+
* - proto3_optional = true
|
|
620
|
+
*/
|
|
196
621
|
githubAccessToken?: string;
|
|
622
|
+
/**
|
|
623
|
+
* Options:
|
|
624
|
+
* - proto3_optional = true
|
|
625
|
+
*/
|
|
197
626
|
githubUsername?: string;
|
|
627
|
+
/**
|
|
628
|
+
* Options:
|
|
629
|
+
* - proto3_optional = true
|
|
630
|
+
*/
|
|
198
631
|
dnsDomain?: string;
|
|
632
|
+
/**
|
|
633
|
+
* Options:
|
|
634
|
+
* - proto3_optional = true
|
|
635
|
+
*/
|
|
199
636
|
npmAccessToken?: string;
|
|
200
637
|
}
|
|
638
|
+
/**
|
|
639
|
+
* Defined in:
|
|
640
|
+
* {@link file://./../../../../../../common/protocols/src/proto/dxos/config.proto}
|
|
641
|
+
*/
|
|
201
642
|
interface BotFactory {
|
|
643
|
+
/**
|
|
644
|
+
* Options:
|
|
645
|
+
* - proto3_optional = true
|
|
646
|
+
*/
|
|
202
647
|
topic?: string;
|
|
648
|
+
/**
|
|
649
|
+
* Options:
|
|
650
|
+
* - proto3_optional = true
|
|
651
|
+
*/
|
|
203
652
|
persistent?: boolean;
|
|
653
|
+
/**
|
|
654
|
+
* Options:
|
|
655
|
+
* - proto3_optional = true
|
|
656
|
+
*/
|
|
204
657
|
retryAttempts?: number;
|
|
658
|
+
/**
|
|
659
|
+
* Options:
|
|
660
|
+
* - proto3_optional = true
|
|
661
|
+
*/
|
|
205
662
|
retryInterval?: number;
|
|
206
663
|
}
|
|
207
664
|
}
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"config.d.ts","sourceRoot":"","sources":["../../../../../src/proto/gen/dxos/config.ts"],"names":[],"mappings":"AACA,OAAO,aAAa,MAAM,qBAAqB,CAAC;AAEhD,MAAM,WAAW,MAAM;IACnB,OAAO,CAAC,EAAE,MAAM,CAAC;IACjB,OAAO,CAAC,EAAE,OAAO,CAAC;IAClB,OAAO,CAAC,EAAE,OAAO,CAAC;CACrB;AACD,MAAM,WAAW,OAAO;IACpB,OAAO,CAAC,EAAE,MAAM,CAAC;IACjB,KAAK,CAAC,EAAE,IAAI,EAAE,CAAC;IACf,OAAO,CAAC,EAAE,MAAM,EAAE,CAAC;CACtB;AACD,MAAM,WAAW,IAAI;IACjB,IAAI,CAAC,EAAE,MAAM,CAAC;IACd,GAAG,CAAC,EAAE,MAAM,CAAC;IACb,OAAO,CAAC,EAAE,MAAM,CAAC;CACpB;AACD,MAAM,WAAW,MAAM;IACnB,IAAI,CAAC,EAAE,MAAM,CAAC;IACd,IAAI,CAAC,EAAE,MAAM,CAAC;IACd,WAAW,CAAC,EAAE,MAAM,CAAC;IACrB,WAAW,CAAC,EAAE,MAAM,CAAC;IACrB,IAAI,CAAC,EAAE,MAAM,EAAE,CAAC;IAChB,KAAK,CAAC,EAAE,MAAM,CAAC,KAAK,CAAC;IACrB,KAAK,CAAC,EAAE,IAAI,EAAE,CAAC;IACf
|
|
1
|
+
{"version":3,"file":"config.d.ts","sourceRoot":"","sources":["../../../../../src/proto/gen/dxos/config.ts"],"names":[],"mappings":"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"}
|