(owner: Owner, collection: string, key: string)
| 1538 | ); |
| 1539 | |
| 1540 | const getForOwnerImpl = <T>(owner: Owner, collection: string, key: string) => |
| 1541 | input.core |
| 1542 | .findFirst("plugin_storage", { |
| 1543 | where: whereOwner(owner, collection, key), |
| 1544 | }) |
| 1545 | .pipe(Effect.map((row) => (row ? pluginStorageEntryFromRow<T>(row) : null))); |
| 1546 | |
| 1547 | const putImpl = <T>(owner: Owner, collection: string, key: string, data: unknown) => |
| 1548 | Effect.gen(function* () { |
no test coverage detected