(owner: Owner, collection: string, key: string)
| 952 | ); |
| 953 | |
| 954 | const getForOwnerImpl = <T>(owner: Owner, collection: string, key: string) => |
| 955 | input.core |
| 956 | .findFirst("plugin_storage", { |
| 957 | where: whereOwner(owner, collection, key), |
| 958 | }) |
| 959 | .pipe(Effect.map((row) => (row ? pluginStorageEntryFromRow<T>(row) : null))); |
| 960 | |
| 961 | const putImpl = <T>(owner: Owner, collection: string, key: string, data: unknown) => |
| 962 | Effect.gen(function* () { |
no test coverage detected