@the-ai-company/cbio-node-runtime 1.73.0 → 1.75.4

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 (162) hide show
  1. package/dist/clients/agent/client.d.ts +5 -1
  2. package/dist/clients/agent/client.js +17 -5
  3. package/dist/clients/agent/client.js.map +1 -1
  4. package/dist/clients/agent/contracts.d.ts +5 -0
  5. package/dist/clients/agent/index.d.ts +1 -1
  6. package/dist/clients/owner/client.js +32 -11
  7. package/dist/clients/owner/client.js.map +1 -1
  8. package/dist/clients/owner/contracts.d.ts +8 -1
  9. package/dist/clients/owner/index.d.ts +1 -1
  10. package/dist/public-types.d.ts +2 -2
  11. package/dist/runtime/bootstrap.js +8 -2
  12. package/dist/runtime/bootstrap.js.map +1 -1
  13. package/dist/runtime/index.d.ts +2 -2
  14. package/dist/runtime/index.js.map +1 -1
  15. package/dist/vault-core/contracts.d.ts +22 -0
  16. package/dist/vault-core/contracts.js.map +1 -1
  17. package/dist/vault-core/core.d.ts +16 -0
  18. package/dist/vault-core/core.js +85 -4
  19. package/dist/vault-core/core.js.map +1 -1
  20. package/dist/vault-core/defaults.d.ts +1 -0
  21. package/dist/vault-core/defaults.js +3 -0
  22. package/dist/vault-core/defaults.js.map +1 -1
  23. package/dist/vault-core/index.d.ts +1 -1
  24. package/dist/vault-core/index.js.map +1 -1
  25. package/dist/vault-core/persistence.d.ts +2 -0
  26. package/dist/vault-core/persistence.js +20 -33
  27. package/dist/vault-core/persistence.js.map +1 -1
  28. package/dist/vault-core/ports.d.ts +1 -0
  29. package/dist/vault-core/tool-metadata.js +1 -1
  30. package/dist/vault-core/tool-metadata.js.map +1 -1
  31. package/dist/vault-ingress/defaults.d.ts +1 -0
  32. package/dist/vault-ingress/defaults.js +3 -0
  33. package/dist/vault-ingress/defaults.js.map +1 -1
  34. package/dist/vault-ingress/index.d.ts +16 -0
  35. package/dist/vault-ingress/index.js +13 -0
  36. package/dist/vault-ingress/index.js.map +1 -1
  37. package/dist/vault-ingress/remote-transport.d.ts +1 -0
  38. package/dist/vault-ingress/remote-transport.js +12 -0
  39. package/dist/vault-ingress/remote-transport.js.map +1 -1
  40. package/docs/api/README.md +4 -2
  41. package/docs/api/classes/IdentityError.md +1 -1
  42. package/docs/api/classes/OwnerClientError.md +1 -1
  43. package/docs/api/classes/PersistentVaultAgentIdentityRegistry.md +25 -1
  44. package/docs/api/classes/PersistentVaultAgentSecretGrantRegistry.md +1 -1
  45. package/docs/api/classes/PersistentVaultAuditLog.md +1 -1
  46. package/docs/api/classes/PersistentVaultSecretCustody.md +1 -1
  47. package/docs/api/classes/PersistentVaultSecretDestinationGrantRegistry.md +1 -1
  48. package/docs/api/classes/PersistentVaultSecretRepository.md +1 -1
  49. package/docs/api/classes/VaultCore.md +69 -1
  50. package/docs/api/classes/VaultCoreError.md +1 -1
  51. package/docs/api/enumerations/DispatchStatus.md +1 -1
  52. package/docs/api/enumerations/IdentityErrorCode.md +1 -1
  53. package/docs/api/enumerations/OwnerClientErrorCode.md +1 -1
  54. package/docs/api/functions/createAgentClient.md +1 -1
  55. package/docs/api/functions/createIdentity.md +1 -1
  56. package/docs/api/functions/createOwnerClient.md +1 -1
  57. package/docs/api/functions/createPersistentVaultCoreDependencies.md +1 -1
  58. package/docs/api/functions/createVault.md +1 -1
  59. package/docs/api/functions/createVaultCore.md +1 -1
  60. package/docs/api/functions/createVaultCoreDependencies.md +1 -1
  61. package/docs/api/functions/createVaultService.md +1 -1
  62. package/docs/api/functions/createWorkspaceStorage.md +1 -1
  63. package/docs/api/functions/deriveRootAgentId.md +1 -1
  64. package/docs/api/functions/deriveVaultWorkingKeyFromPassword.md +1 -1
  65. package/docs/api/functions/getDefaultWorkspaceDir.md +1 -1
  66. package/docs/api/functions/handleVaultAgentControlHttp.md +1 -1
  67. package/docs/api/functions/handleVaultAuditSse.md +1 -1
  68. package/docs/api/functions/handleVaultHttpDispatch.md +1 -1
  69. package/docs/api/functions/handleVaultPendingDispatchSse.md +1 -1
  70. package/docs/api/functions/initializeVaultCustody.md +1 -1
  71. package/docs/api/functions/listVaults.md +1 -1
  72. package/docs/api/functions/openOwnerSession.md +1 -1
  73. package/docs/api/functions/readVaultProfile.md +1 -1
  74. package/docs/api/functions/recoverVault.md +1 -1
  75. package/docs/api/functions/recoverVaultWorkingKey.md +1 -1
  76. package/docs/api/functions/restoreIdentity.md +1 -1
  77. package/docs/api/functions/updateVaultMetadata.md +1 -1
  78. package/docs/api/functions/writeVaultProfile.md +1 -1
  79. package/docs/api/interfaces/AgentAuditTestPingInput.md +17 -0
  80. package/docs/api/interfaces/AgentClient.md +19 -1
  81. package/docs/api/interfaces/AgentDispatchIntent.md +1 -1
  82. package/docs/api/interfaces/AgentDispatchTransport.md +17 -1
  83. package/docs/api/interfaces/AgentIdentity.md +1 -1
  84. package/docs/api/interfaces/AgentIdentityRecord.md +1 -1
  85. package/docs/api/interfaces/AgentRequestRecord.md +1 -1
  86. package/docs/api/interfaces/AgentRuntimeManifest.md +19 -1
  87. package/docs/api/interfaces/AgentSecretGrant.md +1 -1
  88. package/docs/api/interfaces/AgentSigner.md +1 -1
  89. package/docs/api/interfaces/AuditEntry.md +1 -1
  90. package/docs/api/interfaces/CbioRuntime.md +1 -1
  91. package/docs/api/interfaces/CreateAgentClientOptions.md +1 -1
  92. package/docs/api/interfaces/CreateIdentityOptions.md +1 -1
  93. package/docs/api/interfaces/CreateOwnerClientOptions.md +1 -1
  94. package/docs/api/interfaces/CreatePersistentVaultCoreDependenciesOptions.md +1 -1
  95. package/docs/api/interfaces/CreateVaultOptions.md +1 -1
  96. package/docs/api/interfaces/CreatedVault.md +1 -1
  97. package/docs/api/interfaces/DefaultPolicyEngineOptions.md +1 -1
  98. package/docs/api/interfaces/DispatchAuthorization.md +1 -1
  99. package/docs/api/interfaces/DispatchInstruction.md +1 -1
  100. package/docs/api/interfaces/DispatchRequest.md +1 -1
  101. package/docs/api/interfaces/DispatchResult.md +1 -1
  102. package/docs/api/interfaces/IStorageProvider.md +1 -1
  103. package/docs/api/interfaces/InitializeVaultCustodyOptions.md +1 -1
  104. package/docs/api/interfaces/InitializedVaultCustody.md +1 -1
  105. package/docs/api/interfaces/OpenOwnerSessionOptions.md +1 -1
  106. package/docs/api/interfaces/OwnerAgentProvisionResult.md +1 -1
  107. package/docs/api/interfaces/OwnerAuditSubscription.md +1 -1
  108. package/docs/api/interfaces/OwnerClient.md +17 -1
  109. package/docs/api/interfaces/OwnerCreateSecretInput.md +1 -1
  110. package/docs/api/interfaces/OwnerPendingDispatchSubscription.md +1 -1
  111. package/docs/api/interfaces/OwnerRemoveSecretInput.md +1 -1
  112. package/docs/api/interfaces/OwnerRequestRecord.md +1 -1
  113. package/docs/api/interfaces/OwnerSensitiveActionConfirmation.md +1 -1
  114. package/docs/api/interfaces/OwnerSensitiveActionContext.md +2 -2
  115. package/docs/api/interfaces/OwnerSession.md +1 -1
  116. package/docs/api/interfaces/OwnerUpdateSecretInput.md +1 -1
  117. package/docs/api/interfaces/PendingDispatchEvent.md +1 -1
  118. package/docs/api/interfaces/RecoverVaultOptions.md +1 -1
  119. package/docs/api/interfaces/RecoveredVault.md +1 -1
  120. package/docs/api/interfaces/RequestRecord.md +1 -1
  121. package/docs/api/interfaces/RestoreIdentityOptions.md +1 -1
  122. package/docs/api/interfaces/SecretDestinationGrant.md +1 -1
  123. package/docs/api/interfaces/SecretRecord.md +1 -1
  124. package/docs/api/interfaces/Signer.md +1 -1
  125. package/docs/api/interfaces/VaultApproveDispatchInput.md +1 -1
  126. package/docs/api/interfaces/VaultAuditQueryInput.md +1 -1
  127. package/docs/api/interfaces/VaultCoreDependenciesOptions.md +1 -1
  128. package/docs/api/interfaces/VaultCreateAgentInput.md +1 -1
  129. package/docs/api/interfaces/VaultExportSecretInput.md +1 -1
  130. package/docs/api/interfaces/VaultGetRequestInput.md +1 -1
  131. package/docs/api/interfaces/VaultGrantAgentSecretInput.md +1 -1
  132. package/docs/api/interfaces/VaultGrantSecretDestinationInput.md +1 -1
  133. package/docs/api/interfaces/VaultImportAgentInput.md +1 -1
  134. package/docs/api/interfaces/VaultIssueSessionTokenInput.md +1 -1
  135. package/docs/api/interfaces/VaultListAgentsInput.md +1 -1
  136. package/docs/api/interfaces/VaultListGrantsInput.md +1 -1
  137. package/docs/api/interfaces/VaultListRequestsInput.md +1 -1
  138. package/docs/api/interfaces/VaultListSecretsInput.md +1 -1
  139. package/docs/api/interfaces/VaultMetadata.md +1 -1
  140. package/docs/api/interfaces/VaultObject.md +1 -1
  141. package/docs/api/interfaces/VaultPrincipal.md +1 -1
  142. package/docs/api/interfaces/VaultProfile.md +1 -1
  143. package/docs/api/interfaces/VaultReadAgentPrivateKeyInput.md +1 -1
  144. package/docs/api/interfaces/VaultReadSecretPlaintextInput.md +1 -1
  145. package/docs/api/interfaces/VaultRemoveAgentInput.md +29 -0
  146. package/docs/api/interfaces/VaultRevokeAgentSecretInput.md +1 -1
  147. package/docs/api/interfaces/VaultRevokeSecretDestinationInput.md +1 -1
  148. package/docs/api/interfaces/VaultRevokeSessionTokenInput.md +1 -1
  149. package/docs/api/interfaces/VaultService.md +33 -1
  150. package/docs/api/interfaces/VaultUpdateAgentInput.md +1 -1
  151. package/docs/api/type-aliases/AgentId.md +1 -1
  152. package/docs/api/type-aliases/AgentRequestResult.md +1 -1
  153. package/docs/api/type-aliases/CbioRuntimeModule.md +1 -1
  154. package/docs/api/type-aliases/DispatchApprovalDecision.md +1 -1
  155. package/docs/api/type-aliases/GrantStatus.md +1 -1
  156. package/docs/api/type-aliases/SecretAlias.md +1 -1
  157. package/docs/api/type-aliases/SecretId.md +1 -1
  158. package/docs/api/type-aliases/SecretLifecycleStatus.md +1 -1
  159. package/docs/api/type-aliases/VaultId.md +1 -1
  160. package/docs/api/type-aliases/VaultPrincipalKind.md +1 -1
  161. package/docs/api/variables/DEFAULT_VAULT_KEY_CUSTODY_BLOB_KEY.md +1 -1
  162. package/package.json +1 -1
