MCPcopy Create free account
hub / github.com/UsefulSoftwareCo/executor / mintedRowIdOf

Function mintedRowIdOf

packages/core/sdk/src/executor.ts:4491–4494  ·  view source on GitHub ↗
(row: unknown)

Source from the content-addressed store, hash-verified

4489 { requireDeleteForNew: true },
4490 );
4491 const mintedRowIdOf = (row: unknown): string | null => {
4492 const value = row == null ? null : (row as Record<string, unknown>)["row_id"];
4493 return typeof value === "string" ? value : null;
4494 };
4495 const committed = yield* transaction(
4496 Effect.gen(function* () {
4497 const existing = yield* findConnectionRow(ref);

Callers 1

mintOAuthConnectionFunction · 0.85

Calls

no outgoing calls

Tested by

no test coverage detected