@dxos/config 2.33.9-dev.6efa8ddf → 2.33.9-dev.8e92e630
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 +0 -457
- package/dist/src/proto/gen/dxos/config.d.ts.map +1 -1
- package/dist/src/proto/gen/dxos/config.js +0 -10
- 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
|
@@ -5,12 +5,6 @@ var Runtime;
|
|
|
5
5
|
(function (Runtime) {
|
|
6
6
|
let Client;
|
|
7
7
|
(function (Client) {
|
|
8
|
-
/**
|
|
9
|
-
* Whether the client services are local with ClientServiceHost or remote and need to be accessed via ClientServiceProxy. Defaults to AUTOMATIC.
|
|
10
|
-
*
|
|
11
|
-
* Defined in:
|
|
12
|
-
* {@link file://./../../../../../../common/protocols/src/proto/dxos/config.proto}
|
|
13
|
-
*/
|
|
14
8
|
let Mode;
|
|
15
9
|
(function (Mode) {
|
|
16
10
|
Mode[Mode["AUTOMATIC"] = 0] = "AUTOMATIC";
|
|
@@ -19,10 +13,6 @@ var Runtime;
|
|
|
19
13
|
})(Mode = Client.Mode || (Client.Mode = {}));
|
|
20
14
|
let Storage;
|
|
21
15
|
(function (Storage) {
|
|
22
|
-
/**
|
|
23
|
-
* Defined in:
|
|
24
|
-
* {@link file://./../../../../../../common/protocols/src/proto/dxos/config.proto}
|
|
25
|
-
*/
|
|
26
16
|
let StorageDriver;
|
|
27
17
|
(function (StorageDriver) {
|
|
28
18
|
StorageDriver[StorageDriver["RAM"] = 0] = "RAM";
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"config.js","sourceRoot":"","sources":["../../../../../src/proto/gen/dxos/config.ts"],"names":[],"mappings":";;;
|
|
1
|
+
{"version":3,"file":"config.js","sourceRoot":"","sources":["../../../../../src/proto/gen/dxos/config.ts"],"names":[],"mappings":";;;AA+CA,IAAiB,OAAO,CAkKvB;AAlKD,WAAiB,OAAO;IAmBpB,IAAiB,MAAM,CAuBtB;IAvBD,WAAiB,MAAM;QACnB,IAAY,IAIX;QAJD,WAAY,IAAI;YACZ,yCAAa,CAAA;YACb,iCAAS,CAAA;YACT,mCAAU,CAAA;QACd,CAAC,EAJW,IAAI,GAAJ,WAAI,KAAJ,WAAI,QAIf;QAOD,IAAiB,OAAO,CAUvB;QAVD,WAAiB,OAAO;YACpB,IAAY,aAQX;YARD,WAAY,aAAa;gBACrB,+CAAO,CAAA;gBACP,+CAAO,CAAA;gBACP,qDAAU,CAAA;gBACV,uDAAW,CAAA;gBACX,iDAAQ,CAAA;gBACR,wDAAY,CAAA;gBACZ,0DAAa,CAAA;YACjB,CAAC,EARW,aAAa,GAAb,qBAAa,KAAb,qBAAa,QAQxB;QACL,CAAC,EAVgB,OAAO,GAAP,cAAO,KAAP,cAAO,QAUvB;IACL,CAAC,EAvBgB,MAAM,GAAN,cAAM,KAAN,cAAM,QAuBtB;AAwHL,CAAC,EAlKgB,OAAO,GAAP,eAAO,KAAP,eAAO,QAkKvB"}
|
|
@@ -1,17 +1,17 @@
|
|
|
1
1
|
export interface Any {
|
|
2
|
-
type_url
|
|
3
|
-
value
|
|
2
|
+
type_url?: string;
|
|
3
|
+
value?: Uint8Array;
|
|
4
4
|
}
|
|
5
5
|
export interface Timestamp {
|
|
6
|
-
seconds
|
|
7
|
-
nanos
|
|
6
|
+
seconds?: string;
|
|
7
|
+
nanos?: number;
|
|
8
8
|
}
|
|
9
9
|
export interface FileDescriptorSet {
|
|
10
10
|
file?: FileDescriptorProto[];
|
|
11
11
|
}
|
|
12
12
|
export interface FileDescriptorProto {
|
|
13
|
-
name
|
|
14
|
-
package
|
|
13
|
+
name?: string;
|
|
14
|
+
package?: string;
|
|
15
15
|
dependency?: string[];
|
|
16
16
|
/**
|
|
17
17
|
* Options:
|
|
@@ -27,43 +27,43 @@ export interface FileDescriptorProto {
|
|
|
27
27
|
enumType?: EnumDescriptorProto[];
|
|
28
28
|
service?: ServiceDescriptorProto[];
|
|
29
29
|
extension?: FieldDescriptorProto[];
|
|
30
|
-
options
|
|
31
|
-
sourceCodeInfo
|
|
32
|
-
syntax
|
|
30
|
+
options?: FileOptions;
|
|
31
|
+
sourceCodeInfo?: SourceCodeInfo;
|
|
32
|
+
syntax?: string;
|
|
33
33
|
}
|
|
34
34
|
export interface DescriptorProto {
|
|
35
|
-
name
|
|
35
|
+
name?: string;
|
|
36
36
|
field?: FieldDescriptorProto[];
|
|
37
37
|
extension?: FieldDescriptorProto[];
|
|
38
38
|
nestedType?: DescriptorProto[];
|
|
39
39
|
enumType?: EnumDescriptorProto[];
|
|
40
40
|
extensionRange?: DescriptorProto.ExtensionRange[];
|
|
41
41
|
oneofDecl?: OneofDescriptorProto[];
|
|
42
|
-
options
|
|
42
|
+
options?: MessageOptions;
|
|
43
43
|
reservedRange?: DescriptorProto.ReservedRange[];
|
|
44
44
|
reservedName?: string[];
|
|
45
45
|
}
|
|
46
46
|
export declare namespace DescriptorProto {
|
|
47
47
|
interface ExtensionRange {
|
|
48
|
-
start
|
|
49
|
-
end
|
|
48
|
+
start?: number;
|
|
49
|
+
end?: number;
|
|
50
50
|
}
|
|
51
51
|
interface ReservedRange {
|
|
52
|
-
start
|
|
53
|
-
end
|
|
52
|
+
start?: number;
|
|
53
|
+
end?: number;
|
|
54
54
|
}
|
|
55
55
|
}
|
|
56
56
|
export interface FieldDescriptorProto {
|
|
57
|
-
name
|
|
58
|
-
number
|
|
59
|
-
label
|
|
60
|
-
type
|
|
61
|
-
typeName
|
|
62
|
-
extendee
|
|
63
|
-
defaultValue
|
|
64
|
-
oneofIndex
|
|
65
|
-
jsonName
|
|
66
|
-
options
|
|
57
|
+
name?: string;
|
|
58
|
+
number?: number;
|
|
59
|
+
label?: FieldDescriptorProto.Label;
|
|
60
|
+
type?: FieldDescriptorProto.Type;
|
|
61
|
+
typeName?: string;
|
|
62
|
+
extendee?: string;
|
|
63
|
+
defaultValue?: string;
|
|
64
|
+
oneofIndex?: number;
|
|
65
|
+
jsonName?: string;
|
|
66
|
+
options?: FieldOptions;
|
|
67
67
|
}
|
|
68
68
|
export declare namespace FieldDescriptorProto {
|
|
69
69
|
enum Type {
|
|
@@ -93,55 +93,55 @@ export declare namespace FieldDescriptorProto {
|
|
|
93
93
|
}
|
|
94
94
|
}
|
|
95
95
|
export interface OneofDescriptorProto {
|
|
96
|
-
name
|
|
97
|
-
options
|
|
96
|
+
name?: string;
|
|
97
|
+
options?: OneofOptions;
|
|
98
98
|
}
|
|
99
99
|
export interface EnumDescriptorProto {
|
|
100
|
-
name
|
|
100
|
+
name?: string;
|
|
101
101
|
value?: EnumValueDescriptorProto[];
|
|
102
|
-
options
|
|
102
|
+
options?: EnumOptions;
|
|
103
103
|
}
|
|
104
104
|
export interface EnumValueDescriptorProto {
|
|
105
|
-
name
|
|
106
|
-
number
|
|
107
|
-
options
|
|
105
|
+
name?: string;
|
|
106
|
+
number?: number;
|
|
107
|
+
options?: EnumValueOptions;
|
|
108
108
|
}
|
|
109
109
|
export interface ServiceDescriptorProto {
|
|
110
|
-
name
|
|
110
|
+
name?: string;
|
|
111
111
|
method?: MethodDescriptorProto[];
|
|
112
|
-
options
|
|
112
|
+
options?: ServiceOptions;
|
|
113
113
|
}
|
|
114
114
|
export interface MethodDescriptorProto {
|
|
115
|
-
name
|
|
116
|
-
inputType
|
|
117
|
-
outputType
|
|
118
|
-
options
|
|
119
|
-
clientStreaming
|
|
120
|
-
serverStreaming
|
|
115
|
+
name?: string;
|
|
116
|
+
inputType?: string;
|
|
117
|
+
outputType?: string;
|
|
118
|
+
options?: MethodOptions;
|
|
119
|
+
clientStreaming?: boolean;
|
|
120
|
+
serverStreaming?: boolean;
|
|
121
121
|
}
|
|
122
122
|
export interface FileOptions {
|
|
123
|
-
javaPackage
|
|
124
|
-
javaOuterClassname
|
|
125
|
-
javaMultipleFiles
|
|
123
|
+
javaPackage?: string;
|
|
124
|
+
javaOuterClassname?: string;
|
|
125
|
+
javaMultipleFiles?: boolean;
|
|
126
126
|
/**
|
|
127
127
|
* Options:
|
|
128
128
|
* - deprecated = true
|
|
129
129
|
*/
|
|
130
|
-
javaGenerateEqualsAndHash
|
|
131
|
-
javaStringCheckUtf8
|
|
130
|
+
javaGenerateEqualsAndHash?: boolean;
|
|
131
|
+
javaStringCheckUtf8?: boolean;
|
|
132
132
|
/**
|
|
133
133
|
* Options:
|
|
134
134
|
* - default = "SPEED"
|
|
135
135
|
*/
|
|
136
|
-
optimizeFor
|
|
137
|
-
goPackage
|
|
138
|
-
ccGenericServices
|
|
139
|
-
javaGenericServices
|
|
140
|
-
pyGenericServices
|
|
141
|
-
deprecated
|
|
142
|
-
ccEnableArenas
|
|
143
|
-
objcClassPrefix
|
|
144
|
-
csharpNamespace
|
|
136
|
+
optimizeFor?: FileOptions.OptimizeMode;
|
|
137
|
+
goPackage?: string;
|
|
138
|
+
ccGenericServices?: boolean;
|
|
139
|
+
javaGenericServices?: boolean;
|
|
140
|
+
pyGenericServices?: boolean;
|
|
141
|
+
deprecated?: boolean;
|
|
142
|
+
ccEnableArenas?: boolean;
|
|
143
|
+
objcClassPrefix?: string;
|
|
144
|
+
csharpNamespace?: string;
|
|
145
145
|
uninterpretedOption?: UninterpretedOption[];
|
|
146
146
|
}
|
|
147
147
|
export declare namespace FileOptions {
|
|
@@ -152,10 +152,10 @@ export declare namespace FileOptions {
|
|
|
152
152
|
}
|
|
153
153
|
}
|
|
154
154
|
export interface MessageOptions {
|
|
155
|
-
messageSetWireFormat
|
|
156
|
-
noStandardDescriptorAccessor
|
|
157
|
-
deprecated
|
|
158
|
-
mapEntry
|
|
155
|
+
messageSetWireFormat?: boolean;
|
|
156
|
+
noStandardDescriptorAccessor?: boolean;
|
|
157
|
+
deprecated?: boolean;
|
|
158
|
+
mapEntry?: boolean;
|
|
159
159
|
uninterpretedOption?: UninterpretedOption[];
|
|
160
160
|
}
|
|
161
161
|
export interface FieldOptions {
|
|
@@ -163,16 +163,16 @@ export interface FieldOptions {
|
|
|
163
163
|
* Options:
|
|
164
164
|
* - default = "STRING"
|
|
165
165
|
*/
|
|
166
|
-
ctype
|
|
167
|
-
packed
|
|
166
|
+
ctype?: FieldOptions.CType;
|
|
167
|
+
packed?: boolean;
|
|
168
168
|
/**
|
|
169
169
|
* Options:
|
|
170
170
|
* - default = "JS_NORMAL"
|
|
171
171
|
*/
|
|
172
|
-
jstype
|
|
173
|
-
lazy
|
|
174
|
-
deprecated
|
|
175
|
-
weak
|
|
172
|
+
jstype?: FieldOptions.JSType;
|
|
173
|
+
lazy?: boolean;
|
|
174
|
+
deprecated?: boolean;
|
|
175
|
+
weak?: boolean;
|
|
176
176
|
uninterpretedOption?: UninterpretedOption[];
|
|
177
177
|
}
|
|
178
178
|
export declare namespace FieldOptions {
|
|
@@ -191,30 +191,30 @@ export interface OneofOptions {
|
|
|
191
191
|
uninterpretedOption?: UninterpretedOption[];
|
|
192
192
|
}
|
|
193
193
|
export interface EnumOptions {
|
|
194
|
-
allowAlias
|
|
195
|
-
deprecated
|
|
194
|
+
allowAlias?: boolean;
|
|
195
|
+
deprecated?: boolean;
|
|
196
196
|
uninterpretedOption?: UninterpretedOption[];
|
|
197
197
|
}
|
|
198
198
|
export interface EnumValueOptions {
|
|
199
|
-
deprecated
|
|
199
|
+
deprecated?: boolean;
|
|
200
200
|
uninterpretedOption?: UninterpretedOption[];
|
|
201
201
|
}
|
|
202
202
|
export interface ServiceOptions {
|
|
203
|
-
deprecated
|
|
203
|
+
deprecated?: boolean;
|
|
204
204
|
uninterpretedOption?: UninterpretedOption[];
|
|
205
205
|
}
|
|
206
206
|
export interface MethodOptions {
|
|
207
|
-
deprecated
|
|
207
|
+
deprecated?: boolean;
|
|
208
208
|
uninterpretedOption?: UninterpretedOption[];
|
|
209
209
|
}
|
|
210
210
|
export interface UninterpretedOption {
|
|
211
211
|
name?: UninterpretedOption.NamePart[];
|
|
212
|
-
identifierValue
|
|
213
|
-
positiveIntValue
|
|
214
|
-
negativeIntValue
|
|
215
|
-
doubleValue
|
|
216
|
-
stringValue
|
|
217
|
-
aggregateValue
|
|
212
|
+
identifierValue?: string;
|
|
213
|
+
positiveIntValue?: string;
|
|
214
|
+
negativeIntValue?: string;
|
|
215
|
+
doubleValue?: number;
|
|
216
|
+
stringValue?: Uint8Array;
|
|
217
|
+
aggregateValue?: string;
|
|
218
218
|
}
|
|
219
219
|
export declare namespace UninterpretedOption {
|
|
220
220
|
interface NamePart {
|
|
@@ -229,8 +229,8 @@ export declare namespace SourceCodeInfo {
|
|
|
229
229
|
interface Location {
|
|
230
230
|
path?: number[];
|
|
231
231
|
span?: number[];
|
|
232
|
-
leadingComments
|
|
233
|
-
trailingComments
|
|
232
|
+
leadingComments?: string;
|
|
233
|
+
trailingComments?: string;
|
|
234
234
|
leadingDetachedComments?: string[];
|
|
235
235
|
}
|
|
236
236
|
}
|
|
@@ -240,9 +240,9 @@ export interface GeneratedCodeInfo {
|
|
|
240
240
|
export declare namespace GeneratedCodeInfo {
|
|
241
241
|
interface Annotation {
|
|
242
242
|
path?: number[];
|
|
243
|
-
sourceFile
|
|
244
|
-
begin
|
|
245
|
-
end
|
|
243
|
+
sourceFile?: string;
|
|
244
|
+
begin?: number;
|
|
245
|
+
end?: number;
|
|
246
246
|
}
|
|
247
247
|
}
|
|
248
248
|
//# sourceMappingURL=protobuf.d.ts.map
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"protobuf.d.ts","sourceRoot":"","sources":["../../../../../src/proto/gen/google/protobuf.ts"],"names":[],"mappings":"AAGA,MAAM,WAAW,GAAG;IAChB,QAAQ,EAAE,MAAM,CAAC;
|
|
1
|
+
{"version":3,"file":"protobuf.d.ts","sourceRoot":"","sources":["../../../../../src/proto/gen/google/protobuf.ts"],"names":[],"mappings":"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"}
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"index.d.ts","sourceRoot":"","sources":["../../../../src/proto/gen/index.ts"],"names":[],"mappings":"AAAA,OAAO,EAAE,MAAM,EAAE,MAAM,sBAAsB,CAAC;AAC9C,OAAO,KAAK,WAAW,MAAM,eAAe,CAAC;AAC7C,OAAO,KAAK,eAAe,MAAM,mBAAmB,CAAC;AAErD,MAAM,WAAW,KAAK;IAClB,oBAAoB,EAAE,WAAW,CAAC,MAAM,CAAC;IACzC,oBAAoB,EAAE,WAAW,CAAC,MAAM,CAAC;IACzC,0BAA0B,EAAE,WAAW,CAAC,MAAM,CAAC,KAAK,CAAC;IACrD,qBAAqB,EAAE,WAAW,CAAC,OAAO,CAAC;IAC3C,kBAAkB,EAAE,WAAW,CAAC,IAAI,CAAC;IACrC,qBAAqB,EAAE,WAAW,CAAC,OAAO,CAAC;IAC3C,yBAAyB,EAAE,WAAW,CAAC,OAAO,CAAC,GAAG,CAAC;IACnD,yBAAyB,EAAE,WAAW,CAAC,OAAO,CAAC,GAAG,CAAC;IACnD,kCAAkC,EAAE,WAAW,CAAC,OAAO,CAAC,GAAG,CAAC,QAAQ,CAAC;IACrE,wCAAwC,EAAE,WAAW,CAAC,OAAO,CAAC,GAAG,CAAC,QAAQ,CAAC,KAAK,CAAC;IACjF,iCAAiC,EAAE,WAAW,CAAC,OAAO,CAAC,GAAG,CAAC,OAAO,CAAC;IACnE,4BAA4B,EAAE,WAAW,CAAC,OAAO,CAAC,MAAM,CAAC;IACzD,iCAAiC,EAAE,WAAW,CAAC,OAAO,CAAC,MAAM,CAAC,IAAI,CAAC;IACnE,oCAAoC,EAAE,WAAW,CAAC,OAAO,CAAC,MAAM,CAAC,OAAO,CAAC;IACzE,kDAAkD,EAAE,WAAW,CAAC,OAAO,CAAC,MAAM,CAAC,OAAO,CAAC,aAAa,CAAC;IACrG,2BAA2B,EAAE,WAAW,CAAC,OAAO,CAAC,KAAK,CAAC;IACvD,8BAA8B,EAAE,WAAW,CAAC,OAAO,CAAC,QAAQ,CAAC;IAC7D,wCAAwC,EAAE,WAAW,CAAC,OAAO,CAAC,QAAQ,CAAC,SAAS,CAAC;IACjF,yCAAyC,EAAE,WAAW,CAAC,OAAO,CAAC,QAAQ,CAAC,UAAU,CAAC;IACnF,mCAAmC,EAAE,WAAW,CAAC,OAAO,CAAC,QAAQ,CAAC,IAAI,CAAC;IACvE,kCAAkC,EAAE,WAAW,CAAC,OAAO,CAAC,QAAQ,CAAC,GAAG,CAAC;IACrE,mCAAmC,EAAE,WAAW,CAAC,OAAO,CAAC,QAAQ,CAAC,IAAI,CAAC;IACvE,mCAAmC,EAAE,WAAW,CAAC,OAAO,CAAC,QAAQ,CAAC,IAAI,CAAC;IACvE,6CAA6C,EAAE,WAAW,CAAC,OAAO,CAAC,QAAQ,CAAC,IAAI,CAAC,SAAS,CAAC;IAC3F,sCAAsC,EAAE,WAAW,CAAC,OAAO,CAAC,QAAQ,CAAC,OAAO,CAAC;IAC7E,qCAAqC,EAAE,WAAW,CAAC,OAAO,CAAC,QAAQ,CAAC,MAAM,CAAC;IAC3E,4BAA4B,EAAE,WAAW,CAAC,OAAO,CAAC,MAAM,CAAC;IACzD,qBAAqB,EAAE,eAAe,CAAC,GAAG,CAAC;IAC3C,iCAAiC,EAAE,eAAe,CAAC,eAAe,CAAC;IACnE,gDAAgD,EAAE,eAAe,CAAC,eAAe,CAAC,cAAc,CAAC;IACjG,+CAA+C,EAAE,eAAe,CAAC,eAAe,CAAC,aAAa,CAAC;IAC/F,qCAAqC,EAAE,eAAe,CAAC,mBAAmB,CAAC;IAC3E,6BAA6B,EAAE,eAAe,CAAC,WAAW,CAAC;IAC3D,0CAA0C,EAAE,eAAe,CAAC,wBAAwB,CAAC;IACrF,kCAAkC,EAAE,eAAe,CAAC,gBAAgB,CAAC;IACrE,sCAAsC,EAAE,eAAe,CAAC,oBAAoB,CAAC;IAC7E,4CAA4C,EAAE,eAAe,CAAC,oBAAoB,CAAC,KAAK,CAAC;IACzF,2CAA2C,EAAE,eAAe,CAAC,oBAAoB,CAAC,IAAI,CAAC;IACvF,8BAA8B,EAAE,eAAe,CAAC,YAAY,CAAC;IAC7D,oCAAoC,EAAE,eAAe,CAAC,YAAY,CAAC,KAAK,CAAC;IACzE,qCAAqC,EAAE,eAAe,CAAC,YAAY,CAAC,MAAM,CAAC;IAC3E,qCAAqC,EAAE,eAAe,CAAC,mBAAmB,CAAC;IAC3E,mCAAmC,EAAE,eAAe,CAAC,iBAAiB,CAAC;IACvE,6BAA6B,EAAE,eAAe,CAAC,WAAW,CAAC;IAC3D,0CAA0C,EAAE,eAAe,CAAC,WAAW,CAAC,YAAY,CAAC;IACrF,mCAAmC,EAAE,eAAe,CAAC,iBAAiB,CAAC;IACvE,8CAA8C,EAAE,eAAe,CAAC,iBAAiB,CAAC,UAAU,CAAC;IAC7F,gCAAgC,EAAE,eAAe,CAAC,cAAc,CAAC;IACjE,uCAAuC,EAAE,eAAe,CAAC,qBAAqB,CAAC;IAC/E,+BAA+B,EAAE,eAAe,CAAC,aAAa,CAAC;IAC/D,sCAAsC,EAAE,eAAe,CAAC,oBAAoB,CAAC;IAC7E,8BAA8B,EAAE,eAAe,CAAC,YAAY,CAAC;IAC7D,wCAAwC,EAAE,eAAe,CAAC,sBAAsB,CAAC;IACjF,gCAAgC,EAAE,eAAe,CAAC,cAAc,CAAC;IACjE,gCAAgC,EAAE,eAAe,CAAC,cAAc,CAAC;IACjE,yCAAyC,EAAE,eAAe,CAAC,cAAc,CAAC,QAAQ,CAAC;IACnF,2BAA2B,EAAE,eAAe,CAAC,SAAS,CAAC;IACvD,qCAAqC,EAAE,eAAe,CAAC,mBAAmB,CAAC;IAC3E,8CAA8C,EAAE,eAAe,CAAC,mBAAmB,CAAC,QAAQ,CAAC;CAChG;AACD,MAAM,WAAW,QAAQ;CACxB;AACD,eAAO,MAAM,UAAU,
|
|
1
|
+
{"version":3,"file":"index.d.ts","sourceRoot":"","sources":["../../../../src/proto/gen/index.ts"],"names":[],"mappings":"AAAA,OAAO,EAAE,MAAM,EAAE,MAAM,sBAAsB,CAAC;AAC9C,OAAO,KAAK,WAAW,MAAM,eAAe,CAAC;AAC7C,OAAO,KAAK,eAAe,MAAM,mBAAmB,CAAC;AAErD,MAAM,WAAW,KAAK;IAClB,oBAAoB,EAAE,WAAW,CAAC,MAAM,CAAC;IACzC,oBAAoB,EAAE,WAAW,CAAC,MAAM,CAAC;IACzC,0BAA0B,EAAE,WAAW,CAAC,MAAM,CAAC,KAAK,CAAC;IACrD,qBAAqB,EAAE,WAAW,CAAC,OAAO,CAAC;IAC3C,kBAAkB,EAAE,WAAW,CAAC,IAAI,CAAC;IACrC,qBAAqB,EAAE,WAAW,CAAC,OAAO,CAAC;IAC3C,yBAAyB,EAAE,WAAW,CAAC,OAAO,CAAC,GAAG,CAAC;IACnD,yBAAyB,EAAE,WAAW,CAAC,OAAO,CAAC,GAAG,CAAC;IACnD,kCAAkC,EAAE,WAAW,CAAC,OAAO,CAAC,GAAG,CAAC,QAAQ,CAAC;IACrE,wCAAwC,EAAE,WAAW,CAAC,OAAO,CAAC,GAAG,CAAC,QAAQ,CAAC,KAAK,CAAC;IACjF,iCAAiC,EAAE,WAAW,CAAC,OAAO,CAAC,GAAG,CAAC,OAAO,CAAC;IACnE,4BAA4B,EAAE,WAAW,CAAC,OAAO,CAAC,MAAM,CAAC;IACzD,iCAAiC,EAAE,WAAW,CAAC,OAAO,CAAC,MAAM,CAAC,IAAI,CAAC;IACnE,oCAAoC,EAAE,WAAW,CAAC,OAAO,CAAC,MAAM,CAAC,OAAO,CAAC;IACzE,kDAAkD,EAAE,WAAW,CAAC,OAAO,CAAC,MAAM,CAAC,OAAO,CAAC,aAAa,CAAC;IACrG,2BAA2B,EAAE,WAAW,CAAC,OAAO,CAAC,KAAK,CAAC;IACvD,8BAA8B,EAAE,WAAW,CAAC,OAAO,CAAC,QAAQ,CAAC;IAC7D,wCAAwC,EAAE,WAAW,CAAC,OAAO,CAAC,QAAQ,CAAC,SAAS,CAAC;IACjF,yCAAyC,EAAE,WAAW,CAAC,OAAO,CAAC,QAAQ,CAAC,UAAU,CAAC;IACnF,mCAAmC,EAAE,WAAW,CAAC,OAAO,CAAC,QAAQ,CAAC,IAAI,CAAC;IACvE,kCAAkC,EAAE,WAAW,CAAC,OAAO,CAAC,QAAQ,CAAC,GAAG,CAAC;IACrE,mCAAmC,EAAE,WAAW,CAAC,OAAO,CAAC,QAAQ,CAAC,IAAI,CAAC;IACvE,mCAAmC,EAAE,WAAW,CAAC,OAAO,CAAC,QAAQ,CAAC,IAAI,CAAC;IACvE,6CAA6C,EAAE,WAAW,CAAC,OAAO,CAAC,QAAQ,CAAC,IAAI,CAAC,SAAS,CAAC;IAC3F,sCAAsC,EAAE,WAAW,CAAC,OAAO,CAAC,QAAQ,CAAC,OAAO,CAAC;IAC7E,qCAAqC,EAAE,WAAW,CAAC,OAAO,CAAC,QAAQ,CAAC,MAAM,CAAC;IAC3E,4BAA4B,EAAE,WAAW,CAAC,OAAO,CAAC,MAAM,CAAC;IACzD,qBAAqB,EAAE,eAAe,CAAC,GAAG,CAAC;IAC3C,iCAAiC,EAAE,eAAe,CAAC,eAAe,CAAC;IACnE,gDAAgD,EAAE,eAAe,CAAC,eAAe,CAAC,cAAc,CAAC;IACjG,+CAA+C,EAAE,eAAe,CAAC,eAAe,CAAC,aAAa,CAAC;IAC/F,qCAAqC,EAAE,eAAe,CAAC,mBAAmB,CAAC;IAC3E,6BAA6B,EAAE,eAAe,CAAC,WAAW,CAAC;IAC3D,0CAA0C,EAAE,eAAe,CAAC,wBAAwB,CAAC;IACrF,kCAAkC,EAAE,eAAe,CAAC,gBAAgB,CAAC;IACrE,sCAAsC,EAAE,eAAe,CAAC,oBAAoB,CAAC;IAC7E,4CAA4C,EAAE,eAAe,CAAC,oBAAoB,CAAC,KAAK,CAAC;IACzF,2CAA2C,EAAE,eAAe,CAAC,oBAAoB,CAAC,IAAI,CAAC;IACvF,8BAA8B,EAAE,eAAe,CAAC,YAAY,CAAC;IAC7D,oCAAoC,EAAE,eAAe,CAAC,YAAY,CAAC,KAAK,CAAC;IACzE,qCAAqC,EAAE,eAAe,CAAC,YAAY,CAAC,MAAM,CAAC;IAC3E,qCAAqC,EAAE,eAAe,CAAC,mBAAmB,CAAC;IAC3E,mCAAmC,EAAE,eAAe,CAAC,iBAAiB,CAAC;IACvE,6BAA6B,EAAE,eAAe,CAAC,WAAW,CAAC;IAC3D,0CAA0C,EAAE,eAAe,CAAC,WAAW,CAAC,YAAY,CAAC;IACrF,mCAAmC,EAAE,eAAe,CAAC,iBAAiB,CAAC;IACvE,8CAA8C,EAAE,eAAe,CAAC,iBAAiB,CAAC,UAAU,CAAC;IAC7F,gCAAgC,EAAE,eAAe,CAAC,cAAc,CAAC;IACjE,uCAAuC,EAAE,eAAe,CAAC,qBAAqB,CAAC;IAC/E,+BAA+B,EAAE,eAAe,CAAC,aAAa,CAAC;IAC/D,sCAAsC,EAAE,eAAe,CAAC,oBAAoB,CAAC;IAC7E,8BAA8B,EAAE,eAAe,CAAC,YAAY,CAAC;IAC7D,wCAAwC,EAAE,eAAe,CAAC,sBAAsB,CAAC;IACjF,gCAAgC,EAAE,eAAe,CAAC,cAAc,CAAC;IACjE,gCAAgC,EAAE,eAAe,CAAC,cAAc,CAAC;IACjE,yCAAyC,EAAE,eAAe,CAAC,cAAc,CAAC,QAAQ,CAAC;IACnF,2BAA2B,EAAE,eAAe,CAAC,SAAS,CAAC;IACvD,qCAAqC,EAAE,eAAe,CAAC,mBAAmB,CAAC;IAC3E,8CAA8C,EAAE,eAAe,CAAC,mBAAmB,CAAC,QAAQ,CAAC;CAChG;AACD,MAAM,WAAW,QAAQ;CACxB;AACD,eAAO,MAAM,UAAU,KAAgkiB,CAAC;AACxliB,eAAO,MAAM,MAAM,yBAA8D,CAAC"}
|
|
@@ -6,6 +6,6 @@ Object.defineProperty(exports, "__esModule", { value: true });
|
|
|
6
6
|
exports.schema = exports.schemaJson = void 0;
|
|
7
7
|
const codec_protobuf_1 = require("@dxos/codec-protobuf");
|
|
8
8
|
const substitutions_1 = __importDefault(require("../substitutions"));
|
|
9
|
-
exports.schemaJson = JSON.parse("{\"nested\":{\"dxos\":{\"nested\":{\"config\":{\"nested\":{\"Config\":{\"oneofs\":{\"_version\":{\"oneof\":[\"version\"]},\"_package\":{\"oneof\":[\"package\"]},\"_runtime\":{\"oneof\":[\"runtime\"]}},\"fields\":{\"version\":{\"type\":\"int32\",\"id\":1,\"options\":{\"proto3_optional\":true},\"comment\":null},\"package\":{\"type\":\"Package\",\"id\":2,\"options\":{\"proto3_optional\":true},\"comment\":null},\"runtime\":{\"type\":\"Runtime\",\"id\":3,\"options\":{\"proto3_optional\":true},\"comment\":null}},\"comment\":null},\"Module\":{\"oneofs\":{\"_name\":{\"oneof\":[\"name\"]},\"_type\":{\"oneof\":[\"type\"]},\"_displayName\":{\"oneof\":[\"displayName\"]},\"_description\":{\"oneof\":[\"description\"]},\"_build\":{\"oneof\":[\"build\"]},\"_record\":{\"oneof\":[\"record\"]}},\"fields\":{\"name\":{\"type\":\"string\",\"id\":1,\"options\":{\"proto3_optional\":true},\"comment\":null},\"type\":{\"type\":\"string\",\"id\":2,\"options\":{\"proto3_optional\":true},\"comment\":null},\"displayName\":{\"type\":\"string\",\"id\":3,\"options\":{\"proto3_optional\":true},\"comment\":null},\"description\":{\"type\":\"string\",\"id\":4,\"options\":{\"proto3_optional\":true},\"comment\":null},\"tags\":{\"rule\":\"repeated\",\"type\":\"string\",\"id\":5,\"comment\":null},\"build\":{\"type\":\"Build\",\"id\":100,\"options\":{\"proto3_optional\":true},\"comment\":null},\"repos\":{\"rule\":\"repeated\",\"type\":\"Repo\",\"id\":101,\"comment\":null},\"record\":{\"type\":\"google.protobuf.Any\",\"id\":200,\"options\":{\"proto3_optional\":true},\"comment\":\"The data will be validated based on the type when being published.\"}},\"nested\":{\"Build\":{\"oneofs\":{\"_command\":{\"oneof\":[\"command\"]},\"_outdir\":{\"oneof\":[\"outdir\"]},\"_version\":{\"oneof\":[\"version\"]},\"_tag\":{\"oneof\":[\"tag\"]}},\"fields\":{\"command\":{\"type\":\"string\",\"id\":1,\"options\":{\"proto3_optional\":true},\"comment\":null},\"outdir\":{\"type\":\"string\",\"id\":2,\"options\":{\"proto3_optional\":true},\"comment\":null},\"version\":{\"type\":\"string\",\"id\":3,\"options\":{\"proto3_optional\":true},\"comment\":null},\"tag\":{\"type\":\"string\",\"id\":4,\"options\":{\"proto3_optional\":true},\"comment\":null}},\"comment\":null}},\"comment\":null},\"Package\":{\"oneofs\":{\"_license\":{\"oneof\":[\"license\"]}},\"fields\":{\"license\":{\"type\":\"string\",\"id\":1,\"options\":{\"proto3_optional\":true},\"comment\":null},\"repos\":{\"rule\":\"repeated\",\"type\":\"Repo\",\"id\":2,\"comment\":null},\"modules\":{\"rule\":\"repeated\",\"type\":\"Module\",\"id\":3,\"comment\":null}},\"comment\":null},\"Repo\":{\"oneofs\":{\"_name\":{\"oneof\":[\"name\"]},\"_url\":{\"oneof\":[\"url\"]},\"_version\":{\"oneof\":[\"version\"]}},\"fields\":{\"name\":{\"type\":\"string\",\"id\":1,\"options\":{\"proto3_optional\":true},\"comment\":null},\"url\":{\"type\":\"string\",\"id\":2,\"options\":{\"proto3_optional\":true},\"comment\":null},\"version\":{\"type\":\"string\",\"id\":3,\"options\":{\"proto3_optional\":true},\"comment\":null}},\"comment\":null},\"Runtime\":{\"oneofs\":{\"_client\":{\"oneof\":[\"client\"]},\"_app\":{\"oneof\":[\"app\"]},\"_cli\":{\"oneof\":[\"cli\"]},\"_props\":{\"oneof\":[\"props\"]},\"_services\":{\"oneof\":[\"services\"]},\"_system\":{\"oneof\":[\"system\"]}},\"fields\":{\"client\":{\"type\":\"Client\",\"id\":1,\"options\":{\"proto3_optional\":true},\"comment\":null},\"app\":{\"type\":\"App\",\"id\":2,\"options\":{\"proto3_optional\":true},\"comment\":null},\"cli\":{\"type\":\"CLI\",\"id\":3,\"options\":{\"proto3_optional\":true},\"comment\":null},\"props\":{\"type\":\"Props\",\"id\":4,\"options\":{\"proto3_optional\":true},\"comment\":null},\"services\":{\"type\":\"Services\",\"id\":5,\"options\":{\"proto3_optional\":true},\"comment\":null},\"system\":{\"type\":\"System\",\"id\":6,\"options\":{\"proto3_optional\":true},\"comment\":null}},\"nested\":{\"App\":{\"oneofs\":{\"_org\":{\"oneof\":[\"org\"]},\"_theme\":{\"oneof\":[\"theme\"]},\"_website\":{\"oneof\":[\"website\"]},\"_publicUrl\":{\"oneof\":[\"publicUrl\"]}},\"fields\":{\"org\":{\"type\":\"string\",\"id\":1,\"options\":{\"proto3_optional\":true},\"comment\":null},\"theme\":{\"type\":\"string\",\"id\":2,\"options\":{\"proto3_optional\":true},\"comment\":null},\"website\":{\"type\":\"string\",\"id\":3,\"options\":{\"proto3_optional\":true},\"comment\":null},\"publicUrl\":{\"type\":\"string\",\"id\":4,\"options\":{\"(env)\":\"PUBLIC_URL\",\"proto3_optional\":true},\"comment\":null}},\"comment\":null},\"CLI\":{\"oneofs\":{\"_nodePath\":{\"oneof\":[\"nodePath\"]},\"_app\":{\"oneof\":[\"app\"]},\"_console\":{\"oneof\":[\"console\"]},\"_mdns\":{\"oneof\":[\"mdns\"]},\"_signal\":{\"oneof\":[\"signal\"]},\"_npmClient\":{\"oneof\":[\"npmClient\"]},\"_channel\":{\"oneof\":[\"channel\"]}},\"fields\":{\"nodePath\":{\"type\":\"string\",\"id\":1,\"options\":{\"proto3_optional\":true},\"comment\":null},\"app\":{\"type\":\"AppServe\",\"id\":2,\"options\":{\"proto3_optional\":true},\"comment\":null},\"console\":{\"type\":\"Package\",\"id\":3,\"options\":{\"proto3_optional\":true},\"comment\":null},\"mdns\":{\"type\":\"Package\",\"id\":4,\"options\":{\"proto3_optional\":true},\"comment\":null},\"signal\":{\"type\":\"Package\",\"id\":5,\"options\":{\"proto3_optional\":true},\"comment\":null},\"npmClient\":{\"type\":\"string\",\"id\":6,\"options\":{\"proto3_optional\":true},\"comment\":null},\"channel\":{\"type\":\"string\",\"id\":7,\"options\":{\"proto3_optional\":true},\"comment\":null}},\"nested\":{\"AppServe\":{\"oneofs\":{\"_serve\":{\"oneof\":[\"serve\"]}},\"fields\":{\"serve\":{\"type\":\"Serve\",\"id\":1,\"options\":{\"proto3_optional\":true},\"comment\":null}},\"nested\":{\"Serve\":{\"oneofs\":{\"_config\":{\"oneof\":[\"config\"]},\"_loginApp\":{\"oneof\":[\"loginApp\"]},\"_keyPhrase\":{\"oneof\":[\"keyPhrase\"]}},\"fields\":{\"config\":{\"type\":\"string\",\"id\":1,\"options\":{\"proto3_optional\":true},\"comment\":null},\"loginApp\":{\"type\":\"string\",\"id\":2,\"options\":{\"proto3_optional\":true},\"comment\":null},\"keyPhrase\":{\"type\":\"string\",\"id\":3,\"options\":{\"proto3_optional\":true},\"comment\":null}},\"comment\":null}},\"comment\":null},\"Package\":{\"oneofs\":{\"_package\":{\"oneof\":[\"package\"]},\"_channel\":{\"oneof\":[\"channel\"]},\"_bin\":{\"oneof\":[\"bin\"]},\"_config\":{\"oneof\":[\"config\"]}},\"fields\":{\"package\":{\"type\":\"string\",\"id\":1,\"options\":{\"proto3_optional\":true},\"comment\":null},\"channel\":{\"type\":\"string\",\"id\":2,\"options\":{\"proto3_optional\":true},\"comment\":null},\"bin\":{\"type\":\"string\",\"id\":3,\"options\":{\"proto3_optional\":true},\"comment\":null},\"config\":{\"type\":\"string\",\"id\":4,\"options\":{\"proto3_optional\":true},\"comment\":null}},\"comment\":null}},\"comment\":null},\"Client\":{\"oneofs\":{\"_debug\":{\"oneof\":[\"debug\"]},\"_storage\":{\"oneof\":[\"storage\"]},\"_enableSnapshots\":{\"oneof\":[\"enableSnapshots\"]},\"_snapshotInterval\":{\"oneof\":[\"snapshotInterval\"]},\"_invitationExpiration\":{\"oneof\":[\"invitationExpiration\"]},\"_mode\":{\"oneof\":[\"mode\"]}},\"fields\":{\"debug\":{\"type\":\"string\",\"id\":1,\"options\":{\"(env)\":\"DEBUG\",\"proto3_optional\":true},\"comment\":null},\"storage\":{\"type\":\"Storage\",\"id\":2,\"options\":{\"proto3_optional\":true},\"comment\":null},\"enableSnapshots\":{\"type\":\"bool\",\"id\":3,\"options\":{\"proto3_optional\":true},\"comment\":null},\"snapshotInterval\":{\"type\":\"int32\",\"id\":4,\"options\":{\"proto3_optional\":true},\"comment\":\"Milliseconds\"},\"invitationExpiration\":{\"type\":\"int32\",\"id\":5,\"options\":{\"proto3_optional\":true},\"comment\":\"Milliseconds\"},\"mode\":{\"type\":\"Mode\",\"id\":6,\"options\":{\"proto3_optional\":true},\"comment\":null}},\"nested\":{\"Mode\":{\"values\":{\"AUTOMATIC\":0,\"LOCAL\":1,\"REMOTE\":2},\"comment\":\"Whether the client services are local with ClientServiceHost or remote and need to be accessed via ClientServiceProxy. Defaults to AUTOMATIC.\",\"comments\":{\"AUTOMATIC\":\"Connects to the browser wallet if avialable, otherwise runs services in the local mode.\",\"LOCAL\":\"Run services in the local mode.\",\"REMOTE\":\"Connect to the browser wallet or to the remote services through the RPC port.\"}},\"Storage\":{\"oneofs\":{\"_persistent\":{\"oneof\":[\"persistent\"]},\"_storageType\":{\"oneof\":[\"storageType\"]},\"_keyStorage\":{\"oneof\":[\"keyStorage\"]},\"_path\":{\"oneof\":[\"path\"]}},\"fields\":{\"persistent\":{\"type\":\"bool\",\"id\":1,\"options\":{\"proto3_optional\":true},\"comment\":null},\"storageType\":{\"type\":\"StorageDriver\",\"id\":2,\"options\":{\"proto3_optional\":true},\"comment\":null},\"keyStorage\":{\"type\":\"StorageDriver\",\"id\":3,\"options\":{\"proto3_optional\":true},\"comment\":null},\"path\":{\"type\":\"string\",\"id\":4,\"options\":{\"proto3_optional\":true},\"comment\":null}},\"nested\":{\"StorageDriver\":{\"values\":{\"RAM\":0,\"IDB\":1,\"CHROME\":2,\"FIREFOX\":3,\"NODE\":4,\"LEVELJS\":11,\"JSONDOWN\":12},\"comment\":null,\"comments\":{\"RAM\":null,\"IDB\":null,\"CHROME\":null,\"FIREFOX\":null,\"NODE\":null,\"LEVELJS\":null,\"JSONDOWN\":null}}},\"comment\":null}},\"comment\":null},\"Props\":{\"oneofs\":{\"_title\":{\"oneof\":[\"title\"]}},\"fields\":{\"title\":{\"type\":\"string\",\"id\":1,\"options\":{\"proto3_optional\":true},\"comment\":null}},\"comment\":null},\"Services\":{\"oneofs\":{\"_kube\":{\"oneof\":[\"kube\"]},\"_app\":{\"oneof\":[\"app\"]},\"_dxns\":{\"oneof\":[\"dxns\"]},\"_ipfs\":{\"oneof\":[\"ipfs\"]},\"_signal\":{\"oneof\":[\"signal\"]},\"_machine\":{\"oneof\":[\"machine\"]},\"_bot\":{\"oneof\":[\"bot\"]}},\"fields\":{\"kube\":{\"type\":\"Kube\",\"id\":1,\"options\":{\"proto3_optional\":true},\"comment\":null},\"app\":{\"type\":\"AppServer\",\"id\":2,\"options\":{\"proto3_optional\":true},\"comment\":null},\"dxns\":{\"type\":\"Dxns\",\"id\":3,\"options\":{\"proto3_optional\":true},\"comment\":null},\"ipfs\":{\"type\":\"Ipfs\",\"id\":4,\"options\":{\"proto3_optional\":true},\"comment\":null},\"signal\":{\"type\":\"Signal\",\"id\":5,\"options\":{\"proto3_optional\":true},\"comment\":null},\"ice\":{\"rule\":\"repeated\",\"type\":\"Ice\",\"id\":6,\"comment\":null},\"machine\":{\"type\":\"Machine\",\"id\":7,\"options\":{\"proto3_optional\":true},\"comment\":null},\"bot\":{\"type\":\"BotFactory\",\"id\":8,\"options\":{\"proto3_optional\":true},\"comment\":null}},\"nested\":{\"AppServer\":{\"oneofs\":{\"_prefix\":{\"oneof\":[\"prefix\"]},\"_server\":{\"oneof\":[\"server\"]}},\"fields\":{\"prefix\":{\"type\":\"string\",\"id\":1,\"options\":{\"proto3_optional\":true},\"comment\":null},\"server\":{\"type\":\"string\",\"id\":2,\"options\":{\"proto3_optional\":true},\"comment\":null}},\"comment\":null},\"BotFactory\":{\"oneofs\":{\"_topic\":{\"oneof\":[\"topic\"]},\"_persistent\":{\"oneof\":[\"persistent\"]},\"_retryAttempts\":{\"oneof\":[\"retryAttempts\"]},\"_retryInterval\":{\"oneof\":[\"retryInterval\"]}},\"fields\":{\"topic\":{\"type\":\"string\",\"id\":1,\"options\":{\"proto3_optional\":true},\"comment\":null},\"persistent\":{\"type\":\"bool\",\"id\":2,\"options\":{\"proto3_optional\":true},\"comment\":null},\"retryAttempts\":{\"type\":\"int32\",\"id\":3,\"options\":{\"proto3_optional\":true},\"comment\":null},\"retryInterval\":{\"type\":\"int32\",\"id\":4,\"options\":{\"proto3_optional\":true},\"comment\":null}},\"comment\":null},\"Dxns\":{\"oneofs\":{\"_server\":{\"oneof\":[\"server\"]},\"_accountUri\":{\"oneof\":[\"accountUri\"]},\"_address\":{\"oneof\":[\"address\"]},\"_account\":{\"oneof\":[\"account\"]},\"_faucet\":{\"oneof\":[\"faucet\"]}},\"fields\":{\"server\":{\"type\":\"string\",\"id\":1,\"options\":{\"proto3_optional\":true},\"comment\":\"DXNS endpoint.\"},\"accountUri\":{\"type\":\"string\",\"id\":2,\"options\":{\"proto3_optional\":true},\"comment\":\"Substrate account URI. This is a secret.\\nKUBEs do not serve this with the config but we store it in profile.yml.\\n\\nTODO(dmaretskyi): Deprecate this and move it to keyring.\"},\"address\":{\"type\":\"string\",\"id\":3,\"options\":{\"proto3_optional\":true},\"comment\":\"Public Polkadot Address.\"},\"account\":{\"type\":\"string\",\"id\":4,\"options\":{\"proto3_optional\":true},\"comment\":\"Public address of a DXNS Account.\"},\"faucet\":{\"type\":\"string\",\"id\":5,\"options\":{\"proto3_optional\":true},\"comment\":null}},\"comment\":null},\"Ice\":{\"oneofs\":{\"_urls\":{\"oneof\":[\"urls\"]},\"_username\":{\"oneof\":[\"username\"]},\"_credential\":{\"oneof\":[\"credential\"]}},\"fields\":{\"urls\":{\"type\":\"string\",\"id\":1,\"options\":{\"proto3_optional\":true},\"comment\":null},\"username\":{\"type\":\"string\",\"id\":2,\"options\":{\"proto3_optional\":true},\"comment\":null},\"credential\":{\"type\":\"string\",\"id\":3,\"options\":{\"proto3_optional\":true},\"comment\":null}},\"comment\":null},\"Ipfs\":{\"oneofs\":{\"_server\":{\"oneof\":[\"server\"]},\"_gateway\":{\"oneof\":[\"gateway\"]}},\"fields\":{\"server\":{\"type\":\"string\",\"id\":1,\"options\":{\"proto3_optional\":true},\"comment\":null},\"gateway\":{\"type\":\"string\",\"id\":2,\"options\":{\"proto3_optional\":true},\"comment\":null}},\"comment\":null},\"Kube\":{\"oneofs\":{\"_endpoints\":{\"oneof\":[\"endpoints\"]},\"_publicUrl\":{\"oneof\":[\"publicUrl\"]}},\"fields\":{\"endpoints\":{\"type\":\"Endpoints\",\"id\":1,\"options\":{\"proto3_optional\":true},\"comment\":null},\"publicUrl\":{\"type\":\"string\",\"id\":2,\"options\":{\"proto3_optional\":true},\"comment\":null}},\"nested\":{\"Endpoints\":{\"oneofs\":{\"_logs\":{\"oneof\":[\"logs\"]},\"_services\":{\"oneof\":[\"services\"]},\"_cert\":{\"oneof\":[\"cert\"]}},\"fields\":{\"logs\":{\"type\":\"string\",\"id\":1,\"options\":{\"proto3_optional\":true},\"comment\":null},\"services\":{\"type\":\"string\",\"id\":2,\"options\":{\"proto3_optional\":true},\"comment\":null},\"cert\":{\"type\":\"string\",\"id\":3,\"options\":{\"proto3_optional\":true},\"comment\":null}},\"comment\":null}},\"comment\":null},\"Machine\":{\"oneofs\":{\"_doAccessToken\":{\"oneof\":[\"doAccessToken\"]},\"_githubAccessToken\":{\"oneof\":[\"githubAccessToken\"]},\"_githubUsername\":{\"oneof\":[\"githubUsername\"]},\"_dnsDomain\":{\"oneof\":[\"dnsDomain\"]},\"_npmAccessToken\":{\"oneof\":[\"npmAccessToken\"]}},\"fields\":{\"doAccessToken\":{\"type\":\"string\",\"id\":1,\"options\":{\"proto3_optional\":true},\"comment\":null},\"githubAccessToken\":{\"type\":\"string\",\"id\":2,\"options\":{\"proto3_optional\":true},\"comment\":null},\"githubUsername\":{\"type\":\"string\",\"id\":3,\"options\":{\"proto3_optional\":true},\"comment\":null},\"dnsDomain\":{\"type\":\"string\",\"id\":4,\"options\":{\"proto3_optional\":true},\"comment\":null},\"npmAccessToken\":{\"type\":\"string\",\"id\":5,\"options\":{\"proto3_optional\":true},\"comment\":null}},\"comment\":null},\"Signal\":{\"oneofs\":{\"_server\":{\"oneof\":[\"server\"]},\"_api\":{\"oneof\":[\"api\"]},\"_status\":{\"oneof\":[\"status\"]}},\"fields\":{\"server\":{\"type\":\"string\",\"id\":1,\"options\":{\"proto3_optional\":true},\"comment\":null},\"api\":{\"type\":\"string\",\"id\":2,\"options\":{\"proto3_optional\":true},\"comment\":null},\"status\":{\"type\":\"string\",\"id\":3,\"options\":{\"proto3_optional\":true},\"comment\":null}},\"comment\":null}},\"comment\":null},\"System\":{\"oneofs\":{\"_debug\":{\"oneof\":[\"debug\"]}},\"fields\":{\"debug\":{\"type\":\"string\",\"id\":1,\"options\":{\"proto3_optional\":true},\"comment\":null}},\"comment\":null}},\"comment\":null}}}}},\"google\":{\"nested\":{\"protobuf\":{\"nested\":{\"Any\":{\"fields\":{\"type_url\":{\"type\":\"string\",\"id\":1},\"value\":{\"type\":\"bytes\",\"id\":2}},\"comment\":null},\"DescriptorProto\":{\"fields\":{\"name\":{\"type\":\"string\",\"id\":1},\"field\":{\"rule\":\"repeated\",\"type\":\"FieldDescriptorProto\",\"id\":2},\"extension\":{\"rule\":\"repeated\",\"type\":\"FieldDescriptorProto\",\"id\":6},\"nestedType\":{\"rule\":\"repeated\",\"type\":\"DescriptorProto\",\"id\":3},\"enumType\":{\"rule\":\"repeated\",\"type\":\"EnumDescriptorProto\",\"id\":4},\"extensionRange\":{\"rule\":\"repeated\",\"type\":\"ExtensionRange\",\"id\":5},\"oneofDecl\":{\"rule\":\"repeated\",\"type\":\"OneofDescriptorProto\",\"id\":8},\"options\":{\"type\":\"MessageOptions\",\"id\":7},\"reservedRange\":{\"rule\":\"repeated\",\"type\":\"ReservedRange\",\"id\":9},\"reservedName\":{\"rule\":\"repeated\",\"type\":\"string\",\"id\":10}},\"nested\":{\"ExtensionRange\":{\"fields\":{\"start\":{\"type\":\"int32\",\"id\":1},\"end\":{\"type\":\"int32\",\"id\":2}},\"comment\":null},\"ReservedRange\":{\"fields\":{\"start\":{\"type\":\"int32\",\"id\":1},\"end\":{\"type\":\"int32\",\"id\":2}},\"comment\":null}},\"comment\":null},\"EnumDescriptorProto\":{\"fields\":{\"name\":{\"type\":\"string\",\"id\":1},\"value\":{\"rule\":\"repeated\",\"type\":\"EnumValueDescriptorProto\",\"id\":2},\"options\":{\"type\":\"EnumOptions\",\"id\":3}},\"comment\":null},\"EnumOptions\":{\"fields\":{\"allowAlias\":{\"type\":\"bool\",\"id\":2},\"deprecated\":{\"type\":\"bool\",\"id\":3},\"uninterpretedOption\":{\"rule\":\"repeated\",\"type\":\"UninterpretedOption\",\"id\":999}},\"extensions\":[[1000,536870911]],\"comment\":null},\"EnumValueDescriptorProto\":{\"fields\":{\"name\":{\"type\":\"string\",\"id\":1},\"number\":{\"type\":\"int32\",\"id\":2},\"options\":{\"type\":\"EnumValueOptions\",\"id\":3}},\"comment\":null},\"EnumValueOptions\":{\"fields\":{\"deprecated\":{\"type\":\"bool\",\"id\":1},\"uninterpretedOption\":{\"rule\":\"repeated\",\"type\":\"UninterpretedOption\",\"id\":999}},\"extensions\":[[1000,536870911]],\"comment\":null},\"FieldDescriptorProto\":{\"fields\":{\"name\":{\"type\":\"string\",\"id\":1},\"number\":{\"type\":\"int32\",\"id\":3},\"label\":{\"type\":\"Label\",\"id\":4},\"type\":{\"type\":\"Type\",\"id\":5},\"typeName\":{\"type\":\"string\",\"id\":6},\"extendee\":{\"type\":\"string\",\"id\":2},\"defaultValue\":{\"type\":\"string\",\"id\":7},\"oneofIndex\":{\"type\":\"int32\",\"id\":9},\"jsonName\":{\"type\":\"string\",\"id\":10},\"options\":{\"type\":\"FieldOptions\",\"id\":8}},\"nested\":{\"Label\":{\"values\":{\"LABEL_OPTIONAL\":1,\"LABEL_REQUIRED\":2,\"LABEL_REPEATED\":3},\"comments\":{}},\"Type\":{\"values\":{\"TYPE_DOUBLE\":1,\"TYPE_FLOAT\":2,\"TYPE_INT64\":3,\"TYPE_UINT64\":4,\"TYPE_INT32\":5,\"TYPE_FIXED64\":6,\"TYPE_FIXED32\":7,\"TYPE_BOOL\":8,\"TYPE_STRING\":9,\"TYPE_GROUP\":10,\"TYPE_MESSAGE\":11,\"TYPE_BYTES\":12,\"TYPE_UINT32\":13,\"TYPE_ENUM\":14,\"TYPE_SFIXED32\":15,\"TYPE_SFIXED64\":16,\"TYPE_SINT32\":17,\"TYPE_SINT64\":18},\"comments\":{}}},\"comment\":null},\"FieldOptions\":{\"fields\":{\"ctype\":{\"type\":\"CType\",\"id\":1,\"options\":{\"default\":\"STRING\"}},\"packed\":{\"type\":\"bool\",\"id\":2},\"jstype\":{\"type\":\"JSType\",\"id\":6,\"options\":{\"default\":\"JS_NORMAL\"}},\"lazy\":{\"type\":\"bool\",\"id\":5},\"deprecated\":{\"type\":\"bool\",\"id\":3},\"weak\":{\"type\":\"bool\",\"id\":10},\"uninterpretedOption\":{\"rule\":\"repeated\",\"type\":\"UninterpretedOption\",\"id\":999}},\"extensions\":[[1000,536870911]],\"reserved\":[[4,4]],\"nested\":{\"CType\":{\"values\":{\"STRING\":0,\"CORD\":1,\"STRING_PIECE\":2},\"comments\":{}},\"JSType\":{\"values\":{\"JS_NORMAL\":0,\"JS_STRING\":1,\"JS_NUMBER\":2},\"comments\":{}}},\"comment\":null},\"FileDescriptorProto\":{\"fields\":{\"name\":{\"type\":\"string\",\"id\":1},\"package\":{\"type\":\"string\",\"id\":2},\"dependency\":{\"rule\":\"repeated\",\"type\":\"string\",\"id\":3},\"publicDependency\":{\"rule\":\"repeated\",\"type\":\"int32\",\"id\":10,\"options\":{\"packed\":false}},\"weakDependency\":{\"rule\":\"repeated\",\"type\":\"int32\",\"id\":11,\"options\":{\"packed\":false}},\"messageType\":{\"rule\":\"repeated\",\"type\":\"DescriptorProto\",\"id\":4},\"enumType\":{\"rule\":\"repeated\",\"type\":\"EnumDescriptorProto\",\"id\":5},\"service\":{\"rule\":\"repeated\",\"type\":\"ServiceDescriptorProto\",\"id\":6},\"extension\":{\"rule\":\"repeated\",\"type\":\"FieldDescriptorProto\",\"id\":7},\"options\":{\"type\":\"FileOptions\",\"id\":8},\"sourceCodeInfo\":{\"type\":\"SourceCodeInfo\",\"id\":9},\"syntax\":{\"type\":\"string\",\"id\":12}},\"comment\":null},\"FileDescriptorSet\":{\"fields\":{\"file\":{\"rule\":\"repeated\",\"type\":\"FileDescriptorProto\",\"id\":1}},\"comment\":null},\"FileOptions\":{\"fields\":{\"javaPackage\":{\"type\":\"string\",\"id\":1},\"javaOuterClassname\":{\"type\":\"string\",\"id\":8},\"javaMultipleFiles\":{\"type\":\"bool\",\"id\":10},\"javaGenerateEqualsAndHash\":{\"type\":\"bool\",\"id\":20,\"options\":{\"deprecated\":true}},\"javaStringCheckUtf8\":{\"type\":\"bool\",\"id\":27},\"optimizeFor\":{\"type\":\"OptimizeMode\",\"id\":9,\"options\":{\"default\":\"SPEED\"}},\"goPackage\":{\"type\":\"string\",\"id\":11},\"ccGenericServices\":{\"type\":\"bool\",\"id\":16},\"javaGenericServices\":{\"type\":\"bool\",\"id\":17},\"pyGenericServices\":{\"type\":\"bool\",\"id\":18},\"deprecated\":{\"type\":\"bool\",\"id\":23},\"ccEnableArenas\":{\"type\":\"bool\",\"id\":31},\"objcClassPrefix\":{\"type\":\"string\",\"id\":36},\"csharpNamespace\":{\"type\":\"string\",\"id\":37},\"uninterpretedOption\":{\"rule\":\"repeated\",\"type\":\"UninterpretedOption\",\"id\":999}},\"extensions\":[[1000,536870911]],\"reserved\":[[38,38]],\"nested\":{\"OptimizeMode\":{\"values\":{\"SPEED\":1,\"CODE_SIZE\":2,\"LITE_RUNTIME\":3},\"comments\":{}}},\"comment\":null},\"GeneratedCodeInfo\":{\"fields\":{\"annotation\":{\"rule\":\"repeated\",\"type\":\"Annotation\",\"id\":1}},\"nested\":{\"Annotation\":{\"fields\":{\"path\":{\"rule\":\"repeated\",\"type\":\"int32\",\"id\":1},\"sourceFile\":{\"type\":\"string\",\"id\":2},\"begin\":{\"type\":\"int32\",\"id\":3},\"end\":{\"type\":\"int32\",\"id\":4}},\"comment\":null}},\"comment\":null},\"MessageOptions\":{\"fields\":{\"messageSetWireFormat\":{\"type\":\"bool\",\"id\":1},\"noStandardDescriptorAccessor\":{\"type\":\"bool\",\"id\":2},\"deprecated\":{\"type\":\"bool\",\"id\":3},\"mapEntry\":{\"type\":\"bool\",\"id\":7},\"uninterpretedOption\":{\"rule\":\"repeated\",\"type\":\"UninterpretedOption\",\"id\":999}},\"extensions\":[[1000,536870911]],\"reserved\":[[8,8]],\"comment\":null},\"MethodDescriptorProto\":{\"fields\":{\"name\":{\"type\":\"string\",\"id\":1},\"inputType\":{\"type\":\"string\",\"id\":2},\"outputType\":{\"type\":\"string\",\"id\":3},\"options\":{\"type\":\"MethodOptions\",\"id\":4},\"clientStreaming\":{\"type\":\"bool\",\"id\":5},\"serverStreaming\":{\"type\":\"bool\",\"id\":6}},\"comment\":null},\"MethodOptions\":{\"fields\":{\"deprecated\":{\"type\":\"bool\",\"id\":33},\"uninterpretedOption\":{\"rule\":\"repeated\",\"type\":\"UninterpretedOption\",\"id\":999}},\"extensions\":[[1000,536870911]],\"comment\":null},\"OneofDescriptorProto\":{\"fields\":{\"name\":{\"type\":\"string\",\"id\":1},\"options\":{\"type\":\"OneofOptions\",\"id\":2}},\"comment\":null},\"OneofOptions\":{\"fields\":{\"uninterpretedOption\":{\"rule\":\"repeated\",\"type\":\"UninterpretedOption\",\"id\":999}},\"extensions\":[[1000,536870911]],\"comment\":null},\"ServiceDescriptorProto\":{\"fields\":{\"name\":{\"type\":\"string\",\"id\":1},\"method\":{\"rule\":\"repeated\",\"type\":\"MethodDescriptorProto\",\"id\":2},\"options\":{\"type\":\"ServiceOptions\",\"id\":3}},\"comment\":null},\"ServiceOptions\":{\"fields\":{\"deprecated\":{\"type\":\"bool\",\"id\":33},\"uninterpretedOption\":{\"rule\":\"repeated\",\"type\":\"UninterpretedOption\",\"id\":999}},\"extensions\":[[1000,536870911]],\"comment\":null},\"SourceCodeInfo\":{\"fields\":{\"location\":{\"rule\":\"repeated\",\"type\":\"Location\",\"id\":1}},\"nested\":{\"Location\":{\"fields\":{\"path\":{\"rule\":\"repeated\",\"type\":\"int32\",\"id\":1},\"span\":{\"rule\":\"repeated\",\"type\":\"int32\",\"id\":2},\"leadingComments\":{\"type\":\"string\",\"id\":3},\"trailingComments\":{\"type\":\"string\",\"id\":4},\"leadingDetachedComments\":{\"rule\":\"repeated\",\"type\":\"string\",\"id\":6}},\"comment\":null}},\"comment\":null},\"Timestamp\":{\"fields\":{\"seconds\":{\"type\":\"int64\",\"id\":1},\"nanos\":{\"type\":\"int32\",\"id\":2}},\"comment\":null},\"UninterpretedOption\":{\"fields\":{\"name\":{\"rule\":\"repeated\",\"type\":\"NamePart\",\"id\":2},\"identifierValue\":{\"type\":\"string\",\"id\":3},\"positiveIntValue\":{\"type\":\"uint64\",\"id\":4},\"negativeIntValue\":{\"type\":\"int64\",\"id\":5},\"doubleValue\":{\"type\":\"double\",\"id\":6},\"stringValue\":{\"type\":\"bytes\",\"id\":7},\"aggregateValue\":{\"type\":\"string\",\"id\":8}},\"nested\":{\"NamePart\":{\"fields\":{\"namePart\":{\"rule\":\"required\",\"type\":\"string\",\"id\":1},\"isExtension\":{\"rule\":\"required\",\"type\":\"bool\",\"id\":2}},\"comment\":null}},\"comment\":null}}}}}}}");
|
|
9
|
+
exports.schemaJson = JSON.parse("{\"nested\":{\"dxos\":{\"nested\":{\"config\":{\"nested\":{\"Config\":{\"fields\":{\"version\":{\"type\":\"int32\",\"id\":1,\"comment\":null},\"package\":{\"type\":\"Package\",\"id\":2,\"comment\":null},\"runtime\":{\"type\":\"Runtime\",\"id\":3,\"comment\":null}},\"comment\":null},\"Module\":{\"fields\":{\"name\":{\"type\":\"string\",\"id\":1,\"comment\":null},\"type\":{\"type\":\"string\",\"id\":2,\"comment\":null},\"displayName\":{\"type\":\"string\",\"id\":3,\"comment\":null},\"description\":{\"type\":\"string\",\"id\":4,\"comment\":null},\"tags\":{\"rule\":\"repeated\",\"type\":\"string\",\"id\":5,\"comment\":null},\"build\":{\"type\":\"Build\",\"id\":100,\"comment\":null},\"repos\":{\"rule\":\"repeated\",\"type\":\"Repo\",\"id\":101,\"comment\":null},\"record\":{\"type\":\"google.protobuf.Any\",\"id\":200,\"comment\":\"The data will be validated based on the type when being published.\"}},\"nested\":{\"Build\":{\"fields\":{\"command\":{\"type\":\"string\",\"id\":1,\"comment\":null},\"outdir\":{\"type\":\"string\",\"id\":2,\"comment\":null},\"version\":{\"type\":\"string\",\"id\":3,\"comment\":null},\"tag\":{\"type\":\"string\",\"id\":4,\"comment\":null}},\"comment\":null}},\"comment\":null},\"Package\":{\"fields\":{\"license\":{\"type\":\"string\",\"id\":1,\"comment\":null},\"repos\":{\"rule\":\"repeated\",\"type\":\"Repo\",\"id\":2,\"comment\":null},\"modules\":{\"rule\":\"repeated\",\"type\":\"Module\",\"id\":3,\"comment\":null}},\"comment\":null},\"Repo\":{\"fields\":{\"name\":{\"type\":\"string\",\"id\":1,\"comment\":null},\"url\":{\"type\":\"string\",\"id\":2,\"comment\":null},\"version\":{\"type\":\"string\",\"id\":3,\"comment\":null}},\"comment\":null},\"Runtime\":{\"fields\":{\"client\":{\"type\":\"Client\",\"id\":1,\"comment\":null},\"app\":{\"type\":\"App\",\"id\":2,\"comment\":null},\"cli\":{\"type\":\"CLI\",\"id\":3,\"comment\":null},\"props\":{\"type\":\"Props\",\"id\":4,\"comment\":null},\"services\":{\"type\":\"Services\",\"id\":5,\"comment\":null},\"system\":{\"type\":\"System\",\"id\":6,\"comment\":null}},\"nested\":{\"App\":{\"fields\":{\"org\":{\"type\":\"string\",\"id\":1,\"comment\":null},\"theme\":{\"type\":\"string\",\"id\":2,\"comment\":null},\"website\":{\"type\":\"string\",\"id\":3,\"comment\":null},\"publicUrl\":{\"type\":\"string\",\"id\":4,\"options\":{\"(env)\":\"PUBLIC_URL\"},\"comment\":null}},\"comment\":null},\"CLI\":{\"fields\":{\"nodePath\":{\"type\":\"string\",\"id\":1,\"comment\":null},\"app\":{\"type\":\"AppServe\",\"id\":2,\"comment\":null},\"console\":{\"type\":\"Package\",\"id\":3,\"comment\":null},\"mdns\":{\"type\":\"Package\",\"id\":4,\"comment\":null},\"signal\":{\"type\":\"Package\",\"id\":5,\"comment\":null},\"npmClient\":{\"type\":\"string\",\"id\":6,\"comment\":null},\"channel\":{\"type\":\"string\",\"id\":7,\"comment\":null}},\"nested\":{\"AppServe\":{\"fields\":{\"serve\":{\"type\":\"Serve\",\"id\":1,\"comment\":null}},\"nested\":{\"Serve\":{\"fields\":{\"config\":{\"type\":\"string\",\"id\":1,\"comment\":null},\"loginApp\":{\"type\":\"string\",\"id\":2,\"comment\":null},\"keyPhrase\":{\"type\":\"string\",\"id\":3,\"comment\":null}},\"comment\":null}},\"comment\":null},\"Package\":{\"fields\":{\"package\":{\"type\":\"string\",\"id\":1,\"comment\":null},\"channel\":{\"type\":\"string\",\"id\":2,\"comment\":null},\"bin\":{\"type\":\"string\",\"id\":3,\"comment\":null},\"config\":{\"type\":\"string\",\"id\":4,\"comment\":null}},\"comment\":null}},\"comment\":null},\"Client\":{\"fields\":{\"debug\":{\"type\":\"string\",\"id\":1,\"options\":{\"(env)\":\"DEBUG\"},\"comment\":null},\"storage\":{\"type\":\"Storage\",\"id\":2,\"comment\":null},\"enableSnapshots\":{\"type\":\"bool\",\"id\":3,\"comment\":null},\"snapshotInterval\":{\"type\":\"int32\",\"id\":4,\"comment\":\"Milliseconds\"},\"invitationExpiration\":{\"type\":\"int32\",\"id\":5,\"comment\":\"Milliseconds\"},\"mode\":{\"type\":\"Mode\",\"id\":6,\"comment\":null}},\"nested\":{\"Mode\":{\"values\":{\"AUTOMATIC\":0,\"LOCAL\":1,\"REMOTE\":2},\"comment\":\"Whether the client services are local with ClientServiceHost or remote and need to be accessed via ClientServiceProxy. Defaults to AUTOMATIC.\",\"comments\":{\"AUTOMATIC\":\"Connects to the browser wallet if avialable, otherwise runs services in the local mode.\",\"LOCAL\":\"Run services in the local mode.\",\"REMOTE\":\"Connect to the browser wallet or to the remote services through the RPC port.\"}},\"Storage\":{\"fields\":{\"persistent\":{\"type\":\"bool\",\"id\":1,\"comment\":null},\"storageType\":{\"type\":\"StorageDriver\",\"id\":2,\"comment\":null},\"keyStorage\":{\"type\":\"StorageDriver\",\"id\":3,\"comment\":null},\"path\":{\"type\":\"string\",\"id\":4,\"comment\":null}},\"nested\":{\"StorageDriver\":{\"values\":{\"RAM\":0,\"IDB\":1,\"CHROME\":2,\"FIREFOX\":3,\"NODE\":4,\"LEVELJS\":11,\"JSONDOWN\":12},\"comment\":null,\"comments\":{\"RAM\":null,\"IDB\":null,\"CHROME\":null,\"FIREFOX\":null,\"NODE\":null,\"LEVELJS\":null,\"JSONDOWN\":null}}},\"comment\":null}},\"comment\":null},\"Props\":{\"fields\":{\"title\":{\"type\":\"string\",\"id\":1,\"comment\":null}},\"comment\":null},\"Services\":{\"fields\":{\"kube\":{\"type\":\"Kube\",\"id\":1,\"comment\":null},\"app\":{\"type\":\"AppServer\",\"id\":2,\"comment\":null},\"dxns\":{\"type\":\"Dxns\",\"id\":3,\"comment\":null},\"ipfs\":{\"type\":\"Ipfs\",\"id\":4,\"comment\":null},\"signal\":{\"type\":\"Signal\",\"id\":5,\"comment\":null},\"ice\":{\"rule\":\"repeated\",\"type\":\"Ice\",\"id\":6,\"comment\":null},\"machine\":{\"type\":\"Machine\",\"id\":7,\"comment\":null},\"bot\":{\"type\":\"BotFactory\",\"id\":8,\"comment\":null}},\"nested\":{\"AppServer\":{\"fields\":{\"prefix\":{\"type\":\"string\",\"id\":1,\"comment\":null},\"server\":{\"type\":\"string\",\"id\":2,\"comment\":null}},\"comment\":null},\"BotFactory\":{\"fields\":{\"topic\":{\"type\":\"string\",\"id\":1,\"comment\":null},\"persistent\":{\"type\":\"bool\",\"id\":2,\"comment\":null},\"retryAttempts\":{\"type\":\"int32\",\"id\":3,\"comment\":null},\"retryInterval\":{\"type\":\"int32\",\"id\":4,\"comment\":null}},\"comment\":null},\"Dxns\":{\"fields\":{\"server\":{\"type\":\"string\",\"id\":1,\"comment\":\"DXNS endpoint.\"},\"accountUri\":{\"type\":\"string\",\"id\":2,\"comment\":\"Substrate account URI. This is a secret.\\nKUBEs do not serve this with the config but we store it in profile.yml.\\n\\nTODO(dmaretskyi): Deprecate this and move it to keyring.\"},\"address\":{\"type\":\"string\",\"id\":3,\"comment\":\"Public Polkadot Address.\"},\"account\":{\"type\":\"string\",\"id\":4,\"comment\":\"Public address of a DXNS Account.\"},\"faucet\":{\"type\":\"string\",\"id\":5,\"comment\":null}},\"comment\":null},\"Ice\":{\"fields\":{\"urls\":{\"type\":\"string\",\"id\":1,\"comment\":null},\"username\":{\"type\":\"string\",\"id\":2,\"comment\":null},\"credential\":{\"type\":\"string\",\"id\":3,\"comment\":null}},\"comment\":null},\"Ipfs\":{\"fields\":{\"server\":{\"type\":\"string\",\"id\":1,\"comment\":null},\"gateway\":{\"type\":\"string\",\"id\":2,\"comment\":null}},\"comment\":null},\"Kube\":{\"fields\":{\"endpoints\":{\"type\":\"Endpoints\",\"id\":1,\"comment\":null},\"publicUrl\":{\"type\":\"string\",\"id\":2,\"comment\":null}},\"nested\":{\"Endpoints\":{\"fields\":{\"logs\":{\"type\":\"string\",\"id\":1,\"comment\":null},\"services\":{\"type\":\"string\",\"id\":2,\"comment\":null},\"cert\":{\"type\":\"string\",\"id\":3,\"comment\":null}},\"comment\":null}},\"comment\":null},\"Machine\":{\"fields\":{\"doAccessToken\":{\"type\":\"string\",\"id\":1,\"comment\":null},\"githubAccessToken\":{\"type\":\"string\",\"id\":2,\"comment\":null},\"githubUsername\":{\"type\":\"string\",\"id\":3,\"comment\":null},\"dnsDomain\":{\"type\":\"string\",\"id\":4,\"comment\":null},\"npmAccessToken\":{\"type\":\"string\",\"id\":5,\"comment\":null}},\"comment\":null},\"Signal\":{\"fields\":{\"server\":{\"type\":\"string\",\"id\":1,\"comment\":null},\"api\":{\"type\":\"string\",\"id\":2,\"comment\":null},\"status\":{\"type\":\"string\",\"id\":3,\"comment\":null}},\"comment\":null}},\"comment\":null},\"System\":{\"fields\":{\"debug\":{\"type\":\"string\",\"id\":1,\"comment\":null}},\"comment\":null}},\"comment\":null}}}}},\"google\":{\"nested\":{\"protobuf\":{\"nested\":{\"Any\":{\"fields\":{\"type_url\":{\"type\":\"string\",\"id\":1},\"value\":{\"type\":\"bytes\",\"id\":2}},\"comment\":null},\"DescriptorProto\":{\"fields\":{\"name\":{\"type\":\"string\",\"id\":1},\"field\":{\"rule\":\"repeated\",\"type\":\"FieldDescriptorProto\",\"id\":2},\"extension\":{\"rule\":\"repeated\",\"type\":\"FieldDescriptorProto\",\"id\":6},\"nestedType\":{\"rule\":\"repeated\",\"type\":\"DescriptorProto\",\"id\":3},\"enumType\":{\"rule\":\"repeated\",\"type\":\"EnumDescriptorProto\",\"id\":4},\"extensionRange\":{\"rule\":\"repeated\",\"type\":\"ExtensionRange\",\"id\":5},\"oneofDecl\":{\"rule\":\"repeated\",\"type\":\"OneofDescriptorProto\",\"id\":8},\"options\":{\"type\":\"MessageOptions\",\"id\":7},\"reservedRange\":{\"rule\":\"repeated\",\"type\":\"ReservedRange\",\"id\":9},\"reservedName\":{\"rule\":\"repeated\",\"type\":\"string\",\"id\":10}},\"nested\":{\"ExtensionRange\":{\"fields\":{\"start\":{\"type\":\"int32\",\"id\":1},\"end\":{\"type\":\"int32\",\"id\":2}},\"comment\":null},\"ReservedRange\":{\"fields\":{\"start\":{\"type\":\"int32\",\"id\":1},\"end\":{\"type\":\"int32\",\"id\":2}},\"comment\":null}},\"comment\":null},\"EnumDescriptorProto\":{\"fields\":{\"name\":{\"type\":\"string\",\"id\":1},\"value\":{\"rule\":\"repeated\",\"type\":\"EnumValueDescriptorProto\",\"id\":2},\"options\":{\"type\":\"EnumOptions\",\"id\":3}},\"comment\":null},\"EnumOptions\":{\"fields\":{\"allowAlias\":{\"type\":\"bool\",\"id\":2},\"deprecated\":{\"type\":\"bool\",\"id\":3},\"uninterpretedOption\":{\"rule\":\"repeated\",\"type\":\"UninterpretedOption\",\"id\":999}},\"extensions\":[[1000,536870911]],\"comment\":null},\"EnumValueDescriptorProto\":{\"fields\":{\"name\":{\"type\":\"string\",\"id\":1},\"number\":{\"type\":\"int32\",\"id\":2},\"options\":{\"type\":\"EnumValueOptions\",\"id\":3}},\"comment\":null},\"EnumValueOptions\":{\"fields\":{\"deprecated\":{\"type\":\"bool\",\"id\":1},\"uninterpretedOption\":{\"rule\":\"repeated\",\"type\":\"UninterpretedOption\",\"id\":999}},\"extensions\":[[1000,536870911]],\"comment\":null},\"FieldDescriptorProto\":{\"fields\":{\"name\":{\"type\":\"string\",\"id\":1},\"number\":{\"type\":\"int32\",\"id\":3},\"label\":{\"type\":\"Label\",\"id\":4},\"type\":{\"type\":\"Type\",\"id\":5},\"typeName\":{\"type\":\"string\",\"id\":6},\"extendee\":{\"type\":\"string\",\"id\":2},\"defaultValue\":{\"type\":\"string\",\"id\":7},\"oneofIndex\":{\"type\":\"int32\",\"id\":9},\"jsonName\":{\"type\":\"string\",\"id\":10},\"options\":{\"type\":\"FieldOptions\",\"id\":8}},\"nested\":{\"Label\":{\"values\":{\"LABEL_OPTIONAL\":1,\"LABEL_REQUIRED\":2,\"LABEL_REPEATED\":3},\"comments\":{}},\"Type\":{\"values\":{\"TYPE_DOUBLE\":1,\"TYPE_FLOAT\":2,\"TYPE_INT64\":3,\"TYPE_UINT64\":4,\"TYPE_INT32\":5,\"TYPE_FIXED64\":6,\"TYPE_FIXED32\":7,\"TYPE_BOOL\":8,\"TYPE_STRING\":9,\"TYPE_GROUP\":10,\"TYPE_MESSAGE\":11,\"TYPE_BYTES\":12,\"TYPE_UINT32\":13,\"TYPE_ENUM\":14,\"TYPE_SFIXED32\":15,\"TYPE_SFIXED64\":16,\"TYPE_SINT32\":17,\"TYPE_SINT64\":18},\"comments\":{}}},\"comment\":null},\"FieldOptions\":{\"fields\":{\"ctype\":{\"type\":\"CType\",\"id\":1,\"options\":{\"default\":\"STRING\"}},\"packed\":{\"type\":\"bool\",\"id\":2},\"jstype\":{\"type\":\"JSType\",\"id\":6,\"options\":{\"default\":\"JS_NORMAL\"}},\"lazy\":{\"type\":\"bool\",\"id\":5},\"deprecated\":{\"type\":\"bool\",\"id\":3},\"weak\":{\"type\":\"bool\",\"id\":10},\"uninterpretedOption\":{\"rule\":\"repeated\",\"type\":\"UninterpretedOption\",\"id\":999}},\"extensions\":[[1000,536870911]],\"reserved\":[[4,4]],\"nested\":{\"CType\":{\"values\":{\"STRING\":0,\"CORD\":1,\"STRING_PIECE\":2},\"comments\":{}},\"JSType\":{\"values\":{\"JS_NORMAL\":0,\"JS_STRING\":1,\"JS_NUMBER\":2},\"comments\":{}}},\"comment\":null},\"FileDescriptorProto\":{\"fields\":{\"name\":{\"type\":\"string\",\"id\":1},\"package\":{\"type\":\"string\",\"id\":2},\"dependency\":{\"rule\":\"repeated\",\"type\":\"string\",\"id\":3},\"publicDependency\":{\"rule\":\"repeated\",\"type\":\"int32\",\"id\":10,\"options\":{\"packed\":false}},\"weakDependency\":{\"rule\":\"repeated\",\"type\":\"int32\",\"id\":11,\"options\":{\"packed\":false}},\"messageType\":{\"rule\":\"repeated\",\"type\":\"DescriptorProto\",\"id\":4},\"enumType\":{\"rule\":\"repeated\",\"type\":\"EnumDescriptorProto\",\"id\":5},\"service\":{\"rule\":\"repeated\",\"type\":\"ServiceDescriptorProto\",\"id\":6},\"extension\":{\"rule\":\"repeated\",\"type\":\"FieldDescriptorProto\",\"id\":7},\"options\":{\"type\":\"FileOptions\",\"id\":8},\"sourceCodeInfo\":{\"type\":\"SourceCodeInfo\",\"id\":9},\"syntax\":{\"type\":\"string\",\"id\":12}},\"comment\":null},\"FileDescriptorSet\":{\"fields\":{\"file\":{\"rule\":\"repeated\",\"type\":\"FileDescriptorProto\",\"id\":1}},\"comment\":null},\"FileOptions\":{\"fields\":{\"javaPackage\":{\"type\":\"string\",\"id\":1},\"javaOuterClassname\":{\"type\":\"string\",\"id\":8},\"javaMultipleFiles\":{\"type\":\"bool\",\"id\":10},\"javaGenerateEqualsAndHash\":{\"type\":\"bool\",\"id\":20,\"options\":{\"deprecated\":true}},\"javaStringCheckUtf8\":{\"type\":\"bool\",\"id\":27},\"optimizeFor\":{\"type\":\"OptimizeMode\",\"id\":9,\"options\":{\"default\":\"SPEED\"}},\"goPackage\":{\"type\":\"string\",\"id\":11},\"ccGenericServices\":{\"type\":\"bool\",\"id\":16},\"javaGenericServices\":{\"type\":\"bool\",\"id\":17},\"pyGenericServices\":{\"type\":\"bool\",\"id\":18},\"deprecated\":{\"type\":\"bool\",\"id\":23},\"ccEnableArenas\":{\"type\":\"bool\",\"id\":31},\"objcClassPrefix\":{\"type\":\"string\",\"id\":36},\"csharpNamespace\":{\"type\":\"string\",\"id\":37},\"uninterpretedOption\":{\"rule\":\"repeated\",\"type\":\"UninterpretedOption\",\"id\":999}},\"extensions\":[[1000,536870911]],\"reserved\":[[38,38]],\"nested\":{\"OptimizeMode\":{\"values\":{\"SPEED\":1,\"CODE_SIZE\":2,\"LITE_RUNTIME\":3},\"comments\":{}}},\"comment\":null},\"GeneratedCodeInfo\":{\"fields\":{\"annotation\":{\"rule\":\"repeated\",\"type\":\"Annotation\",\"id\":1}},\"nested\":{\"Annotation\":{\"fields\":{\"path\":{\"rule\":\"repeated\",\"type\":\"int32\",\"id\":1},\"sourceFile\":{\"type\":\"string\",\"id\":2},\"begin\":{\"type\":\"int32\",\"id\":3},\"end\":{\"type\":\"int32\",\"id\":4}},\"comment\":null}},\"comment\":null},\"MessageOptions\":{\"fields\":{\"messageSetWireFormat\":{\"type\":\"bool\",\"id\":1},\"noStandardDescriptorAccessor\":{\"type\":\"bool\",\"id\":2},\"deprecated\":{\"type\":\"bool\",\"id\":3},\"mapEntry\":{\"type\":\"bool\",\"id\":7},\"uninterpretedOption\":{\"rule\":\"repeated\",\"type\":\"UninterpretedOption\",\"id\":999}},\"extensions\":[[1000,536870911]],\"reserved\":[[8,8]],\"comment\":null},\"MethodDescriptorProto\":{\"fields\":{\"name\":{\"type\":\"string\",\"id\":1},\"inputType\":{\"type\":\"string\",\"id\":2},\"outputType\":{\"type\":\"string\",\"id\":3},\"options\":{\"type\":\"MethodOptions\",\"id\":4},\"clientStreaming\":{\"type\":\"bool\",\"id\":5},\"serverStreaming\":{\"type\":\"bool\",\"id\":6}},\"comment\":null},\"MethodOptions\":{\"fields\":{\"deprecated\":{\"type\":\"bool\",\"id\":33},\"uninterpretedOption\":{\"rule\":\"repeated\",\"type\":\"UninterpretedOption\",\"id\":999}},\"extensions\":[[1000,536870911]],\"comment\":null},\"OneofDescriptorProto\":{\"fields\":{\"name\":{\"type\":\"string\",\"id\":1},\"options\":{\"type\":\"OneofOptions\",\"id\":2}},\"comment\":null},\"OneofOptions\":{\"fields\":{\"uninterpretedOption\":{\"rule\":\"repeated\",\"type\":\"UninterpretedOption\",\"id\":999}},\"extensions\":[[1000,536870911]],\"comment\":null},\"ServiceDescriptorProto\":{\"fields\":{\"name\":{\"type\":\"string\",\"id\":1},\"method\":{\"rule\":\"repeated\",\"type\":\"MethodDescriptorProto\",\"id\":2},\"options\":{\"type\":\"ServiceOptions\",\"id\":3}},\"comment\":null},\"ServiceOptions\":{\"fields\":{\"deprecated\":{\"type\":\"bool\",\"id\":33},\"uninterpretedOption\":{\"rule\":\"repeated\",\"type\":\"UninterpretedOption\",\"id\":999}},\"extensions\":[[1000,536870911]],\"comment\":null},\"SourceCodeInfo\":{\"fields\":{\"location\":{\"rule\":\"repeated\",\"type\":\"Location\",\"id\":1}},\"nested\":{\"Location\":{\"fields\":{\"path\":{\"rule\":\"repeated\",\"type\":\"int32\",\"id\":1},\"span\":{\"rule\":\"repeated\",\"type\":\"int32\",\"id\":2},\"leadingComments\":{\"type\":\"string\",\"id\":3},\"trailingComments\":{\"type\":\"string\",\"id\":4},\"leadingDetachedComments\":{\"rule\":\"repeated\",\"type\":\"string\",\"id\":6}},\"comment\":null}},\"comment\":null},\"Timestamp\":{\"fields\":{\"seconds\":{\"type\":\"int64\",\"id\":1},\"nanos\":{\"type\":\"int32\",\"id\":2}},\"comment\":null},\"UninterpretedOption\":{\"fields\":{\"name\":{\"rule\":\"repeated\",\"type\":\"NamePart\",\"id\":2},\"identifierValue\":{\"type\":\"string\",\"id\":3},\"positiveIntValue\":{\"type\":\"uint64\",\"id\":4},\"negativeIntValue\":{\"type\":\"int64\",\"id\":5},\"doubleValue\":{\"type\":\"double\",\"id\":6},\"stringValue\":{\"type\":\"bytes\",\"id\":7},\"aggregateValue\":{\"type\":\"string\",\"id\":8}},\"nested\":{\"NamePart\":{\"fields\":{\"namePart\":{\"rule\":\"required\",\"type\":\"string\",\"id\":1},\"isExtension\":{\"rule\":\"required\",\"type\":\"bool\",\"id\":2}},\"comment\":null}},\"comment\":null}}}}}}}");
|
|
10
10
|
exports.schema = codec_protobuf_1.Schema.fromJson(exports.schemaJson, substitutions_1.default);
|
|
11
11
|
//# sourceMappingURL=index.js.map
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"index.js","sourceRoot":"","sources":["../../../../src/proto/gen/index.ts"],"names":[],"mappings":";;;;;;AAAA,yDAA8C;AAG9C,qEAA6C;AAgEhC,QAAA,UAAU,GAAG,IAAI,CAAC,KAAK,CAAC,
|
|
1
|
+
{"version":3,"file":"index.js","sourceRoot":"","sources":["../../../../src/proto/gen/index.ts"],"names":[],"mappings":";;;;;;AAAA,yDAA8C;AAG9C,qEAA6C;AAgEhC,QAAA,UAAU,GAAG,IAAI,CAAC,KAAK,CAAC,ijiBAAijiB,CAAC,CAAC;AAC3kiB,QAAA,MAAM,GAAG,uBAAM,CAAC,QAAQ,CAAkB,kBAAU,EAAE,uBAAa,CAAC,CAAC"}
|