@@ -1,4 +1,4 @@
1
- [**CBIO Node Runtime Agent API v1.73.0**](../README.md)
1
+ [**CBIO Node Runtime Agent API v1.75.4**](../README.md)
2
2
 
3
3
  ***
4
4
 
@@ -1,4 +1,4 @@
1
- [**CBIO Node Runtime Agent API v1.73.0**](../README.md)
1
+ [**CBIO Node Runtime Agent API v1.75.4**](../README.md)
2
2
 
3
3
  ***
4
4
 
@@ -1,4 +1,4 @@
1
- [**CBIO Node Runtime Agent API v1.73.0**](../README.md)
1
+ [**CBIO Node Runtime Agent API v1.75.4**](../README.md)
2
2
 
3
3
  ***
4
4
 
@@ -1,4 +1,4 @@
1
- [**CBIO Node Runtime Agent API v1.73.0**](../README.md)
1
+ [**CBIO Node Runtime Agent API v1.75.4**](../README.md)
2
2
 
3
3
  ***
4
4
 
@@ -12,6 +12,22 @@
12
12
 
13
13
  ## Methods
14
14
 
15
+ ### agentAuditTestPing()
16
+
17
+ > **agentAuditTestPing**(`request`): `Promise`\<[`AuditEntry`](AuditEntry.md)\>
18
+
19
+ #### Parameters
20
+
21
+ ##### request
22
+
23
+ `AgentAuditTestPingRequest`
24
+
25
+ #### Returns
26
+
27
+ `Promise`\<[`AuditEntry`](AuditEntry.md)\>
28
+
29
+ ***
30
+
15
31
  ### agentDispatch()
