@dxos/protocols 0.3.2-main.9928d98 → 0.3.2-main.ce2190e

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.
@@ -1 +1 @@
1
- {"version":3,"file":"index.js","sourceRoot":"","sources":["../../../../../src/proto/gen/index.ts"],"names":[],"mappings":"AAAA,OAAO,EAAE,MAAM,EAAE,gBAAgB,EAAE,MAAM,sBAAsB,CAAC;AAwDhE,OAAO,aAAa,MAAM,kBAAkB,CAAC;AAqf7C,MAAM,CAAC,MAAM,UAAU,GAAG,gBAAgB,CAAC,IAAI,CAAC,KAAK,CAAC,6x4FAA6x4F,CAAC,CAAC,CAAC;AACt14F,MAAM,CAAC,MAAM,MAAM,GAAG,MAAM,CAAC,QAAQ,CAAkB,UAAU,EAAE,aAAa,CAAC,CAAC"}
1
+ {"version":3,"file":"index.js","sourceRoot":"","sources":["../../../../../src/proto/gen/index.ts"],"names":[],"mappings":"AAAA,OAAO,EAAE,MAAM,EAAE,gBAAgB,EAAE,MAAM,sBAAsB,CAAC;AAwDhE,OAAO,aAAa,MAAM,kBAAkB,CAAC;AAuf7C,MAAM,CAAC,MAAM,UAAU,GAAG,gBAAgB,CAAC,IAAI,CAAC,KAAK,CAAC,ml5FAAml5F,CAAC,CAAC,CAAC;AAC5o5F,MAAM,CAAC,MAAM,MAAM,GAAG,MAAM,CAAC,QAAQ,CAAkB,UAAU,EAAE,aAAa,CAAC,CAAC"}
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@dxos/protocols",
3
- "version": "0.3.2-main.9928d98",
3
+ "version": "0.3.2-main.ce2190e",
4
4
  "description": "Protobuf definitions for DXOS protocols.",
5
5
  "homepage": "https://dxos.org",
6
6
  "bugs": "https://github.com/dxos/dxos/issues",
@@ -33,10 +33,10 @@
33
33
  "src"
34
34
  ],
35
35
  "dependencies": {
36
- "@dxos/codec-protobuf": "0.3.2-main.9928d98",
37
- "@dxos/invariant": "0.3.2-main.9928d98",
38
- "@dxos/keys": "0.3.2-main.9928d98",
39
- "@dxos/timeframe": "0.3.2-main.9928d98"
36
+ "@dxos/codec-protobuf": "0.3.2-main.ce2190e",
37
+ "@dxos/invariant": "0.3.2-main.ce2190e",
38
+ "@dxos/keys": "0.3.2-main.ce2190e",
39
+ "@dxos/timeframe": "0.3.2-main.ce2190e"
40
40
  },
41
41
  "devDependencies": {
42
42
  "glob": "~7.1.6"
@@ -173,8 +173,14 @@ message Runtime {
173
173
  optional int32 maxInactivityDelay = 4;
174
174
  }
175
175
 
176
+ /// Automatic index spaces
177
+ message Indexing {
178
+ optional bool enabled = 1;
179
+ }
180
+
176
181
  optional Functions functions = 1;
177
182
  optional EpochMontior epoch_monitor = 2;
183
+ optional Indexing indexing = 3;
178
184
  }
179
185
 
180
186
  optional Plugins plugins = 1;
@@ -144,6 +144,12 @@ message IdentityProfile {
144
144
  ProfileDocument profile = 1;
145
145
  }
146
146
 
147
+ /// [ASSERTION]: Sets device profile information.
148
+ message DeviceProfile {
149
+ dxos.keys.PublicKey device_key = 1;
150
+ ProfileDocument profile = 2;
151
+ }
152
+
147
153
  // [ASSERTION]: Identity is authorized to access a KUBE.
148
154
  message KubeAccess {
149
155
  dxos.keys.PublicKey kube_key = 1;
@@ -451,6 +451,11 @@ export namespace Runtime {
451
451
  * - proto3_optional = true
452
452
  */
453
453
  epochMonitor?: Runtime.Agent.Plugins.EpochMontior;
454
+ /**
455
+ * Options:
456
+ * - proto3_optional = true
457
+ */
458
+ indexing?: Runtime.Agent.Plugins.Indexing;
454
459
  }
455
460
  export namespace Plugins {
456
461
  /**
@@ -501,6 +506,19 @@ export namespace Runtime {
501
506
  */
502
507
  maxInactivityDelay?: number;
503
508
  }
509
+ /**
510
+ * Automatic index spaces
511
+ *
512
+ * Defined in:
513
+ * {@link file://./../../dxos/config.proto}
514
+ */
515
+ export interface Indexing {
516
+ /**
517
+ * Options:
518
+ * - proto3_optional = true
519
+ */
520
+ enabled?: boolean;
521
+ }
504
522
  }
505
523
  }
506
524
  /**
@@ -216,6 +216,16 @@ export interface ProfileDocument {
216
216
  export interface IdentityProfile {
217
217
  profile: ProfileDocument;
218
218
  }
219
+ /**
220
+ * [ASSERTION]: Sets device profile information.
221
+ *
222
+ * Defined in:
223
+ * {@link file://./../../../dxos/halo/credentials.proto}
224
+ */
225
+ export interface DeviceProfile {
226
+ deviceKey: ReturnType<(typeof substitutions)["dxos.keys.PublicKey"]["decode"]>;
227
+ profile: ProfileDocument;
228
+ }
219
229
  /**
220
230
  * Defined in:
221
231
  * {@link file://./../../../dxos/halo/credentials.proto}