@dxos/network-manager 2.33.9-dev.a6069cb4 → 2.33.9-dev.bba8fc00

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.
@@ -3,25 +3,64 @@ import substitutions from "../../substitutions";
3
3
  import * as dxos_halo_keys from "./halo/keys";
4
4
  import * as dxos_mesh_signal from "./mesh/signal";
5
5
  import * as google_protobuf from "../google/protobuf";
6
+ /**
7
+ * Defined in:
8
+ * {@link file://./../../../../../../common/protocols/src/proto/dxos/halo/signed.proto}
9
+ */
6
10
  export interface Message {
7
11
  payload: google_protobuf.Any;
8
12
  }
9
13
  /**
10
14
  * A generic container message used whenever messages are signed (e.g. PartyCredential)
15
+ *
16
+ * Defined in:
17
+ * {@link file://./../../../../../../common/protocols/src/proto/dxos/halo/signed.proto}
11
18
  */
12
19
  export interface SignedMessage {
20
+ /**
21
+ * The signed message contents.
22
+ */
13
23
  signed: SignedMessage.Signed;
24
+ /**
25
+ * An array of Signatures, one for each key that signed the message.
26
+ */
14
27
  signatures?: SignedMessage.Signature[];
15
28
  }
16
29
  export namespace SignedMessage {
30
+ /**
31
+ * Defined in:
32
+ * {@link file://./../../../../../../common/protocols/src/proto/dxos/halo/signed.proto}
33
+ */
17
34
  export interface Signed {
35
+ /**
36
+ * RFC-3339 datetime string.
37
+ */
18
38
  created: string;
19
39
  nonce: Uint8Array;
40
+ /**
41
+ * The payload to be signed.
42
+ */
20
43
  payload: google_protobuf.Any;
21
44
  }
45
+ /**
46
+ * Defined in:
47
+ * {@link file://./../../../../../../common/protocols/src/proto/dxos/halo/signed.proto}
48
+ */
22
49
  export interface Signature {
50
+ /**
51
+ * The publicKey of the keypair that made this signature.
52
+ */
23
53
  key: ReturnType<(typeof substitutions)["dxos.halo.keys.PubKey"]["decode"]>;
54
+ /**
55
+ * The bytes of the signature.
56
+ */
24
57
  signature: Uint8Array;
58
+ /**
59
+ * The certification chain of SignedMessages for this key.
60
+ *
61
+ * Options:
62
+ * - proto3_optional = true
63
+ */
25
64
  keyChain?: dxos_halo_keys.KeyChain;
26
65
  }
27
66
  }
@@ -3,6 +3,10 @@ import substitutions from "../../../substitutions";
3
3
  import * as dxos_credentials from "../credentials";
4
4
  import * as dxos_mesh_signal from "../mesh/signal";
5
5
  import * as google_protobuf from "../../google/protobuf";