16
32
 
17
33
  > **agentDispatch**(`request`): `Promise`\<[`DispatchResult`](DispatchResult.md)\>
@@ -406,6 +422,22 @@
406
422
 
407
423
  ***
408
424
 
425
+ ### ownerRemoveAgentIdentity()
426
+
427
+ > **ownerRemoveAgentIdentity**(`request`): `Promise`\<`void`\>
428
+
429
+ #### Parameters
430
+
431
+ ##### request
432
+
433
+ `OwnerRemoveAgentIdentityCommand`
434
+
435
+ #### Returns
436
+
437
+ `Promise`\<`void`\>
438
+
439
+ ***
440
+
409
441
  ### ownerRemoveSecret()
410
442
 
411
443
  > **ownerRemoveSecret**(`request`): `Promise`\<`void`\>
@@ -1,4 +1,4 @@
1
- [**CBIO Node Runtime Agent API v1.73.0**](../README.md)
1
+ [**CBIO Node Runtime Agent API v1.75.4**](../README.md)
2
2
 
3
3
  ***
4
4
 
@@ -1,4 +1,4 @@
1
- [**CBIO Node Runtime Agent API v1.73.0**](../README.md)
1
+ [**CBIO Node Runtime Agent API v1.75.4**](../README.md)
2
2
 
