@dxos/protocols 0.3.5-main.74ef61a → 0.3.5-main.772acab

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;AA4DhE,OAAO,aAAa,MAAM,kBAAkB,CAAC;AAkgB7C,MAAM,CAAC,MAAM,UAAU,GAAG,gBAAgB,CAAC,IAAI,CAAC,KAAK,CAAC,kx9FAAkx9F,CAAC,CAAC,CAAC;AAC309F,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;AA4DhE,OAAO,aAAa,MAAM,kBAAkB,CAAC;AAmgB7C,MAAM,CAAC,MAAM,UAAU,GAAG,gBAAgB,CAAC,IAAI,CAAC,KAAK,CAAC,y09FAAy09F,CAAC,CAAC,CAAC;AACl49F,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.5-main.74ef61a",
3
+ "version": "0.3.5-main.772acab",
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.5-main.74ef61a",
37
- "@dxos/invariant": "0.3.5-main.74ef61a",
38
- "@dxos/keys": "0.3.5-main.74ef61a",
39
- "@dxos/timeframe": "0.3.5-main.74ef61a"
36
+ "@dxos/invariant": "0.3.5-main.772acab",
37
+ "@dxos/codec-protobuf": "0.3.5-main.772acab",
38
+ "@dxos/timeframe": "0.3.5-main.772acab",
39
+ "@dxos/keys": "0.3.5-main.772acab"
40
40
  },
41
41
  "devDependencies": {
42
42
  "glob": "~7.1.6"
@@ -70,6 +70,10 @@ message SpaceMember {
70
70
  dxos.keys.PublicKey genesis_feed_key = 4;
71
71
  }
72
72
 
73
+ message MemberProfile {
74
+ optional ProfileDocument profile = 3;
75
+ }
76
+
73
77
  // [ASSERTION]: Device is authorized to sign messages for a given Agent (Identity).
74
78
  // NOTE: Devices are Admitted to Identities.
75
79
  message AuthorizedDevice {
@@ -103,6 +103,17 @@ export namespace SpaceMember {
103
103
  READER = 3
104
104
  }
105
105
  }
106
+ /**
107
+ * Defined in:
108
+ * {@link file://./../../../dxos/halo/credentials.proto}
109
+ */
110
+ export interface MemberProfile {
111
+ /**
112
+ * Options:
113
+ * - proto3_optional = true
114
+ */
115
+ profile?: ProfileDocument;
116
+ }
106
117
  /**
107
118
  * Defined in:
108
119
  * {@link file://./../../../dxos/halo/credentials.proto}
@@ -77,14 +77,14 @@ export enum NullValue {
77
77
  export interface ListValue {
78
78
  values?: Value[];
79
79
  }
80
- export interface Timestamp {
81
- seconds: string;
82
- nanos: number;
83
- }
84
80
  export interface Any {
85
81
  type_url: string;
86
82
  value: Uint8Array;
87
83
  }
84
+ export interface Timestamp {
85
+ seconds: string;
86
+ nanos: number;
87
+ }
88
88
  export interface FileDescriptorSet {
89
89
  file?: FileDescriptorProto[];
90
90
  }