(owner: Owner, collection: string, key: string)
| 1477 | ); |
| 1478 | |
| 1479 | const getForOwnerImpl = <T>(owner: Owner, collection: string, key: string) => |
| 1480 | input.core |
| 1481 | .findFirst("plugin_storage", { |
| 1482 | where: whereOwner(owner, collection, key), |
| 1483 | }) |
| 1484 | .pipe(Effect.map((row) => (row ? pluginStorageEntryFromRow<T>(row) : null))); |
| 1485 | |
| 1486 | const putImpl = <T>(owner: Owner, collection: string, key: string, data: unknown) => |
| 1487 | Effect.gen(function* () { |
no test coverage detected