Function
toolAddress
(
owner: Owner,
integration: IntegrationSlug,
connection: ConnectionName,
tool: ToolName,
)
Source from the content-addressed store, hash-verified
| 312 | ConnectionAddress.make(`${ADDRESS_PREFIX}.${integration}.${owner}.${connection}`); |
| 313 | |
| 314 | export const toolAddress = ( |
| 315 | owner: Owner, |
| 316 | integration: IntegrationSlug, |
| 317 | connection: ConnectionName, |
| 318 | tool: ToolName, |
| 319 | ): ToolAddress => |
| 320 | ToolAddress.make(`${ADDRESS_PREFIX}.${integration}.${owner}.${connection}.${tool}`); |
| 321 | |
| 322 | // --------------------------------------------------------------------------- |
| 323 | // Owner key helpers — every owned-row write stamps `tenant`, `owner`, |
Tested by
no test coverage detected