@dotrino/identity 0.60.1 → 0.60.2

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.
Files changed (2) hide show
  1. package/package.json +1 -1
  2. package/vault/remote.js +4 -0
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@dotrino/identity",
3
- "version": "0.60.1",
3
+ "version": "0.60.2",
4
4
  "description": "Identidad y rating de usuarios compartidos entre apps de Dotrino (vault iframe + postMessage)",
5
5
  "type": "module",
6
6
  "main": "src/index.js",
package/vault/remote.js CHANGED
@@ -38,6 +38,10 @@ const MSG = {
38
38
  // Renuncia: el miembro se quita capacidades a sí mismo y la bóveda la sella en el acta.
39
39
  RENOUNCE: 'vault.renounce',
40
40
  RENOUNCE_RESULT: 'vault.renounce.result',
41
+ // Pedidos de aprobación y llaves SSH del teléfono: van por el canal de secretos
42
+ // (`op: approvals | approve | deny | ssh.keys | ssh.key.add | ssh.key.rm`).
43
+ SECRETS: 'vault.secrets',
44
+ SECRETS_RESULT: 'vault.secrets.result',
41
45
  ERROR: 'vault.error'
42
46
  }
43
47
  export { MSG as VAULT_MSG }