6
+ /**
7
+ * Defined in:
8
+ * {@link file://./../../../../../../../common/protocols/src/proto/dxos/halo/keys.proto}
9
+ */
6
10
  export enum KeyType {
7
11
  UNKNOWN = 0,
8
12
  IDENTITY = 1,
@@ -11,12 +15,24 @@ export enum KeyType {
11
15
  FEED = 4,
12
16
  DXNS_ADDRESS = 5
13
17
  }
18
+ /**
19
+ * Defined in:
20
+ * {@link file://./../../../../../../../common/protocols/src/proto/dxos/halo/keys.proto}
21
+ */
14
22
  export interface PubKey {
15
- data?: Uint8Array;
23
+ data: Uint8Array;
16
24
  }
25
+ /**
26
+ * Defined in:
27
+ * {@link file://./../../../../../../../common/protocols/src/proto/dxos/halo/keys.proto}
28
+ */
17
29
  export interface PrivKey {
18
- data?: Uint8Array;
30
+ data: Uint8Array;
19
31
  }
32
+ /**
33
+ * Defined in:
34
+ * {@link file://./../../../../../../../common/protocols/src/proto/dxos/halo/keys.proto}
35
+ */
20
36
  export interface KeyRecord {
21
37
  /**
22
38
  * The `KeyType` type of the key. This is often unknown for keys from other sources.
@@ -28,33 +44,59 @@ export interface KeyRecord {
28
44
  publicKey: ReturnType<(typeof substitutions)["dxos.halo.keys.PubKey"]["decode"]>;
29
45
  /**
30
46
  * The secret key as a Buffer (this will never be visible outside the Keyring).
47
+ *
48
+ * Options:
49
+ * - proto3_optional = true
31
50
  */
32
51
  secretKey?: ReturnType<(typeof substitutions)["dxos.halo.keys.PrivKey"]["decode"]>;
33
52
  /**
34
53
  * Is this key from a Greeting "hint"?
54
+ *
55
+ * Options:
56
+ * - proto3_optional = true
35
57
  */
36
58
  hint?: boolean;
37
59
  /**
38
60
  * Determines if this is our key?
39
61
  * Usually true if `secretKey` is present; may be false for "inception keys" such as the Party key.
62
+ *
63
+ * Options:
64
+ * - proto3_optional = true
40
65
  */
41
66
  own?: boolean;
42
67
  /**
43
68
  * Is this key to be trusted?
69
+ *
70
+ * Options:
71
+ * - proto3_optional = true
44
72
  */
45
73
  trusted?: boolean;
46
74
  /**
47
75
  * An RFC-3339 date/time string for when the key was added to the Keyring.
76
+ *
77
+ * Options:
78
+ * - proto3_optional = true
48
79
  */
49
80
  added?: string;
50
81
  /**
51
82
  * An RFC-3339 date/time string for when the key was created.
83
+ *
84
+ * Options:
85
+ * - proto3_optional = true
52
86
  */
53
87
  created?: string;
54
88
  }
89
+ /**
90
+ * Defined in:
91
+ * {@link file://./../../../../../../../common/protocols/src/proto/dxos/halo/keys.proto}
92
+ */
55
93
  export interface KeyRecordList {
56
94
  keys?: KeyRecord[];
57
95
  }
96
+ /**
97
+ * Defined in:
98
+ * {@link file://./../../../../../../../common/protocols/src/proto/dxos/halo/keys.proto}
99
+ */
58
100
  export interface KeyChain {
59
101
  publicKey: ReturnType<(typeof substitutions)["dxos.halo.keys.PubKey"]["decode"]>;
60
102
  message: dxos_credentials.SignedMessage;
@@ -3,50 +3,80 @@ import substitutions from "../../../substitutions";
3
3
  import * as dxos_credentials from "../credentials";
4
4
  import * as dxos_halo_keys from "../halo/keys";
5
5
  import * as google_protobuf from "../../google/protobuf";
6
+ /**
7
+ * Defined in:
8
+ * {@link file://./../../../defs/dxos/mesh/signal.proto}
9
+ */
6
10
  export interface Message {
7
11
  /**
8
12
  * Sender's public key.
9
13
  */
10
- id?: ReturnType<(typeof substitutions)["dxos.halo.keys.PubKey"]["decode"]>;
14
+ id: ReturnType<(typeof substitutions)["dxos.halo.keys.PubKey"]["decode"]>;
11
15
  /**
12
16
  * Receiver`s public key.
13
17
  */
14
- remoteId?: ReturnType<(typeof substitutions)["dxos.halo.keys.PubKey"]["decode"]>;
18
+ remoteId: ReturnType<(typeof substitutions)["dxos.halo.keys.PubKey"]["decode"]>;
15
19
  /**
16
20
  * Swarm identefier.
17
21
  */
18
- topic?: ReturnType<(typeof substitutions)["dxos.halo.keys.PubKey"]["decode"]>;
22
+ topic: ReturnType<(typeof substitutions)["dxos.halo.keys.PubKey"]["decode"]>;
19
23
  /**
20
24
  * Unique connection identifier.
21
25
  */
22
- sessionId?: ReturnType<(typeof substitutions)["dxos.halo.keys.PubKey"]["decode"]>;
26
+ sessionId: ReturnType<(typeof substitutions)["dxos.halo.keys.PubKey"]["decode"]>;
23
27
  /**
24
28
  * Message payload.
25
29
  */
26
- data?: MessageData;
30
+ data: MessageData;
27
31
  /**
28
32
  * Unique message identifier. Used for Acknolegment and matching Anwers to Offers.
33
+ *
34
+ * Options:
35
+ * - proto3_optional = true
29
36
  */
30
37
  messageId?: ReturnType<(typeof substitutions)["dxos.halo.keys.PubKey"]["decode"]>;
31
38
  }
39
+ /**
40
+ * Defined in:
41
+ * {@link file://./../../../defs/dxos/mesh/signal.proto}
42
+ */
32
43
  export interface MessageData {
33
44
  offer?: Offer;
34
45
  answer?: Answer;
35
46
  signal?: Signal;
36
47
  ack?: Acknowledgement;
37
48
  }
49
+ /**
50
+ * Defined in:
51
+ * {@link file://./../../../defs/dxos/mesh/signal.proto}
52
+ */
38
53
  export interface Offer {
39
54
  }
55
+ /**
56
+ * Defined in:
57
+ * {@link file://./../../../defs/dxos/mesh/signal.proto}
58
+ */
40
59
  export interface Answer {
41
- accept?: boolean;
60
+ accept: boolean;
42
61
  /**
43
62
  * MessageId of the Offer being answered.
63
+ *
64
+ * Options:
65
+ * - proto3_optional = true
44
66
  */
45
67
  offerMessageId?: ReturnType<(typeof substitutions)["dxos.halo.keys.PubKey"]["decode"]>;
46
68
  }
69
+ /**
70
+ * Defined in:
71
+ * {@link file://./../../../defs/dxos/mesh/signal.proto}
72
+ */
47
73
  export interface Signal {
48
- json?: string;
74
+ json: string;
49
75
  }
76
+ /**
77
+ * Defined in:
78
+ * {@link file://./../../../defs/dxos/mesh/signal.proto}
79
+ */
50
80
  export interface Acknowledgement {
51
- messageId?: ReturnType<(typeof substitutions)["dxos.halo.keys.PubKey"]["decode"]>;
81
+ messageId: ReturnType<(typeof substitutions)["dxos.halo.keys.PubKey"]["decode"]>;
52
82
  }
@@ -4,6 +4,6 @@ import * as dxos_credentials from "../dxos/credentials";
4
4
  import * as dxos_halo_keys from "../dxos/halo/keys";
5
5
  import * as dxos_mesh_signal from "../dxos/mesh/signal";
6
6
  export interface Any {
7
- type_url?: string;
8
- value?: Uint8Array;
7
+ type_url: string;
8
+ value: Uint8Array;
9
9
  }
@@ -25,5 +25,5 @@ export interface TYPES {
25
25
  }
26
26
  export interface SERVICES {
27
27
  }
28
- export const schemaJson = JSON.parse("{\"nested\":{\"dxos\":{\"nested\":{\"credentials\":{\"nested\":{\"Message\":{\"fields\":{\"payload\":{\"rule\":\"required\",\"type\":\"google.protobuf.Any\",\"id\":1,\"comment\":null}},\"comment\":null},\"SignedMessage\":{\"fields\":{\"signed\":{\"rule\":\"required\",\"type\":\"Signed\",\"id\":1,\"comment\":null},\"signatures\":{\"rule\":\"repeated\",\"type\":\"Signature\",\"id\":2,\"comment\":null}},\"nested\":{\"Signature\":{\"fields\":{\"key\":{\"rule\":\"required\",\"type\":\"PubKey\",\"id\":1,\"comment\":null},\"signature\":{\"rule\":\"required\",\"type\":\"bytes\",\"id\":2,\"comment\":null},\"keyChain\":{\"type\":\"KeyChain\",\"id\":3,\"comment\":null}},\"comment\":null},\"Signed\":{\"fields\":{\"created\":{\"rule\":\"required\",\"type\":\"string\",\"id\":1,\"comment\":null},\"nonce\":{\"rule\":\"required\",\"type\":\"bytes\",\"id\":2,\"comment\":null},\"payload\":{\"rule\":\"required\",\"type\":\"google.protobuf.Any\",\"id\":10,\"comment\":null}},\"comment\":null}},\"comment\":\"A generic container message used whenever messages are signed (e.g. PartyCredential)\"}}},\"halo\":{\"nested\":{\"keys\":{\"nested\":{\"KeyChain\":{\"fields\":{\"publicKey\":{\"rule\":\"required\",\"type\":\"PubKey\",\"id\":1,\"comment\":null},\"message\":{\"rule\":\"required\",\"type\":\"SignedMessage\",\"id\":2,\"comment\":null},\"parents\":{\"rule\":\"repeated\",\"type\":\"KeyChain\",\"id\":3,\"comment\":null}},\"comment\":null},\"KeyRecord\":{\"fields\":{\"type\":{\"rule\":\"required\",\"type\":\"KeyType\",\"id\":1,\"comment\":\"The `KeyType` type of the key. This is often unknown for keys from other sources.\"},\"publicKey\":{\"rule\":\"required\",\"type\":\"PubKey\",\"id\":2,\"comment\":\"The public key as a Buffer (required).\"},\"secretKey\":{\"type\":\"PrivKey\",\"id\":3,\"comment\":\"The secret key as a Buffer (this will never be visible outside the Keyring).\"},\"hint\":{\"type\":\"bool\",\"id\":4,\"comment\":\"Is this key from a Greeting \\\"hint\\\"?\"},\"own\":{\"type\":\"bool\",\"id\":5,\"comment\":\"Determines if this is our key?\\nUsually true if `secretKey` is present; may be false for \\\"inception keys\\\" such as the Party key.\"},\"trusted\":{\"type\":\"bool\",\"id\":6,\"comment\":\"Is this key to be trusted?\"},\"added\":{\"type\":\"string\",\"id\":7,\"comment\":\"An RFC-3339 date/time string for when the key was added to the Keyring.\"},\"created\":{\"type\":\"string\",\"id\":8,\"comment\":\"An RFC-3339 date/time string for when the key was created.\"}},\"comment\":null},\"KeyRecordList\":{\"fields\":{\"keys\":{\"rule\":\"repeated\",\"type\":\"KeyRecord\",\"id\":1,\"comment\":null}},\"comment\":null},\"KeyType\":{\"values\":{\"UNKNOWN\":0,\"IDENTITY\":1,\"DEVICE\":2,\"PARTY\":3,\"FEED\":4,\"DXNS_ADDRESS\":5},\"comment\":null,\"comments\":{\"UNKNOWN\":null,\"IDENTITY\":null,\"DEVICE\":null,\"PARTY\":null,\"FEED\":null,\"DXNS_ADDRESS\":null}},\"PrivKey\":{\"fields\":{\"data\":{\"type\":\"bytes\",\"id\":1,\"comment\":null}},\"comment\":null},\"PubKey\":{\"fields\":{\"data\":{\"type\":\"bytes\",\"id\":1,\"comment\":null}},\"comment\":null}}}}},\"mesh\":{\"nested\":{\"signal\":{\"nested\":{\"Acknowledgement\":{\"fields\":{\"messageId\":{\"type\":\"PubKey\",\"id\":1,\"comment\":null}},\"comment\":null},\"Answer\":{\"fields\":{\"accept\":{\"type\":\"bool\",\"id\":1,\"comment\":null},\"offerMessageId\":{\"type\":\"PubKey\",\"id\":2,\"comment\":\"MessageId of the Offer being answered.\"}},\"comment\":null},\"Message\":{\"fields\":{\"id\":{\"type\":\"PubKey\",\"id\":1,\"comment\":\"Sender's public key.\"},\"remoteId\":{\"type\":\"PubKey\",\"id\":2,\"comment\":\"Receiver`s public key.\"},\"topic\":{\"type\":\"PubKey\",\"id\":3,\"comment\":\"Swarm identefier.\"},\"sessionId\":{\"type\":\"PubKey\",\"id\":4,\"comment\":\"Unique connection identifier.\"},\"data\":{\"type\":\"MessageData\",\"id\":5,\"comment\":\"Message payload.\"},\"messageId\":{\"type\":\"PubKey\",\"id\":6,\"comment\":\"Unique message identifier. Used for Acknolegment and matching Anwers to Offers.\"}},\"comment\":null},\"MessageData\":{\"oneofs\":{\"payload\":{\"oneof\":[\"offer\",\"answer\",\"signal\",\"ack\"],\"comment\":null}},\"fields\":{\"offer\":{\"type\":\"Offer\",\"id\":1,\"comment\":null},\"answer\":{\"type\":\"Answer\",\"id\":2,\"comment\":null},\"signal\":{\"type\":\"Signal\",\"id\":3,\"comment\":null},\"ack\":{\"type\":\"Acknowledgement\",\"id\":4,\"comment\":null}},\"comment\":null},\"Offer\":{\"fields\":{},\"comment\":null},\"Signal\":{\"fields\":{\"json\":{\"type\":\"string\",\"id\":1,\"comment\":null}},\"comment\":null}}}}}}},\"google\":{\"nested\":{\"protobuf\":{\"nested\":{\"Any\":{\"fields\":{\"type_url\":{\"type\":\"string\",\"id\":1},\"value\":{\"type\":\"bytes\",\"id\":2}},\"comment\":null}}}}}}}");
28
+ export const schemaJson = JSON.parse("{\"nested\":{\"dxos\":{\"nested\":{\"credentials\":{\"nested\":{\"Message\":{\"fields\":{\"payload\":{\"rule\":\"required\",\"type\":\"google.protobuf.Any\",\"id\":1,\"comment\":null}},\"comment\":null},\"SignedMessage\":{\"fields\":{\"signed\":{\"rule\":\"required\",\"type\":\"Signed\",\"id\":1,\"comment\":\"The signed message contents.\"},\"signatures\":{\"rule\":\"repeated\",\"type\":\"Signature\",\"id\":2,\"comment\":\"An array of Signatures, one for each key that signed the message.\"}},\"nested\":{\"Signature\":{\"oneofs\":{\"_keyChain\":{\"oneof\":[\"keyChain\"]}},\"fields\":{\"key\":{\"rule\":\"required\",\"type\":\"PubKey\",\"id\":1,\"comment\":\"The publicKey of the keypair that made this signature.\"},\"signature\":{\"rule\":\"required\",\"type\":\"bytes\",\"id\":2,\"comment\":\"The bytes of the signature.\"},\"keyChain\":{\"type\":\"KeyChain\",\"id\":3,\"options\":{\"proto3_optional\":true},\"comment\":\"The certification chain of SignedMessages for this key.\"}},\"comment\":null},\"Signed\":{\"fields\":{\"created\":{\"rule\":\"required\",\"type\":\"string\",\"id\":1,\"comment\":\"RFC-3339 datetime string.\"},\"nonce\":{\"rule\":\"required\",\"type\":\"bytes\",\"id\":2,\"comment\":null},\"payload\":{\"rule\":\"required\",\"type\":\"google.protobuf.Any\",\"id\":10,\"comment\":\"The payload to be signed.\"}},\"comment\":null}},\"comment\":\"A generic container message used whenever messages are signed (e.g. PartyCredential)\"}}},\"halo\":{\"nested\":{\"keys\":{\"nested\":{\"KeyChain\":{\"fields\":{\"publicKey\":{\"rule\":\"required\",\"type\":\"PubKey\",\"id\":1,\"comment\":null},\"message\":{\"rule\":\"required\",\"type\":\"SignedMessage\",\"id\":2,\"comment\":null},\"parents\":{\"rule\":\"repeated\",\"type\":\"KeyChain\",\"id\":3,\"comment\":null}},\"comment\":null},\"KeyRecord\":{\"oneofs\":{\"_secretKey\":{\"oneof\":[\"secretKey\"]},\"_hint\":{\"oneof\":[\"hint\"]},\"_own\":{\"oneof\":[\"own\"]},\"_trusted\":{\"oneof\":[\"trusted\"]},\"_added\":{\"oneof\":[\"added\"]},\"_created\":{\"oneof\":[\"created\"]}},\"fields\":{\"type\":{\"rule\":\"required\",\"type\":\"KeyType\",\"id\":1,\"comment\":\"The `KeyType` type of the key. This is often unknown for keys from other sources.\"},\"publicKey\":{\"rule\":\"required\",\"type\":\"PubKey\",\"id\":2,\"comment\":\"The public key as a Buffer (required).\"},\"secretKey\":{\"type\":\"PrivKey\",\"id\":3,\"options\":{\"proto3_optional\":true},\"comment\":\"The secret key as a Buffer (this will never be visible outside the Keyring).\"},\"hint\":{\"type\":\"bool\",\"id\":4,\"options\":{\"proto3_optional\":true},\"comment\":\"Is this key from a Greeting \\\"hint\\\"?\"},\"own\":{\"type\":\"bool\",\"id\":5,\"options\":{\"proto3_optional\":true},\"comment\":\"Determines if this is our key?\\nUsually true if `secretKey` is present; may be false for \\\"inception keys\\\" such as the Party key.\"},\"trusted\":{\"type\":\"bool\",\"id\":6,\"options\":{\"proto3_optional\":true},\"comment\":\"Is this key to be trusted?\"},\"added\":{\"type\":\"string\",\"id\":7,\"options\":{\"proto3_optional\":true},\"comment\":\"An RFC-3339 date/time string for when the key was added to the Keyring.\"},\"created\":{\"type\":\"string\",\"id\":8,\"options\":{\"proto3_optional\":true},\"comment\":\"An RFC-3339 date/time string for when the key was created.\"}},\"comment\":null},\"KeyRecordList\":{\"fields\":{\"keys\":{\"rule\":\"repeated\",\"type\":\"KeyRecord\",\"id\":1,\"comment\":null}},\"comment\":null},\"KeyType\":{\"values\":{\"UNKNOWN\":0,\"IDENTITY\":1,\"DEVICE\":2,\"PARTY\":3,\"FEED\":4,\"DXNS_ADDRESS\":5},\"comment\":null,\"comments\":{\"UNKNOWN\":null,\"IDENTITY\":null,\"DEVICE\":null,\"PARTY\":null,\"FEED\":null,\"DXNS_ADDRESS\":null}},\"PrivKey\":{\"fields\":{\"data\":{\"type\":\"bytes\",\"id\":1,\"comment\":null}},\"comment\":null},\"PubKey\":{\"fields\":{\"data\":{\"type\":\"bytes\",\"id\":1,\"comment\":null}},\"comment\":null}}}}},\"mesh\":{\"nested\":{\"signal\":{\"nested\":{\"Acknowledgement\":{\"fields\":{\"messageId\":{\"type\":\"PubKey\",\"id\":1,\"comment\":null}},\"comment\":null},\"Answer\":{\"oneofs\":{\"_offerMessageId\":{\"oneof\":[\"offerMessageId\"]}},\"fields\":{\"accept\":{\"type\":\"bool\",\"id\":1,\"comment\":null},\"offerMessageId\":{\"type\":\"PubKey\",\"id\":2,\"options\":{\"proto3_optional\":true},\"comment\":\"MessageId of the Offer being answered.\"}},\"comment\":null},\"Message\":{\"oneofs\":{\"_messageId\":{\"oneof\":[\"messageId\"]}},\"fields\":{\"id\":{\"type\":\"PubKey\",\"id\":1,\"comment\":\"Sender's public key.\"},\"remoteId\":{\"type\":\"PubKey\",\"id\":2,\"comment\":\"Receiver`s public key.\"},\"topic\":{\"type\":\"PubKey\",\"id\":3,\"comment\":\"Swarm identefier.\"},\"sessionId\":{\"type\":\"PubKey\",\"id\":4,\"comment\":\"Unique connection identifier.\"},\"data\":{\"type\":\"MessageData\",\"id\":5,\"comment\":\"Message payload.\"},\"messageId\":{\"type\":\"PubKey\",\"id\":6,\"options\":{\"proto3_optional\":true},\"comment\":\"Unique message identifier. Used for Acknolegment and matching Anwers to Offers.\"}},\"comment\":null},\"MessageData\":{\"oneofs\":{\"payload\":{\"oneof\":[\"offer\",\"answer\",\"signal\",\"ack\"],\"comment\":null}},\"fields\":{\"offer\":{\"type\":\"Offer\",\"id\":1,\"comment\":null},\"answer\":{\"type\":\"Answer\",\"id\":2,\"comment\":null},\"signal\":{\"type\":\"Signal\",\"id\":3,\"comment\":null},\"ack\":{\"type\":\"Acknowledgement\",\"id\":4,\"comment\":null}},\"comment\":null},\"Offer\":{\"fields\":{},\"comment\":null},\"Signal\":{\"fields\":{\"json\":{\"type\":\"string\",\"id\":1,\"comment\":null}},\"comment\":null}}}}}}},\"google\":{\"nested\":{\"protobuf\":{\"nested\":{\"Any\":{\"fields\":{\"type_url\":{\"type\":\"string\",\"id\":1},\"value\":{\"type\":\"bytes\",\"id\":2}},\"comment\":null}}}}}}}");
29
29
  export const schema = Schema.fromJson<TYPES, SERVICES>(schemaJson, substitutions);