3
3
  ***
4
4
 
@@ -1,4 +1,4 @@
1
- [**CBIO Node Runtime Agent API v1.73.0**](../README.md)
1
+ [**CBIO Node Runtime Agent API v1.75.4**](../README.md)
2
2
 
3
3
  ***
4
4
 
@@ -1,4 +1,4 @@
1
- [**CBIO Node Runtime Agent API v1.73.0**](../README.md)
1
+ [**CBIO Node Runtime Agent API v1.75.4**](../README.md)
2
2
 
3
3
  ***
4
4
 
@@ -1,4 +1,4 @@
1
- [**CBIO Node Runtime Agent API v1.73.0**](../README.md)
1
+ [**CBIO Node Runtime Agent API v1.75.4**](../README.md)
2
2
 
3
3
  ***
4
4
 
@@ -1,4 +1,4 @@
1
- [**CBIO Node Runtime Agent API v1.73.0**](../README.md)
1
+ [**CBIO Node Runtime Agent API v1.75.4**](../README.md)
2
2
 
3
3
  ***
4
4
 
@@ -1,4 +1,4 @@
1
- [**CBIO Node Runtime Agent API v1.73.0**](../README.md)
1
+ [**CBIO Node Runtime Agent API v1.75.4**](../README.md)
2
2
 
3
3
  ***
4
4
 
@@ -1,4 +1,4 @@
1
- [**CBIO Node Runtime Agent API v1.73.0**](../README.md)
1
+ [**CBIO Node Runtime Agent API v1.75.4**](../README.md)
2
2
 
3
3
  ***
4
4
 
@@ -1,4 +1,4 @@
1
- [**CBIO Node Runtime Agent API v1.73.0**](../README.md)
1
+ [**CBIO Node Runtime Agent API v1.75.4**](../README.md)
2
2
 
3
3
  ***
4
4
 
@@ -1,4 +1,4 @@
1
- [**CBIO Node Runtime Agent API v1.73.0**](../README.md)
1
+ [**CBIO Node Runtime Agent API v1.75.4**](../README.md)
2
2
 
3
3
  ***
4
4
 
@@ -1,4 +1,4 @@
1
- [**CBIO Node Runtime Agent API v1.73.0**](../README.md)
1
+ [**CBIO Node Runtime Agent API v1.75.4**](../README.md)
2
2
 
3
3
  ***
4
4
 
@@ -1,4 +1,4 @@
1
- [**CBIO Node Runtime Agent API v1.73.0**](../README.md)
1
+ [**CBIO Node Runtime Agent API v1.75.4**](../README.md)
2
2
 
3
3
  ***
4
4
 
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@the-ai-company/cbio-node-runtime",
3
- "version": "1.73.0",
3
+ "version": "1.75.4",
4
4
  "publishConfig": {
5
5
  "access": "public"
6
6
  },