@dxos/protocols 0.3.2-main.648180e → 0.3.2-main.bc9cb77

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;AAsf7C,MAAM,CAAC,MAAM,UAAU,GAAG,gBAAgB,CAAC,IAAI,CAAC,KAAK,CAAC,084FAA084F,CAAC,CAAC,CAAC;AACng5F,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.648180e",
3
+ "version": "0.3.2-main.bc9cb77",
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.648180e",
37
- "@dxos/invariant": "0.3.2-main.648180e",
38
- "@dxos/keys": "0.3.2-main.648180e",
39
- "@dxos/timeframe": "0.3.2-main.648180e"
36
+ "@dxos/codec-protobuf": "0.3.2-main.bc9cb77",
37
+ "@dxos/invariant": "0.3.2-main.bc9cb77",
38
+ "@dxos/keys": "0.3.2-main.bc9cb77",
39
+ "@dxos/timeframe": "0.3.2-main.bc9cb77"
40
40
  },
41
41
  "devDependencies": {
42
42
  "glob": "~7.1.6"
@@ -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;
@@ -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}