docs: document repository scripts

This commit is contained in:
Peter Steinberger
2026-06-04 20:52:36 -04:00
parent 95d51c5fe8
commit b8d08f0cfd
173 changed files with 195 additions and 19 deletions

View File

@@ -1,3 +1,4 @@
// Credentials module supports OpenClaw QA credential workflows.
import { v } from "convex/values";
import { internal } from "./_generated/api";
import type { Id } from "./_generated/dataModel";

View File

@@ -1,3 +1,4 @@
// Crons module supports OpenClaw QA credential workflows.
import { cronJobs } from "convex/server";
import { internal } from "./_generated/api";

View File

@@ -1,3 +1,4 @@
// Http module supports OpenClaw QA credential workflows.
import { httpRouter } from "convex/server";
import { internal } from "./_generated/api";
import type { Id } from "./_generated/dataModel";

View File

@@ -1,3 +1,4 @@
// Payload Validation module supports OpenClaw QA credential workflows.
export class CredentialPayloadValidationError extends Error {
code: string;
httpStatus: number;

View File

@@ -1,3 +1,4 @@
// Schema module supports OpenClaw QA credential workflows.
import { defineSchema, defineTable } from "convex/server";
import { v } from "convex/values";