Function
toolAddress
(
owner: Owner,
integration: IntegrationSlug,
connection: ConnectionName,
tool: ToolName,
)
Source from the content-addressed store, hash-verified
| 248 | ConnectionAddress.make(`${ADDRESS_PREFIX}.${integration}.${owner}.${connection}`); |
| 249 | |
| 250 | export const toolAddress = ( |
| 251 | owner: Owner, |
| 252 | integration: IntegrationSlug, |
| 253 | connection: ConnectionName, |
| 254 | tool: ToolName, |
| 255 | ): ToolAddress => |
| 256 | ToolAddress.make(`${ADDRESS_PREFIX}.${integration}.${owner}.${connection}.${tool}`); |
| 257 | |
| 258 | // --------------------------------------------------------------------------- |
| 259 | // Owner key helpers — every owned-row write stamps `tenant`, `owner`, |
Tested by
no test coverage detected