@dxos/protocols 0.1.52 → 0.1.53-main.3ecc504

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;AAqDhE,OAAO,aAAa,MAAM,kBAAkB,CAAC;AAqc7C,MAAM,CAAC,MAAM,UAAU,GAAG,gBAAgB,CAAC,IAAI,CAAC,KAAK,CAAC,y8lFAAy8lF,CAAC,CAAC,CAAC;AAClgmF,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;AAqDhE,OAAO,aAAa,MAAM,kBAAkB,CAAC;AAuc7C,MAAM,CAAC,MAAM,UAAU,GAAG,gBAAgB,CAAC,IAAI,CAAC,KAAK,CAAC,mumFAAmumF,CAAC,CAAC,CAAC;AAC5xmF,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.1.52",
3
+ "version": "0.1.53-main.3ecc504",
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.1.52",
37
- "@dxos/hypercore": "0.1.52",
38
- "@dxos/keys": "0.1.52",
39
- "@dxos/timeframe": "0.1.52"
36
+ "@dxos/codec-protobuf": "0.1.53-main.3ecc504",
37
+ "@dxos/hypercore": "0.1.53-main.3ecc504",
38
+ "@dxos/keys": "0.1.53-main.3ecc504",
39
+ "@dxos/timeframe": "0.1.53-main.3ecc504"
40
40
  },
41
41
  "devDependencies": {
42
42
  "@types/debug": "^4.1.7",
@@ -140,6 +140,14 @@ message Runtime {
140
140
  optional google.protobuf.Struct env = 101;
141
141
  }
142
142
 
143
+ message Agent {
144
+ message Functions {
145
+ int32 port = 1;
146
+ }
147
+
148
+ optional Functions functions = 1;
149
+ }
150
+
143
151
  // CLI configuration
144
152
  message CLI {
145
153
  message AppServe {
@@ -368,6 +376,7 @@ message Runtime {
368
376
 
369
377
  optional Client client = 1;
370
378
  optional App app = 2;
379
+ optional Agent agent = 9;
371
380
  optional CLI cli = 3;
372
381
  optional Props props = 4;
373
382
  optional Services services = 5;
@@ -210,6 +210,11 @@ export interface Runtime {
210
210
  * - proto3_optional = true
211
211
  */
212
212
  app?: Runtime.App;
213
+ /**
214
+ * Options:
215
+ * - proto3_optional = true
216
+ */
217
+ agent?: Runtime.Agent;
213
218
  /**
214
219
  * Options:
215
220
  * - proto3_optional = true
@@ -406,6 +411,26 @@ export namespace Runtime {
406
411
  version?: string;
407
412
  }
408
413
  }
414
+ /**
415
+ * Defined in:
416
+ * {@link file://./../../dxos/config.proto}
417
+ */
418
+ export interface Agent {
419
+ /**
420
+ * Options:
421
+ * - proto3_optional = true
422
+ */
423
+ functions?: Runtime.Agent.Functions;
424
+ }
425
+ export namespace Agent {
426
+ /**
427
+ * Defined in:
428
+ * {@link file://./../../dxos/config.proto}
429
+ */
430
+ export interface Functions {
431
+ port: number;
432
+ }
433
+ }
409
434
  /**
410
435
  * Defined in:
411
436
  * {@link file://./../../dxos/config.proto}